Repository: Turfjs/turf Branch: master Commit: 6a2f56766ce6 Files: 2471 Total size: 50.9 MB Directory structure: gitextract_rt4_xit0/ ├── .github/ │ ├── ISSUE_TEMPLATE.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ ├── ci.yml │ ├── prerelease.yml │ └── release.yml ├── .gitignore ├── .husky/ │ └── pre-commit ├── .monorepolint.config.mjs ├── .prettierignore ├── .prettierrc.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── OPEN_COLLECTIVE.md │ ├── PUBLISHING.md │ ├── SECURITY.md │ └── SEE_ALSO.md ├── documentation.yml ├── eslint.config.mjs ├── examples/ │ ├── browser/ │ │ └── index.html │ ├── create-react-app/ │ │ ├── .gitignore │ │ ├── package.json │ │ ├── public/ │ │ │ └── index.html │ │ └── src/ │ │ └── index.js │ ├── es-modules/ │ │ └── index.html │ └── es-modules-single-module/ │ └── index.html ├── lerna.json ├── nx.json ├── package.json ├── packages/ │ ├── turf/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── babel.config.json │ │ ├── index.ts │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-along/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ └── fixtures/ │ │ │ ├── dc-line.geojson │ │ │ ├── dc-points.geojson │ │ │ └── route.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-angle/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-area/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ └── polygon.geojson │ │ │ └── out/ │ │ │ └── polygon.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-bbox/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-bbox-clip/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── lib/ │ │ │ └── lineclip.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── linestring-single-line.geojson │ │ │ │ ├── linestring.geojson │ │ │ │ ├── multi-linestring.geojson │ │ │ │ ├── multi-polygon.geojson │ │ │ │ ├── polygon-crossing-hole.geojson │ │ │ │ ├── polygon-holes.geojson │ │ │ │ ├── polygon-point-intersection.geojson │ │ │ │ └── polygon.geojson │ │ │ └── out/ │ │ │ ├── linestring-single-line.geojson │ │ │ ├── linestring.geojson │ │ │ ├── multi-linestring.geojson │ │ │ ├── multi-polygon.geojson │ │ │ ├── polygon-crossing-hole.geojson │ │ │ ├── polygon-holes.geojson │ │ │ ├── polygon-point-intersection.geojson │ │ │ └── polygon.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-bbox-polygon/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-bearing/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ └── out/ │ │ │ └── results.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-bezier-spline/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── lib/ │ │ │ └── spline.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── bezierIn.json │ │ │ │ ├── issue-#1063.json │ │ │ │ └── simple.json │ │ │ └── out/ │ │ │ ├── bezierIn.json │ │ │ ├── issue-#1063.json │ │ │ └── simple.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-boolean-clockwise/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── false/ │ │ │ │ └── counter-clockwise-line.geojson │ │ │ └── true/ │ │ │ └── clockwise-line.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-boolean-concave/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── false/ │ │ │ │ ├── 3vertices.geojson │ │ │ │ ├── diamond.geojson │ │ │ │ └── square.geojson │ │ │ └── true/ │ │ │ ├── polygon.geojson │ │ │ └── polygon2.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-boolean-contains/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── false/ │ │ │ │ ├── LineString/ │ │ │ │ │ └── LineString/ │ │ │ │ │ └── LineIsNotContainedByLine.geojson │ │ │ │ ├── MultiPoint/ │ │ │ │ │ ├── LineString/ │ │ │ │ │ │ ├── MultiPointsIsNotContainedByLine.geojson │ │ │ │ │ │ └── MultiPointsOnLineEndsIsNotContainedByLine.geojson │ │ │ │ │ ├── MultiPoint/ │ │ │ │ │ │ └── MultiPointIsNotContainedByMultiPoint.geojson │ │ │ │ │ └── Polygon/ │ │ │ │ │ ├── MultiPointAllOnBoundaryIsNotContainedByPolygon.geojson │ │ │ │ │ └── MultiPointIsNotContainedByPolygon.geojson │ │ │ │ ├── MultiPolygon/ │ │ │ │ │ └── Polygon/ │ │ │ │ │ └── MultiPolygonIsNotContainedByPolygon.geojson │ │ │ │ ├── Point/ │ │ │ │ │ ├── LineString/ │ │ │ │ │ │ ├── PointIsNotContainedByLine.geojson │ │ │ │ │ │ ├── PointIsNotContainedByLineBecauseOnEnd.geojson │ │ │ │ │ │ └── PointOnEndIsContainedByLinestring.geojson │ │ │ │ │ ├── MultiPoint/ │ │ │ │ │ │ └── PointIsNotContainedBYMultiPoint.geojson │ │ │ │ │ └── Polygon/ │ │ │ │ │ ├── PointIsNotContainedByPolygon.geojson │ │ │ │ │ └── PointOnPolygonBoundary.geojson │ │ │ │ └── Polygon/ │ │ │ │ ├── LineString/ │ │ │ │ │ ├── LineIsNotContainedByPolygon.geojson │ │ │ │ │ ├── LineIsNotContainedByPolygonBoundary.geojson │ │ │ │ │ ├── LineIsNotFullyContainedByPolygon.geojson │ │ │ │ │ └── issue-#1201-false.geojson │ │ │ │ ├── MultiPolygon/ │ │ │ │ │ └── PolygonIsNotContainedByMultipolygon.geojson │ │ │ │ └── Polygon/ │ │ │ │ ├── Polygon-Polygon.geojson │ │ │ │ └── Polygon-Polygon2.geojson │ │ │ └── true/ │ │ │ ├── LineString/ │ │ │ │ └── LineString/ │ │ │ │ ├── LineIsContainedByLine.geojson │ │ │ │ └── LinesExactlySame.geojson │ │ │ ├── MultiPoint/ │ │ │ │ ├── LineString/ │ │ │ │ │ └── MultipointsIsContainedByLine.geojson │ │ │ │ ├── MultiPoint/ │ │ │ │ │ ├── MultiPointsContainedByMultiPoints.geojson │ │ │ │ │ └── MultiPointsEqual.geojson │ │ │ │ └── Polygon/ │ │ │ │ └── MultiPointIsContainedByPolygonBoundary.geojson │ │ │ ├── MultiPolygon/ │ │ │ │ └── Polygon/ │ │ │ │ └── MultiPolygonIsContainedByPolygon.geojson │ │ │ ├── Point/ │ │ │ │ ├── LineString/ │ │ │ │ │ └── PointIsContainedByLine.geojson │ │ │ │ ├── MultiPoint/ │ │ │ │ │ └── PointIsContainedByMultiPoint.geojson │ │ │ │ └── Polygon/ │ │ │ │ └── PointInsidePolygonBoundary.geojson │ │ │ └── Polygon/ │ │ │ ├── LineString/ │ │ │ │ ├── LineIsContainedByPolygon.geojson │ │ │ │ ├── LineIsContainedByPolygonWithNoInternalVertices.geojson │ │ │ │ ├── LineIsContainedByPolygonWithSegmentOnBoundary.geojson │ │ │ │ └── LineIsFullyContainedByPolygon.geojson │ │ │ ├── MultiPolygon/ │ │ │ │ └── PolygonIsContainedByMultipolygon.geojson │ │ │ └── Polygon/ │ │ │ ├── PolygonExactSameShape.geojson │ │ │ └── PolygonIsContainedByPolygon.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-boolean-crosses/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── false/ │ │ │ │ ├── LineString/ │ │ │ │ │ ├── LineString/ │ │ │ │ │ │ ├── LineDoesNotCrossLine.geojson │ │ │ │ │ │ ├── LineOverlapsLine.geojson │ │ │ │ │ │ ├── LineTouchesLineBetweenVertices.geojson │ │ │ │ │ │ ├── LineTouchesLineOnEndVertex.geojson │ │ │ │ │ │ └── LineTouchesLineOnInternalVertex.geojson │ │ │ │ │ └── Polygon/ │ │ │ │ │ └── LineDoesNotCrossPolygon.geojson │ │ │ │ └── MultiPoint/ │ │ │ │ ├── LineString/ │ │ │ │ │ ├── MultiPointNotCrossLine.geojson │ │ │ │ │ └── MultiPointNotCrossLineEnd.geojson │ │ │ │ └── Polygon/ │ │ │ │ └── MultiPointNotCrossPolygon.geojson │ │ │ └── true/ │ │ │ ├── LineString/ │ │ │ │ ├── LineString/ │ │ │ │ │ ├── LineCrossesLineBetweenVertices.geojson │ │ │ │ │ ├── LineCrossesLineOnEndVertex.geojson │ │ │ │ │ ├── LineCrossesLineOnInternalVertex.geojson │ │ │ │ │ ├── issue-1901-horizontal.geojson │ │ │ │ │ ├── issue-1901-vertical.geojson │ │ │ │ │ ├── issue-2967-args-reversed.geojson │ │ │ │ │ └── issue-2967.geojson │ │ │ │ └── Polygon/ │ │ │ │ ├── LineCrossesPolygon.geojson │ │ │ │ └── LineCrossesPolygonPartial.geojson │ │ │ └── MultiPoint/ │ │ │ ├── LineString/ │ │ │ │ └── MultiPointsCrossLine.geojson │ │ │ └── Polygon/ │ │ │ └── MultiPointsCrossPolygon.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-boolean-disjoint/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── false/ │ │ │ │ ├── LineString/ │ │ │ │ │ ├── LineString/ │ │ │ │ │ │ └── LineString-LineString.geojson │ │ │ │ │ ├── Point/ │ │ │ │ │ │ ├── LineString-Point-1.geojson │ │ │ │ │ │ └── LineString-Point-2.geojson │ │ │ │ │ └── Polygon/ │ │ │ │ │ ├── LineString-In-Polygon.geojson │ │ │ │ │ └── LineString-Polygon.geojson │ │ │ │ ├── MultiPoint/ │ │ │ │ │ ├── LineString/ │ │ │ │ │ │ └── MultiPoint-LineString.geojson │ │ │ │ │ ├── MultiPoint/ │ │ │ │ │ │ └── MultiPoint-MultiPoint.geojson │ │ │ │ │ └── Polygon/ │ │ │ │ │ └── MultiPoint-Polygon.geojson │ │ │ │ ├── MultiPolygon/ │ │ │ │ │ └── Polygon/ │ │ │ │ │ └── MultiPolygon-Polygon.geojson │ │ │ │ ├── Point/ │ │ │ │ │ ├── LineString/ │ │ │ │ │ │ ├── Point-LineString-1.geojson │ │ │ │ │ │ ├── Point-LineString-2.geojson │ │ │ │ │ │ ├── Point-LineString-3.geojson │ │ │ │ │ │ └── Point-LineString-4.geojson │ │ │ │ │ ├── MultiPoint/ │ │ │ │ │ │ └── Point-MultiPoint.geojson │ │ │ │ │ ├── Point/ │ │ │ │ │ │ └── Point-Point.geojson │ │ │ │ │ └── Polygon/ │ │ │ │ │ ├── Point-Polygon-1.geojson │ │ │ │ │ └── Point-Polygon-2.geojson │ │ │ │ └── Polygon/ │ │ │ │ ├── LineString/ │ │ │ │ │ ├── Polygon-Containing-Linestring.geojson │ │ │ │ │ └── Polygon-LineString.geojson │ │ │ │ ├── MultiPolygon/ │ │ │ │ │ └── Polygon-MultiPolygon.geojson │ │ │ │ ├── Point/ │ │ │ │ │ └── Polygon-Point.geojson │ │ │ │ └── Polygon/ │ │ │ │ ├── Large-Inside-Small.geojson │ │ │ │ ├── Polygon-Polygon.geojson │ │ │ │ ├── Small-Inside-Large.geojson │ │ │ │ └── issue-1216.geojson │ │ │ └── true/ │ │ │ ├── LineString/ │ │ │ │ ├── LineString/ │ │ │ │ │ └── LineString-LineString.geojson │ │ │ │ ├── Point/ │ │ │ │ │ └── LineString-Point.geojson │ │ │ │ └── Polygon/ │ │ │ │ └── LineString-Polygon.geojson │ │ │ ├── MultiPoint/ │ │ │ │ ├── LineString/ │ │ │ │ │ └── MultiPoint-LineString.geojson │ │ │ │ ├── MultiPoint/ │ │ │ │ │ └── MultiPoint-MultiPoint.geojson │ │ │ │ ├── Point/ │ │ │ │ │ └── MultiPoint-Point.geojson │ │ │ │ └── Polygon/ │ │ │ │ └── MultiPoint-Polygon.geojson │ │ │ ├── MultiPolygon/ │ │ │ │ └── Polygon/ │ │ │ │ └── MultiPolygon-Polygon.geojson │ │ │ ├── Point/ │ │ │ │ ├── LineString/ │ │ │ │ │ └── Point-LineString.geojson │ │ │ │ ├── MultiPoint/ │ │ │ │ │ └── Point-Multipoint.geojson │ │ │ │ ├── Point/ │ │ │ │ │ └── Point-Point.geojson │ │ │ │ └── Polygon/ │ │ │ │ └── Point-Polygon.geojson │ │ │ └── Polygon/ │ │ │ ├── LineString/ │ │ │ │ └── Polygon-LineString.geojson │ │ │ ├── MultiPolygon/ │ │ │ │ └── Polygon-MultiPolygon.geojson │ │ │ ├── Point/ │ │ │ │ └── Polygon-Point.geojson │ │ │ └── Polygon/ │ │ │ └── Polygon-Polygon.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-boolean-equal/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── false/ │ │ │ │ ├── linear-rings.geojson │ │ │ │ ├── lines.geojson │ │ │ │ ├── multipoints.geojson │ │ │ │ ├── points.geojson │ │ │ │ ├── polygons.geojson │ │ │ │ ├── precision-default.geojson │ │ │ │ └── precision-options.geojson │ │ │ └── true/ │ │ │ ├── different-initials-poly.geojson │ │ │ ├── linear-rings.geojson │ │ │ ├── lines-extra-vertices.geojson │ │ │ ├── lines-reverse.geojson │ │ │ ├── lines.geojson │ │ │ ├── multipoints.geojson │ │ │ ├── points.geojson │ │ │ ├── polygons.geojson │ │ │ ├── precision-default.geojson │ │ │ ├── precision-options.geojson │ │ │ ├── reverse-lines.geojson │ │ │ └── reverse-polygons.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-boolean-intersects/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── false/ │ │ │ │ ├── LineString/ │ │ │ │ │ ├── LineString/ │ │ │ │ │ │ └── LineString-LineString.geojson │ │ │ │ │ ├── Point/ │ │ │ │ │ │ └── LineString-Point.geojson │ │ │ │ │ └── Polygon/ │ │ │ │ │ └── LineString-Polygon.geojson │ │ │ │ ├── MultiPoint/ │ │ │ │ │ ├── LineString/ │ │ │ │ │ │ └── MultiPoint-LineString.geojson │ │ │ │ │ ├── MultiPoint/ │ │ │ │ │ │ └── MultiPoint-MultiPoint.geojson │ │ │ │ │ ├── Point/ │ │ │ │ │ │ └── MultiPoint-Point.geojson │ │ │ │ │ └── Polygon/ │ │ │ │ │ └── MultiPoint-Polygon.geojson │ │ │ │ ├── MultiPolygon/ │ │ │ │ │ └── Polygon/ │ │ │ │ │ └── MultiPolygon-Polygon.geojson │ │ │ │ ├── Point/ │ │ │ │ │ ├── LineString/ │ │ │ │ │ │ └── Point-LineString.geojson │ │ │ │ │ ├── MultiPoint/ │ │ │ │ │ │ └── Point-Multipoint.geojson │ │ │ │ │ ├── Point/ │ │ │ │ │ │ └── Point-Point.geojson │ │ │ │ │ └── Polygon/ │ │ │ │ │ └── Point-Polygon.geojson │ │ │ │ └── Polygon/ │ │ │ │ ├── LineString/ │ │ │ │ │ └── Polygon-LineString.geojson │ │ │ │ ├── MultiPolygon/ │ │ │ │ │ └── Polygon-MultiPolygon.geojson │ │ │ │ ├── Point/ │ │ │ │ │ └── Polygon-Point.geojson │ │ │ │ └── Polygon/ │ │ │ │ └── Polygon-Polygon.geojson │ │ │ └── true/ │ │ │ ├── LineString/ │ │ │ │ ├── LineString/ │ │ │ │ │ └── LineString-LineString.geojson │ │ │ │ ├── Point/ │ │ │ │ │ ├── LineString-Point-1.geojson │ │ │ │ │ └── LineString-Point-2.geojson │ │ │ │ └── Polygon/ │ │ │ │ ├── LineString-In-Polygon.geojson │ │ │ │ └── LineString-Polygon.geojson │ │ │ ├── MultiPoint/ │ │ │ │ ├── LineString/ │ │ │ │ │ └── MultiPoint-LineString.geojson │ │ │ │ ├── MultiPoint/ │ │ │ │ │ └── MultiPoint-MultiPoint.geojson │ │ │ │ └── Polygon/ │ │ │ │ └── MultiPoint-Polygon.geojson │ │ │ ├── MultiPolygon/ │ │ │ │ └── Polygon/ │ │ │ │ └── MultiPolygon-Polygon.geojson │ │ │ ├── Point/ │ │ │ │ ├── LineString/ │ │ │ │ │ ├── Point-LineString-1.geojson │ │ │ │ │ ├── Point-LineString-2.geojson │ │ │ │ │ ├── Point-LineString-3.geojson │ │ │ │ │ └── Point-LineString-4.geojson │ │ │ │ ├── MultiPoint/ │ │ │ │ │ └── Point-MultiPoint.geojson │ │ │ │ ├── Point/ │ │ │ │ │ └── Point-Point.geojson │ │ │ │ └── Polygon/ │ │ │ │ ├── Point-Polygon-1.geojson │ │ │ │ └── Point-Polygon-2.geojson │ │ │ └── Polygon/ │ │ │ ├── LineString/ │ │ │ │ ├── Polygon-Containing-Linestring.geojson │ │ │ │ └── Polygon-LineString.geojson │ │ │ ├── MultiPolygon/ │ │ │ │ └── Polygon-MultiPolygon.geojson │ │ │ ├── Point/ │ │ │ │ └── Polygon-Point.geojson │ │ │ └── Polygon/ │ │ │ ├── Large-Inside-Small.geojson │ │ │ ├── Polygon-Polygon.geojson │ │ │ ├── Small-Inside-Large.geojson │ │ │ └── issue-1216.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-boolean-overlap/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── false/ │ │ │ │ ├── equal-linear-rings.geojson │ │ │ │ ├── equal-lines.geojson │ │ │ │ ├── equal-multipoints.geojson │ │ │ │ ├── equal-polygons.geojson │ │ │ │ ├── linear-rings.geojson │ │ │ │ ├── lines.geojson │ │ │ │ ├── multipoints.geojson │ │ │ │ ├── polygon-with-hole-polygon.geojson │ │ │ │ └── polygons.geojson │ │ │ └── true/ │ │ │ ├── linear-rings.geojson │ │ │ ├── lines.geojson │ │ │ ├── multipoints.geojson │ │ │ ├── polygon-with-hole-polygon.geojson │ │ │ ├── polygons.geojson │ │ │ ├── simple-lines.geojson │ │ │ └── single-multipoints.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-boolean-parallel/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── false/ │ │ │ │ ├── line1.geojson │ │ │ │ └── line2.geojson │ │ │ └── true/ │ │ │ ├── city-line.geojson │ │ │ ├── fiji.geojson │ │ │ ├── line1.geojson │ │ │ ├── line3-reverse.geojson │ │ │ ├── line3.geojson │ │ │ ├── opposites.geojson │ │ │ ├── resolute.geojson │ │ │ ├── segment1.geojson │ │ │ ├── segment2.geojson │ │ │ ├── segment3.geojson │ │ │ ├── verticals.geojson │ │ │ └── verticals3d.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-boolean-point-in-polygon/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ └── in/ │ │ │ ├── multipoly-with-hole.geojson │ │ │ └── poly-with-hole.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-boolean-point-on-line/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── false/ │ │ │ │ ├── LineWithOnly1SegmentIgnoreBoundary.geojson │ │ │ │ ├── LineWithOnly1SegmentIgnoreBoundaryEnd.geojson │ │ │ │ ├── PointIsOnLineButFailsWithSmallEpsilonValue.geojson │ │ │ │ ├── PointIsOnLineButFailsWithoutEpsilonForBackwardsCompatibility.geojson │ │ │ │ ├── PointOnEndFailsWhenIgnoreEndpoints.geojson │ │ │ │ ├── PointOnStartFailsWhenIgnoreEndpoints.geojson │ │ │ │ └── notOnLine.geojson │ │ │ └── true/ │ │ │ ├── LineWithOnly1Segment.geojson │ │ │ ├── LineWithOnly1SegmentOnStart.geojson │ │ │ ├── PointOnFirstSegment.geojson │ │ │ ├── PointOnLastSegment.geojson │ │ │ ├── PointOnLineEnd.geojson │ │ │ ├── PointOnLineMidVertice.geojson │ │ │ ├── PointOnLineMidpoint.geojson │ │ │ ├── PointOnLineStart.geojson │ │ │ └── PointOnLineWithEpsilon.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-boolean-touches/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── false/ │ │ │ │ ├── LineString/ │ │ │ │ │ ├── LineString/ │ │ │ │ │ │ ├── LinesExactSame.geojson │ │ │ │ │ │ └── LivesOverlap.geojson │ │ │ │ │ ├── MultiLineString/ │ │ │ │ │ │ ├── LineStringOverlapsMultiLinestring.geojson │ │ │ │ │ │ └── LineStringSameAsMultiLinestring.geojson │ │ │ │ │ ├── MultiPoint/ │ │ │ │ │ │ ├── LineStringDoesNotTouchMP.geojson │ │ │ │ │ │ └── LineStringTouchesMultiPointButInternal.geojson │ │ │ │ │ ├── MultiPolygon/ │ │ │ │ │ │ └── LineDoesNotTouchMultiPoly.geojson │ │ │ │ │ └── Polygon/ │ │ │ │ │ ├── LineCrossesPolygon.geojson │ │ │ │ │ ├── LineDoesNotTouch.geojson │ │ │ │ │ └── LineWIthinPolygon.geojson │ │ │ │ ├── MultiLineString/ │ │ │ │ │ ├── LineString/ │ │ │ │ │ │ ├── MultiLineStringOverlapsLine.geojson │ │ │ │ │ │ └── MultiLineStringSameAsLine.geojson │ │ │ │ │ ├── MultiLineString/ │ │ │ │ │ │ ├── MultiLineStringsOverlap.geojson │ │ │ │ │ │ └── MultiLineStringsSame.geojson │ │ │ │ │ ├── MultiPoint/ │ │ │ │ │ │ ├── MpTouchesInternalMultiline.geojson │ │ │ │ │ │ └── MultiPointNotTouchMultiline.geojson │ │ │ │ │ ├── MultiPolygon/ │ │ │ │ │ │ └── MultiLineInsideMultipoly.geojson │ │ │ │ │ ├── Point/ │ │ │ │ │ │ ├── PointNotTouchMultiLinestring.geojson │ │ │ │ │ │ └── PointTouchesMidLineString.geojson │ │ │ │ │ └── Polygon/ │ │ │ │ │ ├── MultiLineInsidePoly.geojson │ │ │ │ │ └── MultiLineNotTouchPoly.geojson │ │ │ │ ├── MultiPoint/ │ │ │ │ │ ├── LineString/ │ │ │ │ │ │ ├── MultiPointTouchesInsideLine.geojson │ │ │ │ │ │ └── MultipointDoesNotTouchLine.geojson │ │ │ │ │ ├── MultiLineString/ │ │ │ │ │ │ ├── MpDoesNotTouchMultiLine.geojson │ │ │ │ │ │ └── MpTouchesInternalMultiLine.geojson │ │ │ │ │ ├── MultiPolygon/ │ │ │ │ │ │ ├── MultiPointDoesNotTouchMultipolygon │ │ │ │ │ │ └── multipoint-inside-multipolygon.geojson │ │ │ │ │ └── Polygon/ │ │ │ │ │ ├── MultiPointInsidePolygon.geojson │ │ │ │ │ └── MultiPointNoTouchPolygon.geojson │ │ │ │ ├── MultiPolygon/ │ │ │ │ │ ├── LineString/ │ │ │ │ │ │ └── MultiPolyNotTouchLineString.geojson │ │ │ │ │ ├── MultiLineString/ │ │ │ │ │ │ └── MultiPolyOverlapsMultiLine.geojson │ │ │ │ │ ├── MultiPoint/ │ │ │ │ │ │ └── MultiPolyNotTouchMultiPoint.geojson │ │ │ │ │ ├── MultiPolygon/ │ │ │ │ │ │ ├── MultiPolysDoNotTouch.geojson │ │ │ │ │ │ └── MultiPolysOverlap.geojson │ │ │ │ │ └── Point/ │ │ │ │ │ └── MultiPolyNotTouchPoint.geojson │ │ │ │ ├── Point/ │ │ │ │ │ ├── LineString/ │ │ │ │ │ │ ├── PointIsNotTouchLine.geojson │ │ │ │ │ │ └── PointOnMidLinestring.geojson │ │ │ │ │ ├── MultiLineString/ │ │ │ │ │ │ ├── MpNotTouchMidLineString.geojson │ │ │ │ │ │ └── MpOnMidLineString.geojson │ │ │ │ │ ├── MultiPolygon/ │ │ │ │ │ │ └── PointNotTouchMultipolygon.geojson │ │ │ │ │ └── Polygon/ │ │ │ │ │ ├── PointDoesNotTouchPolygon.geojson │ │ │ │ │ └── PointInsidePolygon.geojson │ │ │ │ └── Polygon/ │ │ │ │ ├── LineString/ │ │ │ │ │ └── PolyDoesNotTouchLine.geojson │ │ │ │ ├── MultiLineString/ │ │ │ │ │ ├── PolyNotTouchMultiLine.geojson │ │ │ │ │ └── PolyOverlapMultiLine.geojson │ │ │ │ ├── MultiPoint/ │ │ │ │ │ ├── PolygonNoTouchMultiPoint.geojson │ │ │ │ │ └── PolygonOverlapsMultiPoint.geojson │ │ │ │ ├── MultiPolygon/ │ │ │ │ │ └── PolyNotTouchMultipoly.geojson │ │ │ │ ├── Point/ │ │ │ │ │ ├── PolygonDoesNotTouchPoint.geojson │ │ │ │ │ └── PolygonOverlapsPoint.geojson │ │ │ │ └── Polygon/ │ │ │ │ ├── PolygonsDontTouch.geojson │ │ │ │ └── PolygonsOverlap.geojson │ │ │ └── true/ │ │ │ ├── LineString/ │ │ │ │ ├── LineString/ │ │ │ │ │ └── LineTouchesEndpoint.geojson │ │ │ │ ├── MultiLineString/ │ │ │ │ │ ├── LineStringTouchesEnd.geojson │ │ │ │ │ └── LineStringTouchesStart.geojson │ │ │ │ ├── MultiPoint/ │ │ │ │ │ └── MultipointTouchesLine.geojson │ │ │ │ ├── MultiPolygon/ │ │ │ │ │ ├── LineTouchesMultiPoly.geojson │ │ │ │ │ └── LineTouchesSecondMultiPoly.geojson │ │ │ │ └── Polygon/ │ │ │ │ └── LineTouchesPolygon.geojson │ │ │ ├── MultiLineString/ │ │ │ │ ├── LineString/ │ │ │ │ │ └── MultiLineTouchesLine.geojson │ │ │ │ ├── MultiLineString/ │ │ │ │ │ └── MultiLineTouchesMultiLine.geojson │ │ │ │ ├── MultiPoint/ │ │ │ │ │ └── MultiLineTouchesMultiPoint.geojson │ │ │ │ ├── Point/ │ │ │ │ │ └── MultiLineTouchesPoint.geojson │ │ │ │ └── Polygon/ │ │ │ │ └── MultiLineTouchesPolygon.geojson │ │ │ ├── MultiPoint/ │ │ │ │ ├── LineString/ │ │ │ │ │ └── MultipointTouchesLine.geojson │ │ │ │ ├── MultiLineString/ │ │ │ │ │ ├── MpTouchesEndMultiLine.geojson │ │ │ │ │ └── MpTouchesSecondMultiLine.geojson │ │ │ │ ├── MultiPolygon/ │ │ │ │ │ └── multipoint-touches-multipolygon.geojson │ │ │ │ └── Polygon/ │ │ │ │ └── MultiPointIsWithinPolygon.geojson │ │ │ ├── MultiPolygon/ │ │ │ │ ├── MultiLineString/ │ │ │ │ │ └── MultiLineTouchesMultiPoly.geojson │ │ │ │ ├── MultiPoint/ │ │ │ │ │ └── MultiPolyTouchesMultiPoint.geojson │ │ │ │ ├── MultiPolygon/ │ │ │ │ │ └── MultiPolyTouchesMultiPoly.geojson │ │ │ │ ├── Point/ │ │ │ │ │ └── MpTouchesPoint.geojson │ │ │ │ └── Polygon/ │ │ │ │ └── MultiPolyTouchesPoly.geojson │ │ │ ├── Point/ │ │ │ │ ├── LineString/ │ │ │ │ │ ├── PointOnEndLine.geojson │ │ │ │ │ └── PointOnStartLine.geojson │ │ │ │ ├── MultiLineString/ │ │ │ │ │ ├── MpOnEndLine.geojson │ │ │ │ │ └── MpOnStartLine.geojson │ │ │ │ ├── MultiPolygon/ │ │ │ │ │ ├── PointTouchesMultipolygon.geojson │ │ │ │ │ └── PointTouchesMultipolygonHole.geojson │ │ │ │ └── Polygon/ │ │ │ │ ├── PointOnEdgePolygon.geojson │ │ │ │ ├── PointOnHole.geojson │ │ │ │ └── PointOnVerticePolygon.geojson │ │ │ └── Polygon/ │ │ │ ├── LineString/ │ │ │ │ └── PolygonTouchesLines.geojson │ │ │ ├── MultiLineString/ │ │ │ │ └── PolygonTouchesMultiline.geojson │ │ │ ├── MultiPoint/ │ │ │ │ └── PolygonTouchesMultiPoint.geojson │ │ │ ├── MultiPolygon/ │ │ │ │ └── PolyTouchMultiPolys.geojson │ │ │ ├── Point/ │ │ │ │ ├── PolygonTouchesPoint.geojson │ │ │ │ └── PolygonTouchesPointVertice.geojson │ │ │ └── Polygon/ │ │ │ ├── PolygonTouchesEdges.geojson │ │ │ └── PolygonsTouchVertices.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-boolean-valid/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── false/ │ │ │ │ ├── MultiPoint/ │ │ │ │ │ └── multipoint.geojson │ │ │ │ ├── MultiPolygon/ │ │ │ │ │ ├── multipoly-with-2-vertices-touching.geojson │ │ │ │ │ ├── multipolygons-overlap.geojson │ │ │ │ │ └── not-enough-coords.geojson │ │ │ │ ├── Point/ │ │ │ │ │ └── point.geojson │ │ │ │ └── Polygon/ │ │ │ │ ├── not-closing-ring.geojson │ │ │ │ ├── not-enough-coords.geojson │ │ │ │ ├── polygon-with-hole-2-vertices-touching.geojson │ │ │ │ ├── polygon-with-puncture.geojson │ │ │ │ └── polygon-with-spike.geojson │ │ │ └── true/ │ │ │ ├── LineString/ │ │ │ │ └── linestring.geojson │ │ │ ├── MultiLineString/ │ │ │ │ └── multilinestring.geojson │ │ │ ├── MultiPoint/ │ │ │ │ ├── multipoint-with-z.geojson │ │ │ │ └── multipoint.geojson │ │ │ ├── MultiPolygon/ │ │ │ │ ├── multipolygon-touch.geojson │ │ │ │ ├── multipolygon-with-hole.geojson │ │ │ │ └── multipolygon.geojson │ │ │ ├── Point/ │ │ │ │ ├── point-with-z.geojson │ │ │ │ └── point.geojson │ │ │ └── Polygon/ │ │ │ ├── polygon-internal-hole.geojson │ │ │ ├── polygon-with-hole-1-vertice-touching.geojson │ │ │ └── polygon.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-boolean-within/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── false/ │ │ │ │ ├── LineString/ │ │ │ │ │ ├── LineString/ │ │ │ │ │ │ └── LineIsNotWithinLine.geojson │ │ │ │ │ └── Polygon/ │ │ │ │ │ ├── LineIsNotFullyWithinPolygon.geojson │ │ │ │ │ ├── LineIsNotWIthinPolygon.geojson │ │ │ │ │ └── LineIsNotWIthinPolygonBoundary.geojson │ │ │ │ ├── MultiLineString/ │ │ │ │ │ └── MultiPolygon/ │ │ │ │ │ └── skip-multilinestring-not-within-multipolygon.geojson │ │ │ │ ├── MultiPoint/ │ │ │ │ │ ├── LineString/ │ │ │ │ │ │ ├── MultiPointsIsNotWIthinLine.geojson │ │ │ │ │ │ └── MultiPointsOnLineEndsIsNotWIthinLine.geojson │ │ │ │ │ ├── MultiPoint/ │ │ │ │ │ │ └── MultiPointIsNotWithinMultiPoint.geojson │ │ │ │ │ ├── MultiPolygon/ │ │ │ │ │ │ └── multipoint-not-within-multipolygon.geojson │ │ │ │ │ └── Polygon/ │ │ │ │ │ ├── MultiPointAllOnBoundaryIsNotWithinPolygon.geojson │ │ │ │ │ └── MultiPointIsNotWithinPolygon.geojson │ │ │ │ ├── Point/ │ │ │ │ │ ├── LineString/ │ │ │ │ │ │ ├── PointIsNotWithinLine.geojson │ │ │ │ │ │ ├── PointIsNotWithinLineBecauseOnEnd.geojson │ │ │ │ │ │ └── PointOnEndIsWithinLinestring.geojson │ │ │ │ │ ├── MultiPoint/ │ │ │ │ │ │ └── PointIsNotWithinMultiPoint.geojson │ │ │ │ │ ├── MultiPolygon/ │ │ │ │ │ │ └── point-not-within-multipolygon.geojson │ │ │ │ │ └── Polygon/ │ │ │ │ │ ├── PointIsNotWithinPolygon.geojson │ │ │ │ │ └── PointOnPolygonBoundary.geojson │ │ │ │ └── Polygon/ │ │ │ │ ├── MultiPolygon/ │ │ │ │ │ └── polygon-not-within-multipolygon.geojson │ │ │ │ └── Polygon/ │ │ │ │ └── Polygon-Polygon.geojson │ │ │ └── true/ │ │ │ ├── LineString/ │ │ │ │ ├── LineString/ │ │ │ │ │ ├── LineIsWithinLine.geojson │ │ │ │ │ └── LinesExactSame.geojson │ │ │ │ └── Polygon/ │ │ │ │ ├── LineIsContainedByPolygon.geojson │ │ │ │ ├── LineIsContainedByPolygonWithNoInternalVertices.geojson │ │ │ │ ├── LineIsContainedByPolygonWithSegmentOnBoundary.geojson │ │ │ │ └── LineIsFullyContainedByPolygon.geojson │ │ │ ├── MultiLineString/ │ │ │ │ └── MultiPolygon/ │ │ │ │ └── skip-multilinestring-within-multipolygon.geojson │ │ │ ├── MultiPoint/ │ │ │ │ ├── LineString/ │ │ │ │ │ └── MultipointsIsWithinLine.geojson │ │ │ │ ├── MultiPoint/ │ │ │ │ │ └── MultiPointsWithinMultiPoints.geojson │ │ │ │ ├── MultiPolygon/ │ │ │ │ │ └── multipoint-within-multipolygon.geojson │ │ │ │ └── Polygon/ │ │ │ │ ├── MultiPointIsWithinPolygon.geojson │ │ │ │ └── MultiPointSingleIsWithinPolygon.geojson │ │ │ ├── MultiPolygon/ │ │ │ │ └── MultiPolygon/ │ │ │ │ └── skip-multipolygon-within-multipolygon.geojson │ │ │ ├── Point/ │ │ │ │ ├── LineString/ │ │ │ │ │ └── PointIsWithinLine.geojson │ │ │ │ ├── MultiPoint/ │ │ │ │ │ └── PointIsWithinMultiPoint.geojson │ │ │ │ ├── MultiPolygon/ │ │ │ │ │ └── point-within-multipolygon.geojson │ │ │ │ └── Polygon/ │ │ │ │ └── PointIsWithinPolygon.geojson │ │ │ └── Polygon/ │ │ │ ├── MultiPolygon/ │ │ │ │ └── polygon-within-multipolygon.geojson │ │ │ └── Polygon/ │ │ │ ├── PolygonIsWIthinPolygon.geojson │ │ │ └── PolygonsExactSameShape.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-buffer/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── feature-collection-points.geojson │ │ │ │ ├── geometry-collection-points.geojson │ │ │ │ ├── issue-#783.geojson │ │ │ │ ├── issue-#801-Ecuador.geojson │ │ │ │ ├── issue-#801.geojson │ │ │ │ ├── issue-#815.geojson │ │ │ │ ├── issue-#900.geojson │ │ │ │ ├── issue-#916.geojson │ │ │ │ ├── linestring.geojson │ │ │ │ ├── multi-linestring.geojson │ │ │ │ ├── multi-point.geojson │ │ │ │ ├── multi-polygon.geojson │ │ │ │ ├── negative-buffer.geojson │ │ │ │ ├── north-latitude-points.geojson │ │ │ │ ├── northern-polygon.geojson │ │ │ │ ├── point.geojson │ │ │ │ └── polygon-with-holes.geojson │ │ │ └── out/ │ │ │ ├── feature-collection-points.geojson │ │ │ ├── geometry-collection-points.geojson │ │ │ ├── issue-#783.geojson │ │ │ ├── issue-#801-Ecuador.geojson │ │ │ ├── issue-#801.geojson │ │ │ ├── issue-#815.geojson │ │ │ ├── issue-#900.geojson │ │ │ ├── issue-#916.geojson │ │ │ ├── linestring.geojson │ │ │ ├── multi-linestring.geojson │ │ │ ├── multi-point.geojson │ │ │ ├── multi-polygon.geojson │ │ │ ├── negative-buffer.geojson │ │ │ ├── north-latitude-points.geojson │ │ │ ├── northern-polygon.geojson │ │ │ ├── point.geojson │ │ │ └── polygon-with-holes.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-center/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── feature-collection.geojson │ │ │ │ ├── imbalanced-polygon.geojson │ │ │ │ ├── linestring.geojson │ │ │ │ ├── point.geojson │ │ │ │ ├── points-with-weights.geojson │ │ │ │ ├── polygon-without-weights.geojson │ │ │ │ └── polygon.geojson │ │ │ └── out/ │ │ │ ├── feature-collection.geojson │ │ │ ├── imbalanced-polygon.geojson │ │ │ ├── linestring.geojson │ │ │ ├── point.geojson │ │ │ ├── points-with-weights.geojson │ │ │ ├── polygon-without-weights.geojson │ │ │ └── polygon.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-center-mean/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── feature-collection-negative-weights.geojson │ │ │ │ ├── feature-collection-weight.geojson │ │ │ │ ├── feature-collection.geojson │ │ │ │ ├── imbalanced-polygon.geojson │ │ │ │ ├── linestring.geojson │ │ │ │ ├── point.geojson │ │ │ │ ├── points-with-weights.geojson │ │ │ │ ├── polygon-with-weights.geojson │ │ │ │ ├── polygon-without-weights.geojson │ │ │ │ └── polygon.geojson │ │ │ └── out/ │ │ │ ├── feature-collection-negative-weights.geojson │ │ │ ├── feature-collection-weight.geojson │ │ │ ├── feature-collection.geojson │ │ │ ├── imbalanced-polygon.geojson │ │ │ ├── linestring.geojson │ │ │ ├── point.geojson │ │ │ ├── points-with-weights.geojson │ │ │ ├── polygon-with-weights.geojson │ │ │ ├── polygon-without-weights.geojson │ │ │ └── polygon.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-center-median/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── brazil-states-weighted.json │ │ │ │ ├── brazil-states.json │ │ │ │ ├── burt-barber-rigby-problem-unweighted.json │ │ │ │ ├── burt-barber-rigby-problem.json │ │ │ │ ├── kuhn-kuenne-ukraine-problem.json │ │ │ │ ├── lines.json │ │ │ │ ├── square.json │ │ │ │ ├── squares-weighted.json │ │ │ │ ├── squares.json │ │ │ │ ├── steiners-problem-bad-weights.json │ │ │ │ ├── steiners-problem-low-tolerance.json │ │ │ │ └── steiners-problem.json │ │ │ └── out/ │ │ │ ├── brazil-states-weighted.json │ │ │ ├── brazil-states.json │ │ │ ├── burt-barber-rigby-problem-unweighted.json │ │ │ ├── burt-barber-rigby-problem.json │ │ │ ├── kuhn-kuenne-ukraine-problem.json │ │ │ ├── lines.json │ │ │ ├── square.json │ │ │ ├── squares-weighted.json │ │ │ ├── squares.json │ │ │ ├── steiners-problem-bad-weights.json │ │ │ ├── steiners-problem-low-tolerance.json │ │ │ └── steiners-problem.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-center-of-mass/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── feature-collection.geojson │ │ │ │ ├── imbalanced-polygon.geojson │ │ │ │ ├── linestring.geojson │ │ │ │ ├── point.geojson │ │ │ │ └── polygon.geojson │ │ │ └── out/ │ │ │ ├── feature-collection.geojson │ │ │ ├── imbalanced-polygon.geojson │ │ │ ├── linestring.geojson │ │ │ ├── point.geojson │ │ │ └── polygon.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-centroid/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── feature-collection.geojson │ │ │ │ ├── imbalanced-polygon.geojson │ │ │ │ ├── linestring.geojson │ │ │ │ ├── point.geojson │ │ │ │ └── polygon.geojson │ │ │ └── out/ │ │ │ ├── feature-collection.geojson │ │ │ ├── imbalanced-polygon.geojson │ │ │ ├── linestring.geojson │ │ │ ├── point.geojson │ │ │ └── polygon.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-circle/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ └── circle1.geojson │ │ │ └── out/ │ │ │ └── circle1.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-clean-coords/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── clean-segment.geojson │ │ │ │ ├── closed-linestring.geojson │ │ │ │ ├── geometry.geojson │ │ │ │ ├── line-3-coords.geojson │ │ │ │ ├── multiline.geojson │ │ │ │ ├── multipoint.geojson │ │ │ │ ├── multipolygon.geojson │ │ │ │ ├── point.geojson │ │ │ │ ├── polygon-with-hole.geojson │ │ │ │ ├── polygon.geojson │ │ │ │ ├── segment.geojson │ │ │ │ ├── simple-line.geojson │ │ │ │ ├── triangle.geojson │ │ │ │ └── triplicate-issue1255.geojson │ │ │ └── out/ │ │ │ ├── clean-segment.geojson │ │ │ ├── closed-linestring.geojson │ │ │ ├── geometry.geojson │ │ │ ├── line-3-coords.geojson │ │ │ ├── multiline.geojson │ │ │ ├── multipoint.geojson │ │ │ ├── multipolygon.geojson │ │ │ ├── point.geojson │ │ │ ├── polygon-with-hole.geojson │ │ │ ├── polygon.geojson │ │ │ ├── segment.geojson │ │ │ ├── simple-line.geojson │ │ │ ├── triangle.geojson │ │ │ └── triplicate-issue1255.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-clone/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-clusters/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-clusters-dbscan/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── fiji.geojson │ │ │ │ ├── many-points.geojson │ │ │ │ ├── noise.geojson │ │ │ │ ├── points-with-properties.geojson │ │ │ │ ├── points1.geojson │ │ │ │ └── points2.geojson │ │ │ └── out/ │ │ │ ├── fiji.geojson │ │ │ ├── many-points.geojson │ │ │ ├── noise.geojson │ │ │ ├── points-with-properties.geojson │ │ │ ├── points1.geojson │ │ │ └── points2.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-clusters-kmeans/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── fiji.geojson │ │ │ │ ├── many-points.geojson │ │ │ │ ├── points-with-properties.geojson │ │ │ │ ├── points1.geojson │ │ │ │ └── points2.geojson │ │ │ └── out/ │ │ │ ├── fiji.geojson │ │ │ ├── many-points.geojson │ │ │ ├── points-with-properties.geojson │ │ │ ├── points1.geojson │ │ │ └── points2.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-collect/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-combine/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-concave/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── lib/ │ │ │ ├── turf-dissolve.ts │ │ │ ├── turf-line-dissolve.ts │ │ │ └── turf-polygon-dissolve.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── concave-hull.geojson │ │ │ │ ├── fiji.geojson │ │ │ │ ├── hole.geojson │ │ │ │ ├── issue-333.geojson │ │ │ │ ├── pts1.geojson │ │ │ │ ├── pts2.geojson │ │ │ │ ├── pts3.geojson │ │ │ │ └── support-null-geometry.geojson │ │ │ └── out/ │ │ │ ├── concave-hull.geojson │ │ │ ├── fiji.geojson │ │ │ ├── hole.geojson │ │ │ ├── issue-333.geojson │ │ │ ├── pts1.geojson │ │ │ ├── pts2.geojson │ │ │ ├── pts3.geojson │ │ │ └── support-null-geometry.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-convex/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── elevation1.geojson │ │ │ │ ├── elevation2.geojson │ │ │ │ ├── elevation3.geojson │ │ │ │ ├── elevation4.geojson │ │ │ │ └── elevation5.geojson │ │ │ └── out/ │ │ │ ├── elevation1.geojson │ │ │ ├── elevation2.geojson │ │ │ ├── elevation3.geojson │ │ │ ├── elevation4.geojson │ │ │ └── elevation5.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-destination/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── point-0-with-elevation.geojson │ │ │ │ ├── point-0.geojson │ │ │ │ ├── point-180.geojson │ │ │ │ ├── point-90.geojson │ │ │ │ ├── point-way-far-away-km.geojson │ │ │ │ └── point-way-far-away-miles.geojson │ │ │ └── out/ │ │ │ ├── point-0-with-elevation.geojson │ │ │ ├── point-0.geojson │ │ │ ├── point-180.geojson │ │ │ ├── point-90.geojson │ │ │ ├── point-way-far-away-km.geojson │ │ │ └── point-way-far-away-miles.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-difference/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── clip-polygons.geojson │ │ │ │ ├── completely-overlapped.geojson │ │ │ │ ├── create-hole.geojson │ │ │ │ ├── issue-#721-inverse.geojson │ │ │ │ ├── issue-#721.geojson │ │ │ │ ├── multi-polygon-input.geojson │ │ │ │ ├── multi-polygon-target.geojson │ │ │ │ ├── skip-martinez-issue-#35.geojson │ │ │ │ └── split-polygon.geojson │ │ │ └── out/ │ │ │ ├── clip-polygons.geojson │ │ │ ├── completely-overlapped.geojson │ │ │ ├── create-hole.geojson │ │ │ ├── issue-#721-inverse.geojson │ │ │ ├── issue-#721.geojson │ │ │ ├── jsts/ │ │ │ │ ├── clip-polygons.geojson │ │ │ │ ├── completely-overlapped.geojson │ │ │ │ ├── create-hole.geojson │ │ │ │ ├── issue-#721-inverse.geojson │ │ │ │ ├── issue-#721.geojson │ │ │ │ ├── multi-polygon-input.geojson │ │ │ │ ├── multi-polygon-target.geojson │ │ │ │ └── split-polygon.geojson │ │ │ ├── multi-polygon-input.geojson │ │ │ ├── multi-polygon-target.geojson │ │ │ └── split-polygon.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-directional-mean/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── bus_route_gps.json │ │ │ │ └── bus_route_utm.json │ │ │ └── out/ │ │ │ ├── bus_route_gps.json │ │ │ ├── bus_route_gps1.json │ │ │ ├── bus_route_gps2.json │ │ │ ├── bus_route_utm1.json │ │ │ └── bus_route_utm2.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-dissolve/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── hexagons-issue#742.geojson │ │ │ │ ├── issue-1208.geojson │ │ │ │ ├── issue-1237.geojson │ │ │ │ ├── polysByProperty.geojson │ │ │ │ ├── polysWithoutProperty.geojson │ │ │ │ └── simplified-issue.geojson │ │ │ └── out/ │ │ │ ├── hexagons-issue#742.geojson │ │ │ ├── issue-1208.geojson │ │ │ ├── issue-1237.geojson │ │ │ ├── polysByProperty.geojson │ │ │ ├── polysWithoutProperty.geojson │ │ │ └── simplified-issue.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-distance/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ └── points.geojson │ │ │ └── out/ │ │ │ └── points.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-distance-weight/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ └── in/ │ │ │ ├── columbus.json │ │ │ └── point.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-ellipse/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── anti-meridian-degrees.json │ │ │ │ ├── anti-meridian.json │ │ │ │ ├── northern-latitudes-degrees.json │ │ │ │ ├── northern-latitudes.json │ │ │ │ ├── rotation-degrees.json │ │ │ │ ├── rotation.json │ │ │ │ ├── simple-degrees.json │ │ │ │ ├── simple-with-elevation.json │ │ │ │ └── simple.json │ │ │ └── out/ │ │ │ ├── anti-meridian-degrees.json │ │ │ ├── anti-meridian.json │ │ │ ├── northern-latitudes-degrees.json │ │ │ ├── northern-latitudes.json │ │ │ ├── rotation-degrees.json │ │ │ ├── rotation.json │ │ │ ├── simple-degrees.json │ │ │ ├── simple-with-elevation.json │ │ │ └── simple.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-envelope/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ └── in/ │ │ │ └── feature-collection.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-explode/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── geometrycollection-0-0.json │ │ │ │ ├── geometrycollection-xyz-0-6.json │ │ │ │ ├── multilinestring-0-5.json │ │ │ │ ├── multilinestring-xyz-0-11.json │ │ │ │ ├── multipoint-0-3.json │ │ │ │ ├── multipoint-xyz-0-9.json │ │ │ │ ├── multipolygon-0-4.json │ │ │ │ ├── multipolygon-xyz-0-10.json │ │ │ │ ├── one-1-0.json │ │ │ │ ├── one-2-0.json │ │ │ │ ├── point-0-2.json │ │ │ │ ├── point-xyz-0-8.json │ │ │ │ ├── polygon-0-1.json │ │ │ │ ├── polygon-with-properties.json │ │ │ │ └── polygon-xyz-0-7.json │ │ │ └── out/ │ │ │ ├── geometrycollection-0-0.json │ │ │ ├── geometrycollection-xyz-0-6.json │ │ │ ├── multilinestring-0-5.json │ │ │ ├── multilinestring-xyz-0-11.json │ │ │ ├── multipoint-0-3.json │ │ │ ├── multipoint-xyz-0-9.json │ │ │ ├── multipolygon-0-4.json │ │ │ ├── multipolygon-xyz-0-10.json │ │ │ ├── one-1-0.json │ │ │ ├── one-2-0.json │ │ │ ├── point-0-2.json │ │ │ ├── point-xyz-0-8.json │ │ │ ├── polygon-0-1.json │ │ │ ├── polygon-with-properties.json │ │ │ └── polygon-xyz-0-7.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-flatten/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── FeatureCollection.geojson │ │ │ │ ├── GeometryCollection.geojson │ │ │ │ ├── GeometryObject.geojson │ │ │ │ ├── MultiLineString.geojson │ │ │ │ ├── MultiPoint.geojson │ │ │ │ ├── MultiPolygon.geojson │ │ │ │ └── Polygon.geojson │ │ │ └── out/ │ │ │ ├── FeatureCollection.geojson │ │ │ ├── GeometryCollection.geojson │ │ │ ├── GeometryObject.geojson │ │ │ ├── MultiLineString.geojson │ │ │ ├── MultiPoint.geojson │ │ │ ├── MultiPolygon.geojson │ │ │ └── Polygon.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-flip/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── feature-collection-points.geojson │ │ │ │ ├── linestring.geojson │ │ │ │ ├── point-with-elevation.geojson │ │ │ │ └── polygon.geojson │ │ │ └── out/ │ │ │ ├── feature-collection-points.geojson │ │ │ ├── linestring.geojson │ │ │ ├── point-with-elevation.geojson │ │ │ └── polygon.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-geojson-rbush/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── linestrings.geojson │ │ │ │ ├── points.geojson │ │ │ │ └── polygons.geojson │ │ │ └── out/ │ │ │ ├── all.linestrings.geojson │ │ │ ├── all.points.geojson │ │ │ ├── all.polygons.geojson │ │ │ ├── search.linestrings.geojson │ │ │ ├── search.points.geojson │ │ │ └── search.polygons.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-great-circle/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ └── basic.geojson │ │ │ └── out/ │ │ │ └── basic.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-helpers/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── README_UNITS.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── lib/ │ │ │ └── geojson.ts │ │ ├── package.json │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-hex-grid/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── bbox1-triangles.json │ │ │ │ ├── bbox1.json │ │ │ │ ├── big-bbox.json │ │ │ │ ├── fiji-10-miles.json │ │ │ │ ├── london-20-miles.json │ │ │ │ ├── piedemont-mask.json │ │ │ │ ├── properties.json │ │ │ │ └── resolute.json │ │ │ └── out/ │ │ │ ├── bbox1-triangles.geojson │ │ │ ├── bbox1.geojson │ │ │ ├── big-bbox.geojson │ │ │ ├── fiji-10-miles.geojson │ │ │ ├── london-20-miles.geojson │ │ │ ├── piedemont-mask.geojson │ │ │ ├── properties.geojson │ │ │ └── resolute.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-interpolate/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── data-1km-bbox.geojson │ │ │ │ ├── data-1km.geojson │ │ │ │ ├── data-500m-bbox.geojson │ │ │ │ ├── data-500m.geojson │ │ │ │ ├── data-weight-2.geojson │ │ │ │ ├── hex-zValue-bbox.geojson │ │ │ │ ├── hex-zValue.geojson │ │ │ │ ├── points-random.geojson │ │ │ │ ├── points1-weight-3.geojson │ │ │ │ ├── points1.geojson │ │ │ │ └── triangle-zValue.geojson │ │ │ └── out/ │ │ │ ├── data-1km-bbox.geojson │ │ │ ├── data-1km.geojson │ │ │ ├── data-500m-bbox.geojson │ │ │ ├── data-500m.geojson │ │ │ ├── data-weight-2.geojson │ │ │ ├── hex-zValue-bbox.geojson │ │ │ ├── hex-zValue.geojson │ │ │ ├── points-random.geojson │ │ │ ├── points1-weight-3.geojson │ │ │ ├── points1.geojson │ │ │ └── triangle-zValue.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-intersect/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── Intersect1.geojson │ │ │ │ ├── Intersect2.geojson │ │ │ │ ├── armenia.geojson │ │ │ │ ├── infinite-loop-2705.geojson │ │ │ │ ├── issue-1004.geojson │ │ │ │ ├── issue-1394.geojson │ │ │ │ ├── issue-412.geojson │ │ │ │ ├── issue-702.geojson │ │ │ │ ├── issue-820.geojson │ │ │ │ ├── linestring.geojson │ │ │ │ ├── missing-islands-2084.geojson │ │ │ │ ├── multilinestring.geojson │ │ │ │ ├── multipoint.geojson │ │ │ │ ├── multipolygon-input.geojson │ │ │ │ ├── no-overlap.geojson │ │ │ │ ├── output-multipolygon.geojson │ │ │ │ ├── point.geojson │ │ │ │ ├── skip-issue-1132-line.geojson │ │ │ │ ├── skip-issue-1132-point.geojson │ │ │ │ ├── unable-to-complete-output-ring-2048-1.geojson │ │ │ │ └── unable-to-complete-output-ring-2048-2.geojson │ │ │ └── out/ │ │ │ ├── Intersect1.geojson │ │ │ ├── Intersect2.geojson │ │ │ ├── armenia.geojson │ │ │ ├── issue-1004.geojson │ │ │ ├── issue-1132-line.geojson │ │ │ ├── issue-1394.geojson │ │ │ ├── issue-412.geojson │ │ │ ├── issue-702.geojson │ │ │ ├── issue-820.geojson │ │ │ ├── jsts/ │ │ │ │ ├── Intersect1.geojson │ │ │ │ ├── Intersect2.geojson │ │ │ │ ├── armenia.geojson │ │ │ │ ├── issue-1004.geojson │ │ │ │ ├── issue-1132-line.geojson │ │ │ │ ├── issue-1132-point.geojson │ │ │ │ ├── issue-412.geojson │ │ │ │ ├── issue-820.geojson │ │ │ │ ├── linestring.geojson │ │ │ │ ├── multilinestring.geojson │ │ │ │ ├── multipoint.geojson │ │ │ │ ├── no-overlap.geojson │ │ │ │ └── point.geojson │ │ │ ├── linestring.geojson │ │ │ ├── multilinestring.geojson │ │ │ ├── multipoint.geojson │ │ │ ├── multipolygon-input.geojson │ │ │ ├── no-overlap.geojson │ │ │ ├── output-multipolygon.geojson │ │ │ └── point.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-invariant/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-isobands/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── lib/ │ │ │ ├── grid-to-matrix.ts │ │ │ └── matrix-to-grid.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── 1084.json │ │ │ │ ├── 2956.json │ │ │ │ ├── bigMatrix.json │ │ │ │ ├── matrix1.json │ │ │ │ ├── matrix2.json │ │ │ │ └── pointGrid.geojson │ │ │ └── out/ │ │ │ ├── 1084.geojson │ │ │ ├── 2956.geojson │ │ │ ├── bigMatrix.geojson │ │ │ ├── matrix1.geojson │ │ │ ├── matrix2.geojson │ │ │ └── pointGrid.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-isolines/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── lib/ │ │ │ ├── grid-to-matrix.ts │ │ │ └── matrix-to-grid.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── bigMatrix.json │ │ │ │ ├── matrix1.json │ │ │ │ ├── matrix2.json │ │ │ │ └── pointGrid.geojson │ │ │ └── out/ │ │ │ ├── bigMatrix.geojson │ │ │ ├── matrix1.geojson │ │ │ ├── matrix2.geojson │ │ │ └── pointGrid.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-kinks/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── lib/ │ │ │ └── sweepline-intersections-export.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── hourglass.geojson │ │ │ │ ├── issue-2627.geojson │ │ │ │ ├── multi-linestring.geojson │ │ │ │ ├── multi-polygon.geojson │ │ │ │ ├── open-hourglass.geojson │ │ │ │ ├── switzerlandKinked.geojson │ │ │ │ └── triple.geojson │ │ │ └── out/ │ │ │ ├── hourglass.geojson │ │ │ ├── issue-2627.geojson │ │ │ ├── multi-linestring.geojson │ │ │ ├── multi-polygon.geojson │ │ │ ├── open-hourglass.geojson │ │ │ ├── switzerlandKinked.geojson │ │ │ └── triple.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-length/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── feature-collection.geojson │ │ │ │ ├── multi-linestring.geojson │ │ │ │ ├── multi-polygon.geojson │ │ │ │ ├── polygon.geojson │ │ │ │ ├── route1.geojson │ │ │ │ └── route2.geojson │ │ │ └── out/ │ │ │ ├── feature-collection.json │ │ │ ├── multi-linestring.json │ │ │ ├── multi-polygon.json │ │ │ ├── polygon.json │ │ │ ├── route1.json │ │ │ └── route2.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-line-arc/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── line-arc-full-360.geojson │ │ │ │ ├── line-arc-greater-360.geojson │ │ │ │ ├── line-arc-one-step.geojson │ │ │ │ ├── line-arc-zero-steps.geojson │ │ │ │ ├── line-arc1.geojson │ │ │ │ ├── line-arc2.geojson │ │ │ │ ├── line-arc3.geojson │ │ │ │ ├── line-arc4.geojson │ │ │ │ ├── line-arc5.geojson │ │ │ │ ├── line-arc6.geojson │ │ │ │ └── line-arc7.geojson │ │ │ └── out/ │ │ │ ├── line-arc-full-360.geojson │ │ │ ├── line-arc-greater-360.geojson │ │ │ ├── line-arc-one-step.geojson │ │ │ ├── line-arc-zero-steps.geojson │ │ │ ├── line-arc1.geojson │ │ │ ├── line-arc2.geojson │ │ │ ├── line-arc3.geojson │ │ │ ├── line-arc4.geojson │ │ │ ├── line-arc5.geojson │ │ │ ├── line-arc6.geojson │ │ │ └── line-arc7.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-line-chunk/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── FeatureCollection.geojson │ │ │ │ ├── GeometryCollection.geojson │ │ │ │ ├── LineString.geojson │ │ │ │ └── MultiLineString.geojson │ │ │ └── out/ │ │ │ ├── FeatureCollection.longer.geojson │ │ │ ├── FeatureCollection.reverse.geojson │ │ │ ├── FeatureCollection.shorter.geojson │ │ │ ├── GeometryCollection.longer.geojson │ │ │ ├── GeometryCollection.reverse.geojson │ │ │ ├── GeometryCollection.shorter.geojson │ │ │ ├── LineString.longer.geojson │ │ │ ├── LineString.reverse.geojson │ │ │ ├── LineString.shorter.geojson │ │ │ ├── MultiLineString.longer.geojson │ │ │ ├── MultiLineString.reverse.geojson │ │ │ └── MultiLineString.shorter.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-line-intersect/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── lib/ │ │ │ └── sweepline-intersections-export.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── 2-vertex-segment.geojson │ │ │ │ ├── double-intersect.geojson │ │ │ │ ├── multi-linestring.geojson │ │ │ │ ├── polygons-with-holes.geojson │ │ │ │ ├── same-coordinates.geojson │ │ │ │ ├── self-intersecting-line.geojson │ │ │ │ ├── self-intersecting-multiline.geojson │ │ │ │ ├── self-intersecting-multipoly.geojson │ │ │ │ └── self-intersecting-poly.geojson │ │ │ └── out/ │ │ │ ├── 2-vertex-segment.geojson │ │ │ ├── double-intersect.geojson │ │ │ ├── multi-linestring.geojson │ │ │ ├── polygons-with-holes.geojson │ │ │ ├── same-coordinates.geojson │ │ │ ├── self-intersecting-line.geojson │ │ │ ├── self-intersecting-multiline.geojson │ │ │ ├── self-intersecting-multipoly.geojson │ │ │ └── self-intersecting-poly.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-line-offset/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── lib/ │ │ │ └── intersection.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── line-concave.geojson │ │ │ │ ├── line-horizontal.geojson │ │ │ │ ├── linestring-long.geojson │ │ │ │ ├── linestring-same-start-end.geojson │ │ │ │ ├── linestring-single-segment-only.geojson │ │ │ │ ├── linestring-straight.geojson │ │ │ │ ├── multi-linestring.geojson │ │ │ │ └── northern-line.geojson │ │ │ ├── out/ │ │ │ │ ├── line-concave.geojson │ │ │ │ ├── line-horizontal.geojson │ │ │ │ ├── linestring-long.geojson │ │ │ │ ├── linestring-same-start-end.geojson │ │ │ │ ├── linestring-single-segment-only.geojson │ │ │ │ ├── linestring-straight.geojson │ │ │ │ ├── multi-linestring.geojson │ │ │ │ └── northern-line.geojson │ │ │ └── types.tst.ts │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-line-overlap/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── boolean-line-overlap.geojson │ │ │ │ ├── issue-#901-simplified.geojson │ │ │ │ ├── issue-#901.geojson │ │ │ │ ├── polygons.geojson │ │ │ │ ├── simple1.geojson │ │ │ │ ├── simple2.geojson │ │ │ │ └── simple3.geojson │ │ │ └── out/ │ │ │ ├── boolean-line-overlap.geojson │ │ │ ├── issue-#901-simplified.geojson │ │ │ ├── issue-#901.geojson │ │ │ ├── polygons.geojson │ │ │ ├── simple1.geojson │ │ │ ├── simple2.geojson │ │ │ └── simple3.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-line-segment/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── 2-vertex-segment.geojson │ │ │ │ ├── feature-collection.geojson │ │ │ │ ├── geometry-collection.geojson │ │ │ │ ├── linestring.geojson │ │ │ │ ├── multi-linestring.geojson │ │ │ │ ├── multi-polygon.geojson │ │ │ │ ├── polygon-with-holes.geojson │ │ │ │ └── polygon.geojson │ │ │ └── out/ │ │ │ ├── 2-vertex-segment.geojson │ │ │ ├── feature-collection.geojson │ │ │ ├── geometry-collection.geojson │ │ │ ├── linestring.geojson │ │ │ ├── multi-linestring.geojson │ │ │ ├── multi-polygon.geojson │ │ │ ├── polygon-with-holes.geojson │ │ │ └── polygon.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-line-slice/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── avoid-duplicated-end-points.geojson │ │ │ │ ├── line1.geojson │ │ │ │ ├── line2.geojson │ │ │ │ ├── route1.geojson │ │ │ │ ├── route2.geojson │ │ │ │ └── vertical.geojson │ │ │ └── out/ │ │ │ ├── avoid-duplicated-end-points.geojson │ │ │ ├── line1.geojson │ │ │ ├── line2.geojson │ │ │ ├── route1.geojson │ │ │ ├── route2.geojson │ │ │ └── vertical.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-line-slice-along/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ └── fixtures/ │ │ │ ├── line1.geojson │ │ │ ├── route1.geojson │ │ │ └── route2.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-line-split/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── issue-#1075-1.geojson │ │ │ │ ├── issue-#1075-2.geojson │ │ │ │ ├── issue-#1075-3.geojson │ │ │ │ ├── issue-#1232.geojson │ │ │ │ ├── issue-#852.geojson │ │ │ │ ├── linestrings.geojson │ │ │ │ ├── multi-linestring.geojson │ │ │ │ ├── multi-polygon.geojson │ │ │ │ ├── multiPoint-on-line-1.geojson │ │ │ │ ├── multiPoint-on-line-2.geojson │ │ │ │ ├── point-on-line-1.geojson │ │ │ │ ├── point-on-line-2.geojson │ │ │ │ ├── point-on-line-3.geojson │ │ │ │ ├── polygon-with-holes.geojson │ │ │ │ └── polygon.geojson │ │ │ └── out/ │ │ │ ├── issue-#1075-1.geojson │ │ │ ├── issue-#1075-2.geojson │ │ │ ├── issue-#1075-3.geojson │ │ │ ├── issue-#1232.geojson │ │ │ ├── issue-#852.geojson │ │ │ ├── linestrings.geojson │ │ │ ├── multi-linestring.geojson │ │ │ ├── multi-polygon.geojson │ │ │ ├── multiPoint-on-line-1.geojson │ │ │ ├── multiPoint-on-line-2.geojson │ │ │ ├── point-on-line-1.geojson │ │ │ ├── point-on-line-2.geojson │ │ │ ├── point-on-line-3.geojson │ │ │ ├── polygon-with-holes.geojson │ │ │ └── polygon.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-line-to-polygon/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── collection-linestring.geojson │ │ │ │ ├── geometry-linestring.geojson │ │ │ │ ├── linestring-incomplete.geojson │ │ │ │ ├── linestring.geojson │ │ │ │ ├── linestrings-to-multipolygons.geojson │ │ │ │ ├── multi-linestring-incomplete.geojson │ │ │ │ ├── multi-linestring-nested.geojson │ │ │ │ ├── multi-linestring-nested2.geojson │ │ │ │ ├── multi-linestring-outer-ring-middle-position.geojson │ │ │ │ ├── multi-linestring-with-hole.geojson │ │ │ │ ├── multi-linestrings-nested.geojson │ │ │ │ ├── multi-linestrings-outer-doughnut.geojson │ │ │ │ └── multi-linestrings-with-holes.geojson │ │ │ └── out/ │ │ │ ├── collection-linestring.geojson │ │ │ ├── geometry-linestring.geojson │ │ │ ├── linestring-incomplete.geojson │ │ │ ├── linestring.geojson │ │ │ ├── linestrings-to-multipolygons.geojson │ │ │ ├── multi-linestring-incomplete.geojson │ │ │ ├── multi-linestring-nested.geojson │ │ │ ├── multi-linestring-nested2.geojson │ │ │ ├── multi-linestring-outer-ring-middle-position.geojson │ │ │ ├── multi-linestring-with-hole.geojson │ │ │ ├── multi-linestrings-nested.geojson │ │ │ ├── multi-linestrings-outer-doughnut.geojson │ │ │ └── multi-linestrings-with-holes.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-mask/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── basic.geojson │ │ │ │ ├── mask-outside.geojson │ │ │ │ ├── multi-polygon.geojson │ │ │ │ └── overlapping.geojson │ │ │ └── out/ │ │ │ ├── basic.geojson │ │ │ ├── mask-outside.geojson │ │ │ ├── multi-polygon.geojson │ │ │ └── overlapping.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-meta/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-midpoint/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-moran-index/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ └── in/ │ │ │ ├── columbus.json │ │ │ └── point.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-nearest-neighbor-analysis/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── brazil-states-bbox.json │ │ │ │ ├── brazil-states-brazil-itself-as-study-area.json │ │ │ │ ├── random-large-study-area.json │ │ │ │ ├── random-outlier.json │ │ │ │ ├── random.json │ │ │ │ └── squares.json │ │ │ └── out/ │ │ │ ├── brazil-states-bbox.json │ │ │ ├── brazil-states-brazil-itself-as-study-area.json │ │ │ ├── random-large-study-area.json │ │ │ ├── random-outlier.json │ │ │ ├── random.json │ │ │ └── squares.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-nearest-point/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ └── points.json │ │ │ └── out/ │ │ │ └── points.json │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-nearest-point-on-line/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── line-northern-latitude-#344.geojson │ │ │ │ ├── line1.geojson │ │ │ │ ├── multiLine1.geojson │ │ │ │ ├── multiLine2.geojson │ │ │ │ ├── multiLine3.geojson │ │ │ │ ├── route1.geojson │ │ │ │ └── route2.geojson │ │ │ └── out/ │ │ │ ├── expectedLocation - points behind first point.json │ │ │ ├── expectedLocation - points in front of last point.json │ │ │ ├── expectedLocation - points on joints.json │ │ │ ├── expectedLocation - points on top of line.json │ │ │ ├── line-northern-latitude-#344.geojson │ │ │ ├── line1.geojson │ │ │ ├── multiLine1.geojson │ │ │ ├── multiLine2.geojson │ │ │ ├── multiLine3.geojson │ │ │ ├── route1.geojson │ │ │ └── route2.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-nearest-point-to-line/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── fiji.geojson │ │ │ │ ├── on-line.geojson │ │ │ │ ├── one.geojson │ │ │ │ ├── resolute.geojson │ │ │ │ ├── segment.geojson │ │ │ │ └── two.geojson │ │ │ └── out/ │ │ │ ├── fiji.geojson │ │ │ ├── on-line.geojson │ │ │ ├── one.geojson │ │ │ ├── resolute.geojson │ │ │ ├── segment.geojson │ │ │ └── two.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-planepoint/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ └── in/ │ │ │ └── triangle.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-point-grid/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── big-bbox.json │ │ │ │ ├── fiji-10-miles.json │ │ │ │ ├── london-20-miles.json │ │ │ │ ├── piedemont-mask.json │ │ │ │ ├── properties.json │ │ │ │ └── resolute.json │ │ │ └── out/ │ │ │ ├── big-bbox.geojson │ │ │ ├── fiji-10-miles.geojson │ │ │ ├── london-20-miles.geojson │ │ │ ├── piedemont-mask.geojson │ │ │ ├── properties.geojson │ │ │ └── resolute.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-point-on-feature/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── lines.json │ │ │ │ ├── multiline.json │ │ │ │ ├── multipoint.json │ │ │ │ ├── multipolygon.json │ │ │ │ ├── polygon-in-center.json │ │ │ │ └── polygons.json │ │ │ └── out/ │ │ │ ├── lines.json │ │ │ ├── multiline.json │ │ │ ├── multipoint.json │ │ │ ├── multipolygon.json │ │ │ ├── polygon-in-center.json │ │ │ └── polygons.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-point-to-line-distance/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── city-line1.geojson │ │ │ │ ├── city-line2.geojson │ │ │ │ ├── city-segment-inside1.geojson │ │ │ │ ├── city-segment-inside2.geojson │ │ │ │ ├── city-segment-inside3.geojson │ │ │ │ ├── city-segment-obtuse1.geojson │ │ │ │ ├── city-segment-obtuse2.geojson │ │ │ │ ├── city-segment-projected1.geojson │ │ │ │ ├── city-segment-projected2.geojson │ │ │ │ ├── issue-1156.geojson │ │ │ │ ├── line-fiji.geojson │ │ │ │ ├── line-resolute-bay.geojson │ │ │ │ ├── line1.geojson │ │ │ │ ├── line2.geojson │ │ │ │ ├── segment-fiji.geojson │ │ │ │ ├── segment1.geojson │ │ │ │ ├── segment1a.geojson │ │ │ │ ├── segment2.geojson │ │ │ │ ├── segment3.geojson │ │ │ │ └── segment4.geojson │ │ │ └── out/ │ │ │ ├── city-line1.geojson │ │ │ ├── city-line2.geojson │ │ │ ├── city-segment-inside1.geojson │ │ │ ├── city-segment-inside2.geojson │ │ │ ├── city-segment-inside3.geojson │ │ │ ├── city-segment-obtuse1.geojson │ │ │ ├── city-segment-obtuse2.geojson │ │ │ ├── city-segment-projected1.geojson │ │ │ ├── city-segment-projected2.geojson │ │ │ ├── distances.json │ │ │ ├── issue-1156.geojson │ │ │ ├── line-fiji.geojson │ │ │ ├── line-resolute-bay.geojson │ │ │ ├── line1.geojson │ │ │ ├── line2.geojson │ │ │ ├── segment-fiji.geojson │ │ │ ├── segment1.geojson │ │ │ ├── segment1a.geojson │ │ │ ├── segment2.geojson │ │ │ ├── segment3.geojson │ │ │ └── segment4.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-point-to-polygon-distance/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test.ts │ │ ├── test_fixtures/ │ │ │ ├── issue_2824.geojson │ │ │ ├── long-lines-poly.geojson │ │ │ ├── multi-polygon.geojson │ │ │ └── simple-polygon.geojson │ │ └── tsconfig.json │ ├── turf-points-within-polygon/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-polygon-smooth/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── close.json │ │ │ │ ├── geometry.json │ │ │ │ ├── multipolygon.json │ │ │ │ ├── multipolygonWithHole.json │ │ │ │ ├── polygon.json │ │ │ │ └── withHole.json │ │ │ └── out/ │ │ │ ├── close.json │ │ │ ├── geometry.json │ │ │ ├── multipolygon.json │ │ │ ├── multipolygonWithHole.json │ │ │ ├── polygon.json │ │ │ └── withHole.json │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-polygon-tangents/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── concave.geojson │ │ │ │ ├── high.geojson │ │ │ │ ├── issue#1032.geojson │ │ │ │ ├── issue#1050.geojson │ │ │ │ ├── issue#785.geojson │ │ │ │ ├── multipolygon.geojson │ │ │ │ ├── polygonWithHole.geojson │ │ │ │ └── square.geojson │ │ │ └── out/ │ │ │ ├── concave.geojson │ │ │ ├── high.geojson │ │ │ ├── issue#1032.geojson │ │ │ ├── issue#1050.geojson │ │ │ ├── issue#785.geojson │ │ │ ├── multipolygon.geojson │ │ │ ├── polygonWithHole.geojson │ │ │ └── square.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-polygon-to-line/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── geometry-polygon.geojson │ │ │ │ ├── multi-polygon-outer-doughnut.geojson │ │ │ │ ├── multi-polygon-with-holes.geojson │ │ │ │ ├── multi-polygon.geojson │ │ │ │ ├── polygon-with-hole.geojson │ │ │ │ └── polygon.geojson │ │ │ └── out/ │ │ │ ├── geometry-polygon.geojson │ │ │ ├── multi-polygon-outer-doughnut.geojson │ │ │ ├── multi-polygon-with-holes.geojson │ │ │ ├── multi-polygon.geojson │ │ │ ├── polygon-with-hole.geojson │ │ │ └── polygon.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-polygonize/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── lib/ │ │ │ ├── Edge.ts │ │ │ ├── EdgeRing.ts │ │ │ ├── Graph.ts │ │ │ ├── Node.ts │ │ │ └── util.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── complex.geojson │ │ │ │ ├── cutedge.geojson │ │ │ │ ├── dangle.geojson │ │ │ │ ├── kinked-linestring.geojson │ │ │ │ ├── linestrings.geojson │ │ │ │ ├── multi-linestring.geojson │ │ │ │ └── two-polygons.geojson │ │ │ └── out/ │ │ │ ├── complex.geojson │ │ │ ├── cutedge.geojson │ │ │ ├── dangle.geojson │ │ │ ├── kinked-linestring.geojson │ │ │ ├── linestrings.geojson │ │ │ ├── multi-linestring.geojson │ │ │ └── two-polygons.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-projection/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── mercator/ │ │ │ │ ├── featureCollection.geojson │ │ │ │ ├── fiji.geojson │ │ │ │ ├── geometry.geojson │ │ │ │ ├── line.geojson │ │ │ │ ├── multiLine.geojson │ │ │ │ ├── multiPolygon.geojson │ │ │ │ ├── passed-180th-meridian.geojson │ │ │ │ ├── passed-180th-meridian2.geojson │ │ │ │ ├── point.geojson │ │ │ │ └── polygon.geojson │ │ │ ├── out/ │ │ │ │ ├── mercator-featureCollection.geojson │ │ │ │ ├── mercator-fiji.geojson │ │ │ │ ├── mercator-geometry.geojson │ │ │ │ ├── mercator-multiLine.geojson │ │ │ │ ├── mercator-multiPolygon.geojson │ │ │ │ ├── mercator-passed-180th-meridian.geojson │ │ │ │ ├── mercator-passed-180th-meridian2.geojson │ │ │ │ ├── mercator-point.geojson │ │ │ │ ├── mercator-polygon.geojson │ │ │ │ ├── wgs84-featureCollection.geojson │ │ │ │ ├── wgs84-fiji.geojson │ │ │ │ ├── wgs84-geometry.geojson │ │ │ │ ├── wgs84-line.geojson │ │ │ │ ├── wgs84-multiLine.geojson │ │ │ │ ├── wgs84-multiPolygon.geojson │ │ │ │ ├── wgs84-passed-180th-meridian.geojson │ │ │ │ ├── wgs84-passed-180th-meridian2.geojson │ │ │ │ ├── wgs84-point.geojson │ │ │ │ └── wgs84-polygon.geojson │ │ │ └── wgs84/ │ │ │ ├── featureCollection.geojson │ │ │ ├── fiji.geojson │ │ │ ├── geometry.geojson │ │ │ ├── multiLine.geojson │ │ │ ├── multiPolygon.geojson │ │ │ ├── passed-180th-meridian.geojson │ │ │ ├── passed-180th-meridian2.geojson │ │ │ ├── point.geojson │ │ │ └── polygon.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-quadrat-analysis/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── futian_bbox.json │ │ │ │ ├── futian_grid.json │ │ │ │ ├── futian_random_point.json │ │ │ │ └── shenzhen_bbox.json │ │ │ ├── out/ │ │ │ │ ├── bigBox.json │ │ │ │ ├── randomPoint.json │ │ │ │ ├── smallBox.json │ │ │ │ ├── smallGrid.json │ │ │ │ └── uniformPoint.json │ │ │ └── randomPointSet.good.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-random/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-rectangle-grid/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── 10x10-1degree.json │ │ │ │ ├── australia-mask.json │ │ │ │ ├── big-bbox-500x100-miles.json │ │ │ │ ├── fiji-10x5-miles.json │ │ │ │ ├── global-grid.json │ │ │ │ └── victoria-20x100-km.json │ │ │ └── out/ │ │ │ ├── 10x10-1degree.geojson │ │ │ ├── australia-mask.geojson │ │ │ ├── big-bbox-500x100-miles.geojson │ │ │ ├── fiji-10x5-miles.geojson │ │ │ ├── global-grid.geojson │ │ │ └── victoria-20x100-km.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-rewind/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── feature-collection.geojson │ │ │ │ ├── geometry-polygon-counter-clockwise.geojson │ │ │ │ ├── line-clockwise.geojson │ │ │ │ ├── line-counter-clockwise.geojson │ │ │ │ ├── polygon-clockwise.geojson │ │ │ │ └── polygon-counter-clockwise.geojson │ │ │ └── out/ │ │ │ ├── feature-collection.geojson │ │ │ ├── geometry-polygon-counter-clockwise.geojson │ │ │ ├── line-clockwise.geojson │ │ │ ├── line-counter-clockwise.geojson │ │ │ ├── polygon-clockwise.geojson │ │ │ └── polygon-counter-clockwise.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-rhumb-bearing/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ └── pair1.geojson │ │ │ └── out/ │ │ │ ├── pair1.geojson │ │ │ └── pair1.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-rhumb-destination/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── fiji-east-west-539-lng.geojson │ │ │ │ ├── fiji-east-west.geojson │ │ │ │ ├── fiji-west-east.geojson │ │ │ │ ├── point-0.geojson │ │ │ │ ├── point-180.geojson │ │ │ │ ├── point-90.geojson │ │ │ │ └── point-way-far-away.geojson │ │ │ └── out/ │ │ │ ├── fiji-east-west-539-lng.geojson │ │ │ ├── fiji-east-west.geojson │ │ │ ├── fiji-west-east.geojson │ │ │ ├── point-0.geojson │ │ │ ├── point-180.geojson │ │ │ ├── point-90.geojson │ │ │ └── point-way-far-away.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-rhumb-distance/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── fiji-539-lng.geojson │ │ │ │ ├── points-fiji.geojson │ │ │ │ ├── points1.geojson │ │ │ │ └── points2.geojson │ │ │ └── out/ │ │ │ ├── fiji-539-lng.json │ │ │ ├── points-fiji.json │ │ │ ├── points1.json │ │ │ └── points2.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-sample/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-sector/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── pacman.geojson │ │ │ │ ├── sector-full-360.geojson │ │ │ │ ├── sector-greater-360.geojson │ │ │ │ ├── sector1.geojson │ │ │ │ ├── sector2.geojson │ │ │ │ ├── sector3.geojson │ │ │ │ ├── sector4.geojson │ │ │ │ ├── sector5.geojson │ │ │ │ └── sector6.geojson │ │ │ └── out/ │ │ │ ├── pacman.geojson │ │ │ ├── sector-full-360.geojson │ │ │ ├── sector-greater-360.geojson │ │ │ ├── sector1.geojson │ │ │ ├── sector2.geojson │ │ │ ├── sector3.geojson │ │ │ ├── sector4.geojson │ │ │ ├── sector5.geojson │ │ │ └── sector6.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-shortest-path/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── lib/ │ │ │ └── javascript-astar.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── bermuda-triangle.json │ │ │ │ ├── farmland.json │ │ │ │ ├── multiple-obstacles.json │ │ │ │ └── simple.json │ │ │ └── out/ │ │ │ ├── bermuda-triangle.json │ │ │ ├── farmland.json │ │ │ ├── multiple-obstacles.json │ │ │ └── simple.json │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-simplify/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── lib/ │ │ │ └── simplify.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── argentina.geojson │ │ │ │ ├── featurecollection.geojson │ │ │ │ ├── fiji-hiQ.geojson │ │ │ │ ├── geometrycollection.geojson │ │ │ │ ├── issue-#1144.geojson │ │ │ │ ├── linestring.geojson │ │ │ │ ├── multilinestring.geojson │ │ │ │ ├── multipoint.geojson │ │ │ │ ├── multipolygon.geojson │ │ │ │ ├── point.geojson │ │ │ │ ├── poly-issue#555-5.geojson │ │ │ │ ├── polygon.geojson │ │ │ │ └── simple-polygon.geojson │ │ │ └── out/ │ │ │ ├── argentina.geojson │ │ │ ├── featurecollection.geojson │ │ │ ├── fiji-hiQ.geojson │ │ │ ├── geometrycollection.geojson │ │ │ ├── issue-#1144.geojson │ │ │ ├── linestring.geojson │ │ │ ├── multilinestring.geojson │ │ │ ├── multipoint.geojson │ │ │ ├── multipolygon.geojson │ │ │ ├── point.geojson │ │ │ ├── poly-issue#555-5.geojson │ │ │ ├── polygon.geojson │ │ │ └── simple-polygon.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-square/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-square-grid/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── big-bbox.json │ │ │ │ ├── fiji-10-miles.json │ │ │ │ ├── issue-1215.geojson │ │ │ │ ├── london-20-miles.json │ │ │ │ ├── piedemont-mask.json │ │ │ │ ├── properties.json │ │ │ │ └── resolute.json │ │ │ └── out/ │ │ │ ├── big-bbox.geojson │ │ │ ├── fiji-10-miles.geojson │ │ │ ├── issue-1215.geojson │ │ │ ├── london-20-miles.geojson │ │ │ ├── piedemont-mask.geojson │ │ │ ├── properties.geojson │ │ │ └── resolute.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-standard-deviational-ellipse/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── mta-stations-unweighted.json │ │ │ │ └── mta-stations-weighted.json │ │ │ └── out/ │ │ │ ├── mta-stations-unweighted.json │ │ │ └── mta-stations-weighted.json │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-tag/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── tagMultiPolygons.geojson │ │ │ ├── tagMultiPolygonsPoints.geojson │ │ │ ├── tagPoints.geojson │ │ │ └── tagPolygons.geojson │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-tesselate/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── earcut.d.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test.ts │ │ └── tsconfig.json │ ├── turf-tin/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── Points.json │ │ │ ├── Tin-z.json │ │ │ └── Tin.json │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-transform-rotate/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── line.geojson │ │ │ │ ├── multiLine.geojson │ │ │ │ ├── multiPoint.geojson │ │ │ │ ├── multiPolygon.geojson │ │ │ │ ├── no-rotation.geojson │ │ │ │ ├── point.geojson │ │ │ │ ├── polygon-fiji.geojson │ │ │ │ ├── polygon-resolute-bay.geojson │ │ │ │ ├── polygon-with-hole.geojson │ │ │ │ ├── polygon.geojson │ │ │ │ └── z-coord.geojson │ │ │ └── out/ │ │ │ ├── line.geojson │ │ │ ├── multiLine.geojson │ │ │ ├── multiPoint.geojson │ │ │ ├── multiPolygon.geojson │ │ │ ├── no-rotation.geojson │ │ │ ├── point.geojson │ │ │ ├── polygon-fiji.geojson │ │ │ ├── polygon-resolute-bay.geojson │ │ │ ├── polygon-with-hole.geojson │ │ │ ├── polygon.geojson │ │ │ └── z-coord.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-transform-scale/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── feature-collection-polygon.geojson │ │ │ │ ├── issue-#1059.geojson │ │ │ │ ├── line.geojson │ │ │ │ ├── multiLine.geojson │ │ │ │ ├── multiPoint.geojson │ │ │ │ ├── multiPolygon.geojson │ │ │ │ ├── no-scale.geojson │ │ │ │ ├── origin-inside-bbox.geojson │ │ │ │ ├── origin-inside-feature.geojson │ │ │ │ ├── origin-outside-bbox.geojson │ │ │ │ ├── point.geojson │ │ │ │ ├── poly-double.geojson │ │ │ │ ├── poly-half.geojson │ │ │ │ ├── polygon-fiji.geojson │ │ │ │ ├── polygon-resolute-bay.geojson │ │ │ │ ├── polygon-with-hole.geojson │ │ │ │ ├── polygon.geojson │ │ │ │ └── z-scaling.geojson │ │ │ └── out/ │ │ │ ├── feature-collection-polygon.geojson │ │ │ ├── issue-#1059.geojson │ │ │ ├── issue-#895.geojson │ │ │ ├── line.geojson │ │ │ ├── multiLine.geojson │ │ │ ├── multiPoint.geojson │ │ │ ├── multiPolygon.geojson │ │ │ ├── no-scale.geojson │ │ │ ├── origin-inside-bbox.geojson │ │ │ ├── origin-inside-feature.geojson │ │ │ ├── origin-outside-bbox.geojson │ │ │ ├── point.geojson │ │ │ ├── poly-double.geojson │ │ │ ├── poly-half.geojson │ │ │ ├── polygon-fiji.geojson │ │ │ ├── polygon-resolute-bay.geojson │ │ │ ├── polygon-with-hole.geojson │ │ │ ├── polygon.geojson │ │ │ └── z-scaling.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-transform-translate/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── line.geojson │ │ │ │ ├── multiLine.geojson │ │ │ │ ├── multiPoint.geojson │ │ │ │ ├── multiPolygon.geojson │ │ │ │ ├── no-motion.geojson │ │ │ │ ├── point.geojson │ │ │ │ ├── polygon-fiji.geojson │ │ │ │ ├── polygon-resolute-bay.geojson │ │ │ │ ├── polygon-with-hole.geojson │ │ │ │ ├── polygon.geojson │ │ │ │ └── z-translation.geojson │ │ │ └── out/ │ │ │ ├── line.geojson │ │ │ ├── multiLine.geojson │ │ │ ├── multiPoint.geojson │ │ │ ├── multiPolygon.geojson │ │ │ ├── no-motion.geojson │ │ │ ├── point.geojson │ │ │ ├── polygon-fiji.geojson │ │ │ ├── polygon-resolute-bay.geojson │ │ │ ├── polygon-with-hole.geojson │ │ │ ├── polygon.geojson │ │ │ └── z-translation.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-triangle-grid/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── big-bbox.json │ │ │ │ ├── fiji-10-miles.json │ │ │ │ ├── london-20-miles.json │ │ │ │ ├── piedemont-mask.json │ │ │ │ ├── properties.json │ │ │ │ └── resolute.json │ │ │ └── out/ │ │ │ ├── big-bbox.geojson │ │ │ ├── fiji-10-miles.geojson │ │ │ ├── london-20-miles.geojson │ │ │ ├── piedemont-mask.geojson │ │ │ ├── properties.geojson │ │ │ └── resolute.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-truncate/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── geometry-collection.geojson │ │ │ │ ├── linestring-geometry.geojson │ │ │ │ ├── point-elevation.geojson │ │ │ │ ├── point-geometry.geojson │ │ │ │ ├── point.geojson │ │ │ │ ├── points.geojson │ │ │ │ ├── polygon.geojson │ │ │ │ └── polygons.geojson │ │ │ └── out/ │ │ │ ├── geometry-collection.geojson │ │ │ ├── linestring-geometry.geojson │ │ │ ├── point-elevation.geojson │ │ │ ├── point-geometry.geojson │ │ │ ├── point.geojson │ │ │ ├── points.geojson │ │ │ ├── polygon.geojson │ │ │ └── polygons.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-union/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── maximum-callstack-size-exceeded-2317.geojson │ │ │ │ ├── not-overlapping.geojson │ │ │ │ ├── unable-to-complete-output-ring-1983-1.geojson │ │ │ │ ├── unable-to-complete-output-ring-1983-2.geojson │ │ │ │ ├── unable-to-find-segment-2258-1.geojson │ │ │ │ ├── unable-to-find-segment-2258-2.geojson │ │ │ │ ├── union1.geojson │ │ │ │ ├── union2.geojson │ │ │ │ ├── union3.geojson │ │ │ │ └── union4.geojson │ │ │ └── out/ │ │ │ ├── jsts/ │ │ │ │ ├── not-overlapping.geojson │ │ │ │ ├── union1.geojson │ │ │ │ ├── union2.geojson │ │ │ │ └── union3.geojson │ │ │ ├── not-overlapping.geojson │ │ │ ├── union1.geojson │ │ │ ├── union2.geojson │ │ │ ├── union3.geojson │ │ │ └── union4.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ ├── turf-unkink-polygon/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.ts │ │ ├── index.ts │ │ ├── lib/ │ │ │ ├── geojson-polygon-self-intersections.ts │ │ │ └── simplepolygon.ts │ │ ├── package.json │ │ ├── test/ │ │ │ ├── in/ │ │ │ │ ├── complex.geojson │ │ │ │ ├── hourglass.geojson │ │ │ │ ├── hourglassFeatureCollection.geojson │ │ │ │ ├── hourglassFeatureCollectionMultiPolygon.geojson │ │ │ │ ├── hourglassMultiPolygon.geojson │ │ │ │ ├── issue-#1094.geojson │ │ │ │ ├── polygon-with-holes.geojson │ │ │ │ └── polygon.geojson │ │ │ └── out/ │ │ │ ├── complex.geojson │ │ │ ├── hourglass.geojson │ │ │ ├── hourglassFeatureCollection.geojson │ │ │ ├── hourglassFeatureCollectionMultiPolygon.geojson │ │ │ ├── hourglassMultiPolygon.geojson │ │ │ ├── issue-#1094.geojson │ │ │ ├── polygon-with-holes.geojson │ │ │ └── polygon.geojson │ │ ├── test.ts │ │ ├── tsconfig.json │ │ └── types.ts │ └── turf-voronoi/ │ ├── LICENSE │ ├── README.md │ ├── bench.ts │ ├── index.ts │ ├── package.json │ ├── test/ │ │ ├── in/ │ │ │ ├── ninepoints.json │ │ │ ├── simple.json │ │ │ ├── with-properties.json │ │ │ └── world.json │ │ └── out/ │ │ ├── ninepoints.json │ │ ├── simple.json │ │ ├── with-properties.json │ │ └── world.json │ ├── test.ts │ └── tsconfig.json ├── pnpm-workspace.yaml ├── releases/ │ ├── 4.1.0.md │ ├── 4.2.0.md │ ├── 4.3.0.md │ ├── 4.4.0.md │ ├── 4.5.0.md │ ├── 4.6.0.md │ ├── 4.7.0.md │ ├── 5.0.0.md │ ├── 5.1.0.md │ └── 5.2.0.md ├── scripts/ │ ├── check-dependencies.js │ ├── generate-readmes.mts │ └── postfix.md ├── tsconfig.shared.json └── tsup.config.ts ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/ISSUE_TEMPLATE.md ================================================ Please provide the following when reporting an issue: - [ ] Description of the problem, and how it differs from what you expected. - [ ] Version of Turf you are using, and of any other relevant software. - [ ] GeoJSON data as a [gist file](https://gist.github.com/) or [geojson.io](https://geojson.io/) (filename extension must be `.geojson`). Simple reproducible examples are preferrable. - [ ] Snippet of source code for complex examples using [jsfiddle](https://jsfiddle.net/). - [ ] Confirmation this issue hasn't already been reported, or is resolved and just hasn't been released yet. ================================================ FILE: .github/PULL_REQUEST_TEMPLATE.md ================================================ Please provide the following when creating a PR: - [ ] Meaningful title, including the name of the package being modified. - [ ] Summary of the changes. - [ ] Heads up if this is a breaking change. - [ ] Any issues this [resolves](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests). - [ ] Inclusion of your details in the `contributors` field of `package.json` - you've earned it! 👏 - [ ] Confirmation you've read the steps for [preparing a pull request](https://github.com/Turfjs/turf/blob/master/docs/CONTRIBUTING.md#preparing-a-pull-request). ================================================ FILE: .github/workflows/ci.yml ================================================ name: CI build on: push: branches: - master - support/6.x pull_request: branches: - master - support/6.x permissions: contents: read jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [18.x, 20.x, 22.x, 24.x] steps: - name: Checkout uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2 - name: Install pnpm uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # 4.1.0 with: run_install: false - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # 4.3.0 with: cache: "pnpm" node-version: ${{ matrix.node-version }} - run: pnpm install --frozen-lockfile - run: git diff --exit-code - run: pnpm test ================================================ FILE: .github/workflows/prerelease.yml ================================================ name: prerelease on: push: branches: [master] jobs: build: strategy: fail-fast: true matrix: node: - 18 platform: - ubuntu-latest name: "${{matrix.platform}} / Node.js ${{ matrix.node }}" runs-on: ${{matrix.platform}} steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2 with: fetch-depth: 0 - name: Install pnpm uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # 4.1.0 with: run_install: false - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # 4.3.0 with: node-version: ${{ matrix.node-version }} registry-url: "https://registry.npmjs.org" cache: "pnpm" - run: npm whoami env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - run: pnpm install --frozen-lockfile - run: pnpm test - name: run publish run: lerna publish minor --canary --include-merged-tags --force-publish --dist-tag prerelease --ignore-scripts true --yes env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} ================================================ FILE: .github/workflows/release.yml ================================================ name: Publish release on: push: tags: - "v*.*.*" permissions: id-token: write contents: write jobs: build: environment: release strategy: fail-fast: true matrix: node: - 20 platform: - ubuntu-latest name: "${{matrix.platform}} / Node.js ${{ matrix.node }}" runs-on: ${{matrix.platform}} steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2 with: fetch-depth: 0 - name: Install pnpm uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # 4.1.0 with: run_install: false - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # 4.3.0 with: node-version: ${{ matrix.node-version }} registry-url: "https://registry.npmjs.org" cache: "pnpm" - run: npm whoami env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - run: pnpm install --frozen-lockfile - run: pnpm test - name: run publish run: lerna publish from-package --ignore-scripts true --yes env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Create Github Release uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # 2.2.1 with: make_latest: true generate_release_notes: true draft: true ================================================ FILE: .gitignore ================================================ .rpt2_cache packages/*/dist main.js main.es.js main.mjs main.min.js index.mjs *.min.js *.es5.js .esm-cache package-lock.json env .nyc_output lib-cov *.seed *.log *.csv *.dat *.out *.pid .idea/* types.js .DS_Store types.d.ts pids logs results npm-debug.log* node_modules .vscode .nx/ .cursor/rules/nx-rules.mdc .github/instructions/nx.instructions.md ================================================ FILE: .husky/pre-commit ================================================ pnpm lint-staged ================================================ FILE: .monorepolint.config.mjs ================================================ // @ts-check import * as path from "node:path"; import { existsSync } from "node:fs"; import * as fs from "node:fs/promises"; import { alphabeticalDependencies, alphabeticalScripts, packageOrder, packageEntry, packageScript, requireDependency, REMOVE, } from "@monorepolint/rules"; const TS_PACKAGES = []; // projects that use typescript to build const JS_PACKAGES = []; // projects that use javascript/rollup to build const MAIN_PACKAGE = "@turf/turf"; const TAPE_PACKAGES = []; // projects that have tape tests const TYPES_PACKAGES = []; // projects that have types tests const TSTYCHE_PACKAGES = []; // projects that use tstyche for type tests. const BENCH_PACKAGES = []; // projects that have benchmarks // iterate all the packages and figure out what buckets everything falls into const packagesPath = path.join(process.cwd(), "packages"); for (const pk of await fs.readdir(packagesPath)) { if (pk === "turf") { continue; } const name = JSON.parse( await fs.readFile(path.join(packagesPath, pk, "package.json"), "utf8") ).name; if (existsSync(path.join(packagesPath, pk, "index.ts"))) { TS_PACKAGES.push(name); } else { JS_PACKAGES.push(name); } if (existsSync(path.join(pk, "test.js"))) { TAPE_PACKAGES.push(name); } if (existsSync(path.join(packagesPath, pk, "types.ts"))) { TYPES_PACKAGES.push(name); } if (existsSync(path.join(packagesPath, pk, "test/types.tst.ts"))) { TSTYCHE_PACKAGES.push(name); } } const TS_TAPE_PACKAGES = TAPE_PACKAGES.filter( (pkg) => -1 !== TS_PACKAGES.indexOf(pkg) ); const JS_TAPE_PACKAGES = TAPE_PACKAGES.filter( (pkg) => -1 !== JS_PACKAGES.indexOf(pkg) ); export default { rules: [ packageOrder({ options: { order: [ "name", "version", "private", "description", "author", "contributors", "license", "bugs", "homepage", "repository", "funding", "publishConfig", "keywords", "type", "main", "module", "types", "exports", "browser", "sideEffects", "files", "scripts", "husky", "lint-staged", "packageManager", "devDependencies", "dependencies", ], }, includeWorkspaceRoot: true, }), alphabeticalDependencies({ includeWorkspaceRoot: true }), alphabeticalScripts({ includeWorkspaceRoot: true }), packageEntry({ options: { entries: { type: "module", main: "dist/cjs/index.cjs", module: "dist/esm/index.js", types: "dist/esm/index.d.ts", sideEffects: false, publishConfig: { access: "public", }, // @turf/turf is commonly consumed through CDNs, moving this output file is a breaking change for anyone // who has a hardcoded reference to this specific file, instead of letting the CDN pick the path. // Example of a URL that will break: https://unpkg.com/@turf/turf/dist/turf.min.js // Example of a URL that will keep working: https://unpkg.com/@turf/turf browser: "turf.min.js", files: ["dist", "turf.min.js"], exports: { "./package.json": "./package.json", ".": { import: { types: "./dist/esm/index.d.ts", default: "./dist/esm/index.js", }, require: { types: "./dist/cjs/index.d.cts", default: "./dist/cjs/index.cjs", }, }, }, }, }, includePackages: [MAIN_PACKAGE], }), packageEntry({ options: { entries: { type: "module", main: "dist/cjs/index.cjs", module: "dist/esm/index.js", types: "dist/esm/index.d.ts", sideEffects: false, publishConfig: { access: "public", }, exports: { "./package.json": "./package.json", ".": { import: { types: "./dist/esm/index.d.ts", default: "./dist/esm/index.js", }, require: { types: "./dist/cjs/index.d.cts", default: "./dist/cjs/index.cjs", }, }, }, }, }, includePackages: [...TS_PACKAGES, ...JS_PACKAGES], }), packageEntry({ options: { entries: { files: ["dist"], }, }, includePackages: [...TS_PACKAGES, ...JS_PACKAGES], }), packageEntry({ options: { entries: { funding: "https://opencollective.com/turf", }, }, }), packageScript({ options: { scripts: { docs: REMOVE, test: "pnpm run /test:.*/", }, }, excludePackages: [MAIN_PACKAGE], }), packageScript({ options: { scripts: { build: "tsup --config ../../tsup.config.ts", }, }, includePackages: [...TS_PACKAGES, ...JS_PACKAGES], }), packageScript({ options: { scripts: { build: "tsup --config ../../tsup.config.ts && rollup -c rollup.config.js", }, }, includePackages: [MAIN_PACKAGE], }), packageScript({ options: { scripts: { bench: "tsx bench.ts", "test:tape": "tsx test.ts", }, }, includePackages: [...TS_TAPE_PACKAGES, ...JS_TAPE_PACKAGES], }), packageScript({ options: { scripts: { "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts", }, }, includePackages: TYPES_PACKAGES, }), packageScript({ options: { scripts: { "test:types": "tstyche", }, }, includePackages: TSTYCHE_PACKAGES, }), requireDependency({ options: { devDependencies: { benchmark: "^2.1.4", glob: REMOVE, tape: "^5.9.0", tsup: "^8.4.0", tsx: "^4.19.4", }, }, includePackages: [...TS_PACKAGES, ...JS_PACKAGES], }), requireDependency({ options: { dependencies: { tslib: "^2.8.1", }, devDependencies: { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", typescript: "^5.8.3", }, }, includePackages: TS_PACKAGES, }), requireDependency({ options: { devDependencies: { tstyche: "^6.2.0", }, }, includePackages: TSTYCHE_PACKAGES, }), requireDependency({ options: { dependencies: { "@types/geojson": "^7946.0.10", }, }, includePackages: [MAIN_PACKAGE, ...TS_PACKAGES, ...JS_PACKAGES], }), ], }; ================================================ FILE: .prettierignore ================================================ dist *.md node_modules # is actually output packages/turf/turf.min.js packages/turf/test.example.js pnpm-lock.yaml /.nx/cache /.nx/workspace-data ================================================ FILE: .prettierrc.json ================================================ { "trailingComma": "es5", "overrides": [ { "files": "*.{geojson,json}", "options": { "printWidth": 90 } } ] } ================================================ FILE: CHANGELOG.md ================================================ Changelog is no longer maintained. See Turf Github [releases](https://github.com/Turfjs/turf/releases) # 7.0.0 ## ⚠️ Breaking - Move to @types/geojson package instead of declaring our own. Typescript consumers of Turf will need to import from @types/geojson. (#2158) - Move distribution JS to target ES2017 (#2237) - Please change to using named exports instead of default exports from the various packages - [`@turf/helpers`](helpers) Correct the conversion factor for degrees (#2177) - [`@turf/helpers`](helpers) polygon() will now throw if the first and last coordinates are not the same (#2173) - [`@turf/helpers`](helpers) Separate AreaUnits into its own type (#2393) - [`@turf/area`](area) Fix earth radius to use WGS84 median earth radius (#2166) - [`@turf/turf`](turf) Remove re-exports for turf 4.x compatability (#2183) - [`@turf/rectangle-grid`](rectangle-grid) Fix correctness for large areas (#2106) - [`@turf/square-grid](square-grid) Fix correctness for large areas (#2106) - [`@turf/union`](union) Accept FeatureCollection for multiple inputs (#2247) - [`@turf/difference`](difference) Accept FeatureCollection for multiple inputs (#2247) - [`@turf/intersect`](intersect) Accept FeatureCollection for multiple inputs (#2247) - [`@turf/buffer`](buffer) Add undefined return for when the geometry is invalid (#2613) ## 🏅 New Features/Enhancements - [`@turf/kinks`](kinks) Move to sweepline-intersections library for performance (#1896) - [`@turf/buffer](buffer) Reduce bundle size by moving from turf-jsts to @turf/jsts (#2217) - [`@turf/boolean-equal`](boolean-equal) Add option for precision (#2231) - [`@turf/boolean-point-in-polygon`](boolean-point-in-polygon) Move to point-in-polygon-hao library for performance and correctness (#1893) - [`@turf/line-intersect`][line-intersect] Move to sweepline-intersections library for performance (#2033) - [`@turf/boolean-contains`](boolean-contains) Add multipolygon support (#2338) - [`@turf/nearest-point`](nearest-point) Add unit option (#2415) - [`@turf/voronoi`](voronoi) Retain properties from points (#1450) ## 🐛 Bug Fixes - [`@turf/polygon-smooth`](polygon-smooth) Options argument is now actually optional (#2149) - [`@turf/polygon-smooth`](polygon-smooth) Fix crashes with polygons containing multiple holes (#2323) - [`@turf/line-arc`](line-arc) Ensure all points are generated when the first and last points are the same (#2142) - [`@turf/clone`](clone) Fix cloning of features with null geometries (#2316) - [`@turf/dissolve`](dissolve) Now correctly depends on @turf/flatten (#2345) - [`@turf/clean-coords`](clean-coords) Allow 3 coordinate closed LineStrings (#2178) - [`@turf/helpers`](helpers) Add alternate spellings for Units: millimetres, centimetres, metres, kilometres (#2168) - [`@turf/ellipse`](ellipse) Add pivot and angle options to typescript (#2174) - [`@turf/quadrat-analysis`](quadrat-analysis) Fix test flake (#2182) - [`@turf/bbox`](bbox) Use input bbox instead of computing it (#2171) - [`@turf/transform-scale`](transform-scale) Removes invalid bbox when scaling (#2171) - [`@turf/invariant`](invariant) getCoord now shallow clones its result to prevent accidental mutations (#2167) - [`@turf/line-overlap`](line-overlap) Identify multiple overlaps on a single segment (#2134) - [`@turf/transform-scale`](transform-scale) Fix factor to allow only numbers >= 0 (#2169) - [`@turf/voronoi`](voronoi) Make options optional (#2195) - [`@turf/boolean-within`](boolean-within) Fix multipoint checks (#2216) - [`@turf/points-within-polygon`](points-within-polygon) Fix dropped properties on MultiPoint results (#2227) - [`@turf/random`](random) Throws error on invalid bbox inputs (#2172) - [`@turf/boolean-parallel`](boolean-parallel) Lines with 180 degree angle between them are also considered parallel (#2475) - [`@turf/unkink-polygon`](unkink-polygon) Fix a maximum call stack size exceeded error with very large polygons (#2504) - [`@turf/line-arc`](line-arc) Number of arc segments generated wasn't related to steps value passed in (#2524) - [`@turf/boolean-equal`](boolean-equal) Replace geojson-equality with new implementation (#2531) - [`@turf/boolean-overlap`](boolean-overlap) Replace geojson-equality with new implementation (#2531) - [`@turf/boolean-within`](boolean-within) Now correctly checks that the final point is contained (#2599) ## 📖 Documentation - [`@turf/bbox`][bbox] Improve documentation (#2153) - [`@turf/great-circle`][great-circle] Add license for arc.js (#2175) - [`@turf/boolean-crosses`](boolean-crosses) Document OpenGIS Simple Feature Spec requirement (#2184) - [`@turf/turf-clone`](clone) Now has more useful Typescript inference (#2239) - [`@turf/centroid`](centroid) Improve docs (#2213) - [`@turf/buffer`](buffer) Clean up Typescript types (#2188) - [`@turf/polygon-smooth`](polygon-smooth) Clean up a typo (#2293) - [`@turf/nearest-point-on-line`](nearest-point-on-line) Clean up typescript types (#2296) - [`@turf/boolean-touches`](boolean-touches) Add boolean-touches to docs (#2431) - [`@turf/boolean-equal`](boolean-equal) Improve docs (#2412) - Remove Bower references (#2146) - Fix typo in README (#2313) - Lots of cleanup for CONTRIBUTING, README, and RELEASING (#2186) - Fix docs generation (#2279) - Add a link to turf_dart (#2286) ## 🔔 Misc - [`@turf/turf](turf) Add booleanIntersects typescript export (#2157) - [`@turf/turf](turf) Add booleanTouches export (#2170) - [`@turf/turf](turf) Add booleanConcave export (#2265) - [`@turf/simplify`](simplify) Clean up internals for less object churn (#2561) - [`@turf/helpers](helpers) Make isObject a little more accurate (#2176) - Migrate from geojsonhint to @placemark/check-geojson (#2571) - Add custom types entry point to exports, required by Typescript for node16, nodenext and bundler module resolution strategies (#2400, #2452) - types.ts tests are now run in strict mode (#2363) - Uses tslib now for smaller bundles (#2165) - Remove object-assign dependency from all packages (#2241) - Lots of dependencies have been upgraded # 6.5.0 ## 🏅 New Features/Enhancements - [`@turf/points-with-polygon`](points-with-polygon) Add MultiPoint support (PR https://github.com/Turfjs/turf/pull/2137 - Author @twelch) ## 🐛 Bug Fixes - [`@turf/dissolve`](dissolve) Complete rewrite of the dissolve module to resolve many bugs (PR https://github.com/Turfjs/turf/pull/2110 - Author @rowanwins) - [`@turf/mask`](mask) Complete rewrite of the mask module to resolve many bugs (PR https://github.com/Turfjs/turf/pull/2130 - Author @rowanwins) - [`@turf/boolean-valid`](boolean-valid) Add missing dependency to (PR https://github.com/Turfjs/turf/pull/2094 - Author @rycgar) ## 📖 Documentation - [`@turf/boolean-overlap`](boolean-overlap) Improve clarity (PR https://github.com/Turfjs/turf/pull/2133 - Author @patrickbrett) ## 🔔 Misc - Enable TS Strict Mode (PR https://github.com/Turfjs/turf/pull/2126 - Author @mfedderly) # 6.4.0 ## 🏅 New Features/Enhancements - [`@turf/boolean-point-on-line`](boolean-point-on-line) Added an `epislon` option to help in floating point comparison. (PR https://github.com/Turfjs/turf/pull/2051 - Author @okcoker) ## 🐛 Bug Fixes - [`@turf/line-slice-along`](line-slice-along) Fixed a bug where the offset distance equal to the length of the line (PR https://github.com/Turfjs/turf/pull/2030 - Author @EricPKerr) - [`@turf/helpers`](helpers) Fixed the conversion ratio for converting meters to yards and vice-versa (PR https://github.com/Turfjs/turf/pull/2046 - Author @anotherhale) - [`@turf/center-median`](center-median) Fixed a missing TS type import (PR https://github.com/Turfjs/turf/pull/2044 - Author @Seairth) - [`@turf/bezier-spline](bezier-spline) Fix a bug ensuring the spline result reaches the end of the input (PR https://github.com/Turfjs/turf/pull/2090 - Author @the-nemz) ## 📖 Documentation - [`@turf/transform-rotate`](transform-rotate) and [`@turf/ellipse`](ellipse)) Improve documentation for angle parameter (PR https://github.com/Turfjs/turf/pull/2016 - Author @pasieronen) - [`@turf/line-chunk`](line-chunk) Fix an invalid anchor (PR https://github.com/Turfjs/turf/pull/2071 - Author @GraxMonzo) - [`@turf/distance`](distance) Enhance distance doco so supported inputs are clearer (PR https://github.com/Turfjs/turf/pull/2032 - Author @rowanwins) ## 🔔 Misc - [`@turf/concave`](concave) Replace deprecated topojson dependency (PR https://github.com/Turfjs/turf/pull/2037 - Author @elliots) - Work towards enabling TS Strict Mode (PR https://github.com/Turfjs/turf/pull/2053 - Author @mfedderly) # 6.3.0 ### Fix issues importing Turf for react-native, webpack 5, and other bundlers (PR https://github.com/Turfjs/turf/pull/2004 - Author r0b0t3d) (PR https://github.com/Turfjs/turf/pull/2011 - Author mfedderly) ### [`@turf/turf`][turf] expose @turf/boolean-intersect (PR https://github.com/Turfjs/turf/pull/2007 - Author rowanwins) # 6.2.0 After a bit of hiatus, TurfJS is resuming releases. ## ⭐️ Major Updates - ES Modules available for all packages - Tree shaking should significantly reduce import size of @turf/turf - Better support for ESM modules (PR https://github.com/Turfjs/turf/pull/1942 - Author @diachedelic) - Clean-up of test and benchmark running to make publishing easier - Enforce styling using Prettier - Enable ESLint and get rid of unused variables - Upgrade rollup for more correct javascript module builds - Only include ES5 code ## 🚀 New Modules ### [`@turf/boolean-touches`][boolean-touches] Determines if two features touch but do not intersect ### [`@turf/boolean-valid`][boolean-valid] Checks if the geometry is a valid according to the OGC Simple Feature Specification ### [`@turf/quadrat-analysis`][quadrat-analysis] Performs a quadrat analysis on a set of points ### [`@turf/rectangle-grid`][rectangle-grid] Creates a grid of rectangles from a bounding box ### [`@turf/voroni`][voronoi] Typescript types for the options parameter have been fixed (PR https://github.com/Turfjs/turf/pull/1424 - Author @stevage) ### [`@turf/points-within-polygon`][points-within-polygon] Typescript types around the Feature's Properties will now be preserved. (PR https://github.com/Turfjs/turf/pull/1761 - Author @rugheid) ### [`@turf/rewind`][rewind] Typescript types for the 'reverse' option are now correct. Previously it was misnamed as 'reversed'. (PR https://github.com/Turfjs/turf/pull/1786 - Author @jonnycornwell) ### [`@turf/difference`][difference] No longer publishes an .mjs file. ### [`@turf/meta`][meta] No longer publishes an .mjs file. ### [`@turf/tag`][tag] Add MultiPolygon support. (PR https://github.com/Turfjs/turf/pull/1996 - Author bryceroney) ## 🐛 Bug Fixes - [`@turf/centroid`](centroid) Don't visit first point twice when calculating centroid (PR https://github.com/Turfjs/turf/pull/1894 - Author @rowanwins) - [`@turf/transform-translate`](transform-translate) Better handling of negative distances (PR https://github.com/Turfjs/turf/pull/1895 - Author @rowanwins) - [`@turf/union`](union), [`@turf/difference`](difference), [`@turf/intersect`](intersect) Use polygon-clipping library to fix correctness issues (PR https://github.com/Turfjs/turf/pull/1916 - Authors @mbullington, @ngottlieb) - [`@turf/buffer`](buffer) Change default number of steps to 8, and actually support the steps option (PR https://github.com/Turfjs/turf/pull/1931 - Author stevenchanin) - [`@turf/buffer`](buffer) Fix projection issues that produce undersized buffers at non-equatorial latitudes (PR https://github.com/Turfjs/turf/pull/1956 - Author dyakovlev) - [`@turf/helpers`](helpers) Add runtime checks to point() method, fixing an API break (PR https://github.com/Turfjs/turf/pull/1964) ## 🏅 New Features/Enhancements - [`@turf/boolean-overlap`](boolean-overlap) Better performance for MultiPoint geometries (PR https://github.com/Turfjs/turf/pull/1910 - Author @mfedderly) - [`@turf/helpers`](helpers) Add hectares to convertArea (PR https://github.com/Turfjs/turf/pull/1943 - Author @DanielJDufour) - [`@turf/great-circle`](great-circle) Update Typescript types to support MultiLineString input (PR https://github.com/Turfjs/turf/pull/1928 - Author kronick) ## 📖 Documentation - [`@turf/square-grid`](square-grid) Clarify inputs (PR https://github.com/Turfjs/turf/pull/1885 - Author @raphael-leger) - [`@turf/greater-circle`](greater-circle) Clarify properties option example (PR https://github.com/Turfjs/turf/pull/1888 - Author @chris-catignani) ## ⚠️ Breaking Change - [`@turf/line-to-polygon`](line-to-polygon) no longer modifies its input unless the mutate option is true (PR https://github.com/Turfjs/turf/pull/1879 - Author @MortenBirk) - [`@turf/unkink-polygon`](unkink-polygon) remove Number.prototype.modulo override (PR https://github.com/Turfjs/turf/pull/1978) # 5.0.0 🎉 ## ⭐️ Major Updates - TurfJS now supports ES Modules ([Related PR's](https://github.com/Turfjs/turf/pulls?q=is%3Apr+modules+is%3Aclosed+label%3Aes-module)) - Optional parameters are now defined as an `Object`. ## 🚀 New Modules ### [`@turf/voronoi`][voronoi] Takes a FeatureCollection of points, and a bounding box, and returns a FeatureCollection of Voronoi polygons. (PR https://github.com/Turfjs/turf/pull/1043 - Author @stevage) ### [`@turf/shortest-path`][shortest-path] Returns the shortest path from start to end without colliding with any feature in obstacles (PR https://github.com/Turfjs/turf/pull/956 - Author @stebogit) ### [`@turf/boolean-parallel`][boolean-parallel] Boolean-Parallel returns True if each segment of `line1` is parallel to the correspondent segment of `line2` (PR https://github.com/Turfjs/turf/pull/941 - Author @stebogit) ### [`@turf/nearest-point-on-line`][nearest-point-on-line] Takes a {@link Point} and a {@link LineString} and calculates the closest Point on the (Multi)LineString. (PR https://github.com/Turfjs/turf/pull/939 - Author @stebogit) ## 🏅 New Features/Enhancements - Updates [`@turf/unkink-polygon`][unkink-polygon] testing & added `flattenEach` instead of using `flatten`. (PR https://github.com/Turfjs/turf/pull/889) - Add multi-geomtry support to [`@turf/line-split`](line-split) (PR https://github.com/Turfjs/turf/pull/1078) - Improve [`@turf/meta`](meta) `lineEach` method to provide properties, id and bbox (PR https://github.com/Turfjs/turf/pull/1010) ## 🐛 Bug Fixes - Fixes [`@turf/helpers`](helpers) earth radius variable (PR https://github.com/Turfjs/turf/pull/1012) - Fixes [`@turf/polygon-tangents`](polygon-tangents) bug (PR https://github.com/Turfjs/turf/pull/1058) - Fixes [`@turf/line-chunk`](line-chunk) bug when the number of segments is integer (PR https://github.com/Turfjs/turf/pull/1046) - Fixes `segmentEach` and `segmentReduce` methods in [`@turf/meta`](meta) to ensure something is returned (PR https://github.com/Turfjs/turf/pull/968) ## ⚠️ Breaking Change - Optional parameters are now defined as an `Object`: **Before** ```js var from = [-75.343, 39.984]; var to = [-75.534, 39.123]; var units = 'miles'; var distance = turf.distance(from, to, units); ``` **After** ```js var from = [-75.343, 39.984]; var to = [-75.534, 39.123]; var options = {units: 'miles'}; var distance = turf.distance(from, to, options); ``` - Reworked `@turf/random` PR https://github.com/Turfjs/turf/issues/994 - Deprecate `@turf/idw` Issue https://github.com/Turfjs/turf/issues/887 - Reworked Grid modules `@turf/point-grid/hex/square/triangle` PR https://github.com/Turfjs/turf/pull/1029 - Renamed Modules/Methods - [x] `@turf/inside` => `@turf/boolean-point-in-polygon` https://github.com/Turfjs/turf/issues/860#issuecomment-317216235 - [x] `@turf/within` => `@turf/points-within-polygon` https://github.com/Turfjs/turf/issues/860#issuecomment-317216235 - [x] [`@turf/bezier`](https://github.com/Turfjs/turf/blob/master/packages/turf-bezier/index.js) => `@turf/bezier-spline` Issue https://github.com/Turfjs/turf/issues/661 - [x] [`@turf/nearest`](https://github.com/Turfjs/turf/blob/master/packages/turf-nearest/index.js) => `@turf/nearest-point` https://github.com/Turfjs/turf/pull/858#issuecomment-317197295 - [x] [`@turf/point-on-line`](https://github.com/Turfjs/turf/blob/master/packages/turf-point-on-line/index.js) => `@turf/nearest-point-on-line` https://github.com/Turfjs/turf/pull/858#issuecomment-317197295 - [x] [`@turf/lineDistance`](https://github.com/Turfjs/turf/blob/master/packages/turf-line-distance/index.js) => `@turf/length` https://github.com/Turfjs/turf/issues/860#issuecomment-317229869 - [x] [`@turf/helpers`](https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/index.js) - [x] `radians2degrees` => `radiansToDegrees` - [x] `degrees2radians` => `degreesToRadians` - [x] `distanceToDegrees` => `lengthToDegrees` - [x] `distanceToRadians` => `lengthToRadians` - [x] `radiansToDistance` => `radiansToLength` - [x] `bearingToAngle` => `bearingToAzimuth` - [x] `convertDistance` => `convertLength` # 4.7.0 ## 🚀 New Modules ### [`@turf/projection`][projection] - **toMercator**: Converts a WGS84 GeoJSON object into Mercator (EPSG:900913) projection - **toWgs84**: Converts a Mercator (EPSG:900913) GeoJSON object into WGS84 projection (PR https://github.com/Turfjs/turf/pull/927 - Author @stebogit) ### [`@turf/point-to-line-distance`][point-to-line-distance] Returns the minimum distance between a {@link Point} and a {@link LineString}, being the distance from a line the minimum distance between the point and any segment of the `LineString`. (PR https://github.com/Turfjs/turf/pull/925 - Author @stebogit) ### [`@turf/boolean-within`][boolean-within] Boolean-within returns true if the first geometry is completely within the second geometry. The interiors of both geometries must intersect and, the interior and boundary of the primary (geometry a) must not intersect the exterior of the secondary (geometry b). Boolean-within returns the exact opposite result of the [`@turf/boolean-contains`][boolean-contains]. (PR https://github.com/Turfjs/turf/pull/924 - Author @rowanwins) ## 🏅 New Features/Enhancements - Updates [`@turf/unkink-polygon`][unkink-polygon] testing & added `flattenEach` instead of using `flatten`. (PR https://github.com/Turfjs/turf/pull/889) - [`@turf/concave`][concave] refactoring, replacing [`@turf/union`][union] with `geojson-dissolve` to increase speed and added support to `null` geometries (PR https://github.com/Turfjs/turf/pull/907 - Contributor @stebogit @DenisCarriere) - Adds doc note on [`@turf/polygonize`][polygonize] about "Edges must be correctly noded" (PR https://github.com/Turfjs/turf/pull/898 - Contributor @stebogit @NickCis) - Adds support to foreign Members to [`@turf/clone`][clone] (PR https://github.com/Turfjs/turf/pull/904 - Contributor @DenisCarriere) - Extends support of any `GeoJSON` to [`@turf/simplify`][simplify] (PR https://github.com/Turfjs/turf/pull/903 - Contributor @DenisCarriere @stebogit) - Adds new `isNumber` function and improves type checking for few [`@turf/helpers`][helpers] methods (PR https://github.com/Turfjs/turf/pull/920 - Contributor @DenisCarriere @stebogit) - Adds throw errors to invalid `MultiPolygons` for [`@turf/simplify`][simplify] (PR https://github.com/Turfjs/turf/pull/922 - Contributor @DenisCarriere) ## 🐛 Bug Fixes - Fixes [`@turf/bbox-clip`](bbox-clip) point intersection handling, adding sanity-checks the lineclip output (PR https://github.com/Turfjs/turf/pull/886) - Fixes [`@turf/line-split`][line-split] endpoint case handling applying [`@turf/truncate`][truncate] on `splitter` (PR https://github.com/Turfjs/turf/pull/892 and https://github.com/Turfjs/turf/pull/855 - Contributor @stebogit) - Fixes [`@turf/intersect`][intersect] throwing "uncaught exception", adding [`@turf/truncate`][truncate] to inputs and returning `Feature` if no geometry (PR https://github.com/Turfjs/turf/pull/890 - Contributor @stebogit @vicvolk) - Fixes [`@turf/hex-grid`][hex-grid] not properly cloning the last ring vertex (PR https://github.com/Turfjs/turf/pull/897 - Contributor @stebogit @DenisCarriere) - Fixes [`@turf/boolean-disjoint`][boolean-disjoint] incorrect behaviour where a poly was completely contained within another poly (PR https://github.com/Turfjs/turf/pull/908 - Contributor @rowanwins) - Fixes [`@turf/simplify`][simplify] process pending on particular geometries, applying [`@turf/clean-coords`][clean-coords] to input. (PR https://github.com/Turfjs/turf/pull/903 - Contributor @stebogit @DenisCarriere) - Fixes `boolean` properties not being translated with [`@turf/clone`][clone] (PR https://github.com/Turfjs/turf/pull/909 - Contributor @DenisCarriere) - Fixes [`@turf/boolean-contains`][boolean-contains] incorrect output when checking two polygons (PR https://github.com/Turfjs/turf/pull/923 - Contributor @rowanwins @DenisCarriere) # 4.6.0 ## 🚀 New Modules - [`@turf/clean-coords`](https://github.com/Turfjs/turf/tree/master/packages/turf-clean-coords) Removes redundant coordinates from any GeoJSON Geometry. (PR https://github.com/Turfjs/turf/pull/875 - Author @stebogit) - [`@turf/interpolate`](https://github.com/Turfjs/turf/tree/master/packages/turf-interpolate) Takes a set of points and estimates their 'property' values on a grid using the [Inverse Distance Weighting (IDW) method.](https://en.wikipedia.org/wiki/Inverse_distance_weighting). (PR https://github.com/Turfjs/turf/pull/832 - Author @stebogit) - [`@turf/clusters-dbscan`](https://github.com/Turfjs/turf/tree/master/packages/turf-clusters-dbscan) Takes a set of Points and partition them into clusters according to [DBSCAN's](https://en.wikipedia.org/wiki/DBSCAN) data clustering algorithm. (PR https://github.com/Turfjs/turf/pull/812 and https://github.com/Turfjs/turf/pull/851 - Author @DenisCarriere) > special mention to [this incredibly instructive and fun interactive map](https://github.com/DenisCarriere/turf-example-clusters-dbscan) by @DenisCarriere 😎👏 - [`@turf/clusters`](https://github.com/Turfjs/turf/tree/master/packages/turf-clusters) Provides `getCluster`, `clusterEach`, and `clusterReduce` functions. (PR https://github.com/Turfjs/turf/pull/847 - Author @DenisCarriere) - [`@turf/boolean-point-on-line`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-point-on-line) Returns true if a point is on a line. Accepts a optional parameter to ignore the start and end vertices of the linestring. (PR https://github.com/Turfjs/turf/pull/858 - Author @rowanwins) - [`@turf/boolean-overlap`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-overlap) Takes two features and returns true or false whether or not they overlap, i.e. whether any pair of edges on the two polygons intersect. If there are any edge intersections, the polygons overlap. (PR https://github.com/Turfjs/turf/pull/856 and https://github.com/Turfjs/turf/pull/868 - Author @stebogit @tcql) - [`@turf/boolean-equal`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-equal) Determine whether two geometries of the same type have identical X,Y coordinate values. (PR https://github.com/Turfjs/turf/pull/869 - Author @stebogit @tcql) ## 🏅 New Features/Enhancements - Sets `centered` param default to `true` in [`@turf/point-grid`](https://github.com/Turfjs/turf/tree/master/packages/turf-point-grid) (PR https://github.com/Turfjs/turf/pull/836 - Contributor @stebogit) - Adds `MultiLineString` support for [`@turf/point-on-line`](https://github.com/Turfjs/turf/tree/master/packages/turf-point-on-line) (PR https://github.com/Turfjs/turf/pull/838 - Contributor @stebogit) - Renames `@turf/clusters` => `@turf/clusters-kmeans`, plus adds deprecated warning message to `@turf/clusters@4.5.2` (See Issue https://github.com/Turfjs/turf/issues/845) - Changes output type of `@turf/clusters-kmeans` (See Issue https://github.com/Turfjs/turf/issues/850 - Contributor @DenisCarriere) - Adds `segmentEach` and `segmentReduce` functions to `@turf/meta` (See Issue https://github.com/Turfjs/turf/issues/850 - Contributor @DenisCarriere) - Adds tests and linting on JSDoc in TurfJS core from `turf-www`; see Issue https://github.com/Turfjs/turf/issues/859 (PR https://github.com/Turfjs/turf/issues/857 + https://github.com/Turfjs/turf/issues/864 + https://github.com/Turfjs/turf/issues/870 - Contributor @DenisCarriere @stebogit) - Introduces `null` Geometry support across TurfJS modules (See Issue https://github.com/Turfjs/turf/issues/853) (PR https://github.com/Turfjs/turf/issues/866 - Contributor @DenisCarriere) - Includes feature(Sub)Index in `coordEach`/`coordReduce` (@turf/meta) 🎉 (PR https://github.com/Turfjs/turf/issues/872 - Contributor @DenisCarriere) - Adds `bbox` and `id` params plus `geometry` method to `@turf/helpers` (PR https://github.com/Turfjs/turf/issues/877 - Contributor @DenisCarriere) ## 🐛 Bug Fixes - Applies `@turf/truncate` to [`@turf/line-split`](https://github.com/Turfjs/turf/tree/master/packages/turf-line-split) `splitter` input to avoid approximation errors. Fixed #852 (PR https://github.com/Turfjs/turf/pull/855) - Fixes `@turf-mask` error (See Issue https://github.com/Turfjs/turf/issues/837) (PR https://github.com/Turfjs/turf/pull/865 - Contributor @thiagoxvo) - Fixes `create-new-module` script error on `LICENSE` file creation (See Issue https://github.com/Turfjs/turf/issues/861) (commit [df6986e](https://github.com/Turfjs/turf/commit/df6986ec0a5c353babb60836ec97c21923913e79)) - Fixes `@turf/isobands` error on `commonProperties` (See Issue https://github.com/Turfjs/turf/issues/831) (commit [1663f07](https://github.com/Turfjs/turf/commit/1663f077c075c8902dbeff4acf68b1c8e0151853)) # 4.5.0 ## 🚀 New Modules - [`@turf/clusters`](https://github.com/Turfjs/turf/tree/master/packages/turf-clusters) Takes a set of points and partition them into clusters using the [k-means clustering](https://en.wikipedia.org/wiki/K-means_clustering) algorithm. (PR https://github.com/Turfjs/turf/pull/787 - Author @stebogit ) - [`@turf/boolean-disjoint`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-disjoint) Boolean-disjoint returns (TRUE) if the intersection of the two geometries is an empty set. (PR https://github.com/Turfjs/turf/pull/805 - Author @rowanwins) - [`@turf/boolean-contains`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-contains) Boolean-contains returns True if the second geometry is completely contained by the first geometry. The interiors of both geometries must intersect and, the interior and boundary of the secondary (geometry b) must not intersect the exterior of the primary (geometry a). Boolean-contains returns the exact opposite result of the `@turf/boolean-within`. (PR https://github.com/Turfjs/turf/pull/797 - Author @rowanwins) - [`@turf/boolean-crosses`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-crosses) Boolean-Crosses returns True if the intersection results in a geometry whose dimension is one less than the maximum dimension of the two source geometries and the intersection set is interior to both source geometries. Boolean-Crosses returns t (TRUE) for only multipoint/polygon, multipoint/linestring, linestring/linestring, linestring/polygon, and linestring/multipolygon comparisons. (PR https://github.com/Turfjs/turf/pull/796 - Author @rowanwins) - [`@turf/boolean-clockwise`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-clockwise) Takes a ring and return true or false whether or not the ring is clockwise or counter-clockwise. (PR https://github.com/Turfjs/turf/pull/789 - Authors @morganherlocker @stebogit) - [`@turf/clone`](https://github.com/Turfjs/turf/tree/master/packages/turf-clone) Prevents GeoJSON coordinates from being mutated, similar to `JSON.parse(JSON.stringify(geojson))`. Only cloning the coordinates can be 3x-20x faster than the **parse + stringify** approach. (PR https://github.com/Turfjs/turf/pull/824 - Author @DenisCarriere) ## 🏅 New Features/Enhancements - [`convertArea`](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers#convertarea) Converts a area to the requested unit. (PR https://github.com/Turfjs/turf/pull/821 - Author @wnordmann) - Adds mask option to `@turf/point-grid` (PR https://github.com/Turfjs/turf/pull/791) - New @turf/isolines based on MarchingSquares.js (PR https://github.com/Turfjs/turf/pull/781) - Use ES6 modules / Add module.js to @turf/turf (PR https://github.com/Turfjs/turf/pull/793) - Create-new-module script (PR https://github.com/Turfjs/turf/pull/823) ## 🐛 Bug Fixes - Buffer - Drop circle buffer operation (PR https://github.com/Turfjs/turf/pull/786) - Fixes `@turf/idw` bad property name #774 (PR https://github.com/Turfjs/turf/pull/800) - Fix for @turf/polygon-tangents - Resolves #785 (PR https://github.com/Turfjs/turf/pull/792) # 4.4.0 ## 🚀 New Modules - [`@turf/line-offset`](https://github.com/Turfjs/turf/tree/master/packages/turf-line-offset) Adds a new lineOffset module as per this issue. Basically takes an input line and returns a new line offset by the distance. (PR https://github.com/Turfjs/turf/pull/729 - Author @rowanwins) - [`@turf/polygonize`](https://github.com/Turfjs/turf/tree/master/packages/turf-polygonize) Polygonizes (Multi)LineString(s) into Polygons. Implementation of GEOSPolygonize function (geos::operation::polygonize::Polygonizer). (PR https://github.com/Turfjs/turf/pull/767 - Author @NickCis) - [`@turf/transform-rotate`](https://github.com/Turfjs/turf/tree/master/packages/turf-transform-rotate) Rotates any geojson Feature or Geometry of a specified angle, around its centroid or a given pivot point; all rotations follow the right-hand rule. (Issue https://github.com/Turfjs/turf/issues/747 - Author @stebogit) - [`@turf/transform-translate`](https://github.com/Turfjs/turf/tree/master/packages/turf-transform-translate) Moves any geojson Feature or Geometry of a specified distance along a Rhumb Line on the provided direction angle. (Issue https://github.com/Turfjs/turf/issues/747 - Author @stebogit) - [`@turf/transform-scale`](https://github.com/Turfjs/turf/tree/master/packages/turf-transform-scale) Scale a GeoJSON from a given point by a factor of scaling (ex: factor=2 would make the GeoJSON 200% larger). If a FeatureCollection is provided, the origin point will be calculated based on each individual Feature. (Issue https://github.com/Turfjs/turf/issues/747 - Author @stebogit) ## 🏅 New Features - Support z-coordinate as input for [`@turf/turf-tin`](https://github.com/Turfjs/turf/tree/master/packages/turf-tin) (PR https://github.com/Turfjs/turf/pull/772) - Adds properties parameter to [`@turf/centroid`](https://github.com/Turfjs/turf/tree/master/packages/turf-centroid) and [`@turf/center`](https://github.com/Turfjs/turf/tree/master/packages/turf-center) (PR https://github.com/Turfjs/turf/pull/769) - Include Yarn.lock for all modules & Lerna uses Yarn (Issue https://github.com/Turfjs/turf/issues/704, https://github.com/Turfjs/turf/issues/765, PR https://github.com/Turfjs/turf/pull/766) - Use `Tap` at root which enables code coverage reports (Issue https://github.com/Turfjs/turf/issues/328 & PR https://github.com/Turfjs/turf/pull/762) - Support z-coordinate as input for [`@turf/pointplane`](https://github.com/Turfjs/turf/tree/master/packages/turf-planepoint) (PR https://github.com/Turfjs/turf/pull/754) - Add core tests - file management & package.json rules (PR https://github.com/Turfjs/turf/pull/749 & https://github.com/Turfjs/turf/pull/756) ## 🐛 Bug Fixes - Website http://turfjs.org is back up and running (Issue https://github.com/Turfjs/turf/issues/777) - [`@turf/rhumb-destination`](https://github.com/Turfjs/turf/tree/master/packages/turf-planepoint) issue at 180th meridian (Issue https://github.com/Turfjs/turf/issues/770 & PR https://github.com/Turfjs/turf/pull/771) - Getting too large numbers for Longitude (Issue https://github.com/Turfjs/turf/issues/758 & PR https://github.com/Turfjs/turf/pull/763) - Throw error if FeatureCollection not array #751 (PR https://github.com/Turfjs/turf/pull/760) - Change default param coordinates to 3 @turf/truncate (PR https://github.com/Turfjs/turf/pull/757) - along returns a point that is not found by [`@turf/point-on-line`](https://github.com/Turfjs/turf/tree/master/packages/turf-point-on-line) (Issue https://github.com/Turfjs/turf/issues/691) - Fix location of intersect point for [`@turf/point-on-line`](https://github.com/Turfjs/turf/tree/master/packages/turf-point-on-line). (PR https://github.com/Turfjs/turf/pull/750) - Handle empty geometries as undefined [`@turf/buffer`](https://github.com/Turfjs/turf/tree/master/packages/turf-buffer) (PR https://github.com/Turfjs/turf/pull/746) # 4.3.0 ## 🚀 New Modules - [Rhumb Line](https://en.wikipedia.org/wiki/Rhumb_line) Modules (https://github.com/Turfjs/turf/pull/728) - [`@turf/rhumb-bearing`](https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-bearing) - [`@turf/rhumb-distance`](https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-distance) - [`@turf/rhumb-destination`](https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-destination) - [`@turf/polygon-tangents`](https://github.com/Turfjs/turf/tree/master/packages/turf-polygon-tangents) Finds the tangents of a (Multi)Polygon from a Point. (https://github.com/Turfjs/turf/pull/708) - [`@turf/rewind`](https://github.com/Turfjs/turf/tree/master/packages/turf-rewind) Rewind LineString or Polygon outer ring ~clockwise~ counter-clockwise and inner rings ~counterclockwise~ clockwise (https://github.com/Turfjs/turf/pull/700 & https://github.com/Turfjs/turf/issues/66) - [`@turf/isobands`](https://github.com/Turfjs/turf/tree/master/packages/turf-isobands) - Takes a grid FeatureCollection of Point features with z-values and an array of value breaks and generates filled contour isobands. (https://github.com/Turfjs/turf/pull/619) ## 🏅 New Features - New function [convertDistance](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers#convertdistance) to [`@turf/helpers`](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers) (https://github.com/Turfjs/turf/pull/732) - Add ignoreBoundary param [`@turf/inside`](https://github.com/Turfjs/turf/tree/master/packages/turf-inside) (https://github.com/Turfjs/turf/pull/706) - Add [flattenEach](https://github.com/Turfjs/turf/tree/master/packages/turf-meta#flatteneach)/[flattenReduce](https://github.com/Turfjs/turf/tree/master/packages/turf-meta#flattenreduce) to [`@turf/meta`](https://github.com/Turfjs/turf/tree/master/packages/turf-meta). (https://github.com/Turfjs/turf/pull/712 & https://github.com/Turfjs/turf/issues/692) - New Feature [`getGeom`](https://github.com/Turfjs/turf/tree/master/packages/turf-invariant#getgeom) & [`getGeomType`](https://github.com/Turfjs/turf/tree/master/packages/turf-invariant#getgeomtype) in [`@turf/invariant`](https://github.com/Turfjs/turf/tree/master/packages/turf-invariant) (https://github.com/Turfjs/turf/pull/720) - Adds [`round()`](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers#round), [`radians2degrees()`](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers#radians2degrees) and [`degrees2radians()`](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers#degrees2radians) to [`turf-helpers`](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers) (https://github.com/Turfjs/turf/pull/715) - **⭐️ New** Add FeatureCollection & GeometryCollection support to [`@turf/rewind`](https://github.com/Turfjs/turf/tree/master/packages/turf-rewind) (https://github.com/Turfjs/turf/pull/741) ## 🐛 Bug Fixes - Fix [`@turf/circle`](https://github.com/Turfjs/turf/tree/master/packages/turf-circle) translate properties (https://github.com/Turfjs/turf/pull/717) - Apply equidistance [`@turf/buffer`](https://github.com/Turfjs/turf/tree/master/packages/turf-buffer) to polygons (https://github.com/Turfjs/turf/issues/660 & https://github.com/Turfjs/turf/pull/718) - Fix jsts empty (Multi)Polygon error [`@turf/difference`](https://github.com/Turfjs/turf/tree/master/packages/turf-difference) (https://github.com/Turfjs/turf/pull/725) - Support Geometry Objects & Collection (https://github.com/Turfjs/turf/issues/710) - [`@turf/line-intersect`](https://github.com/Turfjs/turf/tree/master/packages/turf-line-intersect) (https://github.com/Turfjs/turf/pull/731) - [`@turf/line-chunk`](https://github.com/Turfjs/turf/tree/master/packages/turf-line-chunk) (https://github.com/Turfjs/turf/pull/726) - [`@turf/line-segment`](https://github.com/Turfjs/turf/tree/master/packages/turf-line-segment) (https://github.com/Turfjs/turf/pull/727 & https://github.com/Turfjs/turf/pull/711) - [`@turf/line-overlap`](https://github.com/Turfjs/turf/tree/master/packages/turf-line-overlap) (https://github.com/Turfjs/turf/pull/711) - **New** Reverse winding - Polygon CCW & Polygon CW [`@turf/rewind`](https://github.com/Turfjs/turf/tree/master/packages/turf-rewind) (https://github.com/Turfjs/turf/pull/741) - **⭐️ New** Fix Feature GeometryCollection to [`@turf/buffer`](https://github.com/Turfjs/turf/tree/master/packages/turf-buffer) (https://github.com/Turfjs/turf/pull/739) - **⭐️ New** Re-enable negative `radius` to [`@turf/buffer`](https://github.com/Turfjs/turf/tree/master/packages/turf-buffer) (https://github.com/Turfjs/turf/pull/736) # 4.2.0 ## New Modules - [`@turf/sector`](https://github.com/Turfjs/turf/pull/653) - [`@turf/linestring-to-polygon`](https://github.com/Turfjs/turf/pull/672) ## Enhancements - [Add mutate param to `@turf/flip`](https://github.com/Turfjs/turf/issues/693) - [Add Geometry & GeometryCollection support to `@turf/truncate`](https://github.com/Turfjs/turf/pull/677) - [`@turf/inside` performance increase](https://github.com/Turfjs/turf/pull/675) - [Add properties param to `@turf/circle`](https://github.com/Turfjs/turf/pull/668) - [Added `bearingToAngle` method to turf-helpers](https://github.com/Turfjs/turf/pull/663) ## Bug Fixes - [Fix `@turf/buffer` points in high latitudes](https://github.com/Turfjs/turf/pull/667) - [lineIntersect returns the same point several times](https://github.com/Turfjs/turf/issues/688) - [`@turf/flip` incorrect if z-elevation is present](https://github.com/Turfjs/turf/issues/669) ## Changes - [Change output types `@turf/polygon-to-linestring`](https://github.com/Turfjs/turf/pull/686) ## Documentation - [Update JSDocs examples](https://github.com/Turfjs/turf/pull/670/files) - [Include many more AddToMap to modules](https://github.com/Turfjs/turf/pull/664) # 4.1.0 ## New Modules - [`@turf/line-arc`](https://github.com/Turfjs/turf/pull/657) - [`@turf/polygon-to-linestring`](https://github.com/Turfjs/turf/pull/646) - [`@turf/bbox-clip`](https://github.com/Turfjs/turf/pull/652) - [`@turf/line-overlap`](https://github.com/Turfjs/turf/pull/640) ## Enhancements - added centered param to point-grid (PR: https://github.com/Turfjs/turf/pull/650) - Single `module.export` helpers, invariant & meta (Commit: https://github.com/Turfjs/turf/commit/9cebb2100cf545fec49488c80140909ab54358b5) ## Bug Fixes - Turf.invariant fails on string value as coordinate (PR: https://github.com/Turfjs/turf/pull/643) - Handle precision=0 turf-truncate (PR: https://github.com/Turfjs/turf/pull/641) - Added `radiansToDistance`, `distanceToRadians` & `distanceToDegrees` to Turf core library from `@turf/helpers`. (Commit: https://github.com/Turfjs/turf/commit/a88d77a3e7f76860b3c138a716da8b603a407c8e) - Removed process.hrtime in `@turf/polygon-unkink`(issue: https://github.com/mclaeysb/simplepolygon/issues/5) # 3.6.4 Typescript definitions `index.d.ts` added to all the packages. # 3.0.11 Fix turf-line-slice bug with vertical linestrings. # 3.0.1 This is a big change in Turf! 3.0.0 is a release that targets the development cycle of Turf, letting us work on it more and release more often. **Monorepo** Turf 3.x and forward is a **monorepo** project. We publish lots of little modules as usual, but there's one repo - turfjs/turf - that contains all the code and the issues for the Turf source code. We use [lerna](https://lernajs.io/) to link these packages together and make sure they work. Why? We already had internal turf modules, like `turf-meta`, and development was harder and harder - we had a bunch of custom scripts to do releases and tests, and these were just written for Turf. Lerna is from the very popular and very well-maintained [babel](http://www.babeljs.io) project, and it works really well, and reduces maintainer sadness. **Simplicity** Turf grew a bunch of modules that weren't totally necessary, or were expressing only a line or two of JavaScript. We want to make things easier, but these modules didn't make code more expressive and they hid complexity where it didn't need to be hidden. Turf 3.x focuses on the core functionalities we need, making sure they're tested and performant. turf-erase has been renamed turf-difference to make its name more similar to the equivalents in other libraries. Removed modules: merge, sum, min, max, average, median, variance, deviation, filter, remove, jenks, quantile. See the upgrade guide below for replacements. **Upgrading from v2** **If you were using turf-merge** turf-merge repeatedly called turf-union on an array of polygons. Here's how to implement the same thing without the special module ```js var clone = require('clone'); var union = require('turf-union'); function merge(polygons) { var merged = clone(polygons.features[0]), features = polygons.features; for (var i = 0, len = features.length; i < len; i++) { var poly = features[i]; if (poly.geometry) merged = union(merged, poly); } return merged; } ``` An alternative method that merges pairs of features recursively. With large numbers and similar complexity of input geometries this can speed up run time by factor 10. Choose depending on your use case. ```js var union = require('turf-union'); function mergeBin(polygons) { var features = polygons.features; do { var merged = [], len = features.length; for (var i = 0; i < len-1; i += 2) { merged.push(turf.union(features[i], features[i+1])); } if (len % 2 !== 0) { merged.push(features[len-1]); } features = merged; } while(features.length > 1); return features[0]; } ``` **If you were using turf-sum, min, max, average, median, variance, deviation** The `turf-collect` method provides the core of these statistical methods and lets you bring your own statistical library, like `simple-statistics`, `science.js`, or others. For example, here's how to find the median of matched values with simple-statistics. Finding other statistics, like variance, mean, and so on simply use other methods from the statistics library. ```js var ss = require('simple-statistics'); var turf = require('@turf/turf'); var poly1 = turf.polygon([[[0,0],[10,0],[10,10],[0,10],[0,0]]]); var poly2 = turf.polygon([[[10,0],[20,10],[20,20],[20,0],[10,0]]]); var polyFC = turf.featureCollection([poly1, poly2]); var pt1 = turf.point([5,5], {population: 200}); var pt2 = turf.point([1,3], {population: 600}); var pt3 = turf.point([14,2], {population: 100}); var pt4 = turf.point([13,1], {population: 200}); var pt5 = turf.point([19,7], {population: 300}); var ptFC = turf.featureCollection([pt1, pt2, pt3, pt4, pt5]); // collects values from matching points into an array called 'values' var collected = turf.collect(polyFC, ptFC, 'population', 'values'); // finds the median of those values. collected.features.forEach(function (feature) { feature.properties.median = ss.median(feature.properties.values); }); console.log(JSON.stringify(collected, null, 2)); ``` **If you were using turf-filter, turf-remove** These modules were thin wrappers around native JavaScript methods: use [Array.filter](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/filter) instead: ```js var filteredFeatures = features.filter(function(feature) { return feature.properties.value > 10; }); ``` **If you were using turf-jenks, turf-quantile** Use Array.map to get values, and then bring your own statistical calculation, like simple-statistics or science.js. ```js var values = features.map(function(feature) { return feature.properties.value; }); ``` **If you were using turf-extent** turf-extent's name was changed to turf-bbox. It is functionally the same. ```js turf.bbox(poly) // [minx, miny, maxx, maxy] ``` # 2.0.0 * turf-grid renamed turf-point-grid (turf.grid => turf.pointGrid) * turf-hex renamed turf-hex-grid (turf.hex => turf.hexGrid) * turf-hex-grid now has a required `unit` parameter * remove turf-isobands; use turf-isolines instead * added turf-square-grid (turf.squareGrid) * added turf-triangle-grid (turf.triangleGrid) * constrain turf-point-grid to the bbox # 1.4.0 * update all module dependencies to master * add support for features in turf.intersection * fix issues with turf.polygon coordinate wrapping inconsistencies * add `unit` parameter to turf.concave # 1.3.5 * harmonize turf-tin dependency tree # 1.3.4 * fixes bug in turf-along # 1.3.3 * added turf-line-slice for segmenting LineStrings with Points * turf-point-on-line for calculating the closest Point from a Point to a LineString # 1.3.2 * [tin ~7x faster](https://github.com/Turfjs/turf-tin/commit/595f732435b3b7bd977cdbe996bce60cbfc490e7) * Fix mutability issues with `flip`, `erase`: data passed to Turf should never be changed in place. * added turf-line-distance for geodesic measuring of LineStrings * added turf-along for calculating a the location of a Point x distance along a LineString * added turf-area for calculating the area of a given feature [along]: https://github.com/Turfjs/turf/tree/master/packages/turf-along [area]: https://github.com/Turfjs/turf/tree/master/packages/turf-area [bbox]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox [bbox-clip]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox-clip [bbox-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox-polygon [bearing]: https://github.com/Turfjs/turf/tree/master/packages/turf-bearing [bezier-spline]: https://github.com/Turfjs/turf/tree/master/packages/turf-bezier-spline [boolean-clockwise]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-clockwise [boolean-contains]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-contains [boolean-crosses]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-crosses [boolean-disjoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-disjoint [boolean-equal]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-equal [boolean-overlap]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-overlap [boolean-parallel]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-parallel [boolean-point-in-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-point-in-polygon [boolean-point-on-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-point-on-line [boolean-within]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-within [buffer]: https://github.com/Turfjs/turf/tree/master/packages/turf-buffer [center]: https://github.com/Turfjs/turf/tree/master/packages/turf-center [center-of-mass]: https://github.com/Turfjs/turf/tree/master/packages/turf-center-of-mass [centroid]: https://github.com/Turfjs/turf/tree/master/packages/turf-centroid [circle]: https://github.com/Turfjs/turf/tree/master/packages/turf-circle [clean-coords]: https://github.com/Turfjs/turf/tree/master/packages/turf-clean-coords [clone]: https://github.com/Turfjs/turf/tree/master/packages/turf-clone [clusters]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters [clusters-dbscan]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters-dbscan [clusters-kmeans]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters-kmeans [collect]: https://github.com/Turfjs/turf/tree/master/packages/turf-collect [combine]: https://github.com/Turfjs/turf/tree/master/packages/turf-combine [concave]: https://github.com/Turfjs/turf/tree/master/packages/turf-concave [convex]: https://github.com/Turfjs/turf/tree/master/packages/turf-convex [destination]: https://github.com/Turfjs/turf/tree/master/packages/turf-destination [difference]: https://github.com/Turfjs/turf/tree/master/packages/turf-difference [dissolve]: https://github.com/Turfjs/turf/tree/master/packages/turf-dissolve [distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-distance [envelope]: https://github.com/Turfjs/turf/tree/master/packages/turf-envelope [explode]: https://github.com/Turfjs/turf/tree/master/packages/turf-explode [flatten]: https://github.com/Turfjs/turf/tree/master/packages/turf-flatten [flip]: https://github.com/Turfjs/turf/tree/master/packages/turf-flip [great-circle]: https://github.com/Turfjs/turf/tree/master/packages/turf-great-circle [helpers]: https://github.com/Turfjs/turf/tree/master/packages/turf-helpers [hex-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-hex-grid [interpolate]: https://github.com/Turfjs/turf/tree/master/packages/turf-interpolate [intersect]: https://github.com/Turfjs/turf/tree/master/packages/turf-intersect [invariant]: https://github.com/Turfjs/turf/tree/master/packages/turf-invariant [isobands]: https://github.com/Turfjs/turf/tree/master/packages/turf-isobands [isolines]: https://github.com/Turfjs/turf/tree/master/packages/turf-isolines [kinks]: https://github.com/Turfjs/turf/tree/master/packages/turf-kinks [length]: https://github.com/Turfjs/turf/tree/master/packages/turf-length [line-arc]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-arc [line-chunk]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-chunk [line-intersect]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-intersect [line-offset]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-offset [line-overlap]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-overlap [line-segment]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-segment [line-slice]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-slice [line-slice-along]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-slice-along [line-split]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-split [line-to-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-to-polygon [mask]: https://github.com/Turfjs/turf/tree/master/packages/turf-mask [meta]: https://github.com/Turfjs/turf/tree/master/packages/turf-meta [midpoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-midpoint [nearest-point]: https://github.com/Turfjs/turf/tree/master/packages/turf-nearest-point [nearest-point-on-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-nearest-point-on-line [nearest-point-to-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-nearest-point-to-line [planepoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-planepoint [point-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-grid [point-on-feature]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-on-feature [point-to-line-distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-to-line-distance [points-within-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-points-within-polygon [polygon-tangents]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygon-tangents [polygon-to-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygon-to-line [polygonize]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygonize [projection]: https://github.com/Turfjs/turf/tree/master/packages/turf-projection [random]: https://github.com/Turfjs/turf/tree/master/packages/turf-random [rewind]: https://github.com/Turfjs/turf/tree/master/packages/turf-rewind [rhumb-bearing]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-bearing [rhumb-destination]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-destination [rhumb-distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-distance [sample]: https://github.com/Turfjs/turf/tree/master/packages/turf-sample [sector]: https://github.com/Turfjs/turf/tree/master/packages/turf-sector [shortest-path]: https://github.com/Turfjs/turf/tree/master/packages/turf-shortest-path [simplify]: https://github.com/Turfjs/turf/tree/master/packages/turf-simplify [square]: https://github.com/Turfjs/turf/tree/master/packages/turf-square [square-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-square-grid [tag]: https://github.com/Turfjs/turf/tree/master/packages/turf-tag [tesselate]: https://github.com/Turfjs/turf/tree/master/packages/turf-tesselate [tin]: https://github.com/Turfjs/turf/tree/master/packages/turf-tin [transform-rotate]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-rotate [transform-scale]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-scale [transform-translate]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-translate [triangle-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-triangle-grid [truncate]: https://github.com/Turfjs/turf/tree/master/packages/turf-truncate [union]: https://github.com/Turfjs/turf/tree/master/packages/turf-union [unkink-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-unkink-polygon [voronoi]: https://github.com/Turfjs/turf/tree/master/packages/turf-voronoi ================================================ FILE: LICENSE ================================================ The MIT License (MIT) Copyright (c) 2019 Morgan Herlocker Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ ![turf](https://raw.githubusercontent.com/Turfjs/turf/9a1d5e8d99564d4080f1e2bf1517ed41d18012fa/logo.png) ====== [![GitHub Actions Status](https://github.com/Turfjs/turf/actions/workflows/ci.yml/badge.svg)](https://github.com/Turfjs/turf/actions/workflows/ci.yml/badge.svg) [![Version Badge][npm-img]][npm-url] [![Gitter chat][gitter-img]][gitter-url] [![Backers on Open Collective][oc-backer-badge]](#backers) [![Sponsors on Open Collective][oc-sponsor-badge]](#sponsors) [![Coverage Status](https://coveralls.io/repos/github/Turfjs/turf/badge.svg)](https://coveralls.io/github/Turfjs/turf) [npm-img]: https://img.shields.io/npm/v/@turf/turf.svg [npm-url]: https://www.npmjs.com/package/@turf/turf [gitter-img]: https://badges.gitter.im/Turfjs/turf.svg [gitter-url]: https://gitter.im/Turfjs/turf [oc-backer-badge]: https://opencollective.com/turf/backers/badge.svg [oc-sponsor-badge]: https://opencollective.com/turf/sponsors/badge.svg ***A modular geospatial engine written in JavaScript*** [Turf](https://turfjs.org) is a [JavaScript library](https://en.wikipedia.org/wiki/JavaScript_library) for [spatial analysis](https://en.wikipedia.org/wiki/Spatial_analysis). It includes traditional spatial operations, helper functions for creating [GeoJSON](https://geojson.org) data, and data classification and statistics tools. Turf can be added to your website as a client-side module, or you can [run Turf server-side](https://www.npmjs.com/package/@turf/turf) with [Node.js](https://nodejs.org/) (see below). ## Getting Started Read our [getting started guide](https://turfjs.org/docs/getting-started) to begin working with Turf. Or explore the Turf API and examples at [turfjs.org](https://turfjs.org/). ## Runtime support Turf is currently published to work with any reasonably modern Javascript runtime. Node is a first class citizen, and we recommend using an [Active or Maintenance LTS](https://nodejs.org/en/about/previous-releases) release. Other runtimes, such as Deno or Bun, are not officially supported. We would be very interested to hear your experiences though. ## Browser support Turf uses Babel to transpile to a JavaScript version usable by most modern browsers. Any browser that matches the following criteria as defined by [Browserslist](https://github.com/browserslist/browserslist): [> 0.25%, last 2 versions, fully supports es5, not dead](https://browsersl.ist/#q=%3E+0.25%25%2C+last+2+versions%2C+fully+supports+es5%2C+not+dead) ## Contributors This project exists thanks to all the people who contribute. If you are interested in helping, check out the [Contributing Guide](docs/CONTRIBUTING.md). ## Backers Thank you to all our backers! 🙏 [[Become a backer](https://opencollective.com/turf#backer)] ## Sponsors Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor](https://opencollective.com/turf#sponsor)] ================================================ FILE: docs/CODE_OF_CONDUCT.md ================================================ # Contributor Covenant Code of Conduct ## Our Pledge We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, caste, color, religion, or sexual identity and orientation. We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community. ## Our Standards Examples of behavior that contributes to a positive environment for our community include: * Demonstrating empathy and kindness toward other people * Being respectful of differing opinions, viewpoints, and experiences * Giving and gracefully accepting constructive feedback * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience * Focusing on what is best not just for us as individuals, but for the overall community Examples of unacceptable behavior include: * The use of sexualized language or imagery, and sexual attention or advances of any kind * Trolling, insulting or derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or email address, without their explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ## Enforcement Responsibilities Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate. ## Scope This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official email address, posting via an official social media account, or acting as an appointed representative at an online or offline event. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at [@morganherlocker](https://github.com/morganherlocker) or [@tmcw](https://github.com/tmcw). All complaints will be reviewed and investigated promptly and fairly. All community leaders are obligated to respect the privacy and security of the reporter of any incident. ## Enforcement Guidelines Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct: ### 1. Correction **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested. ### 2. Warning **Community Impact**: A violation through a single incident or series of actions. **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban. ### 3. Temporary Ban **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior. **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban. ### 4. Permanent Ban **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. **Consequence**: A permanent ban from any sort of public interaction within the community. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.1, available at [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1]. Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder][Mozilla CoC]. For answers to common questions about this code of conduct, see the FAQ at [https://www.contributor-covenant.org/faq][FAQ]. Translations are available at [https://www.contributor-covenant.org/translations][translations]. [homepage]: https://www.contributor-covenant.org [v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html [Mozilla CoC]: https://github.com/mozilla/diversity [FAQ]: https://www.contributor-covenant.org/faq [translations]: https://www.contributor-covenant.org/translations ================================================ FILE: docs/CONTRIBUTING.md ================================================ # Contributing to Turf ## Getting Started One of the most important things you can do is report bugs. Please reference [how to report a bug](https://macwright.com/sites/polite.technology/reportabug) and when opening an [issue](https://github.com/Turfjs/turf/issues), follow the template. To propose an enhancement for Turf, it's usually best to [start a discussion](https://github.com/Turfjs/turf/discussions) to work through the requirements. Unless you know exactly what you need! In which case [open an issue](https://github.com/Turfjs/turf/issues) to request it. To make a code contribution, follow the steps for [how to contribute](#how-to-contribute). ## Architecture - GeoJSON is the lingua franca of Turf. It should be used as the data structure for anything that can be represented as geography. - Turf is broken into many submodules, or packages. These are found in the `packages` directory prefixed with "turf-". - Turf packages are small, generally containing a single exported function. - Many Turf packages depend on other lower level Turf packages. ## How to contribute The best way for a new contributor to help with Turf is to find an open issue, fix it, and then share that back to the project via a pull request (PR). A maintainer will review your PR and get it merged with the rest of the code. Here is a great article on how to fork a repo, and start contributing to Turf. If you'd like to become a core contributor, just start making contributions, and inquire. ### Local Setup Once you've cloned a Turf repository, and have a terminal open and currenty in the top-level turf directory. Run the following: - `git checkout master` (if not already) - `corepack enable pnpm` - enable pnpm as a package manager. Requires Node 16+. Alternatively just `npm install -g pnpm`. - `pnpm install` - install dependencies and build packages - `pnpm test` - run all tests and linters You're now ready to contribute.
Structure of a Turf package
Turf packages all live under the `packages` directory. For example `packages/turf-area`. Here's how they are structured. ``` turf- │ index.ts │ bench.ts │ test.ts │ package.json │ README.md │ LICENSE │ └───test │ ├───in │ points.geojson │ └───out points.geojson ``` * `index.ts` - This file contains the definition of the function including [TypeScript](https://www.typescriptlang.org/) types, function implementation, the embedded [JSDocs](http://usejsdoc.org) documentation, and finally the single exported function that the package provides. * `bench.ts` - This file uses [Benchmark](https://benchmarkjs.com/) to establish benchmark performance tests for your function. * `test.ts` - This file includes your [tape](https://github.com/substack/tape) unit tests. Tests can either be traditional code based tests, or tests that pull in data files and compare inputs to outputs (see below). * `package.json` - The [node](http://nodejs.org) metadata container file. Packages imported in `index.ts` should be listed here under `dependencies`, and packages used in `test.ts` or `bench.ts` should be listed under `devDependencies`. * `README.md` - This README is generated _automatically_ by running `pnpm run docs`. **DO NOT edit this file**. * `LICENCE` - Like the README, this file should not be edited. * `test/` - This directory holds the GeoJSON files that provide data for dynamic tests. Input data in `./test/in`, and expected output data in `./test/out`.
Development tips
Work in a feature branch when possible - `git checkout -b my-feature` - Create it right away off of master. - This allows you to keep your local master branch clean and in sync with the official remote. This will ease your ability to keep your local repo up to date with changes other people have made while you work on your feature. As you make code changes - Regularly run `pnpm test` in whatever package you are working in to avoid unintended bugs. - Occasionally run `pnpm test` at the top-level directory to run test for all packages, to make sure you haven't introduced a problem that affects another package.
## Preparing a pull request A simple, complete pull request is more likely to get merged.
But I don't know how
If you don't know how to make a solid PR, submit a draft PR and ask for feedback. Take on any feedback to improve the PR ready. There may be multiple rounds of feedback. While this seems tedious it greatly reduces the risk of someone else having to revisit the same code any time soon.
### Pull Request Checklist - Briefly summarize the need and solution. Link to the issue it's resolving if exists. - Add tests. Even for bug fixes. A simple test case that reproduces the issue and demonstrates it's fixed. - Update JSDoc comments if the function signature changes or docs need improvement (See for example `packages/turf-area/index.ts`) - Run a full `npm test` at root level, confirming no cross-package issues. If you don't catch this now, the Github CI will. ### Guidelines - Feel free to [ask](#getting-started) if a feature/enhancement is needed/wanted before doing the work. - Keep pull requests small and focused. - Avoid large dependencies at all costs. - Make sure that your code can run in the browser (ie: don't make calls to external services, don't hit the filesystem, etc.). ### Documentation The package README.md files and https://turfjs.org API docs are auto-generated from JSDoc comments in each packages' source file. As a contributor, all you need to do is keep the JSDoc comments up to date, and the rest is automated. For example if you change a top-level Turf functions signature (params, return type) or just want to improve the descriptiveness of the docs. JSDoc comments are found in the top-level index file for each package (for example `packages/turf-area/index.ts`). Look for the `@name`, `@params`, `@returns`, `@example` tags. ## Code Style We have lots of tooling dedicated to ensuring consistent code. We use [Prettier](https://prettier.io/), [TypeScript](https://www.typescriptlang.org/), and [ESLint](https://eslint.org/) to help us deliver quality code. These are checked by the build system and should be enforced at commit time by [Husky](https://typicode.github.io/husky/#/). Most packages are written in TypeScript, while a few plain Javascript still linger. You can generally use modern Javascript when modifying Turf itself as all exported code is transpiled to (currently es2017). Code for consumption by browsers is transpiled by Babel as described in the README. Making sure that the monorepo packages can be managed at scale, we use [Monorepolint](https://github.com/monorepolint/monorepolint) to programmatically ensure the individual packages remain consistent. ## Documentation - API docs for each turf package are extracted from JSDoc comments in the source code into the top-level README.md files. README's are automatically updated on commit via a pre-commit hook. Should you want to generate new README files manually, use `pnpm run docs`: - **inside a package:** will generate the docs for that package. - **from root folder:** will generate docs for all package. ### Documentation - Examples **Builds docs for all packages** ```bash $ cd ./turf $ pnpm run docs > @ docs /Users/mac/Github/turf > node ./scripts/generate-readmes.mts Building Docs: @turf/along Building Docs: @turf/area Building Docs: @turf/bbox-clip Building Docs: @turf/bbox-polygon Building Docs: @turf/bbox Building Docs: @turf/bearing Building Docs: @turf/bezier-spline Building Docs: @turf/boolean-clockwise .... ``` Note: This should be automatically executed with a pre-commit hook when necessary ### Public website The [turfjs.org](https://turfjs.org/) website is managed in a [separate repo](https://github.com/Turfjs/turf-www) with its own [contributing guide](https://github.com/Turfjs/turf-www/blob/master/CONTRIBUTING.md). ## Other Dependencies - Turf uses [pnpm](https://pnpm.io/) and [lerna](https://lernajs.io/) during the testing, packaging and publishing process. - Lerna will be automatically installed when you run `pnpm install` in the root directory. - Pnpm will need to be installed on your computer, installers are available via the pnpm website. When using [corepack](https://nodejs.org/api/corepack.html), this is automatically installed when running `pnpm`. ## Financial contributions We also welcome financial contributions in full transparency on our [open collective](https://opencollective.com/turf). Anyone can file an expense. If the expense makes sense for the development of the community, it will be "merged" in the ledger of our open collective by the core contributors and the person who filed the expense will be reimbursed. ## Credits ### Contributors Thank you to all the people who have already contributed to turf! ### Backers Thank you to all our backers! [[Become a backer](https://opencollective.com/turf#backer)] ### Sponsors Thank you to all our sponsors! (please ask your company to also support this open source project by [becoming a sponsor](https://opencollective.com/turf#sponsor)) ================================================ FILE: docs/OPEN_COLLECTIVE.md ================================================ ## About Turf.js [TurfJS](http://turfjs.org/) is a modular geospatial analysis library designed for use in the browser as well as Node.js. We provide almost 120 modules for people to use freely in their applications. Our most [popular module](https://www.npmjs.com/package/@turf/helpers) is downloaded 4,200,000 times a week via npm. ## Why we're looking for support TurfJS is a community-driven project maintained by a small group of core contributors who work on the project in their spare time. Time is spent investigating issues, supporting users, improving documentation, fixing bugs, and adding new functionality. Your funding will go directly to development costs, marketing campaigns, promotional events, and other expenses needed to maintain and promote TurfJS. In particular, we're looking for corporate sponsors who use TurfJS in revenue-generating ways, either by creating applications for clients, or through use in an app used by customers. Of course individuals are welcome to support us as well if TurfJS has helped you :) ## 2024 Achievements - First major release in a few years - Modernised build and publishing infrastructure - Merged many PRs that had been on hold - Resolved several long standing bugs - Overhauled the [documentation website](https://turfjs.org) ## Goals for 2025 - Continue to work through the bug backlog - Release more often - Encourage more contributors by engaging with PRs - Resolve disparities between planar and spherical modes ================================================ FILE: docs/PUBLISHING.md ================================================ ## Publishing ### Prerelease A [prerelease](https://github.com/Turfjs/turf/blob/master/.github/workflows/prerelease.yml) action is available that publishes a canary release for every commit or PR merged to the master branch. However, this action is only [enabled](https://github.com/Turfjs/turf/actions/workflows/prerelease.yml) when needed. When used, it publishes an alpha release to NPM (e.g. `7.0.0-alpha.116` where 116 is the number of commits to master since the last release tag). - The version number is calculated by a combination of the output of `git describe` and the `publish:prerelease` script in the root package.json. It is typically setup to do a `minor` prerelease, but can be changed, such as prior to a `major` release. ### Release A turf release is initiated from your local computer, and then built and published remotely via a github actions. To make a release as a core contributor, you will need: - Turf repository write permission - Turf npm organization publish permission - A clean local copy of the Turf Github repository (not a fork!). Starting with a fresh clone will ensure it's clean. - Depending on your auth method - `git clone git@github.com:Turfjs/turf.git turf-release` - or `git clone https://github.com/Turfjs/turf.git turf-release` - `cd turf-release` - start at the top-level of the repo - `pnpm install` - `pnpm test` - make sure everything is passing - If you choose to clean up an existing copy instead, be very careful: - `git remote -v` - verify your remote origin points to `https://github.com/Turfjs/turf.git` - `git checkout master` - `git reset --hard` - reset your local working copy, will lose any uncommitted or unstashed work! - `git fetch origin` - fetch latest commits - `git rev-list master...origin/master` - verify local master in sync with remote, command output should be empty - `pnpm install` - `pnpm test` - make sure everything is passing Before release: - If necessary, make and merge a PR with any last minute housekeeping items. - Turf's documentation (README.md files) should already be up to date as it is generated automatically on commit from JSDoc comments in source files. - Review PR's and decide the new version number to be published. See [semantic versioning](https://semver.org/). Run the following release commands, replacing `7.0.0` with your version number: - create a release branch and switch to it. All building, tagging and publishing will be done on the release branch, and then merged back into master in a later step. - `git checkout origin/master -b release-7.0.0` - increment the version number of all packages, and create a local commit, without pushing to origin. This will also create a release tag. - `pnpm lerna version --no-commit-hooks --no-push 7.0.0` - Push the release branch and the release tag. - `git push origin release-7.0.0 --follow-tags` - Pushing the tag will trigger the Github [release](https://github.com/Turfjs/turf/blob/master/.github/workflows/release.yml) action which you can view the status of at - https://github.com/Turfjs/turf/actions. If successful, a new [version](https://www.npmjs.com/package/@turf/turf?activeTab=versions) of all turf packages will have been published on NPM. - If the release action was not successful - commit any changes to master to fix it. - Make a [prerelease](#prerelease) if helpful to make sure the release action is successful. - Then reset by deleting your tag and branch locally and remotely. - `git push --delete origin v7.1.0` - `git tag --delete v7.1.0` - `git push -d origin release-7.0.0` - `git branch -d release-7.0.0` - Now redo the steps above starting with creating "A clean local copy of the Turf Github repository" - If the release action was successful, now create a Pull Request for the release to merge back to master. - You may be given a link in the output of the branch/tag push command to create the PR. - If you don't get this message, just go to https://github.com/Turfjs/turf/pulls and you should be prompted at the top to create a PR for this new branch you just pushed. - If that prompt doesn't appear, then just create a new pull request from the PR page and make sure the title is the version number e.g. `v7.0.0` and that it is merging your release branch -> to master. - Here is an example PR - https://github.com/Turfjs/turf/pull/2615. - Get approval for the release PR, then "Squash and merge" it. - Do not delete this branch in Github after merging, the release tag points to it. If you do, click "Restore branch" at the bottom of the merged PR. #### Follow-on steps - As part of the release action, a draft Github release will have been created at https://github.com/Turfjs/turf/releases with an auto-generated changelog. - Edit and add to the release notes for readability and completeness, specifically noting any breaking changes. Use past releases as a guide. - Be sure to "Save draft" each time, then ask for a review or edits from other contributors. - Try not to leave the notes unpublished more than a day, people rely on these notes for upgrading. - Once ready, click `Publish release`. This will make the release notes publicly accessible and notify all watchers of the project. - You can edit and republish your release notes after this, but that will likely notify followers, so best to get it right the first time. - Release a new version of the [API docs](https://github.com/Turfjs/turf-www/blob/master/CONTRIBUTING.md) for the https://turfjs.org website. ================================================ FILE: docs/SECURITY.md ================================================ # Security Policy ## Supported Versions Security updates are applied only to the latest release. ## Reporting a Vulnerability If you have discovered a security vulnerability in this project, please report it privately. **Do not disclose it as a public issue.** This gives us time to work with you to fix the issue before public exposure, reducing the chance that the exploit will be used before a patch is released. Please disclose it at [security advisory](https://github.com/Turfjs/turf/security/advisories/new). This project is maintained by a team of volunteers on a reasonable-effort basis. As such, please give us at least 90 days to work on a fix before public exposure. ================================================ FILE: docs/SEE_ALSO.md ================================================ ## Ports of Turf.js Turf has been ported to several other languages, listed below. - [Java](https://github.com/mapbox/mapbox-java/tree/master/services-turf/src/main/java/com/mapbox/turf) (Android, Java SE) - > [The current to-do list for porting to Java](https://github.com/mapbox/mapbox-java/blob/master/docs/turf-port.md) - [Kotlin Multiplatform](https://maplibre.org/spatial-k/) (JVM, Android, Native, JS, WASM) - > [The current to-do list for porting to Kotlin](https://github.com/maplibre/spatial-k/issues?q=sort%3Aupdated-desc%20is%3Aissue%20is%3Aopen%20label%3A%22turf%20port%22) - [Swift](https://github.com/mapbox/turf-swift/) (iOS, macOS, tvOS, watchOS, Linux) - > Turf for Swift is **experimental** and its public API is subject to change. Please use with care. - [Dart/Flutter](https://github.com/dartclub/turf_dart) (Dart Web, Dart Native; Flutter for iOS, Android, macOS, Windows, Linux, Web) - > The Turf for Dart port is still in progress, the implementation status can be found in the [README](https://github.com/dartclub/turf_dart#components). ## Other Geospatial Analysis Software Below are other geospatial options that aren't specifically ports of Turf. ### Python * [Shapely](https://pypi.python.org/pypi/Shapely) is a friendly Python binding to GEOS * [geopandas](https://geopandas.org/) is a layer on top of Shapely and Fiona for PostGIS-like tasks ### C++ * [GEOS](https://libgeos.org/) is a port of JTS to C++ ### JavaScript * [jsts](https://github.com/bjornharrtell/jsts) is a port of JTS to JavaScript ### Java * [JTS](https://www.tsusiatsoftware.net/jts/main.html) ### Go * [gogeos](https://paulsmith.github.io/gogeos/) is a Go binding to GEOS * [go.geo](https://github.com/paulmach/go.geo) is a pure-Go implementation of some geometry operations and primitives ### Postgres * [PostGIS](https://postgis.net/) provides geospatial operations within the Postgres database. Advanced operations rely on GEOS. ================================================ FILE: documentation.yml ================================================ toc: Measurement: - along - area - bbox - bboxPolygon - bearing - center - centerOfMass - centroid - destination - distance - envelope - length - midpoint - pointOnFeature - polygonTangents - pointToLineDistance - pointToPolygonDistance - rhumbBearing - rhumbDestination - rhumbDistance - square - greatCircle Coordinate Mutation: - cleanCoords - flip - rewind - round - truncate Transformation: - bboxClip - bezierSpline - buffer - circle - clone - concave - convex - difference - dissolve - intersect - lineOffset - polygonSmooth - simplify - tesselate - transformRotate - transformTranslate - transformScale - union - voronoi Feature Conversion: - combine - explode - flatten - lineToPolygon - polygonize - polygonToLine Misc: - kinks - lineArc - lineChunk - lineIntersect - lineOverlap - lineSegment - lineSlice - lineSliceAlong - lineSplit - mask - nearestPointOnLine - sector - shortestPath - unkinkPolygon Helper: - featureCollection - feature - geometryCollection - lineString - multiLineString - multiPoint - multiPolygon - point - polygon Random: - randomPosition - randomPoint - randomLineString - randomPolygon Data: - sample Interpolation: - interpolate - isobands - isolines - planepoint - tin Joins: - pointsWithinPolygon - tag Grids: - hexGrid - pointGrid - squareGrid - triangleGrid Classification: - nearestPoint Aggregation: - collect - clustersDbscan - clustersKmeans Meta: - coordAll - coordEach - coordReduce - featureEach - featureReduce - flattenEach - flattenReduce - getCoord - getCoords - getGeom - getType - geomEach - geomReduce - propEach - propReduce - segmentEach - segmentReduce - getCluster - clusterEach - clusterReduce Assertions: - collectionOf - containsNumber - geojsonType - featureOf Booleans: - booleanClockwise - booleanConcave - booleanContains - booleanCrosses - booleanDisjoint - booleanEqual - booleanIntersects - booleanOverlap - booleanParallel - booleanPointInPolygon - booleanPointOnLine - booleanTouches - booleanWithin Unit Conversion: - bearingToAzimuth - azimuthToBearing - convertArea - convertLength - degreesToRadians - lengthToRadians - lengthToDegrees - radiansToLength - radiansToDegrees - toMercator - toWgs84 paths: GeoJSON: "https://tools.ietf.org/html/rfc7946#section-3" GeoJsonProperties: "https://tools.ietf.org/html/rfc7946#section-3.2" GeometryCollection: "https://tools.ietf.org/html/rfc7946#section-3.1.8" Point: "https://tools.ietf.org/html/rfc7946#section-3.1.2" Points: "https://tools.ietf.org/html/rfc7946#section-3.1.2" (Multi)Point: "https://tools.ietf.org/html/rfc7946#section-3.1.2" (Multi)Points: "https://tools.ietf.org/html/rfc7946#section-3.1.2" (Multi)Point(s): "https://tools.ietf.org/html/rfc7946#section-3.1.2" MultiPoint: "https://tools.ietf.org/html/rfc7946#section-3.1.3" MultiPoints: "https://tools.ietf.org/html/rfc7946#section-3.1.3" LineString: "https://tools.ietf.org/html/rfc7946#section-3.1.4" LineStrings: "https://tools.ietf.org/html/rfc7946#section-3.1.4" (Multi)LineString: "https://tools.ietf.org/html/rfc7946#section-3.1.4" (Multi)LineStrings: "https://tools.ietf.org/html/rfc7946#section-3.1.4" (Multi)LineString(s): "https://tools.ietf.org/html/rfc7946#section-3.1.4" MultiLineString: "https://tools.ietf.org/html/rfc7946#section-3.1.5" MultiLineStrings: "https://tools.ietf.org/html/rfc7946#section-3.1.5" Polygon: "https://tools.ietf.org/html/rfc7946#section-3.1.6" Polygons: "https://tools.ietf.org/html/rfc7946#section-3.1.6" (Multi)Polygon: "https://tools.ietf.org/html/rfc7946#section-3.1.6" (Multi)Polygons: "https://tools.ietf.org/html/rfc7946#section-3.1.6" (Multi)Polygon(s): "https://tools.ietf.org/html/rfc7946#section-3.1.6" MultiPolygon: "https://tools.ietf.org/html/rfc7946#section-3.1.7" MultiPolygons: "https://tools.ietf.org/html/rfc7946#section-3.1.7" Geometry: "https://tools.ietf.org/html/rfc7946#section-3.1" Feature: "https://tools.ietf.org/html/rfc7946#section-3.2" Features: "https://tools.ietf.org/html/rfc7946#section-3.3" FeatureCollection: "https://tools.ietf.org/html/rfc7946#section-3.3" Positon: "https://tools.ietf.org/html/rfc7946#section-3.1.1" GeometryObject: "https://tools.ietf.org/html/rfc7946#section-3.1" GeoJSONObject: "https://tools.ietf.org/html/rfc7946#section-3" GeoJSONText: "https://tools.ietf.org/html/rfc7946#section-2" BBox: "https://tools.ietf.org/html/rfc7946#section-5" BoundingBox: "https://tools.ietf.org/html/rfc7946#section-5" Coord: "https://tools.ietf.org/html/rfc7946#section-3.1.1" ================================================ FILE: eslint.config.mjs ================================================ import globals from "globals"; import js from "@eslint/js"; import tsEslint from "typescript-eslint"; import prettierRecommended from "eslint-plugin-prettier/recommended"; export default tsEslint.config( js.configs.recommended, tsEslint.configs.recommended, { ignores: [ "**/dist/**/*", "**/node_modules", "packages/turf/turf.js", "packages/turf/turf.min.js", "packages/turf/test.example.js", ], }, { plugins: { "@typescript-eslint": tsEslint.plugin, }, languageOptions: { globals: { ...globals.node, }, parser: tsEslint.parser, ecmaVersion: 6, sourceType: "module", }, rules: { "@typescript-eslint/no-unused-vars": [ "error", { argsIgnorePattern: "^_", }, ], "@typescript-eslint/explicit-module-boundary-types": "off", "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/no-non-null-assertion": "off", "@typescript-eslint/no-var-requires": "off", "no-constant-condition": "off", "no-redeclare": "off", "no-var": "off", "prefer-const": "off", }, }, { files: ["packages/*/types.ts", "packages/*/test.ts"], rules: { "@typescript-eslint/no-unused-vars": "off", "@typescript-eslint/no-unused-expressions": "off", }, }, { files: [ "**/.eslintrc.js", "packages/*/bench.js", "packages/*/test.js", "packages/turf/rollup.config.js", "scripts/check-dependencies.js", ], languageOptions: { globals: { ...globals.node, }, }, }, prettierRecommended ); ================================================ FILE: examples/browser/index.html ================================================ Browser ================================================ FILE: examples/create-react-app/.gitignore ================================================ build ================================================ FILE: examples/create-react-app/package.json ================================================ { "private": true, "name": "create-react-app", "scripts": { "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject" }, "dependencies": { "react": "*", "react-dom": "*", "react-scripts": "*", "@turf/turf": "*" } } ================================================ FILE: examples/create-react-app/public/index.html ================================================ React App ================================================ FILE: examples/create-react-app/src/index.js ================================================ import { greatCircle, point } from "@turf/turf"; console.log(greatCircle([0, 0], [100, 10])); console.log(point([100, 0])); ================================================ FILE: examples/es-modules/index.html ================================================ ES Modules ================================================ FILE: examples/es-modules-single-module/index.html ================================================ ES Modules - Single Module ================================================ FILE: lerna.json ================================================ { "$schema": "node_modules/lerna/schemas/lerna-schema.json", "npmClient": "pnpm", "version": "7.3.4", "command": { "publish": { "registry": "https://registry.npmjs.org" } } } ================================================ FILE: nx.json ================================================ { "namedInputs": { "default": [ "{workspaceRoot}/pnpm-lock.yaml", "{workspaceRoot}/tsconfig.shared.json", "{projectRoot}/package.json", "{projectRoot}/tsconfig.json" ], "sources": ["{projectRoot}/index.{js,ts}", "{projectRoot}/lib/**"] }, "targetDefaults": { "build": { "dependsOn": ["^build"], "inputs": [ "default", "sources", "{workspaceRoot}/tsup.config.ts", "{projectRoot}/index.d.ts", "{projectRoot}/rollup.config.cjs" ], "outputs": ["{projectRoot}/dist"], "cache": true }, "test": { "inputs": [ "default", "sources", "{projectRoot}/test.ts", "{projectRoot}/test/**", "{projectRoot}/types.ts" ], "dependsOn": ["build"], "cache": true }, "last-checks": { "inputs": ["default", "{projectRoot}/test.ts"], "dependsOn": ["build", "^last-checks"], "cache": true } } } ================================================ FILE: package.json ================================================ { "private": true, "funding": "https://opencollective.com/turf", "scripts": { "docs": "node ./scripts/generate-readmes.mts", "lint": "pnpm run /lint:.*/", "lint:docs": "documentation lint packages/turf-*/index.js", "lint:escheck-cjs": "es-check es8 packages/*/dist/cjs/index.cjs packages/turf/turf.min.js", "lint:escheck-esm": "es-check --module es8 packages/*/dist/esm/index.js", "lint:escheck-web": "es-check es5 packages/turf/turf.min.js", "lint:eslint": "eslint packages", "lint:mrl": "mrl check", "lint:prettier": "prettier --check .", "preinstall": "npx only-allow pnpm", "prepare": "husky && lerna run build", "test": "pnpm run lint && lerna run test && lerna run --scope @turf/turf last-checks" }, "lint-staged": { "package.json": [ "mrl check --paths" ], "**/*.{js,ts}": [ "eslint --fix" ], "packages/*/index.{js,ts}": [ "node ./scripts/generate-readmes.mts", "git add ./packages/*/README.md" ], "*": "prettier --write --ignore-unknown" }, "packageManager": "pnpm@10.10.0+sha256.fa0f513aa8191764d2b6b432420788c270f07b4f999099b65bb2010eec702a30", "devDependencies": { "@eslint/eslintrc": "^3.3.1", "@eslint/js": "^9.31.0", "@monorepolint/cli": "0.6.0-alpha.5", "@monorepolint/config": "0.6.0-alpha.6", "@monorepolint/core": "0.6.0-alpha.6", "@monorepolint/rules": "0.6.0-alpha.6", "@types/node": "22.15.3", "acorn": "^8.14.1", "camelcase": "^8.0.0", "d3-queue": "*", "decamelize": "^6.0.0", "dependency-tree": "^11.1.1", "documentation": "^14.0.3", "es-check": "^9.0.0", "eslint": "^9.31.0", "eslint-config-prettier": "^10.1.8", "eslint-plugin-prettier": "^5.5.3", "esm": "^3.2.25", "glob": "^11.1.0", "globals": "^16.0.0", "husky": "^9.1.7", "lerna": "^9.0.3", "lint-staged": "^15.5.1", "load-json-file": "^7.0.1", "meow": "^13.2.0", "prettier": "^3.5.3", "progress": "^2.0.3", "tsup": "^8.4.0", "typescript": "^5.8.3", "typescript-eslint": "^8.38.0", "yaml": "^2.8.2" } } ================================================ FILE: packages/turf/.gitignore ================================================ test.example.js ================================================ FILE: packages/turf/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf/README.md ================================================ # @turf/turf # turf Turf is a modular geospatial analysis engine written in JavaScript. It performs geospatial processing tasks with GeoJSON data and can be run on a server or in a browser. --- This module is part of the [Turfjs project](http://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this module individually: ```sh $ npm install @turf/turf ``` Or install the Turf module that includes it as a function: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf/babel.config.json ================================================ { "presets": [ [ "@babel/preset-env", { "targets": "> 0.25%, last 2 versions, fully supports es5, not dead" } ] ] } ================================================ FILE: packages/turf/index.ts ================================================ /** * Turf is a modular geospatial analysis engine written in JavaScript. It performs geospatial * processing tasks with GeoJSON data and can be run on a server or in a browser. * * @module turf * @summary Geospatial analysis for JavaScript */ export { along } from "@turf/along"; export { angle } from "@turf/angle"; export { area } from "@turf/area"; export { bbox } from "@turf/bbox"; export { bboxClip } from "@turf/bbox-clip"; export { bboxPolygon } from "@turf/bbox-polygon"; export { bearing } from "@turf/bearing"; export { bezierSpline } from "@turf/bezier-spline"; export { booleanClockwise } from "@turf/boolean-clockwise"; export { booleanConcave } from "@turf/boolean-concave"; export { booleanContains } from "@turf/boolean-contains"; export { booleanCrosses } from "@turf/boolean-crosses"; export { booleanDisjoint } from "@turf/boolean-disjoint"; export { booleanEqual } from "@turf/boolean-equal"; export { booleanIntersects } from "@turf/boolean-intersects"; export { booleanOverlap } from "@turf/boolean-overlap"; export { booleanParallel } from "@turf/boolean-parallel"; export { booleanPointInPolygon } from "@turf/boolean-point-in-polygon"; export { booleanPointOnLine } from "@turf/boolean-point-on-line"; export { booleanTouches } from "@turf/boolean-touches"; export { booleanValid } from "@turf/boolean-valid"; export { booleanWithin } from "@turf/boolean-within"; export { buffer } from "@turf/buffer"; // JSTS Module export { center } from "@turf/center"; export { centerMean } from "@turf/center-mean"; export { centerMedian } from "@turf/center-median"; export { centerOfMass } from "@turf/center-of-mass"; export { centroid } from "@turf/centroid"; export { circle } from "@turf/circle"; export { cleanCoords } from "@turf/clean-coords"; export * from "@turf/clone"; export * from "@turf/clusters"; export * as clusters from "@turf/clusters"; export { clustersDbscan } from "@turf/clusters-dbscan"; export { clustersKmeans } from "@turf/clusters-kmeans"; export { collect } from "@turf/collect"; export { combine } from "@turf/combine"; export { concave } from "@turf/concave"; export { convex } from "@turf/convex"; export { destination } from "@turf/destination"; export { difference } from "@turf/difference"; export { dissolve } from "@turf/dissolve"; export { distance } from "@turf/distance"; export { distanceWeight } from "@turf/distance-weight"; export { ellipse } from "@turf/ellipse"; export { envelope } from "@turf/envelope"; export { explode } from "@turf/explode"; export { flatten } from "@turf/flatten"; export { flip } from "@turf/flip"; export { geojsonRbush } from "@turf/geojson-rbush"; export { greatCircle } from "@turf/great-circle"; export * from "@turf/helpers"; export * as helpers from "@turf/helpers"; export { hexGrid } from "@turf/hex-grid"; export { interpolate } from "@turf/interpolate"; export { intersect } from "@turf/intersect"; export * from "@turf/invariant"; export * as invariant from "@turf/invariant"; export { isobands } from "@turf/isobands"; export { isolines } from "@turf/isolines"; export { kinks } from "@turf/kinks"; export { length } from "@turf/length"; export { lineArc } from "@turf/line-arc"; export { lineChunk } from "@turf/line-chunk"; export { lineIntersect } from "@turf/line-intersect"; export { lineOffset } from "@turf/line-offset"; export { lineOverlap } from "@turf/line-overlap"; export { lineSegment } from "@turf/line-segment"; export { lineSlice } from "@turf/line-slice"; export { lineSliceAlong } from "@turf/line-slice-along"; export { lineSplit } from "@turf/line-split"; export { lineToPolygon } from "@turf/line-to-polygon"; export { mask } from "@turf/mask"; export * from "@turf/meta"; export * as meta from "@turf/meta"; export { midpoint } from "@turf/midpoint"; export { moranIndex } from "@turf/moran-index"; export * from "@turf/nearest-neighbor-analysis"; export { nearestPoint } from "@turf/nearest-point"; export { nearestPointOnLine } from "@turf/nearest-point-on-line"; export { nearestPointToLine } from "@turf/nearest-point-to-line"; export { planepoint } from "@turf/planepoint"; export { pointGrid } from "@turf/point-grid"; export { pointOnFeature } from "@turf/point-on-feature"; export { pointsWithinPolygon } from "@turf/points-within-polygon"; export { pointToLineDistance } from "@turf/point-to-line-distance"; export { pointToPolygonDistance } from "@turf/point-to-polygon-distance"; export { polygonize } from "@turf/polygonize"; export { polygonSmooth } from "@turf/polygon-smooth"; export { polygonTangents } from "@turf/polygon-tangents"; export { polygonToLine } from "@turf/polygon-to-line"; export * from "@turf/projection"; export * as projection from "@turf/projection"; export * from "@turf/quadrat-analysis"; export * from "@turf/random"; export * as random from "@turf/random"; export { rectangleGrid } from "@turf/rectangle-grid"; export { rewind } from "@turf/rewind"; export { rhumbBearing } from "@turf/rhumb-bearing"; export { rhumbDestination } from "@turf/rhumb-destination"; export { rhumbDistance } from "@turf/rhumb-distance"; export { sample } from "@turf/sample"; export { sector } from "@turf/sector"; export { shortestPath } from "@turf/shortest-path"; export { simplify } from "@turf/simplify"; export { square } from "@turf/square"; export { squareGrid } from "@turf/square-grid"; export { standardDeviationalEllipse } from "@turf/standard-deviational-ellipse"; export { tag } from "@turf/tag"; export { tesselate } from "@turf/tesselate"; export { tin } from "@turf/tin"; export { transformRotate } from "@turf/transform-rotate"; export { transformScale } from "@turf/transform-scale"; export { transformTranslate } from "@turf/transform-translate"; export { triangleGrid } from "@turf/triangle-grid"; export { truncate } from "@turf/truncate"; export { union } from "@turf/union"; export { unkinkPolygon } from "@turf/unkink-polygon"; export { voronoi } from "@turf/voronoi"; export { directionalMean } from "@turf/directional-mean"; ================================================ FILE: packages/turf/package.json ================================================ { "name": "@turf/turf", "version": "7.3.4", "description": "a JavaScript library for performing geospatial operations with GeoJSON", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "gis", "geo", "geojs", "geospatial", "geography", "geometry", "map", "contour", "centroid", "tin", "extent", "geojson", "grid", "polygon", "line", "point", "area", "analysis", "statistics", "stats", "midpoint", "plane", "quantile", "jenks", "sample" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "browser": "turf.min.js", "sideEffects": false, "files": [ "dist", "turf.min.js" ], "scripts": { "build": "tsup --config ../../tsup.config.ts && rollup -c rollup.config.js", "last-checks": "pnpm run last-checks:testjs && pnpm run last-checks:example", "last-checks:example": "tsx test.example.js", "last-checks:testjs": "tsx test.ts", "test": "echo '@turf/turf tests run in the last-checks step'" }, "devDependencies": { "@babel/core": "^7.26.10", "@babel/preset-env": "^7.26.9", "@rollup/plugin-babel": "^6.0.4", "@rollup/plugin-commonjs": "^28.0.3", "@rollup/plugin-node-resolve": "^16.0.1", "@rollup/plugin-terser": "^0.4.4", "@types/tape": "^5.8.1", "camelcase": "^8.0.0", "documentation": "^14.0.3", "glob": "^11.1.0", "rollup": "^4.40.1", "rollup-plugin-polyfill-node": "^0.13.0", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/along": "workspace:*", "@turf/angle": "workspace:*", "@turf/area": "workspace:*", "@turf/bbox": "workspace:*", "@turf/bbox-clip": "workspace:*", "@turf/bbox-polygon": "workspace:*", "@turf/bearing": "workspace:*", "@turf/bezier-spline": "workspace:*", "@turf/boolean-clockwise": "workspace:*", "@turf/boolean-concave": "workspace:*", "@turf/boolean-contains": "workspace:*", "@turf/boolean-crosses": "workspace:*", "@turf/boolean-disjoint": "workspace:*", "@turf/boolean-equal": "workspace:*", "@turf/boolean-intersects": "workspace:*", "@turf/boolean-overlap": "workspace:*", "@turf/boolean-parallel": "workspace:*", "@turf/boolean-point-in-polygon": "workspace:*", "@turf/boolean-point-on-line": "workspace:*", "@turf/boolean-touches": "workspace:*", "@turf/boolean-valid": "workspace:*", "@turf/boolean-within": "workspace:*", "@turf/buffer": "workspace:*", "@turf/center": "workspace:*", "@turf/center-mean": "workspace:*", "@turf/center-median": "workspace:*", "@turf/center-of-mass": "workspace:*", "@turf/centroid": "workspace:*", "@turf/circle": "workspace:*", "@turf/clean-coords": "workspace:*", "@turf/clone": "workspace:*", "@turf/clusters": "workspace:*", "@turf/clusters-dbscan": "workspace:*", "@turf/clusters-kmeans": "workspace:*", "@turf/collect": "workspace:*", "@turf/combine": "workspace:*", "@turf/concave": "workspace:*", "@turf/convex": "workspace:*", "@turf/destination": "workspace:*", "@turf/difference": "workspace:*", "@turf/directional-mean": "workspace:*", "@turf/dissolve": "workspace:*", "@turf/distance": "workspace:*", "@turf/distance-weight": "workspace:*", "@turf/ellipse": "workspace:*", "@turf/envelope": "workspace:*", "@turf/explode": "workspace:*", "@turf/flatten": "workspace:*", "@turf/flip": "workspace:*", "@turf/geojson-rbush": "workspace:*", "@turf/great-circle": "workspace:*", "@turf/helpers": "workspace:*", "@turf/hex-grid": "workspace:*", "@turf/interpolate": "workspace:*", "@turf/intersect": "workspace:*", "@turf/invariant": "workspace:*", "@turf/isobands": "workspace:*", "@turf/isolines": "workspace:*", "@turf/kinks": "workspace:*", "@turf/length": "workspace:*", "@turf/line-arc": "workspace:*", "@turf/line-chunk": "workspace:*", "@turf/line-intersect": "workspace:*", "@turf/line-offset": "workspace:*", "@turf/line-overlap": "workspace:*", "@turf/line-segment": "workspace:*", "@turf/line-slice": "workspace:*", "@turf/line-slice-along": "workspace:*", "@turf/line-split": "workspace:*", "@turf/line-to-polygon": "workspace:*", "@turf/mask": "workspace:*", "@turf/meta": "workspace:*", "@turf/midpoint": "workspace:*", "@turf/moran-index": "workspace:*", "@turf/nearest-neighbor-analysis": "workspace:*", "@turf/nearest-point": "workspace:*", "@turf/nearest-point-on-line": "workspace:*", "@turf/nearest-point-to-line": "workspace:*", "@turf/planepoint": "workspace:*", "@turf/point-grid": "workspace:*", "@turf/point-on-feature": "workspace:*", "@turf/point-to-line-distance": "workspace:*", "@turf/point-to-polygon-distance": "workspace:*", "@turf/points-within-polygon": "workspace:*", "@turf/polygon-smooth": "workspace:*", "@turf/polygon-tangents": "workspace:*", "@turf/polygon-to-line": "workspace:*", "@turf/polygonize": "workspace:*", "@turf/projection": "workspace:*", "@turf/quadrat-analysis": "workspace:*", "@turf/random": "workspace:*", "@turf/rectangle-grid": "workspace:*", "@turf/rewind": "workspace:*", "@turf/rhumb-bearing": "workspace:*", "@turf/rhumb-destination": "workspace:*", "@turf/rhumb-distance": "workspace:*", "@turf/sample": "workspace:*", "@turf/sector": "workspace:*", "@turf/shortest-path": "workspace:*", "@turf/simplify": "workspace:*", "@turf/square": "workspace:*", "@turf/square-grid": "workspace:*", "@turf/standard-deviational-ellipse": "workspace:*", "@turf/tag": "workspace:*", "@turf/tesselate": "workspace:*", "@turf/tin": "workspace:*", "@turf/transform-rotate": "workspace:*", "@turf/transform-scale": "workspace:*", "@turf/transform-translate": "workspace:*", "@turf/triangle-grid": "workspace:*", "@turf/truncate": "workspace:*", "@turf/union": "workspace:*", "@turf/unkink-polygon": "workspace:*", "@turf/voronoi": "workspace:*", "@types/geojson": "^7946.0.10", "@types/kdbush": "^3.0.5", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf/rollup.config.js ================================================ import { babel } from "@rollup/plugin-babel"; import { readFileSync } from "fs"; import commonjs from "@rollup/plugin-commonjs"; import nodePolyfills from "rollup-plugin-polyfill-node"; import nodeResolve from "@rollup/plugin-node-resolve"; import terser from "@rollup/plugin-terser"; const pckg = JSON.parse(readFileSync("./package.json", "utf-8")); const input = "index.ts"; export default [ { input, output: [{ file: pckg.browser, format: "umd", name: "turf" }], plugins: [ commonjs(), nodeResolve(), nodePolyfills(), babel({ babelHelpers: "bundled" }), terser(), ], }, ]; ================================================ FILE: packages/turf/test.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { glob } from "glob"; import test from "tape"; import camelCase from "camelcase"; import * as documentation from "documentation"; import * as turf from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); // Helpers const directory = path.join(__dirname, ".."); let modules = []; for (const name of fs.readdirSync(directory)) { if (!name.includes("turf")) continue; const pckgPath = path.join(directory, name, "package.json"); if (!fs.existsSync(pckgPath)) continue; const pckg = JSON.parse(fs.readFileSync(pckgPath)); let mainFile = path.join(directory, name, pckg.main); if (!fs.existsSync(mainFile)) { mainFile += ".js"; } const index = fs.readFileSync(mainFile, "utf8"); // Cater for JS or TS test files. const test = fs.existsSync(path.join(directory, name, "test.ts")) ? fs.readFileSync(path.join(directory, name, "test.ts"), "utf8") : fs.readFileSync(path.join(directory, name, "test.js"), "utf8"); modules.push({ name, pckg, index, test, dir: path.join(directory, name), dependencies: pckg.dependencies || {}, devDependencies: pckg.devDependencies || {}, }); } // Exclude main Turf module modules = modules.filter(({ name }) => name !== "turf"); test("turf -- invalid dependencies", (t) => { for (const { name, dependencies, devDependencies } of modules) { for (const invalidDependency of [ "load-json-file", "write-json-file", "tape", "benchmark", "glob", "lerna", "documentation", "uglify-js", ]) { if (dependencies[invalidDependency]) t.fail( `${name} ${invalidDependency} should be defined as devDependencies` ); } if (devDependencies["eslint"] || devDependencies["eslint-config-mourner"]) t.fail(`${name} eslint is handled at the root level`); if (devDependencies["@turf/helpers"]) t.fail( `${name} @turf/helpers should be located in Dependencies instead of DevDependencies` ); // if (devDependencies['mkdirp']) t.fail(`${name} tests should not have to create folders`); } t.skip('remove "mkdirp" from testing'); t.end(); }); test("turf -- strict version dependencies", (t) => { for (const { name, dependencies } of modules) { if (dependencies["jsts"]) t.fail(name + " jsts must use turf-jsts"); if (dependencies["jsts-es"]) t.fail(name + " jsts-es must use turf-jsts"); } t.end(); }); test("turf -- duplicate dependencies", (t) => { for (const { name, dependencies, devDependencies } of modules) { for (const dependency of Object.keys(dependencies)) { if (devDependencies[dependency]) t.fail(`${name} ${dependency} is duplicated in devDependencies`); } } t.end(); }); test("turf -- check if files exists", (t) => { for (const { name, dir, pckg } of modules) { const { files } = pckg; if (!files || !files.length) t.fail(`${name} (files) must be included in package.json`); for (const file of files) { // ignore Rollup bundle if (file === "main.js") continue; if (file === "main.es.js") continue; if (file === "index.d.ts") continue; if (!fs.existsSync(path.join(dir, file))) t.fail(`${name} missing file ${file} in "files"`); } } t.end(); }); test("turf -- external files must be in the lib folder", (t) => { for (const { pckg } of modules) { const { files } = pckg; for (const file of files) { switch (file) { case "main.js": case "main.es.js": case "index.js": case "index.ts": case "index.mjs": case "index.d.ts": case "lib": break; default: // t.fail(`${name} external files must be in the lib folder`) } } } t.end(); }); test("turf -- MIT license", (t) => { const text = fs.readFileSync(path.join(__dirname, "LICENSE"), "utf8"); for (const { name, dir, pckg } of modules) { const { license } = pckg; if (license !== "MIT") t.fail(`${name} (license) must be "MIT"`); if (fs.readFileSync(path.join(dir, "LICENSE"), "utf8") !== text) t.fail(`${name} (LICENSE) content is different from @turf/turf`); } t.end(); }); test("turf -- contributors", (t) => { for (const { name, pckg } of modules) { for (const contributor of pckg.contributors || []) { if (!contributor.match(/<@.+>/)) t.fail( `${name} ${contributor} (contributors) should use "Full Name <@GitHub>"` ); } } t.end(); }); test("turf -- scoped package name", (t) => { for (const { name, pckg } of modules) { const expected = name.replace("turf-", "@turf/"); if (pckg.name !== expected) t.fail(`${name} (name) must use ${expected} in package.json`); } t.end(); }); test("turf -- pre-defined attributes in package.json", (t) => { for (const { name, pckg } of modules) { if (pckg.author !== "Turf Authors") t.fail(name + ' (author) should be "Turf Authors"'); // if (pckg.main !== 'main.js') t.skip(`${name} (main) must be "main.js" in package.json`); // if (pckg.module !== 'main.es.js') t.skip(`${name} (module) must be "main.es.js" in package.json`); if (pckg["jsnext:main"]) t.fail( `${name} (jsnext:main) is no longer required in favor of using (module) in package.json` ); // if (pckg.types !== 'index.d.ts') t.fail(`${name} (types) must be "index.d.ts" in package.json`); if (!pckg.bugs || pckg.bugs.url !== "https://github.com/Turfjs/turf/issues") t.fail( `${name} (bugs.url) must be "https://github.com/Turfjs/turf/issues" in package.json` ); if (pckg.homepage !== "https://github.com/Turfjs/turf") t.fail( `${name} (homepage) must be "https://github.com/Turfjs/turf" in package.json` ); } t.end(); }); test("turf -- parsing dependencies from index.js", (t) => { for (const { name, dependencies, index } of modules) { // Read Depedencies from index.js const dependenciesUsed = new Set(); for (const dependency of index.match(/(require\(|from )'[@/a-z-\d]+'/gi) || []) { if (dependency.includes("jsts")) continue; const dependencyName = dependency.split(/'/)[1]; if (!dependencies[dependencyName]) t.skip(`${name} ${dependencyName} is missing from dependencies`); if (dependenciesUsed.has(dependencyName)) t.skip(`${name} ${dependencyName} is duplicated in index.js`); dependenciesUsed.add(dependencyName); } // Read Dependencies from package.json for (const dependencyName of Object.keys(dependencies)) { // Ignore @turf/helpers since it could be used in Typescript definition switch (dependencyName) { case "@turf/helpers": case "@turf/invariant": case "@turf/meta": case "jsts": case "rbush": case "topojson-client": case "topojson-server": continue; } if (!dependenciesUsed.has(dependencyName)) t.skip(`${name} ${dependencyName} is not required in index.js`); } } t.end(); }); // Test for missing modules test("turf -- missing modules", (t) => { const files = { typescript: fs.readFileSync(path.join(__dirname, "dist/cjs/index.d.cts")), modules: fs.readFileSync(path.join(__dirname, "dist/cjs/index.cjs")), }; modules.forEach(({ name }) => { name = camelCase(name.replace("turf-", "")); // name exception with linestring => lineString name = name .replace("linestring", "lineString") .replace("Linestring", "LineString"); // if (!files.typescript.includes(name)) t.skip(name + ' is missing from index.d.ts'); if (!files.modules.includes(name)) t.skip(name + " is missing from index.js"); switch (typeof turf[name]) { case "function": break; case "object": break; case "undefined": t.skip(name + " is missing from index.js"); } }); t.end(); }); const deprecated = { modules: [ "@turf/idw", "@turf/line-distance", "@turf/point-on-line", "@turf/bezier", "@turf/within", "@turf/inside", "@turf/nearest", "@turf/polygon-to-linestring", "@turf/linestring-to-polygon", "@turf/point-on-surface", ], methods: [ "radians2degrees", "degrees2radians", "distanceToDegrees", "distanceToRadians", "radiansToDistance", "bearingToAngle", "convertDistance", ], }; test("turf -- check for deprecated modules", (t) => { for (const { name, dependencies, devDependencies } of modules) { for (const dependency of [ ...Object.keys(dependencies), ...Object.keys(devDependencies), ]) { if (deprecated.modules.indexOf(dependency) !== -1) { throw new Error( `${name} module has deprecated dependency ${dependency}` ); } } } t.end(); }); test("turf -- check for deprecated methods", (t) => { for (const { name, index, test } of modules) { // Exclude @turf/helpers from this test if (name === "turf-helpers") continue; for (const method of deprecated.methods) { if ((test + index).match(method)) throw new Error(`${name} repo has deprecated method ${method}`); } } t.end(); }); // TurfJS v5.0 Typescript definition uses @turf/helpers test("turf -- update to newer Typescript definitions", (t) => { glob.sync(turfTypescriptPath).forEach((filepath) => { const typescript = fs.readFileSync(filepath, "utf8"); if (typescript.includes('reference types="geojson"')) t.skip(filepath + " update Typescript definition v5.0"); }); t.end(); }); // test('turf -- require() not allowed in favor of import', t => { // for (const {name, index, test} of modules) { // if ((index).includes('= require(')) throw new Error(`${name} module cannot use require(), use ES import instead`); // } // t.end(); // }); /** * ========================= * Builds => test.example.js * ========================= * will be run as `posttest` */ // File Paths const testFilePath = path.join(__dirname, "test.example.js"); const turfModulesPath = path.join(__dirname, "..", "turf-*", "index.js"); const turfTypescriptPath = path.join(__dirname, "..", "turf-*", "index.d.ts"); // Test Strings const requireString = `import test from 'tape'; import * as turf from './dist/esm/index.js'; `; /** * Generate Test String * * @param {Object} turfFunction Documentation function object * @param {Object} example Documentation example object * @returns {string} Test String */ function testString(turfFunction, example) { const turfName = turfFunction.name; const testFunctionName = turfName + "Test"; // New modules will be excluded from tests if (!turf[turfName]) return ` test('turf-example-${turfName}', t => { t.skip('${turfName}'); t.end(); }); `; // Specific moduels will exclude testing @example switch (turfName) { case "isolines": case "isobands": return ` test('turf-example-${turfName}', t => { t.skip('${turfName}'); t.end(); }); `; } return ` test('turf-example-${turfName}', t => { const ${testFunctionName} = () => { ${example.description} } ${testFunctionName}(); t.pass('${turfName}'); t.end(); }); `; } // Iterate over each module and retrieve @example to build tests from them glob(turfModulesPath).then((files) => { // Read each JSDocs from index.js files documentation.build(files, {}).then((turfFunctions) => { // Write header of test.js const writeableStream = fs.createWriteStream(testFilePath); writeableStream.write(requireString); writeableStream.on("error", (err) => { throw err; }); // Retrieve @example turfFunctions.forEach((turfFunction) => { if (turfFunction.examples) { // Save to test.js turfFunction.examples.forEach((example) => { writeableStream.write(testString(turfFunction, example)); }); } }); writeableStream.end(); }); }); ================================================ FILE: packages/turf/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-along/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-along/README.md ================================================ # @turf/along ## along Takes a [LineString][1] and returns a [Point][2] at a specified distance along the line. ### Parameters * `line` **([Feature][3]<[LineString][1]> | [LineString][1])** input line * `distance` **[number][4]** distance along the line * `options` **[Object][5]?** Optional parameters (optional, default `{}`) * `options.units` **Units** Supports all valid Turf [Units][6]. (optional, default `"kilometers"`) ### Examples ```javascript var line = turf.lineString([[-83, 30], [-84, 36], [-78, 41]]); var options = {units: 'miles'}; var along = turf.along(line, 200, options); //addToMap var addToMap = [along, line] ``` Returns **[Feature][3]<[Point][2]>** Point `distance` `units` along the line [1]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [3]: https://tools.ietf.org/html/rfc7946#section-3.2 [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [6]: https://turfjs.org/docs/api/types/Units --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/along ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-along/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import Benchmark from "benchmark"; import { along } from "./index.js"; import { Feature, LineString } from "geojson"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const line: Feature = { type: "Feature", properties: {}, geometry: { type: "LineString", coordinates: [ [-77.0316696166992, 38.878605901789236], [-77.02960968017578, 38.88194668656296], [-77.02033996582031, 38.88408470638821], [-77.02566146850586, 38.885821800123196], [-77.02188491821289, 38.88956308852534], [-77.01982498168944, 38.89236892551996], ], }, }; const route = JSON.parse( fs.readFileSync(__dirname + "/test/fixtures/route.geojson").toString() ); const suite = new Benchmark.Suite("turf-along"); suite .add("turf-along", function () { along(line, 1, { units: "miles" }); }) .add("turf-along#route 1 mile", function () { along(route, 1, { units: "miles" }); }) .add("turf-along#route 10 miles", function () { along(route, 10, { units: "miles" }); }) .add("turf-along#route 50 miles", function () { along(route, 50, { units: "miles" }); }) .add("turf-along#route 100 miles", function () { along(route, 100, { units: "miles" }); }) .on("cycle", function (event) { console.log(String(event.target)); }) .run(); ================================================ FILE: packages/turf-along/index.ts ================================================ import { Feature, LineString, Point } from "geojson"; import { bearing } from "@turf/bearing"; import { destination } from "@turf/destination"; import { distance as measureDistance } from "@turf/distance"; import { point, Units } from "@turf/helpers"; import { getGeom } from "@turf/invariant"; /** * Takes a {@link LineString} and returns a {@link Point} at a specified distance along the line. * * @function * @param {Feature|LineString} line input line * @param {number} distance distance along the line * @param {Object} [options] Optional parameters * @param {Units} [options.units="kilometers"] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @returns {Feature} Point `distance` `units` along the line * @example * var line = turf.lineString([[-83, 30], [-84, 36], [-78, 41]]); * var options = {units: 'miles'}; * * var along = turf.along(line, 200, options); * * //addToMap * var addToMap = [along, line] */ function along( line: Feature | LineString, distance: number, options: { units?: Units } = {} ): Feature { // Get Coords const geom = getGeom(line); const coords = geom.coordinates; let travelled = 0; for (let i = 0; i < coords.length; i++) { if (distance >= travelled && i === coords.length - 1) { break; } else if (travelled >= distance) { const overshot = distance - travelled; if (!overshot) { return point(coords[i]); } else { const direction = bearing(coords[i], coords[i - 1]) - 180; const interpolated = destination( coords[i], overshot, direction, options ); return interpolated; } } else { travelled += measureDistance(coords[i], coords[i + 1], options); } } return point(coords[coords.length - 1]); } export { along }; export default along; ================================================ FILE: packages/turf-along/package.json ================================================ { "name": "@turf/along", "version": "7.3.4", "description": "Calculates a point along a line at a specific distance", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "along", "line", "linestring", "turf", "distance" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/bearing": "workspace:*", "@turf/destination": "workspace:*", "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-along/test/fixtures/dc-line.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-77.0316696166992, 38.878605901789236], [-77.02960968017578, 38.88194668656296], [-77.02033996582031, 38.88408470638821], [-77.02566146850586, 38.885821800123196], [-77.02188491821289, 38.88956308852534], [-77.01982498168944, 38.89236892551996], [-77.02291488647461, 38.89370499941828], [-77.02291488647461, 38.89958342598271], [-77.01896667480469, 38.90011780426885], [-77.01845169067383, 38.90733151751689], [-77.02291488647461, 38.907865837489105], [-77.02377319335936, 38.91200668090932], [-77.02995300292969, 38.91254096569048], [-77.03338623046875, 38.91708222394378], [-77.03784942626953, 38.920821865485834], [-77.03115463256836, 38.92830055730587], [-77.03596115112305, 38.931505469602044] ] } } ================================================ FILE: packages/turf-along/test/fixtures/dc-points.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-77.0316696166992, 38.87406218243845] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-77.02325820922852, 38.885688179036094] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-77.0222282409668, 38.89744587262311] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-77.02377319335936, 38.910804525446686] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-77.02840805053711, 38.91441093075183] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-77.02840805053711, 38.92402711565758] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-77.04008102416992, 38.932707274379595] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-76.99390411376953, 38.91387666004744] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-77.03269958496094, 38.898648254305215] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-77.02342987060545, 38.870587377511235] } } ] } ================================================ FILE: packages/turf-along/test/fixtures/route.geojson ================================================ { "type": "Feature", "properties": { "name": null, "cmt": null, "desc": null, "src": null, "link1_href": null, "link1_text": null, "link1_type": null, "link2_href": null, "link2_text": null, "link2_type": null, "number": null, "type": null }, "geometry": { "type": "LineString", "coordinates": [ [-79.254923, 36.98394], [-79.254923, 36.983939], [-79.255326, 36.9838], [-79.255401, 36.983774], [-79.25576, 36.983664], [-79.256795, 36.984137], [-79.257537, 36.984478], [-79.258539, 36.984925], [-79.259498, 36.985353], [-79.260286, 36.985712], [-79.261405, 36.986222], [-79.262933, 36.986928], [-79.263237, 36.987071], [-79.263755, 36.987296], [-79.264086, 36.987423], [-79.264167, 36.987446], [-79.264338, 36.987486], [-79.264414, 36.987501], [-79.264618, 36.987531], [-79.2648, 36.987542], [-79.264982, 36.987537], [-79.265163, 36.987517], [-79.26703, 36.987355], [-79.267952, 36.98726], [-79.268404, 36.987226], [-79.268771, 36.987197], [-79.26955, 36.987117], [-79.271398, 36.986946], [-79.271488, 36.986941], [-79.271698, 36.986925], [-79.271936, 36.986898], [-79.272231, 36.986852], [-79.272474, 36.986785], [-79.272711, 36.986705], [-79.272895, 36.986632], [-79.273059, 36.986552], [-79.273646, 36.986245], [-79.274224, 36.985925], [-79.274887, 36.985592], [-79.275308, 36.985365], [-79.275672, 36.98517], [-79.276249, 36.984876], [-79.277101, 36.984433], [-79.277425, 36.984259], [-79.277918, 36.983982], [-79.27799, 36.98395], [-79.278179, 36.98385], [-79.278261, 36.9838], [-79.278335, 36.983745], [-79.278421, 36.983666], [-79.27844, 36.983647], [-79.278502, 36.983577], [-79.278548, 36.983511], [-79.278614, 36.983381], [-79.278654, 36.983273], [-79.278711, 36.983011], [-79.278763, 36.98269], [-79.278806, 36.982485], [-79.278866, 36.982282], [-79.278952, 36.982101], [-79.279023, 36.981984], [-79.280178, 36.980418], [-79.280259, 36.980319], [-79.280355, 36.980229], [-79.280419, 36.98018], [-79.280578, 36.980082], [-79.280666, 36.980038], [-79.280783, 36.979994], [-79.280908, 36.979963], [-79.281301, 36.979913], [-79.281646, 36.979874], [-79.282145, 36.979835], [-79.282797, 36.97977], [-79.283144, 36.979743], [-79.283618, 36.97972], [-79.28399, 36.979706], [-79.284447, 36.979695], [-79.284904, 36.979697], [-79.286913, 36.979638], [-79.287201, 36.979628], [-79.287954, 36.979612], [-79.288037, 36.979611], [-79.288397, 36.97962], [-79.288697, 36.979643], [-79.289908, 36.979722], [-79.289994, 36.979724], [-79.290136, 36.979716], [-79.290248, 36.979699], [-79.290503, 36.979632], [-79.291043, 36.979454], [-79.291563, 36.979269], [-79.292467, 36.97896], [-79.292759, 36.978877], [-79.292963, 36.978832], [-79.293286, 36.978778], [-79.293549, 36.978746], [-79.293649, 36.978738], [-79.293755, 36.978729], [-79.293858, 36.978731], [-79.294028, 36.978747], [-79.294162, 36.978771], [-79.294243, 36.9788], [-79.294439, 36.978883], [-79.294626, 36.978979], [-79.294782, 36.979072], [-79.294921, 36.979174], [-79.295023, 36.979263], [-79.295281, 36.979534], [-79.295458, 36.979739], [-79.296347, 36.980843], [-79.296549, 36.981064], [-79.296594, 36.981095], [-79.296695, 36.981144], [-79.296788, 36.98117], [-79.296916, 36.981184], [-79.297032, 36.981182], [-79.297147, 36.981165], [-79.297933, 36.980962], [-79.298145, 36.980893], [-79.298401, 36.98079], [-79.298602, 36.980696], [-79.298795, 36.980593], [-79.299134, 36.980402], [-79.299407, 36.980244], [-79.299963, 36.9799], [-79.301767, 36.97881], [-79.301976, 36.978691], [-79.3021, 36.978619], [-79.302508, 36.978369], [-79.302614, 36.978309], [-79.3028, 36.97822], [-79.302995, 36.978145], [-79.303113, 36.978114], [-79.303153, 36.978249], [-79.303232, 36.978565], [-79.303319, 36.978989], [-79.303326, 36.979184], [-79.303313, 36.979346], [-79.30324, 36.979748], [-79.303136, 36.980362], [-79.303088, 36.980609], [-79.302996, 36.981143], [-79.302982, 36.981226], [-79.302977, 36.981321], [-79.302986, 36.98144], [-79.303013, 36.981556], [-79.303057, 36.98167], [-79.303191, 36.9819], [-79.303336, 36.982126], [-79.303702, 36.982652], [-79.304322, 36.983486], [-79.304588, 36.98382], [-79.304756, 36.984051], [-79.304903, 36.984229], [-79.305059, 36.984403], [-79.305145, 36.984487], [-79.305336, 36.984648], [-79.305612, 36.98486], [-79.30569, 36.984915], [-79.305765, 36.984974], [-79.305944, 36.98513], [-79.306108, 36.985295], [-79.306259, 36.985469], [-79.306333, 36.98557], [-79.306437, 36.985737], [-79.306524, 36.985911], [-79.306595, 36.98609], [-79.306677, 36.986365], [-79.306734, 36.98662], [-79.306773, 36.986878], [-79.306759, 36.986998], [-79.306724, 36.987146], [-79.306621, 36.987426], [-79.306591, 36.987545], [-79.306555, 36.987745], [-79.306536, 36.987984], [-79.30653, 36.988172], [-79.306539, 36.988321], [-79.30655, 36.988398], [-79.306566, 36.988507], [-79.306673, 36.988967], [-79.306789, 36.989416], [-79.30681, 36.989518], [-79.306831, 36.98969], [-79.306833, 36.989828], [-79.306822, 36.989888], [-79.306771, 36.990067], [-79.306696, 36.99024], [-79.306569, 36.990463], [-79.306374, 36.99078], [-79.30633, 36.990863], [-79.306292, 36.990972], [-79.306271, 36.991084], [-79.306268, 36.991229], [-79.306282, 36.991421], [-79.306323, 36.991648], [-79.30657, 36.992516], [-79.306601, 36.992703], [-79.306614, 36.992892], [-79.306598, 36.993111], [-79.306569, 36.993287], [-79.306553, 36.993345], [-79.306526, 36.993432], [-79.306466, 36.993574], [-79.306313, 36.993848], [-79.305971, 36.994382], [-79.305826, 36.994647], [-79.305382, 36.995598], [-79.305197, 36.995963], [-79.305065, 36.996284], [-79.304983, 36.996521], [-79.304954, 36.99668], [-79.30495, 36.996815], [-79.304959, 36.996932], [-79.304988, 36.997077], [-79.305024, 36.99719], [-79.305111, 36.99739], [-79.305197, 36.997567], [-79.30532, 36.997782], [-79.305429, 36.997949], [-79.305577, 36.998153], [-79.306017, 36.99873], [-79.306204, 36.998965], [-79.306407, 36.999192], [-79.306624, 36.999411], [-79.30672, 36.999489], [-79.306828, 36.999557], [-79.306922, 36.999602], [-79.307072, 36.999656], [-79.307354, 36.999723], [-79.307628, 36.999778], [-79.308892, 36.999988], [-79.309029, 37.00002], [-79.309135, 37.000056], [-79.30926, 37.000112], [-79.309374, 37.00018], [-79.309478, 37.000259], [-79.30959, 37.000372], [-79.309743, 37.000552], [-79.31029, 37.001344], [-79.31037, 37.001451], [-79.310486, 37.001568], [-79.310598, 37.001654], [-79.310697, 37.001714], [-79.310838, 37.001785], [-79.310991, 37.001844], [-79.31115, 37.001891], [-79.311632, 37.001979], [-79.312359, 37.002135], [-79.312455, 37.002156], [-79.312915, 37.002271], [-79.313026, 37.002296], [-79.313639, 37.002422], [-79.314311, 37.002515], [-79.314769, 37.002553], [-79.315227, 37.002582], [-79.315352, 37.002604], [-79.315472, 37.002641], [-79.315543, 37.002685], [-79.315621, 37.00275], [-79.315685, 37.002824], [-79.315725, 37.002889], [-79.315888, 37.002832], [-79.316221, 37.002733], [-79.316448, 37.002678], [-79.31752, 37.002455], [-79.318524, 37.002275], [-79.319059, 37.002211], [-79.319268, 37.002199], [-79.319435, 37.0022], [-79.319651, 37.002214], [-79.319786, 37.002226], [-79.320258, 37.002279], [-79.320522, 37.002298], [-79.320786, 37.002302], [-79.320953, 37.002288], [-79.321116, 37.002258], [-79.321274, 37.002213], [-79.321381, 37.00217], [-79.321762, 37.002001], [-79.322382, 37.001698], [-79.322844, 37.001466], [-79.323023, 37.001376], [-79.323292, 37.001249], [-79.32357, 37.001134], [-79.323943, 37.001003], [-79.324098, 37.000958], [-79.324162, 37.000945], [-79.32513, 37.000843], [-79.325325, 37.000814], [-79.325517, 37.000777], [-79.325753, 37.000719], [-79.327186, 37.000266], [-79.327482, 37.000173], [-79.327802, 37.00008], [-79.328598, 36.999838], [-79.329158, 36.999654], [-79.329204, 36.999715], [-79.329343, 36.999894], [-79.32942, 36.999975], [-79.329588, 37.000125], [-79.329742, 37.000239], [-79.329777, 37.000256], [-79.329869, 37.000291], [-79.329988, 37.000315], [-79.330091, 37.000318], [-79.33027, 37.000316], [-79.330449, 37.000298], [-79.331035, 37.000223], [-79.331427, 37.000184], [-79.331855, 37.000129], [-79.333009, 37.000023], [-79.334568, 36.999869], [-79.335002, 36.999826], [-79.33552, 36.999806], [-79.33606, 36.999814], [-79.336208, 36.999833], [-79.336352, 36.999866], [-79.33649, 36.999913], [-79.336644, 36.999986], [-79.336856, 37.000123], [-79.336962, 37.000203], [-79.337096, 37.000316], [-79.337325, 37.000539], [-79.337519, 37.000761], [-79.338522, 37.001965], [-79.339126, 37.002688], [-79.339574, 37.003185], [-79.340385, 37.004106], [-79.340479, 37.004212], [-79.340603, 37.004341], [-79.340773, 37.00449], [-79.340929, 37.004602], [-79.341131, 37.004723], [-79.341632, 37.004968], [-79.341875, 37.005087], [-79.342172, 37.005233], [-79.342594, 37.00542], [-79.343189, 37.005708], [-79.343817, 37.006011], [-79.344455, 37.006335], [-79.344712, 37.00647], [-79.345697, 37.006916], [-79.345837, 37.006985], [-79.346006, 37.00708], [-79.346221, 37.007218], [-79.347403, 37.008016], [-79.347493, 37.008071], [-79.347634, 37.008171], [-79.347763, 37.008281], [-79.347971, 37.008497], [-79.348051, 37.008623], [-79.348135, 37.008786], [-79.348201, 37.008954], [-79.34825, 37.009126], [-79.348316, 37.00954], [-79.348397, 37.010196], [-79.34854, 37.01111], [-79.348616, 37.011496], [-79.348778, 37.012266], [-79.349159, 37.013946], [-79.349315, 37.014628], [-79.349636, 37.015919], [-79.349688, 37.016183], [-79.349795, 37.016628], [-79.349854, 37.016827], [-79.349915, 37.01701], [-79.350064, 37.017337], [-79.350135, 37.017464], [-79.350159, 37.017499], [-79.350325, 37.017735], [-79.35042, 37.017865], [-79.350584, 37.018129], [-79.35072, 37.01842], [-79.350808, 37.018683], [-79.35089, 37.018981], [-79.350968, 37.019317], [-79.35119, 37.020219], [-79.351251, 37.020445], [-79.351346, 37.020719], [-79.351414, 37.020888], [-79.351505, 37.021079], [-79.351682, 37.021459], [-79.351825, 37.02176], [-79.352185, 37.022473], [-79.352628, 37.023433], [-79.352751, 37.023743], [-79.35282, 37.023863], [-79.352895, 37.023965], [-79.353012, 37.024078], [-79.353078, 37.024127], [-79.353186, 37.024186], [-79.353325, 37.024244], [-79.353398, 37.024265], [-79.353421, 37.02427], [-79.353621, 37.024315], [-79.353675, 37.024321], [-79.35392, 37.024336], [-79.354286, 37.024379], [-79.354423, 37.024385], [-79.354844, 37.024375], [-79.355058, 37.024359], [-79.355214, 37.024339], [-79.355354, 37.024308], [-79.355614, 37.024238], [-79.355718, 37.024209], [-79.355965, 37.024125], [-79.356147, 37.024057], [-79.356485, 37.02394], [-79.356546, 37.023919], [-79.356797, 37.023824], [-79.356964, 37.023769], [-79.357077, 37.023757], [-79.357196, 37.023767], [-79.357262, 37.023786], [-79.357309, 37.023811], [-79.35735, 37.023849], [-79.357388, 37.023905], [-79.357541, 37.024317], [-79.357583, 37.024391], [-79.357634, 37.024438], [-79.357685, 37.024467], [-79.357747, 37.024487], [-79.35783, 37.024497], [-79.357899, 37.024495], [-79.35801, 37.02448], [-79.358102, 37.02446], [-79.358409, 37.025941], [-79.358471, 37.026316], [-79.358502, 37.026637], [-79.358517, 37.026844], [-79.358519, 37.027185], [-79.358497, 37.027679], [-79.358457, 37.028033], [-79.358398, 37.028378], [-79.358301, 37.028779], [-79.358082, 37.029574], [-79.357957, 37.030026], [-79.357813, 37.030609], [-79.357745, 37.03095], [-79.357685, 37.031344], [-79.357656, 37.031612], [-79.357621, 37.032199], [-79.357619, 37.032445], [-79.357631, 37.032766], [-79.357637, 37.032893], [-79.357666, 37.033258], [-79.357711, 37.033639], [-79.357789, 37.034066], [-79.357875, 37.034441], [-79.357922, 37.034622], [-79.358521, 37.036938], [-79.358613, 37.037315], [-79.358687, 37.037658], [-79.358786, 37.038217], [-79.358856, 37.038791], [-79.358911, 37.039356], [-79.358965, 37.0401], [-79.359051, 37.041306], [-79.359073, 37.041825], [-79.359059, 37.042471], [-79.359012, 37.042954], [-79.35899, 37.04313], [-79.358922, 37.043537], [-79.358829, 37.043973], [-79.358773, 37.044171], [-79.358704, 37.044417], [-79.358541, 37.044914], [-79.358352, 37.045429], [-79.357856, 37.04678], [-79.357794, 37.046961], [-79.357564, 37.047556], [-79.357409, 37.047915], [-79.357338, 37.048062], [-79.357278, 37.048184], [-79.356942, 37.048801], [-79.356841, 37.048967], [-79.356589, 37.049349], [-79.356363, 37.049677], [-79.354212, 37.052783], [-79.353972, 37.053148], [-79.353865, 37.053295], [-79.353452, 37.053889], [-79.352197, 37.055711], [-79.352126, 37.055808], [-79.351983, 37.056023], [-79.351596, 37.056539], [-79.351413, 37.056761], [-79.35122, 37.056979], [-79.351018, 37.057191], [-79.35075, 37.057445], [-79.350603, 37.057584], [-79.35029, 37.057856], [-79.348032, 37.059645], [-79.346954, 37.060488], [-79.345892, 37.06133], [-79.345295, 37.061797], [-79.344778, 37.062208], [-79.344716, 37.062258], [-79.343942, 37.062866], [-79.343259, 37.06342], [-79.342925, 37.063722], [-79.342732, 37.063907], [-79.342302, 37.064351], [-79.342055, 37.06463], [-79.341843, 37.064885], [-79.341424, 37.065452], [-79.341048, 37.066036], [-79.340718, 37.066647], [-79.340066, 37.068047], [-79.338982, 37.070343], [-79.336951, 37.074656], [-79.336672, 37.075265], [-79.335622, 37.077497], [-79.335265, 37.078252], [-79.33489, 37.079062], [-79.334833, 37.079182], [-79.334222, 37.080477], [-79.333262, 37.082521], [-79.333001, 37.083079], [-79.332628, 37.084028], [-79.332548, 37.084278], [-79.332388, 37.08478], [-79.332201, 37.085539], [-79.33204, 37.086421], [-79.33196, 37.086978], [-79.331907, 37.087757], [-79.331871, 37.088536], [-79.33185, 37.089317], [-79.331805, 37.090324], [-79.331772, 37.091338], [-79.331768, 37.092235], [-79.33183, 37.093576], [-79.331943, 37.095022], [-79.332045, 37.096198], [-79.332341, 37.099713], [-79.332397, 37.100421], [-79.332436, 37.101086], [-79.332443, 37.1013], [-79.332438, 37.10199], [-79.332418, 37.102426], [-79.332391, 37.102795], [-79.332337, 37.103324], [-79.332244, 37.103966], [-79.332205, 37.104185], [-79.332175, 37.104355], [-79.332056, 37.104907], [-79.332041, 37.104978], [-79.331903, 37.105494], [-79.331733, 37.106053], [-79.331559, 37.106562], [-79.33131, 37.107195], [-79.331178, 37.107501], [-79.330959, 37.107973], [-79.330748, 37.108399], [-79.330489, 37.108876], [-79.330365, 37.109093], [-79.330155, 37.10944], [-79.329757, 37.110058], [-79.328813, 37.111446], [-79.328701, 37.111611], [-79.327118, 37.113932], [-79.327107, 37.113947], [-79.326498, 37.114802], [-79.326178, 37.115223], [-79.326128, 37.115289], [-79.32568, 37.115855], [-79.325061, 37.116595], [-79.324816, 37.116878], [-79.324497, 37.117235], [-79.324161, 37.117601], [-79.323816, 37.117964], [-79.323589, 37.118194], [-79.323104, 37.118678], [-79.322015, 37.119732], [-79.320826, 37.12089], [-79.320279, 37.121415], [-79.31993, 37.121729], [-79.319276, 37.122271], [-79.318828, 37.122609], [-79.318377, 37.122925], [-79.317535, 37.123462], [-79.316595, 37.123987], [-79.315586, 37.124473], [-79.314958, 37.124742], [-79.311931, 37.125973], [-79.303986, 37.129196], [-79.303177, 37.129555], [-79.302367, 37.129915], [-79.30095, 37.130617], [-79.298871, 37.131691], [-79.298008, 37.132146], [-79.293574, 37.134491], [-79.293108, 37.134749], [-79.292712, 37.134937], [-79.292278, 37.135125], [-79.291836, 37.1353], [-79.291351, 37.135473], [-79.290905, 37.135615], [-79.290365, 37.135772], [-79.289641, 37.135941], [-79.289078, 37.136055], [-79.288222, 37.136184], [-79.287781, 37.136228], [-79.287205, 37.136269], [-79.281895, 37.136526], [-79.280512, 37.136607], [-79.279731, 37.13667], [-79.278968, 37.136747], [-79.277922, 37.136872], [-79.276244, 37.13712], [-79.273494, 37.137624], [-79.272005, 37.137904], [-79.271794, 37.137944], [-79.266159, 37.138985], [-79.265643, 37.139056], [-79.265084, 37.139119], [-79.264404, 37.139177], [-79.263826, 37.139213], [-79.263263, 37.139234], [-79.262666, 37.139241], [-79.262103, 37.139234], [-79.26149, 37.139213], [-79.260895, 37.13918], [-79.260488, 37.139149], [-79.257811, 37.138859], [-79.253283, 37.138354], [-79.251817, 37.138189], [-79.251311, 37.138138], [-79.25082, 37.138104], [-79.250344, 37.138087], [-79.249949, 37.138091], [-79.249141, 37.138125], [-79.248701, 37.138169], [-79.248255, 37.138232], [-79.247815, 37.138303], [-79.247404, 37.138388], [-79.246983, 37.138492], [-79.24619, 37.138741], [-79.246034, 37.138799], [-79.245567, 37.138991], [-79.243639, 37.139795], [-79.242121, 37.140435], [-79.241618, 37.140648], [-79.241125, 37.14089], [-79.240755, 37.141103], [-79.240471, 37.141293], [-79.240237, 37.141475], [-79.240023, 37.141661], [-79.239659, 37.142024], [-79.238717, 37.143115], [-79.238653, 37.143189], [-79.238443, 37.143404], [-79.23822, 37.14361], [-79.237972, 37.143817], [-79.237711, 37.144013], [-79.237424, 37.144206], [-79.237139, 37.144378], [-79.236846, 37.144536], [-79.23672, 37.144599], [-79.235366, 37.145185], [-79.235031, 37.145327], [-79.233118, 37.146139], [-79.232943, 37.146214], [-79.23213, 37.146559], [-79.23159, 37.146789], [-79.231268, 37.146943], [-79.230971, 37.147103], [-79.230723, 37.147248], [-79.230589, 37.147333], [-79.230303, 37.147527], [-79.230067, 37.147704], [-79.229831, 37.147902], [-79.229608, 37.148108], [-79.229398, 37.148324], [-79.229192, 37.148559], [-79.229002, 37.148802], [-79.228823, 37.149065], [-79.228683, 37.149299], [-79.228557, 37.149537], [-79.228436, 37.149807], [-79.228332, 37.15008], [-79.22824, 37.150371], [-79.228165, 37.150679], [-79.228144, 37.150787], [-79.22795, 37.1522], [-79.227939, 37.152282], [-79.227922, 37.152405], [-79.227831, 37.1531], [-79.227768, 37.153577], [-79.22775, 37.153704], [-79.227707, 37.153951], [-79.227614, 37.154338], [-79.227519, 37.154642], [-79.227394, 37.154981], [-79.227259, 37.155289], [-79.227113, 37.155579], [-79.227008, 37.155764], [-79.226979, 37.155814], [-79.226931, 37.155892], [-79.22673, 37.156196], [-79.226531, 37.156466], [-79.226359, 37.156679], [-79.226091, 37.156981], [-79.225836, 37.157239], [-79.225577, 37.157477], [-79.225307, 37.157704], [-79.225033, 37.15791], [-79.224838, 37.158043], [-79.223223, 37.159106], [-79.222625, 37.159494], [-79.222577, 37.159525], [-79.222526, 37.159559], [-79.222269, 37.159725], [-79.221758, 37.160065], [-79.219427, 37.161585], [-79.218294, 37.162324], [-79.218211, 37.162378], [-79.216923, 37.163217], [-79.216426, 37.163539], [-79.215909, 37.16389], [-79.215531, 37.164171], [-79.215221, 37.164425], [-79.214936, 37.164678], [-79.214674, 37.164929], [-79.214292, 37.165324], [-79.214244, 37.165374], [-79.213081, 37.166582], [-79.212642, 37.167038], [-79.212368, 37.167324], [-79.212048, 37.167658], [-79.211768, 37.16795], [-79.211486, 37.168245], [-79.211416, 37.168318], [-79.211008, 37.168744], [-79.210963, 37.168791], [-79.210689, 37.16908], [-79.210304, 37.16953], [-79.2101, 37.169782], [-79.209923, 37.170006], [-79.209526, 37.170538], [-79.209343, 37.170798], [-79.207037, 37.174039], [-79.206764, 37.174435], [-79.206634, 37.174641], [-79.206469, 37.174929], [-79.206273, 37.17532], [-79.20615, 37.175603], [-79.206073, 37.175802], [-79.206026, 37.175929], [-79.205916, 37.176273], [-79.205845, 37.176539], [-79.205757, 37.176917], [-79.205696, 37.177164], [-79.205658, 37.177349], [-79.205603, 37.177589], [-79.205562, 37.177759], [-79.205539, 37.177863], [-79.205487, 37.178091], [-79.205427, 37.178344], [-79.205364, 37.178607], [-79.205297, 37.178889], [-79.205253, 37.179068], [-79.20519, 37.179332], [-79.205122, 37.179618], [-79.205055, 37.179895], [-79.204997, 37.180138], [-79.204614, 37.181773], [-79.204588, 37.181883], [-79.204488, 37.182314], [-79.204319, 37.183043], [-79.204265, 37.183268], [-79.204123, 37.18388], [-79.203924, 37.184747], [-79.203855, 37.185167], [-79.203781, 37.185725], [-79.203767, 37.185869], [-79.203714, 37.186727], [-79.203688, 37.188358], [-79.203665, 37.189574], [-79.203624, 37.192626], [-79.203627, 37.192665], [-79.203588, 37.193792], [-79.203572, 37.194229], [-79.203568, 37.194309], [-79.203559, 37.194539], [-79.203553, 37.194676], [-79.203543, 37.194919], [-79.203531, 37.195199], [-79.203502, 37.195859], [-79.203483, 37.196276], [-79.203468, 37.196579], [-79.203458, 37.196792], [-79.203433, 37.197322], [-79.203422, 37.197563], [-79.20341, 37.197824], [-79.203397, 37.198095], [-79.20339, 37.198254], [-79.203379, 37.19847], [-79.203358, 37.198936], [-79.20334, 37.19935], [-79.203304, 37.200071], [-79.203262, 37.200536], [-79.203244, 37.200686], [-79.203162, 37.201241], [-79.203073, 37.201722], [-79.20306, 37.201793], [-79.203026, 37.201977], [-79.202836, 37.203003], [-79.202752, 37.203459], [-79.202563, 37.204478], [-79.202452, 37.205079], [-79.202395, 37.205385], [-79.201856, 37.208299], [-79.201805, 37.208574], [-79.201702, 37.209126], [-79.201673, 37.209268], [-79.201619, 37.209479], [-79.201573, 37.209638], [-79.201505, 37.209836], [-79.201407, 37.210085], [-79.201284, 37.210341], [-79.201114, 37.21064], [-79.201026, 37.210776], [-79.200882, 37.21098], [-79.200649, 37.211282], [-79.200396, 37.211554], [-79.199727, 37.212167], [-79.199637, 37.212249], [-79.199553, 37.212325], [-79.199391, 37.212473], [-79.199159, 37.212684], [-79.19865, 37.213144], [-79.197756, 37.213946], [-79.197588, 37.214097], [-79.197252, 37.214415], [-79.196922, 37.214731], [-79.196487, 37.215166], [-79.196055, 37.215596], [-79.195714, 37.216042], [-79.195395, 37.216449], [-79.194175, 37.218086], [-79.193942, 37.2184], [-79.193714, 37.218705], [-79.193339, 37.219208], [-79.193103, 37.219523], [-79.192804, 37.219924], [-79.192465, 37.220384], [-79.191972, 37.221056], [-79.191665, 37.221486], [-79.191271, 37.222039], [-79.191066, 37.222328], [-79.190837, 37.222648], [-79.190786, 37.222724], [-79.190591, 37.223024], [-79.190561, 37.223069], [-79.190114, 37.223762], [-79.189976, 37.223994], [-79.189786, 37.224314], [-79.189538, 37.224731], [-79.189441, 37.224896], [-79.189231, 37.225287], [-79.188873, 37.225949], [-79.188647, 37.226369], [-79.188578, 37.226497], [-79.188422, 37.22682], [-79.187747, 37.228226], [-79.187638, 37.228454], [-79.186752, 37.230317], [-79.186236, 37.23142], [-79.186183, 37.231531], [-79.186143, 37.231633], [-79.186012, 37.231905], [-79.185971, 37.232009], [-79.185901, 37.232204], [-79.185821, 37.232467], [-79.185783, 37.232629], [-79.185746, 37.232787], [-79.185712, 37.232989], [-79.185564, 37.234115], [-79.18554, 37.234342], [-79.185535, 37.234388], [-79.185527, 37.234464], [-79.185489, 37.234824], [-79.185459, 37.235133], [-79.185442, 37.235447], [-79.185444, 37.235802], [-79.185467, 37.236157], [-79.185494, 37.236478], [-79.185509, 37.236629], [-79.185568, 37.237037], [-79.185613, 37.237268], [-79.185642, 37.237403], [-79.185719, 37.237706], [-79.185791, 37.237965], [-79.185811, 37.238037], [-79.185899, 37.238345], [-79.185952, 37.238527], [-79.18597, 37.23859], [-79.186042, 37.238834], [-79.186525, 37.240494], [-79.186638, 37.240882], [-79.186786, 37.241392], [-79.186995, 37.242108], [-79.187061, 37.242336], [-79.187075, 37.242384], [-79.187298, 37.243149], [-79.187378, 37.243422], [-79.187527, 37.243936], [-79.187774, 37.244774], [-79.187853, 37.245008], [-79.187949, 37.245331], [-79.187975, 37.245426], [-79.18809, 37.245933], [-79.188158, 37.246339], [-79.188193, 37.246639], [-79.188214, 37.246935], [-79.188219, 37.247189], [-79.188219, 37.247284], [-79.188204, 37.247624], [-79.188173, 37.24795], [-79.188121, 37.248287], [-79.188078, 37.248502], [-79.188012, 37.248777], [-79.187964, 37.248948], [-79.18752, 37.250322], [-79.187502, 37.250377], [-79.187461, 37.250489], [-79.187101, 37.251604], [-79.186977, 37.251986], [-79.186803, 37.252487], [-79.186647, 37.252862], [-79.186473, 37.253233], [-79.1864, 37.253375], [-79.186369, 37.253435], [-79.186196, 37.253727], [-79.186096, 37.253883], [-79.185846, 37.254253], [-79.185619, 37.254587], [-79.184816, 37.255765], [-79.184332, 37.256471], [-79.184251, 37.256583], [-79.183919, 37.257073], [-79.183282, 37.258009], [-79.183273, 37.258023], [-79.182658, 37.258928], [-79.182428, 37.259266], [-79.182236, 37.259548], [-79.182189, 37.259617], [-79.181677, 37.260371], [-79.180889, 37.261527], [-79.180329, 37.262346], [-79.179966, 37.262877], [-79.178561, 37.264935], [-79.177834, 37.265998], [-79.17762, 37.266312], [-79.177577, 37.266375], [-79.177344, 37.266717], [-79.177268, 37.266828], [-79.175738, 37.269066], [-79.175293, 37.269718], [-79.175059, 37.270062], [-79.175024, 37.270113], [-79.174746, 37.27052], [-79.174499, 37.270885], [-79.174225, 37.271286], [-79.17318, 37.27282], [-79.172596, 37.273676], [-79.172062, 37.274457], [-79.17205, 37.274476], [-79.171892, 37.274707], [-79.171746, 37.274919], [-79.170612, 37.276581], [-79.170091, 37.277344], [-79.170074, 37.277368], [-79.169014, 37.27887], [-79.168768, 37.279279], [-79.168446, 37.279751], [-79.168095, 37.28026], [-79.167791, 37.280704], [-79.167004, 37.281854], [-79.166839, 37.282126], [-79.166686, 37.282417], [-79.166553, 37.282715], [-79.166455, 37.282978], [-79.166365, 37.283271], [-79.166331, 37.283406], [-79.166277, 37.283662], [-79.166236, 37.283934], [-79.166211, 37.284233], [-79.166208, 37.284331], [-79.16621, 37.284606], [-79.166232, 37.284894], [-79.166273, 37.28518], [-79.166341, 37.285491], [-79.166394, 37.28568], [-79.166419, 37.28576], [-79.16653, 37.286061], [-79.16656, 37.286133], [-79.166601, 37.286228], [-79.167073, 37.287187], [-79.167342, 37.287727], [-79.167647, 37.288335], [-79.167961, 37.288961], [-79.168213, 37.289466], [-79.168669, 37.290363], [-79.169252, 37.291516], [-79.169707, 37.292425], [-79.170019, 37.293049], [-79.170164, 37.293337], [-79.170762, 37.294525], [-79.171017, 37.295032], [-79.171197, 37.29539], [-79.171228, 37.295451], [-79.171707, 37.296402], [-79.171854, 37.296694], [-79.172057, 37.297099], [-79.172329, 37.297639], [-79.172756, 37.298485], [-79.172921, 37.29877], [-79.173118, 37.299071], [-79.173326, 37.299351], [-79.1734, 37.299443], [-79.173711, 37.299824], [-79.174643, 37.300928], [-79.177789, 37.304649], [-79.17841, 37.305383], [-79.179563, 37.306751], [-79.18128, 37.308787], [-79.181492, 37.309036], [-79.181949, 37.309573], [-79.182599, 37.310336], [-79.183198, 37.311046], [-79.183775, 37.311729], [-79.183964, 37.311947], [-79.18428, 37.312314], [-79.18536, 37.313557], [-79.18553, 37.313753], [-79.18588, 37.314159], [-79.186286, 37.314624], [-79.186592, 37.314975], [-79.186893, 37.31532], [-79.187155, 37.315623], [-79.187287, 37.315796], [-79.187433, 37.315958], [-79.187603, 37.316193], [-79.187705, 37.316348], [-79.187781, 37.316469], [-79.187895, 37.316666], [-79.188063, 37.316995], [-79.188211, 37.31734], [-79.188267, 37.317488], [-79.188574, 37.31828], [-79.18873, 37.318682], [-79.188773, 37.318793], [-79.188818, 37.318907], [-79.188983, 37.319332], [-79.189167, 37.319817], [-79.18919, 37.319881], [-79.189276, 37.320122], [-79.189293, 37.320183], [-79.189372, 37.320484], [-79.189407, 37.320635], [-79.189445, 37.320825], [-79.189477, 37.321015], [-79.189492, 37.321115], [-79.189533, 37.321458], [-79.189536, 37.321492], [-79.189586, 37.322119], [-79.189602, 37.322319], [-79.189637, 37.32275], [-79.189647, 37.322876], [-79.189704, 37.323523], [-79.189737, 37.323892], [-79.189747, 37.323997], [-79.189761, 37.324147], [-79.189781, 37.324375], [-79.189798, 37.324545], [-79.189823, 37.324722], [-79.189861, 37.324935], [-79.189896, 37.325095], [-79.189922, 37.3252], [-79.190034, 37.325593], [-79.190115, 37.325884], [-79.190279, 37.326471], [-79.190558, 37.327468], [-79.190626, 37.327737], [-79.190656, 37.327855], [-79.190719, 37.328102], [-79.190893, 37.328783], [-79.19093, 37.328914], [-79.19114, 37.329665], [-79.191197, 37.329849], [-79.191289, 37.330174], [-79.191411, 37.330604], [-79.191427, 37.330662], [-79.191549, 37.331144], [-79.191612, 37.331407], [-79.191674, 37.33166], [-79.191713, 37.331945], [-79.191731, 37.332216], [-79.191727, 37.3324], [-79.191718, 37.332618], [-79.191688, 37.333114], [-79.191671, 37.333265], [-79.191652, 37.333506], [-79.191625, 37.33369], [-79.191591, 37.333978], [-79.191586, 37.334109], [-79.191605, 37.334336], [-79.19161, 37.334672], [-79.191612, 37.334771], [-79.191619, 37.335165], [-79.191615, 37.335425], [-79.191612, 37.335464], [-79.191591, 37.335798], [-79.191573, 37.33597], [-79.19153, 37.336198], [-79.191511, 37.3363], [-79.191476, 37.336481], [-79.191396, 37.336901], [-79.191254, 37.33724], [-79.191108, 37.337564], [-79.190891, 37.337852], [-79.190707, 37.338004], [-79.190446, 37.338136], [-79.190159, 37.338232], [-79.189809, 37.338303], [-79.189504, 37.338343], [-79.189039, 37.338414], [-79.188663, 37.33847], [-79.188351, 37.338526], [-79.18802, 37.338571], [-79.18767, 37.338617], [-79.187276, 37.338677], [-79.18683, 37.338758], [-79.186448, 37.338854], [-79.186232, 37.338986], [-79.186034, 37.339158], [-79.185913, 37.339381], [-79.185862, 37.339654], [-79.185792, 37.339958], [-79.185735, 37.340246], [-79.185608, 37.340565], [-79.185474, 37.340849], [-79.185264, 37.341152], [-79.185009, 37.341421], [-79.184748, 37.341658], [-79.184399, 37.341989], [-79.184093, 37.342254], [-79.183658, 37.342682], [-79.18294, 37.343536], [-79.182113, 37.344505], [-79.181077, 37.345699], [-79.180004, 37.346871], [-79.178729, 37.348196], [-79.177389, 37.349407], [-79.177129, 37.349621], [-79.176626, 37.350036], [-79.173129, 37.353092], [-79.169752, 37.356318], [-79.169186, 37.356859], [-79.166439, 37.359647], [-79.165165, 37.360856], [-79.164528, 37.361444], [-79.163946, 37.361878], [-79.162943, 37.362614], [-79.161891, 37.363349], [-79.159885, 37.364693], [-79.158866, 37.365389], [-79.157915, 37.36609], [-79.156262, 37.367299], [-79.153378, 37.36939], [-79.1513, 37.370777], [-79.148798, 37.372337], [-79.146813, 37.373529], [-79.146135, 37.37394], [-79.145298, 37.374385], [-79.144399, 37.374808], [-79.143032, 37.375351], [-79.142887, 37.375396], [-79.141407, 37.375861], [-79.13952, 37.376309], [-79.137442, 37.376753], [-79.136385, 37.376976], [-79.135221, 37.37722], [-79.134065, 37.377456], [-79.132756, 37.377733], [-79.131505, 37.377997], [-79.130701, 37.378165], [-79.129655, 37.378385], [-79.128812, 37.378561], [-79.127809, 37.378776], [-79.127166, 37.378891], [-79.124907, 37.379433], [-79.122351, 37.380007], [-79.119924, 37.380555], [-79.118369, 37.380958], [-79.116892, 37.381492], [-79.11429, 37.382508], [-79.111589, 37.383564], [-79.110432, 37.384015], [-79.108723, 37.384663], [-79.107004, 37.385341], [-79.10533, 37.38597], [-79.10529, 37.385969], [-79.104874, 37.386095], [-79.104406, 37.386191], [-79.103958, 37.38624], [-79.103328, 37.386271], [-79.101681, 37.386155], [-79.101144, 37.386117], [-79.100418, 37.386038], [-79.097991, 37.385843], [-79.09636, 37.385744], [-79.095982, 37.385658], [-79.095845, 37.385614], [-79.09571, 37.385555], [-79.095567, 37.38548], [-79.095427, 37.38539], [-79.095308, 37.385296], [-79.09517, 37.385161], [-79.09509, 37.385054], [-79.094998, 37.384905], [-79.094916, 37.384737], [-79.094844, 37.384528], [-79.094656, 37.383845], [-79.094531, 37.38345], [-79.094325, 37.383054], [-79.094038, 37.38276], [-79.093621, 37.382467], [-79.093187, 37.382294], [-79.092689, 37.382201], [-79.092284, 37.382201], [-79.091903, 37.382257], [-79.091551, 37.382364], [-79.091187, 37.382541], [-79.090959, 37.382723], [-79.090789, 37.382882], [-79.090589, 37.383115], [-79.090443, 37.383376], [-79.090284, 37.383744], [-79.090225, 37.384], [-79.090179, 37.384541], [-79.090062, 37.385779], [-79.089925, 37.386644], [-79.089849, 37.387226], [-79.089779, 37.387541], [-79.089689, 37.387836], [-79.0895, 37.38838], [-79.089436, 37.388633], [-79.089405, 37.388841], [-79.089289, 37.389685], [-79.089161, 37.39093], [-79.089008, 37.392008], [-79.08881, 37.394069], [-79.088768, 37.394579], [-79.088645, 37.395885], [-79.088477, 37.397207], [-79.087956, 37.401181], [-79.087825, 37.401823], [-79.087665, 37.402308], [-79.087554, 37.402629], [-79.08736, 37.403142], [-79.087142, 37.403562], [-79.086923, 37.403937], [-79.086762, 37.404195], [-79.086439, 37.404708], [-79.086251, 37.405002], [-79.085982, 37.405393], [-79.085647, 37.405896], [-79.085037, 37.406824], [-79.084691, 37.407346], [-79.084239, 37.407998], [-79.084081, 37.408208], [-79.083969, 37.408376], [-79.083852, 37.408534], [-79.083752, 37.408705], [-79.083641, 37.408893], [-79.08253, 37.41059], [-79.082107, 37.41155], [-79.081937, 37.412163], [-79.081833, 37.412538], [-79.081757, 37.413176], [-79.08171, 37.413903], [-79.081751, 37.414774], [-79.081781, 37.415758], [-79.081777, 37.417393], [-79.081646, 37.41901], [-79.081485, 37.420256], [-79.081292, 37.421219], [-79.081057, 37.422257], [-79.080513, 37.424117], [-79.07951, 37.427155], [-79.078061, 37.431195], [-79.077269, 37.433524], [-79.076993, 37.434391], [-79.076647, 37.435495], [-79.076395, 37.436608], [-79.076304, 37.437254], [-79.076229, 37.438019], [-79.076213, 37.439312], [-79.076213, 37.439413], [-79.076155, 37.442774], [-79.07614, 37.443179], [-79.076116, 37.443841], [-79.076046, 37.446058], [-79.075976, 37.449173], [-79.076002, 37.451689], [-79.076065, 37.4523], [-79.076262, 37.453], [-79.076579, 37.453683], [-79.076982, 37.454312], [-79.077536, 37.45501], [-79.079739, 37.457229], [-79.080689, 37.458217], [-79.081531, 37.459252], [-79.082085, 37.460038], [-79.082441, 37.460738], [-79.082708, 37.461304], [-79.082968, 37.461981], [-79.083137, 37.462694], [-79.083265, 37.463513], [-79.083293, 37.464338], [-79.083287, 37.464745], [-79.083277, 37.465166], [-79.083236, 37.465743], [-79.083136, 37.466259], [-79.082678, 37.468029], [-79.082438, 37.469156], [-79.08215, 37.470371], [-79.081963, 37.471033], [-79.081827, 37.471415], [-79.081408, 37.472342], [-79.081005, 37.47309], [-79.080296, 37.474045], [-79.079641, 37.474751], [-79.078249, 37.476094], [-79.077451, 37.477058], [-79.076776, 37.477863], [-79.076213, 37.478711], [-79.075638, 37.479763], [-79.075274, 37.480624], [-79.074869, 37.481821], [-79.074675, 37.482594], [-79.074634, 37.482892], [-79.074593, 37.483204], [-79.07457, 37.483627], [-79.074448, 37.484732], [-79.074331, 37.485753], [-79.074167, 37.486518], [-79.073888, 37.487326], [-79.073467, 37.488074], [-79.07305, 37.488846], [-79.072616, 37.489619], [-79.072018, 37.490699], [-79.07163, 37.49136], [-79.070791, 37.492896], [-79.070146, 37.494186], [-79.06953, 37.495438], [-79.068703, 37.497026], [-79.067817, 37.498799], [-79.067177, 37.500098], [-79.066497, 37.501471], [-79.066168, 37.502341], [-79.065974, 37.503063], [-79.065895, 37.503746], [-79.065857, 37.504329], [-79.065851, 37.505804], [-79.065851, 37.506847], [-79.065828, 37.508187], [-79.065831, 37.509824], [-79.0658, 37.510657], [-79.065769, 37.511273], [-79.065628, 37.51191], [-79.065455, 37.512506], [-79.065165, 37.513111], [-79.064807, 37.513823], [-79.064426, 37.514512], [-79.063986, 37.515424], [-79.063804, 37.515903], [-79.063545, 37.516788], [-79.063328, 37.51796], [-79.063264, 37.519296], [-79.063311, 37.520208], [-79.063487, 37.521209], [-79.063645, 37.522214], [-79.063845, 37.523275], [-79.06425, 37.525364], [-79.064871, 37.528602], [-79.065376, 37.531264], [-79.066057, 37.534819], [-79.066725, 37.538252], [-79.0674, 37.541904], [-79.06794, 37.544546], [-79.068021, 37.545221], [-79.068093, 37.545891], [-79.068075, 37.546616], [-79.067977, 37.547323], [-79.067805, 37.547989], [-79.06729, 37.549617], [-79.066508, 37.552189], [-79.066203, 37.55312], [-79.065916, 37.554199], [-79.06571, 37.554864], [-79.065358, 37.555901], [-79.06462, 37.558162], [-79.064236, 37.559374], [-79.064086, 37.559848], [-79.063835, 37.560896], [-79.063609, 37.561383], [-79.063256, 37.561986], [-79.062896, 37.562503], [-79.062134, 37.563345], [-79.061625, 37.563753], [-79.06094, 37.564213], [-79.058641, 37.565583], [-79.05758, 37.566208], [-79.056639, 37.566768], [-79.055935, 37.567192], [-79.055742, 37.567302], [-79.055553, 37.567416], [-79.055246, 37.567615], [-79.054927, 37.567838], [-79.054748, 37.567977], [-79.054525, 37.568169], [-79.05429, 37.568391], [-79.054239, 37.568442], [-79.054034, 37.568657], [-79.053873, 37.56885], [-79.053657, 37.569143], [-79.053524, 37.569347], [-79.053368, 37.569618], [-79.053228, 37.569894], [-79.053172, 37.570026], [-79.053043, 37.570358], [-79.05286, 37.57095], [-79.052677, 37.571527], [-79.052485, 37.572133], [-79.052132, 37.573261], [-79.051632, 37.57486], [-79.051348, 37.57574], [-79.051123, 37.576286], [-79.051087, 37.576361], [-79.050788, 37.576916], [-79.050662, 37.577116], [-79.050472, 37.577395], [-79.050278, 37.577652], [-79.050057, 37.577924], [-79.049759, 37.578262], [-79.049412, 37.578608], [-79.049047, 37.578931], [-79.047001, 37.580602], [-79.046515, 37.580994], [-79.046166, 37.58126], [-79.045909, 37.581455], [-79.04561, 37.58167], [-79.045264, 37.581887], [-79.044961, 37.582077], [-79.044149, 37.582573], [-79.04353, 37.582927], [-79.04291, 37.58327], [-79.042129, 37.58371], [-79.041873, 37.583864], [-79.041806, 37.58391], [-79.041621, 37.584017], [-79.041414, 37.584155], [-79.041178, 37.58431], [-79.040635, 37.584689], [-79.039894, 37.585255], [-79.039608, 37.585491], [-79.03912, 37.585904], [-79.038845, 37.586155], [-79.038474, 37.586513], [-79.03781, 37.587198], [-79.037358, 37.587719], [-79.037086, 37.588056], [-79.036877, 37.588331], [-79.036498, 37.588836], [-79.036258, 37.589205], [-79.035926, 37.589739], [-79.034645, 37.591992], [-79.034482, 37.592286], [-79.034097, 37.592957], [-79.033913, 37.593255], [-79.033669, 37.593669], [-79.033006, 37.594819], [-79.032654, 37.595452], [-79.032044, 37.596522], [-79.031678, 37.597159], [-79.031353, 37.597735], [-79.03004, 37.600074], [-79.029644, 37.600763], [-79.028963, 37.601951], [-79.028685, 37.602397], [-79.02851, 37.602662], [-79.028221, 37.603043], [-79.027978, 37.603341], [-79.027692, 37.60368], [-79.027548, 37.60383], [-79.027306, 37.604072], [-79.027105, 37.604269], [-79.02697, 37.604392], [-79.026652, 37.60468], [-79.026083, 37.605207], [-79.026036, 37.60525], [-79.025989, 37.605294], [-79.025872, 37.605402], [-79.02555, 37.605685], [-79.025303, 37.605893], [-79.025239, 37.605951], [-79.025075, 37.606102], [-79.024795, 37.606358], [-79.024408, 37.606702], [-79.024072, 37.607013], [-79.024053, 37.607031], [-79.023787, 37.607264], [-79.023498, 37.607516], [-79.023027, 37.607911], [-79.022811, 37.60807], [-79.022583, 37.608218], [-79.022393, 37.608329], [-79.022103, 37.608478], [-79.021864, 37.608585], [-79.021424, 37.608752], [-79.020855, 37.608965], [-79.020271, 37.609195], [-79.020171, 37.609236], [-79.019921, 37.609348], [-79.019569, 37.609526], [-79.019341, 37.609661], [-79.019134, 37.609801], [-79.018938, 37.609951], [-79.018736, 37.61013], [-79.018557, 37.610318], [-79.018408, 37.6105], [-79.018273, 37.610689], [-79.018177, 37.610845], [-79.018077, 37.611005], [-79.017942, 37.61127], [-79.01775, 37.611733], [-79.017583, 37.612195], [-79.017453, 37.612536], [-79.01736, 37.612779], [-79.017077, 37.613518], [-79.016316, 37.615651], [-79.016211, 37.615921], [-79.015957, 37.616661], [-79.015442, 37.618041], [-79.015171, 37.618767], [-79.015044, 37.619085], [-79.014896, 37.619401], [-79.014725, 37.619699], [-79.014609, 37.619891], [-79.014507, 37.620046], [-79.014326, 37.620291], [-79.014076, 37.620611], [-79.013882, 37.620808], [-79.013583, 37.621079], [-79.012998, 37.621504], [-79.01238, 37.621893], [-79.010646, 37.622959], [-79.01003, 37.623323], [-79.009112, 37.623886], [-79.007841, 37.62468], [-79.007669, 37.624786], [-79.00613, 37.625753], [-79.00574, 37.625992], [-79.004933, 37.626484], [-79.004251, 37.626912], [-79.004139, 37.626981], [-79.003154, 37.627592], [-79.001641, 37.628516], [-79.001111, 37.628835], [-79.00072, 37.62907], [-79.000623, 37.62914], [-79.000217, 37.629394], [-78.998912, 37.630202], [-78.998196, 37.630645], [-78.997598, 37.631025], [-78.997526, 37.631071], [-78.997241, 37.631274], [-78.996875, 37.631534], [-78.996217, 37.63205], [-78.995656, 37.632525], [-78.995017, 37.633129], [-78.994464, 37.633668], [-78.993794, 37.634338], [-78.992582, 37.635539], [-78.99241, 37.635715], [-78.992112, 37.636], [-78.991971, 37.636127], [-78.991598, 37.636454], [-78.991319, 37.636676], [-78.991111, 37.636827], [-78.990724, 37.637089], [-78.990344, 37.637324], [-78.989967, 37.637537], [-78.989578, 37.637737], [-78.988855, 37.638052], [-78.98807, 37.638382], [-78.986736, 37.63892], [-78.986454, 37.639034], [-78.985803, 37.639316], [-78.984897, 37.639687], [-78.98388, 37.640096], [-78.983117, 37.640414], [-78.982726, 37.640573], [-78.981774, 37.640959], [-78.979687, 37.64182], [-78.978231, 37.642417], [-78.977005, 37.64291], [-78.97646, 37.643116], [-78.975777, 37.643333], [-78.975711, 37.643354], [-78.97542, 37.643425], [-78.974834, 37.643551], [-78.974604, 37.64359], [-78.974067, 37.643681], [-78.973393, 37.643752], [-78.972559, 37.643813], [-78.972242, 37.643839], [-78.970006, 37.64399], [-78.96903, 37.64406], [-78.968589, 37.644095], [-78.968224, 37.644136], [-78.967889, 37.644182], [-78.967664, 37.644226], [-78.967387, 37.644293], [-78.967224, 37.644341], [-78.966957, 37.64443], [-78.966688, 37.644536], [-78.966474, 37.644631], [-78.966164, 37.644789], [-78.965983, 37.644902], [-78.965692, 37.645098], [-78.965428, 37.645294], [-78.965238, 37.645456], [-78.965063, 37.645628], [-78.964898, 37.645816], [-78.964762, 37.645992], [-78.964605, 37.646219], [-78.964465, 37.646453], [-78.964354, 37.646672], [-78.96426, 37.646896], [-78.964184, 37.647124], [-78.964105, 37.647472], [-78.964045, 37.647822], [-78.963795, 37.650137], [-78.963771, 37.650446], [-78.963726, 37.650831], [-78.963699, 37.651104], [-78.963637, 37.651545], [-78.963559, 37.651968], [-78.963475, 37.652244], [-78.963403, 37.652439], [-78.963343, 37.65259], [-78.963259, 37.652771], [-78.963211, 37.652855], [-78.963159, 37.652948], [-78.963044, 37.653119], [-78.962876, 37.65334], [-78.962692, 37.653554], [-78.961989, 37.654258], [-78.961507, 37.654728], [-78.961039, 37.655181], [-78.960337, 37.655875], [-78.96023, 37.655972], [-78.960126, 37.656071], [-78.959777, 37.656385], [-78.959596, 37.656559], [-78.959428, 37.656733], [-78.95894, 37.657212], [-78.958347, 37.65781], [-78.957955, 37.658265], [-78.957902, 37.65834], [-78.957703, 37.658582], [-78.956957, 37.659613], [-78.956, 37.660952], [-78.95555, 37.661601], [-78.95521, 37.662149], [-78.955078, 37.662367], [-78.954742, 37.662988], [-78.954584, 37.663297], [-78.954305, 37.663917], [-78.954148, 37.6643], [-78.953981, 37.664751], [-78.953842, 37.665162], [-78.953791, 37.665348], [-78.953693, 37.665702], [-78.953658, 37.665836], [-78.953519, 37.666441], [-78.953449, 37.666806], [-78.953407, 37.667104], [-78.953324, 37.667763], [-78.953292, 37.668183], [-78.953221, 37.669156], [-78.953153, 37.670098], [-78.953142, 37.670264], [-78.953141, 37.6704], [-78.953072, 37.671177], [-78.95304, 37.671615], [-78.952995, 37.672174], [-78.952947, 37.672942], [-78.95292, 37.673225], [-78.952878, 37.673819], [-78.952829, 37.674339], [-78.952797, 37.674686], [-78.952784, 37.674804], [-78.952747, 37.675024], [-78.952692, 37.675301], [-78.952624, 37.675578], [-78.952561, 37.675784], [-78.952486, 37.675985], [-78.952442, 37.676122], [-78.952386, 37.676257], [-78.95232, 37.676433], [-78.952115, 37.676852], [-78.952045, 37.676981], [-78.951895, 37.677259], [-78.951765, 37.677478], [-78.951015, 37.678688], [-78.950642, 37.679294], [-78.950106, 37.680167], [-78.949932, 37.680439], [-78.949555, 37.681057], [-78.948514, 37.682749], [-78.948346, 37.683014], [-78.94819, 37.68327], [-78.947933, 37.683687], [-78.947735, 37.683997], [-78.946949, 37.685284], [-78.946763, 37.685577], [-78.946171, 37.686544], [-78.946077, 37.686718], [-78.945972, 37.686928], [-78.945848, 37.687201], [-78.945794, 37.687349], [-78.945689, 37.687661], [-78.945632, 37.687901], [-78.945568, 37.688266], [-78.945541, 37.688542], [-78.945537, 37.688659], [-78.945545, 37.689126], [-78.945579, 37.689434], [-78.945664, 37.689907], [-78.945683, 37.68999], [-78.945776, 37.690456], [-78.945835, 37.69071], [-78.945961, 37.691323], [-78.946182, 37.69241], [-78.946237, 37.692788], [-78.946274, 37.693085], [-78.946296, 37.693491], [-78.946303, 37.694022], [-78.946301, 37.694057], [-78.946287, 37.694387], [-78.946261, 37.694709], [-78.946249, 37.694805], [-78.946182, 37.695293], [-78.946055, 37.695876], [-78.945864, 37.696567], [-78.945405, 37.698162], [-78.945298, 37.698548], [-78.944826, 37.700186], [-78.944719, 37.700501], [-78.94458, 37.700835], [-78.944457, 37.701074], [-78.944324, 37.701307], [-78.944135, 37.701595], [-78.944026, 37.701738], [-78.943778, 37.70202], [-78.943504, 37.702305], [-78.943214, 37.702564], [-78.94302, 37.702719], [-78.942935, 37.702779], [-78.942809, 37.702868], [-78.942485, 37.703077], [-78.942218, 37.703232], [-78.9405, 37.704132], [-78.940455, 37.704155], [-78.940006, 37.704381], [-78.938227, 37.705302], [-78.93698, 37.705948], [-78.93647, 37.706225], [-78.93488, 37.707122], [-78.934646, 37.707256], [-78.93388, 37.707679], [-78.933448, 37.707924], [-78.932774, 37.708305], [-78.931107, 37.709235], [-78.929365, 37.710215], [-78.928987, 37.710423], [-78.928188, 37.710873], [-78.927848, 37.711058], [-78.927739, 37.711117], [-78.927286, 37.71134], [-78.927035, 37.711449], [-78.926705, 37.711572], [-78.926357, 37.711684], [-78.926015, 37.711773], [-78.925764, 37.711831], [-78.925742, 37.711836], [-78.925395, 37.711899], [-78.925098, 37.711943], [-78.92463, 37.712006], [-78.924358, 37.71204], [-78.9241, 37.712072], [-78.923317, 37.712168], [-78.922673, 37.712257], [-78.921644, 37.712386], [-78.920771, 37.712503], [-78.91879, 37.712755], [-78.917763, 37.712894], [-78.916758, 37.713029], [-78.916316, 37.713107], [-78.915891, 37.713204], [-78.915614, 37.71328], [-78.915324, 37.713372], [-78.915274, 37.713388], [-78.914912, 37.71352], [-78.91455, 37.71367], [-78.914179, 37.713842], [-78.913675, 37.714085], [-78.912967, 37.714415], [-78.910226, 37.715714], [-78.90939, 37.716116], [-78.908844, 37.716378], [-78.908565, 37.716525], [-78.908344, 37.716654], [-78.908223, 37.716733], [-78.907898, 37.716972], [-78.907709, 37.71712], [-78.907284, 37.717479], [-78.905705, 37.718784], [-78.905314, 37.719084], [-78.90491, 37.719372], [-78.904525, 37.719604], [-78.904033, 37.719882], [-78.903337, 37.720265], [-78.902528, 37.720722], [-78.902455, 37.720766], [-78.902055, 37.720998], [-78.901704, 37.721237], [-78.901372, 37.721492], [-78.901207, 37.721632], [-78.901102, 37.721732], [-78.90093, 37.721897], [-78.900791, 37.722043], [-78.900736, 37.722103], [-78.900601, 37.722261], [-78.900394, 37.722523], [-78.900222, 37.722764], [-78.900079, 37.722992], [-78.900004, 37.723131], [-78.899716, 37.723665], [-78.899467, 37.724145], [-78.899406, 37.724274], [-78.89922, 37.72461], [-78.899008, 37.725016], [-78.898838, 37.725322], [-78.898749, 37.725462], [-78.898619, 37.725684], [-78.898501, 37.725886], [-78.898424, 37.726009], [-78.898396, 37.726054], [-78.89823, 37.726333], [-78.897785, 37.72702], [-78.897326, 37.727687], [-78.897029, 37.728104], [-78.896755, 37.72847], [-78.896087, 37.729327], [-78.895376, 37.730223], [-78.89492, 37.73078], [-78.894224, 37.731648], [-78.893951, 37.731982], [-78.893208, 37.732922], [-78.893101, 37.733073], [-78.892951, 37.733284], [-78.892829, 37.733486], [-78.892725, 37.733694], [-78.892653, 37.733852], [-78.892395, 37.734583], [-78.892264, 37.735006], [-78.891874, 37.73617], [-78.891809, 37.736394], [-78.891615, 37.736972], [-78.891508, 37.737307], [-78.891316, 37.737819], [-78.891154, 37.738191], [-78.891075, 37.738356], [-78.891011, 37.738485], [-78.890701, 37.739024], [-78.890539, 37.739262], [-78.890353, 37.739521], [-78.890119, 37.739847], [-78.889796, 37.740253], [-78.889491, 37.740645], [-78.889217, 37.740996], [-78.888944, 37.74133], [-78.888623, 37.741743], [-78.888513, 37.741886], [-78.888267, 37.742188], [-78.887876, 37.742653], [-78.887675, 37.74287], [-78.887504, 37.743037], [-78.887277, 37.743237], [-78.887216, 37.743287], [-78.887135, 37.743353], [-78.886534, 37.743824], [-78.886162, 37.744125], [-78.8861, 37.744182], [-78.885899, 37.744355], [-78.885622, 37.744575], [-78.885356, 37.74478], [-78.884605, 37.745388], [-78.884042, 37.74585], [-78.882882, 37.746752], [-78.882051, 37.747417], [-78.880834, 37.748391], [-78.88003, 37.749038], [-78.879751, 37.749271], [-78.879568, 37.74942], [-78.879376, 37.749569], [-78.878419, 37.750353], [-78.877854, 37.750804], [-78.877584, 37.751037], [-78.877286, 37.751315], [-78.877004, 37.751598], [-78.876844, 37.751774], [-78.876626, 37.752042], [-78.876378, 37.752385], [-78.876192, 37.752665], [-78.876061, 37.752882], [-78.875814, 37.753345], [-78.875209, 37.754691], [-78.874619, 37.756931], [-78.874501, 37.757307], [-78.874339, 37.757855], [-78.873994, 37.758979], [-78.873789, 37.759637], [-78.873696, 37.75991], [-78.873541, 37.760318], [-78.873332, 37.760834], [-78.873094, 37.761337], [-78.872847, 37.761808], [-78.872451, 37.762468], [-78.872257, 37.76277], [-78.871993, 37.763172], [-78.871574, 37.763799], [-78.871327, 37.764167], [-78.871012, 37.764642], [-78.870469, 37.765468], [-78.870316, 37.765702], [-78.870042, 37.766126], [-78.869873, 37.766412], [-78.869781, 37.766589], [-78.869687, 37.766814], [-78.869585, 37.76708], [-78.869516, 37.767314], [-78.869424, 37.767698], [-78.869391, 37.767942], [-78.86938, 37.768238], [-78.869389, 37.768459], [-78.869415, 37.768673], [-78.869485, 37.768991], [-78.869567, 37.769255], [-78.86966, 37.769515], [-78.869743, 37.769714], [-78.869793, 37.769822], [-78.870127, 37.770634], [-78.870244, 37.770938], [-78.870299, 37.771157], [-78.870337, 37.771378], [-78.870379, 37.771605], [-78.870392, 37.771879], [-78.870378, 37.772127], [-78.870337, 37.772397], [-78.870272, 37.77267], [-78.870248, 37.772764], [-78.87004, 37.773562], [-78.869728, 37.774718], [-78.869574, 37.775264], [-78.869411, 37.775864], [-78.869234, 37.776522], [-78.869061, 37.777151], [-78.868889, 37.777735], [-78.868643, 37.778648], [-78.868399, 37.779571], [-78.868224, 37.780198], [-78.868067, 37.780782], [-78.867497, 37.782893], [-78.867434, 37.783141], [-78.867364, 37.783414], [-78.867185, 37.784047], [-78.867156, 37.784152], [-78.867042, 37.784562], [-78.866921, 37.785054], [-78.866779, 37.785508], [-78.866518, 37.786333], [-78.866458, 37.786501], [-78.866348, 37.786832], [-78.866066, 37.787709], [-78.865703, 37.788816], [-78.865457, 37.789659], [-78.865164, 37.790592], [-78.864927, 37.791345], [-78.864619, 37.792175], [-78.864507, 37.792484], [-78.864363, 37.792792], [-78.864228, 37.793041], [-78.864067, 37.7933], [-78.863882, 37.793548], [-78.863684, 37.793797], [-78.863319, 37.794211], [-78.863117, 37.794344], [-78.86295, 37.794541], [-78.862701, 37.794857], [-78.86248, 37.795184], [-78.862275, 37.795518], [-78.862199, 37.795651], [-78.862007, 37.796159], [-78.861989, 37.79622], [-78.861909, 37.796548], [-78.861883, 37.796687], [-78.861846, 37.796942], [-78.861828, 37.797235], [-78.861827, 37.797529], [-78.861837, 37.797754], [-78.861844, 37.797901], [-78.861878, 37.798631], [-78.861919, 37.799738], [-78.861971, 37.800826], [-78.862007, 37.801869], [-78.862081, 37.803303], [-78.862104, 37.80423], [-78.86209, 37.804437], [-78.862063, 37.804642], [-78.862038, 37.804754], [-78.862023, 37.804816], [-78.861947, 37.805046], [-78.861861, 37.805246], [-78.861771, 37.805437], [-78.86165, 37.805634], [-78.861512, 37.805817], [-78.861343, 37.806004], [-78.860353, 37.806994], [-78.859848, 37.807481], [-78.858512, 37.808821], [-78.858367, 37.808958], [-78.858079, 37.809211], [-78.857729, 37.809505], [-78.857293, 37.80986], [-78.856987, 37.81009], [-78.856658, 37.810338], [-78.855693, 37.81105], [-78.85561, 37.811115], [-78.855262, 37.811371], [-78.854965, 37.811605], [-78.853694, 37.812587], [-78.853389, 37.812818], [-78.852362, 37.813637], [-78.851981, 37.813912], [-78.851517, 37.814266], [-78.851057, 37.81462], [-78.85085, 37.814768], [-78.850729, 37.814859], [-78.850652, 37.81492], [-78.850085, 37.815369], [-78.848637, 37.81648], [-78.846503, 37.818117], [-78.846263, 37.818303], [-78.845641, 37.818784], [-78.845198, 37.81912], [-78.844287, 37.819835], [-78.843809, 37.820229], [-78.841255, 37.822413], [-78.840635, 37.822925], [-78.840114, 37.823377], [-78.839772, 37.823685], [-78.839408, 37.824047], [-78.839049, 37.824425], [-78.838766, 37.824737], [-78.838386, 37.825182], [-78.838147, 37.825481], [-78.837849, 37.82588], [-78.837407, 37.826506], [-78.837204, 37.826823], [-78.837053, 37.827081], [-78.836731, 37.827595], [-78.836452, 37.828104], [-78.836275, 37.828399], [-78.836111, 37.828667], [-78.835849, 37.82912], [-78.835504, 37.829691], [-78.835352, 37.829945], [-78.83498, 37.830568], [-78.834935, 37.830642], [-78.834826, 37.830821], [-78.834646, 37.831137], [-78.834377, 37.831577], [-78.833853, 37.832462], [-78.833724, 37.832692], [-78.833217, 37.833546], [-78.831919, 37.835713], [-78.831568, 37.836263], [-78.831293, 37.836637], [-78.831013, 37.836981], [-78.83077, 37.837252], [-78.829687, 37.838434], [-78.829526, 37.8386], [-78.829353, 37.838766], [-78.828845, 37.839208], [-78.828553, 37.839442], [-78.828248, 37.839665], [-78.827736, 37.840071], [-78.82744, 37.840316], [-78.827359, 37.840393], [-78.827219, 37.840526], [-78.827033, 37.840723], [-78.82681, 37.840985], [-78.826636, 37.841213], [-78.826324, 37.841668], [-78.825848, 37.842321], [-78.825635, 37.842569], [-78.825481, 37.842727], [-78.825276, 37.842917], [-78.825211, 37.842971], [-78.825103, 37.843062], [-78.824902, 37.843225], [-78.824735, 37.84334], [-78.824467, 37.843502], [-78.824206, 37.843652], [-78.82312, 37.844198], [-78.822611, 37.844456], [-78.821878, 37.84482], [-78.820981, 37.845244], [-78.82067, 37.845389], [-78.820264, 37.845536], [-78.820038, 37.845598], [-78.819873, 37.845635], [-78.81967, 37.845683], [-78.819501, 37.845707], [-78.819221, 37.845735], [-78.818871, 37.845752], [-78.818684, 37.845746], [-78.818377, 37.845729], [-78.818065, 37.845689], [-78.817748, 37.845635], [-78.817461, 37.845563], [-78.817089, 37.845456], [-78.81664, 37.845308], [-78.816094, 37.845137], [-78.815801, 37.845042], [-78.815106, 37.844835], [-78.814203, 37.844545], [-78.813661, 37.844372], [-78.813194, 37.844227], [-78.812793, 37.844119], [-78.812466, 37.844059], [-78.812161, 37.844015], [-78.811899, 37.843994], [-78.811692, 37.843985], [-78.81145, 37.844002], [-78.811288, 37.844022], [-78.810966, 37.84409], [-78.810704, 37.844162], [-78.810498, 37.844229], [-78.810246, 37.844336], [-78.80993, 37.84449], [-78.809727, 37.844605], [-78.809573, 37.844705], [-78.809276, 37.84492], [-78.809029, 37.845076], [-78.808807, 37.845199], [-78.808527, 37.845332], [-78.808311, 37.845419], [-78.808089, 37.845498], [-78.807811, 37.845579], [-78.807589, 37.845643], [-78.807297, 37.845708], [-78.807, 37.845759], [-78.806691, 37.845797], [-78.806302, 37.845837], [-78.805184, 37.845933], [-78.80503, 37.845945], [-78.804012, 37.846026], [-78.800837, 37.846324], [-78.800537, 37.846339], [-78.800237, 37.846355], [-78.800014, 37.846352], [-78.79976, 37.846345], [-78.799425, 37.846321], [-78.799048, 37.846276], [-78.79881, 37.846227], [-78.798587, 37.846183], [-78.798334, 37.846121], [-78.798127, 37.846044], [-78.797833, 37.845932], [-78.797473, 37.845765], [-78.797183, 37.845617], [-78.796923, 37.845465], [-78.796357, 37.845082], [-78.795818, 37.844712], [-78.795607, 37.84458], [-78.795352, 37.844427], [-78.795147, 37.84431], [-78.794915, 37.844201], [-78.794645, 37.844085], [-78.794419, 37.843996], [-78.794095, 37.843903], [-78.793805, 37.843828], [-78.793467, 37.843774], [-78.793125, 37.84374], [-78.792933, 37.843732], [-78.792722, 37.843723], [-78.792238, 37.84372], [-78.791688, 37.843732], [-78.791137, 37.843731], [-78.790713, 37.843712], [-78.790444, 37.843693], [-78.79016, 37.843657], [-78.78988, 37.843607], [-78.789604, 37.843542], [-78.789363, 37.843478], [-78.789067, 37.843389], [-78.788706, 37.843253], [-78.78839, 37.843125], [-78.788101, 37.843016], [-78.78765, 37.842857], [-78.787324, 37.842748], [-78.787056, 37.84268], [-78.786677, 37.842606], [-78.786459, 37.842568], [-78.786292, 37.842537], [-78.785994, 37.842501], [-78.785649, 37.842467], [-78.785267, 37.842457], [-78.784945, 37.842456], [-78.784589, 37.842468], [-78.782212, 37.842633], [-78.780497, 37.842776], [-78.779987, 37.842814], [-78.778924, 37.842896], [-78.77812, 37.842986], [-78.777773, 37.843042], [-78.777066, 37.843144], [-78.776444, 37.84325], [-78.775647, 37.843402], [-78.774632, 37.843601], [-78.773646, 37.843786], [-78.773282, 37.843855], [-78.772981, 37.843912], [-78.772128, 37.844091], [-78.771161, 37.844316], [-78.770651, 37.844441], [-78.769991, 37.844616], [-78.768859, 37.844941], [-78.768162, 37.845142], [-78.767015, 37.845472], [-78.76637, 37.845658], [-78.765119, 37.846012], [-78.761663, 37.84701], [-78.760903, 37.847224], [-78.760298, 37.847402], [-78.75996, 37.847506], [-78.7597, 37.847596], [-78.759532, 37.84765], [-78.759113, 37.847806], [-78.758783, 37.847948], [-78.758412, 37.84812], [-78.758057, 37.848288], [-78.757154, 37.848747], [-78.756986, 37.848829], [-78.756546, 37.849062], [-78.756115, 37.849306], [-78.755862, 37.849458], [-78.755244, 37.849843], [-78.754769, 37.85013], [-78.754377, 37.85038], [-78.753945, 37.850672], [-78.753673, 37.850873], [-78.753364, 37.851127], [-78.753217, 37.851259], [-78.752739, 37.851715], [-78.752046, 37.852374], [-78.75166, 37.852719], [-78.751401, 37.852929], [-78.751134, 37.853132], [-78.750789, 37.853376], [-78.750504, 37.853564], [-78.750081, 37.853824], [-78.74973, 37.854021], [-78.749369, 37.854207], [-78.748998, 37.85438], [-78.748624, 37.854531], [-78.748053, 37.854743], [-78.747045, 37.85508], [-78.746537, 37.855262], [-78.746473, 37.855285], [-78.745985, 37.855474], [-78.7456, 37.855635], [-78.744986, 37.855911], [-78.744673, 37.856064], [-78.744246, 37.856299], [-78.743761, 37.856591], [-78.743416, 37.856817], [-78.742954, 37.857145], [-78.742639, 37.857387], [-78.742337, 37.85764], [-78.742294, 37.85768], [-78.741896, 37.858045], [-78.741503, 37.85843], [-78.741291, 37.858648], [-78.741254, 37.858686], [-78.740963, 37.859027], [-78.740705, 37.859351], [-78.740668, 37.859398], [-78.740453, 37.85968], [-78.739901, 37.860385], [-78.739675, 37.860647], [-78.739434, 37.860902], [-78.739176, 37.861151], [-78.73895, 37.861357], [-78.738655, 37.861604], [-78.738411, 37.861795], [-78.738094, 37.862025], [-78.737733, 37.862262], [-78.737429, 37.862445], [-78.73708, 37.862638], [-78.73657, 37.862893], [-78.736186, 37.863088], [-78.735435, 37.86348], [-78.734529, 37.863942], [-78.733874, 37.864271], [-78.733562, 37.864427], [-78.733042, 37.864704], [-78.732039, 37.865214], [-78.731948, 37.865258], [-78.731785, 37.865335], [-78.731411, 37.86553], [-78.730148, 37.866169], [-78.729986, 37.866254], [-78.729722, 37.866391], [-78.728688, 37.866913], [-78.727888, 37.86733], [-78.727529, 37.86751], [-78.726765, 37.867904], [-78.726166, 37.868202], [-78.725869, 37.868361], [-78.725428, 37.868579], [-78.725084, 37.868757], [-78.724518, 37.869049], [-78.723898, 37.869354], [-78.722779, 37.869945], [-78.721592, 37.870542], [-78.720481, 37.87111], [-78.719958, 37.871373], [-78.719701, 37.871497], [-78.719365, 37.871672], [-78.718719, 37.872028], [-78.71847, 37.872183], [-78.718164, 37.872388], [-78.717945, 37.872553], [-78.717592, 37.872851], [-78.717285, 37.873139], [-78.717049, 37.873363], [-78.716739, 37.873728], [-78.716536, 37.874002], [-78.716395, 37.874221], [-78.716144, 37.874657], [-78.71604, 37.87487], [-78.715888, 37.875212], [-78.715814, 37.875401], [-78.715694, 37.87571], [-78.715495, 37.876238], [-78.715377, 37.876548], [-78.715275, 37.876817], [-78.71521, 37.877013], [-78.715136, 37.877211], [-78.715081, 37.877371], [-78.714995, 37.877587], [-78.71492, 37.877787], [-78.7148, 37.878131], [-78.714687, 37.878428], [-78.714533, 37.878796], [-78.714454, 37.879009], [-78.714417, 37.879116], [-78.714256, 37.879549], [-78.714141, 37.879854], [-78.713896, 37.880594], [-78.713756, 37.881038], [-78.713682, 37.88126], [-78.713617, 37.881457], [-78.713533, 37.881697], [-78.713446, 37.881943], [-78.713394, 37.882108], [-78.713314, 37.882336], [-78.713184, 37.882655], [-78.713006, 37.883053], [-78.712892, 37.883274], [-78.712733, 37.88355], [-78.712558, 37.88384], [-78.712369, 37.884119], [-78.712275, 37.884257], [-78.712136, 37.884449], [-78.711974, 37.884667], [-78.711814, 37.884876], [-78.711641, 37.885085], [-78.711418, 37.885345], [-78.711139, 37.885644], [-78.710798, 37.88599], [-78.710465, 37.886309], [-78.710195, 37.886555], [-78.709928, 37.886781], [-78.709577, 37.88706], [-78.709406, 37.887199], [-78.709211, 37.887345], [-78.708778, 37.887648], [-78.707968, 37.888179], [-78.707642, 37.888399], [-78.707473, 37.88851], [-78.707244, 37.888663], [-78.706965, 37.888843], [-78.706601, 37.889083], [-78.706088, 37.889425], [-78.705712, 37.889669], [-78.705189, 37.890019], [-78.704893, 37.890211], [-78.703445, 37.891162], [-78.703041, 37.891429], [-78.702721, 37.891638], [-78.702327, 37.891905], [-78.70184, 37.892223], [-78.701163, 37.892662], [-78.700778, 37.892933], [-78.70071, 37.892981], [-78.700622, 37.893046], [-78.700337, 37.893272], [-78.69999, 37.89357], [-78.699755, 37.8938], [-78.699482, 37.894099], [-78.699289, 37.894329], [-78.698787, 37.894984], [-78.698558, 37.895284], [-78.69837, 37.895519], [-78.698116, 37.895851], [-78.697966, 37.896055], [-78.697696, 37.896407], [-78.697057, 37.897242], [-78.696439, 37.898041], [-78.695681, 37.899035], [-78.695049, 37.899863], [-78.694658, 37.900403], [-78.694519, 37.900599], [-78.694429, 37.900733], [-78.693954, 37.901464], [-78.693721, 37.901862], [-78.693473, 37.902275], [-78.693102, 37.902981], [-78.692879, 37.903439], [-78.692797, 37.903623], [-78.692129, 37.905105], [-78.691808, 37.905817], [-78.691268, 37.906984], [-78.690987, 37.907549], [-78.690814, 37.907874], [-78.690688, 37.908089], [-78.690521, 37.908372], [-78.690275, 37.908767], [-78.689663, 37.909657], [-78.689078, 37.910492], [-78.685485, 37.915666], [-78.684467, 37.917131], [-78.682047, 37.920608], [-78.681785, 37.92095], [-78.681517, 37.921272], [-78.681241, 37.921578], [-78.68101, 37.921818], [-78.680605, 37.922194], [-78.68013, 37.922617], [-78.679566, 37.923137], [-78.679307, 37.923403], [-78.678986, 37.92374], [-78.678605, 37.924203], [-78.678345, 37.924561], [-78.678124, 37.924891], [-78.677903, 37.925227], [-78.677688, 37.925589], [-78.677544, 37.925878], [-78.67731, 37.926442], [-78.676551, 37.928284], [-78.676404, 37.928595], [-78.676242, 37.928949], [-78.676148, 37.929122], [-78.675977, 37.929377], [-78.675612, 37.929807], [-78.675385, 37.930086], [-78.675213, 37.930312], [-78.675004, 37.930559], [-78.674617, 37.931044], [-78.67407, 37.931702], [-78.673673, 37.932201], [-78.673281, 37.9327], [-78.672994, 37.933082], [-78.672166, 37.934227], [-78.671112, 37.935771], [-78.670762, 37.936281], [-78.670385, 37.936817], [-78.669877, 37.937599], [-78.668999, 37.93886], [-78.667671, 37.940789], [-78.666721, 37.942158], [-78.666126, 37.943118], [-78.665597, 37.944014], [-78.665125, 37.944827], [-78.664642, 37.945633], [-78.664087, 37.946602], [-78.663665, 37.947366], [-78.663523, 37.947648], [-78.663363, 37.948007], [-78.66312, 37.948581], [-78.662992, 37.948919], [-78.662788, 37.949511], [-78.662392, 37.950794], [-78.662127, 37.951686], [-78.661907, 37.952368], [-78.6618, 37.952667], [-78.661673, 37.952964], [-78.661549, 37.953229], [-78.661377, 37.953546], [-78.661172, 37.953875], [-78.660975, 37.954168], [-78.660712, 37.954527], [-78.660589, 37.954686], [-78.660525, 37.954768], [-78.660204, 37.955161], [-78.659899, 37.955515], [-78.65946, 37.956045], [-78.659107, 37.956472], [-78.658939, 37.95668], [-78.658404, 37.957325], [-78.658185, 37.957583], [-78.657413, 37.958505], [-78.65713, 37.958855], [-78.65677, 37.959264], [-78.656612, 37.959431], [-78.656439, 37.95959], [-78.656251, 37.959739], [-78.656068, 37.959867], [-78.655989, 37.959917], [-78.655752, 37.960052], [-78.655575, 37.96015], [-78.655228, 37.960289], [-78.654931, 37.960405], [-78.653275, 37.960978], [-78.652399, 37.961277], [-78.651659, 37.961545], [-78.651372, 37.96167], [-78.651131, 37.961788], [-78.650953, 37.961888], [-78.65077, 37.962003], [-78.650655, 37.962074], [-78.650545, 37.96215], [-78.650369, 37.962277], [-78.650124, 37.962492], [-78.649827, 37.962781], [-78.649528, 37.963082], [-78.649157, 37.963468], [-78.648771, 37.96385], [-78.648569, 37.964042], [-78.648236, 37.964318], [-78.647928, 37.964546], [-78.647355, 37.964951], [-78.646421, 37.965624], [-78.646034, 37.965897], [-78.645591, 37.966218], [-78.645351, 37.966376], [-78.645051, 37.966569], [-78.644735, 37.966754], [-78.644581, 37.96684], [-78.6444, 37.966936], [-78.643915, 37.967163], [-78.643555, 37.967319], [-78.643147, 37.967465], [-78.642853, 37.967561], [-78.642519, 37.96766], [-78.642395, 37.967695], [-78.642095, 37.967768], [-78.641871, 37.967823], [-78.641449, 37.967916], [-78.640993, 37.967991], [-78.640408, 37.968066], [-78.639997, 37.968103], [-78.639496, 37.96813], [-78.638995, 37.968136], [-78.638434, 37.968125], [-78.637944, 37.9681], [-78.63612, 37.967958], [-78.635136, 37.967873], [-78.633802, 37.96777], [-78.632073, 37.967631], [-78.631801, 37.967611], [-78.630935, 37.967546], [-78.630424, 37.967503], [-78.629697, 37.967442], [-78.628686, 37.967361], [-78.626167, 37.967159], [-78.623282, 37.966927], [-78.622258, 37.96685], [-78.621932, 37.966824], [-78.620819, 37.966736], [-78.620381, 37.966716], [-78.620004, 37.966712], [-78.619679, 37.966717], [-78.61937, 37.966745], [-78.619064, 37.966787], [-78.618761, 37.966844], [-78.618523, 37.9669], [-78.618222, 37.966977], [-78.617837, 37.967103], [-78.617525, 37.967224], [-78.617264, 37.967333], [-78.616866, 37.967526], [-78.61666, 37.96764], [-78.616487, 37.967735], [-78.616266, 37.967872], [-78.615844, 37.968137], [-78.615555, 37.968338], [-78.615229, 37.968577], [-78.614931, 37.968831], [-78.614607, 37.969142], [-78.614381, 37.96937], [-78.614151, 37.969646], [-78.613964, 37.96988], [-78.613494, 37.970554], [-78.61301, 37.971246], [-78.612831, 37.971512], [-78.612279, 37.972333], [-78.611229, 37.97389], [-78.610819, 37.974494], [-78.610719, 37.974624], [-78.610499, 37.974897], [-78.610319, 37.975118], [-78.610116, 37.975331], [-78.609966, 37.975469], [-78.609796, 37.975624], [-78.609591, 37.975796], [-78.609317, 37.976004], [-78.609071, 37.976176], [-78.608849, 37.976327], [-78.608744, 37.97639], [-78.608365, 37.976619], [-78.608101, 37.976752], [-78.607845, 37.976869], [-78.607584, 37.976978], [-78.60725, 37.977103], [-78.606977, 37.977192], [-78.606625, 37.977297], [-78.606266, 37.977388], [-78.606123, 37.977418], [-78.605902, 37.977465], [-78.605646, 37.97752], [-78.605621, 37.977522], [-78.605549, 37.977538], [-78.60423, 37.977756], [-78.602588, 37.978034], [-78.602162, 37.978122], [-78.601825, 37.978203], [-78.601492, 37.978293], [-78.601094, 37.978414], [-78.60071, 37.978547], [-78.600334, 37.978694], [-78.599967, 37.978854], [-78.599486, 37.979083], [-78.599163, 37.979252], [-78.598789, 37.97947], [-78.598549, 37.979624], [-78.597946, 37.980033], [-78.596889, 37.98075], [-78.595137, 37.981939], [-78.593704, 37.982911], [-78.592376, 37.98382], [-78.590854, 37.984906], [-78.590225, 37.985373], [-78.588999, 37.98631], [-78.588012, 37.9871], [-78.587089, 37.987859], [-78.586722, 37.988171], [-78.586183, 37.988631], [-78.585023, 37.989655], [-78.583908, 37.990662], [-78.583686, 37.990885], [-78.583478, 37.991116], [-78.583203, 37.991447], [-78.583057, 37.991641], [-78.582889, 37.99189], [-78.582734, 37.992152], [-78.582584, 37.992445], [-78.582451, 37.992743], [-78.582318, 37.993104], [-78.582229, 37.993396], [-78.582158, 37.993692], [-78.582061, 37.994255], [-78.581989, 37.994788], [-78.581919, 37.9952], [-78.581831, 37.99573], [-78.581596, 37.997239], [-78.581525, 37.997665], [-78.58147, 37.998088], [-78.581083, 38.000517], [-78.580993, 38.001016], [-78.580912, 38.001332], [-78.580857, 38.001514], [-78.580851, 38.001532], [-78.580827, 38.001607], [-78.580788, 38.001711], [-78.580764, 38.001783], [-78.580638, 38.002087], [-78.580501, 38.002397], [-78.580338, 38.002682], [-78.580176, 38.002939], [-78.580026, 38.003155], [-78.57984, 38.003394], [-78.579631, 38.003641], [-78.579528, 38.003748], [-78.579258, 38.004014], [-78.578985, 38.00426], [-78.578784, 38.004426], [-78.578575, 38.004584], [-78.578379, 38.004723], [-78.578122, 38.004899], [-78.577709, 38.005151], [-78.577431, 38.005306], [-78.577141, 38.005444], [-78.576923, 38.005542], [-78.576628, 38.005666], [-78.576327, 38.005766], [-78.576154, 38.005828], [-78.575371, 38.006031], [-78.574274, 38.006313], [-78.573929, 38.006397], [-78.573678, 38.006459], [-78.5731, 38.006602], [-78.572544, 38.006742], [-78.570845, 38.007165], [-78.570536, 38.007245], [-78.570147, 38.007346], [-78.569511, 38.007502], [-78.568866, 38.007677], [-78.568449, 38.007795], [-78.568216, 38.007865], [-78.567861, 38.007984], [-78.567483, 38.008116], [-78.567008, 38.00831], [-78.566642, 38.008471], [-78.566222, 38.008672], [-78.565813, 38.008887], [-78.565381, 38.009126], [-78.564818, 38.009422], [-78.564544, 38.009563], [-78.564196, 38.009735], [-78.564075, 38.009787], [-78.56369, 38.009944], [-78.56326, 38.010103], [-78.562849, 38.010238], [-78.562529, 38.010332], [-78.562124, 38.010438], [-78.561805, 38.010515], [-78.561564, 38.010564], [-78.56093, 38.010675], [-78.560028, 38.010845], [-78.558824, 38.011064], [-78.558024, 38.011219], [-78.557648, 38.011286], [-78.557386, 38.011333], [-78.557058, 38.011387], [-78.555118, 38.011755], [-78.554112, 38.011931], [-78.552878, 38.012156], [-78.552449, 38.01225], [-78.552186, 38.012316], [-78.551829, 38.012417], [-78.551365, 38.012562], [-78.55109, 38.012655], [-78.550658, 38.012829], [-78.550236, 38.013017], [-78.549599, 38.013364], [-78.549376, 38.013492], [-78.549058, 38.013698], [-78.548469, 38.01411], [-78.547659, 38.014674], [-78.547468, 38.014808], [-78.54736, 38.014884], [-78.547042, 38.015096], [-78.546611, 38.015362], [-78.546269, 38.015559], [-78.54592, 38.01574], [-78.545223, 38.016069], [-78.544841, 38.016247], [-78.543906, 38.016682], [-78.543654, 38.016806], [-78.54333, 38.016982], [-78.542733, 38.017318], [-78.542466, 38.017467], [-78.539711, 38.018979], [-78.536725, 38.020664], [-78.535885, 38.021132], [-78.535518, 38.021335], [-78.534742, 38.021766], [-78.534188, 38.022073], [-78.532955, 38.02276], [-78.532173, 38.023196], [-78.531193, 38.023747], [-78.531125, 38.023792], [-78.53075, 38.024045], [-78.530445, 38.024274], [-78.530203, 38.024476], [-78.530016, 38.024649], [-78.529931, 38.024733], [-78.52985, 38.024806], [-78.529798, 38.024854], [-78.529758, 38.024894], [-78.529598, 38.025065], [-78.529327, 38.025386], [-78.52916, 38.025608], [-78.528945, 38.025933], [-78.5288, 38.026176], [-78.528672, 38.026426], [-78.52861, 38.026566], [-78.528405, 38.027066], [-78.52833, 38.027311], [-78.528283, 38.02751], [-78.528235, 38.027689], [-78.528151, 38.028145], [-78.527582, 38.03105], [-78.527126, 38.033402], [-78.52703, 38.033972], [-78.526914, 38.034782], [-78.526868, 38.035166], [-78.52679, 38.036035], [-78.526753, 38.036647], [-78.526715, 38.03781], [-78.526642, 38.040878], [-78.526607, 38.042081], [-78.526584, 38.042473], [-78.526544, 38.042863], [-78.52645, 38.043462], [-78.526353, 38.043907], [-78.526306, 38.044099], [-78.526225, 38.044382], [-78.526103, 38.044762], [-78.525978, 38.045116], [-78.52595, 38.045183], [-78.525619, 38.045973], [-78.525226, 38.046882], [-78.524837, 38.047794], [-78.524807, 38.047861], [-78.524712, 38.048073], [-78.523664, 38.050524], [-78.523608, 38.050633], [-78.523449, 38.050945], [-78.523194, 38.051371], [-78.522992, 38.051667], [-78.522896, 38.051793], [-78.522708, 38.052033], [-78.522379, 38.052403], [-78.522049, 38.052728], [-78.521736, 38.053004], [-78.521375, 38.053289], [-78.521061, 38.053512], [-78.520792, 38.053687], [-78.520433, 38.053898], [-78.5202, 38.054028], [-78.519924, 38.054166], [-78.519561, 38.054329], [-78.519179, 38.054486], [-78.518827, 38.054612], [-78.518437, 38.054736], [-78.518106, 38.054829], [-78.517883, 38.054877], [-78.517638, 38.05494], [-78.517298, 38.055006], [-78.51674, 38.055093], [-78.515503, 38.055228], [-78.513125, 38.055506], [-78.51298, 38.05552], [-78.511721, 38.055664], [-78.510089, 38.05585], [-78.509444, 38.055931], [-78.508892, 38.056018], [-78.508324, 38.056121], [-78.50762, 38.056269], [-78.507101, 38.056364], [-78.5063, 38.056529], [-78.504207, 38.056975], [-78.503544, 38.057129], [-78.50332, 38.057173], [-78.50218, 38.05739], [-78.501769, 38.057476], [-78.501588, 38.057518], [-78.501288, 38.05758], [-78.500918, 38.057644], [-78.50053, 38.057699], [-78.50025, 38.057721], [-78.49999, 38.057731], [-78.4996, 38.057738], [-78.499258, 38.057729], [-78.499228, 38.057727], [-78.498789, 38.057695], [-78.498509, 38.057667], [-78.498249, 38.05764], [-78.497868, 38.057604], [-78.497658, 38.057584], [-78.497235, 38.057537], [-78.496848, 38.057489], [-78.495893, 38.057371], [-78.494978, 38.057279], [-78.49472, 38.057173], [-78.494659, 38.057142], [-78.494592, 38.057093], [-78.494549, 38.057047], [-78.494516, 38.056995], [-78.494502, 38.05695], [-78.494493, 38.056874], [-78.494502, 38.056798], [-78.494522, 38.056739], [-78.494562, 38.056669], [-78.494623, 38.05661], [-78.494697, 38.056562], [-78.494781, 38.056525], [-78.494872, 38.056502], [-78.49496, 38.056493], [-78.495044, 38.0565], [-78.495109, 38.056516], [-78.495169, 38.056541], [-78.495238, 38.056584], [-78.49528, 38.056617], [-78.495339, 38.05668], [-78.495381, 38.056751], [-78.495402, 38.056811], [-78.495415, 38.056894], [-78.495413, 38.056998], [-78.495388, 38.057116], [-78.49528, 38.057239], [-78.495007, 38.057577], [-78.494845, 38.057747], [-78.494782, 38.057825], [-78.494593, 38.05807], [-78.494413, 38.058298], [-78.494268, 38.05847], [-78.494235, 38.058509], [-78.494159, 38.058601], [-78.493967, 38.058833], [-78.493505, 38.059401], [-78.493364, 38.059586], [-78.492889, 38.060182], [-78.492564, 38.060616], [-78.492196, 38.061101], [-78.491916, 38.061468], [-78.491724, 38.061722], [-78.491723, 38.061722], [-78.491578, 38.061897], [-78.491244, 38.062293], [-78.490863, 38.062734], [-78.490477, 38.063153], [-78.490269, 38.06338], [-78.489937, 38.063742], [-78.48969, 38.064008], [-78.489478, 38.064259], [-78.489344, 38.064409], [-78.489289, 38.06447], [-78.489212, 38.064554], [-78.488761, 38.065053], [-78.48815, 38.065739], [-78.488116, 38.065779], [-78.487867, 38.06605], [-78.48713, 38.06686], [-78.486995, 38.067008], [-78.486825, 38.067194], [-78.486343, 38.067727], [-78.486218, 38.067866], [-78.486208, 38.067877], [-78.486134, 38.067959], [-78.48576, 38.068363], [-78.485475, 38.06867], [-78.485154, 38.069027], [-78.484295, 38.070023], [-78.484063, 38.070271], [-78.483776, 38.070614], [-78.483281, 38.071164], [-78.482433, 38.07211], [-78.480968, 38.073741], [-78.480778, 38.073943], [-78.480706, 38.07403], [-78.480376, 38.074401], [-78.479882, 38.074956], [-78.479801, 38.075034], [-78.479272, 38.075634], [-78.478606, 38.076375], [-78.478527, 38.076469], [-78.478367, 38.076647], [-78.477091, 38.078062], [-78.476397, 38.078846], [-78.475743, 38.079571], [-78.474543, 38.08091], [-78.474163, 38.081335], [-78.473969, 38.081577], [-78.473788, 38.081788], [-78.473613, 38.082014], [-78.47347, 38.082218], [-78.472971, 38.083082], [-78.472639, 38.083666], [-78.472264, 38.084319], [-78.471709, 38.085285], [-78.471146, 38.086271], [-78.47079, 38.086895], [-78.470583, 38.087258], [-78.47026, 38.087825], [-78.469568, 38.089039], [-78.468607, 38.090712], [-78.468501, 38.090897], [-78.468139, 38.091557], [-78.468043, 38.091733], [-78.467922, 38.09192], [-78.467732, 38.092218], [-78.46735, 38.0929], [-78.466766, 38.093924], [-78.466497, 38.09437], [-78.466369, 38.094558], [-78.46599, 38.095057], [-78.465526, 38.09564], [-78.465381, 38.095816], [-78.464933, 38.096381], [-78.464463, 38.096962], [-78.464049, 38.097474], [-78.463974, 38.097573], [-78.463441, 38.098232], [-78.46294, 38.098874], [-78.462231, 38.099765], [-78.461478, 38.100721], [-78.460943, 38.101395], [-78.460544, 38.101882], [-78.460009, 38.102564], [-78.459568, 38.103126], [-78.459337, 38.103403], [-78.458603, 38.10429], [-78.457804, 38.105297], [-78.45751, 38.105695], [-78.4569, 38.106619], [-78.456598, 38.107068], [-78.45544, 38.108845], [-78.454988, 38.109578], [-78.454476, 38.110311], [-78.454296, 38.110569], [-78.454206, 38.110708], [-78.454093, 38.110899], [-78.453942, 38.111128], [-78.453769, 38.111409], [-78.453294, 38.112125], [-78.453172, 38.112318], [-78.452856, 38.112817], [-78.452688, 38.11307], [-78.452602, 38.113223], [-78.451975, 38.114186], [-78.451686, 38.11461], [-78.45106, 38.115568], [-78.450908, 38.115798], [-78.450496, 38.11642], [-78.450419, 38.116537], [-78.45032, 38.116697], [-78.450137, 38.116993], [-78.449702, 38.117634], [-78.449172, 38.118448], [-78.448773, 38.119065], [-78.448006, 38.120242], [-78.447677, 38.120726], [-78.447299, 38.121219], [-78.44692, 38.121631], [-78.446411, 38.122124], [-78.4458, 38.12267], [-78.444661, 38.123687], [-78.442392, 38.125724], [-78.441529, 38.126494], [-78.440922, 38.127044], [-78.440006, 38.127866], [-78.439371, 38.128436], [-78.437997, 38.129669], [-78.437902, 38.129754], [-78.437019, 38.130549], [-78.436453, 38.131059], [-78.436187, 38.131299], [-78.435995, 38.13147], [-78.435251, 38.132172], [-78.435106, 38.132303], [-78.434673, 38.132753], [-78.434293, 38.13317], [-78.433695, 38.133887], [-78.433416, 38.134269], [-78.433195, 38.134572], [-78.432173, 38.13616], [-78.430917, 38.138131], [-78.430468, 38.138847], [-78.429836, 38.139833], [-78.429464, 38.140424], [-78.428859, 38.141359], [-78.428348, 38.142178], [-78.428275, 38.142291], [-78.427887, 38.14289], [-78.427641, 38.143278], [-78.427277, 38.143851], [-78.427263, 38.143873], [-78.425718, 38.146293], [-78.4249, 38.147586], [-78.423982, 38.149017], [-78.423879, 38.149181], [-78.4234, 38.149936], [-78.422346, 38.1516], [-78.42208, 38.151996], [-78.421684, 38.152621], [-78.421337, 38.15319], [-78.420383, 38.154692], [-78.419605, 38.155908], [-78.417659, 38.158962], [-78.415009, 38.163121], [-78.414626, 38.163716], [-78.414541, 38.163851], [-78.414293, 38.164245], [-78.412771, 38.16663], [-78.41231, 38.167345], [-78.411781, 38.168185], [-78.410521, 38.170164], [-78.410064, 38.170881], [-78.408661, 38.173081], [-78.408289, 38.173661], [-78.406754, 38.176057], [-78.405791, 38.177582], [-78.405633, 38.177824], [-78.404819, 38.179105], [-78.40451, 38.179581], [-78.403702, 38.180857], [-78.403534, 38.181116], [-78.40229, 38.183084], [-78.402, 38.183534], [-78.401567, 38.184219], [-78.401491, 38.184329], [-78.400918, 38.18523], [-78.400512, 38.185861], [-78.399321, 38.187671], [-78.399195, 38.187856], [-78.399077, 38.188041], [-78.398689, 38.188617], [-78.398558, 38.18882], [-78.397589, 38.190295], [-78.3974, 38.190566], [-78.397207, 38.19086], [-78.396877, 38.191349], [-78.396731, 38.191574], [-78.396016, 38.192652], [-78.395969, 38.192724], [-78.395198, 38.193895], [-78.395145, 38.193978], [-78.395092, 38.194057], [-78.395078, 38.194078], [-78.394787, 38.194511], [-78.394461, 38.19501], [-78.394425, 38.195065], [-78.393867, 38.195904], [-78.393697, 38.196162], [-78.392569, 38.197862], [-78.392356, 38.198186], [-78.391791, 38.199049], [-78.3916, 38.199341], [-78.391424, 38.19959], [-78.391056, 38.200141], [-78.390364, 38.201178], [-78.388697, 38.203713], [-78.387884, 38.204937], [-78.387682, 38.20524], [-78.387424, 38.205639], [-78.386997, 38.206278], [-78.386781, 38.206604], [-78.386138, 38.207581], [-78.385992, 38.207804], [-78.385531, 38.2085], [-78.38498, 38.209334], [-78.384853, 38.209537], [-78.383889, 38.210987], [-78.383519, 38.211533], [-78.383408, 38.211705], [-78.383194, 38.212041], [-78.382209, 38.213531], [-78.381949, 38.213932], [-78.381401, 38.214759], [-78.380953, 38.215433], [-78.380697, 38.215818], [-78.380472, 38.216158], [-78.379118, 38.218196], [-78.378999, 38.218384], [-78.37862, 38.21895], [-78.377882, 38.220071], [-78.377739, 38.220289], [-78.377587, 38.220523], [-78.376908, 38.221535], [-78.376698, 38.221851], [-78.376516, 38.222128], [-78.375966, 38.222959], [-78.375503, 38.223658], [-78.374143, 38.225716], [-78.373741, 38.226317], [-78.372465, 38.228246], [-78.371604, 38.229546], [-78.371224, 38.230126], [-78.37075, 38.230832], [-78.370117, 38.231792], [-78.369796, 38.23229], [-78.369344, 38.233031], [-78.369247, 38.233202], [-78.369201, 38.233285], [-78.369089, 38.233499], [-78.368757, 38.234191], [-78.368537, 38.23469], [-78.368285, 38.235273], [-78.367348, 38.237406], [-78.367125, 38.237924], [-78.366876, 38.23848], [-78.366632, 38.239054], [-78.366538, 38.239263], [-78.366315, 38.239761], [-78.365981, 38.240523], [-78.365112, 38.242495], [-78.364536, 38.243815], [-78.364277, 38.244425], [-78.363872, 38.245322], [-78.363644, 38.245831], [-78.363475, 38.246227], [-78.363324, 38.246579], [-78.363065, 38.24716], [-78.362399, 38.248697], [-78.362213, 38.249115], [-78.36185, 38.249928], [-78.360994, 38.251906], [-78.360894, 38.252122], [-78.360732, 38.252472], [-78.359818, 38.254556], [-78.359604, 38.255032], [-78.358451, 38.257672], [-78.35837, 38.257854], [-78.357235, 38.260418], [-78.35697, 38.261034], [-78.356749, 38.261526], [-78.356328, 38.262487], [-78.3557, 38.26392], [-78.355441, 38.264489], [-78.354985, 38.265534], [-78.354199, 38.267311], [-78.354014, 38.267697], [-78.353899, 38.267927], [-78.353632, 38.268419], [-78.353386, 38.268835], [-78.353012, 38.269405], [-78.352727, 38.269807], [-78.352433, 38.270193], [-78.351176, 38.271816], [-78.35069, 38.272444], [-78.350332, 38.272914], [-78.349867, 38.273496], [-78.349659, 38.273731], [-78.349448, 38.273949], [-78.349246, 38.274133], [-78.348925, 38.274393], [-78.348653, 38.274592], [-78.348309, 38.274816], [-78.346752, 38.275754], [-78.345609, 38.276449], [-78.34394, 38.277447], [-78.343411, 38.277789], [-78.343205, 38.277938], [-78.342906, 38.278167], [-78.342692, 38.278348], [-78.342621, 38.27841], [-78.342399, 38.278622], [-78.342335, 38.278686], [-78.342171, 38.278857], [-78.341631, 38.279482], [-78.341204, 38.280003], [-78.341139, 38.280089], [-78.341053, 38.280202], [-78.340551, 38.280804], [-78.34033, 38.281097], [-78.339739, 38.281771], [-78.337121, 38.284947], [-78.335554, 38.286807], [-78.334912, 38.287652], [-78.334363, 38.288479], [-78.333901, 38.289321], [-78.332891, 38.291302], [-78.33264, 38.291856], [-78.332046, 38.29316], [-78.331547, 38.294091], [-78.33002, 38.297253], [-78.328705, 38.299896], [-78.328454, 38.300437], [-78.327604, 38.302025], [-78.326529, 38.303681], [-78.325643, 38.304891], [-78.325058, 38.305662], [-78.32399, 38.30691], [-78.3236, 38.307359], [-78.323233, 38.30771], [-78.322626, 38.308335], [-78.320591, 38.310229], [-78.317859, 38.312439], [-78.317136, 38.313055], [-78.314274, 38.315396], [-78.313204, 38.316275], [-78.313084, 38.316374], [-78.312238, 38.317069], [-78.31127, 38.317874], [-78.310555, 38.318624], [-78.308339, 38.321068], [-78.307189, 38.322326], [-78.306432, 38.323147], [-78.305157, 38.324565], [-78.299683, 38.33067], [-78.296227, 38.334366], [-78.294775, 38.336025], [-78.294422, 38.336434], [-78.293518, 38.337393], [-78.292283, 38.338774], [-78.290905, 38.340301], [-78.289054, 38.34231], [-78.287698, 38.343781], [-78.286127, 38.345511], [-78.284805, 38.346961], [-78.284197, 38.347653], [-78.281261, 38.350904], [-78.27928, 38.353063], [-78.277989, 38.354462], [-78.276967, 38.355626], [-78.275482, 38.357205], [-78.275108, 38.357686], [-78.273995, 38.359116], [-78.272612, 38.361053], [-78.269402, 38.365549], [-78.268281, 38.367067], [-78.26707, 38.368543], [-78.266209, 38.369424], [-78.26463, 38.370803], [-78.263855, 38.371431], [-78.262777, 38.372178], [-78.262167, 38.372601], [-78.258589, 38.375046], [-78.253931, 38.378242], [-78.253419, 38.378585], [-78.252722, 38.379065], [-78.251038, 38.380279], [-78.249725, 38.3814], [-78.248824, 38.38242], [-78.247019, 38.384778], [-78.243045, 38.39007], [-78.242379, 38.390835], [-78.241798, 38.391304], [-78.241358, 38.391649], [-78.240659, 38.392107], [-78.239791, 38.392562], [-78.236781, 38.394134], [-78.234618, 38.395478], [-78.233524, 38.396238], [-78.231366, 38.397688], [-78.230593, 38.398159], [-78.229713, 38.398631], [-78.22927, 38.398846], [-78.227176, 38.399941], [-78.224001, 38.401573], [-78.221687, 38.402762], [-78.220927, 38.403115], [-78.219583, 38.403494], [-78.217956, 38.403869], [-78.216834, 38.404329], [-78.216198, 38.404653], [-78.215673, 38.404943], [-78.2147, 38.405692], [-78.214341, 38.406017], [-78.211846, 38.409013], [-78.211205, 38.409859], [-78.208931, 38.412831], [-78.207891, 38.413946], [-78.207388, 38.414459], [-78.206848, 38.414885], [-78.20502, 38.416246], [-78.204339, 38.416746], [-78.203587, 38.417231], [-78.201789, 38.418025], [-78.199931, 38.418788], [-78.198775, 38.419213], [-78.197516, 38.419599], [-78.196891, 38.419728], [-78.193593, 38.420311], [-78.192656, 38.420508], [-78.191772, 38.420736], [-78.190615, 38.421137], [-78.189756, 38.421485], [-78.189131, 38.421795], [-78.188009, 38.422501], [-78.186635, 38.423265], [-78.185396, 38.423841], [-78.184545, 38.424162], [-78.179643, 38.425692], [-78.176595, 38.426575], [-78.175037, 38.427149], [-78.174014, 38.427529], [-78.171007, 38.428688], [-78.169272, 38.429381], [-78.165511, 38.430827], [-78.164119, 38.431371], [-78.162591, 38.431967], [-78.161653, 38.432308], [-78.160661, 38.43271], [-78.160269, 38.432865], [-78.159874, 38.433009], [-78.157491, 38.433942], [-78.157022, 38.434133], [-78.156281, 38.434403], [-78.154122, 38.435214], [-78.152887, 38.435503], [-78.151935, 38.435645], [-78.151237, 38.435723], [-78.149391, 38.435895], [-78.145341, 38.436294], [-78.143178, 38.436516], [-78.141588, 38.436723], [-78.140742, 38.436927], [-78.139967, 38.43716], [-78.139029, 38.437478], [-78.138213, 38.437833], [-78.13673, 38.438732], [-78.135769, 38.439493], [-78.133667, 38.441543], [-78.13309, 38.442092], [-78.132637, 38.442565], [-78.131362, 38.443807], [-78.131197, 38.443972], [-78.13069, 38.444456], [-78.13004, 38.445093], [-78.129654, 38.445515], [-78.129431, 38.445788], [-78.129306, 38.445939], [-78.129135, 38.446147], [-78.126535, 38.449414], [-78.12559, 38.450596], [-78.124937, 38.451403], [-78.12463, 38.451786], [-78.122999, 38.453819], [-78.12268, 38.454222], [-78.122212, 38.454799], [-78.122012, 38.455018], [-78.121815, 38.455209], [-78.121657, 38.455346], [-78.121484, 38.455481], [-78.121283, 38.455622], [-78.121072, 38.455755], [-78.120838, 38.455889], [-78.120605, 38.456007], [-78.120411, 38.456093], [-78.120081, 38.45622], [-78.11988, 38.456286], [-78.119617, 38.456362], [-78.119481, 38.456395], [-78.119029, 38.456484], [-78.118859, 38.456513], [-78.118556, 38.456543], [-78.118252, 38.456558], [-78.117886, 38.45656], [-78.117582, 38.456545], [-78.117215, 38.456509], [-78.11691, 38.456463], [-78.116669, 38.456417], [-78.116299, 38.456332], [-78.114395, 38.455867], [-78.113075, 38.455549], [-78.112183, 38.455337], [-78.111983, 38.455288], [-78.110622, 38.454956], [-78.109647, 38.454713], [-78.109318, 38.454619], [-78.108646, 38.454427], [-78.108148, 38.454266], [-78.107826, 38.454152], [-78.107433, 38.454006], [-78.106215, 38.453523], [-78.103244, 38.452284], [-78.103113, 38.45223], [-78.101465, 38.451517], [-78.100793, 38.451267], [-78.099999, 38.450965], [-78.099633, 38.450843], [-78.099366, 38.450762], [-78.098981, 38.450649], [-78.098604, 38.450547], [-78.098262, 38.45046], [-78.09792, 38.450384], [-78.096808, 38.450181], [-78.096151, 38.450083], [-78.095446, 38.449969], [-78.093727, 38.449707], [-78.092677, 38.449547], [-78.092158, 38.449481], [-78.091766, 38.449445], [-78.091635, 38.449437], [-78.091391, 38.44943], [-78.09088, 38.449437], [-78.090541, 38.449459], [-78.090154, 38.449505], [-78.090027, 38.449526], [-78.089761, 38.44957], [-78.089091, 38.449707], [-78.08849, 38.449845], [-78.087312, 38.450134], [-78.086546, 38.450314], [-78.086092, 38.450427], [-78.085716, 38.450516], [-78.085217, 38.45064], [-78.083614, 38.45102], [-78.082588, 38.451268], [-78.081682, 38.451496], [-78.080934, 38.451707], [-78.080808, 38.451743], [-78.080252, 38.451928], [-78.080061, 38.451995], [-78.079356, 38.452244], [-78.079056, 38.452366], [-78.077758, 38.452899], [-78.07693, 38.453218], [-78.07648, 38.453363], [-78.075972, 38.453504], [-78.075519, 38.453613], [-78.075245, 38.453672], [-78.074633, 38.453773], [-78.073634, 38.453917], [-78.073086, 38.453985], [-78.071708, 38.454165], [-78.070367, 38.45434], [-78.069606, 38.454439], [-78.065196, 38.455001], [-78.0636, 38.455212], [-78.062967, 38.455296], [-78.062279, 38.455383], [-78.061807, 38.45545], [-78.061375, 38.455516], [-78.060496, 38.455651], [-78.059099, 38.455874], [-78.058415, 38.455997], [-78.057861, 38.456107], [-78.057398, 38.456211], [-78.057094, 38.456284], [-78.055369, 38.456762], [-78.054558, 38.456978], [-78.05416, 38.457057], [-78.053923, 38.4571], [-78.053692, 38.457137], [-78.053464, 38.457172], [-78.052965, 38.457229], [-78.052547, 38.457266], [-78.05168, 38.457327], [-78.051381, 38.457343], [-78.051209, 38.457356], [-78.050231, 38.457415], [-78.049522, 38.45745], [-78.049115, 38.457457], [-78.048707, 38.45745], [-78.048107, 38.457414], [-78.046583, 38.457296], [-78.045473, 38.457209], [-78.043615, 38.457066], [-78.04299, 38.457014], [-78.041948, 38.456934], [-78.041564, 38.4569], [-78.040447, 38.456809], [-78.039807, 38.456752], [-78.039565, 38.456722], [-78.038614, 38.456586], [-78.037992, 38.45648], [-78.036619, 38.456229], [-78.036312, 38.456174], [-78.035316, 38.455996], [-78.033993, 38.455756], [-78.033455, 38.455659], [-78.032995, 38.455576], [-78.032344, 38.455462], [-78.032225, 38.455441], [-78.032071, 38.455411], [-78.031918, 38.455381], [-78.030629, 38.455156], [-78.030487, 38.455136], [-78.02993, 38.455035], [-78.029397, 38.454939], [-78.027154, 38.454551], [-78.026507, 38.454439], [-78.026143, 38.454368], [-78.025005, 38.454171], [-78.024336, 38.45404], [-78.023622, 38.453878], [-78.02312, 38.453727], [-78.02273, 38.453603], [-78.022384, 38.453473], [-78.021945, 38.453293], [-78.021688, 38.453179], [-78.02141, 38.45304], [-78.020949, 38.452794], [-78.020606, 38.452593], [-78.018376, 38.451156], [-78.015052, 38.449001], [-78.013038, 38.447702], [-78.012718, 38.447476], [-78.012365, 38.447314], [-78.011913, 38.44707], [-78.011467, 38.446849], [-78.011017, 38.446646], [-78.010785, 38.446548], [-78.01041, 38.446389], [-78.009947, 38.446212], [-78.009475, 38.446047], [-78.009032, 38.44592], [-78.008198, 38.445668], [-78.007806, 38.445574], [-78.007536, 38.445509], [-78.00704, 38.445404], [-78.006541, 38.445314], [-78.006039, 38.445234], [-78.005535, 38.445168], [-78.004882, 38.445103], [-78.00427, 38.44506], [-78.003857, 38.445042], [-78.003259, 38.445032], [-77.996098, 38.445039], [-77.995524, 38.445052], [-77.995083, 38.445072], [-77.9946, 38.445108], [-77.994291, 38.44514], [-77.994119, 38.445159], [-77.993562, 38.445235], [-77.993077, 38.445314], [-77.992738, 38.44538], [-77.992304, 38.445476], [-77.991774, 38.445609], [-77.991277, 38.445754], [-77.990885, 38.44588], [-77.990401, 38.446049], [-77.989902, 38.446248], [-77.98951, 38.446417], [-77.989127, 38.446595], [-77.988671, 38.446826], [-77.988226, 38.44707], [-77.988015, 38.447193], [-77.987964, 38.447222], [-77.986229, 38.448266], [-77.982377, 38.450578], [-77.980067, 38.451965], [-77.978396, 38.452971], [-77.976723, 38.453978], [-77.971729, 38.456974], [-77.970854, 38.457513], [-77.970447, 38.457776], [-77.969812, 38.458205], [-77.969672, 38.458304], [-77.969294, 38.458571], [-77.968878, 38.458872], [-77.968162, 38.459423], [-77.967696, 38.459799], [-77.967125, 38.46028], [-77.966325, 38.460982], [-77.965258, 38.461918], [-77.964866, 38.462267], [-77.960196, 38.466376], [-77.955939, 38.470123], [-77.954947, 38.470996], [-77.954533, 38.471358], [-77.953922, 38.471893], [-77.953458, 38.472304], [-77.953176, 38.472548], [-77.952583, 38.473072], [-77.951119, 38.474355], [-77.950943, 38.474509], [-77.949669, 38.47563], [-77.948949, 38.476265], [-77.948002, 38.477098], [-77.940672, 38.483548], [-77.940481, 38.483731], [-77.940188, 38.484012], [-77.939893, 38.484318], [-77.939484, 38.484776], [-77.93926, 38.485054], [-77.939039, 38.48534], [-77.938835, 38.485618], [-77.938574, 38.486003], [-77.938385, 38.4863], [-77.938154, 38.486695], [-77.936929, 38.489071], [-77.936476, 38.48995], [-77.936307, 38.490277], [-77.936213, 38.490449], [-77.936032, 38.490779], [-77.935797, 38.491168], [-77.935515, 38.491593], [-77.935238, 38.491981], [-77.934904, 38.492412], [-77.934836, 38.492493], [-77.93462, 38.492753], [-77.934238, 38.493183], [-77.933985, 38.493449], [-77.933681, 38.493753], [-77.933395, 38.494018], [-77.933018, 38.494354], [-77.932749, 38.494585], [-77.932252, 38.494973], [-77.93171, 38.495374], [-77.931341, 38.495628], [-77.930966, 38.495866], [-77.930194, 38.496327], [-77.929795, 38.496546], [-77.929468, 38.496713], [-77.928898, 38.496989], [-77.928401, 38.497211], [-77.927814, 38.497454], [-77.927352, 38.49763], [-77.926883, 38.497792], [-77.92627, 38.497988], [-77.925745, 38.498139], [-77.925688, 38.498154], [-77.925207, 38.498279], [-77.924635, 38.498412], [-77.924059, 38.498531], [-77.923478, 38.498637], [-77.923244, 38.498675], [-77.9209, 38.499106], [-77.920407, 38.499196], [-77.916265, 38.499951], [-77.914897, 38.500194], [-77.913262, 38.500498], [-77.912906, 38.500563], [-77.911059, 38.5009], [-77.910401, 38.501012], [-77.909308, 38.501222], [-77.90816, 38.501425], [-77.906956, 38.501647], [-77.902649, 38.502433], [-77.901836, 38.502578], [-77.901383, 38.502661], [-77.899056, 38.503088], [-77.897887, 38.503302], [-77.896932, 38.503454], [-77.896481, 38.503514], [-77.896026, 38.50356], [-77.89557, 38.503592], [-77.895091, 38.503613], [-77.894605, 38.503621], [-77.894338, 38.503619], [-77.894023, 38.503612], [-77.893539, 38.503589], [-77.893152, 38.50356], [-77.891645, 38.503392], [-77.891145, 38.503351], [-77.890705, 38.503331], [-77.890264, 38.503325], [-77.89, 38.503328], [-77.889421, 38.503346], [-77.888918, 38.503375], [-77.888578, 38.503406], [-77.888318, 38.503429], [-77.887823, 38.50349], [-77.887334, 38.503566], [-77.886849, 38.503655], [-77.886369, 38.503759], [-77.885701, 38.503929], [-77.88504, 38.504114], [-77.883872, 38.504451], [-77.882026, 38.504972], [-77.880726, 38.50535], [-77.879756, 38.505628], [-77.879416, 38.505726], [-77.878734, 38.505916], [-77.87665, 38.506514], [-77.873295, 38.507467], [-77.870872, 38.508164], [-77.867574, 38.509112], [-77.86643, 38.509426], [-77.865139, 38.509804], [-77.864878, 38.509875], [-77.864614, 38.509946], [-77.864004, 38.510124], [-77.863963, 38.510136], [-77.863243, 38.510359], [-77.862776, 38.510515], [-77.862313, 38.51068], [-77.86153, 38.510992], [-77.86091, 38.511252], [-77.860341, 38.511504], [-77.860101, 38.511597], [-77.859873, 38.511706], [-77.859049, 38.512033], [-77.858596, 38.512199], [-77.85801, 38.512393], [-77.85641, 38.512859], [-77.85546, 38.513131], [-77.853636, 38.513652], [-77.852939, 38.513842], [-77.85189, 38.514117], [-77.851773, 38.514147], [-77.851155, 38.514282], [-77.850783, 38.514355], [-77.850158, 38.514468], [-77.849529, 38.514566], [-77.848611, 38.514673], [-77.847601, 38.514814], [-77.847219, 38.514874], [-77.846744, 38.514961], [-77.846275, 38.515063], [-77.845622, 38.515227], [-77.843493, 38.515828], [-77.840926, 38.516554], [-77.838953, 38.517123], [-77.838611, 38.51724], [-77.838276, 38.51737], [-77.838087, 38.517452], [-77.837878, 38.517559], [-77.837641, 38.517698], [-77.837371, 38.517879], [-77.837159, 38.518042], [-77.836631, 38.518508], [-77.833939, 38.52107], [-77.833536, 38.521444], [-77.832859, 38.52207], [-77.832618, 38.52227], [-77.832363, 38.52246], [-77.832151, 38.522605], [-77.831761, 38.52284], [-77.831645, 38.522905], [-77.831341, 38.523059], [-77.831027, 38.523201], [-77.830705, 38.52333], [-77.830375, 38.523446], [-77.82725, 38.524408], [-77.825282, 38.525005], [-77.824825, 38.525153], [-77.824766, 38.525172], [-77.82414, 38.525403], [-77.823904, 38.525501], [-77.823444, 38.525707], [-77.823161, 38.525842], [-77.822816, 38.526023], [-77.822483, 38.526216], [-77.82216, 38.526429], [-77.821905, 38.526618], [-77.821824, 38.526681], [-77.821661, 38.526816], [-77.82143, 38.527024], [-77.821026, 38.527454], [-77.820758, 38.527783], [-77.820516, 38.528112], [-77.820197, 38.52856], [-77.819895, 38.529029], [-77.81945, 38.529798], [-77.818541, 38.531386], [-77.817476, 38.533249], [-77.817174, 38.533749], [-77.815779, 38.536111], [-77.812836, 38.541042], [-77.812145, 38.542152], [-77.811443, 38.543345], [-77.81107, 38.543916], [-77.809169, 38.54677], [-77.807061, 38.549912], [-77.805801, 38.55177], [-77.803189, 38.555743], [-77.802664, 38.55653], [-77.802442, 38.556869], [-77.802253, 38.557175], [-77.802079, 38.557492], [-77.801838, 38.557971], [-77.801782, 38.55809], [-77.801657, 38.55838], [-77.801522, 38.558722], [-77.801429, 38.558994], [-77.801302, 38.559432], [-77.801209, 38.559822], [-77.801144, 38.560169], [-77.801065, 38.560727], [-77.801025, 38.56131], [-77.801027, 38.561813], [-77.801049, 38.562487], [-77.801069, 38.562893], [-77.801213, 38.565749], [-77.801305, 38.567636], [-77.80137, 38.568961], [-77.801541, 38.572402], [-77.801599, 38.573623], [-77.801669, 38.575224], [-77.801707, 38.575829], [-77.801772, 38.577117], [-77.801874, 38.579138], [-77.801902, 38.579759], [-77.801914, 38.579914], [-77.801945, 38.580642], [-77.801977, 38.581198], [-77.802036, 38.582417], [-77.802118, 38.584113], [-77.802126, 38.584391], [-77.802131, 38.584986], [-77.802118, 38.585525], [-77.802088, 38.586052], [-77.802017, 38.586791], [-77.801743, 38.589112], [-77.801725, 38.589268], [-77.801437, 38.591698], [-77.801342, 38.5925], [-77.801281, 38.593006], [-77.800994, 38.595455], [-77.800644, 38.598437], [-77.800492, 38.599704], [-77.800457, 38.599972], [-77.800268, 38.601612], [-77.800209, 38.602305], [-77.80017, 38.602992], [-77.800152, 38.603904], [-77.800152, 38.604035], [-77.800152, 38.604483], [-77.800172, 38.60559], [-77.800187, 38.606551], [-77.800205, 38.607644], [-77.80022, 38.608813], [-77.800237, 38.609384], [-77.800232, 38.610093], [-77.800248, 38.611162], [-77.80027, 38.611781], [-77.800276, 38.611972], [-77.800298, 38.612639], [-77.800312, 38.613039], [-77.800332, 38.613399], [-77.800397, 38.614527], [-77.800421, 38.615203], [-77.800432, 38.61575], [-77.800444, 38.616559], [-77.800478, 38.618723], [-77.8005, 38.619601], [-77.800525, 38.620811], [-77.800527, 38.620908], [-77.800548, 38.62192], [-77.80058, 38.623403], [-77.800594, 38.624213], [-77.800603, 38.625413], [-77.80062, 38.627386], [-77.800629, 38.627856], [-77.800651, 38.62934], [-77.800658, 38.629863], [-77.800688, 38.631295], [-77.800701, 38.63219], [-77.800708, 38.632656], [-77.800729, 38.632937], [-77.800749, 38.6331], [-77.800764, 38.633194], [-77.800824, 38.633493], [-77.8009, 38.63375], [-77.801033, 38.634132], [-77.801091, 38.634277], [-77.801339, 38.634852], [-77.801526, 38.635289], [-77.801703, 38.635692], [-77.801752, 38.635808], [-77.801965, 38.636295], [-77.802897, 38.638462], [-77.802996, 38.638693], [-77.803206, 38.639174], [-77.803351, 38.639505], [-77.803635, 38.640158], [-77.803774, 38.640485], [-77.80405, 38.641121], [-77.804137, 38.641325], [-77.804199, 38.641471], [-77.804367, 38.641868], [-77.804398, 38.641941], [-77.804535, 38.642359], [-77.804602, 38.642621], [-77.804642, 38.642832], [-77.804669, 38.643038], [-77.804677, 38.643118], [-77.804687, 38.643291], [-77.804696, 38.643722], [-77.804696, 38.644409], [-77.804677, 38.644766], [-77.804636, 38.645023], [-77.804576, 38.645279], [-77.804498, 38.645531], [-77.804445, 38.645671], [-77.804179, 38.646296], [-77.803976, 38.646795], [-77.803645, 38.647584], [-77.803607, 38.647672], [-77.803037, 38.649027], [-77.802582, 38.650099], [-77.802488, 38.65032], [-77.80226, 38.650816], [-77.802226, 38.650891], [-77.801705, 38.651973], [-77.801524, 38.652348], [-77.800517, 38.654435], [-77.800311, 38.654856], [-77.800109, 38.655223], [-77.799504, 38.656216], [-77.799258, 38.656629], [-77.799064, 38.656995], [-77.798952, 38.657238], [-77.798593, 38.658126], [-77.798524, 38.658287], [-77.798395, 38.658591], [-77.798266, 38.658901], [-77.798049, 38.659428], [-77.797829, 38.659963], [-77.79736, 38.661105], [-77.797075, 38.661795], [-77.796724, 38.662641], [-77.79625, 38.663783], [-77.796094, 38.664161], [-77.795637, 38.665271], [-77.79528, 38.666132], [-77.795248, 38.66621], [-77.794069, 38.669063], [-77.793674, 38.670024], [-77.793379, 38.670723], [-77.793244, 38.671036], [-77.793103, 38.671307], [-77.792943, 38.671571], [-77.792813, 38.671755], [-77.792641, 38.671968], [-77.792454, 38.672174], [-77.792251, 38.672371], [-77.791496, 38.673047], [-77.791134, 38.673372], [-77.790643, 38.673809], [-77.789269, 38.675032], [-77.788765, 38.675507], [-77.788692, 38.675576], [-77.788181, 38.676104], [-77.787807, 38.676549], [-77.787668, 38.676743], [-77.787501, 38.677031], [-77.78738, 38.677265], [-77.78733, 38.677383], [-77.787232, 38.677659], [-77.787165, 38.677911], [-77.787115, 38.678177], [-77.787085, 38.678445], [-77.787079, 38.678552], [-77.787095, 38.67913], [-77.787153, 38.679798], [-77.787259, 38.680924], [-77.787331, 38.681886], [-77.787363, 38.682419], [-77.787413, 38.683635], [-77.787401, 38.684203], [-77.787392, 38.684611], [-77.78735, 38.685019], [-77.787315, 38.685264], [-77.787231, 38.685728], [-77.787136, 38.686251], [-77.787114, 38.686332], [-77.78692, 38.686986], [-77.786696, 38.687619], [-77.786501, 38.688074], [-77.786277, 38.68855], [-77.786098, 38.688888], [-77.785944, 38.689154], [-77.785576, 38.689748], [-77.784818, 38.690938], [-77.784516, 38.691425], [-77.784271, 38.691807], [-77.783827, 38.692506], [-77.783401, 38.6932], [-77.783246, 38.693444], [-77.782384, 38.694802], [-77.782205, 38.695084], [-77.781593, 38.696059], [-77.781243, 38.69667], [-77.78108, 38.696994], [-77.780923, 38.697347], [-77.780812, 38.697637], [-77.780687, 38.698004], [-77.780614, 38.698231], [-77.780587, 38.698314], [-77.780392, 38.699181], [-77.780333, 38.699659], [-77.780298, 38.700094], [-77.780287, 38.700389], [-77.780289, 38.700757], [-77.780315, 38.701452], [-77.780365, 38.702797], [-77.780397, 38.703509], [-77.780462, 38.705131], [-77.780535, 38.706895], [-77.780587, 38.708144], [-77.780612, 38.708911], [-77.780675, 38.710324], [-77.780782, 38.713019], [-77.780806, 38.713639], [-77.780906, 38.716128], [-77.780923, 38.716557], [-77.780985, 38.71812], [-77.781094, 38.720811], [-77.781111, 38.721348], [-77.78117, 38.722771], [-77.781205, 38.723428], [-77.781207, 38.723933], [-77.781141, 38.724638], [-77.781062, 38.725028], [-77.780986, 38.725313], [-77.780873, 38.725651], [-77.780799, 38.725838], [-77.780763, 38.72593], [-77.780608, 38.726258], [-77.780457, 38.726537], [-77.78029, 38.726814], [-77.780067, 38.727137], [-77.779841, 38.727426], [-77.779593, 38.727712], [-77.779535, 38.727773], [-77.779432, 38.727882], [-77.779137, 38.728163], [-77.778889, 38.728379], [-77.778564, 38.728638], [-77.777988, 38.729064], [-77.777903, 38.729128], [-77.777813, 38.729195], [-77.777751, 38.72924], [-77.777544, 38.729395], [-77.776507, 38.73018], [-77.77534, 38.731069], [-77.775049, 38.73127], [-77.774364, 38.73177], [-77.774051, 38.732009], [-77.773303, 38.732554], [-77.772496, 38.733155], [-77.772444, 38.733192], [-77.771424, 38.733941], [-77.770375, 38.73472], [-77.769774, 38.735166], [-77.766501, 38.737595], [-77.766092, 38.7379], [-77.766013, 38.737957], [-77.764613, 38.738973], [-77.763699, 38.739647], [-77.760294, 38.742188], [-77.759475, 38.742805], [-77.758292, 38.743704], [-77.757242, 38.744507], [-77.756734, 38.744888], [-77.75607, 38.745394], [-77.755332, 38.74595], [-77.753869, 38.747051], [-77.753512, 38.747317], [-77.752239, 38.748266], [-77.751486, 38.748835], [-77.749304, 38.750477], [-77.747696, 38.751677], [-77.747175, 38.752069], [-77.746636, 38.752468], [-77.746089, 38.752858], [-77.745719, 38.753113], [-77.745109, 38.753534], [-77.744529, 38.753946], [-77.744441, 38.754016], [-77.743143, 38.755039], [-77.742369, 38.755648], [-77.741019, 38.756723], [-77.740302, 38.757289], [-77.74012, 38.757439], [-77.739869, 38.757633], [-77.739452, 38.757933], [-77.738896, 38.758325], [-77.738458, 38.758616], [-77.737994, 38.758912], [-77.737675, 38.759109], [-77.736928, 38.759546], [-77.736529, 38.759764], [-77.73598, 38.760062], [-77.735512, 38.760302], [-77.734641, 38.760749], [-77.731871, 38.762168], [-77.730354, 38.762946], [-77.726563, 38.764904], [-77.726297, 38.765042], [-77.725494, 38.765462], [-77.724993, 38.765717], [-77.724283, 38.76606], [-77.724155, 38.766114], [-77.723683, 38.766274], [-77.723631, 38.766287], [-77.723461, 38.76633], [-77.723208, 38.766384], [-77.722948, 38.766425], [-77.722732, 38.766449], [-77.722439, 38.766466], [-77.722204, 38.76647], [-77.721761, 38.76645], [-77.721338, 38.766416], [-77.720827, 38.766373], [-77.71958, 38.766268], [-77.718945, 38.766226], [-77.71829, 38.766214], [-77.717886, 38.766231], [-77.717644, 38.766248], [-77.717238, 38.766296], [-77.716986, 38.766333], [-77.716478, 38.766426], [-77.715933, 38.766539], [-77.71313, 38.767126], [-77.71253, 38.76725], [-77.711446, 38.767475], [-77.711213, 38.767521], [-77.709832, 38.76781], [-77.709246, 38.767933], [-77.708584, 38.768078], [-77.708134, 38.768177], [-77.707984, 38.768211], [-77.707651, 38.768287], [-77.707208, 38.768389], [-77.707037, 38.768429], [-77.706966, 38.768445], [-77.706604, 38.768529], [-77.705724, 38.768733], [-77.704884, 38.768928], [-77.704008, 38.769125], [-77.703413, 38.769266], [-77.703044, 38.769359], [-77.702667, 38.769454], [-77.702289, 38.769565], [-77.701922, 38.769687], [-77.701705, 38.769766], [-77.701294, 38.769925], [-77.700381, 38.770277], [-77.698624, 38.770957], [-77.69792, 38.771222], [-77.696779, 38.771656], [-77.696286, 38.771839], [-77.694688, 38.772451], [-77.693388, 38.772942], [-77.69338, 38.772945], [-77.69299, 38.773092], [-77.691828, 38.773541], [-77.689985, 38.774273], [-77.689184, 38.774593], [-77.687947, 38.775099], [-77.68652, 38.775696], [-77.686093, 38.775875], [-77.685013, 38.776323], [-77.684548, 38.776508], [-77.683617, 38.77688], [-77.682281, 38.77742], [-77.681906, 38.77757], [-77.680152, 38.778273], [-77.680071, 38.778309], [-77.679964, 38.778348], [-77.67944, 38.778559], [-77.679135, 38.778682], [-77.679008, 38.778733], [-77.678765, 38.778831], [-77.678322, 38.779011], [-77.677302, 38.779417], [-77.677036, 38.779514], [-77.676871, 38.779569], [-77.676375, 38.779711], [-77.675903, 38.779834], [-77.675739, 38.779874], [-77.675282, 38.779966], [-77.675165, 38.77999], [-77.673681, 38.780291], [-77.67245, 38.780538], [-77.671784, 38.780666], [-77.671623, 38.780699], [-77.671392, 38.780752], [-77.670977, 38.780857], [-77.67067, 38.780949], [-77.669909, 38.781181], [-77.669755, 38.781229], [-77.668691, 38.781557], [-77.668105, 38.781729], [-77.66717, 38.781984], [-77.665556, 38.7824], [-77.665397, 38.782443], [-77.66509, 38.782528], [-77.663117, 38.783041], [-77.662729, 38.783142], [-77.658982, 38.784122], [-77.658234, 38.784318], [-77.657487, 38.784515], [-77.656903, 38.784668], [-77.656444, 38.784785], [-77.655772, 38.784954], [-77.655488, 38.785028], [-77.654149, 38.78538], [-77.653073, 38.785665], [-77.652817, 38.785732], [-77.652723, 38.785757], [-77.652335, 38.78586], [-77.650432, 38.786358], [-77.650292, 38.786394], [-77.648546, 38.786845], [-77.648132, 38.786953], [-77.6471, 38.787217], [-77.646912, 38.787266], [-77.646792, 38.787296], [-77.646475, 38.787378], [-77.643862, 38.788066], [-77.643514, 38.788151], [-77.642956, 38.788288], [-77.641845, 38.788545], [-77.641256, 38.788678], [-77.640668, 38.788812], [-77.637878, 38.789456], [-77.637724, 38.789491], [-77.635026, 38.790112], [-77.633026, 38.790572], [-77.631672, 38.790883], [-77.630391, 38.791179], [-77.630168, 38.791231], [-77.629412, 38.791414], [-77.629006, 38.791523], [-77.628982, 38.791529], [-77.628275, 38.791722], [-77.626219, 38.792284], [-77.625465, 38.792483], [-77.624741, 38.792675], [-77.624567, 38.792721], [-77.624468, 38.792748], [-77.624067, 38.792856], [-77.622821, 38.793191], [-77.622323, 38.793326], [-77.622182, 38.793359], [-77.62157, 38.793529], [-77.621412, 38.793572], [-77.620477, 38.793825], [-77.620443, 38.793835], [-77.619193, 38.794171], [-77.619018, 38.794213], [-77.617763, 38.794556], [-77.617092, 38.79473], [-77.616747, 38.794832], [-77.614017, 38.7956], [-77.613309, 38.7958], [-77.613097, 38.795859], [-77.611965, 38.796178], [-77.611011, 38.796432], [-77.609519, 38.79683], [-77.609066, 38.796955], [-77.60887, 38.79701], [-77.608124, 38.797223], [-77.607861, 38.79729], [-77.60659, 38.797608], [-77.604759, 38.798106], [-77.603341, 38.798433], [-77.602615, 38.798623], [-77.60217, 38.798681], [-77.60178, 38.798726], [-77.60159, 38.798739], [-77.601338, 38.79876], [-77.601043, 38.798748], [-77.600761, 38.798726], [-77.600475, 38.798685], [-77.600088, 38.798626], [-77.598701, 38.798329], [-77.598447, 38.798288], [-77.598168, 38.798263], [-77.597945, 38.798266], [-77.597733, 38.798267], [-77.597515, 38.798295], [-77.597295, 38.798329], [-77.59709, 38.79838], [-77.596838, 38.798472], [-77.596056, 38.79873], [-77.595792, 38.798802], [-77.595557, 38.798839], [-77.595321, 38.798872], [-77.595123, 38.798893], [-77.594903, 38.798906], [-77.594606, 38.798902], [-77.592349, 38.798571], [-77.589853, 38.798246], [-77.587564, 38.797961], [-77.584659, 38.797708], [-77.583518, 38.797592], [-77.582596, 38.797507], [-77.581727, 38.797465], [-77.580645, 38.797422], [-77.579853, 38.797408], [-77.579381, 38.797391], [-77.579328, 38.797391], [-77.578346, 38.797391], [-77.576989, 38.797404], [-77.576007, 38.797446], [-77.575373, 38.797504], [-77.571144, 38.797797], [-77.569287, 38.79792], [-77.56555, 38.798187], [-77.561659, 38.798447], [-77.555891, 38.7988], [-77.553755, 38.798951], [-77.550887, 38.799152], [-77.550295, 38.799193], [-77.548407, 38.799331], [-77.54595, 38.799494], [-77.541063, 38.799812], [-77.539341, 38.799946], [-77.536546, 38.800151], [-77.532281, 38.800448], [-77.529135, 38.800667], [-77.525861, 38.800895], [-77.523173, 38.801079], [-77.520134, 38.801324], [-77.519426, 38.801374], [-77.518588, 38.801436], [-77.514662, 38.801698], [-77.51275, 38.801833], [-77.512257, 38.801883], [-77.51176, 38.801949], [-77.511242, 38.802033], [-77.510728, 38.802133], [-77.510237, 38.802245], [-77.509757, 38.802371], [-77.509283, 38.802511], [-77.508762, 38.802686], [-77.508249, 38.802874], [-77.503238, 38.804849], [-77.501867, 38.805383], [-77.49854, 38.806696], [-77.492854, 38.808929], [-77.492586, 38.809039], [-77.491408, 38.809499], [-77.490728, 38.809768], [-77.490387, 38.809903], [-77.489846, 38.810125], [-77.48976, 38.810159], [-77.489588, 38.810228], [-77.488128, 38.810814], [-77.487975, 38.810876], [-77.487938, 38.810891], [-77.487614, 38.811027], [-77.486889, 38.811312], [-77.485515, 38.811841], [-77.481021, 38.813606], [-77.480031, 38.813987], [-77.479528, 38.81418], [-77.478278, 38.814671], [-77.477784, 38.814859], [-77.476696, 38.815283], [-77.476308, 38.815444], [-77.470849, 38.817587], [-77.469997, 38.817934], [-77.469107, 38.818314], [-77.468263, 38.818692], [-77.467788, 38.818912], [-77.466824, 38.819384], [-77.466481, 38.819559], [-77.465978, 38.819814], [-77.465888, 38.819862], [-77.465082, 38.820299], [-77.464689, 38.820516], [-77.463916, 38.820976], [-77.463568, 38.821184], [-77.462817, 38.82165], [-77.462169, 38.822067], [-77.461524, 38.822499], [-77.460742, 38.823046], [-77.459971, 38.823615], [-77.459453, 38.824009], [-77.458829, 38.824505], [-77.458041, 38.825157], [-77.457989, 38.825199], [-77.457719, 38.825436], [-77.457456, 38.825667], [-77.457174, 38.825914], [-77.456485, 38.82655], [-77.455925, 38.827089], [-77.455609, 38.827408], [-77.455354, 38.827664], [-77.455286, 38.827736], [-77.454763, 38.828288], [-77.453687, 38.829492], [-77.45117, 38.83231], [-77.450091, 38.833546], [-77.449603, 38.834072], [-77.4484, 38.835411], [-77.448317, 38.835496], [-77.447073, 38.836883], [-77.446568, 38.837456], [-77.444983, 38.839239], [-77.444962, 38.839261], [-77.44448, 38.839771], [-77.443925, 38.840374], [-77.443121, 38.841151], [-77.442523, 38.841683], [-77.442048, 38.842083], [-77.441563, 38.842472], [-77.44121, 38.842729], [-77.440835, 38.842989], [-77.440353, 38.843301], [-77.439357, 38.843895], [-77.438808, 38.844189], [-77.438412, 38.844388], [-77.438154, 38.844513], [-77.437585, 38.844773], [-77.43695, 38.845042], [-77.436125, 38.845358], [-77.435386, 38.845611], [-77.434841, 38.845778], [-77.434461, 38.845886], [-77.434065, 38.845989], [-77.433588, 38.846102], [-77.432595, 38.846311], [-77.431976, 38.846424], [-77.431894, 38.846439], [-77.43166, 38.846482], [-77.43013, 38.84677], [-77.428638, 38.847052], [-77.427672, 38.847201], [-77.426895, 38.847336], [-77.426613, 38.847387], [-77.423954, 38.847868], [-77.42318, 38.84802], [-77.422578, 38.848129], [-77.421734, 38.848284], [-77.419777, 38.84865], [-77.418032, 38.848977], [-77.416532, 38.849246], [-77.415198, 38.849482], [-77.414151, 38.849672], [-77.413692, 38.849756], [-77.413004, 38.849886], [-77.41025, 38.850388], [-77.408348, 38.850725], [-77.406003, 38.851167], [-77.404553, 38.851419], [-77.403103, 38.851676], [-77.402433, 38.851803], [-77.401513, 38.851954], [-77.399882, 38.852249], [-77.399048, 38.852319], [-77.398718, 38.852375], [-77.397996, 38.852492], [-77.397318, 38.852624], [-77.396752, 38.852714], [-77.396348, 38.852749], [-77.395658, 38.852767], [-77.395009, 38.8528], [-77.394695, 38.852837], [-77.39433, 38.852891], [-77.393802, 38.852984], [-77.393126, 38.853114], [-77.392725, 38.85318], [-77.392095, 38.853297], [-77.391904, 38.853339], [-77.391134, 38.853478], [-77.389836, 38.853723], [-77.389215, 38.853845], [-77.38892, 38.853895], [-77.388716, 38.853941], [-77.388024, 38.854062], [-77.387165, 38.854196], [-77.386771, 38.854162], [-77.386529, 38.854111], [-77.386343, 38.854055], [-77.386187, 38.853987], [-77.386127, 38.853954], [-77.386079, 38.85392], [-77.385986, 38.853839], [-77.385938, 38.853785], [-77.385904, 38.853738], [-77.385849, 38.853638], [-77.385829, 38.853585], [-77.385812, 38.853521], [-77.3858, 38.853402], [-77.385805, 38.853336], [-77.385817, 38.853271], [-77.38586, 38.853155], [-77.385888, 38.853105], [-77.385929, 38.853047], [-77.38601, 38.852959], [-77.386068, 38.85291], [-77.386119, 38.852873], [-77.386233, 38.85281], [-77.386292, 38.852784], [-77.386367, 38.852757], [-77.386444, 38.852736], [-77.386551, 38.852715], [-77.386695, 38.852705], [-77.38684, 38.852711], [-77.386899, 38.85272], [-77.386985, 38.852739], [-77.387131, 38.852784], [-77.387234, 38.852827], [-77.387327, 38.852872], [-77.387501, 38.852977], [-77.387596, 38.853046], [-77.387689, 38.853125], [-77.387869, 38.853301], [-77.388005, 38.8535], [-77.388211, 38.853861], [-77.388248, 38.853958], [-77.38834, 38.854202], [-77.388434, 38.854509], [-77.388512, 38.85483], [-77.388556, 38.855045], [-77.388563, 38.855077], [-77.388615, 38.855398], [-77.38864, 38.855726], [-77.388657, 38.85606], [-77.388632, 38.856494], [-77.388606, 38.856728], [-77.388546, 38.857062], [-77.388494, 38.857283], [-77.388383, 38.85759], [-77.388245, 38.857898], [-77.387962, 38.858392], [-77.387722, 38.858713], [-77.387587, 38.858842], [-77.387448, 38.858992], [-77.38738, 38.859049], [-77.387049, 38.859315], [-77.387001, 38.859355], [-77.386572, 38.859616], [-77.386057, 38.859876], [-77.385696, 38.860037], [-77.385104, 38.860297], [-77.384246, 38.860678], [-77.383311, 38.861091], [-77.382484, 38.861549], [-77.381927, 38.861964], [-77.381649, 38.862271], [-77.381472, 38.862656], [-77.38114, 38.86254], [-77.380676, 38.862336], [-77.380373, 38.862167], [-77.380144, 38.862016], [-77.379932, 38.861857], [-77.379724, 38.861669], [-77.379541, 38.861495], [-77.379299, 38.861256], [-77.379174, 38.86114], [-77.378963, 38.86097], [-77.378779, 38.860822], [-77.378622, 38.860715], [-77.378375, 38.860584], [-77.37825, 38.860526], [-77.377901, 38.860354], [-77.377674, 38.860258], [-77.377503, 38.860194], [-77.376982, 38.860031], [-77.376724, 38.859968], [-77.376465, 38.859908], [-77.376139, 38.859843], [-77.375957, 38.859809], [-77.375449, 38.859704], [-77.37477, 38.859591], [-77.373992, 38.859482], [-77.373385, 38.859411], [-77.373319, 38.859405], [-77.371684, 38.859251], [-77.371331, 38.859226], [-77.37112, 38.859211], [-77.371099, 38.85942], [-77.371098, 38.859619], [-77.371033, 38.860102], [-77.370993, 38.860407], [-77.370953, 38.86073], [-77.370894, 38.86095], [-77.370816, 38.861165], [-77.370757, 38.861296], [-77.370665, 38.861443], [-77.370575, 38.861587], [-77.370384, 38.861875], [-77.370116, 38.862301], [-77.369869, 38.862675], [-77.369695, 38.862937], [-77.369553, 38.863149], [-77.369282, 38.863562], [-77.369075, 38.863878], [-77.369003, 38.863978], [-77.368943, 38.864053], [-77.368872, 38.864143], [-77.368754, 38.864281], [-77.368648, 38.864383], [-77.368548, 38.86448], [-77.368413, 38.864611], [-77.368244, 38.864751], [-77.368139, 38.86483], [-77.368096, 38.864859], [-77.367962, 38.864949], [-77.367753, 38.865087], [-77.36752, 38.865221], [-77.36716, 38.865425], [-77.366916, 38.865565], [-77.366749, 38.865664], [-77.366693, 38.865696], [-77.366603, 38.865757], [-77.36621, 38.865941], [-77.365964, 38.866096], [-77.365677, 38.866275], [-77.365412, 38.86648], [-77.365205, 38.866666], [-77.365092, 38.866802], [-77.364926, 38.867027], [-77.364819, 38.867215], [-77.364795, 38.867271], [-77.364687, 38.867526], [-77.364631, 38.867731], [-77.364602, 38.867885], [-77.364585, 38.868103], [-77.364599, 38.86833], [-77.364602, 38.868416], [-77.364653, 38.868646], [-77.364749, 38.868903], [-77.364915, 38.869232], [-77.365031, 38.869489], [-77.36519, 38.869811], [-77.365353, 38.870145], [-77.365541, 38.870577], [-77.365608, 38.870714], [-77.36564, 38.87078], [-77.365767, 38.871048], [-77.365858, 38.871232], [-77.365914, 38.871335], [-77.366032, 38.871546], [-77.366196, 38.871805], [-77.366355, 38.872046], [-77.366507, 38.872259], [-77.366678, 38.872501], [-77.366856, 38.872754], [-77.366963, 38.872925], [-77.367022, 38.873039], [-77.367081, 38.873163], [-77.367145, 38.873344], [-77.367182, 38.87346], [-77.367204, 38.873534], [-77.367233, 38.873695], [-77.36726, 38.873889], [-77.367273, 38.874003], [-77.367165, 38.874012], [-77.366994, 38.874012], [-77.366779, 38.873999], [-77.366666, 38.873986], [-77.366501, 38.873968], [-77.366313, 38.873934], [-77.366155, 38.873897], [-77.365932, 38.873832], [-77.36562, 38.873728], [-77.365375, 38.873647], [-77.36552, 38.873752], [-77.365645, 38.873824], [-77.365759, 38.873875] ] } } ================================================ FILE: packages/turf-along/test.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { loadJsonFileSync } from "load-json-file"; import { Units, featureCollection } from "@turf/helpers"; import { along } from "./index.js"; import { Feature, LineString } from "geojson"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const line: Feature = loadJsonFileSync( path.join(__dirname, "test", "fixtures", "dc-line.geojson") ); test("turf-along", (t) => { const options: { units: Units } = { units: "miles" }; const pt1 = along(line, 1, options); const pt2 = along(line.geometry, 1.2, options); const pt3 = along(line, 1.4, options); const pt4 = along(line.geometry, 1.6, options); const pt5 = along(line, 1.8, options); const pt6 = along(line.geometry, 2, options); const pt7 = along(line, 100, options); const pt8 = along(line.geometry, 0, options); const fc = featureCollection([pt1, pt2, pt3, pt4, pt5, pt6, pt7, pt8]); fc.features.forEach((f) => { t.ok(f); t.equal(f.type, "Feature"); t.equal(f.geometry.type, "Point"); }); t.equal(fc.features.length, 8); t.equal(fc.features[7].geometry.coordinates[0], pt8.geometry.coordinates[0]); t.equal(fc.features[7].geometry.coordinates[1], pt8.geometry.coordinates[1]); t.end(); }); ================================================ FILE: packages/turf-along/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-angle/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-angle/README.md ================================================ # @turf/angle ## angle Finds the angle formed by two adjacent segments defined by 3 points. The result will be the (positive clockwise) angle with origin on the `startPoint-midPoint` segment, or its explementary angle if required. ### Parameters * `startPoint` **[Coord][1]** Start Point Coordinates * `midPoint` **[Coord][1]** Mid Point Coordinates * `endPoint` **[Coord][1]** End Point Coordinates * `options` **[Object][2]** Optional parameters (optional, default `{}`) * `options.explementary` **[boolean][3]** Returns the explementary angle instead (360 - angle) (optional, default `false`) * `options.mercator` **[boolean][3]** if calculations should be performed over Mercator or WGS84 projection (optional, default `false`) ### Examples ```javascript turf.angle([5, 5], [5, 6], [3, 4]); //=45 ``` Returns **[number][4]** Angle between the provided points, or its explementary. [1]: https://tools.ietf.org/html/rfc7946#section-3.1.1 [2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/angle ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ### Diagrams ![turf-angle](diagrams/turf-angle.png) ================================================ FILE: packages/turf-angle/bench.ts ================================================ import Benchmark from "benchmark"; import { angle } from "./index.js"; /** * Benchmark Results * * angle x 980,468 ops/sec ±1.30% (84 runs sampled) * angle -- meractor x 931,748 ops/sec ±1.27% (88 runs sampled) */ new Benchmark.Suite("turf-angle") .add("angle", () => angle([5, 5], [5, 6], [3, 4])) .add("angle -- mercator", () => angle([5, 5], [5, 6], [3, 4], { mercator: true }) ) .on("cycle", (e) => console.log(String(e.target))) .run(); ================================================ FILE: packages/turf-angle/index.ts ================================================ import { bearing } from "@turf/bearing"; import { bearingToAzimuth, Coord, isObject } from "@turf/helpers"; import { rhumbBearing } from "@turf/rhumb-bearing"; /** * Finds the angle formed by two adjacent segments defined by 3 points. The result will be the (positive clockwise) * angle with origin on the `startPoint-midPoint` segment, or its explementary angle if required. * * @function * @param {Coord} startPoint Start Point Coordinates * @param {Coord} midPoint Mid Point Coordinates * @param {Coord} endPoint End Point Coordinates * @param {Object} [options={}] Optional parameters * @param {boolean} [options.explementary=false] Returns the explementary angle instead (360 - angle) * @param {boolean} [options.mercator=false] if calculations should be performed over Mercator or WGS84 projection * @returns {number} Angle between the provided points, or its explementary. * @example * turf.angle([5, 5], [5, 6], [3, 4]); * //=45 */ function angle( startPoint: Coord, midPoint: Coord, endPoint: Coord, options: { explementary?: boolean; mercator?: boolean; } = {} ): number { // Optional Parameters if (!isObject(options)) { throw new Error("options is invalid"); } // Validation if (!startPoint) { throw new Error("startPoint is required"); } if (!midPoint) { throw new Error("midPoint is required"); } if (!endPoint) { throw new Error("endPoint is required"); } // Rename to shorter variables const A = startPoint; const O = midPoint; const B = endPoint; // Main const azimuthOA = bearingToAzimuth( options.mercator !== true ? bearing(O, A) : rhumbBearing(O, A) ); let azimuthOB = bearingToAzimuth( options.mercator !== true ? bearing(O, B) : rhumbBearing(O, B) ); // If OB "trails" OA advance OB one revolution so we get the clockwise angle. if (azimuthOB < azimuthOA) { azimuthOB = azimuthOB + 360; } const angleAOB = azimuthOB - azimuthOA; // Explementary angle if (options.explementary === true) { return 360 - angleAOB; } return angleAOB; } export { angle }; export default angle; ================================================ FILE: packages/turf-angle/package.json ================================================ { "name": "@turf/angle", "version": "7.3.4", "description": "Finds the angle formed by two adjacent segments.", "author": "Turf Authors", "contributors": [ "Denis <@DenisCarriere>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "angle" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@turf/distance": "workspace:*", "@turf/sector": "workspace:*", "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/bearing": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/rhumb-bearing": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-angle/test.ts ================================================ import test from "tape"; import { point, round } from "@turf/helpers"; import { angle } from "./index.js"; test("turf-angle -- across 0 bearing", (t) => { t.equal(round(angle([-1, 1], [0, 0], [1, 1])), 90, "90 degrees"); t.end(); }); test("turf-angle -- 90 degrees", (t) => { t.equal( round(angle([124, -17], [124, -22], [131, -22]), 6), 91.312527, "91.312527 degrees" ); t.equal( round(angle([124, -17], [124, -22], [131, -22], { explementary: true }), 6), 268.687473, "268.687473 degrees explementary" ); t.equal( round(angle([124, -17], [124, -22], [131, -22], { mercator: true }), 6), 90, "90 degrees mercator" ); t.equal( round( angle([124, -17], [124, -22], [131, -22], { explementary: true, mercator: true, }), 6 ), 270, "270 degrees explementary mercator" ); t.end(); }); test("turf-angle -- 180 degrees", (t) => { t.equal(round(angle([3, -1], [2, 0], [1, 1]), 6), 180, "180 degrees"); t.end(); }); test("turf-angle -- obtuse", (t) => { t.equal( round(angle([48.5, 5.5], [51.5, 12], [59, 15.5]), 6), 218.715175, "218.715175 degrees" ); t.equal( round( angle([48.5, 5.5], [51.5, 12], [59, 15.5], { explementary: true }), 6 ), 141.284825, "141.284825 degrees explementary" ); t.equal( round(angle([48.5, 5.5], [51.5, 12], [59, 15.5], { mercator: true }), 6), 219.826106, "219.826106 degrees mercator" ); t.equal( round( angle([48.5, 5.5], [51.5, 12], [59, 15.5], { explementary: true, mercator: true, }), 6 ), 140.173894, "140.173894 degrees explementary mercator" ); t.end(); }); test("turf-angle -- obtuse bigger", (t) => { t.equal( round(angle([48.5, 5.5], [51.5, 12], [46.5, 19]), 6), 121.330117, "121.330117 degrees" ); t.equal( round( angle([48.5, 5.5], [51.5, 12], [46.5, 19], { explementary: true }), 6 ), 238.669883, "238.669883 degrees explementary" ); t.equal( round(angle([48.5, 5.5], [51.5, 12], [46.5, 19], { mercator: true }), 6), 120.970546, "120.970546" ); t.equal( round( angle([48.5, 5.5], [51.5, 12], [46.5, 19], { explementary: true, mercator: true, }), 6 ), 239.029454, "239.029454 degrees explementary mercator" ); t.end(); }); test("turf-angle -- acute", (t) => { t.equal( round(angle([48.5, 5.5], [51.5, 12], [44.5, 10.5]), 6), 53.608314, "53.608314 degrees" ); t.equal( round( angle([48.5, 5.5], [51.5, 12], [44.5, 10.5], { explementary: true }), 6 ), 306.391686, "306.391686 degrees explementary" ); t.equal( round(angle([48.5, 5.5], [51.5, 12], [44.5, 10.5], { mercator: true }), 6), 53.166357, "53.166357 degrees mercator" ); t.equal( round( angle([48.5, 5.5], [51.5, 12], [44.5, 10.5], { explementary: true, mercator: true, }), 6 ), 306.833643, "306.833643 degrees explementary mercator" ); t.end(); }); test("turf-angle -- acute inverse", (t) => { t.equal( round(angle([44.5, 10.5], [51.5, 12], [48.5, 5.5]), 6), 306.391686, "306.391686 degrees" ); t.equal( round( angle([44.5, 10.5], [51.5, 12], [48.5, 5.5], { explementary: true }), 6 ), 53.608314, "53.608314 degrees explementary" ); t.equal( round(angle([44.5, 10.5], [51.5, 12], [48.5, 5.5], { mercator: true }), 6), 306.833643, "306.833643 degrees mercator" ); t.equal( round( angle([44.5, 10.5], [51.5, 12], [48.5, 5.5], { explementary: true, mercator: true, }), 6 ), 53.166357, "53.166357 degrees explementary mercator" ); t.end(); }); test("turf-angle -- simple", (t) => { t.equal(round(angle([5, 5], [5, 6], [3, 4])), 45, "45 degrees"); t.equal(round(angle([3, 4], [5, 6], [5, 5])), 315, "315 degrees -- inverse"); t.equal( round(angle([5, 5], [5, 6], [3, 4], { explementary: true })), 360 - 45, "explementary angle" ); t.end(); }); test("turf-angle -- issues", (t) => { const start = [167.72709868848324, -45.56543836343071]; const mid = [167.7269698586315, -45.56691059720167]; const end = [167.72687866352499, -45.566989345276355]; const a = angle(start, mid, end); t.false(isNaN(a), "result is not NaN"); t.end(); }); test("turf-angle -- throws", (t) => { const pt1 = point([-10, -30]); const pt2 = point([-11, -33]); const pt3 = point([-12, -36]); t.throws( () => angle(null, pt2, pt3), /startPoint is required/, "startPoint is required" ); t.throws( () => angle(pt1, undefined, pt3), /midPoint is required/, "midPoint is required" ); t.throws( () => angle(pt1, pt2), /endPoint is required/, "endPoint is required" ); t.throws( () => angle(pt1, pt2, pt3, "string"), /options is invalid/, "invalid options" ); t.end(); }); test("turf-angle -- 2703", (t) => { const start = [0, 1]; const mid = [0, 0]; const end = [1, 0]; const a = angle(start, mid, end); t.equal(a, 90, "90 clockwise"); const start2 = [0, 1]; const mid2 = [0, 0]; const end2 = [-1, 0]; const a2 = angle(start2, mid2, end2); t.equal(a2, 270, "270 clockwise"); t.end(); }); ================================================ FILE: packages/turf-angle/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-area/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-area/README.md ================================================ # @turf/area ## area Calculates the geodesic area in square meters of one or more polygons. ### Parameters * `geojson` **[GeoJSON][1]** input polygon(s) as [Geometry][2], [Feature][3], or [FeatureCollection][4] ### Examples ```javascript var polygon = turf.polygon([[[125, -15], [113, -22], [154, -27], [144, -15], [125, -15]]]); var area = turf.area(polygon); //addToMap var addToMap = [polygon] polygon.properties.area = area ``` Returns **[number][5]** area in square meters [1]: https://tools.ietf.org/html/rfc7946#section-3 [2]: https://tools.ietf.org/html/rfc7946#section-3.1 [3]: https://tools.ietf.org/html/rfc7946#section-3.2 [4]: https://tools.ietf.org/html/rfc7946#section-3.3 [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/area ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-area/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { area } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); // Define fixtures const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); /** * Benmark Results * * polygon x 8,510,024 ops/sec ±0.28% (96 runs sampled) */ // Define benchmark const suite = new Benchmark.Suite("turf-area"); for (const { name, geojson } of fixtures) { suite.add(name, () => area(geojson)); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-area/index.ts ================================================ import { Feature, FeatureCollection, Geometry } from "geojson"; import { earthRadius } from "@turf/helpers"; import { geomReduce } from "@turf/meta"; /** * Calculates the geodesic area in square meters of one or more polygons. * * @function * @param {GeoJSON} geojson input polygon(s) as {@link Geometry}, {@link Feature}, or {@link FeatureCollection} * @returns {number} area in square meters * @example * var polygon = turf.polygon([[[125, -15], [113, -22], [154, -27], [144, -15], [125, -15]]]); * * var area = turf.area(polygon); * * //addToMap * var addToMap = [polygon] * polygon.properties.area = area */ function area(geojson: Feature | FeatureCollection | Geometry) { return geomReduce( geojson, (value, geom) => { return value + calculateArea(geom); }, 0 ); } /** * Calculate Area * * @private * @param {Geometry} geom GeoJSON Geometries * @returns {number} area */ function calculateArea(geom: Geometry): number { let total = 0; let i; switch (geom.type) { case "Polygon": return polygonArea(geom.coordinates); case "MultiPolygon": for (i = 0; i < geom.coordinates.length; i++) { total += polygonArea(geom.coordinates[i]); } return total; case "Point": case "MultiPoint": case "LineString": case "MultiLineString": return 0; } return 0; } function polygonArea(coords: any) { let total = 0; if (coords && coords.length > 0) { total += Math.abs(ringArea(coords[0])); for (let i = 1; i < coords.length; i++) { total -= Math.abs(ringArea(coords[i])); } } return total; } /** * @private * A constant factor used to compute the area of a polygon. * It's derived from the square of the Earth's radius divided by 2. * * @type {number} */ const FACTOR = (earthRadius * earthRadius) / 2; /** * @private * A constant used for converting degrees to radians. * Represents the ratio of PI to 180. * * @type {number} */ const PI_OVER_180 = Math.PI / 180; /** * @private * Calculate the approximate area of the polygon were it projected onto the earth. * Note that this area will be positive if ring is oriented clockwise, otherwise it will be negative. * * Reference: * Robert. G. Chamberlain and William H. Duquette, "Some Algorithms for Polygons on a Sphere", * JPL Publication 07-03, Jet Propulsion * Laboratory, Pasadena, CA, June 2007 https://trs.jpl.nasa.gov/handle/2014/40409 * * @param {Array>} coords Ring Coordinates * @returns {number} The approximate signed geodesic area of the polygon in square meters. */ function ringArea(coords: number[][]): number { const coordsLength = coords.length - 1; if (coordsLength <= 2) return 0; let total = 0; let i = 0; while (i < coordsLength) { const lower = coords[i]; const middle = coords[i + 1 === coordsLength ? 0 : i + 1]; const upper = coords[i + 2 >= coordsLength ? (i + 2) % coordsLength : i + 2]; const lowerX = lower[0] * PI_OVER_180; const middleY = middle[1] * PI_OVER_180; const upperX = upper[0] * PI_OVER_180; total += (upperX - lowerX) * Math.sin(middleY); i++; } return total * FACTOR; } export { area }; export default area; ================================================ FILE: packages/turf-area/package.json ================================================ { "name": "@turf/area", "version": "7.3.4", "description": "Calculates the geodesic area in square meters of one or more polygons.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "area", "polygon", "multipolygon" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-area/test/in/polygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [125, -15], [113, -22], [117, -37], [130, -33], [148, -39], [154, -27], [144, -15], [125, -15] ] ] } } ================================================ FILE: packages/turf-area/test/out/polygon.json ================================================ 7748891609977 ================================================ FILE: packages/turf-area/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { area } from "./index.js"; import { polygon } from "@turf/helpers"; import { Polygon } from "geojson"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("turf-area", (t) => { for (const fixture of fixtures) { const name = fixture.name; const geojson = fixture.geojson; const results = Math.round(area(geojson)); if (process.env.REGEN) writeJsonFileSync(directories.out + name + ".json", results); t.equal(results, loadJsonFileSync(directories.out + name + ".json"), name); } t.end(); }); test("turf-area-length-check", (t) => { const invalidPoly: Polygon = { type: "Polygon", coordinates: [ [ [101.0, 0.0], [101.0, 0.5], [101.5, 0.5], ], ], }; const result = area(invalidPoly); t.equal(result, 0); t.end(); }); test("turf-area-rotation-consistency", (t) => { const rotatingPoly = polygon([ [ [28.321755510202507, 16.35627490376781], [20.424575867090823, 1.7575215418945476], [48.254218513706036, 20.42650462625916], [36.310934132380964, 14.226760576846956], [28.321755510202507, 16.35627490376781], ], ]); const result = area(rotatingPoly); const changingPoly = polygon([ [ [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0], ], ]); for (let i = 1; i < 5; i++) { changingPoly.geometry.coordinates[0][0] = rotatingPoly.geometry.coordinates[0][i]; changingPoly.geometry.coordinates[0][1] = rotatingPoly.geometry.coordinates[0][(i + 1) % 4]; changingPoly.geometry.coordinates[0][2] = rotatingPoly.geometry.coordinates[0][(i + 2) % 4]; changingPoly.geometry.coordinates[0][3] = rotatingPoly.geometry.coordinates[0][(i + 3) % 4]; changingPoly.geometry.coordinates[0][4] = rotatingPoly.geometry.coordinates[0][i]; const curResult = area(changingPoly); t.equal(result, curResult); } t.end(); }); ================================================ FILE: packages/turf-area/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-bbox/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-bbox/README.md ================================================ # @turf/bbox ## bbox Calculates the bounding box for any GeoJSON object, including FeatureCollection. Uses geojson.bbox if available and options.recompute is not set. ### Parameters * `geojson` **[GeoJSON][1]** any GeoJSON object * `options` **[Object][2]** Optional parameters (optional, default `{}`) * `options.recompute` **[boolean][3]?** Whether to ignore an existing bbox property on geojson ### Examples ```javascript var line = turf.lineString([[-74, 40], [-78, 42], [-82, 35]]); var bbox = turf.bbox(line); var bboxPolygon = turf.bboxPolygon(bbox); //addToMap var addToMap = [line, bboxPolygon] ``` Returns **[BBox][4]** bbox extent in \[minX, minY, maxX, maxY] order [1]: https://tools.ietf.org/html/rfc7946#section-3 [2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean [4]: https://tools.ietf.org/html/rfc7946#section-5 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/bbox ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-bbox/bench.ts ================================================ import Benchmark from "benchmark"; import { lineString } from "@turf/helpers"; import { bbox } from "./index.js"; const line = lineString([ [-74, 40], [-78, 42], [-82, 35], ]); /** * Benchmark Results * */ new Benchmark.Suite("turf-bbox") .add("line", () => bbox(line)) .on("cycle", (e) => console.log(String(e.target))) .run(); ================================================ FILE: packages/turf-bbox/index.ts ================================================ import { BBox } from "geojson"; import { AllGeoJSON } from "@turf/helpers"; import { coordEach } from "@turf/meta"; /** * Calculates the bounding box for any GeoJSON object, including FeatureCollection. * Uses geojson.bbox if available and options.recompute is not set. * * @function * @param {GeoJSON} geojson any GeoJSON object * @param {Object} [options={}] Optional parameters * @param {boolean} [options.recompute] Whether to ignore an existing bbox property on geojson * @returns {BBox} bbox extent in [minX, minY, maxX, maxY] order * @example * var line = turf.lineString([[-74, 40], [-78, 42], [-82, 35]]); * var bbox = turf.bbox(line); * var bboxPolygon = turf.bboxPolygon(bbox); * * //addToMap * var addToMap = [line, bboxPolygon] */ function bbox( geojson: AllGeoJSON, options: { recompute?: boolean; } = {} ): BBox { if (geojson.bbox != null && true !== options.recompute) { return geojson.bbox; } const result: BBox = [Infinity, Infinity, -Infinity, -Infinity]; coordEach(geojson, (coord) => { if (result[0] > coord[0]) { result[0] = coord[0]; } if (result[1] > coord[1]) { result[1] = coord[1]; } if (result[2] < coord[0]) { result[2] = coord[0]; } if (result[3] < coord[1]) { result[3] = coord[1]; } }); return result; } export { bbox }; export default bbox; ================================================ FILE: packages/turf-bbox/package.json ================================================ { "name": "@turf/bbox", "version": "7.3.4", "description": "Generates a bounding box around a GeoJSON feature.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "extent", "bbox", "polygon", "featurecollection", "geojson" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-bbox/test.ts ================================================ import test from "tape"; import { point, polygon, feature, lineString, multiPolygon, multiLineString, featureCollection, } from "@turf/helpers"; import { bbox } from "./index.js"; // Fixtures const pt = point([102.0, 0.5]); const line = lineString([ [102.0, -10.0], [103.0, 1.0], [104.0, 0.0], [130.0, 4.0], ]); const poly = polygon([ [ [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0], [101.0, 0.0], ], ]); const multiLine = multiLineString([ [ [100.0, 0.0], [101.0, 1.0], ], [ [102.0, 2.0], [103.0, 3.0], ], ]); const multiPoly = multiPolygon([ [ [ [102.0, 2.0], [103.0, 2.0], [103.0, 3.0], [102.0, 3.0], [102.0, 2.0], ], ], [ [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0], ], [ [100.2, 0.2], [100.8, 0.2], [100.8, 0.8], [100.2, 0.8], [100.2, 0.2], ], ], ]); const fc = featureCollection([pt, line, poly, multiLine, multiPoly]); test("bbox", (t) => { // FeatureCollection const fcBBox = bbox(fc); t.deepEqual(fcBBox, [100, -10, 130, 4], "featureCollection"); // Point const ptBBox = bbox(pt); t.deepEqual(ptBBox, [102, 0.5, 102, 0.5], "point"); // Line const lineBBox = bbox(line); t.deepEqual(lineBBox, [102, -10, 130, 4], "lineString"); // Polygon const polyExtent = bbox(poly); t.deepEqual(polyExtent, [100, 0, 101, 1], "polygon"); // MultiLineString const multiLineBBox = bbox(multiLine); t.deepEqual(multiLineBBox, [100, 0, 103, 3], "multiLineString"); // MultiPolygon const multiPolyBBox = bbox(multiPoly); t.deepEqual(multiPolyBBox, [100, 0, 103, 3], "multiPolygon"); t.deepEqual(bbox({ ...pt, bbox: [] }), [], "uses built-in bbox by default"); t.deepEqual( bbox({ ...pt, bbox: [] }, { recompute: true }), [102, 0.5, 102, 0.5], "recomputes bbox with recompute option" ); t.end(); }); test("bbox -- throws", (t) => { t.throws( () => bbox({}), /Unknown Geometry Type/, "unknown geometry type error" ); t.end(); }); test("bbox -- null geometries", (t) => { t.deepEqual(bbox(feature(null)), [Infinity, Infinity, -Infinity, -Infinity]); t.end(); }); ================================================ FILE: packages/turf-bbox/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-bbox-clip/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-bbox-clip/README.md ================================================ # @turf/bbox-clip ## bboxClip Takes a [Feature][1] and a bbox and clips the feature to the bbox using [lineclip][2]. May result in degenerate edges when clipping Polygons. ### Parameters * `feature` **[Feature][1]<([LineString][3] | [MultiLineString][4] | [Polygon][5] | [MultiPolygon][6])>** feature to clip to the bbox * `bbox` **[BBox][7]** extent in \[minX, minY, maxX, maxY] order ### Examples ```javascript var bbox = [0, 0, 10, 10]; var poly = turf.polygon([[[2, 2], [8, 4], [12, 8], [3, 7], [2, 2]]]); var clipped = turf.bboxClip(poly, bbox); //addToMap var addToMap = [bbox, poly, clipped] ``` Returns **[Feature][1]<([LineString][3] | [MultiLineString][4] | [Polygon][5] | [MultiPolygon][6])>** clipped Feature [1]: https://tools.ietf.org/html/rfc7946#section-3.2 [2]: https://github.com/mapbox/lineclip [3]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [4]: https://tools.ietf.org/html/rfc7946#section-3.1.5 [5]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [6]: https://tools.ietf.org/html/rfc7946#section-3.1.7 [7]: https://tools.ietf.org/html/rfc7946#section-5 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/bbox-clip ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-bbox-clip/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { bbox } from "@turf/bbox"; import { bboxClip } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); /** * Benchmark Results * * linestring-single-line x 1,065,073 ops/sec ±1.11% (90 runs sampled) * linestring x 56,599 ops/sec ±1.17% (90 runs sampled) * multi-linestring x 859,048 ops/sec ±1.01% (91 runs sampled) * multi-polygon x 26,991 ops/sec ±0.87% (94 runs sampled) * polygon-crossing-hole x 25,277 ops/sec ±0.72% (92 runs sampled) * polygon-holes x 27,233 ops/sec ±0.89% (91 runs sampled) * polygon x 21,339 ops/sec ±1.19% (89 runs sampled) */ const suite = new Benchmark.Suite("turf-bbox-clip"); for (const { name, geojson } of fixtures) { suite.add(name, () => bboxClip(geojson.features[0], bbox(geojson.features[1])) ); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-bbox-clip/index.ts ================================================ import { BBox, Feature, LineString, MultiLineString, MultiPolygon, GeoJsonProperties, Polygon, } from "geojson"; import { lineString, multiLineString, multiPolygon, polygon, } from "@turf/helpers"; import { getGeom } from "@turf/invariant"; import { lineclip, polygonclip } from "./lib/lineclip.js"; /** * Takes a {@link Feature} and a bbox and clips the feature to the bbox using * [lineclip](https://github.com/mapbox/lineclip). * May result in degenerate edges when clipping Polygons. * * @function * @param {Feature} feature feature to clip to the bbox * @param {BBox} bbox extent in [minX, minY, maxX, maxY] order * @returns {Feature} clipped Feature * @example * var bbox = [0, 0, 10, 10]; * var poly = turf.polygon([[[2, 2], [8, 4], [12, 8], [3, 7], [2, 2]]]); * * var clipped = turf.bboxClip(poly, bbox); * * //addToMap * var addToMap = [bbox, poly, clipped] */ function bboxClip< G extends Polygon | MultiPolygon | LineString | MultiLineString, P extends GeoJsonProperties = GeoJsonProperties, >(feature: Feature | G, bbox: BBox) { const geom = getGeom(feature); const type = geom.type; const properties = feature.type === "Feature" ? feature.properties : {}; let coords: any[] = geom.coordinates; switch (type) { case "LineString": case "MultiLineString": { const lines: any[] = []; if (type === "LineString") { coords = [coords]; } coords.forEach((line) => { lineclip(line, bbox, lines); }); if (lines.length === 1) { return lineString(lines[0], properties); } return multiLineString(lines, properties); } case "Polygon": return polygon(clipPolygon(coords, bbox), properties); case "MultiPolygon": return multiPolygon( coords.map((poly) => { return clipPolygon(poly, bbox); }), properties ); default: throw new Error("geometry " + type + " not supported"); } } function clipPolygon(rings: number[][][], bbox: BBox) { const outRings = []; for (const ring of rings) { const clipped = polygonclip(ring, bbox); if (clipped.length > 0) { if ( clipped[0][0] !== clipped[clipped.length - 1][0] || clipped[0][1] !== clipped[clipped.length - 1][1] ) { clipped.push(clipped[0]); } if (clipped.length >= 4) { outRings.push(clipped); } } } return outRings; } export { bboxClip }; export default bboxClip; ================================================ FILE: packages/turf-bbox-clip/lib/lineclip.ts ================================================ // Cohen-Sutherland line clipping algorithm, adapted to efficiently // handle polylines rather than just segments import { BBox } from "geojson"; export function lineclip( points: number[][], bbox: BBox, result?: number[][][] ): number[][][] { var len = points.length, codeA = bitCode(points[0], bbox), part = [] as number[][], i, codeB, lastCode; let a: number[]; let b: number[]; if (!result) result = []; for (i = 1; i < len; i++) { a = points[i - 1]; b = points[i]; codeB = lastCode = bitCode(b, bbox); while (true) { if (!(codeA | codeB)) { // accept part.push(a); if (codeB !== lastCode) { // segment went outside part.push(b); if (i < len - 1) { // start a new line result.push(part); part = []; } } else if (i === len - 1) { part.push(b); } break; } else if (codeA & codeB) { // trivial reject break; } else if (codeA) { // a outside, intersect with clip edge a = intersect(a, b, codeA, bbox)!; codeA = bitCode(a, bbox); } else { // b outside b = intersect(a, b, codeB, bbox)!; codeB = bitCode(b, bbox); } } codeA = lastCode; } if (part.length) result.push(part); return result; } // Sutherland-Hodgeman polygon clipping algorithm export function polygonclip(points: number[][], bbox: BBox): number[][] { var result: number[][], edge, prev, prevInside, i, p, inside; // clip against each side of the clip rectangle for (edge = 1; edge <= 8; edge *= 2) { result = []; prev = points[points.length - 1]; prevInside = !(bitCode(prev, bbox) & edge); for (i = 0; i < points.length; i++) { p = points[i]; inside = !(bitCode(p, bbox) & edge); // if segment goes through the clip window, add an intersection if (inside !== prevInside) result.push(intersect(prev, p, edge, bbox)!); if (inside) result.push(p); // add a point if it's inside prev = p; prevInside = inside; } points = result; if (!points.length) break; } return result!; } // intersect a segment against one of the 4 lines that make up the bbox function intersect( a: number[], b: number[], edge: number, bbox: BBox ): number[] | null { return edge & 8 ? [a[0] + ((b[0] - a[0]) * (bbox[3] - a[1])) / (b[1] - a[1]), bbox[3]] // top : edge & 4 ? [a[0] + ((b[0] - a[0]) * (bbox[1] - a[1])) / (b[1] - a[1]), bbox[1]] // bottom : edge & 2 ? [bbox[2], a[1] + ((b[1] - a[1]) * (bbox[2] - a[0])) / (b[0] - a[0])] // right : edge & 1 ? [bbox[0], a[1] + ((b[1] - a[1]) * (bbox[0] - a[0])) / (b[0] - a[0])] // left : null; } // bit code reflects the point position relative to the bbox: // left mid right // top 1001 1000 1010 // mid 0001 0000 0010 // bottom 0101 0100 0110 function bitCode(p: number[], bbox: BBox) { var code = 0; if (p[0] < bbox[0]) code |= 1; // left else if (p[0] > bbox[2]) code |= 2; // right if (p[1] < bbox[1]) code |= 4; // bottom else if (p[1] > bbox[3]) code |= 8; // top return code; } ================================================ FILE: packages/turf-bbox-clip/package.json ================================================ { "name": "@turf/bbox-clip", "version": "7.3.4", "description": "Takes a Feature and a bbox and clips the feature to the bbox using lineclip.", "author": "Turf Authors", "contributors": [ "Tim Channell <@tcql>", "Vladimir Agafonkin <@mourner>", "Denis Carriere <@DenisCarriere>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "geojson", "gis", "bbox", "clip" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@turf/bbox": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-bbox-clip/test/in/linestring-single-line.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-77.1240234375, 39.51251701659638], [-77.618408203125, 39.24927084622338], [-77.0855712890625, 38.886757140695906] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-77.72552490234374, 39.095962936305476], [-77.0361328125, 39.095962936305476], [-77.0361328125, 39.59722324495565], [-77.72552490234374, 39.59722324495565], [-77.72552490234374, 39.095962936305476] ] ] } } ] } ================================================ FILE: packages/turf-bbox-clip/test/in/linestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "geometry": { "type": "LineString", "coordinates": [ [-78.869276, 38.762991], [-78.835191, 38.811499], [-78.808181, 38.856175], [-78.788031, 38.885123], [-78.779198, 38.892298], [-78.757278, 38.903203], [-78.719806, 38.922638], [-78.719755, 38.922135], [-78.716956, 38.916273], [-78.714135, 38.911176], [-78.710949, 38.910175], [-78.601655, 38.964603], [-78.557647, 39.013189], [-78.554222, 39.019672], [-78.565837, 39.026303], [-78.571901, 39.031995], [-78.544111, 39.056676], [-78.508132, 39.08863], [-78.459869, 39.113351], [-78.439429, 39.132146], [-78.418377, 39.156656], [-78.41074, 39.171983], [-78.426722, 39.188903], [-78.438651, 39.198049], [-78.437053, 39.199766], [-78.43213, 39.204717], [-78.431167, 39.205744], [-78.429803, 39.207014], [-78.427911, 39.208611], [-78.423968, 39.212049], [-78.399669, 39.243874], [-78.399785, 39.244129], [-78.360035, 39.317771], [-78.35894, 39.319484], [-78.34048, 39.353492], [-78.362267, 39.357784], [-78.347087, 39.466012], [-78.228766, 39.391233], [-78.033185, 39.264626], [-78.033183, 39.264624], [-78.032841, 39.264403], [-77.828157, 39.132329], [-77.822182, 39.139985], [-77.771415, 39.236776], [-77.767277, 39.24938], [-77.768992, 39.256417], [-77.768, 39.257657], [-77.761768, 39.263031], [-77.761217, 39.263721], [-77.758733, 39.268114], [-77.758412, 39.269197], [-77.755698, 39.274575], [-77.755193, 39.275191], [-77.753105, 39.27734], [-77.75306, 39.277971], [-77.753357, 39.280331], [-77.750267, 39.289284], [-77.719029, 39.321125], [-77.677505, 39.318699], [-77.667749, 39.318129], [-77.592739, 39.30129], [-77.560854, 39.286152], [-77.545846, 39.271535], [-77.543228, 39.266937], [-77.534461, 39.262361], [-77.511222, 39.2535], [-77.484605, 39.245941], [-77.46021, 39.228359], [-77.45768, 39.22502], [-77.458779, 39.22028], [-77.458884, 39.219826], [-77.478596, 39.189168], [-77.485971, 39.185665], [-77.505162, 39.18205], [-77.510631, 39.178484], [-77.516426, 39.170891], [-77.527282, 39.146236], [-77.524559, 39.127821], [-77.519929, 39.120925], [-77.458202, 39.073723], [-77.42318, 39.066878], [-77.375079, 39.061297], [-77.340287, 39.062991], [-77.328002, 39.058554], [-77.291605, 39.045408], [-77.261403, 39.031009], [-77.251803, 39.011409], [-77.255703, 39.002409], [-77.249803, 38.985909], [-77.235403, 38.97661], [-77.221502, 38.97131], [-77.197502, 38.96681], [-77.166901, 38.96811], [-77.148179, 38.965002], [-77.137701, 38.95531], [-77.1199, 38.934311], [-77.119863, 38.934265], [-77.1012, 38.911111], [-77.0902, 38.904211], [-77.068199, 38.899811], [-77.040599, 38.871212], [-77.031698, 38.850512], [-77.032986, 38.8395], [-77.038598, 38.791513], [-77.039239, 38.7852], [-77.041398, 38.763914], [-77.05991, 38.734419], [-77.074599, 38.711015], [-77.086113, 38.705792], [-77.1059, 38.696815], [-77.121101, 38.686616], [-77.132501, 38.673816], [-77.135901, 38.649817], [-77.1302, 38.635017], [-77.157501, 38.636417], [-77.174902, 38.624217], [-77.202002, 38.617217], [-77.204302, 38.617817], [-77.205103, 38.623917], [-77.216303, 38.637817], [-77.22235, 38.638091], [-77.240604, 38.638917], [-77.246704, 38.635217], [-77.248904, 38.628617], [-77.245104, 38.620717], [-77.246441, 38.599532], [-77.247003, 38.590618], [-77.26443, 38.582845], [-77.265304, 38.580319], [-77.26083, 38.56533], [-77.276603, 38.54712], [-77.276303, 38.53962], [-77.283503, 38.525221], [-77.291103, 38.515721], [-77.29582, 38.511457], [-77.298844, 38.508724], [-77.300776, 38.506978], [-77.302457, 38.504683], [-77.310334, 38.493926], [-77.322622, 38.467131], [-77.32544, 38.44885], [-77.319036, 38.417803], [-77.310719, 38.397669], [-77.312201, 38.390958], [-77.314848, 38.389579], [-77.317288, 38.383576], [-77.296077, 38.369797], [-77.288145, 38.359477], [-77.28835, 38.351286], [-77.286202, 38.347025], [-77.286202, 38.347024], [-77.279633, 38.339444], [-77.265295, 38.333165], [-77.240072, 38.331598], [-77.199433, 38.34089], [-77.17934, 38.341915], [-77.162692, 38.345994], [-77.155191, 38.351047], [-77.138224, 38.367917], [-77.104717, 38.369655], [-77.094665, 38.367715], [-77.08481, 38.368297], [-77.069956, 38.377895], [-77.056032, 38.3962], [-77.051437, 38.399083], [-77.043526, 38.400548], [-77.024866, 38.386791], [-77.011827, 38.374554], [-77.016932, 38.341697], [-77.020947, 38.329273], [-77.030683, 38.311623], [-77.026304, 38.302685], [-76.99767, 38.278047], [-76.990255, 38.273935], [-76.981372, 38.274214], [-76.96215, 38.256486], [-76.957796, 38.243183], [-76.957417, 38.236341], [-76.962375, 38.230093], [-76.966553, 38.229542], [-76.967335, 38.227185], [-76.962311, 38.214075], [-76.937134, 38.202384], [-76.916922, 38.199751], [-76.910832, 38.197073], [-76.875272, 38.172207], [-76.838795, 38.163476], [-76.824274, 38.163639], [-76.802968, 38.167988], [-76.788445, 38.169199], [-76.760241, 38.166581], [-76.749685, 38.162114], [-76.743064, 38.156988], [-76.740278, 38.152824], [-76.738938, 38.14651], [-76.721722, 38.137635], [-76.704048, 38.149264], [-76.701297, 38.155718], [-76.684892, 38.156497], [-76.665127, 38.147638], [-76.643448, 38.14825], [-76.638983, 38.151476], [-76.629476, 38.15305], [-76.613939, 38.148587], [-76.604131, 38.128771], [-76.600937, 38.110084], [-76.579497, 38.09487], [-76.543155, 38.076971], [-76.535919, 38.069532], [-76.522354, 38.04259], [-76.519536, 38.034814], [-76.516547, 38.026566], [-76.491998, 38.017222], [-76.469343, 38.013544], [-76.465291, 38.010226], [-76.462542, 37.998572], [-76.427487, 37.977038], [-76.416299, 37.966828], [-76.391439, 37.958742], [-76.360211, 37.952329], [-76.343848, 37.947345], [-76.265998, 37.91138], [-76.236725, 37.889174], [-76.245072, 37.861918], [-76.251358, 37.833072], [-76.266057, 37.8174], [-76.275178, 37.812664], [-76.280544, 37.812597], [-76.282592, 37.814109], [-76.281985, 37.818068], [-76.284904, 37.822308], [-76.293525, 37.822717], [-76.307482, 37.81235], [-76.310307, 37.794849], [-76.306489, 37.788646], [-76.312108, 37.750522], [-76.304917, 37.729913], [-76.312858, 37.720338], [-76.302803, 37.704474], [-76.300067, 37.695364], [-76.302545, 37.689], [-76.312079, 37.684651], [-76.315161, 37.68472], [-76.320216, 37.680666], [-76.324808, 37.676983], [-76.339892, 37.655966], [-76.332562, 37.645817], [-76.306464, 37.642005], [-76.292534, 37.636098], [-76.287959, 37.631771], [-76.279447, 37.618225], [-76.28037, 37.613715], [-76.309174, 37.621892], [-76.36232, 37.610368], [-76.381106, 37.627003], [-76.390054, 37.630326], [-76.399236, 37.628636], [-76.443254, 37.652347], [-76.472392, 37.665772], [-76.489576, 37.666201], [-76.491799, 37.663614], [-76.497564, 37.647056], [-76.501522, 37.643762], [-76.510187, 37.642324], [-76.536548, 37.663574], [-76.537698, 37.66893], [-76.535302, 37.687516], [-76.537228, 37.698892], [-76.54005, 37.704432], [-76.560476, 37.727827], [-76.576387, 37.757493], [-76.584289, 37.76889], [-76.593835, 37.772848], [-76.595939, 37.77168], [-76.602024, 37.772731], [-76.615351, 37.780759], [-76.642276, 37.792317], [-76.651413, 37.796239], [-76.658302, 37.806815], [-76.680197, 37.825654], [-76.692747, 37.82277], [-76.701606, 37.822677], [-76.722156, 37.83668], [-76.72718, 37.842263], [-76.733046, 37.852009], [-76.738395, 37.865373], [-76.747552, 37.875864], [-76.765711, 37.879274], [-76.77539, 37.874306], [-76.784618, 37.869569], [-76.782826, 37.863184], [-76.766328, 37.840437], [-76.7512, 37.824141], [-76.734309, 37.79866], [-76.723863, 37.788503], [-76.715498, 37.785873], [-76.689773, 37.78519], [-76.683775, 37.781391], [-76.681901, 37.778118], [-76.683343, 37.775783], [-76.683359, 37.770258], [-76.683372, 37.765507], [-76.680922, 37.759647], [-76.677002, 37.7561], [-76.663887, 37.751887], [-76.639962, 37.750941], [-76.61971, 37.744795], [-76.617373, 37.742347], [-76.621433, 37.737973], [-76.61997, 37.731271], [-76.606466, 37.724819], [-76.597213, 37.717269], [-76.595943, 37.712989], [-76.598073, 37.70912], [-76.597868, 37.702918], [-76.579591, 37.671508], [-76.583143, 37.661986], [-76.574049, 37.646781], [-76.542666, 37.616857], [-76.533777, 37.61253], [-76.527188, 37.611315], [-76.435474, 37.612807], [-76.420252, 37.598686], [-76.410781, 37.581815], [-76.383188, 37.573056], [-76.357835, 37.573699], [-76.332641, 37.570042], [-76.300144, 37.561734], [-76.29796, 37.557636], [-76.302762, 37.551295], [-76.330598, 37.536391], [-76.339989, 37.53833], [-76.348992, 37.536548], [-76.355084, 37.527364], [-76.360474, 37.51924], [-76.359378, 37.513426], [-76.352678, 37.504913], [-76.32947, 37.49492], [-76.306952, 37.497488], [-76.297739, 37.506863], [-76.296445, 37.511235], [-76.298456, 37.512677], [-76.297651, 37.515424], [-76.293599, 37.516499], [-76.288167, 37.514118], [-76.281043, 37.507821], [-76.265056, 37.481365], [-76.252415, 37.447274], [-76.250454, 37.421886], [-76.246617, 37.404122], [-76.245283, 37.386839], [-76.24846, 37.375135], [-76.258277, 37.36202], [-76.262407, 37.360786], [-76.264847, 37.357399], [-76.272888, 37.335174], [-76.272005, 37.322194], [-76.275552, 37.309964], [-76.282555, 37.319107], [-76.291324, 37.324145], [-76.308581, 37.329366], [-76.31205, 37.338088], [-76.337476, 37.364014], [-76.366751, 37.374495], [-76.387112, 37.385061], [-76.391437, 37.390284], [-76.393958, 37.39594], [-76.393125, 37.398068], [-76.404756, 37.400213], [-76.415167, 37.402133], [-76.418719, 37.3978], [-76.418176, 37.385064], [-76.422503, 37.381355], [-76.437525, 37.37975], [-76.445333, 37.36646], [-76.434965, 37.354524], [-76.406388, 37.332924], [-76.38777, 37.30767], [-76.385603, 37.294108], [-76.381075, 37.28534], [-76.369029, 37.279311], [-76.352556, 37.278334], [-76.349489, 37.273963], [-76.36229, 37.270226], [-76.392788, 37.264973], [-76.417173, 37.26395], [-76.421765, 37.255198], [-76.429141, 37.25331], [-76.475927, 37.250543], [-76.48284, 37.254831], [-76.493302, 37.24947], [-76.4989, 37.241015], [-76.50364, 37.233856], [-76.494008, 37.225408], [-76.471799, 37.216016], [-76.394132, 37.22515], [-76.389793, 37.222981], [-76.3936, 37.214049], [-76.396052, 37.201087], [-76.389284, 37.193503], [-76.391252, 37.179887], [-76.397883, 37.164415], [-76.399659, 37.160272], [-76.394756, 37.157568], [-76.381379, 37.155711], [-76.375255, 37.16084], [-76.35969, 37.16858], [-76.348658, 37.170655], [-76.343234, 37.166207], [-76.344898, 37.164479], [-76.34405, 37.160367], [-76.340129, 37.151823], [-76.334017, 37.144223], [-76.330481, 37.141727], [-76.324353, 37.142895], [-76.311088, 37.138495], [-76.292344, 37.126615], [-76.287236, 37.117453], [-76.274463, 37.094544], [-76.271262, 37.084544], [-76.292863, 37.035145], [-76.300352, 37.00885], [-76.304272, 37.001378], [-76.312048, 37.000371], [-76.315008, 37.001683], [-76.314624, 37.00933], [-76.318065, 37.013846], [-76.329531, 37.014556], [-76.34011, 37.015212], [-76.340666, 37.015246], [-76.348066, 37.006747], [-76.356366, 37.002947], [-76.373567, 36.998347], [-76.383367, 36.993347], [-76.387711, 36.989671], [-76.396368, 36.982347], [-76.408568, 36.969147], [-76.411768, 36.962847], [-76.418969, 36.964047], [-76.428869, 36.969947], [-76.452118, 36.998163], [-76.452461, 37.004603], [-76.449891, 37.004868], [-76.448231, 37.007705], [-76.464471, 37.027547], [-76.46949, 37.030414], [-76.507614, 37.052188], [-76.509339, 37.053173], [-76.512289, 37.054858], [-76.518242, 37.055351], [-76.526273, 37.062947], [-76.527973, 37.068247], [-76.526573, 37.070047], [-76.526203, 37.077773], [-76.528997, 37.079388], [-76.536875, 37.083942], [-76.555066, 37.075859], [-76.564219, 37.077507], [-76.567931, 37.080467], [-76.579499, 37.096627], [-76.618252, 37.119347], [-76.62478, 37.127091], [-76.622252, 37.142146], [-76.617084, 37.144498], [-76.604476, 37.160034], [-76.606684, 37.166674], [-76.610972, 37.166994], [-76.611018, 37.167097], [-76.612517, 37.170486], [-76.613599, 37.172931], [-76.614221, 37.174335], [-76.616268, 37.178962], [-76.616804, 37.18126], [-76.617537, 37.184409], [-76.618008, 37.186429], [-76.61934, 37.192146], [-76.619962, 37.193184], [-76.621113, 37.195103], [-76.623292, 37.198738], [-76.629868, 37.206738], [-76.639608, 37.214783], [-76.641085, 37.216002], [-76.649869, 37.220914], [-76.689166, 37.222866], [-76.693373, 37.221228], [-76.698943, 37.219059], [-76.730951, 37.213813], [-76.73432, 37.204211], [-76.74, 37.195379], [-76.74304, 37.192611], [-76.75047, 37.190098], [-76.757765, 37.191658], [-76.773752, 37.206061], [-76.780532, 37.209336], [-76.791555, 37.207564], [-76.801023, 37.206043], [-76.803198, 37.201513], [-76.802511, 37.198308], [-76.796905, 37.189404], [-76.756899, 37.161582], [-76.747632, 37.150548], [-76.73728, 37.146164], [-76.73032, 37.145395], [-76.715295, 37.148035], [-76.696735, 37.174403], [-76.692926, 37.186147], [-76.691918, 37.195731], [-76.685614, 37.198851], [-76.669886, 37.183571], [-76.663774, 37.173875], [-76.66427, 37.171027], [-76.66867, 37.166771], [-76.67147, 37.158739], [-76.671588, 37.14206], [-76.669604, 37.140534], [-76.666542, 37.138179], [-76.665833, 37.136098], [-76.665641, 37.135534], [-76.66375, 37.129979], [-76.656894, 37.109843], [-76.657101, 37.107617], [-76.657703, 37.101161], [-76.65811, 37.096787], [-76.659394, 37.094019], [-76.66555, 37.080746], [-76.666526, 37.078643], [-76.667219, 37.077149], [-76.667646, 37.076228], [-76.668295, 37.072656], [-76.669118, 37.068132], [-76.669822, 37.06426], [-76.66835, 37.05506], [-76.662558, 37.045748], [-76.653998, 37.039172], [-76.646013, 37.036228], [-76.612124, 37.035604], [-76.586491, 37.02874], [-76.584478, 37.027349], [-76.579393, 37.023835], [-76.579236, 37.023726], [-76.57816, 37.022982], [-76.577531, 37.022548], [-76.576617, 37.021374], [-76.565803, 37.007493], [-76.562923, 37.003796], [-76.551246, 36.998946], [-76.524853, 36.983833], [-76.522971, 36.981085], [-76.524142, 36.978316], [-76.521006, 36.973187], [-76.513363, 36.968057], [-76.500355, 36.965212], [-76.487559, 36.952372], [-76.484107, 36.928916], [-76.482407, 36.917364], [-76.482135, 36.901108], [-76.483369, 36.896239], [-76.469914, 36.882898], [-76.454692, 36.884077], [-76.45329, 36.887031], [-76.453941, 36.89274], [-76.447413, 36.90322], [-76.441605, 36.906116], [-76.43122, 36.904532], [-76.407507, 36.897444], [-76.406908, 36.897507], [-76.387567, 36.899547], [-76.385867, 36.923247], [-76.353765, 36.922747], [-76.345569, 36.924531], [-76.344663, 36.919313], [-76.333158, 36.917293], [-76.328864, 36.918447], [-76.330765, 36.938647], [-76.327365, 36.959447], [-76.322764, 36.959147], [-76.315867, 36.955351], [-76.299364, 36.965547], [-76.297663, 36.968147], [-76.285063, 36.968747], [-76.267962, 36.964547], [-76.234961, 36.945147], [-76.22166, 36.939547], [-76.189959, 36.931447], [-76.177019, 36.92929], [-76.139557, 36.923047], [-76.095508, 36.908817], [-76.087955, 36.908647], [-76.058154, 36.916947], [-76.043054, 36.927547], [-76.033454, 36.931946], [-76.013753, 36.930746], [-76.007553, 36.929047], [-75.996252, 36.922047], [-75.991552, 36.910847], [-75.972151, 36.842268], [-75.965451, 36.812449], [-75.94955, 36.76115], [-75.921748, 36.692051], [-75.890946, 36.630753], [-75.874145, 36.583853], [-75.867044, 36.550754], [-75.879744, 36.550754], [-75.880644, 36.550754], [-75.885945, 36.550754], [-75.886545, 36.550754], [-75.891945, 36.550754], [-75.893245, 36.550654], [-75.894145, 36.550754], [-75.903445, 36.550654], [-75.904745, 36.550654], [-75.909046, 36.550654], [-75.911446, 36.550654], [-75.922046, 36.550654], [-75.952847, 36.550553], [-75.953447, 36.550553], [-75.955748, 36.550553], [-75.957648, 36.550553], [-76.02675, 36.550553], [-76.034751, 36.550653], [-76.12236, 36.550621], [-76.313196, 36.550551], [-76.313215, 36.550551], [-76.491497, 36.550365], [-76.541391, 36.550312], [-76.541687, 36.550312], [-76.781296, 36.550659], [-76.807078, 36.550606], [-76.915384, 36.543856], [-76.916001, 36.543818], [-76.916048, 36.543815], [-77.1645, 36.54633], [-77.24969, 36.544745], [-77.296875, 36.544746], [-77.767117, 36.544752], [-77.87528, 36.544754], [-77.882357, 36.544737], [-77.899771, 36.544663], [-78.038938, 36.544173], [-78.03942, 36.544196], [-78.046202, 36.544168], [-78.132911, 36.543811], [-78.133323, 36.543847], [-78.245462, 36.544411], [-78.246681, 36.544341], [-78.323912, 36.543809], [-78.436333, 36.542666], [-78.441199, 36.542687], [-78.45697, 36.542474], [-78.470792, 36.542316], [-78.471022, 36.542307], [-78.529722, 36.540981], [-78.533013, 36.541004], [-78.663317, 36.542011], [-78.670051, 36.542035], [-78.734122, 36.541902], [-78.758392, 36.541852], [-78.76543, 36.541727], [-78.7963, 36.541713], [-78.914543, 36.541972], [-78.91542, 36.541974], [-78.942009, 36.542113], [-78.942254, 36.542079], [-78.970577, 36.542154], [-78.971814, 36.542123], [-79.124736, 36.541568], [-79.126078, 36.541533], [-79.137936, 36.541739], [-79.208686, 36.541571], [-79.20948, 36.541594], [-79.218638, 36.541579], [-79.342696, 36.541382], [-79.445687, 36.541218], [-79.445961, 36.541195], [-79.470047, 36.541025], [-79.510647, 36.540738], [-79.510961, 36.54074], [-79.666827, 36.541772], [-79.667309, 36.541772], [-79.714855, 36.541884], [-79.920239, 36.542365], [-79.966979, 36.542475], [-79.967511, 36.542502], [-80.027269, 36.542495], [-80.053455, 36.542623], [-80.169535, 36.54319], [-80.171636, 36.543219], [-80.225408, 36.543748], [-80.228263, 36.543867], [-80.431605, 36.550219], [-80.432628, 36.550302], [-80.4401, 36.55063], [-80.612158, 36.558127], [-80.687539, 36.561411], [-80.744101, 36.561686], [-80.837089, 36.559154], [-80.837641, 36.559118], [-80.837954, 36.559131], [-80.901726, 36.561751], [-80.901836, 36.561754], [-80.944338, 36.563058], [-80.945988, 36.563196], [-81.058844, 36.566976], [-81.061866, 36.56702], [-81.307511, 36.575024], [-81.353169, 36.574724], [-81.353322, 36.574723], [-81.521032, 36.58052], [-81.60697, 36.587094], [-81.677535, 36.588117], [-81.6469, 36.611918], [-81.826742, 36.614215], [-81.922644, 36.616213], [-81.934144, 36.594213], [-82.14607, 36.594712], [-82.148569, 36.594718], [-82.150727, 36.594673], [-82.173982, 36.594607], [-82.177247, 36.594768], [-82.18074, 36.594928], [-82.188491, 36.595179], [-82.210497, 36.595772], [-82.211005, 36.59586], [-82.221713, 36.595814], [-82.223445, 36.595721], [-82.225716, 36.595744], [-82.226653, 36.595743], [-82.243274, 36.595699], [-82.293814, 36.595565], [-82.554294, 36.594876], [-82.559774, 36.5948], [-82.561074, 36.5948], [-82.609176, 36.594099], [-82.679879, 36.593698], [-82.69578, 36.593698], [-82.830433, 36.593761], [-82.985087, 36.593829], [-83.02725, 36.593847], [-83.028357, 36.593893], [-83.248933, 36.593827], [-83.249899, 36.593898], [-83.250304, 36.593935], [-83.2763, 36.598187], [-83.472108, 36.597284], [-83.670128, 36.600764], [-83.670141, 36.600797], [-83.675413, 36.600814], [-83.649513, 36.616683], [-83.527212, 36.665984], [-83.498011, 36.670485], [-83.461013, 36.664916], [-83.460808, 36.664885], [-83.354606, 36.696153], [-83.353613, 36.696699], [-83.342804, 36.701286], [-83.199698, 36.737487], [-83.167396, 36.739187], [-83.136395, 36.743088], [-83.127833, 36.750828], [-83.125728, 36.761276], [-83.125655, 36.761407], [-83.131245, 36.767105], [-83.131694, 36.781488], [-83.099792, 36.824889], [-83.07259, 36.854589], [-82.973395, 36.859097], [-82.911824, 36.874243], [-82.91169, 36.874248], [-82.885618, 36.900415], [-82.873777, 36.912299], [-82.872136, 36.913456], [-82.863468, 36.922308], [-82.861943, 36.924236], [-82.858461, 36.932717], [-82.858784, 36.933065], [-82.860537, 36.937439], [-82.861684, 36.939316], [-82.861282, 36.944848], [-82.860633, 36.94584], [-82.856099, 36.952471], [-82.855705, 36.953808], [-82.858443, 36.954036], [-82.860534, 36.956015], [-82.862866, 36.957765], [-82.864211, 36.957983], [-82.865404, 36.958084], [-82.867358, 36.963182], [-82.87023, 36.965498], [-82.870274, 36.965993], [-82.869183, 36.974182], [-82.869183, 36.974183], [-82.868455, 36.976481], [-82.867535, 36.977518], [-82.866689, 36.978052], [-82.866019, 36.978272], [-82.864909, 36.97901], [-82.862926, 36.979975], [-82.852614, 36.984963], [-82.851397, 36.984497], [-82.840051, 36.987113], [-82.838549, 36.987027], [-82.836008, 36.988837], [-82.833843, 36.991973], [-82.830802, 36.993445], [-82.829125, 36.997541], [-82.830588, 37.000945], [-82.818006, 37.006161], [-82.815748, 37.007196], [-82.800531, 37.007944], [-82.79089, 37.00676], [-82.790462, 37.007263], [-82.789092, 37.007995], [-82.788897, 37.00816], [-82.777368, 37.015279], [-82.771795, 37.015716], [-82.722472, 37.045101], [-82.720597, 37.081833], [-82.721941, 37.105689], [-82.624878, 37.162932], [-82.565375, 37.196092], [-82.565329, 37.196118], [-82.553549, 37.200867], [-82.510826, 37.218091], [-82.350948, 37.267077], [-82.310793, 37.297387], [-82.305874, 37.3011], [-82.291908, 37.311642], [-81.968297, 37.537798], [-81.92787, 37.512118], [-81.94264, 37.508844], [-81.992916, 37.482969], [-81.996578, 37.476705], [-81.99227, 37.460916], [-81.987006, 37.454878], [-81.968795, 37.451496], [-81.949367, 37.445687], [-81.935621, 37.438397], [-81.92749, 37.413251], [-81.933895, 37.372747], [-81.930194, 37.366728], [-81.929915, 37.366589], [-81.926589, 37.358942], [-81.925643, 37.357316], [-81.921571, 37.356423], [-81.920711, 37.355416], [-81.911487, 37.348839], [-81.910875, 37.348729], [-81.907895, 37.343783], [-81.907322, 37.343119], [-81.906368, 37.34276], [-81.905945, 37.342775], [-81.903795, 37.34305], [-81.902992, 37.34234], [-81.899495, 37.341102], [-81.899459, 37.340277], [-81.896001, 37.331967], [-81.895489, 37.332022], [-81.894797, 37.332012], [-81.894768, 37.331381], [-81.893773, 37.330105], [-81.892876, 37.330134], [-81.887722, 37.331156], [-81.886952, 37.330725], [-81.885075, 37.330665], [-81.880886, 37.331146], [-81.879601, 37.332074], [-81.878713, 37.331753], [-81.878343, 37.328837], [-81.873213, 37.325065], [-81.865219, 37.308839], [-81.86476, 37.308404], [-81.853978, 37.300418], [-81.854465, 37.299937], [-81.853488, 37.294763], [-81.854059, 37.291352], [-81.843167, 37.285586], [-81.84231, 37.285556], [-81.810559, 37.28298], [-81.809184, 37.283003], [-81.793639, 37.282188], [-81.793425, 37.281674], [-81.774747, 37.274847], [-81.774684, 37.274807], [-81.767837, 37.274216], [-81.765195, 37.275099], [-81.763836, 37.275218], [-81.762776, 37.275391], [-81.761752, 37.275713], [-81.76022, 37.275254], [-81.757631, 37.274003], [-81.75773, 37.271934], [-81.757714, 37.271124], [-81.757531, 37.27001], [-81.755012, 37.26772], [-81.752912, 37.266614], [-81.752123, 37.265568], [-81.75129, 37.265131], [-81.747656, 37.264329], [-81.743505, 37.247601], [-81.74342, 37.245858], [-81.744291, 37.244178], [-81.738378, 37.240917], [-81.73332, 37.238127], [-81.728194, 37.239823], [-81.683544, 37.211452], [-81.678603, 37.202467], [-81.560625, 37.206663], [-81.558353, 37.208145], [-81.557315, 37.207697], [-81.507325, 37.2338], [-81.50488, 37.247697], [-81.504168, 37.250115], [-81.409729, 37.284837], [-81.409196, 37.286071], [-81.388132, 37.319903], [-81.386727, 37.320474], [-81.38581, 37.320085], [-81.384914, 37.318832], [-81.384127, 37.318596], [-81.380159, 37.317838], [-81.377349, 37.318447], [-81.371315, 37.324115], [-81.367599, 37.327569], [-81.369379, 37.331827], [-81.36809, 37.332423], [-81.367052, 37.334504], [-81.366315, 37.335927], [-81.362156, 37.337687], [-81.320105, 37.299323], [-81.225104, 37.234874], [-81.204774, 37.243013], [-81.167029, 37.262881], [-81.112596, 37.278497], [-81.084012, 37.284401], [-81.034652, 37.290751], [-80.981322, 37.293465], [-80.980044, 37.293118], [-80.973889, 37.291444], [-80.966556, 37.292158], [-80.947896, 37.295872], [-80.919259, 37.306163], [-80.900535, 37.315], [-80.849451, 37.346909], [-80.872589, 37.372347], [-80.862761, 37.411829], [-80.859558, 37.429555], [-80.859556, 37.429568], [-80.858473, 37.428301], [-80.85836, 37.428168], [-80.811639, 37.407507], [-80.798869, 37.395807], [-80.776766, 37.384131], [-80.776649, 37.383679], [-80.770082, 37.372363], [-80.622664, 37.433307], [-80.511391, 37.481672], [-80.494867, 37.43507], [-80.475601, 37.422949], [-80.46482, 37.426144], [-80.443025, 37.438126], [-80.425656, 37.449876], [-80.320627, 37.49888], [-80.314806, 37.500943], [-80.330306, 37.536244], [-80.312393, 37.546239], [-80.288766, 37.58196], [-80.240272, 37.606961], [-80.223386, 37.623185], [-80.220984, 37.627767], [-80.239288, 37.637672], [-80.254431, 37.642352], [-80.254469, 37.642333], [-80.263281, 37.645082], [-80.263291, 37.645101], [-80.26483, 37.645526], [-80.264874, 37.645511], [-80.267228, 37.646011], [-80.267455, 37.646108], [-80.270352, 37.648929], [-80.270323, 37.648982], [-80.292258, 37.683732], [-80.292337, 37.683976], [-80.296138, 37.691783], [-80.287107, 37.696403], [-80.263936, 37.719137], [-80.259342, 37.731205], [-80.260313, 37.733517], [-80.262765, 37.738336], [-80.257411, 37.756084], [-80.231551, 37.792591], [-80.227092, 37.798886], [-80.162202, 37.875122], [-80.148964, 37.886057], [-80.147316, 37.885936], [-80.14613, 37.884453], [-80.130464, 37.893194], [-80.055278, 37.951702], [-80.002507, 37.992767], [-79.978427, 38.029082], [-79.959844, 38.063697], [-79.933911, 38.099168], [-79.931034, 38.101402], [-79.938394, 38.130563], [-79.933751, 38.135508], [-79.928747, 38.144436], [-79.928683, 38.144928], [-79.925512, 38.150237], [-79.925251, 38.150465], [-79.921026, 38.179954], [-79.921196, 38.180378], [-79.917061, 38.183741], [-79.916174, 38.184386], [-79.892345, 38.202397], [-79.891999, 38.203378], [-79.794568, 38.264856], [-79.790134, 38.267654], [-79.788945, 38.268703], [-79.810115, 38.305037], [-79.808711, 38.309429], [-79.731661, 38.374143], [-79.691377, 38.439558], [-79.689544, 38.442511], [-79.688962, 38.449538], [-79.688205, 38.450476], [-79.699006, 38.475148], [-79.695565, 38.477842], [-79.669128, 38.510883], [-79.669128, 38.510975], [-79.649075, 38.591515], [-79.597955, 38.572767], [-79.555471, 38.560217], [-79.53687, 38.550917], [-79.521469, 38.533918], [-79.476638, 38.457228], [-79.312276, 38.411876], [-79.297758, 38.416438], [-79.295712, 38.418129], [-79.291813, 38.419627], [-79.290529, 38.420757], [-79.280263, 38.425475], [-79.282663, 38.431021], [-79.267414, 38.438322], [-79.265327, 38.441772], [-79.263376, 38.443762], [-79.26291, 38.444586], [-79.242024, 38.464332], [-79.240059, 38.469841], [-79.234408, 38.473011], [-79.23162, 38.474041], [-79.225839, 38.479446], [-79.210026, 38.494231], [-79.210008, 38.494283], [-79.209703, 38.495574], [-79.207873, 38.500122], [-79.207884, 38.500428], [-79.174881, 38.566314], [-79.174512, 38.566531], [-79.146974, 38.625641], [-79.146741, 38.625819], [-79.137012, 38.640655], [-79.136374, 38.6424], [-79.135546, 38.643715], [-79.135472, 38.644057], [-79.092271, 38.699208], [-79.092555, 38.700149], [-79.057253, 38.761413], [-79.055354, 38.782213], [-78.999752, 38.846162], [-78.993997, 38.850102] ] }, "properties": {}, "type": "Feature" }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.551513671875, 36.29741818650811], [-76.475830078125, 36.29741818650811], [-76.475830078125, 39.58875727696545], [-81.551513671875, 39.58875727696545], [-81.551513671875, 36.29741818650811] ] ] } } ] } ================================================ FILE: packages/turf-bbox-clip/test/in/multi-linestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-79.2498779296875, 38.74123075381231], [-78.6676025390625, 39.01918369029137], [-78.629150390625, 38.6897975322717], [-78.1402587890625, 39.031986028740086], [-77.7667236328125, 38.5825261593533] ], [ [-79.189453125, 38.929502416386605], [-78.6346435546875, 39.15988184949157], [-78.4149169921875, 39.031986028740086], [-78.0194091796875, 39.2832938689385], [-77.5579833984375, 38.65119833229951] ], [ [-77.1240234375, 39.51251701659638], [-77.618408203125, 39.24927084622338], [-77.0855712890625, 38.886757140695906] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-78.3929443359375, 38.49229419236133], [-76.9097900390625, 38.49229419236133], [-76.9097900390625, 39.56758783088905], [-78.3929443359375, 39.56758783088905], [-78.3929443359375, 38.49229419236133] ] ] } } ] } ================================================ FILE: packages/turf-bbox-clip/test/in/multi-polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-78.869276, 38.762991], [-78.993997, 38.850102], [-78.999752, 38.846162], [-79.055354, 38.782213], [-79.057253, 38.761413], [-79.092555, 38.700149], [-79.092271, 38.699208], [-79.135472, 38.644057], [-79.135546, 38.643715], [-79.136374, 38.6424], [-79.137012, 38.640655], [-79.146741, 38.625819], [-79.146974, 38.625641], [-79.174512, 38.566531], [-79.174881, 38.566314], [-79.207884, 38.500428], [-79.207873, 38.500122], [-79.209703, 38.495574], [-79.210008, 38.494283], [-79.210026, 38.494231], [-79.225839, 38.479446], [-79.23162, 38.474041], [-79.234408, 38.473011], [-79.240059, 38.469841], [-79.242024, 38.464332], [-79.26291, 38.444586], [-79.263376, 38.443762], [-79.265327, 38.441772], [-79.267414, 38.438322], [-79.282663, 38.431021], [-79.280263, 38.425475], [-79.290529, 38.420757], [-79.291813, 38.419627], [-79.295712, 38.418129], [-79.297758, 38.416438], [-79.312276, 38.411876], [-79.476638, 38.457228], [-79.521469, 38.533918], [-79.53687, 38.550917], [-79.555471, 38.560217], [-79.597955, 38.572767], [-79.649075, 38.591515], [-79.669128, 38.510975], [-79.669128, 38.510883], [-79.695565, 38.477842], [-79.699006, 38.475148], [-79.688205, 38.450476], [-79.688962, 38.449538], [-79.689544, 38.442511], [-79.691377, 38.439558], [-79.731661, 38.374143], [-79.808711, 38.309429], [-79.810115, 38.305037], [-79.788945, 38.268703], [-79.790134, 38.267654], [-79.794568, 38.264856], [-79.891999, 38.203378], [-79.892345, 38.202397], [-79.916174, 38.184386], [-79.917061, 38.183741], [-79.921196, 38.180378], [-79.921026, 38.179954], [-79.925251, 38.150465], [-79.925512, 38.150237], [-79.928683, 38.144928], [-79.928747, 38.144436], [-79.933751, 38.135508], [-79.938394, 38.130563], [-79.931034, 38.101402], [-79.933911, 38.099168], [-79.959844, 38.063697], [-79.978427, 38.029082], [-80.002507, 37.992767], [-80.055278, 37.951702], [-80.130464, 37.893194], [-80.14613, 37.884453], [-80.147316, 37.885936], [-80.148964, 37.886057], [-80.162202, 37.875122], [-80.227092, 37.798886], [-80.231551, 37.792591], [-80.257411, 37.756084], [-80.262765, 37.738336], [-80.260313, 37.733517], [-80.259342, 37.731205], [-80.263936, 37.719137], [-80.287107, 37.696403], [-80.296138, 37.691783], [-80.292337, 37.683976], [-80.292258, 37.683732], [-80.270323, 37.648982], [-80.270352, 37.648929], [-80.267455, 37.646108], [-80.267228, 37.646011], [-80.264874, 37.645511], [-80.26483, 37.645526], [-80.263291, 37.645101], [-80.263281, 37.645082], [-80.254469, 37.642333], [-80.254431, 37.642352], [-80.239288, 37.637672], [-80.220984, 37.627767], [-80.223386, 37.623185], [-80.240272, 37.606961], [-80.288766, 37.58196], [-80.312393, 37.546239], [-80.330306, 37.536244], [-80.314806, 37.500943], [-80.320627, 37.49888], [-80.425656, 37.449876], [-80.443025, 37.438126], [-80.46482, 37.426144], [-80.475601, 37.422949], [-80.494867, 37.43507], [-80.511391, 37.481672], [-80.622664, 37.433307], [-80.770082, 37.372363], [-80.776649, 37.383679], [-80.776766, 37.384131], [-80.798869, 37.395807], [-80.811639, 37.407507], [-80.85836, 37.428168], [-80.858473, 37.428301], [-80.859556, 37.429568], [-80.859558, 37.429555], [-80.862761, 37.411829], [-80.872589, 37.372347], [-80.849451, 37.346909], [-80.900535, 37.315], [-80.919259, 37.306163], [-80.947896, 37.295872], [-80.966556, 37.292158], [-80.973889, 37.291444], [-80.980044, 37.293118], [-80.981322, 37.293465], [-81.034652, 37.290751], [-81.084012, 37.284401], [-81.112596, 37.278497], [-81.167029, 37.262881], [-81.204774, 37.243013], [-81.225104, 37.234874], [-81.320105, 37.299323], [-81.362156, 37.337687], [-81.366315, 37.335927], [-81.367052, 37.334504], [-81.36809, 37.332423], [-81.369379, 37.331827], [-81.367599, 37.327569], [-81.371315, 37.324115], [-81.377349, 37.318447], [-81.380159, 37.317838], [-81.384127, 37.318596], [-81.384914, 37.318832], [-81.38581, 37.320085], [-81.386727, 37.320474], [-81.388132, 37.319903], [-81.409196, 37.286071], [-81.409729, 37.284837], [-81.504168, 37.250115], [-81.50488, 37.247697], [-81.507325, 37.2338], [-81.557315, 37.207697], [-81.558353, 37.208145], [-81.560625, 37.206663], [-81.678603, 37.202467], [-81.683544, 37.211452], [-81.728194, 37.239823], [-81.73332, 37.238127], [-81.738378, 37.240917], [-81.744291, 37.244178], [-81.74342, 37.245858], [-81.743505, 37.247601], [-81.747656, 37.264329], [-81.75129, 37.265131], [-81.752123, 37.265568], [-81.752912, 37.266614], [-81.755012, 37.26772], [-81.757531, 37.27001], [-81.757714, 37.271124], [-81.75773, 37.271934], [-81.757631, 37.274003], [-81.76022, 37.275254], [-81.761752, 37.275713], [-81.762776, 37.275391], [-81.763836, 37.275218], [-81.765195, 37.275099], [-81.767837, 37.274216], [-81.774684, 37.274807], [-81.774747, 37.274847], [-81.793425, 37.281674], [-81.793639, 37.282188], [-81.809184, 37.283003], [-81.810559, 37.28298], [-81.84231, 37.285556], [-81.843167, 37.285586], [-81.854059, 37.291352], [-81.853488, 37.294763], [-81.854465, 37.299937], [-81.853978, 37.300418], [-81.86476, 37.308404], [-81.865219, 37.308839], [-81.873213, 37.325065], [-81.878343, 37.328837], [-81.878713, 37.331753], [-81.879601, 37.332074], [-81.880886, 37.331146], [-81.885075, 37.330665], [-81.886952, 37.330725], [-81.887722, 37.331156], [-81.892876, 37.330134], [-81.893773, 37.330105], [-81.894768, 37.331381], [-81.894797, 37.332012], [-81.895489, 37.332022], [-81.896001, 37.331967], [-81.899459, 37.340277], [-81.899495, 37.341102], [-81.902992, 37.34234], [-81.903795, 37.34305], [-81.905945, 37.342775], [-81.906368, 37.34276], [-81.907322, 37.343119], [-81.907895, 37.343783], [-81.910875, 37.348729], [-81.911487, 37.348839], [-81.920711, 37.355416], [-81.921571, 37.356423], [-81.925643, 37.357316], [-81.926589, 37.358942], [-81.929915, 37.366589], [-81.930194, 37.366728], [-81.933895, 37.372747], [-81.92749, 37.413251], [-81.935621, 37.438397], [-81.949367, 37.445687], [-81.968795, 37.451496], [-81.987006, 37.454878], [-81.99227, 37.460916], [-81.996578, 37.476705], [-81.992916, 37.482969], [-81.94264, 37.508844], [-81.92787, 37.512118], [-81.968297, 37.537798], [-82.291908, 37.311642], [-82.305874, 37.3011], [-82.310793, 37.297387], [-82.350948, 37.267077], [-82.510826, 37.218091], [-82.553549, 37.200867], [-82.565329, 37.196118], [-82.565375, 37.196092], [-82.624878, 37.162932], [-82.721941, 37.105689], [-82.720597, 37.081833], [-82.722472, 37.045101], [-82.771795, 37.015716], [-82.777368, 37.015279], [-82.788897, 37.00816], [-82.789092, 37.007995], [-82.790462, 37.007263], [-82.79089, 37.00676], [-82.800531, 37.007944], [-82.815748, 37.007196], [-82.818006, 37.006161], [-82.830588, 37.000945], [-82.829125, 36.997541], [-82.830802, 36.993445], [-82.833843, 36.991973], [-82.836008, 36.988837], [-82.838549, 36.987027], [-82.840051, 36.987113], [-82.851397, 36.984497], [-82.852614, 36.984963], [-82.862926, 36.979975], [-82.864909, 36.97901], [-82.866019, 36.978272], [-82.866689, 36.978052], [-82.867535, 36.977518], [-82.868455, 36.976481], [-82.869183, 36.974183], [-82.869183, 36.974182], [-82.870274, 36.965993], [-82.87023, 36.965498], [-82.867358, 36.963182], [-82.865404, 36.958084], [-82.864211, 36.957983], [-82.862866, 36.957765], [-82.860534, 36.956015], [-82.858443, 36.954036], [-82.855705, 36.953808], [-82.856099, 36.952471], [-82.860633, 36.94584], [-82.861282, 36.944848], [-82.861684, 36.939316], [-82.860537, 36.937439], [-82.858784, 36.933065], [-82.858461, 36.932717], [-82.861943, 36.924236], [-82.863468, 36.922308], [-82.872136, 36.913456], [-82.873777, 36.912299], [-82.885618, 36.900415], [-82.91169, 36.874248], [-82.911824, 36.874243], [-82.973395, 36.859097], [-83.07259, 36.854589], [-83.099792, 36.824889], [-83.131694, 36.781488], [-83.131245, 36.767105], [-83.125655, 36.761407], [-83.125728, 36.761276], [-83.127833, 36.750828], [-83.136395, 36.743088], [-83.167396, 36.739187], [-83.199698, 36.737487], [-83.342804, 36.701286], [-83.353613, 36.696699], [-83.354606, 36.696153], [-83.460808, 36.664885], [-83.461013, 36.664916], [-83.498011, 36.670485], [-83.527212, 36.665984], [-83.649513, 36.616683], [-83.675413, 36.600814], [-83.670141, 36.600797], [-83.670128, 36.600764], [-83.472108, 36.597284], [-83.2763, 36.598187], [-83.250304, 36.593935], [-83.249899, 36.593898], [-83.248933, 36.593827], [-83.028357, 36.593893], [-83.02725, 36.593847], [-82.985087, 36.593829], [-82.830433, 36.593761], [-82.69578, 36.593698], [-82.679879, 36.593698], [-82.609176, 36.594099], [-82.561074, 36.5948], [-82.559774, 36.5948], [-82.554294, 36.594876], [-82.293814, 36.595565], [-82.243274, 36.595699], [-82.226653, 36.595743], [-82.225716, 36.595744], [-82.223445, 36.595721], [-82.221713, 36.595814], [-82.211005, 36.59586], [-82.210497, 36.595772], [-82.188491, 36.595179], [-82.18074, 36.594928], [-82.177247, 36.594768], [-82.173982, 36.594607], [-82.150727, 36.594673], [-82.148569, 36.594718], [-82.14607, 36.594712], [-81.934144, 36.594213], [-81.922644, 36.616213], [-81.826742, 36.614215], [-81.6469, 36.611918], [-81.677535, 36.588117], [-81.60697, 36.587094], [-81.521032, 36.58052], [-81.353322, 36.574723], [-81.353169, 36.574724], [-81.307511, 36.575024], [-81.061866, 36.56702], [-81.058844, 36.566976], [-80.945988, 36.563196], [-80.944338, 36.563058], [-80.901836, 36.561754], [-80.901726, 36.561751], [-80.837954, 36.559131], [-80.837641, 36.559118], [-80.837089, 36.559154], [-80.744101, 36.561686], [-80.687539, 36.561411], [-80.612158, 36.558127], [-80.4401, 36.55063], [-80.432628, 36.550302], [-80.431605, 36.550219], [-80.228263, 36.543867], [-80.225408, 36.543748], [-80.171636, 36.543219], [-80.169535, 36.54319], [-80.053455, 36.542623], [-80.027269, 36.542495], [-79.967511, 36.542502], [-79.966979, 36.542475], [-79.920239, 36.542365], [-79.714855, 36.541884], [-79.667309, 36.541772], [-79.666827, 36.541772], [-79.510961, 36.54074], [-79.510647, 36.540738], [-79.470047, 36.541025], [-79.445961, 36.541195], [-79.445687, 36.541218], [-79.342696, 36.541382], [-79.218638, 36.541579], [-79.20948, 36.541594], [-79.208686, 36.541571], [-79.137936, 36.541739], [-79.126078, 36.541533], [-79.124736, 36.541568], [-78.971814, 36.542123], [-78.970577, 36.542154], [-78.942254, 36.542079], [-78.942009, 36.542113], [-78.91542, 36.541974], [-78.914543, 36.541972], [-78.7963, 36.541713], [-78.76543, 36.541727], [-78.758392, 36.541852], [-78.734122, 36.541902], [-78.670051, 36.542035], [-78.663317, 36.542011], [-78.533013, 36.541004], [-78.529722, 36.540981], [-78.471022, 36.542307], [-78.470792, 36.542316], [-78.45697, 36.542474], [-78.441199, 36.542687], [-78.436333, 36.542666], [-78.323912, 36.543809], [-78.246681, 36.544341], [-78.245462, 36.544411], [-78.133323, 36.543847], [-78.132911, 36.543811], [-78.046202, 36.544168], [-78.03942, 36.544196], [-78.038938, 36.544173], [-77.899771, 36.544663], [-77.882357, 36.544737], [-77.87528, 36.544754], [-77.767117, 36.544752], [-77.296875, 36.544746], [-77.24969, 36.544745], [-77.1645, 36.54633], [-76.916048, 36.543815], [-76.916001, 36.543818], [-76.915384, 36.543856], [-76.807078, 36.550606], [-76.781296, 36.550659], [-76.541687, 36.550312], [-76.541391, 36.550312], [-76.491497, 36.550365], [-76.313215, 36.550551], [-76.313196, 36.550551], [-76.12236, 36.550621], [-76.034751, 36.550653], [-76.02675, 36.550553], [-75.957648, 36.550553], [-75.955748, 36.550553], [-75.953447, 36.550553], [-75.952847, 36.550553], [-75.922046, 36.550654], [-75.911446, 36.550654], [-75.909046, 36.550654], [-75.904745, 36.550654], [-75.903445, 36.550654], [-75.894145, 36.550754], [-75.893245, 36.550654], [-75.891945, 36.550754], [-75.886545, 36.550754], [-75.885945, 36.550754], [-75.880644, 36.550754], [-75.879744, 36.550754], [-75.867044, 36.550754], [-75.874145, 36.583853], [-75.890946, 36.630753], [-75.921748, 36.692051], [-75.94955, 36.76115], [-75.965451, 36.812449], [-75.972151, 36.842268], [-75.991552, 36.910847], [-75.996252, 36.922047], [-76.007553, 36.929047], [-76.013753, 36.930746], [-76.033454, 36.931946], [-76.043054, 36.927547], [-76.058154, 36.916947], [-76.087955, 36.908647], [-76.095508, 36.908817], [-76.139557, 36.923047], [-76.177019, 36.92929], [-76.189959, 36.931447], [-76.22166, 36.939547], [-76.234961, 36.945147], [-76.267962, 36.964547], [-76.285063, 36.968747], [-76.297663, 36.968147], [-76.299364, 36.965547], [-76.315867, 36.955351], [-76.322764, 36.959147], [-76.327365, 36.959447], [-76.330765, 36.938647], [-76.328864, 36.918447], [-76.333158, 36.917293], [-76.344663, 36.919313], [-76.345569, 36.924531], [-76.353765, 36.922747], [-76.385867, 36.923247], [-76.387567, 36.899547], [-76.406908, 36.897507], [-76.407507, 36.897444], [-76.43122, 36.904532], [-76.441605, 36.906116], [-76.447413, 36.90322], [-76.453941, 36.89274], [-76.45329, 36.887031], [-76.454692, 36.884077], [-76.469914, 36.882898], [-76.483369, 36.896239], [-76.482135, 36.901108], [-76.482407, 36.917364], [-76.484107, 36.928916], [-76.487559, 36.952372], [-76.500355, 36.965212], [-76.513363, 36.968057], [-76.521006, 36.973187], [-76.524142, 36.978316], [-76.522971, 36.981085], [-76.524853, 36.983833], [-76.551246, 36.998946], [-76.562923, 37.003796], [-76.565803, 37.007493], [-76.576617, 37.021374], [-76.577531, 37.022548], [-76.57816, 37.022982], [-76.579236, 37.023726], [-76.579393, 37.023835], [-76.584478, 37.027349], [-76.586491, 37.02874], [-76.612124, 37.035604], [-76.646013, 37.036228], [-76.653998, 37.039172], [-76.662558, 37.045748], [-76.66835, 37.05506], [-76.669822, 37.06426], [-76.669118, 37.068132], [-76.668295, 37.072656], [-76.667646, 37.076228], [-76.667219, 37.077149], [-76.666526, 37.078643], [-76.66555, 37.080746], [-76.659394, 37.094019], [-76.65811, 37.096787], [-76.657703, 37.101161], [-76.657101, 37.107617], [-76.656894, 37.109843], [-76.66375, 37.129979], [-76.665641, 37.135534], [-76.665833, 37.136098], [-76.666542, 37.138179], [-76.669604, 37.140534], [-76.671588, 37.14206], [-76.67147, 37.158739], [-76.66867, 37.166771], [-76.66427, 37.171027], [-76.663774, 37.173875], [-76.669886, 37.183571], [-76.685614, 37.198851], [-76.691918, 37.195731], [-76.692926, 37.186147], [-76.696735, 37.174403], [-76.715295, 37.148035], [-76.73032, 37.145395], [-76.73728, 37.146164], [-76.747632, 37.150548], [-76.756899, 37.161582], [-76.796905, 37.189404], [-76.802511, 37.198308], [-76.803198, 37.201513], [-76.801023, 37.206043], [-76.791555, 37.207564], [-76.780532, 37.209336], [-76.773752, 37.206061], [-76.757765, 37.191658], [-76.75047, 37.190098], [-76.74304, 37.192611], [-76.74, 37.195379], [-76.73432, 37.204211], [-76.730951, 37.213813], [-76.698943, 37.219059], [-76.693373, 37.221228], [-76.689166, 37.222866], [-76.649869, 37.220914], [-76.641085, 37.216002], [-76.639608, 37.214783], [-76.629868, 37.206738], [-76.623292, 37.198738], [-76.621113, 37.195103], [-76.619962, 37.193184], [-76.61934, 37.192146], [-76.618008, 37.186429], [-76.617537, 37.184409], [-76.616804, 37.18126], [-76.616268, 37.178962], [-76.614221, 37.174335], [-76.613599, 37.172931], [-76.612517, 37.170486], [-76.611018, 37.167097], [-76.610972, 37.166994], [-76.606684, 37.166674], [-76.604476, 37.160034], [-76.617084, 37.144498], [-76.622252, 37.142146], [-76.62478, 37.127091], [-76.618252, 37.119347], [-76.579499, 37.096627], [-76.567931, 37.080467], [-76.564219, 37.077507], [-76.555066, 37.075859], [-76.536875, 37.083942], [-76.528997, 37.079388], [-76.526203, 37.077773], [-76.526573, 37.070047], [-76.527973, 37.068247], [-76.526273, 37.062947], [-76.518242, 37.055351], [-76.512289, 37.054858], [-76.509339, 37.053173], [-76.507614, 37.052188], [-76.46949, 37.030414], [-76.464471, 37.027547], [-76.448231, 37.007705], [-76.449891, 37.004868], [-76.452461, 37.004603], [-76.452118, 36.998163], [-76.428869, 36.969947], [-76.418969, 36.964047], [-76.411768, 36.962847], [-76.408568, 36.969147], [-76.396368, 36.982347], [-76.387711, 36.989671], [-76.383367, 36.993347], [-76.373567, 36.998347], [-76.356366, 37.002947], [-76.348066, 37.006747], [-76.340666, 37.015246], [-76.34011, 37.015212], [-76.329531, 37.014556], [-76.318065, 37.013846], [-76.314624, 37.00933], [-76.315008, 37.001683], [-76.312048, 37.000371], [-76.304272, 37.001378], [-76.300352, 37.00885], [-76.292863, 37.035145], [-76.271262, 37.084544], [-76.274463, 37.094544], [-76.287236, 37.117453], [-76.292344, 37.126615], [-76.311088, 37.138495], [-76.324353, 37.142895], [-76.330481, 37.141727], [-76.334017, 37.144223], [-76.340129, 37.151823], [-76.34405, 37.160367], [-76.344898, 37.164479], [-76.343234, 37.166207], [-76.348658, 37.170655], [-76.35969, 37.16858], [-76.375255, 37.16084], [-76.381379, 37.155711], [-76.394756, 37.157568], [-76.399659, 37.160272], [-76.397883, 37.164415], [-76.391252, 37.179887], [-76.389284, 37.193503], [-76.396052, 37.201087], [-76.3936, 37.214049], [-76.389793, 37.222981], [-76.394132, 37.22515], [-76.471799, 37.216016], [-76.494008, 37.225408], [-76.50364, 37.233856], [-76.4989, 37.241015], [-76.493302, 37.24947], [-76.48284, 37.254831], [-76.475927, 37.250543], [-76.429141, 37.25331], [-76.421765, 37.255198], [-76.417173, 37.26395], [-76.392788, 37.264973], [-76.36229, 37.270226], [-76.349489, 37.273963], [-76.352556, 37.278334], [-76.369029, 37.279311], [-76.381075, 37.28534], [-76.385603, 37.294108], [-76.38777, 37.30767], [-76.406388, 37.332924], [-76.434965, 37.354524], [-76.445333, 37.36646], [-76.437525, 37.37975], [-76.422503, 37.381355], [-76.418176, 37.385064], [-76.418719, 37.3978], [-76.415167, 37.402133], [-76.404756, 37.400213], [-76.393125, 37.398068], [-76.393958, 37.39594], [-76.391437, 37.390284], [-76.387112, 37.385061], [-76.366751, 37.374495], [-76.337476, 37.364014], [-76.31205, 37.338088], [-76.308581, 37.329366], [-76.291324, 37.324145], [-76.282555, 37.319107], [-76.275552, 37.309964], [-76.272005, 37.322194], [-76.272888, 37.335174], [-76.264847, 37.357399], [-76.262407, 37.360786], [-76.258277, 37.36202], [-76.24846, 37.375135], [-76.245283, 37.386839], [-76.246617, 37.404122], [-76.250454, 37.421886], [-76.252415, 37.447274], [-76.265056, 37.481365], [-76.281043, 37.507821], [-76.288167, 37.514118], [-76.293599, 37.516499], [-76.297651, 37.515424], [-76.298456, 37.512677], [-76.296445, 37.511235], [-76.297739, 37.506863], [-76.306952, 37.497488], [-76.32947, 37.49492], [-76.352678, 37.504913], [-76.359378, 37.513426], [-76.360474, 37.51924], [-76.355084, 37.527364], [-76.348992, 37.536548], [-76.339989, 37.53833], [-76.330598, 37.536391], [-76.302762, 37.551295], [-76.29796, 37.557636], [-76.300144, 37.561734], [-76.332641, 37.570042], [-76.357835, 37.573699], [-76.383188, 37.573056], [-76.410781, 37.581815], [-76.420252, 37.598686], [-76.435474, 37.612807], [-76.527188, 37.611315], [-76.533777, 37.61253], [-76.542666, 37.616857], [-76.574049, 37.646781], [-76.583143, 37.661986], [-76.579591, 37.671508], [-76.597868, 37.702918], [-76.598073, 37.70912], [-76.595943, 37.712989], [-76.597213, 37.717269], [-76.606466, 37.724819], [-76.61997, 37.731271], [-76.621433, 37.737973], [-76.617373, 37.742347], [-76.61971, 37.744795], [-76.639962, 37.750941], [-76.663887, 37.751887], [-76.677002, 37.7561], [-76.680922, 37.759647], [-76.683372, 37.765507], [-76.683359, 37.770258], [-76.683343, 37.775783], [-76.681901, 37.778118], [-76.683775, 37.781391], [-76.689773, 37.78519], [-76.715498, 37.785873], [-76.723863, 37.788503], [-76.734309, 37.79866], [-76.7512, 37.824141], [-76.766328, 37.840437], [-76.782826, 37.863184], [-76.784618, 37.869569], [-76.77539, 37.874306], [-76.765711, 37.879274], [-76.747552, 37.875864], [-76.738395, 37.865373], [-76.733046, 37.852009], [-76.72718, 37.842263], [-76.722156, 37.83668], [-76.701606, 37.822677], [-76.692747, 37.82277], [-76.680197, 37.825654], [-76.658302, 37.806815], [-76.651413, 37.796239], [-76.642276, 37.792317], [-76.615351, 37.780759], [-76.602024, 37.772731], [-76.595939, 37.77168], [-76.593835, 37.772848], [-76.584289, 37.76889], [-76.576387, 37.757493], [-76.560476, 37.727827], [-76.54005, 37.704432], [-76.537228, 37.698892], [-76.535302, 37.687516], [-76.537698, 37.66893], [-76.536548, 37.663574], [-76.510187, 37.642324], [-76.501522, 37.643762], [-76.497564, 37.647056], [-76.491799, 37.663614], [-76.489576, 37.666201], [-76.472392, 37.665772], [-76.443254, 37.652347], [-76.399236, 37.628636], [-76.390054, 37.630326], [-76.381106, 37.627003], [-76.36232, 37.610368], [-76.309174, 37.621892], [-76.28037, 37.613715], [-76.279447, 37.618225], [-76.287959, 37.631771], [-76.292534, 37.636098], [-76.306464, 37.642005], [-76.332562, 37.645817], [-76.339892, 37.655966], [-76.324808, 37.676983], [-76.320216, 37.680666], [-76.315161, 37.68472], [-76.312079, 37.684651], [-76.302545, 37.689], [-76.300067, 37.695364], [-76.302803, 37.704474], [-76.312858, 37.720338], [-76.304917, 37.729913], [-76.312108, 37.750522], [-76.306489, 37.788646], [-76.310307, 37.794849], [-76.307482, 37.81235], [-76.293525, 37.822717], [-76.284904, 37.822308], [-76.281985, 37.818068], [-76.282592, 37.814109], [-76.280544, 37.812597], [-76.275178, 37.812664], [-76.266057, 37.8174], [-76.251358, 37.833072], [-76.245072, 37.861918], [-76.236725, 37.889174], [-76.265998, 37.91138], [-76.343848, 37.947345], [-76.360211, 37.952329], [-76.391439, 37.958742], [-76.416299, 37.966828], [-76.427487, 37.977038], [-76.462542, 37.998572], [-76.465291, 38.010226], [-76.469343, 38.013544], [-76.491998, 38.017222], [-76.516547, 38.026566], [-76.519536, 38.034814], [-76.522354, 38.04259], [-76.535919, 38.069532], [-76.543155, 38.076971], [-76.579497, 38.09487], [-76.600937, 38.110084], [-76.604131, 38.128771], [-76.613939, 38.148587], [-76.629476, 38.15305], [-76.638983, 38.151476], [-76.643448, 38.14825], [-76.665127, 38.147638], [-76.684892, 38.156497], [-76.701297, 38.155718], [-76.704048, 38.149264], [-76.721722, 38.137635], [-76.738938, 38.14651], [-76.740278, 38.152824], [-76.743064, 38.156988], [-76.749685, 38.162114], [-76.760241, 38.166581], [-76.788445, 38.169199], [-76.802968, 38.167988], [-76.824274, 38.163639], [-76.838795, 38.163476], [-76.875272, 38.172207], [-76.910832, 38.197073], [-76.916922, 38.199751], [-76.937134, 38.202384], [-76.962311, 38.214075], [-76.967335, 38.227185], [-76.966553, 38.229542], [-76.962375, 38.230093], [-76.957417, 38.236341], [-76.957796, 38.243183], [-76.96215, 38.256486], [-76.981372, 38.274214], [-76.990255, 38.273935], [-76.99767, 38.278047], [-77.026304, 38.302685], [-77.030683, 38.311623], [-77.020947, 38.329273], [-77.016932, 38.341697], [-77.011827, 38.374554], [-77.024866, 38.386791], [-77.043526, 38.400548], [-77.051437, 38.399083], [-77.056032, 38.3962], [-77.069956, 38.377895], [-77.08481, 38.368297], [-77.094665, 38.367715], [-77.104717, 38.369655], [-77.138224, 38.367917], [-77.155191, 38.351047], [-77.162692, 38.345994], [-77.17934, 38.341915], [-77.199433, 38.34089], [-77.240072, 38.331598], [-77.265295, 38.333165], [-77.279633, 38.339444], [-77.286202, 38.347024], [-77.286202, 38.347025], [-77.28835, 38.351286], [-77.288145, 38.359477], [-77.296077, 38.369797], [-77.317288, 38.383576], [-77.314848, 38.389579], [-77.312201, 38.390958], [-77.310719, 38.397669], [-77.319036, 38.417803], [-77.32544, 38.44885], [-77.322622, 38.467131], [-77.310334, 38.493926], [-77.302457, 38.504683], [-77.300776, 38.506978], [-77.298844, 38.508724], [-77.29582, 38.511457], [-77.291103, 38.515721], [-77.283503, 38.525221], [-77.276303, 38.53962], [-77.276603, 38.54712], [-77.26083, 38.56533], [-77.265304, 38.580319], [-77.26443, 38.582845], [-77.247003, 38.590618], [-77.246441, 38.599532], [-77.245104, 38.620717], [-77.248904, 38.628617], [-77.246704, 38.635217], [-77.240604, 38.638917], [-77.22235, 38.638091], [-77.216303, 38.637817], [-77.205103, 38.623917], [-77.204302, 38.617817], [-77.202002, 38.617217], [-77.174902, 38.624217], [-77.157501, 38.636417], [-77.1302, 38.635017], [-77.135901, 38.649817], [-77.132501, 38.673816], [-77.121101, 38.686616], [-77.1059, 38.696815], [-77.086113, 38.705792], [-77.074599, 38.711015], [-77.05991, 38.734419], [-77.041398, 38.763914], [-77.039239, 38.7852], [-77.038598, 38.791513], [-77.032986, 38.8395], [-77.031698, 38.850512], [-77.040599, 38.871212], [-77.068199, 38.899811], [-77.0902, 38.904211], [-77.1012, 38.911111], [-77.119863, 38.934265], [-77.1199, 38.934311], [-77.137701, 38.95531], [-77.148179, 38.965002], [-77.166901, 38.96811], [-77.197502, 38.96681], [-77.221502, 38.97131], [-77.235403, 38.97661], [-77.249803, 38.985909], [-77.255703, 39.002409], [-77.251803, 39.011409], [-77.261403, 39.031009], [-77.291605, 39.045408], [-77.328002, 39.058554], [-77.340287, 39.062991], [-77.375079, 39.061297], [-77.42318, 39.066878], [-77.458202, 39.073723], [-77.519929, 39.120925], [-77.524559, 39.127821], [-77.527282, 39.146236], [-77.516426, 39.170891], [-77.510631, 39.178484], [-77.505162, 39.18205], [-77.485971, 39.185665], [-77.478596, 39.189168], [-77.458884, 39.219826], [-77.458779, 39.22028], [-77.45768, 39.22502], [-77.46021, 39.228359], [-77.484605, 39.245941], [-77.511222, 39.2535], [-77.534461, 39.262361], [-77.543228, 39.266937], [-77.545846, 39.271535], [-77.560854, 39.286152], [-77.592739, 39.30129], [-77.667749, 39.318129], [-77.677505, 39.318699], [-77.719029, 39.321125], [-77.750267, 39.289284], [-77.753357, 39.280331], [-77.75306, 39.277971], [-77.753105, 39.27734], [-77.755193, 39.275191], [-77.755698, 39.274575], [-77.758412, 39.269197], [-77.758733, 39.268114], [-77.761217, 39.263721], [-77.761768, 39.263031], [-77.768, 39.257657], [-77.768992, 39.256417], [-77.767277, 39.24938], [-77.771415, 39.236776], [-77.822182, 39.139985], [-77.828157, 39.132329], [-78.032841, 39.264403], [-78.033183, 39.264624], [-78.033185, 39.264626], [-78.228766, 39.391233], [-78.347087, 39.466012], [-78.362267, 39.357784], [-78.34048, 39.353492], [-78.35894, 39.319484], [-78.360035, 39.317771], [-78.399785, 39.244129], [-78.399669, 39.243874], [-78.423968, 39.212049], [-78.427911, 39.208611], [-78.429803, 39.207014], [-78.431167, 39.205744], [-78.43213, 39.204717], [-78.437053, 39.199766], [-78.438651, 39.198049], [-78.426722, 39.188903], [-78.41074, 39.171983], [-78.418377, 39.156656], [-78.439429, 39.132146], [-78.459869, 39.113351], [-78.508132, 39.08863], [-78.544111, 39.056676], [-78.571901, 39.031995], [-78.565837, 39.026303], [-78.554222, 39.019672], [-78.557647, 39.013189], [-78.601655, 38.964603], [-78.710949, 38.910175], [-78.714135, 38.911176], [-78.716956, 38.916273], [-78.719755, 38.922135], [-78.719806, 38.922638], [-78.757278, 38.903203], [-78.779198, 38.892298], [-78.788031, 38.885123], [-78.808181, 38.856175], [-78.835191, 38.811499], [-78.869276, 38.762991] ] ], [ [ [-79.617919921875, 40.588928169693745], [-78.94775390625, 38.993572058209466], [-78.5302734375, 39.342794408952386], [-78.277587890625, 39.78321267821705], [-77.84912109375, 39.36827914916011], [-77.18994140625, 39.80853604144591], [-78.585205078125, 41.02135510866602], [-79.617919921875, 40.588928169693745] ] ] ] }, "properties": {}, "type": "Feature" }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80.1123046875, 36.2354121683998], [-76.959228515625, 36.2354121683998], [-76.959228515625, 41.22824901518529], [-80.1123046875, 41.22824901518529], [-80.1123046875, 36.2354121683998] ] ] } } ] } ================================================ FILE: packages/turf-bbox-clip/test/in/polygon-crossing-hole.geojson ================================================ { "type": "FeatureCollection", "features": [ { "geometry": { "type": "Polygon", "coordinates": [ [ [-78.869276, 38.762991], [-78.993997, 38.850102], [-78.999752, 38.846162], [-79.055354, 38.782213], [-79.057253, 38.761413], [-79.092555, 38.700149], [-79.092271, 38.699208], [-79.135472, 38.644057], [-79.135546, 38.643715], [-79.136374, 38.6424], [-79.137012, 38.640655], [-79.146741, 38.625819], [-79.146974, 38.625641], [-79.174512, 38.566531], [-79.174881, 38.566314], [-79.207884, 38.500428], [-79.207873, 38.500122], [-79.209703, 38.495574], [-79.210008, 38.494283], [-79.210026, 38.494231], [-79.225839, 38.479446], [-79.23162, 38.474041], [-79.234408, 38.473011], [-79.240059, 38.469841], [-79.242024, 38.464332], [-79.26291, 38.444586], [-79.263376, 38.443762], [-79.265327, 38.441772], [-79.267414, 38.438322], [-79.282663, 38.431021], [-79.280263, 38.425475], [-79.290529, 38.420757], [-79.291813, 38.419627], [-79.295712, 38.418129], [-79.297758, 38.416438], [-79.312276, 38.411876], [-79.476638, 38.457228], [-79.521469, 38.533918], [-79.53687, 38.550917], [-79.555471, 38.560217], [-79.597955, 38.572767], [-79.649075, 38.591515], [-79.669128, 38.510975], [-79.669128, 38.510883], [-79.695565, 38.477842], [-79.699006, 38.475148], [-79.688205, 38.450476], [-79.688962, 38.449538], [-79.689544, 38.442511], [-79.691377, 38.439558], [-79.731661, 38.374143], [-79.808711, 38.309429], [-79.810115, 38.305037], [-79.788945, 38.268703], [-79.790134, 38.267654], [-79.794568, 38.264856], [-79.891999, 38.203378], [-79.892345, 38.202397], [-79.916174, 38.184386], [-79.917061, 38.183741], [-79.921196, 38.180378], [-79.921026, 38.179954], [-79.925251, 38.150465], [-79.925512, 38.150237], [-79.928683, 38.144928], [-79.928747, 38.144436], [-79.933751, 38.135508], [-79.938394, 38.130563], [-79.931034, 38.101402], [-79.933911, 38.099168], [-79.959844, 38.063697], [-79.978427, 38.029082], [-80.002507, 37.992767], [-80.055278, 37.951702], [-80.130464, 37.893194], [-80.14613, 37.884453], [-80.147316, 37.885936], [-80.148964, 37.886057], [-80.162202, 37.875122], [-80.227092, 37.798886], [-80.231551, 37.792591], [-80.257411, 37.756084], [-80.262765, 37.738336], [-80.260313, 37.733517], [-80.259342, 37.731205], [-80.263936, 37.719137], [-80.287107, 37.696403], [-80.296138, 37.691783], [-80.292337, 37.683976], [-80.292258, 37.683732], [-80.270323, 37.648982], [-80.270352, 37.648929], [-80.267455, 37.646108], [-80.267228, 37.646011], [-80.264874, 37.645511], [-80.26483, 37.645526], [-80.263291, 37.645101], [-80.263281, 37.645082], [-80.254469, 37.642333], [-80.254431, 37.642352], [-80.239288, 37.637672], [-80.220984, 37.627767], [-80.223386, 37.623185], [-80.240272, 37.606961], [-80.288766, 37.58196], [-80.312393, 37.546239], [-80.330306, 37.536244], [-80.314806, 37.500943], [-80.320627, 37.49888], [-80.425656, 37.449876], [-80.443025, 37.438126], [-80.46482, 37.426144], [-80.475601, 37.422949], [-80.494867, 37.43507], [-80.511391, 37.481672], [-80.622664, 37.433307], [-80.770082, 37.372363], [-80.776649, 37.383679], [-80.776766, 37.384131], [-80.798869, 37.395807], [-80.811639, 37.407507], [-80.85836, 37.428168], [-80.858473, 37.428301], [-80.859556, 37.429568], [-80.859558, 37.429555], [-80.862761, 37.411829], [-80.872589, 37.372347], [-80.849451, 37.346909], [-80.900535, 37.315], [-80.919259, 37.306163], [-80.947896, 37.295872], [-80.966556, 37.292158], [-80.973889, 37.291444], [-80.980044, 37.293118], [-80.981322, 37.293465], [-81.034652, 37.290751], [-81.084012, 37.284401], [-81.112596, 37.278497], [-81.167029, 37.262881], [-81.204774, 37.243013], [-81.225104, 37.234874], [-81.320105, 37.299323], [-81.362156, 37.337687], [-81.366315, 37.335927], [-81.367052, 37.334504], [-81.36809, 37.332423], [-81.369379, 37.331827], [-81.367599, 37.327569], [-81.371315, 37.324115], [-81.377349, 37.318447], [-81.380159, 37.317838], [-81.384127, 37.318596], [-81.384914, 37.318832], [-81.38581, 37.320085], [-81.386727, 37.320474], [-81.388132, 37.319903], [-81.409196, 37.286071], [-81.409729, 37.284837], [-81.504168, 37.250115], [-81.50488, 37.247697], [-81.507325, 37.2338], [-81.557315, 37.207697], [-81.558353, 37.208145], [-81.560625, 37.206663], [-81.678603, 37.202467], [-81.683544, 37.211452], [-81.728194, 37.239823], [-81.73332, 37.238127], [-81.738378, 37.240917], [-81.744291, 37.244178], [-81.74342, 37.245858], [-81.743505, 37.247601], [-81.747656, 37.264329], [-81.75129, 37.265131], [-81.752123, 37.265568], [-81.752912, 37.266614], [-81.755012, 37.26772], [-81.757531, 37.27001], [-81.757714, 37.271124], [-81.75773, 37.271934], [-81.757631, 37.274003], [-81.76022, 37.275254], [-81.761752, 37.275713], [-81.762776, 37.275391], [-81.763836, 37.275218], [-81.765195, 37.275099], [-81.767837, 37.274216], [-81.774684, 37.274807], [-81.774747, 37.274847], [-81.793425, 37.281674], [-81.793639, 37.282188], [-81.809184, 37.283003], [-81.810559, 37.28298], [-81.84231, 37.285556], [-81.843167, 37.285586], [-81.854059, 37.291352], [-81.853488, 37.294763], [-81.854465, 37.299937], [-81.853978, 37.300418], [-81.86476, 37.308404], [-81.865219, 37.308839], [-81.873213, 37.325065], [-81.878343, 37.328837], [-81.878713, 37.331753], [-81.879601, 37.332074], [-81.880886, 37.331146], [-81.885075, 37.330665], [-81.886952, 37.330725], [-81.887722, 37.331156], [-81.892876, 37.330134], [-81.893773, 37.330105], [-81.894768, 37.331381], [-81.894797, 37.332012], [-81.895489, 37.332022], [-81.896001, 37.331967], [-81.899459, 37.340277], [-81.899495, 37.341102], [-81.902992, 37.34234], [-81.903795, 37.34305], [-81.905945, 37.342775], [-81.906368, 37.34276], [-81.907322, 37.343119], [-81.907895, 37.343783], [-81.910875, 37.348729], [-81.911487, 37.348839], [-81.920711, 37.355416], [-81.921571, 37.356423], [-81.925643, 37.357316], [-81.926589, 37.358942], [-81.929915, 37.366589], [-81.930194, 37.366728], [-81.933895, 37.372747], [-81.92749, 37.413251], [-81.935621, 37.438397], [-81.949367, 37.445687], [-81.968795, 37.451496], [-81.987006, 37.454878], [-81.99227, 37.460916], [-81.996578, 37.476705], [-81.992916, 37.482969], [-81.94264, 37.508844], [-81.92787, 37.512118], [-81.968297, 37.537798], [-82.291908, 37.311642], [-82.305874, 37.3011], [-82.310793, 37.297387], [-82.350948, 37.267077], [-82.510826, 37.218091], [-82.553549, 37.200867], [-82.565329, 37.196118], [-82.565375, 37.196092], [-82.624878, 37.162932], [-82.721941, 37.105689], [-82.720597, 37.081833], [-82.722472, 37.045101], [-82.771795, 37.015716], [-82.777368, 37.015279], [-82.788897, 37.00816], [-82.789092, 37.007995], [-82.790462, 37.007263], [-82.79089, 37.00676], [-82.800531, 37.007944], [-82.815748, 37.007196], [-82.818006, 37.006161], [-82.830588, 37.000945], [-82.829125, 36.997541], [-82.830802, 36.993445], [-82.833843, 36.991973], [-82.836008, 36.988837], [-82.838549, 36.987027], [-82.840051, 36.987113], [-82.851397, 36.984497], [-82.852614, 36.984963], [-82.862926, 36.979975], [-82.864909, 36.97901], [-82.866019, 36.978272], [-82.866689, 36.978052], [-82.867535, 36.977518], [-82.868455, 36.976481], [-82.869183, 36.974183], [-82.869183, 36.974182], [-82.870274, 36.965993], [-82.87023, 36.965498], [-82.867358, 36.963182], [-82.865404, 36.958084], [-82.864211, 36.957983], [-82.862866, 36.957765], [-82.860534, 36.956015], [-82.858443, 36.954036], [-82.855705, 36.953808], [-82.856099, 36.952471], [-82.860633, 36.94584], [-82.861282, 36.944848], [-82.861684, 36.939316], [-82.860537, 36.937439], [-82.858784, 36.933065], [-82.858461, 36.932717], [-82.861943, 36.924236], [-82.863468, 36.922308], [-82.872136, 36.913456], [-82.873777, 36.912299], [-82.885618, 36.900415], [-82.91169, 36.874248], [-82.911824, 36.874243], [-82.973395, 36.859097], [-83.07259, 36.854589], [-83.099792, 36.824889], [-83.131694, 36.781488], [-83.131245, 36.767105], [-83.125655, 36.761407], [-83.125728, 36.761276], [-83.127833, 36.750828], [-83.136395, 36.743088], [-83.167396, 36.739187], [-83.199698, 36.737487], [-83.342804, 36.701286], [-83.353613, 36.696699], [-83.354606, 36.696153], [-83.460808, 36.664885], [-83.461013, 36.664916], [-83.498011, 36.670485], [-83.527212, 36.665984], [-83.649513, 36.616683], [-83.675413, 36.600814], [-83.670141, 36.600797], [-83.670128, 36.600764], [-83.472108, 36.597284], [-83.2763, 36.598187], [-83.250304, 36.593935], [-83.249899, 36.593898], [-83.248933, 36.593827], [-83.028357, 36.593893], [-83.02725, 36.593847], [-82.985087, 36.593829], [-82.830433, 36.593761], [-82.69578, 36.593698], [-82.679879, 36.593698], [-82.609176, 36.594099], [-82.561074, 36.5948], [-82.559774, 36.5948], [-82.554294, 36.594876], [-82.293814, 36.595565], [-82.243274, 36.595699], [-82.226653, 36.595743], [-82.225716, 36.595744], [-82.223445, 36.595721], [-82.221713, 36.595814], [-82.211005, 36.59586], [-82.210497, 36.595772], [-82.188491, 36.595179], [-82.18074, 36.594928], [-82.177247, 36.594768], [-82.173982, 36.594607], [-82.150727, 36.594673], [-82.148569, 36.594718], [-82.14607, 36.594712], [-81.934144, 36.594213], [-81.922644, 36.616213], [-81.826742, 36.614215], [-81.6469, 36.611918], [-81.677535, 36.588117], [-81.60697, 36.587094], [-81.521032, 36.58052], [-81.353322, 36.574723], [-81.353169, 36.574724], [-81.307511, 36.575024], [-81.061866, 36.56702], [-81.058844, 36.566976], [-80.945988, 36.563196], [-80.944338, 36.563058], [-80.901836, 36.561754], [-80.901726, 36.561751], [-80.837954, 36.559131], [-80.837641, 36.559118], [-80.837089, 36.559154], [-80.744101, 36.561686], [-80.687539, 36.561411], [-80.612158, 36.558127], [-80.4401, 36.55063], [-80.432628, 36.550302], [-80.431605, 36.550219], [-80.228263, 36.543867], [-80.225408, 36.543748], [-80.171636, 36.543219], [-80.169535, 36.54319], [-80.053455, 36.542623], [-80.027269, 36.542495], [-79.967511, 36.542502], [-79.966979, 36.542475], [-79.920239, 36.542365], [-79.714855, 36.541884], [-79.667309, 36.541772], [-79.666827, 36.541772], [-79.510961, 36.54074], [-79.510647, 36.540738], [-79.470047, 36.541025], [-79.445961, 36.541195], [-79.445687, 36.541218], [-79.342696, 36.541382], [-79.218638, 36.541579], [-79.20948, 36.541594], [-79.208686, 36.541571], [-79.137936, 36.541739], [-79.126078, 36.541533], [-79.124736, 36.541568], [-78.971814, 36.542123], [-78.970577, 36.542154], [-78.942254, 36.542079], [-78.942009, 36.542113], [-78.91542, 36.541974], [-78.914543, 36.541972], [-78.7963, 36.541713], [-78.76543, 36.541727], [-78.758392, 36.541852], [-78.734122, 36.541902], [-78.670051, 36.542035], [-78.663317, 36.542011], [-78.533013, 36.541004], [-78.529722, 36.540981], [-78.471022, 36.542307], [-78.470792, 36.542316], [-78.45697, 36.542474], [-78.441199, 36.542687], [-78.436333, 36.542666], [-78.323912, 36.543809], [-78.246681, 36.544341], [-78.245462, 36.544411], [-78.133323, 36.543847], [-78.132911, 36.543811], [-78.046202, 36.544168], [-78.03942, 36.544196], [-78.038938, 36.544173], [-77.899771, 36.544663], [-77.882357, 36.544737], [-77.87528, 36.544754], [-77.767117, 36.544752], [-77.296875, 36.544746], [-77.24969, 36.544745], [-77.1645, 36.54633], [-76.916048, 36.543815], [-76.916001, 36.543818], [-76.915384, 36.543856], [-76.807078, 36.550606], [-76.781296, 36.550659], [-76.541687, 36.550312], [-76.541391, 36.550312], [-76.491497, 36.550365], [-76.313215, 36.550551], [-76.313196, 36.550551], [-76.12236, 36.550621], [-76.034751, 36.550653], [-76.02675, 36.550553], [-75.957648, 36.550553], [-75.955748, 36.550553], [-75.953447, 36.550553], [-75.952847, 36.550553], [-75.922046, 36.550654], [-75.911446, 36.550654], [-75.909046, 36.550654], [-75.904745, 36.550654], [-75.903445, 36.550654], [-75.894145, 36.550754], [-75.893245, 36.550654], [-75.891945, 36.550754], [-75.886545, 36.550754], [-75.885945, 36.550754], [-75.880644, 36.550754], [-75.879744, 36.550754], [-75.867044, 36.550754], [-75.874145, 36.583853], [-75.890946, 36.630753], [-75.921748, 36.692051], [-75.94955, 36.76115], [-75.965451, 36.812449], [-75.972151, 36.842268], [-75.991552, 36.910847], [-75.996252, 36.922047], [-76.007553, 36.929047], [-76.013753, 36.930746], [-76.033454, 36.931946], [-76.043054, 36.927547], [-76.058154, 36.916947], [-76.087955, 36.908647], [-76.095508, 36.908817], [-76.139557, 36.923047], [-76.177019, 36.92929], [-76.189959, 36.931447], [-76.22166, 36.939547], [-76.234961, 36.945147], [-76.267962, 36.964547], [-76.285063, 36.968747], [-76.297663, 36.968147], [-76.299364, 36.965547], [-76.315867, 36.955351], [-76.322764, 36.959147], [-76.327365, 36.959447], [-76.330765, 36.938647], [-76.328864, 36.918447], [-76.333158, 36.917293], [-76.344663, 36.919313], [-76.345569, 36.924531], [-76.353765, 36.922747], [-76.385867, 36.923247], [-76.387567, 36.899547], [-76.406908, 36.897507], [-76.407507, 36.897444], [-76.43122, 36.904532], [-76.441605, 36.906116], [-76.447413, 36.90322], [-76.453941, 36.89274], [-76.45329, 36.887031], [-76.454692, 36.884077], [-76.469914, 36.882898], [-76.483369, 36.896239], [-76.482135, 36.901108], [-76.482407, 36.917364], [-76.484107, 36.928916], [-76.487559, 36.952372], [-76.500355, 36.965212], [-76.513363, 36.968057], [-76.521006, 36.973187], [-76.524142, 36.978316], [-76.522971, 36.981085], [-76.524853, 36.983833], [-76.551246, 36.998946], [-76.562923, 37.003796], [-76.565803, 37.007493], [-76.576617, 37.021374], [-76.577531, 37.022548], [-76.57816, 37.022982], [-76.579236, 37.023726], [-76.579393, 37.023835], [-76.584478, 37.027349], [-76.586491, 37.02874], [-76.612124, 37.035604], [-76.646013, 37.036228], [-76.653998, 37.039172], [-76.662558, 37.045748], [-76.66835, 37.05506], [-76.669822, 37.06426], [-76.669118, 37.068132], [-76.668295, 37.072656], [-76.667646, 37.076228], [-76.667219, 37.077149], [-76.666526, 37.078643], [-76.66555, 37.080746], [-76.659394, 37.094019], [-76.65811, 37.096787], [-76.657703, 37.101161], [-76.657101, 37.107617], [-76.656894, 37.109843], [-76.66375, 37.129979], [-76.665641, 37.135534], [-76.665833, 37.136098], [-76.666542, 37.138179], [-76.669604, 37.140534], [-76.671588, 37.14206], [-76.67147, 37.158739], [-76.66867, 37.166771], [-76.66427, 37.171027], [-76.663774, 37.173875], [-76.669886, 37.183571], [-76.685614, 37.198851], [-76.691918, 37.195731], [-76.692926, 37.186147], [-76.696735, 37.174403], [-76.715295, 37.148035], [-76.73032, 37.145395], [-76.73728, 37.146164], [-76.747632, 37.150548], [-76.756899, 37.161582], [-76.796905, 37.189404], [-76.802511, 37.198308], [-76.803198, 37.201513], [-76.801023, 37.206043], [-76.791555, 37.207564], [-76.780532, 37.209336], [-76.773752, 37.206061], [-76.757765, 37.191658], [-76.75047, 37.190098], [-76.74304, 37.192611], [-76.74, 37.195379], [-76.73432, 37.204211], [-76.730951, 37.213813], [-76.698943, 37.219059], [-76.693373, 37.221228], [-76.689166, 37.222866], [-76.649869, 37.220914], [-76.641085, 37.216002], [-76.639608, 37.214783], [-76.629868, 37.206738], [-76.623292, 37.198738], [-76.621113, 37.195103], [-76.619962, 37.193184], [-76.61934, 37.192146], [-76.618008, 37.186429], [-76.617537, 37.184409], [-76.616804, 37.18126], [-76.616268, 37.178962], [-76.614221, 37.174335], [-76.613599, 37.172931], [-76.612517, 37.170486], [-76.611018, 37.167097], [-76.610972, 37.166994], [-76.606684, 37.166674], [-76.604476, 37.160034], [-76.617084, 37.144498], [-76.622252, 37.142146], [-76.62478, 37.127091], [-76.618252, 37.119347], [-76.579499, 37.096627], [-76.567931, 37.080467], [-76.564219, 37.077507], [-76.555066, 37.075859], [-76.536875, 37.083942], [-76.528997, 37.079388], [-76.526203, 37.077773], [-76.526573, 37.070047], [-76.527973, 37.068247], [-76.526273, 37.062947], [-76.518242, 37.055351], [-76.512289, 37.054858], [-76.509339, 37.053173], [-76.507614, 37.052188], [-76.46949, 37.030414], [-76.464471, 37.027547], [-76.448231, 37.007705], [-76.449891, 37.004868], [-76.452461, 37.004603], [-76.452118, 36.998163], [-76.428869, 36.969947], [-76.418969, 36.964047], [-76.411768, 36.962847], [-76.408568, 36.969147], [-76.396368, 36.982347], [-76.387711, 36.989671], [-76.383367, 36.993347], [-76.373567, 36.998347], [-76.356366, 37.002947], [-76.348066, 37.006747], [-76.340666, 37.015246], [-76.34011, 37.015212], [-76.329531, 37.014556], [-76.318065, 37.013846], [-76.314624, 37.00933], [-76.315008, 37.001683], [-76.312048, 37.000371], [-76.304272, 37.001378], [-76.300352, 37.00885], [-76.292863, 37.035145], [-76.271262, 37.084544], [-76.274463, 37.094544], [-76.287236, 37.117453], [-76.292344, 37.126615], [-76.311088, 37.138495], [-76.324353, 37.142895], [-76.330481, 37.141727], [-76.334017, 37.144223], [-76.340129, 37.151823], [-76.34405, 37.160367], [-76.344898, 37.164479], [-76.343234, 37.166207], [-76.348658, 37.170655], [-76.35969, 37.16858], [-76.375255, 37.16084], [-76.381379, 37.155711], [-76.394756, 37.157568], [-76.399659, 37.160272], [-76.397883, 37.164415], [-76.391252, 37.179887], [-76.389284, 37.193503], [-76.396052, 37.201087], [-76.3936, 37.214049], [-76.389793, 37.222981], [-76.394132, 37.22515], [-76.471799, 37.216016], [-76.494008, 37.225408], [-76.50364, 37.233856], [-76.4989, 37.241015], [-76.493302, 37.24947], [-76.48284, 37.254831], [-76.475927, 37.250543], [-76.429141, 37.25331], [-76.421765, 37.255198], [-76.417173, 37.26395], [-76.392788, 37.264973], [-76.36229, 37.270226], [-76.349489, 37.273963], [-76.352556, 37.278334], [-76.369029, 37.279311], [-76.381075, 37.28534], [-76.385603, 37.294108], [-76.38777, 37.30767], [-76.406388, 37.332924], [-76.434965, 37.354524], [-76.445333, 37.36646], [-76.437525, 37.37975], [-76.422503, 37.381355], [-76.418176, 37.385064], [-76.418719, 37.3978], [-76.415167, 37.402133], [-76.404756, 37.400213], [-76.393125, 37.398068], [-76.393958, 37.39594], [-76.391437, 37.390284], [-76.387112, 37.385061], [-76.366751, 37.374495], [-76.337476, 37.364014], [-76.31205, 37.338088], [-76.308581, 37.329366], [-76.291324, 37.324145], [-76.282555, 37.319107], [-76.275552, 37.309964], [-76.272005, 37.322194], [-76.272888, 37.335174], [-76.264847, 37.357399], [-76.262407, 37.360786], [-76.258277, 37.36202], [-76.24846, 37.375135], [-76.245283, 37.386839], [-76.246617, 37.404122], [-76.250454, 37.421886], [-76.252415, 37.447274], [-76.265056, 37.481365], [-76.281043, 37.507821], [-76.288167, 37.514118], [-76.293599, 37.516499], [-76.297651, 37.515424], [-76.298456, 37.512677], [-76.296445, 37.511235], [-76.297739, 37.506863], [-76.306952, 37.497488], [-76.32947, 37.49492], [-76.352678, 37.504913], [-76.359378, 37.513426], [-76.360474, 37.51924], [-76.355084, 37.527364], [-76.348992, 37.536548], [-76.339989, 37.53833], [-76.330598, 37.536391], [-76.302762, 37.551295], [-76.29796, 37.557636], [-76.300144, 37.561734], [-76.332641, 37.570042], [-76.357835, 37.573699], [-76.383188, 37.573056], [-76.410781, 37.581815], [-76.420252, 37.598686], [-76.435474, 37.612807], [-76.527188, 37.611315], [-76.533777, 37.61253], [-76.542666, 37.616857], [-76.574049, 37.646781], [-76.583143, 37.661986], [-76.579591, 37.671508], [-76.597868, 37.702918], [-76.598073, 37.70912], [-76.595943, 37.712989], [-76.597213, 37.717269], [-76.606466, 37.724819], [-76.61997, 37.731271], [-76.621433, 37.737973], [-76.617373, 37.742347], [-76.61971, 37.744795], [-76.639962, 37.750941], [-76.663887, 37.751887], [-76.677002, 37.7561], [-76.680922, 37.759647], [-76.683372, 37.765507], [-76.683359, 37.770258], [-76.683343, 37.775783], [-76.681901, 37.778118], [-76.683775, 37.781391], [-76.689773, 37.78519], [-76.715498, 37.785873], [-76.723863, 37.788503], [-76.734309, 37.79866], [-76.7512, 37.824141], [-76.766328, 37.840437], [-76.782826, 37.863184], [-76.784618, 37.869569], [-76.77539, 37.874306], [-76.765711, 37.879274], [-76.747552, 37.875864], [-76.738395, 37.865373], [-76.733046, 37.852009], [-76.72718, 37.842263], [-76.722156, 37.83668], [-76.701606, 37.822677], [-76.692747, 37.82277], [-76.680197, 37.825654], [-76.658302, 37.806815], [-76.651413, 37.796239], [-76.642276, 37.792317], [-76.615351, 37.780759], [-76.602024, 37.772731], [-76.595939, 37.77168], [-76.593835, 37.772848], [-76.584289, 37.76889], [-76.576387, 37.757493], [-76.560476, 37.727827], [-76.54005, 37.704432], [-76.537228, 37.698892], [-76.535302, 37.687516], [-76.537698, 37.66893], [-76.536548, 37.663574], [-76.510187, 37.642324], [-76.501522, 37.643762], [-76.497564, 37.647056], [-76.491799, 37.663614], [-76.489576, 37.666201], [-76.472392, 37.665772], [-76.443254, 37.652347], [-76.399236, 37.628636], [-76.390054, 37.630326], [-76.381106, 37.627003], [-76.36232, 37.610368], [-76.309174, 37.621892], [-76.28037, 37.613715], [-76.279447, 37.618225], [-76.287959, 37.631771], [-76.292534, 37.636098], [-76.306464, 37.642005], [-76.332562, 37.645817], [-76.339892, 37.655966], [-76.324808, 37.676983], [-76.320216, 37.680666], [-76.315161, 37.68472], [-76.312079, 37.684651], [-76.302545, 37.689], [-76.300067, 37.695364], [-76.302803, 37.704474], [-76.312858, 37.720338], [-76.304917, 37.729913], [-76.312108, 37.750522], [-76.306489, 37.788646], [-76.310307, 37.794849], [-76.307482, 37.81235], [-76.293525, 37.822717], [-76.284904, 37.822308], [-76.281985, 37.818068], [-76.282592, 37.814109], [-76.280544, 37.812597], [-76.275178, 37.812664], [-76.266057, 37.8174], [-76.251358, 37.833072], [-76.245072, 37.861918], [-76.236725, 37.889174], [-76.265998, 37.91138], [-76.343848, 37.947345], [-76.360211, 37.952329], [-76.391439, 37.958742], [-76.416299, 37.966828], [-76.427487, 37.977038], [-76.462542, 37.998572], [-76.465291, 38.010226], [-76.469343, 38.013544], [-76.491998, 38.017222], [-76.516547, 38.026566], [-76.519536, 38.034814], [-76.522354, 38.04259], [-76.535919, 38.069532], [-76.543155, 38.076971], [-76.579497, 38.09487], [-76.600937, 38.110084], [-76.604131, 38.128771], [-76.613939, 38.148587], [-76.629476, 38.15305], [-76.638983, 38.151476], [-76.643448, 38.14825], [-76.665127, 38.147638], [-76.684892, 38.156497], [-76.701297, 38.155718], [-76.704048, 38.149264], [-76.721722, 38.137635], [-76.738938, 38.14651], [-76.740278, 38.152824], [-76.743064, 38.156988], [-76.749685, 38.162114], [-76.760241, 38.166581], [-76.788445, 38.169199], [-76.802968, 38.167988], [-76.824274, 38.163639], [-76.838795, 38.163476], [-76.875272, 38.172207], [-76.910832, 38.197073], [-76.916922, 38.199751], [-76.937134, 38.202384], [-76.962311, 38.214075], [-76.967335, 38.227185], [-76.966553, 38.229542], [-76.962375, 38.230093], [-76.957417, 38.236341], [-76.957796, 38.243183], [-76.96215, 38.256486], [-76.981372, 38.274214], [-76.990255, 38.273935], [-76.99767, 38.278047], [-77.026304, 38.302685], [-77.030683, 38.311623], [-77.020947, 38.329273], [-77.016932, 38.341697], [-77.011827, 38.374554], [-77.024866, 38.386791], [-77.043526, 38.400548], [-77.051437, 38.399083], [-77.056032, 38.3962], [-77.069956, 38.377895], [-77.08481, 38.368297], [-77.094665, 38.367715], [-77.104717, 38.369655], [-77.138224, 38.367917], [-77.155191, 38.351047], [-77.162692, 38.345994], [-77.17934, 38.341915], [-77.199433, 38.34089], [-77.240072, 38.331598], [-77.265295, 38.333165], [-77.279633, 38.339444], [-77.286202, 38.347024], [-77.286202, 38.347025], [-77.28835, 38.351286], [-77.288145, 38.359477], [-77.296077, 38.369797], [-77.317288, 38.383576], [-77.314848, 38.389579], [-77.312201, 38.390958], [-77.310719, 38.397669], [-77.319036, 38.417803], [-77.32544, 38.44885], [-77.322622, 38.467131], [-77.310334, 38.493926], [-77.302457, 38.504683], [-77.300776, 38.506978], [-77.298844, 38.508724], [-77.29582, 38.511457], [-77.291103, 38.515721], [-77.283503, 38.525221], [-77.276303, 38.53962], [-77.276603, 38.54712], [-77.26083, 38.56533], [-77.265304, 38.580319], [-77.26443, 38.582845], [-77.247003, 38.590618], [-77.246441, 38.599532], [-77.245104, 38.620717], [-77.248904, 38.628617], [-77.246704, 38.635217], [-77.240604, 38.638917], [-77.22235, 38.638091], [-77.216303, 38.637817], [-77.205103, 38.623917], [-77.204302, 38.617817], [-77.202002, 38.617217], [-77.174902, 38.624217], [-77.157501, 38.636417], [-77.1302, 38.635017], [-77.135901, 38.649817], [-77.132501, 38.673816], [-77.121101, 38.686616], [-77.1059, 38.696815], [-77.086113, 38.705792], [-77.074599, 38.711015], [-77.05991, 38.734419], [-77.041398, 38.763914], [-77.039239, 38.7852], [-77.038598, 38.791513], [-77.032986, 38.8395], [-77.031698, 38.850512], [-77.040599, 38.871212], [-77.068199, 38.899811], [-77.0902, 38.904211], [-77.1012, 38.911111], [-77.119863, 38.934265], [-77.1199, 38.934311], [-77.137701, 38.95531], [-77.148179, 38.965002], [-77.166901, 38.96811], [-77.197502, 38.96681], [-77.221502, 38.97131], [-77.235403, 38.97661], [-77.249803, 38.985909], [-77.255703, 39.002409], [-77.251803, 39.011409], [-77.261403, 39.031009], [-77.291605, 39.045408], [-77.328002, 39.058554], [-77.340287, 39.062991], [-77.375079, 39.061297], [-77.42318, 39.066878], [-77.458202, 39.073723], [-77.519929, 39.120925], [-77.524559, 39.127821], [-77.527282, 39.146236], [-77.516426, 39.170891], [-77.510631, 39.178484], [-77.505162, 39.18205], [-77.485971, 39.185665], [-77.478596, 39.189168], [-77.458884, 39.219826], [-77.458779, 39.22028], [-77.45768, 39.22502], [-77.46021, 39.228359], [-77.484605, 39.245941], [-77.511222, 39.2535], [-77.534461, 39.262361], [-77.543228, 39.266937], [-77.545846, 39.271535], [-77.560854, 39.286152], [-77.592739, 39.30129], [-77.667749, 39.318129], [-77.677505, 39.318699], [-77.719029, 39.321125], [-77.750267, 39.289284], [-77.753357, 39.280331], [-77.75306, 39.277971], [-77.753105, 39.27734], [-77.755193, 39.275191], [-77.755698, 39.274575], [-77.758412, 39.269197], [-77.758733, 39.268114], [-77.761217, 39.263721], [-77.761768, 39.263031], [-77.768, 39.257657], [-77.768992, 39.256417], [-77.767277, 39.24938], [-77.771415, 39.236776], [-77.822182, 39.139985], [-77.828157, 39.132329], [-78.032841, 39.264403], [-78.033183, 39.264624], [-78.033185, 39.264626], [-78.228766, 39.391233], [-78.347087, 39.466012], [-78.362267, 39.357784], [-78.34048, 39.353492], [-78.35894, 39.319484], [-78.360035, 39.317771], [-78.399785, 39.244129], [-78.399669, 39.243874], [-78.423968, 39.212049], [-78.427911, 39.208611], [-78.429803, 39.207014], [-78.431167, 39.205744], [-78.43213, 39.204717], [-78.437053, 39.199766], [-78.438651, 39.198049], [-78.426722, 39.188903], [-78.41074, 39.171983], [-78.418377, 39.156656], [-78.439429, 39.132146], [-78.459869, 39.113351], [-78.508132, 39.08863], [-78.544111, 39.056676], [-78.571901, 39.031995], [-78.565837, 39.026303], [-78.554222, 39.019672], [-78.557647, 39.013189], [-78.601655, 38.964603], [-78.710949, 38.910175], [-78.714135, 38.911176], [-78.716956, 38.916273], [-78.719755, 38.922135], [-78.719806, 38.922638], [-78.757278, 38.903203], [-78.779198, 38.892298], [-78.788031, 38.885123], [-78.808181, 38.856175], [-78.835191, 38.811499], [-78.869276, 38.762991] ], [ [-78.3050537109375, 38.62545397209084], [-78.3050537109375, 39.24501680713314], [-78.134765625, 39.24501680713314], [-78.134765625, 38.62545397209084], [-78.3050537109375, 38.62545397209084] ] ] }, "properties": {}, "type": "Feature" }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.12353515625, 36.34167804918315], [-76.739501953125, 36.34167804918315], [-76.739501953125, 39.027718840211605], [-79.12353515625, 39.027718840211605], [-79.12353515625, 36.34167804918315] ] ] } } ] } ================================================ FILE: packages/turf-bbox-clip/test/in/polygon-holes.geojson ================================================ { "type": "FeatureCollection", "features": [ { "geometry": { "type": "Polygon", "coordinates": [ [ [-78.869276, 38.762991], [-78.993997, 38.850102], [-78.999752, 38.846162], [-79.055354, 38.782213], [-79.057253, 38.761413], [-79.092555, 38.700149], [-79.092271, 38.699208], [-79.135472, 38.644057], [-79.135546, 38.643715], [-79.136374, 38.6424], [-79.137012, 38.640655], [-79.146741, 38.625819], [-79.146974, 38.625641], [-79.174512, 38.566531], [-79.174881, 38.566314], [-79.207884, 38.500428], [-79.207873, 38.500122], [-79.209703, 38.495574], [-79.210008, 38.494283], [-79.210026, 38.494231], [-79.225839, 38.479446], [-79.23162, 38.474041], [-79.234408, 38.473011], [-79.240059, 38.469841], [-79.242024, 38.464332], [-79.26291, 38.444586], [-79.263376, 38.443762], [-79.265327, 38.441772], [-79.267414, 38.438322], [-79.282663, 38.431021], [-79.280263, 38.425475], [-79.290529, 38.420757], [-79.291813, 38.419627], [-79.295712, 38.418129], [-79.297758, 38.416438], [-79.312276, 38.411876], [-79.476638, 38.457228], [-79.521469, 38.533918], [-79.53687, 38.550917], [-79.555471, 38.560217], [-79.597955, 38.572767], [-79.649075, 38.591515], [-79.669128, 38.510975], [-79.669128, 38.510883], [-79.695565, 38.477842], [-79.699006, 38.475148], [-79.688205, 38.450476], [-79.688962, 38.449538], [-79.689544, 38.442511], [-79.691377, 38.439558], [-79.731661, 38.374143], [-79.808711, 38.309429], [-79.810115, 38.305037], [-79.788945, 38.268703], [-79.790134, 38.267654], [-79.794568, 38.264856], [-79.891999, 38.203378], [-79.892345, 38.202397], [-79.916174, 38.184386], [-79.917061, 38.183741], [-79.921196, 38.180378], [-79.921026, 38.179954], [-79.925251, 38.150465], [-79.925512, 38.150237], [-79.928683, 38.144928], [-79.928747, 38.144436], [-79.933751, 38.135508], [-79.938394, 38.130563], [-79.931034, 38.101402], [-79.933911, 38.099168], [-79.959844, 38.063697], [-79.978427, 38.029082], [-80.002507, 37.992767], [-80.055278, 37.951702], [-80.130464, 37.893194], [-80.14613, 37.884453], [-80.147316, 37.885936], [-80.148964, 37.886057], [-80.162202, 37.875122], [-80.227092, 37.798886], [-80.231551, 37.792591], [-80.257411, 37.756084], [-80.262765, 37.738336], [-80.260313, 37.733517], [-80.259342, 37.731205], [-80.263936, 37.719137], [-80.287107, 37.696403], [-80.296138, 37.691783], [-80.292337, 37.683976], [-80.292258, 37.683732], [-80.270323, 37.648982], [-80.270352, 37.648929], [-80.267455, 37.646108], [-80.267228, 37.646011], [-80.264874, 37.645511], [-80.26483, 37.645526], [-80.263291, 37.645101], [-80.263281, 37.645082], [-80.254469, 37.642333], [-80.254431, 37.642352], [-80.239288, 37.637672], [-80.220984, 37.627767], [-80.223386, 37.623185], [-80.240272, 37.606961], [-80.288766, 37.58196], [-80.312393, 37.546239], [-80.330306, 37.536244], [-80.314806, 37.500943], [-80.320627, 37.49888], [-80.425656, 37.449876], [-80.443025, 37.438126], [-80.46482, 37.426144], [-80.475601, 37.422949], [-80.494867, 37.43507], [-80.511391, 37.481672], [-80.622664, 37.433307], [-80.770082, 37.372363], [-80.776649, 37.383679], [-80.776766, 37.384131], [-80.798869, 37.395807], [-80.811639, 37.407507], [-80.85836, 37.428168], [-80.858473, 37.428301], [-80.859556, 37.429568], [-80.859558, 37.429555], [-80.862761, 37.411829], [-80.872589, 37.372347], [-80.849451, 37.346909], [-80.900535, 37.315], [-80.919259, 37.306163], [-80.947896, 37.295872], [-80.966556, 37.292158], [-80.973889, 37.291444], [-80.980044, 37.293118], [-80.981322, 37.293465], [-81.034652, 37.290751], [-81.084012, 37.284401], [-81.112596, 37.278497], [-81.167029, 37.262881], [-81.204774, 37.243013], [-81.225104, 37.234874], [-81.320105, 37.299323], [-81.362156, 37.337687], [-81.366315, 37.335927], [-81.367052, 37.334504], [-81.36809, 37.332423], [-81.369379, 37.331827], [-81.367599, 37.327569], [-81.371315, 37.324115], [-81.377349, 37.318447], [-81.380159, 37.317838], [-81.384127, 37.318596], [-81.384914, 37.318832], [-81.38581, 37.320085], [-81.386727, 37.320474], [-81.388132, 37.319903], [-81.409196, 37.286071], [-81.409729, 37.284837], [-81.504168, 37.250115], [-81.50488, 37.247697], [-81.507325, 37.2338], [-81.557315, 37.207697], [-81.558353, 37.208145], [-81.560625, 37.206663], [-81.678603, 37.202467], [-81.683544, 37.211452], [-81.728194, 37.239823], [-81.73332, 37.238127], [-81.738378, 37.240917], [-81.744291, 37.244178], [-81.74342, 37.245858], [-81.743505, 37.247601], [-81.747656, 37.264329], [-81.75129, 37.265131], [-81.752123, 37.265568], [-81.752912, 37.266614], [-81.755012, 37.26772], [-81.757531, 37.27001], [-81.757714, 37.271124], [-81.75773, 37.271934], [-81.757631, 37.274003], [-81.76022, 37.275254], [-81.761752, 37.275713], [-81.762776, 37.275391], [-81.763836, 37.275218], [-81.765195, 37.275099], [-81.767837, 37.274216], [-81.774684, 37.274807], [-81.774747, 37.274847], [-81.793425, 37.281674], [-81.793639, 37.282188], [-81.809184, 37.283003], [-81.810559, 37.28298], [-81.84231, 37.285556], [-81.843167, 37.285586], [-81.854059, 37.291352], [-81.853488, 37.294763], [-81.854465, 37.299937], [-81.853978, 37.300418], [-81.86476, 37.308404], [-81.865219, 37.308839], [-81.873213, 37.325065], [-81.878343, 37.328837], [-81.878713, 37.331753], [-81.879601, 37.332074], [-81.880886, 37.331146], [-81.885075, 37.330665], [-81.886952, 37.330725], [-81.887722, 37.331156], [-81.892876, 37.330134], [-81.893773, 37.330105], [-81.894768, 37.331381], [-81.894797, 37.332012], [-81.895489, 37.332022], [-81.896001, 37.331967], [-81.899459, 37.340277], [-81.899495, 37.341102], [-81.902992, 37.34234], [-81.903795, 37.34305], [-81.905945, 37.342775], [-81.906368, 37.34276], [-81.907322, 37.343119], [-81.907895, 37.343783], [-81.910875, 37.348729], [-81.911487, 37.348839], [-81.920711, 37.355416], [-81.921571, 37.356423], [-81.925643, 37.357316], [-81.926589, 37.358942], [-81.929915, 37.366589], [-81.930194, 37.366728], [-81.933895, 37.372747], [-81.92749, 37.413251], [-81.935621, 37.438397], [-81.949367, 37.445687], [-81.968795, 37.451496], [-81.987006, 37.454878], [-81.99227, 37.460916], [-81.996578, 37.476705], [-81.992916, 37.482969], [-81.94264, 37.508844], [-81.92787, 37.512118], [-81.968297, 37.537798], [-82.291908, 37.311642], [-82.305874, 37.3011], [-82.310793, 37.297387], [-82.350948, 37.267077], [-82.510826, 37.218091], [-82.553549, 37.200867], [-82.565329, 37.196118], [-82.565375, 37.196092], [-82.624878, 37.162932], [-82.721941, 37.105689], [-82.720597, 37.081833], [-82.722472, 37.045101], [-82.771795, 37.015716], [-82.777368, 37.015279], [-82.788897, 37.00816], [-82.789092, 37.007995], [-82.790462, 37.007263], [-82.79089, 37.00676], [-82.800531, 37.007944], [-82.815748, 37.007196], [-82.818006, 37.006161], [-82.830588, 37.000945], [-82.829125, 36.997541], [-82.830802, 36.993445], [-82.833843, 36.991973], [-82.836008, 36.988837], [-82.838549, 36.987027], [-82.840051, 36.987113], [-82.851397, 36.984497], [-82.852614, 36.984963], [-82.862926, 36.979975], [-82.864909, 36.97901], [-82.866019, 36.978272], [-82.866689, 36.978052], [-82.867535, 36.977518], [-82.868455, 36.976481], [-82.869183, 36.974183], [-82.869183, 36.974182], [-82.870274, 36.965993], [-82.87023, 36.965498], [-82.867358, 36.963182], [-82.865404, 36.958084], [-82.864211, 36.957983], [-82.862866, 36.957765], [-82.860534, 36.956015], [-82.858443, 36.954036], [-82.855705, 36.953808], [-82.856099, 36.952471], [-82.860633, 36.94584], [-82.861282, 36.944848], [-82.861684, 36.939316], [-82.860537, 36.937439], [-82.858784, 36.933065], [-82.858461, 36.932717], [-82.861943, 36.924236], [-82.863468, 36.922308], [-82.872136, 36.913456], [-82.873777, 36.912299], [-82.885618, 36.900415], [-82.91169, 36.874248], [-82.911824, 36.874243], [-82.973395, 36.859097], [-83.07259, 36.854589], [-83.099792, 36.824889], [-83.131694, 36.781488], [-83.131245, 36.767105], [-83.125655, 36.761407], [-83.125728, 36.761276], [-83.127833, 36.750828], [-83.136395, 36.743088], [-83.167396, 36.739187], [-83.199698, 36.737487], [-83.342804, 36.701286], [-83.353613, 36.696699], [-83.354606, 36.696153], [-83.460808, 36.664885], [-83.461013, 36.664916], [-83.498011, 36.670485], [-83.527212, 36.665984], [-83.649513, 36.616683], [-83.675413, 36.600814], [-83.670141, 36.600797], [-83.670128, 36.600764], [-83.472108, 36.597284], [-83.2763, 36.598187], [-83.250304, 36.593935], [-83.249899, 36.593898], [-83.248933, 36.593827], [-83.028357, 36.593893], [-83.02725, 36.593847], [-82.985087, 36.593829], [-82.830433, 36.593761], [-82.69578, 36.593698], [-82.679879, 36.593698], [-82.609176, 36.594099], [-82.561074, 36.5948], [-82.559774, 36.5948], [-82.554294, 36.594876], [-82.293814, 36.595565], [-82.243274, 36.595699], [-82.226653, 36.595743], [-82.225716, 36.595744], [-82.223445, 36.595721], [-82.221713, 36.595814], [-82.211005, 36.59586], [-82.210497, 36.595772], [-82.188491, 36.595179], [-82.18074, 36.594928], [-82.177247, 36.594768], [-82.173982, 36.594607], [-82.150727, 36.594673], [-82.148569, 36.594718], [-82.14607, 36.594712], [-81.934144, 36.594213], [-81.922644, 36.616213], [-81.826742, 36.614215], [-81.6469, 36.611918], [-81.677535, 36.588117], [-81.60697, 36.587094], [-81.521032, 36.58052], [-81.353322, 36.574723], [-81.353169, 36.574724], [-81.307511, 36.575024], [-81.061866, 36.56702], [-81.058844, 36.566976], [-80.945988, 36.563196], [-80.944338, 36.563058], [-80.901836, 36.561754], [-80.901726, 36.561751], [-80.837954, 36.559131], [-80.837641, 36.559118], [-80.837089, 36.559154], [-80.744101, 36.561686], [-80.687539, 36.561411], [-80.612158, 36.558127], [-80.4401, 36.55063], [-80.432628, 36.550302], [-80.431605, 36.550219], [-80.228263, 36.543867], [-80.225408, 36.543748], [-80.171636, 36.543219], [-80.169535, 36.54319], [-80.053455, 36.542623], [-80.027269, 36.542495], [-79.967511, 36.542502], [-79.966979, 36.542475], [-79.920239, 36.542365], [-79.714855, 36.541884], [-79.667309, 36.541772], [-79.666827, 36.541772], [-79.510961, 36.54074], [-79.510647, 36.540738], [-79.470047, 36.541025], [-79.445961, 36.541195], [-79.445687, 36.541218], [-79.342696, 36.541382], [-79.218638, 36.541579], [-79.20948, 36.541594], [-79.208686, 36.541571], [-79.137936, 36.541739], [-79.126078, 36.541533], [-79.124736, 36.541568], [-78.971814, 36.542123], [-78.970577, 36.542154], [-78.942254, 36.542079], [-78.942009, 36.542113], [-78.91542, 36.541974], [-78.914543, 36.541972], [-78.7963, 36.541713], [-78.76543, 36.541727], [-78.758392, 36.541852], [-78.734122, 36.541902], [-78.670051, 36.542035], [-78.663317, 36.542011], [-78.533013, 36.541004], [-78.529722, 36.540981], [-78.471022, 36.542307], [-78.470792, 36.542316], [-78.45697, 36.542474], [-78.441199, 36.542687], [-78.436333, 36.542666], [-78.323912, 36.543809], [-78.246681, 36.544341], [-78.245462, 36.544411], [-78.133323, 36.543847], [-78.132911, 36.543811], [-78.046202, 36.544168], [-78.03942, 36.544196], [-78.038938, 36.544173], [-77.899771, 36.544663], [-77.882357, 36.544737], [-77.87528, 36.544754], [-77.767117, 36.544752], [-77.296875, 36.544746], [-77.24969, 36.544745], [-77.1645, 36.54633], [-76.916048, 36.543815], [-76.916001, 36.543818], [-76.915384, 36.543856], [-76.807078, 36.550606], [-76.781296, 36.550659], [-76.541687, 36.550312], [-76.541391, 36.550312], [-76.491497, 36.550365], [-76.313215, 36.550551], [-76.313196, 36.550551], [-76.12236, 36.550621], [-76.034751, 36.550653], [-76.02675, 36.550553], [-75.957648, 36.550553], [-75.955748, 36.550553], [-75.953447, 36.550553], [-75.952847, 36.550553], [-75.922046, 36.550654], [-75.911446, 36.550654], [-75.909046, 36.550654], [-75.904745, 36.550654], [-75.903445, 36.550654], [-75.894145, 36.550754], [-75.893245, 36.550654], [-75.891945, 36.550754], [-75.886545, 36.550754], [-75.885945, 36.550754], [-75.880644, 36.550754], [-75.879744, 36.550754], [-75.867044, 36.550754], [-75.874145, 36.583853], [-75.890946, 36.630753], [-75.921748, 36.692051], [-75.94955, 36.76115], [-75.965451, 36.812449], [-75.972151, 36.842268], [-75.991552, 36.910847], [-75.996252, 36.922047], [-76.007553, 36.929047], [-76.013753, 36.930746], [-76.033454, 36.931946], [-76.043054, 36.927547], [-76.058154, 36.916947], [-76.087955, 36.908647], [-76.095508, 36.908817], [-76.139557, 36.923047], [-76.177019, 36.92929], [-76.189959, 36.931447], [-76.22166, 36.939547], [-76.234961, 36.945147], [-76.267962, 36.964547], [-76.285063, 36.968747], [-76.297663, 36.968147], [-76.299364, 36.965547], [-76.315867, 36.955351], [-76.322764, 36.959147], [-76.327365, 36.959447], [-76.330765, 36.938647], [-76.328864, 36.918447], [-76.333158, 36.917293], [-76.344663, 36.919313], [-76.345569, 36.924531], [-76.353765, 36.922747], [-76.385867, 36.923247], [-76.387567, 36.899547], [-76.406908, 36.897507], [-76.407507, 36.897444], [-76.43122, 36.904532], [-76.441605, 36.906116], [-76.447413, 36.90322], [-76.453941, 36.89274], [-76.45329, 36.887031], [-76.454692, 36.884077], [-76.469914, 36.882898], [-76.483369, 36.896239], [-76.482135, 36.901108], [-76.482407, 36.917364], [-76.484107, 36.928916], [-76.487559, 36.952372], [-76.500355, 36.965212], [-76.513363, 36.968057], [-76.521006, 36.973187], [-76.524142, 36.978316], [-76.522971, 36.981085], [-76.524853, 36.983833], [-76.551246, 36.998946], [-76.562923, 37.003796], [-76.565803, 37.007493], [-76.576617, 37.021374], [-76.577531, 37.022548], [-76.57816, 37.022982], [-76.579236, 37.023726], [-76.579393, 37.023835], [-76.584478, 37.027349], [-76.586491, 37.02874], [-76.612124, 37.035604], [-76.646013, 37.036228], [-76.653998, 37.039172], [-76.662558, 37.045748], [-76.66835, 37.05506], [-76.669822, 37.06426], [-76.669118, 37.068132], [-76.668295, 37.072656], [-76.667646, 37.076228], [-76.667219, 37.077149], [-76.666526, 37.078643], [-76.66555, 37.080746], [-76.659394, 37.094019], [-76.65811, 37.096787], [-76.657703, 37.101161], [-76.657101, 37.107617], [-76.656894, 37.109843], [-76.66375, 37.129979], [-76.665641, 37.135534], [-76.665833, 37.136098], [-76.666542, 37.138179], [-76.669604, 37.140534], [-76.671588, 37.14206], [-76.67147, 37.158739], [-76.66867, 37.166771], [-76.66427, 37.171027], [-76.663774, 37.173875], [-76.669886, 37.183571], [-76.685614, 37.198851], [-76.691918, 37.195731], [-76.692926, 37.186147], [-76.696735, 37.174403], [-76.715295, 37.148035], [-76.73032, 37.145395], [-76.73728, 37.146164], [-76.747632, 37.150548], [-76.756899, 37.161582], [-76.796905, 37.189404], [-76.802511, 37.198308], [-76.803198, 37.201513], [-76.801023, 37.206043], [-76.791555, 37.207564], [-76.780532, 37.209336], [-76.773752, 37.206061], [-76.757765, 37.191658], [-76.75047, 37.190098], [-76.74304, 37.192611], [-76.74, 37.195379], [-76.73432, 37.204211], [-76.730951, 37.213813], [-76.698943, 37.219059], [-76.693373, 37.221228], [-76.689166, 37.222866], [-76.649869, 37.220914], [-76.641085, 37.216002], [-76.639608, 37.214783], [-76.629868, 37.206738], [-76.623292, 37.198738], [-76.621113, 37.195103], [-76.619962, 37.193184], [-76.61934, 37.192146], [-76.618008, 37.186429], [-76.617537, 37.184409], [-76.616804, 37.18126], [-76.616268, 37.178962], [-76.614221, 37.174335], [-76.613599, 37.172931], [-76.612517, 37.170486], [-76.611018, 37.167097], [-76.610972, 37.166994], [-76.606684, 37.166674], [-76.604476, 37.160034], [-76.617084, 37.144498], [-76.622252, 37.142146], [-76.62478, 37.127091], [-76.618252, 37.119347], [-76.579499, 37.096627], [-76.567931, 37.080467], [-76.564219, 37.077507], [-76.555066, 37.075859], [-76.536875, 37.083942], [-76.528997, 37.079388], [-76.526203, 37.077773], [-76.526573, 37.070047], [-76.527973, 37.068247], [-76.526273, 37.062947], [-76.518242, 37.055351], [-76.512289, 37.054858], [-76.509339, 37.053173], [-76.507614, 37.052188], [-76.46949, 37.030414], [-76.464471, 37.027547], [-76.448231, 37.007705], [-76.449891, 37.004868], [-76.452461, 37.004603], [-76.452118, 36.998163], [-76.428869, 36.969947], [-76.418969, 36.964047], [-76.411768, 36.962847], [-76.408568, 36.969147], [-76.396368, 36.982347], [-76.387711, 36.989671], [-76.383367, 36.993347], [-76.373567, 36.998347], [-76.356366, 37.002947], [-76.348066, 37.006747], [-76.340666, 37.015246], [-76.34011, 37.015212], [-76.329531, 37.014556], [-76.318065, 37.013846], [-76.314624, 37.00933], [-76.315008, 37.001683], [-76.312048, 37.000371], [-76.304272, 37.001378], [-76.300352, 37.00885], [-76.292863, 37.035145], [-76.271262, 37.084544], [-76.274463, 37.094544], [-76.287236, 37.117453], [-76.292344, 37.126615], [-76.311088, 37.138495], [-76.324353, 37.142895], [-76.330481, 37.141727], [-76.334017, 37.144223], [-76.340129, 37.151823], [-76.34405, 37.160367], [-76.344898, 37.164479], [-76.343234, 37.166207], [-76.348658, 37.170655], [-76.35969, 37.16858], [-76.375255, 37.16084], [-76.381379, 37.155711], [-76.394756, 37.157568], [-76.399659, 37.160272], [-76.397883, 37.164415], [-76.391252, 37.179887], [-76.389284, 37.193503], [-76.396052, 37.201087], [-76.3936, 37.214049], [-76.389793, 37.222981], [-76.394132, 37.22515], [-76.471799, 37.216016], [-76.494008, 37.225408], [-76.50364, 37.233856], [-76.4989, 37.241015], [-76.493302, 37.24947], [-76.48284, 37.254831], [-76.475927, 37.250543], [-76.429141, 37.25331], [-76.421765, 37.255198], [-76.417173, 37.26395], [-76.392788, 37.264973], [-76.36229, 37.270226], [-76.349489, 37.273963], [-76.352556, 37.278334], [-76.369029, 37.279311], [-76.381075, 37.28534], [-76.385603, 37.294108], [-76.38777, 37.30767], [-76.406388, 37.332924], [-76.434965, 37.354524], [-76.445333, 37.36646], [-76.437525, 37.37975], [-76.422503, 37.381355], [-76.418176, 37.385064], [-76.418719, 37.3978], [-76.415167, 37.402133], [-76.404756, 37.400213], [-76.393125, 37.398068], [-76.393958, 37.39594], [-76.391437, 37.390284], [-76.387112, 37.385061], [-76.366751, 37.374495], [-76.337476, 37.364014], [-76.31205, 37.338088], [-76.308581, 37.329366], [-76.291324, 37.324145], [-76.282555, 37.319107], [-76.275552, 37.309964], [-76.272005, 37.322194], [-76.272888, 37.335174], [-76.264847, 37.357399], [-76.262407, 37.360786], [-76.258277, 37.36202], [-76.24846, 37.375135], [-76.245283, 37.386839], [-76.246617, 37.404122], [-76.250454, 37.421886], [-76.252415, 37.447274], [-76.265056, 37.481365], [-76.281043, 37.507821], [-76.288167, 37.514118], [-76.293599, 37.516499], [-76.297651, 37.515424], [-76.298456, 37.512677], [-76.296445, 37.511235], [-76.297739, 37.506863], [-76.306952, 37.497488], [-76.32947, 37.49492], [-76.352678, 37.504913], [-76.359378, 37.513426], [-76.360474, 37.51924], [-76.355084, 37.527364], [-76.348992, 37.536548], [-76.339989, 37.53833], [-76.330598, 37.536391], [-76.302762, 37.551295], [-76.29796, 37.557636], [-76.300144, 37.561734], [-76.332641, 37.570042], [-76.357835, 37.573699], [-76.383188, 37.573056], [-76.410781, 37.581815], [-76.420252, 37.598686], [-76.435474, 37.612807], [-76.527188, 37.611315], [-76.533777, 37.61253], [-76.542666, 37.616857], [-76.574049, 37.646781], [-76.583143, 37.661986], [-76.579591, 37.671508], [-76.597868, 37.702918], [-76.598073, 37.70912], [-76.595943, 37.712989], [-76.597213, 37.717269], [-76.606466, 37.724819], [-76.61997, 37.731271], [-76.621433, 37.737973], [-76.617373, 37.742347], [-76.61971, 37.744795], [-76.639962, 37.750941], [-76.663887, 37.751887], [-76.677002, 37.7561], [-76.680922, 37.759647], [-76.683372, 37.765507], [-76.683359, 37.770258], [-76.683343, 37.775783], [-76.681901, 37.778118], [-76.683775, 37.781391], [-76.689773, 37.78519], [-76.715498, 37.785873], [-76.723863, 37.788503], [-76.734309, 37.79866], [-76.7512, 37.824141], [-76.766328, 37.840437], [-76.782826, 37.863184], [-76.784618, 37.869569], [-76.77539, 37.874306], [-76.765711, 37.879274], [-76.747552, 37.875864], [-76.738395, 37.865373], [-76.733046, 37.852009], [-76.72718, 37.842263], [-76.722156, 37.83668], [-76.701606, 37.822677], [-76.692747, 37.82277], [-76.680197, 37.825654], [-76.658302, 37.806815], [-76.651413, 37.796239], [-76.642276, 37.792317], [-76.615351, 37.780759], [-76.602024, 37.772731], [-76.595939, 37.77168], [-76.593835, 37.772848], [-76.584289, 37.76889], [-76.576387, 37.757493], [-76.560476, 37.727827], [-76.54005, 37.704432], [-76.537228, 37.698892], [-76.535302, 37.687516], [-76.537698, 37.66893], [-76.536548, 37.663574], [-76.510187, 37.642324], [-76.501522, 37.643762], [-76.497564, 37.647056], [-76.491799, 37.663614], [-76.489576, 37.666201], [-76.472392, 37.665772], [-76.443254, 37.652347], [-76.399236, 37.628636], [-76.390054, 37.630326], [-76.381106, 37.627003], [-76.36232, 37.610368], [-76.309174, 37.621892], [-76.28037, 37.613715], [-76.279447, 37.618225], [-76.287959, 37.631771], [-76.292534, 37.636098], [-76.306464, 37.642005], [-76.332562, 37.645817], [-76.339892, 37.655966], [-76.324808, 37.676983], [-76.320216, 37.680666], [-76.315161, 37.68472], [-76.312079, 37.684651], [-76.302545, 37.689], [-76.300067, 37.695364], [-76.302803, 37.704474], [-76.312858, 37.720338], [-76.304917, 37.729913], [-76.312108, 37.750522], [-76.306489, 37.788646], [-76.310307, 37.794849], [-76.307482, 37.81235], [-76.293525, 37.822717], [-76.284904, 37.822308], [-76.281985, 37.818068], [-76.282592, 37.814109], [-76.280544, 37.812597], [-76.275178, 37.812664], [-76.266057, 37.8174], [-76.251358, 37.833072], [-76.245072, 37.861918], [-76.236725, 37.889174], [-76.265998, 37.91138], [-76.343848, 37.947345], [-76.360211, 37.952329], [-76.391439, 37.958742], [-76.416299, 37.966828], [-76.427487, 37.977038], [-76.462542, 37.998572], [-76.465291, 38.010226], [-76.469343, 38.013544], [-76.491998, 38.017222], [-76.516547, 38.026566], [-76.519536, 38.034814], [-76.522354, 38.04259], [-76.535919, 38.069532], [-76.543155, 38.076971], [-76.579497, 38.09487], [-76.600937, 38.110084], [-76.604131, 38.128771], [-76.613939, 38.148587], [-76.629476, 38.15305], [-76.638983, 38.151476], [-76.643448, 38.14825], [-76.665127, 38.147638], [-76.684892, 38.156497], [-76.701297, 38.155718], [-76.704048, 38.149264], [-76.721722, 38.137635], [-76.738938, 38.14651], [-76.740278, 38.152824], [-76.743064, 38.156988], [-76.749685, 38.162114], [-76.760241, 38.166581], [-76.788445, 38.169199], [-76.802968, 38.167988], [-76.824274, 38.163639], [-76.838795, 38.163476], [-76.875272, 38.172207], [-76.910832, 38.197073], [-76.916922, 38.199751], [-76.937134, 38.202384], [-76.962311, 38.214075], [-76.967335, 38.227185], [-76.966553, 38.229542], [-76.962375, 38.230093], [-76.957417, 38.236341], [-76.957796, 38.243183], [-76.96215, 38.256486], [-76.981372, 38.274214], [-76.990255, 38.273935], [-76.99767, 38.278047], [-77.026304, 38.302685], [-77.030683, 38.311623], [-77.020947, 38.329273], [-77.016932, 38.341697], [-77.011827, 38.374554], [-77.024866, 38.386791], [-77.043526, 38.400548], [-77.051437, 38.399083], [-77.056032, 38.3962], [-77.069956, 38.377895], [-77.08481, 38.368297], [-77.094665, 38.367715], [-77.104717, 38.369655], [-77.138224, 38.367917], [-77.155191, 38.351047], [-77.162692, 38.345994], [-77.17934, 38.341915], [-77.199433, 38.34089], [-77.240072, 38.331598], [-77.265295, 38.333165], [-77.279633, 38.339444], [-77.286202, 38.347024], [-77.286202, 38.347025], [-77.28835, 38.351286], [-77.288145, 38.359477], [-77.296077, 38.369797], [-77.317288, 38.383576], [-77.314848, 38.389579], [-77.312201, 38.390958], [-77.310719, 38.397669], [-77.319036, 38.417803], [-77.32544, 38.44885], [-77.322622, 38.467131], [-77.310334, 38.493926], [-77.302457, 38.504683], [-77.300776, 38.506978], [-77.298844, 38.508724], [-77.29582, 38.511457], [-77.291103, 38.515721], [-77.283503, 38.525221], [-77.276303, 38.53962], [-77.276603, 38.54712], [-77.26083, 38.56533], [-77.265304, 38.580319], [-77.26443, 38.582845], [-77.247003, 38.590618], [-77.246441, 38.599532], [-77.245104, 38.620717], [-77.248904, 38.628617], [-77.246704, 38.635217], [-77.240604, 38.638917], [-77.22235, 38.638091], [-77.216303, 38.637817], [-77.205103, 38.623917], [-77.204302, 38.617817], [-77.202002, 38.617217], [-77.174902, 38.624217], [-77.157501, 38.636417], [-77.1302, 38.635017], [-77.135901, 38.649817], [-77.132501, 38.673816], [-77.121101, 38.686616], [-77.1059, 38.696815], [-77.086113, 38.705792], [-77.074599, 38.711015], [-77.05991, 38.734419], [-77.041398, 38.763914], [-77.039239, 38.7852], [-77.038598, 38.791513], [-77.032986, 38.8395], [-77.031698, 38.850512], [-77.040599, 38.871212], [-77.068199, 38.899811], [-77.0902, 38.904211], [-77.1012, 38.911111], [-77.119863, 38.934265], [-77.1199, 38.934311], [-77.137701, 38.95531], [-77.148179, 38.965002], [-77.166901, 38.96811], [-77.197502, 38.96681], [-77.221502, 38.97131], [-77.235403, 38.97661], [-77.249803, 38.985909], [-77.255703, 39.002409], [-77.251803, 39.011409], [-77.261403, 39.031009], [-77.291605, 39.045408], [-77.328002, 39.058554], [-77.340287, 39.062991], [-77.375079, 39.061297], [-77.42318, 39.066878], [-77.458202, 39.073723], [-77.519929, 39.120925], [-77.524559, 39.127821], [-77.527282, 39.146236], [-77.516426, 39.170891], [-77.510631, 39.178484], [-77.505162, 39.18205], [-77.485971, 39.185665], [-77.478596, 39.189168], [-77.458884, 39.219826], [-77.458779, 39.22028], [-77.45768, 39.22502], [-77.46021, 39.228359], [-77.484605, 39.245941], [-77.511222, 39.2535], [-77.534461, 39.262361], [-77.543228, 39.266937], [-77.545846, 39.271535], [-77.560854, 39.286152], [-77.592739, 39.30129], [-77.667749, 39.318129], [-77.677505, 39.318699], [-77.719029, 39.321125], [-77.750267, 39.289284], [-77.753357, 39.280331], [-77.75306, 39.277971], [-77.753105, 39.27734], [-77.755193, 39.275191], [-77.755698, 39.274575], [-77.758412, 39.269197], [-77.758733, 39.268114], [-77.761217, 39.263721], [-77.761768, 39.263031], [-77.768, 39.257657], [-77.768992, 39.256417], [-77.767277, 39.24938], [-77.771415, 39.236776], [-77.822182, 39.139985], [-77.828157, 39.132329], [-78.032841, 39.264403], [-78.033183, 39.264624], [-78.033185, 39.264626], [-78.228766, 39.391233], [-78.347087, 39.466012], [-78.362267, 39.357784], [-78.34048, 39.353492], [-78.35894, 39.319484], [-78.360035, 39.317771], [-78.399785, 39.244129], [-78.399669, 39.243874], [-78.423968, 39.212049], [-78.427911, 39.208611], [-78.429803, 39.207014], [-78.431167, 39.205744], [-78.43213, 39.204717], [-78.437053, 39.199766], [-78.438651, 39.198049], [-78.426722, 39.188903], [-78.41074, 39.171983], [-78.418377, 39.156656], [-78.439429, 39.132146], [-78.459869, 39.113351], [-78.508132, 39.08863], [-78.544111, 39.056676], [-78.571901, 39.031995], [-78.565837, 39.026303], [-78.554222, 39.019672], [-78.557647, 39.013189], [-78.601655, 38.964603], [-78.710949, 38.910175], [-78.714135, 38.911176], [-78.716956, 38.916273], [-78.719755, 38.922135], [-78.719806, 38.922638], [-78.757278, 38.903203], [-78.779198, 38.892298], [-78.788031, 38.885123], [-78.808181, 38.856175], [-78.835191, 38.811499], [-78.869276, 38.762991] ], [ [-78.8214111328125, 38.45789034424927], [-78.8214111328125, 38.66406704456943], [-78.5247802734375, 38.66406704456943], [-78.5247802734375, 38.45789034424927], [-78.8214111328125, 38.45789034424927] ], [ [-78.2940673828125, 39.138581990583525], [-78.2940673828125, 39.30029918615032], [-78.145751953125, 39.30029918615032], [-78.145751953125, 39.138581990583525], [-78.2940673828125, 39.138581990583525] ] ] }, "properties": {}, "type": "Feature" }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.60693359375, 36.38591277287651], [-76.717529296875, 36.38591277287651], [-76.717529296875, 39.07890809706475], [-79.60693359375, 39.07890809706475], [-79.60693359375, 36.38591277287651] ] ] } } ] } ================================================ FILE: packages/turf-bbox-clip/test/in/polygon-point-intersection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [115.872872384, -31.977789227500004], [115.87413347200001, -31.978896027], [115.874207392, -31.978955634], [115.874293312, -31.978886666], [115.875, -31.9782948325], [115.873511744, -31.977027638], [115.8731464, -31.977071372], [115.872185504, -31.9771863865], [115.872872384, -31.977789227500004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [115.875, -31.98], [115.88, -31.98], [115.88, -31.975], [115.875, -31.975], [115.875, -31.98] ] ] } } ] } ================================================ FILE: packages/turf-bbox-clip/test/in/polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "geometry": { "type": "Polygon", "coordinates": [ [ [-78.869276, 38.762991], [-78.993997, 38.850102], [-78.999752, 38.846162], [-79.055354, 38.782213], [-79.057253, 38.761413], [-79.092555, 38.700149], [-79.092271, 38.699208], [-79.135472, 38.644057], [-79.135546, 38.643715], [-79.136374, 38.6424], [-79.137012, 38.640655], [-79.146741, 38.625819], [-79.146974, 38.625641], [-79.174512, 38.566531], [-79.174881, 38.566314], [-79.207884, 38.500428], [-79.207873, 38.500122], [-79.209703, 38.495574], [-79.210008, 38.494283], [-79.210026, 38.494231], [-79.225839, 38.479446], [-79.23162, 38.474041], [-79.234408, 38.473011], [-79.240059, 38.469841], [-79.242024, 38.464332], [-79.26291, 38.444586], [-79.263376, 38.443762], [-79.265327, 38.441772], [-79.267414, 38.438322], [-79.282663, 38.431021], [-79.280263, 38.425475], [-79.290529, 38.420757], [-79.291813, 38.419627], [-79.295712, 38.418129], [-79.297758, 38.416438], [-79.312276, 38.411876], [-79.476638, 38.457228], [-79.521469, 38.533918], [-79.53687, 38.550917], [-79.555471, 38.560217], [-79.597955, 38.572767], [-79.649075, 38.591515], [-79.669128, 38.510975], [-79.669128, 38.510883], [-79.695565, 38.477842], [-79.699006, 38.475148], [-79.688205, 38.450476], [-79.688962, 38.449538], [-79.689544, 38.442511], [-79.691377, 38.439558], [-79.731661, 38.374143], [-79.808711, 38.309429], [-79.810115, 38.305037], [-79.788945, 38.268703], [-79.790134, 38.267654], [-79.794568, 38.264856], [-79.891999, 38.203378], [-79.892345, 38.202397], [-79.916174, 38.184386], [-79.917061, 38.183741], [-79.921196, 38.180378], [-79.921026, 38.179954], [-79.925251, 38.150465], [-79.925512, 38.150237], [-79.928683, 38.144928], [-79.928747, 38.144436], [-79.933751, 38.135508], [-79.938394, 38.130563], [-79.931034, 38.101402], [-79.933911, 38.099168], [-79.959844, 38.063697], [-79.978427, 38.029082], [-80.002507, 37.992767], [-80.055278, 37.951702], [-80.130464, 37.893194], [-80.14613, 37.884453], [-80.147316, 37.885936], [-80.148964, 37.886057], [-80.162202, 37.875122], [-80.227092, 37.798886], [-80.231551, 37.792591], [-80.257411, 37.756084], [-80.262765, 37.738336], [-80.260313, 37.733517], [-80.259342, 37.731205], [-80.263936, 37.719137], [-80.287107, 37.696403], [-80.296138, 37.691783], [-80.292337, 37.683976], [-80.292258, 37.683732], [-80.270323, 37.648982], [-80.270352, 37.648929], [-80.267455, 37.646108], [-80.267228, 37.646011], [-80.264874, 37.645511], [-80.26483, 37.645526], [-80.263291, 37.645101], [-80.263281, 37.645082], [-80.254469, 37.642333], [-80.254431, 37.642352], [-80.239288, 37.637672], [-80.220984, 37.627767], [-80.223386, 37.623185], [-80.240272, 37.606961], [-80.288766, 37.58196], [-80.312393, 37.546239], [-80.330306, 37.536244], [-80.314806, 37.500943], [-80.320627, 37.49888], [-80.425656, 37.449876], [-80.443025, 37.438126], [-80.46482, 37.426144], [-80.475601, 37.422949], [-80.494867, 37.43507], [-80.511391, 37.481672], [-80.622664, 37.433307], [-80.770082, 37.372363], [-80.776649, 37.383679], [-80.776766, 37.384131], [-80.798869, 37.395807], [-80.811639, 37.407507], [-80.85836, 37.428168], [-80.858473, 37.428301], [-80.859556, 37.429568], [-80.859558, 37.429555], [-80.862761, 37.411829], [-80.872589, 37.372347], [-80.849451, 37.346909], [-80.900535, 37.315], [-80.919259, 37.306163], [-80.947896, 37.295872], [-80.966556, 37.292158], [-80.973889, 37.291444], [-80.980044, 37.293118], [-80.981322, 37.293465], [-81.034652, 37.290751], [-81.084012, 37.284401], [-81.112596, 37.278497], [-81.167029, 37.262881], [-81.204774, 37.243013], [-81.225104, 37.234874], [-81.320105, 37.299323], [-81.362156, 37.337687], [-81.366315, 37.335927], [-81.367052, 37.334504], [-81.36809, 37.332423], [-81.369379, 37.331827], [-81.367599, 37.327569], [-81.371315, 37.324115], [-81.377349, 37.318447], [-81.380159, 37.317838], [-81.384127, 37.318596], [-81.384914, 37.318832], [-81.38581, 37.320085], [-81.386727, 37.320474], [-81.388132, 37.319903], [-81.409196, 37.286071], [-81.409729, 37.284837], [-81.504168, 37.250115], [-81.50488, 37.247697], [-81.507325, 37.2338], [-81.557315, 37.207697], [-81.558353, 37.208145], [-81.560625, 37.206663], [-81.678603, 37.202467], [-81.683544, 37.211452], [-81.728194, 37.239823], [-81.73332, 37.238127], [-81.738378, 37.240917], [-81.744291, 37.244178], [-81.74342, 37.245858], [-81.743505, 37.247601], [-81.747656, 37.264329], [-81.75129, 37.265131], [-81.752123, 37.265568], [-81.752912, 37.266614], [-81.755012, 37.26772], [-81.757531, 37.27001], [-81.757714, 37.271124], [-81.75773, 37.271934], [-81.757631, 37.274003], [-81.76022, 37.275254], [-81.761752, 37.275713], [-81.762776, 37.275391], [-81.763836, 37.275218], [-81.765195, 37.275099], [-81.767837, 37.274216], [-81.774684, 37.274807], [-81.774747, 37.274847], [-81.793425, 37.281674], [-81.793639, 37.282188], [-81.809184, 37.283003], [-81.810559, 37.28298], [-81.84231, 37.285556], [-81.843167, 37.285586], [-81.854059, 37.291352], [-81.853488, 37.294763], [-81.854465, 37.299937], [-81.853978, 37.300418], [-81.86476, 37.308404], [-81.865219, 37.308839], [-81.873213, 37.325065], [-81.878343, 37.328837], [-81.878713, 37.331753], [-81.879601, 37.332074], [-81.880886, 37.331146], [-81.885075, 37.330665], [-81.886952, 37.330725], [-81.887722, 37.331156], [-81.892876, 37.330134], [-81.893773, 37.330105], [-81.894768, 37.331381], [-81.894797, 37.332012], [-81.895489, 37.332022], [-81.896001, 37.331967], [-81.899459, 37.340277], [-81.899495, 37.341102], [-81.902992, 37.34234], [-81.903795, 37.34305], [-81.905945, 37.342775], [-81.906368, 37.34276], [-81.907322, 37.343119], [-81.907895, 37.343783], [-81.910875, 37.348729], [-81.911487, 37.348839], [-81.920711, 37.355416], [-81.921571, 37.356423], [-81.925643, 37.357316], [-81.926589, 37.358942], [-81.929915, 37.366589], [-81.930194, 37.366728], [-81.933895, 37.372747], [-81.92749, 37.413251], [-81.935621, 37.438397], [-81.949367, 37.445687], [-81.968795, 37.451496], [-81.987006, 37.454878], [-81.99227, 37.460916], [-81.996578, 37.476705], [-81.992916, 37.482969], [-81.94264, 37.508844], [-81.92787, 37.512118], [-81.968297, 37.537798], [-82.291908, 37.311642], [-82.305874, 37.3011], [-82.310793, 37.297387], [-82.350948, 37.267077], [-82.510826, 37.218091], [-82.553549, 37.200867], [-82.565329, 37.196118], [-82.565375, 37.196092], [-82.624878, 37.162932], [-82.721941, 37.105689], [-82.720597, 37.081833], [-82.722472, 37.045101], [-82.771795, 37.015716], [-82.777368, 37.015279], [-82.788897, 37.00816], [-82.789092, 37.007995], [-82.790462, 37.007263], [-82.79089, 37.00676], [-82.800531, 37.007944], [-82.815748, 37.007196], [-82.818006, 37.006161], [-82.830588, 37.000945], [-82.829125, 36.997541], [-82.830802, 36.993445], [-82.833843, 36.991973], [-82.836008, 36.988837], [-82.838549, 36.987027], [-82.840051, 36.987113], [-82.851397, 36.984497], [-82.852614, 36.984963], [-82.862926, 36.979975], [-82.864909, 36.97901], [-82.866019, 36.978272], [-82.866689, 36.978052], [-82.867535, 36.977518], [-82.868455, 36.976481], [-82.869183, 36.974183], [-82.869183, 36.974182], [-82.870274, 36.965993], [-82.87023, 36.965498], [-82.867358, 36.963182], [-82.865404, 36.958084], [-82.864211, 36.957983], [-82.862866, 36.957765], [-82.860534, 36.956015], [-82.858443, 36.954036], [-82.855705, 36.953808], [-82.856099, 36.952471], [-82.860633, 36.94584], [-82.861282, 36.944848], [-82.861684, 36.939316], [-82.860537, 36.937439], [-82.858784, 36.933065], [-82.858461, 36.932717], [-82.861943, 36.924236], [-82.863468, 36.922308], [-82.872136, 36.913456], [-82.873777, 36.912299], [-82.885618, 36.900415], [-82.91169, 36.874248], [-82.911824, 36.874243], [-82.973395, 36.859097], [-83.07259, 36.854589], [-83.099792, 36.824889], [-83.131694, 36.781488], [-83.131245, 36.767105], [-83.125655, 36.761407], [-83.125728, 36.761276], [-83.127833, 36.750828], [-83.136395, 36.743088], [-83.167396, 36.739187], [-83.199698, 36.737487], [-83.342804, 36.701286], [-83.353613, 36.696699], [-83.354606, 36.696153], [-83.460808, 36.664885], [-83.461013, 36.664916], [-83.498011, 36.670485], [-83.527212, 36.665984], [-83.649513, 36.616683], [-83.675413, 36.600814], [-83.670141, 36.600797], [-83.670128, 36.600764], [-83.472108, 36.597284], [-83.2763, 36.598187], [-83.250304, 36.593935], [-83.249899, 36.593898], [-83.248933, 36.593827], [-83.028357, 36.593893], [-83.02725, 36.593847], [-82.985087, 36.593829], [-82.830433, 36.593761], [-82.69578, 36.593698], [-82.679879, 36.593698], [-82.609176, 36.594099], [-82.561074, 36.5948], [-82.559774, 36.5948], [-82.554294, 36.594876], [-82.293814, 36.595565], [-82.243274, 36.595699], [-82.226653, 36.595743], [-82.225716, 36.595744], [-82.223445, 36.595721], [-82.221713, 36.595814], [-82.211005, 36.59586], [-82.210497, 36.595772], [-82.188491, 36.595179], [-82.18074, 36.594928], [-82.177247, 36.594768], [-82.173982, 36.594607], [-82.150727, 36.594673], [-82.148569, 36.594718], [-82.14607, 36.594712], [-81.934144, 36.594213], [-81.922644, 36.616213], [-81.826742, 36.614215], [-81.6469, 36.611918], [-81.677535, 36.588117], [-81.60697, 36.587094], [-81.521032, 36.58052], [-81.353322, 36.574723], [-81.353169, 36.574724], [-81.307511, 36.575024], [-81.061866, 36.56702], [-81.058844, 36.566976], [-80.945988, 36.563196], [-80.944338, 36.563058], [-80.901836, 36.561754], [-80.901726, 36.561751], [-80.837954, 36.559131], [-80.837641, 36.559118], [-80.837089, 36.559154], [-80.744101, 36.561686], [-80.687539, 36.561411], [-80.612158, 36.558127], [-80.4401, 36.55063], [-80.432628, 36.550302], [-80.431605, 36.550219], [-80.228263, 36.543867], [-80.225408, 36.543748], [-80.171636, 36.543219], [-80.169535, 36.54319], [-80.053455, 36.542623], [-80.027269, 36.542495], [-79.967511, 36.542502], [-79.966979, 36.542475], [-79.920239, 36.542365], [-79.714855, 36.541884], [-79.667309, 36.541772], [-79.666827, 36.541772], [-79.510961, 36.54074], [-79.510647, 36.540738], [-79.470047, 36.541025], [-79.445961, 36.541195], [-79.445687, 36.541218], [-79.342696, 36.541382], [-79.218638, 36.541579], [-79.20948, 36.541594], [-79.208686, 36.541571], [-79.137936, 36.541739], [-79.126078, 36.541533], [-79.124736, 36.541568], [-78.971814, 36.542123], [-78.970577, 36.542154], [-78.942254, 36.542079], [-78.942009, 36.542113], [-78.91542, 36.541974], [-78.914543, 36.541972], [-78.7963, 36.541713], [-78.76543, 36.541727], [-78.758392, 36.541852], [-78.734122, 36.541902], [-78.670051, 36.542035], [-78.663317, 36.542011], [-78.533013, 36.541004], [-78.529722, 36.540981], [-78.471022, 36.542307], [-78.470792, 36.542316], [-78.45697, 36.542474], [-78.441199, 36.542687], [-78.436333, 36.542666], [-78.323912, 36.543809], [-78.246681, 36.544341], [-78.245462, 36.544411], [-78.133323, 36.543847], [-78.132911, 36.543811], [-78.046202, 36.544168], [-78.03942, 36.544196], [-78.038938, 36.544173], [-77.899771, 36.544663], [-77.882357, 36.544737], [-77.87528, 36.544754], [-77.767117, 36.544752], [-77.296875, 36.544746], [-77.24969, 36.544745], [-77.1645, 36.54633], [-76.916048, 36.543815], [-76.916001, 36.543818], [-76.915384, 36.543856], [-76.807078, 36.550606], [-76.781296, 36.550659], [-76.541687, 36.550312], [-76.541391, 36.550312], [-76.491497, 36.550365], [-76.313215, 36.550551], [-76.313196, 36.550551], [-76.12236, 36.550621], [-76.034751, 36.550653], [-76.02675, 36.550553], [-75.957648, 36.550553], [-75.955748, 36.550553], [-75.953447, 36.550553], [-75.952847, 36.550553], [-75.922046, 36.550654], [-75.911446, 36.550654], [-75.909046, 36.550654], [-75.904745, 36.550654], [-75.903445, 36.550654], [-75.894145, 36.550754], [-75.893245, 36.550654], [-75.891945, 36.550754], [-75.886545, 36.550754], [-75.885945, 36.550754], [-75.880644, 36.550754], [-75.879744, 36.550754], [-75.867044, 36.550754], [-75.874145, 36.583853], [-75.890946, 36.630753], [-75.921748, 36.692051], [-75.94955, 36.76115], [-75.965451, 36.812449], [-75.972151, 36.842268], [-75.991552, 36.910847], [-75.996252, 36.922047], [-76.007553, 36.929047], [-76.013753, 36.930746], [-76.033454, 36.931946], [-76.043054, 36.927547], [-76.058154, 36.916947], [-76.087955, 36.908647], [-76.095508, 36.908817], [-76.139557, 36.923047], [-76.177019, 36.92929], [-76.189959, 36.931447], [-76.22166, 36.939547], [-76.234961, 36.945147], [-76.267962, 36.964547], [-76.285063, 36.968747], [-76.297663, 36.968147], [-76.299364, 36.965547], [-76.315867, 36.955351], [-76.322764, 36.959147], [-76.327365, 36.959447], [-76.330765, 36.938647], [-76.328864, 36.918447], [-76.333158, 36.917293], [-76.344663, 36.919313], [-76.345569, 36.924531], [-76.353765, 36.922747], [-76.385867, 36.923247], [-76.387567, 36.899547], [-76.406908, 36.897507], [-76.407507, 36.897444], [-76.43122, 36.904532], [-76.441605, 36.906116], [-76.447413, 36.90322], [-76.453941, 36.89274], [-76.45329, 36.887031], [-76.454692, 36.884077], [-76.469914, 36.882898], [-76.483369, 36.896239], [-76.482135, 36.901108], [-76.482407, 36.917364], [-76.484107, 36.928916], [-76.487559, 36.952372], [-76.500355, 36.965212], [-76.513363, 36.968057], [-76.521006, 36.973187], [-76.524142, 36.978316], [-76.522971, 36.981085], [-76.524853, 36.983833], [-76.551246, 36.998946], [-76.562923, 37.003796], [-76.565803, 37.007493], [-76.576617, 37.021374], [-76.577531, 37.022548], [-76.57816, 37.022982], [-76.579236, 37.023726], [-76.579393, 37.023835], [-76.584478, 37.027349], [-76.586491, 37.02874], [-76.612124, 37.035604], [-76.646013, 37.036228], [-76.653998, 37.039172], [-76.662558, 37.045748], [-76.66835, 37.05506], [-76.669822, 37.06426], [-76.669118, 37.068132], [-76.668295, 37.072656], [-76.667646, 37.076228], [-76.667219, 37.077149], [-76.666526, 37.078643], [-76.66555, 37.080746], [-76.659394, 37.094019], [-76.65811, 37.096787], [-76.657703, 37.101161], [-76.657101, 37.107617], [-76.656894, 37.109843], [-76.66375, 37.129979], [-76.665641, 37.135534], [-76.665833, 37.136098], [-76.666542, 37.138179], [-76.669604, 37.140534], [-76.671588, 37.14206], [-76.67147, 37.158739], [-76.66867, 37.166771], [-76.66427, 37.171027], [-76.663774, 37.173875], [-76.669886, 37.183571], [-76.685614, 37.198851], [-76.691918, 37.195731], [-76.692926, 37.186147], [-76.696735, 37.174403], [-76.715295, 37.148035], [-76.73032, 37.145395], [-76.73728, 37.146164], [-76.747632, 37.150548], [-76.756899, 37.161582], [-76.796905, 37.189404], [-76.802511, 37.198308], [-76.803198, 37.201513], [-76.801023, 37.206043], [-76.791555, 37.207564], [-76.780532, 37.209336], [-76.773752, 37.206061], [-76.757765, 37.191658], [-76.75047, 37.190098], [-76.74304, 37.192611], [-76.74, 37.195379], [-76.73432, 37.204211], [-76.730951, 37.213813], [-76.698943, 37.219059], [-76.693373, 37.221228], [-76.689166, 37.222866], [-76.649869, 37.220914], [-76.641085, 37.216002], [-76.639608, 37.214783], [-76.629868, 37.206738], [-76.623292, 37.198738], [-76.621113, 37.195103], [-76.619962, 37.193184], [-76.61934, 37.192146], [-76.618008, 37.186429], [-76.617537, 37.184409], [-76.616804, 37.18126], [-76.616268, 37.178962], [-76.614221, 37.174335], [-76.613599, 37.172931], [-76.612517, 37.170486], [-76.611018, 37.167097], [-76.610972, 37.166994], [-76.606684, 37.166674], [-76.604476, 37.160034], [-76.617084, 37.144498], [-76.622252, 37.142146], [-76.62478, 37.127091], [-76.618252, 37.119347], [-76.579499, 37.096627], [-76.567931, 37.080467], [-76.564219, 37.077507], [-76.555066, 37.075859], [-76.536875, 37.083942], [-76.528997, 37.079388], [-76.526203, 37.077773], [-76.526573, 37.070047], [-76.527973, 37.068247], [-76.526273, 37.062947], [-76.518242, 37.055351], [-76.512289, 37.054858], [-76.509339, 37.053173], [-76.507614, 37.052188], [-76.46949, 37.030414], [-76.464471, 37.027547], [-76.448231, 37.007705], [-76.449891, 37.004868], [-76.452461, 37.004603], [-76.452118, 36.998163], [-76.428869, 36.969947], [-76.418969, 36.964047], [-76.411768, 36.962847], [-76.408568, 36.969147], [-76.396368, 36.982347], [-76.387711, 36.989671], [-76.383367, 36.993347], [-76.373567, 36.998347], [-76.356366, 37.002947], [-76.348066, 37.006747], [-76.340666, 37.015246], [-76.34011, 37.015212], [-76.329531, 37.014556], [-76.318065, 37.013846], [-76.314624, 37.00933], [-76.315008, 37.001683], [-76.312048, 37.000371], [-76.304272, 37.001378], [-76.300352, 37.00885], [-76.292863, 37.035145], [-76.271262, 37.084544], [-76.274463, 37.094544], [-76.287236, 37.117453], [-76.292344, 37.126615], [-76.311088, 37.138495], [-76.324353, 37.142895], [-76.330481, 37.141727], [-76.334017, 37.144223], [-76.340129, 37.151823], [-76.34405, 37.160367], [-76.344898, 37.164479], [-76.343234, 37.166207], [-76.348658, 37.170655], [-76.35969, 37.16858], [-76.375255, 37.16084], [-76.381379, 37.155711], [-76.394756, 37.157568], [-76.399659, 37.160272], [-76.397883, 37.164415], [-76.391252, 37.179887], [-76.389284, 37.193503], [-76.396052, 37.201087], [-76.3936, 37.214049], [-76.389793, 37.222981], [-76.394132, 37.22515], [-76.471799, 37.216016], [-76.494008, 37.225408], [-76.50364, 37.233856], [-76.4989, 37.241015], [-76.493302, 37.24947], [-76.48284, 37.254831], [-76.475927, 37.250543], [-76.429141, 37.25331], [-76.421765, 37.255198], [-76.417173, 37.26395], [-76.392788, 37.264973], [-76.36229, 37.270226], [-76.349489, 37.273963], [-76.352556, 37.278334], [-76.369029, 37.279311], [-76.381075, 37.28534], [-76.385603, 37.294108], [-76.38777, 37.30767], [-76.406388, 37.332924], [-76.434965, 37.354524], [-76.445333, 37.36646], [-76.437525, 37.37975], [-76.422503, 37.381355], [-76.418176, 37.385064], [-76.418719, 37.3978], [-76.415167, 37.402133], [-76.404756, 37.400213], [-76.393125, 37.398068], [-76.393958, 37.39594], [-76.391437, 37.390284], [-76.387112, 37.385061], [-76.366751, 37.374495], [-76.337476, 37.364014], [-76.31205, 37.338088], [-76.308581, 37.329366], [-76.291324, 37.324145], [-76.282555, 37.319107], [-76.275552, 37.309964], [-76.272005, 37.322194], [-76.272888, 37.335174], [-76.264847, 37.357399], [-76.262407, 37.360786], [-76.258277, 37.36202], [-76.24846, 37.375135], [-76.245283, 37.386839], [-76.246617, 37.404122], [-76.250454, 37.421886], [-76.252415, 37.447274], [-76.265056, 37.481365], [-76.281043, 37.507821], [-76.288167, 37.514118], [-76.293599, 37.516499], [-76.297651, 37.515424], [-76.298456, 37.512677], [-76.296445, 37.511235], [-76.297739, 37.506863], [-76.306952, 37.497488], [-76.32947, 37.49492], [-76.352678, 37.504913], [-76.359378, 37.513426], [-76.360474, 37.51924], [-76.355084, 37.527364], [-76.348992, 37.536548], [-76.339989, 37.53833], [-76.330598, 37.536391], [-76.302762, 37.551295], [-76.29796, 37.557636], [-76.300144, 37.561734], [-76.332641, 37.570042], [-76.357835, 37.573699], [-76.383188, 37.573056], [-76.410781, 37.581815], [-76.420252, 37.598686], [-76.435474, 37.612807], [-76.527188, 37.611315], [-76.533777, 37.61253], [-76.542666, 37.616857], [-76.574049, 37.646781], [-76.583143, 37.661986], [-76.579591, 37.671508], [-76.597868, 37.702918], [-76.598073, 37.70912], [-76.595943, 37.712989], [-76.597213, 37.717269], [-76.606466, 37.724819], [-76.61997, 37.731271], [-76.621433, 37.737973], [-76.617373, 37.742347], [-76.61971, 37.744795], [-76.639962, 37.750941], [-76.663887, 37.751887], [-76.677002, 37.7561], [-76.680922, 37.759647], [-76.683372, 37.765507], [-76.683359, 37.770258], [-76.683343, 37.775783], [-76.681901, 37.778118], [-76.683775, 37.781391], [-76.689773, 37.78519], [-76.715498, 37.785873], [-76.723863, 37.788503], [-76.734309, 37.79866], [-76.7512, 37.824141], [-76.766328, 37.840437], [-76.782826, 37.863184], [-76.784618, 37.869569], [-76.77539, 37.874306], [-76.765711, 37.879274], [-76.747552, 37.875864], [-76.738395, 37.865373], [-76.733046, 37.852009], [-76.72718, 37.842263], [-76.722156, 37.83668], [-76.701606, 37.822677], [-76.692747, 37.82277], [-76.680197, 37.825654], [-76.658302, 37.806815], [-76.651413, 37.796239], [-76.642276, 37.792317], [-76.615351, 37.780759], [-76.602024, 37.772731], [-76.595939, 37.77168], [-76.593835, 37.772848], [-76.584289, 37.76889], [-76.576387, 37.757493], [-76.560476, 37.727827], [-76.54005, 37.704432], [-76.537228, 37.698892], [-76.535302, 37.687516], [-76.537698, 37.66893], [-76.536548, 37.663574], [-76.510187, 37.642324], [-76.501522, 37.643762], [-76.497564, 37.647056], [-76.491799, 37.663614], [-76.489576, 37.666201], [-76.472392, 37.665772], [-76.443254, 37.652347], [-76.399236, 37.628636], [-76.390054, 37.630326], [-76.381106, 37.627003], [-76.36232, 37.610368], [-76.309174, 37.621892], [-76.28037, 37.613715], [-76.279447, 37.618225], [-76.287959, 37.631771], [-76.292534, 37.636098], [-76.306464, 37.642005], [-76.332562, 37.645817], [-76.339892, 37.655966], [-76.324808, 37.676983], [-76.320216, 37.680666], [-76.315161, 37.68472], [-76.312079, 37.684651], [-76.302545, 37.689], [-76.300067, 37.695364], [-76.302803, 37.704474], [-76.312858, 37.720338], [-76.304917, 37.729913], [-76.312108, 37.750522], [-76.306489, 37.788646], [-76.310307, 37.794849], [-76.307482, 37.81235], [-76.293525, 37.822717], [-76.284904, 37.822308], [-76.281985, 37.818068], [-76.282592, 37.814109], [-76.280544, 37.812597], [-76.275178, 37.812664], [-76.266057, 37.8174], [-76.251358, 37.833072], [-76.245072, 37.861918], [-76.236725, 37.889174], [-76.265998, 37.91138], [-76.343848, 37.947345], [-76.360211, 37.952329], [-76.391439, 37.958742], [-76.416299, 37.966828], [-76.427487, 37.977038], [-76.462542, 37.998572], [-76.465291, 38.010226], [-76.469343, 38.013544], [-76.491998, 38.017222], [-76.516547, 38.026566], [-76.519536, 38.034814], [-76.522354, 38.04259], [-76.535919, 38.069532], [-76.543155, 38.076971], [-76.579497, 38.09487], [-76.600937, 38.110084], [-76.604131, 38.128771], [-76.613939, 38.148587], [-76.629476, 38.15305], [-76.638983, 38.151476], [-76.643448, 38.14825], [-76.665127, 38.147638], [-76.684892, 38.156497], [-76.701297, 38.155718], [-76.704048, 38.149264], [-76.721722, 38.137635], [-76.738938, 38.14651], [-76.740278, 38.152824], [-76.743064, 38.156988], [-76.749685, 38.162114], [-76.760241, 38.166581], [-76.788445, 38.169199], [-76.802968, 38.167988], [-76.824274, 38.163639], [-76.838795, 38.163476], [-76.875272, 38.172207], [-76.910832, 38.197073], [-76.916922, 38.199751], [-76.937134, 38.202384], [-76.962311, 38.214075], [-76.967335, 38.227185], [-76.966553, 38.229542], [-76.962375, 38.230093], [-76.957417, 38.236341], [-76.957796, 38.243183], [-76.96215, 38.256486], [-76.981372, 38.274214], [-76.990255, 38.273935], [-76.99767, 38.278047], [-77.026304, 38.302685], [-77.030683, 38.311623], [-77.020947, 38.329273], [-77.016932, 38.341697], [-77.011827, 38.374554], [-77.024866, 38.386791], [-77.043526, 38.400548], [-77.051437, 38.399083], [-77.056032, 38.3962], [-77.069956, 38.377895], [-77.08481, 38.368297], [-77.094665, 38.367715], [-77.104717, 38.369655], [-77.138224, 38.367917], [-77.155191, 38.351047], [-77.162692, 38.345994], [-77.17934, 38.341915], [-77.199433, 38.34089], [-77.240072, 38.331598], [-77.265295, 38.333165], [-77.279633, 38.339444], [-77.286202, 38.347024], [-77.286202, 38.347025], [-77.28835, 38.351286], [-77.288145, 38.359477], [-77.296077, 38.369797], [-77.317288, 38.383576], [-77.314848, 38.389579], [-77.312201, 38.390958], [-77.310719, 38.397669], [-77.319036, 38.417803], [-77.32544, 38.44885], [-77.322622, 38.467131], [-77.310334, 38.493926], [-77.302457, 38.504683], [-77.300776, 38.506978], [-77.298844, 38.508724], [-77.29582, 38.511457], [-77.291103, 38.515721], [-77.283503, 38.525221], [-77.276303, 38.53962], [-77.276603, 38.54712], [-77.26083, 38.56533], [-77.265304, 38.580319], [-77.26443, 38.582845], [-77.247003, 38.590618], [-77.246441, 38.599532], [-77.245104, 38.620717], [-77.248904, 38.628617], [-77.246704, 38.635217], [-77.240604, 38.638917], [-77.22235, 38.638091], [-77.216303, 38.637817], [-77.205103, 38.623917], [-77.204302, 38.617817], [-77.202002, 38.617217], [-77.174902, 38.624217], [-77.157501, 38.636417], [-77.1302, 38.635017], [-77.135901, 38.649817], [-77.132501, 38.673816], [-77.121101, 38.686616], [-77.1059, 38.696815], [-77.086113, 38.705792], [-77.074599, 38.711015], [-77.05991, 38.734419], [-77.041398, 38.763914], [-77.039239, 38.7852], [-77.038598, 38.791513], [-77.032986, 38.8395], [-77.031698, 38.850512], [-77.040599, 38.871212], [-77.068199, 38.899811], [-77.0902, 38.904211], [-77.1012, 38.911111], [-77.119863, 38.934265], [-77.1199, 38.934311], [-77.137701, 38.95531], [-77.148179, 38.965002], [-77.166901, 38.96811], [-77.197502, 38.96681], [-77.221502, 38.97131], [-77.235403, 38.97661], [-77.249803, 38.985909], [-77.255703, 39.002409], [-77.251803, 39.011409], [-77.261403, 39.031009], [-77.291605, 39.045408], [-77.328002, 39.058554], [-77.340287, 39.062991], [-77.375079, 39.061297], [-77.42318, 39.066878], [-77.458202, 39.073723], [-77.519929, 39.120925], [-77.524559, 39.127821], [-77.527282, 39.146236], [-77.516426, 39.170891], [-77.510631, 39.178484], [-77.505162, 39.18205], [-77.485971, 39.185665], [-77.478596, 39.189168], [-77.458884, 39.219826], [-77.458779, 39.22028], [-77.45768, 39.22502], [-77.46021, 39.228359], [-77.484605, 39.245941], [-77.511222, 39.2535], [-77.534461, 39.262361], [-77.543228, 39.266937], [-77.545846, 39.271535], [-77.560854, 39.286152], [-77.592739, 39.30129], [-77.667749, 39.318129], [-77.677505, 39.318699], [-77.719029, 39.321125], [-77.750267, 39.289284], [-77.753357, 39.280331], [-77.75306, 39.277971], [-77.753105, 39.27734], [-77.755193, 39.275191], [-77.755698, 39.274575], [-77.758412, 39.269197], [-77.758733, 39.268114], [-77.761217, 39.263721], [-77.761768, 39.263031], [-77.768, 39.257657], [-77.768992, 39.256417], [-77.767277, 39.24938], [-77.771415, 39.236776], [-77.822182, 39.139985], [-77.828157, 39.132329], [-78.032841, 39.264403], [-78.033183, 39.264624], [-78.033185, 39.264626], [-78.228766, 39.391233], [-78.347087, 39.466012], [-78.362267, 39.357784], [-78.34048, 39.353492], [-78.35894, 39.319484], [-78.360035, 39.317771], [-78.399785, 39.244129], [-78.399669, 39.243874], [-78.423968, 39.212049], [-78.427911, 39.208611], [-78.429803, 39.207014], [-78.431167, 39.205744], [-78.43213, 39.204717], [-78.437053, 39.199766], [-78.438651, 39.198049], [-78.426722, 39.188903], [-78.41074, 39.171983], [-78.418377, 39.156656], [-78.439429, 39.132146], [-78.459869, 39.113351], [-78.508132, 39.08863], [-78.544111, 39.056676], [-78.571901, 39.031995], [-78.565837, 39.026303], [-78.554222, 39.019672], [-78.557647, 39.013189], [-78.601655, 38.964603], [-78.710949, 38.910175], [-78.714135, 38.911176], [-78.716956, 38.916273], [-78.719755, 38.922135], [-78.719806, 38.922638], [-78.757278, 38.903203], [-78.779198, 38.892298], [-78.788031, 38.885123], [-78.808181, 38.856175], [-78.835191, 38.811499], [-78.869276, 38.762991] ] ] }, "properties": {}, "type": "Feature" }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80.321044921875, 36.26199220445664], [-76.541748046875, 36.26199220445664], [-76.541748046875, 39.68182601089365], [-80.321044921875, 39.68182601089365], [-80.321044921875, 36.26199220445664] ] ] } } ] } ================================================ FILE: packages/turf-bbox-clip/test/out/linestring-single-line.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#080", "fill": "#080", "stroke-width": 6, "fill-opacity": 0.1 }, "geometry": { "type": "LineString", "coordinates": [ [-77.1240234375, 39.51251701659638], [-77.618408203125, 39.24927084622338], [-77.0855712890625, 38.886757140695906] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "stroke-width": 6, "fill-opacity": 0.1 }, "geometry": { "type": "LineString", "coordinates": [ [-77.1240234375, 39.51251701659638], [-77.618408203125, 39.24927084622338], [-77.39307020244674, 39.095962936305476] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "stroke-width": 3, "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-77.72552490234374, 39.095962936305476], [-77.0361328125, 39.095962936305476], [-77.0361328125, 39.59722324495565], [-77.72552490234374, 39.59722324495565], [-77.72552490234374, 39.095962936305476] ] ] } } ] } ================================================ FILE: packages/turf-bbox-clip/test/out/linestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "geometry": { "type": "LineString", "coordinates": [ [-78.869276, 38.762991], [-78.835191, 38.811499], [-78.808181, 38.856175], [-78.788031, 38.885123], [-78.779198, 38.892298], [-78.757278, 38.903203], [-78.719806, 38.922638], [-78.719755, 38.922135], [-78.716956, 38.916273], [-78.714135, 38.911176], [-78.710949, 38.910175], [-78.601655, 38.964603], [-78.557647, 39.013189], [-78.554222, 39.019672], [-78.565837, 39.026303], [-78.571901, 39.031995], [-78.544111, 39.056676], [-78.508132, 39.08863], [-78.459869, 39.113351], [-78.439429, 39.132146], [-78.418377, 39.156656], [-78.41074, 39.171983], [-78.426722, 39.188903], [-78.438651, 39.198049], [-78.437053, 39.199766], [-78.43213, 39.204717], [-78.431167, 39.205744], [-78.429803, 39.207014], [-78.427911, 39.208611], [-78.423968, 39.212049], [-78.399669, 39.243874], [-78.399785, 39.244129], [-78.360035, 39.317771], [-78.35894, 39.319484], [-78.34048, 39.353492], [-78.362267, 39.357784], [-78.347087, 39.466012], [-78.228766, 39.391233], [-78.033185, 39.264626], [-78.033183, 39.264624], [-78.032841, 39.264403], [-77.828157, 39.132329], [-77.822182, 39.139985], [-77.771415, 39.236776], [-77.767277, 39.24938], [-77.768992, 39.256417], [-77.768, 39.257657], [-77.761768, 39.263031], [-77.761217, 39.263721], [-77.758733, 39.268114], [-77.758412, 39.269197], [-77.755698, 39.274575], [-77.755193, 39.275191], [-77.753105, 39.27734], [-77.75306, 39.277971], [-77.753357, 39.280331], [-77.750267, 39.289284], [-77.719029, 39.321125], [-77.677505, 39.318699], [-77.667749, 39.318129], [-77.592739, 39.30129], [-77.560854, 39.286152], [-77.545846, 39.271535], [-77.543228, 39.266937], [-77.534461, 39.262361], [-77.511222, 39.2535], [-77.484605, 39.245941], [-77.46021, 39.228359], [-77.45768, 39.22502], [-77.458779, 39.22028], [-77.458884, 39.219826], [-77.478596, 39.189168], [-77.485971, 39.185665], [-77.505162, 39.18205], [-77.510631, 39.178484], [-77.516426, 39.170891], [-77.527282, 39.146236], [-77.524559, 39.127821], [-77.519929, 39.120925], [-77.458202, 39.073723], [-77.42318, 39.066878], [-77.375079, 39.061297], [-77.340287, 39.062991], [-77.328002, 39.058554], [-77.291605, 39.045408], [-77.261403, 39.031009], [-77.251803, 39.011409], [-77.255703, 39.002409], [-77.249803, 38.985909], [-77.235403, 38.97661], [-77.221502, 38.97131], [-77.197502, 38.96681], [-77.166901, 38.96811], [-77.148179, 38.965002], [-77.137701, 38.95531], [-77.1199, 38.934311], [-77.119863, 38.934265], [-77.1012, 38.911111], [-77.0902, 38.904211], [-77.068199, 38.899811], [-77.040599, 38.871212], [-77.031698, 38.850512], [-77.032986, 38.8395], [-77.038598, 38.791513], [-77.039239, 38.7852], [-77.041398, 38.763914], [-77.05991, 38.734419], [-77.074599, 38.711015], [-77.086113, 38.705792], [-77.1059, 38.696815], [-77.121101, 38.686616], [-77.132501, 38.673816], [-77.135901, 38.649817], [-77.1302, 38.635017], [-77.157501, 38.636417], [-77.174902, 38.624217], [-77.202002, 38.617217], [-77.204302, 38.617817], [-77.205103, 38.623917], [-77.216303, 38.637817], [-77.22235, 38.638091], [-77.240604, 38.638917], [-77.246704, 38.635217], [-77.248904, 38.628617], [-77.245104, 38.620717], [-77.246441, 38.599532], [-77.247003, 38.590618], [-77.26443, 38.582845], [-77.265304, 38.580319], [-77.26083, 38.56533], [-77.276603, 38.54712], [-77.276303, 38.53962], [-77.283503, 38.525221], [-77.291103, 38.515721], [-77.29582, 38.511457], [-77.298844, 38.508724], [-77.300776, 38.506978], [-77.302457, 38.504683], [-77.310334, 38.493926], [-77.322622, 38.467131], [-77.32544, 38.44885], [-77.319036, 38.417803], [-77.310719, 38.397669], [-77.312201, 38.390958], [-77.314848, 38.389579], [-77.317288, 38.383576], [-77.296077, 38.369797], [-77.288145, 38.359477], [-77.28835, 38.351286], [-77.286202, 38.347025], [-77.286202, 38.347024], [-77.279633, 38.339444], [-77.265295, 38.333165], [-77.240072, 38.331598], [-77.199433, 38.34089], [-77.17934, 38.341915], [-77.162692, 38.345994], [-77.155191, 38.351047], [-77.138224, 38.367917], [-77.104717, 38.369655], [-77.094665, 38.367715], [-77.08481, 38.368297], [-77.069956, 38.377895], [-77.056032, 38.3962], [-77.051437, 38.399083], [-77.043526, 38.400548], [-77.024866, 38.386791], [-77.011827, 38.374554], [-77.016932, 38.341697], [-77.020947, 38.329273], [-77.030683, 38.311623], [-77.026304, 38.302685], [-76.99767, 38.278047], [-76.990255, 38.273935], [-76.981372, 38.274214], [-76.96215, 38.256486], [-76.957796, 38.243183], [-76.957417, 38.236341], [-76.962375, 38.230093], [-76.966553, 38.229542], [-76.967335, 38.227185], [-76.962311, 38.214075], [-76.937134, 38.202384], [-76.916922, 38.199751], [-76.910832, 38.197073], [-76.875272, 38.172207], [-76.838795, 38.163476], [-76.824274, 38.163639], [-76.802968, 38.167988], [-76.788445, 38.169199], [-76.760241, 38.166581], [-76.749685, 38.162114], [-76.743064, 38.156988], [-76.740278, 38.152824], [-76.738938, 38.14651], [-76.721722, 38.137635], [-76.704048, 38.149264], [-76.701297, 38.155718], [-76.684892, 38.156497], [-76.665127, 38.147638], [-76.643448, 38.14825], [-76.638983, 38.151476], [-76.629476, 38.15305], [-76.613939, 38.148587], [-76.604131, 38.128771], [-76.600937, 38.110084], [-76.579497, 38.09487], [-76.543155, 38.076971], [-76.535919, 38.069532], [-76.522354, 38.04259], [-76.519536, 38.034814], [-76.516547, 38.026566], [-76.491998, 38.017222], [-76.469343, 38.013544], [-76.465291, 38.010226], [-76.462542, 37.998572], [-76.427487, 37.977038], [-76.416299, 37.966828], [-76.391439, 37.958742], [-76.360211, 37.952329], [-76.343848, 37.947345], [-76.265998, 37.91138], [-76.236725, 37.889174], [-76.245072, 37.861918], [-76.251358, 37.833072], [-76.266057, 37.8174], [-76.275178, 37.812664], [-76.280544, 37.812597], [-76.282592, 37.814109], [-76.281985, 37.818068], [-76.284904, 37.822308], [-76.293525, 37.822717], [-76.307482, 37.81235], [-76.310307, 37.794849], [-76.306489, 37.788646], [-76.312108, 37.750522], [-76.304917, 37.729913], [-76.312858, 37.720338], [-76.302803, 37.704474], [-76.300067, 37.695364], [-76.302545, 37.689], [-76.312079, 37.684651], [-76.315161, 37.68472], [-76.320216, 37.680666], [-76.324808, 37.676983], [-76.339892, 37.655966], [-76.332562, 37.645817], [-76.306464, 37.642005], [-76.292534, 37.636098], [-76.287959, 37.631771], [-76.279447, 37.618225], [-76.28037, 37.613715], [-76.309174, 37.621892], [-76.36232, 37.610368], [-76.381106, 37.627003], [-76.390054, 37.630326], [-76.399236, 37.628636], [-76.443254, 37.652347], [-76.472392, 37.665772], [-76.489576, 37.666201], [-76.491799, 37.663614], [-76.497564, 37.647056], [-76.501522, 37.643762], [-76.510187, 37.642324], [-76.536548, 37.663574], [-76.537698, 37.66893], [-76.535302, 37.687516], [-76.537228, 37.698892], [-76.54005, 37.704432], [-76.560476, 37.727827], [-76.576387, 37.757493], [-76.584289, 37.76889], [-76.593835, 37.772848], [-76.595939, 37.77168], [-76.602024, 37.772731], [-76.615351, 37.780759], [-76.642276, 37.792317], [-76.651413, 37.796239], [-76.658302, 37.806815], [-76.680197, 37.825654], [-76.692747, 37.82277], [-76.701606, 37.822677], [-76.722156, 37.83668], [-76.72718, 37.842263], [-76.733046, 37.852009], [-76.738395, 37.865373], [-76.747552, 37.875864], [-76.765711, 37.879274], [-76.77539, 37.874306], [-76.784618, 37.869569], [-76.782826, 37.863184], [-76.766328, 37.840437], [-76.7512, 37.824141], [-76.734309, 37.79866], [-76.723863, 37.788503], [-76.715498, 37.785873], [-76.689773, 37.78519], [-76.683775, 37.781391], [-76.681901, 37.778118], [-76.683343, 37.775783], [-76.683359, 37.770258], [-76.683372, 37.765507], [-76.680922, 37.759647], [-76.677002, 37.7561], [-76.663887, 37.751887], [-76.639962, 37.750941], [-76.61971, 37.744795], [-76.617373, 37.742347], [-76.621433, 37.737973], [-76.61997, 37.731271], [-76.606466, 37.724819], [-76.597213, 37.717269], [-76.595943, 37.712989], [-76.598073, 37.70912], [-76.597868, 37.702918], [-76.579591, 37.671508], [-76.583143, 37.661986], [-76.574049, 37.646781], [-76.542666, 37.616857], [-76.533777, 37.61253], [-76.527188, 37.611315], [-76.435474, 37.612807], [-76.420252, 37.598686], [-76.410781, 37.581815], [-76.383188, 37.573056], [-76.357835, 37.573699], [-76.332641, 37.570042], [-76.300144, 37.561734], [-76.29796, 37.557636], [-76.302762, 37.551295], [-76.330598, 37.536391], [-76.339989, 37.53833], [-76.348992, 37.536548], [-76.355084, 37.527364], [-76.360474, 37.51924], [-76.359378, 37.513426], [-76.352678, 37.504913], [-76.32947, 37.49492], [-76.306952, 37.497488], [-76.297739, 37.506863], [-76.296445, 37.511235], [-76.298456, 37.512677], [-76.297651, 37.515424], [-76.293599, 37.516499], [-76.288167, 37.514118], [-76.281043, 37.507821], [-76.265056, 37.481365], [-76.252415, 37.447274], [-76.250454, 37.421886], [-76.246617, 37.404122], [-76.245283, 37.386839], [-76.24846, 37.375135], [-76.258277, 37.36202], [-76.262407, 37.360786], [-76.264847, 37.357399], [-76.272888, 37.335174], [-76.272005, 37.322194], [-76.275552, 37.309964], [-76.282555, 37.319107], [-76.291324, 37.324145], [-76.308581, 37.329366], [-76.31205, 37.338088], [-76.337476, 37.364014], [-76.366751, 37.374495], [-76.387112, 37.385061], [-76.391437, 37.390284], [-76.393958, 37.39594], [-76.393125, 37.398068], [-76.404756, 37.400213], [-76.415167, 37.402133], [-76.418719, 37.3978], [-76.418176, 37.385064], [-76.422503, 37.381355], [-76.437525, 37.37975], [-76.445333, 37.36646], [-76.434965, 37.354524], [-76.406388, 37.332924], [-76.38777, 37.30767], [-76.385603, 37.294108], [-76.381075, 37.28534], [-76.369029, 37.279311], [-76.352556, 37.278334], [-76.349489, 37.273963], [-76.36229, 37.270226], [-76.392788, 37.264973], [-76.417173, 37.26395], [-76.421765, 37.255198], [-76.429141, 37.25331], [-76.475927, 37.250543], [-76.48284, 37.254831], [-76.493302, 37.24947], [-76.4989, 37.241015], [-76.50364, 37.233856], [-76.494008, 37.225408], [-76.471799, 37.216016], [-76.394132, 37.22515], [-76.389793, 37.222981], [-76.3936, 37.214049], [-76.396052, 37.201087], [-76.389284, 37.193503], [-76.391252, 37.179887], [-76.397883, 37.164415], [-76.399659, 37.160272], [-76.394756, 37.157568], [-76.381379, 37.155711], [-76.375255, 37.16084], [-76.35969, 37.16858], [-76.348658, 37.170655], [-76.343234, 37.166207], [-76.344898, 37.164479], [-76.34405, 37.160367], [-76.340129, 37.151823], [-76.334017, 37.144223], [-76.330481, 37.141727], [-76.324353, 37.142895], [-76.311088, 37.138495], [-76.292344, 37.126615], [-76.287236, 37.117453], [-76.274463, 37.094544], [-76.271262, 37.084544], [-76.292863, 37.035145], [-76.300352, 37.00885], [-76.304272, 37.001378], [-76.312048, 37.000371], [-76.315008, 37.001683], [-76.314624, 37.00933], [-76.318065, 37.013846], [-76.329531, 37.014556], [-76.34011, 37.015212], [-76.340666, 37.015246], [-76.348066, 37.006747], [-76.356366, 37.002947], [-76.373567, 36.998347], [-76.383367, 36.993347], [-76.387711, 36.989671], [-76.396368, 36.982347], [-76.408568, 36.969147], [-76.411768, 36.962847], [-76.418969, 36.964047], [-76.428869, 36.969947], [-76.452118, 36.998163], [-76.452461, 37.004603], [-76.449891, 37.004868], [-76.448231, 37.007705], [-76.464471, 37.027547], [-76.46949, 37.030414], [-76.507614, 37.052188], [-76.509339, 37.053173], [-76.512289, 37.054858], [-76.518242, 37.055351], [-76.526273, 37.062947], [-76.527973, 37.068247], [-76.526573, 37.070047], [-76.526203, 37.077773], [-76.528997, 37.079388], [-76.536875, 37.083942], [-76.555066, 37.075859], [-76.564219, 37.077507], [-76.567931, 37.080467], [-76.579499, 37.096627], [-76.618252, 37.119347], [-76.62478, 37.127091], [-76.622252, 37.142146], [-76.617084, 37.144498], [-76.604476, 37.160034], [-76.606684, 37.166674], [-76.610972, 37.166994], [-76.611018, 37.167097], [-76.612517, 37.170486], [-76.613599, 37.172931], [-76.614221, 37.174335], [-76.616268, 37.178962], [-76.616804, 37.18126], [-76.617537, 37.184409], [-76.618008, 37.186429], [-76.61934, 37.192146], [-76.619962, 37.193184], [-76.621113, 37.195103], [-76.623292, 37.198738], [-76.629868, 37.206738], [-76.639608, 37.214783], [-76.641085, 37.216002], [-76.649869, 37.220914], [-76.689166, 37.222866], [-76.693373, 37.221228], [-76.698943, 37.219059], [-76.730951, 37.213813], [-76.73432, 37.204211], [-76.74, 37.195379], [-76.74304, 37.192611], [-76.75047, 37.190098], [-76.757765, 37.191658], [-76.773752, 37.206061], [-76.780532, 37.209336], [-76.791555, 37.207564], [-76.801023, 37.206043], [-76.803198, 37.201513], [-76.802511, 37.198308], [-76.796905, 37.189404], [-76.756899, 37.161582], [-76.747632, 37.150548], [-76.73728, 37.146164], [-76.73032, 37.145395], [-76.715295, 37.148035], [-76.696735, 37.174403], [-76.692926, 37.186147], [-76.691918, 37.195731], [-76.685614, 37.198851], [-76.669886, 37.183571], [-76.663774, 37.173875], [-76.66427, 37.171027], [-76.66867, 37.166771], [-76.67147, 37.158739], [-76.671588, 37.14206], [-76.669604, 37.140534], [-76.666542, 37.138179], [-76.665833, 37.136098], [-76.665641, 37.135534], [-76.66375, 37.129979], [-76.656894, 37.109843], [-76.657101, 37.107617], [-76.657703, 37.101161], [-76.65811, 37.096787], [-76.659394, 37.094019], [-76.66555, 37.080746], [-76.666526, 37.078643], [-76.667219, 37.077149], [-76.667646, 37.076228], [-76.668295, 37.072656], [-76.669118, 37.068132], [-76.669822, 37.06426], [-76.66835, 37.05506], [-76.662558, 37.045748], [-76.653998, 37.039172], [-76.646013, 37.036228], [-76.612124, 37.035604], [-76.586491, 37.02874], [-76.584478, 37.027349], [-76.579393, 37.023835], [-76.579236, 37.023726], [-76.57816, 37.022982], [-76.577531, 37.022548], [-76.576617, 37.021374], [-76.565803, 37.007493], [-76.562923, 37.003796], [-76.551246, 36.998946], [-76.524853, 36.983833], [-76.522971, 36.981085], [-76.524142, 36.978316], [-76.521006, 36.973187], [-76.513363, 36.968057], [-76.500355, 36.965212], [-76.487559, 36.952372], [-76.484107, 36.928916], [-76.482407, 36.917364], [-76.482135, 36.901108], [-76.483369, 36.896239], [-76.469914, 36.882898], [-76.454692, 36.884077], [-76.45329, 36.887031], [-76.453941, 36.89274], [-76.447413, 36.90322], [-76.441605, 36.906116], [-76.43122, 36.904532], [-76.407507, 36.897444], [-76.406908, 36.897507], [-76.387567, 36.899547], [-76.385867, 36.923247], [-76.353765, 36.922747], [-76.345569, 36.924531], [-76.344663, 36.919313], [-76.333158, 36.917293], [-76.328864, 36.918447], [-76.330765, 36.938647], [-76.327365, 36.959447], [-76.322764, 36.959147], [-76.315867, 36.955351], [-76.299364, 36.965547], [-76.297663, 36.968147], [-76.285063, 36.968747], [-76.267962, 36.964547], [-76.234961, 36.945147], [-76.22166, 36.939547], [-76.189959, 36.931447], [-76.177019, 36.92929], [-76.139557, 36.923047], [-76.095508, 36.908817], [-76.087955, 36.908647], [-76.058154, 36.916947], [-76.043054, 36.927547], [-76.033454, 36.931946], [-76.013753, 36.930746], [-76.007553, 36.929047], [-75.996252, 36.922047], [-75.991552, 36.910847], [-75.972151, 36.842268], [-75.965451, 36.812449], [-75.94955, 36.76115], [-75.921748, 36.692051], [-75.890946, 36.630753], [-75.874145, 36.583853], [-75.867044, 36.550754], [-75.879744, 36.550754], [-75.880644, 36.550754], [-75.885945, 36.550754], [-75.886545, 36.550754], [-75.891945, 36.550754], [-75.893245, 36.550654], [-75.894145, 36.550754], [-75.903445, 36.550654], [-75.904745, 36.550654], [-75.909046, 36.550654], [-75.911446, 36.550654], [-75.922046, 36.550654], [-75.952847, 36.550553], [-75.953447, 36.550553], [-75.955748, 36.550553], [-75.957648, 36.550553], [-76.02675, 36.550553], [-76.034751, 36.550653], [-76.12236, 36.550621], [-76.313196, 36.550551], [-76.313215, 36.550551], [-76.491497, 36.550365], [-76.541391, 36.550312], [-76.541687, 36.550312], [-76.781296, 36.550659], [-76.807078, 36.550606], [-76.915384, 36.543856], [-76.916001, 36.543818], [-76.916048, 36.543815], [-77.1645, 36.54633], [-77.24969, 36.544745], [-77.296875, 36.544746], [-77.767117, 36.544752], [-77.87528, 36.544754], [-77.882357, 36.544737], [-77.899771, 36.544663], [-78.038938, 36.544173], [-78.03942, 36.544196], [-78.046202, 36.544168], [-78.132911, 36.543811], [-78.133323, 36.543847], [-78.245462, 36.544411], [-78.246681, 36.544341], [-78.323912, 36.543809], [-78.436333, 36.542666], [-78.441199, 36.542687], [-78.45697, 36.542474], [-78.470792, 36.542316], [-78.471022, 36.542307], [-78.529722, 36.540981], [-78.533013, 36.541004], [-78.663317, 36.542011], [-78.670051, 36.542035], [-78.734122, 36.541902], [-78.758392, 36.541852], [-78.76543, 36.541727], [-78.7963, 36.541713], [-78.914543, 36.541972], [-78.91542, 36.541974], [-78.942009, 36.542113], [-78.942254, 36.542079], [-78.970577, 36.542154], [-78.971814, 36.542123], [-79.124736, 36.541568], [-79.126078, 36.541533], [-79.137936, 36.541739], [-79.208686, 36.541571], [-79.20948, 36.541594], [-79.218638, 36.541579], [-79.342696, 36.541382], [-79.445687, 36.541218], [-79.445961, 36.541195], [-79.470047, 36.541025], [-79.510647, 36.540738], [-79.510961, 36.54074], [-79.666827, 36.541772], [-79.667309, 36.541772], [-79.714855, 36.541884], [-79.920239, 36.542365], [-79.966979, 36.542475], [-79.967511, 36.542502], [-80.027269, 36.542495], [-80.053455, 36.542623], [-80.169535, 36.54319], [-80.171636, 36.543219], [-80.225408, 36.543748], [-80.228263, 36.543867], [-80.431605, 36.550219], [-80.432628, 36.550302], [-80.4401, 36.55063], [-80.612158, 36.558127], [-80.687539, 36.561411], [-80.744101, 36.561686], [-80.837089, 36.559154], [-80.837641, 36.559118], [-80.837954, 36.559131], [-80.901726, 36.561751], [-80.901836, 36.561754], [-80.944338, 36.563058], [-80.945988, 36.563196], [-81.058844, 36.566976], [-81.061866, 36.56702], [-81.307511, 36.575024], [-81.353169, 36.574724], [-81.353322, 36.574723], [-81.521032, 36.58052], [-81.60697, 36.587094], [-81.677535, 36.588117], [-81.6469, 36.611918], [-81.826742, 36.614215], [-81.922644, 36.616213], [-81.934144, 36.594213], [-82.14607, 36.594712], [-82.148569, 36.594718], [-82.150727, 36.594673], [-82.173982, 36.594607], [-82.177247, 36.594768], [-82.18074, 36.594928], [-82.188491, 36.595179], [-82.210497, 36.595772], [-82.211005, 36.59586], [-82.221713, 36.595814], [-82.223445, 36.595721], [-82.225716, 36.595744], [-82.226653, 36.595743], [-82.243274, 36.595699], [-82.293814, 36.595565], [-82.554294, 36.594876], [-82.559774, 36.5948], [-82.561074, 36.5948], [-82.609176, 36.594099], [-82.679879, 36.593698], [-82.69578, 36.593698], [-82.830433, 36.593761], [-82.985087, 36.593829], [-83.02725, 36.593847], [-83.028357, 36.593893], [-83.248933, 36.593827], [-83.249899, 36.593898], [-83.250304, 36.593935], [-83.2763, 36.598187], [-83.472108, 36.597284], [-83.670128, 36.600764], [-83.670141, 36.600797], [-83.675413, 36.600814], [-83.649513, 36.616683], [-83.527212, 36.665984], [-83.498011, 36.670485], [-83.461013, 36.664916], [-83.460808, 36.664885], [-83.354606, 36.696153], [-83.353613, 36.696699], [-83.342804, 36.701286], [-83.199698, 36.737487], [-83.167396, 36.739187], [-83.136395, 36.743088], [-83.127833, 36.750828], [-83.125728, 36.761276], [-83.125655, 36.761407], [-83.131245, 36.767105], [-83.131694, 36.781488], [-83.099792, 36.824889], [-83.07259, 36.854589], [-82.973395, 36.859097], [-82.911824, 36.874243], [-82.91169, 36.874248], [-82.885618, 36.900415], [-82.873777, 36.912299], [-82.872136, 36.913456], [-82.863468, 36.922308], [-82.861943, 36.924236], [-82.858461, 36.932717], [-82.858784, 36.933065], [-82.860537, 36.937439], [-82.861684, 36.939316], [-82.861282, 36.944848], [-82.860633, 36.94584], [-82.856099, 36.952471], [-82.855705, 36.953808], [-82.858443, 36.954036], [-82.860534, 36.956015], [-82.862866, 36.957765], [-82.864211, 36.957983], [-82.865404, 36.958084], [-82.867358, 36.963182], [-82.87023, 36.965498], [-82.870274, 36.965993], [-82.869183, 36.974182], [-82.869183, 36.974183], [-82.868455, 36.976481], [-82.867535, 36.977518], [-82.866689, 36.978052], [-82.866019, 36.978272], [-82.864909, 36.97901], [-82.862926, 36.979975], [-82.852614, 36.984963], [-82.851397, 36.984497], [-82.840051, 36.987113], [-82.838549, 36.987027], [-82.836008, 36.988837], [-82.833843, 36.991973], [-82.830802, 36.993445], [-82.829125, 36.997541], [-82.830588, 37.000945], [-82.818006, 37.006161], [-82.815748, 37.007196], [-82.800531, 37.007944], [-82.79089, 37.00676], [-82.790462, 37.007263], [-82.789092, 37.007995], [-82.788897, 37.00816], [-82.777368, 37.015279], [-82.771795, 37.015716], [-82.722472, 37.045101], [-82.720597, 37.081833], [-82.721941, 37.105689], [-82.624878, 37.162932], [-82.565375, 37.196092], [-82.565329, 37.196118], [-82.553549, 37.200867], [-82.510826, 37.218091], [-82.350948, 37.267077], [-82.310793, 37.297387], [-82.305874, 37.3011], [-82.291908, 37.311642], [-81.968297, 37.537798], [-81.92787, 37.512118], [-81.94264, 37.508844], [-81.992916, 37.482969], [-81.996578, 37.476705], [-81.99227, 37.460916], [-81.987006, 37.454878], [-81.968795, 37.451496], [-81.949367, 37.445687], [-81.935621, 37.438397], [-81.92749, 37.413251], [-81.933895, 37.372747], [-81.930194, 37.366728], [-81.929915, 37.366589], [-81.926589, 37.358942], [-81.925643, 37.357316], [-81.921571, 37.356423], [-81.920711, 37.355416], [-81.911487, 37.348839], [-81.910875, 37.348729], [-81.907895, 37.343783], [-81.907322, 37.343119], [-81.906368, 37.34276], [-81.905945, 37.342775], [-81.903795, 37.34305], [-81.902992, 37.34234], [-81.899495, 37.341102], [-81.899459, 37.340277], [-81.896001, 37.331967], [-81.895489, 37.332022], [-81.894797, 37.332012], [-81.894768, 37.331381], [-81.893773, 37.330105], [-81.892876, 37.330134], [-81.887722, 37.331156], [-81.886952, 37.330725], [-81.885075, 37.330665], [-81.880886, 37.331146], [-81.879601, 37.332074], [-81.878713, 37.331753], [-81.878343, 37.328837], [-81.873213, 37.325065], [-81.865219, 37.308839], [-81.86476, 37.308404], [-81.853978, 37.300418], [-81.854465, 37.299937], [-81.853488, 37.294763], [-81.854059, 37.291352], [-81.843167, 37.285586], [-81.84231, 37.285556], [-81.810559, 37.28298], [-81.809184, 37.283003], [-81.793639, 37.282188], [-81.793425, 37.281674], [-81.774747, 37.274847], [-81.774684, 37.274807], [-81.767837, 37.274216], [-81.765195, 37.275099], [-81.763836, 37.275218], [-81.762776, 37.275391], [-81.761752, 37.275713], [-81.76022, 37.275254], [-81.757631, 37.274003], [-81.75773, 37.271934], [-81.757714, 37.271124], [-81.757531, 37.27001], [-81.755012, 37.26772], [-81.752912, 37.266614], [-81.752123, 37.265568], [-81.75129, 37.265131], [-81.747656, 37.264329], [-81.743505, 37.247601], [-81.74342, 37.245858], [-81.744291, 37.244178], [-81.738378, 37.240917], [-81.73332, 37.238127], [-81.728194, 37.239823], [-81.683544, 37.211452], [-81.678603, 37.202467], [-81.560625, 37.206663], [-81.558353, 37.208145], [-81.557315, 37.207697], [-81.507325, 37.2338], [-81.50488, 37.247697], [-81.504168, 37.250115], [-81.409729, 37.284837], [-81.409196, 37.286071], [-81.388132, 37.319903], [-81.386727, 37.320474], [-81.38581, 37.320085], [-81.384914, 37.318832], [-81.384127, 37.318596], [-81.380159, 37.317838], [-81.377349, 37.318447], [-81.371315, 37.324115], [-81.367599, 37.327569], [-81.369379, 37.331827], [-81.36809, 37.332423], [-81.367052, 37.334504], [-81.366315, 37.335927], [-81.362156, 37.337687], [-81.320105, 37.299323], [-81.225104, 37.234874], [-81.204774, 37.243013], [-81.167029, 37.262881], [-81.112596, 37.278497], [-81.084012, 37.284401], [-81.034652, 37.290751], [-80.981322, 37.293465], [-80.980044, 37.293118], [-80.973889, 37.291444], [-80.966556, 37.292158], [-80.947896, 37.295872], [-80.919259, 37.306163], [-80.900535, 37.315], [-80.849451, 37.346909], [-80.872589, 37.372347], [-80.862761, 37.411829], [-80.859558, 37.429555], [-80.859556, 37.429568], [-80.858473, 37.428301], [-80.85836, 37.428168], [-80.811639, 37.407507], [-80.798869, 37.395807], [-80.776766, 37.384131], [-80.776649, 37.383679], [-80.770082, 37.372363], [-80.622664, 37.433307], [-80.511391, 37.481672], [-80.494867, 37.43507], [-80.475601, 37.422949], [-80.46482, 37.426144], [-80.443025, 37.438126], [-80.425656, 37.449876], [-80.320627, 37.49888], [-80.314806, 37.500943], [-80.330306, 37.536244], [-80.312393, 37.546239], [-80.288766, 37.58196], [-80.240272, 37.606961], [-80.223386, 37.623185], [-80.220984, 37.627767], [-80.239288, 37.637672], [-80.254431, 37.642352], [-80.254469, 37.642333], [-80.263281, 37.645082], [-80.263291, 37.645101], [-80.26483, 37.645526], [-80.264874, 37.645511], [-80.267228, 37.646011], [-80.267455, 37.646108], [-80.270352, 37.648929], [-80.270323, 37.648982], [-80.292258, 37.683732], [-80.292337, 37.683976], [-80.296138, 37.691783], [-80.287107, 37.696403], [-80.263936, 37.719137], [-80.259342, 37.731205], [-80.260313, 37.733517], [-80.262765, 37.738336], [-80.257411, 37.756084], [-80.231551, 37.792591], [-80.227092, 37.798886], [-80.162202, 37.875122], [-80.148964, 37.886057], [-80.147316, 37.885936], [-80.14613, 37.884453], [-80.130464, 37.893194], [-80.055278, 37.951702], [-80.002507, 37.992767], [-79.978427, 38.029082], [-79.959844, 38.063697], [-79.933911, 38.099168], [-79.931034, 38.101402], [-79.938394, 38.130563], [-79.933751, 38.135508], [-79.928747, 38.144436], [-79.928683, 38.144928], [-79.925512, 38.150237], [-79.925251, 38.150465], [-79.921026, 38.179954], [-79.921196, 38.180378], [-79.917061, 38.183741], [-79.916174, 38.184386], [-79.892345, 38.202397], [-79.891999, 38.203378], [-79.794568, 38.264856], [-79.790134, 38.267654], [-79.788945, 38.268703], [-79.810115, 38.305037], [-79.808711, 38.309429], [-79.731661, 38.374143], [-79.691377, 38.439558], [-79.689544, 38.442511], [-79.688962, 38.449538], [-79.688205, 38.450476], [-79.699006, 38.475148], [-79.695565, 38.477842], [-79.669128, 38.510883], [-79.669128, 38.510975], [-79.649075, 38.591515], [-79.597955, 38.572767], [-79.555471, 38.560217], [-79.53687, 38.550917], [-79.521469, 38.533918], [-79.476638, 38.457228], [-79.312276, 38.411876], [-79.297758, 38.416438], [-79.295712, 38.418129], [-79.291813, 38.419627], [-79.290529, 38.420757], [-79.280263, 38.425475], [-79.282663, 38.431021], [-79.267414, 38.438322], [-79.265327, 38.441772], [-79.263376, 38.443762], [-79.26291, 38.444586], [-79.242024, 38.464332], [-79.240059, 38.469841], [-79.234408, 38.473011], [-79.23162, 38.474041], [-79.225839, 38.479446], [-79.210026, 38.494231], [-79.210008, 38.494283], [-79.209703, 38.495574], [-79.207873, 38.500122], [-79.207884, 38.500428], [-79.174881, 38.566314], [-79.174512, 38.566531], [-79.146974, 38.625641], [-79.146741, 38.625819], [-79.137012, 38.640655], [-79.136374, 38.6424], [-79.135546, 38.643715], [-79.135472, 38.644057], [-79.092271, 38.699208], [-79.092555, 38.700149], [-79.057253, 38.761413], [-79.055354, 38.782213], [-78.999752, 38.846162], [-78.993997, 38.850102] ] }, "properties": { "stroke": "#080", "fill": "#080", "stroke-width": 6, "fill-opacity": 0.1 }, "type": "Feature" }, { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "stroke-width": 6, "fill-opacity": 0.1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-78.869276, 38.762991], [-78.835191, 38.811499], [-78.808181, 38.856175], [-78.788031, 38.885123], [-78.779198, 38.892298], [-78.757278, 38.903203], [-78.719806, 38.922638], [-78.719755, 38.922135], [-78.716956, 38.916273], [-78.714135, 38.911176], [-78.710949, 38.910175], [-78.601655, 38.964603], [-78.557647, 39.013189], [-78.554222, 39.019672], [-78.565837, 39.026303], [-78.571901, 39.031995], [-78.544111, 39.056676], [-78.508132, 39.08863], [-78.459869, 39.113351], [-78.439429, 39.132146], [-78.418377, 39.156656], [-78.41074, 39.171983], [-78.426722, 39.188903], [-78.438651, 39.198049], [-78.437053, 39.199766], [-78.43213, 39.204717], [-78.431167, 39.205744], [-78.429803, 39.207014], [-78.427911, 39.208611], [-78.423968, 39.212049], [-78.399669, 39.243874], [-78.399785, 39.244129], [-78.360035, 39.317771], [-78.35894, 39.319484], [-78.34048, 39.353492], [-78.362267, 39.357784], [-78.347087, 39.466012], [-78.228766, 39.391233], [-78.033185, 39.264626], [-78.033183, 39.264624], [-78.032841, 39.264403], [-77.828157, 39.132329], [-77.822182, 39.139985], [-77.771415, 39.236776], [-77.767277, 39.24938], [-77.768992, 39.256417], [-77.768, 39.257657], [-77.761768, 39.263031], [-77.761217, 39.263721], [-77.758733, 39.268114], [-77.758412, 39.269197], [-77.755698, 39.274575], [-77.755193, 39.275191], [-77.753105, 39.27734], [-77.75306, 39.277971], [-77.753357, 39.280331], [-77.750267, 39.289284], [-77.719029, 39.321125], [-77.677505, 39.318699], [-77.667749, 39.318129], [-77.592739, 39.30129], [-77.560854, 39.286152], [-77.545846, 39.271535], [-77.543228, 39.266937], [-77.534461, 39.262361], [-77.511222, 39.2535], [-77.484605, 39.245941], [-77.46021, 39.228359], [-77.45768, 39.22502], [-77.458779, 39.22028], [-77.458884, 39.219826], [-77.478596, 39.189168], [-77.485971, 39.185665], [-77.505162, 39.18205], [-77.510631, 39.178484], [-77.516426, 39.170891], [-77.527282, 39.146236], [-77.524559, 39.127821], [-77.519929, 39.120925], [-77.458202, 39.073723], [-77.42318, 39.066878], [-77.375079, 39.061297], [-77.340287, 39.062991], [-77.328002, 39.058554], [-77.291605, 39.045408], [-77.261403, 39.031009], [-77.251803, 39.011409], [-77.255703, 39.002409], [-77.249803, 38.985909], [-77.235403, 38.97661], [-77.221502, 38.97131], [-77.197502, 38.96681], [-77.166901, 38.96811], [-77.148179, 38.965002], [-77.137701, 38.95531], [-77.1199, 38.934311], [-77.119863, 38.934265], [-77.1012, 38.911111], [-77.0902, 38.904211], [-77.068199, 38.899811], [-77.040599, 38.871212], [-77.031698, 38.850512], [-77.032986, 38.8395], [-77.038598, 38.791513], [-77.039239, 38.7852], [-77.041398, 38.763914], [-77.05991, 38.734419], [-77.074599, 38.711015], [-77.086113, 38.705792], [-77.1059, 38.696815], [-77.121101, 38.686616], [-77.132501, 38.673816], [-77.135901, 38.649817], [-77.1302, 38.635017], [-77.157501, 38.636417], [-77.174902, 38.624217], [-77.202002, 38.617217], [-77.204302, 38.617817], [-77.205103, 38.623917], [-77.216303, 38.637817], [-77.22235, 38.638091], [-77.240604, 38.638917], [-77.246704, 38.635217], [-77.248904, 38.628617], [-77.245104, 38.620717], [-77.246441, 38.599532], [-77.247003, 38.590618], [-77.26443, 38.582845], [-77.265304, 38.580319], [-77.26083, 38.56533], [-77.276603, 38.54712], [-77.276303, 38.53962], [-77.283503, 38.525221], [-77.291103, 38.515721], [-77.29582, 38.511457], [-77.298844, 38.508724], [-77.300776, 38.506978], [-77.302457, 38.504683], [-77.310334, 38.493926], [-77.322622, 38.467131], [-77.32544, 38.44885], [-77.319036, 38.417803], [-77.310719, 38.397669], [-77.312201, 38.390958], [-77.314848, 38.389579], [-77.317288, 38.383576], [-77.296077, 38.369797], [-77.288145, 38.359477], [-77.28835, 38.351286], [-77.286202, 38.347025], [-77.286202, 38.347024], [-77.279633, 38.339444], [-77.265295, 38.333165], [-77.240072, 38.331598], [-77.199433, 38.34089], [-77.17934, 38.341915], [-77.162692, 38.345994], [-77.155191, 38.351047], [-77.138224, 38.367917], [-77.104717, 38.369655], [-77.094665, 38.367715], [-77.08481, 38.368297], [-77.069956, 38.377895], [-77.056032, 38.3962], [-77.051437, 38.399083], [-77.043526, 38.400548], [-77.024866, 38.386791], [-77.011827, 38.374554], [-77.016932, 38.341697], [-77.020947, 38.329273], [-77.030683, 38.311623], [-77.026304, 38.302685], [-76.99767, 38.278047], [-76.990255, 38.273935], [-76.981372, 38.274214], [-76.96215, 38.256486], [-76.957796, 38.243183], [-76.957417, 38.236341], [-76.962375, 38.230093], [-76.966553, 38.229542], [-76.967335, 38.227185], [-76.962311, 38.214075], [-76.937134, 38.202384], [-76.916922, 38.199751], [-76.910832, 38.197073], [-76.875272, 38.172207], [-76.838795, 38.163476], [-76.824274, 38.163639], [-76.802968, 38.167988], [-76.788445, 38.169199], [-76.760241, 38.166581], [-76.749685, 38.162114], [-76.743064, 38.156988], [-76.740278, 38.152824], [-76.738938, 38.14651], [-76.721722, 38.137635], [-76.704048, 38.149264], [-76.701297, 38.155718], [-76.684892, 38.156497], [-76.665127, 38.147638], [-76.643448, 38.14825], [-76.638983, 38.151476], [-76.629476, 38.15305], [-76.613939, 38.148587], [-76.604131, 38.128771], [-76.600937, 38.110084], [-76.579497, 38.09487], [-76.543155, 38.076971], [-76.535919, 38.069532], [-76.522354, 38.04259], [-76.519536, 38.034814], [-76.516547, 38.026566], [-76.491998, 38.017222], [-76.475830078125, 38.01459716589467] ], [ [-76.475830078125, 37.6658578319085], [-76.489576, 37.666201], [-76.491799, 37.663614], [-76.497564, 37.647056], [-76.501522, 37.643762], [-76.510187, 37.642324], [-76.536548, 37.663574], [-76.537698, 37.66893], [-76.535302, 37.687516], [-76.537228, 37.698892], [-76.54005, 37.704432], [-76.560476, 37.727827], [-76.576387, 37.757493], [-76.584289, 37.76889], [-76.593835, 37.772848], [-76.595939, 37.77168], [-76.602024, 37.772731], [-76.615351, 37.780759], [-76.642276, 37.792317], [-76.651413, 37.796239], [-76.658302, 37.806815], [-76.680197, 37.825654], [-76.692747, 37.82277], [-76.701606, 37.822677], [-76.722156, 37.83668], [-76.72718, 37.842263], [-76.733046, 37.852009], [-76.738395, 37.865373], [-76.747552, 37.875864], [-76.765711, 37.879274], [-76.77539, 37.874306], [-76.784618, 37.869569], [-76.782826, 37.863184], [-76.766328, 37.840437], [-76.7512, 37.824141], [-76.734309, 37.79866], [-76.723863, 37.788503], [-76.715498, 37.785873], [-76.689773, 37.78519], [-76.683775, 37.781391], [-76.681901, 37.778118], [-76.683343, 37.775783], [-76.683359, 37.770258], [-76.683372, 37.765507], [-76.680922, 37.759647], [-76.677002, 37.7561], [-76.663887, 37.751887], [-76.639962, 37.750941], [-76.61971, 37.744795], [-76.617373, 37.742347], [-76.621433, 37.737973], [-76.61997, 37.731271], [-76.606466, 37.724819], [-76.597213, 37.717269], [-76.595943, 37.712989], [-76.598073, 37.70912], [-76.597868, 37.702918], [-76.579591, 37.671508], [-76.583143, 37.661986], [-76.574049, 37.646781], [-76.542666, 37.616857], [-76.533777, 37.61253], [-76.527188, 37.611315], [-76.475830078125, 37.61215048879601] ], [ [-76.475830078125, 37.250548732117046], [-76.475927, 37.250543], [-76.48284, 37.254831], [-76.493302, 37.24947], [-76.4989, 37.241015], [-76.50364, 37.233856], [-76.494008, 37.225408], [-76.475830078125, 37.2177207091607] ], [ [-76.475830078125, 37.034035048711935], [-76.507614, 37.052188], [-76.509339, 37.053173], [-76.512289, 37.054858], [-76.518242, 37.055351], [-76.526273, 37.062947], [-76.527973, 37.068247], [-76.526573, 37.070047], [-76.526203, 37.077773], [-76.528997, 37.079388], [-76.536875, 37.083942], [-76.555066, 37.075859], [-76.564219, 37.077507], [-76.567931, 37.080467], [-76.579499, 37.096627], [-76.618252, 37.119347], [-76.62478, 37.127091], [-76.622252, 37.142146], [-76.617084, 37.144498], [-76.604476, 37.160034], [-76.606684, 37.166674], [-76.610972, 37.166994], [-76.611018, 37.167097], [-76.612517, 37.170486], [-76.613599, 37.172931], [-76.614221, 37.174335], [-76.616268, 37.178962], [-76.616804, 37.18126], [-76.617537, 37.184409], [-76.618008, 37.186429], [-76.61934, 37.192146], [-76.619962, 37.193184], [-76.621113, 37.195103], [-76.623292, 37.198738], [-76.629868, 37.206738], [-76.639608, 37.214783], [-76.641085, 37.216002], [-76.649869, 37.220914], [-76.689166, 37.222866], [-76.693373, 37.221228], [-76.698943, 37.219059], [-76.730951, 37.213813], [-76.73432, 37.204211], [-76.74, 37.195379], [-76.74304, 37.192611], [-76.75047, 37.190098], [-76.757765, 37.191658], [-76.773752, 37.206061], [-76.780532, 37.209336], [-76.791555, 37.207564], [-76.801023, 37.206043], [-76.803198, 37.201513], [-76.802511, 37.198308], [-76.796905, 37.189404], [-76.756899, 37.161582], [-76.747632, 37.150548], [-76.73728, 37.146164], [-76.73032, 37.145395], [-76.715295, 37.148035], [-76.696735, 37.174403], [-76.692926, 37.186147], [-76.691918, 37.195731], [-76.685614, 37.198851], [-76.669886, 37.183571], [-76.663774, 37.173875], [-76.66427, 37.171027], [-76.66867, 37.166771], [-76.67147, 37.158739], [-76.671588, 37.14206], [-76.669604, 37.140534], [-76.666542, 37.138179], [-76.665833, 37.136098], [-76.665641, 37.135534], [-76.66375, 37.129979], [-76.656894, 37.109843], [-76.657101, 37.107617], [-76.657703, 37.101161], [-76.65811, 37.096787], [-76.659394, 37.094019], [-76.66555, 37.080746], [-76.666526, 37.078643], [-76.667219, 37.077149], [-76.667646, 37.076228], [-76.668295, 37.072656], [-76.669118, 37.068132], [-76.669822, 37.06426], [-76.66835, 37.05506], [-76.662558, 37.045748], [-76.653998, 37.039172], [-76.646013, 37.036228], [-76.612124, 37.035604], [-76.586491, 37.02874], [-76.584478, 37.027349], [-76.579393, 37.023835], [-76.579236, 37.023726], [-76.57816, 37.022982], [-76.577531, 37.022548], [-76.576617, 37.021374], [-76.565803, 37.007493], [-76.562923, 37.003796], [-76.551246, 36.998946], [-76.524853, 36.983833], [-76.522971, 36.981085], [-76.524142, 36.978316], [-76.521006, 36.973187], [-76.513363, 36.968057], [-76.500355, 36.965212], [-76.487559, 36.952372], [-76.484107, 36.928916], [-76.482407, 36.917364], [-76.482135, 36.901108], [-76.483369, 36.896239], [-76.475830078125, 36.888763953048354] ], [ [-76.475830078125, 36.55038134515806], [-76.491497, 36.550365], [-76.541391, 36.550312], [-76.541687, 36.550312], [-76.781296, 36.550659], [-76.807078, 36.550606], [-76.915384, 36.543856], [-76.916001, 36.543818], [-76.916048, 36.543815], [-77.1645, 36.54633], [-77.24969, 36.544745], [-77.296875, 36.544746], [-77.767117, 36.544752], [-77.87528, 36.544754], [-77.882357, 36.544737], [-77.899771, 36.544663], [-78.038938, 36.544173], [-78.03942, 36.544196], [-78.046202, 36.544168], [-78.132911, 36.543811], [-78.133323, 36.543847], [-78.245462, 36.544411], [-78.246681, 36.544341], [-78.323912, 36.543809], [-78.436333, 36.542666], [-78.441199, 36.542687], [-78.45697, 36.542474], [-78.470792, 36.542316], [-78.471022, 36.542307], [-78.529722, 36.540981], [-78.533013, 36.541004], [-78.663317, 36.542011], [-78.670051, 36.542035], [-78.734122, 36.541902], [-78.758392, 36.541852], [-78.76543, 36.541727], [-78.7963, 36.541713], [-78.914543, 36.541972], [-78.91542, 36.541974], [-78.942009, 36.542113], [-78.942254, 36.542079], [-78.970577, 36.542154], [-78.971814, 36.542123], [-79.124736, 36.541568], [-79.126078, 36.541533], [-79.137936, 36.541739], [-79.208686, 36.541571], [-79.20948, 36.541594], [-79.218638, 36.541579], [-79.342696, 36.541382], [-79.445687, 36.541218], [-79.445961, 36.541195], [-79.470047, 36.541025], [-79.510647, 36.540738], [-79.510961, 36.54074], [-79.666827, 36.541772], [-79.667309, 36.541772], [-79.714855, 36.541884], [-79.920239, 36.542365], [-79.966979, 36.542475], [-79.967511, 36.542502], [-80.027269, 36.542495], [-80.053455, 36.542623], [-80.169535, 36.54319], [-80.171636, 36.543219], [-80.225408, 36.543748], [-80.228263, 36.543867], [-80.431605, 36.550219], [-80.432628, 36.550302], [-80.4401, 36.55063], [-80.612158, 36.558127], [-80.687539, 36.561411], [-80.744101, 36.561686], [-80.837089, 36.559154], [-80.837641, 36.559118], [-80.837954, 36.559131], [-80.901726, 36.561751], [-80.901836, 36.561754], [-80.944338, 36.563058], [-80.945988, 36.563196], [-81.058844, 36.566976], [-81.061866, 36.56702], [-81.307511, 36.575024], [-81.353169, 36.574724], [-81.353322, 36.574723], [-81.521032, 36.58052], [-81.551513671875, 36.582851756742144] ], [ [-81.551513671875, 37.21072624721038], [-81.507325, 37.2338], [-81.50488, 37.247697], [-81.504168, 37.250115], [-81.409729, 37.284837], [-81.409196, 37.286071], [-81.388132, 37.319903], [-81.386727, 37.320474], [-81.38581, 37.320085], [-81.384914, 37.318832], [-81.384127, 37.318596], [-81.380159, 37.317838], [-81.377349, 37.318447], [-81.371315, 37.324115], [-81.367599, 37.327569], [-81.369379, 37.331827], [-81.36809, 37.332423], [-81.367052, 37.334504], [-81.366315, 37.335927], [-81.362156, 37.337687], [-81.320105, 37.299323], [-81.225104, 37.234874], [-81.204774, 37.243013], [-81.167029, 37.262881], [-81.112596, 37.278497], [-81.084012, 37.284401], [-81.034652, 37.290751], [-80.981322, 37.293465], [-80.980044, 37.293118], [-80.973889, 37.291444], [-80.966556, 37.292158], [-80.947896, 37.295872], [-80.919259, 37.306163], [-80.900535, 37.315], [-80.849451, 37.346909], [-80.872589, 37.372347], [-80.862761, 37.411829], [-80.859558, 37.429555], [-80.859556, 37.429568], [-80.858473, 37.428301], [-80.85836, 37.428168], [-80.811639, 37.407507], [-80.798869, 37.395807], [-80.776766, 37.384131], [-80.776649, 37.383679], [-80.770082, 37.372363], [-80.622664, 37.433307], [-80.511391, 37.481672], [-80.494867, 37.43507], [-80.475601, 37.422949], [-80.46482, 37.426144], [-80.443025, 37.438126], [-80.425656, 37.449876], [-80.320627, 37.49888], [-80.314806, 37.500943], [-80.330306, 37.536244], [-80.312393, 37.546239], [-80.288766, 37.58196], [-80.240272, 37.606961], [-80.223386, 37.623185], [-80.220984, 37.627767], [-80.239288, 37.637672], [-80.254431, 37.642352], [-80.254469, 37.642333], [-80.263281, 37.645082], [-80.263291, 37.645101], [-80.26483, 37.645526], [-80.264874, 37.645511], [-80.267228, 37.646011], [-80.267455, 37.646108], [-80.270352, 37.648929], [-80.270323, 37.648982], [-80.292258, 37.683732], [-80.292337, 37.683976], [-80.296138, 37.691783], [-80.287107, 37.696403], [-80.263936, 37.719137], [-80.259342, 37.731205], [-80.260313, 37.733517], [-80.262765, 37.738336], [-80.257411, 37.756084], [-80.231551, 37.792591], [-80.227092, 37.798886], [-80.162202, 37.875122], [-80.148964, 37.886057], [-80.147316, 37.885936], [-80.14613, 37.884453], [-80.130464, 37.893194], [-80.055278, 37.951702], [-80.002507, 37.992767], [-79.978427, 38.029082], [-79.959844, 38.063697], [-79.933911, 38.099168], [-79.931034, 38.101402], [-79.938394, 38.130563], [-79.933751, 38.135508], [-79.928747, 38.144436], [-79.928683, 38.144928], [-79.925512, 38.150237], [-79.925251, 38.150465], [-79.921026, 38.179954], [-79.921196, 38.180378], [-79.917061, 38.183741], [-79.916174, 38.184386], [-79.892345, 38.202397], [-79.891999, 38.203378], [-79.794568, 38.264856], [-79.790134, 38.267654], [-79.788945, 38.268703], [-79.810115, 38.305037], [-79.808711, 38.309429], [-79.731661, 38.374143], [-79.691377, 38.439558], [-79.689544, 38.442511], [-79.688962, 38.449538], [-79.688205, 38.450476], [-79.699006, 38.475148], [-79.695565, 38.477842], [-79.669128, 38.510883], [-79.669128, 38.510975], [-79.649075, 38.591515], [-79.597955, 38.572767], [-79.555471, 38.560217], [-79.53687, 38.550917], [-79.521469, 38.533918], [-79.476638, 38.457228], [-79.312276, 38.411876], [-79.297758, 38.416438], [-79.295712, 38.418129], [-79.291813, 38.419627], [-79.290529, 38.420757], [-79.280263, 38.425475], [-79.282663, 38.431021], [-79.267414, 38.438322], [-79.265327, 38.441772], [-79.263376, 38.443762], [-79.26291, 38.444586], [-79.242024, 38.464332], [-79.240059, 38.469841], [-79.234408, 38.473011], [-79.23162, 38.474041], [-79.225839, 38.479446], [-79.210026, 38.494231], [-79.210008, 38.494283], [-79.209703, 38.495574], [-79.207873, 38.500122], [-79.207884, 38.500428], [-79.174881, 38.566314], [-79.174512, 38.566531], [-79.146974, 38.625641], [-79.146741, 38.625819], [-79.137012, 38.640655], [-79.136374, 38.6424], [-79.135546, 38.643715], [-79.135472, 38.644057], [-79.092271, 38.699208], [-79.092555, 38.700149], [-79.057253, 38.761413], [-79.055354, 38.782213], [-78.999752, 38.846162], [-78.993997, 38.850102] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "stroke-width": 3, "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.551513671875, 36.29741818650811], [-76.475830078125, 36.29741818650811], [-76.475830078125, 39.58875727696545], [-81.551513671875, 39.58875727696545], [-81.551513671875, 36.29741818650811] ] ] } } ] } ================================================ FILE: packages/turf-bbox-clip/test/out/multi-linestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#080", "fill": "#080", "stroke-width": 6, "fill-opacity": 0.1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-79.2498779296875, 38.74123075381231], [-78.6676025390625, 39.01918369029137], [-78.629150390625, 38.6897975322717], [-78.1402587890625, 39.031986028740086], [-77.7667236328125, 38.5825261593533] ], [ [-79.189453125, 38.929502416386605], [-78.6346435546875, 39.15988184949157], [-78.4149169921875, 39.031986028740086], [-78.0194091796875, 39.2832938689385], [-77.5579833984375, 38.65119833229951] ], [ [-77.1240234375, 39.51251701659638], [-77.618408203125, 39.24927084622338], [-77.0855712890625, 38.886757140695906] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "stroke-width": 6, "fill-opacity": 0.1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-78.3929443359375, 38.8551245586553], [-78.1402587890625, 39.031986028740086], [-77.7667236328125, 38.5825261593533] ], [ [-78.3929443359375, 39.04594757541778], [-78.0194091796875, 39.2832938689385], [-77.5579833984375, 38.65119833229951] ], [ [-77.1240234375, 39.51251701659638], [-77.618408203125, 39.24927084622338], [-77.0855712890625, 38.886757140695906] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "stroke-width": 3, "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-78.3929443359375, 38.49229419236133], [-76.9097900390625, 38.49229419236133], [-76.9097900390625, 39.56758783088905], [-78.3929443359375, 39.56758783088905], [-78.3929443359375, 38.49229419236133] ] ] } } ] } ================================================ FILE: packages/turf-bbox-clip/test/out/multi-polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-78.869276, 38.762991], [-78.993997, 38.850102], [-78.999752, 38.846162], [-79.055354, 38.782213], [-79.057253, 38.761413], [-79.092555, 38.700149], [-79.092271, 38.699208], [-79.135472, 38.644057], [-79.135546, 38.643715], [-79.136374, 38.6424], [-79.137012, 38.640655], [-79.146741, 38.625819], [-79.146974, 38.625641], [-79.174512, 38.566531], [-79.174881, 38.566314], [-79.207884, 38.500428], [-79.207873, 38.500122], [-79.209703, 38.495574], [-79.210008, 38.494283], [-79.210026, 38.494231], [-79.225839, 38.479446], [-79.23162, 38.474041], [-79.234408, 38.473011], [-79.240059, 38.469841], [-79.242024, 38.464332], [-79.26291, 38.444586], [-79.263376, 38.443762], [-79.265327, 38.441772], [-79.267414, 38.438322], [-79.282663, 38.431021], [-79.280263, 38.425475], [-79.290529, 38.420757], [-79.291813, 38.419627], [-79.295712, 38.418129], [-79.297758, 38.416438], [-79.312276, 38.411876], [-79.476638, 38.457228], [-79.521469, 38.533918], [-79.53687, 38.550917], [-79.555471, 38.560217], [-79.597955, 38.572767], [-79.649075, 38.591515], [-79.669128, 38.510975], [-79.669128, 38.510883], [-79.695565, 38.477842], [-79.699006, 38.475148], [-79.688205, 38.450476], [-79.688962, 38.449538], [-79.689544, 38.442511], [-79.691377, 38.439558], [-79.731661, 38.374143], [-79.808711, 38.309429], [-79.810115, 38.305037], [-79.788945, 38.268703], [-79.790134, 38.267654], [-79.794568, 38.264856], [-79.891999, 38.203378], [-79.892345, 38.202397], [-79.916174, 38.184386], [-79.917061, 38.183741], [-79.921196, 38.180378], [-79.921026, 38.179954], [-79.925251, 38.150465], [-79.925512, 38.150237], [-79.928683, 38.144928], [-79.928747, 38.144436], [-79.933751, 38.135508], [-79.938394, 38.130563], [-79.931034, 38.101402], [-79.933911, 38.099168], [-79.959844, 38.063697], [-79.978427, 38.029082], [-80.002507, 37.992767], [-80.055278, 37.951702], [-80.130464, 37.893194], [-80.14613, 37.884453], [-80.147316, 37.885936], [-80.148964, 37.886057], [-80.162202, 37.875122], [-80.227092, 37.798886], [-80.231551, 37.792591], [-80.257411, 37.756084], [-80.262765, 37.738336], [-80.260313, 37.733517], [-80.259342, 37.731205], [-80.263936, 37.719137], [-80.287107, 37.696403], [-80.296138, 37.691783], [-80.292337, 37.683976], [-80.292258, 37.683732], [-80.270323, 37.648982], [-80.270352, 37.648929], [-80.267455, 37.646108], [-80.267228, 37.646011], [-80.264874, 37.645511], [-80.26483, 37.645526], [-80.263291, 37.645101], [-80.263281, 37.645082], [-80.254469, 37.642333], [-80.254431, 37.642352], [-80.239288, 37.637672], [-80.220984, 37.627767], [-80.223386, 37.623185], [-80.240272, 37.606961], [-80.288766, 37.58196], [-80.312393, 37.546239], [-80.330306, 37.536244], [-80.314806, 37.500943], [-80.320627, 37.49888], [-80.425656, 37.449876], [-80.443025, 37.438126], [-80.46482, 37.426144], [-80.475601, 37.422949], [-80.494867, 37.43507], [-80.511391, 37.481672], [-80.622664, 37.433307], [-80.770082, 37.372363], [-80.776649, 37.383679], [-80.776766, 37.384131], [-80.798869, 37.395807], [-80.811639, 37.407507], [-80.85836, 37.428168], [-80.858473, 37.428301], [-80.859556, 37.429568], [-80.859558, 37.429555], [-80.862761, 37.411829], [-80.872589, 37.372347], [-80.849451, 37.346909], [-80.900535, 37.315], [-80.919259, 37.306163], [-80.947896, 37.295872], [-80.966556, 37.292158], [-80.973889, 37.291444], [-80.980044, 37.293118], [-80.981322, 37.293465], [-81.034652, 37.290751], [-81.084012, 37.284401], [-81.112596, 37.278497], [-81.167029, 37.262881], [-81.204774, 37.243013], [-81.225104, 37.234874], [-81.320105, 37.299323], [-81.362156, 37.337687], [-81.366315, 37.335927], [-81.367052, 37.334504], [-81.36809, 37.332423], [-81.369379, 37.331827], [-81.367599, 37.327569], [-81.371315, 37.324115], [-81.377349, 37.318447], [-81.380159, 37.317838], [-81.384127, 37.318596], [-81.384914, 37.318832], [-81.38581, 37.320085], [-81.386727, 37.320474], [-81.388132, 37.319903], [-81.409196, 37.286071], [-81.409729, 37.284837], [-81.504168, 37.250115], [-81.50488, 37.247697], [-81.507325, 37.2338], [-81.557315, 37.207697], [-81.558353, 37.208145], [-81.560625, 37.206663], [-81.678603, 37.202467], [-81.683544, 37.211452], [-81.728194, 37.239823], [-81.73332, 37.238127], [-81.738378, 37.240917], [-81.744291, 37.244178], [-81.74342, 37.245858], [-81.743505, 37.247601], [-81.747656, 37.264329], [-81.75129, 37.265131], [-81.752123, 37.265568], [-81.752912, 37.266614], [-81.755012, 37.26772], [-81.757531, 37.27001], [-81.757714, 37.271124], [-81.75773, 37.271934], [-81.757631, 37.274003], [-81.76022, 37.275254], [-81.761752, 37.275713], [-81.762776, 37.275391], [-81.763836, 37.275218], [-81.765195, 37.275099], [-81.767837, 37.274216], [-81.774684, 37.274807], [-81.774747, 37.274847], [-81.793425, 37.281674], [-81.793639, 37.282188], [-81.809184, 37.283003], [-81.810559, 37.28298], [-81.84231, 37.285556], [-81.843167, 37.285586], [-81.854059, 37.291352], [-81.853488, 37.294763], [-81.854465, 37.299937], [-81.853978, 37.300418], [-81.86476, 37.308404], [-81.865219, 37.308839], [-81.873213, 37.325065], [-81.878343, 37.328837], [-81.878713, 37.331753], [-81.879601, 37.332074], [-81.880886, 37.331146], [-81.885075, 37.330665], [-81.886952, 37.330725], [-81.887722, 37.331156], [-81.892876, 37.330134], [-81.893773, 37.330105], [-81.894768, 37.331381], [-81.894797, 37.332012], [-81.895489, 37.332022], [-81.896001, 37.331967], [-81.899459, 37.340277], [-81.899495, 37.341102], [-81.902992, 37.34234], [-81.903795, 37.34305], [-81.905945, 37.342775], [-81.906368, 37.34276], [-81.907322, 37.343119], [-81.907895, 37.343783], [-81.910875, 37.348729], [-81.911487, 37.348839], [-81.920711, 37.355416], [-81.921571, 37.356423], [-81.925643, 37.357316], [-81.926589, 37.358942], [-81.929915, 37.366589], [-81.930194, 37.366728], [-81.933895, 37.372747], [-81.92749, 37.413251], [-81.935621, 37.438397], [-81.949367, 37.445687], [-81.968795, 37.451496], [-81.987006, 37.454878], [-81.99227, 37.460916], [-81.996578, 37.476705], [-81.992916, 37.482969], [-81.94264, 37.508844], [-81.92787, 37.512118], [-81.968297, 37.537798], [-82.291908, 37.311642], [-82.305874, 37.3011], [-82.310793, 37.297387], [-82.350948, 37.267077], [-82.510826, 37.218091], [-82.553549, 37.200867], [-82.565329, 37.196118], [-82.565375, 37.196092], [-82.624878, 37.162932], [-82.721941, 37.105689], [-82.720597, 37.081833], [-82.722472, 37.045101], [-82.771795, 37.015716], [-82.777368, 37.015279], [-82.788897, 37.00816], [-82.789092, 37.007995], [-82.790462, 37.007263], [-82.79089, 37.00676], [-82.800531, 37.007944], [-82.815748, 37.007196], [-82.818006, 37.006161], [-82.830588, 37.000945], [-82.829125, 36.997541], [-82.830802, 36.993445], [-82.833843, 36.991973], [-82.836008, 36.988837], [-82.838549, 36.987027], [-82.840051, 36.987113], [-82.851397, 36.984497], [-82.852614, 36.984963], [-82.862926, 36.979975], [-82.864909, 36.97901], [-82.866019, 36.978272], [-82.866689, 36.978052], [-82.867535, 36.977518], [-82.868455, 36.976481], [-82.869183, 36.974183], [-82.869183, 36.974182], [-82.870274, 36.965993], [-82.87023, 36.965498], [-82.867358, 36.963182], [-82.865404, 36.958084], [-82.864211, 36.957983], [-82.862866, 36.957765], [-82.860534, 36.956015], [-82.858443, 36.954036], [-82.855705, 36.953808], [-82.856099, 36.952471], [-82.860633, 36.94584], [-82.861282, 36.944848], [-82.861684, 36.939316], [-82.860537, 36.937439], [-82.858784, 36.933065], [-82.858461, 36.932717], [-82.861943, 36.924236], [-82.863468, 36.922308], [-82.872136, 36.913456], [-82.873777, 36.912299], [-82.885618, 36.900415], [-82.91169, 36.874248], [-82.911824, 36.874243], [-82.973395, 36.859097], [-83.07259, 36.854589], [-83.099792, 36.824889], [-83.131694, 36.781488], [-83.131245, 36.767105], [-83.125655, 36.761407], [-83.125728, 36.761276], [-83.127833, 36.750828], [-83.136395, 36.743088], [-83.167396, 36.739187], [-83.199698, 36.737487], [-83.342804, 36.701286], [-83.353613, 36.696699], [-83.354606, 36.696153], [-83.460808, 36.664885], [-83.461013, 36.664916], [-83.498011, 36.670485], [-83.527212, 36.665984], [-83.649513, 36.616683], [-83.675413, 36.600814], [-83.670141, 36.600797], [-83.670128, 36.600764], [-83.472108, 36.597284], [-83.2763, 36.598187], [-83.250304, 36.593935], [-83.249899, 36.593898], [-83.248933, 36.593827], [-83.028357, 36.593893], [-83.02725, 36.593847], [-82.985087, 36.593829], [-82.830433, 36.593761], [-82.69578, 36.593698], [-82.679879, 36.593698], [-82.609176, 36.594099], [-82.561074, 36.5948], [-82.559774, 36.5948], [-82.554294, 36.594876], [-82.293814, 36.595565], [-82.243274, 36.595699], [-82.226653, 36.595743], [-82.225716, 36.595744], [-82.223445, 36.595721], [-82.221713, 36.595814], [-82.211005, 36.59586], [-82.210497, 36.595772], [-82.188491, 36.595179], [-82.18074, 36.594928], [-82.177247, 36.594768], [-82.173982, 36.594607], [-82.150727, 36.594673], [-82.148569, 36.594718], [-82.14607, 36.594712], [-81.934144, 36.594213], [-81.922644, 36.616213], [-81.826742, 36.614215], [-81.6469, 36.611918], [-81.677535, 36.588117], [-81.60697, 36.587094], [-81.521032, 36.58052], [-81.353322, 36.574723], [-81.353169, 36.574724], [-81.307511, 36.575024], [-81.061866, 36.56702], [-81.058844, 36.566976], [-80.945988, 36.563196], [-80.944338, 36.563058], [-80.901836, 36.561754], [-80.901726, 36.561751], [-80.837954, 36.559131], [-80.837641, 36.559118], [-80.837089, 36.559154], [-80.744101, 36.561686], [-80.687539, 36.561411], [-80.612158, 36.558127], [-80.4401, 36.55063], [-80.432628, 36.550302], [-80.431605, 36.550219], [-80.228263, 36.543867], [-80.225408, 36.543748], [-80.171636, 36.543219], [-80.169535, 36.54319], [-80.053455, 36.542623], [-80.027269, 36.542495], [-79.967511, 36.542502], [-79.966979, 36.542475], [-79.920239, 36.542365], [-79.714855, 36.541884], [-79.667309, 36.541772], [-79.666827, 36.541772], [-79.510961, 36.54074], [-79.510647, 36.540738], [-79.470047, 36.541025], [-79.445961, 36.541195], [-79.445687, 36.541218], [-79.342696, 36.541382], [-79.218638, 36.541579], [-79.20948, 36.541594], [-79.208686, 36.541571], [-79.137936, 36.541739], [-79.126078, 36.541533], [-79.124736, 36.541568], [-78.971814, 36.542123], [-78.970577, 36.542154], [-78.942254, 36.542079], [-78.942009, 36.542113], [-78.91542, 36.541974], [-78.914543, 36.541972], [-78.7963, 36.541713], [-78.76543, 36.541727], [-78.758392, 36.541852], [-78.734122, 36.541902], [-78.670051, 36.542035], [-78.663317, 36.542011], [-78.533013, 36.541004], [-78.529722, 36.540981], [-78.471022, 36.542307], [-78.470792, 36.542316], [-78.45697, 36.542474], [-78.441199, 36.542687], [-78.436333, 36.542666], [-78.323912, 36.543809], [-78.246681, 36.544341], [-78.245462, 36.544411], [-78.133323, 36.543847], [-78.132911, 36.543811], [-78.046202, 36.544168], [-78.03942, 36.544196], [-78.038938, 36.544173], [-77.899771, 36.544663], [-77.882357, 36.544737], [-77.87528, 36.544754], [-77.767117, 36.544752], [-77.296875, 36.544746], [-77.24969, 36.544745], [-77.1645, 36.54633], [-76.916048, 36.543815], [-76.916001, 36.543818], [-76.915384, 36.543856], [-76.807078, 36.550606], [-76.781296, 36.550659], [-76.541687, 36.550312], [-76.541391, 36.550312], [-76.491497, 36.550365], [-76.313215, 36.550551], [-76.313196, 36.550551], [-76.12236, 36.550621], [-76.034751, 36.550653], [-76.02675, 36.550553], [-75.957648, 36.550553], [-75.955748, 36.550553], [-75.953447, 36.550553], [-75.952847, 36.550553], [-75.922046, 36.550654], [-75.911446, 36.550654], [-75.909046, 36.550654], [-75.904745, 36.550654], [-75.903445, 36.550654], [-75.894145, 36.550754], [-75.893245, 36.550654], [-75.891945, 36.550754], [-75.886545, 36.550754], [-75.885945, 36.550754], [-75.880644, 36.550754], [-75.879744, 36.550754], [-75.867044, 36.550754], [-75.874145, 36.583853], [-75.890946, 36.630753], [-75.921748, 36.692051], [-75.94955, 36.76115], [-75.965451, 36.812449], [-75.972151, 36.842268], [-75.991552, 36.910847], [-75.996252, 36.922047], [-76.007553, 36.929047], [-76.013753, 36.930746], [-76.033454, 36.931946], [-76.043054, 36.927547], [-76.058154, 36.916947], [-76.087955, 36.908647], [-76.095508, 36.908817], [-76.139557, 36.923047], [-76.177019, 36.92929], [-76.189959, 36.931447], [-76.22166, 36.939547], [-76.234961, 36.945147], [-76.267962, 36.964547], [-76.285063, 36.968747], [-76.297663, 36.968147], [-76.299364, 36.965547], [-76.315867, 36.955351], [-76.322764, 36.959147], [-76.327365, 36.959447], [-76.330765, 36.938647], [-76.328864, 36.918447], [-76.333158, 36.917293], [-76.344663, 36.919313], [-76.345569, 36.924531], [-76.353765, 36.922747], [-76.385867, 36.923247], [-76.387567, 36.899547], [-76.406908, 36.897507], [-76.407507, 36.897444], [-76.43122, 36.904532], [-76.441605, 36.906116], [-76.447413, 36.90322], [-76.453941, 36.89274], [-76.45329, 36.887031], [-76.454692, 36.884077], [-76.469914, 36.882898], [-76.483369, 36.896239], [-76.482135, 36.901108], [-76.482407, 36.917364], [-76.484107, 36.928916], [-76.487559, 36.952372], [-76.500355, 36.965212], [-76.513363, 36.968057], [-76.521006, 36.973187], [-76.524142, 36.978316], [-76.522971, 36.981085], [-76.524853, 36.983833], [-76.551246, 36.998946], [-76.562923, 37.003796], [-76.565803, 37.007493], [-76.576617, 37.021374], [-76.577531, 37.022548], [-76.57816, 37.022982], [-76.579236, 37.023726], [-76.579393, 37.023835], [-76.584478, 37.027349], [-76.586491, 37.02874], [-76.612124, 37.035604], [-76.646013, 37.036228], [-76.653998, 37.039172], [-76.662558, 37.045748], [-76.66835, 37.05506], [-76.669822, 37.06426], [-76.669118, 37.068132], [-76.668295, 37.072656], [-76.667646, 37.076228], [-76.667219, 37.077149], [-76.666526, 37.078643], [-76.66555, 37.080746], [-76.659394, 37.094019], [-76.65811, 37.096787], [-76.657703, 37.101161], [-76.657101, 37.107617], [-76.656894, 37.109843], [-76.66375, 37.129979], [-76.665641, 37.135534], [-76.665833, 37.136098], [-76.666542, 37.138179], [-76.669604, 37.140534], [-76.671588, 37.14206], [-76.67147, 37.158739], [-76.66867, 37.166771], [-76.66427, 37.171027], [-76.663774, 37.173875], [-76.669886, 37.183571], [-76.685614, 37.198851], [-76.691918, 37.195731], [-76.692926, 37.186147], [-76.696735, 37.174403], [-76.715295, 37.148035], [-76.73032, 37.145395], [-76.73728, 37.146164], [-76.747632, 37.150548], [-76.756899, 37.161582], [-76.796905, 37.189404], [-76.802511, 37.198308], [-76.803198, 37.201513], [-76.801023, 37.206043], [-76.791555, 37.207564], [-76.780532, 37.209336], [-76.773752, 37.206061], [-76.757765, 37.191658], [-76.75047, 37.190098], [-76.74304, 37.192611], [-76.74, 37.195379], [-76.73432, 37.204211], [-76.730951, 37.213813], [-76.698943, 37.219059], [-76.693373, 37.221228], [-76.689166, 37.222866], [-76.649869, 37.220914], [-76.641085, 37.216002], [-76.639608, 37.214783], [-76.629868, 37.206738], [-76.623292, 37.198738], [-76.621113, 37.195103], [-76.619962, 37.193184], [-76.61934, 37.192146], [-76.618008, 37.186429], [-76.617537, 37.184409], [-76.616804, 37.18126], [-76.616268, 37.178962], [-76.614221, 37.174335], [-76.613599, 37.172931], [-76.612517, 37.170486], [-76.611018, 37.167097], [-76.610972, 37.166994], [-76.606684, 37.166674], [-76.604476, 37.160034], [-76.617084, 37.144498], [-76.622252, 37.142146], [-76.62478, 37.127091], [-76.618252, 37.119347], [-76.579499, 37.096627], [-76.567931, 37.080467], [-76.564219, 37.077507], [-76.555066, 37.075859], [-76.536875, 37.083942], [-76.528997, 37.079388], [-76.526203, 37.077773], [-76.526573, 37.070047], [-76.527973, 37.068247], [-76.526273, 37.062947], [-76.518242, 37.055351], [-76.512289, 37.054858], [-76.509339, 37.053173], [-76.507614, 37.052188], [-76.46949, 37.030414], [-76.464471, 37.027547], [-76.448231, 37.007705], [-76.449891, 37.004868], [-76.452461, 37.004603], [-76.452118, 36.998163], [-76.428869, 36.969947], [-76.418969, 36.964047], [-76.411768, 36.962847], [-76.408568, 36.969147], [-76.396368, 36.982347], [-76.387711, 36.989671], [-76.383367, 36.993347], [-76.373567, 36.998347], [-76.356366, 37.002947], [-76.348066, 37.006747], [-76.340666, 37.015246], [-76.34011, 37.015212], [-76.329531, 37.014556], [-76.318065, 37.013846], [-76.314624, 37.00933], [-76.315008, 37.001683], [-76.312048, 37.000371], [-76.304272, 37.001378], [-76.300352, 37.00885], [-76.292863, 37.035145], [-76.271262, 37.084544], [-76.274463, 37.094544], [-76.287236, 37.117453], [-76.292344, 37.126615], [-76.311088, 37.138495], [-76.324353, 37.142895], [-76.330481, 37.141727], [-76.334017, 37.144223], [-76.340129, 37.151823], [-76.34405, 37.160367], [-76.344898, 37.164479], [-76.343234, 37.166207], [-76.348658, 37.170655], [-76.35969, 37.16858], [-76.375255, 37.16084], [-76.381379, 37.155711], [-76.394756, 37.157568], [-76.399659, 37.160272], [-76.397883, 37.164415], [-76.391252, 37.179887], [-76.389284, 37.193503], [-76.396052, 37.201087], [-76.3936, 37.214049], [-76.389793, 37.222981], [-76.394132, 37.22515], [-76.471799, 37.216016], [-76.494008, 37.225408], [-76.50364, 37.233856], [-76.4989, 37.241015], [-76.493302, 37.24947], [-76.48284, 37.254831], [-76.475927, 37.250543], [-76.429141, 37.25331], [-76.421765, 37.255198], [-76.417173, 37.26395], [-76.392788, 37.264973], [-76.36229, 37.270226], [-76.349489, 37.273963], [-76.352556, 37.278334], [-76.369029, 37.279311], [-76.381075, 37.28534], [-76.385603, 37.294108], [-76.38777, 37.30767], [-76.406388, 37.332924], [-76.434965, 37.354524], [-76.445333, 37.36646], [-76.437525, 37.37975], [-76.422503, 37.381355], [-76.418176, 37.385064], [-76.418719, 37.3978], [-76.415167, 37.402133], [-76.404756, 37.400213], [-76.393125, 37.398068], [-76.393958, 37.39594], [-76.391437, 37.390284], [-76.387112, 37.385061], [-76.366751, 37.374495], [-76.337476, 37.364014], [-76.31205, 37.338088], [-76.308581, 37.329366], [-76.291324, 37.324145], [-76.282555, 37.319107], [-76.275552, 37.309964], [-76.272005, 37.322194], [-76.272888, 37.335174], [-76.264847, 37.357399], [-76.262407, 37.360786], [-76.258277, 37.36202], [-76.24846, 37.375135], [-76.245283, 37.386839], [-76.246617, 37.404122], [-76.250454, 37.421886], [-76.252415, 37.447274], [-76.265056, 37.481365], [-76.281043, 37.507821], [-76.288167, 37.514118], [-76.293599, 37.516499], [-76.297651, 37.515424], [-76.298456, 37.512677], [-76.296445, 37.511235], [-76.297739, 37.506863], [-76.306952, 37.497488], [-76.32947, 37.49492], [-76.352678, 37.504913], [-76.359378, 37.513426], [-76.360474, 37.51924], [-76.355084, 37.527364], [-76.348992, 37.536548], [-76.339989, 37.53833], [-76.330598, 37.536391], [-76.302762, 37.551295], [-76.29796, 37.557636], [-76.300144, 37.561734], [-76.332641, 37.570042], [-76.357835, 37.573699], [-76.383188, 37.573056], [-76.410781, 37.581815], [-76.420252, 37.598686], [-76.435474, 37.612807], [-76.527188, 37.611315], [-76.533777, 37.61253], [-76.542666, 37.616857], [-76.574049, 37.646781], [-76.583143, 37.661986], [-76.579591, 37.671508], [-76.597868, 37.702918], [-76.598073, 37.70912], [-76.595943, 37.712989], [-76.597213, 37.717269], [-76.606466, 37.724819], [-76.61997, 37.731271], [-76.621433, 37.737973], [-76.617373, 37.742347], [-76.61971, 37.744795], [-76.639962, 37.750941], [-76.663887, 37.751887], [-76.677002, 37.7561], [-76.680922, 37.759647], [-76.683372, 37.765507], [-76.683359, 37.770258], [-76.683343, 37.775783], [-76.681901, 37.778118], [-76.683775, 37.781391], [-76.689773, 37.78519], [-76.715498, 37.785873], [-76.723863, 37.788503], [-76.734309, 37.79866], [-76.7512, 37.824141], [-76.766328, 37.840437], [-76.782826, 37.863184], [-76.784618, 37.869569], [-76.77539, 37.874306], [-76.765711, 37.879274], [-76.747552, 37.875864], [-76.738395, 37.865373], [-76.733046, 37.852009], [-76.72718, 37.842263], [-76.722156, 37.83668], [-76.701606, 37.822677], [-76.692747, 37.82277], [-76.680197, 37.825654], [-76.658302, 37.806815], [-76.651413, 37.796239], [-76.642276, 37.792317], [-76.615351, 37.780759], [-76.602024, 37.772731], [-76.595939, 37.77168], [-76.593835, 37.772848], [-76.584289, 37.76889], [-76.576387, 37.757493], [-76.560476, 37.727827], [-76.54005, 37.704432], [-76.537228, 37.698892], [-76.535302, 37.687516], [-76.537698, 37.66893], [-76.536548, 37.663574], [-76.510187, 37.642324], [-76.501522, 37.643762], [-76.497564, 37.647056], [-76.491799, 37.663614], [-76.489576, 37.666201], [-76.472392, 37.665772], [-76.443254, 37.652347], [-76.399236, 37.628636], [-76.390054, 37.630326], [-76.381106, 37.627003], [-76.36232, 37.610368], [-76.309174, 37.621892], [-76.28037, 37.613715], [-76.279447, 37.618225], [-76.287959, 37.631771], [-76.292534, 37.636098], [-76.306464, 37.642005], [-76.332562, 37.645817], [-76.339892, 37.655966], [-76.324808, 37.676983], [-76.320216, 37.680666], [-76.315161, 37.68472], [-76.312079, 37.684651], [-76.302545, 37.689], [-76.300067, 37.695364], [-76.302803, 37.704474], [-76.312858, 37.720338], [-76.304917, 37.729913], [-76.312108, 37.750522], [-76.306489, 37.788646], [-76.310307, 37.794849], [-76.307482, 37.81235], [-76.293525, 37.822717], [-76.284904, 37.822308], [-76.281985, 37.818068], [-76.282592, 37.814109], [-76.280544, 37.812597], [-76.275178, 37.812664], [-76.266057, 37.8174], [-76.251358, 37.833072], [-76.245072, 37.861918], [-76.236725, 37.889174], [-76.265998, 37.91138], [-76.343848, 37.947345], [-76.360211, 37.952329], [-76.391439, 37.958742], [-76.416299, 37.966828], [-76.427487, 37.977038], [-76.462542, 37.998572], [-76.465291, 38.010226], [-76.469343, 38.013544], [-76.491998, 38.017222], [-76.516547, 38.026566], [-76.519536, 38.034814], [-76.522354, 38.04259], [-76.535919, 38.069532], [-76.543155, 38.076971], [-76.579497, 38.09487], [-76.600937, 38.110084], [-76.604131, 38.128771], [-76.613939, 38.148587], [-76.629476, 38.15305], [-76.638983, 38.151476], [-76.643448, 38.14825], [-76.665127, 38.147638], [-76.684892, 38.156497], [-76.701297, 38.155718], [-76.704048, 38.149264], [-76.721722, 38.137635], [-76.738938, 38.14651], [-76.740278, 38.152824], [-76.743064, 38.156988], [-76.749685, 38.162114], [-76.760241, 38.166581], [-76.788445, 38.169199], [-76.802968, 38.167988], [-76.824274, 38.163639], [-76.838795, 38.163476], [-76.875272, 38.172207], [-76.910832, 38.197073], [-76.916922, 38.199751], [-76.937134, 38.202384], [-76.962311, 38.214075], [-76.967335, 38.227185], [-76.966553, 38.229542], [-76.962375, 38.230093], [-76.957417, 38.236341], [-76.957796, 38.243183], [-76.96215, 38.256486], [-76.981372, 38.274214], [-76.990255, 38.273935], [-76.99767, 38.278047], [-77.026304, 38.302685], [-77.030683, 38.311623], [-77.020947, 38.329273], [-77.016932, 38.341697], [-77.011827, 38.374554], [-77.024866, 38.386791], [-77.043526, 38.400548], [-77.051437, 38.399083], [-77.056032, 38.3962], [-77.069956, 38.377895], [-77.08481, 38.368297], [-77.094665, 38.367715], [-77.104717, 38.369655], [-77.138224, 38.367917], [-77.155191, 38.351047], [-77.162692, 38.345994], [-77.17934, 38.341915], [-77.199433, 38.34089], [-77.240072, 38.331598], [-77.265295, 38.333165], [-77.279633, 38.339444], [-77.286202, 38.347024], [-77.286202, 38.347025], [-77.28835, 38.351286], [-77.288145, 38.359477], [-77.296077, 38.369797], [-77.317288, 38.383576], [-77.314848, 38.389579], [-77.312201, 38.390958], [-77.310719, 38.397669], [-77.319036, 38.417803], [-77.32544, 38.44885], [-77.322622, 38.467131], [-77.310334, 38.493926], [-77.302457, 38.504683], [-77.300776, 38.506978], [-77.298844, 38.508724], [-77.29582, 38.511457], [-77.291103, 38.515721], [-77.283503, 38.525221], [-77.276303, 38.53962], [-77.276603, 38.54712], [-77.26083, 38.56533], [-77.265304, 38.580319], [-77.26443, 38.582845], [-77.247003, 38.590618], [-77.246441, 38.599532], [-77.245104, 38.620717], [-77.248904, 38.628617], [-77.246704, 38.635217], [-77.240604, 38.638917], [-77.22235, 38.638091], [-77.216303, 38.637817], [-77.205103, 38.623917], [-77.204302, 38.617817], [-77.202002, 38.617217], [-77.174902, 38.624217], [-77.157501, 38.636417], [-77.1302, 38.635017], [-77.135901, 38.649817], [-77.132501, 38.673816], [-77.121101, 38.686616], [-77.1059, 38.696815], [-77.086113, 38.705792], [-77.074599, 38.711015], [-77.05991, 38.734419], [-77.041398, 38.763914], [-77.039239, 38.7852], [-77.038598, 38.791513], [-77.032986, 38.8395], [-77.031698, 38.850512], [-77.040599, 38.871212], [-77.068199, 38.899811], [-77.0902, 38.904211], [-77.1012, 38.911111], [-77.119863, 38.934265], [-77.1199, 38.934311], [-77.137701, 38.95531], [-77.148179, 38.965002], [-77.166901, 38.96811], [-77.197502, 38.96681], [-77.221502, 38.97131], [-77.235403, 38.97661], [-77.249803, 38.985909], [-77.255703, 39.002409], [-77.251803, 39.011409], [-77.261403, 39.031009], [-77.291605, 39.045408], [-77.328002, 39.058554], [-77.340287, 39.062991], [-77.375079, 39.061297], [-77.42318, 39.066878], [-77.458202, 39.073723], [-77.519929, 39.120925], [-77.524559, 39.127821], [-77.527282, 39.146236], [-77.516426, 39.170891], [-77.510631, 39.178484], [-77.505162, 39.18205], [-77.485971, 39.185665], [-77.478596, 39.189168], [-77.458884, 39.219826], [-77.458779, 39.22028], [-77.45768, 39.22502], [-77.46021, 39.228359], [-77.484605, 39.245941], [-77.511222, 39.2535], [-77.534461, 39.262361], [-77.543228, 39.266937], [-77.545846, 39.271535], [-77.560854, 39.286152], [-77.592739, 39.30129], [-77.667749, 39.318129], [-77.677505, 39.318699], [-77.719029, 39.321125], [-77.750267, 39.289284], [-77.753357, 39.280331], [-77.75306, 39.277971], [-77.753105, 39.27734], [-77.755193, 39.275191], [-77.755698, 39.274575], [-77.758412, 39.269197], [-77.758733, 39.268114], [-77.761217, 39.263721], [-77.761768, 39.263031], [-77.768, 39.257657], [-77.768992, 39.256417], [-77.767277, 39.24938], [-77.771415, 39.236776], [-77.822182, 39.139985], [-77.828157, 39.132329], [-78.032841, 39.264403], [-78.033183, 39.264624], [-78.033185, 39.264626], [-78.228766, 39.391233], [-78.347087, 39.466012], [-78.362267, 39.357784], [-78.34048, 39.353492], [-78.35894, 39.319484], [-78.360035, 39.317771], [-78.399785, 39.244129], [-78.399669, 39.243874], [-78.423968, 39.212049], [-78.427911, 39.208611], [-78.429803, 39.207014], [-78.431167, 39.205744], [-78.43213, 39.204717], [-78.437053, 39.199766], [-78.438651, 39.198049], [-78.426722, 39.188903], [-78.41074, 39.171983], [-78.418377, 39.156656], [-78.439429, 39.132146], [-78.459869, 39.113351], [-78.508132, 39.08863], [-78.544111, 39.056676], [-78.571901, 39.031995], [-78.565837, 39.026303], [-78.554222, 39.019672], [-78.557647, 39.013189], [-78.601655, 38.964603], [-78.710949, 38.910175], [-78.714135, 38.911176], [-78.716956, 38.916273], [-78.719755, 38.922135], [-78.719806, 38.922638], [-78.757278, 38.903203], [-78.779198, 38.892298], [-78.788031, 38.885123], [-78.808181, 38.856175], [-78.835191, 38.811499], [-78.869276, 38.762991] ] ], [ [ [-79.617919921875, 40.588928169693745], [-78.94775390625, 38.993572058209466], [-78.5302734375, 39.342794408952386], [-78.277587890625, 39.78321267821705], [-77.84912109375, 39.36827914916011], [-77.18994140625, 39.80853604144591], [-78.585205078125, 41.02135510866602], [-79.617919921875, 40.588928169693745] ] ] ] }, "properties": { "stroke": "#080", "fill": "#080", "stroke-width": 6, "fill-opacity": 0.1 }, "type": "Feature" }, { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "stroke-width": 6, "fill-opacity": 0.1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-78.869276, 38.762991], [-78.993997, 38.850102], [-78.999752, 38.846162], [-79.055354, 38.782213], [-79.057253, 38.761413], [-79.092555, 38.700149], [-79.092271, 38.699208], [-79.135472, 38.644057], [-79.135546, 38.643715], [-79.136374, 38.6424], [-79.137012, 38.640655], [-79.146741, 38.625819], [-79.146974, 38.625641], [-79.174512, 38.566531], [-79.174881, 38.566314], [-79.207884, 38.500428], [-79.207873, 38.500122], [-79.209703, 38.495574], [-79.210008, 38.494283], [-79.210026, 38.494231], [-79.225839, 38.479446], [-79.23162, 38.474041], [-79.234408, 38.473011], [-79.240059, 38.469841], [-79.242024, 38.464332], [-79.26291, 38.444586], [-79.263376, 38.443762], [-79.265327, 38.441772], [-79.267414, 38.438322], [-79.282663, 38.431021], [-79.280263, 38.425475], [-79.290529, 38.420757], [-79.291813, 38.419627], [-79.295712, 38.418129], [-79.297758, 38.416438], [-79.312276, 38.411876], [-79.476638, 38.457228], [-79.521469, 38.533918], [-79.53687, 38.550917], [-79.555471, 38.560217], [-79.597955, 38.572767], [-79.649075, 38.591515], [-79.669128, 38.510975], [-79.669128, 38.510883], [-79.695565, 38.477842], [-79.699006, 38.475148], [-79.688205, 38.450476], [-79.688962, 38.449538], [-79.689544, 38.442511], [-79.691377, 38.439558], [-79.731661, 38.374143], [-79.808711, 38.309429], [-79.810115, 38.305037], [-79.788945, 38.268703], [-79.790134, 38.267654], [-79.794568, 38.264856], [-79.891999, 38.203378], [-79.892345, 38.202397], [-79.916174, 38.184386], [-79.917061, 38.183741], [-79.921196, 38.180378], [-79.921026, 38.179954], [-79.925251, 38.150465], [-79.925512, 38.150237], [-79.928683, 38.144928], [-79.928747, 38.144436], [-79.933751, 38.135508], [-79.938394, 38.130563], [-79.931034, 38.101402], [-79.933911, 38.099168], [-79.959844, 38.063697], [-79.978427, 38.029082], [-80.002507, 37.992767], [-80.055278, 37.951702], [-80.1123046875, 37.90732515547775], [-80.1123046875, 36.542910454969096], [-80.053455, 36.542623], [-80.027269, 36.542495], [-79.967511, 36.542502], [-79.966979, 36.542475], [-79.920239, 36.542365], [-79.714855, 36.541884], [-79.667309, 36.541772], [-79.666827, 36.541772], [-79.510961, 36.54074], [-79.510647, 36.540738], [-79.470047, 36.541025], [-79.445961, 36.541195], [-79.445687, 36.541218], [-79.342696, 36.541382], [-79.218638, 36.541579], [-79.20948, 36.541594], [-79.208686, 36.541571], [-79.137936, 36.541739], [-79.126078, 36.541533], [-79.124736, 36.541568], [-78.971814, 36.542123], [-78.970577, 36.542154], [-78.942254, 36.542079], [-78.942009, 36.542113], [-78.91542, 36.541974], [-78.914543, 36.541972], [-78.7963, 36.541713], [-78.76543, 36.541727], [-78.758392, 36.541852], [-78.734122, 36.541902], [-78.670051, 36.542035], [-78.663317, 36.542011], [-78.533013, 36.541004], [-78.529722, 36.540981], [-78.471022, 36.542307], [-78.470792, 36.542316], [-78.45697, 36.542474], [-78.441199, 36.542687], [-78.436333, 36.542666], [-78.323912, 36.543809], [-78.246681, 36.544341], [-78.245462, 36.544411], [-78.133323, 36.543847], [-78.132911, 36.543811], [-78.046202, 36.544168], [-78.03942, 36.544196], [-78.038938, 36.544173], [-77.899771, 36.544663], [-77.882357, 36.544737], [-77.87528, 36.544754], [-77.767117, 36.544752], [-77.296875, 36.544746], [-77.24969, 36.544745], [-77.1645, 36.54633], [-76.959228515625, 36.54425210252603], [-76.959228515625, 38.21264364102839], [-76.962311, 38.214075], [-76.967335, 38.227185], [-76.966553, 38.229542], [-76.962375, 38.230093], [-76.959228515625, 38.23405815417003], [-76.959228515625, 38.24755983862182], [-76.96215, 38.256486], [-76.981372, 38.274214], [-76.990255, 38.273935], [-76.99767, 38.278047], [-77.026304, 38.302685], [-77.030683, 38.311623], [-77.020947, 38.329273], [-77.016932, 38.341697], [-77.011827, 38.374554], [-77.024866, 38.386791], [-77.043526, 38.400548], [-77.051437, 38.399083], [-77.056032, 38.3962], [-77.069956, 38.377895], [-77.08481, 38.368297], [-77.094665, 38.367715], [-77.104717, 38.369655], [-77.138224, 38.367917], [-77.155191, 38.351047], [-77.162692, 38.345994], [-77.17934, 38.341915], [-77.199433, 38.34089], [-77.240072, 38.331598], [-77.265295, 38.333165], [-77.279633, 38.339444], [-77.286202, 38.347024], [-77.286202, 38.347025], [-77.28835, 38.351286], [-77.288145, 38.359477], [-77.296077, 38.369797], [-77.317288, 38.383576], [-77.314848, 38.389579], [-77.312201, 38.390958], [-77.310719, 38.397669], [-77.319036, 38.417803], [-77.32544, 38.44885], [-77.322622, 38.467131], [-77.310334, 38.493926], [-77.302457, 38.504683], [-77.300776, 38.506978], [-77.298844, 38.508724], [-77.29582, 38.511457], [-77.291103, 38.515721], [-77.283503, 38.525221], [-77.276303, 38.53962], [-77.276603, 38.54712], [-77.26083, 38.56533], [-77.265304, 38.580319], [-77.26443, 38.582845], [-77.247003, 38.590618], [-77.246441, 38.599532], [-77.245104, 38.620717], [-77.248904, 38.628617], [-77.246704, 38.635217], [-77.240604, 38.638917], [-77.22235, 38.638091], [-77.216303, 38.637817], [-77.205103, 38.623917], [-77.204302, 38.617817], [-77.202002, 38.617217], [-77.174902, 38.624217], [-77.157501, 38.636417], [-77.1302, 38.635017], [-77.135901, 38.649817], [-77.132501, 38.673816], [-77.121101, 38.686616], [-77.1059, 38.696815], [-77.086113, 38.705792], [-77.074599, 38.711015], [-77.05991, 38.734419], [-77.041398, 38.763914], [-77.039239, 38.7852], [-77.038598, 38.791513], [-77.032986, 38.8395], [-77.031698, 38.850512], [-77.040599, 38.871212], [-77.068199, 38.899811], [-77.0902, 38.904211], [-77.1012, 38.911111], [-77.119863, 38.934265], [-77.1199, 38.934311], [-77.137701, 38.95531], [-77.148179, 38.965002], [-77.166901, 38.96811], [-77.197502, 38.96681], [-77.221502, 38.97131], [-77.235403, 38.97661], [-77.249803, 38.985909], [-77.255703, 39.002409], [-77.251803, 39.011409], [-77.261403, 39.031009], [-77.291605, 39.045408], [-77.328002, 39.058554], [-77.340287, 39.062991], [-77.375079, 39.061297], [-77.42318, 39.066878], [-77.458202, 39.073723], [-77.519929, 39.120925], [-77.524559, 39.127821], [-77.527282, 39.146236], [-77.516426, 39.170891], [-77.510631, 39.178484], [-77.505162, 39.18205], [-77.485971, 39.185665], [-77.478596, 39.189168], [-77.458884, 39.219826], [-77.458779, 39.22028], [-77.45768, 39.22502], [-77.46021, 39.228359], [-77.484605, 39.245941], [-77.511222, 39.2535], [-77.534461, 39.262361], [-77.543228, 39.266937], [-77.545846, 39.271535], [-77.560854, 39.286152], [-77.592739, 39.30129], [-77.667749, 39.318129], [-77.677505, 39.318699], [-77.719029, 39.321125], [-77.750267, 39.289284], [-77.753357, 39.280331], [-77.75306, 39.277971], [-77.753105, 39.27734], [-77.755193, 39.275191], [-77.755698, 39.274575], [-77.758412, 39.269197], [-77.758733, 39.268114], [-77.761217, 39.263721], [-77.761768, 39.263031], [-77.768, 39.257657], [-77.768992, 39.256417], [-77.767277, 39.24938], [-77.771415, 39.236776], [-77.822182, 39.139985], [-77.828157, 39.132329], [-78.032841, 39.264403], [-78.033183, 39.264624], [-78.033185, 39.264626], [-78.228766, 39.391233], [-78.347087, 39.466012], [-78.362267, 39.357784], [-78.34048, 39.353492], [-78.35894, 39.319484], [-78.360035, 39.317771], [-78.399785, 39.244129], [-78.399669, 39.243874], [-78.423968, 39.212049], [-78.427911, 39.208611], [-78.429803, 39.207014], [-78.431167, 39.205744], [-78.43213, 39.204717], [-78.437053, 39.199766], [-78.438651, 39.198049], [-78.426722, 39.188903], [-78.41074, 39.171983], [-78.418377, 39.156656], [-78.439429, 39.132146], [-78.459869, 39.113351], [-78.508132, 39.08863], [-78.544111, 39.056676], [-78.571901, 39.031995], [-78.565837, 39.026303], [-78.554222, 39.019672], [-78.557647, 39.013189], [-78.601655, 38.964603], [-78.710949, 38.910175], [-78.714135, 38.911176], [-78.716956, 38.916273], [-78.719755, 38.922135], [-78.719806, 38.922638], [-78.757278, 38.903203], [-78.779198, 38.892298], [-78.788031, 38.885123], [-78.808181, 38.856175], [-78.835191, 38.811499], [-78.869276, 38.762991] ] ], [ [ [-79.617919921875, 40.588928169693745], [-78.94775390625, 38.993572058209466], [-78.5302734375, 39.342794408952386], [-78.277587890625, 39.78321267821705], [-77.84912109375, 39.36827914916011], [-77.18994140625, 39.80853604144591], [-78.585205078125, 41.02135510866602], [-79.617919921875, 40.588928169693745] ] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "stroke-width": 3, "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-80.1123046875, 36.2354121683998], [-76.959228515625, 36.2354121683998], [-76.959228515625, 41.22824901518529], [-80.1123046875, 41.22824901518529], [-80.1123046875, 36.2354121683998] ] ] } } ] } ================================================ FILE: packages/turf-bbox-clip/test/out/polygon-crossing-hole.geojson ================================================ { "type": "FeatureCollection", "features": [ { "geometry": { "type": "Polygon", "coordinates": [ [ [-78.869276, 38.762991], [-78.993997, 38.850102], [-78.999752, 38.846162], [-79.055354, 38.782213], [-79.057253, 38.761413], [-79.092555, 38.700149], [-79.092271, 38.699208], [-79.135472, 38.644057], [-79.135546, 38.643715], [-79.136374, 38.6424], [-79.137012, 38.640655], [-79.146741, 38.625819], [-79.146974, 38.625641], [-79.174512, 38.566531], [-79.174881, 38.566314], [-79.207884, 38.500428], [-79.207873, 38.500122], [-79.209703, 38.495574], [-79.210008, 38.494283], [-79.210026, 38.494231], [-79.225839, 38.479446], [-79.23162, 38.474041], [-79.234408, 38.473011], [-79.240059, 38.469841], [-79.242024, 38.464332], [-79.26291, 38.444586], [-79.263376, 38.443762], [-79.265327, 38.441772], [-79.267414, 38.438322], [-79.282663, 38.431021], [-79.280263, 38.425475], [-79.290529, 38.420757], [-79.291813, 38.419627], [-79.295712, 38.418129], [-79.297758, 38.416438], [-79.312276, 38.411876], [-79.476638, 38.457228], [-79.521469, 38.533918], [-79.53687, 38.550917], [-79.555471, 38.560217], [-79.597955, 38.572767], [-79.649075, 38.591515], [-79.669128, 38.510975], [-79.669128, 38.510883], [-79.695565, 38.477842], [-79.699006, 38.475148], [-79.688205, 38.450476], [-79.688962, 38.449538], [-79.689544, 38.442511], [-79.691377, 38.439558], [-79.731661, 38.374143], [-79.808711, 38.309429], [-79.810115, 38.305037], [-79.788945, 38.268703], [-79.790134, 38.267654], [-79.794568, 38.264856], [-79.891999, 38.203378], [-79.892345, 38.202397], [-79.916174, 38.184386], [-79.917061, 38.183741], [-79.921196, 38.180378], [-79.921026, 38.179954], [-79.925251, 38.150465], [-79.925512, 38.150237], [-79.928683, 38.144928], [-79.928747, 38.144436], [-79.933751, 38.135508], [-79.938394, 38.130563], [-79.931034, 38.101402], [-79.933911, 38.099168], [-79.959844, 38.063697], [-79.978427, 38.029082], [-80.002507, 37.992767], [-80.055278, 37.951702], [-80.130464, 37.893194], [-80.14613, 37.884453], [-80.147316, 37.885936], [-80.148964, 37.886057], [-80.162202, 37.875122], [-80.227092, 37.798886], [-80.231551, 37.792591], [-80.257411, 37.756084], [-80.262765, 37.738336], [-80.260313, 37.733517], [-80.259342, 37.731205], [-80.263936, 37.719137], [-80.287107, 37.696403], [-80.296138, 37.691783], [-80.292337, 37.683976], [-80.292258, 37.683732], [-80.270323, 37.648982], [-80.270352, 37.648929], [-80.267455, 37.646108], [-80.267228, 37.646011], [-80.264874, 37.645511], [-80.26483, 37.645526], [-80.263291, 37.645101], [-80.263281, 37.645082], [-80.254469, 37.642333], [-80.254431, 37.642352], [-80.239288, 37.637672], [-80.220984, 37.627767], [-80.223386, 37.623185], [-80.240272, 37.606961], [-80.288766, 37.58196], [-80.312393, 37.546239], [-80.330306, 37.536244], [-80.314806, 37.500943], [-80.320627, 37.49888], [-80.425656, 37.449876], [-80.443025, 37.438126], [-80.46482, 37.426144], [-80.475601, 37.422949], [-80.494867, 37.43507], [-80.511391, 37.481672], [-80.622664, 37.433307], [-80.770082, 37.372363], [-80.776649, 37.383679], [-80.776766, 37.384131], [-80.798869, 37.395807], [-80.811639, 37.407507], [-80.85836, 37.428168], [-80.858473, 37.428301], [-80.859556, 37.429568], [-80.859558, 37.429555], [-80.862761, 37.411829], [-80.872589, 37.372347], [-80.849451, 37.346909], [-80.900535, 37.315], [-80.919259, 37.306163], [-80.947896, 37.295872], [-80.966556, 37.292158], [-80.973889, 37.291444], [-80.980044, 37.293118], [-80.981322, 37.293465], [-81.034652, 37.290751], [-81.084012, 37.284401], [-81.112596, 37.278497], [-81.167029, 37.262881], [-81.204774, 37.243013], [-81.225104, 37.234874], [-81.320105, 37.299323], [-81.362156, 37.337687], [-81.366315, 37.335927], [-81.367052, 37.334504], [-81.36809, 37.332423], [-81.369379, 37.331827], [-81.367599, 37.327569], [-81.371315, 37.324115], [-81.377349, 37.318447], [-81.380159, 37.317838], [-81.384127, 37.318596], [-81.384914, 37.318832], [-81.38581, 37.320085], [-81.386727, 37.320474], [-81.388132, 37.319903], [-81.409196, 37.286071], [-81.409729, 37.284837], [-81.504168, 37.250115], [-81.50488, 37.247697], [-81.507325, 37.2338], [-81.557315, 37.207697], [-81.558353, 37.208145], [-81.560625, 37.206663], [-81.678603, 37.202467], [-81.683544, 37.211452], [-81.728194, 37.239823], [-81.73332, 37.238127], [-81.738378, 37.240917], [-81.744291, 37.244178], [-81.74342, 37.245858], [-81.743505, 37.247601], [-81.747656, 37.264329], [-81.75129, 37.265131], [-81.752123, 37.265568], [-81.752912, 37.266614], [-81.755012, 37.26772], [-81.757531, 37.27001], [-81.757714, 37.271124], [-81.75773, 37.271934], [-81.757631, 37.274003], [-81.76022, 37.275254], [-81.761752, 37.275713], [-81.762776, 37.275391], [-81.763836, 37.275218], [-81.765195, 37.275099], [-81.767837, 37.274216], [-81.774684, 37.274807], [-81.774747, 37.274847], [-81.793425, 37.281674], [-81.793639, 37.282188], [-81.809184, 37.283003], [-81.810559, 37.28298], [-81.84231, 37.285556], [-81.843167, 37.285586], [-81.854059, 37.291352], [-81.853488, 37.294763], [-81.854465, 37.299937], [-81.853978, 37.300418], [-81.86476, 37.308404], [-81.865219, 37.308839], [-81.873213, 37.325065], [-81.878343, 37.328837], [-81.878713, 37.331753], [-81.879601, 37.332074], [-81.880886, 37.331146], [-81.885075, 37.330665], [-81.886952, 37.330725], [-81.887722, 37.331156], [-81.892876, 37.330134], [-81.893773, 37.330105], [-81.894768, 37.331381], [-81.894797, 37.332012], [-81.895489, 37.332022], [-81.896001, 37.331967], [-81.899459, 37.340277], [-81.899495, 37.341102], [-81.902992, 37.34234], [-81.903795, 37.34305], [-81.905945, 37.342775], [-81.906368, 37.34276], [-81.907322, 37.343119], [-81.907895, 37.343783], [-81.910875, 37.348729], [-81.911487, 37.348839], [-81.920711, 37.355416], [-81.921571, 37.356423], [-81.925643, 37.357316], [-81.926589, 37.358942], [-81.929915, 37.366589], [-81.930194, 37.366728], [-81.933895, 37.372747], [-81.92749, 37.413251], [-81.935621, 37.438397], [-81.949367, 37.445687], [-81.968795, 37.451496], [-81.987006, 37.454878], [-81.99227, 37.460916], [-81.996578, 37.476705], [-81.992916, 37.482969], [-81.94264, 37.508844], [-81.92787, 37.512118], [-81.968297, 37.537798], [-82.291908, 37.311642], [-82.305874, 37.3011], [-82.310793, 37.297387], [-82.350948, 37.267077], [-82.510826, 37.218091], [-82.553549, 37.200867], [-82.565329, 37.196118], [-82.565375, 37.196092], [-82.624878, 37.162932], [-82.721941, 37.105689], [-82.720597, 37.081833], [-82.722472, 37.045101], [-82.771795, 37.015716], [-82.777368, 37.015279], [-82.788897, 37.00816], [-82.789092, 37.007995], [-82.790462, 37.007263], [-82.79089, 37.00676], [-82.800531, 37.007944], [-82.815748, 37.007196], [-82.818006, 37.006161], [-82.830588, 37.000945], [-82.829125, 36.997541], [-82.830802, 36.993445], [-82.833843, 36.991973], [-82.836008, 36.988837], [-82.838549, 36.987027], [-82.840051, 36.987113], [-82.851397, 36.984497], [-82.852614, 36.984963], [-82.862926, 36.979975], [-82.864909, 36.97901], [-82.866019, 36.978272], [-82.866689, 36.978052], [-82.867535, 36.977518], [-82.868455, 36.976481], [-82.869183, 36.974183], [-82.869183, 36.974182], [-82.870274, 36.965993], [-82.87023, 36.965498], [-82.867358, 36.963182], [-82.865404, 36.958084], [-82.864211, 36.957983], [-82.862866, 36.957765], [-82.860534, 36.956015], [-82.858443, 36.954036], [-82.855705, 36.953808], [-82.856099, 36.952471], [-82.860633, 36.94584], [-82.861282, 36.944848], [-82.861684, 36.939316], [-82.860537, 36.937439], [-82.858784, 36.933065], [-82.858461, 36.932717], [-82.861943, 36.924236], [-82.863468, 36.922308], [-82.872136, 36.913456], [-82.873777, 36.912299], [-82.885618, 36.900415], [-82.91169, 36.874248], [-82.911824, 36.874243], [-82.973395, 36.859097], [-83.07259, 36.854589], [-83.099792, 36.824889], [-83.131694, 36.781488], [-83.131245, 36.767105], [-83.125655, 36.761407], [-83.125728, 36.761276], [-83.127833, 36.750828], [-83.136395, 36.743088], [-83.167396, 36.739187], [-83.199698, 36.737487], [-83.342804, 36.701286], [-83.353613, 36.696699], [-83.354606, 36.696153], [-83.460808, 36.664885], [-83.461013, 36.664916], [-83.498011, 36.670485], [-83.527212, 36.665984], [-83.649513, 36.616683], [-83.675413, 36.600814], [-83.670141, 36.600797], [-83.670128, 36.600764], [-83.472108, 36.597284], [-83.2763, 36.598187], [-83.250304, 36.593935], [-83.249899, 36.593898], [-83.248933, 36.593827], [-83.028357, 36.593893], [-83.02725, 36.593847], [-82.985087, 36.593829], [-82.830433, 36.593761], [-82.69578, 36.593698], [-82.679879, 36.593698], [-82.609176, 36.594099], [-82.561074, 36.5948], [-82.559774, 36.5948], [-82.554294, 36.594876], [-82.293814, 36.595565], [-82.243274, 36.595699], [-82.226653, 36.595743], [-82.225716, 36.595744], [-82.223445, 36.595721], [-82.221713, 36.595814], [-82.211005, 36.59586], [-82.210497, 36.595772], [-82.188491, 36.595179], [-82.18074, 36.594928], [-82.177247, 36.594768], [-82.173982, 36.594607], [-82.150727, 36.594673], [-82.148569, 36.594718], [-82.14607, 36.594712], [-81.934144, 36.594213], [-81.922644, 36.616213], [-81.826742, 36.614215], [-81.6469, 36.611918], [-81.677535, 36.588117], [-81.60697, 36.587094], [-81.521032, 36.58052], [-81.353322, 36.574723], [-81.353169, 36.574724], [-81.307511, 36.575024], [-81.061866, 36.56702], [-81.058844, 36.566976], [-80.945988, 36.563196], [-80.944338, 36.563058], [-80.901836, 36.561754], [-80.901726, 36.561751], [-80.837954, 36.559131], [-80.837641, 36.559118], [-80.837089, 36.559154], [-80.744101, 36.561686], [-80.687539, 36.561411], [-80.612158, 36.558127], [-80.4401, 36.55063], [-80.432628, 36.550302], [-80.431605, 36.550219], [-80.228263, 36.543867], [-80.225408, 36.543748], [-80.171636, 36.543219], [-80.169535, 36.54319], [-80.053455, 36.542623], [-80.027269, 36.542495], [-79.967511, 36.542502], [-79.966979, 36.542475], [-79.920239, 36.542365], [-79.714855, 36.541884], [-79.667309, 36.541772], [-79.666827, 36.541772], [-79.510961, 36.54074], [-79.510647, 36.540738], [-79.470047, 36.541025], [-79.445961, 36.541195], [-79.445687, 36.541218], [-79.342696, 36.541382], [-79.218638, 36.541579], [-79.20948, 36.541594], [-79.208686, 36.541571], [-79.137936, 36.541739], [-79.126078, 36.541533], [-79.124736, 36.541568], [-78.971814, 36.542123], [-78.970577, 36.542154], [-78.942254, 36.542079], [-78.942009, 36.542113], [-78.91542, 36.541974], [-78.914543, 36.541972], [-78.7963, 36.541713], [-78.76543, 36.541727], [-78.758392, 36.541852], [-78.734122, 36.541902], [-78.670051, 36.542035], [-78.663317, 36.542011], [-78.533013, 36.541004], [-78.529722, 36.540981], [-78.471022, 36.542307], [-78.470792, 36.542316], [-78.45697, 36.542474], [-78.441199, 36.542687], [-78.436333, 36.542666], [-78.323912, 36.543809], [-78.246681, 36.544341], [-78.245462, 36.544411], [-78.133323, 36.543847], [-78.132911, 36.543811], [-78.046202, 36.544168], [-78.03942, 36.544196], [-78.038938, 36.544173], [-77.899771, 36.544663], [-77.882357, 36.544737], [-77.87528, 36.544754], [-77.767117, 36.544752], [-77.296875, 36.544746], [-77.24969, 36.544745], [-77.1645, 36.54633], [-76.916048, 36.543815], [-76.916001, 36.543818], [-76.915384, 36.543856], [-76.807078, 36.550606], [-76.781296, 36.550659], [-76.541687, 36.550312], [-76.541391, 36.550312], [-76.491497, 36.550365], [-76.313215, 36.550551], [-76.313196, 36.550551], [-76.12236, 36.550621], [-76.034751, 36.550653], [-76.02675, 36.550553], [-75.957648, 36.550553], [-75.955748, 36.550553], [-75.953447, 36.550553], [-75.952847, 36.550553], [-75.922046, 36.550654], [-75.911446, 36.550654], [-75.909046, 36.550654], [-75.904745, 36.550654], [-75.903445, 36.550654], [-75.894145, 36.550754], [-75.893245, 36.550654], [-75.891945, 36.550754], [-75.886545, 36.550754], [-75.885945, 36.550754], [-75.880644, 36.550754], [-75.879744, 36.550754], [-75.867044, 36.550754], [-75.874145, 36.583853], [-75.890946, 36.630753], [-75.921748, 36.692051], [-75.94955, 36.76115], [-75.965451, 36.812449], [-75.972151, 36.842268], [-75.991552, 36.910847], [-75.996252, 36.922047], [-76.007553, 36.929047], [-76.013753, 36.930746], [-76.033454, 36.931946], [-76.043054, 36.927547], [-76.058154, 36.916947], [-76.087955, 36.908647], [-76.095508, 36.908817], [-76.139557, 36.923047], [-76.177019, 36.92929], [-76.189959, 36.931447], [-76.22166, 36.939547], [-76.234961, 36.945147], [-76.267962, 36.964547], [-76.285063, 36.968747], [-76.297663, 36.968147], [-76.299364, 36.965547], [-76.315867, 36.955351], [-76.322764, 36.959147], [-76.327365, 36.959447], [-76.330765, 36.938647], [-76.328864, 36.918447], [-76.333158, 36.917293], [-76.344663, 36.919313], [-76.345569, 36.924531], [-76.353765, 36.922747], [-76.385867, 36.923247], [-76.387567, 36.899547], [-76.406908, 36.897507], [-76.407507, 36.897444], [-76.43122, 36.904532], [-76.441605, 36.906116], [-76.447413, 36.90322], [-76.453941, 36.89274], [-76.45329, 36.887031], [-76.454692, 36.884077], [-76.469914, 36.882898], [-76.483369, 36.896239], [-76.482135, 36.901108], [-76.482407, 36.917364], [-76.484107, 36.928916], [-76.487559, 36.952372], [-76.500355, 36.965212], [-76.513363, 36.968057], [-76.521006, 36.973187], [-76.524142, 36.978316], [-76.522971, 36.981085], [-76.524853, 36.983833], [-76.551246, 36.998946], [-76.562923, 37.003796], [-76.565803, 37.007493], [-76.576617, 37.021374], [-76.577531, 37.022548], [-76.57816, 37.022982], [-76.579236, 37.023726], [-76.579393, 37.023835], [-76.584478, 37.027349], [-76.586491, 37.02874], [-76.612124, 37.035604], [-76.646013, 37.036228], [-76.653998, 37.039172], [-76.662558, 37.045748], [-76.66835, 37.05506], [-76.669822, 37.06426], [-76.669118, 37.068132], [-76.668295, 37.072656], [-76.667646, 37.076228], [-76.667219, 37.077149], [-76.666526, 37.078643], [-76.66555, 37.080746], [-76.659394, 37.094019], [-76.65811, 37.096787], [-76.657703, 37.101161], [-76.657101, 37.107617], [-76.656894, 37.109843], [-76.66375, 37.129979], [-76.665641, 37.135534], [-76.665833, 37.136098], [-76.666542, 37.138179], [-76.669604, 37.140534], [-76.671588, 37.14206], [-76.67147, 37.158739], [-76.66867, 37.166771], [-76.66427, 37.171027], [-76.663774, 37.173875], [-76.669886, 37.183571], [-76.685614, 37.198851], [-76.691918, 37.195731], [-76.692926, 37.186147], [-76.696735, 37.174403], [-76.715295, 37.148035], [-76.73032, 37.145395], [-76.73728, 37.146164], [-76.747632, 37.150548], [-76.756899, 37.161582], [-76.796905, 37.189404], [-76.802511, 37.198308], [-76.803198, 37.201513], [-76.801023, 37.206043], [-76.791555, 37.207564], [-76.780532, 37.209336], [-76.773752, 37.206061], [-76.757765, 37.191658], [-76.75047, 37.190098], [-76.74304, 37.192611], [-76.74, 37.195379], [-76.73432, 37.204211], [-76.730951, 37.213813], [-76.698943, 37.219059], [-76.693373, 37.221228], [-76.689166, 37.222866], [-76.649869, 37.220914], [-76.641085, 37.216002], [-76.639608, 37.214783], [-76.629868, 37.206738], [-76.623292, 37.198738], [-76.621113, 37.195103], [-76.619962, 37.193184], [-76.61934, 37.192146], [-76.618008, 37.186429], [-76.617537, 37.184409], [-76.616804, 37.18126], [-76.616268, 37.178962], [-76.614221, 37.174335], [-76.613599, 37.172931], [-76.612517, 37.170486], [-76.611018, 37.167097], [-76.610972, 37.166994], [-76.606684, 37.166674], [-76.604476, 37.160034], [-76.617084, 37.144498], [-76.622252, 37.142146], [-76.62478, 37.127091], [-76.618252, 37.119347], [-76.579499, 37.096627], [-76.567931, 37.080467], [-76.564219, 37.077507], [-76.555066, 37.075859], [-76.536875, 37.083942], [-76.528997, 37.079388], [-76.526203, 37.077773], [-76.526573, 37.070047], [-76.527973, 37.068247], [-76.526273, 37.062947], [-76.518242, 37.055351], [-76.512289, 37.054858], [-76.509339, 37.053173], [-76.507614, 37.052188], [-76.46949, 37.030414], [-76.464471, 37.027547], [-76.448231, 37.007705], [-76.449891, 37.004868], [-76.452461, 37.004603], [-76.452118, 36.998163], [-76.428869, 36.969947], [-76.418969, 36.964047], [-76.411768, 36.962847], [-76.408568, 36.969147], [-76.396368, 36.982347], [-76.387711, 36.989671], [-76.383367, 36.993347], [-76.373567, 36.998347], [-76.356366, 37.002947], [-76.348066, 37.006747], [-76.340666, 37.015246], [-76.34011, 37.015212], [-76.329531, 37.014556], [-76.318065, 37.013846], [-76.314624, 37.00933], [-76.315008, 37.001683], [-76.312048, 37.000371], [-76.304272, 37.001378], [-76.300352, 37.00885], [-76.292863, 37.035145], [-76.271262, 37.084544], [-76.274463, 37.094544], [-76.287236, 37.117453], [-76.292344, 37.126615], [-76.311088, 37.138495], [-76.324353, 37.142895], [-76.330481, 37.141727], [-76.334017, 37.144223], [-76.340129, 37.151823], [-76.34405, 37.160367], [-76.344898, 37.164479], [-76.343234, 37.166207], [-76.348658, 37.170655], [-76.35969, 37.16858], [-76.375255, 37.16084], [-76.381379, 37.155711], [-76.394756, 37.157568], [-76.399659, 37.160272], [-76.397883, 37.164415], [-76.391252, 37.179887], [-76.389284, 37.193503], [-76.396052, 37.201087], [-76.3936, 37.214049], [-76.389793, 37.222981], [-76.394132, 37.22515], [-76.471799, 37.216016], [-76.494008, 37.225408], [-76.50364, 37.233856], [-76.4989, 37.241015], [-76.493302, 37.24947], [-76.48284, 37.254831], [-76.475927, 37.250543], [-76.429141, 37.25331], [-76.421765, 37.255198], [-76.417173, 37.26395], [-76.392788, 37.264973], [-76.36229, 37.270226], [-76.349489, 37.273963], [-76.352556, 37.278334], [-76.369029, 37.279311], [-76.381075, 37.28534], [-76.385603, 37.294108], [-76.38777, 37.30767], [-76.406388, 37.332924], [-76.434965, 37.354524], [-76.445333, 37.36646], [-76.437525, 37.37975], [-76.422503, 37.381355], [-76.418176, 37.385064], [-76.418719, 37.3978], [-76.415167, 37.402133], [-76.404756, 37.400213], [-76.393125, 37.398068], [-76.393958, 37.39594], [-76.391437, 37.390284], [-76.387112, 37.385061], [-76.366751, 37.374495], [-76.337476, 37.364014], [-76.31205, 37.338088], [-76.308581, 37.329366], [-76.291324, 37.324145], [-76.282555, 37.319107], [-76.275552, 37.309964], [-76.272005, 37.322194], [-76.272888, 37.335174], [-76.264847, 37.357399], [-76.262407, 37.360786], [-76.258277, 37.36202], [-76.24846, 37.375135], [-76.245283, 37.386839], [-76.246617, 37.404122], [-76.250454, 37.421886], [-76.252415, 37.447274], [-76.265056, 37.481365], [-76.281043, 37.507821], [-76.288167, 37.514118], [-76.293599, 37.516499], [-76.297651, 37.515424], [-76.298456, 37.512677], [-76.296445, 37.511235], [-76.297739, 37.506863], [-76.306952, 37.497488], [-76.32947, 37.49492], [-76.352678, 37.504913], [-76.359378, 37.513426], [-76.360474, 37.51924], [-76.355084, 37.527364], [-76.348992, 37.536548], [-76.339989, 37.53833], [-76.330598, 37.536391], [-76.302762, 37.551295], [-76.29796, 37.557636], [-76.300144, 37.561734], [-76.332641, 37.570042], [-76.357835, 37.573699], [-76.383188, 37.573056], [-76.410781, 37.581815], [-76.420252, 37.598686], [-76.435474, 37.612807], [-76.527188, 37.611315], [-76.533777, 37.61253], [-76.542666, 37.616857], [-76.574049, 37.646781], [-76.583143, 37.661986], [-76.579591, 37.671508], [-76.597868, 37.702918], [-76.598073, 37.70912], [-76.595943, 37.712989], [-76.597213, 37.717269], [-76.606466, 37.724819], [-76.61997, 37.731271], [-76.621433, 37.737973], [-76.617373, 37.742347], [-76.61971, 37.744795], [-76.639962, 37.750941], [-76.663887, 37.751887], [-76.677002, 37.7561], [-76.680922, 37.759647], [-76.683372, 37.765507], [-76.683359, 37.770258], [-76.683343, 37.775783], [-76.681901, 37.778118], [-76.683775, 37.781391], [-76.689773, 37.78519], [-76.715498, 37.785873], [-76.723863, 37.788503], [-76.734309, 37.79866], [-76.7512, 37.824141], [-76.766328, 37.840437], [-76.782826, 37.863184], [-76.784618, 37.869569], [-76.77539, 37.874306], [-76.765711, 37.879274], [-76.747552, 37.875864], [-76.738395, 37.865373], [-76.733046, 37.852009], [-76.72718, 37.842263], [-76.722156, 37.83668], [-76.701606, 37.822677], [-76.692747, 37.82277], [-76.680197, 37.825654], [-76.658302, 37.806815], [-76.651413, 37.796239], [-76.642276, 37.792317], [-76.615351, 37.780759], [-76.602024, 37.772731], [-76.595939, 37.77168], [-76.593835, 37.772848], [-76.584289, 37.76889], [-76.576387, 37.757493], [-76.560476, 37.727827], [-76.54005, 37.704432], [-76.537228, 37.698892], [-76.535302, 37.687516], [-76.537698, 37.66893], [-76.536548, 37.663574], [-76.510187, 37.642324], [-76.501522, 37.643762], [-76.497564, 37.647056], [-76.491799, 37.663614], [-76.489576, 37.666201], [-76.472392, 37.665772], [-76.443254, 37.652347], [-76.399236, 37.628636], [-76.390054, 37.630326], [-76.381106, 37.627003], [-76.36232, 37.610368], [-76.309174, 37.621892], [-76.28037, 37.613715], [-76.279447, 37.618225], [-76.287959, 37.631771], [-76.292534, 37.636098], [-76.306464, 37.642005], [-76.332562, 37.645817], [-76.339892, 37.655966], [-76.324808, 37.676983], [-76.320216, 37.680666], [-76.315161, 37.68472], [-76.312079, 37.684651], [-76.302545, 37.689], [-76.300067, 37.695364], [-76.302803, 37.704474], [-76.312858, 37.720338], [-76.304917, 37.729913], [-76.312108, 37.750522], [-76.306489, 37.788646], [-76.310307, 37.794849], [-76.307482, 37.81235], [-76.293525, 37.822717], [-76.284904, 37.822308], [-76.281985, 37.818068], [-76.282592, 37.814109], [-76.280544, 37.812597], [-76.275178, 37.812664], [-76.266057, 37.8174], [-76.251358, 37.833072], [-76.245072, 37.861918], [-76.236725, 37.889174], [-76.265998, 37.91138], [-76.343848, 37.947345], [-76.360211, 37.952329], [-76.391439, 37.958742], [-76.416299, 37.966828], [-76.427487, 37.977038], [-76.462542, 37.998572], [-76.465291, 38.010226], [-76.469343, 38.013544], [-76.491998, 38.017222], [-76.516547, 38.026566], [-76.519536, 38.034814], [-76.522354, 38.04259], [-76.535919, 38.069532], [-76.543155, 38.076971], [-76.579497, 38.09487], [-76.600937, 38.110084], [-76.604131, 38.128771], [-76.613939, 38.148587], [-76.629476, 38.15305], [-76.638983, 38.151476], [-76.643448, 38.14825], [-76.665127, 38.147638], [-76.684892, 38.156497], [-76.701297, 38.155718], [-76.704048, 38.149264], [-76.721722, 38.137635], [-76.738938, 38.14651], [-76.740278, 38.152824], [-76.743064, 38.156988], [-76.749685, 38.162114], [-76.760241, 38.166581], [-76.788445, 38.169199], [-76.802968, 38.167988], [-76.824274, 38.163639], [-76.838795, 38.163476], [-76.875272, 38.172207], [-76.910832, 38.197073], [-76.916922, 38.199751], [-76.937134, 38.202384], [-76.962311, 38.214075], [-76.967335, 38.227185], [-76.966553, 38.229542], [-76.962375, 38.230093], [-76.957417, 38.236341], [-76.957796, 38.243183], [-76.96215, 38.256486], [-76.981372, 38.274214], [-76.990255, 38.273935], [-76.99767, 38.278047], [-77.026304, 38.302685], [-77.030683, 38.311623], [-77.020947, 38.329273], [-77.016932, 38.341697], [-77.011827, 38.374554], [-77.024866, 38.386791], [-77.043526, 38.400548], [-77.051437, 38.399083], [-77.056032, 38.3962], [-77.069956, 38.377895], [-77.08481, 38.368297], [-77.094665, 38.367715], [-77.104717, 38.369655], [-77.138224, 38.367917], [-77.155191, 38.351047], [-77.162692, 38.345994], [-77.17934, 38.341915], [-77.199433, 38.34089], [-77.240072, 38.331598], [-77.265295, 38.333165], [-77.279633, 38.339444], [-77.286202, 38.347024], [-77.286202, 38.347025], [-77.28835, 38.351286], [-77.288145, 38.359477], [-77.296077, 38.369797], [-77.317288, 38.383576], [-77.314848, 38.389579], [-77.312201, 38.390958], [-77.310719, 38.397669], [-77.319036, 38.417803], [-77.32544, 38.44885], [-77.322622, 38.467131], [-77.310334, 38.493926], [-77.302457, 38.504683], [-77.300776, 38.506978], [-77.298844, 38.508724], [-77.29582, 38.511457], [-77.291103, 38.515721], [-77.283503, 38.525221], [-77.276303, 38.53962], [-77.276603, 38.54712], [-77.26083, 38.56533], [-77.265304, 38.580319], [-77.26443, 38.582845], [-77.247003, 38.590618], [-77.246441, 38.599532], [-77.245104, 38.620717], [-77.248904, 38.628617], [-77.246704, 38.635217], [-77.240604, 38.638917], [-77.22235, 38.638091], [-77.216303, 38.637817], [-77.205103, 38.623917], [-77.204302, 38.617817], [-77.202002, 38.617217], [-77.174902, 38.624217], [-77.157501, 38.636417], [-77.1302, 38.635017], [-77.135901, 38.649817], [-77.132501, 38.673816], [-77.121101, 38.686616], [-77.1059, 38.696815], [-77.086113, 38.705792], [-77.074599, 38.711015], [-77.05991, 38.734419], [-77.041398, 38.763914], [-77.039239, 38.7852], [-77.038598, 38.791513], [-77.032986, 38.8395], [-77.031698, 38.850512], [-77.040599, 38.871212], [-77.068199, 38.899811], [-77.0902, 38.904211], [-77.1012, 38.911111], [-77.119863, 38.934265], [-77.1199, 38.934311], [-77.137701, 38.95531], [-77.148179, 38.965002], [-77.166901, 38.96811], [-77.197502, 38.96681], [-77.221502, 38.97131], [-77.235403, 38.97661], [-77.249803, 38.985909], [-77.255703, 39.002409], [-77.251803, 39.011409], [-77.261403, 39.031009], [-77.291605, 39.045408], [-77.328002, 39.058554], [-77.340287, 39.062991], [-77.375079, 39.061297], [-77.42318, 39.066878], [-77.458202, 39.073723], [-77.519929, 39.120925], [-77.524559, 39.127821], [-77.527282, 39.146236], [-77.516426, 39.170891], [-77.510631, 39.178484], [-77.505162, 39.18205], [-77.485971, 39.185665], [-77.478596, 39.189168], [-77.458884, 39.219826], [-77.458779, 39.22028], [-77.45768, 39.22502], [-77.46021, 39.228359], [-77.484605, 39.245941], [-77.511222, 39.2535], [-77.534461, 39.262361], [-77.543228, 39.266937], [-77.545846, 39.271535], [-77.560854, 39.286152], [-77.592739, 39.30129], [-77.667749, 39.318129], [-77.677505, 39.318699], [-77.719029, 39.321125], [-77.750267, 39.289284], [-77.753357, 39.280331], [-77.75306, 39.277971], [-77.753105, 39.27734], [-77.755193, 39.275191], [-77.755698, 39.274575], [-77.758412, 39.269197], [-77.758733, 39.268114], [-77.761217, 39.263721], [-77.761768, 39.263031], [-77.768, 39.257657], [-77.768992, 39.256417], [-77.767277, 39.24938], [-77.771415, 39.236776], [-77.822182, 39.139985], [-77.828157, 39.132329], [-78.032841, 39.264403], [-78.033183, 39.264624], [-78.033185, 39.264626], [-78.228766, 39.391233], [-78.347087, 39.466012], [-78.362267, 39.357784], [-78.34048, 39.353492], [-78.35894, 39.319484], [-78.360035, 39.317771], [-78.399785, 39.244129], [-78.399669, 39.243874], [-78.423968, 39.212049], [-78.427911, 39.208611], [-78.429803, 39.207014], [-78.431167, 39.205744], [-78.43213, 39.204717], [-78.437053, 39.199766], [-78.438651, 39.198049], [-78.426722, 39.188903], [-78.41074, 39.171983], [-78.418377, 39.156656], [-78.439429, 39.132146], [-78.459869, 39.113351], [-78.508132, 39.08863], [-78.544111, 39.056676], [-78.571901, 39.031995], [-78.565837, 39.026303], [-78.554222, 39.019672], [-78.557647, 39.013189], [-78.601655, 38.964603], [-78.710949, 38.910175], [-78.714135, 38.911176], [-78.716956, 38.916273], [-78.719755, 38.922135], [-78.719806, 38.922638], [-78.757278, 38.903203], [-78.779198, 38.892298], [-78.788031, 38.885123], [-78.808181, 38.856175], [-78.835191, 38.811499], [-78.869276, 38.762991] ], [ [-78.3050537109375, 38.62545397209084], [-78.3050537109375, 39.24501680713314], [-78.134765625, 39.24501680713314], [-78.134765625, 38.62545397209084], [-78.3050537109375, 38.62545397209084] ] ] }, "properties": { "stroke": "#080", "fill": "#080", "stroke-width": 6, "fill-opacity": 0.1 }, "type": "Feature" }, { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "stroke-width": 6, "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-78.869276, 38.762991], [-78.993997, 38.850102], [-78.999752, 38.846162], [-79.055354, 38.782213], [-79.057253, 38.761413], [-79.092555, 38.700149], [-79.092271, 38.699208], [-79.12353515625, 38.65929574145635], [-79.12353515625, 36.541572358223675], [-78.971814, 36.542123], [-78.970577, 36.542154], [-78.942254, 36.542079], [-78.942009, 36.542113], [-78.91542, 36.541974], [-78.914543, 36.541972], [-78.7963, 36.541713], [-78.76543, 36.541727], [-78.758392, 36.541852], [-78.734122, 36.541902], [-78.670051, 36.542035], [-78.663317, 36.542011], [-78.533013, 36.541004], [-78.529722, 36.540981], [-78.471022, 36.542307], [-78.470792, 36.542316], [-78.45697, 36.542474], [-78.441199, 36.542687], [-78.436333, 36.542666], [-78.323912, 36.543809], [-78.246681, 36.544341], [-78.245462, 36.544411], [-78.133323, 36.543847], [-78.132911, 36.543811], [-78.046202, 36.544168], [-78.03942, 36.544196], [-78.038938, 36.544173], [-77.899771, 36.544663], [-77.882357, 36.544737], [-77.87528, 36.544754], [-77.767117, 36.544752], [-77.296875, 36.544746], [-77.24969, 36.544745], [-77.1645, 36.54633], [-76.916048, 36.543815], [-76.916001, 36.543818], [-76.915384, 36.543856], [-76.807078, 36.550606], [-76.781296, 36.550659], [-76.739501953125, 36.550598474167224], [-76.739501953125, 37.14710498169436], [-76.747632, 37.150548], [-76.756899, 37.161582], [-76.796905, 37.189404], [-76.802511, 37.198308], [-76.803198, 37.201513], [-76.801023, 37.206043], [-76.791555, 37.207564], [-76.780532, 37.209336], [-76.773752, 37.206061], [-76.757765, 37.191658], [-76.75047, 37.190098], [-76.74304, 37.192611], [-76.74, 37.195379], [-76.739501953125, 37.196153427816895], [-76.739501953125, 37.806493854631356], [-76.7512, 37.824141], [-76.766328, 37.840437], [-76.782826, 37.863184], [-76.784618, 37.869569], [-76.77539, 37.874306], [-76.765711, 37.879274], [-76.747552, 37.875864], [-76.739501953125, 37.866641215052354], [-76.739501953125, 38.14916731345614], [-76.740278, 38.152824], [-76.743064, 38.156988], [-76.749685, 38.162114], [-76.760241, 38.166581], [-76.788445, 38.169199], [-76.802968, 38.167988], [-76.824274, 38.163639], [-76.838795, 38.163476], [-76.875272, 38.172207], [-76.910832, 38.197073], [-76.916922, 38.199751], [-76.937134, 38.202384], [-76.962311, 38.214075], [-76.967335, 38.227185], [-76.966553, 38.229542], [-76.962375, 38.230093], [-76.957417, 38.236341], [-76.957796, 38.243183], [-76.96215, 38.256486], [-76.981372, 38.274214], [-76.990255, 38.273935], [-76.99767, 38.278047], [-77.026304, 38.302685], [-77.030683, 38.311623], [-77.020947, 38.329273], [-77.016932, 38.341697], [-77.011827, 38.374554], [-77.024866, 38.386791], [-77.043526, 38.400548], [-77.051437, 38.399083], [-77.056032, 38.3962], [-77.069956, 38.377895], [-77.08481, 38.368297], [-77.094665, 38.367715], [-77.104717, 38.369655], [-77.138224, 38.367917], [-77.155191, 38.351047], [-77.162692, 38.345994], [-77.17934, 38.341915], [-77.199433, 38.34089], [-77.240072, 38.331598], [-77.265295, 38.333165], [-77.279633, 38.339444], [-77.286202, 38.347024], [-77.286202, 38.347025], [-77.28835, 38.351286], [-77.288145, 38.359477], [-77.296077, 38.369797], [-77.317288, 38.383576], [-77.314848, 38.389579], [-77.312201, 38.390958], [-77.310719, 38.397669], [-77.319036, 38.417803], [-77.32544, 38.44885], [-77.322622, 38.467131], [-77.310334, 38.493926], [-77.302457, 38.504683], [-77.300776, 38.506978], [-77.298844, 38.508724], [-77.29582, 38.511457], [-77.291103, 38.515721], [-77.283503, 38.525221], [-77.276303, 38.53962], [-77.276603, 38.54712], [-77.26083, 38.56533], [-77.265304, 38.580319], [-77.26443, 38.582845], [-77.247003, 38.590618], [-77.246441, 38.599532], [-77.245104, 38.620717], [-77.248904, 38.628617], [-77.246704, 38.635217], [-77.240604, 38.638917], [-77.22235, 38.638091], [-77.216303, 38.637817], [-77.205103, 38.623917], [-77.204302, 38.617817], [-77.202002, 38.617217], [-77.174902, 38.624217], [-77.157501, 38.636417], [-77.1302, 38.635017], [-77.135901, 38.649817], [-77.132501, 38.673816], [-77.121101, 38.686616], [-77.1059, 38.696815], [-77.086113, 38.705792], [-77.074599, 38.711015], [-77.05991, 38.734419], [-77.041398, 38.763914], [-77.039239, 38.7852], [-77.038598, 38.791513], [-77.032986, 38.8395], [-77.031698, 38.850512], [-77.040599, 38.871212], [-77.068199, 38.899811], [-77.0902, 38.904211], [-77.1012, 38.911111], [-77.119863, 38.934265], [-77.1199, 38.934311], [-77.137701, 38.95531], [-77.148179, 38.965002], [-77.166901, 38.96811], [-77.197502, 38.96681], [-77.221502, 38.97131], [-77.235403, 38.97661], [-77.249803, 38.985909], [-77.255703, 39.002409], [-77.251803, 39.011409], [-77.25979149316487, 39.027718840211605], [-78.56734537228446, 39.027718840211605], [-78.565837, 39.026303], [-78.554222, 39.019672], [-78.557647, 39.013189], [-78.601655, 38.964603], [-78.710949, 38.910175], [-78.714135, 38.911176], [-78.716956, 38.916273], [-78.719755, 38.922135], [-78.719806, 38.922638], [-78.757278, 38.903203], [-78.779198, 38.892298], [-78.788031, 38.885123], [-78.808181, 38.856175], [-78.835191, 38.811499], [-78.869276, 38.762991] ], [ [-78.3050537109375, 38.62545397209084], [-78.3050537109375, 39.027718840211605], [-78.134765625, 39.027718840211605], [-78.134765625, 38.62545397209084], [-78.3050537109375, 38.62545397209084] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "stroke-width": 3, "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.12353515625, 36.34167804918315], [-76.739501953125, 36.34167804918315], [-76.739501953125, 39.027718840211605], [-79.12353515625, 39.027718840211605], [-79.12353515625, 36.34167804918315] ] ] } } ] } ================================================ FILE: packages/turf-bbox-clip/test/out/polygon-holes.geojson ================================================ { "type": "FeatureCollection", "features": [ { "geometry": { "type": "Polygon", "coordinates": [ [ [-78.869276, 38.762991], [-78.993997, 38.850102], [-78.999752, 38.846162], [-79.055354, 38.782213], [-79.057253, 38.761413], [-79.092555, 38.700149], [-79.092271, 38.699208], [-79.135472, 38.644057], [-79.135546, 38.643715], [-79.136374, 38.6424], [-79.137012, 38.640655], [-79.146741, 38.625819], [-79.146974, 38.625641], [-79.174512, 38.566531], [-79.174881, 38.566314], [-79.207884, 38.500428], [-79.207873, 38.500122], [-79.209703, 38.495574], [-79.210008, 38.494283], [-79.210026, 38.494231], [-79.225839, 38.479446], [-79.23162, 38.474041], [-79.234408, 38.473011], [-79.240059, 38.469841], [-79.242024, 38.464332], [-79.26291, 38.444586], [-79.263376, 38.443762], [-79.265327, 38.441772], [-79.267414, 38.438322], [-79.282663, 38.431021], [-79.280263, 38.425475], [-79.290529, 38.420757], [-79.291813, 38.419627], [-79.295712, 38.418129], [-79.297758, 38.416438], [-79.312276, 38.411876], [-79.476638, 38.457228], [-79.521469, 38.533918], [-79.53687, 38.550917], [-79.555471, 38.560217], [-79.597955, 38.572767], [-79.649075, 38.591515], [-79.669128, 38.510975], [-79.669128, 38.510883], [-79.695565, 38.477842], [-79.699006, 38.475148], [-79.688205, 38.450476], [-79.688962, 38.449538], [-79.689544, 38.442511], [-79.691377, 38.439558], [-79.731661, 38.374143], [-79.808711, 38.309429], [-79.810115, 38.305037], [-79.788945, 38.268703], [-79.790134, 38.267654], [-79.794568, 38.264856], [-79.891999, 38.203378], [-79.892345, 38.202397], [-79.916174, 38.184386], [-79.917061, 38.183741], [-79.921196, 38.180378], [-79.921026, 38.179954], [-79.925251, 38.150465], [-79.925512, 38.150237], [-79.928683, 38.144928], [-79.928747, 38.144436], [-79.933751, 38.135508], [-79.938394, 38.130563], [-79.931034, 38.101402], [-79.933911, 38.099168], [-79.959844, 38.063697], [-79.978427, 38.029082], [-80.002507, 37.992767], [-80.055278, 37.951702], [-80.130464, 37.893194], [-80.14613, 37.884453], [-80.147316, 37.885936], [-80.148964, 37.886057], [-80.162202, 37.875122], [-80.227092, 37.798886], [-80.231551, 37.792591], [-80.257411, 37.756084], [-80.262765, 37.738336], [-80.260313, 37.733517], [-80.259342, 37.731205], [-80.263936, 37.719137], [-80.287107, 37.696403], [-80.296138, 37.691783], [-80.292337, 37.683976], [-80.292258, 37.683732], [-80.270323, 37.648982], [-80.270352, 37.648929], [-80.267455, 37.646108], [-80.267228, 37.646011], [-80.264874, 37.645511], [-80.26483, 37.645526], [-80.263291, 37.645101], [-80.263281, 37.645082], [-80.254469, 37.642333], [-80.254431, 37.642352], [-80.239288, 37.637672], [-80.220984, 37.627767], [-80.223386, 37.623185], [-80.240272, 37.606961], [-80.288766, 37.58196], [-80.312393, 37.546239], [-80.330306, 37.536244], [-80.314806, 37.500943], [-80.320627, 37.49888], [-80.425656, 37.449876], [-80.443025, 37.438126], [-80.46482, 37.426144], [-80.475601, 37.422949], [-80.494867, 37.43507], [-80.511391, 37.481672], [-80.622664, 37.433307], [-80.770082, 37.372363], [-80.776649, 37.383679], [-80.776766, 37.384131], [-80.798869, 37.395807], [-80.811639, 37.407507], [-80.85836, 37.428168], [-80.858473, 37.428301], [-80.859556, 37.429568], [-80.859558, 37.429555], [-80.862761, 37.411829], [-80.872589, 37.372347], [-80.849451, 37.346909], [-80.900535, 37.315], [-80.919259, 37.306163], [-80.947896, 37.295872], [-80.966556, 37.292158], [-80.973889, 37.291444], [-80.980044, 37.293118], [-80.981322, 37.293465], [-81.034652, 37.290751], [-81.084012, 37.284401], [-81.112596, 37.278497], [-81.167029, 37.262881], [-81.204774, 37.243013], [-81.225104, 37.234874], [-81.320105, 37.299323], [-81.362156, 37.337687], [-81.366315, 37.335927], [-81.367052, 37.334504], [-81.36809, 37.332423], [-81.369379, 37.331827], [-81.367599, 37.327569], [-81.371315, 37.324115], [-81.377349, 37.318447], [-81.380159, 37.317838], [-81.384127, 37.318596], [-81.384914, 37.318832], [-81.38581, 37.320085], [-81.386727, 37.320474], [-81.388132, 37.319903], [-81.409196, 37.286071], [-81.409729, 37.284837], [-81.504168, 37.250115], [-81.50488, 37.247697], [-81.507325, 37.2338], [-81.557315, 37.207697], [-81.558353, 37.208145], [-81.560625, 37.206663], [-81.678603, 37.202467], [-81.683544, 37.211452], [-81.728194, 37.239823], [-81.73332, 37.238127], [-81.738378, 37.240917], [-81.744291, 37.244178], [-81.74342, 37.245858], [-81.743505, 37.247601], [-81.747656, 37.264329], [-81.75129, 37.265131], [-81.752123, 37.265568], [-81.752912, 37.266614], [-81.755012, 37.26772], [-81.757531, 37.27001], [-81.757714, 37.271124], [-81.75773, 37.271934], [-81.757631, 37.274003], [-81.76022, 37.275254], [-81.761752, 37.275713], [-81.762776, 37.275391], [-81.763836, 37.275218], [-81.765195, 37.275099], [-81.767837, 37.274216], [-81.774684, 37.274807], [-81.774747, 37.274847], [-81.793425, 37.281674], [-81.793639, 37.282188], [-81.809184, 37.283003], [-81.810559, 37.28298], [-81.84231, 37.285556], [-81.843167, 37.285586], [-81.854059, 37.291352], [-81.853488, 37.294763], [-81.854465, 37.299937], [-81.853978, 37.300418], [-81.86476, 37.308404], [-81.865219, 37.308839], [-81.873213, 37.325065], [-81.878343, 37.328837], [-81.878713, 37.331753], [-81.879601, 37.332074], [-81.880886, 37.331146], [-81.885075, 37.330665], [-81.886952, 37.330725], [-81.887722, 37.331156], [-81.892876, 37.330134], [-81.893773, 37.330105], [-81.894768, 37.331381], [-81.894797, 37.332012], [-81.895489, 37.332022], [-81.896001, 37.331967], [-81.899459, 37.340277], [-81.899495, 37.341102], [-81.902992, 37.34234], [-81.903795, 37.34305], [-81.905945, 37.342775], [-81.906368, 37.34276], [-81.907322, 37.343119], [-81.907895, 37.343783], [-81.910875, 37.348729], [-81.911487, 37.348839], [-81.920711, 37.355416], [-81.921571, 37.356423], [-81.925643, 37.357316], [-81.926589, 37.358942], [-81.929915, 37.366589], [-81.930194, 37.366728], [-81.933895, 37.372747], [-81.92749, 37.413251], [-81.935621, 37.438397], [-81.949367, 37.445687], [-81.968795, 37.451496], [-81.987006, 37.454878], [-81.99227, 37.460916], [-81.996578, 37.476705], [-81.992916, 37.482969], [-81.94264, 37.508844], [-81.92787, 37.512118], [-81.968297, 37.537798], [-82.291908, 37.311642], [-82.305874, 37.3011], [-82.310793, 37.297387], [-82.350948, 37.267077], [-82.510826, 37.218091], [-82.553549, 37.200867], [-82.565329, 37.196118], [-82.565375, 37.196092], [-82.624878, 37.162932], [-82.721941, 37.105689], [-82.720597, 37.081833], [-82.722472, 37.045101], [-82.771795, 37.015716], [-82.777368, 37.015279], [-82.788897, 37.00816], [-82.789092, 37.007995], [-82.790462, 37.007263], [-82.79089, 37.00676], [-82.800531, 37.007944], [-82.815748, 37.007196], [-82.818006, 37.006161], [-82.830588, 37.000945], [-82.829125, 36.997541], [-82.830802, 36.993445], [-82.833843, 36.991973], [-82.836008, 36.988837], [-82.838549, 36.987027], [-82.840051, 36.987113], [-82.851397, 36.984497], [-82.852614, 36.984963], [-82.862926, 36.979975], [-82.864909, 36.97901], [-82.866019, 36.978272], [-82.866689, 36.978052], [-82.867535, 36.977518], [-82.868455, 36.976481], [-82.869183, 36.974183], [-82.869183, 36.974182], [-82.870274, 36.965993], [-82.87023, 36.965498], [-82.867358, 36.963182], [-82.865404, 36.958084], [-82.864211, 36.957983], [-82.862866, 36.957765], [-82.860534, 36.956015], [-82.858443, 36.954036], [-82.855705, 36.953808], [-82.856099, 36.952471], [-82.860633, 36.94584], [-82.861282, 36.944848], [-82.861684, 36.939316], [-82.860537, 36.937439], [-82.858784, 36.933065], [-82.858461, 36.932717], [-82.861943, 36.924236], [-82.863468, 36.922308], [-82.872136, 36.913456], [-82.873777, 36.912299], [-82.885618, 36.900415], [-82.91169, 36.874248], [-82.911824, 36.874243], [-82.973395, 36.859097], [-83.07259, 36.854589], [-83.099792, 36.824889], [-83.131694, 36.781488], [-83.131245, 36.767105], [-83.125655, 36.761407], [-83.125728, 36.761276], [-83.127833, 36.750828], [-83.136395, 36.743088], [-83.167396, 36.739187], [-83.199698, 36.737487], [-83.342804, 36.701286], [-83.353613, 36.696699], [-83.354606, 36.696153], [-83.460808, 36.664885], [-83.461013, 36.664916], [-83.498011, 36.670485], [-83.527212, 36.665984], [-83.649513, 36.616683], [-83.675413, 36.600814], [-83.670141, 36.600797], [-83.670128, 36.600764], [-83.472108, 36.597284], [-83.2763, 36.598187], [-83.250304, 36.593935], [-83.249899, 36.593898], [-83.248933, 36.593827], [-83.028357, 36.593893], [-83.02725, 36.593847], [-82.985087, 36.593829], [-82.830433, 36.593761], [-82.69578, 36.593698], [-82.679879, 36.593698], [-82.609176, 36.594099], [-82.561074, 36.5948], [-82.559774, 36.5948], [-82.554294, 36.594876], [-82.293814, 36.595565], [-82.243274, 36.595699], [-82.226653, 36.595743], [-82.225716, 36.595744], [-82.223445, 36.595721], [-82.221713, 36.595814], [-82.211005, 36.59586], [-82.210497, 36.595772], [-82.188491, 36.595179], [-82.18074, 36.594928], [-82.177247, 36.594768], [-82.173982, 36.594607], [-82.150727, 36.594673], [-82.148569, 36.594718], [-82.14607, 36.594712], [-81.934144, 36.594213], [-81.922644, 36.616213], [-81.826742, 36.614215], [-81.6469, 36.611918], [-81.677535, 36.588117], [-81.60697, 36.587094], [-81.521032, 36.58052], [-81.353322, 36.574723], [-81.353169, 36.574724], [-81.307511, 36.575024], [-81.061866, 36.56702], [-81.058844, 36.566976], [-80.945988, 36.563196], [-80.944338, 36.563058], [-80.901836, 36.561754], [-80.901726, 36.561751], [-80.837954, 36.559131], [-80.837641, 36.559118], [-80.837089, 36.559154], [-80.744101, 36.561686], [-80.687539, 36.561411], [-80.612158, 36.558127], [-80.4401, 36.55063], [-80.432628, 36.550302], [-80.431605, 36.550219], [-80.228263, 36.543867], [-80.225408, 36.543748], [-80.171636, 36.543219], [-80.169535, 36.54319], [-80.053455, 36.542623], [-80.027269, 36.542495], [-79.967511, 36.542502], [-79.966979, 36.542475], [-79.920239, 36.542365], [-79.714855, 36.541884], [-79.667309, 36.541772], [-79.666827, 36.541772], [-79.510961, 36.54074], [-79.510647, 36.540738], [-79.470047, 36.541025], [-79.445961, 36.541195], [-79.445687, 36.541218], [-79.342696, 36.541382], [-79.218638, 36.541579], [-79.20948, 36.541594], [-79.208686, 36.541571], [-79.137936, 36.541739], [-79.126078, 36.541533], [-79.124736, 36.541568], [-78.971814, 36.542123], [-78.970577, 36.542154], [-78.942254, 36.542079], [-78.942009, 36.542113], [-78.91542, 36.541974], [-78.914543, 36.541972], [-78.7963, 36.541713], [-78.76543, 36.541727], [-78.758392, 36.541852], [-78.734122, 36.541902], [-78.670051, 36.542035], [-78.663317, 36.542011], [-78.533013, 36.541004], [-78.529722, 36.540981], [-78.471022, 36.542307], [-78.470792, 36.542316], [-78.45697, 36.542474], [-78.441199, 36.542687], [-78.436333, 36.542666], [-78.323912, 36.543809], [-78.246681, 36.544341], [-78.245462, 36.544411], [-78.133323, 36.543847], [-78.132911, 36.543811], [-78.046202, 36.544168], [-78.03942, 36.544196], [-78.038938, 36.544173], [-77.899771, 36.544663], [-77.882357, 36.544737], [-77.87528, 36.544754], [-77.767117, 36.544752], [-77.296875, 36.544746], [-77.24969, 36.544745], [-77.1645, 36.54633], [-76.916048, 36.543815], [-76.916001, 36.543818], [-76.915384, 36.543856], [-76.807078, 36.550606], [-76.781296, 36.550659], [-76.541687, 36.550312], [-76.541391, 36.550312], [-76.491497, 36.550365], [-76.313215, 36.550551], [-76.313196, 36.550551], [-76.12236, 36.550621], [-76.034751, 36.550653], [-76.02675, 36.550553], [-75.957648, 36.550553], [-75.955748, 36.550553], [-75.953447, 36.550553], [-75.952847, 36.550553], [-75.922046, 36.550654], [-75.911446, 36.550654], [-75.909046, 36.550654], [-75.904745, 36.550654], [-75.903445, 36.550654], [-75.894145, 36.550754], [-75.893245, 36.550654], [-75.891945, 36.550754], [-75.886545, 36.550754], [-75.885945, 36.550754], [-75.880644, 36.550754], [-75.879744, 36.550754], [-75.867044, 36.550754], [-75.874145, 36.583853], [-75.890946, 36.630753], [-75.921748, 36.692051], [-75.94955, 36.76115], [-75.965451, 36.812449], [-75.972151, 36.842268], [-75.991552, 36.910847], [-75.996252, 36.922047], [-76.007553, 36.929047], [-76.013753, 36.930746], [-76.033454, 36.931946], [-76.043054, 36.927547], [-76.058154, 36.916947], [-76.087955, 36.908647], [-76.095508, 36.908817], [-76.139557, 36.923047], [-76.177019, 36.92929], [-76.189959, 36.931447], [-76.22166, 36.939547], [-76.234961, 36.945147], [-76.267962, 36.964547], [-76.285063, 36.968747], [-76.297663, 36.968147], [-76.299364, 36.965547], [-76.315867, 36.955351], [-76.322764, 36.959147], [-76.327365, 36.959447], [-76.330765, 36.938647], [-76.328864, 36.918447], [-76.333158, 36.917293], [-76.344663, 36.919313], [-76.345569, 36.924531], [-76.353765, 36.922747], [-76.385867, 36.923247], [-76.387567, 36.899547], [-76.406908, 36.897507], [-76.407507, 36.897444], [-76.43122, 36.904532], [-76.441605, 36.906116], [-76.447413, 36.90322], [-76.453941, 36.89274], [-76.45329, 36.887031], [-76.454692, 36.884077], [-76.469914, 36.882898], [-76.483369, 36.896239], [-76.482135, 36.901108], [-76.482407, 36.917364], [-76.484107, 36.928916], [-76.487559, 36.952372], [-76.500355, 36.965212], [-76.513363, 36.968057], [-76.521006, 36.973187], [-76.524142, 36.978316], [-76.522971, 36.981085], [-76.524853, 36.983833], [-76.551246, 36.998946], [-76.562923, 37.003796], [-76.565803, 37.007493], [-76.576617, 37.021374], [-76.577531, 37.022548], [-76.57816, 37.022982], [-76.579236, 37.023726], [-76.579393, 37.023835], [-76.584478, 37.027349], [-76.586491, 37.02874], [-76.612124, 37.035604], [-76.646013, 37.036228], [-76.653998, 37.039172], [-76.662558, 37.045748], [-76.66835, 37.05506], [-76.669822, 37.06426], [-76.669118, 37.068132], [-76.668295, 37.072656], [-76.667646, 37.076228], [-76.667219, 37.077149], [-76.666526, 37.078643], [-76.66555, 37.080746], [-76.659394, 37.094019], [-76.65811, 37.096787], [-76.657703, 37.101161], [-76.657101, 37.107617], [-76.656894, 37.109843], [-76.66375, 37.129979], [-76.665641, 37.135534], [-76.665833, 37.136098], [-76.666542, 37.138179], [-76.669604, 37.140534], [-76.671588, 37.14206], [-76.67147, 37.158739], [-76.66867, 37.166771], [-76.66427, 37.171027], [-76.663774, 37.173875], [-76.669886, 37.183571], [-76.685614, 37.198851], [-76.691918, 37.195731], [-76.692926, 37.186147], [-76.696735, 37.174403], [-76.715295, 37.148035], [-76.73032, 37.145395], [-76.73728, 37.146164], [-76.747632, 37.150548], [-76.756899, 37.161582], [-76.796905, 37.189404], [-76.802511, 37.198308], [-76.803198, 37.201513], [-76.801023, 37.206043], [-76.791555, 37.207564], [-76.780532, 37.209336], [-76.773752, 37.206061], [-76.757765, 37.191658], [-76.75047, 37.190098], [-76.74304, 37.192611], [-76.74, 37.195379], [-76.73432, 37.204211], [-76.730951, 37.213813], [-76.698943, 37.219059], [-76.693373, 37.221228], [-76.689166, 37.222866], [-76.649869, 37.220914], [-76.641085, 37.216002], [-76.639608, 37.214783], [-76.629868, 37.206738], [-76.623292, 37.198738], [-76.621113, 37.195103], [-76.619962, 37.193184], [-76.61934, 37.192146], [-76.618008, 37.186429], [-76.617537, 37.184409], [-76.616804, 37.18126], [-76.616268, 37.178962], [-76.614221, 37.174335], [-76.613599, 37.172931], [-76.612517, 37.170486], [-76.611018, 37.167097], [-76.610972, 37.166994], [-76.606684, 37.166674], [-76.604476, 37.160034], [-76.617084, 37.144498], [-76.622252, 37.142146], [-76.62478, 37.127091], [-76.618252, 37.119347], [-76.579499, 37.096627], [-76.567931, 37.080467], [-76.564219, 37.077507], [-76.555066, 37.075859], [-76.536875, 37.083942], [-76.528997, 37.079388], [-76.526203, 37.077773], [-76.526573, 37.070047], [-76.527973, 37.068247], [-76.526273, 37.062947], [-76.518242, 37.055351], [-76.512289, 37.054858], [-76.509339, 37.053173], [-76.507614, 37.052188], [-76.46949, 37.030414], [-76.464471, 37.027547], [-76.448231, 37.007705], [-76.449891, 37.004868], [-76.452461, 37.004603], [-76.452118, 36.998163], [-76.428869, 36.969947], [-76.418969, 36.964047], [-76.411768, 36.962847], [-76.408568, 36.969147], [-76.396368, 36.982347], [-76.387711, 36.989671], [-76.383367, 36.993347], [-76.373567, 36.998347], [-76.356366, 37.002947], [-76.348066, 37.006747], [-76.340666, 37.015246], [-76.34011, 37.015212], [-76.329531, 37.014556], [-76.318065, 37.013846], [-76.314624, 37.00933], [-76.315008, 37.001683], [-76.312048, 37.000371], [-76.304272, 37.001378], [-76.300352, 37.00885], [-76.292863, 37.035145], [-76.271262, 37.084544], [-76.274463, 37.094544], [-76.287236, 37.117453], [-76.292344, 37.126615], [-76.311088, 37.138495], [-76.324353, 37.142895], [-76.330481, 37.141727], [-76.334017, 37.144223], [-76.340129, 37.151823], [-76.34405, 37.160367], [-76.344898, 37.164479], [-76.343234, 37.166207], [-76.348658, 37.170655], [-76.35969, 37.16858], [-76.375255, 37.16084], [-76.381379, 37.155711], [-76.394756, 37.157568], [-76.399659, 37.160272], [-76.397883, 37.164415], [-76.391252, 37.179887], [-76.389284, 37.193503], [-76.396052, 37.201087], [-76.3936, 37.214049], [-76.389793, 37.222981], [-76.394132, 37.22515], [-76.471799, 37.216016], [-76.494008, 37.225408], [-76.50364, 37.233856], [-76.4989, 37.241015], [-76.493302, 37.24947], [-76.48284, 37.254831], [-76.475927, 37.250543], [-76.429141, 37.25331], [-76.421765, 37.255198], [-76.417173, 37.26395], [-76.392788, 37.264973], [-76.36229, 37.270226], [-76.349489, 37.273963], [-76.352556, 37.278334], [-76.369029, 37.279311], [-76.381075, 37.28534], [-76.385603, 37.294108], [-76.38777, 37.30767], [-76.406388, 37.332924], [-76.434965, 37.354524], [-76.445333, 37.36646], [-76.437525, 37.37975], [-76.422503, 37.381355], [-76.418176, 37.385064], [-76.418719, 37.3978], [-76.415167, 37.402133], [-76.404756, 37.400213], [-76.393125, 37.398068], [-76.393958, 37.39594], [-76.391437, 37.390284], [-76.387112, 37.385061], [-76.366751, 37.374495], [-76.337476, 37.364014], [-76.31205, 37.338088], [-76.308581, 37.329366], [-76.291324, 37.324145], [-76.282555, 37.319107], [-76.275552, 37.309964], [-76.272005, 37.322194], [-76.272888, 37.335174], [-76.264847, 37.357399], [-76.262407, 37.360786], [-76.258277, 37.36202], [-76.24846, 37.375135], [-76.245283, 37.386839], [-76.246617, 37.404122], [-76.250454, 37.421886], [-76.252415, 37.447274], [-76.265056, 37.481365], [-76.281043, 37.507821], [-76.288167, 37.514118], [-76.293599, 37.516499], [-76.297651, 37.515424], [-76.298456, 37.512677], [-76.296445, 37.511235], [-76.297739, 37.506863], [-76.306952, 37.497488], [-76.32947, 37.49492], [-76.352678, 37.504913], [-76.359378, 37.513426], [-76.360474, 37.51924], [-76.355084, 37.527364], [-76.348992, 37.536548], [-76.339989, 37.53833], [-76.330598, 37.536391], [-76.302762, 37.551295], [-76.29796, 37.557636], [-76.300144, 37.561734], [-76.332641, 37.570042], [-76.357835, 37.573699], [-76.383188, 37.573056], [-76.410781, 37.581815], [-76.420252, 37.598686], [-76.435474, 37.612807], [-76.527188, 37.611315], [-76.533777, 37.61253], [-76.542666, 37.616857], [-76.574049, 37.646781], [-76.583143, 37.661986], [-76.579591, 37.671508], [-76.597868, 37.702918], [-76.598073, 37.70912], [-76.595943, 37.712989], [-76.597213, 37.717269], [-76.606466, 37.724819], [-76.61997, 37.731271], [-76.621433, 37.737973], [-76.617373, 37.742347], [-76.61971, 37.744795], [-76.639962, 37.750941], [-76.663887, 37.751887], [-76.677002, 37.7561], [-76.680922, 37.759647], [-76.683372, 37.765507], [-76.683359, 37.770258], [-76.683343, 37.775783], [-76.681901, 37.778118], [-76.683775, 37.781391], [-76.689773, 37.78519], [-76.715498, 37.785873], [-76.723863, 37.788503], [-76.734309, 37.79866], [-76.7512, 37.824141], [-76.766328, 37.840437], [-76.782826, 37.863184], [-76.784618, 37.869569], [-76.77539, 37.874306], [-76.765711, 37.879274], [-76.747552, 37.875864], [-76.738395, 37.865373], [-76.733046, 37.852009], [-76.72718, 37.842263], [-76.722156, 37.83668], [-76.701606, 37.822677], [-76.692747, 37.82277], [-76.680197, 37.825654], [-76.658302, 37.806815], [-76.651413, 37.796239], [-76.642276, 37.792317], [-76.615351, 37.780759], [-76.602024, 37.772731], [-76.595939, 37.77168], [-76.593835, 37.772848], [-76.584289, 37.76889], [-76.576387, 37.757493], [-76.560476, 37.727827], [-76.54005, 37.704432], [-76.537228, 37.698892], [-76.535302, 37.687516], [-76.537698, 37.66893], [-76.536548, 37.663574], [-76.510187, 37.642324], [-76.501522, 37.643762], [-76.497564, 37.647056], [-76.491799, 37.663614], [-76.489576, 37.666201], [-76.472392, 37.665772], [-76.443254, 37.652347], [-76.399236, 37.628636], [-76.390054, 37.630326], [-76.381106, 37.627003], [-76.36232, 37.610368], [-76.309174, 37.621892], [-76.28037, 37.613715], [-76.279447, 37.618225], [-76.287959, 37.631771], [-76.292534, 37.636098], [-76.306464, 37.642005], [-76.332562, 37.645817], [-76.339892, 37.655966], [-76.324808, 37.676983], [-76.320216, 37.680666], [-76.315161, 37.68472], [-76.312079, 37.684651], [-76.302545, 37.689], [-76.300067, 37.695364], [-76.302803, 37.704474], [-76.312858, 37.720338], [-76.304917, 37.729913], [-76.312108, 37.750522], [-76.306489, 37.788646], [-76.310307, 37.794849], [-76.307482, 37.81235], [-76.293525, 37.822717], [-76.284904, 37.822308], [-76.281985, 37.818068], [-76.282592, 37.814109], [-76.280544, 37.812597], [-76.275178, 37.812664], [-76.266057, 37.8174], [-76.251358, 37.833072], [-76.245072, 37.861918], [-76.236725, 37.889174], [-76.265998, 37.91138], [-76.343848, 37.947345], [-76.360211, 37.952329], [-76.391439, 37.958742], [-76.416299, 37.966828], [-76.427487, 37.977038], [-76.462542, 37.998572], [-76.465291, 38.010226], [-76.469343, 38.013544], [-76.491998, 38.017222], [-76.516547, 38.026566], [-76.519536, 38.034814], [-76.522354, 38.04259], [-76.535919, 38.069532], [-76.543155, 38.076971], [-76.579497, 38.09487], [-76.600937, 38.110084], [-76.604131, 38.128771], [-76.613939, 38.148587], [-76.629476, 38.15305], [-76.638983, 38.151476], [-76.643448, 38.14825], [-76.665127, 38.147638], [-76.684892, 38.156497], [-76.701297, 38.155718], [-76.704048, 38.149264], [-76.721722, 38.137635], [-76.738938, 38.14651], [-76.740278, 38.152824], [-76.743064, 38.156988], [-76.749685, 38.162114], [-76.760241, 38.166581], [-76.788445, 38.169199], [-76.802968, 38.167988], [-76.824274, 38.163639], [-76.838795, 38.163476], [-76.875272, 38.172207], [-76.910832, 38.197073], [-76.916922, 38.199751], [-76.937134, 38.202384], [-76.962311, 38.214075], [-76.967335, 38.227185], [-76.966553, 38.229542], [-76.962375, 38.230093], [-76.957417, 38.236341], [-76.957796, 38.243183], [-76.96215, 38.256486], [-76.981372, 38.274214], [-76.990255, 38.273935], [-76.99767, 38.278047], [-77.026304, 38.302685], [-77.030683, 38.311623], [-77.020947, 38.329273], [-77.016932, 38.341697], [-77.011827, 38.374554], [-77.024866, 38.386791], [-77.043526, 38.400548], [-77.051437, 38.399083], [-77.056032, 38.3962], [-77.069956, 38.377895], [-77.08481, 38.368297], [-77.094665, 38.367715], [-77.104717, 38.369655], [-77.138224, 38.367917], [-77.155191, 38.351047], [-77.162692, 38.345994], [-77.17934, 38.341915], [-77.199433, 38.34089], [-77.240072, 38.331598], [-77.265295, 38.333165], [-77.279633, 38.339444], [-77.286202, 38.347024], [-77.286202, 38.347025], [-77.28835, 38.351286], [-77.288145, 38.359477], [-77.296077, 38.369797], [-77.317288, 38.383576], [-77.314848, 38.389579], [-77.312201, 38.390958], [-77.310719, 38.397669], [-77.319036, 38.417803], [-77.32544, 38.44885], [-77.322622, 38.467131], [-77.310334, 38.493926], [-77.302457, 38.504683], [-77.300776, 38.506978], [-77.298844, 38.508724], [-77.29582, 38.511457], [-77.291103, 38.515721], [-77.283503, 38.525221], [-77.276303, 38.53962], [-77.276603, 38.54712], [-77.26083, 38.56533], [-77.265304, 38.580319], [-77.26443, 38.582845], [-77.247003, 38.590618], [-77.246441, 38.599532], [-77.245104, 38.620717], [-77.248904, 38.628617], [-77.246704, 38.635217], [-77.240604, 38.638917], [-77.22235, 38.638091], [-77.216303, 38.637817], [-77.205103, 38.623917], [-77.204302, 38.617817], [-77.202002, 38.617217], [-77.174902, 38.624217], [-77.157501, 38.636417], [-77.1302, 38.635017], [-77.135901, 38.649817], [-77.132501, 38.673816], [-77.121101, 38.686616], [-77.1059, 38.696815], [-77.086113, 38.705792], [-77.074599, 38.711015], [-77.05991, 38.734419], [-77.041398, 38.763914], [-77.039239, 38.7852], [-77.038598, 38.791513], [-77.032986, 38.8395], [-77.031698, 38.850512], [-77.040599, 38.871212], [-77.068199, 38.899811], [-77.0902, 38.904211], [-77.1012, 38.911111], [-77.119863, 38.934265], [-77.1199, 38.934311], [-77.137701, 38.95531], [-77.148179, 38.965002], [-77.166901, 38.96811], [-77.197502, 38.96681], [-77.221502, 38.97131], [-77.235403, 38.97661], [-77.249803, 38.985909], [-77.255703, 39.002409], [-77.251803, 39.011409], [-77.261403, 39.031009], [-77.291605, 39.045408], [-77.328002, 39.058554], [-77.340287, 39.062991], [-77.375079, 39.061297], [-77.42318, 39.066878], [-77.458202, 39.073723], [-77.519929, 39.120925], [-77.524559, 39.127821], [-77.527282, 39.146236], [-77.516426, 39.170891], [-77.510631, 39.178484], [-77.505162, 39.18205], [-77.485971, 39.185665], [-77.478596, 39.189168], [-77.458884, 39.219826], [-77.458779, 39.22028], [-77.45768, 39.22502], [-77.46021, 39.228359], [-77.484605, 39.245941], [-77.511222, 39.2535], [-77.534461, 39.262361], [-77.543228, 39.266937], [-77.545846, 39.271535], [-77.560854, 39.286152], [-77.592739, 39.30129], [-77.667749, 39.318129], [-77.677505, 39.318699], [-77.719029, 39.321125], [-77.750267, 39.289284], [-77.753357, 39.280331], [-77.75306, 39.277971], [-77.753105, 39.27734], [-77.755193, 39.275191], [-77.755698, 39.274575], [-77.758412, 39.269197], [-77.758733, 39.268114], [-77.761217, 39.263721], [-77.761768, 39.263031], [-77.768, 39.257657], [-77.768992, 39.256417], [-77.767277, 39.24938], [-77.771415, 39.236776], [-77.822182, 39.139985], [-77.828157, 39.132329], [-78.032841, 39.264403], [-78.033183, 39.264624], [-78.033185, 39.264626], [-78.228766, 39.391233], [-78.347087, 39.466012], [-78.362267, 39.357784], [-78.34048, 39.353492], [-78.35894, 39.319484], [-78.360035, 39.317771], [-78.399785, 39.244129], [-78.399669, 39.243874], [-78.423968, 39.212049], [-78.427911, 39.208611], [-78.429803, 39.207014], [-78.431167, 39.205744], [-78.43213, 39.204717], [-78.437053, 39.199766], [-78.438651, 39.198049], [-78.426722, 39.188903], [-78.41074, 39.171983], [-78.418377, 39.156656], [-78.439429, 39.132146], [-78.459869, 39.113351], [-78.508132, 39.08863], [-78.544111, 39.056676], [-78.571901, 39.031995], [-78.565837, 39.026303], [-78.554222, 39.019672], [-78.557647, 39.013189], [-78.601655, 38.964603], [-78.710949, 38.910175], [-78.714135, 38.911176], [-78.716956, 38.916273], [-78.719755, 38.922135], [-78.719806, 38.922638], [-78.757278, 38.903203], [-78.779198, 38.892298], [-78.788031, 38.885123], [-78.808181, 38.856175], [-78.835191, 38.811499], [-78.869276, 38.762991] ], [ [-78.8214111328125, 38.45789034424927], [-78.8214111328125, 38.66406704456943], [-78.5247802734375, 38.66406704456943], [-78.5247802734375, 38.45789034424927], [-78.8214111328125, 38.45789034424927] ], [ [-78.2940673828125, 39.138581990583525], [-78.2940673828125, 39.30029918615032], [-78.145751953125, 39.30029918615032], [-78.145751953125, 39.138581990583525], [-78.2940673828125, 39.138581990583525] ] ] }, "properties": { "stroke": "#080", "fill": "#080", "stroke-width": 6, "fill-opacity": 0.1 }, "type": "Feature" }, { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "stroke-width": 6, "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-78.869276, 38.762991], [-78.993997, 38.850102], [-78.999752, 38.846162], [-79.055354, 38.782213], [-79.057253, 38.761413], [-79.092555, 38.700149], [-79.092271, 38.699208], [-79.135472, 38.644057], [-79.135546, 38.643715], [-79.136374, 38.6424], [-79.137012, 38.640655], [-79.146741, 38.625819], [-79.146974, 38.625641], [-79.174512, 38.566531], [-79.174881, 38.566314], [-79.207884, 38.500428], [-79.207873, 38.500122], [-79.209703, 38.495574], [-79.210008, 38.494283], [-79.210026, 38.494231], [-79.225839, 38.479446], [-79.23162, 38.474041], [-79.234408, 38.473011], [-79.240059, 38.469841], [-79.242024, 38.464332], [-79.26291, 38.444586], [-79.263376, 38.443762], [-79.265327, 38.441772], [-79.267414, 38.438322], [-79.282663, 38.431021], [-79.280263, 38.425475], [-79.290529, 38.420757], [-79.291813, 38.419627], [-79.295712, 38.418129], [-79.297758, 38.416438], [-79.312276, 38.411876], [-79.476638, 38.457228], [-79.521469, 38.533918], [-79.53687, 38.550917], [-79.555471, 38.560217], [-79.597955, 38.572767], [-79.60693359375, 38.576059853592035], [-79.60693359375, 36.5413754414481], [-79.510961, 36.54074], [-79.510647, 36.540738], [-79.470047, 36.541025], [-79.445961, 36.541195], [-79.445687, 36.541218], [-79.342696, 36.541382], [-79.218638, 36.541579], [-79.20948, 36.541594], [-79.208686, 36.541571], [-79.137936, 36.541739], [-79.126078, 36.541533], [-79.124736, 36.541568], [-78.971814, 36.542123], [-78.970577, 36.542154], [-78.942254, 36.542079], [-78.942009, 36.542113], [-78.91542, 36.541974], [-78.914543, 36.541972], [-78.7963, 36.541713], [-78.76543, 36.541727], [-78.758392, 36.541852], [-78.734122, 36.541902], [-78.670051, 36.542035], [-78.663317, 36.542011], [-78.533013, 36.541004], [-78.529722, 36.540981], [-78.471022, 36.542307], [-78.470792, 36.542316], [-78.45697, 36.542474], [-78.441199, 36.542687], [-78.436333, 36.542666], [-78.323912, 36.543809], [-78.246681, 36.544341], [-78.245462, 36.544411], [-78.133323, 36.543847], [-78.132911, 36.543811], [-78.046202, 36.544168], [-78.03942, 36.544196], [-78.038938, 36.544173], [-77.899771, 36.544663], [-77.882357, 36.544737], [-77.87528, 36.544754], [-77.767117, 36.544752], [-77.296875, 36.544746], [-77.24969, 36.544745], [-77.1645, 36.54633], [-76.916048, 36.543815], [-76.916001, 36.543818], [-76.915384, 36.543856], [-76.807078, 36.550606], [-76.781296, 36.550659], [-76.717529296875, 36.55056665352727], [-76.717529296875, 37.147642418053245], [-76.73032, 37.145395], [-76.73728, 37.146164], [-76.747632, 37.150548], [-76.756899, 37.161582], [-76.796905, 37.189404], [-76.802511, 37.198308], [-76.803198, 37.201513], [-76.801023, 37.206043], [-76.791555, 37.207564], [-76.780532, 37.209336], [-76.773752, 37.206061], [-76.757765, 37.191658], [-76.75047, 37.190098], [-76.74304, 37.192611], [-76.74, 37.195379], [-76.73432, 37.204211], [-76.730951, 37.213813], [-76.717529296875, 37.21601277051343], [-76.717529296875, 37.78651165042215], [-76.723863, 37.788503], [-76.734309, 37.79866], [-76.7512, 37.824141], [-76.766328, 37.840437], [-76.782826, 37.863184], [-76.784618, 37.869569], [-76.77539, 37.874306], [-76.765711, 37.879274], [-76.747552, 37.875864], [-76.738395, 37.865373], [-76.733046, 37.852009], [-76.72718, 37.842263], [-76.722156, 37.83668], [-76.717529296875, 37.833527312707574], [-76.717529296875, 38.14039368194187], [-76.721722, 38.137635], [-76.738938, 38.14651], [-76.740278, 38.152824], [-76.743064, 38.156988], [-76.749685, 38.162114], [-76.760241, 38.166581], [-76.788445, 38.169199], [-76.802968, 38.167988], [-76.824274, 38.163639], [-76.838795, 38.163476], [-76.875272, 38.172207], [-76.910832, 38.197073], [-76.916922, 38.199751], [-76.937134, 38.202384], [-76.962311, 38.214075], [-76.967335, 38.227185], [-76.966553, 38.229542], [-76.962375, 38.230093], [-76.957417, 38.236341], [-76.957796, 38.243183], [-76.96215, 38.256486], [-76.981372, 38.274214], [-76.990255, 38.273935], [-76.99767, 38.278047], [-77.026304, 38.302685], [-77.030683, 38.311623], [-77.020947, 38.329273], [-77.016932, 38.341697], [-77.011827, 38.374554], [-77.024866, 38.386791], [-77.043526, 38.400548], [-77.051437, 38.399083], [-77.056032, 38.3962], [-77.069956, 38.377895], [-77.08481, 38.368297], [-77.094665, 38.367715], [-77.104717, 38.369655], [-77.138224, 38.367917], [-77.155191, 38.351047], [-77.162692, 38.345994], [-77.17934, 38.341915], [-77.199433, 38.34089], [-77.240072, 38.331598], [-77.265295, 38.333165], [-77.279633, 38.339444], [-77.286202, 38.347024], [-77.286202, 38.347025], [-77.28835, 38.351286], [-77.288145, 38.359477], [-77.296077, 38.369797], [-77.317288, 38.383576], [-77.314848, 38.389579], [-77.312201, 38.390958], [-77.310719, 38.397669], [-77.319036, 38.417803], [-77.32544, 38.44885], [-77.322622, 38.467131], [-77.310334, 38.493926], [-77.302457, 38.504683], [-77.300776, 38.506978], [-77.298844, 38.508724], [-77.29582, 38.511457], [-77.291103, 38.515721], [-77.283503, 38.525221], [-77.276303, 38.53962], [-77.276603, 38.54712], [-77.26083, 38.56533], [-77.265304, 38.580319], [-77.26443, 38.582845], [-77.247003, 38.590618], [-77.246441, 38.599532], [-77.245104, 38.620717], [-77.248904, 38.628617], [-77.246704, 38.635217], [-77.240604, 38.638917], [-77.22235, 38.638091], [-77.216303, 38.637817], [-77.205103, 38.623917], [-77.204302, 38.617817], [-77.202002, 38.617217], [-77.174902, 38.624217], [-77.157501, 38.636417], [-77.1302, 38.635017], [-77.135901, 38.649817], [-77.132501, 38.673816], [-77.121101, 38.686616], [-77.1059, 38.696815], [-77.086113, 38.705792], [-77.074599, 38.711015], [-77.05991, 38.734419], [-77.041398, 38.763914], [-77.039239, 38.7852], [-77.038598, 38.791513], [-77.032986, 38.8395], [-77.031698, 38.850512], [-77.040599, 38.871212], [-77.068199, 38.899811], [-77.0902, 38.904211], [-77.1012, 38.911111], [-77.119863, 38.934265], [-77.1199, 38.934311], [-77.137701, 38.95531], [-77.148179, 38.965002], [-77.166901, 38.96811], [-77.197502, 38.96681], [-77.221502, 38.97131], [-77.235403, 38.97661], [-77.249803, 38.985909], [-77.255703, 39.002409], [-77.251803, 39.011409], [-77.261403, 39.031009], [-77.291605, 39.045408], [-77.328002, 39.058554], [-77.340287, 39.062991], [-77.375079, 39.061297], [-77.42318, 39.066878], [-77.458202, 39.073723], [-77.46498265519503, 39.07890809706475], [-78.51907849639193, 39.07890809706475], [-78.544111, 39.056676], [-78.571901, 39.031995], [-78.565837, 39.026303], [-78.554222, 39.019672], [-78.557647, 39.013189], [-78.601655, 38.964603], [-78.710949, 38.910175], [-78.714135, 38.911176], [-78.716956, 38.916273], [-78.719755, 38.922135], [-78.719806, 38.922638], [-78.757278, 38.903203], [-78.779198, 38.892298], [-78.788031, 38.885123], [-78.808181, 38.856175], [-78.835191, 38.811499], [-78.869276, 38.762991] ], [ [-78.8214111328125, 38.45789034424927], [-78.8214111328125, 38.66406704456943], [-78.5247802734375, 38.66406704456943], [-78.5247802734375, 38.45789034424927], [-78.8214111328125, 38.45789034424927] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "stroke-width": 3, "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.60693359375, 36.38591277287651], [-76.717529296875, 36.38591277287651], [-76.717529296875, 39.07890809706475], [-79.60693359375, 39.07890809706475], [-79.60693359375, 36.38591277287651] ] ] } } ] } ================================================ FILE: packages/turf-bbox-clip/test/out/polygon-point-intersection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#080", "fill": "#080", "stroke-width": 6, "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [115.872872384, -31.977789227500004], [115.87413347200001, -31.978896027], [115.874207392, -31.978955634], [115.874293312, -31.978886666], [115.875, -31.9782948325], [115.873511744, -31.977027638], [115.8731464, -31.977071372], [115.872185504, -31.9771863865], [115.872872384, -31.977789227500004] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "stroke-width": 6, "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "stroke-width": 3, "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [115.875, -31.98], [115.88, -31.98], [115.88, -31.975], [115.875, -31.975], [115.875, -31.98] ] ] } } ] } ================================================ FILE: packages/turf-bbox-clip/test/out/polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "geometry": { "type": "Polygon", "coordinates": [ [ [-78.869276, 38.762991], [-78.993997, 38.850102], [-78.999752, 38.846162], [-79.055354, 38.782213], [-79.057253, 38.761413], [-79.092555, 38.700149], [-79.092271, 38.699208], [-79.135472, 38.644057], [-79.135546, 38.643715], [-79.136374, 38.6424], [-79.137012, 38.640655], [-79.146741, 38.625819], [-79.146974, 38.625641], [-79.174512, 38.566531], [-79.174881, 38.566314], [-79.207884, 38.500428], [-79.207873, 38.500122], [-79.209703, 38.495574], [-79.210008, 38.494283], [-79.210026, 38.494231], [-79.225839, 38.479446], [-79.23162, 38.474041], [-79.234408, 38.473011], [-79.240059, 38.469841], [-79.242024, 38.464332], [-79.26291, 38.444586], [-79.263376, 38.443762], [-79.265327, 38.441772], [-79.267414, 38.438322], [-79.282663, 38.431021], [-79.280263, 38.425475], [-79.290529, 38.420757], [-79.291813, 38.419627], [-79.295712, 38.418129], [-79.297758, 38.416438], [-79.312276, 38.411876], [-79.476638, 38.457228], [-79.521469, 38.533918], [-79.53687, 38.550917], [-79.555471, 38.560217], [-79.597955, 38.572767], [-79.649075, 38.591515], [-79.669128, 38.510975], [-79.669128, 38.510883], [-79.695565, 38.477842], [-79.699006, 38.475148], [-79.688205, 38.450476], [-79.688962, 38.449538], [-79.689544, 38.442511], [-79.691377, 38.439558], [-79.731661, 38.374143], [-79.808711, 38.309429], [-79.810115, 38.305037], [-79.788945, 38.268703], [-79.790134, 38.267654], [-79.794568, 38.264856], [-79.891999, 38.203378], [-79.892345, 38.202397], [-79.916174, 38.184386], [-79.917061, 38.183741], [-79.921196, 38.180378], [-79.921026, 38.179954], [-79.925251, 38.150465], [-79.925512, 38.150237], [-79.928683, 38.144928], [-79.928747, 38.144436], [-79.933751, 38.135508], [-79.938394, 38.130563], [-79.931034, 38.101402], [-79.933911, 38.099168], [-79.959844, 38.063697], [-79.978427, 38.029082], [-80.002507, 37.992767], [-80.055278, 37.951702], [-80.130464, 37.893194], [-80.14613, 37.884453], [-80.147316, 37.885936], [-80.148964, 37.886057], [-80.162202, 37.875122], [-80.227092, 37.798886], [-80.231551, 37.792591], [-80.257411, 37.756084], [-80.262765, 37.738336], [-80.260313, 37.733517], [-80.259342, 37.731205], [-80.263936, 37.719137], [-80.287107, 37.696403], [-80.296138, 37.691783], [-80.292337, 37.683976], [-80.292258, 37.683732], [-80.270323, 37.648982], [-80.270352, 37.648929], [-80.267455, 37.646108], [-80.267228, 37.646011], [-80.264874, 37.645511], [-80.26483, 37.645526], [-80.263291, 37.645101], [-80.263281, 37.645082], [-80.254469, 37.642333], [-80.254431, 37.642352], [-80.239288, 37.637672], [-80.220984, 37.627767], [-80.223386, 37.623185], [-80.240272, 37.606961], [-80.288766, 37.58196], [-80.312393, 37.546239], [-80.330306, 37.536244], [-80.314806, 37.500943], [-80.320627, 37.49888], [-80.425656, 37.449876], [-80.443025, 37.438126], [-80.46482, 37.426144], [-80.475601, 37.422949], [-80.494867, 37.43507], [-80.511391, 37.481672], [-80.622664, 37.433307], [-80.770082, 37.372363], [-80.776649, 37.383679], [-80.776766, 37.384131], [-80.798869, 37.395807], [-80.811639, 37.407507], [-80.85836, 37.428168], [-80.858473, 37.428301], [-80.859556, 37.429568], [-80.859558, 37.429555], [-80.862761, 37.411829], [-80.872589, 37.372347], [-80.849451, 37.346909], [-80.900535, 37.315], [-80.919259, 37.306163], [-80.947896, 37.295872], [-80.966556, 37.292158], [-80.973889, 37.291444], [-80.980044, 37.293118], [-80.981322, 37.293465], [-81.034652, 37.290751], [-81.084012, 37.284401], [-81.112596, 37.278497], [-81.167029, 37.262881], [-81.204774, 37.243013], [-81.225104, 37.234874], [-81.320105, 37.299323], [-81.362156, 37.337687], [-81.366315, 37.335927], [-81.367052, 37.334504], [-81.36809, 37.332423], [-81.369379, 37.331827], [-81.367599, 37.327569], [-81.371315, 37.324115], [-81.377349, 37.318447], [-81.380159, 37.317838], [-81.384127, 37.318596], [-81.384914, 37.318832], [-81.38581, 37.320085], [-81.386727, 37.320474], [-81.388132, 37.319903], [-81.409196, 37.286071], [-81.409729, 37.284837], [-81.504168, 37.250115], [-81.50488, 37.247697], [-81.507325, 37.2338], [-81.557315, 37.207697], [-81.558353, 37.208145], [-81.560625, 37.206663], [-81.678603, 37.202467], [-81.683544, 37.211452], [-81.728194, 37.239823], [-81.73332, 37.238127], [-81.738378, 37.240917], [-81.744291, 37.244178], [-81.74342, 37.245858], [-81.743505, 37.247601], [-81.747656, 37.264329], [-81.75129, 37.265131], [-81.752123, 37.265568], [-81.752912, 37.266614], [-81.755012, 37.26772], [-81.757531, 37.27001], [-81.757714, 37.271124], [-81.75773, 37.271934], [-81.757631, 37.274003], [-81.76022, 37.275254], [-81.761752, 37.275713], [-81.762776, 37.275391], [-81.763836, 37.275218], [-81.765195, 37.275099], [-81.767837, 37.274216], [-81.774684, 37.274807], [-81.774747, 37.274847], [-81.793425, 37.281674], [-81.793639, 37.282188], [-81.809184, 37.283003], [-81.810559, 37.28298], [-81.84231, 37.285556], [-81.843167, 37.285586], [-81.854059, 37.291352], [-81.853488, 37.294763], [-81.854465, 37.299937], [-81.853978, 37.300418], [-81.86476, 37.308404], [-81.865219, 37.308839], [-81.873213, 37.325065], [-81.878343, 37.328837], [-81.878713, 37.331753], [-81.879601, 37.332074], [-81.880886, 37.331146], [-81.885075, 37.330665], [-81.886952, 37.330725], [-81.887722, 37.331156], [-81.892876, 37.330134], [-81.893773, 37.330105], [-81.894768, 37.331381], [-81.894797, 37.332012], [-81.895489, 37.332022], [-81.896001, 37.331967], [-81.899459, 37.340277], [-81.899495, 37.341102], [-81.902992, 37.34234], [-81.903795, 37.34305], [-81.905945, 37.342775], [-81.906368, 37.34276], [-81.907322, 37.343119], [-81.907895, 37.343783], [-81.910875, 37.348729], [-81.911487, 37.348839], [-81.920711, 37.355416], [-81.921571, 37.356423], [-81.925643, 37.357316], [-81.926589, 37.358942], [-81.929915, 37.366589], [-81.930194, 37.366728], [-81.933895, 37.372747], [-81.92749, 37.413251], [-81.935621, 37.438397], [-81.949367, 37.445687], [-81.968795, 37.451496], [-81.987006, 37.454878], [-81.99227, 37.460916], [-81.996578, 37.476705], [-81.992916, 37.482969], [-81.94264, 37.508844], [-81.92787, 37.512118], [-81.968297, 37.537798], [-82.291908, 37.311642], [-82.305874, 37.3011], [-82.310793, 37.297387], [-82.350948, 37.267077], [-82.510826, 37.218091], [-82.553549, 37.200867], [-82.565329, 37.196118], [-82.565375, 37.196092], [-82.624878, 37.162932], [-82.721941, 37.105689], [-82.720597, 37.081833], [-82.722472, 37.045101], [-82.771795, 37.015716], [-82.777368, 37.015279], [-82.788897, 37.00816], [-82.789092, 37.007995], [-82.790462, 37.007263], [-82.79089, 37.00676], [-82.800531, 37.007944], [-82.815748, 37.007196], [-82.818006, 37.006161], [-82.830588, 37.000945], [-82.829125, 36.997541], [-82.830802, 36.993445], [-82.833843, 36.991973], [-82.836008, 36.988837], [-82.838549, 36.987027], [-82.840051, 36.987113], [-82.851397, 36.984497], [-82.852614, 36.984963], [-82.862926, 36.979975], [-82.864909, 36.97901], [-82.866019, 36.978272], [-82.866689, 36.978052], [-82.867535, 36.977518], [-82.868455, 36.976481], [-82.869183, 36.974183], [-82.869183, 36.974182], [-82.870274, 36.965993], [-82.87023, 36.965498], [-82.867358, 36.963182], [-82.865404, 36.958084], [-82.864211, 36.957983], [-82.862866, 36.957765], [-82.860534, 36.956015], [-82.858443, 36.954036], [-82.855705, 36.953808], [-82.856099, 36.952471], [-82.860633, 36.94584], [-82.861282, 36.944848], [-82.861684, 36.939316], [-82.860537, 36.937439], [-82.858784, 36.933065], [-82.858461, 36.932717], [-82.861943, 36.924236], [-82.863468, 36.922308], [-82.872136, 36.913456], [-82.873777, 36.912299], [-82.885618, 36.900415], [-82.91169, 36.874248], [-82.911824, 36.874243], [-82.973395, 36.859097], [-83.07259, 36.854589], [-83.099792, 36.824889], [-83.131694, 36.781488], [-83.131245, 36.767105], [-83.125655, 36.761407], [-83.125728, 36.761276], [-83.127833, 36.750828], [-83.136395, 36.743088], [-83.167396, 36.739187], [-83.199698, 36.737487], [-83.342804, 36.701286], [-83.353613, 36.696699], [-83.354606, 36.696153], [-83.460808, 36.664885], [-83.461013, 36.664916], [-83.498011, 36.670485], [-83.527212, 36.665984], [-83.649513, 36.616683], [-83.675413, 36.600814], [-83.670141, 36.600797], [-83.670128, 36.600764], [-83.472108, 36.597284], [-83.2763, 36.598187], [-83.250304, 36.593935], [-83.249899, 36.593898], [-83.248933, 36.593827], [-83.028357, 36.593893], [-83.02725, 36.593847], [-82.985087, 36.593829], [-82.830433, 36.593761], [-82.69578, 36.593698], [-82.679879, 36.593698], [-82.609176, 36.594099], [-82.561074, 36.5948], [-82.559774, 36.5948], [-82.554294, 36.594876], [-82.293814, 36.595565], [-82.243274, 36.595699], [-82.226653, 36.595743], [-82.225716, 36.595744], [-82.223445, 36.595721], [-82.221713, 36.595814], [-82.211005, 36.59586], [-82.210497, 36.595772], [-82.188491, 36.595179], [-82.18074, 36.594928], [-82.177247, 36.594768], [-82.173982, 36.594607], [-82.150727, 36.594673], [-82.148569, 36.594718], [-82.14607, 36.594712], [-81.934144, 36.594213], [-81.922644, 36.616213], [-81.826742, 36.614215], [-81.6469, 36.611918], [-81.677535, 36.588117], [-81.60697, 36.587094], [-81.521032, 36.58052], [-81.353322, 36.574723], [-81.353169, 36.574724], [-81.307511, 36.575024], [-81.061866, 36.56702], [-81.058844, 36.566976], [-80.945988, 36.563196], [-80.944338, 36.563058], [-80.901836, 36.561754], [-80.901726, 36.561751], [-80.837954, 36.559131], [-80.837641, 36.559118], [-80.837089, 36.559154], [-80.744101, 36.561686], [-80.687539, 36.561411], [-80.612158, 36.558127], [-80.4401, 36.55063], [-80.432628, 36.550302], [-80.431605, 36.550219], [-80.228263, 36.543867], [-80.225408, 36.543748], [-80.171636, 36.543219], [-80.169535, 36.54319], [-80.053455, 36.542623], [-80.027269, 36.542495], [-79.967511, 36.542502], [-79.966979, 36.542475], [-79.920239, 36.542365], [-79.714855, 36.541884], [-79.667309, 36.541772], [-79.666827, 36.541772], [-79.510961, 36.54074], [-79.510647, 36.540738], [-79.470047, 36.541025], [-79.445961, 36.541195], [-79.445687, 36.541218], [-79.342696, 36.541382], [-79.218638, 36.541579], [-79.20948, 36.541594], [-79.208686, 36.541571], [-79.137936, 36.541739], [-79.126078, 36.541533], [-79.124736, 36.541568], [-78.971814, 36.542123], [-78.970577, 36.542154], [-78.942254, 36.542079], [-78.942009, 36.542113], [-78.91542, 36.541974], [-78.914543, 36.541972], [-78.7963, 36.541713], [-78.76543, 36.541727], [-78.758392, 36.541852], [-78.734122, 36.541902], [-78.670051, 36.542035], [-78.663317, 36.542011], [-78.533013, 36.541004], [-78.529722, 36.540981], [-78.471022, 36.542307], [-78.470792, 36.542316], [-78.45697, 36.542474], [-78.441199, 36.542687], [-78.436333, 36.542666], [-78.323912, 36.543809], [-78.246681, 36.544341], [-78.245462, 36.544411], [-78.133323, 36.543847], [-78.132911, 36.543811], [-78.046202, 36.544168], [-78.03942, 36.544196], [-78.038938, 36.544173], [-77.899771, 36.544663], [-77.882357, 36.544737], [-77.87528, 36.544754], [-77.767117, 36.544752], [-77.296875, 36.544746], [-77.24969, 36.544745], [-77.1645, 36.54633], [-76.916048, 36.543815], [-76.916001, 36.543818], [-76.915384, 36.543856], [-76.807078, 36.550606], [-76.781296, 36.550659], [-76.541687, 36.550312], [-76.541391, 36.550312], [-76.491497, 36.550365], [-76.313215, 36.550551], [-76.313196, 36.550551], [-76.12236, 36.550621], [-76.034751, 36.550653], [-76.02675, 36.550553], [-75.957648, 36.550553], [-75.955748, 36.550553], [-75.953447, 36.550553], [-75.952847, 36.550553], [-75.922046, 36.550654], [-75.911446, 36.550654], [-75.909046, 36.550654], [-75.904745, 36.550654], [-75.903445, 36.550654], [-75.894145, 36.550754], [-75.893245, 36.550654], [-75.891945, 36.550754], [-75.886545, 36.550754], [-75.885945, 36.550754], [-75.880644, 36.550754], [-75.879744, 36.550754], [-75.867044, 36.550754], [-75.874145, 36.583853], [-75.890946, 36.630753], [-75.921748, 36.692051], [-75.94955, 36.76115], [-75.965451, 36.812449], [-75.972151, 36.842268], [-75.991552, 36.910847], [-75.996252, 36.922047], [-76.007553, 36.929047], [-76.013753, 36.930746], [-76.033454, 36.931946], [-76.043054, 36.927547], [-76.058154, 36.916947], [-76.087955, 36.908647], [-76.095508, 36.908817], [-76.139557, 36.923047], [-76.177019, 36.92929], [-76.189959, 36.931447], [-76.22166, 36.939547], [-76.234961, 36.945147], [-76.267962, 36.964547], [-76.285063, 36.968747], [-76.297663, 36.968147], [-76.299364, 36.965547], [-76.315867, 36.955351], [-76.322764, 36.959147], [-76.327365, 36.959447], [-76.330765, 36.938647], [-76.328864, 36.918447], [-76.333158, 36.917293], [-76.344663, 36.919313], [-76.345569, 36.924531], [-76.353765, 36.922747], [-76.385867, 36.923247], [-76.387567, 36.899547], [-76.406908, 36.897507], [-76.407507, 36.897444], [-76.43122, 36.904532], [-76.441605, 36.906116], [-76.447413, 36.90322], [-76.453941, 36.89274], [-76.45329, 36.887031], [-76.454692, 36.884077], [-76.469914, 36.882898], [-76.483369, 36.896239], [-76.482135, 36.901108], [-76.482407, 36.917364], [-76.484107, 36.928916], [-76.487559, 36.952372], [-76.500355, 36.965212], [-76.513363, 36.968057], [-76.521006, 36.973187], [-76.524142, 36.978316], [-76.522971, 36.981085], [-76.524853, 36.983833], [-76.551246, 36.998946], [-76.562923, 37.003796], [-76.565803, 37.007493], [-76.576617, 37.021374], [-76.577531, 37.022548], [-76.57816, 37.022982], [-76.579236, 37.023726], [-76.579393, 37.023835], [-76.584478, 37.027349], [-76.586491, 37.02874], [-76.612124, 37.035604], [-76.646013, 37.036228], [-76.653998, 37.039172], [-76.662558, 37.045748], [-76.66835, 37.05506], [-76.669822, 37.06426], [-76.669118, 37.068132], [-76.668295, 37.072656], [-76.667646, 37.076228], [-76.667219, 37.077149], [-76.666526, 37.078643], [-76.66555, 37.080746], [-76.659394, 37.094019], [-76.65811, 37.096787], [-76.657703, 37.101161], [-76.657101, 37.107617], [-76.656894, 37.109843], [-76.66375, 37.129979], [-76.665641, 37.135534], [-76.665833, 37.136098], [-76.666542, 37.138179], [-76.669604, 37.140534], [-76.671588, 37.14206], [-76.67147, 37.158739], [-76.66867, 37.166771], [-76.66427, 37.171027], [-76.663774, 37.173875], [-76.669886, 37.183571], [-76.685614, 37.198851], [-76.691918, 37.195731], [-76.692926, 37.186147], [-76.696735, 37.174403], [-76.715295, 37.148035], [-76.73032, 37.145395], [-76.73728, 37.146164], [-76.747632, 37.150548], [-76.756899, 37.161582], [-76.796905, 37.189404], [-76.802511, 37.198308], [-76.803198, 37.201513], [-76.801023, 37.206043], [-76.791555, 37.207564], [-76.780532, 37.209336], [-76.773752, 37.206061], [-76.757765, 37.191658], [-76.75047, 37.190098], [-76.74304, 37.192611], [-76.74, 37.195379], [-76.73432, 37.204211], [-76.730951, 37.213813], [-76.698943, 37.219059], [-76.693373, 37.221228], [-76.689166, 37.222866], [-76.649869, 37.220914], [-76.641085, 37.216002], [-76.639608, 37.214783], [-76.629868, 37.206738], [-76.623292, 37.198738], [-76.621113, 37.195103], [-76.619962, 37.193184], [-76.61934, 37.192146], [-76.618008, 37.186429], [-76.617537, 37.184409], [-76.616804, 37.18126], [-76.616268, 37.178962], [-76.614221, 37.174335], [-76.613599, 37.172931], [-76.612517, 37.170486], [-76.611018, 37.167097], [-76.610972, 37.166994], [-76.606684, 37.166674], [-76.604476, 37.160034], [-76.617084, 37.144498], [-76.622252, 37.142146], [-76.62478, 37.127091], [-76.618252, 37.119347], [-76.579499, 37.096627], [-76.567931, 37.080467], [-76.564219, 37.077507], [-76.555066, 37.075859], [-76.536875, 37.083942], [-76.528997, 37.079388], [-76.526203, 37.077773], [-76.526573, 37.070047], [-76.527973, 37.068247], [-76.526273, 37.062947], [-76.518242, 37.055351], [-76.512289, 37.054858], [-76.509339, 37.053173], [-76.507614, 37.052188], [-76.46949, 37.030414], [-76.464471, 37.027547], [-76.448231, 37.007705], [-76.449891, 37.004868], [-76.452461, 37.004603], [-76.452118, 36.998163], [-76.428869, 36.969947], [-76.418969, 36.964047], [-76.411768, 36.962847], [-76.408568, 36.969147], [-76.396368, 36.982347], [-76.387711, 36.989671], [-76.383367, 36.993347], [-76.373567, 36.998347], [-76.356366, 37.002947], [-76.348066, 37.006747], [-76.340666, 37.015246], [-76.34011, 37.015212], [-76.329531, 37.014556], [-76.318065, 37.013846], [-76.314624, 37.00933], [-76.315008, 37.001683], [-76.312048, 37.000371], [-76.304272, 37.001378], [-76.300352, 37.00885], [-76.292863, 37.035145], [-76.271262, 37.084544], [-76.274463, 37.094544], [-76.287236, 37.117453], [-76.292344, 37.126615], [-76.311088, 37.138495], [-76.324353, 37.142895], [-76.330481, 37.141727], [-76.334017, 37.144223], [-76.340129, 37.151823], [-76.34405, 37.160367], [-76.344898, 37.164479], [-76.343234, 37.166207], [-76.348658, 37.170655], [-76.35969, 37.16858], [-76.375255, 37.16084], [-76.381379, 37.155711], [-76.394756, 37.157568], [-76.399659, 37.160272], [-76.397883, 37.164415], [-76.391252, 37.179887], [-76.389284, 37.193503], [-76.396052, 37.201087], [-76.3936, 37.214049], [-76.389793, 37.222981], [-76.394132, 37.22515], [-76.471799, 37.216016], [-76.494008, 37.225408], [-76.50364, 37.233856], [-76.4989, 37.241015], [-76.493302, 37.24947], [-76.48284, 37.254831], [-76.475927, 37.250543], [-76.429141, 37.25331], [-76.421765, 37.255198], [-76.417173, 37.26395], [-76.392788, 37.264973], [-76.36229, 37.270226], [-76.349489, 37.273963], [-76.352556, 37.278334], [-76.369029, 37.279311], [-76.381075, 37.28534], [-76.385603, 37.294108], [-76.38777, 37.30767], [-76.406388, 37.332924], [-76.434965, 37.354524], [-76.445333, 37.36646], [-76.437525, 37.37975], [-76.422503, 37.381355], [-76.418176, 37.385064], [-76.418719, 37.3978], [-76.415167, 37.402133], [-76.404756, 37.400213], [-76.393125, 37.398068], [-76.393958, 37.39594], [-76.391437, 37.390284], [-76.387112, 37.385061], [-76.366751, 37.374495], [-76.337476, 37.364014], [-76.31205, 37.338088], [-76.308581, 37.329366], [-76.291324, 37.324145], [-76.282555, 37.319107], [-76.275552, 37.309964], [-76.272005, 37.322194], [-76.272888, 37.335174], [-76.264847, 37.357399], [-76.262407, 37.360786], [-76.258277, 37.36202], [-76.24846, 37.375135], [-76.245283, 37.386839], [-76.246617, 37.404122], [-76.250454, 37.421886], [-76.252415, 37.447274], [-76.265056, 37.481365], [-76.281043, 37.507821], [-76.288167, 37.514118], [-76.293599, 37.516499], [-76.297651, 37.515424], [-76.298456, 37.512677], [-76.296445, 37.511235], [-76.297739, 37.506863], [-76.306952, 37.497488], [-76.32947, 37.49492], [-76.352678, 37.504913], [-76.359378, 37.513426], [-76.360474, 37.51924], [-76.355084, 37.527364], [-76.348992, 37.536548], [-76.339989, 37.53833], [-76.330598, 37.536391], [-76.302762, 37.551295], [-76.29796, 37.557636], [-76.300144, 37.561734], [-76.332641, 37.570042], [-76.357835, 37.573699], [-76.383188, 37.573056], [-76.410781, 37.581815], [-76.420252, 37.598686], [-76.435474, 37.612807], [-76.527188, 37.611315], [-76.533777, 37.61253], [-76.542666, 37.616857], [-76.574049, 37.646781], [-76.583143, 37.661986], [-76.579591, 37.671508], [-76.597868, 37.702918], [-76.598073, 37.70912], [-76.595943, 37.712989], [-76.597213, 37.717269], [-76.606466, 37.724819], [-76.61997, 37.731271], [-76.621433, 37.737973], [-76.617373, 37.742347], [-76.61971, 37.744795], [-76.639962, 37.750941], [-76.663887, 37.751887], [-76.677002, 37.7561], [-76.680922, 37.759647], [-76.683372, 37.765507], [-76.683359, 37.770258], [-76.683343, 37.775783], [-76.681901, 37.778118], [-76.683775, 37.781391], [-76.689773, 37.78519], [-76.715498, 37.785873], [-76.723863, 37.788503], [-76.734309, 37.79866], [-76.7512, 37.824141], [-76.766328, 37.840437], [-76.782826, 37.863184], [-76.784618, 37.869569], [-76.77539, 37.874306], [-76.765711, 37.879274], [-76.747552, 37.875864], [-76.738395, 37.865373], [-76.733046, 37.852009], [-76.72718, 37.842263], [-76.722156, 37.83668], [-76.701606, 37.822677], [-76.692747, 37.82277], [-76.680197, 37.825654], [-76.658302, 37.806815], [-76.651413, 37.796239], [-76.642276, 37.792317], [-76.615351, 37.780759], [-76.602024, 37.772731], [-76.595939, 37.77168], [-76.593835, 37.772848], [-76.584289, 37.76889], [-76.576387, 37.757493], [-76.560476, 37.727827], [-76.54005, 37.704432], [-76.537228, 37.698892], [-76.535302, 37.687516], [-76.537698, 37.66893], [-76.536548, 37.663574], [-76.510187, 37.642324], [-76.501522, 37.643762], [-76.497564, 37.647056], [-76.491799, 37.663614], [-76.489576, 37.666201], [-76.472392, 37.665772], [-76.443254, 37.652347], [-76.399236, 37.628636], [-76.390054, 37.630326], [-76.381106, 37.627003], [-76.36232, 37.610368], [-76.309174, 37.621892], [-76.28037, 37.613715], [-76.279447, 37.618225], [-76.287959, 37.631771], [-76.292534, 37.636098], [-76.306464, 37.642005], [-76.332562, 37.645817], [-76.339892, 37.655966], [-76.324808, 37.676983], [-76.320216, 37.680666], [-76.315161, 37.68472], [-76.312079, 37.684651], [-76.302545, 37.689], [-76.300067, 37.695364], [-76.302803, 37.704474], [-76.312858, 37.720338], [-76.304917, 37.729913], [-76.312108, 37.750522], [-76.306489, 37.788646], [-76.310307, 37.794849], [-76.307482, 37.81235], [-76.293525, 37.822717], [-76.284904, 37.822308], [-76.281985, 37.818068], [-76.282592, 37.814109], [-76.280544, 37.812597], [-76.275178, 37.812664], [-76.266057, 37.8174], [-76.251358, 37.833072], [-76.245072, 37.861918], [-76.236725, 37.889174], [-76.265998, 37.91138], [-76.343848, 37.947345], [-76.360211, 37.952329], [-76.391439, 37.958742], [-76.416299, 37.966828], [-76.427487, 37.977038], [-76.462542, 37.998572], [-76.465291, 38.010226], [-76.469343, 38.013544], [-76.491998, 38.017222], [-76.516547, 38.026566], [-76.519536, 38.034814], [-76.522354, 38.04259], [-76.535919, 38.069532], [-76.543155, 38.076971], [-76.579497, 38.09487], [-76.600937, 38.110084], [-76.604131, 38.128771], [-76.613939, 38.148587], [-76.629476, 38.15305], [-76.638983, 38.151476], [-76.643448, 38.14825], [-76.665127, 38.147638], [-76.684892, 38.156497], [-76.701297, 38.155718], [-76.704048, 38.149264], [-76.721722, 38.137635], [-76.738938, 38.14651], [-76.740278, 38.152824], [-76.743064, 38.156988], [-76.749685, 38.162114], [-76.760241, 38.166581], [-76.788445, 38.169199], [-76.802968, 38.167988], [-76.824274, 38.163639], [-76.838795, 38.163476], [-76.875272, 38.172207], [-76.910832, 38.197073], [-76.916922, 38.199751], [-76.937134, 38.202384], [-76.962311, 38.214075], [-76.967335, 38.227185], [-76.966553, 38.229542], [-76.962375, 38.230093], [-76.957417, 38.236341], [-76.957796, 38.243183], [-76.96215, 38.256486], [-76.981372, 38.274214], [-76.990255, 38.273935], [-76.99767, 38.278047], [-77.026304, 38.302685], [-77.030683, 38.311623], [-77.020947, 38.329273], [-77.016932, 38.341697], [-77.011827, 38.374554], [-77.024866, 38.386791], [-77.043526, 38.400548], [-77.051437, 38.399083], [-77.056032, 38.3962], [-77.069956, 38.377895], [-77.08481, 38.368297], [-77.094665, 38.367715], [-77.104717, 38.369655], [-77.138224, 38.367917], [-77.155191, 38.351047], [-77.162692, 38.345994], [-77.17934, 38.341915], [-77.199433, 38.34089], [-77.240072, 38.331598], [-77.265295, 38.333165], [-77.279633, 38.339444], [-77.286202, 38.347024], [-77.286202, 38.347025], [-77.28835, 38.351286], [-77.288145, 38.359477], [-77.296077, 38.369797], [-77.317288, 38.383576], [-77.314848, 38.389579], [-77.312201, 38.390958], [-77.310719, 38.397669], [-77.319036, 38.417803], [-77.32544, 38.44885], [-77.322622, 38.467131], [-77.310334, 38.493926], [-77.302457, 38.504683], [-77.300776, 38.506978], [-77.298844, 38.508724], [-77.29582, 38.511457], [-77.291103, 38.515721], [-77.283503, 38.525221], [-77.276303, 38.53962], [-77.276603, 38.54712], [-77.26083, 38.56533], [-77.265304, 38.580319], [-77.26443, 38.582845], [-77.247003, 38.590618], [-77.246441, 38.599532], [-77.245104, 38.620717], [-77.248904, 38.628617], [-77.246704, 38.635217], [-77.240604, 38.638917], [-77.22235, 38.638091], [-77.216303, 38.637817], [-77.205103, 38.623917], [-77.204302, 38.617817], [-77.202002, 38.617217], [-77.174902, 38.624217], [-77.157501, 38.636417], [-77.1302, 38.635017], [-77.135901, 38.649817], [-77.132501, 38.673816], [-77.121101, 38.686616], [-77.1059, 38.696815], [-77.086113, 38.705792], [-77.074599, 38.711015], [-77.05991, 38.734419], [-77.041398, 38.763914], [-77.039239, 38.7852], [-77.038598, 38.791513], [-77.032986, 38.8395], [-77.031698, 38.850512], [-77.040599, 38.871212], [-77.068199, 38.899811], [-77.0902, 38.904211], [-77.1012, 38.911111], [-77.119863, 38.934265], [-77.1199, 38.934311], [-77.137701, 38.95531], [-77.148179, 38.965002], [-77.166901, 38.96811], [-77.197502, 38.96681], [-77.221502, 38.97131], [-77.235403, 38.97661], [-77.249803, 38.985909], [-77.255703, 39.002409], [-77.251803, 39.011409], [-77.261403, 39.031009], [-77.291605, 39.045408], [-77.328002, 39.058554], [-77.340287, 39.062991], [-77.375079, 39.061297], [-77.42318, 39.066878], [-77.458202, 39.073723], [-77.519929, 39.120925], [-77.524559, 39.127821], [-77.527282, 39.146236], [-77.516426, 39.170891], [-77.510631, 39.178484], [-77.505162, 39.18205], [-77.485971, 39.185665], [-77.478596, 39.189168], [-77.458884, 39.219826], [-77.458779, 39.22028], [-77.45768, 39.22502], [-77.46021, 39.228359], [-77.484605, 39.245941], [-77.511222, 39.2535], [-77.534461, 39.262361], [-77.543228, 39.266937], [-77.545846, 39.271535], [-77.560854, 39.286152], [-77.592739, 39.30129], [-77.667749, 39.318129], [-77.677505, 39.318699], [-77.719029, 39.321125], [-77.750267, 39.289284], [-77.753357, 39.280331], [-77.75306, 39.277971], [-77.753105, 39.27734], [-77.755193, 39.275191], [-77.755698, 39.274575], [-77.758412, 39.269197], [-77.758733, 39.268114], [-77.761217, 39.263721], [-77.761768, 39.263031], [-77.768, 39.257657], [-77.768992, 39.256417], [-77.767277, 39.24938], [-77.771415, 39.236776], [-77.822182, 39.139985], [-77.828157, 39.132329], [-78.032841, 39.264403], [-78.033183, 39.264624], [-78.033185, 39.264626], [-78.228766, 39.391233], [-78.347087, 39.466012], [-78.362267, 39.357784], [-78.34048, 39.353492], [-78.35894, 39.319484], [-78.360035, 39.317771], [-78.399785, 39.244129], [-78.399669, 39.243874], [-78.423968, 39.212049], [-78.427911, 39.208611], [-78.429803, 39.207014], [-78.431167, 39.205744], [-78.43213, 39.204717], [-78.437053, 39.199766], [-78.438651, 39.198049], [-78.426722, 39.188903], [-78.41074, 39.171983], [-78.418377, 39.156656], [-78.439429, 39.132146], [-78.459869, 39.113351], [-78.508132, 39.08863], [-78.544111, 39.056676], [-78.571901, 39.031995], [-78.565837, 39.026303], [-78.554222, 39.019672], [-78.557647, 39.013189], [-78.601655, 38.964603], [-78.710949, 38.910175], [-78.714135, 38.911176], [-78.716956, 38.916273], [-78.719755, 38.922135], [-78.719806, 38.922638], [-78.757278, 38.903203], [-78.779198, 38.892298], [-78.788031, 38.885123], [-78.808181, 38.856175], [-78.835191, 38.811499], [-78.869276, 38.762991] ] ] }, "properties": { "stroke": "#080", "fill": "#080", "stroke-width": 6, "fill-opacity": 0.1 }, "type": "Feature" }, { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "stroke-width": 6, "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-78.869276, 38.762991], [-78.993997, 38.850102], [-78.999752, 38.846162], [-79.055354, 38.782213], [-79.057253, 38.761413], [-79.092555, 38.700149], [-79.092271, 38.699208], [-79.135472, 38.644057], [-79.135546, 38.643715], [-79.136374, 38.6424], [-79.137012, 38.640655], [-79.146741, 38.625819], [-79.146974, 38.625641], [-79.174512, 38.566531], [-79.174881, 38.566314], [-79.207884, 38.500428], [-79.207873, 38.500122], [-79.209703, 38.495574], [-79.210008, 38.494283], [-79.210026, 38.494231], [-79.225839, 38.479446], [-79.23162, 38.474041], [-79.234408, 38.473011], [-79.240059, 38.469841], [-79.242024, 38.464332], [-79.26291, 38.444586], [-79.263376, 38.443762], [-79.265327, 38.441772], [-79.267414, 38.438322], [-79.282663, 38.431021], [-79.280263, 38.425475], [-79.290529, 38.420757], [-79.291813, 38.419627], [-79.295712, 38.418129], [-79.297758, 38.416438], [-79.312276, 38.411876], [-79.476638, 38.457228], [-79.521469, 38.533918], [-79.53687, 38.550917], [-79.555471, 38.560217], [-79.597955, 38.572767], [-79.649075, 38.591515], [-79.669128, 38.510975], [-79.669128, 38.510883], [-79.695565, 38.477842], [-79.699006, 38.475148], [-79.688205, 38.450476], [-79.688962, 38.449538], [-79.689544, 38.442511], [-79.691377, 38.439558], [-79.731661, 38.374143], [-79.808711, 38.309429], [-79.810115, 38.305037], [-79.788945, 38.268703], [-79.790134, 38.267654], [-79.794568, 38.264856], [-79.891999, 38.203378], [-79.892345, 38.202397], [-79.916174, 38.184386], [-79.917061, 38.183741], [-79.921196, 38.180378], [-79.921026, 38.179954], [-79.925251, 38.150465], [-79.925512, 38.150237], [-79.928683, 38.144928], [-79.928747, 38.144436], [-79.933751, 38.135508], [-79.938394, 38.130563], [-79.931034, 38.101402], [-79.933911, 38.099168], [-79.959844, 38.063697], [-79.978427, 38.029082], [-80.002507, 37.992767], [-80.055278, 37.951702], [-80.130464, 37.893194], [-80.14613, 37.884453], [-80.147316, 37.885936], [-80.148964, 37.886057], [-80.162202, 37.875122], [-80.227092, 37.798886], [-80.231551, 37.792591], [-80.257411, 37.756084], [-80.262765, 37.738336], [-80.260313, 37.733517], [-80.259342, 37.731205], [-80.263936, 37.719137], [-80.287107, 37.696403], [-80.296138, 37.691783], [-80.292337, 37.683976], [-80.292258, 37.683732], [-80.270323, 37.648982], [-80.270352, 37.648929], [-80.267455, 37.646108], [-80.267228, 37.646011], [-80.264874, 37.645511], [-80.26483, 37.645526], [-80.263291, 37.645101], [-80.263281, 37.645082], [-80.254469, 37.642333], [-80.254431, 37.642352], [-80.239288, 37.637672], [-80.220984, 37.627767], [-80.223386, 37.623185], [-80.240272, 37.606961], [-80.288766, 37.58196], [-80.312393, 37.546239], [-80.321044921875, 37.5414114468743], [-80.321044921875, 37.51515204394254], [-80.314806, 37.500943], [-80.320627, 37.49888], [-80.321044921875, 37.49868500772584], [-80.321044921875, 36.5467653228637], [-80.228263, 36.543867], [-80.225408, 36.543748], [-80.171636, 36.543219], [-80.169535, 36.54319], [-80.053455, 36.542623], [-80.027269, 36.542495], [-79.967511, 36.542502], [-79.966979, 36.542475], [-79.920239, 36.542365], [-79.714855, 36.541884], [-79.667309, 36.541772], [-79.666827, 36.541772], [-79.510961, 36.54074], [-79.510647, 36.540738], [-79.470047, 36.541025], [-79.445961, 36.541195], [-79.445687, 36.541218], [-79.342696, 36.541382], [-79.218638, 36.541579], [-79.20948, 36.541594], [-79.208686, 36.541571], [-79.137936, 36.541739], [-79.126078, 36.541533], [-79.124736, 36.541568], [-78.971814, 36.542123], [-78.970577, 36.542154], [-78.942254, 36.542079], [-78.942009, 36.542113], [-78.91542, 36.541974], [-78.914543, 36.541972], [-78.7963, 36.541713], [-78.76543, 36.541727], [-78.758392, 36.541852], [-78.734122, 36.541902], [-78.670051, 36.542035], [-78.663317, 36.542011], [-78.533013, 36.541004], [-78.529722, 36.540981], [-78.471022, 36.542307], [-78.470792, 36.542316], [-78.45697, 36.542474], [-78.441199, 36.542687], [-78.436333, 36.542666], [-78.323912, 36.543809], [-78.246681, 36.544341], [-78.245462, 36.544411], [-78.133323, 36.543847], [-78.132911, 36.543811], [-78.046202, 36.544168], [-78.03942, 36.544196], [-78.038938, 36.544173], [-77.899771, 36.544663], [-77.882357, 36.544737], [-77.87528, 36.544754], [-77.767117, 36.544752], [-77.296875, 36.544746], [-77.24969, 36.544745], [-77.1645, 36.54633], [-76.916048, 36.543815], [-76.916001, 36.543818], [-76.915384, 36.543856], [-76.807078, 36.550606], [-76.781296, 36.550659], [-76.541748046875, 36.55031208840764], [-76.541748046875, 36.99350733953782], [-76.551246, 36.998946], [-76.562923, 37.003796], [-76.565803, 37.007493], [-76.576617, 37.021374], [-76.577531, 37.022548], [-76.57816, 37.022982], [-76.579236, 37.023726], [-76.579393, 37.023835], [-76.584478, 37.027349], [-76.586491, 37.02874], [-76.612124, 37.035604], [-76.646013, 37.036228], [-76.653998, 37.039172], [-76.662558, 37.045748], [-76.66835, 37.05506], [-76.669822, 37.06426], [-76.669118, 37.068132], [-76.668295, 37.072656], [-76.667646, 37.076228], [-76.667219, 37.077149], [-76.666526, 37.078643], [-76.66555, 37.080746], [-76.659394, 37.094019], [-76.65811, 37.096787], [-76.657703, 37.101161], [-76.657101, 37.107617], [-76.656894, 37.109843], [-76.66375, 37.129979], [-76.665641, 37.135534], [-76.665833, 37.136098], [-76.666542, 37.138179], [-76.669604, 37.140534], [-76.671588, 37.14206], [-76.67147, 37.158739], [-76.66867, 37.166771], [-76.66427, 37.171027], [-76.663774, 37.173875], [-76.669886, 37.183571], [-76.685614, 37.198851], [-76.691918, 37.195731], [-76.692926, 37.186147], [-76.696735, 37.174403], [-76.715295, 37.148035], [-76.73032, 37.145395], [-76.73728, 37.146164], [-76.747632, 37.150548], [-76.756899, 37.161582], [-76.796905, 37.189404], [-76.802511, 37.198308], [-76.803198, 37.201513], [-76.801023, 37.206043], [-76.791555, 37.207564], [-76.780532, 37.209336], [-76.773752, 37.206061], [-76.757765, 37.191658], [-76.75047, 37.190098], [-76.74304, 37.192611], [-76.74, 37.195379], [-76.73432, 37.204211], [-76.730951, 37.213813], [-76.698943, 37.219059], [-76.693373, 37.221228], [-76.689166, 37.222866], [-76.649869, 37.220914], [-76.641085, 37.216002], [-76.639608, 37.214783], [-76.629868, 37.206738], [-76.623292, 37.198738], [-76.621113, 37.195103], [-76.619962, 37.193184], [-76.61934, 37.192146], [-76.618008, 37.186429], [-76.617537, 37.184409], [-76.616804, 37.18126], [-76.616268, 37.178962], [-76.614221, 37.174335], [-76.613599, 37.172931], [-76.612517, 37.170486], [-76.611018, 37.167097], [-76.610972, 37.166994], [-76.606684, 37.166674], [-76.604476, 37.160034], [-76.617084, 37.144498], [-76.622252, 37.142146], [-76.62478, 37.127091], [-76.618252, 37.119347], [-76.579499, 37.096627], [-76.567931, 37.080467], [-76.564219, 37.077507], [-76.555066, 37.075859], [-76.541748046875, 37.081776707388784], [-76.541748046875, 37.6164101574787], [-76.542666, 37.616857], [-76.574049, 37.646781], [-76.583143, 37.661986], [-76.579591, 37.671508], [-76.597868, 37.702918], [-76.598073, 37.70912], [-76.595943, 37.712989], [-76.597213, 37.717269], [-76.606466, 37.724819], [-76.61997, 37.731271], [-76.621433, 37.737973], [-76.617373, 37.742347], [-76.61971, 37.744795], [-76.639962, 37.750941], [-76.663887, 37.751887], [-76.677002, 37.7561], [-76.680922, 37.759647], [-76.683372, 37.765507], [-76.683359, 37.770258], [-76.683343, 37.775783], [-76.681901, 37.778118], [-76.683775, 37.781391], [-76.689773, 37.78519], [-76.715498, 37.785873], [-76.723863, 37.788503], [-76.734309, 37.79866], [-76.7512, 37.824141], [-76.766328, 37.840437], [-76.782826, 37.863184], [-76.784618, 37.869569], [-76.77539, 37.874306], [-76.765711, 37.879274], [-76.747552, 37.875864], [-76.738395, 37.865373], [-76.733046, 37.852009], [-76.72718, 37.842263], [-76.722156, 37.83668], [-76.701606, 37.822677], [-76.692747, 37.82277], [-76.680197, 37.825654], [-76.658302, 37.806815], [-76.651413, 37.796239], [-76.642276, 37.792317], [-76.615351, 37.780759], [-76.602024, 37.772731], [-76.595939, 37.77168], [-76.593835, 37.772848], [-76.584289, 37.76889], [-76.576387, 37.757493], [-76.560476, 37.727827], [-76.541748046875, 37.70637686471363], [-76.541748046875, 38.07552457596782], [-76.543155, 38.076971], [-76.579497, 38.09487], [-76.600937, 38.110084], [-76.604131, 38.128771], [-76.613939, 38.148587], [-76.629476, 38.15305], [-76.638983, 38.151476], [-76.643448, 38.14825], [-76.665127, 38.147638], [-76.684892, 38.156497], [-76.701297, 38.155718], [-76.704048, 38.149264], [-76.721722, 38.137635], [-76.738938, 38.14651], [-76.740278, 38.152824], [-76.743064, 38.156988], [-76.749685, 38.162114], [-76.760241, 38.166581], [-76.788445, 38.169199], [-76.802968, 38.167988], [-76.824274, 38.163639], [-76.838795, 38.163476], [-76.875272, 38.172207], [-76.910832, 38.197073], [-76.916922, 38.199751], [-76.937134, 38.202384], [-76.962311, 38.214075], [-76.967335, 38.227185], [-76.966553, 38.229542], [-76.962375, 38.230093], [-76.957417, 38.236341], [-76.957796, 38.243183], [-76.96215, 38.256486], [-76.981372, 38.274214], [-76.990255, 38.273935], [-76.99767, 38.278047], [-77.026304, 38.302685], [-77.030683, 38.311623], [-77.020947, 38.329273], [-77.016932, 38.341697], [-77.011827, 38.374554], [-77.024866, 38.386791], [-77.043526, 38.400548], [-77.051437, 38.399083], [-77.056032, 38.3962], [-77.069956, 38.377895], [-77.08481, 38.368297], [-77.094665, 38.367715], [-77.104717, 38.369655], [-77.138224, 38.367917], [-77.155191, 38.351047], [-77.162692, 38.345994], [-77.17934, 38.341915], [-77.199433, 38.34089], [-77.240072, 38.331598], [-77.265295, 38.333165], [-77.279633, 38.339444], [-77.286202, 38.347024], [-77.286202, 38.347025], [-77.28835, 38.351286], [-77.288145, 38.359477], [-77.296077, 38.369797], [-77.317288, 38.383576], [-77.314848, 38.389579], [-77.312201, 38.390958], [-77.310719, 38.397669], [-77.319036, 38.417803], [-77.32544, 38.44885], [-77.322622, 38.467131], [-77.310334, 38.493926], [-77.302457, 38.504683], [-77.300776, 38.506978], [-77.298844, 38.508724], [-77.29582, 38.511457], [-77.291103, 38.515721], [-77.283503, 38.525221], [-77.276303, 38.53962], [-77.276603, 38.54712], [-77.26083, 38.56533], [-77.265304, 38.580319], [-77.26443, 38.582845], [-77.247003, 38.590618], [-77.246441, 38.599532], [-77.245104, 38.620717], [-77.248904, 38.628617], [-77.246704, 38.635217], [-77.240604, 38.638917], [-77.22235, 38.638091], [-77.216303, 38.637817], [-77.205103, 38.623917], [-77.204302, 38.617817], [-77.202002, 38.617217], [-77.174902, 38.624217], [-77.157501, 38.636417], [-77.1302, 38.635017], [-77.135901, 38.649817], [-77.132501, 38.673816], [-77.121101, 38.686616], [-77.1059, 38.696815], [-77.086113, 38.705792], [-77.074599, 38.711015], [-77.05991, 38.734419], [-77.041398, 38.763914], [-77.039239, 38.7852], [-77.038598, 38.791513], [-77.032986, 38.8395], [-77.031698, 38.850512], [-77.040599, 38.871212], [-77.068199, 38.899811], [-77.0902, 38.904211], [-77.1012, 38.911111], [-77.119863, 38.934265], [-77.1199, 38.934311], [-77.137701, 38.95531], [-77.148179, 38.965002], [-77.166901, 38.96811], [-77.197502, 38.96681], [-77.221502, 38.97131], [-77.235403, 38.97661], [-77.249803, 38.985909], [-77.255703, 39.002409], [-77.251803, 39.011409], [-77.261403, 39.031009], [-77.291605, 39.045408], [-77.328002, 39.058554], [-77.340287, 39.062991], [-77.375079, 39.061297], [-77.42318, 39.066878], [-77.458202, 39.073723], [-77.519929, 39.120925], [-77.524559, 39.127821], [-77.527282, 39.146236], [-77.516426, 39.170891], [-77.510631, 39.178484], [-77.505162, 39.18205], [-77.485971, 39.185665], [-77.478596, 39.189168], [-77.458884, 39.219826], [-77.458779, 39.22028], [-77.45768, 39.22502], [-77.46021, 39.228359], [-77.484605, 39.245941], [-77.511222, 39.2535], [-77.534461, 39.262361], [-77.543228, 39.266937], [-77.545846, 39.271535], [-77.560854, 39.286152], [-77.592739, 39.30129], [-77.667749, 39.318129], [-77.677505, 39.318699], [-77.719029, 39.321125], [-77.750267, 39.289284], [-77.753357, 39.280331], [-77.75306, 39.277971], [-77.753105, 39.27734], [-77.755193, 39.275191], [-77.755698, 39.274575], [-77.758412, 39.269197], [-77.758733, 39.268114], [-77.761217, 39.263721], [-77.761768, 39.263031], [-77.768, 39.257657], [-77.768992, 39.256417], [-77.767277, 39.24938], [-77.771415, 39.236776], [-77.822182, 39.139985], [-77.828157, 39.132329], [-78.032841, 39.264403], [-78.033183, 39.264624], [-78.033185, 39.264626], [-78.228766, 39.391233], [-78.347087, 39.466012], [-78.362267, 39.357784], [-78.34048, 39.353492], [-78.35894, 39.319484], [-78.360035, 39.317771], [-78.399785, 39.244129], [-78.399669, 39.243874], [-78.423968, 39.212049], [-78.427911, 39.208611], [-78.429803, 39.207014], [-78.431167, 39.205744], [-78.43213, 39.204717], [-78.437053, 39.199766], [-78.438651, 39.198049], [-78.426722, 39.188903], [-78.41074, 39.171983], [-78.418377, 39.156656], [-78.439429, 39.132146], [-78.459869, 39.113351], [-78.508132, 39.08863], [-78.544111, 39.056676], [-78.571901, 39.031995], [-78.565837, 39.026303], [-78.554222, 39.019672], [-78.557647, 39.013189], [-78.601655, 38.964603], [-78.710949, 38.910175], [-78.714135, 38.911176], [-78.716956, 38.916273], [-78.719755, 38.922135], [-78.719806, 38.922638], [-78.757278, 38.903203], [-78.779198, 38.892298], [-78.788031, 38.885123], [-78.808181, 38.856175], [-78.835191, 38.811499], [-78.869276, 38.762991] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "stroke-width": 3, "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-80.321044921875, 36.26199220445664], [-76.541748046875, 36.26199220445664], [-76.541748046875, 39.68182601089365], [-80.321044921875, 39.68182601089365], [-80.321044921875, 36.26199220445664] ] ] } } ] } ================================================ FILE: packages/turf-bbox-clip/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { point, feature, featureCollection } from "@turf/helpers"; import { bbox as turfBBox } from "@turf/bbox"; import { bboxClip } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("turf-bbox-clip", (t) => { for (const fixture of fixtures) { const filename = fixture.filename; const name = fixture.name; const geojson = fixture.geojson; const feature = geojson.features[0]; const bbox = turfBBox(geojson.features[1]); const clipped = bboxClip(feature, bbox); const results = featureCollection([ colorize(feature, "#080"), colorize(clipped, "#F00"), colorize(geojson.features[1], "#00F", 3), ]); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEquals(results, loadJsonFileSync(directories.out + filename), name); } t.end(); }); test("turf-bbox-clip -- throws", (t) => { t.throws( () => bboxClip(point([5, 10]), [-180, -90, 180, 90]), /geometry Point not supported/ ); t.end(); }); function colorize(feature, color, width) { color = color || "#F00"; width = width || 6; feature.properties = { stroke: color, fill: color, "stroke-width": width, "fill-opacity": 0.1, }; return feature; } test("turf-bbox-clip -- null geometries", (t) => { t.throws( () => bboxClip(feature(null), [-180, -90, 180, 90]), "coords must be GeoJSON Feature, Geometry Object or an Array" ); t.end(); }); ================================================ FILE: packages/turf-bbox-clip/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-bbox-polygon/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-bbox-polygon/README.md ================================================ # @turf/bbox-polygon ## bboxPolygon Takes a bbox and returns an equivalent [polygon][1]. ### Parameters * `bbox` **[BBox][2]** extent in \[minX, minY, maxX, maxY] order * `options` **[Object][3]** Optional parameters (optional, default `{}`) * `options.properties` **[GeoJsonProperties][4]** Translate properties to Polygon (optional, default `{}`) * `options.id` **([string][5] | [number][6])** Translate Id to Polygon (optional, default `{}`) ### Examples ```javascript var bbox = [0, 0, 10, 10]; var poly = turf.bboxPolygon(bbox); //addToMap var addToMap = [poly] ``` Returns **[Feature][4]<[Polygon][1]>** a Polygon representation of the bounding box [1]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [2]: https://tools.ietf.org/html/rfc7946#section-5 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [4]: https://tools.ietf.org/html/rfc7946#section-3.2 [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/bbox-polygon ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-bbox-polygon/bench.ts ================================================ import Benchmark from "benchmark"; import { bboxPolygon } from "./index.js"; /** * Benchmark Results * * turf-bbox-polygon x 3,885,828 ops/sec ±1.20% (86 runs sampled) */ new Benchmark.Suite("turf-bbox-polygon") .add("turf-bbox-polygon", () => bboxPolygon([0, 0, 10, 10])) .on("cycle", (e) => console.log(String(e.target))) .run(); ================================================ FILE: packages/turf-bbox-polygon/index.ts ================================================ import { BBox, Feature, Polygon, GeoJsonProperties } from "geojson"; import { polygon, Id } from "@turf/helpers"; /** * Takes a bbox and returns an equivalent {@link Polygon|polygon}. * * @function * @param {BBox} bbox extent in [minX, minY, maxX, maxY] order * @param {Object} [options={}] Optional parameters * @param {GeoJsonProperties} [options.properties={}] Translate properties to Polygon * @param {string|number} [options.id={}] Translate Id to Polygon * @returns {Feature} a Polygon representation of the bounding box * @example * var bbox = [0, 0, 10, 10]; * * var poly = turf.bboxPolygon(bbox); * * //addToMap * var addToMap = [poly] */ function bboxPolygon

( bbox: BBox, options: { properties?: P; id?: Id; } = {} ): Feature { // Convert BBox positions to Numbers // No performance loss for including Number() // https://github.com/Turfjs/turf/issues/1119 const west = Number(bbox[0]); const south = Number(bbox[1]); const east = Number(bbox[2]); const north = Number(bbox[3]); if (bbox.length === 6) { throw new Error( "@turf/bbox-polygon does not support BBox with 6 positions" ); } const lowLeft = [west, south]; const topLeft = [west, north]; const topRight = [east, north]; const lowRight = [east, south]; return polygon( [[lowLeft, lowRight, topRight, topLeft, lowLeft]], options.properties, { bbox, id: options.id } ); } export { bboxPolygon }; export default bboxPolygon; ================================================ FILE: packages/turf-bbox-polygon/package.json ================================================ { "name": "@turf/bbox-polygon", "version": "7.3.4", "description": "Converts a bounding box to a GeoJSON polygon.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "gis", "geojson", "extent", "bbox" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-bbox-polygon/test.ts ================================================ import test from "tape"; import { bboxPolygon } from "./index.js"; test("bbox-polygon", (t) => { const poly = bboxPolygon([0, 0, 10, 10]); t.ok( poly.geometry.coordinates, "should take a bbox and return the equivalent polygon feature" ); t.equal(poly.geometry.type, "Polygon", "should be a Polygon geometry type"); t.end(); }); test("bbox-polygon -- valid geojson", (t) => { const poly = bboxPolygon([0, 0, 10, 10]); const coordinates = poly.geometry.coordinates; t.ok(poly, "should be valid geojson."); t.equal(coordinates[0].length, 5); t.equal(coordinates[0][0][0], coordinates[0][coordinates.length - 1][0]); t.equal(coordinates[0][0][1], coordinates[0][coordinates.length - 1][1]); t.end(); }); // https://github.com/Turfjs/turf/issues/1119 test("bbox-polygon -- handling String input/output", (t) => { const poly = bboxPolygon(["0", "0", "10", "10"]); t.deepEqual(poly.geometry.coordinates[0][0], [0, 0], "lowLeft"); t.deepEqual(poly.geometry.coordinates[0][1], [10, 0], "lowRight"); t.deepEqual(poly.geometry.coordinates[0][2], [10, 10], "topRight"); t.deepEqual(poly.geometry.coordinates[0][3], [0, 10], "topLeft"); t.end(); }); test("bbox-polygon -- Error handling", (t) => { t.throws( () => bboxPolygon([-110, 70, 5000, 50, 60, 3000]), "6 position BBox not supported" ); t.throws(() => bboxPolygon(["foo", "bar", "hello", "world"]), "invalid bbox"); t.throws(() => bboxPolygon(["foo", "bar"]), "invalid bbox"); t.end(); }); test("bbox-polygon -- Translate BBox (Issue #1179)", (t) => { const id = 123; const properties = { foo: "bar" }; const bbox = [0, 0, 10, 10]; const poly = bboxPolygon(bbox, { properties, id }); t.deepEqual(poly.properties, properties, "Properties is translated"); t.deepEqual(poly.bbox, bbox, "BBox is translated"); t.equal(poly.id, id, "Id is translated"); t.end(); }); test("bbox-polygon -- assert bbox", (t) => { const bbox = [0, 0, 10, 10]; const poly = bboxPolygon(bbox); t.deepEqual(poly.bbox, bbox); t.end(); }); ================================================ FILE: packages/turf-bbox-polygon/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-bearing/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-bearing/README.md ================================================ # @turf/bearing ## bearing Takes two [points][1] and finds the geographic bearing between them, i.e. the angle measured in degrees from the north line (0 degrees) ### Parameters * `start` **[Coord][2]** starting Point * `end` **[Coord][2]** ending Point * `options` **[Object][3]** Optional parameters (optional, default `{}`) * `options.final` **[boolean][4]** calculates the final bearing if true (optional, default `false`) ### Examples ```javascript var point1 = turf.point([-75.343, 39.984]); var point2 = turf.point([-75.534, 39.123]); var bearing = turf.bearing(point1, point2); //addToMap var addToMap = [point1, point2] point1.properties['marker-color'] = '#f00' point2.properties['marker-color'] = '#0f0' point1.properties.bearing = bearing ``` Returns **[number][5]** bearing in decimal degrees, between -180 and 180 degrees (positive clockwise) [1]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.1 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/bearing ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-bearing/bench.ts ================================================ import Benchmark from "benchmark"; import { bearing } from "./index.js"; var start = [-75.4, 39.4]; var end = [-75.534, 39.123]; var suite = new Benchmark.Suite("turf-bearing"); suite .add("initial bearing", () => bearing(start, end)) .add("final bearing", () => bearing(start, end, { final: true })) .on("cycle", (e) => console.log(String(e.target))) .run(); ================================================ FILE: packages/turf-bearing/index.ts ================================================ import { Coord, degreesToRadians, radiansToDegrees } from "@turf/helpers"; import { getCoord } from "@turf/invariant"; // http://en.wikipedia.org/wiki/Haversine_formula // http://www.movable-type.co.uk/scripts/latlong.html#bearing /** * Takes two {@link Point|points} and finds the geographic bearing between them, * i.e. the angle measured in degrees from the north line (0 degrees) * * @function * @param {Coord} start starting Point * @param {Coord} end ending Point * @param {Object} [options={}] Optional parameters * @param {boolean} [options.final=false] calculates the final bearing if true * @returns {number} bearing in decimal degrees, between -180 and 180 degrees (positive clockwise) * @example * var point1 = turf.point([-75.343, 39.984]); * var point2 = turf.point([-75.534, 39.123]); * * var bearing = turf.bearing(point1, point2); * * //addToMap * var addToMap = [point1, point2] * point1.properties['marker-color'] = '#f00' * point2.properties['marker-color'] = '#0f0' * point1.properties.bearing = bearing */ function bearing( start: Coord, end: Coord, options: { final?: boolean; } = {} ): number { // Reverse calculation if (options.final === true) { return calculateFinalBearing(start, end); } const coordinates1 = getCoord(start); const coordinates2 = getCoord(end); const lon1 = degreesToRadians(coordinates1[0]); const lon2 = degreesToRadians(coordinates2[0]); const lat1 = degreesToRadians(coordinates1[1]); const lat2 = degreesToRadians(coordinates2[1]); const a = Math.sin(lon2 - lon1) * Math.cos(lat2); const b = Math.cos(lat1) * Math.sin(lat2) - Math.sin(lat1) * Math.cos(lat2) * Math.cos(lon2 - lon1); return radiansToDegrees(Math.atan2(a, b)); } /** * Calculates Final Bearing * * @private * @param {Coord} start starting Point * @param {Coord} end ending Point * @returns {number} bearing */ function calculateFinalBearing(start: Coord, end: Coord) { // Swap start & end let bear = bearing(end, start); bear = (bear + 180) % 360; return bear; } export { bearing }; export default bearing; ================================================ FILE: packages/turf-bearing/package.json ================================================ { "name": "@turf/bearing", "version": "7.3.4", "description": "Takes two points and finds the geographic bearing between them.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "bearing" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@turf/destination": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-bearing/test/out/results.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [-75, 45] } }, { "type": "Feature", "properties": { "marker-color": "#00F" }, "geometry": { "type": "Point", "coordinates": [20, 60] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-75, 45], [-66.09750711447151, 51.79525668362472] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [20, 60], [2.3783964911248785, 63.44109820672928] ] } } ] } ================================================ FILE: packages/turf-bearing/test.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { writeJsonFileSync } from "write-json-file"; import { destination } from "@turf/destination"; import { point, lineString, featureCollection } from "@turf/helpers"; import { bearing } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const out = path.join(__dirname, "test", "out") + path.sep; test("bearing", (t) => { const start = point([-75, 45], { "marker-color": "#F00" }); const end = point([20, 60], { "marker-color": "#00F" }); const initialBearing = bearing(start, end); t.equal(initialBearing.toFixed(2), "37.75", "initial bearing"); const finalBearing = bearing(start, end, { final: true }); t.equal(finalBearing.toFixed(2), "120.01", "final bearing"); t.end(); if (process.env.REGEN) { const initialDestination = destination(start, 1000, initialBearing); const initialLine = lineString( [start.geometry.coordinates, initialDestination.geometry.coordinates], { stroke: "#F00", "stroke-width": 6, } ); const finalDestination = destination(end, 1000, finalBearing - 180); const finalLine = lineString( [end.geometry.coordinates, finalDestination.geometry.coordinates], { stroke: "#00F", "stroke-width": 6, } ); const results = featureCollection([start, end, initialLine, finalLine]); writeJsonFileSync(out + "results.geojson", results); } }); ================================================ FILE: packages/turf-bearing/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-bezier-spline/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-bezier-spline/README.md ================================================ # @turf/bezier-spline ## bezierSpline Takes a [line][1] and returns a curved version by applying a [Bezier spline][2] algorithm. The bezier spline implementation is by [Leszek Rybicki][3]. ### Parameters * `line` **[Feature][4]<[LineString][1]>** input LineString * `options` **[Object][5]** Optional parameters (optional, default `{}`) * `options.properties` **[Object][5]** Translate properties to output (optional, default `{}`) * `options.resolution` **[number][6]** time in milliseconds between points (optional, default `10000`) * `options.sharpness` **[number][6]** a measure of how curvy the path should be between splines (optional, default `0.85`) ### Examples ```javascript var line = turf.lineString([ [-76.091308, 18.427501], [-76.695556, 18.729501], [-76.552734, 19.40443], [-74.61914, 19.134789], [-73.652343, 20.07657], [-73.157958, 20.210656] ]); var curved = turf.bezierSpline(line); //addToMap var addToMap = [line, curved] curved.properties = { stroke: '#0F0' }; ``` Returns **[Feature][4]<[LineString][1]>** curved line [1]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [2]: http://en.wikipedia.org/wiki/B%C3%A9zier_spline [3]: http://leszek.rybicki.cc/ [4]: https://tools.ietf.org/html/rfc7946#section-3.2 [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/bezier-spline ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-bezier-spline/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { bezierSpline } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); /** * Benchmark Results * * bezierIn x 771 ops/sec ±1.31% (88 runs sampled) * simple x 768 ops/sec ±1.20% (89 runs sampled) */ const suite = new Benchmark.Suite("turf-bezier-spline"); for (const { name, geojson } of fixtures) { suite.add(name, () => bezierSpline(geojson)); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-bezier-spline/index.ts ================================================ import { Feature, LineString, GeoJsonProperties } from "geojson"; import { lineString } from "@turf/helpers"; import { getGeom } from "@turf/invariant"; import { Spline } from "./lib/spline.js"; /** * Takes a {@link LineString|line} and returns a curved version * by applying a [Bezier spline](http://en.wikipedia.org/wiki/B%C3%A9zier_spline) * algorithm. * * The bezier spline implementation is by [Leszek Rybicki](http://leszek.rybicki.cc/). * * @function * @param {Feature} line input LineString * @param {Object} [options={}] Optional parameters * @param {Object} [options.properties={}] Translate properties to output * @param {number} [options.resolution=10000] time in milliseconds between points * @param {number} [options.sharpness=0.85] a measure of how curvy the path should be between splines * @returns {Feature} curved line * @example * var line = turf.lineString([ * [-76.091308, 18.427501], * [-76.695556, 18.729501], * [-76.552734, 19.40443], * [-74.61914, 19.134789], * [-73.652343, 20.07657], * [-73.157958, 20.210656] * ]); * * var curved = turf.bezierSpline(line); * * //addToMap * var addToMap = [line, curved] * curved.properties = { stroke: '#0F0' }; */ function bezierSpline

( line: Feature | LineString, options: { properties?: P; resolution?: number; sharpness?: number; } = {} ): Feature { // Optional params const resolution = options.resolution || 10000; const sharpness = options.sharpness || 0.85; const coords: [number, number][] = []; const points = getGeom(line).coordinates.map((pt) => { return { x: pt[0], y: pt[1] }; }); const spline = new Spline({ duration: resolution, points, sharpness, }); const pushCoord = (time: number) => { var pos = spline.pos(time); if (Math.floor(time / 100) % 2 === 0) { coords.push([pos.x, pos.y]); } }; for (var i = 0; i < spline.duration; i += 10) { pushCoord(i); } pushCoord(spline.duration); return lineString(coords, options.properties); } export { bezierSpline }; export default bezierSpline; ================================================ FILE: packages/turf-bezier-spline/lib/spline.ts ================================================ interface Point { x: number; y: number; z: number; } /** * BezierSpline * https://github.com/leszekr/bezier-spline-js * * @private * @copyright * Copyright (c) 2013 Leszek Rybicki * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ class Spline { public duration: number; public points: Point[]; public sharpness: number; public centers: Point[]; public controls: Array<[Point, Point]>; public stepLength: number; public length: number; public delay: number; public steps: number[]; constructor(options?: any) { this.points = options.points || []; this.duration = options.duration || 10000; this.sharpness = options.sharpness || 0.85; this.centers = []; this.controls = []; this.stepLength = options.stepLength || 60; this.length = this.points.length; this.delay = 0; // this is to ensure compatibility with the 2d version for (let i = 0; i < this.length; i++) { this.points[i].z = this.points[i].z || 0; } for (let i = 0; i < this.length - 1; i++) { const p1 = this.points[i]; const p2 = this.points[i + 1]; this.centers.push({ x: (p1.x + p2.x) / 2, y: (p1.y + p2.y) / 2, z: (p1.z + p2.z) / 2, }); } this.controls.push([this.points[0], this.points[0]]); for (let i = 0; i < this.centers.length - 1; i++) { const dx = this.points[i + 1].x - (this.centers[i].x + this.centers[i + 1].x) / 2; const dy = this.points[i + 1].y - (this.centers[i].y + this.centers[i + 1].y) / 2; const dz = this.points[i + 1].z - (this.centers[i].y + this.centers[i + 1].z) / 2; this.controls.push([ { x: (1.0 - this.sharpness) * this.points[i + 1].x + this.sharpness * (this.centers[i].x + dx), y: (1.0 - this.sharpness) * this.points[i + 1].y + this.sharpness * (this.centers[i].y + dy), z: (1.0 - this.sharpness) * this.points[i + 1].z + this.sharpness * (this.centers[i].z + dz), }, { x: (1.0 - this.sharpness) * this.points[i + 1].x + this.sharpness * (this.centers[i + 1].x + dx), y: (1.0 - this.sharpness) * this.points[i + 1].y + this.sharpness * (this.centers[i + 1].y + dy), z: (1.0 - this.sharpness) * this.points[i + 1].z + this.sharpness * (this.centers[i + 1].z + dz), }, ]); } this.controls.push([ this.points[this.length - 1], this.points[this.length - 1], ]); this.steps = this.cacheSteps(this.stepLength); return this; } /** * Caches an array of equidistant (more or less) points on the curve. */ public cacheSteps(mindist: number) { const steps = []; let laststep = this.pos(0); steps.push(0); for (let t = 0; t < this.duration; t += 10) { const step = this.pos(t); const dist = Math.sqrt( (step.x - laststep.x) * (step.x - laststep.x) + (step.y - laststep.y) * (step.y - laststep.y) + (step.z - laststep.z) * (step.z - laststep.z) ); if (dist > mindist) { steps.push(t); laststep = step; } } return steps; } /** * returns angle and speed in the given point in the curve */ public vector(t: number) { const p1 = this.pos(t + 10); const p2 = this.pos(t - 10); return { angle: (180 * Math.atan2(p1.y - p2.y, p1.x - p2.x)) / 3.14, speed: Math.sqrt( (p2.x - p1.x) * (p2.x - p1.x) + (p2.y - p1.y) * (p2.y - p1.y) + (p2.z - p1.z) * (p2.z - p1.z) ), }; } /** * Gets the position of the point, given time. * * WARNING: The speed is not constant. The time it takes between control points is constant. * * For constant speed, use Spline.steps[i]; */ public pos(time: number) { let t = time - this.delay; if (t < 0) { t = 0; } if (t > this.duration) { t = this.duration - 1; } // t = t-this.delay; const t2 = t / this.duration; if (t2 >= 1) { return this.points[this.length - 1]; } const n = Math.floor((this.points.length - 1) * t2); const t1 = (this.length - 1) * t2 - n; return bezier( t1, this.points[n], this.controls[n][1], this.controls[n + 1][0], this.points[n + 1] ); } } function bezier(t: number, p1: Point, c1: Point, c2: Point, p2: Point) { const b = B(t); const pos = { x: p2.x * b[0] + c2.x * b[1] + c1.x * b[2] + p1.x * b[3], y: p2.y * b[0] + c2.y * b[1] + c1.y * b[2] + p1.y * b[3], z: p2.z * b[0] + c2.z * b[1] + c1.z * b[2] + p1.z * b[3], }; return pos; } function B(t: number) { const t2 = t * t; const t3 = t2 * t; return [ t3, 3 * t2 * (1 - t), 3 * t * (1 - t) * (1 - t), (1 - t) * (1 - t) * (1 - t), ]; } export { Spline, Point }; export default Spline; ================================================ FILE: packages/turf-bezier-spline/package.json ================================================ { "name": "@turf/bezier-spline", "version": "7.3.4", "description": "Smooths a line into a curve using Bézier splines, great for visualizing routes.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "geometry", "bezier", "curve", "linestring" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-bezier-spline/test/in/bezierIn.json ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-80.08724212646484, 32.77428536643231], [-80.03746032714844, 32.84007757059952], [-80.01548767089844, 32.74512501406368], [-79.95368957519531, 32.850461360442424], [-79.9361801147461, 32.75349876580794], [-79.9310302734375, 32.79997320569839], [-79.91043090820312, 32.78409957394813], [-79.90528106689453, 32.8490192400596], [-79.79919433593749, 32.76995522487643], [-79.82494354248047, 32.810361684869015], [-79.78683471679688, 32.83373132321818], [-79.76554870605469, 32.80430188623444], [-79.8098373413086, 32.726931048100624] ] } } ================================================ FILE: packages/turf-bezier-spline/test/in/issue-#1063.json ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [237.581, 37.7749], [139.7731286197, 35.6669502038] ] } } ================================================ FILE: packages/turf-bezier-spline/test/in/simple.json ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [121.025390625, -22.91792293614603], [130.6494140625, -19.394067895396613], [138.33984375, -25.681137335685307], [138.3837890625, -32.026706293336126] ] } } ================================================ FILE: packages/turf-bezier-spline/test/out/bezierIn.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "stroke-width": 6, "fill-opacity": 0.1 }, "geometry": { "type": "LineString", "coordinates": [ [-80.08724212646484, 32.77428536643231], [-80.08722730078775, 32.77431620608395], [-80.08718319576123, 32.774407687035286], [-80.08711036939242, 32.77455825228089], [-80.08700937968847, 32.774766344815355], [-80.08688078465651, 32.775030407633274], [-80.08672514230369, 32.77534888372924], [-80.08654301063717, 32.77572021609784], [-80.08633494766407, 32.77614284773365], [-80.08610151139152, 32.77661522163128], [-80.08201866467286, 32.78464902023721], [-80.08152427336404, 32.78559685485453], [-80.08101176284863, 32.78657419066332], [-80.08048169113376, 32.78757947065818], [-80.07993461622657, 32.78861113783368], [-80.07937109613418, 32.78966763518443], [-80.07879168886376, 32.790747405705], [-80.07819695242243, 32.79184889238999], [-80.07758744481737, 32.792970538234], [-80.07696372405569, 32.7941107862316], [-80.06932431738281, 32.80743595279523], [-80.06857356329873, 32.80867798021398], [-80.06781585015088, 32.809918368715984], [-80.06705173594636, 32.811155561295834], [-80.06628177869239, 32.81238800094813], [-80.06550653639603, 32.81361413066745], [-80.06472656706445, 32.81483239344839], [-80.0639424287048, 32.816041232285535], [-80.06315467932423, 32.81723909017347], [-80.06236387692984, 32.8184244101068], [-80.05362314172363, 32.83019012082137], [-80.05283922772072, 32.83110353887729], [-80.05205951479688, 32.831984177908254], [-80.0512845609592, 32.83283048090886], [-80.05051492421484, 32.83364089087368], [-80.04975116257096, 32.83441385079733], [-80.04899383403468, 32.83514780367438], [-80.04824349661313, 32.83584119249942], [-80.04750070831348, 32.836492460267046], [-80.04676602714285, 32.837100049971845], [-80.03937919482422, 32.840455481030595], [-80.03878532375894, 32.840417487559435], [-80.03820681391552, 32.84031557495512], [-80.03764422330113, 32.84014818621221], [-80.03709940542186, 32.839912668840455], [-80.03657660535049, 32.83960548043271], [-80.03607559555957, 32.839228128951426], [-80.03559580371468, 32.83878245922726], [-80.03513665748144, 32.83827031609085], [-80.03469758452542, 32.83769354437284], [-80.03102893066406, 32.82761119065371], [-80.0307860949506, 32.82640277274682], [-80.03055589216699, 32.825153709056714], [-80.03033774997886, 32.82386584441403], [-80.03013109605176, 32.82254102364942], [-80.02993535805129, 32.82118109159354], [-80.02974996364307, 32.819787893077006], [-80.02957434049264, 32.81836327293048], [-80.02940791626563, 32.81690907598461], [-80.02925011862759, 32.81542714707004], [-80.02792001184082, 32.797823240639616], [-80.02782109118655, 32.79615242489087], [-80.02772335677393, 32.794477859971806], [-80.02762623626853, 32.792801390713066], [-80.02752915733595, 32.79112486194529], [-80.02743154764175, 32.78945011849912], [-80.02733283485155, 32.7877790052052], [-80.02723244663096, 32.78611336689419], [-80.02712981064552, 32.78445504839672], [-80.02702435456082, 32.78280589454344], [-80.0255145234375, 32.7657976902382], [-80.02533058407779, 32.76440240890548], [-80.02513638427148, 32.76304027501532], [-80.02493135168417, 32.76171313339837], [-80.02471491398144, 32.76042282888529], [-80.02448649882889, 32.7591712063067], [-80.02424553389207, 32.75796011049327], [-80.02399144683663, 32.75679138627562], [-80.02372366532813, 32.755666878484426], [-80.02344161703215, 32.7545884319503], [-80.01923379016112, 32.74629318460675], [-80.01873589833131, 32.745911369947905], [-80.0182162993667, 32.7455995993445], [-80.01767442093282, 32.745359717627224], [-80.01710969069532, 32.745193569626686], [-80.01652153631973, 32.74510300017356], [-80.01590938547167, 32.74508985409846], [-80.01527360828933, 32.74515623891308], [-80.01462611447754, 32.74530625723315], [-80.01397082001571, 32.7455391887752], [-80.00630595703124, 32.75298446984366], [-80.00557293267747, 32.754051658628185], [-80.0048347539917, 32.75517497706448], [-80.0040916245369, 32.7563523648779], [-80.00334374787597, 32.75758176179383], [-80.00259132757186, 32.75886110753763], [-80.0018345671875, 32.76018834183467], [-80.00107367028579, 32.76156140441033], [-80.0003088404297, 32.76297823498996], [-79.9995402811821, 32.76443677329893], [-79.99089820861818, 32.78264416628983], [-79.99010077458115, 32.78444249592968], [-79.9893022574707, 32.786255749728674], [-79.98850286084976, 32.78808186741217], [-79.98770278828124, 32.789918788705535], [-79.98690224332809, 32.79176445333413], [-79.98610142955323, 32.793616801023354], [-79.98530055051955, 32.795473771498536], [-79.98449980979004, 32.79733330448507], [-79.98369941092758, 32.799193339708324], [-79.97497580566407, 32.81909763624246], [-79.9741953871147, 32.82080299688499], [-79.9734179567505, 32.822482076194035], [-79.97264371813431, 32.82413281389494], [-79.97187287482909, 32.82575314971309], [-79.9711056303978, 32.82734102337385], [-79.97034218840332, 32.82889437460257], [-79.96958275240861, 32.83041114312465], [-79.96882752597655, 32.83188926866543], [-79.96807671267014, 32.8333266909503], [-79.96016725158691, 32.84586268264848], [-79.95948527369613, 32.84665096444104], [-79.95881035524904, 32.84737175940747], [-79.9581426998085, 32.84802300727315], [-79.95748251093748, 32.84860264776342], [-79.95682999219896, 32.84910862060367], [-79.95618534715575, 32.849538865519264], [-79.95554877937087, 32.849891322235564], [-79.95492049240723, 32.850163930477954], [-79.95430068982773, 32.850354629971775], [-79.94847842358399, 32.84751161704189], [-79.9480451853372, 32.84685663965643], [-79.9476266811753, 32.84614313619983], [-79.94722260021432, 32.84537283892909], [-79.94683263157032, 32.844547480101205], [-79.94645646435929, 32.8436687919732], [-79.94609378769727, 32.84273850680205], [-79.94574429070029, 32.84175835684478], [-79.94540766248437, 32.84073007435838], [-79.94508359216556, 32.83965539159988], [-79.94225872705078, 32.8252668887998], [-79.94206110254727, 32.82377051882223], [-79.94187199444922, 32.822250267913596], [-79.94169109187266, 32.8207078683309], [-79.94151808393359, 32.81914505233115], [-79.94135265974809, 32.81756355217136], [-79.94119450843213, 32.815965100108514], [-79.94104331910178, 32.81435142839964], [-79.94089878087306, 32.812724269301725], [-79.94076058286198, 32.81108535507178], [-79.93956994628907, 32.792776885331534], [-79.93948358193997, 32.79113202556354], [-79.93939951631688, 32.78949793000458], [-79.93931743853585, 32.787876330911644], [-79.93923703771289, 32.78626896054174], [-79.93915800296404, 32.78467755115188], [-79.93908002340527, 32.783103834999054], [-79.93900278815268, 32.78154954434027], [-79.93892598632227, 32.78001641143255], [-79.93884930703007, 32.77850616853287], [-79.93792500952149, 32.76389966267125], [-79.93782555173794, 32.76279921591456], [-79.93772217500099, 32.76174417850698], [-79.93761456842661, 32.76073628270551], [-79.93750242113087, 32.75977726076716], [-79.93738542222977, 32.75886884494893], [-79.93726326083936, 32.75801276750783], [-79.93713562607566, 32.757210760700865], [-79.93700220705468, 32.75646455678503], [-79.93686269289248, 32.75577588801734], [-79.93520504296876, 32.75204923015101], [-79.93508783921438, 32.752015196113454], [-79.93497759971484, 32.75202584085], [-79.93487411129635, 32.752080069219275], [-79.93477716078516, 32.75217678607987], [-79.93468653500747, 32.7523148962904], [-79.93460202078955, 32.752493304709475], [-79.93452340495762, 32.7527109161957], [-79.9344504743379, 32.752966635607685], [-79.93438301575662, 32.75325936780404], [-79.93394115820313, 32.758609055294215], [-79.93392273652944, 32.75926051987444], [-79.93390701563526, 32.75993476040094], [-79.93389378234677, 32.76063068173231], [-79.93388282349024, 32.76134718872719], [-79.93387392589187, 32.76208318624417], [-79.93386687637793, 32.76283757914186], [-79.93386146177464, 32.76360927227886], [-79.9338574689082, 32.76439717051379], [-79.93385468460488, 32.76520017870525], [-79.93384285473633, 32.77471731550462], [-79.9338379456365, 32.77561622214595], [-79.93383147384081, 32.77651600190572], [-79.9338232261755, 32.777415559642535], [-79.93381298946679, 32.77831380021502], [-79.93380055054094, 32.779209628481766], [-79.93378569622412, 32.78010194930139], [-79.93376821334262, 32.780989667532495], [-79.93374788872265, 32.7818716880337], [-79.93372450919047, 32.7827469156636], [-79.93320474243163, 32.791612879648774], [-79.93312807639884, 32.792321171794526], [-79.93304558419482, 32.79300843423089], [-79.93295705264586, 32.79367357181649], [-79.93286226857812, 32.79431548940991], [-79.9327610188179, 32.79493309186975], [-79.9326530901914, 32.79552528405464], [-79.93253826952485, 32.79609097082318], [-79.93241634364453, 32.79662905703398], [-79.93228709937664, 32.79713844754565], [-79.93035411987306, 32.800570161685954], [-79.93014392131347, 32.80068041395834], [-79.92993048354492, 32.8007604174983], [-79.92971389333191, 32.80081102789523], [-79.92949423743897, 32.80083310073852], [-79.92927160263062, 32.800827491617575], [-79.92904607567138, 32.8007950561218], [-79.92881774332581, 32.80073664984057], [-79.92858669235841, 32.80065312836331], [-79.9283530095337, 32.800545347279396], [-79.92563361053467, 32.79800331988575], [-79.92537511305542, 32.797671159495174], [-79.92511511165772, 32.79732586216012], [-79.92485369310609, 32.79696828347001], [-79.92459094416503, 32.79659927901422], [-79.92432695159911, 32.79621970438215], [-79.92406180217284, 32.79583041516321], [-79.92379558265075, 32.7954322669468], [-79.92352837979736, 32.7950261153223], [-79.9232602803772, 32.79461281587913], [-79.92027682800293, 32.78983946453914], [-79.92000473741456, 32.789407127244864], [-79.91973287819825, 32.78897876479407], [-79.91946133711855, 32.78855523277617], [-79.91919020093994, 32.78813738678056], [-79.91891955642701, 32.787726082396645], [-79.91864949034424, 32.78732217521382], [-79.91838008945618, 32.78692652082148], [-79.91811144052735, 32.786539974809024], [-79.91784363032227, 32.78616339276585], [-79.91497788848876, 32.782923310831485], [-79.91472691060181, 32.78273303239276], [-79.91447789937743, 32.78256384058549], [-79.9142309415802, 32.782416590999084], [-79.91398612397462, 32.78229213922294], [-79.91374353332519, 32.78219134084644], [-79.91350325639647, 32.78211505145899], [-79.913265379953, 32.78206412664999], [-79.91302999075928, 32.78203942200884], [-79.91279717557984, 32.78204179312495], [-79.91043090820312, 32.78409957394813], [-79.9102465080076, 32.78449492909142], [-79.9100867378584, 32.78492984653689], [-79.90995079912143, 32.78540321079651], [-79.9098378931626, 32.78591390638227], [-79.9097472213478, 32.78646081780616], [-79.90967798504296, 32.787042829580145], [-79.90962938561398, 32.78765882621623], [-79.90960062442676, 32.78830769222638], [-79.9095909028472, 32.788988312122584], [-79.91051217022705, 32.79825185788735], [-79.91066863048013, 32.79922651635084], [-79.91083374809764, 32.80021842735615], [-79.91100672444553, 32.80122647541528], [-79.91118676088965, 32.80224954504018], [-79.91137305879593, 32.80328652074288], [-79.91156481953027, 32.804336287035326], [-79.91176124445859, 32.80539772842951], [-79.91196153494678, 32.80646972943742], [-79.91216489236075, 32.80755117457103], [-79.91437583166504, 32.81975135376436], [-79.91455369872902, 32.82085912034108], [-79.91472425047559, 32.82196182969929], [-79.91488668827058, 32.82305836635095], [-79.91504021347997, 32.82414761480805], [-79.91518402746964, 32.82522845958259], [-79.91531733160545, 32.82629978518653], [-79.91543932725338, 32.827360476131865], [-79.91554921577931, 32.82840941693057], [-79.91564619854911, 32.82944549209464], [-79.91563281976319, 32.83967415743999], [-79.91551264000041, 32.84046883692299], [-79.91536917223829, 32.84123614942711], [-79.91520161784275, 32.841974979464354], [-79.91500917817969, 32.842684211546704], [-79.91479105461504, 32.843362730186115], [-79.91454644851464, 32.8440094198946], [-79.91427456124447, 32.84462316518411], [-79.91397459417041, 32.84520285056667], [-79.91364574865835, 32.845747360554235], [-79.90789406176758, 32.849096364775036], [-79.9071563815403, 32.84913176195735], [-79.90637944063184, 32.84911748240045], [-79.90556244040805, 32.849052410616316], [-79.90470579250194, 32.84893471872256], [-79.90381343360139, 32.84876208981984], [-79.90288656778125, 32.84853559172671], [-79.90192612862786, 32.84825651491511], [-79.90093304972754, 32.84792614985699], [-79.89990826466656, 32.84754578702431], [-79.88681002807616, 32.84043101772218], [-79.88547758881914, 32.83955133840706], [-79.88412558002344, 32.83863843745276], [-79.88275493527533, 32.83769360533122], [-79.88136658816114, 32.836718132514406], [-79.87996147226715, 32.83571330947428], [-79.87854052117969, 32.83468042668278], [-79.87710466848505, 32.83362077461186], [-79.87565484776954, 32.832535643733465], [-79.87419199261944, 32.83142632451957], [-79.85750731896971, 32.81799645800123], [-79.85596087033647, 32.81669753557346], [-79.85441352389061, 32.81539120094557], [-79.85286621321843, 32.814078744589494], [-79.85131987190624, 32.81276145697719], [-79.84977543354034, 32.81144062858062], [-79.84823383170702, 32.81011754987172], [-79.84669599999262, 32.80879351132245], [-79.84516287198339, 32.807469803404764], [-79.84363538126568, 32.80614771659062], [-79.82747205029295, 32.79208082944673], [-79.82608502680498, 32.7908788526873], [-79.82471577723045, 32.789695273166785], [-79.82336523515569, 32.78853138135714], [-79.82203433416699, 32.78738846773032], [-79.82072400785064, 32.78626782275826], [-79.81943518979296, 32.785170736912946], [-79.81816881358024, 32.7840985006663], [-79.81692581279883, 32.78305240449029], [-79.81570712103496, 32.78203373885686], [-79.80417291247556, 32.7730079076781], [-79.80331874865435, 32.77241906536798], [-79.80250103047264, 32.77187442973582], [-79.80172069151676, 32.77137529125358], [-79.80097866537302, 32.77092294039319], [-79.80027588562774, 32.77051866762665], [-79.79961328586715, 32.770163763425856], [-79.79899246908782, 32.76985872157151], [-79.79842245484862, 32.76959389412135], [-79.79790492825346, 32.76936556782212], [-79.79534838500975, 32.769070906870525], [-79.79537127326932, 32.769228190485656], [-79.79543174302734, 32.76941324126892], [-79.79552864765715, 32.76962538737547], [-79.79566084053221, 32.76986395696048], [-79.79582717502592, 32.770128278179115], [-79.7960265045117, 32.77041767918655], [-79.79625768236298, 32.77073148813796], [-79.79651956195312, 32.7710690331885], [-79.79681099665557, 32.771429642493345], [-79.80163948059081, 32.776726438008815], [-79.80219613976715, 32.777311414468436], [-79.80276744791014, 32.77791072119955], [-79.80335225839325, 32.778523686357325], [-79.80394942458983, 32.779149638096925], [-79.80455779987334, 32.779787904573524], [-79.80517623761718, 32.780437813942285], [-79.80580359119475, 32.78109869435839], [-79.80643871397949, 32.781769873977], [-79.80708045934477, 32.782450680953275], [-79.81424881347655, 32.79038281567679], [-79.81488059293487, 32.79112674704826], [-79.81550408882812, 32.791871571794594], [-79.81611815452973, 32.792616618070944], [-79.81672164341308, 32.79336121403251], [-79.81731340885163, 32.79410468783443], [-79.81789230421874, 32.794846367631884], [-79.81845718288788, 32.79558558158005], [-79.81900689823242, 32.79632165783408], [-79.81954030362579, 32.79705392454914], [-79.82400337097168, 32.804665281221695], [-79.8242516200772, 32.80529942957238], [-79.82446865308594, 32.80592103440129], [-79.82465332337128, 32.8065294238636], [-79.82480448430664, 32.807123926114464], [-79.82492098926544, 32.80770386930908], [-79.82500169162108, 32.80826858160258], [-79.825045444747, 32.808817391150164], [-79.8250511020166, 32.80934962610698], [-79.82501751680329, 32.80986461462821], [-79.82317655694578, 32.81511763936037], [-79.82291586796518, 32.8155776345275], [-79.82264117182325, 32.81603438083504], [-79.82235278447635, 32.81648777517184], [-79.82205102188087, 32.81693771442673], [-79.82173619999313, 32.81738409548855], [-79.82140863476954, 32.81782681524612], [-79.82106864216641, 32.81826577058828], [-79.82071653814013, 32.81870085840387], [-79.82035263864707, 32.819131975581726], [-79.81566160693359, 32.82358271265361], [-79.81518080643502, 32.8239581395076], [-79.81469231790234, 32.82432825527869], [-79.8141964572919, 32.82469295685571], [-79.81369354056005, 32.82505214112749], [-79.81318388366319, 32.825405704982884], [-79.81266780255763, 32.82575354531069], [-79.81214561319973, 32.826095558999775], [-79.81161763154591, 32.82643164293896], [-79.81108417355246, 32.82676169401708], [-79.80494506072998, 32.82996459725244], [-79.80437053125742, 32.83021421132679], [-79.80379463287794, 32.83045645209492], [-79.80321768154788, 32.83069121644566], [-79.80263999322362, 32.83091840126783], [-79.80206188386153, 32.831137903450276], [-79.80148366941798, 32.831349619881834], [-79.80090566584927, 32.83155344745133], [-79.80032818911182, 32.8317492830476], [-79.79975155516196, 32.831937023559476], [-79.79355456921385, 32.833438403826754], [-79.79301269331125, 32.83352096065497], [-79.7924757676289, 32.83359408195363], [-79.79194410812319, 32.83365766461157], [-79.79141803075049, 32.83371160551763], [-79.79089785146714, 32.833755801560635], [-79.79038388622948, 32.833790149629415], [-79.78987645099393, 32.83381454661283], [-79.78937586171679, 32.833828889399676], [-79.78888243435445, 32.83383307487881], [-79.78379761834717, 32.83333571959247], [-79.78334264774452, 32.833260119035145], [-79.7828884123711, 32.833179884680774], [-79.78243511307568, 32.83309488081822], [-79.78198295070703, 32.83300497173636], [-79.78153212611389, 32.832910021724025], [-79.78108284014503, 32.832809895070106], [-79.78063529364917, 32.832704456063446], [-79.78018968747509, 32.83259356899291], [-79.77974622247156, 32.83247709814738], [-79.77506686743163, 32.83078857631024], [-79.77466476267736, 32.8305945146958], [-79.77426741012745, 32.83039310506155], [-79.7738750106306, 32.830184211696356], [-79.77348776503564, 32.82996769888908], [-79.77310587419129, 32.82974343092859], [-79.7727295389463, 32.82951127210373], [-79.77235896014942, 32.82927108670338], [-79.7719943386494, 32.82902273901638], [-79.77163587529503, 32.82876609333162], [-79.76815665875245, 32.82535650956062], [-79.7678877593485, 32.8249897024338], [-79.76762762912402, 32.8246128330644], [-79.76737646892775, 32.824225765741296], [-79.7671344796084, 32.82382836475334], [-79.76690186201478, 32.8234204943894], [-79.7666788169956, 32.82300201893834], [-79.76646554539965, 32.82257280268901], [-79.76626224807569, 32.822132709930294], [-79.76606912587243, 32.82168160495103], [-79.76467378234864, 32.8159538302382], [-79.764618427797, 32.815359993143716], [-79.76457585939991, 32.81475337958389], [-79.76454627800612, 32.81413385384761], [-79.76452988446437, 32.813501280223704], [-79.7645268796234, 32.81285552300105], [-79.76453746433205, 32.81219644646852], [-79.76456183943897, 32.81152391491495], [-79.76460020579297, 32.81083779262923], [-79.7646527642428, 32.8101379439002], [-79.76629620263671, 32.8014305177732], [-79.76658081584537, 32.80051421410112], [-79.76689192710352, 32.7995741723892], [-79.76722877008018, 32.79861129109202], [-79.76759057844433, 32.79762646866419], [-79.76797658586503, 32.796620603560314], [-79.76838602601123, 32.795594594234984], [-79.76881813255198, 32.79454933914281], [-79.76927213915624, 32.79348573673839], [-79.76974727949309, 32.79240468547633], [-79.77614947888183, 32.77961845500496], [-79.77681845019168, 32.77839809691004], [-79.77749859293115, 32.77717196986729], [-79.77818914076926, 32.77594097233131], [-79.778889327375, 32.77470600275671], [-79.77959838641739, 32.77346795959808], [-79.78031555156542, 32.77222774131001], [-79.78104005648812, 32.77098624634713], [-79.7817711348545, 32.76974437316402], [-79.78250802033352, 32.7685030202153], [-79.790777859375, 32.75513943126411], [-79.79152465638859, 32.7539744005868], [-79.7922672982119, 32.752821570053676], [-79.79300501851401, 32.75168183811935], [-79.79373705096387, 32.750556103238424], [-79.7944626292305, 32.74944526386548], [-79.79518098698291, 32.748350218455144], [-79.79589135789011, 32.747271865462], [-79.79659297562108, 32.746211103340656], [-79.79728507384488, 32.745168830545715], [-79.804050696167, 32.73518108335966], [-79.80456878648684, 32.73443076194041], [-79.80506739499658, 32.73371060975737], [-79.80554575536519, 32.733021525265144], [-79.80600310126172, 32.73236440691834], [-79.80643866635512, 32.73174015317154], [-79.80685168431445, 32.731149662479375], [-79.80724138880868, 32.730593833296425], [-79.80760701350684, 32.730073564077294], [-79.8079477920779, 32.729589753276585], [-79.8098373413086, 32.726931048100624] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-80.08724212646484, 32.77428536643231], [-80.03746032714844, 32.84007757059952], [-80.01548767089844, 32.74512501406368], [-79.95368957519531, 32.850461360442424], [-79.9361801147461, 32.75349876580794], [-79.9310302734375, 32.79997320569839], [-79.91043090820312, 32.78409957394813], [-79.90528106689453, 32.8490192400596], [-79.79919433593749, 32.76995522487643], [-79.82494354248047, 32.810361684869015], [-79.78683471679688, 32.83373132321818], [-79.76554870605469, 32.80430188623444], [-79.8098373413086, 32.726931048100624] ] } } ] } ================================================ FILE: packages/turf-bezier-spline/test/out/issue-#1063.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "stroke-width": 6, "fill-opacity": 0.1 }, "geometry": { "type": "LineString", "coordinates": [ [237.581, 37.7749], [237.58070677200158, 37.77489368036651], [237.5798278704694, 37.77487473832964], [237.57836446909778, 37.774843199184794], [237.57631774158125, 37.774799088227354], [237.57368886161433, 37.77474243075274], [237.57047900289135, 37.774673252056324], [237.56668933910683, 37.77459157743351], [237.56232104395522, 37.77449743217972], [237.55737529113102, 37.774390841590325], [237.4651954802857, 37.772404187441296], [237.45341178355756, 37.77215022586576], [237.4410658871847, 37.77188414779478], [237.4281589648616, 37.77160597852377], [237.41469219028275, 37.77131574334813], [237.40066673714253, 37.77101346756326], [237.3860837791355, 37.77069917646455], [237.37094448995597, 37.770372895347386], [237.35525004329858, 37.770034649507195], [237.3390016128577, 37.76968446423935], [237.12404162491123, 37.76505165855215], [237.1012369372359, 37.76456017319357], [237.07789352380507, 37.76405707724751], [237.0540125583131, 37.76354239600937], [237.0295952144545, 37.76301615477455], [237.0046426659237, 37.76247837883844], [236.97915608641517, 37.76192909349644], [236.95313664962336, 37.761368324043964], [236.9265855292427, 37.760796095776385], [236.8995038989677, 37.76021243398912], [236.566927989529, 37.75304477651299], [236.5335717886893, 37.75232588553041], [236.49970033598296, 37.75159588986828], [236.46531480510487, 37.750854814822034], [236.43041636974905, 37.75010268568704], [236.39500620361036, 37.749339527758735], [236.3590854803829, 37.74856536633247], [236.32265537376142, 37.74778022670369], [236.28571705744014, 37.74698413416775], [236.24827170511375, 37.746177114020085], [235.80324412979166, 37.736585904504274], [235.75980589357, 37.735649726056685], [235.71587587937103, 37.73470294883752], [235.67145526088922, 37.733745598142185], [235.626545211819, 37.73277769926606], [235.58114690585487, 37.73179927750455], [235.53526151669126, 37.730810358153064], [235.48889021802262, 37.72981096650699], [235.44203418354346, 37.72880112786172], [235.3946945869481, 37.727780867512664], [234.8423796013516, 37.71587740570641], [234.7893288075307, 37.714734057952846], [234.73580970962155, 37.71358061733566], [234.68182348131876, 37.71241710915025], [234.62737129631668, 37.71124355869201], [234.57245432830982, 37.71005999125634], [234.5170737509926, 37.708866432138635], [234.4612307380595, 37.7076629066343], [234.40492646320502, 37.70644944003872], [234.3481621001235, 37.705226057647295], [233.69372395986133, 37.69112164329983], [233.6315300862238, 37.68978124439932], [233.5688913823872, 37.68843125854314], [233.50580902204598, 37.68707171102668], [233.44228417889468, 37.685702627145346], [233.3783180266277, 37.68432403219454], [233.31391173893954, 37.68293595146963], [233.2490664895246, 37.68153841026605], [233.18378345207734, 37.680131433879176], [233.11806380029228, 37.67871504760442], [232.36666676097343, 37.66252098046498], [232.29579928530185, 37.66099364857655], [232.22451045332036, 37.65945723564039], [232.15280143872346, 37.65791176695191], [232.08067341520552, 37.6563572678065], [232.00812755646106, 37.65479376349956], [231.93516503618451, 37.65322127932649], [231.86178702807038, 37.65163984058269], [231.78799470581308, 37.65004947256355], [231.71378924310704, 37.64845020056447], [230.87059756034031, 37.6302777803823], [230.79152596041737, 37.62857363366497], [230.7120564780737, 37.62686091180785], [230.63219028700365, 37.62513964010637], [230.55192856090173, 37.62340984385591], [230.47127247346245, 37.62167154835188], [230.39022319838017, 37.619924778889654], [230.30878190934942, 37.61816956076465], [230.22694978006461, 37.61640591927227], [230.14472798422028, 37.61463387970789], [229.2149059136147, 37.59459440623225], [229.1280996672229, 37.59272356284501], [229.04091901229964, 37.590844650225975], [228.95336512253903, 37.588957693670494], [228.86543917163587, 37.58706271847402], [228.77714233328425, 37.58515974993189], [228.68847578117897, 37.58324881333956], [228.59944068901416, 37.581329933992365], [228.5100382304846, 37.579403137185764], [228.42026957928448, 37.5774684482151], [227.40898137644885, 37.555673221195214], [227.31490996137092, 37.5536457992971], [227.22048761165064, 37.55161081407517], [227.12571550098215, 37.54956829082472], [227.03059480306024, 37.547518254841236], [226.93512669157911, 37.545460731420064], [226.83931234023328, 37.543395745856614], [226.74315292271723, 37.54132332344628], [226.6466496127254, 37.53924348948446], [226.54980358395227, 37.53715626926655], [225.4622135044953, 37.51371658845164], [225.361346398514, 37.511542706201716], [225.26015183177927, 37.509361766535875], [225.15863097798564, 37.507173794749505], [225.05678501082753, 37.50497881613802], [224.9546151039994, 37.502776855996814], [224.85212243119574, 37.50056793962127], [224.74930816611095, 37.4983520923068], [224.64617348243956, 37.49612933934881], [224.54271955387594, 37.49389970604267], [223.3839918534067, 37.46892687118198], [223.27679853430448, 37.46661664673924], [223.169301228338, 37.46429987078852], [223.0615011092018, 37.461976568625246], [222.9533993505902, 37.459646765544804], [222.8449971261977, 37.45731048684257], [222.7362956097188, 37.45496775781397], [222.62729597484793, 37.45261860375439], [222.51799939527956, 37.450263049959226], [222.40840704470813, 37.44790112172389], [221.18370597883546, 37.42150643256666], [221.070655924395, 37.41906998409012], [220.95732535697942, 37.41662749001357], [220.84371545028318, 37.414178975632396], [220.7298273780007, 37.411724466242], [220.6156623138265, 37.409263987137784], [220.50122143145504, 37.40679756361514], [220.3865059045807, 37.40432522096947], [220.271516906898, 37.401846984496174], [220.15625561210135, 37.39936287949064], [218.87074543643413, 37.37165763578612], [218.75230812443803, 37.36910508143481], [218.6336137733559, 37.36654698739142], [218.5146635568824, 37.363983378951396], [218.3954586487116, 37.36141428141006], [218.2760002225384, 37.35883972006289], [218.15628945205685, 37.356259720205216], [218.03632751096177, 37.353674307132486], [217.91611557294726, 37.35108350614006], [217.79565481170818, 37.34848734252338], [216.45449978185513, 37.31958284402079], [216.33114469008615, 37.31692430195375], [216.2075560331201, 37.314260726102546], [216.08373498465187, 37.31159214176266], [215.95968271837546, 37.30891857422943], [215.8354004079858, 37.306240048798315], [215.7108892271769, 37.303556590764636], [215.5861503496436, 37.30086822542387], [215.46118494908, 37.298174978071344], [215.33599419918093, 37.29547687400251], [213.94435857075115, 37.265484420451116], [213.81655517699176, 37.26273000882733], [213.68854169192446, 37.25997106932736], [213.5603192892441, 37.25720762724664], [213.4318891426447, 37.254439707880536], [213.3032524258212, 37.251667336524484], [213.17441031246756, 37.24889053847384], [213.04536397627868, 37.246109339024045], [212.91611459094867, 37.24332376347045], [212.78666333017227, 37.240533837108494], [211.34971135877453, 37.209564728257526], [211.21792914080737, 37.20672456523603], [211.0859603054215, 37.20388038024629], [210.9538060263116, 37.201032198583775], [210.82146747717195, 37.19818004554382], [210.68894583169714, 37.19532394642185], [210.55624226358148, 37.19246392651326], [210.42335794651956, 37.18960001111345], [210.2902940542058, 37.186732225517815], [210.15705176033458, 37.18386059502175], [208.67994770157793, 37.15202613062046], [208.54465613718557, 37.14911033436026], [208.40920142926373, 37.1461910220398], [208.27358475150695, 37.14326821895448], [208.1378072776096, 37.1403419503997], [208.0018701812661, 37.137412241670845], [207.86577463617107, 37.13447911806333], [207.7295218160188, 37.13154260487254], [207.5931128945038, 37.12860272739387], [207.45654904532051, 37.12565951092272], [205.9444571548137, 37.093070990720335], [205.8061257217788, 37.09008967938047], [205.66765461910364, 37.087105357888305], [205.5290450204826, 37.08411805153922], [205.39029809961013, 37.081127785628624], [205.2514150301807, 37.07813458545191], [205.1123969858888, 37.07513847630448], [204.97324514042882, 37.07213948348173], [204.83396066749523, 37.06913763227905], [204.69454474078253, 37.066132947991846], [203.15262927413443, 37.032901671737605], [203.0117274502397, 37.029864963477095], [202.87070943059376, 37.02682575097223], [202.7295763888911, 37.023784059518405], [202.58832949882617, 37.020739914411024], [202.44696993409337, 37.01769334094547], [202.3054988683872, 37.014644364417144], [202.16391747540212, 37.01159301012145], [202.0222269288327, 37.00853930335381], [201.88042840237307, 37.00548326940955], [200.3138536151926, 36.9717205368527], [200.17085087822053, 36.96863854983056], [200.0277554193866, 36.965554564472036], [199.88456841238488, 36.96246860607248], [199.74129103091013, 36.95938069992734], [199.59792444865658, 36.95629087133195], [199.4544698393189, 36.95319914558178], [199.3109283765913, 36.95010554797216], [199.16730123416852, 36.94701010379854], [199.0235895857447, 36.94391283835628], [197.43751973364073, 36.90972994924605], [197.29288556137408, 36.90661280162131], [197.14818214113464, 36.90349416156814], [197.00341064661654, 36.90037405438188], [196.8585722515146, 36.897252505358], [196.7136681295229, 36.89412953979181], [196.5686994543363, 36.891005182978795], [196.42366739964882, 36.88787946021428], [196.27857313915536, 36.884752396793715], [196.13341784654997, 36.88162401801246], [194.53301718513134, 36.847132272098094], [194.38722105535268, 36.84399008202978], [194.24137915149038, 36.840846905440976], [194.09549264723856, 36.837702767627036], [193.949562716292, 36.834557693883426], [193.80359053234486, 36.831411709505474], [193.65757726909186, 36.82826483978862], [193.5115241002272, 36.82511711002824], [193.36543219944565, 36.821968545519766], [193.21930274044138, 36.818819171558545], [191.6097355253169, 36.78412986858926], [191.46324691580898, 36.7809727542364], [191.31673600610634, 36.77781515927098], [191.17020396990347, 36.77465710898841], [191.02365198089484, 36.77149862868407], [190.87708121277493, 36.76833974365338], [190.73049283923817, 36.76518047919172], [190.58388803397898, 36.7620208605945], [190.43726797069192, 36.75886091315711], [190.29063382307135, 36.755700662174945], [188.67706430984998, 36.7209251019], [188.53035269839526, 36.7177631814216], [188.383642260635, 36.7146012862386], [188.23693417026368, 36.711439441646384], [188.09022960097573, 36.708277672940376], [187.9435297264656, 36.70511600541595], [187.79683572042777, 36.70195446436851], [187.6501487565566, 36.69879307509346], [187.50347000854669, 36.695631862886195], [187.35680065009242, 36.6924708530421], [185.7443930943831, 36.65772033521075], [185.59792795876425, 36.65456372676582], [185.451487470729, 36.65140764952426], [185.30507280397183, 36.64825212878144], [185.15868513218712, 36.64509718983277], [185.01232562906938, 36.64194285797363], [184.86599546831306, 36.638789158499435], [184.7196958236126, 36.63563611670558], [184.57342786866246, 36.63248375788745], [184.42719277715716, 36.62933210734046], [182.82111143456865, 36.59471793170191], [182.67536225256836, 36.59157675344951], [182.52966119204075, 36.5884366123084], [182.38400942668028, 36.58529753357399], [182.2384081301815, 36.582159542541675], [182.09285847623877, 36.57902266450686], [181.94736163854665, 36.57588692476493], [181.80191879079948, 36.57275234861128], [181.65653110669177, 36.56961896134132], [181.511199759918, 36.566486788250444], [179.91660888605927, 36.53212025455395], [179.7720451354601, 36.52900462465308], [179.62755298022273, 36.52589053777146], [179.48313359404173, 36.52277801920448], [179.33878815061144, 36.51966709424755], [179.19451782362637, 36.51655778819606], [179.05032378678104, 36.513450126345425], [178.90620721376976, 36.51034413399101], [178.76216927828708, 36.507239836428234], [178.6182111540275, 36.504137258952504], [177.04027500450746, 36.47012966694731], [176.897366163092, 36.46704970355698], [176.75455239092753, 36.46397178909386], [176.6118348617085, 36.46089594885334], [176.46921474912938, 36.457822208130814], [176.3266932268846, 36.45475059222168], [176.18427146866867, 36.45168112642135], [176.0419506481759, 36.448613836025196], [175.89973193910095, 36.44554874632863], [175.75761651513815, 36.44248588262706], [174.20149934556562, 36.408948532062404], [174.06071489111653, 36.40591435334165], [173.92004897980758, 36.40288272945605], [173.7795027853332, 36.399853685701004], [173.63907748138783, 36.3968272473719], [173.498774241666, 36.39380343976415], [173.35859423986207, 36.39078228817314], [173.2185386496705, 36.38776381789427], [173.07860864478585, 36.38474805422294], [172.93880539890245, 36.38173502245455], [171.4096714648863, 36.34877921307967], [171.27148087518628, 36.34580093718751], [171.13343230251547, 36.34282572203846], [170.99552692056835, 36.339853592927916], [170.8577659030394, 36.33688457515126], [170.72015042362307, 36.3339186940039], [170.5826816560138, 36.33095597478125], [170.44536077390603, 36.327996442778684], [170.3081889509943, 36.32504012329161], [170.17116736097296, 36.32208704161541], [168.6741809181221, 36.289824073179545], [168.53905367095362, 36.28691181827501], [168.40409191470363, 36.284003130021524], [168.26929682306638, 36.28109803371449], [168.13466956973645, 36.27819655464931], [168.00021132840828, 36.275298718121384], [167.8659232727763, 36.2724045494261], [167.73180657653498, 36.26951407385885], [167.59786241337875, 36.26662731671504], [167.46409195700213, 36.26374430329008], [166.0044172609254, 36.232285475542476], [165.87282283407126, 36.22944935978457], [165.74141737202459, 36.226617316585674], [165.61020204847986, 36.22378937124119], [165.4791780371316, 36.2209655490465], [165.3483465116742, 36.21814587529701], [165.21770864580216, 36.21533037528812], [165.08726561320984, 36.21251907431522], [164.9570185875918, 36.20971199767371], [164.8269687426425, 36.20690917065899], [163.40977004894881, 36.17636578334888], [163.28217792019151, 36.17361592489664], [163.15479823013087, 36.17087064491136], [163.02763215246136, 36.16812996868843], [162.90068086087732, 36.16539392152325], [162.77394552907333, 36.16266252871123], [162.6474273307438, 36.15993581554775], [162.5211274395832, 36.15721380732822], [162.39504702928596, 36.15449652934804], [162.26918727354658, 36.15178400690258], [160.89962883784483, 36.122267359779194], [160.77650848496702, 36.11961387679164], [160.653624044675, 36.116965478179], [160.53097669066324, 36.11432218923665], [160.40856759662614, 36.11168403526001], [160.28639793625817, 36.109051041544475], [160.1644688832538, 36.106423233385435], [160.04278161130748, 36.10380063607829], [159.92133729411367, 36.10118327491844], [159.80013710536682, 36.09857117520128], [158.48338318326586, 36.07019256801388], [158.36520408405025, 36.06764557865002], [158.2472843713095, 36.06510417956903], [158.12962521873808, 36.06256839606629], [158.0122278000305, 36.060038253437206], [157.89509328888124, 36.05751377697718], [157.77822285898463, 36.0549949919816], [157.66161768403524, 36.052481923745866], [157.54527893772752, 36.04997459756539], [157.4292077937558, 36.04747303873553], [156.17042264086453, 36.020343771233335], [156.05765427309368, 36.017913393652215], [155.9451687656868, 36.015489112261896], [155.83296729233842, 36.013070952357786], [155.72105102674303, 36.010658939235284], [155.60942114259498, 36.008253098189776], [155.49807881358882, 36.00585345451668], [155.38702521341895, 36.00346003351138], [155.2762615157799, 36.00107286046928], [155.16578889436605, 35.99869196068577], [153.9701367662933, 35.97292333261803], [153.8632486077498, 35.97061968497864], [153.75666678345945, 35.96832263943803], [153.65039246711675, 35.96603222129158], [153.5444268324161, 35.96374845583466], [153.438771053052, 35.961471368362716], [153.33342630271886, 35.95920098417112], [153.2283937551112, 35.95693732855528], [153.1236745839234, 35.954680426810576], [153.01926996285, 35.95243030423242], [151.89191511520468, 35.928133615348365], [151.79137664367119, 35.92596681580975], [151.69116798028, 35.92380712427786], [151.59129029872554, 35.92165456604807], [151.49174477270233, 35.91950916641579], [151.3925325759047, 35.917370950676414], [151.29365488202728, 35.91523994412534], [151.19511286476435, 35.913116172057975], [151.09690769781054, 35.91099965976971], [150.9990405548602, 35.90889043255593], [149.9451472432512, 35.8861769826048], [149.85142793651033, 35.88415714932598], [149.75806191180092, 35.882144929961825], [149.66505034281735, 35.88014034980773], [149.5723944032541, 35.87814343415909], [149.48009526680573, 35.87615420831132], [149.38815410716657, 35.87417269755979], [149.2965720980311, 35.87219892719992], [149.2053504130938, 35.8702329225271], [149.11449022604913, 35.86827470883672], [148.13922270608535, 35.84725579756776], [148.05279204191976, 35.845393048707756], [147.9667381336747, 35.84353841967037], [147.8810621550447, 35.84169193575098], [147.7957652797241, 35.83985362224501], [147.71084868140744, 35.83802350444786], [147.62631353378924, 35.8362016076549], [147.54216101056383, 35.834387957161546], [147.45839228542573, 35.83258257826319], [147.37500853206933, 35.83078549625523], [146.4835310593596, 35.81157242341769], [146.40485851555192, 35.80987687713552], [146.32658620155388, 35.80818995658391], [146.24871529106, 35.80651168705827], [146.17124695776474, 35.804842093853985], [146.0941823753625, 35.803181202266465], [146.0175227175478, 35.8015290375911], [145.94126915801505, 35.79988562512329], [145.86542287045873, 35.79825099015843], [145.7899850285733, 35.79662515799191], [144.98746185872653, 35.77932922333501], [144.91701691305937, 35.7778109977897], [144.84699567109095, 35.776301903882896], [144.7773993065159, 35.77480196691001], [144.70822899302846, 35.77331121216645], [144.6394859043233, 35.77182966494759], [144.5711712140947, 35.77035735054883], [144.5032860960373, 35.768894294265586], [144.43583172384544, 35.76744052139323], [144.36880927121356, 35.765996057227184], [143.66040465983863, 35.75072856050018], [143.59865679009457, 35.749397773850724], [143.53735609793847, 35.74807662474776], [143.47650375706476, 35.74676513848666], [143.4161009411679, 35.745463340362825], [143.3561488239424, 35.744171255671645], [143.29664857908264, 35.742888909708526], [143.2376013802831, 35.74161632776885], [143.1790084012383, 35.740353535148046], [143.12087081564263, 35.73910055714149], [142.5117490183484, 35.7259727980936], [142.45916770231008, 35.724839568499064], [142.40705703774884, 35.72371648235895], [142.3554181983592, 35.722603564968644], [142.3042523578355, 35.72150084162355], [142.25356068987222, 35.72040833761908], [142.2033443681639, 35.71932607825061], [142.15360456640494, 35.71825408881355], [142.10434245828984, 35.7171923946033], [142.05555921751298, 35.71614102091525], [141.55088448990833, 35.70526429929573], [141.5079392053584, 35.70433874491511], [141.46548804617473, 35.70342383989687], [141.4235321860517, 35.70251960953639], [141.38207279868377, 35.701626079129085], [141.34111105776543, 35.70074327397033], [141.30064813699116, 35.69987121935554], [141.26068521005536, 35.69900994058011], [141.2212234506525, 35.69815946293943], [141.1822640324771, 35.69731981172892], [140.78720063017096, 35.68880542728701], [140.754360854892, 35.688097666279326], [140.72203867886847, 35.68740106054198], [140.69023527579475, 35.686715635370355], [140.6589518193652, 35.68604141605984], [140.62818948327447, 35.68537842790583], [140.59794944121683, 35.68472669620374], [140.5682328668868, 35.68408624624896], [140.53904093397892, 35.683457103336885], [140.51037481618755, 35.682839292762914], [140.23008699478876, 35.67679854524785], [140.2078222065635, 35.67631869577214], [140.1860984914827, 35.6758505074747], [140.16491702324083, 35.675394005650936], [140.14427897553236, 35.67494921559624], [140.12418552205173, 35.674516162606004], [140.10463783649342, 35.67409487197564], [140.08563709255185, 35.67368536900053], [140.0671844639215, 35.673287678976074], [140.0492811242968, 35.672901827197684], [139.88893313941426, 35.6694460163587], [139.8777128160253, 35.66920419657398], [139.8670570396699, 35.668974543875485], [139.85696698404254, 35.66875708355862], [139.84744382283773, 35.668551840918745], [139.83848872974988, 35.66835884125131], [139.8301028784735, 35.668178109851674], [139.822287442703, 35.668009672015266], [139.81504359613277, 35.66785355303746], [139.80837251245745, 35.66770977821366], [139.7731286197, 35.6669502038] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [237.581, 37.7749], [139.7731286197, 35.6669502038] ] } } ] } ================================================ FILE: packages/turf-bezier-spline/test/out/simple.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "stroke-width": 6, "fill-opacity": 0.1 }, "geometry": { "type": "LineString", "coordinates": [ [121.025390625, -22.91792293614603], [121.02555091028576, -22.917812175967313], [121.0260308794541, -22.91748084683116], [121.02682920247155, -22.916930375837573], [121.02794454930469, -22.91616219008655], [121.02937558992004, -22.915177716678098], [121.03112099428418, -22.91397838271221], [121.03317943236364, -22.912565615288884], [121.03554957412499, -22.91094084150813], [121.03823008953476, -22.90910548846994], [121.08782003027343, -22.875426524659414], [121.09412128685561, -22.871175534332064], [121.10071562665135, -22.86673251704727], [121.10760171962734, -22.862098899905067], [121.11477823574998, -22.857276110005422], [121.12224384498599, -22.85226557444836], [121.12999721730176, -22.847068720333866], [121.13803702266395, -22.841686974761945], [121.14636193103908, -22.836121764832594], [121.1549706123937, -22.830374517645822], [121.26801473437499, -22.75554849020125], [121.27992494887464, -22.74772810972538], [121.29210164591895, -22.739744244292094], [121.30454349547449, -22.731598321001382], [121.31724916750781, -22.72329176695325], [121.33021733198548, -22.714826009247698], [121.343446658874, -22.70620247498472], [121.35693581814002, -22.697422591264328], [121.37068347975, -22.68848778518651], [121.38468831367052, -22.679399483851277], [121.55533446972659, -22.569705632774053], [121.57232162876474, -22.558886702149795], [121.58954866967873, -22.547932828568136], [121.60701426243492, -22.536845439129046], [121.62471707700001, -22.525625960932558], [121.64265578334042, -22.514275821078634], [121.66082905142288, -22.50279644666732], [121.67923555121372, -22.491189264798564], [121.69787395267971, -22.479455702572416], [121.7167429257872, -22.467597187088835], [121.93913896875, -22.32931475238035], [121.9606710589479, -22.31606811160784], [121.98241643035254, -22.302715069877916], [122.00437375293052, -22.289257054290587], [122.02654169664844, -22.27569549194585], [122.04891893147278, -22.2620318099437], [122.0715041273701, -22.248267435384147], [122.094295954307, -22.234403795367182], [122.11729308224999, -22.22044231699281], [122.14049418116565, -22.20638442736103], [122.40878796386718, -22.04579264902266], [122.4343329718458, -22.030689138102016], [122.46006466036228, -22.015507768223966], [122.48598169938319, -22.000249966488525], [122.51208275887498, -21.98491715999566], [122.53836650880433, -21.969510775845414], [122.56483161913766, -21.95403224113775], [122.59147675984171, -21.9384829829727], [122.61830060088278, -21.92286442845023], [122.64530181222767, -21.907178004670378], [122.95364118750001, -21.73055612270351], [122.98266709988049, -21.714166581634856], [123.01185309212988, -21.69772772360881], [123.04119783421471, -21.681240975725366], [123.07069999610155, -21.664707765084525], [123.10035824775696, -21.648129518786288], [123.13017125914746, -21.631507663930655], [123.16013770023962, -21.614843627617624], [123.19025624099999, -21.598138836947204], [123.22052555139516, -21.581394719019382], [123.56305837207032, -21.395021973425415], [123.59503317547374, -21.37791724220888], [123.62714145807715, -21.36079173603496], [123.65938188984707, -21.34364688200365], [123.69175314075, -21.32648410721495], [123.72425388075256, -21.30930483876885], [123.7568827798213, -21.29211050376537], [123.78963850792275, -21.274902529304505], [123.82251973502343, -21.25768234248624], [123.85552513108998, -21.24045137041059], [124.22639925000001, -21.050607001190905], [124.2607909310475, -21.033357919826614], [124.29528949062598, -21.016116605504948], [124.32989359870203, -20.99888448532589], [124.3646019252422, -20.98166298638945], [124.399413140213, -20.964453535795627], [124.43432591358106, -20.947257560644424], [124.46933891531286, -20.930076488035834], [124.50445081537501, -20.912911745069863], [124.53966028373401, -20.895764758846514], [124.93302355371092, -20.708728006002488], [124.96930009902356, -20.691905414490577], [125.00565692219824, -20.67511913202128], [125.04209269320155, -20.658370585694612], [125.07860608200001, -20.64166120261056], [125.11519575856019, -20.624992409869137], [125.15186039284863, -20.608365634570333], [125.18859865483189, -20.591782303814153], [125.22540921447656, -20.5752438447006], [125.26229074174915, -20.558751684329668], [125.672291015625, -20.380801787862705], [125.70992041182386, -20.36497652620329], [125.7476034852158, -20.349216115586497], [125.78533890576746, -20.333521983112334], [125.82312534344531, -20.317895555880803], [125.86096146821593, -20.3023382609919], [125.89884595004588, -20.286851525545625], [125.93677745890172, -20.27143677664198], [125.97475466475, -20.25609544138097], [126.01277623755725, -20.240828946862585], [126.43356136816408, -20.07824514677406], [126.47201160187024, -20.063988054967265], [126.5104889121006, -20.04982435620311], [126.54899196882164, -20.03575547758158], [126.587519442, -20.02178284620269], [126.62607000160217, -20.00790788916644], [126.66464231759474, -19.994132033572818], [126.7032350599442, -19.980456706521835], [126.74184689861717, -19.96688333511349], [126.78047650358019, -19.953413346447782], [127.20619434375001, -19.81247488273909], [127.24493340158459, -19.800356800785043], [127.28367293527441, -19.78836065387364], [127.32241161478599, -19.776487869104873], [127.36114811008594, -19.764739873578755], [127.39988109114074, -19.753118094395273], [127.43860922791701, -19.74162395865444], [127.47733119038124, -19.73025889345624], [127.51604564850001, -19.71902432590069], [127.55475127223987, -19.707921683087783], [127.97954967480469, -19.5949077957603], [128.01804554338878, -19.585499563659134], [128.05651528715916, -19.57624180860061], [128.0949575760824, -19.567135957684737], [128.133371080125, -19.55818343801151], [128.17175446925353, -19.549385676680934], [128.21010641343454, -19.540744100793], [128.24842558263467, -19.532260137447718], [128.28671064682032, -19.523935213745087], [128.32496027595812, -19.515770756785102], [128.74298709375, -19.436960685840223], [128.7807077597047, -19.430833143592057], [128.81837570017677, -19.42488462038655], [128.85598958513268, -19.419116543323685], [128.89354808453908, -19.41353033950348], [128.93104986836244, -19.40812743602593], [128.96849360656933, -19.402909259991034], [129.00587796912635, -19.39787723849879], [129.043201626, -19.39303279864921], [129.08046324715684, -19.38837736754227], [129.4858663330078, -19.350050352981388], [129.52227978295426, -19.347774340586348], [129.55861390674903, -19.345705889233972], [129.59486737435876, -19.34384642602425], [129.63103885575, -19.34219737805719], [129.66712702088927, -19.34076017243279], [129.70313053974317, -19.339536236251057], [129.7390480822782, -19.33852699661198], [129.77487831846094, -19.33773388061556], [129.8106199182579, -19.337158315361812], [130.197547125, -19.345593597186305], [130.23212134555922, -19.347739954644517], [130.26658963929785, -19.350122415145396], [130.3009506761825, -19.352742405788945], [130.3352031261797, -19.35560135367516], [130.36934565925597, -19.358700685904036], [130.40337694537794, -19.362041829575585], [130.4372956545121, -19.365626211789802], [130.471100456625, -19.369455259646685], [130.50479002168322, -19.373530400246235], [130.86860392089844, -19.432190725922066], [130.90121260767884, -19.438403615114865], [130.93375118901855, -19.444744203732203], [130.9662197601361, -19.45121204477029], [130.99861841625, -19.45780669122533], [131.03094725257873, -19.464527696093512], [131.06320636434083, -19.471374612371037], [131.09539584675477, -19.47834699305411], [131.12751579503907, -19.48544439113892], [131.15956630441224, -19.49266635962168], [131.507566171875, -19.580201816109067], [131.53879084135804, -19.58888376307065], [131.5699473097705, -19.597684469380756], [131.6010356723309, -19.606603488035596], [131.63205602425782, -19.61564037203136], [131.66300846076965, -19.62479467436425], [131.69389307708497, -19.634065948030464], [131.72470996842225, -19.643453746026207], [131.75545922999999, -19.652957621347667], [131.78614095703674, -19.662577126991053], [132.11920990722658, -19.775895447228052], [132.14908864681456, -19.786867650438026], [132.17890108970215, -19.79794967292051], [132.20864733110778, -19.809141067671693], [132.23832746624998, -19.820441387687794], [132.26794159034728, -19.831850185964992], [132.29748979861816, -19.8433670154995], [132.32697218628113, -19.85499142928751], [132.35638884855467, -19.866722980325225], [132.38573988065735, -19.87856122160884], [132.704296875, -20.01569558887108], [132.73286777209535, -20.028779246809044], [132.76137427686035, -20.041963783943494], [132.78981648451355, -20.05524875327064], [132.81819449027344, -20.068633707786667], [132.84650838935852, -20.082118200487784], [132.8747582769873, -20.095701784370185], [132.9029442483783, -20.10938401243007], [132.93106639874998, -20.123164437663636], [132.9591248233209, -20.137042613067088], [133.26358882324217, -20.296026210630185], [133.29088996524717, -20.311042521775743], [133.318128619292, -20.32615077204178], [133.3453048805951, -20.34135051442447], [133.372418844375, -20.35664130192004], [133.39947060585024, -20.37202268752467], [133.42646026023925, -20.387494224234565], [133.45338790276062, -20.403055465045927], [133.48025362863282, -20.418705962954952], [133.50705753307435, -20.434445270957838], [133.7978475, -20.613311282097428], [133.823916974317, -20.630081444930184], [133.84992586504393, -20.646934606807392], [133.8758742673993, -20.663870320725252], [133.90176227660157, -20.68088813967995], [133.92758998786925, -20.697987616667703], [133.9533574964209, -20.7151683046847], [133.97906489747496, -20.732429756727136], [134.00471228625, -20.74977152579122], [134.03029975796446, -20.767193164873145], [134.3078346533203, -20.96397477286485], [134.3327105473517, -20.982319985864414], [134.3575277621631, -21.0007392578324], [134.38228639297301, -21.019232141765016], [134.406986535, -21.037798190658464], [134.43162828346254, -21.05643695750893], [134.4562117335791, -21.07514799531263], [134.48073698056825, -21.09393085706575], [134.50520411964843, -21.112785095764494], [134.52961324603822, -21.131710264405058], [134.79431203125, -21.34444065252451], [134.81803243239807, -21.364182114170468], [134.8416960586963, -21.38398869470884], [134.86530300536316, -21.403859947135818], [134.8888533676172, -21.423795424447604], [134.9123472406769, -21.4437946796404], [134.93578471976076, -21.463857265710406], [134.95916590008727, -21.483982735653807], [134.982490876875, -21.50417064246681], [135.0057597453424, -21.524420539145623], [135.25804138183594, -21.75113289066844], [135.28064437750305, -21.77209179944041], [135.30319250269042, -21.793106887028767], [135.32568585261657, -21.81417770642971], [135.3481245225, -21.835303810639445], [135.3705086075592, -21.856484752654165], [135.3928382030127, -21.87772008547007], [135.415113404079, -21.89900936208336], [135.43733430597658, -21.920352135490234], [135.45950100392392, -21.941747958686893], [135.69978445312498, -22.180475456888704], [135.72130813071348, -22.20247301126628], [135.7427788421924, -22.224517804384227], [135.76419668278015, -22.24660938923874], [135.7855617476953, -22.268747318826023], [135.8068741321564, -22.29093114614227], [135.82813393138184, -22.313160424183685], [135.8493412405902, -22.335434705946458], [135.870496155, -22.357753544426803], [135.8915987698297, -22.380116492620907], [136.12030299316405, -22.62889232077735], [136.14078544007631, -22.651749719240136], [136.16121682524903, -22.674645416367266], [136.18159724390074, -22.697578965154953], [136.20192679125003, -22.720549918599385], [136.22220556251526, -22.74355782969676], [136.24243365291505, -22.766602251443288], [136.26261115766783, -22.789682736835154], [136.28273817199218, -22.812798838868567], [136.30281479110656, -22.835950110539724], [136.52035875, -23.09280745192641], [136.5398380536383, -23.116345892954012], [136.55926819990722, -23.139913692569944], [136.57864928402526, -23.163510403770395], [136.59798140121094, -23.187135579551576], [136.61726464668274, -23.21078877290969], [136.63649911565918, -23.23446953684093], [136.65568490335878, -23.258177424341493], [136.674822105, -23.28191198840758], [136.6939108158014, -23.305672782035387], [136.90071347167967, -23.568644819927954], [136.9192277194464, -23.592685501999966], [136.93769471421388, -23.616746602584293], [136.95611455120059, -23.640827674677123], [136.97448732562498, -23.664928271274658], [136.9928131327057, -23.68904794537311], [137.0110920676611, -23.71318624996866], [137.02932422570984, -23.73734273805752], [137.04750970207033, -23.76151696263588], [137.06564859196104, -23.78570847669995], [137.26212890625, -24.05282839437402], [137.27971618554747, -24.07719251597005], [137.29725811621583, -24.10156811600237], [137.3147547934735, -24.125954747467173], [137.33220631253906, -24.150351963360677], [137.34961276863098, -24.17475931667906], [137.36697425696778, -24.199176360418537], [137.38429087276793, -24.223602647575287], [137.40156271125, -24.24803773114553], [137.41878986763243, -24.27248116412546], [137.60536680175784, -24.541782144856654], [137.6220651999884, -24.566290904456306], [137.63872015395995, -24.590802202416228], [137.65533175889098, -24.61531559173261], [137.67190011000002, -24.63983062540167], [137.6884253025055, -24.6643468564196], [137.704907431626, -24.68886383778259], [137.72134659257992, -24.713381122486847], [137.73774288058596, -24.73789826352857], [137.75409639086246, -24.762414813903955], [137.93118890625, -25.03193004096791], [137.94703651081602, -25.05640463705079], [137.96284257549317, -25.08087283141791], [137.97860719549985, -25.10533417706548], [137.9943304660547, -25.1297882269897], [138.0100124823761, -25.15423453418677], [138.0256533396826, -25.178672651652885], [138.04125313319275, -25.203102132384245], [138.05681195812502, -25.227522529377048], [138.07232990969788, -25.2519333956275], [138.24035696777344, -25.51969605229984], [138.25539186607728, -25.54395768334554], [138.2703871288623, -25.568203972599463], [138.28534285134705, -25.59243447305782], [138.30025912874999, -25.616648737716805], [138.31513605628967, -25.640846319572624], [138.3299737291846, -25.66502677162146], [138.3447646894131, -25.68919356811908], [138.3594110443125, -25.71339714826552], [138.37388331439158, -25.737652468312966], [138.5218130625, -26.00766094231775], [138.53425750802052, -26.032478537545455], [138.54653806760157, -26.057338105402206], [138.55865552577245, -26.08223889455939], [138.5706106670625, -26.107180153688397], [138.582404276001, -26.132161131460613], [138.5940371371172, -26.15718107654743], [138.60551003494044, -26.182239237620223], [138.616823754, -26.207334863350408], [138.62797907882518, -26.232467202409346], [138.7404580078125, -26.51113113177313], [138.74977379511034, -26.536645427145515], [138.75894138705468, -26.562186668574718], [138.76796156817483, -26.58775410473212], [138.776835123, -26.6133469842891], [138.78556283605957, -26.638964555917063], [138.7941454918828, -26.664606068287384], [138.80258387499902, -26.690270770071464], [138.8108787699375, -26.715957909940684], [138.81903096122753, -26.74166673656643], [138.899511, -27.025680275397598], [138.90601194079395, -27.05159073946998], [138.91238037682032, -27.077513123026932], [138.9186170926084, -27.10344667473985], [138.9247228726875, -27.12939064328012], [138.9306985015869, -27.15534427731913], [138.93654476383594, -27.181306825528278], [138.94226244396384, -27.207277536578943], [138.9478523265, -27.23325565914251], [138.95331519597363, -27.259240441890363], [139.0052482734375, -27.545297744297294], [139.00924817944627, -27.57130384562497], [139.01313127127344, -27.59730683986499], [139.01689833344824, -27.623305975688744], [139.0205501505, -27.649300501767605], [139.024087506958, -27.675289666772976], [139.02751118735156, -27.70127271937625], [139.03082197620995, -27.727248908248797], [139.0340206580625, -27.753217482062016], [139.03710801743847, -27.779177689487298], [139.0639460625, -28.063972909578375], [139.06575874544237, -28.089774116716654], [139.06747030478908, -28.11555719019504], [139.06908152506935, -28.14132137868493], [139.0705931908125, -28.167065930857692], [139.07200608654787, -28.192790095384737], [139.07332099680468, -28.21849312093743], [139.07453870611232, -28.244174256187186], [139.075659999, -28.269832749805367], [139.07668565999708, -28.295467850463375], [139.0818806015625, -28.575695142346973], [139.08181987315723, -28.600990923851167], [139.08167371174218, -28.626253545123234], [139.08144290184669, -28.651482254834562], [139.081128228, -28.67667630165654], [139.08073047473144, -28.701834934260546], [139.08025042657033, -28.726957401317993], [139.0796888680459, -28.752042951500243], [139.0790465836875, -28.777090833478695], [139.07832435802442, -28.802100295924745], [139.065328125, -29.074453813709248], [139.06370779696584, -29.098943638134656], [139.0620177265078, -29.123385275755712], [139.06025869815528, -29.147777975243784], [139.0584314964375, -29.17212098527028], [139.05653690588377, -29.196413554506574], [139.05457571102343, -29.22065493162406], [139.05254869638574, -29.244844365294128], [139.05045664649998, -29.26898110418816], [139.0483003458955, -29.293064396977545], [139.0205648671875, -29.554238294771327], [139.0176987512432, -29.577621630673274], [139.01477858346095, -29.600941753198615], [139.01180514837012, -29.62419791101875], [139.00877923049998, -29.64738935280507], [139.00570161437986, -29.67051532722895], [139.00257308453905, -29.693575082961786], [138.99939442550684, -29.71656786867497], [138.9961664218125, -29.739492933039887], [138.99288985798535, -29.762349524727934], [138.95386706250002, -30.009037956639386], [138.95006897036424, -30.03101427257316], [138.94623251697655, -30.052912348558106], [138.9423584868662, -30.074731433265605], [138.93844766456252, -30.096470775367056], [138.93450083459473, -30.118129623533836], [138.9305187814922, -30.13970722643733], [138.92650228978417, -30.16120283274894], [138.92245214399998, -30.18261569114005], [138.91836912866896, -30.203945050282044], [138.87151094531248, -30.432842170419548], [138.8670946887041, -30.453110934940465], [138.8626557614297, -30.473286432940316], [138.85819494801854, -30.49336791309049], [138.85371303300002, -30.513354624062377], [138.84921080090334, -30.53324581452736], [138.8446890362578, -30.553040733156827], [138.84014852359277, -30.572738628622172], [138.83559004743748, -30.59233874959478], [138.8310143923213, -30.611840344746046], [138.77977275000003, -30.819640307217973], [138.7750521406377, -30.837900988881337], [138.7703245511953, -30.8560533774514], [138.76559076620214, -30.874096721599557], [138.7608515701875, -30.892030269997186], [138.7561077476807, -30.909853271315683], [138.75136008321095, -30.927564974226428], [138.7466093613076, -30.945164627400807], [138.74185636649997, -30.962651479510225], [138.73710188331737, -30.980024779226053], [138.68492871093753, -31.163421738140798], [138.68021756054, -31.17937380550192], [138.6755151206484, -31.1952025531975], [138.67082217579198, -31.21090722989895], [138.6661395105, -31.226487084277633], [138.66146790930176, -31.241941365004944], [138.65680815672656, -31.25726932075227], [138.6521610373037, -31.272470200191005], [138.64752733556253, -31.287543251992542], [138.64290783603224, -31.302487724828246], [138.5932550625, -31.458175834294174], [138.58886718278615, -31.47151875590836], [138.58450370416406, -31.484723331284776], [138.58016541116308, -31.497788809094814], [138.57585308831247, -31.510714438009856], [138.57156752014157, -31.52349946670129], [138.56730949117969, -31.536143143840512], [138.56307978595603, -31.548644718098906], [138.558879189, -31.561003438147857], [138.55470848484083, -31.57321855265875], [138.51102803906252, -31.69789196678425], [138.507277241751, -31.70832521120681], [138.50356653611718, -31.71860508281936], [138.49989670669044, -31.728730830293298], [138.49626853799998, -31.738701702300006], [138.4926828145752, -31.74851694751088], [138.4891403209453, -31.758175814597287], [138.48564184163962, -31.767677552230648], [138.48218816118748, -31.77702140908233], [138.47878006411815, -31.78620663382372], [138.444523875, -31.876559506717165], [138.44172397180955, -31.883782542503404], [138.43897985088282, -31.8908371789074], [138.43629229674903, -31.897722664600547], [138.4336620939375, -31.904438248254234], [138.43109002697753, -31.91098317853984], [138.42857688039845, -31.917356704128764], [138.4261234387295, -31.923558073692394], [138.4237304865, -31.92958653590211], [138.42139880823925, -31.9354413394293], [138.40001880468753, -31.988167825199078], [138.3984836073369, -31.991880120904302], [138.3970198828359, -31.99540899065505], [138.39562841571387, -31.99875368312271], [138.39430999049998, -32.00191344697867], [138.39306539172364, -32.00488753089434], [138.39189540391408, -32.007675183541075], [138.39080081160057, -32.01027565359028], [138.38978239931248, -32.01268818971334], [138.3888409515791, -32.01491204058164], [138.3837890625, -32.026706293336126] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [121.025390625, -22.91792293614603], [130.6494140625, -19.394067895396613], [138.33984375, -25.681137335685307], [138.3837890625, -32.026706293336126] ] } } ] } ================================================ FILE: packages/turf-bezier-spline/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { featureCollection } from "@turf/helpers"; import { bezierSpline } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("turf-bezier-spline", (t) => { fixtures.forEach((fixture) => { const filename = fixture.filename; const name = fixture.name; const geojson = fixture.geojson; const spline = colorize(bezierSpline(geojson)); const results = featureCollection([spline, geojson]); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEquals(results, loadJsonFileSync(directories.out + filename), name); }); t.end(); }); function colorize(feature, color, width) { color = color || "#F00"; width = width || 6; feature.properties = { stroke: color, fill: color, "stroke-width": width, "fill-opacity": 0.1, }; return feature; } ================================================ FILE: packages/turf-bezier-spline/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-boolean-clockwise/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-boolean-clockwise/README.md ================================================ # @turf/boolean-clockwise ## booleanClockwise Takes a ring and return true or false whether or not the ring is clockwise or counter-clockwise. ### Parameters * `line` **([Feature][1]<[LineString][2]> | [LineString][2] | [Array][3]<[Array][3]<[number][4]>>)** to be evaluated ### Examples ```javascript var clockwiseRing = turf.lineString([[0,0],[1,1],[1,0],[0,0]]); var counterClockwiseRing = turf.lineString([[0,0],[1,0],[1,1],[0,0]]); turf.booleanClockwise(clockwiseRing) //=true turf.booleanClockwise(counterClockwiseRing) //=false ``` Returns **[boolean][5]** true/false [1]: https://tools.ietf.org/html/rfc7946#section-3.2 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/boolean-clockwise ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-boolean-clockwise/bench.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import { glob } from "glob"; import Benchmark from "benchmark"; import { loadJsonFileSync } from "load-json-file"; import { booleanClockwise as isClockwise } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); /** * Benchmark Results * * counter-clockwise-line x 7,272,353 ops/sec ±11.64% (58 runs sampled) * clockwise-line x 10,724,102 ops/sec ±2.19% (76 runs sampled) */ const suite = new Benchmark.Suite("turf-boolean-clockwise"); glob .sync(path.join(__dirname, "test", "**", "*.geojson")) .forEach((filepath) => { const { name } = path.parse(filepath); const geojson = loadJsonFileSync(filepath); const [feature] = geojson.features; suite.add(name, () => isClockwise(feature)); }); suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-boolean-clockwise/index.ts ================================================ import { Feature, LineString, Position } from "geojson"; import { getCoords } from "@turf/invariant"; /** * Takes a ring and return true or false whether or not the ring is clockwise or counter-clockwise. * * @function * @param {Feature|LineString|Array>} line to be evaluated * @returns {boolean} true/false * @example * var clockwiseRing = turf.lineString([[0,0],[1,1],[1,0],[0,0]]); * var counterClockwiseRing = turf.lineString([[0,0],[1,0],[1,1],[0,0]]); * * turf.booleanClockwise(clockwiseRing) * //=true * turf.booleanClockwise(counterClockwiseRing) * //=false */ function booleanClockwise( line: Feature | LineString | Position[] ): boolean { const ring = getCoords(line); let sum = 0; let i = 1; let prev; let cur; while (i < ring.length) { prev = cur || ring[0]; cur = ring[i]; sum += (cur[0] - prev[0]) * (cur[1] + prev[1]); i++; } return sum > 0; } export { booleanClockwise }; export default booleanClockwise; ================================================ FILE: packages/turf-boolean-clockwise/package.json ================================================ { "name": "@turf/boolean-clockwise", "version": "7.3.4", "description": "Takes a ring and return true or false whether or not the ring is clockwise or counter-clockwise.", "author": "Turf Authors", "contributors": [ "Morgan Herlocker <@morganherlocker>", "Rowan Winsemius <@rowanwins>", "Denis Carriere <@DenisCarriere>", "Stefano Borghi <@stebogit>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "clockwise", "boolean" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-boolean-clockwise/test/false/counter-clockwise-line.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [1, 0], [1, 1], [0, 0] ] } } ] } ================================================ FILE: packages/turf-boolean-clockwise/test/true/clockwise-line.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [1, 1], [1, 0], [0, 0] ] } } ] } ================================================ FILE: packages/turf-boolean-clockwise/test.ts ================================================ import { glob } from "glob"; import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { loadJsonFileSync } from "load-json-file"; import { lineString } from "@turf/helpers"; import { booleanClockwise as isClockwise } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); test("isClockwise#fixtures", (t) => { // True Fixtures glob .sync(path.join(__dirname, "test", "true", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; const geojson = loadJsonFileSync(filepath); const feature = geojson.features[0]; t.true(isClockwise(feature), "[true] " + name); }); // False Fixtures glob .sync(path.join(__dirname, "test", "false", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; const geojson = loadJsonFileSync(filepath); const feature = geojson.features[0]; t.false(isClockwise(feature), "[false] " + name); }); t.end(); }); test("isClockwise", (t) => { const cwArray = [ [0, 0], [1, 1], [1, 0], [0, 0], ]; const ccwArray = [ [0, 0], [1, 0], [1, 1], [0, 0], ]; t.equal(isClockwise(cwArray), true, "[true] clockwise array input"); t.equal( isClockwise(ccwArray), false, "[false] counter-clockwise array input" ); t.end(); }); test("isClockwise -- Geometry types", (t) => { const line = lineString([ [0, 0], [1, 1], [1, 0], [0, 0], ]); t.equal(isClockwise(line), true, "Feature"); t.equal(isClockwise(line.geometry), true, "Geometry Object"); t.end(); }); // test('isClockwise -- throws', t => { // const pt = point([-10, -33]); // t.throws(() => isClockwise(pt), 'feature geometry not supported'); // t.end(); // }); ================================================ FILE: packages/turf-boolean-clockwise/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-boolean-concave/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-boolean-concave/README.md ================================================ # @turf/boolean-concave ## booleanConcave Takes a polygon and return true or false as to whether it is concave or not. ### Parameters * `polygon` **[Feature][1]<[Polygon][2]>** to be evaluated ### Examples ```javascript var convexPolygon = turf.polygon([[[0,0],[0,1],[1,1],[1,0],[0,0]]]); turf.booleanConcave(convexPolygon) //=false ``` Returns **[boolean][3]** true/false [1]: https://tools.ietf.org/html/rfc7946#section-3.2 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/boolean-concave ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-boolean-concave/bench.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import { glob } from "glob"; import Benchmark from "benchmark"; import { loadJsonFileSync } from "load-json-file"; import { booleanConcave as concave } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); /** * Benchmark Results * 3vertices x 9,177,672 ops/sec ±0.67% (89 runs sampled) * diamond x 2,989,753 ops/sec ±0.14% (92 runs sampled) * square x 3,322,185 ops/sec ±0.20% (91 runs sampled) * polygon x 3,422,036 ops/sec ±0.42% (91 runs sampled) * polygon2 x 2,412,660 ops/sec ±1.66% (85 runs sampled) */ const suite = new Benchmark.Suite("turf-boolean-is-concave"); glob .sync(path.join(__dirname, "test", "**", "*.geojson")) .forEach((filepath) => { const { name } = path.parse(filepath); const geojson = loadJsonFileSync(filepath); const [feature] = geojson.features; suite.add(name, () => concave(feature)); }); suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-boolean-concave/index.ts ================================================ import { Feature, Polygon } from "geojson"; import { getGeom } from "@turf/invariant"; /** * Takes a polygon and return true or false as to whether it is concave or not. * * @function * @param {Feature} polygon to be evaluated * @returns {boolean} true/false * @example * var convexPolygon = turf.polygon([[[0,0],[0,1],[1,1],[1,0],[0,0]]]); * * turf.booleanConcave(convexPolygon) * //=false */ function booleanConcave(polygon: Feature | Polygon) { // Taken from https://stackoverflow.com/a/1881201 & https://stackoverflow.com/a/25304159 const coords = getGeom(polygon).coordinates; if (coords[0].length <= 4) { return false; } let sign = false; const n = coords[0].length - 1; for (let i = 0; i < n; i++) { const dx1 = coords[0][(i + 2) % n][0] - coords[0][(i + 1) % n][0]; const dy1 = coords[0][(i + 2) % n][1] - coords[0][(i + 1) % n][1]; const dx2 = coords[0][i][0] - coords[0][(i + 1) % n][0]; const dy2 = coords[0][i][1] - coords[0][(i + 1) % n][1]; const zcrossproduct = dx1 * dy2 - dy1 * dx2; if (i === 0) { sign = zcrossproduct > 0; } else if (sign !== zcrossproduct > 0) { return true; } } return false; } export { booleanConcave }; export default booleanConcave; ================================================ FILE: packages/turf-boolean-concave/package.json ================================================ { "name": "@turf/boolean-concave", "version": "7.3.4", "description": "Takes a polygon and return true or false as to whether it is concave or not.", "author": "Turf Authors", "contributors": [ "Rowan Winsemius <@rowanwins>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "polygon", "concave", "convex", "boolean" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-boolean-concave/test/false/3vertices.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [1, 1], [1, 0], [0, 0] ] ] } } ] } ================================================ FILE: packages/turf-boolean-concave/test/false/diamond.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.69488525390625, 1.1754546449158993], [0.263671875, 0.9118267425981088], [0.56854248046875, 0.4312093081601601], [0.96954345703125, 0.771766211876697], [0.83221435546875, 1.016182073033441], [0.69488525390625, 1.1754546449158993] ] ] } } ] } ================================================ FILE: packages/turf-boolean-concave/test/false/square.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [0, 1], [1, 1], [1, 0], [0, 0] ] ] } } ] } ================================================ FILE: packages/turf-boolean-concave/test/true/polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [1, 0], [1, 1], [0.5, 0.5], [0, 1], [0, 0] ] ] } } ] } ================================================ FILE: packages/turf-boolean-concave/test/true/polygon2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.85418701171875, 1.06286628163273], [0.46966552734375, 0.7909904981540058], [0.6619262695312499, 0.5712795966325395], [0.77178955078125, 0.856901647439813], [0.736083984375, 0.8514090937773031], [0.6591796875, 0.8129610018708315], [0.6921386718749999, 0.884364296613886], [0.9173583984375001, 0.8898568022677679], [1.07391357421875, 0.8129610018708315], [1.0876464843749998, 0.9392889790847924], [1.0052490234375, 1.0271666545523288], [0.85418701171875, 1.06286628163273] ] ] } } ] } ================================================ FILE: packages/turf-boolean-concave/test.ts ================================================ import { glob } from "glob"; import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { loadJsonFileSync } from "load-json-file"; import { polygon } from "@turf/helpers"; import { booleanConcave as isConcave } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); test("isConcave#fixtures", (t) => { // True Fixtures glob .sync(path.join(__dirname, "test", "true", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; const geojson = loadJsonFileSync(filepath); const feature = geojson.features[0]; t.true(isConcave(feature), "[true] " + name); }); // False Fixtures glob .sync(path.join(__dirname, "test", "false", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; const geojson = loadJsonFileSync(filepath); const feature = geojson.features[0]; t.false(isConcave(feature), "[false] " + name); }); t.end(); }); test("isConcave -- Geometry types", (t) => { const poly = polygon([ [ [0, 0], [0, 1], [1, 1], [1, 0], [0, 0], ], ]); t.equal(isConcave(poly), false, "Feature"); t.equal(isConcave(poly.geometry), false, "Geometry Object"); t.end(); }); ================================================ FILE: packages/turf-boolean-concave/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-boolean-contains/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-boolean-contains/README.md ================================================ # @turf/boolean-contains ## booleanContains Tests whether geometry a contains geometry b. The interiors of both geometries must intersect, and the interior and boundary of geometry b must not intersect the exterior of geometry a. booleanContains(a, b) is equivalent to booleanWithin(b, a) ### Parameters * `feature1` **([Geometry][1] | [Feature][2]\)** GeoJSON Feature or Geometry * `feature2` **([Geometry][1] | [Feature][2]\)** GeoJSON Feature or Geometry ### Examples ```javascript var line = turf.lineString([[1, 1], [1, 2], [1, 3], [1, 4]]); var point = turf.point([1, 2]); turf.booleanContains(line, point); //=true ``` Returns **[boolean][3]** true/false [1]: https://tools.ietf.org/html/rfc7946#section-3.1 [2]: https://tools.ietf.org/html/rfc7946#section-3.2 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/boolean-contains ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ### Diagrams ![esri-contains](diagrams/esri-contains.png) ================================================ FILE: packages/turf-boolean-contains/bench.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import { glob } from "glob"; import Benchmark from "benchmark"; import { loadJsonFileSync } from "load-json-file"; import { bbox } from "@turf/bbox"; import { booleanContains as contains } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); /** * Benchmark Results * * LineIsNotContainedByLine: 0.697ms * LineIsNotContainedByPolygon: 0.123ms * LineIsNotContainedByPolygonBoundary: 0.394ms * MultiPointsIsNotContainedByLine: 0.140ms * MultiPointsOnLineEndsIsNotContainedByLine: 0.013ms * MultiPointIsNotContainedByMultiPoint: 0.131ms * MultiPointAllOnBoundaryIsNotContainedByPolygon: 0.068ms * MultiPointIsNotContainedByPolygon: 0.009ms * PointIsNotContainedByLine: 0.006ms * PointIsNotContainedByLineBecauseOnEnd: 0.009ms * PointOnEndIsContainedByLinestring: 0.007ms * PointIsNotContainedBYMultiPoint: 0.171ms * PointIsNotContainedByPolygon: 0.022ms * PointOnPolygonBoundary: 0.026ms * Polygon-Polygon: 0.274ms * Polygon-Polygon2: 0.076ms * LineIsContainedByLine: 0.013ms * LinesExactlySame: 0.016ms * LineIsContainedByPolygon: 0.027ms * LineIsContainedByPolygonWithNoInternalVertices: 0.029ms * MultipointsIsContainedByLine: 0.364ms * MultiPointsContainedByMultiPoints: 0.011ms * MultiPointsEqual: 0.008ms * MultiPointIsContainedByPolygonBoundary: 0.022ms * PointIsContainedByLine: 0.617ms * PointIsContainedByMultiPoint: 0.010ms * PointInsidePolygonBoundary: 0.013ms * PolygonExactSameShape: 0.047ms * PolygonIsContainedByPolygon: 0.012ms * LineIsNotContainedByLine x 1,589,100 ops/sec ±0.33% (96 runs sampled) * LineIsNotContainedByPolygon x 2,051,985 ops/sec ±2.50% (86 runs sampled) * LineIsNotContainedByPolygonBoundary x 845,089 ops/sec ±0.58% (89 runs sampled) * MultiPointsIsNotContainedByLine x 2,149,963 ops/sec ±0.17% (94 runs sampled) * MultiPointsOnLineEndsIsNotContainedByLine x 2,037,412 ops/sec ±0.22% (92 runs sampled) * MultiPointIsNotContainedByMultiPoint x 7,778,981 ops/sec ±0.25% (95 runs sampled) * MultiPointAllOnBoundaryIsNotContainedByPolygon x 2,507,225 ops/sec ±0.72% (94 runs sampled) * MultiPointIsNotContainedByPolygon x 2,510,635 ops/sec ±0.63% (97 runs sampled) * PointIsNotContainedByLine x 5,661,981 ops/sec ±0.17% (94 runs sampled) * PointIsNotContainedByLineBecauseOnEnd x 5,126,586 ops/sec ±0.27% (90 runs sampled) * PointOnEndIsContainedByLinestring x 5,263,534 ops/sec ±0.24% (94 runs sampled) * PointIsNotContainedBYMultiPoint x 11,119,884 ops/sec ±1.38% (92 runs sampled) * PointIsNotContainedByPolygon x 2,490,072 ops/sec ±0.63% (96 runs sampled) * PointOnPolygonBoundary x 2,780,452 ops/sec ±0.61% (97 runs sampled) * Polygon-Polygon x 1,773,762 ops/sec ±1.75% (90 runs sampled) * Polygon-Polygon2 x 759,058 ops/sec ±0.95% (88 runs sampled) * LineIsContainedByLine x 1,608,626 ops/sec ±0.61% (93 runs sampled) * LinesExactlySame x 1,217,588 ops/sec ±0.52% (96 runs sampled) * LineIsContainedByPolygon x 1,109,333 ops/sec ±1.05% (90 runs sampled) * LineIsContainedByPolygonWithNoInternalVertices x 1,116,300 ops/sec ±0.94% (90 runs sampled) * MultipointsIsContainedByLine x 2,379,783 ops/sec ±0.18% (96 runs sampled) * MultiPointsContainedByMultiPoints x 7,758,259 ops/sec ±0.29% (93 runs sampled) * MultiPointsEqual x 7,308,718 ops/sec ±1.07% (91 runs sampled) * MultiPointIsContainedByPolygonBoundary x 1,316,660 ops/sec ±0.96% (95 runs sampled) * PointIsContainedByLine x 6,499,130 ops/sec ±0.17% (93 runs sampled) * PointIsContainedByMultiPoint x 11,266,710 ops/sec ±1.84% (91 runs sampled) * PointInsidePolygonBoundary x 2,450,588 ops/sec ±0.68% (93 runs sampled) * PolygonExactSameShape x 491,320 ops/sec ±0.84% (91 runs sampled) * PolygonIsContainedByPolygon x 553,878 ops/sec ±0.82% (93 runs sampled) */ const suite = new Benchmark.Suite("turf-boolean-contains"); glob .sync(path.join(__dirname, "test", "**", "*.geojson")) .forEach((filepath) => { const { name } = path.parse(filepath); const geojson = loadJsonFileSync(filepath); const [feature1, feature2] = geojson.features; feature1.bbox = bbox(feature1); feature2.bbox = bbox(feature2); console.time(name); contains(feature1, feature2); console.timeEnd(name); suite.add(name, () => contains(feature1, feature2)); }); suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-boolean-contains/index.ts ================================================ import { BBox, Feature, Geometry, LineString, MultiPoint, MultiPolygon, Point, Polygon, } from "geojson"; import { bbox as calcBbox } from "@turf/bbox"; import { booleanPointInPolygon } from "@turf/boolean-point-in-polygon"; import { booleanPointOnLine as isPointOnLine } from "@turf/boolean-point-on-line"; import { getGeom } from "@turf/invariant"; import { feature, featureCollection, lineString } from "@turf/helpers"; import { lineSplit } from "@turf/line-split"; /** * Tests whether geometry a contains geometry b. * The interiors of both geometries must intersect, and the interior and boundary of geometry b must not intersect the exterior of geometry a. * booleanContains(a, b) is equivalent to booleanWithin(b, a) * * @function * @param {Geometry|Feature} feature1 GeoJSON Feature or Geometry * @param {Geometry|Feature} feature2 GeoJSON Feature or Geometry * @returns {boolean} true/false * @example * var line = turf.lineString([[1, 1], [1, 2], [1, 3], [1, 4]]); * var point = turf.point([1, 2]); * * turf.booleanContains(line, point); * //=true */ function booleanContains( feature1: Feature | Geometry, feature2: Feature | Geometry ) { const geom1 = getGeom(feature1); const geom2 = getGeom(feature2); const type1 = geom1.type; const type2 = geom2.type; const coords1 = geom1.coordinates; const coords2 = geom2.coordinates; switch (type1) { case "Point": switch (type2) { case "Point": return compareCoords(coords1, coords2); default: throw new Error("feature2 " + type2 + " geometry not supported"); } case "MultiPoint": switch (type2) { case "Point": return isPointInMultiPoint(geom1, geom2); case "MultiPoint": return isMultiPointInMultiPoint(geom1, geom2); default: throw new Error("feature2 " + type2 + " geometry not supported"); } case "LineString": switch (type2) { case "Point": return isPointOnLine(geom2, geom1, { ignoreEndVertices: true }); case "LineString": return isLineOnLine(geom1, geom2); case "MultiPoint": return isMultiPointOnLine(geom1, geom2); default: throw new Error("feature2 " + type2 + " geometry not supported"); } case "Polygon": switch (type2) { case "Point": return booleanPointInPolygon(geom2, geom1, { ignoreBoundary: true }); case "LineString": return isLineInPoly(geom1, geom2); case "Polygon": return isPolyInPoly(geom1, geom2); case "MultiPoint": return isMultiPointInPoly(geom1, geom2); case "MultiPolygon": return isMultiPolyInPoly(geom1, geom2); default: throw new Error("feature2 " + type2 + " geometry not supported"); } case "MultiPolygon": switch (type2) { case "Polygon": return isPolygonInMultiPolygon(geom1, geom2); default: throw new Error("feature2 " + type2 + " geometry not supported"); } default: throw new Error("feature1 " + type1 + " geometry not supported"); } } function isPolygonInMultiPolygon(multiPolygon: MultiPolygon, polygon: Polygon) { return multiPolygon.coordinates.some((coords) => isPolyInPoly({ type: "Polygon", coordinates: coords }, polygon) ); } function isMultiPolyInPoly(polygon: Polygon, multiPolygon: MultiPolygon) { return multiPolygon.coordinates.every((coords) => isPolyInPoly(polygon, { type: "Polygon", coordinates: coords }) ); } function isPointInMultiPoint(multiPoint: MultiPoint, pt: Point) { let i; let output = false; for (i = 0; i < multiPoint.coordinates.length; i++) { if (compareCoords(multiPoint.coordinates[i], pt.coordinates)) { output = true; break; } } return output; } function isMultiPointInMultiPoint( multiPoint1: MultiPoint, multiPoint2: MultiPoint ) { for (const coord2 of multiPoint2.coordinates) { let matchFound = false; for (const coord1 of multiPoint1.coordinates) { if (compareCoords(coord2, coord1)) { matchFound = true; break; } } if (!matchFound) { return false; } } return true; } function isMultiPointOnLine(lineString: LineString, multiPoint: MultiPoint) { let haveFoundInteriorPoint = false; for (const coord of multiPoint.coordinates) { if (isPointOnLine(coord, lineString, { ignoreEndVertices: true })) { haveFoundInteriorPoint = true; } if (!isPointOnLine(coord, lineString)) { return false; } } if (haveFoundInteriorPoint) { return true; } return false; } function isMultiPointInPoly(polygon: Polygon, multiPoint: MultiPoint) { for (const coord of multiPoint.coordinates) { if (!booleanPointInPolygon(coord, polygon, { ignoreBoundary: true })) { return false; } } return true; } function isLineOnLine(lineString1: LineString, lineString2: LineString) { let haveFoundInteriorPoint = false; for (const coords of lineString2.coordinates) { if ( isPointOnLine({ type: "Point", coordinates: coords }, lineString1, { ignoreEndVertices: true, }) ) { haveFoundInteriorPoint = true; } if ( !isPointOnLine({ type: "Point", coordinates: coords }, lineString1, { ignoreEndVertices: false, }) ) { return false; } } return haveFoundInteriorPoint; } function splitLineIntoSegmentsOnPolygon( linestring: LineString, polygon: Polygon ) { const coords = linestring.coordinates; const outputSegments: Feature[] = []; for (let i = 0; i < coords.length - 1; i++) { const seg = lineString([coords[i], coords[i + 1]]); const split = lineSplit(seg, feature(polygon)); if (split.features.length === 0) { outputSegments.push(seg); } else { outputSegments.push(...split.features); } } return featureCollection(outputSegments); } function isLineInPoly(polygon: Polygon, linestring: LineString) { const polyBbox = calcBbox(polygon); const lineBbox = calcBbox(linestring); if (!doBBoxOverlap(polyBbox, lineBbox)) { return false; } for (const coord of linestring.coordinates) { if (!booleanPointInPolygon(coord, polygon)) { return false; } } let isContainedByPolygonBoundary = false; // split intersecting segments and verify their inclusion const lineSegments = splitLineIntoSegmentsOnPolygon(linestring, polygon); for (const lineSegment of lineSegments.features) { const midpoint = getMidpoint( lineSegment.geometry.coordinates[0], lineSegment.geometry.coordinates[1] ); // make sure all segments do not intersect with polygon exterior if (!booleanPointInPolygon(midpoint, polygon)) { return false; } // make sure at least 1 segment intersects with the polygon's interior if ( !isContainedByPolygonBoundary && booleanPointInPolygon(midpoint, polygon, { ignoreBoundary: true }) ) { isContainedByPolygonBoundary = true; } } return isContainedByPolygonBoundary; } /** * Is Polygon2 in Polygon1 * Only takes into account outer rings * * @private * @param {Geometry|Feature} feature1 Polygon1 * @param {Geometry|Feature} feature2 Polygon2 * @returns {boolean} true/false */ function isPolyInPoly( feature1: Feature | Polygon, feature2: Feature | Polygon ) { // Handle Nulls if (feature1.type === "Feature" && feature1.geometry === null) { return false; } if (feature2.type === "Feature" && feature2.geometry === null) { return false; } const poly1Bbox = calcBbox(feature1); const poly2Bbox = calcBbox(feature2); if (!doBBoxOverlap(poly1Bbox, poly2Bbox)) { return false; } const coords = getGeom(feature2).coordinates; for (const ring of coords) { for (const coord of ring) { if (!booleanPointInPolygon(coord, feature1)) { return false; } } } return true; } function doBBoxOverlap(bbox1: BBox, bbox2: BBox) { if (bbox1[0] > bbox2[0]) { return false; } if (bbox1[2] < bbox2[2]) { return false; } if (bbox1[1] > bbox2[1]) { return false; } if (bbox1[3] < bbox2[3]) { return false; } return true; } /** * compareCoords * * @private * @param {Position} pair1 point [x,y] * @param {Position} pair2 point [x,y] * @returns {boolean} true/false if coord pairs match */ function compareCoords(pair1: number[], pair2: number[]) { return pair1[0] === pair2[0] && pair1[1] === pair2[1]; } function getMidpoint(pair1: number[], pair2: number[]) { return [(pair1[0] + pair2[0]) / 2, (pair1[1] + pair2[1]) / 2]; } export { booleanContains, isPolygonInMultiPolygon, isPointInMultiPoint, isMultiPointInMultiPoint, isMultiPointOnLine, isMultiPointInPoly, isLineOnLine, isLineInPoly, isPolyInPoly, isMultiPolyInPoly, doBBoxOverlap, compareCoords, getMidpoint, }; export default booleanContains; ================================================ FILE: packages/turf-boolean-contains/package.json ================================================ { "name": "@turf/boolean-contains", "version": "7.3.4", "description": "Determines whether the second geometry is completely within the first geometry.", "author": "Turf Authors", "contributors": [ "Rowan Winsemius <@rowanwins>", "Denis Carriere <@DenisCarriere>", "Samuel Arbibe <@samuelarbibe>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "contains", "boolean", "de-9im" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "boolean-jsts": "*", "boolean-shapely": "*", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/bbox": "workspace:*", "@turf/boolean-point-in-polygon": "workspace:*", "@turf/boolean-point-on-line": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/line-split": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-boolean-contains/test/false/LineString/LineString/LineIsNotContainedByLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 2], [1, 3], [1, 15.5] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/false/MultiPoint/LineString/MultiPointsIsNotContainedByLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12], [15, 15] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/false/MultiPoint/LineString/MultiPointsOnLineEndsIsNotContainedByLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/false/MultiPoint/MultiPoint/MultiPointIsNotContainedByMultiPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12], [15, 15] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [1, 1.5] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/false/MultiPoint/Polygon/MultiPointAllOnBoundaryIsNotContainedByPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [1, 10] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/false/MultiPoint/Polygon/MultiPointIsNotContainedByPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12], [15, 15] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/false/MultiPolygon/Polygon/MultiPolygonIsNotContainedByPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [5.697231218450497, 39.505906288651715], [5.697231218450497, 40.50986523812119], [4.30801420435526, 40.50986523812119], [4.30801420435526, 39.505906288651715], [5.697231218450497, 39.505906288651715] ] ] } }, { "type": "Feature", "properties": null, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [3.6968994140625, 39.65645604812829], [4.622497558593749, 39.65645604812829], [4.622497558593749, 40.168380093142446], [3.6968994140625, 40.168380093142446], [3.6968994140625, 39.65645604812829] ] ], [ [ [4.73236083984375, 39.69450749856091], [5.416259765624999, 39.69450749856091], [5.416259765624999, 40.386304853509046], [4.73236083984375, 40.386304853509046], [4.73236083984375, 39.69450749856091] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/false/Point/LineString/PointIsNotContainedByLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2, 2] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/false/Point/LineString/PointIsNotContainedByLineBecauseOnEnd.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 4] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/false/Point/LineString/PointOnEndIsContainedByLinestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/false/Point/MultiPoint/PointIsNotContainedBYMultiPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 4] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/false/Point/Polygon/PointIsNotContainedByPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [14, 14] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/false/Point/Polygon/PointOnPolygonBoundary.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/false/Polygon/LineString/LineIsNotContainedByPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 2], [1, 3], [1, 15.5] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/false/Polygon/LineString/LineIsNotContainedByPolygonBoundary.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 2], [1, 3], [1, 3.5] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/false/Polygon/LineString/LineIsNotFullyContainedByPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [9.6459207, -1.2281524], [11.0822393, -1.2461022], [11.405411, -0.1869151], [11.1181473, 1.9133448], [10.0588623, 1.4646914], [10.6692977, -0.0253296], [10.6692977, -0.0253296], [9.6459207, -1.2281524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [10.2166256, -0.7379163], [11.0362904, 1.794324] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/false/Polygon/LineString/issue-#1201-false.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#0000ff", "stroke-width": 6, "stroke-opacity": 1, "fill": "#0000ff", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [98.8769531, 35.3173663], [83.144531, 14.349547], [111.621093, 14.8598504], [98.8769531, 35.3173663] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [111.621093, 14.8598504], [98.8769531, 35.3173663] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/false/Polygon/MultiPolygon/PolygonIsNotContainedByMultipolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [3.6968994140625, 39.65645604812829], [4.622497558593749, 39.65645604812829], [4.622497558593749, 40.168380093142446], [3.6968994140625, 40.168380093142446], [3.6968994140625, 39.65645604812829] ] ], [ [ [4.73236083984375, 39.69450749856091], [5.416259765624999, 39.69450749856091], [5.416259765624999, 40.386304853509046], [4.73236083984375, 40.386304853509046], [4.73236083984375, 39.69450749856091] ] ] ] } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [4.79827880859375, 39.45104033807322], [4.9658203125, 39.45104033807322], [4.9658203125, 39.56970506644249], [4.79827880859375, 39.56970506644249], [4.79827880859375, 39.45104033807322] ] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/false/Polygon/Polygon/Polygon-Polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 20], [1, 3], [1, 4], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/false/Polygon/Polygon/Polygon-Polygon2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#ffa200", "stroke-width": 2, "stroke-opacity": 1, "fill": "#d4c63b", "fill-opacity": 0.5, "description": "shape which was intersected with a longer pipe to produce the pipe shown" }, "geometry": { "type": "Polygon", "coordinates": [ [ [3.1249679625034332, 50.90354450528237], [3.1252093613147736, 50.90354957970863], [3.1252361834049225, 50.90334491073787], [3.125006854534149, 50.903344064996546], [3.1248298287391663, 50.90339988389688], [3.1249679625034332, 50.90354450528237] ] ] } }, { "type": "Feature", "properties": { "description": "output of an intersect call with a longer pipe and the other feature in this file" }, "geometry": { "type": "Polygon", "coordinates": [ [ [3.124910769300162, 50.90341155120744], [3.12484701356319, 50.90343165437331], [3.124918293470778, 50.903431917293965], [3.124982049176972, 50.90341181412811], [3.124910769300162, 50.90341155120744] ] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/true/LineString/LineString/LineIsContainedByLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 2], [1, 3], [1, 3.5] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/true/LineString/LineString/LinesExactlySame.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/true/MultiPoint/LineString/MultipointsIsContainedByLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [1, 1.5] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/true/MultiPoint/MultiPoint/MultiPointsContainedByMultiPoints.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12], [15, 15] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [15, 15] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/true/MultiPoint/MultiPoint/MultiPointsEqual.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12], [15, 15] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12], [15, 15] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/true/MultiPoint/Polygon/MultiPointIsContainedByPolygonBoundary.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [2, 2], [4, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/true/MultiPolygon/Polygon/MultiPolygonIsContainedByPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [5.860668514226688, 40.60423664824944], [3.248940527728166, 40.60423664824944], [3.248940527728166, 39.35441976583036], [5.860668514226688, 39.35441976583036], [5.860668514226688, 40.60423664824944] ] ] } }, { "type": "Feature", "properties": null, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [3.6968994140625, 39.65645604812829], [4.622497558593749, 39.65645604812829], [4.622497558593749, 40.168380093142446], [3.6968994140625, 40.168380093142446], [3.6968994140625, 39.65645604812829] ] ], [ [ [4.73236083984375, 39.69450749856091], [5.416259765624999, 39.69450749856091], [5.416259765624999, 40.386304853509046], [4.73236083984375, 40.386304853509046], [4.73236083984375, 39.69450749856091] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/true/Point/LineString/PointIsContainedByLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 2] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/true/Point/MultiPoint/PointIsContainedByMultiPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/true/Point/Polygon/PointInsidePolygonBoundary.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4, 4] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/true/Polygon/LineString/LineIsContainedByPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [2, 3], [2, 3.5] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/true/Polygon/LineString/LineIsContainedByPolygonWithNoInternalVertices.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [10, 10] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/true/Polygon/LineString/LineIsContainedByPolygonWithSegmentOnBoundary.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [2, 3] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/true/Polygon/LineString/LineIsFullyContainedByPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [2, 3], [2, 3.5] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/true/Polygon/MultiPolygon/PolygonIsContainedByMultipolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [3.6968994140625, 39.65645604812829], [4.622497558593749, 39.65645604812829], [4.622497558593749, 40.168380093142446], [3.6968994140625, 40.168380093142446], [3.6968994140625, 39.65645604812829] ] ], [ [ [4.73236083984375, 39.69450749856091], [5.416259765624999, 39.69450749856091], [5.416259765624999, 40.386304853509046], [4.73236083984375, 40.386304853509046], [4.73236083984375, 39.69450749856091] ] ] ] } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [4.872436523437499, 39.78321267821705], [5.0372314453125, 39.78321267821705], [5.0372314453125, 39.8928799002948], [4.872436523437499, 39.8928799002948], [4.872436523437499, 39.78321267821705] ] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/true/Polygon/Polygon/PolygonExactSameShape.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill": "#F00" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-12.65625, 36.87962060502676], [35.419921875, 36.38591277287651], [37.79296875, 56.897003921272606], [-12.12890625, 57.040729838360875], [-12.65625, 36.87962060502676] ] ] } }, { "type": "Feature", "properties": { "fill": "#F00" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-12.65625, 36.87962060502676], [35.419921875, 36.38591277287651], [37.79296875, 56.897003921272606], [-12.12890625, 57.040729838360875], [-12.65625, 36.87962060502676] ] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test/true/Polygon/Polygon/PolygonIsContainedByPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [2, 2], [3, 2], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-contains/test.ts ================================================ import { glob } from "glob"; import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { loadJsonFileSync } from "load-json-file"; import { point } from "@turf/helpers"; import booleanJSTS from "boolean-jsts"; import shapely from "boolean-shapely"; import { booleanContains as contains } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); test("turf-boolean-contains", (t) => { // True Fixtures glob .sync(path.join(__dirname, "test", "true", "**", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; const geojson = loadJsonFileSync(filepath); const feature1 = geojson.features[0]; const feature2 = geojson.features[1]; const result = contains(feature1, feature2); if (process.env.JSTS) t.true( booleanJSTS("contains", feature1, feature2), "[true] JSTS - " + name ); if (process.env.SHAPELY) shapely .contains(feature1, feature2) .then((result) => t.true(result, "[true] shapely - " + name)); t.true(result, "[true] " + name); }); // False Fixtures glob .sync(path.join(__dirname, "test", "false", "**", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; const geojson = loadJsonFileSync(filepath); const feature1 = geojson.features[0]; const feature2 = geojson.features[1]; const result = contains(feature1, feature2); if (process.env.JSTS) t.false( booleanJSTS("contains", feature1, feature2), "[false] JSTS - " + name ); if (process.env.SHAPELY) shapely .contains(feature1, feature2) .then((result) => t.false(result, "[false] shapely - " + name)); t.false(result, "[false] " + name); }); t.end(); }); test("turf-boolean-contains -- Geometry Objects", (t) => { const pt1 = point([0, 0]); const pt2 = point([0, 0]); t.assert(contains(pt1.geometry, pt2.geometry)); t.end(); }); ================================================ FILE: packages/turf-boolean-contains/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-boolean-crosses/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-boolean-crosses/README.md ================================================ # @turf/boolean-crosses ## booleanCrosses Boolean-Crosses returns True if the intersection results in a geometry whose dimension is one less than the maximum dimension of the two source geometries and the intersection set is interior to both source geometries. Boolean-Crosses returns t (TRUE) for only multipoint/polygon, multipoint/linestring, linestring/linestring, linestring/polygon, and linestring/multipolygon comparisons. Other comparisons are not supported as they are outside the OpenGIS Simple Features spec and may give unexpected results. ### Parameters * `feature1` **([Geometry][1] | [Feature][2]\)** GeoJSON Feature or Geometry * `feature2` **([Geometry][1] | [Feature][2]\)** GeoJSON Feature or Geometry ### Examples ```javascript var line1 = turf.lineString([[-2, 2], [4, 2]]); var line2 = turf.lineString([[1, 1], [1, 2], [1, 3], [1, 4]]); var cross = turf.booleanCrosses(line1, line2); //=true ``` Returns **[boolean][3]** true/false [1]: https://tools.ietf.org/html/rfc7946#section-3.1 [2]: https://tools.ietf.org/html/rfc7946#section-3.2 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/boolean-crosses ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ### Diagrams ![esri-crosses](diagrams/esri-crosses.gif) ================================================ FILE: packages/turf-boolean-crosses/bench.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import { glob } from "glob"; import Benchmark from "benchmark"; import { loadJsonFileSync } from "load-json-file"; import { booleanCrosses as crosses } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); /** * Benchmark Results * * LineDoesNotCrossButTouches: 3.012ms * LineDoesNotCrossLine: 0.170ms * LineDoesNotCrossPolygon: 0.644ms * MultiPointNotCrossLine: 0.135ms * MultiPointNotCrossLineEnd: 0.031ms * LineCrossesLine: 0.321ms * LineCrossesPolygon: 0.405ms * LineCrossesPolygonPartial: 0.408ms * MultiPointsCrossLine: 0.026ms * LineDoesNotCrossButTouches x 71,945 ops/sec ±2.04% (71 runs sampled) * LineDoesNotCrossLine x 88,084 ops/sec ±2.56% (70 runs sampled) * LineDoesNotCrossPolygon x 86,024 ops/sec ±2.80% (71 runs sampled) * MultiPointNotCrossLine x 11,976,750 ops/sec ±1.61% (93 runs sampled) * MultiPointNotCrossLineEnd x 10,191,949 ops/sec ±3.51% (85 runs sampled) * LineCrossesLine x 68,764 ops/sec ±2.53% (72 runs sampled) * LineCrossesPolygon x 49,268 ops/sec ±2.70% (80 runs sampled) * LineCrossesPolygonPartial x 63,313 ops/sec ±2.87% (71 runs sampled) * MultiPointsCrossLine x 10,900,034 ops/sec ±0.39% (93 runs sampled) */ const suite = new Benchmark.Suite("turf-boolean-crosses"); glob .sync(path.join(__dirname, "test", "**", "*.geojson")) .forEach((filepath) => { const { name } = path.parse(filepath); const geojson = loadJsonFileSync(filepath); const [feature1, feature2] = geojson.features; console.time(name); crosses(feature1, feature2); console.timeEnd(name); suite.add(name, () => crosses(feature1, feature2)); }); suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-boolean-crosses/index.ts ================================================ import { Feature, Geometry, Polygon, LineString, MultiPoint } from "geojson"; import { lineIntersect } from "@turf/line-intersect"; import { polygonToLine } from "@turf/polygon-to-line"; import { booleanEqual } from "@turf/boolean-equal"; import { booleanPointInPolygon } from "@turf/boolean-point-in-polygon"; import { getGeom } from "@turf/invariant"; import { point } from "@turf/helpers"; /** * Boolean-Crosses returns True if the intersection results in a geometry whose dimension is one less than * the maximum dimension of the two source geometries and the intersection set is interior to * both source geometries. * * Boolean-Crosses returns t (TRUE) for only multipoint/polygon, multipoint/linestring, linestring/linestring, linestring/polygon, and linestring/multipolygon comparisons. * Other comparisons are not supported as they are outside the OpenGIS Simple Features spec and may give unexpected results. * * @function * @param {Geometry|Feature} feature1 GeoJSON Feature or Geometry * @param {Geometry|Feature} feature2 GeoJSON Feature or Geometry * @returns {boolean} true/false * @example * var line1 = turf.lineString([[-2, 2], [4, 2]]); * var line2 = turf.lineString([[1, 1], [1, 2], [1, 3], [1, 4]]); * * var cross = turf.booleanCrosses(line1, line2); * //=true */ function booleanCrosses( feature1: Feature | Geometry, feature2: Feature | Geometry ): boolean { var geom1 = getGeom(feature1); var geom2 = getGeom(feature2); var type1 = geom1.type; var type2 = geom2.type; switch (type1) { case "MultiPoint": switch (type2) { case "LineString": return doMultiPointAndLineStringCross(geom1, geom2); case "Polygon": return doesMultiPointCrossPoly(geom1, geom2); default: throw new Error("feature2 " + type2 + " geometry not supported"); } case "LineString": switch (type2) { case "MultiPoint": // An inverse operation return doMultiPointAndLineStringCross(geom2, geom1); case "LineString": return doLineStringsCross(geom1, geom2); case "Polygon": return doLineStringAndPolygonCross(geom1, geom2); default: throw new Error("feature2 " + type2 + " geometry not supported"); } case "Polygon": switch (type2) { case "MultiPoint": // An inverse operation return doesMultiPointCrossPoly(geom2, geom1); case "LineString": // An inverse operation return doLineStringAndPolygonCross(geom2, geom1); default: throw new Error("feature2 " + type2 + " geometry not supported"); } default: throw new Error("feature1 " + type1 + " geometry not supported"); } } function doMultiPointAndLineStringCross( multiPoint: MultiPoint, lineString: LineString ) { var foundIntPoint = false; var foundExtPoint = false; var pointLength = multiPoint.coordinates.length; var i = 0; while (i < pointLength && !foundIntPoint && !foundExtPoint) { for (var i2 = 0; i2 < lineString.coordinates.length - 1; i2++) { var incEndVertices = true; if (i2 === 0 || i2 === lineString.coordinates.length - 2) { incEndVertices = false; } if ( isPointOnLineSegment( lineString.coordinates[i2], lineString.coordinates[i2 + 1], multiPoint.coordinates[i], incEndVertices ) ) { foundIntPoint = true; } else { foundExtPoint = true; } } i++; } return foundIntPoint && foundExtPoint; } function doLineStringsCross(lineString1: LineString, lineString2: LineString) { // See if there are any intersection points between these two lines. const doLinesIntersect = lineIntersect(lineString1, lineString2); if (doLinesIntersect.features.length === 0) return false; // As soon as we find any intersect point that doesn't lie on the start or // end point of either input lineString, that's considered a crossing. for (const intersectPoint of doLinesIntersect.features) { if ( !booleanEqual( intersectPoint.geometry, point(lineString1.coordinates[0]) ) && !booleanEqual( intersectPoint.geometry, point(lineString1.coordinates[lineString1.coordinates.length - 1]) ) && !booleanEqual( intersectPoint.geometry, point(lineString2.coordinates[0]) ) && !booleanEqual( intersectPoint.geometry, point(lineString2.coordinates[lineString2.coordinates.length - 1]) ) ) { return true; } } // Every intersection point we tried fell on an end point (considered the // boundary) of one of the input lines. Not considered a crossing. return false; } function doLineStringAndPolygonCross(lineString: LineString, polygon: Polygon) { const line: any = polygonToLine(polygon); const doLinesIntersect = lineIntersect(lineString, line); if (doLinesIntersect.features.length > 0) { return true; } return false; } function doesMultiPointCrossPoly(multiPoint: MultiPoint, polygon: Polygon) { var foundIntPoint = false; var foundExtPoint = false; var pointLength = multiPoint.coordinates.length; for (let i = 0; i < pointLength && (!foundIntPoint || !foundExtPoint); i++) { if (booleanPointInPolygon(point(multiPoint.coordinates[i]), polygon)) { foundIntPoint = true; } else { foundExtPoint = true; } } return foundExtPoint && foundIntPoint; } /** * Is a point on a line segment * Only takes into account outer rings * See http://stackoverflow.com/a/4833823/1979085 * * @private * @param {number[]} lineSegmentStart coord pair of start of line * @param {number[]} lineSegmentEnd coord pair of end of line * @param {number[]} pt coord pair of point to check * @param {boolean} incEnd whether the point is allowed to fall on the line ends * @returns {boolean} true/false */ function isPointOnLineSegment( lineSegmentStart: number[], lineSegmentEnd: number[], pt: number[], incEnd: boolean ) { var dxc = pt[0] - lineSegmentStart[0]; var dyc = pt[1] - lineSegmentStart[1]; var dxl = lineSegmentEnd[0] - lineSegmentStart[0]; var dyl = lineSegmentEnd[1] - lineSegmentStart[1]; var cross = dxc * dyl - dyc * dxl; if (cross !== 0) { return false; } if (incEnd) { if (Math.abs(dxl) >= Math.abs(dyl)) { return dxl > 0 ? lineSegmentStart[0] <= pt[0] && pt[0] <= lineSegmentEnd[0] : lineSegmentEnd[0] <= pt[0] && pt[0] <= lineSegmentStart[0]; } return dyl > 0 ? lineSegmentStart[1] <= pt[1] && pt[1] <= lineSegmentEnd[1] : lineSegmentEnd[1] <= pt[1] && pt[1] <= lineSegmentStart[1]; } else { if (Math.abs(dxl) >= Math.abs(dyl)) { return dxl > 0 ? lineSegmentStart[0] < pt[0] && pt[0] < lineSegmentEnd[0] : lineSegmentEnd[0] < pt[0] && pt[0] < lineSegmentStart[0]; } return dyl > 0 ? lineSegmentStart[1] < pt[1] && pt[1] < lineSegmentEnd[1] : lineSegmentEnd[1] < pt[1] && pt[1] < lineSegmentStart[1]; } } export { booleanCrosses }; export default booleanCrosses; ================================================ FILE: packages/turf-boolean-crosses/package.json ================================================ { "name": "@turf/boolean-crosses", "version": "7.3.4", "description": "Checks if two geometries cross each other.", "author": "Turf Authors", "contributors": [ "Rowan Winsemius <@rowanwins>", "Denis Carriere <@DenisCarriere>", "James Beard <@smallsaucepan>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "equal", "boolean", "de-9im" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "boolean-shapely": "*", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/boolean-equal": "workspace:*", "@turf/boolean-point-in-polygon": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/line-intersect": "workspace:*", "@turf/polygon-to-line": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-boolean-crosses/test/false/LineString/LineString/LineDoesNotCrossLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-2, 2], [-4, 2] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-crosses/test/false/LineString/LineString/LineOverlapsLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [5, 0] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 0], [6, 0] ] } } ] } ================================================ FILE: packages/turf-boolean-crosses/test/false/LineString/LineString/LineTouchesLineBetweenVertices.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-2, 2], [1, 2.4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-crosses/test/false/LineString/LineString/LineTouchesLineOnEndVertex.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-2, 2], [1, 1] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-crosses/test/false/LineString/LineString/LineTouchesLineOnInternalVertex.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-2, 2], [1, 3] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-crosses/test/false/LineString/Polygon/LineDoesNotCrossPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-2, 2], [-4, 2] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } } ] } ================================================ FILE: packages/turf-boolean-crosses/test/false/MultiPoint/LineString/MultiPointNotCrossLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [2, 2], [1, -1.5] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-crosses/test/false/MultiPoint/LineString/MultiPointNotCrossLineEnd.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-crosses/test/false/MultiPoint/Polygon/MultiPointNotCrossPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [3, 3], [4, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 2], [2, 2], [2, 0], [0, 0], [0, 2] ] ] } } ] } ================================================ FILE: packages/turf-boolean-crosses/test/true/LineString/LineString/LineCrossesLineBetweenVertices.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-2, 2], [4, 2] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2.2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-crosses/test/true/LineString/LineString/LineCrossesLineOnEndVertex.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-2, 1], [4, 1] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-crosses/test/true/LineString/LineString/LineCrossesLineOnInternalVertex.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-2, 2], [4, 2] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-crosses/test/true/LineString/LineString/issue-1901-horizontal.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-70.6433177, 42.6868265], [-70.6432566, 42.6868154], [-70.6431987, 42.6868074], [-70.6431823, 42.686827], [-70.6431638, 42.686834], [-70.6431554, 42.6868565], [-70.6431197, 42.6868921], [-70.6430858, 42.6869429], [-70.6430718, 42.6870095], [-70.6430576, 42.6870561], [-70.6430143, 42.6871279], [-70.6429803, 42.6872049], [-70.6429879, 42.6872361], [-70.6430069, 42.687294], [-70.6429886, 42.6873373], [-70.6429655, 42.6873761], [-70.6429517, 42.6874289], [-70.6429176, 42.6874653], [-70.6430169, 42.6874724], [-70.6430173, 42.6875046], [-70.6429568, 42.6875301], [-70.6429351, 42.6875707], [-70.6429639, 42.6876026], [-70.6429618, 42.6876273], [-70.6429205, 42.6876437], [-70.642979, 42.6876995], [-70.643058, 42.6876823], [-70.6431052, 42.6876416], [-70.6431347, 42.6876132], [-70.6431633, 42.6875763], [-70.6432075, 42.6875091], [-70.6432276, 42.6875191], [-70.643243, 42.6875865], [-70.6432592, 42.6876215], [-70.6432361, 42.6876818], [-70.6432436, 42.6877306], [-70.6432404, 42.6877815], [-70.6432299, 42.6878144], [-70.6432724, 42.687847], [-70.6433394, 42.6878478], [-70.6433343, 42.6879072], [-70.6433207, 42.6879654], [-70.6433571, 42.6880021], [-70.643407, 42.6880716], [-70.6434145, 42.6881248], [-70.6434053, 42.6882038], [-70.6433689, 42.688232], [-70.6433801, 42.6882777], [-70.6434366, 42.6882993], [-70.6434638, 42.6883448], [-70.6435474, 42.6883564], [-70.6436326, 42.6883874], [-70.6436274, 42.6884498], [-70.6436621, 42.6884967], [-70.6436683, 42.6885168] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-70.63436881703247, 42.68738824218277], [-70.65233503703247, 42.68738824218277] ] } } ] } ================================================ FILE: packages/turf-boolean-crosses/test/true/LineString/LineString/issue-1901-vertical.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-70.6433177, 42.6868265], [-70.6432566, 42.6868154], [-70.6431987, 42.6868074], [-70.6431823, 42.686827], [-70.6431638, 42.686834], [-70.6431554, 42.6868565], [-70.6431197, 42.6868921], [-70.6430858, 42.6869429], [-70.6430718, 42.6870095], [-70.6430576, 42.6870561], [-70.6430143, 42.6871279], [-70.6429803, 42.6872049], [-70.6429879, 42.6872361], [-70.6430069, 42.687294], [-70.6429886, 42.6873373], [-70.6429655, 42.6873761], [-70.6429517, 42.6874289], [-70.6429176, 42.6874653], [-70.6430169, 42.6874724], [-70.6430173, 42.6875046], [-70.6429568, 42.6875301], [-70.6429351, 42.6875707], [-70.6429639, 42.6876026], [-70.6429618, 42.6876273], [-70.6429205, 42.6876437], [-70.642979, 42.6876995], [-70.643058, 42.6876823], [-70.6431052, 42.6876416], [-70.6431347, 42.6876132], [-70.6431633, 42.6875763], [-70.6432075, 42.6875091], [-70.6432276, 42.6875191], [-70.643243, 42.6875865], [-70.6432592, 42.6876215], [-70.6432361, 42.6876818], [-70.6432436, 42.6877306], [-70.6432404, 42.6877815], [-70.6432299, 42.6878144], [-70.6432724, 42.687847], [-70.6433394, 42.6878478], [-70.6433343, 42.6879072], [-70.6433207, 42.6879654], [-70.6433571, 42.6880021], [-70.643407, 42.6880716], [-70.6434145, 42.6881248], [-70.6434053, 42.6882038], [-70.6433689, 42.688232], [-70.6433801, 42.6882777], [-70.6434366, 42.6882993], [-70.6434638, 42.6883448], [-70.6435474, 42.6883564], [-70.6436326, 42.6883874], [-70.6436274, 42.6884498], [-70.6436621, 42.6884967], [-70.6436683, 42.6885168] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-70.64335192703247, 42.69637135218277], [-70.64335192703247, 42.67840513218277] ] } } ] } ================================================ FILE: packages/turf-boolean-crosses/test/true/LineString/LineString/issue-2967-args-reversed.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-2, 2], [4, 2] ] } } ] } ================================================ FILE: packages/turf-boolean-crosses/test/true/LineString/LineString/issue-2967.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-2, 2], [4, 2] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-crosses/test/true/LineString/Polygon/LineCrossesPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } } ] } ================================================ FILE: packages/turf-boolean-crosses/test/true/LineString/Polygon/LineCrossesPolygonPartial.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0.5, 2.5], [1, 1] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } } ] } ================================================ FILE: packages/turf-boolean-crosses/test/true/MultiPoint/LineString/MultiPointsCrossLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 2], [12, 12] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-crosses/test/true/MultiPoint/Polygon/MultiPointsCrossPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [3, 3], [1, 1] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 2], [2, 2], [2, 0], [0, 0], [0, 2] ] ] } } ] } ================================================ FILE: packages/turf-boolean-crosses/test.ts ================================================ import test from "tape"; import { glob } from "glob"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import shapely from "boolean-shapely"; import { booleanCrosses as crosses } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); test("turf-boolean-crosses", (t) => { // True Fixtures glob .sync(path.join(__dirname, "test", "true", "**", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; const geojson = loadJsonFileSync(filepath); const feature1 = geojson.features[0]; const feature2 = geojson.features[1]; if (process.env.SHAPELY) shapely .crosses(feature1, feature2) .then((result) => t.true(result, "[true] shapely - " + name)); t.true(crosses(feature1, feature2), "[true] " + name); }); // False Fixtures glob .sync(path.join(__dirname, "test", "false", "**", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; const geojson = loadJsonFileSync(filepath); const feature1 = geojson.features[0]; const feature2 = geojson.features[1]; if (process.env.SHAPELY) shapely .crosses(feature1, feature2) .then((result) => t.false(result, "[false] shapely - " + name)); t.false(crosses(feature1, feature2), "[false] " + name); }); t.end(); }); ================================================ FILE: packages/turf-boolean-crosses/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-boolean-disjoint/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-boolean-disjoint/README.md ================================================ # @turf/boolean-disjoint ## booleanDisjoint Boolean-disjoint returns (TRUE) if the intersection of the two geometries is an empty set. ### Parameters * `feature1` **([Geometry][1] | [Feature][2]\)** GeoJSON Feature or Geometry * `feature2` **([Geometry][1] | [Feature][2]\)** GeoJSON Feature or Geometry * `options` **[Object][3]** Optional parameters (optional, default `{}`) * `options.ignoreSelfIntersections` **[boolean][4]** ignore self-intersections on input features (optional, default `true`) ### Examples ```javascript var point = turf.point([2, 2]); var line = turf.lineString([[1, 1], [1, 2], [1, 3], [1, 4]]); turf.booleanDisjoint(line, point); //=true ``` Returns **[boolean][4]** true if the intersection is an empty set, false otherwise [1]: https://tools.ietf.org/html/rfc7946#section-3.1 [2]: https://tools.ietf.org/html/rfc7946#section-3.2 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/boolean-disjoint ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ### Diagrams ![esri-disjoint](diagrams/esri-disjoint.gif) ================================================ FILE: packages/turf-boolean-disjoint/bench.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import { glob } from "glob"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { booleanDisjoint as disjoint } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); /** * Benchmark Results * * LineIsNotDisjointFromLine: 3.464ms * LineIsNotDisjointFromPolygon: 1.199ms * MultiPointNotDisjointFromLine: 0.213ms * MultiPointNotDisjointFromMultipoint: 0.193ms * MultiPointNotDisjointFromPoly: 1.468ms * PointIsNotDisjointFromLineString: 0.184ms * PointNotDisjointFromInternalPoly: 0.651ms * PointNotDisjointFromMultipoint: 0.165ms * PointNotDisjointFromPoint: 0.020ms * PointNotDisjointFromPoly: 0.025ms * PolyIsNotDisjointFromPoly: 0.209ms * LineIsDisjointFromLine: 0.280ms * LineIsDisjointFromPolygon: 0.230ms * MultiPointDisjointFromLine: 0.046ms * MultiPointDisjointFromMultipoint: 0.015ms * MultiPointIsDisjointFromPoly: 0.034ms * PointDisjointFromMultipoint: 0.155ms * PointDisjointFromPoint: 0.021ms * PointIsDisjointFromLinestring: 0.962ms * PointIsDisjointFromPoly: 0.131ms * PolyIsDisjointFromPoly: 0.080ms * LineIsNotDisjointFromLine x 50,655 ops/sec ±3.66% (63 runs sampled) * LineIsNotDisjointFromPolygon x 49,947 ops/sec ±2.79% (42 runs sampled) * MultiPointNotDisjointFromLine x 7,431,677 ops/sec ±1.24% (85 runs sampled) * MultiPointNotDisjointFromMultipoint x 7,399,444 ops/sec ±0.99% (87 runs sampled) * MultiPointNotDisjointFromPoly x 2,298,298 ops/sec ±1.02% (88 runs sampled) * PointIsNotDisjointFromLineString x 10,068,082 ops/sec ±1.02% (89 runs sampled) * PointNotDisjointFromInternalPoly x 2,136,512 ops/sec ±1.24% (87 runs sampled) * PointNotDisjointFromMultipoint x 10,712,566 ops/sec ±0.98% (88 runs sampled) * PointNotDisjointFromPoint x 16,663,034 ops/sec ±0.98% (88 runs sampled) * PointNotDisjointFromPoly x 2,509,098 ops/sec ±1.06% (87 runs sampled) * PolyIsNotDisjointFromPoly x 2,078,010 ops/sec ±1.60% (85 runs sampled) * LineIsDisjointFromLine x 62,985 ops/sec ±4.13% (64 runs sampled) * LineIsDisjointFromPolygon x 58,937 ops/sec ±2.84% (62 runs sampled) * MultiPointDisjointFromLine x 4,634,718 ops/sec ±1.94% (85 runs sampled) * MultiPointDisjointFromMultipoint x 6,602,132 ops/sec ±3.76% (81 runs sampled) * MultiPointIsDisjointFromPoly x 1,203,406 ops/sec ±1.01% (87 runs sampled) * PointDisjointFromMultipoint x 11,373,917 ops/sec ±1.33% (87 runs sampled) * PointDisjointFromPoint x 18,149,666 ops/sec ±1.10% (85 runs sampled) * PointIsDisjointFromLinestring x 7,572,815 ops/sec ±0.97% (89 runs sampled) * PointIsDisjointFromPoly x 2,217,658 ops/sec ±1.04% (83 runs sampled) * PolyIsDisjointFromPoly x 551,254 ops/sec ±1.18% (90 runs sampled) */ const suite = new Benchmark.Suite("turf-boolean-disjoint"); glob .sync(path.join(__dirname, "test", "**", "*.geojson")) .forEach((filepath) => { const { name } = path.parse(filepath); const geojson = loadJsonFileSync(filepath); const [feature1, feature2] = geojson.features; console.time(name); disjoint(feature1, feature2); console.timeEnd(name); suite.add(name, () => disjoint(feature1, feature2)); }); suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-boolean-disjoint/index.ts ================================================ import { Feature, Geometry, LineString, Point, Polygon, Position, } from "geojson"; import { booleanPointInPolygon } from "@turf/boolean-point-in-polygon"; import { lineIntersect } from "@turf/line-intersect"; import { flattenEach } from "@turf/meta"; import { polygonToLine } from "@turf/polygon-to-line"; /** * Boolean-disjoint returns (TRUE) if the intersection of the two geometries is an empty set. * * @function * @param {Geometry|Feature} feature1 GeoJSON Feature or Geometry * @param {Geometry|Feature} feature2 GeoJSON Feature or Geometry * @param {Object} [options={}] Optional parameters * @param {boolean} [options.ignoreSelfIntersections=true] ignore self-intersections on input features * @returns {boolean} true if the intersection is an empty set, false otherwise * @example * var point = turf.point([2, 2]); * var line = turf.lineString([[1, 1], [1, 2], [1, 3], [1, 4]]); * * turf.booleanDisjoint(line, point); * //=true */ function booleanDisjoint( feature1: Feature | Geometry, feature2: Feature | Geometry, { ignoreSelfIntersections = true, }: { ignoreSelfIntersections?: boolean; } = { ignoreSelfIntersections: true } ): boolean { let bool = true; flattenEach(feature1, (flatten1) => { flattenEach(feature2, (flatten2) => { if (bool === false) { return false; } bool = disjoint( flatten1.geometry, flatten2.geometry, ignoreSelfIntersections ); }); }); return bool; } /** * Disjoint operation for simple Geometries (Point/LineString/Polygon) * * @private * @param {Geometry} geom1 GeoJSON Geometry * @param {Geometry} geom2 GeoJSON Geometry * @param {boolean} ignoreSelfIntersections ignore self-intersections on input features * @returns {boolean} true if disjoint, false otherwise */ function disjoint(geom1: any, geom2: any, ignoreSelfIntersections: boolean) { switch (geom1.type) { case "Point": switch (geom2.type) { case "Point": return !compareCoords(geom1.coordinates, geom2.coordinates); case "LineString": return !isPointOnLine(geom2, geom1); case "Polygon": return !booleanPointInPolygon(geom1, geom2); } /* istanbul ignore next */ break; case "LineString": switch (geom2.type) { case "Point": return !isPointOnLine(geom1, geom2); case "LineString": return !isLineOnLine(geom1, geom2, ignoreSelfIntersections); case "Polygon": return !isLineInPoly(geom2, geom1, ignoreSelfIntersections); } /* istanbul ignore next */ break; case "Polygon": switch (geom2.type) { case "Point": return !booleanPointInPolygon(geom2, geom1); case "LineString": return !isLineInPoly(geom1, geom2, ignoreSelfIntersections); case "Polygon": return !isPolyInPoly(geom2, geom1, ignoreSelfIntersections); } } return false; } // http://stackoverflow.com/a/11908158/1979085 function isPointOnLine(lineString: LineString, pt: Point) { for (let i = 0; i < lineString.coordinates.length - 1; i++) { if ( isPointOnLineSegment( lineString.coordinates[i], lineString.coordinates[i + 1], pt.coordinates ) ) { return true; } } return false; } function isLineOnLine( lineString1: LineString, lineString2: LineString, ignoreSelfIntersections: boolean ) { const doLinesIntersect = lineIntersect(lineString1, lineString2, { ignoreSelfIntersections, }); if (doLinesIntersect.features.length > 0) { return true; } return false; } function isLineInPoly( polygon: Polygon, lineString: LineString, ignoreSelfIntersections: boolean ) { for (const coord of lineString.coordinates) { if (booleanPointInPolygon(coord, polygon)) { return true; } } const doLinesIntersect = lineIntersect(lineString, polygonToLine(polygon), { ignoreSelfIntersections, }); if (doLinesIntersect.features.length > 0) { return true; } return false; } /** * Is Polygon (geom1) in Polygon (geom2) * Only takes into account outer rings * See http://stackoverflow.com/a/4833823/1979085 * * @private * @param {Geometry|Feature} feature1 Polygon1 * @param {Geometry|Feature} feature2 Polygon2 * @param {boolean} ignoreSelfIntersections ignore self-intersections on input features * @returns {boolean} true if geom1 is in geom2, false otherwise */ function isPolyInPoly( feature1: Polygon, feature2: Polygon, ignoreSelfIntersections: boolean ) { for (const coord1 of feature1.coordinates[0]) { if (booleanPointInPolygon(coord1, feature2)) { return true; } } for (const coord2 of feature2.coordinates[0]) { if (booleanPointInPolygon(coord2, feature1)) { return true; } } const doLinesIntersect = lineIntersect( polygonToLine(feature1), polygonToLine(feature2), { ignoreSelfIntersections } ); if (doLinesIntersect.features.length > 0) { return true; } return false; } function isPointOnLineSegment( lineSegmentStart: Position, lineSegmentEnd: Position, pt: Position ) { const dxc = pt[0] - lineSegmentStart[0]; const dyc = pt[1] - lineSegmentStart[1]; const dxl = lineSegmentEnd[0] - lineSegmentStart[0]; const dyl = lineSegmentEnd[1] - lineSegmentStart[1]; const cross = dxc * dyl - dyc * dxl; if (cross !== 0) { return false; } if (Math.abs(dxl) >= Math.abs(dyl)) { if (dxl > 0) { return lineSegmentStart[0] <= pt[0] && pt[0] <= lineSegmentEnd[0]; } else { return lineSegmentEnd[0] <= pt[0] && pt[0] <= lineSegmentStart[0]; } } else if (dyl > 0) { return lineSegmentStart[1] <= pt[1] && pt[1] <= lineSegmentEnd[1]; } else { return lineSegmentEnd[1] <= pt[1] && pt[1] <= lineSegmentStart[1]; } } /** * compareCoords * * @private * @param {Position} pair1 point [x,y] * @param {Position} pair2 point [x,y] * @returns {boolean} true if coord pairs match, false otherwise */ function compareCoords(pair1: Position, pair2: Position) { return pair1[0] === pair2[0] && pair1[1] === pair2[1]; } export { booleanDisjoint }; export default booleanDisjoint; ================================================ FILE: packages/turf-boolean-disjoint/package.json ================================================ { "name": "@turf/boolean-disjoint", "version": "7.3.4", "description": "Checks if two geometries have no overlapping areas.", "author": "Turf Authors", "contributors": [ "Rowan Winsemius <@rowanwins>", "Denis Carriere <@DenisCarriere>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "disjoint", "boolean", "de-9im" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "boolean-shapely": "*", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/boolean-point-in-polygon": "workspace:*", "@turf/helpers": "workspace:*", "@turf/line-intersect": "workspace:*", "@turf/meta": "workspace:*", "@turf/polygon-to-line": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-boolean-disjoint/test/false/LineString/LineString/LineString-LineString.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 2], [12, 2], [12, 3], [12, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/false/LineString/Point/LineString-Point-1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/false/LineString/Point/LineString-Point-2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1.5] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/false/LineString/Polygon/LineString-In-Polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 2.5], [2, 2.5] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/false/LineString/Polygon/LineString-Polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 2], [12, 2], [12, 3], [12, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/false/MultiPoint/LineString/MultiPoint-LineString.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [0, 0] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/false/MultiPoint/MultiPoint/MultiPoint-MultiPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [0, 0], [12, 12] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/false/MultiPoint/Polygon/MultiPoint-Polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [-1, 2], [-2, -2] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/false/MultiPolygon/Polygon/MultiPolygon-Polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill": "#ff0000" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [122.6953125, -19.186677697957833], [128.759765625, -19.186677697957833], [128.759765625, -15.28418511407642], [122.6953125, -15.28418511407642], [122.6953125, -19.186677697957833] ] ], [ [ [123.74999999999999, -25.918526162075153], [130.25390625, -25.918526162075153], [130.25390625, -20.715015145512087], [123.74999999999999, -20.715015145512087], [123.74999999999999, -25.918526162075153] ] ] ] } }, { "type": "Feature", "properties": { "fill": "#0000ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [119.20166015624999, -22.776181505086495], [125.09033203124999, -22.776181505086495], [125.09033203124999, -18.417078658661257], [119.20166015624999, -18.417078658661257], [119.20166015624999, -22.776181505086495] ] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/false/Point/LineString/Point-LineString-1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/false/Point/LineString/Point-LineString-2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1.5] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/false/Point/LineString/Point-LineString-3.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.5, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [2, 1], [3, 1], [4, 1] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/false/Point/LineString/Point-LineString-4.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.5, 2.5] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [2, 2], [3, 3], [4, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/false/Point/MultiPoint/Point-MultiPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/false/Point/Point/Point-Point.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/false/Point/Polygon/Point-Polygon-1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 2.5] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/false/Point/Polygon/Point-Polygon-2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-1, 2] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/false/Polygon/LineString/Polygon-Containing-Linestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 2.5], [2, 2.5] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/false/Polygon/LineString/Polygon-LineString.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 2], [12, 2], [12, 3], [12, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/false/Polygon/MultiPolygon/Polygon-MultiPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill": "#0000ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [119.20166015624999, -22.776181505086495], [125.09033203124999, -22.776181505086495], [125.09033203124999, -18.417078658661257], [119.20166015624999, -18.417078658661257], [119.20166015624999, -22.776181505086495] ] ] } }, { "type": "Feature", "properties": { "fill": "#ff0000" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [122.6953125, -19.186677697957833], [128.759765625, -19.186677697957833], [128.759765625, -15.28418511407642], [122.6953125, -15.28418511407642], [122.6953125, -19.186677697957833] ] ], [ [ [123.74999999999999, -25.918526162075153], [130.25390625, -25.918526162075153], [130.25390625, -20.715015145512087], [123.74999999999999, -20.715015145512087], [123.74999999999999, -25.918526162075153] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/false/Polygon/Point/Polygon-Point.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 2.5] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/false/Polygon/Polygon/Large-Inside-Small.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [19.6875, 34.016241889667015], [14.765625, 26.745610382199022], [19.6875, 23.563987128451217], [23.203125, 26.43122806450644], [22.148437499999996, 30.44867367928756], [19.6875, 34.016241889667015] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [18.984375, 40.44694705960048], [7.03125, 25.48295117535531], [19.335937499999996, 18.979025953255267], [31.640625, 24.206889622398023], [24.960937499999996, 34.88593094075317], [18.984375, 40.44694705960048] ] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/false/Polygon/Polygon/Polygon-Polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [-13, -12], [-13, -13], [-11, -13], [-1, 2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/false/Polygon/Polygon/Small-Inside-Large.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [18.984375, 40.44694705960048], [7.03125, 25.48295117535531], [19.335937499999996, 18.979025953255267], [31.640625, 24.206889622398023], [24.960937499999996, 34.88593094075317], [18.984375, 40.44694705960048] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [19.6875, 34.016241889667015], [14.765625, 26.745610382199022], [19.6875, 23.563987128451217], [23.203125, 26.43122806450644], [22.148437499999996, 30.44867367928756], [19.6875, 34.016241889667015] ] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/false/Polygon/Polygon/issue-1216.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.638240782825051, 46.513552354874435], [6.638240782825051, 46.52452567471025], [6.632039186485088, 46.52452567471025], [6.632039186485088, 46.513552354874435], [6.638240782825051, 46.513552354874435] ] ] }, "bbox": [ 6.632039186485088, 46.513552354874435, 6.638240782825051, 46.52452567471025 ] }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.645459572232596, 46.51709747623775], [6.645459572232596, 46.52102619404951], [6.626132904233913, 46.52102619404951], [6.626132904233913, 46.51709747623775], [6.645459572232596, 46.51709747623775] ] ] }, "bbox": [6.626132904233913, 46.51709747623775, 6.645459572232596, 46.52102619404951] } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/true/LineString/LineString/LineString-LineString.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [12, 2], [12, 3], [12, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/true/LineString/Point/LineString-Point.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/true/LineString/Polygon/LineString-Polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [12, 2], [12, 3], [12, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/true/MultiPoint/LineString/MultiPoint-LineString.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [2, 2], [0, 0] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/true/MultiPoint/MultiPoint/MultiPoint-MultiPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [0, 0], [13, 13] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/true/MultiPoint/Point/MultiPoint-Point.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/true/MultiPoint/Polygon/MultiPoint-Polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [-3, -3], [-2, -2] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/true/MultiPolygon/Polygon/MultiPolygon-Polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill": "#ff0000" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [122.6953125, -19.186677697957833], [128.759765625, -19.186677697957833], [128.759765625, -15.28418511407642], [122.6953125, -15.28418511407642], [122.6953125, -19.186677697957833] ] ], [ [ [123.74999999999999, -25.918526162075153], [130.25390625, -25.918526162075153], [130.25390625, -20.715015145512087], [123.74999999999999, -20.715015145512087], [123.74999999999999, -25.918526162075153] ] ] ] } }, { "type": "Feature", "properties": { "fill": "#0000ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [116.98242187499999, -24.647017162630352], [122.87109375, -24.647017162630352], [122.87109375, -20.34462694382967], [116.98242187499999, -20.34462694382967], [116.98242187499999, -24.647017162630352] ] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/true/Point/LineString/Point-LineString.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/true/Point/MultiPoint/Point-Multipoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/true/Point/Point/Point-Point.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 1] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/true/Point/Polygon/Point-Polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/true/Polygon/LineString/Polygon-LineString.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [12, 2], [12, 3], [12, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/true/Polygon/MultiPolygon/Polygon-MultiPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill": "#0000ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [116.98242187499999, -24.647017162630352], [122.87109375, -24.647017162630352], [122.87109375, -20.34462694382967], [116.98242187499999, -20.34462694382967], [116.98242187499999, -24.647017162630352] ] ] } }, { "type": "Feature", "properties": { "fill": "#ff0000" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [122.6953125, -19.186677697957833], [128.759765625, -19.186677697957833], [128.759765625, -15.28418511407642], [122.6953125, -15.28418511407642], [122.6953125, -19.186677697957833] ] ], [ [ [123.74999999999999, -25.918526162075153], [130.25390625, -25.918526162075153], [130.25390625, -20.715015145512087], [123.74999999999999, -20.715015145512087], [123.74999999999999, -25.918526162075153] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/true/Polygon/Point/Polygon-Point.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test/true/Polygon/Polygon/Polygon-Polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-11, -12], [-13, -12], [-13, -13], [-11, -13], [-11, -12] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } } ] } ================================================ FILE: packages/turf-boolean-disjoint/test.ts ================================================ import { glob } from "glob"; import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { loadJsonFileSync } from "load-json-file"; import shapely from "boolean-shapely"; import { booleanDisjoint as disjoint } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); test("turf-boolean-disjoint", (t) => { // True Fixtures glob .sync(path.join(__dirname, "test", "true", "**", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; const geojson: GeoJSON.FeatureCollection = loadJsonFileSync(filepath); const feature1 = geojson.features[0]; const feature2 = geojson.features[1]; const result = disjoint(feature1, feature2); if (process.env.SHAPELY) shapely .disjoint(feature1, feature2) .then((result) => t.true(result, "[true] shapely - " + name)); t.true(result, "[true] " + name); }); // False Fixtures glob .sync(path.join(__dirname, "test", "false", "**", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; const geojson: GeoJSON.FeatureCollection = loadJsonFileSync(filepath); const feature1 = geojson.features[0]; const feature2 = geojson.features[1]; const result = disjoint(feature1, feature2); if (process.env.SHAPELY) shapely .disjoint(feature1, feature2) .then((result) => t.false(result, "[false] shapely - " + name)); t.false(result, "[false] " + name); }); t.end(); }); test("turf-boolean-disjoin with ignoreSelfIntersections option", (t) => { const selfIntersectingLineString: GeoJSON.Feature = { type: "Feature", properties: {}, geometry: { type: "LineString", coordinates: [ [1, 1], [2, 2], [1, 2], [2, 1], ], }, }; const nonIntersectingLineString: GeoJSON.Feature = { type: "Feature", properties: {}, geometry: { type: "LineString", coordinates: [ [0, 1], [0, 0], ], }, }; const intersectingLineString: GeoJSON.Feature = { type: "Feature", properties: {}, geometry: { type: "LineString", coordinates: [ [0, 1], [4, 2], ], }, }; const intersectingPolygon: GeoJSON.Feature = { type: "Feature", properties: {}, geometry: { type: "Polygon", coordinates: [ [ [1.5, 1], [2, 1.5], [3, 0.5], [1.5, 1], ], ], }, }; const nonIntersectingPolygon: GeoJSON.Feature = { type: "Feature", properties: {}, geometry: { type: "Polygon", coordinates: [ [ [0.5, 0], [1, 0.5], [2, -0.5], [0.5, 0], ], ], }, }; const selfIntersectingPolygon: GeoJSON.Feature = { type: "Feature", properties: {}, geometry: { type: "Polygon", coordinates: [ [ [1.5, 1], [2, 1.5], [3, 0.5], [-1, 3], [1.5, 1], ], ], }, }; // Test with ignoringSelfIntersections = true (default behavior) let result = disjoint(selfIntersectingLineString, nonIntersectingLineString); t.true( result, "[true] " + "selfIntersectingLineString-LineString (ignoreSelfIntersections=true)" ); result = disjoint(selfIntersectingLineString, intersectingLineString); t.false( result, "[false] " + "selfIntersectingLineString-LineString (ignoreSelfIntersections=true)" ); result = disjoint(selfIntersectingLineString, intersectingPolygon); t.false( result, "[false] " + "selfIntersectingLineString-Polygon (ignoreSelfIntersections=true)" ); result = disjoint(selfIntersectingLineString, nonIntersectingPolygon); t.true( result, "[true] " + "selfIntersectingLineString-Polygon (ignoreSelfIntersections=true)" ); result = disjoint(selfIntersectingPolygon, nonIntersectingPolygon); t.true( result, "[true] " + "selfIntersectingPolygon-Polygon (ignoreSelfIntersections=true)" ); // Test with ignoringSelfIntersections option set to false result = disjoint(selfIntersectingLineString, nonIntersectingLineString, { ignoreSelfIntersections: false, }); t.false( result, "[false] " + "selfIntersectingLineString-LineString (ignoreSelfIntersections=false)" ); result = disjoint(selfIntersectingLineString, intersectingLineString, { ignoreSelfIntersections: false, }); t.false( result, "[false] " + "selfIntersectingLineString-LineString (ignoreSelfIntersections=false)" ); result = disjoint(selfIntersectingLineString, intersectingPolygon, { ignoreSelfIntersections: false, }); t.false( result, "[false] " + "selfIntersectingLineString-Polygon (ignoreSelfIntersections=false)" ); result = disjoint(selfIntersectingLineString, nonIntersectingPolygon, { ignoreSelfIntersections: false, }); t.false( result, "[false] " + "selfIntersectingLineString-Polygon (ignoreSelfIntersections=false)" ); result = disjoint(selfIntersectingPolygon, nonIntersectingPolygon, { ignoreSelfIntersections: false, }); t.false( result, "[false] " + "selfIntersectingPolygon-Polygon (ignoreSelfIntersections=false)" ); t.end(); }); ================================================ FILE: packages/turf-boolean-disjoint/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-boolean-equal/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-boolean-equal/README.md ================================================ # @turf/boolean-equal ## booleanEqual Determine whether two geometries of the same type have identical X,Y coordinate values. See [http://edndoc.esri.com/arcsde/9.0/general\_topics/understand\_spatial\_relations.htm][1] ### Parameters * `feature1` **([Geometry][2] | [Feature][3])** GeoJSON input * `feature2` **([Geometry][2] | [Feature][3])** GeoJSON input * `options` **[Object][4]** Optional parameters (optional, default `{}`) * `options.precision` **[number][5]** decimal precision to use when comparing coordinates (optional, default `6`) ### Examples ```javascript var pt1 = turf.point([0, 0]); var pt2 = turf.point([0, 0]); var pt3 = turf.point([1, 1]); turf.booleanEqual(pt1, pt2); //= true turf.booleanEqual(pt2, pt3); //= false ``` Returns **[boolean][6]** true if the objects are equal, false otherwise [1]: http://edndoc.esri.com/arcsde/9.0/general_topics/understand_spatial_relations.htm [2]: https://tools.ietf.org/html/rfc7946#section-3.1 [3]: https://tools.ietf.org/html/rfc7946#section-3.2 [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/boolean-equal ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ### Diagrams ![esri-equals](diagrams/esri-equals.gif) ================================================ FILE: packages/turf-boolean-equal/bench.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import { glob } from "glob"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { booleanEqual as equal } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); /** * Benchmark Results * * linear-rings: 1.167ms * lines: 0.132ms * multipoints: 1.283ms * points: 0.043ms * polygons: 0.387ms * linear-rings: 0.166ms * lines: 0.068ms * multipoints: 0.148ms * points: 0.029ms * polygons: 0.131ms * reverse-lines: 0.711ms * reverse-polygons: 0.090ms * linear-rings x 337,778 ops/sec ±2.95% (76 runs sampled) * lines x 367,227 ops/sec ±2.50% (78 runs sampled) * multipoints x 54,325 ops/sec ±1.71% (80 runs sampled) * points x 529,881 ops/sec ±3.62% (74 runs sampled) * polygons x 177,515 ops/sec ±2.34% (80 runs sampled) * linear-rings x 92,709 ops/sec ±1.51% (82 runs sampled) * lines x 94,539 ops/sec ±2.52% (81 runs sampled) * multipoints x 34,458 ops/sec ±2.21% (81 runs sampled) * points x 384,832 ops/sec ±2.74% (81 runs sampled) * polygons x 71,289 ops/sec ±2.67% (77 runs sampled) * reverse-lines x 83,612 ops/sec ±3.31% (77 runs sampled) * reverse-polygons x 64,686 ops/sec ±1.91% (76 runs sampled) */ const suite = new Benchmark.Suite("turf-boolean-equal"); glob .sync(path.join(__dirname, "test", "**", "*.geojson")) .forEach((filepath) => { const { name } = path.parse(filepath); const geojson = loadJsonFileSync(filepath); const [feature1, feature2] = geojson.features; console.time(name); equal(feature1, feature2); console.timeEnd(name); suite.add(name, () => equal(feature1, feature2)); }); suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-boolean-equal/index.ts ================================================ import { Feature, Geometry } from "geojson"; import { geojsonEquality } from "geojson-equality-ts"; import { cleanCoords } from "@turf/clean-coords"; import { getGeom } from "@turf/invariant"; /** * Determine whether two geometries of the same type have identical X,Y coordinate values. * See http://edndoc.esri.com/arcsde/9.0/general_topics/understand_spatial_relations.htm * * @function * @param {Geometry|Feature} feature1 GeoJSON input * @param {Geometry|Feature} feature2 GeoJSON input * @param {Object} [options={}] Optional parameters * @param {number} [options.precision=6] decimal precision to use when comparing coordinates * @returns {boolean} true if the objects are equal, false otherwise * @example * var pt1 = turf.point([0, 0]); * var pt2 = turf.point([0, 0]); * var pt3 = turf.point([1, 1]); * * turf.booleanEqual(pt1, pt2); * //= true * turf.booleanEqual(pt2, pt3); * //= false */ function booleanEqual( feature1: Feature | Geometry, feature2: Feature | Geometry, options: { precision?: number; } = {} ): boolean { let precision = options.precision; precision = precision === undefined || precision === null || isNaN(precision) ? 6 : precision; if (typeof precision !== "number" || !(precision >= 0)) { throw new Error("precision must be a positive number"); } const type1 = getGeom(feature1).type; const type2 = getGeom(feature2).type; if (type1 !== type2) return false; return geojsonEquality(cleanCoords(feature1), cleanCoords(feature2), { precision, }); } export { booleanEqual }; export default booleanEqual; ================================================ FILE: packages/turf-boolean-equal/package.json ================================================ { "name": "@turf/boolean-equal", "version": "7.3.4", "description": "Determine whether two geometries of the same type have identical X,Y coordinate values", "author": "Turf Authors", "contributors": [ "Tom MacWright <@tmcw>", "Tim Channell <@tcql>", "Stefano Borghi <@stebogit>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "gis", "boolean", "de-9im", "equal", "boolean-equal" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "boolean-shapely": "*", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/clean-coords": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", "geojson-equality-ts": "^1.0.2", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-boolean-equal/test/false/linear-rings.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-53.674866943359375, 28.30135788537988], [-53.337249755859375, 28.47412369059679], [-53.524017333984375, 28.17492820114568], [-53.674866943359375, 28.30135788537988] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-55.674866943359375, 28.30135788537988], [-55.337249755859375, 28.47412369059679], [-55.524017333984375, 28.17492820114568], [-55.674866943359375, 28.30135788537988] ] } } ] } ================================================ FILE: packages/turf-boolean-equal/test/false/lines.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [0, 5], [5, 5], [5, 0] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 0], [1, 5], [6, 5], [6, 0] ] } } ] } ================================================ FILE: packages/turf-boolean-equal/test/false/multipoints.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [-35.5638671875, 27.254629577800063], [-35.6462646484375, 26.86328062676624], [-35, 26], [-35.1001953125, 26.12091815959972], [-34.8969482421875, 26.455820238459893] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [-35.5638671875, 27.254629577800063], [-35.6462646484375, 26.86328062676624], [-35.4924560546875, 26.504988828743404], [-35.1001953125, 26.12091815959972], [-34.8969482421875, 26.455820238459893] ] } } ] } ================================================ FILE: packages/turf-boolean-equal/test/false/points.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 0] } } ] } ================================================ FILE: packages/turf-boolean-equal/test/false/polygons.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-53, 28.287451910503744], [-53.33038330078125, 28.29228897739706], [-53.34136962890625, 28.430052892335723], [-53, 28.287451910503744] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-53.57208251953125, 28.287451910503744], [-53.33038330078125, 28.29228897739706], [-53.34136962890625, 28.430052892335723], [-53.57208251953125, 28.287451910503744] ] ] } } ] } ================================================ FILE: packages/turf-boolean-equal/test/false/precision-default.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.123456, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.123451, 0] } } ] } ================================================ FILE: packages/turf-boolean-equal/test/false/precision-options.geojson ================================================ { "type": "FeatureCollection", "properties": { "precision": 17 }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.12345678901234561, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.12345678901234564, 0] } } ] } ================================================ FILE: packages/turf-boolean-equal/test/true/different-initials-poly.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 0], [0, 0], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [1, 1], [1, 0], [0, 0] ] ] } } ] } ================================================ FILE: packages/turf-boolean-equal/test/true/linear-rings.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-53.674866943359375, 28.30135788537988], [-53.337249755859375, 28.47412369059679], [-53.524017333984375, 28.17492820114568], [-53.674866943359375, 28.30135788537988] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-53.674866943359375, 28.30135788537988], [-53.337249755859375, 28.47412369059679], [-53.524017333984375, 28.17492820114568], [-53.674866943359375, 28.30135788537988] ] } } ] } ================================================ FILE: packages/turf-boolean-equal/test/true/lines-extra-vertices.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [2, 2] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [1, 1], [2, 2] ] } } ] } ================================================ FILE: packages/turf-boolean-equal/test/true/lines-reverse.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [2, 2], [1, 1], [0, 0] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [1, 1], [2, 2] ] } } ] } ================================================ FILE: packages/turf-boolean-equal/test/true/lines.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [0, 5], [5, 5], [5, 0] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [0, 5], [5, 5], [5, 0] ] } } ] } ================================================ FILE: packages/turf-boolean-equal/test/true/multipoints.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [-35.5638671875, 27.254629577800063], [-35.6462646484375, 26.86328062676624], [-35.4924560546875, 26.504988828743404], [-35.1001953125, 26.12091815959972], [-34.8969482421875, 26.455820238459893] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [-35.5638671875, 27.254629577800063], [-35.6462646484375, 26.86328062676624], [-35.4924560546875, 26.504988828743404], [-35.1001953125, 26.12091815959972], [-34.8969482421875, 26.455820238459893] ] } } ] } ================================================ FILE: packages/turf-boolean-equal/test/true/points.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } } ] } ================================================ FILE: packages/turf-boolean-equal/test/true/polygons.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-53.57208251953125, 28.287451910503744], [-53.33038330078125, 28.29228897739706], [-53.34136962890625, 28.430052892335723], [-53.57208251953125, 28.287451910503744] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-53.57208251953125, 28.287451910503744], [-53.33038330078125, 28.29228897739706], [-53.34136962890625, 28.430052892335723], [-53.57208251953125, 28.287451910503744] ] ] } } ] } ================================================ FILE: packages/turf-boolean-equal/test/true/precision-default.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.1234567, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.1234569, 0] } } ] } ================================================ FILE: packages/turf-boolean-equal/test/true/precision-options.geojson ================================================ { "type": "FeatureCollection", "properties": { "precision": 16 }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.12345678901234567, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.12345678901234569, 0] } } ] } ================================================ FILE: packages/turf-boolean-equal/test/true/reverse-lines.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [0, 5], [5, 5], [5, 0] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [5, 0], [5, 5], [0, 5], [0, 0] ] } } ] } ================================================ FILE: packages/turf-boolean-equal/test/true/reverse-polygons.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-53.57, 28.28], [-53.33, 28.29], [-53.34, 28.43], [-53.57, 28.28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-53.57, 28.28], [-53.34, 28.43], [-53.33, 28.29], [-53.57, 28.28] ] ] } } ] } ================================================ FILE: packages/turf-boolean-equal/test.ts ================================================ import { glob } from "glob"; import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { loadJsonFileSync } from "load-json-file"; import shapely from "boolean-shapely"; import { point, lineString, polygon } from "@turf/helpers"; import { booleanEqual as equal } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); test("turf-boolean-equal", (t) => { // True Fixtures glob .sync(path.join(__dirname, "test", "true", "**", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; const geojson = loadJsonFileSync(filepath); const feature1 = geojson.features[0]; const feature2 = geojson.features[1]; const options = geojson.properties; const result = equal(feature1, feature2, options); if (process.env.SHAPELY) shapely .contains(feature1, feature2) .then((result) => t.true(result, "[true] shapely - " + name)); t.true(result, "[true] " + name); }); // False Fixtures glob .sync(path.join(__dirname, "test", "false", "**", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; const geojson = loadJsonFileSync(filepath); const feature1 = geojson.features[0]; const feature2 = geojson.features[1]; const options = geojson.properties; const result = equal(feature1, feature2, options); if (process.env.SHAPELY) shapely .contains(feature1, feature2) .then((result) => t.false(result, "[false] shapely - " + name)); t.false(result, "[false] " + name); }); t.end(); }); const pt = point([9, 50]); const line1 = lineString([ [7, 50], [8, 50], [9, 50], ]); const line2 = lineString([ [7, 50], [8, 50], [9, 50], ]); const poly1 = polygon( [ [ [8.5, 50], [9.5, 50], [9.5, 49], [8.5, 49], [8.5, 50], ], ], { prop: "A" } ); const poly2 = polygon( [ [ [8.5, 50], [9.5, 50], [9.5, 49], [8.5, 49], [8.5, 50], ], ], { prop: "B" } ); const poly3 = polygon([ [ [10, 50], [10.5, 50], [10.5, 49], [10, 49], [10, 50], ], ]); const poly4 = polygon( [ [ [8.5, 50], [9.5, 50], [9.5, 49], [8.5, 49], [8.5, 50], ], ], { prop: "A" } ); test("turf-boolean-equal -- geometries", (t) => { t.true(equal(line1.geometry, line2.geometry), "[true] LineString geometry"); t.true(equal(poly1.geometry, poly2.geometry), "[true] Polygon geometry"); t.true(equal(poly1, poly4), "[true] Polygon feature"); t.false(equal(poly1.geometry, poly3.geometry), "[false] Polygon geometry"); t.false(equal(pt, line1), "[false] different types"); t.false(equal(poly1, poly2), "[false] different properties"); t.end(); }); test("turf-boolean-equal -- throws", (t) => { //t.throws(() => equal(null, line1), /feature1 is required/, 'missing feature1'); //t.throws(() => equal(line1, null), /feature2 is required/, 'missing feature2'); t.throws( () => equal(line1.geometry, line2.geometry, { precision: "1" }), "precision must be a number" ); t.throws( () => equal(line1.geometry, line2.geometry, { precision: -1 }), "precision must be positive" ); t.end(); }); ================================================ FILE: packages/turf-boolean-equal/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-boolean-intersects/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-boolean-intersects/README.md ================================================ # @turf/boolean-intersects ## booleanIntersects Boolean-intersects returns (TRUE) if the intersection of the two geometries is NOT an empty set. ### Parameters * `feature1` **([Geometry][1] | [Feature][2]\)** GeoJSON Feature or Geometry * `feature2` **([Geometry][1] | [Feature][2]\)** GeoJSON Feature or Geometry * `options` **[Object][3]** Optional parameters (optional, default `{}`) * `options.ignoreSelfIntersections` **[boolean][4]** ignore self-intersections on input features (optional, default `true`) ### Examples ```javascript var point1 = turf.point([2, 2]); var point2 = turf.point([1, 2]); var line = turf.lineString([[1, 1], [1, 3], [1, 4]]); turf.booleanIntersects(line, point1); //=false turf.booleanIntersects(line, point2); //=true //addToMap var addToMap = [point1, point2, line]; point1.properties['marker-color'] = '#f00' point2.properties['marker-color'] = '#0f0' ``` Returns **[boolean][4]** true if geometries intersect, false otherwise [1]: https://tools.ietf.org/html/rfc7946#section-3.1 [2]: https://tools.ietf.org/html/rfc7946#section-3.2 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/boolean-intersects ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-boolean-intersects/bench.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import { glob } from "glob"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { booleanIntersects as intersects } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); /** * Benchmark Results * * LineIsNotDisjointFromLine: 3.464ms * LineIsNotDisjointFromPolygon: 1.199ms * MultiPointNotDisjointFromLine: 0.213ms * MultiPointNotDisjointFromMultipoint: 0.193ms * MultiPointNotDisjointFromPoly: 1.468ms * PointIsNotDisjointFromLineString: 0.184ms * PointNotDisjointFromInternalPoly: 0.651ms * PointNotDisjointFromMultipoint: 0.165ms * PointNotDisjointFromPoint: 0.020ms * PointNotDisjointFromPoly: 0.025ms * PolyIsNotDisjointFromPoly: 0.209ms * LineIsDisjointFromLine: 0.280ms * LineIsDisjointFromPolygon: 0.230ms * MultiPointDisjointFromLine: 0.046ms * MultiPointDisjointFromMultipoint: 0.015ms * MultiPointIsDisjointFromPoly: 0.034ms * PointDisjointFromMultipoint: 0.155ms * PointDisjointFromPoint: 0.021ms * PointIsDisjointFromLinestring: 0.962ms * PointIsDisjointFromPoly: 0.131ms * PolyIsDisjointFromPoly: 0.080ms * LineIsNotDisjointFromLine x 50,655 ops/sec ±3.66% (63 runs sampled) * LineIsNotDisjointFromPolygon x 49,947 ops/sec ±2.79% (42 runs sampled) * MultiPointNotDisjointFromLine x 7,431,677 ops/sec ±1.24% (85 runs sampled) * MultiPointNotDisjointFromMultipoint x 7,399,444 ops/sec ±0.99% (87 runs sampled) * MultiPointNotDisjointFromPoly x 2,298,298 ops/sec ±1.02% (88 runs sampled) * PointIsNotDisjointFromLineString x 10,068,082 ops/sec ±1.02% (89 runs sampled) * PointNotDisjointFromInternalPoly x 2,136,512 ops/sec ±1.24% (87 runs sampled) * PointNotDisjointFromMultipoint x 10,712,566 ops/sec ±0.98% (88 runs sampled) * PointNotDisjointFromPoint x 16,663,034 ops/sec ±0.98% (88 runs sampled) * PointNotDisjointFromPoly x 2,509,098 ops/sec ±1.06% (87 runs sampled) * PolyIsNotDisjointFromPoly x 2,078,010 ops/sec ±1.60% (85 runs sampled) * LineIsDisjointFromLine x 62,985 ops/sec ±4.13% (64 runs sampled) * LineIsDisjointFromPolygon x 58,937 ops/sec ±2.84% (62 runs sampled) * MultiPointDisjointFromLine x 4,634,718 ops/sec ±1.94% (85 runs sampled) * MultiPointDisjointFromMultipoint x 6,602,132 ops/sec ±3.76% (81 runs sampled) * MultiPointIsDisjointFromPoly x 1,203,406 ops/sec ±1.01% (87 runs sampled) * PointDisjointFromMultipoint x 11,373,917 ops/sec ±1.33% (87 runs sampled) * PointDisjointFromPoint x 18,149,666 ops/sec ±1.10% (85 runs sampled) * PointIsDisjointFromLinestring x 7,572,815 ops/sec ±0.97% (89 runs sampled) * PointIsDisjointFromPoly x 2,217,658 ops/sec ±1.04% (83 runs sampled) * PolyIsDisjointFromPoly x 551,254 ops/sec ±1.18% (90 runs sampled) */ const suite = new Benchmark.Suite("turf-boolean-intersects"); glob .sync(path.join(__dirname, "test", "**", "*.geojson")) .forEach((filepath) => { const { name } = path.parse(filepath); const geojson = loadJsonFileSync(filepath); const [feature1, feature2] = geojson.features; console.time(name); intersects(feature1, feature2); console.timeEnd(name); suite.add(name, () => intersects(feature1, feature2)); }); suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-boolean-intersects/index.ts ================================================ import { Feature, Geometry } from "geojson"; import { booleanDisjoint } from "@turf/boolean-disjoint"; import { flattenEach } from "@turf/meta"; /** * Boolean-intersects returns (TRUE) if the intersection of the two geometries is NOT an empty set. * * @function * @param {Geometry|Feature} feature1 GeoJSON Feature or Geometry * @param {Geometry|Feature} feature2 GeoJSON Feature or Geometry * @param {Object} [options={}] Optional parameters * @param {boolean} [options.ignoreSelfIntersections=true] ignore self-intersections on input features * @returns {boolean} true if geometries intersect, false otherwise * @example * var point1 = turf.point([2, 2]); * var point2 = turf.point([1, 2]); * var line = turf.lineString([[1, 1], [1, 3], [1, 4]]); * * turf.booleanIntersects(line, point1); * //=false * * turf.booleanIntersects(line, point2); * //=true * * //addToMap * var addToMap = [point1, point2, line]; * point1.properties['marker-color'] = '#f00' * point2.properties['marker-color'] = '#0f0' */ function booleanIntersects( feature1: Feature | Geometry, feature2: Feature | Geometry, { ignoreSelfIntersections = true, }: { ignoreSelfIntersections?: boolean; } = {} ) { let bool = false; flattenEach(feature1, (flatten1) => { flattenEach(feature2, (flatten2) => { if (bool === true) { return true; } bool = !booleanDisjoint(flatten1.geometry, flatten2.geometry, { ignoreSelfIntersections, }); }); }); return bool; } export { booleanIntersects }; export default booleanIntersects; ================================================ FILE: packages/turf-boolean-intersects/package.json ================================================ { "name": "@turf/boolean-intersects", "version": "7.3.4", "description": "Checks if two geometries overlap in any way.", "author": "Turf Authors", "contributors": [ "Rowan Winsemius <@rowanwins>", "Denis Carriere <@DenisCarriere>", "David Whittingham <@01100100>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "intersects", "boolean", "de-9im" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "boolean-shapely": "*", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/boolean-disjoint": "workspace:*", "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-boolean-intersects/test/false/LineString/LineString/LineString-LineString.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [12, 2], [12, 3], [12, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/false/LineString/Point/LineString-Point.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/false/LineString/Polygon/LineString-Polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [12, 2], [12, 3], [12, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/false/MultiPoint/LineString/MultiPoint-LineString.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [2, 2], [0, 0] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/false/MultiPoint/MultiPoint/MultiPoint-MultiPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [0, 0], [13, 13] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/false/MultiPoint/Point/MultiPoint-Point.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/false/MultiPoint/Polygon/MultiPoint-Polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [-3, -3], [-2, -2] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/false/MultiPolygon/Polygon/MultiPolygon-Polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill": "#ff0000" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [122.6953125, -19.186677697957833], [128.759765625, -19.186677697957833], [128.759765625, -15.28418511407642], [122.6953125, -15.28418511407642], [122.6953125, -19.186677697957833] ] ], [ [ [123.74999999999999, -25.918526162075153], [130.25390625, -25.918526162075153], [130.25390625, -20.715015145512087], [123.74999999999999, -20.715015145512087], [123.74999999999999, -25.918526162075153] ] ] ] } }, { "type": "Feature", "properties": { "fill": "#0000ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [116.98242187499999, -24.647017162630352], [122.87109375, -24.647017162630352], [122.87109375, -20.34462694382967], [116.98242187499999, -20.34462694382967], [116.98242187499999, -24.647017162630352] ] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/false/Point/LineString/Point-LineString.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/false/Point/MultiPoint/Point-Multipoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/false/Point/Point/Point-Point.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 1] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/false/Point/Polygon/Point-Polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/false/Polygon/LineString/Polygon-LineString.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [12, 2], [12, 3], [12, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/false/Polygon/MultiPolygon/Polygon-MultiPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill": "#0000ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [116.98242187499999, -24.647017162630352], [122.87109375, -24.647017162630352], [122.87109375, -20.34462694382967], [116.98242187499999, -20.34462694382967], [116.98242187499999, -24.647017162630352] ] ] } }, { "type": "Feature", "properties": { "fill": "#ff0000" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [122.6953125, -19.186677697957833], [128.759765625, -19.186677697957833], [128.759765625, -15.28418511407642], [122.6953125, -15.28418511407642], [122.6953125, -19.186677697957833] ] ], [ [ [123.74999999999999, -25.918526162075153], [130.25390625, -25.918526162075153], [130.25390625, -20.715015145512087], [123.74999999999999, -20.715015145512087], [123.74999999999999, -25.918526162075153] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/false/Polygon/Point/Polygon-Point.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/false/Polygon/Polygon/Polygon-Polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-11, -12], [-13, -12], [-13, -13], [-11, -13], [-11, -12] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/true/LineString/LineString/LineString-LineString.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 2], [12, 2], [12, 3], [12, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/true/LineString/Point/LineString-Point-1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/true/LineString/Point/LineString-Point-2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1.5] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/true/LineString/Polygon/LineString-In-Polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 2.5], [2, 2.5] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/true/LineString/Polygon/LineString-Polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 2], [12, 2], [12, 3], [12, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/true/MultiPoint/LineString/MultiPoint-LineString.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [0, 0] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/true/MultiPoint/MultiPoint/MultiPoint-MultiPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [0, 0], [12, 12] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/true/MultiPoint/Polygon/MultiPoint-Polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [-1, 2], [-2, -2] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/true/MultiPolygon/Polygon/MultiPolygon-Polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill": "#ff0000" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [122.6953125, -19.186677697957833], [128.759765625, -19.186677697957833], [128.759765625, -15.28418511407642], [122.6953125, -15.28418511407642], [122.6953125, -19.186677697957833] ] ], [ [ [123.74999999999999, -25.918526162075153], [130.25390625, -25.918526162075153], [130.25390625, -20.715015145512087], [123.74999999999999, -20.715015145512087], [123.74999999999999, -25.918526162075153] ] ] ] } }, { "type": "Feature", "properties": { "fill": "#0000ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [119.20166015624999, -22.776181505086495], [125.09033203124999, -22.776181505086495], [125.09033203124999, -18.417078658661257], [119.20166015624999, -18.417078658661257], [119.20166015624999, -22.776181505086495] ] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/true/Point/LineString/Point-LineString-1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/true/Point/LineString/Point-LineString-2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1.5] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/true/Point/LineString/Point-LineString-3.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.5, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [2, 1], [3, 1], [4, 1] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/true/Point/LineString/Point-LineString-4.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.5, 2.5] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [2, 2], [3, 3], [4, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/true/Point/MultiPoint/Point-MultiPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/true/Point/Point/Point-Point.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/true/Point/Polygon/Point-Polygon-1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 2.5] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/true/Point/Polygon/Point-Polygon-2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-1, 2] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/true/Polygon/LineString/Polygon-Containing-Linestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 2.5], [2, 2.5] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/true/Polygon/LineString/Polygon-LineString.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 2], [12, 2], [12, 3], [12, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/true/Polygon/MultiPolygon/Polygon-MultiPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill": "#0000ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [119.20166015624999, -22.776181505086495], [125.09033203124999, -22.776181505086495], [125.09033203124999, -18.417078658661257], [119.20166015624999, -18.417078658661257], [119.20166015624999, -22.776181505086495] ] ] } }, { "type": "Feature", "properties": { "fill": "#ff0000" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [122.6953125, -19.186677697957833], [128.759765625, -19.186677697957833], [128.759765625, -15.28418511407642], [122.6953125, -15.28418511407642], [122.6953125, -19.186677697957833] ] ], [ [ [123.74999999999999, -25.918526162075153], [130.25390625, -25.918526162075153], [130.25390625, -20.715015145512087], [123.74999999999999, -20.715015145512087], [123.74999999999999, -25.918526162075153] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/true/Polygon/Point/Polygon-Point.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 2.5] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/true/Polygon/Polygon/Large-Inside-Small.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [19.6875, 34.016241889667015], [14.765625, 26.745610382199022], [19.6875, 23.563987128451217], [23.203125, 26.43122806450644], [22.148437499999996, 30.44867367928756], [19.6875, 34.016241889667015] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [18.984375, 40.44694705960048], [7.03125, 25.48295117535531], [19.335937499999996, 18.979025953255267], [31.640625, 24.206889622398023], [24.960937499999996, 34.88593094075317], [18.984375, 40.44694705960048] ] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/true/Polygon/Polygon/Polygon-Polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [-13, -12], [-13, -13], [-11, -13], [-1, 2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [3, 2], [3, 3], [-1, 3], [-1, 2] ] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/true/Polygon/Polygon/Small-Inside-Large.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [18.984375, 40.44694705960048], [7.03125, 25.48295117535531], [19.335937499999996, 18.979025953255267], [31.640625, 24.206889622398023], [24.960937499999996, 34.88593094075317], [18.984375, 40.44694705960048] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [19.6875, 34.016241889667015], [14.765625, 26.745610382199022], [19.6875, 23.563987128451217], [23.203125, 26.43122806450644], [22.148437499999996, 30.44867367928756], [19.6875, 34.016241889667015] ] ] } } ] } ================================================ FILE: packages/turf-boolean-intersects/test/true/Polygon/Polygon/issue-1216.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.638240782825051, 46.513552354874435], [6.638240782825051, 46.52452567471025], [6.632039186485088, 46.52452567471025], [6.632039186485088, 46.513552354874435], [6.638240782825051, 46.513552354874435] ] ] }, "bbox": [ 6.632039186485088, 46.513552354874435, 6.638240782825051, 46.52452567471025 ] }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.645459572232596, 46.51709747623775], [6.645459572232596, 46.52102619404951], [6.626132904233913, 46.52102619404951], [6.626132904233913, 46.51709747623775], [6.645459572232596, 46.51709747623775] ] ] }, "bbox": [6.626132904233913, 46.51709747623775, 6.645459572232596, 46.52102619404951] } ] } ================================================ FILE: packages/turf-boolean-intersects/test.ts ================================================ import { glob } from "glob"; import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { loadJsonFileSync } from "load-json-file"; import shapely from "boolean-shapely"; import { booleanIntersects as intersects } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); test("turf-boolean-intersects", (t) => { // True Fixtures glob .sync(path.join(__dirname, "test", "true", "**", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; const geojson = loadJsonFileSync(filepath); const feature1 = geojson.features[0]; const feature2 = geojson.features[1]; const result = intersects(feature1, feature2); if (process.env.SHAPELY) shapely .intersects(feature1, feature2) .then((result) => t.true(result, "[true] shapely - " + name)); t.true(result, "[true] " + name); }); // False Fixtures glob .sync(path.join(__dirname, "test", "false", "**", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; const geojson = loadJsonFileSync(filepath); const feature1 = geojson.features[0]; const feature2 = geojson.features[1]; const result = intersects(feature1, feature2); if (process.env.SHAPELY) shapely .intersects(feature1, feature2) .then((result) => t.false(result, "[false] shapely - " + name)); t.false(result, "[false] " + name); }); t.end(); }); test("turf-boolean-intersects with ignoreSelfIntersections option", (t) => { const selfIntersectingLineString: GeoJSON.Feature = { type: "Feature", properties: {}, geometry: { type: "LineString", coordinates: [ [1, 1], [2, 2], [1, 2], [2, 1], ], }, }; const nonIntersectingLineString: GeoJSON.Feature = { type: "Feature", properties: {}, geometry: { type: "LineString", coordinates: [ [0, 1], [0, 0], ], }, }; const intersectingLineString: GeoJSON.Feature = { type: "Feature", properties: {}, geometry: { type: "LineString", coordinates: [ [0, 1], [4, 2], ], }, }; const intersectingPolygon: GeoJSON.Feature = { type: "Feature", properties: {}, geometry: { type: "Polygon", coordinates: [ [ [1.5, 1], [2, 1.5], [3, 0.5], [1.5, 1], ], ], }, }; const nonIntersectingPolygon: GeoJSON.Feature = { type: "Feature", properties: {}, geometry: { type: "Polygon", coordinates: [ [ [0.5, 0], [1, 0.5], [2, -0.5], [0.5, 0], ], ], }, }; // Test without ignoringSelfIntersections option (default behavior) let result = intersects( selfIntersectingLineString, nonIntersectingLineString ); t.false( result, "[false] " + "selfIntersectingLineString-LineString (ignoreSelfIntersections=true)" ); result = intersects(selfIntersectingLineString, intersectingLineString); t.true( result, "[true] " + "selfIntersectingLineString-LineString (ignoreSelfIntersections=true)" ); result = intersects(selfIntersectingLineString, intersectingPolygon); t.true( result, "[true] " + "selfIntersectingLineString-Polygon (ignoreSelfIntersections=true)" ); result = intersects(selfIntersectingLineString, nonIntersectingPolygon); t.false( result, "[false] " + "selfIntersectingLineString-Polygon (ignoreSelfIntersections=true)" ); // Test with ignoringSelfIntersections option result = intersects(selfIntersectingLineString, nonIntersectingLineString, { ignoreSelfIntersections: false, }); t.true( result, "[true] " + "selfIntersectingLineString-LineString (ignoreSelfIntersections=false)" ); result = intersects(selfIntersectingLineString, intersectingLineString, { ignoreSelfIntersections: false, }); t.true( result, "[true] " + "selfIntersectingLineString-LineString (ignoreSelfIntersections=false)" ); result = intersects(selfIntersectingLineString, intersectingPolygon, { ignoreSelfIntersections: false, }); t.true( result, "[true] " + "selfIntersectingLineString-Polygon (ignoreSelfIntersections=false)" ); result = intersects(selfIntersectingLineString, nonIntersectingPolygon, { ignoreSelfIntersections: false, }); t.true( result, "[true] " + "selfIntersectingLineString-Polygon (ignoreSelfIntersections=false)" ); t.end(); }); ================================================ FILE: packages/turf-boolean-intersects/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-boolean-overlap/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-boolean-overlap/README.md ================================================ # @turf/boolean-overlap ## booleanOverlap Compares two geometries of the same dimension and returns true if their intersection set results in a geometry different from both but of the same dimension. It applies to Polygon/Polygon, LineString/LineString, Multipoint/Multipoint, MultiLineString/MultiLineString and MultiPolygon/MultiPolygon. In other words, it returns true if the two geometries overlap, provided that neither completely contains the other. ### Parameters * `feature1` **([Geometry][1] | [Feature][2]<([LineString][3] | [MultiLineString][4] | [Polygon][5] | [MultiPolygon][6])>)** input * `feature2` **([Geometry][1] | [Feature][2]<([LineString][3] | [MultiLineString][4] | [Polygon][5] | [MultiPolygon][6])>)** input ### Examples ```javascript var poly1 = turf.polygon([[[0,0],[0,5],[5,5],[5,0],[0,0]]]); var poly2 = turf.polygon([[[1,1],[1,6],[6,6],[6,1],[1,1]]]); var poly3 = turf.polygon([[[10,10],[10,15],[15,15],[15,10],[10,10]]]); turf.booleanOverlap(poly1, poly2) //=true turf.booleanOverlap(poly2, poly3) //=false ``` Returns **[boolean][7]** true/false [1]: https://tools.ietf.org/html/rfc7946#section-3.1 [2]: https://tools.ietf.org/html/rfc7946#section-3.2 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [4]: https://tools.ietf.org/html/rfc7946#section-3.1.5 [5]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [6]: https://tools.ietf.org/html/rfc7946#section-3.1.7 [7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/boolean-overlap ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ### Diagrams ![esri-overlaps](diagrams/esri-overlaps.gif) ================================================ FILE: packages/turf-boolean-overlap/bench.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import { glob } from "glob"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { booleanOverlap as overlap } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); /** * Benchmark Results * * equal-linear-rings: 1.286ms * equal-lines: 0.573ms * equal-multipoints: 0.823ms * equal-polygons: 0.312ms * linear-rings: 8.417ms * lines: 0.939ms * multipoints: 0.471ms * polygon-with-hole-polygon: 0.827ms * polygons: 0.306ms * linear-rings: 2.558ms * lines: 3.282ms * multipoints: 0.058ms * polygon-with-hole-polygon: 1.105ms * polygons: 0.067ms * simple-lines: 1.083ms * single-multipoints: 0.041ms * equal-linear-rings x 86,843 ops/sec ±4.89% (78 runs sampled) * equal-lines x 75,485 ops/sec ±9.21% (75 runs sampled) * equal-multipoints x 33,422 ops/sec ±2.26% (77 runs sampled) * equal-polygons x 71,869 ops/sec ±1.76% (84 runs sampled) * linear-rings x 5,006 ops/sec ±4.26% (73 runs sampled) * lines x 7,781 ops/sec ±3.84% (75 runs sampled) * multipoints x 287,008 ops/sec ±1.61% (77 runs sampled) * polygon-with-hole-polygon x 43,735 ops/sec ±1.83% (83 runs sampled) * polygons x 91,882 ops/sec ±1.55% (81 runs sampled) * linear-rings x 4,008 ops/sec ±3.07% (72 runs sampled) * lines x 5,632 ops/sec ±4.55% (71 runs sampled) * multipoints x 271,445 ops/sec ±3.77% (75 runs sampled) * polygon-with-hole-polygon x 41,716 ops/sec ±1.67% (82 runs sampled) * polygons x 81,217 ops/sec ±2.46% (81 runs sampled) * simple-lines x 8,880 ops/sec ±3.63% (75 runs sampled) * single-multipoints x 281,914 ops/sec ±2.27% (76 runs sampled) */ const suite = new Benchmark.Suite("turf-boolean-overlap"); glob .sync(path.join(__dirname, "test", "**", "*.geojson")) .forEach((filepath) => { const { name } = path.parse(filepath); const geojson = loadJsonFileSync(filepath); const [feature1, feature2] = geojson.features; console.time(name); overlap(feature1, feature2); console.timeEnd(name); suite.add(name, () => overlap(feature1, feature2)); }); suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-boolean-overlap/index.ts ================================================ import { Feature, Geometry, MultiPoint } from "geojson"; import { segmentEach } from "@turf/meta"; import { getGeom } from "@turf/invariant"; import { lineOverlap } from "@turf/line-overlap"; import { lineIntersect } from "@turf/line-intersect"; import { geojsonEquality } from "geojson-equality-ts"; /** * Compares two geometries of the same dimension and returns true if their intersection set results in a geometry * different from both but of the same dimension. It applies to Polygon/Polygon, LineString/LineString, * Multipoint/Multipoint, MultiLineString/MultiLineString and MultiPolygon/MultiPolygon. * * In other words, it returns true if the two geometries overlap, provided that neither completely contains the other. * * @function * @param {Geometry|Feature} feature1 input * @param {Geometry|Feature} feature2 input * @returns {boolean} true/false * @example * var poly1 = turf.polygon([[[0,0],[0,5],[5,5],[5,0],[0,0]]]); * var poly2 = turf.polygon([[[1,1],[1,6],[6,6],[6,1],[1,1]]]); * var poly3 = turf.polygon([[[10,10],[10,15],[15,15],[15,10],[10,10]]]); * * turf.booleanOverlap(poly1, poly2) * //=true * turf.booleanOverlap(poly2, poly3) * //=false */ function booleanOverlap( feature1: Feature | Geometry, feature2: Feature | Geometry ): boolean { const geom1 = getGeom(feature1); const geom2 = getGeom(feature2); const type1 = geom1.type; const type2 = geom2.type; if ( (type1 === "MultiPoint" && type2 !== "MultiPoint") || ((type1 === "LineString" || type1 === "MultiLineString") && type2 !== "LineString" && type2 !== "MultiLineString") || ((type1 === "Polygon" || type1 === "MultiPolygon") && type2 !== "Polygon" && type2 !== "MultiPolygon") ) { throw new Error("features must be of the same type"); } if (type1 === "Point") throw new Error("Point geometry not supported"); // features must be not equal if (geojsonEquality(feature1 as any, feature2 as any, { precision: 6 })) return false; let overlap = 0; switch (type1) { case "MultiPoint": for (var i = 0; i < (geom1 as MultiPoint).coordinates.length; i++) { for (var j = 0; j < (geom2 as MultiPoint).coordinates.length; j++) { var coord1 = geom1.coordinates[i]; var coord2 = geom2.coordinates[j]; if (coord1[0] === coord2[0] && coord1[1] === coord2[1]) { return true; } } } return false; case "LineString": case "MultiLineString": segmentEach(feature1, (segment1) => { segmentEach(feature2, (segment2) => { if (lineOverlap(segment1!, segment2!).features.length) overlap++; }); }); break; case "Polygon": case "MultiPolygon": segmentEach(feature1, (segment1) => { segmentEach(feature2, (segment2) => { if (lineIntersect(segment1!, segment2!).features.length) overlap++; }); }); break; } return overlap > 0; } export { booleanOverlap }; export default booleanOverlap; ================================================ FILE: packages/turf-boolean-overlap/package.json ================================================ { "name": "@turf/boolean-overlap", "version": "7.3.4", "description": "Checks if two geometries have an area of overlap without one being completely contained inside the other.", "author": "Turf Authors", "contributors": [ "Tim Channell <@tcql>", "Stefano Borghi <@stebogit>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "gis", "boolean", "de-9im", "overlap", "boolean-overlap" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "boolean-shapely": "*", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/line-intersect": "workspace:*", "@turf/line-overlap": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "geojson-equality-ts": "^1.0.2", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-boolean-overlap/test/false/equal-linear-rings.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-53.674866943359375, 28.30135788537988], [-53.337249755859375, 28.47412369059679], [-53.524017333984375, 28.17492820114568], [-53.674866943359375, 28.30135788537988] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-53.674866943359375, 28.30135788537988], [-53.337249755859375, 28.47412369059679], [-53.524017333984375, 28.17492820114568], [-53.674866943359375, 28.30135788537988] ] } } ] } ================================================ FILE: packages/turf-boolean-overlap/test/false/equal-lines.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [0, 5], [5, 5], [5, 0] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [5, 0], [5, 5], [0, 5], [0, 0] ] } } ] } ================================================ FILE: packages/turf-boolean-overlap/test/false/equal-multipoints.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [-35.5638671875, 27.254629577800063], [-35.6462646484375, 26.86328062676624], [-35.4924560546875, 26.504988828743404], [-35.1001953125, 26.12091815959972], [-34.8969482421875, 26.455820238459893] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [-35.5638671875, 27.254629577800063], [-35.6462646484375, 26.86328062676624], [-35.4924560546875, 26.504988828743404], [-35.1001953125, 26.12091815959972], [-34.8969482421875, 26.455820238459893] ] } } ] } ================================================ FILE: packages/turf-boolean-overlap/test/false/equal-polygons.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-53.57208251953125, 28.287451910503744], [-53.33038330078125, 28.29228897739706], [-53.34136962890625, 28.430052892335723], [-53.57208251953125, 28.287451910503744] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-53.57208251953125, 28.287451910503744], [-53.34136962890625, 28.430052892335723], [-53.33038330078125, 28.29228897739706], [-53.57208251953125, 28.287451910503744] ] ] } } ] } ================================================ FILE: packages/turf-boolean-overlap/test/false/linear-rings.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-53.317337036132805, 28.445147699510212], [-53.61053466796875, 28.263868062633772], [-53.3770751953125, 28.214869548073377], [-53.38531494140625, 28.272939391283685], [-53.22052001953125, 28.272939391283685], [-53.317337036132805, 28.445147699510212] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-53.674866943359375, 28.30135788537988], [-53.337249755859375, 28.47412369059679], [-53.524017333984375, 28.17492820114568], [-53.674866943359375, 28.30135788537988] ] } } ] } ================================================ FILE: packages/turf-boolean-overlap/test/false/lines.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-22.564544677734375, 46.25917013377904], [-22.559051513671875, 46.32369743336783], [-22.446441650390625, 46.352141192009334], [-22.361297607421875, 46.32891323009468], [-22.361297607421875, 46.30472670751783] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-22.570724487304688, 46.36398839132818], [-22.444381713867188, 46.357354276167015], [-22.391510009765625, 46.3291502999477], [-22.29263305664062, 46.382464893261165] ] } } ] } ================================================ FILE: packages/turf-boolean-overlap/test/false/multipoints.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [-36.05712890625, 26.480407161007275], [-35.7220458984375, 27.137368359795584], [-35.13427734375, 26.83387451505858], [-35.4638671875, 27.254629577800063], [-35.5462646484375, 26.86328062676624], [-35.3924560546875, 26.504988828743404] ] } }, { "type": "Feature", "properties": { "marker-color": "#000" }, "geometry": { "type": "MultiPoint", "coordinates": [ [-35.5638671875, 27.254629577800063], [-35.6462646484375, 26.86328062676624], [-35.4924560546875, 26.504988828743404], [-35.1001953125, 26.12091815959972], [-34.8969482421875, 26.455820238459893] ] } } ] } ================================================ FILE: packages/turf-boolean-overlap/test/false/polygon-with-hole-polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-37.81494140625, 30.050076521698735], [-36.573486328125, 28.159189634046708], [-34.20043945312499, 29.23847708592805], [-34.44213867187499, 31.090574094954192], [-36.507568359375, 32.045332838858506], [-37.81494140625, 30.050076521698735] ], [ [-36.661376953125, 29.516110386062277], [-36.661376953125, 30.685163937659564], [-35.233154296875, 30.685163937659564], [-35.233154296875, 29.516110386062277], [-36.661376953125, 29.516110386062277] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-34.903564453125, 31.99875937194732], [-33.387451171875, 31.700129553985924], [-33.310546875, 33.165145408240285], [-35.39794921875, 32.89803818160521], [-34.903564453125, 31.99875937194732] ] ] } } ] } ================================================ FILE: packages/turf-boolean-overlap/test/false/polygons.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-53.51715087890625, 28.488005204159457], [-53.47148895263672, 28.366933295392897], [-53.3770751953125, 28.490419194161678], [-53.24798583984375, 28.43246820620096], [-53.33038330078125, 28.560400880492832], [-53.51715087890625, 28.488005204159457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-53.57208251953125, 28.287451910503744], [-53.33038330078125, 28.29228897739706], [-53.34136962890625, 28.430052892335723], [-53.57208251953125, 28.287451910503744] ] ] } } ] } ================================================ FILE: packages/turf-boolean-overlap/test/true/linear-rings.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-53.317337036132805, 28.445147699510212], [-53.61053466796875, 28.263868062633772], [-53.3770751953125, 28.214869548073377], [-53.38531494140625, 28.272939391283685], [-53.22052001953125, 28.272939391283685], [-53.317337036132805, 28.445147699510212] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-53.61053466796875, 28.263868062633772], [-53.317337036132805, 28.445147699510212], [-53.524017333984375, 28.17492820114568], [-53.61053466796875, 28.263868062633772] ] } } ] } ================================================ FILE: packages/turf-boolean-overlap/test/true/lines.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-22.564544677734375, 46.25917013377904], [-22.559051513671875, 46.32369743336783], [-22.446441650390625, 46.352141192009334], [-22.361297607421875, 46.32891323009468], [-22.361297607421875, 46.30472670751783] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-22.570724487304688, 46.36398839132818], [-22.446441650390625, 46.352141192009334], [-22.361297607421875, 46.32891323009468], [-22.29263305664062, 46.382464893261165] ] } } ] } ================================================ FILE: packages/turf-boolean-overlap/test/true/multipoints.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [-36.05712890625, 26.480407161007275], [-35.7220458984375, 27.137368359795584], [-35.13427734375, 26.83387451505858], [-35.4638671875, 27.254629577800063], [-35.5462646484375, 26.86328062676624], [-35.3924560546875, 26.504988828743404] ] } }, { "type": "Feature", "properties": { "marker-color": "#000" }, "geometry": { "type": "MultiPoint", "coordinates": [ [-35.4638671875, 27.254629577800063], [-35.5462646484375, 26.86328062676624], [-35.3924560546875, 26.504988828743404], [-35.2001953125, 26.12091815959972], [-34.9969482421875, 26.455820238459893] ] } } ] } ================================================ FILE: packages/turf-boolean-overlap/test/true/polygon-with-hole-polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-37.81494140625, 30.050076521698735], [-36.573486328125, 28.159189634046708], [-34.20043945312499, 29.23847708592805], [-34.44213867187499, 31.090574094954192], [-36.507568359375, 32.045332838858506], [-37.81494140625, 30.050076521698735] ], [ [-36.661376953125, 29.516110386062277], [-36.661376953125, 30.685163937659564], [-35.233154296875, 30.685163937659564], [-35.233154296875, 29.516110386062277], [-36.661376953125, 29.516110386062277] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-35.980224609375, 30.315987718557867], [-34.8486328125, 30.694611546632277], [-35.782470703125, 31.16580958786196], [-35.980224609375, 30.315987718557867] ] ] } } ] } ================================================ FILE: packages/turf-boolean-overlap/test/true/polygons.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-53.51715087890625, 28.488005204159457], [-53.33038330078125, 28.560400880492832], [-53.24798583984375, 28.43246820620096], [-53.3770751953125, 28.490419194161678], [-53.4100341796875, 28.34789944257093], [-53.51715087890625, 28.488005204159457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-53.57208251953125, 28.287451910503744], [-53.34136962890625, 28.430052892335723], [-53.33038330078125, 28.29228897739706], [-53.57208251953125, 28.287451910503744] ] ] } } ] } ================================================ FILE: packages/turf-boolean-overlap/test/true/simple-lines.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [0, 5], [5, 5], [5, 0] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 5], [5, 5], [5, 10] ] } } ] } ================================================ FILE: packages/turf-boolean-overlap/test/true/single-multipoints.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [-36.05712890625, 26.480407161007275], [-35.7220458984375, 27.137368359795584], [-35.13427734375, 26.83387451505858], [-35.4638671875, 27.254629577800063], [-35.5462646484375, 26.86328062676624], [-35.3924560546875, 26.504988828743404] ] } }, { "type": "Feature", "properties": { "marker-color": "#000" }, "geometry": { "type": "MultiPoint", "coordinates": [ [-35.4638671875, 27.254629577800063], [-35.6462646484375, 26.86328062676624], [-35.4924560546875, 26.504988828743404], [-35.1001953125, 26.12091815959972], [-34.8969482421875, 26.455820238459893] ] } } ] } ================================================ FILE: packages/turf-boolean-overlap/test.ts ================================================ import { glob } from "glob"; import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { loadJsonFileSync } from "load-json-file"; import shapely from "boolean-shapely"; import { point, lineString, polygon, multiLineString, multiPolygon, } from "@turf/helpers"; import { booleanOverlap as overlap } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); test("turf-boolean-overlap", (t) => { // True Fixtures glob .sync(path.join(__dirname, "test", "true", "**", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; const geojson = loadJsonFileSync(filepath); const feature1 = geojson.features[0]; const feature2 = geojson.features[1]; const result = overlap(feature1, feature2); if (process.env.SHAPELY) shapely .contains(feature1, feature2) .then((result) => t.true(result, "[true] shapely - " + name)); t.true(result, "[true] " + name); }); // False Fixtures glob .sync(path.join(__dirname, "test", "false", "**", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; const geojson = loadJsonFileSync(filepath); const feature1 = geojson.features[0]; const feature2 = geojson.features[1]; const result = overlap(feature1, feature2); if (process.env.SHAPELY) shapely .contains(feature1, feature2) .then((result) => t.false(result, "[false] shapely - " + name)); t.false(result, "[false] " + name); }); t.end(); }); const pt = point([9, 50]); const line1 = lineString([ [7, 50], [8, 50], [9, 50], ]); const line2 = lineString([ [8, 50], [9, 50], [10, 50], ]); const poly1 = polygon([ [ [8.5, 50], [9.5, 50], [9.5, 49], [8.5, 49], [8.5, 50], ], ]); const poly2 = polygon([ [ [8, 50], [9, 50], [9, 49], [8, 49], [8, 50], ], ]); const poly3 = polygon([ [ [10, 50], [10.5, 50], [10.5, 49], [10, 49], [10, 50], ], ]); const multiline1 = multiLineString([ [ [7, 50], [8, 50], [9, 50], ], ]); const multipoly1 = multiPolygon([ [ [ [8.5, 50], [9.5, 50], [9.5, 49], [8.5, 49], [8.5, 50], ], ], ]); test("turf-boolean-overlap -- geometries", (t) => { t.true(overlap(line1.geometry, line2.geometry), "[true] LineString geometry"); t.true(overlap(poly1.geometry, poly2.geometry), "[true] Polygon geometry"); t.false(overlap(poly1.geometry, poly3.geometry), "[false] Polygon geometry"); t.end(); }); test("turf-boolean-overlap -- throws", (t) => { // t.throws(() => overlap(null, line1), /feature1 is required/, 'missing feature1'); // t.throws(() => overlap(line1, null), /feature2 is required/, 'missing feature2'); t.throws( () => overlap(poly1, line1), /features must be of the same type/, "different types" ); t.throws( () => overlap(pt, pt), /Point geometry not supported/, "geometry not supported" ); t.doesNotThrow( () => overlap(line1, multiline1), "supports line and multiline comparison" ); t.doesNotThrow( () => overlap(poly1, multipoly1), "supports polygon and multipolygon comparison" ); t.end(); }); ================================================ FILE: packages/turf-boolean-overlap/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-boolean-parallel/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-boolean-parallel/README.md ================================================ # @turf/boolean-parallel ## booleanParallel Boolean-Parallel returns True if each segment of `line1` is parallel to the correspondent segment of `line2` ### Parameters * `line1` **([Geometry][1] | [Feature][2]<[LineString][3]>)** GeoJSON Feature or Geometry * `line2` **([Geometry][1] | [Feature][2]<[LineString][3]>)** GeoJSON Feature or Geometry ### Examples ```javascript var line1 = turf.lineString([[0, 0], [0, 1]]); var line2 = turf.lineString([[1, 0], [1, 1]]); turf.booleanParallel(line1, line2); //=true ``` Returns **[boolean][4]** true/false if the lines are parallel [1]: https://tools.ietf.org/html/rfc7946#section-3.1 [2]: https://tools.ietf.org/html/rfc7946#section-3.2 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/boolean-parallel ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-boolean-parallel/bench.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import { glob } from "glob"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { booleanParallel } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); /** * Benchmark Results * * line1: 2.578ms * line2: 0.137ms * city-line: 0.096ms * fiji: 0.073ms * geometry: 0.123ms * line1: 0.068ms * line3-reverse: 0.065ms * line3: 0.429ms * resolute: 0.077ms * segment1: 0.203ms * segment2: 0.087ms * segment3: 0.698ms * * line1 x 171,462 ops/sec ±2.03% (79 runs sampled) * line2 x 160,366 ops/sec ±6.55% (80 runs sampled) * city-line x 120,544 ops/sec ±8.47% (73 runs sampled) * fiji x 101,793 ops/sec ±5.09% (75 runs sampled) * geometry x 93,106 ops/sec ±7.57% (74 runs sampled) * line1 x 102,175 ops/sec ±4.95% (80 runs sampled) * line3-reverse x 129,695 ops/sec ±2.11% (82 runs sampled) * line3 x 129,860 ops/sec ±2.32% (83 runs sampled) * resolute x 136,275 ops/sec ±2.89% (79 runs sampled) * segment1 x 193,214 ops/sec ±4.31% (76 runs sampled) * segment2 x 205,418 ops/sec ±2.16% (83 runs sampled) * segment3 x 212,381 ops/sec ±1.79% (83 runs sampled) */ const suite = new Benchmark.Suite("turf-boolean-parallel"); glob .sync(path.join(__dirname, "test", "**", "*.geojson")) .forEach((filepath) => { const { name } = path.parse(filepath); const geojson = loadJsonFileSync(filepath); const [line1, line2] = geojson.features; console.time(name); booleanParallel(line1, line2); console.timeEnd(name); suite.add(name, () => booleanParallel(line1, line2)); }); suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-boolean-parallel/index.ts ================================================ import { Feature, Geometry, LineString, Position } from "geojson"; import { cleanCoords } from "@turf/clean-coords"; import { lineSegment } from "@turf/line-segment"; import { rhumbBearing } from "@turf/rhumb-bearing"; import { bearingToAzimuth } from "@turf/helpers"; /** * Boolean-Parallel returns True if each segment of `line1` is parallel to the correspondent segment of `line2` * * @function * @param {Geometry|Feature} line1 GeoJSON Feature or Geometry * @param {Geometry|Feature} line2 GeoJSON Feature or Geometry * @returns {boolean} true/false if the lines are parallel * @example * var line1 = turf.lineString([[0, 0], [0, 1]]); * var line2 = turf.lineString([[1, 0], [1, 1]]); * * turf.booleanParallel(line1, line2); * //=true */ function booleanParallel( line1: Feature | LineString, line2: Feature | LineString ): boolean { // validation if (!line1) throw new Error("line1 is required"); if (!line2) throw new Error("line2 is required"); var type1 = getType(line1, "line1"); if (type1 !== "LineString") throw new Error("line1 must be a LineString"); var type2 = getType(line2, "line2"); if (type2 !== "LineString") throw new Error("line2 must be a LineString"); var segments1 = lineSegment(cleanCoords(line1)).features; var segments2 = lineSegment(cleanCoords(line2)).features; for (var i = 0; i < segments1.length; i++) { var segment1 = segments1[i].geometry.coordinates; if (!segments2[i]) break; var segment2 = segments2[i].geometry.coordinates; if (!isParallel(segment1, segment2)) return false; } return true; } /** * Compares slopes and return result * * @private * @param {Geometry|Feature} segment1 Geometry or Feature * @param {Geometry|Feature} segment2 Geometry or Feature * @returns {boolean} if slopes are equal */ function isParallel(segment1: Position[], segment2: Position[]) { var slope1 = bearingToAzimuth(rhumbBearing(segment1[0], segment1[1])); var slope2 = bearingToAzimuth(rhumbBearing(segment2[0], segment2[1])); return slope1 === slope2 || (slope2 - slope1) % 180 === 0; } /** * Returns Feature's type * * @private * @param {Geometry|Feature} geojson Geometry or Feature * @param {string} name of the variable * @returns {string} Feature's type */ function getType(geojson: Geometry | Feature, name: string) { if ((geojson as Feature).geometry && (geojson as Feature).geometry.type) return (geojson as Feature).geometry.type; if (geojson.type) return geojson.type; // if GeoJSON geometry throw new Error("Invalid GeoJSON object for " + name); } export { booleanParallel }; export default booleanParallel; ================================================ FILE: packages/turf-boolean-parallel/package.json ================================================ { "name": "@turf/boolean-parallel", "version": "7.3.4", "description": "Determine whether each segment of a line is parallel to the correspondent segment of another line.", "author": "Turf Authors", "contributors": [ "Stefano Borghi <@stebogit>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "parallel", "boolean", "boolean-parallel" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/clean-coords": "workspace:*", "@turf/helpers": "workspace:*", "@turf/line-segment": "workspace:*", "@turf/rhumb-bearing": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-boolean-parallel/test/false/line1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-111.544189453125, 24.186847428521244], [-110.687255859375, 24.966140159912975], [-110.4510498046875, 24.467150664739002], [-109.9951171875, 25.180087808990645] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-111.4617919921875, 24.05148034322011], [-110.8795166015625, 24.681961205014595], [-110.841064453125, 24.14174098050432], [-109.97863769531249, 24.617057340809524] ] } } ] } ================================================ FILE: packages/turf-boolean-parallel/test/false/line2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-34.98046875, 29.38217507514529], [30.937499999999996, 59.085738569819505], [-10.01953125, 60.84491057364912], [25.6640625, 67.60922060496382], [-4.5703125, 34.59704151614417] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-27.24609375, 51.508742458803326], [24.43359375, 48.22467264956519], [49.92187499999999, 65.2198939361321] ] } } ] } ================================================ FILE: packages/turf-boolean-parallel/test/true/city-line.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [9.170356, 45.477985], [9.164434, 45.482551], [9.166644, 45.484003] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [9.169356, 45.477985], [9.163434, 45.482551], [9.165644, 45.484003] ] } } ] } ================================================ FILE: packages/turf-boolean-parallel/test/true/fiji.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-180.2911376953125, -17.07253857905758], [-179.73358154296875, -17.203769821917533], [-179.55780029296872, -17.463332719132794], [-179.296875, -17.460712710429785] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-180.7911376953125, -17.07253857905758], [-180.23358154296875, -17.203769821917533], [-180.05780029296872, -17.463332719132794], [-179.796875, -17.460712710429785] ] } } ] } ================================================ FILE: packages/turf-boolean-parallel/test/true/line1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-68.3349609375, 18.203262019544418], [-67.7142333984375, 18.94266018631978], [-66.412353515625, 18.588982352118453], [-66.181640625, 19.19186565046399] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-68.8349609375, 18.203262019544418], [-68.2142333984375, 18.94266018631978], [-66.912353515625, 18.588982352118453], [-66.681640625, 19.19186565046399] ] } } ] } ================================================ FILE: packages/turf-boolean-parallel/test/true/line3-reverse.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-74.4798388671875, 15.235164824060707], [-74.01978637695312, 15.566159129772904], [-73.95798828125, 15.425881893976563] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-74.4598388671875, 15.235164824060707], [-73.99978637695312, 15.566159129772904], [-73.93798828125, 15.425881893976563], [-73.795166015625, 15.681220930466825], [-73.71002197265624, 15.551606490799015] ] } } ] } ================================================ FILE: packages/turf-boolean-parallel/test/true/line3.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-74.4598388671875, 15.235164824060707], [-73.99978637695312, 15.566159129772904], [-73.93798828125, 15.425881893976563], [-73.795166015625, 15.681220930466825], [-73.71002197265624, 15.551606490799015] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-74.4798388671875, 15.235164824060707], [-74.01978637695312, 15.566159129772904], [-73.95798828125, 15.425881893976563] ] } } ] } ================================================ FILE: packages/turf-boolean-parallel/test/true/opposites.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [1, 0] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 0], [0, 0] ] } } ] } ================================================ FILE: packages/turf-boolean-parallel/test/true/resolute.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-89.82421875, 70.22974449563027], [-83.056640625, 75.75894014501688], [-64.3359375, 72.36910450725075] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-88.52421875, 70.22974449563027], [-81.756640625, 75.75894014501688], [-63.0359375, 72.36910450725075] ] } } ] } ================================================ FILE: packages/turf-boolean-parallel/test/true/segment1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-2, -5], [-2, 2] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, -4.5], [-0, 1] ] } } ] } ================================================ FILE: packages/turf-boolean-parallel/test/true/segment2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-96.591796875, 34.161818161230386], [-94.4384765625, 35.496456056584165] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-94.591796875, 34.161818161230386], [-92.4384765625, 35.496456056584165] ] } } ] } ================================================ FILE: packages/turf-boolean-parallel/test/true/segment3.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-86, 11.4], [-80, 11.4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-88, 11], [-81, 11] ] } } ] } ================================================ FILE: packages/turf-boolean-parallel/test/true/verticals.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [0, 1] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 0], [1, 1] ] } } ] } ================================================ FILE: packages/turf-boolean-parallel/test/true/verticals3d.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-10, 20, 0], [-10, 10, 0] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-20, 20, 0], [-20, 10, 0] ] } } ] } ================================================ FILE: packages/turf-boolean-parallel/test.ts ================================================ import { glob } from "glob"; import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { loadJsonFileSync } from "load-json-file"; import { lineString } from "@turf/helpers"; import { booleanParallel } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); test("turf-boolean-parallel", (t) => { // True Fixtures glob .sync(path.join(__dirname, "test", "true", "**", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; const geojson = loadJsonFileSync(filepath); const line1 = geojson.features[0]; const line2 = geojson.features[1]; const result = booleanParallel(line1, line2); t.true(result, "[true] " + name); }); // False Fixtures glob .sync(path.join(__dirname, "test", "false", "**", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; const geojson = loadJsonFileSync(filepath); const line1 = geojson.features[0]; const line2 = geojson.features[1]; const result = booleanParallel(line1, line2); t.false(result, "[false] " + name); }); t.end(); }); test("turf-boolean-parallel -- throws", (t) => { const line = lineString([ [0, 0], [0, 1], ]); t.throws( () => booleanParallel({}, line), /Invalid GeoJSON object for line1/, "invalid types" ); t.throws( () => booleanParallel(line, {}), /Invalid GeoJSON object for line2/, "invalid types" ); t.end(); }); ================================================ FILE: packages/turf-boolean-parallel/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-boolean-point-in-polygon/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-boolean-point-in-polygon/README.md ================================================ # @turf/boolean-point-in-polygon ## booleanPointInPolygon Takes a [Point][1] and a [Polygon][2] or [MultiPolygon][3] and determines if the point resides inside the polygon. The polygon can be convex or concave. The function accounts for holes. ### Parameters * `point` **[Coord][4]** input point * `polygon` **[Feature][5]<([Polygon][2] | [MultiPolygon][3])>** input polygon or multipolygon * `options` **[Object][6]** Optional parameters (optional, default `{}`) * `options.ignoreBoundary` **[boolean][7]** True if polygon boundary should be ignored when determining if the point is inside the polygon otherwise false. (optional, default `false`) ### Examples ```javascript var pt = turf.point([-77, 44]); var poly = turf.polygon([[ [-81, 41], [-81, 47], [-72, 47], [-72, 41], [-81, 41] ]]); turf.booleanPointInPolygon(pt, poly); //= true ``` Returns **[boolean][7]** `true` if the Point is inside the Polygon; `false` if the Point is not inside the Polygon [1]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.7 [4]: https://tools.ietf.org/html/rfc7946#section-3.1.1 [5]: https://tools.ietf.org/html/rfc7946#section-3.2 [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/boolean-point-in-polygon ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-boolean-point-in-polygon/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import Benchmark from "benchmark"; import { point, polygon } from "@turf/helpers"; import { booleanPointInPolygon } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); var poly = polygon([ [ [0, 0], [0, 100], [100, 100], [100, 0], [0, 0], ], ]); var ptIn = point([50, 50]); var ptInPoly = point([-86.7222, 36.2025]); var ptOutsidePoly = point([-110, 40]); var multiPolyHole = JSON.parse( fs.readFileSync(__dirname + "/test/in/multipoly-with-hole.geojson") ); /** * Benchmark Results * * simple x 3,219,331 ops/sec ±1.14% (91 runs sampled) * multiPolyHole - inside x 1,171,486 ops/sec ±1.10% (90 runs sampled) * multiPolyHole - outside x 7,697,033 ops/sec ±0.89% (89 runs sampled) */ var suite = new Benchmark.Suite("turf-boolean-point-in-polygon"); suite .add("simple", () => booleanPointInPolygon(ptIn, poly)) .add("multiPolyHole - inside", () => booleanPointInPolygon(ptInPoly, multiPolyHole) ) .add("multiPolyHole - outside", () => booleanPointInPolygon(ptOutsidePoly, multiPolyHole) ) .on("cycle", (e) => console.log(String(e.target))) .run(); ================================================ FILE: packages/turf-boolean-point-in-polygon/index.ts ================================================ import pip from "point-in-polygon-hao"; import { BBox, Feature, MultiPolygon, Polygon, GeoJsonProperties, } from "geojson"; import { Coord } from "@turf/helpers"; import { getCoord, getGeom } from "@turf/invariant"; // http://en.wikipedia.org/wiki/Even%E2%80%93odd_rule // modified from: https://github.com/substack/point-in-polygon/blob/master/index.js // which was modified from http://www.ecse.rpi.edu/Homepages/wrf/Research/Short_Notes/pnpoly.html /** * Takes a {@link Point} and a {@link Polygon} or {@link MultiPolygon} and determines if the point * resides inside the polygon. The polygon can be convex or concave. The function accounts for holes. * * @function * @param {Coord} point input point * @param {Feature} polygon input polygon or multipolygon * @param {Object} [options={}] Optional parameters * @param {boolean} [options.ignoreBoundary=false] True if polygon boundary should be ignored when determining if * the point is inside the polygon otherwise false. * @returns {boolean} `true` if the Point is inside the Polygon; `false` if the Point is not inside the Polygon * @example * var pt = turf.point([-77, 44]); * var poly = turf.polygon([[ * [-81, 41], * [-81, 47], * [-72, 47], * [-72, 41], * [-81, 41] * ]]); * * turf.booleanPointInPolygon(pt, poly); * //= true */ function booleanPointInPolygon< G extends Polygon | MultiPolygon, P extends GeoJsonProperties = GeoJsonProperties, >( point: Coord, polygon: Feature | G, options: { ignoreBoundary?: boolean; } = {} ) { // validation if (!point) { throw new Error("point is required"); } if (!polygon) { throw new Error("polygon is required"); } const pt = getCoord(point); const geom = getGeom(polygon); const type = geom.type; const bbox = polygon.bbox; let polys: any[] = geom.coordinates; // Quick elimination if point is not inside bbox if (bbox && inBBox(pt, bbox) === false) { return false; } if (type === "Polygon") { polys = [polys]; } let result = false; for (var i = 0; i < polys.length; ++i) { const polyResult = pip(pt, polys[i]); if (polyResult === 0) return options.ignoreBoundary ? false : true; else if (polyResult) result = true; } return result; } /** * inBBox * * @private * @param {Position} pt point [x,y] * @param {BBox} bbox BBox [west, south, east, north] * @returns {boolean} true/false if point is inside BBox */ function inBBox(pt: number[], bbox: BBox) { return ( bbox[0] <= pt[0] && bbox[1] <= pt[1] && bbox[2] >= pt[0] && bbox[3] >= pt[1] ); } export { booleanPointInPolygon }; export default booleanPointInPolygon; ================================================ FILE: packages/turf-boolean-point-in-polygon/package.json ================================================ { "name": "@turf/boolean-point-in-polygon", "version": "7.3.4", "description": "Checks if a point is inside an area, like a city boundary.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "geojson", "polygon", "point", "inside", "bin", "gis" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", "point-in-polygon-hao": "^1.1.0", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-boolean-point-in-polygon/test/in/multipoly-with-hole.geojson ================================================ { "type": "Feature", "properties": {}, "bbox": [-86.77362442016602, 36.170862616662134, -86.67303085327148, 36.23084281427824], "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-86.76624298095703, 36.171278341935434], [-86.77362442016602, 36.2014818084173], [-86.74100875854492, 36.19607929145354], [-86.74238204956055, 36.170862616662134], [-86.76624298095703, 36.171278341935434] ] ], [ [ [-86.70478820800781, 36.23084281427824], [-86.73980712890625, 36.21062368007896], [-86.71371459960938, 36.173495506147], [-86.67526245117186, 36.17709826419592], [-86.67303085327148, 36.20910010895552], [-86.68041229248047, 36.230427405208005], [-86.70478820800781, 36.23084281427824] ], [ [-86.6934585571289, 36.217271643303604], [-86.71268463134766, 36.20771501855801], [-86.70238494873047, 36.19067640168397], [-86.68487548828125, 36.19691047217554], [-86.68264389038086, 36.20993115142727], [-86.6934585571289, 36.217271643303604] ] ] ] } } ================================================ FILE: packages/turf-boolean-point-in-polygon/test/in/poly-with-hole.geojson ================================================ { "type": "Feature", "properties": {}, "bbox": [-86.73980712890625, 36.173495506147, -86.67303085327148, 36.23084281427824], "geometry": { "type": "Polygon", "coordinates": [ [ [-86.70478820800781, 36.23084281427824], [-86.73980712890625, 36.21062368007896], [-86.71371459960938, 36.173495506147], [-86.67526245117186, 36.17709826419592], [-86.67303085327148, 36.20910010895552], [-86.68041229248047, 36.230427405208005], [-86.70478820800781, 36.23084281427824] ], [ [-86.6934585571289, 36.217271643303604], [-86.71268463134766, 36.20771501855801], [-86.70238494873047, 36.19067640168397], [-86.68487548828125, 36.19691047217554], [-86.68264389038086, 36.20993115142727], [-86.6934585571289, 36.217271643303604] ] ] } } ================================================ FILE: packages/turf-boolean-point-in-polygon/test.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { point } from "@turf/helpers"; import { polygon } from "@turf/helpers"; import { booleanPointInPolygon } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); test("boolean-point-in-polygon -- featureCollection", function (t) { // test for a simple polygon var poly = polygon([ [ [0, 0], [0, 100], [100, 100], [100, 0], [0, 0], ], ]); var ptIn = point([50, 50]); var ptOut = point([140, 150]); t.true(booleanPointInPolygon(ptIn, poly), "point inside simple polygon"); t.false(booleanPointInPolygon(ptOut, poly), "point outside simple polygon"); // test for a concave polygon var concavePoly = polygon([ [ [0, 0], [50, 50], [0, 100], [100, 100], [100, 0], [0, 0], ], ]); var ptConcaveIn = point([75, 75]); var ptConcaveOut = point([25, 50]); t.true( booleanPointInPolygon(ptConcaveIn, concavePoly), "point inside concave polygon" ); t.false( booleanPointInPolygon(ptConcaveOut, concavePoly), "point outside concave polygon" ); t.end(); }); test("boolean-point-in-polygon -- poly with hole", function (t) { var ptInHole = point([-86.69208526611328, 36.20373274711739]); var ptInPoly = point([-86.72229766845702, 36.20258997094334]); var ptOutsidePoly = point([-86.75079345703125, 36.18527313913089]); var polyHole = JSON.parse( fs.readFileSync(__dirname + "/test/in/poly-with-hole.geojson") ); t.false(booleanPointInPolygon(ptInHole, polyHole)); t.true(booleanPointInPolygon(ptInPoly, polyHole)); t.false(booleanPointInPolygon(ptOutsidePoly, polyHole)); t.end(); }); test("boolean-point-in-polygon -- multipolygon with hole", function (t) { var ptInHole = point([-86.69208526611328, 36.20373274711739]); var ptInPoly = point([-86.72229766845702, 36.20258997094334]); var ptInPoly2 = point([-86.75079345703125, 36.18527313913089]); var ptOutsidePoly = point([-86.75302505493164, 36.23015046460186]); var multiPolyHole = JSON.parse( fs.readFileSync(__dirname + "/test/in/multipoly-with-hole.geojson") ); t.false(booleanPointInPolygon(ptInHole, multiPolyHole)); t.true(booleanPointInPolygon(ptInPoly, multiPolyHole)); t.true(booleanPointInPolygon(ptInPoly2, multiPolyHole)); t.true(booleanPointInPolygon(ptInPoly, multiPolyHole)); t.false(booleanPointInPolygon(ptOutsidePoly, multiPolyHole)); t.end(); }); test("boolean-point-in-polygon -- Boundary test", function (t) { var poly1 = polygon([ [ [10, 10], [30, 20], [50, 10], [30, 0], [10, 10], ], ]); var poly2 = polygon([ [ [10, 0], [30, 20], [50, 0], [30, 10], [10, 0], ], ]); var poly3 = polygon([ [ [10, 0], [30, 20], [50, 0], [30, -20], [10, 0], ], ]); var poly4 = polygon([ [ [0, 0], [0, 20], [50, 20], [50, 0], [40, 0], [30, 10], [30, 0], [20, 10], [10, 10], [10, 0], [0, 0], ], ]); var poly5 = polygon([ [ [0, 20], [20, 40], [40, 20], [20, 0], [0, 20], ], [ [10, 20], [20, 30], [30, 20], [20, 10], [10, 20], ], ]); function runTest(t, ignoreBoundary) { var isBoundaryIncluded = ignoreBoundary === false; var tests = [ [poly1, point([10, 10]), isBoundaryIncluded], //0 [poly1, point([30, 20]), isBoundaryIncluded], [poly1, point([50, 10]), isBoundaryIncluded], [poly1, point([30, 10]), true], [poly1, point([0, 10]), false], [poly1, point([60, 10]), false], [poly1, point([30, -10]), false], [poly1, point([30, 30]), false], [poly2, point([30, 0]), false], [poly2, point([0, 0]), false], [poly2, point([60, 0]), false], //10 [poly3, point([30, 0]), true], [poly3, point([0, 0]), false], [poly3, point([60, 0]), false], [poly4, point([0, 20]), isBoundaryIncluded], [poly4, point([10, 20]), isBoundaryIncluded], [poly4, point([50, 20]), isBoundaryIncluded], [poly4, point([0, 10]), isBoundaryIncluded], [poly4, point([5, 10]), true], [poly4, point([25, 10]), true], [poly4, point([35, 10]), true], //20 [poly4, point([0, 0]), isBoundaryIncluded], [poly4, point([20, 0]), false], [poly4, point([35, 0]), false], [poly4, point([50, 0]), isBoundaryIncluded], [poly4, point([50, 10]), isBoundaryIncluded], [poly4, point([5, 0]), isBoundaryIncluded], [poly4, point([10, 0]), isBoundaryIncluded], [poly5, point([20, 30]), isBoundaryIncluded], [poly5, point([25, 25]), isBoundaryIncluded], [poly5, point([30, 20]), isBoundaryIncluded], //30 [poly5, point([25, 15]), isBoundaryIncluded], [poly5, point([20, 10]), isBoundaryIncluded], [poly5, point([15, 15]), isBoundaryIncluded], [poly5, point([10, 20]), isBoundaryIncluded], [poly5, point([15, 25]), isBoundaryIncluded], [poly5, point([20, 20]), false], ]; var testTitle = "Boundary " + (ignoreBoundary ? "ignored " : "") + "test number "; for (var i = 0; i < tests.length; i++) { var item = tests[i]; t.true( booleanPointInPolygon(item[1], item[0], { ignoreBoundary: ignoreBoundary, }) == item[2], testTitle + i ); } } runTest(t, false); runTest(t, true); t.end(); }); // https://github.com/Turfjs/turf-inside/issues/15 test("boolean-point-in-polygon -- issue #15", (t) => { var pt1 = point([-9.9964077, 53.8040989]); var poly = polygon([ [ [5.080336744095521, 67.89398938540765], [0.35070899909145403, 69.32470003971179], [-24.453622256504122, 41.146696777884564], [-21.6445524714804, 40.43225902006474], [5.080336744095521, 67.89398938540765], ], ]); t.true(booleanPointInPolygon(pt1, poly)); t.end(); }); ================================================ FILE: packages/turf-boolean-point-in-polygon/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-boolean-point-on-line/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-boolean-point-on-line/README.md ================================================ # @turf/boolean-point-on-line ## booleanPointOnLine Returns true if a point is on a line. Accepts a optional parameter to ignore the start and end vertices of the linestring. ### Parameters * `pt` **[Coord][1]** GeoJSON Point * `line` **[Feature][2]<[LineString][3]>** GeoJSON LineString * `options` **[Object][4]** Optional parameters (optional, default `{}`) * `options.ignoreEndVertices` **[boolean][5]** whether to ignore the start and end vertices. (optional, default `false`) * `options.epsilon` **[number][6]?** Fractional number to compare with the cross product result. Useful for dealing with floating points such as lng/lat points ### Examples ```javascript var pt = turf.point([0, 0]); var line = turf.lineString([[-1, -1],[1, 1],[1.5, 2.2]]); var isPointOnLine = turf.booleanPointOnLine(pt, line); //=true ``` Returns **[boolean][5]** true/false [1]: https://tools.ietf.org/html/rfc7946#section-3.1.1 [2]: https://tools.ietf.org/html/rfc7946#section-3.2 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/boolean-point-on-line ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-boolean-point-on-line/bench.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import { glob } from "glob"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { booleanPointOnLine } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); /** * Benchmark Results * * LineWithOnly1Segment: 0.557ms * LineWithOnly1SegmentOnStart: 0.024ms * PointOnFirstSegment: 0.023ms * PointOnLastSegment: 0.040ms * PointOnLineEnd: 0.073ms * PointOnLineMidpoint: 0.007ms * PointOnLineMidVertice: 0.011ms * PointOnLineStart: 0.007ms * LineWithOnly1Segment x 14,778,798 ops/sec ±3.14% (82 runs sampled) * LineWithOnly1SegmentOnStart x 13,982,962 ops/sec ±3.47% (76 runs sampled) * PointOnFirstSegment x 15,369,530 ops/sec ±4.47% (81 runs sampled) * PointOnLastSegment x 12,944,744 ops/sec ±1.29% (90 runs sampled) * PointOnLineEnd x 13,012,269 ops/sec ±1.52% (89 runs sampled) * PointOnLineMidpoint x 17,516,146 ops/sec ±0.57% (93 runs sampled) * PointOnLineMidVertice x 17,351,167 ops/sec ±1.69% (92 runs sampled) * PointOnLineStart x 14,669,195 ops/sec ±6.96% (78 runs sampled) */ const suite = new Benchmark.Suite("turf-booleanPointOnLine"); glob .sync(path.join(__dirname, "test", "true", "*.geojson")) .forEach((filepath) => { const { name } = path.parse(filepath); const geojson = loadJsonFileSync(filepath); const [feature1, feature2] = geojson.features; console.time(name); booleanPointOnLine(feature1, feature2); console.timeEnd(name); suite.add(name, () => booleanPointOnLine(feature1, feature2)); }); suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-boolean-point-on-line/index.ts ================================================ import { Feature, LineString } from "geojson"; import { Coord } from "@turf/helpers"; import { getCoord, getCoords } from "@turf/invariant"; /** * Returns true if a point is on a line. Accepts a optional parameter to ignore the * start and end vertices of the linestring. * * @function * @param {Coord} pt GeoJSON Point * @param {Feature} line GeoJSON LineString * @param {Object} [options={}] Optional parameters * @param {boolean} [options.ignoreEndVertices=false] whether to ignore the start and end vertices. * @param {number} [options.epsilon] Fractional number to compare with the cross product result. Useful for dealing with floating points such as lng/lat points * @returns {boolean} true/false * @example * var pt = turf.point([0, 0]); * var line = turf.lineString([[-1, -1],[1, 1],[1.5, 2.2]]); * var isPointOnLine = turf.booleanPointOnLine(pt, line); * //=true */ function booleanPointOnLine( pt: Coord, line: Feature | LineString, options: { ignoreEndVertices?: boolean; epsilon?: number; } = {} ): boolean { // Normalize inputs const ptCoords = getCoord(pt); const lineCoords = getCoords(line); // Main for (let i = 0; i < lineCoords.length - 1; i++) { let ignoreBoundary: boolean | string = false; if (options.ignoreEndVertices) { if (i === 0) { ignoreBoundary = "start"; } if (i === lineCoords.length - 2) { ignoreBoundary = "end"; } if (i === 0 && i + 1 === lineCoords.length - 1) { ignoreBoundary = "both"; } } if ( isPointOnLineSegment( lineCoords[i], lineCoords[i + 1], ptCoords, ignoreBoundary, typeof options.epsilon === "undefined" ? null : options.epsilon ) ) { return true; } } return false; } // See http://stackoverflow.com/a/4833823/1979085 // See https://stackoverflow.com/a/328122/1048847 /** * @private * @param {Position} lineSegmentStart coord pair of start of line * @param {Position} lineSegmentEnd coord pair of end of line * @param {Position} pt coord pair of point to check * @param {boolean|string} excludeBoundary whether the point is allowed to fall on the line ends. * @param {number} epsilon Fractional number to compare with the cross product result. Useful for dealing with floating points such as lng/lat points * If true which end to ignore. * @returns {boolean} true/false */ function isPointOnLineSegment( lineSegmentStart: number[], lineSegmentEnd: number[], pt: number[], excludeBoundary: string | boolean, epsilon: number | null ): boolean { const x = pt[0]; const y = pt[1]; const x1 = lineSegmentStart[0]; const y1 = lineSegmentStart[1]; const x2 = lineSegmentEnd[0]; const y2 = lineSegmentEnd[1]; const dxc = pt[0] - x1; const dyc = pt[1] - y1; const dxl = x2 - x1; const dyl = y2 - y1; const cross = dxc * dyl - dyc * dxl; if (epsilon !== null) { if (Math.abs(cross) > epsilon) { return false; } } else if (cross !== 0) { return false; } // Special cases for zero length lines // https://github.com/Turfjs/turf/issues/2750 if (Math.abs(dxl) === Math.abs(dyl) && Math.abs(dxl) === 0) { // Zero length line. if (excludeBoundary) { // To be on a zero length line pt has to be on the start (and end), BUT we // are excluding start and end from possible matches. return false; } if (pt[0] === lineSegmentStart[0] && pt[1] === lineSegmentStart[1]) { // If point is same as start (and end) it's on the line segment return true; } else { // Otherwise point is somewhere else return false; } } if (!excludeBoundary) { if (Math.abs(dxl) >= Math.abs(dyl)) { return dxl > 0 ? x1 <= x && x <= x2 : x2 <= x && x <= x1; } return dyl > 0 ? y1 <= y && y <= y2 : y2 <= y && y <= y1; } else if (excludeBoundary === "start") { if (Math.abs(dxl) >= Math.abs(dyl)) { return dxl > 0 ? x1 < x && x <= x2 : x2 <= x && x < x1; } return dyl > 0 ? y1 < y && y <= y2 : y2 <= y && y < y1; } else if (excludeBoundary === "end") { if (Math.abs(dxl) >= Math.abs(dyl)) { return dxl > 0 ? x1 <= x && x < x2 : x2 < x && x <= x1; } return dyl > 0 ? y1 <= y && y < y2 : y2 < y && y <= y1; } else if (excludeBoundary === "both") { if (Math.abs(dxl) >= Math.abs(dyl)) { return dxl > 0 ? x1 < x && x < x2 : x2 < x && x < x1; } return dyl > 0 ? y1 < y && y < y2 : y2 < y && y < y1; } return false; } export { booleanPointOnLine }; export default booleanPointOnLine; ================================================ FILE: packages/turf-boolean-point-on-line/package.json ================================================ { "name": "@turf/boolean-point-on-line", "version": "7.3.4", "description": "Checks if a point lies directly on a line, like a path or road.", "author": "Turf Authors", "contributors": [ "Rowan Winsemius <@rowanwins>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "booleanPointOnLine" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-boolean-point-on-line/test/false/LineWithOnly1SegmentIgnoreBoundary.geojson ================================================ { "type": "FeatureCollection", "properties": { "ignoreEndVertices": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [3, 3] ] } } ] } ================================================ FILE: packages/turf-boolean-point-on-line/test/false/LineWithOnly1SegmentIgnoreBoundaryEnd.geojson ================================================ { "type": "FeatureCollection", "properties": { "ignoreEndVertices": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [3, 3] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [3, 3] ] } } ] } ================================================ FILE: packages/turf-boolean-point-on-line/test/false/PointIsOnLineButFailsWithSmallEpsilonValue.geojson ================================================ { "type": "FeatureCollection", "properties": { "epsilon": 10e-18 }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.25737143565107, 39.99673377198139] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-75.2580499870244, 40.00180204907801], [-75.25676601413157, 39.992211720827044] ] } } ] } ================================================ FILE: packages/turf-boolean-point-on-line/test/false/PointIsOnLineButFailsWithoutEpsilonForBackwardsCompatibility.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.25737143565107, 39.99673377198139] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-75.2580499870244, 40.00180204907801], [-75.25676601413157, 39.992211720827044] ] } } ] } ================================================ FILE: packages/turf-boolean-point-on-line/test/false/PointOnEndFailsWhenIgnoreEndpoints.geojson ================================================ { "type": "FeatureCollection", "properties": { "ignoreEndVertices": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [38.3203125, 5.965753671065536] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [3, 3], [38.3203125, 5.965753671065536] ] } } ] } ================================================ FILE: packages/turf-boolean-point-on-line/test/false/PointOnStartFailsWhenIgnoreEndpoints.geojson ================================================ { "type": "FeatureCollection", "properties": { "ignoreEndVertices": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [3, 3], [38.3203125, 5.965753671065536] ] } } ] } ================================================ FILE: packages/turf-boolean-point-on-line/test/false/notOnLine.geojson ================================================ { "type": "FeatureCollection", "properties": { "ignoreEndVertices": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [20, 20] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [3, 3], [38.3203125, 5.965753671065536] ] } } ] } ================================================ FILE: packages/turf-boolean-point-on-line/test/true/LineWithOnly1Segment.geojson ================================================ { "type": "FeatureCollection", "properties": { "ignoreEndVertices": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [3, 3] ] } } ] } ================================================ FILE: packages/turf-boolean-point-on-line/test/true/LineWithOnly1SegmentOnStart.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [3, 3] ] } } ] } ================================================ FILE: packages/turf-boolean-point-on-line/test/true/PointOnFirstSegment.geojson ================================================ { "type": "FeatureCollection", "properties": { "ignoreEndVertices": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [3, 3], [4, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-point-on-line/test/true/PointOnLastSegment.geojson ================================================ { "type": "FeatureCollection", "properties": { "ignoreEndVertices": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [3.5, 3.5] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [3, 3], [4, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-point-on-line/test/true/PointOnLineEnd.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [38.3203125, 5.965753671065536] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [3, 3], [38.3203125, 5.965753671065536] ] } } ] } ================================================ FILE: packages/turf-boolean-point-on-line/test/true/PointOnLineMidVertice.geojson ================================================ { "type": "FeatureCollection", "properties": { "ignoreEndVertices": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [3, 3] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [3, 3], [38.3203125, 5.965753671065536] ] } } ] } ================================================ FILE: packages/turf-boolean-point-on-line/test/true/PointOnLineMidpoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2, 2] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [3, 3], [38.3203125, 5.965753671065536] ] } } ] } ================================================ FILE: packages/turf-boolean-point-on-line/test/true/PointOnLineStart.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [3, 3], [38.3203125, 5.965753671065536] ] } } ] } ================================================ FILE: packages/turf-boolean-point-on-line/test/true/PointOnLineWithEpsilon.geojson ================================================ { "type": "FeatureCollection", "properties": { "epsilon": 10e-17 }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.25737143565107, 39.99673377198139] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-75.2580499870244, 40.00180204907801], [-75.25676601413157, 39.992211720827044] ] } } ] } ================================================ FILE: packages/turf-boolean-point-on-line/test.ts ================================================ import { glob } from "glob"; import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { loadJsonFileSync } from "load-json-file"; import { point, lineString } from "@turf/helpers"; import booleanPointOnLine, { booleanPointOnLine as pointOnLine, } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); test("turf-boolean-point-on-line", (t) => { // True Fixtures glob .sync(path.join(__dirname, "test", "true", "**", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; const geojson = loadJsonFileSync(filepath); const options = geojson.properties; const feature1 = geojson.features[0]; const feature2 = geojson.features[1]; const result = pointOnLine(feature1, feature2, options); t.true(result, "[true] " + name); }); // False Fixtures glob .sync(path.join(__dirname, "test", "false", "**", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; const geojson = loadJsonFileSync(filepath); const options = geojson.properties; const feature1 = geojson.features[0]; const feature2 = geojson.features[1]; const result = pointOnLine(feature1, feature2, options); t.false(result, "[false] " + name); }); t.end(); }); test("turf-boolean-point-on-line - issue 2750", (t) => { // Issue 2750 was that in the first test below where point is on a different // longitude to a zero length line booleanPointOnLine gave the correct result, // while the second test where a point on the SAME longitude, but nowhere // near, that zero length line incorrectly returned true. t.false( booleanPointOnLine( point([2, 13]), lineString([ [1, 1], [1, 1], ]) ), "#2750 different longitude point not on zero length line" ); t.false( booleanPointOnLine( point([1, 13]), lineString([ [1, 1], [1, 1], ]) ), "#2750 same longitude point not on zero length line" ); t.end(); }); ================================================ FILE: packages/turf-boolean-point-on-line/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-boolean-touches/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-boolean-touches/README.md ================================================ # @turf/boolean-touches ## booleanTouches Boolean-touches true if none of the points common to both geometries intersect the interiors of both geometries. ### Parameters * `feature1` **([Geometry][1] | [Feature][2]\)** GeoJSON Feature or Geometry * `feature2` **([Geometry][1] | [Feature][2]\)** GeoJSON Feature or Geometry ### Examples ```javascript var line = turf.lineString([[1, 1], [1, 2], [1, 3], [1, 4]]); var point = turf.point([1, 1]); turf.booleanTouches(point, line); //=true ``` Returns **[boolean][3]** true/false [1]: https://tools.ietf.org/html/rfc7946#section-3.1 [2]: https://tools.ietf.org/html/rfc7946#section-3.2 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/boolean-touches ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-boolean-touches/bench.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import { glob } from "glob"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { booleanTouches as touches } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); /** * Benchmark Results * * LineTouchesEndpoint x 4,804,946 ops/sec ±0.45% (94 runs sampled) * LineStringTouchesEnd x 2,238,597 ops/sec ±0.50% (94 runs sampled) * LineStringTouchesStart x 2,375,877 ops/sec ±0.61% (95 runs sampled) * MultipointTouchesLine x 3,579,763 ops/sec ±0.55% (93 runs sampled) * LineTouchesMultiPoly x 821,968 ops/sec ±5.18% (93 runs sampled) * LineTouchesSecondMultiPoly x 713,137 ops/sec ±4.34% (86 runs sampled) * LineTouchesPolygon x 879,394 ops/sec ±4.20% (71 runs sampled) * MultiLineTouchesLine x 2,202,950 ops/sec ±1.65% (89 runs sampled) * MultiLineTouchesMultiLine x 855,681 ops/sec ±2.34% (88 runs sampled) * MultiLineTouchesMultiPoint x 2,404,596 ops/sec ±1.00% (93 runs sampled) * MultiLineTouchesPoint x 12,237,728 ops/sec ±2.96% (88 runs sampled) * MultiLineTouchesPolygon x 734,406 ops/sec ±1.63% (93 runs sampled) * MultipointTouchesLine x 3,569,551 ops/sec ±1.27% (94 runs sampled) * MpTouchesEndMultiLine x 2,726,064 ops/sec ±1.37% (93 runs sampled) * MpTouchesSecondMultiLine x 2,687,858 ops/sec ±1.01% (95 runs sampled) * multipoint-touches-multipolygon x 940,368 ops/sec ±1.63% (91 runs sampled) * MultiPointIsWithinPolygon x 1,732,081 ops/sec ±1.52% (90 runs sampled) * MultiLineTouchesMultiPoly x 173,824 ops/sec ±3.04% (85 runs sampled) * MultiPolyTouchesMultiPoint x 642,711 ops/sec ±1.86% (89 runs sampled) * MultiPolyTouchesMultiPoly x 1,047,930 ops/sec ±3.68% (82 runs sampled) * MpTouchesPoint x 8,655,507 ops/sec ±0.88% (93 runs sampled) * MultiPolyTouchesPoly x 557,069 ops/sec ±0.57% (94 runs sampled) */ const suite = new Benchmark.Suite("turf-boolean-touches"); glob .sync(path.join(__dirname, "test/true", "**", "*.geojson")) .forEach((filepath) => { const { name } = path.parse(filepath); const geojson = loadJsonFileSync(filepath); const [feature1, feature2] = geojson.features; console.time(name); touches(feature1, feature2); console.timeEnd(name); suite.add(name, () => touches(feature1, feature2)); }); suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-boolean-touches/index.ts ================================================ import { Feature, Geometry, LineString, Point } from "geojson"; import { booleanPointOnLine } from "@turf/boolean-point-on-line"; import { booleanPointInPolygon } from "@turf/boolean-point-in-polygon"; import { getGeom } from "@turf/invariant"; /** * Boolean-touches true if none of the points common to both geometries * intersect the interiors of both geometries. * * @function * @param {Geometry|Feature} feature1 GeoJSON Feature or Geometry * @param {Geometry|Feature} feature2 GeoJSON Feature or Geometry * @returns {boolean} true/false * @example * var line = turf.lineString([[1, 1], [1, 2], [1, 3], [1, 4]]); * var point = turf.point([1, 1]); * * turf.booleanTouches(point, line); * //=true */ function booleanTouches( feature1: Feature | Geometry, feature2: Feature | Geometry ): boolean { var geom1 = getGeom(feature1); var geom2 = getGeom(feature2); var type1 = geom1.type; var type2 = geom2.type; switch (type1) { case "Point": switch (type2) { case "LineString": return isPointOnLineEnd(geom1, geom2); case "MultiLineString": var foundTouchingPoint = false; for (var ii = 0; ii < geom2.coordinates.length; ii++) { if ( isPointOnLineEnd(geom1, { type: "LineString", coordinates: geom2.coordinates[ii], }) ) foundTouchingPoint = true; } return foundTouchingPoint; case "Polygon": for (var i = 0; i < geom2.coordinates.length; i++) { if ( booleanPointOnLine(geom1, { type: "LineString", coordinates: geom2.coordinates[i], }) ) return true; } return false; case "MultiPolygon": for (var i = 0; i < geom2.coordinates.length; i++) { for (var ii = 0; ii < geom2.coordinates[i].length; ii++) { if ( booleanPointOnLine(geom1, { type: "LineString", coordinates: geom2.coordinates[i][ii], }) ) return true; } } return false; default: throw new Error("feature2 " + type2 + " geometry not supported"); } case "MultiPoint": switch (type2) { case "LineString": var foundTouchingPoint = false; for (var i = 0; i < geom1.coordinates.length; i++) { if (!foundTouchingPoint) { if ( isPointOnLineEnd( { type: "Point", coordinates: geom1.coordinates[i] }, geom2 ) ) foundTouchingPoint = true; } if ( booleanPointOnLine( { type: "Point", coordinates: geom1.coordinates[i] }, geom2, { ignoreEndVertices: true } ) ) return false; } return foundTouchingPoint; case "MultiLineString": var foundTouchingPoint = false; for (var i = 0; i < geom1.coordinates.length; i++) { for (var ii = 0; ii < geom2.coordinates.length; ii++) { if (!foundTouchingPoint) { if ( isPointOnLineEnd( { type: "Point", coordinates: geom1.coordinates[i] }, { type: "LineString", coordinates: geom2.coordinates[ii] } ) ) foundTouchingPoint = true; } if ( booleanPointOnLine( { type: "Point", coordinates: geom1.coordinates[i] }, { type: "LineString", coordinates: geom2.coordinates[ii] }, { ignoreEndVertices: true } ) ) return false; } } return foundTouchingPoint; case "Polygon": var foundTouchingPoint = false; for (var i = 0; i < geom1.coordinates.length; i++) { if (!foundTouchingPoint) { if ( booleanPointOnLine( { type: "Point", coordinates: geom1.coordinates[i] }, { type: "LineString", coordinates: geom2.coordinates[0] } ) ) foundTouchingPoint = true; } if ( booleanPointInPolygon( { type: "Point", coordinates: geom1.coordinates[i] }, geom2, { ignoreBoundary: true } ) ) return false; } return foundTouchingPoint; case "MultiPolygon": var foundTouchingPoint = false; for (var i = 0; i < geom1.coordinates.length; i++) { for (var ii = 0; ii < geom2.coordinates.length; ii++) { if (!foundTouchingPoint) { if ( booleanPointOnLine( { type: "Point", coordinates: geom1.coordinates[i] }, { type: "LineString", coordinates: geom2.coordinates[ii][0], } ) ) foundTouchingPoint = true; } if ( booleanPointInPolygon( { type: "Point", coordinates: geom1.coordinates[i] }, { type: "Polygon", coordinates: geom2.coordinates[ii] }, { ignoreBoundary: true } ) ) return false; } } return foundTouchingPoint; default: throw new Error("feature2 " + type2 + " geometry not supported"); } case "LineString": switch (type2) { case "Point": return isPointOnLineEnd(geom2, geom1); case "MultiPoint": var foundTouchingPoint = false; for (var i = 0; i < geom2.coordinates.length; i++) { if (!foundTouchingPoint) { if ( isPointOnLineEnd( { type: "Point", coordinates: geom2.coordinates[i] }, geom1 ) ) foundTouchingPoint = true; } if ( booleanPointOnLine( { type: "Point", coordinates: geom2.coordinates[i] }, geom1, { ignoreEndVertices: true } ) ) return false; } return foundTouchingPoint; case "LineString": var endMatch = false; if ( isPointOnLineEnd( { type: "Point", coordinates: geom1.coordinates[0] }, geom2 ) ) endMatch = true; if ( isPointOnLineEnd( { type: "Point", coordinates: geom1.coordinates[geom1.coordinates.length - 1], }, geom2 ) ) endMatch = true; if (endMatch === false) return false; for (var i = 0; i < geom1.coordinates.length; i++) { if ( booleanPointOnLine( { type: "Point", coordinates: geom1.coordinates[i] }, geom2, { ignoreEndVertices: true } ) ) return false; } return endMatch; case "MultiLineString": var endMatch = false; for (var i = 0; i < geom2.coordinates.length; i++) { if ( isPointOnLineEnd( { type: "Point", coordinates: geom1.coordinates[0] }, { type: "LineString", coordinates: geom2.coordinates[i] } ) ) endMatch = true; if ( isPointOnLineEnd( { type: "Point", coordinates: geom1.coordinates[geom1.coordinates.length - 1], }, { type: "LineString", coordinates: geom2.coordinates[i] } ) ) endMatch = true; for (var ii = 0; ii < geom1.coordinates[i].length; ii++) { if ( booleanPointOnLine( { type: "Point", coordinates: geom1.coordinates[ii] }, { type: "LineString", coordinates: geom2.coordinates[i] }, { ignoreEndVertices: true } ) ) return false; } } return endMatch; case "Polygon": var foundTouchingPoint = false; for (var i = 0; i < geom1.coordinates.length; i++) { if (!foundTouchingPoint) { if ( booleanPointOnLine( { type: "Point", coordinates: geom1.coordinates[i] }, { type: "LineString", coordinates: geom2.coordinates[0] } ) ) foundTouchingPoint = true; } if ( booleanPointInPolygon( { type: "Point", coordinates: geom1.coordinates[i] }, geom2, { ignoreBoundary: true } ) ) return false; } return foundTouchingPoint; case "MultiPolygon": var foundTouchingPoint = false; for (var i = 0; i < geom1.coordinates.length; i++) { for (var ii = 0; ii < geom2.coordinates.length; ii++) { if (!foundTouchingPoint) { if ( booleanPointOnLine( { type: "Point", coordinates: geom1.coordinates[i] }, { type: "LineString", coordinates: geom2.coordinates[ii][0], } ) ) foundTouchingPoint = true; } } if ( booleanPointInPolygon( { type: "Point", coordinates: geom1.coordinates[i] }, geom2, { ignoreBoundary: true } ) ) return false; } return foundTouchingPoint; default: throw new Error("feature2 " + type2 + " geometry not supported"); } case "MultiLineString": switch (type2) { case "Point": for (var i = 0; i < geom1.coordinates.length; i++) { if ( isPointOnLineEnd(geom2, { type: "LineString", coordinates: geom1.coordinates[i], }) ) return true; } return false; case "MultiPoint": var foundTouchingPoint = false; for (var i = 0; i < geom1.coordinates.length; i++) { for (var ii = 0; ii < geom2.coordinates.length; ii++) { if (!foundTouchingPoint) { if ( isPointOnLineEnd( { type: "Point", coordinates: geom2.coordinates[ii] }, { type: "LineString", coordinates: geom1.coordinates[ii] } ) ) foundTouchingPoint = true; } if ( booleanPointOnLine( { type: "Point", coordinates: geom2.coordinates[ii] }, { type: "LineString", coordinates: geom1.coordinates[ii] }, { ignoreEndVertices: true } ) ) return false; } } return foundTouchingPoint; case "LineString": var endMatch = false; for (var i = 0; i < geom1.coordinates.length; i++) { if ( isPointOnLineEnd( { type: "Point", coordinates: geom1.coordinates[i][0] }, geom2 ) ) endMatch = true; if ( isPointOnLineEnd( { type: "Point", coordinates: geom1.coordinates[i][geom1.coordinates[i].length - 1], }, geom2 ) ) endMatch = true; for (var ii = 0; ii < geom2.coordinates.length; ii++) { if ( booleanPointOnLine( { type: "Point", coordinates: geom2.coordinates[ii] }, { type: "LineString", coordinates: geom1.coordinates[i] }, { ignoreEndVertices: true } ) ) return false; } } return endMatch; case "MultiLineString": var endMatch = false; for (var i = 0; i < geom1.coordinates.length; i++) { for (var ii = 0; ii < geom2.coordinates.length; ii++) { if ( isPointOnLineEnd( { type: "Point", coordinates: geom1.coordinates[i][0] }, { type: "LineString", coordinates: geom2.coordinates[ii] } ) ) endMatch = true; if ( isPointOnLineEnd( { type: "Point", coordinates: geom1.coordinates[i][geom1.coordinates[i].length - 1], }, { type: "LineString", coordinates: geom2.coordinates[ii] } ) ) endMatch = true; for (var iii = 0; iii < geom1.coordinates[i].length; iii++) { if ( booleanPointOnLine( { type: "Point", coordinates: geom1.coordinates[i][iii] }, { type: "LineString", coordinates: geom2.coordinates[ii] }, { ignoreEndVertices: true } ) ) return false; } } } return endMatch; case "Polygon": var foundTouchingPoint = false; for (var i = 0; i < geom1.coordinates.length; i++) { for (var ii = 0; ii < geom1.coordinates.length; ii++) { if (!foundTouchingPoint) { if ( booleanPointOnLine( { type: "Point", coordinates: geom1.coordinates[i][ii] }, { type: "LineString", coordinates: geom2.coordinates[0] } ) ) foundTouchingPoint = true; } if ( booleanPointInPolygon( { type: "Point", coordinates: geom1.coordinates[i][ii] }, geom2, { ignoreBoundary: true } ) ) return false; } } return foundTouchingPoint; case "MultiPolygon": var foundTouchingPoint = false; for (var i = 0; i < geom2.coordinates[0].length; i++) { for (var ii = 0; ii < geom1.coordinates.length; ii++) { for (var iii = 0; iii < geom1.coordinates[ii].length; iii++) { if (!foundTouchingPoint) { if ( booleanPointOnLine( { type: "Point", coordinates: geom1.coordinates[ii][iii], }, { type: "LineString", coordinates: geom2.coordinates[0][i], } ) ) foundTouchingPoint = true; } if ( booleanPointInPolygon( { type: "Point", coordinates: geom1.coordinates[ii][iii] }, { type: "Polygon", coordinates: [geom2.coordinates[0][i]] }, { ignoreBoundary: true } ) ) return false; } } } return foundTouchingPoint; default: throw new Error("feature2 " + type2 + " geometry not supported"); } case "Polygon": switch (type2) { case "Point": for (var i = 0; i < geom1.coordinates.length; i++) { if ( booleanPointOnLine(geom2, { type: "LineString", coordinates: geom1.coordinates[i], }) ) return true; } return false; case "MultiPoint": var foundTouchingPoint = false; for (var i = 0; i < geom2.coordinates.length; i++) { if (!foundTouchingPoint) { if ( booleanPointOnLine( { type: "Point", coordinates: geom2.coordinates[i] }, { type: "LineString", coordinates: geom1.coordinates[0] } ) ) foundTouchingPoint = true; } if ( booleanPointInPolygon( { type: "Point", coordinates: geom2.coordinates[i] }, geom1, { ignoreBoundary: true } ) ) return false; } return foundTouchingPoint; case "LineString": var foundTouchingPoint = false; for (var i = 0; i < geom2.coordinates.length; i++) { if (!foundTouchingPoint) { if ( booleanPointOnLine( { type: "Point", coordinates: geom2.coordinates[i] }, { type: "LineString", coordinates: geom1.coordinates[0] } ) ) foundTouchingPoint = true; } if ( booleanPointInPolygon( { type: "Point", coordinates: geom2.coordinates[i] }, geom1, { ignoreBoundary: true } ) ) return false; } return foundTouchingPoint; case "MultiLineString": var foundTouchingPoint = false; for (var i = 0; i < geom2.coordinates.length; i++) { for (var ii = 0; ii < geom2.coordinates[i].length; ii++) { if (!foundTouchingPoint) { if ( booleanPointOnLine( { type: "Point", coordinates: geom2.coordinates[i][ii] }, { type: "LineString", coordinates: geom1.coordinates[0] } ) ) foundTouchingPoint = true; } if ( booleanPointInPolygon( { type: "Point", coordinates: geom2.coordinates[i][ii] }, geom1, { ignoreBoundary: true } ) ) return false; } } return foundTouchingPoint; case "Polygon": var foundTouchingPoint = false; for (var i = 0; i < geom1.coordinates[0].length; i++) { if (!foundTouchingPoint) { if ( booleanPointOnLine( { type: "Point", coordinates: geom1.coordinates[0][i] }, { type: "LineString", coordinates: geom2.coordinates[0] } ) ) foundTouchingPoint = true; } if ( booleanPointInPolygon( { type: "Point", coordinates: geom1.coordinates[0][i] }, geom2, { ignoreBoundary: true } ) ) return false; } return foundTouchingPoint; case "MultiPolygon": var foundTouchingPoint = false; for (var i = 0; i < geom2.coordinates[0].length; i++) { for (var ii = 0; ii < geom1.coordinates[0].length; ii++) { if (!foundTouchingPoint) { if ( booleanPointOnLine( { type: "Point", coordinates: geom1.coordinates[0][ii] }, { type: "LineString", coordinates: geom2.coordinates[0][i] } ) ) foundTouchingPoint = true; } if ( booleanPointInPolygon( { type: "Point", coordinates: geom1.coordinates[0][ii] }, { type: "Polygon", coordinates: geom2.coordinates[0][i] }, { ignoreBoundary: true } ) ) return false; } } return foundTouchingPoint; default: throw new Error("feature2 " + type2 + " geometry not supported"); } case "MultiPolygon": switch (type2) { case "Point": for (var i = 0; i < geom1.coordinates[0].length; i++) { if ( booleanPointOnLine(geom2, { type: "LineString", coordinates: geom1.coordinates[0][i], }) ) return true; } return false; case "MultiPoint": var foundTouchingPoint = false; for (var i = 0; i < geom1.coordinates[0].length; i++) { for (var ii = 0; ii < geom2.coordinates.length; ii++) { if (!foundTouchingPoint) { if ( booleanPointOnLine( { type: "Point", coordinates: geom2.coordinates[ii] }, { type: "LineString", coordinates: geom1.coordinates[0][i] } ) ) foundTouchingPoint = true; } if ( booleanPointInPolygon( { type: "Point", coordinates: geom2.coordinates[ii] }, { type: "Polygon", coordinates: geom1.coordinates[0][i] }, { ignoreBoundary: true } ) ) return false; } } return foundTouchingPoint; case "LineString": var foundTouchingPoint = false; for (var i = 0; i < geom1.coordinates[0].length; i++) { for (var ii = 0; ii < geom2.coordinates.length; ii++) { if (!foundTouchingPoint) { if ( booleanPointOnLine( { type: "Point", coordinates: geom2.coordinates[ii] }, { type: "LineString", coordinates: geom1.coordinates[0][i] } ) ) foundTouchingPoint = true; } if ( booleanPointInPolygon( { type: "Point", coordinates: geom2.coordinates[ii] }, { type: "Polygon", coordinates: geom1.coordinates[0][i] }, { ignoreBoundary: true } ) ) return false; } } return foundTouchingPoint; case "MultiLineString": var foundTouchingPoint = false; for (var i = 0; i < geom1.coordinates.length; i++) { for (var ii = 0; ii < geom2.coordinates.length; ii++) { for (var iii = 0; iii < geom2.coordinates[ii].length; iii++) { if (!foundTouchingPoint) { if ( booleanPointOnLine( { type: "Point", coordinates: geom2.coordinates[ii][iii], }, { type: "LineString", coordinates: geom1.coordinates[i][0], } ) ) foundTouchingPoint = true; } if ( booleanPointInPolygon( { type: "Point", coordinates: geom2.coordinates[ii][iii] }, { type: "Polygon", coordinates: [geom1.coordinates[i][0]] }, { ignoreBoundary: true } ) ) return false; } } } return foundTouchingPoint; case "Polygon": var foundTouchingPoint = false; for (var i = 0; i < geom1.coordinates[0].length; i++) { for (var ii = 0; ii < geom1.coordinates[0][i].length; ii++) { if (!foundTouchingPoint) { if ( booleanPointOnLine( { type: "Point", coordinates: geom1.coordinates[0][i][ii] }, { type: "LineString", coordinates: geom2.coordinates[0] } ) ) foundTouchingPoint = true; } if ( booleanPointInPolygon( { type: "Point", coordinates: geom1.coordinates[0][i][ii] }, geom2, { ignoreBoundary: true } ) ) return false; } } return foundTouchingPoint; case "MultiPolygon": var foundTouchingPoint = false; for (var i = 0; i < geom1.coordinates[0].length; i++) { for (var ii = 0; ii < geom2.coordinates[0].length; ii++) { for (var iii = 0; iii < geom1.coordinates[0].length; iii++) { if (!foundTouchingPoint) { if ( booleanPointOnLine( { type: "Point", coordinates: geom1.coordinates[0][i][iii], }, { type: "LineString", coordinates: geom2.coordinates[0][ii], } ) ) foundTouchingPoint = true; } if ( booleanPointInPolygon( { type: "Point", coordinates: geom1.coordinates[0][i][iii], }, { type: "Polygon", coordinates: geom2.coordinates[0][ii] }, { ignoreBoundary: true } ) ) return false; } } } return foundTouchingPoint; default: throw new Error("feature2 " + type2 + " geometry not supported"); } default: throw new Error("feature1 " + type1 + " geometry not supported"); } } function isPointOnLineEnd(point: Point, line: LineString) { if (compareCoords(line.coordinates[0], point.coordinates)) return true; if ( compareCoords( line.coordinates[line.coordinates.length - 1], point.coordinates ) ) return true; return false; } /** * compareCoords * * @private * @param {Position} pair1 point [x,y] * @param {Position} pair2 point [x,y] * @returns {boolean} true/false if coord pairs match */ function compareCoords(pair1: number[], pair2: number[]) { return pair1[0] === pair2[0] && pair1[1] === pair2[1]; } export { booleanTouches }; export default booleanTouches; ================================================ FILE: packages/turf-boolean-touches/package.json ================================================ { "name": "@turf/boolean-touches", "version": "7.3.4", "description": "Determine whether none of the points common to both geometries intersect the interiors of both geometries.", "author": "Turf Authors", "contributors": [ "Rowan Winsemius <@rowanwins>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "gis", "boolean", "de-9im", "touches", "boolean-touches" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "boolean-jsts": "*", "boolean-shapely": "*", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/boolean-point-in-polygon": "workspace:*", "@turf/boolean-point-on-line": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-boolean-touches/test/false/LineString/LineString/LinesExactSame.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/LineString/LineString/LivesOverlap.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 2], [1, 3], [1, 15.5] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/LineString/MultiLineString/LineStringOverlapsMultiLinestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [2, 2], [2, 3] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/LineString/MultiLineString/LineStringSameAsMultiLinestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/LineString/MultiPoint/LineStringDoesNotTouchMP.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [3, 1], [3, 3] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/LineString/MultiPoint/LineStringTouchesMultiPointButInternal.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [1, 3] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/LineString/MultiPolygon/LineDoesNotTouchMultiPoly.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-1, 1], [-1, 0.5] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ], [ [ [-1, -1], [-1, -10], [-10, -10], [-10, -1], [-1, -1] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/LineString/Polygon/LineCrossesPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [2, 0], [11, 11] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/LineString/Polygon/LineDoesNotTouch.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-1, -2], [-1, -3] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/LineString/Polygon/LineWIthinPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 2], [1, 3], [3, 3] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/MultiLineString/LineString/MultiLineStringOverlapsLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [2, 2], [2, 3] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/MultiLineString/LineString/MultiLineStringSameAsLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/MultiLineString/MultiLineString/MultiLineStringsOverlap.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [2, 2], [2, 3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/MultiLineString/MultiLineString/MultiLineStringsSame.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/MultiLineString/MultiPoint/MpTouchesInternalMultiline.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 2], [10, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/MultiLineString/MultiPoint/MultiPointNotTouchMultiline.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [12, 4], [10, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/MultiLineString/MultiPolygon/MultiLineInsideMultipoly.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ], [ [ [-1, -1], [-1, -10], [-10, -10], [-10, -1], [-1, -1] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/MultiLineString/Point/PointNotTouchMultiLinestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 3] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/MultiLineString/Point/PointTouchesMidLineString.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [10, 4] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/MultiLineString/Polygon/MultiLineInsidePoly.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/MultiLineString/Polygon/MultiLineNotTouchPoly.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [10, 10], [10, 100], [100, 100], [100, 10], [10, 10] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/MultiPoint/LineString/MultiPointTouchesInsideLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [1, 3] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/MultiPoint/LineString/MultipointDoesNotTouchLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [3, 1], [3, 3] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/MultiPoint/MultiLineString/MpDoesNotTouchMultiLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [12, 4], [10, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/MultiPoint/MultiLineString/MpTouchesInternalMultiLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 2], [10, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/MultiPoint/MultiPolygon/MultiPointDoesNotTouchMultipolygon ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [[10, 14], [-14, -14]] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [[[1, 1], [1, 10], [10, 10], [10, 1], [1, 1]]], [[[-1, -1], [-1, -10], [-10, -10], [-10, -1], [-1, -1]]] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/MultiPoint/MultiPolygon/multipoint-inside-multipolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [4, 4], [-14, -14] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ], [ [ [-1, -1], [-1, -10], [-10, -10], [-10, -1], [-1, -1] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/MultiPoint/Polygon/MultiPointInsidePolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [2, 2], [12, 12], [15, 15] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/MultiPoint/Polygon/MultiPointNoTouchPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [0, 0], [0, 10] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/MultiPolygon/LineString/MultiPolyNotTouchLineString.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ], [ [ [-1, -1], [-1, -10], [-10, -10], [-10, -1], [-1, -1] ] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-1, 1], [-1, 0.5] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/MultiPolygon/MultiLineString/MultiPolyOverlapsMultiLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ], [ [ [-1, -1], [-1, -10], [-10, -10], [-10, -1], [-1, -1] ] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/MultiPolygon/MultiPoint/MultiPolyNotTouchMultiPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ], [ [ [-1, -1], [-1, -10], [-10, -10], [-10, -1], [-1, -1] ] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [10, 14], [-14, -14] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/MultiPolygon/MultiPolygon/MultiPolysDoNotTouch.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [10, 10], [10, 11], [11, 11], [11, 10], [10, 10] ] ], [ [ [30, 30], [30, 40], [40, 40], [40, 30], [30, 30] ] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [9, 9], [10, 1], [1, 1] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/MultiPolygon/MultiPolygon/MultiPolysOverlap.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [10, 10], [10, 11], [11, 11], [11, 10], [10, 10] ] ], [ [ [30, 30], [30, 40], [40, 40], [40, 30], [30, 30] ] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [10.5, 10.5], [10, 1], [1, 1] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/MultiPolygon/Point/MultiPolyNotTouchPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ], [ [ [-1, -1], [-1, -10], [-10, -10], [-10, -1], [-1, -1] ] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [14, 14] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/Point/LineString/PointIsNotTouchLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2, 2] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/Point/LineString/PointOnMidLinestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 2] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/Point/MultiLineString/MpNotTouchMidLineString.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [10, 4] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/Point/MultiLineString/MpOnMidLineString.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 3] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/Point/MultiPolygon/PointNotTouchMultipolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [14, 14] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ], [ [ [-1, -1], [-1, -10], [-10, -10], [-10, -1], [-1, -1] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/Point/Polygon/PointDoesNotTouchPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [14, 14] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/Point/Polygon/PointInsidePolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2, 2] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/Polygon/LineString/PolyDoesNotTouchLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-1, -2], [-1, -3] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/Polygon/MultiLineString/PolyNotTouchMultiLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [10, 10], [10, 100], [100, 100], [100, 10], [10, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/Polygon/MultiLineString/PolyOverlapMultiLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/Polygon/MultiPoint/PolygonNoTouchMultiPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [0, 0], [0, 10] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/Polygon/MultiPoint/PolygonOverlapsMultiPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [2, 2], [12, 12], [15, 15] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/Polygon/MultiPolygon/PolyNotTouchMultipoly.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [9, 9], [10, 1], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [10, 10], [10, 11], [11, 11], [11, 10], [10, 10] ] ], [ [ [30, 30], [30, 40], [40, 40], [40, 30], [30, 30] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/Polygon/Point/PolygonDoesNotTouchPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [14, 14] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/Polygon/Point/PolygonOverlapsPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2, 2] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/Polygon/Polygon/PolygonsDontTouch.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [10, 10], [10, 11], [11, 11], [11, 10], [10, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [9, 9], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/false/Polygon/Polygon/PolygonsOverlap.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [10, 10], [10, 11], [11, 11], [11, 10], [10, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [11, 11], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/LineString/LineString/LineTouchesEndpoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 2], [1, 3] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 3], [1, 4], [1, 5] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/LineString/MultiLineString/LineStringTouchesEnd.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [2, 5], [2, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/LineString/MultiLineString/LineStringTouchesStart.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 1], [1, 1] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/LineString/MultiPoint/MultipointTouchesLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12], [15, 15] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/LineString/MultiPolygon/LineTouchesMultiPoly.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 1], [1, 1] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ], [ [ [-1, -1], [-1, -10], [-10, -10], [-10, -1], [-1, -1] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/LineString/MultiPolygon/LineTouchesSecondMultiPoly.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-1, 1], [-1, -1] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ], [ [ [-1, -1], [-1, -10], [-10, -10], [-10, -1], [-1, -1] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/LineString/Polygon/LineTouchesPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [1, 1], [1, 5] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/MultiLineString/LineString/MultiLineTouchesLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [2, 0], [2, 1] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/MultiLineString/MultiLineString/MultiLineTouchesMultiLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [12, 10], [12, 11] ], [ [2, 0], [2, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/MultiLineString/MultiPoint/MultiLineTouchesMultiPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [10, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/MultiLineString/Point/MultiLineTouchesPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2, 4] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/MultiLineString/Polygon/MultiLineTouchesPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, -1], [2, 2], [2, 3], [2, 4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, -1], [1, -10], [10, -10], [10, -1], [1, -1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/MultiPoint/LineString/MultipointTouchesLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12], [15, 15] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/MultiPoint/MultiLineString/MpTouchesEndMultiLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 4], [10, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/MultiPoint/MultiLineString/MpTouchesSecondMultiLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [2, 4], [10, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/MultiPoint/MultiPolygon/multipoint-touches-multipolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [-1, -1] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ], [ [ [-1, -1], [-1, -10], [-10, -10], [-10, -1], [-1, -1] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/MultiPoint/Polygon/MultiPointIsWithinPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [14, 14] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/MultiPolygon/MultiLineString/MultiLineTouchesMultiPoly.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [20, -2], [20, -20], [40, -20], [40, -2], [20, -2] ] ], [ [ [1, -1], [1, -10], [10, -10], [10, -1], [1, -1] ] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, -1], [2, 2], [2, 3], [2, 4] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/MultiPolygon/MultiPoint/MultiPolyTouchesMultiPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [14, 14] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/MultiPolygon/MultiPolygon/MultiPolyTouchesMultiPoly.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [10, 10], [10, 11], [11, 11], [11, 10], [10, 10] ] ], [ [ [30, 30], [30, 40], [40, 40], [40, 30], [30, 30] ] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [10, 11], [10, 1], [1, 1] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/MultiPolygon/Point/MpTouchesPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 5] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/MultiPolygon/Polygon/MultiPolyTouchesPoly.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [10, 10], [10, 11], [11, 11], [11, 10], [10, 10] ] ], [ [ [30, 30], [30, 40], [40, 40], [40, 30], [30, 30] ] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 11], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/Point/LineString/PointOnEndLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 4] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/Point/LineString/PointOnStartLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/Point/MultiLineString/MpOnEndLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 4] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/Point/MultiLineString/MpOnStartLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, 1], [2, 2], [2, 3], [2, 4] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/Point/MultiPolygon/PointTouchesMultipolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 2] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ], [ [ [-1, -1], [-1, -10], [-10, -10], [-10, -1], [-1, -1] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/Point/MultiPolygon/PointTouchesMultipolygonHole.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2, 2] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ], [ [2, 2], [2, 4], [4, 4], [2, 2] ] ], [ [ [-1, -1], [-1, -10], [-10, -10], [-10, -1], [-1, -1] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/Point/Polygon/PointOnEdgePolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 5] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/Point/Polygon/PointOnHole.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2, 2] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ], [ [2, 2], [2, 4], [4, 4], [2, 2] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/Point/Polygon/PointOnVerticePolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/Polygon/LineString/PolygonTouchesLines.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [1, 1], [1, 5] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/Polygon/MultiLineString/PolygonTouchesMultiline.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, -1], [1, -10], [10, -10], [10, -1], [1, -1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1, 1], [1, 2], [1, 3], [1, 4] ], [ [2, -1], [2, 2], [2, 3], [2, 4] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/Polygon/MultiPoint/PolygonTouchesMultiPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [14, 14] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/Polygon/MultiPolygon/PolyTouchMultiPolys.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 11], [10, 1], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [10, 10], [10, 11], [11, 11], [11, 10], [10, 10] ] ], [ [ [30, 30], [30, 40], [40, 40], [40, 30], [30, 30] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/Polygon/Point/PolygonTouchesPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 5] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/Polygon/Point/PolygonTouchesPointVertice.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/Polygon/Polygon/PolygonTouchesEdges.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [10, 10], [10, 11], [11, 11], [11, 10], [10, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 11], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test/true/Polygon/Polygon/PolygonsTouchVertices.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [10, 10], [10, 11], [11, 11], [11, 10], [10, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-touches/test.ts ================================================ import { glob } from "glob"; import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { loadJsonFileSync } from "load-json-file"; import shapely from "boolean-shapely"; import booleanJSTS from "boolean-jsts"; import { booleanTouches as touches } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); test("turf-boolean-touches", (t) => { // True Fixtures glob .sync(path.join(__dirname, "test", "true", "**", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; if (name.includes("skip")) return t.skip(name); const geojson = loadJsonFileSync(filepath); const feature1 = geojson.features[0]; const feature2 = geojson.features[1]; const result = touches(feature1, feature2); if (process.env.JSTS) t.true( booleanJSTS("touches", feature1, feature2), "[true] JSTS - " + name ); if (process.env.SHAPELY) shapely .touches(feature1, feature2) .then((result) => t.true(result, "[true] shapely - " + name)); t.true(result, "[true] " + name); }); // False Fixtures glob .sync(path.join(__dirname, "test", "false", "**", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; if (name.includes("skip")) return t.skip(name); const geojson = loadJsonFileSync(filepath); const feature1 = geojson.features[0]; const feature2 = geojson.features[1]; const result = touches(feature1, feature2); if (process.env.JSTS) t.false( booleanJSTS("touches", feature1, feature2), "[false] JSTS - " + name ); if (process.env.SHAPELY) shapely .touches(feature1, feature2) .then((result) => t.false(result, "[false] shapely - " + name)); t.false(result, "[false] " + name); }); t.end(); }); ================================================ FILE: packages/turf-boolean-touches/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-boolean-touches/types.ts ================================================ import * as helpers from "@turf/helpers"; import { booleanTouches } from "./index.js"; const pt = helpers.point([0, 0]); const line = helpers.lineString([ [0, 0], [10, 10], ]); booleanTouches(pt, line); ================================================ FILE: packages/turf-boolean-valid/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-boolean-valid/README.md ================================================ # @turf/boolean-valid ## booleanValid booleanValid checks if the geometry is a valid according to the OGC Simple Feature Specification. ### Parameters * `feature` **([Geometry][1] | [Feature][2]\)** GeoJSON Feature or Geometry ### Examples ```javascript var line = turf.lineString([[1, 1], [1, 2], [1, 3], [1, 4]]); turf.booleanValid(line); // => true turf.booleanValid({foo: "bar"}); // => false ``` Returns **[boolean][3]** true/false [1]: https://tools.ietf.org/html/rfc7946#section-3.1 [2]: https://tools.ietf.org/html/rfc7946#section-3.2 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/boolean-valid ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-boolean-valid/bench.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import { glob } from "glob"; import Benchmark from "benchmark"; import { loadJsonFileSync } from "load-json-file"; import { bbox } from "@turf/bbox"; import { booleanValid as isValid } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); /** * Benchmark Results * */ const suite = new Benchmark.Suite("turf-boolean-is-valid"); glob .sync(path.join(__dirname, "test", "**", "*.geojson")) .forEach((filepath) => { const { name } = path.parse(filepath); const geojson = loadJsonFileSync(filepath); const [feature1] = geojson.features; feature1.bbox = bbox(feature1); console.time(name); isValid(feature1); console.timeEnd(name); suite.add(name, () => isValid(feature1)); }); suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-boolean-valid/index.ts ================================================ import { Feature, Geometry, Position } from "geojson"; import { getGeom } from "@turf/invariant"; import { polygon, lineString } from "@turf/helpers"; import { booleanDisjoint } from "@turf/boolean-disjoint"; import { booleanCrosses } from "@turf/boolean-crosses"; import { lineIntersect } from "@turf/line-intersect"; import { booleanPointOnLine as isPointOnLine } from "@turf/boolean-point-on-line"; /** * booleanValid checks if the geometry is a valid according to the OGC Simple Feature Specification. * * @function * @param {Geometry|Feature} feature GeoJSON Feature or Geometry * @returns {boolean} true/false * @example * var line = turf.lineString([[1, 1], [1, 2], [1, 3], [1, 4]]); * * turf.booleanValid(line); // => true * turf.booleanValid({foo: "bar"}); // => false */ function booleanValid(feature: Feature | Geometry) { // Automatic False if (!feature.type) return false; // Parse GeoJSON const geom = getGeom(feature); const type = geom.type; const coords = geom.coordinates; switch (type) { case "Point": return coords.length > 1; case "MultiPoint": for (var i = 0; i < coords.length; i++) { if (coords[i].length < 2) return false; } return true; case "LineString": if (coords.length < 2) return false; for (var i = 0; i < coords.length; i++) { if (coords[i].length < 2) return false; } return true; case "MultiLineString": if (coords.length < 2) return false; for (var i = 0; i < coords.length; i++) { if (coords[i].length < 2) return false; } return true; case "Polygon": for (var i = 0; i < geom.coordinates.length; i++) { if (coords[i].length < 4) return false; if (!checkRingsClose(coords[i])) return false; if (checkRingsForSpikesPunctures(coords[i])) return false; if (i > 0) { if ( lineIntersect(polygon([coords[0]]), polygon([coords[i]])).features .length > 1 ) return false; } } return true; case "MultiPolygon": for (var i = 0; i < geom.coordinates.length; i++) { var poly: any = geom.coordinates[i]; for (var ii = 0; ii < poly.length; ii++) { if (poly[ii].length < 4) return false; if (!checkRingsClose(poly[ii])) return false; if (checkRingsForSpikesPunctures(poly[ii])) return false; if (ii === 0) { if (!checkPolygonAgainstOthers(poly, geom.coordinates, i)) return false; } if (ii > 0) { if ( lineIntersect(polygon([poly[0]]), polygon([poly[ii]])).features .length > 1 ) return false; } } } return true; default: return false; } } function checkRingsClose(geom: Position[]) { return ( geom[0][0] === geom[geom.length - 1][0] && geom[0][1] === geom[geom.length - 1][1] ); } function checkRingsForSpikesPunctures(geom: Position[]) { for (var i = 0; i < geom.length - 1; i++) { var point = geom[i]; for (var ii = i + 1; ii < geom.length - 2; ii++) { var seg = [geom[ii], geom[ii + 1]]; if (isPointOnLine(point, lineString(seg))) return true; } } return false; } function checkPolygonAgainstOthers( poly: Position[][], geom: Position[][][], index: number ) { var polyToCheck = polygon(poly); for (var i = index + 1; i < geom.length; i++) { if (!booleanDisjoint(polyToCheck, polygon(geom[i]))) { if (booleanCrosses(polyToCheck, lineString(geom[i][0]))) return false; } } return true; } export { booleanValid }; export default booleanValid; ================================================ FILE: packages/turf-boolean-valid/package.json ================================================ { "name": "@turf/boolean-valid", "version": "7.3.4", "description": "Checks if the geometry is a valid according to the OGC Simple Feature Specification.", "author": "Turf Authors", "contributors": [ "Rowan Winsemius <@rowanwins>", "Denis Carriere <@DenisCarriere>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "valid", "boolean", "ogc" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "boolean-jsts": "*", "boolean-shapely": "*", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/bbox": "workspace:*", "@turf/boolean-crosses": "workspace:*", "@turf/boolean-disjoint": "workspace:*", "@turf/boolean-overlap": "workspace:*", "@turf/boolean-point-in-polygon": "workspace:*", "@turf/boolean-point-on-line": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/line-intersect": "workspace:*", "@types/geojson": "^7946.0.10", "geojson-polygon-self-intersections": "^1.2.1", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-boolean-valid/test/false/MultiPoint/multipoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [[2.7575683593749996], [2.5575683593749996, 2.8113711933311403]] } } ] } ================================================ FILE: packages/turf-boolean-valid/test/false/MultiPolygon/multipoly-with-2-vertices-touching.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-0.703125, 24.84656534821976], [11.25, 24.84656534821976], [11.25, 31.353636941500987], [-0.703125, 31.353636941500987], [-0.703125, 24.84656534821976] ], [ [3.076171875, 27.254629577800063], [6.8115234375, 27.254629577800063], [6.8115234375, 31.353636941500987], [-0.703125, 29.916852233070173], [3.076171875, 27.254629577800063] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-valid/test/false/MultiPolygon/multipolygons-overlap.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-0.703125, 24.84656534821976], [11.25, 24.84656534821976], [11.25, 31.353636941500987], [-0.703125, 31.353636941500987], [-0.703125, 24.84656534821976] ], [ [3.076171875, 27.254629577800063], [6.8115234375, 27.254629577800063], [6.8115234375, 29.916852233070173], [3.076171875, 29.916852233070173], [3.076171875, 27.254629577800063] ] ], [ [ [5.80078125, 33.100745405144245], [8.4814453125, 30.100745405144245], [8.4814453125, 34.397844946449865], [5.80078125, 34.397844946449865], [5.80078125, 33.100745405144245] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-valid/test/false/MultiPolygon/not-enough-coords.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-0.703125, 24.84656534821976], [11.25, 24.84656534821976], [-0.703125, 24.84656534821976] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-valid/test/false/Point/point.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.7575683593749996] } } ] } ================================================ FILE: packages/turf-boolean-valid/test/false/Polygon/not-closing-ring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.703125, 24.84656534821976], [11.25, 24.84656534821976], [11.25, 31.353636941500987], [-0.703125, 31.353636941500987] ] ] } } ] } ================================================ FILE: packages/turf-boolean-valid/test/false/Polygon/not-enough-coords.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.703125, 24.84656534821976], [11.25, 24.84656534821976], [-0.703125, 24.84656534821976] ] ] } } ] } ================================================ FILE: packages/turf-boolean-valid/test/false/Polygon/polygon-with-hole-2-vertices-touching.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.703125, 24.84656534821976], [11.25, 24.84656534821976], [11.25, 31.353636941500987], [-0.703125, 31.353636941500987], [-0.703125, 24.84656534821976] ], [ [3.076171875, 27.254629577800063], [6.8115234375, 27.254629577800063], [6.8115234375, 31.353636941500987], [-0.703125, 29.916852233070173], [3.076171875, 27.254629577800063] ] ] } } ] } ================================================ FILE: packages/turf-boolean-valid/test/false/Polygon/polygon-with-puncture.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.703125, 24.84656534821976], [10, 24.84656534821976], [10, 26.84656534821976], [10, 24.84656534821976], [11.25, 24.84656534821976], [11.25, 31.353636941500987], [-0.703125, 31.353636941500987], [-0.703125, 24.84656534821976] ] ] } } ] } ================================================ FILE: packages/turf-boolean-valid/test/false/Polygon/polygon-with-spike.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.703125, 24.84656534821976], [11.25, 24.84656534821976], [11.25, 22], [11.25, 31.353636941500987], [-0.703125, 31.353636941500987], [-0.703125, 24.84656534821976] ] ] } } ] } ================================================ FILE: packages/turf-boolean-valid/test/true/LineString/linestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1.285400390625, 4.214943141390651], [0.472412109375, 2.9649843693339677], [1.900634765625, 2.1857489471296665] ] } } ] } ================================================ FILE: packages/turf-boolean-valid/test/true/MultiLineString/multilinestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [1.285400390625, 4.214943141390651], [0.472412109375, 2.9649843693339677], [1.900634765625, 2.1857489471296665] ], [ [2.076416015625, 4.07249425916745], [3.2080078125, 2.5370123584000273] ] ] } } ] } ================================================ FILE: packages/turf-boolean-valid/test/true/MultiPoint/multipoint-with-z.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [2.7575683593749996, 2.8113711933311403, 1], [2.5575683593749996, 2.8113711933311403] ] } } ] } ================================================ FILE: packages/turf-boolean-valid/test/true/MultiPoint/multipoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [2.7575683593749996, 2.8113711933311403], [2.5575683593749996, 2.8113711933311403] ] } } ] } ================================================ FILE: packages/turf-boolean-valid/test/true/MultiPolygon/multipolygon-touch.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-0.703, 24.846], [11.25, 24.846], [11.25, 31.353], [-0.703, 31.353], [-0.703, 24.846] ], [ [3.076, 27.254], [6.811, 27.254], [6.811, 29.916], [3.076, 29.916], [3.076, 27.254] ] ], [ [ [5.8, 33.1], [8.481, 31.353], [8.481, 34.397], [5.8, 34.397], [5.8, 33.1] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-valid/test/true/MultiPolygon/multipolygon-with-hole.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-0.703125, 24.84656534821976], [11.25, 24.84656534821976], [11.25, 31.353636941500987], [-0.703125, 31.353636941500987], [-0.703125, 24.84656534821976] ], [ [3.076171875, 27.254629577800063], [6.8115234375, 27.254629577800063], [6.8115234375, 29.916852233070173], [3.076171875, 29.916852233070173], [3.076171875, 27.254629577800063] ] ], [ [ [5.80078125, 33.100745405144245], [8.4814453125, 33.100745405144245], [8.4814453125, 34.397844946449865], [5.80078125, 34.397844946449865], [5.80078125, 33.100745405144245] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-valid/test/true/MultiPolygon/multipolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-0.703125, 24.84656534821976], [11.25, 24.84656534821976], [11.25, 31.353636941500987], [-0.703125, 31.353636941500987], [-0.703125, 24.84656534821976] ] ], [ [ [5.80078125, 33.100745405144245], [8.4814453125, 33.100745405144245], [8.4814453125, 34.397844946449865], [5.80078125, 34.397844946449865], [5.80078125, 33.100745405144245] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-valid/test/true/Point/point-with-z.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.7575683593749996, 2.8113711933311403, 1] } } ] } ================================================ FILE: packages/turf-boolean-valid/test/true/Point/point.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.7575683593749996, 2.8113711933311403] } } ] } ================================================ FILE: packages/turf-boolean-valid/test/true/Polygon/polygon-internal-hole.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.703125, 24.84656534821976], [11.25, 24.84656534821976], [11.25, 31.353636941500987], [-0.703125, 31.353636941500987], [-0.703125, 24.84656534821976] ], [ [3.076171875, 27.254629577800063], [6.8115234375, 27.254629577800063], [6.8115234375, 29.916852233070173], [3.076171875, 29.916852233070173], [3.076171875, 27.254629577800063] ] ] } } ] } ================================================ FILE: packages/turf-boolean-valid/test/true/Polygon/polygon-with-hole-1-vertice-touching.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.703125, 24.84656534821976], [11.25, 24.84656534821976], [11.25, 31.353636941500987], [-0.703125, 31.353636941500987], [-0.703125, 24.84656534821976] ], [ [3.076171875, 27.254629577800063], [6.8115234375, 27.254629577800063], [6.8115234375, 29.916852233070173], [-0.703125, 29.916852233070173], [3.076171875, 27.254629577800063] ] ] } } ] } ================================================ FILE: packages/turf-boolean-valid/test/true/Polygon/polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.703125, 24.84656534821976], [11.25, 24.84656534821976], [11.25, 31.353636941500987], [-0.703125, 31.353636941500987], [-0.703125, 24.84656534821976] ] ] } } ] } ================================================ FILE: packages/turf-boolean-valid/test.ts ================================================ import { glob } from "glob"; import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { loadJsonFileSync } from "load-json-file"; import { booleanValid as isValid } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); test("turf-boolean-valid", (t) => { // True Fixtures glob .sync(path.join(__dirname, "test", "true", "**", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; if (name === "multipolygon-touch") return t.skip("multipolygon-touch"); const geojson = loadJsonFileSync(filepath); const feature1 = geojson.features[0]; const result = isValid(feature1); // if (process.env.SHAPELY) shapely.contains(feature1).then(result => t.true(result, '[true] shapely - ' + name)); t.true(result, "[true] " + name); }); // False Fixtures glob .sync(path.join(__dirname, "test", "false", "**", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; const geojson = loadJsonFileSync(filepath); const feature1 = geojson.features[0]; const result = isValid(feature1); // if (process.env.SHAPELY) shapely.contains(feature1, feature2).then(result => t.false(result, '[false] shapely - ' + name)); t.false(result, "[false] " + name); }); t.end(); }); test("turf-boolean-valid -- obvious fails", (t) => { t.false(isValid({ foo: "bar" })); t.end(); }); ================================================ FILE: packages/turf-boolean-valid/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-boolean-within/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-boolean-within/README.md ================================================ # @turf/boolean-within ## booleanWithin Tests whether geometry a is contained by geometry b. The interiors of both geometries must intersect, and the interior and boundary of geometry a must not intersect the exterior of geometry b. booleanWithin(a, b) is equivalent to booleanContains(b, a) ### Parameters * `feature1` **([Geometry][1] | [Feature][2]\)** GeoJSON Feature or Geometry * `feature2` **([Geometry][1] | [Feature][2]\)** GeoJSON Feature or Geometry ### Examples ```javascript var line = turf.lineString([[1, 1], [1, 2], [1, 3], [1, 4]]); var point = turf.point([1, 2]); turf.booleanWithin(point, line); //=true ``` Returns **[boolean][3]** true/false [1]: https://tools.ietf.org/html/rfc7946#section-3.1 [2]: https://tools.ietf.org/html/rfc7946#section-3.2 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/boolean-within ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ### Diagrams ![esri-within](diagrams/esri-within.png) ================================================ FILE: packages/turf-boolean-within/bench.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import { glob } from "glob"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { booleanWithin as within } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); /** * Benchmark Results * * LineIsNotWithinLine x 2,878,664 ops/sec ±7.20% (68 runs sampled) * LineIsNotWIthinPolygon x 1,818,294 ops/sec ±6.20% (64 runs sampled) * LineIsNotWIthinPolygonBoundary x 297,332 ops/sec ±6.31% (77 runs sampled) * MultiPointsIsNotWIthinLine x 2,767,186 ops/sec ±6.88% (73 runs sampled) * MultiPointsOnLineEndsIsNotWIthinLine x 1,606,670 ops/sec ±7.38% (62 runs sampled) * MultiPointIsNotWithinMultiPoint x 7,711,700 ops/sec ±10.08% (52 runs sampled) * MultiPointAllOnBoundaryIsNotWithinPolygon x 435,926 ops/sec ±6.12% (49 runs sampled) * MultiPointIsNotWithinPolygon x 1,709,920 ops/sec ±7.40% (57 runs sampled) * PointIsNotWithinLine x 4,148,704 ops/sec ±5.95% (53 runs sampled) * PointIsNotWithinLineBecauseOnEnd x 5,243,476 ops/sec ±7.68% (68 runs sampled) * PointOnEndIsWithinLinestring x 5,178,472 ops/sec ±7.04% (68 runs sampled) * PointIsNotWithinMultiPoint x 12,366,325 ops/sec ±6.98% (58 runs sampled) * PointIsNotWithinPolygon x 1,490,757 ops/sec ±11.13% (66 runs sampled) * PointOnPolygonBoundary x 1,758,292 ops/sec ±6.62% (63 runs sampled) * Polygon-Polygon x 1,406,871 ops/sec ±8.49% (60 runs sampled) * LineIsWithinLine x 2,436,801 ops/sec ±7.33% (59 runs sampled) * LinesExactSame x 1,815,051 ops/sec ±10.68% (60 runs sampled) * LineIsContainedByPolygon x 330,016 ops/sec ±6.95% (54 runs sampled) * LineIsContainedByPolygonWithNoInternalVertices x 465,371 ops/sec ±6.99% (61 runs sampled) * MultipointsIsWithinLine x 1,742,280 ops/sec ±7.25% (62 runs sampled) * MultiPointsWithinMultiPoints x 11,546,059 ops/sec ±4.41% (87 runs sampled) * MultiPointIsWithinPolygon x 409,210 ops/sec ±8.21% (53 runs sampled) * PointIsWithinLine x 7,298,078 ops/sec ±10.89% (73 runs sampled) * PointIsWithinMultiPoint x 16,495,443 ops/sec ±7.21% (68 runs sampled) * PointIsWithinPolygon x 1,820,036 ops/sec ±9.11% (60 runs sampled) * PolygonIsWIthinPolygon x 518,524 ops/sec ±5.57% (80 runs sampled) * PolygonsExactSameShape x 418,247 ops/sec ±7.43% (80 runs sampled) */ const suite = new Benchmark.Suite("turf-boolean-within"); glob .sync(path.join(__dirname, "test", "**", "*.geojson")) .forEach((filepath) => { const { name } = path.parse(filepath); // don't test files that start with skip if (/^skip/.test(name)) { return; } const geojson = loadJsonFileSync(filepath); const [feature1, feature2] = geojson.features; console.time(name); within(feature1, feature2); console.timeEnd(name); suite.add(name, () => within(feature1, feature2)); }); suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-boolean-within/index.ts ================================================ import { BBox, Feature, Geometry, LineString, MultiPoint, MultiPolygon, Point, Polygon, } from "geojson"; import { bbox as calcBbox } from "@turf/bbox"; import { booleanPointOnLine } from "@turf/boolean-point-on-line"; import { booleanPointInPolygon } from "@turf/boolean-point-in-polygon"; import { getGeom } from "@turf/invariant"; import { feature, featureCollection, lineString } from "@turf/helpers"; import { lineSplit } from "@turf/line-split"; /** * Tests whether geometry a is contained by geometry b. * The interiors of both geometries must intersect, and the interior and boundary of geometry a must not intersect the exterior of geometry b. * booleanWithin(a, b) is equivalent to booleanContains(b, a) * * @function * @param {Geometry|Feature} feature1 GeoJSON Feature or Geometry * @param {Geometry|Feature} feature2 GeoJSON Feature or Geometry * @returns {boolean} true/false * @example * var line = turf.lineString([[1, 1], [1, 2], [1, 3], [1, 4]]); * var point = turf.point([1, 2]); * * turf.booleanWithin(point, line); * //=true */ function booleanWithin( feature1: Feature | Geometry, feature2: Feature | Geometry ): boolean { var geom1 = getGeom(feature1); var geom2 = getGeom(feature2); var type1 = geom1.type; var type2 = geom2.type; switch (type1) { case "Point": switch (type2) { case "MultiPoint": return isPointInMultiPoint(geom1, geom2); case "LineString": return booleanPointOnLine(geom1, geom2, { ignoreEndVertices: true }); case "Polygon": case "MultiPolygon": return booleanPointInPolygon(geom1, geom2, { ignoreBoundary: true }); default: throw new Error("feature2 " + type2 + " geometry not supported"); } case "MultiPoint": switch (type2) { case "MultiPoint": return isMultiPointInMultiPoint(geom1, geom2); case "LineString": return isMultiPointOnLine(geom1, geom2); case "Polygon": case "MultiPolygon": return isMultiPointInPoly(geom1, geom2); default: throw new Error("feature2 " + type2 + " geometry not supported"); } case "LineString": switch (type2) { case "LineString": return isLineOnLine(geom1, geom2); case "Polygon": case "MultiPolygon": return isLineInPoly(geom1, geom2); default: throw new Error("feature2 " + type2 + " geometry not supported"); } case "Polygon": switch (type2) { case "Polygon": case "MultiPolygon": return isPolyInPoly(geom1, geom2); default: throw new Error("feature2 " + type2 + " geometry not supported"); } default: throw new Error("feature1 " + type1 + " geometry not supported"); } } function isPointInMultiPoint(point: Point, multiPoint: MultiPoint) { var i; var output = false; for (i = 0; i < multiPoint.coordinates.length; i++) { if (compareCoords(multiPoint.coordinates[i], point.coordinates)) { output = true; break; } } return output; } function isMultiPointInMultiPoint( multiPoint1: MultiPoint, multiPoint2: MultiPoint ) { for (var i = 0; i < multiPoint1.coordinates.length; i++) { var anyMatch = false; for (var i2 = 0; i2 < multiPoint2.coordinates.length; i2++) { if ( compareCoords(multiPoint1.coordinates[i], multiPoint2.coordinates[i2]) ) { anyMatch = true; } } if (!anyMatch) { return false; } } return true; } function isMultiPointOnLine(multiPoint: MultiPoint, lineString: LineString) { var foundInsidePoint = false; for (var i = 0; i < multiPoint.coordinates.length; i++) { if (!booleanPointOnLine(multiPoint.coordinates[i], lineString)) { return false; } if (!foundInsidePoint) { foundInsidePoint = booleanPointOnLine( multiPoint.coordinates[i], lineString, { ignoreEndVertices: true } ); } } return foundInsidePoint; } function isMultiPointInPoly(multiPoint: MultiPoint, polygon: Polygon) { var output = true; var oneInside = false; var isInside = false; for (var i = 0; i < multiPoint.coordinates.length; i++) { isInside = booleanPointInPolygon(multiPoint.coordinates[i], polygon); if (!isInside) { output = false; break; } if (!oneInside) { isInside = booleanPointInPolygon(multiPoint.coordinates[i], polygon, { ignoreBoundary: true, }); } } return output && isInside; } function isLineOnLine(lineString1: LineString, lineString2: LineString) { for (var i = 0; i < lineString1.coordinates.length; i++) { if (!booleanPointOnLine(lineString1.coordinates[i], lineString2)) { return false; } } return true; } function splitLineIntoSegmentsOnPolygon( linestring: LineString, polygon: Polygon ) { const coords = linestring.coordinates; const outputSegments: Feature[] = []; for (let i = 0; i < coords.length - 1; i++) { const seg = lineString([coords[i], coords[i + 1]]); const split = lineSplit(seg, feature(polygon)); if (split.features.length === 0) { outputSegments.push(seg); } else { outputSegments.push(...split.features); } } return featureCollection(outputSegments); } function isLineInPoly(linestring: LineString, polygon: Polygon) { const polyBbox = calcBbox(polygon); const lineBbox = calcBbox(linestring); if (!doBBoxOverlap(polyBbox, lineBbox)) { return false; } for (const coord of linestring.coordinates) { if (!booleanPointInPolygon(coord, polygon)) { return false; } } let isContainedByPolygonBoundary = false; // split intersecting segments and verify their inclusion const lineSegments = splitLineIntoSegmentsOnPolygon(linestring, polygon); for (const lineSegment of lineSegments.features) { const midpoint = getMidpoint( lineSegment.geometry.coordinates[0], lineSegment.geometry.coordinates[1] ); // make sure all segments do not intersect with polygon exterior if (!booleanPointInPolygon(midpoint, polygon)) { return false; } // make sure at least 1 segment intersects with the polygon's interior if ( !isContainedByPolygonBoundary && booleanPointInPolygon(midpoint, polygon, { ignoreBoundary: true }) ) { isContainedByPolygonBoundary = true; } } return isContainedByPolygonBoundary; } /** * Is Polygon2 in Polygon1 * Only takes into account outer rings * * @private * @param {Polygon} geometry1 * @param {Polygon|MultiPolygon} geometry2 * @returns {boolean} true/false */ function isPolyInPoly(geometry1: Polygon, geometry2: Polygon | MultiPolygon) { var poly1Bbox = calcBbox(geometry1); var poly2Bbox = calcBbox(geometry2); if (!doBBoxOverlap(poly2Bbox, poly1Bbox)) { return false; } for (var i = 0; i < geometry1.coordinates[0].length; i++) { if (!booleanPointInPolygon(geometry1.coordinates[0][i], geometry2)) { return false; } } return true; } function doBBoxOverlap(bbox1: BBox, bbox2: BBox) { if (bbox1[0] > bbox2[0]) return false; if (bbox1[2] < bbox2[2]) return false; if (bbox1[1] > bbox2[1]) return false; if (bbox1[3] < bbox2[3]) return false; return true; } /** * compareCoords * * @private * @param {Position} pair1 point [x,y] * @param {Position} pair2 point [x,y] * @returns {boolean} true/false if coord pairs match */ function compareCoords(pair1: number[], pair2: number[]) { return pair1[0] === pair2[0] && pair1[1] === pair2[1]; } /** * getMidpoint * * @private * @param {Position} pair1 point [x,y] * @param {Position} pair2 point [x,y] * @returns {Position} midpoint of pair1 and pair2 */ function getMidpoint(pair1: number[], pair2: number[]) { return [(pair1[0] + pair2[0]) / 2, (pair1[1] + pair2[1]) / 2]; } export { booleanWithin }; export default booleanWithin; ================================================ FILE: packages/turf-boolean-within/package.json ================================================ { "name": "@turf/boolean-within", "version": "7.3.4", "description": "Determines whether the first geometry is completely within the second geometry.", "author": "Turf Authors", "contributors": [ "Rowan Winsemius <@rowanwins>", "Samuel Arbibe <@samuelarbibe>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "gis", "boolean", "de-9im", "within", "boolean-within" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "boolean-jsts": "*", "boolean-shapely": "*", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/bbox": "workspace:*", "@turf/boolean-point-in-polygon": "workspace:*", "@turf/boolean-point-on-line": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/line-split": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-boolean-within/test/false/LineString/LineString/LineIsNotWithinLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 2], [1, 3], [1, 15.5] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/false/LineString/Polygon/LineIsNotFullyWithinPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [10.2166256, -0.7379163], [11.0362904, 1.794324] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [9.6459207, -1.2281524], [11.0822393, -1.2461022], [11.405411, -0.1869151], [11.1181473, 1.9133448], [10.0588623, 1.4646914], [10.6692977, -0.0253296], [10.6692977, -0.0253296], [9.6459207, -1.2281524] ] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/false/LineString/Polygon/LineIsNotWIthinPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 2], [1, 3], [1, 15.5] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/false/LineString/Polygon/LineIsNotWIthinPolygonBoundary.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 2], [1, 3], [1, 3.5] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/false/MultiLineString/MultiPolygon/skip-multilinestring-not-within-multipolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [4, 4], [1, 1] ], [ [-14, -14], [-11, -11] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ], [ [ [-1, -1], [-1, -10], [-10, -10], [-10, -1], [-1, -1] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/false/MultiPoint/LineString/MultiPointsIsNotWIthinLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12], [15, 15] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/false/MultiPoint/LineString/MultiPointsOnLineEndsIsNotWIthinLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [1, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/false/MultiPoint/MultiPoint/MultiPointIsNotWithinMultiPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [1, 1.5] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12], [15, 15] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/false/MultiPoint/MultiPolygon/multipoint-not-within-multipolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [4, 4], [-14, -14] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ], [ [ [-1, -1], [-1, -10], [-10, -10], [-10, -1], [-1, -1] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/false/MultiPoint/Polygon/MultiPointAllOnBoundaryIsNotWithinPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [1, 10] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/false/MultiPoint/Polygon/MultiPointIsNotWithinPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12], [15, 15] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/false/Point/LineString/PointIsNotWithinLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2, 2] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/false/Point/LineString/PointIsNotWithinLineBecauseOnEnd.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 4] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/false/Point/LineString/PointOnEndIsWithinLinestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/false/Point/MultiPoint/PointIsNotWithinMultiPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 4] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/false/Point/MultiPolygon/point-not-within-multipolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [14, 14] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ], [ [ [-1, -1], [-1, -10], [-10, -10], [-10, -1], [-1, -1] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/false/Point/Polygon/PointIsNotWithinPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [14, 14] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/false/Point/Polygon/PointOnPolygonBoundary.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/false/Polygon/MultiPolygon/polygon-not-within-multipolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-12, -12], [-12, -19], [-19, -19], [-19, -12], [-12, -12] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ], [ [ [-1, -1], [-1, -10], [-10, -10], [-10, -1], [-1, -1] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/false/Polygon/Polygon/Polygon-Polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 20], [1, 3], [1, 4], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/true/LineString/LineString/LineIsWithinLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 2], [1, 3], [1, 3.5] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/true/LineString/LineString/LinesExactSame.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/true/LineString/Polygon/LineIsContainedByPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [2, 3], [2, 3.5] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/true/LineString/Polygon/LineIsContainedByPolygonWithNoInternalVertices.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [10, 10] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/true/LineString/Polygon/LineIsContainedByPolygonWithSegmentOnBoundary.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [2, 3] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/true/LineString/Polygon/LineIsFullyContainedByPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [2, 3], [2, 3.5] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/true/MultiLineString/MultiPolygon/skip-multilinestring-within-multipolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [4, 4], [1, 1] ], [ [-4, -4], [-1, -1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ], [ [ [-1, -1], [-1, -10], [-10, -10], [-10, -1], [-1, -1] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/true/MultiPoint/LineString/MultipointsIsWithinLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [1, 1.5] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/true/MultiPoint/MultiPoint/MultiPointsWithinMultiPoints.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12], [15, 15] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12], [15, 15] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/true/MultiPoint/MultiPolygon/multipoint-within-multipolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [4, 4], [-4, -4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ], [ [ [-1, -1], [-1, -10], [-10, -10], [-10, -1], [-1, -1] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/true/MultiPoint/Polygon/MultiPointIsWithinPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [4, 4] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/true/MultiPoint/Polygon/MultiPointSingleIsWithinPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [[2, 2]] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/true/MultiPolygon/MultiPolygon/skip-multipolygon-within-multipolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [2, 2], [2, 9], [9, 9], [9, 2], [2, 2] ] ], [ [ [-2, -2], [-2, -9], [-9, -9], [-9, -2], [-2, -2] ] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ], [ [ [-1, -1], [-1, -10], [-10, -10], [-10, -1], [-1, -1] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/true/Point/LineString/PointIsWithinLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 2] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 2], [1, 3], [1, 4] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/true/Point/MultiPoint/PointIsWithinMultiPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [1, 1], [12, 12] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/true/Point/MultiPolygon/point-within-multipolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-4, -4] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ], [ [ [-1, -1], [-1, -10], [-10, -10], [-10, -1], [-1, -1] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/true/Point/Polygon/PointIsWithinPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4, 4] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/true/Polygon/MultiPolygon/polygon-within-multipolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-2, -2], [-2, -9], [-9, -9], [-9, -2], [-2, -2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ], [ [ [-1, -1], [-1, -10], [-10, -10], [-10, -1], [-1, -1] ] ] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/true/Polygon/Polygon/PolygonIsWIthinPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [2, 2], [3, 2], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 10], [10, 10], [10, 1], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test/true/Polygon/Polygon/PolygonsExactSameShape.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill": "#F00" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-12.65625, 36.87962060502676], [35.419921875, 36.38591277287651], [37.79296875, 56.897003921272606], [-12.12890625, 57.040729838360875], [-12.65625, 36.87962060502676] ] ] } }, { "type": "Feature", "properties": { "fill": "#F00" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-12.65625, 36.87962060502676], [35.419921875, 36.38591277287651], [37.79296875, 56.897003921272606], [-12.12890625, 57.040729838360875], [-12.65625, 36.87962060502676] ] ] } } ] } ================================================ FILE: packages/turf-boolean-within/test.ts ================================================ import { glob } from "glob"; import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { loadJsonFileSync } from "load-json-file"; import shapely from "boolean-shapely"; import booleanJSTS from "boolean-jsts"; import { booleanWithin as within } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); test("turf-boolean-within", (t) => { // True Fixtures glob .sync(path.join(__dirname, "test", "true", "**", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; if (name.includes("skip")) return t.skip(name); const geojson = loadJsonFileSync(filepath); const feature1 = geojson.features[0]; const feature2 = geojson.features[1]; const result = within(feature1, feature2); if (process.env.JSTS) t.true( booleanJSTS("within", feature1, feature2), "[true] JSTS - " + name ); if (process.env.SHAPELY) shapely .within(feature1, feature2) .then((result) => t.true(result, "[true] shapely - " + name)); t.true(result, "[true] " + name); }); // False Fixtures glob .sync(path.join(__dirname, "test", "false", "**", "*.geojson")) .forEach((filepath) => { const name = path.parse(filepath).name; if (name.includes("skip")) return t.skip(name); const geojson = loadJsonFileSync(filepath); const feature1 = geojson.features[0]; const feature2 = geojson.features[1]; const result = within(feature1, feature2); if (process.env.JSTS) t.false( booleanJSTS("within", feature1, feature2), "[false] JSTS - " + name ); if (process.env.SHAPELY) shapely .within(feature1, feature2) .then((result) => t.false(result, "[false] shapely - " + name)); t.false(result, "[false] " + name); }); t.end(); }); ================================================ FILE: packages/turf-boolean-within/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-boolean-within/types.ts ================================================ import * as helpers from "@turf/helpers"; import { booleanWithin } from "./index.js"; const pt = helpers.point([0, 0]); const line = helpers.lineString([ [0, 0], [10, 10], ]); booleanWithin(pt, line); ================================================ FILE: packages/turf-buffer/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-buffer/README.md ================================================ # @turf/buffer ## buffer Calculates a buffer for input features for a given radius. When using a negative radius, the resulting geometry may be invalid if it's too small compared to the radius magnitude. If the input is a FeatureCollection, only valid members will be returned in the output FeatureCollection - i.e., the output collection may have fewer members than the input, or even be empty. ### Parameters * `geojson` **([FeatureCollection][1] | [Geometry][2] | [Feature][3]\)** input to be buffered * `radius` **[number][4]** distance to draw the buffer (negative values are allowed) * `options` **[Object][5]** Optional parameters (optional, default `{}`) * `options.units` **Units** Supports all valid Turf [Units][6]. (optional, default `"kilometers"`) * `options.steps` **[number][4]** number of steps (optional, default `8`) ### Examples ```javascript var point = turf.point([-90.548630, 14.616599]); var buffered = turf.buffer(point, 500, {units: 'miles'}); //addToMap var addToMap = [point, buffered] ``` Returns **([FeatureCollection][1] | [Feature][3]<([Polygon][7] | [MultiPolygon][8])> | [undefined][9])** buffered features [1]: https://tools.ietf.org/html/rfc7946#section-3.3 [2]: https://tools.ietf.org/html/rfc7946#section-3.1 [3]: https://tools.ietf.org/html/rfc7946#section-3.2 [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [6]: https://turfjs.org/docs/api/types/Units [7]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [8]: https://tools.ietf.org/html/rfc7946#section-3.1.7 [9]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/undefined --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/buffer ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-buffer/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { buffer } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); /** * Benchmark Results * * feature-collection-points: 139.101ms * geometry-collection-points: 20.334ms * issue-#783: 33.209ms * linestring: 6.371ms * multi-linestring: 48.786ms * multi-point: 7.627ms * multi-polygon: 38.921ms * negative-buffer: 5.621ms * north-latitude-points: 71.144ms * northern-polygon: 2.644ms * point: 8.155ms * polygon-with-holes: 6.965ms * feature-collection-points x 722 ops/sec ±14.28% (65 runs sampled) * geometry-collection-points x 1,314 ops/sec ±7.87% (66 runs sampled) * issue-#783 x 1,404 ops/sec ±6.81% (64 runs sampled) * linestring x 2,936 ops/sec ±6.94% (72 runs sampled) * multi-linestring x 623 ops/sec ±4.35% (79 runs sampled) * multi-point x 1,735 ops/sec ±8.60% (65 runs sampled) * multi-polygon x 1,125 ops/sec ±3.93% (80 runs sampled) * north-latitude-points x 1,649 ops/sec ±2.09% (86 runs sampled) * northern-polygon x 4,658 ops/sec ±3.08% (78 runs sampled) * point x 65,020 ops/sec ±1.29% (85 runs sampled) * polygon-with-holes x 2,795 ops/sec ±2.98% (81 runs sampled) */ const suite = new Benchmark.Suite("turf-buffer"); for (const { name, geojson } of fixtures) { console.time(name); buffer(geojson, 50, { units: "miles" }); console.timeEnd(name); suite.add(name, () => buffer(geojson, 50, { units: "miles" })); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-buffer/index.d.ts ================================================ import { Point, LineString, Polygon, MultiPoint, MultiLineString, MultiPolygon, GeometryObject, GeometryCollection, Feature, FeatureCollection, } from "geojson"; import { Units } from "@turf/helpers"; interface Options { units?: Units; steps?: number; } /** * http://turfjs.org/docs/#buffer */ declare function buffer( feature: | Feature | Point | LineString | Polygon | MultiPoint | MultiLineString | MultiPolygon, radius?: number, options?: Options ): Feature | undefined; declare function buffer( feature: FeatureCollection | GeometryCollection, radius?: number, options?: Options ): FeatureCollection | undefined; export { buffer }; export default buffer; ================================================ FILE: packages/turf-buffer/index.js ================================================ import { center } from "@turf/center"; import jsts from "@turf/jsts"; import { geomEach, featureEach } from "@turf/meta"; import { geoAzimuthalEquidistant } from "d3-geo"; import { feature, featureCollection, radiansToLength, lengthToRadians, earthRadius, } from "@turf/helpers"; const { BufferOp, GeoJSONReader, GeoJSONWriter } = jsts; /** * Calculates a buffer for input features for a given radius. * * When using a negative radius, the resulting geometry may be invalid if * it's too small compared to the radius magnitude. If the input is a * FeatureCollection, only valid members will be returned in the output * FeatureCollection - i.e., the output collection may have fewer members than * the input, or even be empty. * * @function * @param {FeatureCollection|Geometry|Feature} geojson input to be buffered * @param {number} radius distance to draw the buffer (negative values are allowed) * @param {Object} [options={}] Optional parameters * @param {Units} [options.units="kilometers"] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @param {number} [options.steps=8] number of steps * @returns {FeatureCollection|Feature|undefined} buffered features * @example * var point = turf.point([-90.548630, 14.616599]); * var buffered = turf.buffer(point, 500, {units: 'miles'}); * * //addToMap * var addToMap = [point, buffered] */ function buffer(geojson, radius, options) { // Optional params options = options || {}; // use user supplied options or default values var units = options.units || "kilometers"; var steps = options.steps || 8; // validation if (!geojson) throw new Error("geojson is required"); if (typeof options !== "object") throw new Error("options must be an object"); if (typeof steps !== "number") throw new Error("steps must be an number"); // Allow negative buffers ("erosion") or zero-sized buffers ("repair geometry") if (radius === undefined) throw new Error("radius is required"); if (steps <= 0) throw new Error("steps must be greater than 0"); var results = []; switch (geojson.type) { case "GeometryCollection": geomEach(geojson, function (geometry) { var buffered = bufferFeature(geometry, radius, units, steps); if (buffered) results.push(buffered); }); return featureCollection(results); case "FeatureCollection": featureEach(geojson, function (feature) { var multiBuffered = bufferFeature(feature, radius, units, steps); if (multiBuffered) { featureEach(multiBuffered, function (buffered) { if (buffered) results.push(buffered); }); } }); return featureCollection(results); } return bufferFeature(geojson, radius, units, steps); } /** * Buffer single Feature/Geometry * * @private * @param {Feature} geojson input to be buffered * @param {number} radius distance to draw the buffer * @param {Units} [units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @param {number} [steps=8] number of steps * @returns {Feature} buffered feature */ function bufferFeature(geojson, radius, units, steps) { var properties = geojson.properties || {}; var geometry = geojson.type === "Feature" ? geojson.geometry : geojson; // Geometry Types faster than jsts if (geometry.type === "GeometryCollection") { var results = []; geomEach(geojson, function (geometry) { var buffered = bufferFeature(geometry, radius, units, steps); if (buffered) results.push(buffered); }); return featureCollection(results); } // Project GeoJSON to Azimuthal Equidistant projection (convert to Meters) var projection = defineProjection(geometry); var projected = { type: geometry.type, coordinates: projectCoords(geometry.coordinates, projection), }; // JSTS buffer operation var reader = new GeoJSONReader(); var geom = reader.read(projected); var distance = radiansToLength(lengthToRadians(radius, units), "meters"); var buffered = BufferOp.bufferOp(geom, distance, steps); var writer = new GeoJSONWriter(); buffered = writer.write(buffered); // Detect if empty geometries if (coordsIsNaN(buffered.coordinates)) return undefined; // Unproject coordinates (convert to Degrees) var result = { type: buffered.type, coordinates: unprojectCoords(buffered.coordinates, projection), }; return feature(result, properties); } /** * Coordinates isNaN * * @private * @param {Array} coords GeoJSON Coordinates * @returns {boolean} if NaN exists */ function coordsIsNaN(coords) { if (Array.isArray(coords[0])) return coordsIsNaN(coords[0]); return isNaN(coords[0]); } /** * Project coordinates to projection * * @private * @param {Array} coords to project * @param {GeoProjection} proj D3 Geo Projection * @returns {Array} projected coordinates */ function projectCoords(coords, proj) { if (typeof coords[0] !== "object") return proj(coords); return coords.map(function (coord) { return projectCoords(coord, proj); }); } /** * Un-Project coordinates to projection * * @private * @param {Array} coords to un-project * @param {GeoProjection} proj D3 Geo Projection * @returns {Array} un-projected coordinates */ function unprojectCoords(coords, proj) { if (typeof coords[0] !== "object") return proj.invert(coords); return coords.map(function (coord) { return unprojectCoords(coord, proj); }); } /** * Define Azimuthal Equidistant projection * * @private * @param {Geometry|Feature} geojson Base projection on center of GeoJSON * @returns {GeoProjection} D3 Geo Azimuthal Equidistant Projection */ function defineProjection(geojson) { var coords = center(geojson).geometry.coordinates; var rotation = [-coords[0], -coords[1]]; return geoAzimuthalEquidistant().rotate(rotation).scale(earthRadius); } export { buffer }; export default buffer; ================================================ FILE: packages/turf-buffer/package.json ================================================ { "name": "@turf/buffer", "version": "7.3.4", "description": "Creates a buffer around a GeoJSON feature.", "author": "Turf Authors", "contributors": [ "Tom MacWright <@tmcw>", "Denis Carriere <@DenisCarriere>", "Stefano Borghi <@stebogit>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "buffer", "offset", "polygon", "linestring", "point", "geojson", "turf" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/bbox": "workspace:*", "@turf/center": "workspace:*", "@turf/helpers": "workspace:*", "@turf/jsts": "^2.7.1", "@turf/meta": "workspace:*", "@turf/projection": "workspace:*", "@types/geojson": "^7946.0.10", "d3-geo": "1.7.1" } } ================================================ FILE: packages/turf-buffer/test/in/feature-collection-points.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-color": "#F00" }, "geometry": { "type": "MultiPoint", "coordinates": [ [135, -25], [130, -20], [125, -25], [126, -25] ] } }, { "type": "Feature", "properties": { "marker-color": "#0F0" }, "geometry": { "type": "Point", "coordinates": [130, -27.5] } }, { "type": "Feature", "properties": { "marker-color": "#00F" }, "geometry": { "type": "Point", "coordinates": [126, -24.5] } } ] } ================================================ FILE: packages/turf-buffer/test/in/geometry-collection-points.geojson ================================================ { "type": "GeometryCollection", "geometries": [ { "type": "MultiPoint", "coordinates": [ [135, -25], [130, -20], [125, -25] ] }, { "type": "Point", "coordinates": [130, -27.5] } ] } ================================================ FILE: packages/turf-buffer/test/in/issue-#783.geojson ================================================ { "type": "FeatureCollection", "properties": { "radius": 25, "units": "meters" }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4.946893, 52.509638], [4.947357, 52.509492], [4.947427, 52.509472], [4.947761, 52.509428], [4.947331, 52.509564], [4.946736, 52.509714], [4.946893, 52.509638] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.946736, 52.509714] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.947761, 52.509428] } } ] } ================================================ FILE: packages/turf-buffer/test/in/issue-#801-Ecuador.geojson ================================================ { "type": "FeatureCollection", "properties": { "radius": 1, "units": "miles" }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-78.50966334342957, -0.22245649236909099] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-78.5096874833107, -0.22245917455788858], [-78.50966066122055, -0.22246453893548376], [-78.5096526145935, -0.2224484458026982], [-78.50967675447464, -0.2224403992362927], [-78.5096874833107, -0.22245917455788858] ] ] } } ] } ================================================ FILE: packages/turf-buffer/test/in/issue-#801.geojson ================================================ { "type": "FeatureCollection", "properties": { "radius": 1, "units": "miles" }, "features": [ { "type": "Feature", "properties": { "stroke": "#555555", "stroke-width": 2, "stroke-opacity": 1, "fill": "#0000ff", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [5.832694172859192, 50.74689044349633], [5.832699537277222, 50.74686838040257], [5.832734405994415, 50.746881957692274], [5.832734405994415, 50.746898929298894], [5.832694172859192, 50.74689044349633] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [5.83271563053131, 50.746887049174894] } } ] } ================================================ FILE: packages/turf-buffer/test/in/issue-#815.geojson ================================================ { "type": "Feature", "properties": { "radius": 850, "units": "meters" }, "geometry": { "type": "LineString", "coordinates": [ [7.163085937499999, 51.944264879028765], [9.404296875, 52.01193653675363], [10.283203125, 52.72298552457069], [11.3818359375, 52.72298552457069], [12.436523437499998, 52.522905940278065] ] } } ================================================ FILE: packages/turf-buffer/test/in/issue-#900.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-86.85, 21.025], [-86.53333, 22.39167], [-86.45, 22.765], [-86.35, 23.21], [-86.15, 24.04], [-85.33333, 25.34167], [-85.26667, 26.03], [-85.23333, 26.38333], [-85.18333, 26.5], [-84.78333, 27.49333], [-83.41667, 28], [-83.21667, 28.175], [-82.63333, 28.69], [-82.6, 29.43], [-82.55, 30.505], [-81.18333, 32.14667], [-79.65, 34.23333], [-79.48333, 34.54333], [-78.93333, 35.56667], [-78.78333, 35.87333], [-78.53333, 36.15833], [-78.16667, 36.565], [-77.9, 36.86167], [-77.31667, 37.50167], [-76.83333, 37.97], [-76.65, 38.1], [-76.4, 38.28833], [-76.01667, 38.695], [-75.91667, 38.80333], [-75.78333, 38.94333], [-75.66667, 39.06167], [-75.6, 39.13833], [-75.51667, 39.23167], [-74.41667, 39.81667], [-73.7, 40.205], [-72.31667, 40.91833], [-71.56667, 41.16667], [-70.01667, 41.28167], [-67, 42.63333], [-56.46667, 45.60333], [-52, 46.5], [-50.45, 46.89], [-50, 47], [-42.86667, 47.805], [-40, 48], [-38.03333, 48.48], [-30, 50], [-27.85, 50.29], [-20, 51], [-19.33333, 51.01167], [-15, 51], [-14, 51], [-8.5, 51], [-8.25, 51], [-8, 51], [-5.88333, 50.935], [-3.98333, 50.84333], [-2.65, 50.76], [-2.51667, 50.75], [-2.11667, 50.675], [-1.6, 50.575], [-0.93333, 50.82], [-0.75, 50.855], [-0.08333, 50.88667], [-0.18333, 50.985], [-0.18333, 51.14833] ] } } ================================================ FILE: packages/turf-buffer/test/in/issue-#916.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [124.67285156250001, -24.846565348219734], [125.63964843750001, -25.36388227274024], [126.21093749999999, -23.644524198573677], [129.9462890625, -21.493963563064455], [132.2314453125, -22.187404991398775], [133.0224609375, -25.28443774698303], [130.9130859375, -26.509904531413916], [126.474609375, -26.706359857633526], [124.892578125, -25.918526162075153], [125.3759765625, -27.877928333679495], [130.9130859375, -27.877928333679495], [134.38476562499997, -25.403584973186703], [133.41796874999997, -21.002471054356715], [129.7265625, -20.34462694382967], [124.67285156250001, -23.40276490540795], [124.67285156250001, -24.846565348219734] ] ] } } ] } ================================================ FILE: packages/turf-buffer/test/in/linestring.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [121.11328124999999, -31.57853542647337], [126.65039062499999, -24.367113562651262], [132.5390625, -20.797201434306984], [137.197265625, -20.385825381874263], [142.294921875, -22.67484735118852], [146.865234375, -28.690587654250685], [147.12890625, -31.42866311735861] ] } } ================================================ FILE: packages/turf-buffer/test/in/multi-linestring.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [122.03613281249999, -26.74561038219901], [127.08984375000001, -23.443088931121775], [132.4072265625, -21.453068633086772], [138.9990234375, -22.024545601240337], [140.9765625, -22.67484735118852] ], [ [125.5517578125, -18.521283325496263], [130.6494140625, -26.588527147308614], [134.208984375, -27.17646913189887] ], [ [122.51953124999999, -22.024545601240337], [128.9794921875, -19.062117883514652], [134.5166015625, -17.936928637549432], [137.4169921875, -19.84939395842278], [138.427734375, -23.68477416688374], [133.59375, -28.38173504322308] ], [ [144.3603515625, -22.55314747840318], [144.580078125, -25.403584973186703], [142.11914062499997, -29.458731185355315], [139.7900390625, -31.316101383495635] ] ] } } ================================================ FILE: packages/turf-buffer/test/in/multi-point.geojson ================================================ { "type": "Feature", "properties": { "radius": 300 }, "geometry": { "type": "MultiPoint", "coordinates": [ [145, -25], [130, -20], [125, -25] ] } } ================================================ FILE: packages/turf-buffer/test/in/multi-polygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [121.9921875, -31.466153715024284], [134.4287109375, -31.466153715024284], [134.4287109375, -18.729501999072138], [121.9921875, -18.729501999072138], [121.9921875, -31.466153715024284] ] ], [ [ [125.3759765625, -15.961329081596647], [126.826171875, -18.22935133838667], [132.451171875, -18.062312304546715], [135.703125, -14.519780046326085], [139.6142578125, -18.60460138845525], [134.9560546875, -24.607069137709694], [134.7802734375, -32.10118973232094], [142.998046875, -33.100745405144245], [143.173828125, -16.84660510639629], [136.7138671875, -12.46876014482322], [131.2646484375, -13.88074584202559], [125.3759765625, -15.961329081596647] ] ], [ [ [129.111328125, -36.27970720524016], [131.8798828125, -36.27970720524016], [131.8798828125, -34.234512362369856], [129.111328125, -34.234512362369856], [129.111328125, -36.27970720524016] ] ] ] } } ================================================ FILE: packages/turf-buffer/test/in/negative-buffer.geojson ================================================ { "type": "Feature", "properties": { "radius": -200, "units": "miles" }, "geometry": { "type": "Polygon", "coordinates": [ [ [133.90136718749997, -14.647368383896618], [126.73828125, -19.352610894378625], [128.49609375, -27.371767300523032], [134.1650390625, -30.789036751261136], [143.7890625, -30.789036751261136], [144.9755859375, -26.391869671769022], [144.31640625, -17.14079039331664], [133.90136718749997, -14.647368383896618] ] ] } } ================================================ FILE: packages/turf-buffer/test/in/north-latitude-points.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [-94.97955322265625, 74.74046209428195], [-94.90264892578125, 74.68325030051861], [-94.06494140625, 74.7209322003536] ] } } ================================================ FILE: packages/turf-buffer/test/in/northern-polygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.81887817382812, 74.69068515369659], [-94.79827880859375, 74.71133916265154], [-94.82437133789062, 74.73630499357218], [-94.89852905273438, 74.73648576006866], [-94.976806640625, 74.72400796764163], [-94.91363525390625, 74.69032255967197], [-94.86488342285156, 74.68959734647507], [-94.81887817382812, 74.69068515369659] ] ] } } ================================================ FILE: packages/turf-buffer/test/in/point.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [135, -25] } } ================================================ FILE: packages/turf-buffer/test/in/polygon-with-holes.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [124.18945312500001, -24.607069137709694], [128.49609375, -31.278550858946517], [138.33984375, -31.728167146023935], [144.84375, -23.40276490540795], [141.416015625, -16.804541076383455], [135.703125, -13.667338259654947], [130.4296875, -13.581920900545844], [124.892578125, -13.923403897723334], [124.18945312500001, -24.607069137709694] ], [ [129.79296875, -27.019984007982554], [139.0869140625, -27.019984007982554], [139.0869140625, -17.392579271057766], [127.79296875, -17.392579271057766], [129.79296875, -27.019984007982554] ] ] } } ================================================ FILE: packages/turf-buffer/test/out/feature-collection-points.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-color": "#F00", "stroke": "#F00", "fill": "#F00", "fill-opacity": 0.3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [135.797556, -24.973], [135.775825, -24.832695], [135.724418, -24.698874], [135.645385, -24.576649], [135.541804, -24.470675], [135.41766, -24.384981], [135.27769, -24.322819], [135.127207, -24.286549], [134.971906, -24.277547], [134.817657, -24.296161], [134.670296, -24.34169], [134.535409, -24.412415], [134.418137, -24.505659], [134.322976, -24.617882], [134.253614, -24.744813], [134.212779, -24.881605], [134.202129, -25.02302], [134.222174, -25.163624], [134.272241, -25.298], [134.350485, -25.420951], [134.453948, -25.527712], [134.578662, -25.614134], [134.719804, -25.676853], [134.871883, -25.713426], [135.02896, -25.72243], [135.184895, -25.703518], [135.333597, -25.657434], [135.469273, -25.585982], [135.586664, -25.491951], [135.681254, -25.379001], [135.749443, -25.251512], [135.788683, -25.114417], [135.797556, -24.973] ] ], [ [ [130.76985, -19.998205], [130.754356, -19.8571], [130.709956, -19.721545], [130.638423, -19.596727], [130.542549, -19.487409], [130.42603, -19.397753], [130.293328, -19.331168], [130.149498, -19.29018], [130, -19.276342], [129.850502, -19.29018], [129.706672, -19.331168], [129.57397, -19.397753], [129.457451, -19.487409], [129.361577, -19.596727], [129.290044, -19.721545], [129.245644, -19.8571], [129.23015, -19.998205], [129.244236, -20.139447], [129.287441, -20.275391], [129.358176, -20.400791], [129.453771, -20.510796], [129.570569, -20.601138], [129.704069, -20.668306], [129.849093, -20.709684], [130, -20.723658], [130.150907, -20.709684], [130.295931, -20.668306], [130.429431, -20.601138], [130.546229, -20.510796], [130.641824, -20.400791], [130.712559, -20.275391], [130.755764, -20.139447], [130.76985, -19.998205] ] ], [ [ [125.500752, -24.441189], [125.464591, -24.412415], [125.329704, -24.34169], [125.182343, -24.296161], [125.028094, -24.277547], [124.872793, -24.286549], [124.72231, -24.322819], [124.58234, -24.384981], [124.458196, -24.470675], [124.354615, -24.576649], [124.275582, -24.698874], [124.224175, -24.832695], [124.202444, -24.973], [124.211317, -25.114417], [124.250557, -25.251512], [124.318746, -25.379001], [124.413336, -25.491951], [124.530727, -25.585982], [124.666403, -25.657434], [124.815105, -25.703518], [124.97104, -25.72243], [125.128117, -25.713426], [125.280196, -25.676853], [125.421338, -25.614134], [125.498948, -25.56038], [125.535415, -25.589163], [125.671669, -25.659783], [125.820744, -25.704942], [125.97683, -25.722872], [126.13383, -25.712869], [126.285606, -25.675319], [126.426234, -25.611685], [126.550243, -25.524447], [126.65284, -25.417], [126.730094, -25.293518], [126.779087, -25.158788], [126.798017, -25.018017], [126.786254, -24.876627], [126.74435, -24.740051], [126.674003, -24.613516], [126.577979, -24.501853], [126.459993, -24.40931], [126.324569, -24.339401], [126.176863, -24.294774], [126.022477, -24.277114], [125.867248, -24.287084], [125.717046, -24.324304], [125.577555, -24.387361], [125.500752, -24.441189] ] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#F00", "stroke": "#F00", "fill": "#F00", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [130.815827, -27.497621], [130.799128, -27.356539], [130.751842, -27.221049], [130.675881, -27.096326], [130.574227, -26.987119], [130.450806, -26.897575], [130.310336, -26.831084], [130.15815, -26.790158], [130, -26.776342], [129.84185, -26.790158], [129.689664, -26.831084], [129.549194, -26.897575], [129.425773, -26.987119], [129.324119, -27.096326], [129.248158, -27.221049], [129.200872, -27.356539], [129.184173, -27.497621], [129.198819, -27.638884], [129.244365, -27.77489], [129.319164, -27.900385], [129.420409, -28.010502], [129.544238, -28.100956], [129.68587, -28.16822], [129.839797, -28.209661], [130, -28.223658], [130.160203, -28.209661], [130.31413, -28.16822], [130.455762, -28.100956], [130.579591, -28.010502], [130.680836, -27.900385], [130.755635, -27.77489], [130.801181, -27.638884], [130.815827, -27.497621] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#F00", "stroke": "#F00", "fill": "#F00", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [126.795254, -24.497917], [126.7791, -24.356824], [126.733111, -24.221301], [126.659135, -24.096529], [126.560068, -23.987266], [126.439734, -23.897666], [126.302737, -23.831126], [126.154285, -23.790169], [126, -23.776342], [125.845715, -23.790169], [125.697263, -23.831126], [125.560266, -23.897666], [125.439932, -23.987266], [125.340865, -24.096529], [125.266889, -24.221301], [125.2209, -24.356824], [125.204746, -24.497917], [125.219148, -24.639169], [125.263653, -24.775144], [125.336636, -24.900591], [125.435355, -25.010651], [125.556036, -25.101049], [125.694026, -25.168263], [125.843963, -25.209673], [126, -25.223658], [126.156037, -25.209673], [126.305974, -25.168263], [126.443964, -25.101049], [126.564645, -25.010651], [126.663364, -24.900591], [126.736347, -24.775144], [126.780852, -24.639169], [126.795254, -24.497917] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#00F", "stroke": "#00F", "fill": "#00F", "fill-opacity": 0.3 }, "geometry": { "type": "MultiPoint", "coordinates": [ [135, -25], [130, -20], [125, -25], [126, -25] ] } }, { "type": "Feature", "properties": { "marker-color": "#00F", "stroke": "#00F", "fill": "#00F", "fill-opacity": 0.3 }, "geometry": { "type": "Point", "coordinates": [130, -27.5] } }, { "type": "Feature", "properties": { "marker-color": "#00F", "stroke": "#00F", "fill": "#00F", "fill-opacity": 0.3 }, "geometry": { "type": "Point", "coordinates": [126, -24.5] } } ] } ================================================ FILE: packages/turf-buffer/test/out/geometry-collection-points.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "marker-color": "#F00", "fill-opacity": 0.3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [135.797556, -24.973], [135.775825, -24.832695], [135.724418, -24.698874], [135.645385, -24.576649], [135.541804, -24.470675], [135.41766, -24.384981], [135.27769, -24.322819], [135.127207, -24.286549], [134.971906, -24.277547], [134.817657, -24.296161], [134.670296, -24.34169], [134.535409, -24.412415], [134.418137, -24.505659], [134.322976, -24.617882], [134.253614, -24.744813], [134.212779, -24.881605], [134.202129, -25.02302], [134.222174, -25.163624], [134.272241, -25.298], [134.350485, -25.420951], [134.453948, -25.527712], [134.578662, -25.614134], [134.719804, -25.676853], [134.871883, -25.713426], [135.02896, -25.72243], [135.184895, -25.703518], [135.333597, -25.657434], [135.469273, -25.585982], [135.586664, -25.491951], [135.681254, -25.379001], [135.749443, -25.251512], [135.788683, -25.114417], [135.797556, -24.973] ] ], [ [ [130.76985, -19.998205], [130.754356, -19.8571], [130.709956, -19.721545], [130.638423, -19.596727], [130.542549, -19.487409], [130.42603, -19.397753], [130.293328, -19.331168], [130.149498, -19.29018], [130, -19.276342], [129.850502, -19.29018], [129.706672, -19.331168], [129.57397, -19.397753], [129.457451, -19.487409], [129.361577, -19.596727], [129.290044, -19.721545], [129.245644, -19.8571], [129.23015, -19.998205], [129.244236, -20.139447], [129.287441, -20.275391], [129.358176, -20.400791], [129.453771, -20.510796], [129.570569, -20.601138], [129.704069, -20.668306], [129.849093, -20.709684], [130, -20.723658], [130.150907, -20.709684], [130.295931, -20.668306], [130.429431, -20.601138], [130.546229, -20.510796], [130.641824, -20.400791], [130.712559, -20.275391], [130.755764, -20.139447], [130.76985, -19.998205] ] ], [ [ [125.797871, -25.02302], [125.787221, -24.881605], [125.746386, -24.744813], [125.677024, -24.617882], [125.581863, -24.505659], [125.464591, -24.412415], [125.329704, -24.34169], [125.182343, -24.296161], [125.028094, -24.277547], [124.872793, -24.286549], [124.72231, -24.322819], [124.58234, -24.384981], [124.458196, -24.470675], [124.354615, -24.576649], [124.275582, -24.698874], [124.224175, -24.832695], [124.202444, -24.973], [124.211317, -25.114417], [124.250557, -25.251512], [124.318746, -25.379001], [124.413336, -25.491951], [124.530727, -25.585982], [124.666403, -25.657434], [124.815105, -25.703518], [124.97104, -25.72243], [125.128117, -25.713426], [125.280196, -25.676853], [125.421338, -25.614134], [125.546052, -25.527712], [125.649515, -25.420951], [125.727759, -25.298], [125.777826, -25.163624], [125.797871, -25.02302] ] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "marker-color": "#F00", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [130.815827, -27.497621], [130.799128, -27.356539], [130.751842, -27.221049], [130.675881, -27.096326], [130.574227, -26.987119], [130.450806, -26.897575], [130.310336, -26.831084], [130.15815, -26.790158], [130, -26.776342], [129.84185, -26.790158], [129.689664, -26.831084], [129.549194, -26.897575], [129.425773, -26.987119], [129.324119, -27.096326], [129.248158, -27.221049], [129.200872, -27.356539], [129.184173, -27.497621], [129.198819, -27.638884], [129.244365, -27.77489], [129.319164, -27.900385], [129.420409, -28.010502], [129.544238, -28.100956], [129.68587, -28.16822], [129.839797, -28.209661], [130, -28.223658], [130.160203, -28.209661], [130.31413, -28.16822], [130.455762, -28.100956], [130.579591, -28.010502], [130.680836, -27.900385], [130.755635, -27.77489], [130.801181, -27.638884], [130.815827, -27.497621] ] ] } } ] } ================================================ FILE: packages/turf-buffer/test/out/issue-#783.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "marker-color": "#F00", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [4.946663, 52.509462], [4.946723, 52.509438], [4.947187, 52.509292], [4.9472, 52.509288], [4.94727, 52.509268], [4.947349, 52.509252], [4.947683, 52.509208], [4.947753, 52.509203], [4.947824, 52.509206], [4.947892, 52.509218], [4.947955, 52.509237], [4.948012, 52.509263], [4.948059, 52.509295], [4.948095, 52.509332], [4.948119, 52.509372], [4.94813, 52.509415], [4.948127, 52.509458], [4.948111, 52.5095], [4.948082, 52.509539], [4.948042, 52.509574], [4.947991, 52.509604], [4.947931, 52.509628], [4.947501, 52.509764], [4.947472, 52.509772], [4.946877, 52.509922], [4.94681, 52.509934], [4.94674, 52.509939], [4.94667, 52.509935], [4.946602, 52.509924], [4.946539, 52.509904], [4.946484, 52.509878], [4.946437, 52.509846], [4.946401, 52.509809], [4.946378, 52.509769], [4.946367, 52.509726], [4.94637, 52.509684], [4.946386, 52.509642], [4.946415, 52.509603], [4.946455, 52.509568], [4.946506, 52.509538], [4.946663, 52.509462] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "marker-color": "#F00", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [4.947105, 52.509714], [4.947098, 52.509758], [4.947077, 52.5098], [4.947043, 52.509839], [4.946997, 52.509873], [4.946941, 52.509901], [4.946877, 52.509922], [4.946808, 52.509935], [4.946736, 52.509939], [4.946664, 52.509935], [4.946595, 52.509922], [4.946531, 52.509901], [4.946475, 52.509873], [4.946429, 52.509839], [4.946395, 52.5098], [4.946374, 52.509758], [4.946367, 52.509714], [4.946374, 52.50967], [4.946395, 52.509628], [4.946429, 52.509589], [4.946475, 52.509555], [4.946531, 52.509527], [4.946595, 52.509506], [4.946664, 52.509493], [4.946736, 52.509489], [4.946808, 52.509493], [4.946877, 52.509506], [4.946941, 52.509527], [4.946997, 52.509555], [4.947043, 52.509589], [4.947077, 52.509628], [4.947098, 52.50967], [4.947105, 52.509714] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "marker-color": "#F00", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [4.94813, 52.509428], [4.948123, 52.509472], [4.948102, 52.509514], [4.948068, 52.509553], [4.948022, 52.509587], [4.947966, 52.509615], [4.947902, 52.509636], [4.947833, 52.509649], [4.947761, 52.509653], [4.947689, 52.509649], [4.94762, 52.509636], [4.947556, 52.509615], [4.9475, 52.509587], [4.947454, 52.509553], [4.94742, 52.509514], [4.947399, 52.509472], [4.947392, 52.509428], [4.947399, 52.509384], [4.94742, 52.509342], [4.947454, 52.509303], [4.9475, 52.509269], [4.947556, 52.509241], [4.94762, 52.50922], [4.947689, 52.509207], [4.947761, 52.509203], [4.947833, 52.509207], [4.947902, 52.50922], [4.947966, 52.509241], [4.948022, 52.509269], [4.948068, 52.509303], [4.948102, 52.509342], [4.948123, 52.509384], [4.94813, 52.509428] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "marker-color": "#00F", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [4.946893, 52.509638], [4.947357, 52.509492], [4.947427, 52.509472], [4.947761, 52.509428], [4.947331, 52.509564], [4.946736, 52.509714], [4.946893, 52.509638] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "marker-color": "#00F", "fill-opacity": 0.3 }, "geometry": { "type": "Point", "coordinates": [4.946736, 52.509714] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "marker-color": "#00F", "fill-opacity": 0.3 }, "geometry": { "type": "Point", "coordinates": [4.947761, 52.509428] } } ] } ================================================ FILE: packages/turf-buffer/test/out/issue-#801-Ecuador.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "marker-color": "#F00", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-78.49519, -0.222456], [-78.495468, -0.219633], [-78.496292, -0.216918], [-78.497629, -0.214416], [-78.499429, -0.212222], [-78.501622, -0.210422], [-78.504125, -0.209085], [-78.50684, -0.208261], [-78.509663, -0.207983], [-78.512487, -0.208261], [-78.515202, -0.209085], [-78.517704, -0.210422], [-78.519897, -0.212222], [-78.521697, -0.214416], [-78.523035, -0.216918], [-78.523859, -0.219633], [-78.524137, -0.222456], [-78.523859, -0.22528], [-78.523035, -0.227995], [-78.521697, -0.230497], [-78.519897, -0.232691], [-78.517704, -0.23449], [-78.515202, -0.235828], [-78.512487, -0.236652], [-78.509663, -0.23693], [-78.50684, -0.236652], [-78.504125, -0.235828], [-78.501622, -0.23449], [-78.499429, -0.232691], [-78.497629, -0.230497], [-78.496292, -0.227995], [-78.495468, -0.22528], [-78.49519, -0.222456] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "marker-color": "#F00", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-78.522254, -0.215278], [-78.52338, -0.217771], [-78.524018, -0.22043], [-78.524144, -0.223163], [-78.523753, -0.22587], [-78.52286, -0.228455], [-78.521497, -0.230826], [-78.519712, -0.232898], [-78.51757, -0.234598], [-78.515145, -0.235864], [-78.512526, -0.236651], [-78.512499, -0.236657], [-78.50982, -0.236937], [-78.507136, -0.236716], [-78.504539, -0.236001], [-78.50212, -0.234818], [-78.499961, -0.233207], [-78.498139, -0.231224], [-78.496715, -0.228937], [-78.496707, -0.228921], [-78.495717, -0.226356], [-78.495229, -0.223649], [-78.495263, -0.220899], [-78.495815, -0.218205], [-78.496868, -0.215664], [-78.498382, -0.213369], [-78.500303, -0.211401], [-78.502561, -0.209832], [-78.505076, -0.208718], [-78.5051, -0.20871], [-78.507864, -0.208081], [-78.510698, -0.208003], [-78.513493, -0.208479], [-78.516142, -0.209491], [-78.518542, -0.211], [-78.520602, -0.212948], [-78.522243, -0.21526], [-78.522254, -0.215278] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "marker-color": "#00F", "fill-opacity": 0.3 }, "geometry": { "type": "Point", "coordinates": [-78.50966334342957, -0.22245649236909099] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "marker-color": "#00F", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-78.5096874833107, -0.22245917455788858], [-78.50966066122055, -0.22246453893548376], [-78.5096526145935, -0.2224484458026982], [-78.50967675447464, -0.2224403992362927], [-78.5096874833107, -0.22245917455788858] ] ] } } ] } ================================================ FILE: packages/turf-buffer/test/out/issue-#801.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 2, "stroke-opacity": 1, "fill": "#F00", "fill-opacity": 0.3, "marker-color": "#F00" }, "geometry": { "type": "Polygon", "coordinates": [ [ [5.825459, 50.760621], [5.821286, 50.759436], [5.81757, 50.757749], [5.814458, 50.755629], [5.812076, 50.753159], [5.810518, 50.750439], [5.809846, 50.747577], [5.810088, 50.744688], [5.810093, 50.744665], [5.811212, 50.741909], [5.813162, 50.739344], [5.815867, 50.73707], [5.819223, 50.735175], [5.823099, 50.733732], [5.827347, 50.732797], [5.831801, 50.732406], [5.836291, 50.732575], [5.840641, 50.733296], [5.844684, 50.734542], [5.844719, 50.734555], [5.848414, 50.736345], [5.85146, 50.738572], [5.853731, 50.741142], [5.855133, 50.74395], [5.855608, 50.74688], [5.855608, 50.746897], [5.855201, 50.74962], [5.853991, 50.752245], [5.852022, 50.75468], [5.849364, 50.756837], [5.846112, 50.758639], [5.842382, 50.760022], [5.838307, 50.760936], [5.834032, 50.761349], [5.829712, 50.761245], [5.825499, 50.760629], [5.825459, 50.760621] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "marker-color": "#F00", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [5.855589, 50.746885], [5.855151, 50.749708], [5.853851, 50.752424], [5.851738, 50.754926], [5.848893, 50.75712], [5.845427, 50.75892], [5.841471, 50.760258], [5.837179, 50.761082], [5.832716, 50.76136], [5.828252, 50.761082], [5.82396, 50.760258], [5.820005, 50.75892], [5.816538, 50.75712], [5.813694, 50.754926], [5.811581, 50.752424], [5.81028, 50.749708], [5.809842, 50.746885], [5.810283, 50.744061], [5.811586, 50.741347], [5.8137, 50.738845], [5.816545, 50.736652], [5.820011, 50.734852], [5.823965, 50.733515], [5.828255, 50.732692], [5.832716, 50.732414], [5.837177, 50.732692], [5.841466, 50.733515], [5.84542, 50.734852], [5.848886, 50.736652], [5.851731, 50.738845], [5.853846, 50.741347], [5.855148, 50.744061], [5.855589, 50.746885] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 2, "stroke-opacity": 1, "fill": "#00F", "fill-opacity": 0.3, "marker-color": "#00F" }, "geometry": { "type": "Polygon", "coordinates": [ [ [5.832694172859192, 50.74689044349633], [5.832699537277222, 50.74686838040257], [5.832734405994415, 50.746881957692274], [5.832734405994415, 50.746898929298894], [5.832694172859192, 50.74689044349633] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "marker-color": "#00F", "fill-opacity": 0.3 }, "geometry": { "type": "Point", "coordinates": [5.83271563053131, 50.746887049174894] } } ] } ================================================ FILE: packages/turf-buffer/test/out/issue-#815.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "radius": 850, "units": "meters", "stroke": "#F00", "fill": "#F00", "marker-color": "#F00", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.404713, 52.004297], [9.40692, 52.004465], [9.409044, 52.004873], [9.411015, 52.005507], [9.41277, 52.006348], [9.414254, 52.007368], [10.289477, 52.71537], [11.37991, 52.71535], [12.432689, 52.515627], [12.435096, 52.515312], [12.437558, 52.515289], [12.439981, 52.515558], [12.44227, 52.51611], [12.444339, 52.516922], [12.446108, 52.517965], [12.447508, 52.519197], [12.448487, 52.520572], [12.449005, 52.522037], [12.449044, 52.523535], [12.448602, 52.525009], [12.447696, 52.526402], [12.44636, 52.527661], [12.444646, 52.528737], [12.44262, 52.529589], [12.440359, 52.530184], [11.385514, 52.730298], [11.381932, 52.730629], [10.283107, 52.730629], [10.280823, 52.730493], [10.278617, 52.730107], [10.276563, 52.729486], [10.274729, 52.72865], [10.273175, 52.727627], [9.397908, 52.019453], [7.162288, 51.951892], [7.159889, 51.95165], [7.157612, 51.951123], [7.155546, 51.950333], [7.15377, 51.94931], [7.152352, 51.948093], [7.151347, 51.946728], [7.150793, 51.94527], [7.150711, 51.943772], [7.151105, 51.942294], [7.151959, 51.940891], [7.153241, 51.939618], [7.154901, 51.938523], [7.156875, 51.937649], [7.159088, 51.93703], [7.161454, 51.936688], [7.163883, 51.936638], [9.404713, 52.004297] ] ] } }, { "type": "Feature", "properties": { "radius": 850, "units": "meters", "stroke": "#00F", "fill": "#00F", "marker-color": "#00F", "fill-opacity": 0.3 }, "geometry": { "type": "LineString", "coordinates": [ [7.163085937499999, 51.944264879028765], [9.404296875, 52.01193653675363], [10.283203125, 52.72298552457069], [11.3818359375, 52.72298552457069], [12.436523437499998, 52.522905940278065] ] } } ] } ================================================ FILE: packages/turf-buffer/test/out/issue-#900.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "marker-color": "#F00", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.781978, 22.298424], [-85.781276, 22.301429], [-85.695322, 22.674135], [-85.593371, 23.113101], [-85.413961, 23.834033], [-84.647752, 25.037937], [-84.580175, 25.174848], [-84.546767, 25.319495], [-84.474485, 26.008813], [-84.447989, 26.266547], [-84.436985, 26.291701], [-84.431297, 26.305102], [-84.146848, 26.99621], [-83.128683, 27.368986], [-82.979773, 27.438288], [-82.849108, 27.531444], [-82.64844, 27.705384], [-82.643585, 27.709618], [-82.058224, 28.221519], [-81.960679, 28.323011], [-81.886155, 28.437263], [-81.837318, 28.560361], [-81.815969, 28.688063], [-81.776017, 29.427353], [-81.726796, 30.299168], [-80.489897, 31.763904], [-80.456336, 31.80622], [-78.905548, 33.884982], [-78.850951, 33.968979], [-78.681124, 34.278244], [-78.680034, 34.280234], [-78.119364, 35.301117], [-78.107153, 35.324315], [-77.992635, 35.552933], [-77.803532, 35.765402], [-77.43621, 36.167297], [-77.433531, 36.170231], [-77.164954, 36.464945], [-76.591254, 37.085905], [-76.163817, 37.49513], [-76.031595, 37.587953], [-76.009537, 37.603927], [-75.758955, 37.790835], [-75.654889, 37.882661], [-75.268384, 38.28711], [-75.261407, 38.294472], [-75.164106, 38.398406], [-75.037393, 38.529636], [-74.924009, 38.643126], [-74.891665, 38.67753], [-74.840396, 38.735609], [-73.88062, 39.241186], [-73.865287, 39.249333], [-73.153991, 39.631774], [-71.847088, 40.30122], [-71.313518, 40.476925], [-69.926561, 40.577223], [-69.706462, 40.611465], [-69.503107, 40.682775], [-66.541592, 42.001943], [-56.145818, 44.917837], [-51.731722, 45.801252], [-51.631093, 45.823282], [-50.096296, 46.208571], [-50.093188, 46.209332], [-49.714304, 46.301881], [-42.740444, 47.08652], [-39.914147, 47.279184], [-39.628707, 47.322726], [-37.688819, 47.796385], [-29.76642, 49.299121], [-27.65547, 49.585398], [-19.953135, 50.290466], [-19.332349, 50.301932], [-15.061331, 50.295463], [-15.019343, 50.295194], [-14.033475, 50.296457], [-13.987355, 50.296921], [-8.564979, 50.304463], [-8.523582, 50.304103], [-8.277108, 50.304468], [-8.273464, 50.304473], [-8.04695, 50.304828], [-5.981137, 50.244418], [-4.109967, 50.157158], [-2.801869, 50.07763], [-2.773207, 50.07554], [-2.472277, 50.019626], [-1.9627, 49.922088], [-1.724106, 49.892755], [-1.47996, 49.895273], [-1.241353, 49.929473], [-1.019129, 49.993753], [-0.507181, 50.182376], [-0.016134, 50.206147], [0.21236, 50.230852], [0.428867, 50.282647], [0.624634, 50.359411], [0.791669, 50.458023], [0.923034, 50.574472], [1.013127, 50.704008], [1.057926, 50.841319], [1.055193, 50.980731], [1.004628, 51.116432], [0.967487, 51.164994], [0.950135, 51.288093], [0.887702, 51.415723], [0.783609, 51.533267], [0.641589, 51.63613], [0.46696, 51.720249], [0.266442, 51.782263], [0.047902, 51.819664], [-0.179976, 51.830911], [-0.408066, 51.815508], [-0.627212, 51.774034], [-0.828642, 51.708119], [-1.004362, 51.620379], [-1.147499, 51.5143], [-1.169319, 51.489418], [-1.2666, 51.470919], [-1.517856, 51.402595], [-1.730443, 51.325183], [-1.744923, 51.327985], [-1.748295, 51.328634], [-2.152679, 51.405316], [-2.347337, 51.430892], [-2.482471, 51.441261], [-2.494988, 51.442173], [-3.846665, 51.528929], [-3.849508, 51.529095], [-5.776165, 51.625169], [-5.779622, 51.625312], [-7.92658, 51.69455], [-7.967629, 51.695092], [-8.219409, 51.695469], [-8.449873, 51.695827], [-13.985361, 51.703587], [-14.954673, 51.704823], [-19.329964, 51.721431], [-19.332181, 51.721401], [-20.008699, 51.710302], [-20.081332, 51.707506], [-28.044927, 50.994916], [-28.050976, 50.99417], [-30.230636, 50.701804], [-30.245952, 50.699538], [-38.380426, 49.164102], [-38.391558, 49.161539], [-40.238558, 48.712145], [-42.992101, 48.523681], [-43.00017, 48.523022], [-50.222824, 47.707404], [-50.361605, 47.680834], [-50.814648, 47.569859], [-52.328129, 47.188498], [-56.790094, 46.28908], [-56.802898, 46.286179], [-67.424607, 43.277322], [-67.512282, 43.243716], [-70.345149, 41.969509], [-71.677673, 41.86767], [-71.824933, 41.847028], [-71.965803, 41.80999], [-72.720606, 41.558416], [-72.866754, 41.497148], [-74.25342, 40.776549], [-74.261429, 40.772263], [-74.97174, 40.384314], [-76.066145, 39.797569], [-76.19261, 39.714849], [-76.297054, 39.6167], [-76.379539, 39.52288], [-76.385222, 39.51633], [-76.436001, 39.457031], [-76.535141, 39.355045], [-76.543244, 39.346567], [-76.675427, 39.205795], [-76.682522, 39.198116], [-76.7782, 39.092947], [-77.108586, 38.737629], [-77.290265, 38.599282], [-77.462115, 38.476218], [-77.556501, 38.397341], [-78.03655, 37.926225], [-78.065556, 37.895947], [-78.643629, 37.252648], [-78.644435, 37.251743], [-78.907359, 36.95506], [-79.269413, 36.547817], [-79.274221, 36.542329], [-79.521876, 36.255943], [-79.618551, 36.109128], [-79.75952, 35.813603], [-80.291932, 34.800485], [-80.431931, 34.534396], [-81.901572, 32.502656], [-83.2387, 30.874767], [-83.315578, 30.757756], [-83.364558, 30.631707], [-83.383999, 30.5012], [-83.423899, 29.428365], [-83.424057, 29.424121], [-83.440565, 28.954225], [-83.794778, 28.637807], [-83.871043, 28.570503], [-85.083487, 28.116455], [-85.237099, 28.040902], [-85.369435, 27.9401], [-85.474439, 27.818787], [-85.547384, 27.682618], [-85.936036, 26.695255], [-85.98223, 26.585166], [-86.028762, 26.397912], [-86.05916, 26.045223], [-86.10682, 25.505866], [-86.830898, 24.334597], [-86.880684, 24.237401], [-86.913395, 24.135683], [-87.106816, 23.306278], [-87.10927, 23.295396], [-87.205828, 22.850784], [-87.206226, 22.848942], [-87.286385, 22.477447], [-87.592585, 21.113445], [-87.608274, 20.980224], [-87.594973, 20.848824], [-87.55328, 20.724245], [-87.48485, 20.61121], [-87.392328, 20.513991], [-87.279241, 20.436261], [-87.149872, 20.380956], [-87.009101, 20.350174], [-86.862234, 20.345097], [-86.714811, 20.365945], [-86.572412, 20.411964], [-86.440454, 20.481451], [-86.32399, 20.571804], [-86.227519, 20.679616], [-86.154809, 20.800795], [-86.108745, 20.930714], [-85.781978, 22.298424] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "marker-color": "#00F", "fill-opacity": 0.3 }, "geometry": { "type": "LineString", "coordinates": [ [-86.85, 21.025], [-86.53333, 22.39167], [-86.45, 22.765], [-86.35, 23.21], [-86.15, 24.04], [-85.33333, 25.34167], [-85.26667, 26.03], [-85.23333, 26.38333], [-85.18333, 26.5], [-84.78333, 27.49333], [-83.41667, 28], [-83.21667, 28.175], [-82.63333, 28.69], [-82.6, 29.43], [-82.55, 30.505], [-81.18333, 32.14667], [-79.65, 34.23333], [-79.48333, 34.54333], [-78.93333, 35.56667], [-78.78333, 35.87333], [-78.53333, 36.15833], [-78.16667, 36.565], [-77.9, 36.86167], [-77.31667, 37.50167], [-76.83333, 37.97], [-76.65, 38.1], [-76.4, 38.28833], [-76.01667, 38.695], [-75.91667, 38.80333], [-75.78333, 38.94333], [-75.66667, 39.06167], [-75.6, 39.13833], [-75.51667, 39.23167], [-74.41667, 39.81667], [-73.7, 40.205], [-72.31667, 40.91833], [-71.56667, 41.16667], [-70.01667, 41.28167], [-67, 42.63333], [-56.46667, 45.60333], [-52, 46.5], [-50.45, 46.89], [-50, 47], [-42.86667, 47.805], [-40, 48], [-38.03333, 48.48], [-30, 50], [-27.85, 50.29], [-20, 51], [-19.33333, 51.01167], [-15, 51], [-14, 51], [-8.5, 51], [-8.25, 51], [-8, 51], [-5.88333, 50.935], [-3.98333, 50.84333], [-2.65, 50.76], [-2.51667, 50.75], [-2.11667, 50.675], [-1.6, 50.575], [-0.93333, 50.82], [-0.75, 50.855], [-0.08333, 50.88667], [-0.18333, 50.985], [-0.18333, 51.14833] ] } } ] } ================================================ FILE: packages/turf-buffer/test/out/issue-#916.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "marker-color": "#F00", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [123.875405, -24.844229], [123.891341, -24.992682], [123.94066, -25.134994], [124.021365, -25.265077], [124.130088, -25.377346], [124.262223, -25.466967], [124.267663, -25.469912], [124.209316, -25.538934], [124.141104, -25.662878], [124.100217, -25.79622], [124.088233, -25.934105], [124.105687, -26.071497], [124.576037, -28.032811], [124.622969, -28.163614], [124.697238, -28.284168], [124.796231, -28.390091], [124.916407, -28.477521], [125.053417, -28.54326], [125.202268, -28.584896], [125.357508, -28.600897], [130.930612, -28.60137], [131.10438, -28.581682], [131.269317, -28.529936], [131.417837, -28.44852], [134.894577, -25.962349], [134.998135, -25.870158], [135.081308, -25.762626], [135.141397, -25.643322], [135.176488, -25.516192], [135.185504, -25.385427], [135.168232, -25.255327], [134.177452, -20.860425], [134.131991, -20.722495], [134.058234, -20.595761], [133.959165, -20.48524], [133.838745, -20.395293], [133.70175, -20.329466], [133.553587, -20.290351], [129.879656, -19.635427], [129.727936, -19.620971], [129.576163, -19.634937], [129.430243, -19.67678], [129.295866, -19.744873], [124.255759, -22.789662], [124.130346, -22.878886], [124.026795, -22.989412], [123.949336, -23.11678], [123.901175, -23.255842], [123.884358, -23.40096], [123.875405, -24.844229] ], [ [126.285121, -25.787652], [126.345597, -25.706701], [126.406888, -25.572739], [126.882811, -24.117699], [130.052938, -22.290395], [131.567079, -22.750462], [132.116592, -24.955276], [130.65533, -25.799776], [126.668644, -25.976672], [126.285121, -25.787652] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "marker-color": "#00F", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [124.67285156250001, -24.846565348219734], [125.63964843750001, -25.36388227274024], [126.21093749999999, -23.644524198573677], [129.9462890625, -21.493963563064455], [132.2314453125, -22.187404991398775], [133.0224609375, -25.28443774698303], [130.9130859375, -26.509904531413916], [126.474609375, -26.706359857633526], [124.892578125, -25.918526162075153], [125.3759765625, -27.877928333679495], [130.9130859375, -27.877928333679495], [134.38476562499997, -25.403584973186703], [133.41796874999997, -21.002471054356715], [129.7265625, -20.34462694382967], [124.67285156250001, -23.40276490540795], [124.67285156250001, -24.846565348219734] ] ] } } ] } ================================================ FILE: packages/turf-buffer/test/out/linestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "marker-color": "#F00", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [127.226349, -24.892171], [132.807901, -21.503389], [137.052314, -21.128511], [141.758663, -23.243123], [146.059183, -28.942782], [146.284529, -31.484571], [146.314018, -31.623474], [146.375054, -31.754947], [146.465385, -31.873889], [146.581588, -31.975672], [146.719186, -32.056327], [146.872829, -32.112704], [147.036503, -32.142605], [147.203784, -32.14487], [147.3681, -32.119424], [147.523008, -32.067279], [147.662467, -31.99049], [147.781076, -31.892066], [147.874293, -31.775847], [147.938604, -31.646348], [147.971649, -31.508575], [147.972291, -31.367831], [147.687031, -28.633746], [147.661042, -28.505728], [147.609177, -28.383807], [147.533197, -28.271939], [142.950497, -22.279041], [142.85936, -22.17374], [142.74868, -22.08594], [142.622311, -22.018678], [137.544829, -19.739994], [137.407135, -19.689593], [137.261756, -19.664902], [137.114013, -19.666826], [132.479053, -20.07577], [132.34631, -20.096444], [132.219383, -20.138457], [132.10211, -20.200542], [126.23078, -23.754181], [126.092931, -23.85318], [125.982217, -23.977427], [120.427656, -31.160441], [120.343641, -31.28218], [120.288894, -31.415325], [120.265614, -31.554804], [120.274822, -31.695288], [120.316305, -31.831386], [120.3886, -31.957853], [120.489029, -32.069793], [120.613789, -32.162853], [120.758086, -32.233398], [120.916321, -32.27866], [121.08231, -32.296851], [121.249539, -32.287245], [121.41144, -32.250203], [121.561658, -32.187167], [121.694322, -32.100596], [121.804284, -31.99387], [127.226349, -24.892171] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "marker-color": "#00F", "fill-opacity": 0.3 }, "geometry": { "type": "LineString", "coordinates": [ [121.11328124999999, -31.57853542647337], [126.65039062499999, -24.367113562651262], [132.5390625, -20.797201434306984], [137.197265625, -20.385825381874263], [142.294921875, -22.67484735118852], [146.865234375, -28.690587654250685], [147.12890625, -31.42866311735861] ] } } ] } ================================================ FILE: packages/turf-buffer/test/out/multi-linestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "marker-color": "#F00", "fill-opacity": 0.3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [143.765247, -25.247522], [141.455867, -29.009434], [139.223197, -30.779591], [139.112219, -30.884052], [139.026975, -31.005126], [138.970807, -31.138204], [138.945979, -31.2782], [138.953577, -31.419744], [138.993441, -31.557387], [139.064158, -31.685808], [139.163095, -31.800026], [139.286483, -31.895597], [139.429562, -31.968794], [139.586763, -32.01676], [139.751931, -32.03762], [139.918584, -32.030564], [140.080179, -31.995877], [140.230388, -31.934924], [140.363359, -31.850095], [142.692394, -29.983562], [142.78003, -29.899073], [142.851031, -29.803639], [145.290397, -25.738352], [145.346879, -25.614211], [145.376617, -25.482823], [145.378666, -25.348758], [145.141683, -22.501706], [145.115809, -22.362762], [145.061067, -22.231178], [144.97962, -22.111971], [144.874623, -22.009679], [144.750104, -21.928187], [144.610804, -21.870588], [144.462005, -21.839073], [144.309339, -21.834843], [144.158581, -21.85807], [144.015443, -21.907886], [143.885363, -21.982415], [143.773312, -22.078836], [143.6836, -22.193489], [143.619714, -22.322006], [143.584178, -22.459476], [143.578446, -22.600625], [143.765247, -25.247522] ] ], [ [ [125.502014, -19.90512], [122.192112, -21.370305], [122.060835, -21.441358], [121.946965, -21.534722], [121.854855, -21.646848], [121.788055, -21.773475], [121.749175, -21.909778], [121.739782, -22.050551], [121.760327, -22.190403], [121.810111, -22.323958], [121.887304, -22.446067], [121.988998, -22.552003], [122.111311, -22.637652], [122.24953, -22.699676], [122.398296, -22.735648], [122.551816, -22.744152], [122.704097, -22.724846], [122.849193, -22.678472], [126.263495, -21.16592], [127.17094, -22.640504], [126.80862, -22.768147], [126.616183, -22.865783], [121.577431, -26.153688], [121.456519, -26.244682], [121.357587, -26.354855], [121.284446, -26.480023], [121.239957, -26.615424], [121.225915, -26.75589], [121.242965, -26.896046], [121.290567, -27.030506], [121.36699, -27.154087], [121.469374, -27.262003], [121.593818, -27.350061], [121.735529, -27.414825], [121.889006, -27.453757], [122.048263, -27.465324], [122.207068, -27.449061], [122.359201, -27.405593], [122.498716, -27.336609], [127.478058, -24.080986], [127.967029, -23.908079], [129.954409, -26.960908], [130.055211, -27.081025], [130.18189, -27.179931], [130.328983, -27.253314], [130.4901, -27.297964], [133.148933, -27.74605], [133.002807, -27.879978], [132.903061, -27.99112], [132.829583, -28.117282], [132.785262, -28.253657], [132.771901, -28.39503], [132.79013, -28.535977], [132.839368, -28.671072], [132.91782, -28.795093], [133.022538, -28.903232], [133.149518, -28.991281], [133.293855, -29.055808], [133.44993, -29.09429], [133.611639, -29.105222], [133.772646, -29.088175], [133.926645, -29.043819], [134.067618, -28.973888], [134.190086, -28.881114], [139.019037, -24.165142], [139.109606, -24.051239], [139.174139, -23.923485], [139.21026, -23.786749], [139.216691, -23.646227], [139.193285, -23.507239], [138.995251, -22.792643], [140.716896, -23.356558], [140.867055, -23.389837], [141.021476, -23.395481], [141.174128, -23.373279], [141.319053, -23.324106], [141.450615, -23.249887], [141.563723, -23.153521], [141.654034, -23.038757], [141.718118, -22.910045], [141.753583, -22.772361], [141.759155, -22.631008], [141.734716, -22.491412], [141.681289, -22.358915], [141.600993, -22.238574], [141.496944, -22.134969], [141.373138, -22.052037], [141.234294, -21.992927], [139.265957, -21.345329], [139.054544, -21.303639], [138.583103, -21.272225], [138.163496, -19.678052], [138.117593, -19.552441], [138.048151, -19.436893], [137.957549, -19.335285], [137.848858, -19.251019], [134.954893, -17.346373], [134.815526, -17.271828], [134.662973, -17.226852], [134.503967, -17.213425], [134.345515, -17.232141], [128.832464, -18.352277], [128.627235, -18.419963], [126.876904, -19.26387], [126.212817, -18.166685], [126.126524, -18.050956], [126.01833, -17.9533], [125.892397, -17.87743], [125.753538, -17.826222], [125.607039, -17.80161], [125.458459, -17.80452], [125.313432, -17.834834], [125.177458, -17.891395], [125.055704, -17.972054], [124.952812, -18.073747], [124.87273, -18.192606], [124.818558, -18.324104], [124.792428, -18.463222], [124.795415, -18.604637], [124.827482, -18.74292], [124.887474, -18.87275], [125.502014, -19.90512] ], [ [136.954631, -21.152367], [132.496579, -20.73428], [132.362814, -20.730613], [132.23036, -20.748474], [132.103129, -20.787336], [128.645339, -22.109076], [127.648016, -20.518553], [129.236219, -19.751878], [134.35467, -18.715641], [136.73669, -20.288885], [136.954631, -21.152367] ], [ [129.453043, -23.369464], [132.52325, -22.194093], [137.336301, -22.633313], [137.560925, -23.486259], [134.487344, -26.497859], [134.34539, -26.46318], [131.154832, -25.940326], [129.453043, -23.369464] ] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "marker-color": "#00F", "fill-opacity": 0.3 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [122.03613281249999, -26.74561038219901], [127.08984375000001, -23.443088931121775], [132.4072265625, -21.453068633086772], [138.9990234375, -22.024545601240337], [140.9765625, -22.67484735118852] ], [ [125.5517578125, -18.521283325496263], [130.6494140625, -26.588527147308614], [134.208984375, -27.17646913189887] ], [ [122.51953124999999, -22.024545601240337], [128.9794921875, -19.062117883514652], [134.5166015625, -17.936928637549432], [137.4169921875, -19.84939395842278], [138.427734375, -23.68477416688374], [133.59375, -28.38173504322308] ], [ [144.3603515625, -22.55314747840318], [144.580078125, -25.403584973186703], [142.11914062499997, -29.458731185355315], [139.7900390625, -31.316101383495635] ] ] } } ] } ================================================ FILE: packages/turf-buffer/test/out/multi-point.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "radius": 300, "stroke": "#F00", "fill": "#F00", "marker-color": "#F00", "fill-opacity": 0.3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [149.764522, -24.629618], [149.578309, -23.803061], [149.222946, -23.023748], [148.713858, -22.320174], [148.07114, -21.717826], [147.318813, -21.238427], [146.484075, -20.899278], [145.596519, -20.712722], [144.687337, -20.685733], [143.788463, -20.819653], [142.931705, -21.110094], [142.147839, -21.547016], [141.465706, -22.114982], [140.911305, -22.79359], [140.506894, -23.55808], [140.2701, -24.380099], [140.213044, -25.228623], [140.341509, -26.071029], [140.654203, -26.874291], [141.1422, -27.606306], [141.788699, -28.237278], [142.569213, -28.741126], [143.452331, -29.096798], [144.401088, -29.2894], [145.374895, -29.311015], [146.331865, -29.161121], [147.231271, -28.846565], [148.035849, -28.381095], [148.713687, -27.784518], [149.239553, -27.081587], [149.595606, -26.300739], [149.771577, -25.472781], [149.764522, -24.629618] ] ], [ [ [125.439104, -20.704873], [125.312663, -20.685733], [124.403481, -20.712722], [123.515925, -20.899278], [122.681187, -21.238427], [121.92886, -21.717826], [121.286142, -22.320174], [120.777054, -23.023748], [120.421691, -23.803061], [120.235478, -24.629618], [120.228423, -25.472781], [120.404394, -26.300739], [120.760447, -27.081587], [121.286313, -27.784518], [121.964151, -28.381095], [122.768729, -28.846565], [123.668135, -29.161121], [124.625105, -29.311015], [125.598912, -29.2894], [126.547669, -29.096798], [127.430787, -28.741126], [128.211301, -28.237278], [128.8578, -27.606306], [129.345797, -26.874291], [129.658491, -26.071029], [129.786956, -25.228623], [129.7299, -24.380099], [129.712115, -24.318635], [129.8424, -24.334624], [130.774232, -24.278531], [131.673708, -24.052706], [132.503141, -23.66657], [133.228575, -23.136255], [133.821432, -22.483729], [134.259647, -21.735667], [134.528303, -20.922151], [134.619783, -20.075319], [134.533568, -19.228031], [134.275772, -18.412598], [133.858523, -17.659632], [133.299238, -16.997], [132.619849, -16.448926], [131.845979, -16.035227], [131.006073, -15.770703], [130.130501, -15.664696], [129.250623, -15.720821], [128.397853, -15.936881], [127.602719, -16.304965], [126.893971, -16.811717], [126.297714, -17.438771], [125.836608, -18.163328], [125.529103, -18.958859], [125.388714, -19.795937], [125.423341, -20.643174], [125.439104, -20.704873] ] ] ] } }, { "type": "Feature", "properties": { "radius": 300, "stroke": "#00F", "fill": "#00F", "marker-color": "#00F", "fill-opacity": 0.3 }, "geometry": { "type": "MultiPoint", "coordinates": [ [145, -25], [130, -20], [125, -25] ] } } ] } ================================================ FILE: packages/turf-buffer/test/out/multi-polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "marker-color": "#F00", "fill-opacity": 0.3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [121.145783, -31.459451], [121.158, -31.59619], [121.200606, -31.728292], [121.272169, -31.85094], [121.370175, -31.959641], [121.49111, -32.050399], [121.630575, -32.119864], [121.783451, -32.165459], [121.944091, -32.185488], [133.939982, -32.210194], [133.941629, -32.22902], [133.988695, -32.369621], [134.068305, -32.499331], [134.177301, -32.612811], [134.311271, -32.705374], [134.464719, -32.773187], [134.631298, -32.813436], [142.910492, -33.81678], [143.071981, -33.81892], [143.230831, -33.795999], [143.381422, -33.74884], [143.518445, -33.679116], [143.637106, -33.589293], [143.733294, -33.482533], [143.803722, -33.362582], [143.846037, -33.233628], [143.858889, -33.100157], [143.927413, -16.857256], [143.915429, -16.713701], [143.873826, -16.575526], [143.804329, -16.448238], [143.709757, -16.336898], [143.593901, -16.245927], [137.148517, -11.883675], [137.035, -11.816879], [136.911099, -11.771276], [136.78082, -11.748339], [136.648372, -11.748811], [136.518031, -11.77268], [131.086813, -13.178115], [130.998133, -13.205339], [125.12985, -15.27805], [124.995767, -15.337194], [124.876405, -15.420651], [124.7764, -15.52519], [124.699661, -15.646763], [124.649213, -15.780653], [124.627077, -15.921654], [124.634186, -16.064272], [124.670333, -16.202932], [124.734174, -16.332199], [125.861079, -18.112439], [122.018938, -18.009867], [121.865865, -18.018561], [121.717901, -18.056127], [121.581009, -18.121045], [121.460716, -18.210692], [121.361898, -18.321447], [121.288591, -18.448835], [121.243821, -18.587699], [121.229479, -18.732406], [121.145783, -31.459451] ], [ [133.491932, -18.039639], [135.710963, -15.613575], [138.632672, -18.671504], [135.2085, -23.081941], [135.19159, -18.728533], [135.175759, -18.583655], [135.129733, -18.444753], [135.055446, -18.317429], [134.95595, -18.206808], [134.83529, -18.117333], [134.698333, -18.052588], [134.55058, -18.015167], [134.397948, -18.006568], [133.491932, -18.039639] ] ], [ [ [128.220025, -36.279319], [128.235287, -36.419139], [128.283727, -36.553792], [128.363658, -36.678175], [128.472165, -36.787548], [128.6052, -36.877732], [128.757722, -36.945264], [128.923895, -36.987546], [129.097319, -37.002944], [131.889478, -37.003302], [132.063412, -36.98787], [132.230217, -36.945405], [132.383433, -36.877551], [132.517164, -36.78693], [132.626313, -36.677036], [132.70678, -36.552091], [132.755614, -36.416881], [132.771101, -36.276561], [132.750862, -34.23139], [132.732564, -34.089398], [132.681218, -33.953141], [132.59895, -33.827894], [132.489042, -33.718486], [132.355801, -33.629121], [132.204381, -33.563223], [132.040592, -33.523314], [131.870685, -33.510915], [129.123583, -33.511267], [128.95313, -33.523778], [128.78874, -33.563938], [128.636721, -33.6302], [128.502937, -33.720014], [128.392587, -33.829915], [128.310014, -33.955658], [128.25853, -34.092366], [128.240274, -34.234724], [128.220025, -36.279319] ] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "marker-color": "#00F", "fill-opacity": 0.3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [121.9921875, -31.466153715024284], [134.4287109375, -31.466153715024284], [134.4287109375, -18.729501999072138], [121.9921875, -18.729501999072138], [121.9921875, -31.466153715024284] ] ], [ [ [125.3759765625, -15.961329081596647], [126.826171875, -18.22935133838667], [132.451171875, -18.062312304546715], [135.703125, -14.519780046326085], [139.6142578125, -18.60460138845525], [134.9560546875, -24.607069137709694], [134.7802734375, -32.10118973232094], [142.998046875, -33.100745405144245], [143.173828125, -16.84660510639629], [136.7138671875, -12.46876014482322], [131.2646484375, -13.88074584202559], [125.3759765625, -15.961329081596647] ] ], [ [ [129.111328125, -36.27970720524016], [131.8798828125, -36.27970720524016], [131.8798828125, -34.234512362369856], [129.111328125, -34.234512362369856], [129.111328125, -36.27970720524016] ] ] ] } } ] } ================================================ FILE: packages/turf-buffer/test/out/negative-buffer.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "radius": -200, "units": "miles", "stroke": "#F00", "fill": "#F00", "marker-color": "#F00", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [134.489191, -17.811384], [130.181752, -20.673464], [131.393542, -25.655566], [135.201218, -27.922057], [141.183829, -27.956599], [141.724503, -26.12273], [141.388146, -19.483057], [134.489191, -17.811384] ] ] } }, { "type": "Feature", "properties": { "radius": -200, "units": "miles", "stroke": "#00F", "fill": "#00F", "marker-color": "#00F", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [133.90136718749997, -14.647368383896618], [126.73828125, -19.352610894378625], [128.49609375, -27.371767300523032], [134.1650390625, -30.789036751261136], [143.7890625, -30.789036751261136], [144.9755859375, -26.391869671769022], [144.31640625, -17.14079039331664], [133.90136718749997, -14.647368383896618] ] ] } } ] } ================================================ FILE: packages/turf-buffer/test/out/north-latitude-points.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "marker-color": "#F00", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-97.442036, 74.434038], [-97.381016, 74.388139], [-97.112521, 74.266227], [-96.765629, 74.160316], [-96.35391, 74.074131], [-95.892472, 74.010651], [-95.397508, 73.972041], [-94.885898, 73.959607], [-94.374849, 73.973769], [-94.087763, 73.997372], [-94.085128, 73.997295], [-93.57229, 74.009553], [-93.076017, 74.04799], [-92.613227, 74.111306], [-92.200153, 74.197343], [-91.851945, 74.303127], [-91.582217, 74.42494], [-91.402533, 74.558414], [-91.321837, 74.698648], [-91.345852, 74.840365], [-91.476493, 74.978084], [-91.711354, 75.106336], [-92.043366, 75.219895], [-92.460698, 75.314018], [-92.947004, 75.384693], [-93.482055, 75.428855], [-94.042747, 75.444567], [-94.28658, 75.438903], [-94.439369, 75.450664], [-95.001778, 75.464097], [-95.563205, 75.448384], [-96.098954, 75.404219], [-96.585885, 75.33354], [-97.003742, 75.239413], [-97.336159, 75.12585], [-97.571292, 74.997594], [-97.702066, 74.859873], [-97.726078, 74.718157], [-97.64525, 74.577923], [-97.465317, 74.444452], [-97.442036, 74.434038] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "marker-color": "#00F", "fill-opacity": 0.3 }, "geometry": { "type": "MultiPoint", "coordinates": [ [-94.97955322265625, 74.74046209428195], [-94.90264892578125, 74.68325030051861], [-94.06494140625, 74.7209322003536] ] } } ] } ================================================ FILE: packages/turf-buffer/test/out/northern-polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "marker-color": "#F00", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.586148, 73.969761], [-94.060634, 73.996546], [-93.562762, 74.05099], [-93.111131, 74.131095], [-92.723285, 74.233888], [-92.415184, 74.355489], [-92.200612, 74.491218], [-92.176886, 74.511612], [-92.075347, 74.635411], [-92.0559, 74.762017], [-92.121138, 74.887572], [-92.143177, 74.912822], [-92.303751, 75.039533], [-92.554851, 75.15623], [-92.889336, 75.258675], [-93.296362, 75.343064], [-93.761636, 75.406204], [-94.267934, 75.445669], [-94.795881, 75.459926], [-94.873641, 75.460115], [-95.401271, 75.448499], [-95.909433, 75.411704], [-96.378733, 75.351153], [-96.458957, 75.338165], [-96.874599, 75.25522], [-97.218095, 75.153659], [-97.478068, 75.037307], [-97.646921, 74.91045], [-97.720856, 74.777651], [-97.699691, 74.643569], [-97.586524, 74.512789], [-97.387315, 74.389673], [-97.320449, 74.356691], [-97.001193, 74.230963], [-96.596925, 74.125476], [-96.125408, 74.044486], [-95.60618, 73.991212], [-95.059945, 73.967744], [-95.013332, 73.967051], [-94.630149, 73.968721], [-94.586148, 73.969761] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "marker-color": "#00F", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.81887817382812, 74.69068515369659], [-94.79827880859375, 74.71133916265154], [-94.82437133789062, 74.73630499357218], [-94.89852905273438, 74.73648576006866], [-94.976806640625, 74.72400796764163], [-94.91363525390625, 74.69032255967197], [-94.86488342285156, 74.68959734647507], [-94.81887817382812, 74.69068515369659] ] ] } } ] } ================================================ FILE: packages/turf-buffer/test/out/point.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "marker-color": "#F00", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [135.798459, -24.997869], [135.78222, -24.856777], [135.736028, -24.72126], [135.661742, -24.596496], [135.562272, -24.487242], [135.441458, -24.397651], [135.30392, -24.331119], [135.154887, -24.290167], [135, -24.276342], [134.845113, -24.290167], [134.69608, -24.331119], [134.558542, -24.397651], [134.437728, -24.487242], [134.338258, -24.596496], [134.263972, -24.72126], [134.21778, -24.856777], [134.201541, -24.997869], [134.215981, -25.139123], [134.260647, -25.275103], [134.333913, -25.400557], [134.433025, -25.510627], [134.554197, -25.601034], [134.692754, -25.668256], [134.843314, -25.709671], [135, -25.723658], [135.156686, -25.709671], [135.307246, -25.668256], [135.445803, -25.601034], [135.566975, -25.510627], [135.666087, -25.400557], [135.739353, -25.275103], [135.784019, -25.139123], [135.798459, -24.997869] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "marker-color": "#00F", "fill-opacity": 0.3 }, "geometry": { "type": "Point", "coordinates": [135, -25] } } ] } ================================================ FILE: packages/turf-buffer/test/out/polygon-with-holes.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "marker-color": "#F00", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [123.396129, -24.552892], [123.398728, -24.691824], [123.43081, -24.827676], [123.491271, -24.955376], [127.765022, -31.644259], [127.857726, -31.755151], [127.973551, -31.849002], [128.10836, -31.922413], [128.257291, -31.972713], [128.414939, -31.998068], [138.329141, -32.451275], [138.491912, -32.440129], [138.648986, -32.40274], [138.794502, -32.340506], [138.923056, -32.25575], [139.029913, -32.151626], [145.502669, -23.800029], [145.578901, -23.665233], [145.622351, -23.518861], [145.631202, -23.367426], [145.605179, -23.21764], [145.545542, -23.076121], [142.098542, -16.495192], [142.016382, -16.365716], [141.907866, -16.25563], [141.77779, -16.16976], [136.079778, -13.043891], [135.961491, -12.988928], [135.835169, -12.95519], [135.704742, -12.943725], [130.45059, -12.859153], [130.368086, -12.86109], [124.851575, -13.203457], [124.698878, -13.226176], [124.554578, -13.279234], [124.424919, -13.36033], [124.315525, -13.465951], [124.231162, -13.591522], [124.175535, -13.7316], [124.151118, -13.880099], [123.396129, -24.552892] ], [ [130.462457, -26.314888], [128.718067, -18.144009], [138.323214, -18.140031], [138.277108, -26.318328], [130.462457, -26.314888] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "marker-color": "#00F", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [124.18945312500001, -24.607069137709694], [128.49609375, -31.278550858946517], [138.33984375, -31.728167146023935], [144.84375, -23.40276490540795], [141.416015625, -16.804541076383455], [135.703125, -13.667338259654947], [130.4296875, -13.581920900545844], [124.892578125, -13.923403897723334], [124.18945312500001, -24.607069137709694] ], [ [129.79296875, -27.019984007982554], [139.0869140625, -27.019984007982554], [139.0869140625, -17.392579271057766], [127.79296875, -17.392579271057766], [129.79296875, -27.019984007982554] ] ] } } ] } ================================================ FILE: packages/turf-buffer/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { truncate } from "@turf/truncate"; import { featureEach } from "@turf/meta"; import { featureCollection, point, polygon, geometryCollection, } from "@turf/helpers"; import { buffer } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; var fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); // fixtures = fixtures.filter(({name}) => name === 'feature-collection-points'); test("turf-buffer", (t) => { fixtures.forEach((fixture) => { const filename = fixture.filename; const name = fixture.name; const geojson = fixture.geojson; const properties = geojson.properties || {}; const radius = properties.radius || 50; const units = properties.units || "miles"; const steps = properties.steps; const buffered = truncate( buffer(geojson, radius, { units: units, steps: steps }) ); // Add Results to FeatureCollection const results = featureCollection([]); featureEach(buffered, (feature) => results.features.push(colorize(feature, "#F00")) ); featureEach(geojson, (feature) => results.features.push(colorize(feature, "#00F")) ); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEqual(results, loadJsonFileSync(directories.out + filename), name); }); t.end(); }); // https://github.com/Turfjs/turf/pull/736 test("turf-buffer - Support Negative Buffer", (t) => { const poly = polygon([ [ [11, 0], [22, 4], [31, 0], [31, 11], [21, 15], [11, 11], [11, 0], ], ]); t.assert(buffer(poly, -50), "allow negative buffer param"); t.end(); }); test("turf-buffer - Support Geometry Objects", (t) => { const pt = point([61, 5]); const poly = polygon([ [ [11, 0], [22, 4], [31, 0], [31, 11], [21, 15], [11, 11], [11, 0], ], ]); const gc = geometryCollection([pt.geometry, poly.geometry]); t.assert(buffer(gc, 10), "support Geometry Collection"); t.assert(buffer(pt.geometry, 10), "support Point Geometry"); t.assert(buffer(poly.geometry, 10), "support Polygon Geometry"); t.end(); }); test("turf-buffer - Prevent Input Mutation", (t) => { const pt = point([61, 5]); const poly = polygon([ [ [11, 0], [22, 4], [31, 0], [31, 11], [21, 15], [11, 11], [11, 0], ], ]); const collection = featureCollection([pt, poly]); const beforePt = JSON.parse(JSON.stringify(pt)); const beforePoly = JSON.parse(JSON.stringify(poly)); const beforeCollection = JSON.parse(JSON.stringify(collection)); buffer(pt, 10); buffer(poly, 10); buffer(collection, 10); t.deepEqual(pt, beforePt, "pt should not mutate"); t.deepEqual(poly, beforePoly, "poly should not mutate"); t.deepEqual(collection, beforeCollection, "collection should not mutate"); t.end(); }); // https://github.com/Turfjs/turf/issues/745 // https://github.com/Turfjs/turf/pull/736#issuecomment-301937747 test("turf-buffer - morphological closing", (t) => { const poly = polygon([ [ [11, 0], [22, 4], [31, 0], [31, 11], [21, 15], [11, 11], [11, 0], ], ]); t.equal( buffer(poly, -500, { units: "miles" }), undefined, "empty geometry should be undefined" ); t.deepEqual( buffer(featureCollection([poly]), -500, { units: "miles" }), featureCollection([]), "empty geometries should be an empty FeatureCollection" ); t.end(); }); test("turf-buffer - undefined return", (t) => { const poly: GeoJSON.Feature = { type: "Feature", properties: {}, geometry: { type: "Polygon", coordinates: [ [ [-101.87842323574378, 52.250446362382775], [-101.87842323574378, 49.56446202085259], [-98.29404114999511, 49.56446202085259], [-98.29404114999511, 52.250446362382775], [-101.87842323574378, 52.250446362382775], ], ], }, }; t.equal( buffer(poly, -100000000), undefined, "empty geometry should be undefined if the resulting geometry is invalid" ); t.end(); }); function colorize(feature, color) { color = color || "#F00"; if (feature.properties) { feature.properties.stroke = color; feature.properties.fill = color; feature.properties["marker-color"] = color; feature.properties["fill-opacity"] = 0.3; } return feature; } ================================================ FILE: packages/turf-buffer/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-buffer/types.ts ================================================ import { point, lineString, polygon, multiPoint, multiLineString, multiPolygon, featureCollection, geometryCollection, } from "@turf/helpers"; import { Point, LineString } from "geojson"; import { buffer } from "./index.js"; // Standard Geometry const pt = point([100, 0]); const line = lineString([ [100, 0], [50, 0], ]); const poly = polygon([ [ [100, 0], [50, 0], [0, 50], [100, 0], ], ]); buffer(pt, 5); buffer(line, 5); buffer(poly, 5); buffer(pt, 5, { units: "miles" }); buffer(pt, 10, { units: "meters", steps: 64 }); // Multi Geometry const multiPt = multiPoint([ [100, 0], [0, 100], ]); const multiLine = multiLineString([ [ [100, 0], [50, 0], ], [ [100, 0], [50, 0], ], ]); const multiPoly = multiPolygon([ [ [ [100, 0], [50, 0], [0, 50], [100, 0], ], ], [ [ [100, 0], [50, 0], [0, 50], [100, 0], ], ], ]); buffer(multiPt, 5); buffer(multiLine, 5); buffer(multiPoly, 5); // Collections const fc = featureCollection([pt, line]); const gc = geometryCollection([pt.geometry, line.geometry]); buffer(fc, 5); buffer(gc, 5); // Mixed Collections const fcMixed = featureCollection([pt, line, multiPt, multiLine]); const gcMixed = geometryCollection([ pt.geometry, line.geometry, multiPt.geometry, multiLine.geometry, ]); buffer(fcMixed, 5); buffer(gcMixed, 5); ================================================ FILE: packages/turf-center/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-center/README.md ================================================ # @turf/center ## center Takes a [Feature][1] or [FeatureCollection][2] and returns the absolute center point of all features. ### Parameters * `geojson` **[GeoJSON][3]** GeoJSON to be centered * `options` **[Object][4]** Optional parameters (optional, default `{}`) * `options.properties` **[Object][4]** Translate GeoJSON Properties to Point (optional, default `{}`) * `options.bbox` **[Object][4]** Translate GeoJSON BBox to Point (optional, default `{}`) * `options.id` **[Object][4]** Translate GeoJSON Id to Point (optional, default `{}`) ### Examples ```javascript var features = turf.points([ [-97.522259, 35.4691], [-97.502754, 35.463455], [-97.508269, 35.463245] ]); var center = turf.center(features); //addToMap var addToMap = [features, center] center.properties['marker-size'] = 'large'; center.properties['marker-color'] = '#000'; ``` Returns **[Feature][1]<[Point][5]>** a Point feature at the absolute center point of all input features [1]: https://tools.ietf.org/html/rfc7946#section-3.2 [2]: https://tools.ietf.org/html/rfc7946#section-3.3 [3]: https://tools.ietf.org/html/rfc7946#section-3 [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [5]: https://tools.ietf.org/html/rfc7946#section-3.1.2 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/center ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-center/bench.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import { glob } from "glob"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { center } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const fixtures = glob .sync(path.join(__dirname, "test", "in", "*.geojson")) .map((input) => { return { name: path.parse(input).name, geojson: loadJsonFileSync(input), }; }); /** * Single Process Benchmark * * feature-collection: 0.445ms * imbalanced-polygon: 0.051ms * linestring: 0.027ms * point: 0.011ms * polygon: 0.013ms */ for (const { name, geojson } of fixtures) { console.time(name); center(geojson); console.timeEnd(name); } /** * Benchmark Results * * feature-collection x 2,786,700 ops/sec ±1.50% (83 runs sampled) * imbalanced-polygon x 1,364,145 ops/sec ±3.33% (76 runs sampled) * linestring x 4,104,106 ops/sec ±4.16% (81 runs sampled) * point x 4,901,692 ops/sec ±5.23% (81 runs sampled) * polygon x 2,862,759 ops/sec ±1.14% (86 runs sampled) */ const suite = new Benchmark.Suite("turf-center"); for (const { name, geojson } of fixtures) { suite.add(name, () => center(geojson)); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-center/index.ts ================================================ import { BBox, Feature, GeoJsonProperties, Point } from "geojson"; import { bbox } from "@turf/bbox"; import { point, Id, AllGeoJSON } from "@turf/helpers"; /** * Takes a {@link Feature} or {@link FeatureCollection} and returns the absolute center point of all features. * * @function * @param {GeoJSON} geojson GeoJSON to be centered * @param {Object} [options={}] Optional parameters * @param {Object} [options.properties={}] Translate GeoJSON Properties to Point * @param {Object} [options.bbox={}] Translate GeoJSON BBox to Point * @param {Object} [options.id={}] Translate GeoJSON Id to Point * @returns {Feature} a Point feature at the absolute center point of all input features * @example * var features = turf.points([ * [-97.522259, 35.4691], * [-97.502754, 35.463455], * [-97.508269, 35.463245] * ]); * * var center = turf.center(features); * * //addToMap * var addToMap = [features, center] * center.properties['marker-size'] = 'large'; * center.properties['marker-color'] = '#000'; */ function center

( geojson: AllGeoJSON, options: { properties?: P; bbox?: BBox; id?: Id } = {} ): Feature { const ext = bbox(geojson); const x = (ext[0] + ext[2]) / 2; const y = (ext[1] + ext[3]) / 2; return point([x, y], options.properties, options); } export { center }; export default center; ================================================ FILE: packages/turf-center/package.json ================================================ { "name": "@turf/center", "version": "7.3.4", "description": "Finds the central point of a GeoJSON feature, like a city or a park. Ideal for placing labels or markers.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "centroid", "geojson", "gis", "geospatial", "geo", "turf" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/bbox-polygon": "workspace:*", "@turf/meta": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/bbox": "workspace:*", "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-center/test/in/feature-collection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.833351373672485, 45.760809294695534] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.8331475257873535, 45.760296567821456] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.833984374999999, 45.76073818687033] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.834005832672119, 45.76022171678877] } } ] } ================================================ FILE: packages/turf-center/test/in/imbalanced-polygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4.854240417480469, 45.77258200374433], [4.8445844650268555, 45.777431068484894], [4.845442771911621, 45.778658234059755], [4.845914840698242, 45.779376562352425], [4.846644401550292, 45.78021460033108], [4.847245216369629, 45.78078326178593], [4.848060607910156, 45.78138184652523], [4.8487043380737305, 45.78186070968964], [4.849562644958495, 45.78248921135124], [4.850893020629883, 45.78302792142197], [4.852008819580077, 45.78374619341895], [4.852995872497559, 45.784075398324866], [4.853854179382324, 45.78443452873236], [4.8549699783325195, 45.78470387501975], [4.85569953918457, 45.784793656826345], [4.857330322265624, 45.784853511283764], [4.858231544494629, 45.78494329284938], [4.859304428100585, 45.784883438488365], [4.858360290527344, 45.77294120818474], [4.854240417480469, 45.77258200374433] ] ] } } ================================================ FILE: packages/turf-center/test/in/linestring.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [4.86020565032959, 45.76884015325622], [4.85994815826416, 45.749558161214516] ] } } ================================================ FILE: packages/turf-center/test/in/point.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.831961989402771, 45.75764678012361] } } ================================================ FILE: packages/turf-center/test/in/points-with-weights.geojson ================================================ { "type": "FeatureCollection", "options": { "weight": "weight" }, "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [0, 0] }, "properties": { "weight": 10 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [0, 5] }, "properties": { "weight": 1 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [5, 5] }, "properties": { "weight": 2 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [5, 0] }, "properties": { "weight": 3 } } ] } ================================================ FILE: packages/turf-center/test/in/polygon-without-weights.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [122.51953124999999, -22.024545601240337], [126.91406249999999, -22.024545601240337], [126.91406249999999, -18.312810846425442], [122.51953124999999, -18.312810846425442], [122.51953124999999, -22.024545601240337] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140.888671875, -36.10237644873643], [145.283203125, -36.10237644873643], [145.283203125, -32.76880048488168], [140.888671875, -32.76880048488168], [140.888671875, -36.10237644873643] ] ] } } ] } ================================================ FILE: packages/turf-center/test/in/polygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4.8250579833984375, 45.79398056386735], [4.882392883300781, 45.79254427435898], [4.910373687744141, 45.76081677972451], [4.894924163818359, 45.7271539426975], [4.824199676513671, 45.71337148333104], [4.773387908935547, 45.74021417890731], [4.778022766113281, 45.778418789239055], [4.8250579833984375, 45.79398056386735] ] ] } } ================================================ FILE: packages/turf-center/test/out/feature-collection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-symbol": "star", "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [4.833576679229736, 45.76051550574215] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.833351373672485, 45.760809294695534] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.8331475257873535, 45.760296567821456] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.833984374999999, 45.76073818687033] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.834005832672119, 45.76022171678877] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.8331475257873535, 45.76022171678877], [4.833576679229736, 45.76051550574215] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.834005832672119, 45.76022171678877], [4.833576679229736, 45.76051550574215] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.834005832672119, 45.760809294695534], [4.833576679229736, 45.76051550574215] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.8331475257873535, 45.760809294695534], [4.833576679229736, 45.76051550574215] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.8331475257873535, 45.76022171678877], [4.833576679229736, 45.76051550574215] ] } }, { "type": "Feature", "bbox": [ 4.8331475257873535, 45.76022171678877, 4.834005832672119, 45.760809294695534 ], "properties": { "stroke": "#00F", "stroke-width": 1, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [4.8331475257873535, 45.76022171678877], [4.834005832672119, 45.76022171678877], [4.834005832672119, 45.760809294695534], [4.8331475257873535, 45.760809294695534], [4.8331475257873535, 45.76022171678877] ] ] } } ] } ================================================ FILE: packages/turf-center/test/out/imbalanced-polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-symbol": "star", "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [4.851944446563721, 45.778762648296855] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4.854240417480469, 45.77258200374433], [4.8445844650268555, 45.777431068484894], [4.845442771911621, 45.778658234059755], [4.845914840698242, 45.779376562352425], [4.846644401550292, 45.78021460033108], [4.847245216369629, 45.78078326178593], [4.848060607910156, 45.78138184652523], [4.8487043380737305, 45.78186070968964], [4.849562644958495, 45.78248921135124], [4.850893020629883, 45.78302792142197], [4.852008819580077, 45.78374619341895], [4.852995872497559, 45.784075398324866], [4.853854179382324, 45.78443452873236], [4.8549699783325195, 45.78470387501975], [4.85569953918457, 45.784793656826345], [4.857330322265624, 45.784853511283764], [4.858231544494629, 45.78494329284938], [4.859304428100585, 45.784883438488365], [4.858360290527344, 45.77294120818474], [4.854240417480469, 45.77258200374433] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.8445844650268555, 45.77258200374433], [4.851944446563721, 45.778762648296855] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.859304428100585, 45.77258200374433], [4.851944446563721, 45.778762648296855] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.859304428100585, 45.78494329284938], [4.851944446563721, 45.778762648296855] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.8445844650268555, 45.78494329284938], [4.851944446563721, 45.778762648296855] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.8445844650268555, 45.77258200374433], [4.851944446563721, 45.778762648296855] ] } }, { "type": "Feature", "bbox": [ 4.8445844650268555, 45.77258200374433, 4.859304428100585, 45.78494329284938 ], "properties": { "stroke": "#00F", "stroke-width": 1, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [4.8445844650268555, 45.77258200374433], [4.859304428100585, 45.77258200374433], [4.859304428100585, 45.78494329284938], [4.8445844650268555, 45.78494329284938], [4.8445844650268555, 45.77258200374433] ] ] } } ] } ================================================ FILE: packages/turf-center/test/out/linestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-symbol": "star", "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [4.860076904296875, 45.75919915723537] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [4.86020565032959, 45.76884015325622], [4.85994815826416, 45.749558161214516] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.85994815826416, 45.749558161214516], [4.860076904296875, 45.75919915723537] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.86020565032959, 45.749558161214516], [4.860076904296875, 45.75919915723537] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.86020565032959, 45.76884015325622], [4.860076904296875, 45.75919915723537] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.85994815826416, 45.76884015325622], [4.860076904296875, 45.75919915723537] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.85994815826416, 45.749558161214516], [4.860076904296875, 45.75919915723537] ] } }, { "type": "Feature", "bbox": [4.85994815826416, 45.749558161214516, 4.86020565032959, 45.76884015325622], "properties": { "stroke": "#00F", "stroke-width": 1, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [4.85994815826416, 45.749558161214516], [4.86020565032959, 45.749558161214516], [4.86020565032959, 45.76884015325622], [4.85994815826416, 45.76884015325622], [4.85994815826416, 45.749558161214516] ] ] } } ] } ================================================ FILE: packages/turf-center/test/out/point.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-symbol": "star", "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [4.831961989402771, 45.75764678012361] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.831961989402771, 45.75764678012361] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.831961989402771, 45.75764678012361], [4.831961989402771, 45.75764678012361] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.831961989402771, 45.75764678012361], [4.831961989402771, 45.75764678012361] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.831961989402771, 45.75764678012361], [4.831961989402771, 45.75764678012361] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.831961989402771, 45.75764678012361], [4.831961989402771, 45.75764678012361] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.831961989402771, 45.75764678012361], [4.831961989402771, 45.75764678012361] ] } }, { "type": "Feature", "bbox": [ 4.831961989402771, 45.75764678012361, 4.831961989402771, 45.75764678012361 ], "properties": { "stroke": "#00F", "stroke-width": 1, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [4.831961989402771, 45.75764678012361], [4.831961989402771, 45.75764678012361], [4.831961989402771, 45.75764678012361], [4.831961989402771, 45.75764678012361], [4.831961989402771, 45.75764678012361] ] ] } } ] } ================================================ FILE: packages/turf-center/test/out/points-with-weights.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-symbol": "star", "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [2.5, 2.5] } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [0, 0] }, "properties": { "weight": 10 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [0, 5] }, "properties": { "weight": 1 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [5, 5] }, "properties": { "weight": 2 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [5, 0] }, "properties": { "weight": 3 } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [2.5, 2.5] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [5, 0], [2.5, 2.5] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [5, 5], [2.5, 2.5] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [0, 5], [2.5, 2.5] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [2.5, 2.5] ] } }, { "type": "Feature", "bbox": [0, 0, 5, 5], "properties": { "stroke": "#00F", "stroke-width": 1, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [5, 0], [5, 5], [0, 5], [0, 0] ] ] } } ] } ================================================ FILE: packages/turf-center/test/out/polygon-without-weights.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-symbol": "star", "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [133.9013671875, -27.207593647580936] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [122.51953124999999, -22.024545601240337], [126.91406249999999, -22.024545601240337], [126.91406249999999, -18.312810846425442], [122.51953124999999, -18.312810846425442], [122.51953124999999, -22.024545601240337] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140.888671875, -36.10237644873643], [145.283203125, -36.10237644873643], [145.283203125, -32.76880048488168], [140.888671875, -32.76880048488168], [140.888671875, -36.10237644873643] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [122.51953124999999, -36.10237644873643], [133.9013671875, -27.207593647580936] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [145.283203125, -36.10237644873643], [133.9013671875, -27.207593647580936] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [145.283203125, -18.312810846425442], [133.9013671875, -27.207593647580936] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [122.51953124999999, -18.312810846425442], [133.9013671875, -27.207593647580936] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [122.51953124999999, -36.10237644873643], [133.9013671875, -27.207593647580936] ] } }, { "type": "Feature", "bbox": [ 122.51953124999999, -36.10237644873643, 145.283203125, -18.312810846425442 ], "properties": { "stroke": "#00F", "stroke-width": 1, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [122.51953124999999, -36.10237644873643], [145.283203125, -36.10237644873643], [145.283203125, -18.312810846425442], [122.51953124999999, -18.312810846425442], [122.51953124999999, -36.10237644873643] ] ] } } ] } ================================================ FILE: packages/turf-center/test/out/polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-symbol": "star", "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [4.841880798339844, 45.7536760235992] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4.8250579833984375, 45.79398056386735], [4.882392883300781, 45.79254427435898], [4.910373687744141, 45.76081677972451], [4.894924163818359, 45.7271539426975], [4.824199676513671, 45.71337148333104], [4.773387908935547, 45.74021417890731], [4.778022766113281, 45.778418789239055], [4.8250579833984375, 45.79398056386735] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.773387908935547, 45.71337148333104], [4.841880798339844, 45.7536760235992] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.910373687744141, 45.71337148333104], [4.841880798339844, 45.7536760235992] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.910373687744141, 45.79398056386735], [4.841880798339844, 45.7536760235992] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.773387908935547, 45.79398056386735], [4.841880798339844, 45.7536760235992] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.773387908935547, 45.71337148333104], [4.841880798339844, 45.7536760235992] ] } }, { "type": "Feature", "bbox": [ 4.773387908935547, 45.71337148333104, 4.910373687744141, 45.79398056386735 ], "properties": { "stroke": "#00F", "stroke-width": 1, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [4.773387908935547, 45.71337148333104], [4.910373687744141, 45.71337148333104], [4.910373687744141, 45.79398056386735], [4.773387908935547, 45.79398056386735], [4.773387908935547, 45.71337148333104] ] ] } } ] } ================================================ FILE: packages/turf-center/test.ts ================================================ import test from "tape"; import { glob } from "glob"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { bboxPolygon } from "@turf/bbox-polygon"; import { bbox } from "@turf/bbox"; import { featureEach, coordEach } from "@turf/meta"; import { lineString, featureCollection } from "@turf/helpers"; import { center } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); test("turf-center", (t) => { glob .sync(path.join(__dirname, "test", "in", "*.geojson")) .forEach((filepath) => { const geojson = loadJsonFileSync(filepath); const options = geojson.options || {}; options.properties = { "marker-symbol": "star", "marker-color": "#F00" }; const centered = center(geojson, options); // Display Results const results = featureCollection([centered]); featureEach(geojson, (feature) => results.features.push(feature)); const extent = bboxPolygon(bbox(geojson)); extent.properties = { stroke: "#00F", "stroke-width": 1, "fill-opacity": 0, }; coordEach(extent, (coord) => results.features.push( lineString([coord, centered.geometry.coordinates], { stroke: "#00F", "stroke-width": 1, }) ) ); results.features.push(extent); const out = filepath.replace( path.join("test", "in"), path.join("test", "out") ); if (process.env.REGEN) writeJsonFileSync(out, results); t.deepEqual(results, loadJsonFileSync(out), path.parse(filepath).name); }); t.end(); }); test("turf-center -- properties", (t) => { const line = lineString([ [0, 0], [1, 1], ]); const pt = center(line, { properties: { foo: "bar" } }); t.equal(pt.properties.foo, "bar", "translate properties"); t.end(); }); ================================================ FILE: packages/turf-center/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-center/types.ts ================================================ import { lineString } from "@turf/helpers"; import { center } from "./index.js"; const line = lineString([ [0, 0], [10, 10], ]); center(line); center(line, { properties: { foo: "bar" } }); ================================================ FILE: packages/turf-center-mean/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-center-mean/README.md ================================================ # @turf/center-mean ## centerMean Takes a [Feature][1] or [FeatureCollection][2] and returns the mean center. Can be weighted. ### Parameters * `geojson` **[GeoJSON][3]** GeoJSON to be centered * `options` **[Object][4]** Optional parameters (optional, default `{}`) * `options.properties` **[Object][4]** Translate GeoJSON Properties to Point (optional, default `{}`) * `options.bbox` **[Object][4]** Translate GeoJSON BBox to Point (optional, default `{}`) * `options.id` **[Object][4]** Translate GeoJSON Id to Point (optional, default `{}`) * `options.weight` **[string][5]?** the property name used to weight the center ### Examples ```javascript var features = turf.featureCollection([ turf.point([-97.522259, 35.4691], {value: 10}), turf.point([-97.502754, 35.463455], {value: 3}), turf.point([-97.508269, 35.463245], {value: 5}) ]); var options = {weight: "value"} var mean = turf.centerMean(features, options); //addToMap var addToMap = [features, mean] mean.properties['marker-size'] = 'large'; mean.properties['marker-color'] = '#000'; ``` Returns **[Feature][1]<[Point][6]>** a Point feature at the mean center point of all input features [1]: https://tools.ietf.org/html/rfc7946#section-3.2 [2]: https://tools.ietf.org/html/rfc7946#section-3.3 [3]: https://tools.ietf.org/html/rfc7946#section-3 [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String [6]: https://tools.ietf.org/html/rfc7946#section-3.1.2 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/center-mean ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-center-mean/bench.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import { glob } from "glob"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { centerMean } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const fixtures = glob .sync(path.join(__dirname, "test", "in", "*.geojson")) .map((input) => { return { name: path.parse(input).name, geojson: loadJsonFileSync(input), }; }); /** * Single Process Benchmark * * feature-collection: 0.445ms * imbalanced-polygon: 0.051ms * linestring: 0.027ms * point: 0.011ms * polygon: 0.013ms */ for (const { name, geojson } of fixtures) { console.time(name); centerMean(geojson); console.timeEnd(name); } /** * Benchmark Results * * feature-collection x 2,786,700 ops/sec ±1.50% (83 runs sampled) * imbalanced-polygon x 1,364,145 ops/sec ±3.33% (76 runs sampled) * linestring x 4,104,106 ops/sec ±4.16% (81 runs sampled) * point x 4,901,692 ops/sec ±5.23% (81 runs sampled) * polygon x 2,862,759 ops/sec ±1.14% (86 runs sampled) */ const suite = new Benchmark.Suite("turf-center-mean"); for (const { name, geojson } of fixtures) { suite.add(name, () => centerMean(geojson)); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-center-mean/index.ts ================================================ import { BBox, Feature, Point, GeoJsonProperties } from "geojson"; import { geomEach, coordEach } from "@turf/meta"; import { isNumber, point, Id } from "@turf/helpers"; /** * Takes a {@link Feature} or {@link FeatureCollection} and returns the mean center. Can be weighted. * * @function * @param {GeoJSON} geojson GeoJSON to be centered * @param {Object} [options={}] Optional parameters * @param {Object} [options.properties={}] Translate GeoJSON Properties to Point * @param {Object} [options.bbox={}] Translate GeoJSON BBox to Point * @param {Object} [options.id={}] Translate GeoJSON Id to Point * @param {string} [options.weight] the property name used to weight the center * @returns {Feature} a Point feature at the mean center point of all input features * @example * var features = turf.featureCollection([ * turf.point([-97.522259, 35.4691], {value: 10}), * turf.point([-97.502754, 35.463455], {value: 3}), * turf.point([-97.508269, 35.463245], {value: 5}) * ]); * * var options = {weight: "value"} * var mean = turf.centerMean(features, options); * * //addToMap * var addToMap = [features, mean] * mean.properties['marker-size'] = 'large'; * mean.properties['marker-color'] = '#000'; */ function centerMean

( geojson: any, // To-Do include Typescript AllGeoJSON options: { properties?: P; bbox?: BBox; id?: Id; weight?: string } = {} ): Feature { let sumXs = 0; let sumYs = 0; let sumNs = 0; geomEach(geojson, function (geom, featureIndex, properties) { let weight = options.weight ? properties?.[options.weight] : undefined; weight = weight === undefined || weight === null ? 1 : weight; if (!isNumber(weight)) throw new Error( "weight value must be a number for feature index " + featureIndex ); weight = Number(weight); if (weight > 0) { coordEach(geom, function (coord) { sumXs += coord[0] * weight; sumYs += coord[1] * weight; sumNs += weight; }); } }); return point([sumXs / sumNs, sumYs / sumNs], options.properties, options); } export { centerMean }; export default centerMean; ================================================ FILE: packages/turf-center-mean/package.json ================================================ { "name": "@turf/center-mean", "version": "7.3.4", "description": "Takes a Feature or FeatureCollection and returns the mean center.", "author": "Turf Authors", "contributors": [ "Moacir P. de Sá Pereira <@muziejus>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "center", "mean", "geojson", "gis", "geospatial", "geo", "turf" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/center": "workspace:*", "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/bbox": "workspace:*", "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-center-mean/test/in/feature-collection-negative-weights.geojson ================================================ { "type": "FeatureCollection", "options": { "weight": "weight" }, "features": [ { "type": "Feature", "properties": { "weight": 15, "marker-symbol": "star", "marker-color": "#000" }, "geometry": { "type": "Point", "coordinates": [4.833351373672485, 45.760809294695534] } }, { "type": "Feature", "properties": { "weight": -4 }, "geometry": { "type": "Point", "coordinates": [4.8331475257873535, 45.760296567821456] } }, { "type": "Feature", "properties": { "weight": 3, "marker-symbol": "star", "marker-color": "#888" }, "geometry": { "type": "Point", "coordinates": [4.833984374999999, 45.76073818687033] } }, { "type": "Feature", "properties": { "weight": 0 }, "geometry": { "type": "Point", "coordinates": [4.834005832672119, 45.76022171678877] } } ] } ================================================ FILE: packages/turf-center-mean/test/in/feature-collection-weight.geojson ================================================ { "type": "FeatureCollection", "options": { "weight": "weight" }, "features": [ { "type": "Feature", "properties": { "weight": 15, "marker-symbol": "star", "marker-color": "#000" }, "geometry": { "type": "Point", "coordinates": [4.833351373672485, 45.760809294695534] } }, { "type": "Feature", "properties": { "weight": 4 }, "geometry": { "type": "Point", "coordinates": [4.8331475257873535, 45.760296567821456] } }, { "type": "Feature", "properties": { "weight": "5" }, "geometry": { "type": "Point", "coordinates": [4.833984374999999, 45.76073818687033] } }, { "type": "Feature", "properties": { "weight": 2 }, "geometry": { "type": "Point", "coordinates": [4.834005832672119, 45.76022171678877] } } ] } ================================================ FILE: packages/turf-center-mean/test/in/feature-collection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.833351373672485, 45.760809294695534] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.8331475257873535, 45.760296567821456] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.833984374999999, 45.76073818687033] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.834005832672119, 45.76022171678877] } } ] } ================================================ FILE: packages/turf-center-mean/test/in/imbalanced-polygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4.854240417480469, 45.77258200374433], [4.8445844650268555, 45.777431068484894], [4.845442771911621, 45.778658234059755], [4.845914840698242, 45.779376562352425], [4.846644401550292, 45.78021460033108], [4.847245216369629, 45.78078326178593], [4.848060607910156, 45.78138184652523], [4.8487043380737305, 45.78186070968964], [4.849562644958495, 45.78248921135124], [4.850893020629883, 45.78302792142197], [4.852008819580077, 45.78374619341895], [4.852995872497559, 45.784075398324866], [4.853854179382324, 45.78443452873236], [4.8549699783325195, 45.78470387501975], [4.85569953918457, 45.784793656826345], [4.857330322265624, 45.784853511283764], [4.858231544494629, 45.78494329284938], [4.859304428100585, 45.784883438488365], [4.858360290527344, 45.77294120818474], [4.854240417480469, 45.77258200374433] ] ] } } ================================================ FILE: packages/turf-center-mean/test/in/linestring.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [4.86020565032959, 45.76884015325622], [4.85994815826416, 45.749558161214516] ] } } ================================================ FILE: packages/turf-center-mean/test/in/point.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.831961989402771, 45.75764678012361] } } ================================================ FILE: packages/turf-center-mean/test/in/points-with-weights.geojson ================================================ { "type": "FeatureCollection", "options": { "weight": "weight" }, "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [0, 0] }, "properties": { "weight": 10 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [0, 5] }, "properties": { "weight": 1 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [5, 5] }, "properties": { "weight": 2 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [5, 0] }, "properties": { "weight": 3 } } ] } ================================================ FILE: packages/turf-center-mean/test/in/polygon-with-weights.geojson ================================================ { "type": "FeatureCollection", "options": { "weight": "weight" }, "features": [ { "type": "Feature", "properties": { "weight": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [122.51953124999999, -22.024545601240337], [126.91406249999999, -22.024545601240337], [126.91406249999999, -18.312810846425442], [122.51953124999999, -18.312810846425442], [122.51953124999999, -22.024545601240337] ] ] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [140.888671875, -36.10237644873643], [145.283203125, -36.10237644873643], [145.283203125, -32.76880048488168], [140.888671875, -32.76880048488168], [140.888671875, -36.10237644873643] ] ] } } ] } ================================================ FILE: packages/turf-center-mean/test/in/polygon-without-weights.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [122.51953124999999, -22.024545601240337], [126.91406249999999, -22.024545601240337], [126.91406249999999, -18.312810846425442], [122.51953124999999, -18.312810846425442], [122.51953124999999, -22.024545601240337] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140.888671875, -36.10237644873643], [145.283203125, -36.10237644873643], [145.283203125, -32.76880048488168], [140.888671875, -32.76880048488168], [140.888671875, -36.10237644873643] ] ] } } ] } ================================================ FILE: packages/turf-center-mean/test/in/polygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4.8250579833984375, 45.79398056386735], [4.882392883300781, 45.79254427435898], [4.910373687744141, 45.76081677972451], [4.894924163818359, 45.7271539426975], [4.824199676513671, 45.71337148333104], [4.773387908935547, 45.74021417890731], [4.778022766113281, 45.778418789239055], [4.8250579833984375, 45.79398056386735] ] ] } } ================================================ FILE: packages/turf-center-mean/test/out/feature-collection-negative-weights.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "weight": 15, "marker-symbol": "star", "marker-color": "#000" }, "geometry": { "type": "Point", "coordinates": [4.833351373672485, 45.760809294695534] } }, { "type": "Feature", "properties": { "weight": -4 }, "geometry": { "type": "Point", "coordinates": [4.8331475257873535, 45.760296567821456] } }, { "type": "Feature", "properties": { "weight": 3, "marker-symbol": "star", "marker-color": "#888" }, "geometry": { "type": "Point", "coordinates": [4.833984374999999, 45.76073818687033] } }, { "type": "Feature", "properties": { "weight": 0 }, "geometry": { "type": "Point", "coordinates": [4.834005832672119, 45.76022171678877] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.833351373672485, 45.760809294695534], [4.833457, 45.760797] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.8331475257873535, 45.760296567821456], [4.833457, 45.760797] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.833984374999999, 45.76073818687033], [4.833457, 45.760797] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.834005832672119, 45.76022171678877], [4.833457, 45.760797] ] } }, { "type": "Feature", "properties": { "marker-symbol": "circle", "marker-color": "#00F" }, "geometry": { "type": "Point", "coordinates": [4.833577, 45.760516] } }, { "type": "Feature", "properties": { "marker-symbol": "star", "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [4.833457, 45.760797] } } ] } ================================================ FILE: packages/turf-center-mean/test/out/feature-collection-weight.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "weight": 15, "marker-symbol": "star", "marker-color": "#000" }, "geometry": { "type": "Point", "coordinates": [4.833351373672485, 45.760809294695534] } }, { "type": "Feature", "properties": { "weight": 4 }, "geometry": { "type": "Point", "coordinates": [4.8331475257873535, 45.760296567821456] } }, { "type": "Feature", "properties": { "weight": "5" }, "geometry": { "type": "Point", "coordinates": [4.833984374999999, 45.76073818687033] } }, { "type": "Feature", "properties": { "weight": 2 }, "geometry": { "type": "Point", "coordinates": [4.834005832672119, 45.76022171678877] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.833351373672485, 45.760809294695534], [4.833492, 45.760672] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.8331475257873535, 45.760296567821456], [4.833492, 45.760672] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.833984374999999, 45.76073818687033], [4.833492, 45.760672] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.834005832672119, 45.76022171678877], [4.833492, 45.760672] ] } }, { "type": "Feature", "properties": { "marker-symbol": "circle", "marker-color": "#00F" }, "geometry": { "type": "Point", "coordinates": [4.833577, 45.760516] } }, { "type": "Feature", "properties": { "marker-symbol": "star", "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [4.833492, 45.760672] } } ] } ================================================ FILE: packages/turf-center-mean/test/out/feature-collection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.833351373672485, 45.760809294695534] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.8331475257873535, 45.760296567821456] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.833984374999999, 45.76073818687033] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.834005832672119, 45.76022171678877] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.833351373672485, 45.760809294695534], [4.833622, 45.760516] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.8331475257873535, 45.760296567821456], [4.833622, 45.760516] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.833984374999999, 45.76073818687033], [4.833622, 45.760516] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.834005832672119, 45.76022171678877], [4.833622, 45.760516] ] } }, { "type": "Feature", "properties": { "marker-symbol": "circle", "marker-color": "#00F" }, "geometry": { "type": "Point", "coordinates": [4.833577, 45.760516] } }, { "type": "Feature", "properties": { "marker-symbol": "star", "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [4.833622, 45.760516] } } ] } ================================================ FILE: packages/turf-center-mean/test/out/imbalanced-polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4.854240417480469, 45.77258200374433], [4.8445844650268555, 45.777431068484894], [4.845442771911621, 45.778658234059755], [4.845914840698242, 45.779376562352425], [4.846644401550292, 45.78021460033108], [4.847245216369629, 45.78078326178593], [4.848060607910156, 45.78138184652523], [4.8487043380737305, 45.78186070968964], [4.849562644958495, 45.78248921135124], [4.850893020629883, 45.78302792142197], [4.852008819580077, 45.78374619341895], [4.852995872497559, 45.784075398324866], [4.853854179382324, 45.78443452873236], [4.8549699783325195, 45.78470387501975], [4.85569953918457, 45.784793656826345], [4.857330322265624, 45.784853511283764], [4.858231544494629, 45.78494329284938], [4.859304428100585, 45.784883438488365], [4.858360290527344, 45.77294120818474], [4.854240417480469, 45.77258200374433] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.854240417480469, 45.77258200374433], [4.851914, 45.780988] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.8445844650268555, 45.777431068484894], [4.851914, 45.780988] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.845442771911621, 45.778658234059755], [4.851914, 45.780988] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.845914840698242, 45.779376562352425], [4.851914, 45.780988] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.846644401550292, 45.78021460033108], [4.851914, 45.780988] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.847245216369629, 45.78078326178593], [4.851914, 45.780988] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.848060607910156, 45.78138184652523], [4.851914, 45.780988] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.8487043380737305, 45.78186070968964], [4.851914, 45.780988] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.849562644958495, 45.78248921135124], [4.851914, 45.780988] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.850893020629883, 45.78302792142197], [4.851914, 45.780988] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.852008819580077, 45.78374619341895], [4.851914, 45.780988] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.852995872497559, 45.784075398324866], [4.851914, 45.780988] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.853854179382324, 45.78443452873236], [4.851914, 45.780988] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.8549699783325195, 45.78470387501975], [4.851914, 45.780988] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.85569953918457, 45.784793656826345], [4.851914, 45.780988] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.857330322265624, 45.784853511283764], [4.851914, 45.780988] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.858231544494629, 45.78494329284938], [4.851914, 45.780988] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.859304428100585, 45.784883438488365], [4.851914, 45.780988] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.858360290527344, 45.77294120818474], [4.851914, 45.780988] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.854240417480469, 45.77258200374433], [4.851914, 45.780988] ] } }, { "type": "Feature", "properties": { "marker-symbol": "circle", "marker-color": "#00F" }, "geometry": { "type": "Point", "coordinates": [4.851944, 45.778763] } }, { "type": "Feature", "properties": { "marker-symbol": "star", "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [4.851914, 45.780988] } } ] } ================================================ FILE: packages/turf-center-mean/test/out/linestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [4.86020565032959, 45.76884015325622], [4.85994815826416, 45.749558161214516] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.86020565032959, 45.76884015325622], [4.860077, 45.759199] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.85994815826416, 45.749558161214516], [4.860077, 45.759199] ] } }, { "type": "Feature", "properties": { "marker-symbol": "circle", "marker-color": "#00F" }, "geometry": { "type": "Point", "coordinates": [4.860077, 45.759199] } }, { "type": "Feature", "properties": { "marker-symbol": "star", "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [4.860077, 45.759199] } } ] } ================================================ FILE: packages/turf-center-mean/test/out/point.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.831961989402771, 45.75764678012361] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.831961989402771, 45.75764678012361], [4.831962, 45.757647] ] } }, { "type": "Feature", "properties": { "marker-symbol": "circle", "marker-color": "#00F" }, "geometry": { "type": "Point", "coordinates": [4.831962, 45.757647] } }, { "type": "Feature", "properties": { "marker-symbol": "star", "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [4.831962, 45.757647] } } ] } ================================================ FILE: packages/turf-center-mean/test/out/points-with-weights.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [0, 0] }, "properties": { "weight": 10 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [0, 5] }, "properties": { "weight": 1 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [5, 5] }, "properties": { "weight": 2 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [5, 0] }, "properties": { "weight": 3 } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [1.5625, 0.9375] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [0, 5], [1.5625, 0.9375] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [5, 5], [1.5625, 0.9375] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [5, 0], [1.5625, 0.9375] ] } }, { "type": "Feature", "properties": { "marker-symbol": "circle", "marker-color": "#00F" }, "geometry": { "type": "Point", "coordinates": [2.5, 2.5] } }, { "type": "Feature", "properties": { "marker-symbol": "star", "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [1.5625, 0.9375] } } ] } ================================================ FILE: packages/turf-center-mean/test/out/polygon-with-weights.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "weight": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [122.51953124999999, -22.024545601240337], [126.91406249999999, -22.024545601240337], [126.91406249999999, -18.312810846425442], [122.51953124999999, -18.312810846425442], [122.51953124999999, -22.024545601240337] ] ] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [140.888671875, -36.10237644873643], [145.283203125, -36.10237644873643], [145.283203125, -32.76880048488168], [140.888671875, -32.76880048488168], [140.888671875, -36.10237644873643] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [122.51953124999999, -22.024545601240337], [128.516376, -23.823489] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [126.91406249999999, -22.024545601240337], [128.516376, -23.823489] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [126.91406249999999, -18.312810846425442], [128.516376, -23.823489] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [122.51953124999999, -18.312810846425442], [128.516376, -23.823489] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [122.51953124999999, -22.024545601240337], [128.516376, -23.823489] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [140.888671875, -36.10237644873643], [128.516376, -23.823489] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [145.283203125, -36.10237644873643], [128.516376, -23.823489] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [145.283203125, -32.76880048488168], [128.516376, -23.823489] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [140.888671875, -32.76880048488168], [128.516376, -23.823489] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [140.888671875, -36.10237644873643], [128.516376, -23.823489] ] } }, { "type": "Feature", "properties": { "marker-symbol": "circle", "marker-color": "#00F" }, "geometry": { "type": "Point", "coordinates": [133.901367, -27.207594] } }, { "type": "Feature", "properties": { "marker-symbol": "star", "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [128.516376, -23.823489] } } ] } ================================================ FILE: packages/turf-center-mean/test/out/polygon-without-weights.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [122.51953124999999, -22.024545601240337], [126.91406249999999, -22.024545601240337], [126.91406249999999, -18.312810846425442], [122.51953124999999, -18.312810846425442], [122.51953124999999, -22.024545601240337] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140.888671875, -36.10237644873643], [145.283203125, -36.10237644873643], [145.283203125, -32.76880048488168], [140.888671875, -32.76880048488168], [140.888671875, -36.10237644873643] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [122.51953124999999, -22.024545601240337], [133.461914, -27.654399] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [126.91406249999999, -22.024545601240337], [133.461914, -27.654399] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [126.91406249999999, -18.312810846425442], [133.461914, -27.654399] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [122.51953124999999, -18.312810846425442], [133.461914, -27.654399] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [122.51953124999999, -22.024545601240337], [133.461914, -27.654399] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [140.888671875, -36.10237644873643], [133.461914, -27.654399] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [145.283203125, -36.10237644873643], [133.461914, -27.654399] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [145.283203125, -32.76880048488168], [133.461914, -27.654399] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [140.888671875, -32.76880048488168], [133.461914, -27.654399] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [140.888671875, -36.10237644873643], [133.461914, -27.654399] ] } }, { "type": "Feature", "properties": { "marker-symbol": "circle", "marker-color": "#00F" }, "geometry": { "type": "Point", "coordinates": [133.901367, -27.207594] } }, { "type": "Feature", "properties": { "marker-symbol": "star", "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [133.461914, -27.654399] } } ] } ================================================ FILE: packages/turf-center-mean/test/out/polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4.8250579833984375, 45.79398056386735], [4.882392883300781, 45.79254427435898], [4.910373687744141, 45.76081677972451], [4.894924163818359, 45.7271539426975], [4.824199676513671, 45.71337148333104], [4.773387908935547, 45.74021417890731], [4.778022766113281, 45.778418789239055], [4.8250579833984375, 45.79398056386735] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.8250579833984375, 45.79398056386735], [4.839177, 45.76256] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.882392883300781, 45.79254427435898], [4.839177, 45.76256] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.910373687744141, 45.76081677972451], [4.839177, 45.76256] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.894924163818359, 45.7271539426975], [4.839177, 45.76256] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.824199676513671, 45.71337148333104], [4.839177, 45.76256] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.773387908935547, 45.74021417890731], [4.839177, 45.76256] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.778022766113281, 45.778418789239055], [4.839177, 45.76256] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [4.8250579833984375, 45.79398056386735], [4.839177, 45.76256] ] } }, { "type": "Feature", "properties": { "marker-symbol": "circle", "marker-color": "#00F" }, "geometry": { "type": "Point", "coordinates": [4.841881, 45.753676] } }, { "type": "Feature", "properties": { "marker-symbol": "star", "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [4.839177, 45.76256] } } ] } ================================================ FILE: packages/turf-center-mean/test.ts ================================================ import test from "tape"; import { glob } from "glob"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { truncate } from "@turf/truncate"; import { featureEach, coordEach } from "@turf/meta"; import { lineString, featureCollection } from "@turf/helpers"; import { center } from "@turf/center"; import { centerMean } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); test("turf-center-mean", (t) => { glob .sync(path.join(__dirname, "test", "in", "*.geojson")) .forEach((filepath) => { const geojson = loadJsonFileSync(filepath); const options = geojson.options || {}; options.properties = { "marker-symbol": "star", "marker-color": "#F00" }; const centered = truncate(centerMean(geojson, options)); // Display Results const results = featureCollection([]); featureEach(geojson, (feature) => results.features.push(feature)); coordEach(geojson, (coord) => results.features.push( lineString([coord, centered.geometry.coordinates], { stroke: "#00F", "stroke-width": 1, }) ) ); // Add @turf/center to compare position results.features.push( truncate( center(geojson, { properties: { "marker-symbol": "circle", "marker-color": "#00F" }, }) ) ); results.features.push(centered); const out = filepath.replace( path.join("test", "in"), path.join("test", "out") ); if (process.env.REGEN) writeJsonFileSync(out, results); t.deepEqual(results, loadJsonFileSync(out), path.parse(filepath).name); }); t.end(); }); test("turf-center-mean -- properties", (t) => { const line = lineString([ [0, 0], [1, 1], ]); const pt = centerMean(line, { properties: { foo: "bar" } }); t.equal(pt.properties.foo, "bar", "translate properties"); t.end(); }); ================================================ FILE: packages/turf-center-mean/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-center-mean/types.ts ================================================ import { lineString } from "@turf/helpers"; import { centerMean } from "./index.js"; const line = lineString([ [0, 0], [10, 10], ]); centerMean(line); centerMean(line, { properties: { foo: "bar" } }); centerMean(line, { weight: "foo" }); ================================================ FILE: packages/turf-center-median/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-center-median/README.md ================================================ # @turf/center-median ## centerMedian Takes a [FeatureCollection][1] of points and calculates the median center, algorithimically. The median center is understood as the point that is requires the least total travel from all other points. Turfjs has four different functions for calculating the center of a set of data. Each is useful depending on circumstance. `@turf/center` finds the simple center of a dataset, by finding the midpoint between the extents of the data. That is, it divides in half the farthest east and farthest west point as well as the farthest north and farthest south. `@turf/center-of-mass` imagines that the dataset is a sheet of paper. The center of mass is where the sheet would balance on a fingertip. `@turf/center-mean` takes the averages of all the coordinates and produces a value that respects that. Unlike `@turf/center`, it is sensitive to clusters and outliers. It lands in the statistical middle of a dataset, not the geographical. It can also be weighted, meaning certain points are more important than others. `@turf/center-median` takes the mean center and tries to find, iteratively, a new point that requires the least amount of travel from all the points in the dataset. It is not as sensitive to outliers as `@turf/center-mean`, but it is attracted to clustered data. It, too, can be weighted. **Bibliography** Harold W. Kuhn and Robert E. Kuenne, “An Efficient Algorithm for the Numerical Solution of the Generalized Weber Problem in Spatial Economics,” *Journal of Regional Science* 4, no. 2 (1962): 21–33, doi:{@link [https://doi.org/10.1111/j.1467-9787.1962.tb00902.x}][2]. James E. Burt, Gerald M. Barber, and David L. Rigby, *Elementary Statistics for Geographers*, 3rd ed., New York: The Guilford Press, 2009, 150–151. ### Parameters * `features` **[FeatureCollection][1]\** Any GeoJSON Feature Collection * `options` **[Object][3]** Optional parameters (optional, default `{}`) * `options.weight` **[string][4]?** the property name used to weight the center * `options.tolerance` **[number][5]** the difference in distance between candidate medians at which point the algorighim stops iterating. (optional, default `0.001`) * `options.counter` **[number][5]** how many attempts to find the median, should the tolerance be insufficient. (optional, default `10`) ### Examples ```javascript var points = turf.points([[0, 0], [1, 0], [0, 1], [5, 8]]); var medianCenter = turf.centerMedian(points); //addToMap var addToMap = [points, medianCenter] ``` Returns **[Feature][6]<[Point][7]>** The median center of the collection [1]: https://tools.ietf.org/html/rfc7946#section-3.3 [2]: https://doi.org/10.1111/j.1467-9787.1962.tb00902.x} [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [6]: https://tools.ietf.org/html/rfc7946#section-3.2 [7]: https://tools.ietf.org/html/rfc7946#section-3.1.2 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/center-median ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-center-median/bench.ts ================================================ import Benchmark from "benchmark"; import { randomPoint } from "@turf/random"; import { centerMedian } from "./index.js"; /** * Benchmark Results * * turf-center-median - 100 points x 1,900 ops/sec ±1.39% (86 runs sampled) * turf-center-median - 200 points x 1,031 ops/sec ±1.01% (90 runs sampled) * turf-center-median - 500 points x 442 ops/sec ±1.27% (75 runs sampled) */ const suite = new Benchmark.Suite("turf-center-median"); suite .add("turf-center-median - 100 points", () => centerMedian(randomPoint(100))) .add("turf-center-median - 200 points", () => centerMedian(randomPoint(200))) .add("turf-center-median - 500 points", () => centerMedian(randomPoint(500))) .on("cycle", (e) => console.log(String(e.target))) .run(); ================================================ FILE: packages/turf-center-median/index.ts ================================================ import { FeatureCollection, Feature, Point, Position } from "geojson"; import { centerMean } from "@turf/center-mean"; import { distance } from "@turf/distance"; import { centroid } from "@turf/centroid"; import { isNumber, point, isObject, featureCollection } from "@turf/helpers"; import { featureEach } from "@turf/meta"; /** * Takes a {@link FeatureCollection} of points and calculates the median center, * algorithimically. The median center is understood as the point that is * requires the least total travel from all other points. * * Turfjs has four different functions for calculating the center of a set of * data. Each is useful depending on circumstance. * * `@turf/center` finds the simple center of a dataset, by finding the * midpoint between the extents of the data. That is, it divides in half the * farthest east and farthest west point as well as the farthest north and * farthest south. * * `@turf/center-of-mass` imagines that the dataset is a sheet of paper. * The center of mass is where the sheet would balance on a fingertip. * * `@turf/center-mean` takes the averages of all the coordinates and * produces a value that respects that. Unlike `@turf/center`, it is * sensitive to clusters and outliers. It lands in the statistical middle of a * dataset, not the geographical. It can also be weighted, meaning certain * points are more important than others. * * `@turf/center-median` takes the mean center and tries to find, iteratively, * a new point that requires the least amount of travel from all the points in * the dataset. It is not as sensitive to outliers as `@turf/center-mean`, but it is * attracted to clustered data. It, too, can be weighted. * * **Bibliography** * * Harold W. Kuhn and Robert E. Kuenne, “An Efficient Algorithm for the * Numerical Solution of the Generalized Weber Problem in Spatial * Economics,” _Journal of Regional Science_ 4, no. 2 (1962): 21–33, * doi:{@link https://doi.org/10.1111/j.1467-9787.1962.tb00902.x}. * * James E. Burt, Gerald M. Barber, and David L. Rigby, _Elementary * Statistics for Geographers_, 3rd ed., New York: The Guilford * Press, 2009, 150–151. * * @function * @param {FeatureCollection} features Any GeoJSON Feature Collection * @param {Object} [options={}] Optional parameters * @param {string} [options.weight] the property name used to weight the center * @param {number} [options.tolerance=0.001] the difference in distance between candidate medians at which point the algorighim stops iterating. * @param {number} [options.counter=10] how many attempts to find the median, should the tolerance be insufficient. * @returns {Feature} The median center of the collection * @example * var points = turf.points([[0, 0], [1, 0], [0, 1], [5, 8]]); * var medianCenter = turf.centerMedian(points); * * //addToMap * var addToMap = [points, medianCenter] */ function centerMedian( features: FeatureCollection, options: { weight?: string; tolerance?: number; counter?: number } = {} ): Feature< Point, { medianCandidates: Array; [key: string]: any; } > { // Optional params options = options || {}; if (!isObject(options)) throw new Error("options is invalid"); var counter = options.counter || 10; if (!isNumber(counter)) throw new Error("counter must be a number"); var weightTerm = options.weight; // Calculate mean center: var meanCenter = centerMean(features, { weight: options.weight }); // Calculate center of every feature: var centroids = featureCollection([]); featureEach(features, function (feature) { centroids.features.push( centroid(feature, { properties: { weight: feature.properties?.[weightTerm!] }, }) ); }); const properties: MedianProperties = { tolerance: options.tolerance, medianCandidates: [], }; return findMedian( meanCenter.geometry.coordinates, [0, 0], centroids, properties, counter ) as Feature< Point, { medianCandidates: Array; [key: string]: any; } >; } interface MedianProperties { tolerance?: number; medianCandidates: Position[]; } /** * Recursive function to find new candidate medians. * * @private * @param {Position} candidateMedian current candidate median * @param {Position} previousCandidate the previous candidate median * @param {FeatureCollection} centroids the collection of centroids whose median we are determining * @param {number} counter how many attempts to try before quitting. * @returns {Feature} the median center of the dataset. */ function findMedian( candidateMedian: Position, previousCandidate: Position, centroids: FeatureCollection, properties: MedianProperties, counter: number ): Feature { var tolerance = properties.tolerance || 0.001; var candidateXsum = 0; var candidateYsum = 0; var kSum = 0; var centroidCount = 0; featureEach(centroids, function (theCentroid) { var weightValue = theCentroid.properties?.weight; var weight = weightValue === undefined || weightValue === null ? 1 : weightValue; weight = Number(weight); if (!isNumber(weight)) throw new Error("weight value must be a number"); if (weight > 0) { centroidCount += 1; var distanceFromCandidate = weight * distance(theCentroid, candidateMedian); if (distanceFromCandidate === 0) distanceFromCandidate = 1; var k = weight / distanceFromCandidate; candidateXsum += theCentroid.geometry.coordinates[0] * k; candidateYsum += theCentroid.geometry.coordinates[1] * k; kSum += k; } }); if (centroidCount < 1) throw new Error("no features to measure"); var candidateX = candidateXsum / kSum; var candidateY = candidateYsum / kSum; if ( centroidCount === 1 || counter === 0 || (Math.abs(candidateX - previousCandidate[0]) < tolerance && Math.abs(candidateY - previousCandidate[1]) < tolerance) ) { return point([candidateX, candidateY], { medianCandidates: properties.medianCandidates, }); } else { properties.medianCandidates.push([candidateX, candidateY]); return findMedian( [candidateX, candidateY], candidateMedian, centroids, properties, counter - 1 ); } } export { centerMedian }; export default centerMedian; ================================================ FILE: packages/turf-center-median/package.json ================================================ { "name": "@turf/center-median", "version": "7.3.4", "description": "Takes a FeatureCollection of points and calculates the median center.", "author": "Turf Authors", "contributors": [ "Moacir P. de Sá Pereira <@muziejus>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "center-median" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@turf/center": "workspace:*", "@turf/center-of-mass": "workspace:*", "@turf/random": "workspace:*", "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/center-mean": "workspace:*", "@turf/centroid": "workspace:*", "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-center-median/test/in/brazil-states-weighted.json ================================================ { "type": "FeatureCollection", "properties": { "weight": "population" }, "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, "features": [ { "type": "Feature", "properties": { "population": 790, "fill": "#fff" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-66.627670235635748, -9.925465695489663], [-66.730040845009626, -9.975431517708216], [-67.111420254089353, -10.269052134377702], [-67.190400969992851, -10.311349499272467], [-67.280400973426083, -10.317194226057921], [-67.332816746909955, -10.357931532299432], [-67.416972023557719, -10.389879775705666], [-67.582349227131985, -10.505983295759663], [-67.666724230350638, -10.598905662585608], [-67.721842640656362, -10.683038966576291], [-67.785750113797363, -10.685983302626113], [-67.835023797317632, -10.662802149398075], [-67.991622924385169, -10.674491602968985], [-68.071724245800169, -10.703078029840725], [-68.158571172941237, -10.784970122808403], [-68.266566782529694, -10.933021886268634], [-68.311116344775996, -10.975099524592522], [-68.397974258245611, -11.018737221569666], [-68.498323383167374, -11.05475040653721], [-68.622743553929254, -11.109198650801744], [-68.678323390033839, -11.112802166564208], [-68.727597073554108, -11.122470135683017], [-68.769894438448873, -11.097728923801711], [-68.784066802270758, -11.044621011619554], [-68.848424714882057, -11.011090736902972], [-69.001651039086553, -10.99445743548722], [-69.228441819222311, -10.955741613697825], [-69.462450617211545, -10.948095129031131], [-69.578543150936994, -10.951698644793595], [-69.673948428013915, -10.954181555044556], [-69.839776071058495, -10.933483312067494], [-69.960372999487021, -10.92987979630503], [-70.066347124623363, -10.982526282688326], [-70.220023888298172, -11.047543375012282], [-70.290446254265817, -11.064198649085128], [-70.341972135137624, -11.066681559336104], [-70.392366424169396, -11.058573648870549], [-70.450868623666693, -11.024823647583091], [-70.533222142433232, -10.946974523519643], [-70.596448463204496, -10.976901282473747], [-70.642349343861724, -11.010189857962359], [-70.641448464921112, -10.840780671812411], [-70.640316873081076, -10.586073630846116], [-70.639415994140464, -10.361293348833925], [-70.638526101528385, -10.181513068538351], [-70.637625222587772, -9.971828001945752], [-70.636944070218036, -9.823776238485522], [-70.593745826382658, -9.767526236339762], [-70.56719187029158, -9.704530628467907], [-70.599151100026347, -9.62059507839102], [-70.592174781400843, -9.543427106697308], [-70.570125220012855, -9.489879741373386], [-70.541099339999349, -9.437452981560966], [-70.607918190204529, -9.463776224752607], [-70.636944070218036, -9.478168315145382], [-70.672495829386733, -9.518004742446266], [-70.758441877587188, -9.571771834341064], [-70.816273911043297, -9.625319199664986], [-70.884444079659417, -9.668978869299224], [-70.970840567330171, -9.765724478458523], [-71.041724359096676, -9.818832390640679], [-71.115299801356485, -9.852340692700167], [-71.237918214237126, -9.965983275160283], [-71.339398930998939, -9.988483276018599], [-71.608047622887696, -10.006017456374977], [-71.887495875735297, -10.005578003233211], [-72.142873082742796, -10.005116577434364], [-72.181566931875096, -10.003776245351972], [-72.179095007952668, -9.91017272615629], [-72.172799841696914, -9.844013055663751], [-72.259866495408858, -9.774271842065829], [-72.26572220852286, -9.688556506764797], [-72.289123088321787, -9.629142441998326], [-72.318148968335294, -9.556698591578566], [-72.379123091755019, -9.510116558551601], [-72.464849413384584, -9.492120952396377], [-72.605474418749012, -9.452064798524603], [-72.814269592729531, -9.410448585999575], [-73.013847237061569, -9.407526222606847], [-73.20937092616083, -9.411349464940187], [-73.089894603243792, -9.265780611730932], [-72.970418280326768, -9.120189785864582], [-72.974021796089232, -8.993077964609398], [-73.070547678677642, -8.882819171340856], [-73.122523999019762, -8.81397883668356], [-73.203075759905062, -8.719254711976376], [-73.302524005886212, -8.65399592042445], [-73.356741537251324, -8.566918280383945], [-73.351797689406482, -8.514271794000649], [-73.360345053013788, -8.479401187201688], [-73.398149009534023, -8.458922670795488], [-73.435941979725712, -8.426974427389268], [-73.488149012967241, -8.392103820590307], [-73.549123136386982, -8.345741514134218], [-73.549123136386982, -8.299401180335224], [-73.572293303286472, -8.249896783915531], [-73.610097259806707, -8.191845023888533], [-73.610097259806707, -8.145504690089538], [-73.644967866605668, -8.072819140441808], [-73.68277182312589, -8.020612107200265], [-73.720345066746702, -7.985741500401318], [-73.775694189951849, -7.936478803209596], [-73.772771826559122, -7.895741496968085], [-73.732045506646159, -7.875504679789856], [-73.714500339961234, -7.828922646762891], [-73.720345066746702, -7.78258231296391], [-73.76691611344512, -7.753556432950404], [-73.822045510079391, -7.738922643329673], [-73.894720073398574, -7.654767366681895], [-73.94691612031157, -7.611129669704752], [-73.981797713439079, -7.585026153083987], [-74.002045516945842, -7.556000273070481], [-73.981797713439079, -7.535741483235171], [-73.958396833640151, -7.506715603221679], [-73.952771833425572, -7.460375269422684], [-73.964241560425606, -7.416715599788446], [-73.964241560425606, -7.378922629596758], [-73.929370953626659, -7.367233176025834], [-73.891797710005847, -7.373077902811303], [-73.853993753485611, -7.349896749583266], [-73.804720069965356, -7.34112965940507], [-73.749370946760195, -7.33526295996252], [-73.720345066746702, -7.309181415998836], [-73.72326743013943, -7.262819109542761], [-73.758149023266924, -7.172819106109529], [-73.793019630065885, -7.13502613591784], [-73.796842872399239, -7.116788830534645], [-72.66352617877601, -7.592672637750681], [-70.373250212502668, -8.155172659208347], [-69.806465522912788, -8.454198549521536], [-66.828599198378711, -9.838168328878282], [-66.627670235635748, -9.925245968918787], [-66.627670235635748, -9.925465695489663] ] ] ] } }, { "type": "Feature", "properties": { "population": 1749, "fill": "#fff" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-66.627670235635748, -9.925465695489663], [-66.627670235635748, -9.925245968918787], [-66.828599198378711, -9.838168328878282], [-66.743773755689745, -9.748849477814787], [-66.694719798740365, -9.748849477814787], [-66.59662287117014, -9.664013048797287], [-66.502799625403568, -9.63274595776079], [-66.404691711504796, -9.525651227112959], [-66.395693908427177, -9.405043312355886], [-66.105446094620731, -9.418556496465115], [-65.998340377644354, -9.400780616880766], [-65.931290814539736, -9.414052101762039], [-65.766144323864893, -9.565927107555609], [-65.676825472801397, -9.534638043862032], [-65.632275910555094, -9.449823587501612], [-65.525170193578717, -9.414052101762039], [-65.444849145592826, -9.445319192798536], [-65.418075462930872, -9.391771827474614], [-65.221650894890999, -9.257892427836268], [-65.199150894032684, -9.266681490671544], [-65.172366225042182, -9.373995947890265], [-65.092045177056306, -9.436332376049464], [-65.038497811732384, -9.400780616880766], [-64.904618412094038, -9.213112152690542], [-64.926898686381463, -9.11953060615194], [-64.886622805938813, -9.061478846124942], [-64.779517088962422, -8.985431479942704], [-64.69019823789894, -9.021202965682278], [-64.596594718703244, -9.025707360385354], [-64.475997790274718, -8.949879720774021], [-64.417946030247705, -8.972138022404351], [-64.382174544508132, -8.940870931367854], [-64.217017067504756, -8.949879720774021], [-64.118920139934531, -8.936366536664778], [-64.12769821644126, -8.68640558962953], [-64.074150851117338, -8.713168285962936], [-63.998323211505991, -8.681901194926454], [-63.922495571894657, -8.534530583835959], [-63.993818816802914, -8.440927064640263], [-63.917991177191567, -8.333832333992419], [-63.752844686516738, -8.284547664143616], [-63.72607100385477, -8.19094414494792], [-63.591971877645548, -8.164181448614499], [-63.587698195841895, -8.079345019597], [-63.538424512321626, -7.9987932587117], [-62.904590259627142, -8.007802048117853], [-62.828773606344342, -8.016788864866925], [-62.721448162797074, -8.061349413441775], [-62.676898600550771, -8.114896778765697], [-62.636622720108122, -8.222233208641498], [-62.556290685793698, -8.289052058846693], [-62.538525792537897, -8.36059503032584], [-62.45370034984893, -8.347103818873691], [-62.373368315534506, -8.382875304613265], [-62.306318752429902, -8.570302069575533], [-62.172450339120104, -8.610577950018182], [-62.13217445867744, -8.766715651286859], [-61.998295059039108, -8.811495926432599], [-61.917974011053218, -8.873832354591784], [-61.873424448806915, -8.856056475007449], [-61.837641976738794, -8.744457349656528], [-61.761825323455994, -8.72668147007218], [-61.717045048310268, -8.68640558962953], [-61.609950317662424, -8.722177075369103], [-61.609950317662424, -8.766715651286859], [-61.507348995389123, -8.847047685601282], [-61.484848994530822, -8.914108235034448], [-61.529618283348, -8.998922691394853], [-61.556391966009969, -9.128297696330122], [-61.529618283348, -9.226625336799771], [-61.592174438078075, -9.239896821681043], [-61.609950317662424, -9.320448582566343], [-61.547394162932349, -9.409547707058962], [-61.551898557635425, -9.463095072382885], [-61.480575312727169, -9.63725035246388], [-61.520620480270395, -9.704288929239937], [-61.565400755416121, -9.726569203527362], [-61.520620480270395, -9.860448603165707], [-61.534122678051077, -9.994547729374943], [-61.569674437219774, -10.061366579580124], [-61.565400755416121, -10.262306528651621], [-61.471566523321002, -10.436439836075536], [-61.502844600686046, -10.686422755767879], [-61.471566523321002, -10.757746000676136], [-61.520620480270395, -10.789013091712633], [-61.507348995389123, -10.878353915433223], [-61.520620480270395, -10.954181555044556], [-61.471566523321002, -10.998939857533202], [-60.440400712500775, -11.003444252236292], [-60.440400712500775, -11.038996011404976], [-60.382348952473777, -11.10155216613505], [-60.279516917301038, -11.079271891847625], [-60.176915595027737, -11.119547772290289], [-60.069820864379906, -11.115043377587199], [-60.002771301275288, -11.146332441280791], [-59.908948055508716, -11.382802176863891], [-60.025040589234166, -11.534677182657461], [-60.101098941744937, -11.601496032862656], [-60.101098941744937, -11.744362249250059], [-60.060823061302287, -11.905246044449797], [-59.98499542169094, -11.918517529331055], [-59.931448056367017, -12.052396928969401], [-59.886667781221291, -12.128444295151638], [-59.891172175924368, -12.244547815205635], [-59.82412261281975, -12.387194305022163], [-59.908948055508716, -12.619401345130157], [-60.002771301275288, -12.731000470481078], [-60.043047181717938, -12.873866686868496], [-60.083092349261165, -12.927414052192404], [-60.194691474612085, -12.972194327338144], [-60.270749827122856, -13.070302241236917], [-60.275023508926509, -13.137340818012973], [-60.351070875108732, -13.271220217651319], [-60.382348952473777, -13.418590828741813], [-60.659094568499526, -13.601513199001005], [-60.724792813193218, -13.662948748219577], [-60.914471775507025, -13.561479017786311], [-61.076915629360016, -13.489694347079194], [-61.12912266260156, -13.498483409914471], [-61.415997673544965, -13.526608410987365], [-61.511622677192776, -13.541220227951001], [-61.575749876904652, -13.524806653106126], [-61.789950324528888, -13.525707532046738], [-61.874094614848104, -13.470358408841591], [-61.944747693715186, -13.406220222801167], [-62.094820941627518, -13.241974611066937], [-62.117991108527022, -13.159840818871288], [-62.176042868554021, -13.133737302250523], [-62.264021387535138, -13.143646970597288], [-62.352900785456868, -13.132396970168131], [-62.525474034227514, -13.064215815223477], [-62.687017009139879, -12.994254875054679], [-62.765547285573078, -12.997177238447421], [-62.83506877260011, -12.953737295384059], [-62.957917898380188, -12.847103990535075], [-63.015299492365997, -12.805465805352952], [-63.041392022658215, -12.750358381375776], [-63.067495539278994, -12.669125468120725], [-63.116769222799263, -12.651569315107267], [-63.180665709611716, -12.666203104727998], [-63.249747743496982, -12.70781931725304], [-63.346724065555719, -12.680155741979007], [-63.46529950953213, -12.605228981308272], [-63.541797315184667, -12.546715795482427], [-63.585665725061233, -12.519052220208394], [-63.688497760233972, -12.478095187396008], [-63.788165732785998, -12.469547823788702], [-63.938469693597767, -12.529621068267815], [-64.061549532277269, -12.505099582957385], [-64.255040750595867, -12.483280734468821], [-64.420417954170134, -12.439840791405459], [-64.48072191154867, -12.326220181602437], [-64.513340320996093, -12.251073694360826], [-64.611667961465741, -12.20383248162122], [-64.689967524999503, -12.146439901306863], [-64.783340331295776, -12.059362261266358], [-64.829922364322741, -12.030358353909946], [-64.914297367541394, -12.006056595170406], [-64.992596931075155, -11.975228957275675], [-65.001144294682462, -11.920099560641404], [-65.030170174695954, -11.847414010993674], [-65.037146493321458, -11.829418404838449], [-65.090243419175067, -11.741220159286456], [-65.115215343955796, -11.735155705930111], [-65.142670178987501, -11.752250433144724], [-65.163368421964563, -11.76508246488423], [-65.185648696251988, -11.749547796322872], [-65.189691665156218, -11.710172794820835], [-65.175299574763457, -11.646957460378118], [-65.206116226329641, -11.58057806331469], [-65.282174578840412, -11.511056576287658], [-65.322000019812762, -11.43927190558054], [-65.325592549246679, -11.364806570708666], [-65.342467549890415, -11.315082447718083], [-65.372844748314833, -11.289879810037931], [-65.389950461857993, -11.246220140403707], [-65.393542991291909, -11.184345138043355], [-65.371493429903907, -11.110319256313247], [-65.323790791365454, -11.024823647583091], [-65.333920186283109, -10.892746005825984], [-65.402321067798638, -10.714767483411634], [-65.439894311419451, -10.586293357416992], [-65.447090356615831, -10.507323627842041], [-65.436971948026709, -10.449052141244152], [-65.395344749173134, -10.392340713299532], [-65.312991230406595, -10.253078012674592], [-65.298599140013835, -10.14686218831028], [-65.324471943735176, -10.026957398580024], [-65.32807545949764, -9.935595090407318], [-65.309398700972679, -9.872599482535477], [-65.337974141515872, -9.790245963768939], [-65.396245628113761, -9.712396839705491], [-65.436741235127286, -9.710375355253376], [-65.492090358332447, -9.731754750600174], [-65.558700468295285, -9.797452995293867], [-65.637219758399937, -9.80914244886479], [-65.706741245426969, -9.768427115280375], [-65.924775921713092, -9.785521842494987], [-66.26361626667007, -9.826017449508512], [-66.399297424189641, -9.868095087832401], [-66.478948306134328, -9.886090693987626], [-66.575243475823328, -9.899823604667745], [-66.627670235635748, -9.925465695489663] ] ] ] } }, { "type": "Feature", "properties": { "population": 497, "fill": "#fff" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-58.868773455282323, 0.224275902629742], [-59.770575247495842, 0.228780297332833], [-60.025040589234166, 0.224275902629742], [-60.127872624406905, 0.13067238343406], [-60.167917791950131, 0.005582046630991], [-60.21697174889951, -0.043482896646935], [-60.252743234639084, -0.15057762729478], [-60.310794994666082, -0.235392083655199], [-60.315299389369159, -0.306957027791427], [-60.38662263427743, -0.463094729060117], [-60.391116042651959, -0.521146489087116], [-60.315299389369159, -0.619474129556764], [-60.306290599963006, -0.673021494880686], [-60.337568677328051, -0.704288585917183], [-60.467174395162729, -0.740082044313837], [-60.516217365783575, -0.829181168806457], [-60.641098962344302, -0.86044825984294], [-60.734922208110873, -0.851681169664758], [-60.815243256096764, -0.686292979761944], [-60.904573093488793, -0.610465340150597], [-60.931346776150761, -0.556917974826689], [-61.060721781086016, -0.530155278493268], [-61.105491069903209, -0.4943618200966], [-61.221594589957206, -0.498866214799691], [-61.243874864244631, -0.547931158077617], [-61.458075311868853, -0.637250009141113], [-61.534122678051077, -0.726568860204608], [-61.578672240297394, -0.945262716203359], [-61.560896360713045, -1.021332055042677], [-61.574167845594303, -1.14169827057178], [-61.618948120740043, -1.275797396781002], [-61.619848999680656, -1.449491251063151], [-61.717275761209692, -1.401129432812041], [-61.798497688136194, -1.388736854214301], [-61.880840220574186, -1.389198280013161], [-61.877698130610568, -1.369400915976698], [-61.935749890637567, -1.244530305744519], [-62.029573136404139, -1.146202665274856], [-62.141172261755059, -1.065870630960433], [-62.203717430156601, -1.043590356673008], [-62.243773584028361, -0.981056174600027], [-62.315316555507508, -0.945262716203359], [-62.417917877780823, -0.829181168806457], [-62.507247715172852, -0.771129408779444], [-62.475969637807822, -0.695301769168111], [-62.377872710237597, -0.717582043455536], [-62.310823147132979, -0.641754403844189], [-62.319820950210598, -0.521146489087116], [-62.368874907159977, -0.467599123763193], [-62.373368315534506, -0.342728513531], [-62.404646392899551, -0.271163569394773], [-62.475969637807822, -0.222120598773927], [-62.511741123547395, -0.123792958304278], [-62.569792883574394, -0.047965318692931], [-62.578790686651999, 0.018853531512249], [-62.525023594757201, 0.094900897694487], [-62.565299475199851, 0.17523293200891], [-62.569792883574394, 0.246556176917167], [-62.53402139783482, 0.313605740021785], [-62.52951700313173, 0.429698273747235], [-62.489471835588503, 0.487750033774233], [-62.484967440885427, 0.541297399098156], [-62.538525792537897, 0.675176798736501], [-62.53402139783482, 0.7332285587635], [-62.444691560442777, 0.804782516571194], [-62.511741123547395, 0.960931204168418], [-62.516245518250471, 1.059247858309519], [-62.614342445820697, 1.362778143325784], [-62.623340248898316, 1.416325508649706], [-62.721448162797074, 1.49665754296413], [-62.788497725901692, 1.603752273611974], [-62.712670086290345, 1.73763167325032], [-62.730445965874694, 1.831454919016892], [-62.690400798331467, 1.911775967002768], [-62.708165691587268, 1.947547452742342], [-62.846549485928691, 2.018881683979146], [-63.002698173525914, 2.018881683979146], [-63.123295101954454, 2.112704929745718], [-63.150068784616408, 2.179754492850336], [-63.306448185113055, 2.16625229506964], [-63.393745551724436, 2.224073342197215], [-63.374849066628599, 2.340407575150635], [-63.38924115702136, 2.411950546629782], [-63.584545119549745, 2.434000108017784], [-63.712568806074088, 2.434000108017784], [-63.924066616876459, 2.45245713997187], [-64.024866181268536, 2.481922473127128], [-64.046696016085647, 2.502400989533328], [-64.048717500537762, 2.525131703291052], [-64.028700409930423, 2.575976431793123], [-64.009122772464849, 2.671832148340357], [-64.037698213008028, 2.801426879846503], [-64.143441625244947, 3.00482776651188], [-64.218818825385981, 3.204625137414794], [-64.228717507404212, 3.343898824368296], [-64.227146462422411, 3.491280421787323], [-64.221071022737533, 3.587355864905447], [-64.275299540431178, 3.662733065046481], [-64.568019278160051, 3.89987296667077], [-64.669049555451551, 4.011702804921114], [-64.702568843839586, 4.089332202413701], [-64.817771484952971, 4.232198418801104], [-64.788745604939464, 4.276077815006218], [-64.72236620787605, 4.274506770024416], [-64.665446039689087, 4.237153252974494], [-64.613700432246404, 4.15773308392923], [-64.576346915196481, 4.139957204344881], [-64.525491200365863, 4.139957204344881], [-64.255721902965604, 4.140407643815195], [-64.19249558219434, 4.126905446034499], [-64.154241186203791, 4.100131763372545], [-64.121622776756382, 4.067051928126276], [-64.073469698747601, 3.974349287871192], [-64.021493378405495, 3.9291295595837], [-63.914618374328541, 3.930700604565502], [-63.746999959731269, 3.932502362446741], [-63.652946001065274, 3.940829999483157], [-63.596695998919515, 3.914957195761815], [-63.526724072422169, 3.893797526985892], [-63.379792914473441, 3.942851483935272], [-63.338616155090165, 3.943983075775321], [-63.294747745213598, 3.922153240958195], [-63.136116147365414, 3.756556310813053], [-63.045215264991569, 3.686573397987161], [-62.968717459339032, 3.593881744060639], [-62.856898607417236, 3.593431304590325], [-62.764646406632465, 3.672851473635589], [-62.739894208422612, 3.940379560012857], [-62.712219646820046, 4.017997971176882], [-62.665417887222191, 4.039608079423118], [-62.609849037446168, 4.042299729916422], [-62.543920079853052, 4.084377368240311], [-62.472596834944781, 4.138605885933956], [-62.410721832584429, 4.156832204988618], [-62.153092428225406, 4.098330005491306], [-62.081549456746259, 4.126224293664762], [-61.820766976095072, 4.197108085431267], [-61.554150754986964, 4.287778254905689], [-61.479443720887119, 4.402299743649337], [-61.367624868965322, 4.432907654973178], [-61.280096789454518, 4.516832218721532], [-61.209443710587436, 4.508054142214789], [-61.102348979939592, 4.504681339351762], [-61.0362002957756, 4.519304142643946], [-61.002900733958441, 4.535278264347056], [-60.966448095849145, 4.574653265849093], [-60.906144138470594, 4.686702830670328], [-60.833469575151412, 4.729230908464515], [-60.741667813836955, 4.774230910181132], [-60.679122645435413, 4.827108109463865], [-60.627596764563606, 4.892575641258119], [-60.603745445294379, 4.949276082874206], [-60.604415611335568, 4.994506797490246], [-60.635023522659424, 5.082023890672502], [-60.671915613910485, 5.164377409439041], [-60.711971767782259, 5.191601531571308], [-60.742118253307254, 5.201950653059839], [-60.651448083832847, 5.221077851055114], [-60.576521323162112, 5.192502410511921], [-60.459516924167502, 5.187998015808844], [-60.408891922236307, 5.210047577196846], [-60.335096753405622, 5.199248016238002], [-60.241723947109364, 5.257980928634737], [-60.18165070263025, 5.238853730639462], [-60.142044988228776, 5.238853730639462], [-60.106042789589779, 5.19430416839316], [-60.078148501416322, 5.143898893032841], [-59.990620421905518, 5.082924769613115], [-59.999398498412248, 4.989782676216279], [-60.015372620115372, 4.907429157449741], [-60.026842347115405, 4.812705032742556], [-60.031797181288781, 4.740480908893673], [-60.06891998543928, 4.666674753734441], [-60.124499821543864, 4.597603706177708], [-60.140924382717287, 4.569698431675718], [-60.148570867383981, 4.533256779894955], [-60.111217350334044, 4.511207218506954], [-60.045068666170053, 4.504681339351762], [-59.962275694261749, 4.501747989630488], [-59.906025692115989, 4.480379580612222], [-59.833340142468245, 4.475875185909146], [-59.745823049285988, 4.416702820370645], [-59.7032949714918, 4.381151061201948], [-59.699691455729337, 4.353476499599381], [-59.72759673023134, 4.287547542006266], [-59.738616017761061, 4.226804131485963], [-59.716797169272496, 4.188099296025115], [-59.69114409212203, 4.160424734422534], [-59.620271286684073, 4.023172531921148], [-59.586521285396614, 3.975480879711242], [-59.557715131953998, 3.959957197478431], [-59.55120023912734, 3.933622967958229], [-59.575491011538332, 3.883448405497347], [-59.604516891551839, 3.819782631584317], [-59.670215136245531, 3.752733068479714], [-59.67899321275226, 3.699855869196981], [-59.731650685464103, 3.666556307379821], [-59.854499811244182, 3.587575591476323], [-59.833120415897369, 3.462254541773831], [-59.828846734093716, 3.398577781532254], [-59.831098931445254, 3.349304098011984], [-59.87294585686972, 3.283155413847993], [-59.945620420188902, 3.087851451319608], [-59.97239410285087, 2.990424689790572], [-59.995794982649784, 2.765424681207506], [-59.994443664238858, 2.690047481066472], [-59.9606936629514, 2.58835802406233], [-59.889590144614019, 2.362907576008951], [-59.849094537600479, 2.32712510394083], [-59.755271291833907, 2.274028178087221], [-59.74357085193445, 2.121702732823337], [-59.751667776071443, 1.962400968933963], [-59.756172170774533, 1.900525966573611], [-59.740648488541723, 1.874202723381956], [-59.698570850217834, 1.861381677970996], [-59.668424364692839, 1.842254479975736], [-59.663700243418873, 1.795232993807005], [-59.6666226068116, 1.746179036857626], [-59.596650680314269, 1.718054035784732], [-59.535665570565996, 1.70004744330096], [-59.479415568420222, 1.632327714155167], [-59.377715125087533, 1.527254467959438], [-59.337219518074008, 1.508127269964163], [-59.316971714567231, 1.464698313229363], [-59.231245392937666, 1.376049628207056], [-59.100299343020595, 1.343650945330523], [-58.968441427834364, 1.304506656727909], [-58.966419943382249, 1.302474185947247], [-58.868773455282323, 0.224275902629742] ] ] ] } }, { "type": "Feature", "properties": { "population": 3874, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-66.828599198378711, -9.838168328878282], [-69.806465522912788, -8.454198549521536], [-70.373250212502668, -8.155172659208347], [-72.66352617877601, -7.592672637750681], [-73.796842872399239, -7.116788830534645], [-73.804720069965356, -7.079896739283569], [-73.776375342321586, -6.973483161005475], [-73.758149023266924, -6.905741459202574], [-73.694472263025361, -6.83373706192458], [-73.499849452866712, -6.679401118537129], [-73.325474446214827, -6.574767325483165], [-73.240418290626451, -6.563978750852868], [-73.17742268275461, -6.525262929063473], [-73.137366528882836, -6.465870836954096], [-73.126347241353102, -6.40085374463014], [-73.135345044430721, -6.34436204325641], [-73.167743727307254, -6.260668192407493], [-73.206448562768102, -6.156495825152376], [-73.235474442781609, -6.098444065125378], [-73.20937092616083, -6.028702851527456], [-73.162799879462412, -5.933297574450535], [-73.068075754755228, -5.789530479122504], [-72.979866522874687, -5.634952836507097], [-72.970198553755878, -5.58973310821959], [-72.958948553326721, -5.495228710083282], [-72.918222233413772, -5.302616398048215], [-72.895722232555457, -5.198224304222222], [-72.907422672454928, -5.157728697208682], [-72.887174868948151, -5.122858090409721], [-72.832045472313879, -5.093832210396229], [-72.698616512145847, -5.067267267976604], [-72.608396782141739, -5.009676933748452], [-72.468892382288814, -4.901219898361148], [-72.352799848563365, -4.786017257247764], [-72.256724405445254, -4.748905439425812], [-72.082569125364259, -4.642250161919733], [-71.982450713341919, -4.57453043277394], [-71.943075711839882, -4.553370763998004], [-71.844748071370233, -4.504327793377172], [-71.668340593937685, -4.48723306616256], [-71.521420422317505, -4.469676913149087], [-71.438166024610354, -4.437486970514897], [-71.316898930140624, -4.424215485633624], [-71.234995850844399, -4.388224273323175], [-71.144325681369978, -4.387323394382548], [-70.973773917051446, -4.350431303131487], [-70.915722157024447, -4.295301906497215], [-70.865998034033879, -4.229603661803523], [-70.79961863697045, -4.173353659657764], [-70.721549786336112, -4.158939596607908], [-70.634472146295607, -4.168629538383797], [-70.530750218510818, -4.167486960215214], [-70.404748016438589, -4.150172506429712], [-70.343543180119426, -4.193590476835979], [-70.317000210356895, -4.246918115589011], [-70.239151086293433, -4.30114663328267], [-70.184021689659161, -4.298224269889943], [-70.128892293024904, -4.286512843661939], [-70.05329536631298, -4.333094876688904], [-70.004021682792711, -4.327250149903449], [-69.972073439386477, -4.30114663328267], [-69.965997999701599, -4.235887841730744], [-69.948222120117251, -4.200577781790031], [-69.911099315966752, -3.996495742754917], [-69.849674753076712, -3.659896608820929], [-69.794094916972142, -3.354564565923425], [-69.732670354082103, -3.01662509990706], [-69.668993593840526, -2.667655360032427], [-69.604646667557759, -2.314181225454703], [-69.55176946827504, -2.024142151890601], [-69.506549739987534, -1.77484038456798], [-69.47864446548553, -1.622064499833797], [-69.434995782179854, -1.421607949218242], [-69.417901054965242, -1.245650911256007], [-69.400344901951769, -1.195025909324826], [-69.411375175810036, -1.152267118631201], [-69.449168146001725, -1.091512721782351], [-69.448717706531426, -1.06496975201982], [-69.444444024727773, -1.029637719422013], [-69.448717706531426, -0.998832054184362], [-69.488323420932886, -0.96574123260956], [-69.519370785398493, -0.945724142002206], [-69.54344183123861, -0.91713771513048], [-69.554691831667768, -0.877323260486676], [-69.574500182032764, -0.837728532413763], [-69.583267272210961, -0.79587062066075], [-69.611842712754154, -0.762801771743028], [-69.620620789260883, -0.72094385999003], [-69.600823425224419, -0.681349131917102], [-69.59204534871769, -0.639271493593228], [-69.600823425224419, -0.5996767655203], [-69.611842712754154, -0.553314459064225], [-69.633892274142141, -0.509215336288221], [-69.667422548858724, -0.482452639954801], [-69.747523870273724, -0.452525881000696], [-69.827844918259601, -0.381422362663301], [-69.922799755866222, -0.317525875850848], [-70.044066850335938, -0.196236808724038], [-70.070620806427016, -0.138866201066776], [-70.070840532997906, 0.018622818612826], [-70.065665972253626, 0.189405295830795], [-70.058019487586947, 0.447254426760708], [-70.053965532354169, 0.578650916148078], [-69.98534492426775, 0.585857947673006], [-69.925040966889213, 0.589450477106922], [-69.862045359017372, 0.598448280184542], [-69.807146675282524, 0.607457069590694], [-69.75674139992222, 0.626353554686546], [-69.718948429730531, 0.649754434485459], [-69.673717715114492, 0.665047403818846], [-69.638616395416108, 0.659653116503691], [-69.603526062046271, 0.680351359480767], [-69.564821226585423, 0.700148723517231], [-69.527017270065187, 0.716353558119778], [-69.472118586330339, 0.729855755900459], [-69.420823418357969, 0.698357951964539], [-69.392017264915353, 0.666849161700071], [-69.358717703098193, 0.651556192366698], [-69.327219899162273, 0.655148721800614], [-69.305620777244584, 0.65245707130731], [-69.283120776386269, 0.627254433627158], [-69.254094896372777, 0.625452675745933], [-69.212698410418625, 0.629957070449009], [-69.173993574957777, 0.635351357764151], [-69.155997968802552, 0.642547402960545], [-69.153295331980701, 0.658752237563078], [-69.163194013998933, 0.686657512065082], [-69.176696211779628, 0.712750042357314], [-69.165896650820784, 0.753256635699387], [-69.164995771880157, 0.801849166849919], [-69.163194013998933, 0.863954882109695], [-69.19379093899424, 0.898375049438343], [-69.224398850318082, 0.963172415191409], [-69.258599291075853, 1.015379448432952], [-69.311915943500352, 1.050480768131337], [-69.361420339920045, 1.063982965912032], [-69.402816825874197, 1.042372857665796], [-69.441521661335045, 1.03878032823188], [-69.470316828449114, 1.058577692268329], [-69.517118588046955, 1.059478571208956], [-69.567523863407274, 1.065773737464724], [-69.620840515831759, 1.073200495560528], [-69.716915958949869, 1.059028131738643], [-69.751347112607064, 1.076573298423568], [-69.798148872204919, 1.078375056304793], [-69.852146676999141, 1.059478571208956], [-69.850795358588215, 1.308780338531562], [-69.849444040177289, 1.543898755703736], [-69.848543161236677, 1.708825519807704], [-69.799950630086144, 1.705232990373773], [-69.739646672707607, 1.734929036428468], [-69.650097108744689, 1.739422444802997], [-69.581245787758846, 1.770700522168042], [-69.542991391768297, 1.773172446090456], [-69.470097101878224, 1.757879476757083], [-69.394269462266891, 1.725700520451426], [-69.319793141066469, 1.721207112076897], [-69.124269451967209, 1.721207112076897], [-68.913222080635137, 1.721426838647773], [-68.678543116604715, 1.721426838647773], [-68.443424699432541, 1.721657551547196], [-68.239573373296849, 1.721657551547196], [-68.176566779096461, 1.719855793665971], [-68.213250130105195, 1.774523764501382], [-68.255997934470273, 1.845407556267887], [-68.239342660397426, 1.901426845514223], [-68.218424690849474, 1.957676847659997], [-68.193892219210497, 1.986922454244379], [-68.130215458968934, 1.955875089778772], [-68.077118533115311, 1.860030359560085], [-68.032799683768431, 1.788025962282077], [-67.98982116650393, 1.75247420311338], [-67.936273801180022, 1.748431234209164], [-67.875519404331172, 1.760582113578934], [-67.814995720381745, 1.790047446734192], [-67.71194395863813, 1.922125088491299], [-67.609122909793953, 2.035075532253146], [-67.556025983940344, 2.073099215344257], [-67.499545268895147, 2.107980808471765], [-67.457698343470682, 2.121252293353024], [-67.400547462384296, 2.116747898649948], [-67.35194394490523, 2.085931247083764], [-67.320665867540185, 2.032153168860418], [-67.205924652225661, 1.84472640389815], [-67.11929745165547, 1.703650959063424], [-67.09004085874254, 1.615672440082307], [-67.088250087189849, 1.400582099846019], [-67.093644374505004, 1.210002258591601], [-67.082174647504971, 1.185480773281185], [-67.065299646861234, 1.178273741756257], [-66.876071124017741, 1.223054016901983], [-66.619122872028441, 0.992198295204915], [-66.429224183143759, 0.821657517214916], [-66.347090390948111, 0.767198286621849], [-66.301650936089729, 0.751905317288461], [-66.191172416250311, 0.763375044288495], [-66.059995653433816, 0.785424605676496], [-65.996318893192239, 0.809726364416036], [-65.92589652722458, 0.863054003169069], [-65.811375038480932, 0.937299611470067], [-65.718221958755549, 0.97802593138303], [-65.681549594075364, 0.983431205026719], [-65.64464651649574, 0.970379446716336], [-65.566116240062556, 0.926049611040909], [-65.522917996227179, 0.843476365703495], [-65.562743437199515, 0.747400922585385], [-65.555997831473448, 0.687997844147461], [-65.473424586136019, 0.691150920439611], [-65.407275901972028, 0.790379439849886], [-65.360924581844486, 0.868679003383647], [-65.263948259785764, 0.931905324154911], [-65.169674574548878, 1.022125054159034], [-65.103745616955763, 1.108082088688022], [-65.02656665893349, 1.158476377719794], [-64.910023685737741, 1.219681214038943], [-64.817991211523847, 1.257023744760332], [-64.731594723853092, 1.253431215326401], [-64.667467524141202, 1.293926822339941], [-64.584443839333474, 1.369974188522164], [-64.5261723527356, 1.430948311941904], [-64.486116198863826, 1.452778146759016], [-64.405124984836746, 1.446922433645014], [-64.304094707545261, 1.45525007068143], [-64.205096901034409, 1.529506665310976], [-64.114866184701754, 1.61927595584477], [-64.06694381959241, 1.770480795597152], [-64.03544601565649, 1.904349208906964], [-64.008441620095113, 1.931573331039232], [-63.97582321064769, 1.95295272638603], [-63.937118375186841, 1.966905363637039], [-63.844415734931772, 1.976804045655271], [-63.682191607649656, 2.048127290563528], [-63.57037275572786, 2.120582127311835], [-63.463948191121204, 2.136105809544645], [-63.432450387185284, 2.155452734110796], [-63.393965278295326, 2.222502297215414], [-63.393745551724436, 2.224073342197215], [-63.306448185113055, 2.16625229506964], [-63.150068784616408, 2.179754492850336], [-63.123295101954454, 2.112704929745718], [-63.002698173525914, 2.018881683979146], [-62.846549485928691, 2.018881683979146], [-62.708165691587268, 1.947547452742342], [-62.690400798331467, 1.911775967002768], [-62.730445965874694, 1.831454919016892], [-62.712670086290345, 1.73763167325032], [-62.788497725901692, 1.603752273611974], [-62.721448162797074, 1.49665754296413], [-62.623340248898316, 1.416325508649706], [-62.614342445820697, 1.362778143325784], [-62.516245518250471, 1.059247858309519], [-62.511741123547395, 0.960931204168418], [-62.444691560442777, 0.804782516571194], [-62.53402139783482, 0.7332285587635], [-62.538525792537897, 0.675176798736501], [-62.484967440885427, 0.541297399098156], [-62.489471835588503, 0.487750033774233], [-62.52951700313173, 0.429698273747235], [-62.53402139783482, 0.313605740021785], [-62.569792883574394, 0.246556176917167], [-62.565299475199851, 0.17523293200891], [-62.525023594757201, 0.094900897694487], [-62.578790686651999, 0.018853531512249], [-62.569792883574394, -0.047965318692931], [-62.511741123547395, -0.123792958304278], [-62.475969637807822, -0.222120598773927], [-62.404646392899551, -0.271163569394773], [-62.373368315534506, -0.342728513531], [-62.368874907159977, -0.467599123763193], [-62.319820950210598, -0.521146489087116], [-62.310823147132979, -0.641754403844189], [-62.377872710237597, -0.717582043455536], [-62.475969637807822, -0.695301769168111], [-62.507247715172852, -0.771129408779444], [-62.417917877780823, -0.829181168806457], [-62.315316555507508, -0.945262716203359], [-62.243773584028361, -0.981056174600027], [-62.203717430156601, -1.043590356673008], [-62.141172261755059, -1.065870630960433], [-62.029573136404139, -1.146202665274856], [-61.935749890637567, -1.244530305744519], [-61.877698130610568, -1.369400915976698], [-61.880840220574186, -1.389198280013161], [-61.798497688136194, -1.388736854214301], [-61.717275761209692, -1.401129432812041], [-61.619848999680656, -1.449491251063151], [-61.618948120740043, -1.275797396781002], [-61.574167845594303, -1.14169827057178], [-61.560896360713045, -1.021332055042677], [-61.578672240297394, -0.945262716203359], [-61.534122678051077, -0.726568860204608], [-61.458075311868853, -0.637250009141113], [-61.243874864244631, -0.547931158077617], [-61.221594589957206, -0.498866214799691], [-61.105491069903209, -0.4943618200966], [-61.060721781086016, -0.530155278493268], [-60.931346776150761, -0.556917974826689], [-60.904573093488793, -0.610465340150597], [-60.815243256096764, -0.686292979761944], [-60.734922208110873, -0.851681169664758], [-60.641098962344302, -0.86044825984294], [-60.516217365783575, -0.829181168806457], [-60.467174395162729, -0.740082044313837], [-60.337568677328051, -0.704288585917183], [-60.306290599963006, -0.673021494880686], [-60.315299389369159, -0.619474129556764], [-60.391116042651959, -0.521146489087116], [-60.38662263427743, -0.463094729060117], [-60.315299389369159, -0.306957027791427], [-60.310794994666082, -0.235392083655199], [-60.252743234639084, -0.15057762729478], [-60.21697174889951, -0.043482896646935], [-60.167917791950131, 0.005582046630991], [-60.127872624406905, 0.13067238343406], [-60.025040589234166, 0.224275902629742], [-59.770575247495842, 0.228780297332833], [-58.868773455282323, 0.224275902629742], [-58.850997575697988, -0.083736804432505], [-58.86449977347867, -0.173077628153081], [-58.855490984072517, -0.351495603709196], [-58.739398450347068, -0.432047364594496], [-58.748396253424673, -0.62397852425984], [-58.703615978278947, -0.695301769168111], [-58.627799324996147, -0.766844740647258], [-58.569747564969148, -0.762340345944182], [-58.440372560033893, -0.86044825984294], [-58.39109887651361, -1.048094751376084], [-58.315271236902262, -1.119417996284355], [-58.252715082172188, -1.128426785690522], [-58.159122549305039, -1.235521516338338], [-58.083075183122816, -1.298077671068427], [-57.980473860849543, -1.34712064168923], [-57.900141826535105, -1.422948281300592], [-57.828598855055944, -1.445228555588045], [-57.654674287874371, -1.588094771975463], [-57.565344450482328, -1.623866257715036], [-57.449240930428331, -1.690926807148188], [-57.337641805077411, -1.730982961019961], [-57.275096636675883, -1.713207081435613], [-57.248322954013915, -1.757745657353368], [-57.167990919699491, -1.771236868805516], [-57.087669871713615, -1.81129302267729], [-57.007348823727739, -1.936405332137454], [-56.824195740569124, -2.034491273379132], [-56.743874692583248, -2.052486879534356], [-56.748368100957777, -2.17737946242363], [-56.63676897560687, -2.222137764912276], [-56.498396167593981, -2.159603582839281], [-56.484893969813299, -2.248922433902749], [-56.400969406064945, -2.336219800514158], [-56.391070724046713, -2.391788650290195], [-56.75714617746452, -3.186495711855869], [-58.292990962614851, -6.49893968587179], [-58.374443602440763, -6.57050463000806], [-58.436769044271415, -6.675797602774665], [-58.455445802796376, -6.793922607280777], [-58.385924315769344, -6.949181402265936], [-58.228424309761195, -7.141552015073032], [-58.146290517565546, -7.263500261912498], [-58.136622548446738, -7.338207296012342], [-58.201870353670117, -7.414474388765456], [-58.223700188487229, -7.484677028162224], [-58.223919915058119, -7.574677031595442], [-58.259471674226816, -7.67322439863598], [-58.330344479664774, -7.780099402712935], [-58.353525632892811, -7.905870891885741], [-58.328773434682958, -8.050538866154383], [-58.354415525504876, -8.27600030053631], [-58.397174316198502, -8.415504700389221], [-58.426650635682307, -8.523038884178831], [-58.471650637398923, -8.690888011675511], [-58.547467290681723, -8.74893977170251], [-61.609950317662424, -8.766715651286859], [-61.609950317662424, -8.722177075369103], [-61.717045048310268, -8.68640558962953], [-61.761825323455994, -8.72668147007218], [-61.837641976738794, -8.744457349656528], [-61.873424448806915, -8.856056475007449], [-61.917974011053218, -8.873832354591784], [-61.998295059039108, -8.811495926432599], [-62.13217445867744, -8.766715651286859], [-62.172450339120104, -8.610577950018182], [-62.306318752429902, -8.570302069575533], [-62.373368315534506, -8.382875304613265], [-62.45370034984893, -8.347103818873691], [-62.538525792537897, -8.36059503032584], [-62.556290685793698, -8.289052058846693], [-62.636622720108122, -8.222233208641498], [-62.676898600550771, -8.114896778765697], [-62.721448162797074, -8.061349413441775], [-62.828773606344342, -8.016788864866925], [-62.904590259627142, -8.007802048117853], [-63.538424512321626, -7.9987932587117], [-63.587698195841895, -8.079345019597], [-63.591971877645548, -8.164181448614499], [-63.72607100385477, -8.19094414494792], [-63.752844686516738, -8.284547664143616], [-63.917991177191567, -8.333832333992419], [-63.993818816802914, -8.440927064640263], [-63.922495571894657, -8.534530583835959], [-63.998323211505991, -8.681901194926454], [-64.074150851117338, -8.713168285962936], [-64.12769821644126, -8.68640558962953], [-64.118920139934531, -8.936366536664778], [-64.217017067504756, -8.949879720774021], [-64.382174544508132, -8.940870931367854], [-64.417946030247705, -8.972138022404351], [-64.475997790274718, -8.949879720774021], [-64.596594718703244, -9.025707360385354], [-64.69019823789894, -9.021202965682278], [-64.779517088962422, -8.985431479942704], [-64.886622805938813, -9.061478846124942], [-64.926898686381463, -9.11953060615194], [-64.904618412094038, -9.213112152690542], [-65.038497811732384, -9.400780616880766], [-65.092045177056306, -9.436332376049464], [-65.172366225042182, -9.373995947890265], [-65.199150894032684, -9.266681490671544], [-65.221650894890999, -9.257892427836268], [-65.418075462930872, -9.391771827474614], [-65.444849145592826, -9.445319192798536], [-65.525170193578717, -9.414052101762039], [-65.632275910555094, -9.449823587501612], [-65.676825472801397, -9.534638043862032], [-65.766144323864893, -9.565927107555609], [-65.931290814539736, -9.414052101762039], [-65.998340377644354, -9.400780616880766], [-66.105446094620731, -9.418556496465115], [-66.395693908427177, -9.405043312355886], [-66.404691711504796, -9.525651227112959], [-66.502799625403568, -9.63274595776079], [-66.59662287117014, -9.664013048797287], [-66.694719798740365, -9.748849477814787], [-66.743773755689745, -9.748849477814787], [-66.828599198378711, -9.838168328878282] ] ] ] } }, { "type": "Feature", "properties": { "population": 8074, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-58.868773455282323, 0.224275902629742], [-58.966419943382249, 1.302474185947247], [-58.916695820391681, 1.248926820623353], [-58.862467302698008, 1.203707092335833], [-58.821740982785059, 1.2012241820849], [-58.787320815456383, 1.208431213609913], [-58.730400647269448, 1.247575502212442], [-58.684719493183024, 1.281105776928996], [-58.60506861123838, 1.279073306148348], [-58.511915531513012, 1.284698306362941], [-58.495721683239026, 1.312153141394674], [-58.486943606732268, 1.347704900563258], [-58.506070804727528, 1.438605782937259], [-58.472990969481316, 1.466280344539769], [-58.395822997787548, 1.481804026772636], [-58.380299315554737, 1.530176831352151], [-58.362743162541221, 1.556730787443371], [-58.340693601153305, 1.58754743900937], [-58.31415063139076, 1.592051833712503], [-58.28107079614449, 1.574275954128211], [-58.230445794213267, 1.563256666598477], [-58.173075186555991, 1.547952710936613], [-58.142247548661317, 1.516905346470935], [-58.091391833830642, 1.514422436220059], [-58.034691392214654, 1.520278149333876], [-58.011740951885997, 1.539855786799592], [-57.99509666414167, 1.574275954128211], [-57.982715071872519, 1.648532548757714], [-57.9462734200917, 1.650554033209858], [-57.873368143873051, 1.667198320954185], [-57.795749732709112, 1.70004744330106], [-57.691797092024899, 1.704782550903417], [-57.594370330495849, 1.704101398533737], [-57.545766813016712, 1.726150959921654], [-57.500547084729249, 1.773853598460107], [-57.412799278647583, 1.908853603609998], [-57.366898397990326, 1.940131680975128], [-57.317394001570563, 1.963532560774013], [-57.275547076146154, 1.959247892641883], [-57.189590041617123, 1.981528166929309], [-57.118947949078688, 2.013926849805898], [-57.092624705887033, 2.005829925668877], [-57.037495309252733, 1.936528165212735], [-57.010040474221057, 1.921224209550701], [-56.969544867207446, 1.916500088276791], [-56.83679705940915, 1.881179042007489], [-56.766374693441492, 1.892198329537223], [-56.68986590146045, 1.914247890925139], [-56.616521172100022, 1.922575527961612], [-56.563643972817317, 1.907282558628253], [-56.525400563155301, 1.927299649235522], [-56.482872485361213, 1.942153165427158], [-56.452945726407052, 1.932254483408883], [-56.385896163302448, 1.923926846372581], [-56.22704483888333, 1.885452723811113], [-56.019820709884584, 1.842254479975736], [-55.96333999483943, 1.857107996167372], [-55.929589993551929, 1.887474208263313], [-55.921723782314359, 1.976573332755947], [-55.91541762973003, 2.039579926956264], [-55.961999662757023, 2.095148776732287], [-56.020040436455531, 2.158155370932775], [-56.073598788108029, 2.236674661037284], [-56.137715001491358, 2.258954935324823], [-56.12939835078339, 2.29945054233832], [-56.087771151929871, 2.341297467762729], [-56.045023347564779, 2.364478620990781], [-56.020271149354983, 2.392823348634579], [-55.993497466692929, 2.497457141688471], [-55.975490874209186, 2.515903187313995], [-55.957495268054004, 2.520407582017128], [-55.935896146136315, 2.516573353355284], [-55.893818507812398, 2.489579944122454], [-55.730473775018822, 2.406105819844413], [-55.658919817211142, 2.41870713868434], [-55.385316291148968, 2.440525987173032], [-55.343919805194787, 2.488679065181771], [-55.286098758067283, 2.499698352711505], [-55.187771117597606, 2.547400991249958], [-55.148846555565854, 2.55077379411307], [-55.114195675337783, 2.53930406711288], [-55.070316279132669, 2.548301870190642], [-55.005749626279055, 2.593082145336382], [-54.978745230717664, 2.59757555371084], [-54.968396109229104, 2.548301870190642], [-54.926549183804582, 2.497457141688471], [-54.876143908444305, 2.45042466919125], [-54.851622423133847, 2.439625108232349], [-54.766796980444951, 2.454698350994931], [-54.722247418198663, 2.441657579013167], [-54.714820660102873, 2.425002304940222], [-54.73484873703876, 2.416224228433464], [-54.717072857454411, 2.264579935539416], [-54.78839610236264, 2.130480809330038], [-54.752844343193885, 2.081426852380673], [-54.792900497065716, 2.010103607472502], [-54.7616224197007, 1.969827727029838], [-54.766115828075158, 1.898504482121496], [-54.73484873703876, 1.773403158989879], [-54.578700049441466, 1.782400962067584], [-54.498368015127028, 1.746629476328053], [-54.364499601817215, 1.760131674108663], [-54.203615806617563, 1.657299638935967], [-54.172348715580995, 1.657299638935967], [-54.083249591088475, 1.541207105210503], [-54.078745196385341, 1.505655346041749], [-54.007191238577661, 1.523431225626041], [-53.922365795888709, 1.460875070896009], [-53.891098704852141, 1.407327705572129], [-53.757219305213823, 1.394056220690743], [-53.739443425629474, 1.434101388234183], [-53.659122377643598, 1.420829903352796], [-53.650124574566064, 1.362778143325841], [-53.556290342470902, 1.367282538028917], [-53.538525449215058, 1.2421812148973], [-53.440197808745438, 1.259957094481592], [-53.408919731380422, 1.184129454870344], [-53.466971491407435, 1.152851377505215], [-53.41791753445807, 0.94315532458404], [-53.266273241563908, 0.782282515712836], [-53.132174115354644, 0.751004438347934], [-53.114398235770352, 0.719957073882256], [-53.141171918432292, 0.536803990723683], [-53.127669720651625, 0.384928984930184], [-53.042844277962672, 0.246556176917181], [-53.007292518793975, 0.134957051566346], [-53.016070595300675, 0.054625017251851], [-52.976025427757463, -0.016698227656377], [-52.913469273027374, -0.190853507737359], [-52.828643830338422, -0.181844718331263], [-52.699268825403124, -0.302452633088365], [-52.627714867595444, -0.396275878854851], [-52.63221926229852, -0.556917974826604], [-52.605445579636523, -0.610465340150597], [-52.525124531650647, -0.646236825890128], [-52.507348652066355, -0.731073254907699], [-52.516115742244551, -0.873939471295046], [-52.400023208519087, -0.869457049249036], [-52.368745131153958, -0.923004414573029], [-52.39124513201233, -0.954271505609483], [-52.359967054647313, -1.070375025663452], [-52.239370126218773, -1.146202665274814], [-52.132275395570957, -1.15070705997789], [-52.051943361256519, -1.177469756311268], [-51.984893798151859, -1.141698270571794], [-51.888148188992545, -1.160375029096713], [-51.921667477380652, -1.180853545502885], [-51.934499509120144, -1.320357945355852], [-51.980839842919124, -1.368038611237182], [-52.020445557320613, -1.39910794835987], [-52.229240731301161, -1.362413611022589], [-52.553469259294388, -1.514068890245312], [-52.664167505704711, -1.551642133866153], [-52.31024293165666, -1.559530317760732], [-52.196622321853681, -1.64008207864606], [-51.947540281101965, -1.586754439893014], [-51.646273179765785, -1.394361854428894], [-51.531290265223333, -1.354107946643353], [-51.297292453562591, -1.223590363539415], [-51.202348602284587, -1.136512723498981], [-51.028874474573229, -1.032120629672988], [-50.99197139699362, -0.986219749015731], [-50.894995074934968, -0.937616231536595], [-50.842348588551602, -0.999491233896947], [-50.838294633318867, -1.038866235398984], [-50.917945515263568, -1.115155300809249], [-50.89724727228645, -1.164417998000999], [-50.844589799574635, -1.226293000361238], [-50.825473587907936, -1.311349155949642], [-50.818716995853265, -1.376146521702708], [-50.786098586405842, -1.489986858076691], [-50.678992869429521, -1.643905320979457], [-50.675400339995576, -1.694750049481513], [-50.690023143287704, -1.761788626257555], [-50.638716988986857, -1.817137749462688], [-50.585620063133149, -1.849986871809563], [-50.403148132344256, -2.015594788283238], [-50.260490656199295, -1.922892148028211], [-50.172742850117572, -1.896129451694776], [-50.116492847971813, -1.857413629905352], [-49.999268722406327, -1.831771539083491], [-49.902973552717242, -1.870707087443691], [-49.719589756659275, -1.926275937219714], [-49.58527090387912, -1.867103571681298], [-49.313699848597707, -1.731642140732561], [-49.398745017857493, -1.971495665507291], [-49.460169580747561, -2.191551826245473], [-49.506971340345444, -2.280189524939203], [-49.553322660472929, -2.5198233231431], [-49.599223541130186, -2.583939536526429], [-49.636566071851519, -2.656844812744964], [-49.575822661331244, -2.631422448493993], [-49.52384634098911, -2.596771568265922], [-49.457466943925681, -2.504530353809628], [-49.407742820935141, -2.344327710979655], [-49.211098526324349, -1.916607968100948], [-49.15484852417859, -1.87857329868126], [-48.991273078485619, -1.829750054631404], [-48.710023067756765, -1.4877456470536], [-48.599994987387618, -1.488646525994284], [-48.529572621419959, -1.567396528998415], [-48.462973497785697, -1.613978562025295], [-48.445867784242466, -1.520375042829585], [-48.349792341124385, -1.482120646839121], [-48.451492784457059, -1.435780313040141], [-48.468148058529948, -1.393922401287114], [-48.477816027648714, -1.323719761890345], [-48.408525253521134, -1.229215363754008], [-48.449691026575863, -1.145521512905134], [-48.306594097288951, -1.039767114339611], [-48.317624371147247, -0.960577658193756], [-48.266548929745738, -0.895099140071011], [-48.201740577664111, -0.827818864066955], [-48.128395848303796, -0.795189468291028], [-48.115124363422524, -0.737599134062862], [-48.068773043294982, -0.713736828465073], [-48.032540131756605, -0.704969738286877], [-47.960997160277429, -0.769547377469053], [-47.883367762784758, -0.693280284716025], [-47.807770836072905, -0.663573252332753], [-47.773790121886066, -0.676844737214026], [-47.731492756991315, -0.71037501193058], [-47.687173907644365, -0.724767102323369], [-47.651171709005439, -0.718702648966996], [-47.557348463238782, -0.669879404917026], [-47.470721262668633, -0.748629407921158], [-47.418744942326441, -0.76594386170666], [-47.432917306148397, -0.721844738930656], [-47.460372141180073, -0.680887706118199], [-47.438992745833275, -0.647599130629658], [-47.398046699349436, -0.626681161081649], [-47.268671694414138, -0.645357919606681], [-47.200490539469513, -0.680448252976419], [-47.126915097209633, -0.745465345300431], [-47.02454448783584, -0.750189466574341], [-46.944443166420854, -0.743443860848345], [-46.893598437918683, -0.779896498957612], [-46.811244919152273, -0.779676772386722], [-46.769848433198092, -0.836607926902275], [-46.644516397167081, -0.916478535417809], [-46.617292275034742, -0.970707053111482], [-46.516272984071861, -0.996788597075124], [-46.421768585935524, -1.030099145220788], [-46.320749294972529, -1.039107934626998], [-46.219048851639855, -1.031219750732305], [-46.214994896407063, -1.099840358818767], [-46.14029884863578, -1.118297390772852], [-46.044673844987983, -1.103004421439437], [-46.007089615038637, -1.146861844987484], [-46.141199727576407, -1.240025911041414], [-46.158964620832137, -1.315853550652776], [-46.123193135092549, -1.34712064168923], [-46.199240501274801, -1.485504436030624], [-46.181244895119619, -1.574823287094205], [-46.199240501274801, -1.677413623038944], [-46.243790063521089, -1.722193898184685], [-46.315344021328883, -1.73098296101989], [-46.301841823548159, -1.802525932499123], [-46.217016380859263, -1.807030327202142], [-46.212522972484635, -1.927396542731231], [-46.279572535589239, -2.141827703254933], [-46.377669463159521, -2.253426828605825], [-46.413440948899051, -2.239913644496539], [-46.408947540524537, -2.387306228244199], [-46.435721223186533, -2.409564529874501], [-46.426943146679776, -2.512396565047197], [-46.484994906706731, -2.547948324215952], [-46.507275180994213, -2.614986900991994], [-46.600867713861305, -2.664051844269977], [-46.667917276965966, -2.739879483881225], [-46.574094031199365, -2.847193941099988], [-46.650141397381617, -2.91401279130514], [-46.636650185929511, -2.985577735441382], [-46.667917276965966, -3.092672466089311], [-46.743744916577327, -3.190780379988041], [-46.824296677462542, -3.329142201672369], [-46.859848436631296, -3.329142201672369], [-46.944673879320192, -3.396202751105534], [-46.966943167279112, -3.525797482611608], [-47.029499322009201, -3.570358031186515], [-47.024994927306068, -3.59712072751995], [-47.065270807748732, -3.842599252509217], [-47.28846905845063, -4.079288714663221], [-47.310749332738055, -4.065797503211058], [-47.333018620696976, -4.164125143680735], [-47.382292304217231, -4.275724269031571], [-47.458119943828592, -4.338280423761717], [-47.489398021193608, -4.423094880122107], [-47.583221266960209, -4.547965490354329], [-47.65454451186838, -4.606017250381342], [-47.801915122958917, -4.597030433632256], [-48.252816019065619, -4.954327810543248], [-48.730490597834375, -5.338168157216899], [-48.721943234227098, -5.355043157860635], [-48.721492794756784, -5.355724310230372], [-48.721492794756784, -5.355944036801247], [-48.597523063465246, -5.398702827494787], [-48.51111558946593, -5.408151070042777], [-48.421566025503012, -5.398483100923954], [-48.356999372649341, -5.424344918316791], [-48.31717393167699, -5.486219920677129], [-48.275316019923991, -5.522452832215549], [-48.231447610047439, -5.533241406845832], [-48.192742774586577, -5.565431349480036], [-48.159223486198584, -5.619198441374863], [-48.181273047586529, -5.672064654329048], [-48.258671732179693, -5.723590535200856], [-48.280040141197958, -5.795814659049739], [-48.24540024729842, -5.888517299304809], [-48.254398050376039, -5.945228727249429], [-48.307044536759349, -5.965926970226505], [-48.321216900581248, -6.006642303810906], [-48.296695415270818, -6.067396700659771], [-48.319415142699995, -6.112396702376316], [-48.389848494996187, -6.141862035531645], [-48.413699814265414, -6.207340553654447], [-48.391199813407098, -6.308832256744807], [-48.410096298502964, -6.357655500794763], [-48.470619982452376, -6.353370832662506], [-48.527320424068449, -6.3722673177584], [-48.579966910451759, -6.414125229511413], [-48.622044548775648, -6.488590564383287], [-48.652872186670379, -6.595707267688226], [-48.805417358505139, -6.71831469424032], [-49.079471324037627, -6.856237062782895], [-49.209747207913466, -7.005651130982585], [-49.195124404621282, -7.168556410634423], [-49.239673966867599, -7.334823506820669], [-49.340473531259647, -7.510099392413281], [-49.333947652104456, -7.649142366467331], [-49.220316055972887, -7.752194128210874], [-49.172393690863544, -7.867396769324316], [-49.189949843877002, -7.994970016378346], [-49.226841935128078, -8.139418264076113], [-49.282641497803553, -8.301422664787339], [-49.378947653821115, -8.498297672297554], [-49.502697658541763, -8.70866389125986], [-49.612945465481772, -8.839181474363713], [-49.707900303088365, -8.894970050710626], [-49.829848549927817, -9.022103844622904], [-49.979240645470441, -9.220099457644579], [-50.08409416509528, -9.421918312999608], [-50.175214774040001, -9.730172719289826], [-50.234848565377348, -9.842672723581373], [-51.297523166462042, -9.789125358257451], [-55.092146113949809, -9.565927107555609], [-56.462624681854408, -9.467599467085961], [-56.489398364516376, -9.467599467085961], [-56.67682512947863, -9.378280616022494], [-56.770648375245202, -9.39627622217769], [-56.837697938349834, -9.271163912717554], [-56.926797062842439, -9.244401216384119], [-57.047393991270965, -9.231129731502847], [-57.074167673932948, -9.18634945635705], [-57.083165477010539, -9.079254725709276], [-57.100941356594888, -9.052470056718775], [-57.297365924634761, -8.958646810952203], [-57.480519007793376, -8.79350032027736], [-57.578615935363601, -8.757948561108677], [-57.641172090093676, -8.615082344721259], [-57.650169893171295, -8.498978824667262], [-57.681447970536325, -8.436422669937187], [-57.641172090093676, -8.231000298819694], [-57.779544898106565, -8.048077928560417], [-57.895648418160548, -7.690780551649439], [-57.94919578348447, -7.619457306741182], [-57.980473860849543, -7.530116483020606], [-58.060794908835419, -7.409530540920628], [-58.136622548446738, -7.338207296012342], [-58.146290517565546, -7.263500261912498], [-58.228424309761195, -7.141552015073032], [-58.385924315769344, -6.949181402265936], [-58.455445802796376, -6.793922607280777], [-58.436769044271415, -6.675797602774665], [-58.374443602440763, -6.57050463000806], [-58.292990962614851, -6.49893968587179], [-56.75714617746452, -3.186495711855869], [-56.391070724046713, -2.391788650290195], [-56.400969406064945, -2.336219800514158], [-56.484893969813299, -2.248922433902749], [-56.498396167593981, -2.159603582839281], [-56.63676897560687, -2.222137764912276], [-56.748368100957777, -2.17737946242363], [-56.743874692583248, -2.052486879534356], [-56.824195740569124, -2.034491273379132], [-57.007348823727739, -1.936405332137454], [-57.087669871713615, -1.81129302267729], [-57.167990919699491, -1.771236868805516], [-57.248322954013915, -1.757745657353368], [-57.275096636675883, -1.713207081435613], [-57.337641805077411, -1.730982961019961], [-57.449240930428331, -1.690926807148188], [-57.565344450482328, -1.623866257715036], [-57.654674287874371, -1.588094771975463], [-57.828598855055944, -1.445228555588045], [-57.900141826535105, -1.422948281300592], [-57.980473860849543, -1.34712064168923], [-58.083075183122816, -1.298077671068427], [-58.159122549305039, -1.235521516338338], [-58.252715082172188, -1.128426785690522], [-58.315271236902262, -1.119417996284355], [-58.39109887651361, -1.048094751376084], [-58.440372560033893, -0.86044825984294], [-58.569747564969148, -0.762340345944182], [-58.627799324996147, -0.766844740647258], [-58.703615978278947, -0.695301769168111], [-58.748396253424673, -0.62397852425984], [-58.739398450347068, -0.432047364594496], [-58.855490984072517, -0.351495603709196], [-58.86449977347867, -0.173077628153081], [-58.850997575697988, -0.083736804432505], [-58.868773455282323, 0.224275902629742] ] ], [ [ [-51.424415261146351, -0.565926764232813], [-51.254094209727157, -0.541405278922355], [-51.160721403430955, -0.6667153422963], [-51.276374484014639, -1.021771508184429], [-51.310124485302083, -1.023792992636515], [-51.465141581059243, -1.211219757598826], [-51.637714829829918, -1.34195706727354], [-51.664949938290761, -1.35476712635591], [-51.832568352888018, -1.433736855930931], [-51.938322751453427, -1.452655313683863], [-51.801971427892624, -1.202452667420573], [-51.68002318105323, -1.086129420795658], [-51.679572741583002, -1.018629418220826], [-51.678221423172033, -0.855042986199237], [-51.546143781414855, -0.649620615081744], [-51.424415261146351, -0.565926764232813] ] ], [ [ [-48.444516465831612, -0.271844721764467], [-48.392770858388872, -0.297267086015552], [-48.379719100078489, -0.352857908448641], [-48.428091904658174, -0.441495607142429], [-48.46387437672621, -0.534879399767249], [-48.497393665114316, -0.664913584415103], [-48.523266468835629, -0.691478526834715], [-48.566695425570458, -0.684491221880705], [-48.539691030009067, -0.80105616773352], [-48.549589712027341, -0.847616228103448], [-48.57096910737414, -0.892857929048034], [-48.624066033227791, -0.986900901385468], [-48.704617794113062, -1.106607937201943], [-48.728469113382289, -1.131788602225015], [-48.7898936762723, -1.173426787407095], [-48.839617799262896, -1.226512726932128], [-48.829048951203447, -1.276478549150681], [-48.804066040094142, -1.326861851853948], [-48.833542359577962, -1.390099158953774], [-48.928947636654925, -1.482340373410011], [-48.985867804841803, -1.504620647697379], [-49.038525277553731, -1.514068890245312], [-49.086898082133416, -1.505082073496283], [-49.172624403762882, -1.412599159812089], [-49.18162220684053, -1.485043010231834], [-49.204792373740077, -1.559068891961942], [-49.234048966653006, -1.599564498975496], [-49.344747213063272, -1.59530180350032], [-49.406622215423624, -1.555465376199436], [-49.506740627445993, -1.511607952651389], [-49.52564809887042, -1.630392136870171], [-49.587973540701, -1.712306202495029], [-49.650518709102585, -1.73816801988778], [-49.748846349572204, -1.755262747102392], [-49.805096351717964, -1.790155326558363], [-49.911290203425153, -1.762931204426195], [-50.010068283365172, -1.708482960161632], [-50.065648119469756, -1.703736866230599], [-50.109296802775475, -1.747857961663669], [-50.338339780262743, -1.755943899472072], [-50.44342401278692, -1.800724174617812], [-50.507540226170363, -1.78789214287832], [-50.602044624306586, -1.697672412874226], [-50.617117867069169, -1.63759916839507], [-50.673367869214928, -1.516090374697455], [-50.723773144575262, -1.371422400428798], [-50.759775343214187, -1.240245637612304], [-50.729398144789741, -1.126844754380102], [-50.668424021370015, -1.130448270142608], [-50.595969184621708, -1.14754299735722], [-50.580445502388898, -1.139457059548818], [-50.576841986626505, -1.103224148010327], [-50.5928161083296, -1.072857935914499], [-50.709589794424801, -1.077801783759355], [-50.783395949583962, -1.01030178118441], [-50.795997268424117, -0.906349140500197], [-50.780924025661591, -0.689896495524408], [-50.771464796785153, -0.645357919606681], [-50.719949902241865, -0.583482917246329], [-50.703074901598086, -0.528573247182862], [-50.71589594700913, -0.470301760585016], [-50.693615672721648, -0.364547362019607], [-50.645473581041415, -0.272745600705093], [-50.461650331841668, -0.157323233020861], [-50.248339776829539, -0.116366200208404], [-49.628699860614006, -0.229107903727936], [-49.535096341418296, -0.233590325773889], [-49.402798973090228, -0.214693840678137], [-49.314370014638882, -0.167892081080254], [-49.215141495228636, -0.158663565103154], [-49.117044567658297, -0.163629385605191], [-48.786520873409302, -0.215594719618707], [-48.588074820917257, -0.231568841321803], [-48.51540025759806, -0.248224115394692], [-48.444516465831612, -0.271844721764467] ] ], [ [ [-50.765169630529329, -0.040780259825112], [-50.66707270295916, -0.058094713610558], [-50.650648141785723, -0.105797352149011], [-50.652900339137261, -0.131681142198886], [-50.926273152299984, -0.327413571540546], [-51.01896480622645, -0.26307763158627], [-51.038092004221767, -0.22594384110721], [-51.022348595418066, -0.188370597486426], [-51.025721398281121, -0.172396475783273], [-50.995124473285784, -0.105357899007231], [-50.84211787565215, -0.050228502372988], [-50.765169630529329, -0.040780259825112] ] ], [ [ [-49.503367824582938, 0.083650897265329], [-49.400546775738803, 0.057327654073731], [-49.372421774665895, 0.001077651927972], [-49.380969138273201, -0.055392076788678], [-49.443964746145014, -0.112323231304231], [-49.708790195700431, -0.143832021568699], [-49.830068276498707, -0.093866199350146], [-49.802624427795536, -0.051788561026285], [-49.712393711462937, 0.015030289178867], [-49.602145904522899, 0.06273292771732], [-49.503367824582938, 0.083650897265329] ] ], [ [ [-49.878891520548677, 0.304607936944308], [-49.738266515184193, 0.26815529883487], [-49.697320468700354, 0.215948265593283], [-49.839066079576355, 0.006922378713398], [-49.917145916539141, -0.023224106811597], [-50.002421798698435, -0.02928856016797], [-50.113120045108758, 0.033025895334163], [-50.285693293879376, 0.028532486959705], [-50.339471372102707, 0.043375016822665], [-50.3450963723173, 0.134506612095947], [-50.272641535568994, 0.231702660725603], [-50.127973561300337, 0.226528099981408], [-49.878891520548677, 0.304607936944308] ] ], [ [ [-50.350941099102783, 0.5818039924402], [-50.342624448394929, 0.381556182067072], [-50.33227532690637, 0.258926782857827], [-50.42609857267297, 0.139230733370027], [-50.443874452257262, -0.007700424578843], [-50.623874459123726, 0.054405290681018], [-50.610372261343059, 0.204698265164097], [-50.526216984695338, 0.247006616387409], [-50.451520936923941, 0.326877224903058], [-50.42609857267297, 0.424974152473396], [-50.424516541362607, 0.558172399741864], [-50.39684197976004, 0.581353552969972], [-50.372770933919924, 0.590801795517962], [-50.350941099102783, 0.5818039924402] ] ], [ [ [-50.098716968387407, 0.625002236275577], [-50.058891527415085, 0.63805399458596], [-50.036841966027168, 0.594855750750639], [-50.039995042319219, 0.522851353472561], [-50.15294548608108, 0.393025909067035], [-50.261391535139808, 0.359275907779647], [-50.281650324975203, 0.390773711715553], [-50.281650324975203, 0.516556187216906], [-50.251273126550757, 0.58540750820282], [-50.112900318537868, 0.604754432768857], [-50.098716968387407, 0.625002236275577] ] ] ] } }, { "type": "Feature", "properties": { "population": 2620, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-50.96429683539111, -19.511366940069024], [-50.997596397208241, -19.663923098232331], [-50.99377315487493, -20.101552509457804], [-51.063964807943137, -20.223039330498423], [-51.160721403430983, -20.306513454776464], [-51.396971412443207, -20.441755159154269], [-51.534223614944608, -20.55761697998031], [-51.593165267583686, -20.666513468509322], [-51.619049057633561, -20.806918747302916], [-51.691943347523647, -20.943720510334003], [-51.811419670440642, -21.077138484173474], [-51.866318354175519, -21.18267315616805], [-51.856650385056696, -21.260082827089718], [-51.872844233330682, -21.32982404068764], [-51.936290280672836, -21.422746407513614], [-51.954747312626921, -21.469548167111469], [-51.989848632325305, -21.493630199280119], [-52.047669679452866, -21.510944653065621], [-52.072641604233596, -21.554142896900998], [-52.064995119566902, -21.622763504987418], [-52.12259644012363, -21.718168782064367], [-52.245665292474555, -21.840358728131761], [-52.338818372199967, -21.957341154469304], [-52.402495132441516, -22.069181979048096], [-52.566070578134543, -22.207324074161647], [-52.960721472095528, -22.454824083603015], [-53.116199993651563, -22.639987664885183], [-53.272348681248786, -22.752048216034964], [-53.480693415759006, -22.852397340956728], [-53.619967102712508, -23.001130256786681], [-53.677348696698317, -23.173483778986451], [-53.771171942464889, -23.322194722159324], [-53.907523266025649, -23.407031151176824], [-53.995490798678219, -23.570156157399552], [-54.050169755842191, -23.822819741256652], [-54.124646077042598, -23.978517989383576], [-54.242540368649287, -24.046918870899106], [-54.370794768073054, -23.971091231287758], [-54.440316255100086, -23.901789470831602], [-54.529646092492129, -23.852065347841034], [-54.625490822710816, -23.812470619768121], [-54.671842142838358, -23.829125893840967], [-54.72134653925805, -23.852065347841034], [-54.817191269476737, -23.888517985950344], [-54.926549183804653, -23.951293867251295], [-54.982568473051003, -23.974475020479346], [-55.081796992461264, -23.997656173707384], [-55.194296996752797, -24.017453537743847], [-55.286999637007881, -24.004401779433451], [-55.366419806053145, -23.991130294552192], [-55.415924202472837, -23.951293867251295], [-55.442467172235368, -23.865358805379387], [-55.442467172235368, -23.792673255731657], [-55.458891733408791, -23.686699130595315], [-55.518525524746138, -23.627307038485938], [-55.538322888782602, -23.580944732029849], [-55.541695691645629, -23.524694729884089], [-55.534950085919562, -23.461918848583124], [-55.518525524746138, -23.41557851478413], [-55.52842420676437, -23.359328512638371], [-55.554747449956025, -23.319733784565443], [-55.54822157080082, -23.250190324881331], [-55.561493055682092, -23.154345594662644], [-55.601098770083553, -23.094733775982377], [-55.620896134120017, -23.02519031629825], [-55.620896134120017, -22.955888555842108], [-55.650822893074135, -22.886367068815062], [-55.653964983037739, -22.810319702632839], [-55.627641739846084, -22.741017942176683], [-55.617743057827866, -22.671496455149651], [-55.647450090211095, -22.621772332159082], [-55.703700092356854, -22.59206529977584], [-55.746667623292822, -22.512656117059123], [-55.753193502448013, -22.410043808457274], [-55.799544822575541, -22.353793806311515], [-55.849268945566124, -22.307673199083396], [-55.905299221141007, -22.307673199083396], [-55.991464995912352, -22.281130229320866], [-56.067523348423123, -22.284492045855359], [-56.189922034732888, -22.281130229320866], [-56.245941323979224, -22.264694681818895], [-56.275868082933343, -22.228242043709585], [-56.351915449115566, -22.178517920719017], [-56.394893966380067, -22.092582858847109], [-56.4477711656628, -22.076147311345139], [-56.523818531845023, -22.102470554536794], [-56.550372487936102, -22.135539403454516], [-56.580068533990783, -22.181901709910591], [-56.632945733273516, -22.234767922864776], [-56.702467220300548, -22.231625832901173], [-56.775141783619745, -22.261332865284402], [-56.844674256975324, -22.264694681818895], [-56.93714618433097, -22.271220560974086], [-57.02984882458604, -22.244897317782446], [-57.142348828877573, -22.214970558828327], [-57.23819355909626, -22.195173194791863], [-57.330896199351344, -22.214970558828327], [-57.393672080652294, -22.198315284755481], [-57.476465052560599, -22.188647315636672], [-57.568947966244792, -22.181901709910591], [-57.641622529563989, -22.129013524299324], [-57.721042698609253, -22.099328464573176], [-57.764021215873754, -22.109216160262861], [-57.820271218019514, -22.142306981837677], [-57.879894023028328, -22.135539403454516], [-57.955941389210551, -22.109216160262861], [-57.98564842159378, -22.04644027896191], [-57.979122542438589, -22.006625824318107], [-57.962467268365742, -21.967031096245179], [-57.932771222311047, -21.91078109409942], [-57.94941551005536, -21.851147302762072], [-57.942669904329279, -21.798281089807887], [-57.92939841944802, -21.751918783351798], [-57.9161159482382, -21.699052570397612], [-57.926245343155855, -21.649548173977919], [-57.92939841944802, -21.596681961023734], [-57.936144025174087, -21.546957838033165], [-57.946042707192319, -21.494069652421885], [-57.906217266219969, -21.418022286239662], [-57.873148417302247, -21.355026678367821], [-57.893165507909586, -21.302138492756541], [-57.886419902183519, -21.265927553875201], [-57.860096658991864, -21.206293762537854], [-57.827016823745595, -21.133630185547219], [-57.830169900037745, -20.997949028027634], [-57.860096658991864, -20.918517872653823], [-57.892275615297521, -20.897138477307024], [-57.90059226600539, -20.873078417795455], [-57.884848857201703, -20.841789354101863], [-57.901943584416316, -20.809401657553877], [-57.908469463571507, -20.776332808636155], [-57.891374736356894, -20.747526655193525], [-57.915215069297588, -20.690375774107153], [-57.962467268365742, -20.673720500034307], [-57.979122542438589, -20.657306925189417], [-57.995547103612012, -20.594531043888466], [-58.008818588493284, -20.521625767669846], [-58.002292709338079, -20.465375765524072], [-58.02547386256613, -20.41587136910438], [-58.058542711483852, -20.386164336721151], [-58.091391833830698, -20.333298123766966], [-58.124691395647844, -20.293483669123162], [-58.13774315395824, -20.237233666977403], [-58.159792715346228, -20.164548117329659], [-58.093644031182237, -20.15105690587751], [-58.067540514561472, -20.110319599636014], [-58.021200180762477, -20.055190203001743], [-57.960215071014204, -20.040798112608982], [-57.887540507695007, -20.020319596202782], [-57.860766825033053, -19.979604262618366], [-58.029967270940659, -19.832673104669638], [-58.131447987702472, -19.744474859117645], [-58.072044909264548, -19.62522924910003], [-57.971695784342785, -19.424289300028533], [-57.874499735713172, -19.229457749627542], [-57.800473853983064, -19.080944560368465], [-57.78134665598779, -19.053500711665322], [-57.7167690168056, -19.044052469117403], [-57.72870016960448, -18.967323950565444], [-57.730941380627485, -18.917138401776015], [-57.783148413869014, -18.914216038383287], [-57.725096653842016, -18.733095426005335], [-57.639150605641561, -18.475026568504532], [-57.574122526989058, -18.279272166505848], [-57.553193571112558, -18.246423044159002], [-57.506172084943842, -18.237194528181959], [-57.495592250555873, -18.214694527323658], [-57.55207296560107, -18.183207709716271], [-57.586493132929718, -18.122233586296545], [-57.661650606499876, -17.947397153845813], [-57.75322165491491, -17.734767751203393], [-57.752771215444596, -17.734548024632517], [-57.632174287016056, -17.739953298276205], [-57.600896209651026, -17.816000664458443], [-57.493790492674634, -17.869548029782365], [-57.471521204715756, -17.900595394247972], [-57.41932515780276, -17.882138362293887], [-57.369820761383068, -17.875612483138696], [-57.198598831023347, -17.812397148695979], [-57.079792674147498, -17.734328298061641], [-56.980124701595471, -17.594823898208716], [-56.887422061340402, -17.517875653085866], [-56.789995299811366, -17.386017737899635], [-56.745215024665626, -17.316957676671464], [-56.6680470529719, -17.320319493205957], [-56.489398364516376, -17.302543613621609], [-56.435840012863906, -17.320319493205957], [-56.328745282216062, -17.284548007466384], [-56.248424234230185, -17.217729157261189], [-56.101042636811144, -17.186440093567612], [-56.024995270628921, -17.213224762558113], [-55.984950103085694, -17.266772127882035], [-55.833075097292124, -17.311332676456885], [-55.788525535045821, -17.351608556899535], [-55.609865860261749, -17.391862464685104], [-55.534049206978949, -17.503483562693106], [-55.337624638939062, -17.583793624350449], [-55.181245238442415, -17.686405932952297], [-55.07415050779457, -17.681901538249207], [-54.899995227713575, -17.650612474555629], [-54.810896103220969, -17.601569503934783], [-54.779618025855925, -17.557030928017028], [-54.699296977870048, -17.516755047574378], [-54.525141697789053, -17.512250652871302], [-54.422320648944861, -17.579289229647358], [-54.391273284479254, -17.673112475413944], [-54.31971932667156, -17.673112475413944], [-54.234893883982593, -17.637340989674357], [-54.145575032919112, -17.628354172925299], [-54.08324959108846, -17.588298019053525], [-54.03846931594272, -17.512250652871302], [-53.949150464879224, -17.45870328754738], [-53.819775459943969, -17.307048008324685], [-53.743947820332622, -17.253500643000763], [-53.681391665602547, -17.257763338475868], [-53.752714910510804, -17.641845384377447], [-53.859820627487196, -17.690888354998279], [-53.989415358993341, -17.900595394247972], [-53.975924147541193, -17.931862485284469], [-53.868818430564801, -17.945375669393698], [-53.72594122784885, -18.007931824123787], [-53.60534429942031, -17.994418640014544], [-53.493745174069389, -18.012414246169769], [-53.306318409107135, -17.99892303471762], [-53.145665326806835, -18.030190125754118], [-53.065344278820945, -18.021203309005045], [-53.051842081040249, -18.016698914301969], [-53.042844277962644, -18.097250675187283], [-53.056346475743339, -18.293664256898609], [-53.034066201455914, -18.356000685057808], [-52.989296912638721, -18.387267776094305], [-52.908964878324298, -18.347233594879611], [-52.784094268092119, -18.391772170797381], [-52.788598662795195, -18.463095415705638], [-52.84641970992277, -18.534638387184799], [-52.891199985068496, -18.637250695786648], [-52.868919710781071, -18.682030970932374], [-52.761594267233804, -18.708793667265795], [-52.6144433827142, -18.722065152147053], [-52.498339862660202, -18.704289272562704], [-52.341971448492089, -18.815888397913625], [-52.270648203583818, -18.811405975867643], [-52.096492923502822, -18.896220432228048], [-52.060721437763249, -18.945263402848894], [-51.91357055324363, -18.99004367799462], [-51.84201659543595, -19.048095438021619], [-51.641098619021534, -19.128427472336043], [-51.542990705122776, -19.137414289085115], [-51.404617897109887, -19.168483626207816], [-51.310794651343315, -19.253298082568236], [-51.136650357590867, -19.284565173604733], [-51.034049035317565, -19.369401602622233], [-50.96429683539111, -19.511366940069024] ] ] ] } }, { "type": "Feature", "properties": { "population": 751, "fill": "#fff" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-51.888148188992545, -1.160375029096713], [-51.984893798151859, -1.141698270571794], [-52.051943361256519, -1.177469756311268], [-52.132275395570957, -1.15070705997789], [-52.239370126218773, -1.146202665274814], [-52.359967054647313, -1.070375025663452], [-52.39124513201233, -0.954271505609483], [-52.368745131153958, -0.923004414573029], [-52.400023208519087, -0.869457049249036], [-52.516115742244551, -0.873939471295046], [-52.507348652066355, -0.731073254907699], [-52.525124531650647, -0.646236825890128], [-52.605445579636523, -0.610465340150597], [-52.63221926229852, -0.556917974826604], [-52.627714867595444, -0.396275878854851], [-52.699268825403124, -0.302452633088365], [-52.828643830338422, -0.181844718331263], [-52.913469273027374, -0.190853507737359], [-52.976025427757463, -0.016698227656377], [-53.016070595300675, 0.054625017251851], [-53.007292518793975, 0.134957051566346], [-53.042844277962672, 0.246556176917181], [-53.127669720651625, 0.384928984930184], [-53.141171918432292, 0.536803990723683], [-53.114398235770352, 0.719957073882256], [-53.132174115354644, 0.751004438347934], [-53.266273241563908, 0.782282515712836], [-53.41791753445807, 0.94315532458404], [-53.466971491407435, 1.152851377505215], [-53.408919731380422, 1.184129454870344], [-53.440197808745438, 1.259957094481592], [-53.538525449215058, 1.2421812148973], [-53.556290342470902, 1.367282538028917], [-53.650124574566064, 1.362778143325841], [-53.659122377643598, 1.420829903352796], [-53.739443425629474, 1.434101388234183], [-53.757219305213823, 1.394056220690743], [-53.891098704852141, 1.407327705572129], [-53.922365795888709, 1.460875070896009], [-54.007191238577661, 1.523431225626041], [-54.078745196385341, 1.505655346041749], [-54.083249591088475, 1.541207105210503], [-54.172348715580995, 1.657299638935967], [-54.203615806617563, 1.657299638935967], [-54.364499601817215, 1.760131674108663], [-54.498368015127028, 1.746629476328053], [-54.578700049441466, 1.782400962067584], [-54.73484873703876, 1.773403158989879], [-54.766115828075158, 1.898504482121496], [-54.7616224197007, 1.969827727029838], [-54.792900497065716, 2.010103607472502], [-54.752844343193885, 2.081426852380673], [-54.78839610236264, 2.130480809330038], [-54.717072857454411, 2.264579935539416], [-54.73484873703876, 2.416224228433464], [-54.714820660102873, 2.425002304940222], [-54.702900493632512, 2.397997909378716], [-54.697495219988809, 2.359754499716871], [-54.661943460820055, 2.327575543411285], [-54.61627329306225, 2.326674664470602], [-54.591971534322738, 2.313853619059614], [-54.550575048368614, 2.293155376082495], [-54.515023289199917, 2.245452737543985], [-54.433120209903677, 2.207429054452973], [-54.293165370580425, 2.154332128599378], [-54.227917565357018, 2.153431249658695], [-54.167393881407634, 2.137006688485371], [-54.13004036435774, 2.121032566782276], [-54.089775470243637, 2.150497899937534], [-53.946447828057387, 2.232631692133054], [-53.876695628130904, 2.27830185989086], [-53.829443429062678, 2.312952740118931], [-53.794342109364379, 2.346032575365257], [-53.767799139601777, 2.354799665543339], [-53.750242986588376, 2.335002301507075], [-53.734719304355565, 2.308448345415854], [-53.683643862954057, 2.292924663183044], [-53.563947813466143, 2.261877298717536], [-53.509049129731295, 2.253099222210778], [-53.431870171709022, 2.279422465402376], [-53.365941214115935, 2.324202740548117], [-53.334443410180029, 2.339726422780984], [-53.285400439559169, 2.295176860534639], [-53.252089891413391, 2.232181252662826], [-53.229820603454584, 2.204957130530545], [-53.180096480463988, 2.21125229678637], [-53.082219279464653, 2.20180405423838], [-53.009775429044907, 2.181775977302436], [-52.964775427328277, 2.18357773518369], [-52.903570591009156, 2.211483009685821], [-52.87049075576283, 2.266601419991446], [-52.783424102050844, 2.317226421922612], [-52.700620143814092, 2.363577742050097], [-52.653148218174977, 2.425672470981453], [-52.582945578778208, 2.528954945624434], [-52.559544698979323, 2.573054068400438], [-52.554589864805905, 2.647750116171721], [-52.455822771194505, 2.864202761147453], [-52.418469254144611, 2.903797489220437], [-52.396419692756581, 2.972198370735896], [-52.356594251784259, 3.051629526109878], [-52.356594251784259, 3.117778210273684], [-52.327799084670232, 3.181674697086237], [-52.271318369624964, 3.237023820291483], [-52.229471444200556, 3.271674700519384], [-52.162641607666842, 3.364608053674033], [-52.116070560968353, 3.452355859755698], [-51.9995166014441, 3.64697866991429], [-51.990518798366452, 3.702108066548533], [-51.944398191138305, 3.735176915466184], [-51.928874508905551, 3.77702384089082], [-51.879589839056678, 3.828549721762442], [-51.827393792143766, 3.869506754575013], [-51.805344230755679, 3.930030438524398], [-51.767089834765216, 3.992575606925811], [-51.683395983916284, 4.039608079423203], [-51.652568346021496, 4.061207201340892], [-51.557844221314383, 4.233780450111567], [-51.547044660355539, 4.310948421805278], [-51.461549051625411, 4.313881771526439], [-51.326999485945862, 4.224782647033805], [-51.219893768969428, 4.093605884217311], [-51.076346400212287, 3.671730868124087], [-51.052495080943118, 3.281804095437053], [-50.994223594345158, 3.07750232983102], [-50.827275345789133, 2.651804071404399], [-50.816464798501727, 2.573054068400438], [-50.789691115839787, 2.477879504222983], [-50.737044629456477, 2.376849226931483], [-50.678773142858631, 2.210351417845686], [-50.676520945507036, 2.179523779951012], [-50.714324902027272, 2.134073338763983], [-50.658964792493578, 2.130931248800493], [-50.608790230032696, 2.104157566138497], [-50.575941107685878, 1.998622894143864], [-50.534324895160751, 1.927299649235522], [-50.458947695019731, 1.829653161135639], [-50.304370052404295, 1.797704917729448], [-50.187596366309151, 1.786004477830033], [-50.05461784561146, 1.730655354624787], [-49.957191084082353, 1.6597825491869], [-49.881594157370444, 1.419929024412284], [-49.906346355580297, 1.268954897559297], [-49.898919597484564, 1.162980772422884], [-49.937844159516317, 1.121353573569309], [-50.047191087515671, 1.052051813113167], [-50.071042406784898, 1.015148735533614], [-50.294471370386134, 0.835829881036886], [-50.343294614436104, 0.751004438347934], [-50.462990663924018, 0.63737284221628], [-50.581566107900471, 0.420480744098768], [-50.755040235611716, 0.22247414474856], [-50.816245071930837, 0.17253029518713], [-50.910068317697437, 0.161049581858492], [-50.966999472212933, 0.130232930292266], [-51.101999477362767, -0.03133201727718], [-51.282900363169858, -0.085099109171949], [-51.299544650914186, -0.17892235493855], [-51.404167457639517, -0.392672363092458], [-51.496199931853425, -0.509457035516164], [-51.554921857921613, -0.549051763589034], [-51.702742908482492, -0.762340345944153], [-51.72141966700741, -0.855504411998083], [-51.720518788066784, -1.018387718992813], [-51.819066155107294, -1.117857937631129], [-51.888148188992545, -1.160375029096713] ] ], [ [ [-50.362641539002311, 2.154551855170212], [-50.341943296025136, 2.141730809759224], [-50.291999446463706, 1.979506682477108], [-50.298964778760705, 1.938549649664708], [-50.398874450540688, 1.892879481906903], [-50.456025331627075, 1.910424648591913], [-50.508891544581275, 2.029450532038538], [-50.491115664996926, 2.128679051448842], [-50.418671814577067, 2.161528173795716], [-50.362641539002311, 2.154551855170212] ] ] ] } }, { "type": "Feature", "properties": { "population": 3224, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-60.724792813193218, -13.662948748219577], [-60.659094568499526, -13.601513199001005], [-60.382348952473777, -13.418590828741813], [-60.351070875108732, -13.271220217651319], [-60.275023508926509, -13.137340818012973], [-60.270749827122856, -13.070302241236917], [-60.194691474612085, -12.972194327338144], [-60.083092349261165, -12.927414052192404], [-60.043047181717938, -12.873866686868496], [-60.002771301275288, -12.731000470481078], [-59.908948055508716, -12.619401345130157], [-59.82412261281975, -12.387194305022163], [-59.891172175924368, -12.244547815205635], [-59.886667781221291, -12.128444295151638], [-59.931448056367017, -12.052396928969401], [-59.98499542169094, -11.918517529331055], [-60.060823061302287, -11.905246044449797], [-60.101098941744937, -11.744362249250059], [-60.101098941744937, -11.601496032862656], [-60.025040589234166, -11.534677182657461], [-59.908948055508716, -11.382802176863891], [-60.002771301275288, -11.146332441280791], [-60.069820864379906, -11.115043377587199], [-60.176915595027737, -11.119547772290289], [-60.279516917301038, -11.079271891847625], [-60.382348952473777, -11.10155216613505], [-60.440400712500775, -11.038996011404976], [-60.440400712500775, -11.003444252236292], [-61.471566523321002, -10.998939857533202], [-61.520620480270395, -10.954181555044556], [-61.507348995389123, -10.878353915433223], [-61.520620480270395, -10.789013091712633], [-61.471566523321002, -10.757746000676136], [-61.502844600686046, -10.686422755767879], [-61.471566523321002, -10.436439836075536], [-61.565400755416121, -10.262306528651621], [-61.569674437219774, -10.061366579580124], [-61.534122678051077, -9.994547729374943], [-61.520620480270395, -9.860448603165707], [-61.565400755416121, -9.726569203527362], [-61.520620480270395, -9.704288929239937], [-61.480575312727169, -9.63725035246388], [-61.551898557635425, -9.463095072382885], [-61.547394162932349, -9.409547707058962], [-61.609950317662424, -9.320448582566343], [-61.592174438078075, -9.239896821681043], [-61.529618283348, -9.226625336799771], [-61.556391966009969, -9.128297696330122], [-61.529618283348, -8.998922691394853], [-61.484848994530822, -8.914108235034448], [-61.507348995389123, -8.847047685601282], [-61.609950317662424, -8.766715651286859], [-58.547467290681723, -8.74893977170251], [-58.471650637398923, -8.690888011675511], [-58.426650635682307, -8.523038884178831], [-58.397174316198502, -8.415504700389221], [-58.354415525504876, -8.27600030053631], [-58.328773434682958, -8.050538866154383], [-58.353525632892811, -7.905870891885741], [-58.330344479664774, -7.780099402712935], [-58.259471674226816, -7.67322439863598], [-58.223919915058119, -7.574677031595442], [-58.223700188487229, -7.484677028162224], [-58.201870353670117, -7.414474388765456], [-58.136622548446738, -7.338207296012342], [-58.060794908835419, -7.409530540920628], [-57.980473860849543, -7.530116483020606], [-57.94919578348447, -7.619457306741182], [-57.895648418160548, -7.690780551649439], [-57.779544898106565, -8.048077928560417], [-57.641172090093676, -8.231000298819694], [-57.681447970536325, -8.436422669937187], [-57.650169893171295, -8.498978824667262], [-57.641172090093676, -8.615082344721259], [-57.578615935363601, -8.757948561108677], [-57.480519007793376, -8.79350032027736], [-57.297365924634761, -8.958646810952203], [-57.100941356594888, -9.052470056718775], [-57.083165477010539, -9.079254725709276], [-57.074167673932948, -9.18634945635705], [-57.047393991270965, -9.231129731502847], [-56.926797062842439, -9.244401216384119], [-56.837697938349834, -9.271163912717554], [-56.770648375245202, -9.39627622217769], [-56.67682512947863, -9.378280616022494], [-56.489398364516376, -9.467599467085961], [-56.462624681854408, -9.467599467085961], [-55.092146113949809, -9.565927107555609], [-51.297523166462042, -9.789125358257451], [-50.234848565377348, -9.842672723581373], [-50.337449887650649, -10.034362184018732], [-50.395270934778239, -10.176788947264384], [-50.402697692874028, -10.258241587090311], [-50.454674013216163, -10.388517470966192], [-50.550749456334273, -10.567177145750264], [-50.59912226091393, -10.689806544959453], [-50.610372261343059, -11.000983314642411], [-50.64524286814202, -11.162746016125666], [-50.708018749442999, -11.345668386384844], [-50.716566113050305, -11.482689875986807], [-50.671346384762813, -11.573832457588622], [-50.66572138454822, -11.651901308222961], [-50.717466991990904, -11.749108343181121], [-50.661447702744567, -11.853500437007099], [-50.653570505178465, -11.922340771664409], [-50.67471918762584, -11.990082473467297], [-50.667523142429445, -12.112030720306748], [-50.631740670361324, -12.288646937981625], [-50.629268746438925, -12.437379853811592], [-50.660546823803969, -12.558207495139541], [-50.655372263059689, -12.666862284440654], [-50.613964790777004, -12.763388167029063], [-50.566042425667661, -12.819638169174837], [-50.484820498741158, -12.842599595831999], [-50.566042425667661, -13.014733391460879], [-50.595068305681139, -13.130814938857782], [-50.598441108544193, -13.249401369162754], [-50.666622263488847, -13.409604011992741], [-50.799589797858033, -13.611862320489536], [-50.860574907606292, -13.806056663834966], [-50.851796831099563, -13.995043487450488], [-50.867540239903263, -14.095172885801375], [-50.908497272715636, -14.107323765171145], [-50.941115682163058, -14.200927284366827], [-50.977568320272354, -14.46328080999983], [-51.114370083303442, -14.837892640696381], [-51.18861569160444, -14.976496161608694], [-51.246217012161139, -15.004401436110683], [-51.286273166032885, -15.002819404800334], [-51.471447733643629, -15.044215890754487], [-51.589792464720603, -15.141422925712646], [-51.664719225391337, -15.261349688099983], [-51.695997302756382, -15.403315025546789], [-51.731999501395393, -15.490392665587279], [-51.772714834979809, -15.52280233479236], [-51.788249503541152, -15.556991789221584], [-51.778790274664686, -15.592763274961158], [-51.798598625029683, -15.656220308631859], [-51.847421869079653, -15.747121191005704], [-51.961492918352974, -15.819125588283697], [-52.142393804160051, -15.872672953607619], [-52.256695566332823, -15.93566856147946], [-52.308441173775506, -16.009254990067816], [-52.361768812528553, -16.058297960688648], [-52.416667496263386, -16.082379992857312], [-52.538396016531962, -16.168556753957191], [-52.534122334728309, -16.226608513984189], [-52.667990748038108, -16.289142696057183], [-52.681273219247927, -16.36046594096544], [-52.6144433827142, -16.427526490398606], [-52.679921900837002, -16.576017707000588], [-52.789049102265494, -16.704953258794092], [-52.942714879611756, -16.813630020752285], [-53.024167519437682, -16.910375629911584], [-53.033165322515288, -16.995190086272004], [-53.077945597661028, -17.094638332253155], [-53.158266645646904, -17.208720367855037], [-53.202596481322331, -17.304125644931958], [-53.21137455782906, -17.409198891127687], [-53.115068401811527, -17.854914240161619], [-53.051842081040249, -18.016698914301969], [-53.065344278820945, -18.021203309005045], [-53.145665326806835, -18.030190125754118], [-53.306318409107135, -17.99892303471762], [-53.493745174069389, -18.012414246169769], [-53.60534429942031, -17.994418640014544], [-53.72594122784885, -18.007931824123787], [-53.868818430564801, -17.945375669393698], [-53.975924147541193, -17.931862485284469], [-53.989415358993341, -17.900595394247972], [-53.859820627487196, -17.690888354998279], [-53.752714910510804, -17.641845384377447], [-53.681391665602547, -17.257763338475868], [-53.743947820332622, -17.253500643000763], [-53.819775459943969, -17.307048008324685], [-53.949150464879224, -17.45870328754738], [-54.03846931594272, -17.512250652871302], [-54.08324959108846, -17.588298019053525], [-54.145575032919112, -17.628354172925299], [-54.234893883982593, -17.637340989674357], [-54.31971932667156, -17.673112475413944], [-54.391273284479254, -17.673112475413944], [-54.422320648944861, -17.579289229647358], [-54.525141697789053, -17.512250652871302], [-54.699296977870048, -17.516755047574378], [-54.779618025855925, -17.557030928017028], [-54.810896103220969, -17.601569503934783], [-54.899995227713575, -17.650612474555629], [-55.07415050779457, -17.681901538249207], [-55.181245238442415, -17.686405932952297], [-55.337624638939062, -17.583793624350449], [-55.534049206978949, -17.503483562693106], [-55.609865860261749, -17.391862464685104], [-55.788525535045821, -17.351608556899535], [-55.833075097292124, -17.311332676456885], [-55.984950103085694, -17.266772127882035], [-56.024995270628921, -17.213224762558113], [-56.101042636811144, -17.186440093567612], [-56.248424234230185, -17.217729157261189], [-56.328745282216062, -17.284548007466384], [-56.435840012863906, -17.320319493205957], [-56.489398364516376, -17.302543613621609], [-56.6680470529719, -17.320319493205957], [-56.745215024665626, -17.316957676671464], [-56.789995299811366, -17.386017737899635], [-56.887422061340402, -17.517875653085866], [-56.980124701595471, -17.594823898208716], [-57.079792674147498, -17.734328298061641], [-57.198598831023347, -17.812397148695979], [-57.369820761383068, -17.875612483138696], [-57.41932515780276, -17.882138362293887], [-57.471521204715756, -17.900595394247972], [-57.493790492674634, -17.869548029782365], [-57.600896209651026, -17.816000664458443], [-57.632174287016056, -17.739953298276205], [-57.752771215444596, -17.734548024632517], [-57.75322165491491, -17.734767751203393], [-57.78021506414774, -17.671772143331552], [-57.788773414083593, -17.573005049720138], [-57.832422097389284, -17.512030926300412], [-57.90509666070848, -17.532267743478641], [-57.990822982338045, -17.512931805241024], [-58.205473869432581, -17.363078283899569], [-58.347669919778809, -17.282065097215408], [-58.396042724358452, -17.234362458676955], [-58.417422119705265, -17.08046596843127], [-58.459719484600029, -16.91081508305335], [-58.478165530225567, -16.700668590661891], [-58.470519045558873, -16.650263315301586], [-58.350372556600647, -16.490741824841322], [-58.35082299607096, -16.410190063956023], [-58.340473874582429, -16.339987424559254], [-58.345648435326694, -16.284418574783217], [-58.375344481381376, -16.283517695842605], [-58.423717285961033, -16.307819454582145], [-58.496622562179653, -16.326715939677982], [-58.538019048133805, -16.328297970988331], [-58.957191427405206, -16.313224728225833], [-59.43419584013273, -16.295888301783251], [-59.831098931445254, -16.281715937961366], [-60.175575262945358, -16.26934533202072], [-60.187275702844815, -16.132104115847881], [-60.206622627410979, -15.901918560192001], [-60.220344551762551, -15.738573827398397], [-60.242394113150553, -15.479604090956983], [-60.380547194592538, -15.318280842615493], [-60.530400715934007, -15.143224683593871], [-60.583266928888193, -15.098224681877269], [-60.401915603610803, -15.092819408233566], [-60.27344147761616, -15.088776439329337], [-60.298874828195736, -14.618517632327894], [-60.33801911679835, -14.57059526721855], [-60.372669997026435, -14.41872026142498], [-60.396290603396238, -14.332763226895977], [-60.460198076537239, -14.263022013298055], [-60.47459016693, -14.184733436092841], [-60.462900713359076, -14.132526402851298], [-60.428019120231582, -14.099897007075342], [-60.405068679902968, -14.019125519619152], [-60.422394120017003, -13.937892606364102], [-60.460198076537239, -13.862306665980739], [-60.506549396664767, -13.789840842903885], [-60.595198081687073, -13.745302266986116], [-60.722320889270804, -13.664289080301955], [-60.724792813193218, -13.662948748219577] ] ] ] } }, { "type": "Feature", "properties": { "population": 11082, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-54.242540368649287, -24.046918870899106], [-54.124646077042598, -23.978517989383576], [-54.050169755842191, -23.822819741256652], [-53.995490798678219, -23.570156157399552], [-53.907523266025649, -23.407031151176824], [-53.771171942464889, -23.322194722159324], [-53.677348696698317, -23.173483778986451], [-53.619967102712508, -23.001130256786681], [-53.480693415759006, -22.852397340956728], [-53.272348681248786, -22.752048216034964], [-53.116199993651563, -22.639987664885183], [-53.044415322944445, -22.636406121779814], [-52.949240758766962, -22.570466177858123], [-52.694775417028623, -22.601513542323772], [-52.6144433827142, -22.570466177858151], [-52.520620136947628, -22.615026726433001], [-52.44479249733628, -22.601513542323772], [-52.315197765830135, -22.619531121136077], [-52.261650400506213, -22.601513542323772], [-52.217089851931362, -22.641789422766422], [-52.16354248660744, -22.601513542323772], [-52.141273198648562, -22.543483754953854], [-52.065214846137792, -22.521203480666429], [-51.984893798151916, -22.54796617699985], [-51.873294672800995, -22.610522331729925], [-51.743919667865725, -22.619531121136077], [-51.69464598434547, -22.664069697053776], [-51.641098619021534, -22.650798212172575], [-51.547495099825852, -22.686349971341272], [-51.35534421358966, -22.65079821217256], [-51.181419646408045, -22.739897336665194], [-51.002770957952521, -22.793664428559993], [-50.882174029523981, -22.820449097550494], [-50.784066115625222, -22.945319707782687], [-50.726025341926771, -22.949824102485763], [-50.627697701457123, -22.923039433495262], [-50.431273133417221, -22.945319707782687], [-50.368947691586584, -22.91405261674619], [-50.292900325404389, -22.95432849718884], [-50.123249440026427, -22.940815313079611], [-49.971594160803761, -22.914052616746176], [-49.958091963023065, -22.963315313937912], [-49.913542400776748, -22.985595588225337], [-49.909048992402205, -23.034638558846183], [-49.730400303946681, -23.105983776411534], [-49.636796784750999, -23.257858782205105], [-49.614296783892684, -23.409733787998675], [-49.654572664335348, -23.507819729240353], [-49.605518707385954, -23.641699128878713], [-49.551971342062075, -23.713242100357832], [-49.569747221646367, -23.833850015114933], [-49.601025299011411, -23.86489737958054], [-49.409094139346081, -24.083832934807262], [-49.333046773163858, -24.14186272217718], [-49.337540181538373, -24.213207939742531], [-49.274995013136845, -24.315798275687285], [-49.22594105618748, -24.338298276545572], [-49.239443253968147, -24.418630310860024], [-49.310766498876433, -24.530229436210945], [-49.29749501399516, -24.664108835849291], [-49.216943253109861, -24.690871532182697], [-49.092072642877667, -24.686367137479621], [-49.025023079773064, -24.668591257895272], [-48.828598511733162, -24.66410883584922], [-48.779544554783797, -24.695375926885774], [-48.61439806410894, -24.681862742776545], [-48.489296740977352, -24.74441889750662], [-48.54284410630126, -24.811479446939771], [-48.565344107159603, -25.056957971928966], [-48.511796741835639, -25.083720668262458], [-48.41346910136599, -24.958850058030265], [-48.26609849027551, -25.034677697641598], [-48.230546731106813, -25.012397423354116], [-48.185766455961073, -25.190815398910289], [-48.091943210194501, -25.235595674056029], [-48.087669528390848, -25.280156222630879], [-48.077540133473207, -25.290263644891439], [-48.202641456604795, -25.416496559863091], [-48.242466897577145, -25.403225074981833], [-48.185997168860496, -25.309841282357027], [-48.2735252483713, -25.306237766594563], [-48.402449813836256, -25.272048312165339], [-48.458469103082621, -25.31074216129764], [-48.427641465187889, -25.403225074981833], [-48.476025256096079, -25.443039529625636], [-48.564223501648058, -25.447543924328713], [-48.64409411016365, -25.436513650470445], [-48.731841916245315, -25.368793921324638], [-48.692247188172416, -25.491423320533826], [-48.507072620561672, -25.521350079487945], [-48.429893662539428, -25.550156232930561], [-48.401098495425344, -25.597397445670168], [-48.545096303652798, -25.815871575098043], [-48.665693232081338, -25.844458001969784], [-48.678964716962611, -25.87526366720742], [-48.612816032798605, -25.875043940636544], [-48.576374381017843, -25.935358884343628], [-48.585372184095462, -25.986203612845699], [-48.650169549848528, -25.97225097559469], [-48.917917362796658, -25.97651367106981], [-48.944691045458626, -26.007802734763388], [-49.109848522462016, -25.994531249882129], [-49.212669571306208, -26.030302735621696], [-49.29749501399516, -26.106130375233022], [-49.45364370159237, -26.16866455730603], [-49.489415187331957, -26.22223389528704], [-49.596520904308335, -26.22223389528704], [-49.721622227439951, -26.159677740556958], [-49.752669591905601, -26.123906254817314], [-49.882275309740265, -26.039069825799885], [-49.949094159945446, -26.012307129466471], [-50.190299003131059, -26.052583009909121], [-50.315169613363224, -26.052583009909121], [-50.369167418157474, -26.085871585397726], [-50.45804681607919, -26.02579834091862], [-50.542872258768142, -26.02579834091862], [-50.645693307612333, -26.07035888949347], [-50.735023145004391, -26.231000985465229], [-50.77057490417306, -26.22223389528704], [-50.900169635679219, -26.280263682656951], [-50.944719197925508, -26.244492196917378], [-51.074094202860806, -26.23550538016832], [-51.248249482941787, -26.347104505519212], [-51.288525363384451, -26.423151871701464], [-51.279516573978299, -26.498979511312712], [-51.239471406435086, -26.606074241960584], [-51.284020968681347, -26.650854517106367], [-51.422393776694236, -26.699897487727206], [-51.502714824680112, -26.601569847257558], [-51.873294672800995, -26.601569847257558], [-52.007174072439341, -26.583793967673216], [-52.199094245776138, -26.44991456803487], [-52.458074968546086, -26.431918961879639], [-52.542900411235053, -26.400651870843141], [-52.641217065376168, -26.400651870843092], [-52.672495142741198, -26.378371596555716], [-52.815372345457149, -26.33831544268395], [-52.913469273027374, -26.365100111674394], [-52.99379032101325, -26.351608900222303], [-53.123396038847943, -26.369604506377534], [-53.279544726445167, -26.262268076501719], [-53.355372366056514, -26.239987802214294], [-53.458193414900734, -26.289052745492199], [-53.516245174927704, -26.289052745492228], [-53.663396059447336, -26.257763681798622], [-53.669921938602499, -26.258005381026635], [-53.671273257013425, -26.225156258679768], [-53.746870183725349, -26.083630374374735], [-53.823148262806995, -25.959638670426074], [-53.864094309290849, -25.748832998321973], [-53.891098704852226, -25.668940417149315], [-53.954775465093803, -25.647582994459597], [-54.012365799321955, -25.577819808204595], [-54.085040362641138, -25.57197508141914], [-54.11924080339891, -25.545190412428624], [-54.154572835996717, -25.52315183736917], [-54.206098716868524, -25.529677716524361], [-54.250197839644528, -25.570393050108777], [-54.33187020604133, -25.57197508141914], [-54.383396086913137, -25.588630355491986], [-54.44391977086255, -25.625082993601296], [-54.501521091419249, -25.60820799295756], [-54.537743016629122, -25.576479476122216], [-54.615822853592007, -25.576018050323356], [-54.610648292847742, -25.432690408137091], [-54.473165377446932, -25.220302704722641], [-54.43627328619587, -25.121293911883257], [-54.454049165780205, -25.065263636308373], [-54.413092132967819, -24.867487749857574], [-54.312973720945479, -24.52820795175883], [-54.281025477539259, -24.306130306568491], [-54.317247402749132, -24.201276786943637], [-54.318368008260634, -24.128151784154142], [-54.266842127388827, -24.065815355994943], [-54.241870202608098, -24.047380296697952], [-54.242540368649287, -24.046918870899106] ] ] ] } }, { "type": "Feature", "properties": { "population": 2852, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-47.301971256231354, -16.039181749021921], [-47.855473474611387, -16.043664171067917], [-48.181273047586529, -16.039181749021921], [-48.252816019065676, -16.030172959615768], [-48.234820412910466, -15.958849714707497], [-48.279589701727645, -15.838241799950424], [-48.203773048444845, -15.73543173743478], [-48.239324807613542, -15.69087118885993], [-48.181273047586529, -15.489953212445528], [-47.766143637219358, -15.489953212445528], [-47.422348458089004, -15.498940029194586], [-47.413570381582247, -15.534733487591254], [-47.306244938035007, -15.588280852915176], [-47.306244938035007, -15.708647068444279], [-47.351025213180719, -15.833737405247348], [-47.359792303358915, -15.985612411040918], [-47.301971256231354, -16.039181749021921] ] ] ] } }, { "type": "Feature", "properties": { "population": 6523, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-50.96429683539111, -19.511366940069024], [-51.034049035317565, -19.369401602622233], [-51.136650357590867, -19.284565173604733], [-51.310794651343315, -19.253298082568236], [-51.404617897109887, -19.168483626207816], [-51.542990705122776, -19.137414289085115], [-51.641098619021534, -19.128427472336043], [-51.84201659543595, -19.048095438021619], [-51.91357055324363, -18.99004367799462], [-52.060721437763249, -18.945263402848894], [-52.096492923502822, -18.896220432228048], [-52.270648203583818, -18.811405975867643], [-52.341971448492089, -18.815888397913625], [-52.498339862660202, -18.704289272562704], [-52.6144433827142, -18.722065152147053], [-52.761594267233804, -18.708793667265795], [-52.868919710781071, -18.682030970932374], [-52.891199985068496, -18.637250695786648], [-52.84641970992277, -18.534638387184799], [-52.788598662795195, -18.463095415705638], [-52.784094268092119, -18.391772170797381], [-52.908964878324298, -18.347233594879611], [-52.989296912638721, -18.387267776094305], [-53.034066201455914, -18.356000685057808], [-53.056346475743339, -18.293664256898609], [-53.042844277962644, -18.097250675187283], [-53.051842081040249, -18.016698914301969], [-53.115068401811527, -17.854914240161619], [-53.21137455782906, -17.409198891127687], [-53.202596481322331, -17.304125644931958], [-53.158266645646904, -17.208720367855037], [-53.077945597661028, -17.094638332253155], [-53.033165322515288, -16.995190086272004], [-53.024167519437682, -16.910375629911584], [-52.942714879611756, -16.813630020752285], [-52.789049102265494, -16.704953258794092], [-52.679921900837002, -16.576017707000588], [-52.6144433827142, -16.427526490398606], [-52.681273219247927, -16.36046594096544], [-52.667990748038108, -16.289142696057183], [-52.534122334728309, -16.226608513984189], [-52.538396016531962, -16.168556753957191], [-52.416667496263386, -16.082379992857312], [-52.361768812528553, -16.058297960688648], [-52.308441173775506, -16.009254990067816], [-52.256695566332823, -15.93566856147946], [-52.142393804160051, -15.872672953607619], [-51.961492918352974, -15.819125588283697], [-51.847421869079653, -15.747121191005704], [-51.798598625029683, -15.656220308631859], [-51.778790274664686, -15.592763274961158], [-51.788249503541152, -15.556991789221584], [-51.772714834979809, -15.52280233479236], [-51.731999501395393, -15.490392665587279], [-51.695997302756382, -15.403315025546789], [-51.664719225391337, -15.261349688099983], [-51.589792464720603, -15.141422925712646], [-51.471447733643629, -15.044215890754487], [-51.286273166032885, -15.002819404800334], [-51.246217012161139, -15.004401436110683], [-51.18861569160444, -14.976496161608694], [-51.114370083303442, -14.837892640696381], [-50.977568320272354, -14.46328080999983], [-50.941115682163058, -14.200927284366827], [-50.908497272715636, -14.107323765171145], [-50.867540239903263, -14.095172885801375], [-50.851796831099563, -13.995043487450488], [-50.860574907606292, -13.806056663834966], [-50.799589797858033, -13.611862320489536], [-50.666622263488847, -13.409604011992741], [-50.598441108544193, -13.249401369162754], [-50.595068305681139, -13.130814938857782], [-50.566042425667661, -13.014733391460879], [-50.484820498741158, -12.842599595831999], [-50.392348571385497, -12.617138161450072], [-50.295591975897651, -12.490026340194888], [-50.163745047039981, -12.38765573082101], [-50.13674065147859, -12.476513156085659], [-50.203570488012303, -12.570358374509311], [-50.19929680620865, -12.655172830869731], [-50.275124445820012, -12.789052230508076], [-50.270620051116936, -12.891862293023721], [-50.239341973751891, -12.931918446895494], [-50.051915208789637, -13.021237297958976], [-49.971594160803761, -13.025741692662066], [-49.913542400776748, -13.070302241236917], [-49.685839755371831, -13.177396971884747], [-49.520693264697002, -13.199896972743062], [-49.382320456684113, -13.248939943363894], [-49.359820455825798, -13.132858395966991], [-49.29749501399516, -13.003483391031722], [-49.136622205123956, -12.735504865184154], [-49.016245003266306, -12.655172830869731], [-48.998249397111096, -12.748996076636303], [-48.926915165874277, -12.784547835805], [-48.824094117030086, -12.873866686868496], [-48.797320434368146, -12.927414052192404], [-48.801824829071222, -12.998978996328646], [-48.766273069902525, -13.097064937570323], [-48.761768675199448, -13.208664062921244], [-48.775040160080721, -13.351552251965742], [-48.739268674341133, -13.38281934300224], [-48.685721309017225, -13.338280767084484], [-48.654443231652181, -13.177396971884747], [-48.587624381447, -13.155116697597322], [-48.480518664470594, -13.195392578039986], [-48.368919539119673, -13.186405761290914], [-48.226042336403736, -13.092582515524342], [-48.163716894573071, -13.102470211214026], [-48.174966895002228, -13.180780761076335], [-48.074167330610152, -13.195392578039986], [-48.002844085701895, -13.248939943363894], [-47.935794522597291, -13.244457521317912], [-47.855473474611387, -13.293500491938744], [-47.681318194530405, -13.356056646668833], [-47.659048906571513, -13.320263188272165], [-47.721594074973069, -13.150612302894245], [-47.641042314087741, -13.115082516382643], [-47.556447584298212, -13.244457521317912], [-47.440344064244215, -13.248939943363894], [-47.292973453153735, -13.199896972743062], [-47.092044490410757, -13.097064937570323], [-46.971447561982245, -13.070302241236917], [-46.82857035926628, -13.070302241236917], [-46.752742719654947, -13.034750482068219], [-46.645647989007102, -12.922931630146422], [-46.592089637354633, -12.891862293023721], [-46.435721223186533, -12.847103990535075], [-46.301841823548187, -12.833832505653803], [-46.234792260443555, -12.798039047257149], [-46.087641375923965, -12.914142567311146], [-46.074150164471803, -12.976698722041192], [-46.150197530654054, -13.025741692662052], [-46.181244895119647, -13.159621092300398], [-46.176971213315994, -13.217672852327382], [-46.083147967549422, -13.253444338066984], [-46.096419452430723, -13.351552251965757], [-46.185749289822724, -13.405099617289665], [-46.270574732511704, -13.655082536981979], [-46.261796656004947, -13.869491724848501], [-46.221520775562311, -13.998866729783842], [-46.172466818612918, -14.074914095966065], [-46.127697529795739, -14.18203079927099], [-46.038367692403682, -14.253354044179261], [-46.011594009741771, -14.298112346667835], [-45.922494885249108, -14.351681684648909], [-45.962540052792349, -14.467763232045797], [-45.962540052792349, -14.534604054908087], [-45.913497082171517, -14.690983455404748], [-45.931272961755838, -14.749013242774652], [-46.025096207522409, -14.869401430960849], [-46.078643572846346, -14.922948796284771], [-46.190242698197267, -14.93644000773692], [-46.297348415173644, -14.909677311403499], [-46.315344021328883, -14.847121156673424], [-46.38666726623714, -14.771293517062077], [-46.51604227117241, -14.713241757035078], [-46.583091834277013, -14.793573791349502], [-46.556318151615045, -14.869401430960849], [-46.57859842590247, -14.914181706106575], [-46.547320348537454, -15.039052316338768], [-46.636650185929483, -15.070319407375266], [-46.734966840070598, -15.016772042051343], [-46.833074753969356, -15.012267647348267], [-46.891115527667807, -15.04803913308784], [-46.931391408110471, -15.226698807871912], [-46.891115527667807, -15.239970292753185], [-46.855344041928248, -15.324806721770685], [-46.935895802813548, -15.431901452418515], [-46.931391408110471, -15.543500577769436], [-46.868846239708944, -15.592763274961158], [-46.833074753969356, -15.8427461946535], [-46.864341845005839, -15.882802348525274], [-47.07854229263009, -15.936349713849197], [-47.127815976150345, -15.923078228967924], [-47.230417298423646, -16.034677354318845], [-47.301971256231354, -16.039181749021921], [-47.359792303358915, -15.985612411040918], [-47.351025213180719, -15.833737405247348], [-47.306244938035007, -15.708647068444279], [-47.306244938035007, -15.588280852915176], [-47.413570381582247, -15.534733487591254], [-47.422348458089004, -15.498940029194586], [-47.766143637219358, -15.489953212445528], [-48.181273047586529, -15.489953212445528], [-48.239324807613542, -15.69087118885993], [-48.203773048444845, -15.73543173743478], [-48.279589701727645, -15.838241799950424], [-48.234820412910466, -15.958849714707497], [-48.252816019065676, -16.030172959615768], [-48.181273047586529, -16.039181749021921], [-47.855473474611387, -16.043664171067917], [-47.301971256231354, -16.039181749021921], [-47.337523015400023, -16.146276479669766], [-47.324240544190218, -16.226608513984189], [-47.351025213180719, -16.302414180938442], [-47.431346261166595, -16.409750610814257], [-47.453615549125487, -16.494345340603786], [-47.404572578504656, -16.570392706786023], [-47.266199770491767, -16.6597335305066], [-47.159094053515389, -16.918483540377125], [-47.15009625043777, -16.976513327747043], [-47.230417298423646, -17.025797997595845], [-47.212641418839297, -17.074840968216691], [-47.310749332738084, -17.141901517649842], [-47.422348458089004, -17.271276522585111], [-47.453615549125487, -17.347104162196459], [-47.498395824271228, -17.32932828261211], [-47.529443188736821, -17.454198892844303], [-47.458119943828564, -17.52574186432345], [-47.40906598687917, -17.498979167990029], [-47.288469058450659, -17.548022138610875], [-47.27069317886631, -17.668630053367949], [-47.328744938893294, -17.744457692979296], [-47.355518621555262, -17.824767754636625], [-47.346520818477643, -17.878315119960547], [-47.279471255373039, -18.061479189447695], [-47.318846256875077, -18.083298037936274], [-47.446419503929093, -18.170595404547655], [-47.786171714155245, -18.379401564856721], [-47.928818203971787, -18.445319536121303], [-48.017917328464392, -18.434530961490992], [-48.226943215344335, -18.340246289925574], [-48.953699834864778, -18.325854199532813], [-49.108266491151653, -18.388388381605793], [-49.179370009489048, -18.404823929107764], [-49.247540178105169, -18.468500689349341], [-49.336650288926307, -18.584823935974214], [-49.41674062401276, -18.602819542129453], [-49.488294581820469, -18.522048054673263], [-49.553322660472958, -18.510116901874369], [-49.611824859970255, -18.566828329818989], [-49.677973544134261, -18.600116905307601], [-49.788671790544555, -18.614530968357457], [-49.960124433803713, -18.616332726238682], [-50.093773120542636, -18.641293664690863], [-50.246999444747132, -18.690116908740833], [-50.368266539216847, -18.768647185174018], [-50.457596376608876, -18.876642794762475], [-50.498992862563028, -18.953151586743559], [-50.489775332914547, -19.0204318627476], [-50.531622258339013, -19.087030986381905], [-50.577523138996241, -19.112233624062057], [-50.641870065278994, -19.118517803989278], [-50.713193310187251, -19.160595442313166], [-50.791943313191325, -19.238444566376614], [-50.84391963353346, -19.310888416796388], [-50.868891558314175, -19.377487540430693], [-50.870924029094823, -19.423849846886768], [-50.864167437040209, -19.437802484137762], [-50.880822711113069, -19.459181879484575], [-50.923790242049023, -19.464125727329417], [-50.96429683539111, -19.511366940069024] ] ] ] } }, { "type": "Feature", "properties": { "population": 1497, "fill": "#fff" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-50.234848565377348, -9.842672723581373], [-50.175214774040001, -9.730172719289826], [-50.08409416509528, -9.421918312999608], [-49.979240645470441, -9.220099457644579], [-49.829848549927817, -9.022103844622904], [-49.707900303088365, -8.894970050710626], [-49.612945465481772, -8.839181474363713], [-49.502697658541763, -8.70866389125986], [-49.378947653821115, -8.498297672297554], [-49.282641497803553, -8.301422664787339], [-49.226841935128078, -8.139418264076113], [-49.189949843877002, -7.994970016378346], [-49.172393690863544, -7.867396769324316], [-49.220316055972887, -7.752194128210874], [-49.333947652104456, -7.649142366467331], [-49.340473531259647, -7.510099392413281], [-49.239673966867599, -7.334823506820669], [-49.195124404621282, -7.168556410634423], [-49.209747207913466, -7.005651130982585], [-49.079471324037627, -6.856237062782895], [-48.805417358505139, -6.71831469424032], [-48.652872186670379, -6.595707267688226], [-48.622044548775648, -6.488590564383287], [-48.579966910451759, -6.414125229511413], [-48.527320424068449, -6.3722673177584], [-48.470619982452376, -6.353370832662506], [-48.410096298502964, -6.357655500794763], [-48.391199813407098, -6.308832256744807], [-48.413699814265414, -6.207340553654447], [-48.389848494996187, -6.141862035531645], [-48.319415142699995, -6.112396702376316], [-48.296695415270818, -6.067396700659771], [-48.321216900581248, -6.006642303810906], [-48.307044536759349, -5.965926970226505], [-48.254398050376039, -5.945228727249429], [-48.24540024729842, -5.888517299304809], [-48.280040141197958, -5.795814659049739], [-48.258671732179693, -5.723590535200856], [-48.181273047586529, -5.672064654329048], [-48.159223486198584, -5.619198441374863], [-48.192742774586577, -5.565431349480036], [-48.231447610047439, -5.533241406845832], [-48.275316019923991, -5.522452832215549], [-48.31717393167699, -5.486219920677129], [-48.356999372649341, -5.424344918316791], [-48.421566025503012, -5.398483100923954], [-48.51111558946593, -5.408151070042777], [-48.597523063465246, -5.398702827494787], [-48.721492794756784, -5.355944036801247], [-48.721492794756784, -5.355724310230372], [-48.721943234227098, -5.355043157860635], [-48.630591912382954, -5.330301945979329], [-48.574341910237166, -5.28822430765544], [-48.52349718173511, -5.220504578509647], [-48.458249376511731, -5.180887877779639], [-48.378148055096744, -5.169418150779563], [-48.281622172508321, -5.189457214043955], [-48.16889145531735, -5.240741395687863], [-48.059544527317968, -5.263021669975288], [-47.953119962711327, -5.256276064249221], [-47.884499354624893, -5.285521670833603], [-47.853891443301052, -5.350780462385529], [-47.763221273826645, -5.407250191102179], [-47.612466873544577, -5.454952829640604], [-47.519994946188945, -5.506478710512454], [-47.48579450543113, -5.561146681347864], [-47.444848458947291, -5.749913778392497], [-47.397145820408838, -6.072340548504613], [-47.405473457445254, -6.42109056180837], [-47.47049054976921, -6.795944091732892], [-47.537089673403528, -7.027250252900274], [-47.605721267818495, -7.11476734608253], [-47.665344072827281, -7.16719410589495], [-47.715969074758476, -7.184750258908423], [-47.717089680269964, -7.22210377595826], [-47.668947588589759, -7.279694110186497], [-47.611796707503373, -7.301512958675062], [-47.545867749910258, -7.287582294081119], [-47.506943187878534, -7.305797626807262], [-47.495023021408201, -7.356202902167524], [-47.498395824271256, -7.449806421363292], [-47.458119943828592, -7.534620877723682], [-47.413570381582247, -7.530116483020592], [-47.346520818477643, -7.659733187183832], [-47.303542301213156, -7.66287527714745], [-47.279471255373039, -7.731056432092103], [-47.15009625043777, -7.856146768895158], [-47.078542292630118, -7.976512984424289], [-47.016216850799424, -8.043573533857341], [-46.984949759762941, -8.03906913915435], [-46.868846239708944, -7.958737104839884], [-46.743744916577327, -7.922965619100353], [-46.574094031199394, -7.905189739516004], [-46.489268588510441, -7.963241499543003], [-46.466999300551549, -8.070358202847899], [-46.502770786291137, -8.172948538792639], [-46.507275180994213, -8.27578057396542], [-46.543046666733801, -8.320319149883176], [-46.502770786291137, -8.396146789494537], [-46.658919473888375, -8.396146789494537], [-46.793018600097582, -8.436422669937187], [-46.837568162343928, -8.485465640557948], [-46.882117724590216, -8.583793281027681], [-46.92239360503288, -8.744457349656443], [-46.904617725448503, -8.829271806016934], [-47.065270807748817, -8.976642417107428], [-47.083046687333194, -9.03469417713444], [-47.038497125086849, -9.065983240828018], [-46.940169484617201, -9.070245936303124], [-46.846565965421519, -9.168573576772772], [-46.82857035926628, -9.306957371114194], [-46.752742719654975, -9.409547707058948], [-46.56082254631815, -9.498866558122458], [-46.534048863656182, -9.556918318149457], [-46.600867713861362, -9.650741563916029], [-46.650141397381617, -9.664013048797287], [-46.667917276965966, -9.74434508311171], [-46.507275180994213, -9.855944208462631], [-46.462494905848473, -9.949767454229232], [-46.471492708926121, -10.003314819553111], [-46.346622098693899, -10.168483282885049], [-46.284065943963839, -10.186478889040274], [-46.190242698197267, -10.177470099634036], [-46.087641375923965, -10.208737190670604], [-46.034094010600029, -10.271293345400693], [-45.944775159536533, -10.315853893975543], [-45.757117681674856, -10.329345105427691], [-45.859949716847581, -10.467728899769114], [-46.038367692403682, -10.570319235713882], [-46.087641375923965, -10.583832419823125], [-46.301841823548187, -10.757746000676136], [-46.234792260443555, -10.882858310136299], [-46.248294458224251, -10.914125401172797], [-46.368891386652791, -10.967672766496719], [-46.462494905848473, -11.177599532317288], [-46.529544468953105, -11.235431565773396], [-46.569820349395741, -11.315983326658738], [-46.551824743240559, -11.378297782160814], [-46.489268588510441, -11.414069267900388], [-46.426943146679804, -11.498905696917888], [-46.190242698197267, -11.543444272835643], [-46.083147967549422, -11.601496032862656], [-46.105417255508314, -11.664052187592731], [-46.243790063521175, -11.726608342322805], [-46.275068140886219, -11.766862250108375], [-46.248294458224251, -11.842689889719722], [-46.158964620832222, -11.83370307297065], [-46.100923847133771, -11.864970164007147], [-46.078643572846346, -11.927526318737222], [-46.212522972484692, -11.998849563645479], [-46.248294458224251, -12.048112260837215], [-46.324122097835613, -12.092672809412065], [-46.337624295616308, -12.128444295151638], [-46.346622098693899, -12.342655729104393], [-46.315344021328883, -12.42296579076168], [-46.158964620832222, -12.50329782507616], [-46.158964620832222, -12.601625465545808], [-46.234792260443555, -12.713224590896743], [-46.234792260443555, -12.798039047257149], [-46.301841823548187, -12.833832505653803], [-46.435721223186533, -12.847103990535075], [-46.592089637354633, -12.891862293023721], [-46.645647989007102, -12.922931630146422], [-46.752742719654947, -13.034750482068219], [-46.82857035926628, -13.070302241236917], [-46.971447561982245, -13.070302241236917], [-47.092044490410757, -13.097064937570323], [-47.292973453153735, -13.199896972743062], [-47.440344064244215, -13.248939943363894], [-47.556447584298212, -13.244457521317912], [-47.641042314087741, -13.115082516382643], [-47.721594074973069, -13.150612302894245], [-47.659048906571513, -13.320263188272165], [-47.681318194530405, -13.356056646668833], [-47.855473474611387, -13.293500491938744], [-47.935794522597291, -13.244457521317912], [-48.002844085701895, -13.248939943363894], [-48.074167330610152, -13.195392578039986], [-48.174966895002228, -13.180780761076335], [-48.163716894573071, -13.102470211214026], [-48.226042336403736, -13.092582515524342], [-48.368919539119673, -13.186405761290914], [-48.480518664470594, -13.195392578039986], [-48.587624381447, -13.155116697597322], [-48.654443231652181, -13.177396971884747], [-48.685721309017225, -13.338280767084484], [-48.739268674341133, -13.38281934300224], [-48.775040160080721, -13.351552251965742], [-48.761768675199448, -13.208664062921244], [-48.766273069902525, -13.097064937570323], [-48.801824829071222, -12.998978996328646], [-48.797320434368146, -12.927414052192404], [-48.824094117030086, -12.873866686868496], [-48.926915165874277, -12.784547835805], [-48.998249397111096, -12.748996076636303], [-49.016245003266306, -12.655172830869731], [-49.136622205123956, -12.735504865184154], [-49.29749501399516, -13.003483391031722], [-49.359820455825798, -13.132858395966991], [-49.382320456684113, -13.248939943363894], [-49.520693264697002, -13.199896972743062], [-49.685839755371831, -13.177396971884747], [-49.913542400776748, -13.070302241236917], [-49.971594160803761, -13.025741692662066], [-50.051915208789637, -13.021237297958976], [-50.239341973751891, -12.931918446895494], [-50.270620051116936, -12.891862293023721], [-50.275124445820012, -12.789052230508076], [-50.19929680620865, -12.655172830869731], [-50.203570488012303, -12.570358374509311], [-50.13674065147859, -12.476513156085659], [-50.163745047039981, -12.38765573082101], [-50.295591975897651, -12.490026340194888], [-50.392348571385497, -12.617138161450072], [-50.484820498741158, -12.842599595831999], [-50.566042425667661, -12.819638169174837], [-50.613964790777004, -12.763388167029063], [-50.655372263059689, -12.666862284440654], [-50.660546823803969, -12.558207495139541], [-50.629268746438925, -12.437379853811592], [-50.631740670361324, -12.288646937981625], [-50.667523142429445, -12.112030720306748], [-50.67471918762584, -11.990082473467297], [-50.653570505178465, -11.922340771664409], [-50.661447702744567, -11.853500437007099], [-50.717466991990904, -11.749108343181121], [-50.66572138454822, -11.651901308222961], [-50.671346384762813, -11.573832457588622], [-50.716566113050305, -11.482689875986807], [-50.708018749442999, -11.345668386384844], [-50.64524286814202, -11.162746016125666], [-50.610372261343059, -11.000983314642411], [-50.59912226091393, -10.689806544959453], [-50.550749456334273, -10.567177145750264], [-50.454674013216163, -10.388517470966192], [-50.402697692874028, -10.258241587090311], [-50.395270934778239, -10.176788947264384], [-50.337449887650649, -10.034362184018732], [-50.234848565377348, -9.842672723581373] ] ] ] } }, { "type": "Feature", "properties": { "population": 44035, "fill": "#333" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-53.116199993651563, -22.639987664885183], [-52.960721472095528, -22.454824083603015], [-52.566070578134543, -22.207324074161647], [-52.402495132441516, -22.069181979048096], [-52.338818372199967, -21.957341154469304], [-52.245665292474555, -21.840358728131761], [-52.12259644012363, -21.718168782064367], [-52.064995119566902, -21.622763504987418], [-52.072641604233596, -21.554142896900998], [-52.047669679452866, -21.510944653065621], [-51.989848632325305, -21.493630199280119], [-51.954747312626921, -21.469548167111469], [-51.936290280672836, -21.422746407513614], [-51.872844233330682, -21.32982404068764], [-51.856650385056696, -21.260082827089718], [-51.866318354175519, -21.18267315616805], [-51.811419670440642, -21.077138484173474], [-51.691943347523647, -20.943720510334003], [-51.619049057633561, -20.806918747302916], [-51.593165267583686, -20.666513468509322], [-51.534223614944608, -20.55761697998031], [-51.396971412443207, -20.441755159154269], [-51.160721403430983, -20.306513454776464], [-51.063964807943137, -20.223039330498423], [-50.99377315487493, -20.101552509457804], [-50.584049018151433, -19.821203377669605], [-50.488643741074497, -19.790815192916568], [-50.43374505733965, -19.800263435464558], [-50.364443296883508, -19.858556894719527], [-49.377145895939833, -19.978483657106864], [-49.2783678159999, -19.98703102071417], [-49.258790178534298, -20.016957779668289], [-49.288046771447227, -20.073647234955814], [-49.283542376744151, -20.148573995626549], [-49.238992814497863, -20.245539331356738], [-49.199848525895277, -20.294362575406637], [-49.166318251178666, -20.295043727776431], [-49.112770885854729, -20.259272242036786], [-49.039645883065248, -20.18726784475885], [-48.994645881348617, -20.213591087950419], [-48.977990607275785, -20.338241971611808], [-48.952568243024757, -20.41002664231894], [-48.918367802266971, -20.429142853985638], [-48.886869998331065, -20.369970488447152], [-48.858294557787872, -20.232729272274312], [-48.81194323766033, -20.158923117115094], [-48.71564806797133, -20.143849874352583], [-48.363744978375422, -20.138224874138018], [-48.25326645853599, -20.093005145850512], [-48.178339697865255, -20.082875750932857], [-48.109499363207959, -20.116625752220315], [-48.051216890281552, -20.120229267982779], [-47.991143645802424, -20.082875750932857], [-47.9087901270359, -20.081755145421369], [-47.861768640867155, -20.055651628800589], [-47.860197595885353, -20.011991959166366], [-47.818570397031777, -19.980724868129869], [-47.749719076045949, -19.977121352367419], [-47.695490558352276, -19.9910739896184], [-47.655895830279405, -20.022802506453729], [-47.594240554489943, -20.018517838321486], [-47.517742748837378, -19.994216079582017], [-47.459921701709789, -20.000983657965179], [-47.427742745404146, -20.036293717905892], [-47.328964665464184, -20.117526631160942], [-47.244369935674655, -20.173996359877592], [-47.234921693126722, -20.204362571973462], [-47.266199770491767, -20.284694606287886], [-47.292973453153763, -20.423078400629322], [-47.252697572711099, -20.476625765953202], [-47.154589658812313, -20.525668736574076], [-47.109820369995106, -20.632763467221906], [-47.212641418839326, -20.806918747302916], [-47.221419495346026, -20.914013477950732], [-47.145591855734693, -20.981074027383912], [-47.123322567775801, -21.132949033177482], [-47.056273004671198, -21.195263488679586], [-46.993947562840532, -21.342656072427161], [-47.002714653018757, -21.400707832454088], [-46.895619922370884, -21.405190254500155], [-46.815298874385007, -21.3606516785824], [-46.685693156550315, -21.396203437751083], [-46.654645792084722, -21.373923163463658], [-46.605372108564438, -21.42747052878758], [-46.507275180994213, -21.458737619824078], [-46.493772983213518, -21.525798169257229], [-46.56082254631815, -21.672949053776847], [-46.605372108564438, -21.681957843183], [-46.627872109422754, -21.771276694246495], [-46.667917276965966, -21.811552574689145], [-46.658919473888375, -21.905156093884841], [-46.618874306345134, -21.98546615554217], [-46.658919473888375, -22.052526704975335], [-46.600867713861362, -22.132858739289759], [-46.663423868591451, -22.204401710768877], [-46.69919535433101, -22.320263531594932], [-46.641143594304026, -22.409604355315508], [-46.547320348537454, -22.440871446352006], [-46.543046666733801, -22.472138537388503], [-46.453716829341744, -22.516699085963353], [-46.395665069314759, -22.615026726433001], [-46.471492708926121, -22.682065303209072], [-46.368891386652791, -22.748906126071347], [-46.359893583575172, -22.842729371837919], [-46.288570338666915, -22.882763553052598], [-46.154471212457679, -22.847233766540995], [-46.14569313595095, -22.891772342458765], [-46.020591812819333, -22.873996462874416], [-45.908992687468412, -22.820449097550494], [-45.859949716847581, -22.860505251422268], [-45.792900153742977, -22.851716188586991], [-45.743846196793584, -22.797949096692193], [-45.743846196793584, -22.726625851783922], [-45.801897956820596, -22.699841182793421], [-45.672292238985904, -22.619531121136077], [-45.629775147520235, -22.622673211099695], [-45.58319311449327, -22.615026726433001], [-45.52964574916939, -22.65079821217256], [-45.470923823101202, -22.611642937241413], [-45.40904882074085, -22.646293817469484], [-45.270665026399399, -22.606017937026849], [-45.243891343737459, -22.561479361109079], [-45.056244852204316, -22.467656115342507], [-44.92236545256597, -22.449880235758172], [-44.833046601502474, -22.405099960612404], [-44.770721159671723, -22.423095566767586], [-44.650124231243183, -22.561479361109093], [-44.636622033462515, -22.601513542323801], [-44.538525105892347, -22.619531121136106], [-44.216999214720829, -22.592746452145548], [-44.167945257771521, -22.699841182793421], [-44.248266305757397, -22.74890612607129], [-44.275039988419337, -22.820449097550522], [-44.35986543110829, -22.85600085671922], [-44.471464556459125, -22.851716188586977], [-44.587568076513207, -22.878500857577478], [-44.72594088452604, -22.936552617604434], [-44.79749484233372, -22.990099982928371], [-44.806272918840477, -23.13725086744796], [-44.864324678867433, -23.204289444224003], [-44.782872039041592, -23.353923238994639], [-44.951622045478871, -23.381367087697811], [-45.21531590319421, -23.575539458386174], [-45.325343983563357, -23.599621490554739], [-45.423221184562749, -23.68535879851288], [-45.4333395931518, -23.758483801302418], [-45.464397943945983, -23.802582924078365], [-45.527173825246848, -23.804824135101398], [-45.664645754319167, -23.764767981229625], [-45.843074716203887, -23.763647375718108], [-45.971999281668786, -23.795595619124356], [-46.630794472815467, -24.110375904569707], [-46.867275194727029, -24.236367120313503], [-47.137275205026754, -24.493095645731842], [-47.5922190700378, -24.781091262186806], [-47.831171715871847, -24.953005331244754], [-47.876622157058762, -24.997543907162594], [-47.914195400679546, -24.999807090842637], [-47.989122161350281, -25.035798303153058], [-47.959415128967009, -25.065505335536272], [-47.908339687565501, -25.068207972358152], [-47.929499356341466, -25.168315398051959], [-48.024443207619584, -25.236716279567474], [-48.077540133473207, -25.290263644891439], [-48.087669528390848, -25.280156222630879], [-48.091943210194501, -25.235595674056029], [-48.185766455961073, -25.190815398910289], [-48.230546731106813, -25.012397423354116], [-48.26609849027551, -25.034677697641598], [-48.41346910136599, -24.958850058030265], [-48.511796741835639, -25.083720668262458], [-48.565344107159603, -25.056957971928966], [-48.54284410630126, -24.811479446939771], [-48.489296740977352, -24.74441889750662], [-48.61439806410894, -24.681862742776545], [-48.779544554783797, -24.695375926885774], [-48.828598511733162, -24.66410883584922], [-49.025023079773064, -24.668591257895272], [-49.092072642877667, -24.686367137479621], [-49.216943253109861, -24.690871532182697], [-49.29749501399516, -24.664108835849291], [-49.310766498876433, -24.530229436210945], [-49.239443253968147, -24.418630310860024], [-49.22594105618748, -24.338298276545572], [-49.274995013136845, -24.315798275687285], [-49.337540181538373, -24.213207939742531], [-49.333046773163858, -24.14186272217718], [-49.409094139346081, -24.083832934807262], [-49.601025299011411, -23.86489737958054], [-49.569747221646367, -23.833850015114933], [-49.551971342062075, -23.713242100357832], [-49.605518707385954, -23.641699128878713], [-49.654572664335348, -23.507819729240353], [-49.614296783892684, -23.409733787998675], [-49.636796784750999, -23.257858782205105], [-49.730400303946681, -23.105983776411534], [-49.909048992402205, -23.034638558846183], [-49.913542400776748, -22.985595588225337], [-49.958091963023065, -22.963315313937912], [-49.971594160803761, -22.914052616746176], [-50.123249440026427, -22.940815313079611], [-50.292900325404389, -22.95432849718884], [-50.368947691586584, -22.91405261674619], [-50.431273133417221, -22.945319707782687], [-50.627697701457123, -22.923039433495262], [-50.726025341926771, -22.949824102485763], [-50.784066115625222, -22.945319707782687], [-50.882174029523981, -22.820449097550494], [-51.002770957952521, -22.793664428559993], [-51.181419646408045, -22.739897336665194], [-51.35534421358966, -22.65079821217256], [-51.547495099825852, -22.686349971341272], [-51.641098619021534, -22.650798212172575], [-51.69464598434547, -22.664069697053776], [-51.743919667865725, -22.619531121136077], [-51.873294672800995, -22.610522331729925], [-51.984893798151916, -22.54796617699985], [-52.065214846137792, -22.521203480666429], [-52.141273198648562, -22.543483754953854], [-52.16354248660744, -22.601513542323772], [-52.217089851931362, -22.641789422766422], [-52.261650400506213, -22.601513542323772], [-52.315197765830135, -22.619531121136077], [-52.44479249733628, -22.601513542323772], [-52.520620136947628, -22.615026726433001], [-52.6144433827142, -22.570466177858151], [-52.694775417028623, -22.601513542323772], [-52.949240758766962, -22.570466177858123], [-53.044415322944445, -22.636406121779814], [-53.116199993651563, -22.639987664885183] ] ], [ [ [-45.249065904481711, -23.782543860813973], [-45.233091782778615, -23.825302651507627], [-45.250197496321732, -23.852966226781632], [-45.260315904910783, -23.889199138320066], [-45.260997057280576, -23.941406171561539], [-45.302624256134209, -23.914841229141985], [-45.412872063074133, -23.934880292406433], [-45.4513461856356, -23.895505290904396], [-45.302393543234757, -23.72765616340763], [-45.272247057709762, -23.751957922147199], [-45.249065904481711, -23.782543860813973] ] ] ] } }, { "type": "Feature", "properties": { "population": 6850, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-48.721943234227098, -5.355043157860635], [-48.730490597834375, -5.338168157216899], [-48.252816019065619, -4.954327810543248], [-47.801915122958917, -4.597030433632256], [-47.65454451186838, -4.606017250381342], [-47.583221266960209, -4.547965490354329], [-47.489398021193608, -4.423094880122107], [-47.458119943828592, -4.338280423761717], [-47.382292304217231, -4.275724269031571], [-47.333018620696976, -4.164125143680735], [-47.310749332738055, -4.065797503211058], [-47.28846905845063, -4.079288714663221], [-47.065270807748732, -3.842599252509217], [-47.024994927306068, -3.59712072751995], [-47.029499322009201, -3.570358031186515], [-46.966943167279112, -3.525797482611608], [-46.944673879320192, -3.396202751105534], [-46.859848436631296, -3.329142201672369], [-46.824296677462542, -3.329142201672369], [-46.743744916577327, -3.190780379988041], [-46.667917276965966, -3.092672466089311], [-46.636650185929511, -2.985577735441382], [-46.650141397381617, -2.91401279130514], [-46.574094031199365, -2.847193941099988], [-46.667917276965966, -2.739879483881225], [-46.600867713861305, -2.664051844269977], [-46.507275180994213, -2.614986900991994], [-46.484994906706731, -2.547948324215952], [-46.426943146679776, -2.512396565047197], [-46.435721223186533, -2.409564529874501], [-46.408947540524537, -2.387306228244199], [-46.413440948899051, -2.239913644496539], [-46.377669463159521, -2.253426828605825], [-46.279572535589239, -2.141827703254933], [-46.212522972484635, -1.927396542731231], [-46.217016380859263, -1.807030327202142], [-46.301841823548159, -1.802525932499123], [-46.315344021328883, -1.73098296101989], [-46.243790063521089, -1.722193898184685], [-46.199240501274801, -1.677413623038944], [-46.181244895119619, -1.574823287094205], [-46.199240501274801, -1.485504436030624], [-46.123193135092549, -1.34712064168923], [-46.158964620832137, -1.315853550652776], [-46.141199727576407, -1.240025911041414], [-46.007089615038637, -1.146861844987484], [-45.972219008239676, -1.187379424658161], [-45.778716803592545, -1.250814485671697], [-45.644848390282675, -1.347801794059023], [-45.556869871301558, -1.330707066844354], [-45.458542230831938, -1.35634915766633], [-45.353018545165924, -1.567396528998415], [-45.329167225896754, -1.717250050339828], [-45.28214573972798, -1.696551807362709], [-45.238497056422204, -1.629491257929601], [-45.182016341377107, -1.507103557948312], [-45.076272929140146, -1.466366251706802], [-45.025867653779869, -1.513387737875576], [-44.91967380207268, -1.588775924345214], [-44.828322480228508, -1.671568896253461], [-44.78984835766704, -1.724896535006508], [-44.72121676325213, -1.733443898613814], [-44.778598357237854, -1.798922416736616], [-44.72099703668124, -1.792396537581453], [-44.651244836754756, -1.74581450455446], [-44.591622031745942, -1.841900934001103], [-44.546841756600202, -1.946293027827096], [-44.537843953522554, -2.052728578762299], [-44.579921591846528, -2.113922428752971], [-44.617275108896422, -2.152176824743435], [-44.658671594850546, -2.22754303855595], [-44.707494838900516, -2.241056222665179], [-44.756318082950543, -2.265577707975638], [-44.700749233174406, -2.320465405381867], [-44.662494837183942, -2.373353590993133], [-44.579020712905901, -2.23046540194872], [-44.520298786837714, -2.190431220734013], [-44.435473344148761, -2.168150946446588], [-44.391374221372701, -2.269620676879811], [-44.381914992496263, -2.365465407098554], [-44.520068073938262, -2.405521560970271], [-44.520749226307998, -2.481349200581633], [-44.561914999362671, -2.524327717846177], [-44.588919394924062, -2.57337068846698], [-44.610749229741202, -2.676861903352346], [-44.638874230814167, -2.762599211310487], [-44.721447476151525, -3.142396589079851], [-44.723018521133326, -3.204733017238993], [-44.622669396211563, -3.137892194376775], [-44.437494828600848, -2.944400976058205], [-44.381244826455088, -2.738297452570919], [-44.30811982366555, -2.535116292476459], [-44.2286996546203, -2.47121980566402], [-44.179414984771427, -2.47121980566402], [-44.105619815940827, -2.493500079951446], [-44.101346134137202, -2.560099203585764], [-44.112596134566274, -2.598573326147118], [-44.191565864141296, -2.699603603438618], [-44.225096138857907, -2.754952726643808], [-44.192697455981374, -2.809620697479147], [-44.013147888585195, -2.642232995781399], [-43.932815854270757, -2.583500083384649], [-43.864414972755185, -2.595431236183515], [-43.728525074993286, -2.51824129183268], [-43.455141275502001, -2.502047443558695], [-43.434673745424391, -2.413629471435797], [-43.379994788260376, -2.376056227815013], [-43.229690827448678, -2.385943923504726], [-42.936740376820353, -2.465155352307647], [-42.83234828299436, -2.529491292261866], [-42.675968882497727, -2.589564536741022], [-42.593615363731146, -2.661129480877207], [-42.24958947170137, -2.792064544465745], [-41.999848251236983, -2.806017181716754], [-41.876098246516335, -2.746625089607392], [-41.846171487562231, -2.758775968977091], [-41.868891214991407, -2.851698335803107], [-41.815343849667499, -2.936293065592636], [-41.842117532329439, -3.034620706062299], [-41.922449566643877, -3.110448345673632], [-42.002770614629753, -3.231056260430719], [-42.105371936903055, -3.262323351467202], [-42.100867542199978, -3.302379505338976], [-42.216971062253975, -3.431974236845122], [-42.364341673344484, -3.44975011642947], [-42.453671510736513, -3.476512812762891], [-42.502714481357344, -3.44975011642947], [-42.574268439165053, -3.570358031186515], [-42.627815804488961, -3.614896607104313], [-42.676869761438354, -3.699733036121813], [-42.663367563657658, -3.789051887185309], [-42.734921521465367, -3.922931286823655], [-42.851025041519335, -4.039012834220557], [-42.891070209062576, -4.141844869393296], [-42.989397849532224, -4.239952783292068], [-42.953615377464104, -4.391827789085639], [-42.895574603765681, -4.405099273966925], [-42.864296526400608, -4.498922519733469], [-42.913570209920863, -4.637306314074863], [-42.94912196908956, -4.659564615705236], [-42.931346089505212, -4.731129559841463], [-42.953615377464104, -4.775668135759233], [-42.904572406843272, -4.829215501083155], [-42.855518449893907, -4.936332204388066], [-42.833018449035563, -5.097194026930723], [-42.806244766373652, -5.159530455089907], [-42.833018449035563, -5.311405460883492], [-42.913570209920863, -5.391715522540821], [-43.047449609559209, -5.597137893658314], [-43.100996974883174, -5.623922562648772], [-43.083221095298796, -5.713241413712311], [-43.109994777960765, -5.771293173739309], [-43.074223292221177, -6.057047579171225], [-43.002669334413497, -6.12386642937642], [-42.962624166870256, -6.186422584106495], [-42.851025041519335, -6.253483133539646], [-42.868789934775151, -6.436405503798838], [-42.855518449893907, -6.480944079716608], [-42.913570209920863, -6.615043205925815], [-42.917843891724516, -6.668590571249737], [-42.980400046454633, -6.744418210861056], [-43.13227505224819, -6.780189696600658], [-43.19909390245337, -6.753427000267237], [-43.30191495129759, -6.802469970888012], [-43.462568033597847, -6.842745851330733], [-43.560895674067524, -6.753427000267266], [-43.676768481222069, -6.699879634943329], [-43.815372002134382, -6.708646725121511], [-43.953744810147271, -6.762194090445348], [-44.038570252836223, -6.766698485148481], [-44.060839540795115, -6.829254639878584], [-44.092117618160131, -6.806974365591159], [-44.163440863068445, -6.887306399905583], [-44.167945257771521, -6.923077885645114], [-44.257275095163521, -7.007892342005576], [-44.306318065784353, -7.110504650607368], [-44.449195268500318, -7.146276136347012], [-44.578570273435588, -7.248866472291766], [-44.712669399644824, -7.396237083382246], [-44.815270721918125, -7.364969992345763], [-44.909093967684726, -7.445302026660158], [-45.024966774839299, -7.494344997281019], [-45.297449695389901, -7.556901152011108], [-45.471593989142377, -7.673004672065105], [-45.542917234050634, -7.869418253776431], [-45.578699706118755, -8.150668264505271], [-45.654516359401555, -8.253280573107133], [-45.659020754104631, -8.311332333134118], [-45.734848393715993, -8.431918275234068], [-45.752843999871203, -8.561293280169366], [-45.819673836404945, -8.699896801081678], [-45.926768567052761, -8.788995925574284], [-45.980546645276121, -8.927599446486596], [-45.940270764833457, -9.012194176276125], [-45.935766370130409, -9.119530606151898], [-45.904499279093898, -9.177582366178939], [-45.895721202587197, -9.32921567274451], [-45.828671639482536, -9.373995947890265], [-45.79739356211752, -9.463095072382885], [-45.837669442560156, -9.534638043862032], [-45.859949716847581, -9.833663934175206], [-45.859949716847581, -9.99883239750713], [-45.899994884390821, -10.02559509384055], [-45.899994884390821, -10.083646853867549], [-45.953542249714729, -10.181974494337197], [-45.935766370130409, -10.213241585373623], [-45.944775159536533, -10.315853893975543], [-46.034094010600029, -10.271293345400693], [-46.087641375923965, -10.208737190670604], [-46.190242698197267, -10.177470099634036], [-46.284065943963839, -10.186478889040274], [-46.346622098693899, -10.168483282885049], [-46.471492708926121, -10.003314819553111], [-46.462494905848473, -9.949767454229232], [-46.507275180994213, -9.855944208462631], [-46.667917276965966, -9.74434508311171], [-46.650141397381617, -9.664013048797287], [-46.600867713861362, -9.650741563916029], [-46.534048863656182, -9.556918318149457], [-46.56082254631815, -9.498866558122458], [-46.752742719654975, -9.409547707058948], [-46.82857035926628, -9.306957371114194], [-46.846565965421519, -9.168573576772772], [-46.940169484617201, -9.070245936303124], [-47.038497125086849, -9.065983240828018], [-47.083046687333194, -9.03469417713444], [-47.065270807748817, -8.976642417107428], [-46.904617725448503, -8.829271806016934], [-46.92239360503288, -8.744457349656443], [-46.882117724590216, -8.583793281027681], [-46.837568162343928, -8.485465640557948], [-46.793018600097582, -8.436422669937187], [-46.658919473888375, -8.396146789494537], [-46.502770786291137, -8.396146789494537], [-46.543046666733801, -8.320319149883176], [-46.507275180994213, -8.27578057396542], [-46.502770786291137, -8.172948538792639], [-46.466999300551549, -8.070358202847899], [-46.489268588510441, -7.963241499543003], [-46.574094031199394, -7.905189739516004], [-46.743744916577327, -7.922965619100353], [-46.868846239708944, -7.958737104839884], [-46.984949759762941, -8.03906913915435], [-47.016216850799424, -8.043573533857341], [-47.078542292630118, -7.976512984424289], [-47.15009625043777, -7.856146768895158], [-47.279471255373039, -7.731056432092103], [-47.303542301213156, -7.66287527714745], [-47.346520818477643, -7.659733187183832], [-47.413570381582247, -7.530116483020592], [-47.458119943828592, -7.534620877723682], [-47.498395824271256, -7.449806421363292], [-47.495023021408201, -7.356202902167524], [-47.506943187878534, -7.305797626807262], [-47.545867749910258, -7.287582294081119], [-47.611796707503373, -7.301512958675062], [-47.668947588589759, -7.279694110186497], [-47.717089680269964, -7.22210377595826], [-47.715969074758476, -7.184750258908423], [-47.665344072827281, -7.16719410589495], [-47.605721267818495, -7.11476734608253], [-47.537089673403528, -7.027250252900274], [-47.47049054976921, -6.795944091732892], [-47.405473457445254, -6.42109056180837], [-47.397145820408838, -6.072340548504613], [-47.444848458947291, -5.749913778392497], [-47.48579450543113, -5.561146681347864], [-47.519994946188945, -5.506478710512454], [-47.612466873544577, -5.454952829640604], [-47.763221273826645, -5.407250191102179], [-47.853891443301052, -5.350780462385529], [-47.884499354624893, -5.285521670833603], [-47.953119962711327, -5.256276064249221], [-48.059544527317968, -5.263021669975288], [-48.16889145531735, -5.240741395687863], [-48.281622172508321, -5.189457214043955], [-48.378148055096744, -5.169418150779563], [-48.458249376511731, -5.180887877779639], [-48.52349718173511, -5.220504578509647], [-48.574341910237166, -5.28822430765544], [-48.630591912382954, -5.330301945979329], [-48.721943234227098, -5.355043157860635] ] ], [ [ [-44.565298788554287, -2.923922459651919], [-44.581943076298614, -2.845611909789682], [-44.569122030887684, -2.784879485597855], [-44.501841754883628, -2.726146573201106], [-44.481374224806018, -2.717599209593914], [-44.487218951591387, -2.789823333442769], [-44.482494830317421, -2.811861908502237], [-44.4993698309612, -2.939676854784238], [-44.59769747143082, -3.037543069454955], [-44.565298788554287, -2.923922459651919] ] ], [ [ [-45.011244850487628, -1.34463773143824], [-44.99549045535548, -1.347582067488133], [-44.978615454711758, -1.267250033173696], [-44.88839572470755, -1.276918002292462], [-44.882990451063961, -1.317875035104862], [-44.947117650775738, -1.366017126785096], [-44.967815893752913, -1.39078031132351], [-45.020923805935013, -1.372323279369425], [-45.011244850487628, -1.34463773143824] ] ] ] } }, { "type": "Feature", "properties": { "population": 16461, "fill": "#666" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-44.782872039041592, -23.353923238994639], [-44.864324678867433, -23.204289444224003], [-44.806272918840477, -23.13725086744796], [-44.79749484233372, -22.990099982928371], [-44.72594088452604, -22.936552617604434], [-44.587568076513207, -22.878500857577478], [-44.471464556459125, -22.851716188586977], [-44.35986543110829, -22.85600085671922], [-44.275039988419337, -22.820449097550522], [-44.248266305757397, -22.74890612607129], [-44.167945257771521, -22.699841182793421], [-44.216999214720829, -22.592746452145548], [-44.538525105892347, -22.619531121136106], [-44.636622033462515, -22.601513542323801], [-44.650124231243183, -22.561479361109093], [-44.770721159671723, -22.423095566767586], [-44.833046601502474, -22.405099960612404], [-44.730445279229173, -22.360539412037582], [-44.663395716124569, -22.369548201443706], [-44.601070274293903, -22.316000836119827], [-44.534020711189271, -22.302487652010583], [-44.444690873797242, -22.253444681389752], [-44.293046580903109, -22.239953469937589], [-44.216999214720857, -22.248940286686661], [-44.092117618160131, -22.173112647075314], [-43.895693050120258, -22.106074070299258], [-43.815372002134382, -22.065798189856594], [-43.565169355871149, -22.065798189856594], [-43.462568033597847, -22.057031099678412], [-43.341971105169364, -22.003483734354461], [-43.13227505224819, -22.02574203598482], [-43.063423731262333, -22.063556978833603], [-42.279516230655531, -21.713224934219511], [-42.284020625358579, -21.641901689311226], [-42.36884606804756, -21.632892899905073], [-42.364341673344484, -21.592617019462423], [-42.301796504942928, -21.485522288814579], [-42.297292110239852, -21.405190254500155], [-42.221464470628518, -21.338151677724113], [-42.181419303085278, -21.163996397643089], [-42.096593860396325, -21.003354301671337], [-42.141143422642642, -20.963298147799563], [-42.096593860396325, -20.923022267356913], [-41.998266219926677, -20.932031056763066], [-41.962494734187089, -20.909750782475641], [-41.92694297501842, -20.829199021590341], [-41.864397806616864, -20.775651656266419], [-41.743789891859791, -20.820431931412145], [-41.712522800823308, -20.976569632680821], [-41.730518406978518, -21.043630182113986], [-41.712522800823308, -21.110449032319167], [-41.440270593172073, -21.199767883382663], [-41.391216636222708, -21.186496398501404], [-41.266115313091092, -21.231056947076254], [-41.069690745051219, -21.213281067491906], [-40.967539862248202, -21.27559552299401], [-41.047190744192903, -21.505781078649875], [-41.02311969835273, -21.596901687594595], [-41.021548653370985, -21.610854324845604], [-40.987798652083427, -21.92022933664731], [-41.000399970923581, -21.998979339651441], [-41.122567944333866, -22.084474948381569], [-41.582917082988558, -22.243556985700025], [-41.705546482197747, -22.309694683535497], [-41.980490340342328, -22.580595572775735], [-41.997596053885445, -22.644733758816187], [-41.986115340556921, -22.735854367760908], [-41.940895612269344, -22.788281127573384], [-41.987466658967833, -22.845190309431814], [-42.042365342702681, -22.94712146566394], [-42.12246666411761, -22.940815313079611], [-42.581025031219667, -22.94105701230751], [-42.829195206702195, -22.973224982284705], [-42.958339498738042, -22.967138556271266], [-43.016171532194221, -22.942617070960807], [-43.081199610846681, -22.902582889746157], [-43.100766261983722, -22.850156129933737], [-43.065445215714476, -22.770724974559869], [-43.086374171590933, -22.723242062592306], [-43.154324613636163, -22.725263547044392], [-43.229020661407503, -22.747543821331874], [-43.241841706818434, -22.795026733299437], [-43.236667146074183, -22.828776734586938], [-43.208772857900669, -22.878039431778575], [-43.1936996151382, -22.938574102056521], [-43.224065827234085, -22.991220588439887], [-43.369414953872422, -22.997966194165997], [-43.532770672994559, -23.04634998507413], [-43.736621999130307, -23.066608774909412], [-43.898846126412366, -23.101479381708486], [-43.973772887083101, -23.057380258932426], [-43.898846126412366, -23.035319711215834], [-43.791520682865098, -23.04588855927534], [-43.675867602281471, -23.009457893823082], [-43.702871997842863, -22.966237677330582], [-43.866216730636381, -22.910449100983726], [-44.047568055913871, -22.944638555412894], [-44.147917180835577, -23.011017952476379], [-44.367973341573816, -23.004953499120006], [-44.637292199503747, -23.05557850105123], [-44.681171595708861, -23.106862682695066], [-44.673744837613071, -23.206552627904102], [-44.621098351229705, -23.228591202963571], [-44.569792196928859, -23.274052630479048], [-44.619065880449114, -23.316349995373798], [-44.667218958457852, -23.335246480469664], [-44.782872039041592, -23.353923238994639] ] ], [ [ [-44.155794378401652, -23.166496474032442], [-44.220591744154774, -23.190798232771897], [-44.320039990135911, -23.212397354689585], [-44.360096144007684, -23.172121474246921], [-44.274150095807272, -23.116332897900065], [-44.242872018442199, -23.074013560348192], [-44.220372017583884, -23.083022349754401], [-44.191565864141296, -23.113168835279282], [-44.129240422310602, -23.141974988721927], [-44.097973331274147, -23.169418837425098], [-44.155794378401652, -23.166496474032442] ] ] ] } }, { "type": "Feature", "properties": { "population": 3195, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-45.757117681674856, -10.329345105427691], [-45.944775159536533, -10.315853893975543], [-45.935766370130409, -10.213241585373623], [-45.953542249714729, -10.181974494337197], [-45.899994884390821, -10.083646853867549], [-45.899994884390821, -10.02559509384055], [-45.859949716847581, -9.99883239750713], [-45.859949716847581, -9.833663934175206], [-45.837669442560156, -9.534638043862032], [-45.79739356211752, -9.463095072382885], [-45.828671639482536, -9.373995947890265], [-45.895721202587197, -9.32921567274451], [-45.904499279093898, -9.177582366178939], [-45.935766370130409, -9.119530606151898], [-45.940270764833457, -9.012194176276125], [-45.980546645276121, -8.927599446486596], [-45.926768567052761, -8.788995925574284], [-45.819673836404945, -8.699896801081678], [-45.752843999871203, -8.561293280169366], [-45.734848393715993, -8.431918275234068], [-45.659020754104631, -8.311332333134118], [-45.654516359401555, -8.253280573107133], [-45.578699706118755, -8.150668264505271], [-45.542917234050634, -7.869418253776431], [-45.471593989142377, -7.673004672065105], [-45.297449695389901, -7.556901152011108], [-45.024966774839299, -7.494344997281019], [-44.909093967684726, -7.445302026660158], [-44.815270721918125, -7.364969992345763], [-44.712669399644824, -7.396237083382246], [-44.578570273435588, -7.248866472291766], [-44.449195268500318, -7.146276136347012], [-44.306318065784353, -7.110504650607368], [-44.257275095163521, -7.007892342005576], [-44.167945257771521, -6.923077885645114], [-44.163440863068445, -6.887306399905583], [-44.092117618160131, -6.806974365591159], [-44.060839540795115, -6.829254639878584], [-44.038570252836223, -6.766698485148481], [-43.953744810147271, -6.762194090445348], [-43.815372002134382, -6.708646725121511], [-43.676768481222069, -6.699879634943329], [-43.560895674067524, -6.753427000267266], [-43.462568033597847, -6.842745851330733], [-43.30191495129759, -6.802469970888012], [-43.19909390245337, -6.753427000267237], [-43.13227505224819, -6.780189696600658], [-42.980400046454633, -6.744418210861056], [-42.917843891724516, -6.668590571249737], [-42.913570209920863, -6.615043205925815], [-42.855518449893907, -6.480944079716608], [-42.868789934775151, -6.436405503798838], [-42.851025041519335, -6.253483133539646], [-42.962624166870256, -6.186422584106495], [-43.002669334413497, -6.12386642937642], [-43.074223292221177, -6.057047579171225], [-43.109994777960765, -5.771293173739309], [-43.083221095298796, -5.713241413712311], [-43.100996974883174, -5.623922562648772], [-43.047449609559209, -5.597137893658314], [-42.913570209920863, -5.391715522540821], [-42.833018449035563, -5.311405460883492], [-42.806244766373652, -5.159530455089907], [-42.833018449035563, -5.097194026930723], [-42.855518449893907, -4.936332204388066], [-42.904572406843272, -4.829215501083155], [-42.953615377464104, -4.775668135759233], [-42.931346089505212, -4.731129559841463], [-42.94912196908956, -4.659564615705236], [-42.913570209920863, -4.637306314074863], [-42.864296526400608, -4.498922519733469], [-42.895574603765681, -4.405099273966925], [-42.953615377464104, -4.391827789085639], [-42.989397849532224, -4.239952783292068], [-42.891070209062576, -4.141844869393296], [-42.851025041519335, -4.039012834220557], [-42.734921521465367, -3.922931286823655], [-42.663367563657658, -3.789051887185309], [-42.676869761438354, -3.699733036121813], [-42.627815804488961, -3.614896607104313], [-42.574268439165053, -3.570358031186515], [-42.502714481357344, -3.44975011642947], [-42.453671510736513, -3.476512812762891], [-42.364341673344484, -3.44975011642947], [-42.216971062253975, -3.431974236845122], [-42.100867542199978, -3.302379505338976], [-42.105371936903055, -3.262323351467202], [-42.002770614629753, -3.231056260430719], [-41.922449566643877, -3.110448345673632], [-41.842117532329439, -3.034620706062299], [-41.815343849667499, -2.936293065592636], [-41.868891214991407, -2.851698335803107], [-41.846171487562231, -2.758775968977091], [-41.721971043371212, -2.808939545109496], [-41.640067964075001, -2.878702731364498], [-41.479865321245001, -2.916495701556187], [-41.318322346332621, -2.936293065592636], [-41.268598223342053, -2.916056248414421], [-41.257117510013472, -3.079181254637149], [-41.377714438442013, -3.271332140873369], [-41.426768395391377, -3.320375111494201], [-41.449268396249693, -3.436478631548212], [-41.382218833145089, -3.592616332816888], [-41.355445150483121, -3.708719852870885], [-41.283891192675441, -3.811332161472734], [-41.230343827351504, -4.043517228923633], [-41.181289870402111, -4.123849263238057], [-41.118744702000583, -4.177396628561979], [-41.074195139754295, -4.324767239652473], [-41.141244702858899, -4.427379548254322], [-41.23484822205458, -4.539198400176133], [-41.2438460251322, -4.615026039787466], [-41.226070145547851, -4.726625165138387], [-41.181289870402111, -4.811439621498806], [-41.185794265105216, -4.914051930100655], [-41.12324909670366, -5.007875175867227], [-41.11447102019693, -5.065926935894225], [-41.060692941973599, -5.168517271838979], [-41.069690745051219, -5.306901066180416], [-41.025141182804902, -5.364952826207414], [-40.949093816622678, -5.418500191531322], [-40.917815739257634, -5.60164228836139], [-40.92232013396071, -5.681974322675813], [-40.891042056595666, -5.905172573377655], [-40.891042056595666, -6.012267304025499], [-40.806216613906713, -6.253483133539646], [-40.797449523728517, -6.378353743771839], [-40.770664854738015, -6.494457263825836], [-40.721391171217761, -6.570262930780089], [-40.708119686336488, -6.659603754500665], [-40.614296440569916, -6.708646725121511], [-40.48041704093157, -6.735431394112013], [-40.417871872530043, -6.81147876029425], [-40.440141160488906, -6.905082279489932], [-40.511695118296615, -7.0033879473025], [-40.583018363204872, -7.195319106967844], [-40.533964406255507, -7.324694111903099], [-40.538468800958583, -7.391754661336265], [-40.645574517934961, -7.400741478085337], [-40.690343806752139, -7.427526147075838], [-40.690343806752139, -7.512340603436257], [-40.618789848944459, -7.637233186325531], [-40.659065729387095, -7.762323523128586], [-40.547466604036174, -7.833646768036857], [-40.529470997880964, -7.905189739516004], [-40.542973195661659, -8.030082322405278], [-40.592016166282491, -8.12390556817185], [-40.748395566779152, -8.244491510271843], [-40.833221009468105, -8.36487969845804], [-40.886768374792013, -8.351608213576768], [-40.92232013396071, -8.431918275234111], [-41.016143379727282, -8.418646790352838], [-41.083192942831886, -8.525741521000683], [-41.159020582443247, -8.548021795288108], [-41.212567947767155, -8.632858224305608], [-41.368716635364422, -8.713168285962922], [-41.399994712729438, -8.784733230099178], [-41.467044275834041, -8.865043291756422], [-41.498322353199114, -8.936366536664764], [-41.55637411322607, -8.972138022404351], [-41.609921478550007, -8.963151205655279], [-41.734792088782172, -8.981146811810504], [-41.734792088782172, -9.132802091033199], [-41.797348243512261, -9.173077971475848], [-41.850895608836169, -9.253388033133191], [-41.917945171940801, -9.213112152690485], [-42.043046495072417, -9.208849457215422], [-42.150141225720233, -9.293444187004965], [-42.310794308020547, -9.306957371114194], [-42.431391236449088, -9.409547707058962], [-42.489442996476072, -9.498866558122458], [-42.574268439165053, -9.485595073241143], [-42.618818001411341, -9.565927107555609], [-42.752697401049687, -9.521146832409883], [-42.851025041519335, -9.547931501400399], [-42.931346089505212, -9.516862164277654], [-42.936971089719805, -9.474345072812028], [-43.029443017075437, -9.436332376049464], [-43.042945214856132, -9.39627622217769], [-43.127770657545085, -9.373995947890265], [-43.185822417572126, -9.418556496465044], [-43.377742590908895, -9.414052101762039], [-43.414865395059394, -9.33552182532884], [-43.449296548716575, -9.302452976411118], [-43.538395673209209, -9.360504736438116], [-43.605445236313813, -9.338224462150691], [-43.658992601637721, -9.364987158484112], [-43.694775073705841, -9.445319192798536], [-43.810867607431305, -9.427543313214187], [-43.828643487015654, -9.498866558122458], [-43.784093924769337, -9.565927107555609], [-43.726042164742353, -9.748849477814815], [-43.681272875925174, -9.802396843138695], [-43.712539966961657, -9.949767454229203], [-43.703542163884038, -10.034603883246703], [-43.752815847404293, -10.106146854725807], [-43.76159392391105, -10.168483282885063], [-43.801869804353714, -10.204254768624651], [-43.913468929704607, -10.43195741402954], [-43.993789977690483, -10.454215715659814], [-44.118891300822099, -10.588095115298231], [-44.216999214720857, -10.62837099574088], [-44.310822460487458, -10.601608299407459], [-44.417917191135274, -10.588095115298231], [-44.538525105892347, -10.628370995740852], [-44.618846153878252, -10.686422755767879], [-44.645619836540192, -10.735465726388711], [-44.752714567188036, -10.784750396237527], [-44.783992644553109, -10.85607364114577], [-44.851042207657684, -10.878353915433223], [-44.931374241972122, -10.860578035848874], [-45.042973367323043, -10.896349521588448], [-45.315214588645745, -10.780246001534408], [-45.440315911777333, -10.619362206334714], [-45.471593989142377, -10.485504779353462], [-45.516143551388666, -10.414181534445163], [-45.605473388780695, -10.333849500130768], [-45.757117681674856, -10.329345105427691] ] ] ] } }, { "type": "Feature", "properties": { "population": 20734, "fill": "#666" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-50.99377315487493, -20.101552509457804], [-50.997596397208241, -19.663923098232331], [-50.96429683539111, -19.511366940069024], [-50.923790242049023, -19.464125727329417], [-50.880822711113069, -19.459181879484575], [-50.864167437040209, -19.437802484137762], [-50.870924029094823, -19.423849846886768], [-50.868891558314175, -19.377487540430693], [-50.84391963353346, -19.310888416796388], [-50.791943313191325, -19.238444566376614], [-50.713193310187251, -19.160595442313166], [-50.641870065278994, -19.118517803989278], [-50.577523138996241, -19.112233624062057], [-50.531622258339013, -19.087030986381905], [-50.489775332914547, -19.0204318627476], [-50.498992862563028, -18.953151586743559], [-50.457596376608876, -18.876642794762475], [-50.368266539216847, -18.768647185174018], [-50.246999444747132, -18.690116908740833], [-50.093773120542636, -18.641293664690863], [-49.960124433803713, -18.616332726238682], [-49.788671790544555, -18.614530968357457], [-49.677973544134261, -18.600116905307601], [-49.611824859970255, -18.566828329818989], [-49.553322660472958, -18.510116901874369], [-49.488294581820469, -18.522048054673263], [-49.41674062401276, -18.602819542129453], [-49.336650288926307, -18.584823935974214], [-49.247540178105169, -18.468500689349341], [-49.179370009489048, -18.404823929107764], [-49.108266491151653, -18.388388381605793], [-48.953699834864778, -18.325854199532813], [-48.226943215344335, -18.340246289925574], [-48.017917328464392, -18.434530961490992], [-47.928818203971787, -18.445319536121303], [-47.786171714155245, -18.379401564856721], [-47.446419503929093, -18.170595404547655], [-47.318846256875077, -18.083298037936274], [-47.279471255373039, -18.061479189447695], [-47.346520818477643, -17.878315119960547], [-47.355518621555262, -17.824767754636625], [-47.328744938893294, -17.744457692979296], [-47.27069317886631, -17.668630053367949], [-47.288469058450659, -17.548022138610875], [-47.40906598687917, -17.498979167990029], [-47.458119943828564, -17.52574186432345], [-47.529443188736821, -17.454198892844303], [-47.498395824271228, -17.32932828261211], [-47.453615549125487, -17.347104162196459], [-47.422348458089004, -17.271276522585111], [-47.310749332738084, -17.141901517649842], [-47.212641418839297, -17.074840968216691], [-47.230417298423646, -17.025797997595845], [-47.15009625043777, -16.976513327747043], [-47.159094053515389, -16.918483540377125], [-47.266199770491767, -16.6597335305066], [-47.404572578504656, -16.570392706786023], [-47.453615549125487, -16.494345340603786], [-47.431346261166595, -16.409750610814257], [-47.351025213180719, -16.302414180938442], [-47.324240544190218, -16.226608513984189], [-47.337523015400023, -16.146276479669766], [-47.301971256231354, -16.039181749021921], [-47.230417298423646, -16.034677354318845], [-47.127815976150345, -15.923078228967924], [-47.07854229263009, -15.936349713849197], [-46.864341845005839, -15.882802348525274], [-46.833074753969356, -15.8427461946535], [-46.868846239708944, -15.592763274961158], [-46.931391408110471, -15.543500577769436], [-46.935895802813548, -15.431901452418515], [-46.855344041928248, -15.324806721770685], [-46.891115527667807, -15.239970292753185], [-46.931391408110471, -15.226698807871912], [-46.891115527667807, -15.04803913308784], [-46.833074753969356, -15.012267647348267], [-46.734966840070598, -15.016772042051343], [-46.636650185929483, -15.070319407375266], [-46.547320348537454, -15.039052316338768], [-46.57859842590247, -14.914181706106575], [-46.556318151615045, -14.869401430960849], [-46.583091834277013, -14.793573791349502], [-46.51604227117241, -14.713241757035078], [-46.38666726623714, -14.771293517062077], [-46.315344021328883, -14.847121156673424], [-46.297348415173644, -14.909677311403499], [-46.190242698197267, -14.93644000773692], [-46.078643572846346, -14.922948796284771], [-46.025096207522409, -14.869401430960849], [-45.976042250573073, -14.985504951014832], [-46.074150164471803, -15.248979082159337], [-45.967044447495425, -15.186422927429248], [-45.926768567052761, -15.128371167402264], [-45.766115484752476, -15.146147046986613], [-45.712568119428539, -15.123866772699188], [-45.654516359401555, -15.043556711041788], [-45.551915037128254, -14.93644000773692], [-45.462596186064758, -14.940944402439996], [-45.319718983348793, -14.856129946079577], [-45.225895737582221, -14.74002642602558], [-45.101025127350027, -14.717746151738154], [-44.882320285022729, -14.597138236981039], [-44.837540009876989, -14.516828175323752], [-44.560794393851239, -14.347177289945833], [-44.35986543110829, -14.271349650334457], [-44.319820263565049, -14.244345254773094], [-44.212494820017781, -14.240082559297988], [-44.158947454693873, -14.271349650334486], [-43.837641290093273, -14.315888226252241], [-43.781391287947486, -14.342892621813633], [-43.800068046472461, -14.369897017375024], [-43.860822443321297, -14.534362355680116], [-43.879499201846272, -14.624604058341333], [-43.864414972755213, -14.659694391711156], [-43.824150078641111, -14.695246150879854], [-43.708046558587114, -14.735522031322503], [-43.493846110962892, -14.789069396646426], [-43.449296548716575, -14.780082579897353], [-43.386740393986543, -14.699750545582901], [-43.230371979818415, -14.637414117423731], [-42.953615377464104, -14.677470271295505], [-42.891070209062576, -14.749013242774652], [-42.632320199192037, -14.940944402439996], [-42.578542120968706, -14.931957585690924], [-42.431391236449088, -15.034547921635692], [-42.261740351071154, -15.106090893114839], [-42.176914908382201, -15.106090893114839], [-42.087596057318706, -15.181918532726186], [-41.940214459899664, -15.172931715977143], [-41.801841651886804, -15.110595287817915], [-41.359949545186197, -15.494457607148604], [-41.333164876195724, -15.717655857850389], [-41.159020582443247, -15.780190039923411], [-41.029645577507978, -15.73543173743478], [-40.944820134819025, -15.673095309275581], [-40.891042056595666, -15.69537558356302], [-40.828716614765028, -15.681862399453777], [-40.761667051660396, -15.739914159480776], [-40.667843805893824, -15.717655857850431], [-40.574240286698142, -15.757931738293095], [-40.533964406255507, -15.797965919507703], [-40.475923632557027, -15.77570761787743], [-40.328542035138014, -15.824750588498276], [-40.234949502270865, -15.820246193795199], [-40.167899939166233, -15.896293559977423], [-40.132117467098112, -15.891789165274304], [-40.002742462162871, -15.994401473876223], [-39.935692899058239, -15.998905868579271], [-39.864369654149982, -16.110504993930192], [-39.940197293761315, -16.311422970344609], [-40.056289827486779, -16.396237426705014], [-40.132117467098112, -16.503354130009953], [-40.136621861801217, -16.543630010452603], [-40.252714395526652, -16.565888312082905], [-40.274994669814077, -16.614953255360874], [-40.283992472891697, -16.744547986867019], [-40.243716592449033, -16.833647111359625], [-40.297494670672393, -16.878427386505351], [-40.471419237853979, -16.869418597099184], [-40.524966603177887, -16.931974751829273], [-40.574240286698142, -17.132892728243689], [-40.565242483620523, -17.262267733178959], [-40.605518364063187, -17.311332676456885], [-40.60979204586684, -17.391862464685104], [-40.498192920515919, -17.418647133675606], [-40.48041704093157, -17.557030928017028], [-40.413367477826966, -17.557030928017028], [-40.382320113361345, -17.623849778222223], [-40.283992472891697, -17.717673023988795], [-40.208164833280364, -17.766715994609626], [-40.1858955453215, -17.816000664458443], [-40.230445107567789, -17.918591000403126], [-40.208164833280364, -17.976642760430195], [-40.216942909787093, -17.972138365727119], [-40.426869675607662, -17.89182830406979], [-40.475923632557027, -17.927599789809364], [-40.533964406255507, -17.900595394247972], [-40.667843805893824, -17.95436248614277], [-40.725895565920837, -17.945375669393698], [-40.788440734322364, -17.972138365727119], [-40.909048649079438, -17.972138365727119], [-40.775169249441092, -18.092746280484192], [-40.766171446363501, -18.137306829059042], [-40.837494691271758, -18.150798040511191], [-40.913542057453981, -18.101513370662389], [-41.016143379727282, -18.173078314798616], [-41.060692941973599, -18.177582709501706], [-41.141244702858899, -18.297948925030809], [-41.127742505078203, -18.333720410770383], [-41.025141182804902, -18.40526338224953], [-41.002641181946586, -18.454328325527456], [-41.029645577507978, -18.637250695786648], [-40.926824528663786, -18.695302455813646], [-40.93131793703833, -18.806901581164553], [-41.091971019338644, -18.829401582022868], [-41.194792068182807, -18.806901581164553], [-41.23484822205458, -18.851681856310293], [-41.163524977146324, -18.905229221634215], [-41.105473217119311, -18.887233615478976], [-41.025141182804902, -18.981056861245563], [-41.05191486546687, -19.034604226569471], [-40.944820134819025, -19.146203351920391], [-40.926824528663786, -19.293573963010886], [-40.958091619700298, -19.472233637794957], [-41.047421457092327, -19.489987544722226], [-41.029645577507978, -19.548039304749224], [-41.159020582443247, -19.659638430100145], [-41.185794265105216, -19.865082773874718], [-41.306391193533727, -19.954401624938214], [-41.36444295356074, -20.186366965818237], [-41.404499107432514, -20.213151634808739], [-41.717016209197851, -20.208647240105662], [-41.855400003539273, -20.369531035305386], [-41.797348243512261, -20.427582795332398], [-41.797348243512261, -20.534677525980229], [-41.850895608836169, -20.623996377043724], [-41.810839454964423, -20.646276651331149], [-41.882173686201213, -20.75787577668207], [-41.864397806616864, -20.775651656266419], [-41.92694297501842, -20.829199021590341], [-41.962494734187089, -20.909750782475641], [-41.998266219926677, -20.932031056763066], [-42.096593860396325, -20.923022267356913], [-42.141143422642642, -20.963298147799563], [-42.096593860396325, -21.003354301671337], [-42.181419303085278, -21.163996397643089], [-42.221464470628518, -21.338151677724113], [-42.297292110239852, -21.405190254500155], [-42.301796504942928, -21.485522288814579], [-42.364341673344484, -21.592617019462423], [-42.36884606804756, -21.632892899905073], [-42.284020625358579, -21.641901689311226], [-42.279516230655531, -21.713224934219511], [-43.063423731262333, -22.063556978833603], [-43.13227505224819, -22.02574203598482], [-43.341971105169364, -22.003483734354461], [-43.462568033597847, -22.057031099678412], [-43.565169355871149, -22.065798189856594], [-43.815372002134382, -22.065798189856594], [-43.895693050120258, -22.106074070299258], [-44.092117618160131, -22.173112647075314], [-44.216999214720857, -22.248940286686661], [-44.293046580903109, -22.239953469937589], [-44.444690873797242, -22.253444681389752], [-44.534020711189271, -22.302487652010583], [-44.601070274293903, -22.316000836119827], [-44.663395716124569, -22.369548201443706], [-44.730445279229173, -22.360539412037582], [-44.833046601502474, -22.405099960612404], [-44.92236545256597, -22.449880235758172], [-45.056244852204316, -22.467656115342507], [-45.243891343737459, -22.561479361109079], [-45.270665026399399, -22.606017937026849], [-45.40904882074085, -22.646293817469484], [-45.470923823101202, -22.611642937241413], [-45.52964574916939, -22.65079821217256], [-45.58319311449327, -22.615026726433001], [-45.629775147520235, -22.622673211099695], [-45.672292238985904, -22.619531121136077], [-45.801897956820596, -22.699841182793421], [-45.743846196793584, -22.726625851783922], [-45.743846196793584, -22.797949096692193], [-45.792900153742977, -22.851716188586991], [-45.859949716847581, -22.860505251422268], [-45.908992687468412, -22.820449097550494], [-46.020591812819333, -22.873996462874416], [-46.14569313595095, -22.891772342458765], [-46.154471212457679, -22.847233766540995], [-46.288570338666915, -22.882763553052598], [-46.359893583575172, -22.842729371837919], [-46.368891386652791, -22.748906126071347], [-46.471492708926121, -22.682065303209072], [-46.395665069314759, -22.615026726433001], [-46.453716829341744, -22.516699085963353], [-46.543046666733801, -22.472138537388503], [-46.547320348537454, -22.440871446352006], [-46.641143594304026, -22.409604355315508], [-46.69919535433101, -22.320263531594932], [-46.663423868591451, -22.204401710768877], [-46.600867713861362, -22.132858739289759], [-46.658919473888375, -22.052526704975335], [-46.618874306345134, -21.98546615554217], [-46.658919473888375, -21.905156093884841], [-46.667917276965966, -21.811552574689145], [-46.627872109422754, -21.771276694246495], [-46.605372108564438, -21.681957843183], [-46.56082254631815, -21.672949053776847], [-46.493772983213518, -21.525798169257229], [-46.507275180994213, -21.458737619824078], [-46.605372108564438, -21.42747052878758], [-46.654645792084722, -21.373923163463658], [-46.685693156550315, -21.396203437751083], [-46.815298874385007, -21.3606516785824], [-46.895619922370884, -21.405190254500155], [-47.002714653018757, -21.400707832454088], [-46.993947562840532, -21.342656072427161], [-47.056273004671198, -21.195263488679586], [-47.123322567775801, -21.132949033177482], [-47.145591855734693, -20.981074027383912], [-47.221419495346026, -20.914013477950732], [-47.212641418839326, -20.806918747302916], [-47.109820369995106, -20.632763467221906], [-47.154589658812313, -20.525668736574076], [-47.252697572711099, -20.476625765953202], [-47.292973453153763, -20.423078400629322], [-47.266199770491767, -20.284694606287886], [-47.234921693126722, -20.204362571973462], [-47.244369935674655, -20.173996359877592], [-47.328964665464184, -20.117526631160942], [-47.427742745404146, -20.036293717905892], [-47.459921701709789, -20.000983657965179], [-47.517742748837378, -19.994216079582017], [-47.594240554489943, -20.018517838321486], [-47.655895830279405, -20.022802506453729], [-47.695490558352276, -19.9910739896184], [-47.749719076045949, -19.977121352367419], [-47.818570397031777, -19.980724868129869], [-47.860197595885353, -20.011991959166366], [-47.861768640867155, -20.055651628800589], [-47.9087901270359, -20.081755145421369], [-47.991143645802424, -20.082875750932857], [-48.051216890281552, -20.120229267982779], [-48.109499363207959, -20.116625752220315], [-48.178339697865255, -20.082875750932857], [-48.25326645853599, -20.093005145850512], [-48.363744978375422, -20.138224874138018], [-48.71564806797133, -20.143849874352583], [-48.81194323766033, -20.158923117115094], [-48.858294557787872, -20.232729272274312], [-48.886869998331065, -20.369970488447152], [-48.918367802266971, -20.429142853985638], [-48.952568243024757, -20.41002664231894], [-48.977990607275785, -20.338241971611808], [-48.994645881348617, -20.213591087950419], [-49.039645883065248, -20.18726784475885], [-49.112770885854729, -20.259272242036786], [-49.166318251178666, -20.295043727776431], [-49.199848525895277, -20.294362575406637], [-49.238992814497863, -20.245539331356738], [-49.283542376744151, -20.148573995626549], [-49.288046771447227, -20.073647234955814], [-49.258790178534298, -20.016957779668289], [-49.2783678159999, -19.98703102071417], [-49.377145895939833, -19.978483657106864], [-50.364443296883508, -19.858556894719527], [-50.43374505733965, -19.800263435464558], [-50.488643741074497, -19.790815192916568], [-50.584049018151433, -19.821203377669605], [-50.99377315487493, -20.101552509457804] ] ] ] } }, { "type": "Feature", "properties": { "population": 3885, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-40.967539862248202, -21.27559552299401], [-41.069690745051219, -21.213281067491906], [-41.266115313091092, -21.231056947076254], [-41.391216636222708, -21.186496398501404], [-41.440270593172073, -21.199767883382663], [-41.712522800823308, -21.110449032319167], [-41.730518406978518, -21.043630182113986], [-41.712522800823308, -20.976569632680821], [-41.743789891859791, -20.820431931412145], [-41.864397806616864, -20.775651656266419], [-41.882173686201213, -20.75787577668207], [-41.810839454964423, -20.646276651331149], [-41.850895608836169, -20.623996377043724], [-41.797348243512261, -20.534677525980229], [-41.797348243512261, -20.427582795332398], [-41.855400003539273, -20.369531035305386], [-41.717016209197851, -20.208647240105662], [-41.404499107432514, -20.213151634808739], [-41.36444295356074, -20.186366965818237], [-41.306391193533727, -19.954401624938214], [-41.185794265105216, -19.865082773874718], [-41.159020582443247, -19.659638430100145], [-41.029645577507978, -19.548039304749224], [-41.047421457092327, -19.489987544722226], [-40.958091619700298, -19.472233637794957], [-40.926824528663786, -19.293573963010886], [-40.944820134819025, -19.146203351920391], [-41.05191486546687, -19.034604226569471], [-41.025141182804902, -18.981056861245563], [-41.105473217119311, -18.887233615478976], [-41.163524977146324, -18.905229221634215], [-41.23484822205458, -18.851681856310293], [-41.194792068182807, -18.806901581164553], [-41.091971019338644, -18.829401582022868], [-40.93131793703833, -18.806901581164553], [-40.926824528663786, -18.695302455813646], [-41.029645577507978, -18.637250695786648], [-41.002641181946586, -18.454328325527456], [-41.025141182804902, -18.40526338224953], [-41.127742505078203, -18.333720410770383], [-41.141244702858899, -18.297948925030809], [-41.060692941973599, -18.177582709501706], [-41.016143379727282, -18.173078314798616], [-40.913542057453981, -18.101513370662389], [-40.837494691271758, -18.150798040511191], [-40.766171446363501, -18.137306829059042], [-40.775169249441092, -18.092746280484192], [-40.909048649079438, -17.972138365727119], [-40.788440734322364, -17.972138365727119], [-40.725895565920837, -17.945375669393698], [-40.667843805893824, -17.95436248614277], [-40.533964406255507, -17.900595394247972], [-40.475923632557027, -17.927599789809364], [-40.426869675607662, -17.89182830406979], [-40.216942909787093, -17.972138365727119], [-40.208164833280364, -17.976642760430195], [-40.1858955453215, -18.007931824123773], [-39.672449480813185, -18.324733594021311], [-39.667714373210686, -18.325854199532813], [-39.739718770488679, -18.639953332608485], [-39.741970967840217, -18.846056856095714], [-39.699893329516328, -19.277819567878652], [-39.731391133452263, -19.453996332411762], [-39.783367453794369, -19.571681883776108], [-39.844792016684409, -19.649069582040724], [-40.001391143751931, -19.741991948866669], [-40.141796422545468, -19.968354262189209], [-40.202770545965194, -20.205944603283811], [-40.298845989083304, -20.29258279018255], [-40.318643353119768, -20.425781037451159], [-40.396042037712931, -20.56954813277919], [-40.596520560985567, -20.783737594074864], [-40.727016171432325, -20.846074022234063], [-40.789341613262991, -20.906147266713177], [-40.828716614765028, -21.031237603516246], [-40.954499090266381, -21.237802552802322], [-40.967539862248202, -21.27559552299401] ] ] ] } }, { "type": "Feature", "properties": { "population": 15126, "fill": "#666" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-46.025096207522409, -14.869401430960849], [-45.931272961755838, -14.749013242774652], [-45.913497082171517, -14.690983455404748], [-45.962540052792349, -14.534604054908087], [-45.962540052792349, -14.467763232045797], [-45.922494885249108, -14.351681684648909], [-46.011594009741771, -14.298112346667835], [-46.038367692403682, -14.253354044179261], [-46.127697529795739, -14.18203079927099], [-46.172466818612918, -14.074914095966065], [-46.221520775562311, -13.998866729783842], [-46.261796656004947, -13.869491724848501], [-46.270574732511704, -13.655082536981979], [-46.185749289822724, -13.405099617289665], [-46.096419452430723, -13.351552251965757], [-46.083147967549422, -13.253444338066984], [-46.176971213315994, -13.217672852327382], [-46.181244895119647, -13.159621092300398], [-46.150197530654054, -13.025741692662052], [-46.074150164471803, -12.976698722041192], [-46.087641375923965, -12.914142567311146], [-46.234792260443555, -12.798039047257149], [-46.234792260443555, -12.713224590896743], [-46.158964620832222, -12.601625465545808], [-46.158964620832222, -12.50329782507616], [-46.315344021328883, -12.42296579076168], [-46.346622098693899, -12.342655729104393], [-46.337624295616308, -12.128444295151638], [-46.324122097835613, -12.092672809412065], [-46.248294458224251, -12.048112260837215], [-46.212522972484692, -11.998849563645479], [-46.078643572846346, -11.927526318737222], [-46.100923847133771, -11.864970164007147], [-46.158964620832222, -11.83370307297065], [-46.248294458224251, -11.842689889719722], [-46.275068140886219, -11.766862250108375], [-46.243790063521175, -11.726608342322805], [-46.105417255508314, -11.664052187592731], [-46.083147967549422, -11.601496032862656], [-46.190242698197267, -11.543444272835643], [-46.426943146679804, -11.498905696917888], [-46.489268588510441, -11.414069267900388], [-46.551824743240559, -11.378297782160814], [-46.569820349395741, -11.315983326658738], [-46.529544468953105, -11.235431565773396], [-46.462494905848473, -11.177599532317288], [-46.368891386652791, -10.967672766496719], [-46.248294458224251, -10.914125401172797], [-46.234792260443555, -10.882858310136299], [-46.301841823548187, -10.757746000676136], [-46.087641375923965, -10.583832419823125], [-46.038367692403682, -10.570319235713882], [-45.859949716847581, -10.467728899769114], [-45.757117681674856, -10.329345105427691], [-45.605473388780695, -10.333849500130768], [-45.516143551388666, -10.414181534445163], [-45.471593989142377, -10.485504779353462], [-45.440315911777333, -10.619362206334714], [-45.315214588645745, -10.780246001534408], [-45.042973367323043, -10.896349521588448], [-44.931374241972122, -10.860578035848874], [-44.851042207657684, -10.878353915433223], [-44.783992644553109, -10.85607364114577], [-44.752714567188036, -10.784750396237527], [-44.645619836540192, -10.735465726388711], [-44.618846153878252, -10.686422755767879], [-44.538525105892347, -10.628370995740852], [-44.417917191135274, -10.588095115298231], [-44.310822460487458, -10.601608299407459], [-44.216999214720857, -10.62837099574088], [-44.118891300822099, -10.588095115298231], [-43.993789977690483, -10.454215715659814], [-43.913468929704607, -10.43195741402954], [-43.801869804353714, -10.204254768624651], [-43.76159392391105, -10.168483282885063], [-43.752815847404293, -10.106146854725807], [-43.703542163884038, -10.034603883246703], [-43.712539966961657, -9.949767454229203], [-43.681272875925174, -9.802396843138695], [-43.726042164742353, -9.748849477814815], [-43.784093924769337, -9.565927107555609], [-43.828643487015654, -9.498866558122458], [-43.810867607431305, -9.427543313214187], [-43.694775073705841, -9.445319192798536], [-43.658992601637721, -9.364987158484112], [-43.605445236313813, -9.338224462150691], [-43.538395673209209, -9.360504736438116], [-43.449296548716575, -9.302452976411118], [-43.414865395059394, -9.33552182532884], [-43.377742590908895, -9.414052101762039], [-43.185822417572126, -9.418556496465044], [-43.127770657545085, -9.373995947890265], [-43.042945214856132, -9.39627622217769], [-43.029443017075437, -9.436332376049464], [-42.936971089719805, -9.474345072812028], [-42.931346089505212, -9.516862164277654], [-42.851025041519335, -9.547931501400399], [-42.752697401049687, -9.521146832409883], [-42.618818001411341, -9.565927107555609], [-42.574268439165053, -9.485595073241143], [-42.489442996476072, -9.498866558122458], [-42.431391236449088, -9.409547707058962], [-42.310794308020547, -9.306957371114194], [-42.150141225720233, -9.293444187004965], [-42.043046495072417, -9.208849457215422], [-41.917945171940801, -9.213112152690485], [-41.850895608836169, -9.253388033133191], [-41.797348243512261, -9.173077971475848], [-41.734792088782172, -9.132802091033199], [-41.734792088782172, -8.981146811810504], [-41.609921478550007, -8.963151205655279], [-41.55637411322607, -8.972138022404351], [-41.498322353199114, -8.936366536664764], [-41.467044275834041, -8.865043291756422], [-41.399994712729438, -8.784733230099178], [-41.368716635364422, -8.713168285962922], [-41.324167073118076, -8.735448560250362], [-41.159020582443247, -8.708663891259846], [-41.105473217119311, -8.717672680666027], [-41.100968822416235, -8.775724440693025], [-41.003992500357526, -8.781349440907604], [-40.980371893987723, -8.815780594564785], [-40.891042056595666, -8.856056475007449], [-40.891042056595666, -9.03469417713444], [-40.855490297426996, -9.092745937161425], [-40.850996889052453, -9.150797697188352], [-40.703615291633412, -9.217616547393618], [-40.690343806752139, -9.342728856853768], [-40.743891172076076, -9.423038918511111], [-40.685839412049063, -9.47210386178898], [-40.564792044150238, -9.460172708990143], [-40.412697311785791, -9.396957374547355], [-40.319774944959818, -9.293004733863199], [-40.273192911932853, -9.144952970402969], [-40.212218788513155, -9.101513027339593], [-40.077669222833606, -9.08824154245832], [-40.004994659514409, -9.058095056933354], [-39.948744657368621, -9.022103844622904], [-39.909149929295722, -8.980245932869821], [-39.887770533948924, -8.923995930724061], [-39.884617457656759, -8.853353838185598], [-39.834893334666162, -8.809013016181552], [-39.738367452077739, -8.791237136597275], [-39.687742450146573, -8.749401197501371], [-39.682798602301716, -8.683021800437942], [-39.600895523005477, -8.619564766767255], [-39.441824472015526, -8.559271795717166], [-39.332697270587033, -8.565797674872442], [-39.25664990440481, -8.640263009744331], [-39.098249019456034, -8.714970043844119], [-38.834994614882476, -8.800245926003356], [-38.705399883376288, -8.879896807948114], [-38.667815653426942, -8.896090656222128], [-38.619223122276424, -8.896090656222128], [-38.57759592342282, -8.860538897053431], [-38.544296361605689, -8.831073563898173], [-38.504690647204228, -8.834896806231512], [-38.483992404227138, -8.877655596925138], [-38.482190646345913, -8.959547689892815], [-38.43291696282563, -9.003646812668819], [-38.335940640766921, -9.01017269182401], [-38.294324428241907, -9.043021814170856], [-38.307595913123151, -9.102194179709358], [-38.283074427812721, -9.203663910142609], [-38.221199425452397, -9.34767270469861], [-37.975720900463131, -9.512138043003716], [-38.042990190138653, -9.605983261427355], [-37.993716506618341, -9.646237169212938], [-38.029498978686462, -9.726569203527362], [-37.962669142152777, -9.873939814617813], [-37.900123973751192, -9.913995968489587], [-37.900123973751192, -9.949767454229232], [-37.779516058994119, -10.079362185735349], [-37.784020453697195, -10.306845104569391], [-37.83756781902116, -10.422948624623359], [-37.824065621240436, -10.548038961426414], [-37.784020453697195, -10.62837099574088], [-37.81529853106224, -10.677413966361712], [-37.971447218659478, -10.75348330520103], [-38.011723099102113, -10.75348330520103], [-38.109820026672338, -10.708703030055304], [-38.190141074658214, -10.717689846804376], [-38.243919152881574, -10.824806550109301], [-38.234921349803955, -10.896349521588448], [-38.17686958977697, -10.980944251377977], [-38.109820026672338, -11.030228921226794], [-38.060766069722973, -11.168590742911121], [-37.980445021737097, -11.239913987819392], [-38.007218704399037, -11.356017507873389], [-37.966942823956401, -11.400797783019115], [-37.851070016801827, -11.440853936890889], [-37.797291938578496, -11.525668393251294], [-37.658919130565607, -11.556957456944886], [-37.632145447903639, -11.521163998548232], [-37.574093687876626, -11.539181577360537], [-37.411869560594539, -11.497323665607496], [-37.469240168251758, -11.653703066104185], [-37.68861517662026, -12.100099567507868], [-37.957274854837578, -12.475392550574156], [-38.019149857197931, -12.591276344057235], [-38.239645471077893, -12.844181627142348], [-38.401869598359951, -12.966129873981799], [-38.44732003954698, -12.967030752922426], [-38.498845920418717, -12.95668163143381], [-38.524949437039481, -12.76226756151749], [-38.654093729075328, -12.644603982810281], [-38.690996806654937, -12.623905739833219], [-38.743874005937755, -12.748556623494494], [-38.787973128713702, -12.782746077923775], [-38.851869615526141, -12.790172836019565], [-38.783699446910077, -12.844401353713238], [-38.763671369974134, -12.90717723501416], [-38.833192857001166, -13.032948724186951], [-38.835214341453252, -13.147250486359724], [-38.959195059073409, -13.273021975532515], [-39.030968743451979, -13.365043463417862], [-39.067421381561303, -13.480465831102151], [-39.089240230049882, -13.588241714119647], [-39.03502269868477, -13.558776380964389], [-39.009149894963457, -13.581496108393651], [-38.988671378557228, -13.615026383110262], [-39.001272697397269, -13.664530779529912], [-39.041098138369591, -13.758112326068499], [-39.03502269868477, -13.99100051854623], [-39.048074456995153, -14.04386673150043], [-39.008468742593607, -14.101237339157706], [-38.966391104269746, -14.003371124486875], [-38.94232005842963, -14.030595246619157], [-39.059544183995115, -14.654750543866328], [-39.013423576767082, -14.935539128796336], [-38.996098136653018, -15.253922930004194], [-38.943220937370313, -15.564418547317416], [-38.8851691773433, -15.842065042283764], [-38.880664782640167, -15.864345316571132], [-38.960766104055153, -16.186552360112387], [-39.063147699757621, -16.504474735521399], [-39.125022702117974, -16.763664198533661], [-39.16394726414967, -17.043573877180108], [-39.202871826181479, -17.178112456531096], [-39.215242432122068, -17.315815098502867], [-39.170692869875779, -17.642065110948352], [-39.154048582131452, -17.703940113308647], [-39.278468752893389, -17.849530939174997], [-39.412567879102596, -17.919953305142656], [-39.486824473732156, -17.990155944539367], [-39.65083937256685, -18.252267770944457], [-39.667714373210686, -18.325854199532813], [-39.672449480813185, -18.324733594021311], [-40.1858955453215, -18.007931824123773], [-40.208164833280364, -17.976642760430195], [-40.230445107567789, -17.918591000403126], [-40.1858955453215, -17.816000664458443], [-40.208164833280364, -17.766715994609626], [-40.283992472891697, -17.717673023988795], [-40.382320113361345, -17.623849778222223], [-40.413367477826966, -17.557030928017028], [-40.48041704093157, -17.557030928017028], [-40.498192920515919, -17.418647133675606], [-40.60979204586684, -17.391862464685104], [-40.605518364063187, -17.311332676456885], [-40.565242483620523, -17.262267733178959], [-40.574240286698142, -17.132892728243689], [-40.524966603177887, -16.931974751829273], [-40.471419237853979, -16.869418597099184], [-40.297494670672393, -16.878427386505351], [-40.243716592449033, -16.833647111359625], [-40.283992472891697, -16.744547986867019], [-40.274994669814077, -16.614953255360874], [-40.252714395526652, -16.565888312082905], [-40.136621861801217, -16.543630010452603], [-40.132117467098112, -16.503354130009953], [-40.056289827486779, -16.396237426705014], [-39.940197293761315, -16.311422970344609], [-39.864369654149982, -16.110504993930192], [-39.935692899058239, -15.998905868579271], [-40.002742462162871, -15.994401473876223], [-40.132117467098112, -15.891789165274304], [-40.167899939166233, -15.896293559977423], [-40.234949502270865, -15.820246193795199], [-40.328542035138014, -15.824750588498276], [-40.475923632557027, -15.77570761787743], [-40.533964406255507, -15.797965919507703], [-40.574240286698142, -15.757931738293095], [-40.667843805893824, -15.717655857850431], [-40.761667051660396, -15.739914159480776], [-40.828716614765028, -15.681862399453777], [-40.891042056595666, -15.69537558356302], [-40.944820134819025, -15.673095309275581], [-41.029645577507978, -15.73543173743478], [-41.159020582443247, -15.780190039923411], [-41.333164876195724, -15.717655857850389], [-41.359949545186197, -15.494457607148604], [-41.801841651886804, -15.110595287817915], [-41.940214459899664, -15.172931715977143], [-42.087596057318706, -15.181918532726186], [-42.176914908382201, -15.106090893114839], [-42.261740351071154, -15.106090893114839], [-42.431391236449088, -15.034547921635692], [-42.578542120968706, -14.931957585690924], [-42.632320199192037, -14.940944402439996], [-42.891070209062576, -14.749013242774652], [-42.953615377464104, -14.677470271295505], [-43.230371979818415, -14.637414117423731], [-43.386740393986543, -14.699750545582901], [-43.449296548716575, -14.780082579897353], [-43.493846110962892, -14.789069396646426], [-43.708046558587114, -14.735522031322503], [-43.824150078641111, -14.695246150879854], [-43.864414972755213, -14.659694391711156], [-43.879499201846272, -14.624604058341333], [-43.860822443321297, -14.534362355680116], [-43.800068046472461, -14.369897017375024], [-43.781391287947486, -14.342892621813633], [-43.837641290093273, -14.315888226252241], [-44.158947454693873, -14.271349650334486], [-44.212494820017781, -14.240082559297988], [-44.319820263565049, -14.244345254773094], [-44.35986543110829, -14.271349650334457], [-44.560794393851239, -14.347177289945833], [-44.837540009876989, -14.516828175323752], [-44.882320285022729, -14.597138236981039], [-45.101025127350027, -14.717746151738154], [-45.225895737582221, -14.74002642602558], [-45.319718983348793, -14.856129946079577], [-45.462596186064758, -14.940944402439996], [-45.551915037128254, -14.93644000773692], [-45.654516359401555, -15.043556711041788], [-45.712568119428539, -15.123866772699188], [-45.766115484752476, -15.146147046986613], [-45.926768567052761, -15.128371167402264], [-45.967044447495425, -15.186422927429248], [-46.074150164471803, -15.248979082159337], [-45.976042250573073, -14.985504951014832], [-46.025096207522409, -14.869401430960849] ] ], [ [ [-38.907218738731331, -13.401056648385349], [-38.903615222968824, -13.473500498805151], [-38.93781566372661, -13.532233411201901], [-38.977641104698932, -13.523444348366638], [-38.993164786931686, -13.484069346864658], [-39.022190666945278, -13.44559522430319], [-39.00666698471241, -13.415448738778196], [-38.980124014949865, -13.398354011563526], [-38.907218738731331, -13.401056648385349] ] ], [ [ [-38.601216529792623, -12.992672843744288], [-38.743874005937755, -13.097064937570281], [-38.783018294540284, -13.118664059487969], [-38.787072249773132, -13.05498729924642], [-38.684921366970116, -12.974896964159996], [-38.668046366326337, -12.880172839452769], [-38.614499001002457, -12.924052235657825], [-38.600315650852053, -12.972414053909006], [-38.601216529792623, -12.992672843744288] ] ] ] } }, { "type": "Feature", "properties": { "population": 8843, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-40.538468800958583, -7.391754661336265], [-40.533964406255507, -7.324694111903099], [-40.583018363204872, -7.195319106967844], [-40.511695118296615, -7.0033879473025], [-40.440141160488906, -6.905082279489932], [-40.417871872530043, -6.81147876029425], [-40.48041704093157, -6.735431394112013], [-40.614296440569916, -6.708646725121511], [-40.708119686336488, -6.659603754500665], [-40.721391171217761, -6.570262930780089], [-40.770664854738015, -6.494457263825836], [-40.797449523728517, -6.378353743771839], [-40.806216613906713, -6.253483133539646], [-40.891042056595666, -6.012267304025499], [-40.891042056595666, -5.905172573377655], [-40.92232013396071, -5.681974322675813], [-40.917815739257634, -5.60164228836139], [-40.949093816622678, -5.418500191531322], [-41.025141182804902, -5.364952826207414], [-41.069690745051219, -5.306901066180416], [-41.060692941973599, -5.168517271838979], [-41.11447102019693, -5.065926935894225], [-41.12324909670366, -5.007875175867227], [-41.185794265105216, -4.914051930100655], [-41.181289870402111, -4.811439621498806], [-41.226070145547851, -4.726625165138387], [-41.2438460251322, -4.615026039787466], [-41.23484822205458, -4.539198400176133], [-41.141244702858899, -4.427379548254322], [-41.074195139754295, -4.324767239652473], [-41.118744702000583, -4.177396628561979], [-41.181289870402111, -4.123849263238057], [-41.230343827351504, -4.043517228923633], [-41.283891192675441, -3.811332161472734], [-41.355445150483121, -3.708719852870885], [-41.382218833145089, -3.592616332816888], [-41.449268396249693, -3.436478631548212], [-41.426768395391377, -3.320375111494201], [-41.377714438442013, -3.271332140873369], [-41.257117510013472, -3.079181254637149], [-41.268598223342053, -2.916056248414421], [-41.194572341611945, -2.886129489460302], [-40.875518374362855, -2.869693941958332], [-40.474572314146116, -2.795668060228223], [-40.23539994174115, -2.813224213241682], [-39.964718779071745, -2.861608004149886], [-39.771897726794322, -2.985797462012329], [-39.609442886612783, -3.056219827979987], [-39.511115246143135, -3.125521588436129], [-39.352714361194387, -3.197306259143247], [-39.014324455707708, -3.390116325092123], [-38.895968738302173, -3.501715450443044], [-38.686272685381027, -3.653832155464585], [-38.475895480090145, -3.717486943049067], [-38.361824430816796, -3.87634925379669], [-38.271824427383564, -3.948111951846712], [-38.048845903252612, -4.216332176922251], [-37.795720893596666, -4.404198395026285], [-37.626289734789623, -4.592064613130319], [-37.301391040755107, -4.713111981029158], [-37.230748948216586, -4.824271653238313], [-37.54281561051161, -4.93204753625588], [-37.596593688734941, -4.958832205246381], [-37.721464298967135, -5.061422541191149], [-37.913395458632465, -5.463280466677062], [-38.047494584841701, -5.614913773242662], [-38.078541949307322, -5.686478717378904], [-38.078541949307322, -5.762306356990237], [-38.127815632827577, -5.878387904387154], [-38.301740200009135, -6.074823458755574], [-38.368789763113767, -6.092599338339923], [-38.413570038259479, -6.061332247303426], [-38.493891086245384, -6.128370824079497], [-38.511666965829704, -6.181918189403419], [-38.578716528934336, -6.262250223717842], [-38.605490211596305, -6.396129623356174], [-38.5251691636104, -6.382858138474916], [-38.578716528934336, -6.480944079716593], [-38.650039773842593, -6.690870845537162], [-38.61877268280611, -6.757931394970328], [-38.650039773842593, -6.838241456627657], [-38.725867413453955, -6.891788821951579], [-38.730371808157031, -7.0033879473025], [-38.685822245910714, -7.030172616293001], [-38.676824442833095, -7.15954762122827], [-38.600996803221761, -7.222103775958345], [-38.547449437897825, -7.235594987410494], [-38.533947240117129, -7.293646747437492], [-38.582990210737989, -7.427526147075838], [-38.632274880586806, -7.458793238112335], [-38.636768288961321, -7.534620877723682], [-38.699093730791986, -7.619457306741182], [-38.819690659220527, -7.663995882658938], [-38.864240221466815, -7.704271763101588], [-38.96707225663954, -7.847137979489005], [-38.998339347676051, -7.820375283155585], [-39.074166987287384, -7.856146768895158], [-39.109949459355505, -7.753314733722434], [-39.243817872665318, -7.681991488814162], [-39.306374027395378, -7.623939728787164], [-39.350923589641695, -7.548112089175831], [-39.534065686471763, -7.47656911769667], [-39.654442888329413, -7.373978781751916], [-39.846593774565633, -7.347194112761414], [-39.953699491542011, -7.360465597642673], [-40.065298616892932, -7.405245872788413], [-40.172393347540776, -7.418517357669671], [-40.261723184932805, -7.391754661336265], [-40.538468800958583, -7.391754661336265] ] ] ] } }, { "type": "Feature", "properties": { "population": 2220, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-37.411869560594539, -11.497323665607496], [-37.574093687876626, -11.539181577360537], [-37.632145447903639, -11.521163998548232], [-37.658919130565607, -11.556957456944886], [-37.797291938578496, -11.525668393251294], [-37.851070016801827, -11.440853936890889], [-37.966942823956401, -11.400797783019115], [-38.007218704399037, -11.356017507873389], [-37.980445021737097, -11.239913987819392], [-38.060766069722973, -11.168590742911121], [-38.109820026672338, -11.030228921226794], [-38.17686958977697, -10.980944251377977], [-38.234921349803955, -10.896349521588448], [-38.243919152881574, -10.824806550109301], [-38.190141074658214, -10.717689846804376], [-38.109820026672338, -10.708703030055304], [-38.011723099102113, -10.75348330520103], [-37.971447218659478, -10.75348330520103], [-37.81529853106224, -10.677413966361712], [-37.784020453697195, -10.62837099574088], [-37.824065621240436, -10.548038961426414], [-37.83756781902116, -10.422948624623359], [-37.784020453697195, -10.306845104569391], [-37.779516058994119, -10.079362185735349], [-37.900123973751192, -9.949767454229232], [-37.900123973751192, -9.913995968489587], [-37.962669142152777, -9.873939814617813], [-38.029498978686462, -9.726569203527362], [-37.993716506618341, -9.646237169212938], [-38.042990190138653, -9.605983261427355], [-37.975720900463131, -9.512138043003716], [-37.938147656842318, -9.537802106482729], [-37.425591484946096, -9.778314810970059], [-37.196098067988487, -9.88587096741675], [-37.019240151085654, -9.956974485754131], [-36.956464269784703, -10.013663941041671], [-36.939589269140953, -10.083646853867549], [-36.879746737561277, -10.153629766693442], [-36.776694975817662, -10.22359070686224], [-36.699065578325076, -10.257340708149698], [-36.647539697453283, -10.253978891615205], [-36.607044090439757, -10.292892467318381], [-36.579819968307476, -10.37142274375158], [-36.538423482353323, -10.410578018682727], [-36.482623919677877, -10.410578018682727], [-36.443018205276417, -10.43195741402954], [-36.431768204847259, -10.452875383577506], [-36.414673477632647, -10.491349506138917], [-36.635839257553812, -10.589896873179455], [-36.768367338781246, -10.671569239576257], [-36.937798497588261, -10.820521881977101], [-37.093266032815762, -11.05475040653721], [-37.125444989121434, -11.084896892062204], [-37.182815596778681, -11.068483317217328], [-37.18124455179688, -11.187487228006972], [-37.315123951435226, -11.376056571137823], [-37.356069997919064, -11.403939872982733], [-37.354949392407576, -11.35039250765881], [-37.331548512608634, -11.309896900645271], [-37.32074895164979, -11.266698656809893], [-37.321869557161307, -11.215172775938086], [-37.359223074211229, -11.252526292988009], [-37.438423516685617, -11.393832450722158], [-37.411869560594539, -11.497323665607496] ] ] ] } }, { "type": "Feature", "properties": { "population": 3322, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-37.975720900463131, -9.512138043003716], [-38.221199425452397, -9.34767270469861], [-38.154589315489545, -9.266681490671544], [-38.092044147087989, -9.186349456357121], [-37.966942823956401, -9.141788907782271], [-37.81529853106224, -8.976642417107428], [-37.806289741656087, -8.896332355450099], [-37.748248967957636, -8.860538897053431], [-37.681419131423894, -8.976642417107428], [-37.627641053200563, -8.981146811810504], [-37.520546322552718, -8.945375326070931], [-37.471492365603325, -9.003427086097929], [-37.391171317617449, -9.043483239969703], [-37.18124455179688, -9.239896821681043], [-36.998322181537702, -9.306957371114194], [-36.940270421510689, -9.35600034173504], [-36.90449893577113, -9.289181491529845], [-36.833164704534312, -9.262396822539344], [-36.578699362795987, -9.293444187004965], [-36.440315568454565, -9.208849457215422], [-36.346492322687993, -9.199840667809269], [-36.266171274702117, -9.141788907782271], [-36.239397592040149, -9.088241542458348], [-36.123294071986152, -9.016698570979202], [-36.118789677283075, -8.967655600358356], [-36.016199341338307, -8.896332355450099], [-35.971419066192567, -8.905099445628281], [-35.882319941699961, -8.873832354591784], [-35.801768180814662, -8.869547686459597], [-35.721447132828786, -8.918590657080429], [-35.609848007477865, -8.865043291756507], [-35.471464213136443, -8.833776200720024], [-35.391143165150567, -8.882819171340856], [-35.301824314087071, -8.887323566043932], [-35.151740079846178, -8.913866535806477], [-35.157815519531056, -8.930521809879323], [-35.340968602689685, -9.230668305704], [-35.597015975738344, -9.540724469875457], [-35.763964224294426, -9.702487171358712], [-35.830123894786965, -9.719142445431558], [-35.890867305307268, -9.686974475454448], [-35.84766906147189, -9.772470084184604], [-35.885473017992126, -9.847616571426215], [-36.054893190470608, -10.075780642629979], [-36.223643196907915, -10.225172738172589], [-36.39824891645921, -10.484142474613989], [-36.411520401340482, -10.489987201399458], [-36.414673477632647, -10.491349506138917], [-36.431768204847259, -10.452875383577506], [-36.443018205276417, -10.43195741402954], [-36.482623919677877, -10.410578018682727], [-36.538423482353323, -10.410578018682727], [-36.579819968307476, -10.37142274375158], [-36.607044090439757, -10.292892467318381], [-36.647539697453283, -10.253978891615205], [-36.699065578325076, -10.257340708149698], [-36.776694975817662, -10.22359070686224], [-36.879746737561277, -10.153629766693442], [-36.939589269140953, -10.083646853867549], [-36.956464269784703, -10.013663941041671], [-37.019240151085654, -9.956974485754131], [-37.196098067988487, -9.88587096741675], [-37.425591484946096, -9.778314810970059], [-37.938147656842318, -9.537802106482729], [-37.975720900463131, -9.512138043003716] ] ] ] } }, { "type": "Feature", "properties": { "population": 3409, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-38.5251691636104, -6.382858138474916], [-38.605490211596305, -6.396129623356174], [-38.578716528934336, -6.262250223717842], [-38.511666965829704, -6.181918189403419], [-38.493891086245384, -6.128370824079497], [-38.413570038259479, -6.061332247303426], [-38.368789763113767, -6.092599338339923], [-38.301740200009135, -6.074823458755574], [-38.127815632827577, -5.878387904387154], [-38.078541949307322, -5.762306356990237], [-38.078541949307322, -5.686478717378904], [-38.047494584841701, -5.614913773242662], [-37.913395458632465, -5.463280466677062], [-37.721464298967135, -5.061422541191149], [-37.596593688734941, -4.958832205246381], [-37.54281561051161, -4.93204753625588], [-37.230748948216586, -4.824271653238313], [-37.174718672641688, -4.912469898790306], [-36.954893224802873, -4.936771657529846], [-36.861069979036301, -4.96669841648395], [-36.747449369233294, -5.050611993903757], [-36.59061952926632, -5.097655452729569], [-36.386768203130629, -5.084361995191216], [-36.161768194547562, -5.093832210396229], [-35.979966429799873, -5.054457208894192], [-35.549324323528452, -5.129361996907832], [-35.481593608054084, -5.166056334245113], [-35.392494483561478, -5.250870790605518], [-35.235444917023642, -5.566771681562443], [-35.14184139782796, -5.917103726176549], [-35.095490077700418, -6.185301978594993], [-34.988164634153151, -6.393646713105213], [-34.971740072979713, -6.503905506373755], [-35.047347986020185, -6.534733144268486], [-35.257274751840754, -6.507948475277985], [-35.306317722461586, -6.53022874956541], [-35.4669708047619, -6.463168200132245], [-35.667899767504849, -6.427396714392671], [-35.721447132828786, -6.44539232054791], [-35.926869503946278, -6.467672594835335], [-36.252669076921421, -6.414125229511413], [-36.292944957364057, -6.307030498863568], [-36.382274794756114, -6.302526104160492], [-36.493873920107035, -6.378353743771839], [-36.516143208065898, -6.480944079716593], [-36.444819963157641, -6.623832268761092], [-36.533919087650247, -6.63732348021324], [-36.529414692947171, -6.735431394112013], [-36.502641010285203, -6.784694091303734], [-36.574194968092911, -6.927582280348247], [-36.659020410781864, -6.931844975823353], [-36.712567776105772, -6.976625250969079], [-36.770619536132784, -6.931844975823353], [-36.743845853470816, -6.824750245175508], [-36.792899810420209, -6.76669848514851], [-36.944774816213766, -6.748922605564161], [-36.989324378460083, -6.708646725121511], [-37.042871743783991, -6.753427000267237], [-37.154470869134911, -6.784694091303734], [-37.217016037536467, -6.824750245175508], [-37.270574389188909, -6.739913816158008], [-37.337623952293541, -6.699879634943329], [-37.516041927849642, -6.68186205613101], [-37.507274837671446, -6.55248705119574], [-37.431216485160689, -6.516715565456167], [-37.395664725991992, -6.391844955223988], [-37.176740157093803, -6.114879612627348], [-37.176740157093803, -6.052543184468149], [-37.261565599782756, -6.025780488134728], [-37.422449394982493, -6.097103733042999], [-37.475996760306401, -6.083832248161727], [-37.641143250981258, -6.128370824079497], [-37.757246771035256, -6.177413794700328], [-37.793018256774815, -6.293517314754325], [-37.842072213724208, -6.342582258032266], [-38.002714309695961, -6.431901109095762], [-38.05627266134843, -6.44539232054791], [-38.132320027530653, -6.521219960159243], [-38.239414758178498, -6.48544847441967], [-38.283964320424815, -6.503444080574909], [-38.435839326218371, -6.414125229511413], [-38.5251691636104, -6.382858138474916] ] ] ] } }, { "type": "Feature", "properties": { "population": 9278, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-41.368716635364422, -8.713168285962922], [-41.212567947767155, -8.632858224305608], [-41.159020582443247, -8.548021795288108], [-41.083192942831886, -8.525741521000683], [-41.016143379727282, -8.418646790352838], [-40.92232013396071, -8.431918275234111], [-40.886768374792013, -8.351608213576768], [-40.833221009468105, -8.36487969845804], [-40.748395566779152, -8.244491510271843], [-40.592016166282491, -8.12390556817185], [-40.542973195661659, -8.030082322405278], [-40.529470997880964, -7.905189739516004], [-40.547466604036174, -7.833646768036857], [-40.659065729387095, -7.762323523128586], [-40.618789848944459, -7.637233186325531], [-40.690343806752139, -7.512340603436257], [-40.690343806752139, -7.427526147075838], [-40.645574517934961, -7.400741478085337], [-40.538468800958583, -7.391754661336265], [-40.261723184932805, -7.391754661336265], [-40.172393347540776, -7.418517357669671], [-40.065298616892932, -7.405245872788413], [-39.953699491542011, -7.360465597642673], [-39.846593774565633, -7.347194112761414], [-39.654442888329413, -7.373978781751916], [-39.534065686471763, -7.47656911769667], [-39.350923589641695, -7.548112089175831], [-39.306374027395378, -7.623939728787164], [-39.243817872665318, -7.681991488814162], [-39.109949459355505, -7.753314733722434], [-39.074166987287384, -7.856146768895158], [-38.998339347676051, -7.820375283155585], [-38.96707225663954, -7.847137979489005], [-38.864240221466815, -7.704271763101588], [-38.819690659220527, -7.663995882658938], [-38.699093730791986, -7.619457306741182], [-38.64554636546805, -7.677487094111086], [-38.591999000144142, -7.690780551649439], [-38.587494605441066, -7.740043248841161], [-38.5251691636104, -7.766827917831677], [-38.449121797428177, -7.735538854138085], [-38.417843720063132, -7.748832311676438], [-38.355518278232495, -7.699767368398511], [-38.304223110260125, -7.78234061373594], [-38.301740200009135, -7.829362099904657], [-38.257190637762847, -7.851642374192082], [-38.225923546726335, -7.811366493749432], [-38.167871786699351, -7.806862099046356], [-38.150095907115002, -7.771332312534753], [-38.087539752384913, -7.820375283155585], [-38.057393266859918, -7.75781912842551], [-37.975940627033992, -7.771332312534753], [-37.895619579048116, -7.686495883517253], [-37.793018256774815, -7.637233186325531], [-37.708192814085862, -7.548112089175831], [-37.551824399917763, -7.47656911769667], [-37.435720879863766, -7.347194112761414], [-37.382173514539829, -7.351698507464491], [-37.346391042471708, -7.297931415569693], [-37.25279850960456, -7.271146746579191], [-37.149966474431835, -7.347194112761414], [-37.016098061122051, -7.400741478085337], [-37.016098061122051, -7.507858181390262], [-37.199240157952119, -7.574896758166332], [-37.212522629161924, -7.646220003074589], [-37.167973066915607, -7.762323523128586], [-37.22602482694262, -7.815870888452508], [-37.342117360668055, -7.9987932587117], [-37.212522629161924, -7.958737104839926], [-37.149966474431835, -7.976512984424275], [-37.127697186472972, -8.164181448614499], [-37.06086734993923, -8.231000298819694], [-36.962539709469581, -8.284547664143616], [-36.833164704534312, -8.226495904116618], [-36.783891021014057, -8.222233208641498], [-36.627742333416819, -8.0836296877292], [-36.659020410781864, -8.012306442820929], [-36.569690573389835, -7.922965619100353], [-36.449093644961295, -7.90969413421908], [-36.422319962299326, -7.824879677858675], [-36.337494519610374, -7.811366493749432], [-36.266171274702117, -7.824879677858675], [-36.217117317752724, -7.780099402712935], [-36.16784363423244, -7.824879677858675], [-36.123294071986152, -7.780099402712935], [-36.074240115036758, -7.824879677858675], [-35.966914671489491, -7.815870888452508], [-35.931373898649355, -7.838151162739933], [-35.886593623503614, -7.732177037603591], [-35.837539666554221, -7.744327916973361], [-35.712669056322056, -7.708776157804678], [-35.681390978957012, -7.713280552507754], [-35.556289655825395, -7.655228792480756], [-35.498248882126944, -7.454288843409245], [-35.373367285566218, -7.458793238112335], [-35.270546236722026, -7.382745871930098], [-35.065343592175424, -7.409530540920613], [-34.980518149486443, -7.512340603436257], [-34.858569902646991, -7.54969412048618], [-34.860822099998529, -7.594913848773672], [-34.854746660313651, -7.634288850275709], [-34.872972979368313, -7.692120883731818], [-34.878597979582878, -7.747470006936979], [-34.836970780729303, -7.871681437456516], [-34.834718583377764, -7.971569136579433], [-34.890518146053239, -8.092177051336506], [-34.966565512235462, -8.407616516494571], [-35.151740079846178, -8.913866535806477], [-35.301824314087071, -8.887323566043932], [-35.391143165150567, -8.882819171340856], [-35.471464213136443, -8.833776200720024], [-35.609848007477865, -8.865043291756507], [-35.721447132828786, -8.918590657080429], [-35.801768180814662, -8.869547686459597], [-35.882319941699961, -8.873832354591784], [-35.971419066192567, -8.905099445628281], [-36.016199341338307, -8.896332355450099], [-36.118789677283075, -8.967655600358356], [-36.123294071986152, -9.016698570979202], [-36.239397592040149, -9.088241542458348], [-36.266171274702117, -9.141788907782271], [-36.346492322687993, -9.199840667809269], [-36.440315568454565, -9.208849457215422], [-36.578699362795987, -9.293444187004965], [-36.833164704534312, -9.262396822539344], [-36.90449893577113, -9.289181491529845], [-36.940270421510689, -9.35600034173504], [-36.998322181537702, -9.306957371114194], [-37.18124455179688, -9.239896821681043], [-37.391171317617449, -9.043483239969703], [-37.471492365603325, -9.003427086097929], [-37.520546322552718, -8.945375326070931], [-37.627641053200563, -8.981146811810504], [-37.681419131423894, -8.976642417107428], [-37.748248967957636, -8.860538897053431], [-37.806289741656087, -8.896332355450099], [-37.81529853106224, -8.976642417107428], [-37.966942823956401, -9.141788907782271], [-38.092044147087989, -9.186349456357121], [-38.154589315489545, -9.266681490671544], [-38.221199425452397, -9.34767270469861], [-38.283074427812721, -9.203663910142609], [-38.307595913123151, -9.102194179709358], [-38.294324428241907, -9.043021814170856], [-38.335940640766921, -9.01017269182401], [-38.43291696282563, -9.003646812668819], [-38.482190646345913, -8.959547689892815], [-38.483992404227138, -8.877655596925138], [-38.504690647204228, -8.834896806231512], [-38.544296361605689, -8.831073563898173], [-38.57759592342282, -8.860538897053431], [-38.619223122276424, -8.896090656222128], [-38.667815653426942, -8.896090656222128], [-38.705399883376288, -8.879896807948114], [-38.834994614882476, -8.800245926003356], [-39.098249019456034, -8.714970043844119], [-39.25664990440481, -8.640263009744331], [-39.332697270587033, -8.565797674872442], [-39.441824472015526, -8.559271795717166], [-39.600895523005477, -8.619564766767255], [-39.682798602301716, -8.683021800437942], [-39.687742450146573, -8.749401197501371], [-39.738367452077739, -8.791237136597275], [-39.834893334666162, -8.809013016181552], [-39.884617457656759, -8.853353838185598], [-39.887770533948924, -8.923995930724061], [-39.909149929295722, -8.980245932869821], [-39.948744657368621, -9.022103844622904], [-40.004994659514409, -9.058095056933354], [-40.077669222833606, -9.08824154245832], [-40.212218788513155, -9.101513027339593], [-40.273192911932853, -9.144952970402969], [-40.319774944959818, -9.293004733863199], [-40.412697311785791, -9.396957374547355], [-40.564792044150238, -9.460172708990143], [-40.685839412049063, -9.47210386178898], [-40.743891172076076, -9.423038918511111], [-40.690343806752139, -9.342728856853768], [-40.703615291633412, -9.217616547393618], [-40.850996889052453, -9.150797697188352], [-40.855490297426996, -9.092745937161425], [-40.891042056595666, -9.03469417713444], [-40.891042056595666, -8.856056475007449], [-40.980371893987723, -8.815780594564785], [-41.003992500357526, -8.781349440907604], [-41.100968822416235, -8.775724440693025], [-41.105473217119311, -8.717672680666027], [-41.159020582443247, -8.708663891259846], [-41.324167073118076, -8.735448560250362], [-41.368716635364422, -8.713168285962922] ] ] ] } }, { "type": "Feature", "properties": { "population": 3944, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-38.699093730791986, -7.619457306741182], [-38.636768288961321, -7.534620877723682], [-38.632274880586806, -7.458793238112335], [-38.582990210737989, -7.427526147075838], [-38.533947240117129, -7.293646747437492], [-38.547449437897825, -7.235594987410494], [-38.600996803221761, -7.222103775958345], [-38.676824442833095, -7.15954762122827], [-38.685822245910714, -7.030172616293001], [-38.730371808157031, -7.0033879473025], [-38.725867413453955, -6.891788821951579], [-38.650039773842593, -6.838241456627657], [-38.61877268280611, -6.757931394970328], [-38.650039773842593, -6.690870845537162], [-38.578716528934336, -6.480944079716593], [-38.5251691636104, -6.382858138474916], [-38.435839326218371, -6.414125229511413], [-38.283964320424815, -6.503444080574909], [-38.239414758178498, -6.48544847441967], [-38.132320027530653, -6.521219960159243], [-38.05627266134843, -6.44539232054791], [-38.002714309695961, -6.431901109095762], [-37.842072213724208, -6.342582258032266], [-37.793018256774815, -6.293517314754325], [-37.757246771035256, -6.177413794700328], [-37.641143250981258, -6.128370824079497], [-37.475996760306401, -6.083832248161727], [-37.422449394982493, -6.097103733042999], [-37.261565599782756, -6.025780488134728], [-37.176740157093803, -6.052543184468149], [-37.176740157093803, -6.114879612627348], [-37.395664725991992, -6.391844955223988], [-37.431216485160689, -6.516715565456167], [-37.507274837671446, -6.55248705119574], [-37.516041927849642, -6.68186205613101], [-37.337623952293541, -6.699879634943329], [-37.270574389188909, -6.739913816158008], [-37.217016037536467, -6.824750245175508], [-37.154470869134911, -6.784694091303734], [-37.042871743783991, -6.753427000267237], [-36.989324378460083, -6.708646725121511], [-36.944774816213766, -6.748922605564161], [-36.792899810420209, -6.76669848514851], [-36.743845853470816, -6.824750245175508], [-36.770619536132784, -6.931844975823353], [-36.712567776105772, -6.976625250969079], [-36.659020410781864, -6.931844975823353], [-36.574194968092911, -6.927582280348247], [-36.502641010285203, -6.784694091303734], [-36.529414692947171, -6.735431394112013], [-36.533919087650247, -6.63732348021324], [-36.444819963157641, -6.623832268761092], [-36.516143208065898, -6.480944079716593], [-36.493873920107035, -6.378353743771839], [-36.382274794756114, -6.302526104160492], [-36.292944957364057, -6.307030498863568], [-36.252669076921421, -6.414125229511413], [-35.926869503946278, -6.467672594835335], [-35.721447132828786, -6.44539232054791], [-35.667899767504849, -6.427396714392671], [-35.4669708047619, -6.463168200132245], [-35.306317722461586, -6.53022874956541], [-35.257274751840754, -6.507948475277985], [-35.047347986020185, -6.534733144268486], [-34.971740072979713, -6.503905506373755], [-34.929673420984386, -6.785155517102595], [-34.879949297993818, -6.908224369453549], [-34.875895342761027, -7.002948494160734], [-34.833817704437166, -7.024327889507546], [-34.805472976793396, -7.288483173021774], [-34.816492264323102, -7.394896751299868], [-34.857669023706393, -7.53328054564129], [-34.858569902646991, -7.54969412048618], [-34.980518149486443, -7.512340603436257], [-35.065343592175424, -7.409530540920613], [-35.270546236722026, -7.382745871930098], [-35.373367285566218, -7.458793238112335], [-35.498248882126944, -7.454288843409245], [-35.556289655825395, -7.655228792480756], [-35.681390978957012, -7.713280552507754], [-35.712669056322056, -7.708776157804678], [-35.837539666554221, -7.744327916973361], [-35.886593623503614, -7.732177037603591], [-35.931373898649355, -7.838151162739933], [-35.966914671489491, -7.815870888452508], [-36.074240115036758, -7.824879677858675], [-36.123294071986152, -7.780099402712935], [-36.16784363423244, -7.824879677858675], [-36.217117317752724, -7.780099402712935], [-36.266171274702117, -7.824879677858675], [-36.337494519610374, -7.811366493749432], [-36.422319962299326, -7.824879677858675], [-36.449093644961295, -7.90969413421908], [-36.569690573389835, -7.922965619100353], [-36.659020410781864, -8.012306442820929], [-36.627742333416819, -8.0836296877292], [-36.783891021014057, -8.222233208641498], [-36.833164704534312, -8.226495904116618], [-36.962539709469581, -8.284547664143616], [-37.06086734993923, -8.231000298819694], [-37.127697186472972, -8.164181448614499], [-37.149966474431835, -7.976512984424275], [-37.212522629161924, -7.958737104839926], [-37.342117360668055, -7.9987932587117], [-37.22602482694262, -7.815870888452508], [-37.167973066915607, -7.762323523128586], [-37.212522629161924, -7.646220003074589], [-37.199240157952119, -7.574896758166332], [-37.016098061122051, -7.507858181390262], [-37.016098061122051, -7.400741478085337], [-37.149966474431835, -7.347194112761414], [-37.25279850960456, -7.271146746579191], [-37.346391042471708, -7.297931415569693], [-37.382173514539829, -7.351698507464491], [-37.435720879863766, -7.347194112761414], [-37.551824399917763, -7.47656911769667], [-37.708192814085862, -7.548112089175831], [-37.793018256774815, -7.637233186325531], [-37.895619579048116, -7.686495883517253], [-37.975940627033992, -7.771332312534753], [-38.057393266859918, -7.75781912842551], [-38.087539752384913, -7.820375283155585], [-38.150095907115002, -7.771332312534753], [-38.167871786699351, -7.806862099046356], [-38.225923546726335, -7.811366493749432], [-38.257190637762847, -7.851642374192082], [-38.301740200009135, -7.829362099904657], [-38.304223110260125, -7.78234061373594], [-38.355518278232495, -7.699767368398511], [-38.417843720063132, -7.748832311676438], [-38.449121797428177, -7.735538854138085], [-38.5251691636104, -7.766827917831677], [-38.587494605441066, -7.740043248841161], [-38.591999000144142, -7.690780551649439], [-38.64554636546805, -7.677487094111086], [-38.699093730791986, -7.619457306741182] ] ] ] } }, { "type": "Feature", "properties": { "population": 6727, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-53.669921938602499, -26.258005381026635], [-53.663396059447336, -26.257763681798622], [-53.516245174927704, -26.289052745492228], [-53.458193414900734, -26.289052745492199], [-53.355372366056514, -26.239987802214294], [-53.279544726445167, -26.262268076501719], [-53.123396038847943, -26.369604506377534], [-52.99379032101325, -26.351608900222303], [-52.913469273027374, -26.365100111674394], [-52.815372345457149, -26.33831544268395], [-52.672495142741198, -26.378371596555716], [-52.641217065376168, -26.400651870843092], [-52.542900411235053, -26.400651870843141], [-52.458074968546086, -26.431918961879639], [-52.199094245776138, -26.44991456803487], [-52.007174072439341, -26.583793967673216], [-51.873294672800995, -26.601569847257558], [-51.502714824680112, -26.601569847257558], [-51.422393776694236, -26.699897487727206], [-51.284020968681347, -26.650854517106367], [-51.239471406435086, -26.606074241960584], [-51.279516573978299, -26.498979511312712], [-51.288525363384451, -26.423151871701464], [-51.248249482941787, -26.347104505519212], [-51.074094202860806, -26.23550538016832], [-50.944719197925508, -26.244492196917378], [-50.900169635679219, -26.280263682656951], [-50.77057490417306, -26.22223389528704], [-50.735023145004391, -26.231000985465229], [-50.645693307612333, -26.07035888949347], [-50.542872258768142, -26.02579834091862], [-50.45804681607919, -26.02579834091862], [-50.369167418157474, -26.085871585397726], [-50.315169613363224, -26.052583009909121], [-50.190299003131059, -26.052583009909121], [-49.949094159945446, -26.012307129466471], [-49.882275309740265, -26.039069825799885], [-49.752669591905601, -26.123906254817314], [-49.721622227439951, -26.159677740556958], [-49.596520904308335, -26.22223389528704], [-49.489415187331957, -26.22223389528704], [-49.45364370159237, -26.16866455730603], [-49.29749501399516, -26.106130375233022], [-49.212669571306208, -26.030302735621696], [-49.109848522462016, -25.994531249882129], [-48.944691045458626, -26.007802734763388], [-48.917917362796658, -25.97651367106981], [-48.650169549848528, -25.97225097559469], [-48.585372184095462, -25.986203612845699], [-48.619341911953825, -26.179475104593394], [-48.678964716962525, -26.225815438392431], [-48.713846310090048, -26.226958016561014], [-48.748266477418667, -26.268574229086028], [-48.700794551779722, -26.348225111030729], [-48.651520868259468, -26.406496597628575], [-48.65804674741463, -26.519216328491041], [-48.676492793040154, -26.612380394544971], [-48.677844111451122, -26.702819851119898], [-48.61574938251988, -26.878095736712453], [-48.593469108232398, -27.058095743578804], [-48.568266470552317, -27.123354535130829], [-48.554094106730417, -27.196018112121465], [-48.595490592684484, -27.2639795404952], [-48.571869986314709, -27.372876029024326], [-48.64252306518182, -27.55781988373559], [-48.605619987602211, -27.825117257213435], [-48.620693230364736, -28.075539630047501], [-48.648367791967303, -28.207177818662899], [-48.693148067113043, -28.310229580406485], [-48.797320434368146, -28.442746675305386], [-48.799572631719684, -28.575263770204174], [-49.023671761362095, -28.698574321783155], [-49.271391497374395, -28.871147570553831], [-49.499995021719883, -29.075449336159807], [-49.712844150933222, -29.324531376911544], [-49.8152147603071, -29.271203738158505], [-49.86877311195957, -29.21765637283459], [-49.953598554648522, -29.195376098547115], [-50.078699877780139, -29.244419069168003], [-50.033919602634398, -29.320466435350227], [-50.051915208789637, -29.356018194518924], [-50.168018728843663, -29.284694949610639], [-50.163525320469091, -29.195376098547165], [-50.069691088373986, -29.092763789945316], [-50.007145919972459, -29.101552852780515], [-49.944820478141793, -28.949897573557898], [-49.953598554648522, -28.793518173061251], [-49.846492837672145, -28.695432231819552], [-49.797449867051284, -28.623867287683332], [-49.699122226581636, -28.597104591349918], [-49.708120029659256, -28.530263768487643], [-49.736695470202449, -28.511367283391792], [-49.839066079576355, -28.465246676163645], [-49.938525311886025, -28.448151948949075], [-50.068790209433359, -28.444328706615693], [-50.141025319610776, -28.452876070223034], [-50.154966970533252, -28.473794039770993], [-50.233046807496123, -28.468630465355268], [-50.446566102750609, -28.422048432328303], [-50.577523138996241, -28.38627694658873], [-50.736143750515879, -28.235983972105508], [-50.965867880372912, -27.959458082650634], [-51.117292446696183, -27.807802803427933], [-51.190417449485665, -27.781237861008321], [-51.286723605503198, -27.716220768684309], [-51.406419654991112, -27.613169006940751], [-51.487641581917615, -27.564126036319912], [-51.530169659711817, -27.568850157593872], [-51.582365706624842, -27.547470762247087], [-51.644691148455451, -27.499768123708598], [-51.701622302970947, -27.488078670137682], [-51.75359862331311, -27.51191900307839], [-51.873294672800995, -27.509458065484495], [-51.912900387202455, -27.472544001576331], [-51.984223632110712, -27.376699271357644], [-52.059589845923213, -27.31348393691492], [-52.1392407278679, -27.283315478732838], [-52.192348640050056, -27.280854541138964], [-52.228570565259943, -27.292543994709881], [-52.264792490469816, -27.277251025376501], [-52.304398204871291, -27.283095752161898], [-52.348046888177009, -27.276350146435902], [-52.414646011811286, -27.236293992564114], [-52.51072145492941, -27.230449265778645], [-52.636492944102201, -27.259475145792123], [-52.741566190297917, -27.245742235112033], [-52.826391632986883, -27.189492232966188], [-52.900197788146116, -27.176682173883854], [-52.952844274529411, -27.178923384906845], [-52.994240760483564, -27.163388716345494], [-53.030473672021984, -27.137526898952693], [-53.070749552464648, -27.141789594427806], [-53.103598674811508, -27.154401899596394], [-53.134195599806787, -27.140449262345427], [-53.184370162267669, -27.14945805175158], [-53.227117966632761, -27.173737837833983], [-53.263339891842634, -27.163388716345494], [-53.304747364125333, -27.097690471651809], [-53.347495168490411, -27.080595744437176], [-53.398120170421592, -27.082397502318429], [-53.456622369918932, -27.103315471866381], [-53.48969121883664, -27.133242230820429], [-53.498018855873042, -27.172177779180771], [-53.540096494196931, -27.197819870002689], [-53.615693420908883, -27.209970749372474], [-53.659572817113968, -27.200522506824541], [-53.671492983584315, -27.169475142358927], [-53.718525456081579, -27.157543989559997], [-53.800417549049271, -27.16475102108496], [-53.851723703350189, -27.156203657477654], [-53.935417554199105, -27.161147505322504], [-53.915620190162599, -27.159565474012084], [-53.838221505569436, -27.12109135145073], [-53.758570623624792, -26.978225135063269], [-53.717393864241558, -26.882819857986362], [-53.727072819688885, -26.804751007352024], [-53.75339606288054, -26.748720731777155], [-53.744617986373783, -26.666608912238587], [-53.718075016611238, -26.443168962308732], [-53.710867985086338, -26.351828626793122], [-53.668570620191588, -26.288151866551573], [-53.669921938602499, -26.258005381026635] ] ], [ [ [-48.464775255666893, -27.436333062694985], [-48.414820419776902, -27.399638725357704], [-48.377917342197293, -27.451406305457454], [-48.409645859032651, -27.566367247342839], [-48.496723499073084, -27.706992252707323], [-48.48592393811424, -27.767065497186366], [-48.554544546200759, -27.812307198130952], [-48.54217394026, -27.574694884379255], [-48.505270862680447, -27.495505428233514], [-48.464775255666893, -27.436333062694985] ] ], [ [ [-48.603148063679726, -26.413703629153474], [-48.66569323208131, -26.289733897861879], [-48.539691030009067, -26.170246588616294], [-48.497624378013768, -26.218850106095431], [-48.531143666401817, -26.313112805003755], [-48.568046743981427, -26.379733901295197], [-48.58447130515475, -26.401552749783775], [-48.603148063679726, -26.413703629153474] ] ] ] } }, { "type": "Feature", "properties": { "population": 11207, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-53.935417554199105, -27.161147505322504], [-53.851723703350189, -27.156203657477654], [-53.800417549049271, -27.16475102108496], [-53.718525456081579, -27.157543989559997], [-53.671492983584315, -27.169475142358927], [-53.659572817113968, -27.200522506824541], [-53.615693420908883, -27.209970749372474], [-53.540096494196931, -27.197819870002689], [-53.498018855873042, -27.172177779180771], [-53.48969121883664, -27.133242230820429], [-53.456622369918932, -27.103315471866381], [-53.398120170421592, -27.082397502318429], [-53.347495168490411, -27.080595744437176], [-53.304747364125333, -27.097690471651809], [-53.263339891842634, -27.163388716345494], [-53.227117966632761, -27.173737837833983], [-53.184370162267669, -27.14945805175158], [-53.134195599806787, -27.140449262345427], [-53.103598674811508, -27.154401899596394], [-53.070749552464648, -27.141789594427806], [-53.030473672021984, -27.137526898952693], [-52.994240760483564, -27.163388716345494], [-52.952844274529411, -27.178923384906845], [-52.900197788146116, -27.176682173883854], [-52.826391632986883, -27.189492232966188], [-52.741566190297917, -27.245742235112033], [-52.636492944102201, -27.259475145792123], [-52.51072145492941, -27.230449265778645], [-52.414646011811286, -27.236293992564114], [-52.348046888177009, -27.276350146435902], [-52.304398204871291, -27.283095752161898], [-52.264792490469816, -27.277251025376501], [-52.228570565259943, -27.292543994709881], [-52.192348640050056, -27.280854541138964], [-52.1392407278679, -27.283315478732838], [-52.059589845923213, -27.31348393691492], [-51.984223632110712, -27.376699271357644], [-51.912900387202455, -27.472544001576331], [-51.873294672800995, -27.509458065484495], [-51.75359862331311, -27.51191900307839], [-51.701622302970947, -27.488078670137682], [-51.644691148455451, -27.499768123708598], [-51.582365706624842, -27.547470762247087], [-51.530169659711817, -27.568850157593872], [-51.487641581917615, -27.564126036319912], [-51.406419654991112, -27.613169006940751], [-51.286723605503198, -27.716220768684309], [-51.190417449485665, -27.781237861008321], [-51.117292446696183, -27.807802803427933], [-50.965867880372912, -27.959458082650634], [-50.736143750515879, -28.235983972105508], [-50.577523138996241, -28.38627694658873], [-50.446566102750609, -28.422048432328303], [-50.233046807496123, -28.468630465355268], [-50.154966970533252, -28.473794039770993], [-50.141025319610776, -28.452876070223034], [-50.068790209433359, -28.444328706615693], [-49.938525311886025, -28.448151948949075], [-49.839066079576355, -28.465246676163645], [-49.736695470202449, -28.511367283391792], [-49.708120029659256, -28.530263768487643], [-49.699122226581636, -28.597104591349918], [-49.797449867051284, -28.623867287683332], [-49.846492837672145, -28.695432231819552], [-49.953598554648522, -28.793518173061251], [-49.944820478141793, -28.949897573557898], [-50.007145919972459, -29.101552852780515], [-50.069691088373986, -29.092763789945316], [-50.163525320469091, -29.195376098547165], [-50.168018728843663, -29.284694949610639], [-50.051915208789637, -29.356018194518924], [-50.033919602634398, -29.320466435350227], [-50.078699877780139, -29.244419069168003], [-49.953598554648522, -29.195376098547115], [-49.86877311195957, -29.21765637283459], [-49.8152147603071, -29.271203738158505], [-49.712844150933222, -29.324531376911544], [-49.745923986179491, -29.363225226043852], [-50.033249436593223, -29.801074363840215], [-50.29941521823099, -30.425669114229116], [-50.620040230461882, -30.897729679111798], [-50.748074903314773, -31.068039744202359], [-50.921318318126595, -31.258388872557354], [-51.151723600353364, -31.480466517747693], [-51.460417459785361, -31.702324436367149], [-51.79814818555937, -31.900320049388839], [-51.920316158969712, -31.989638900452327], [-52.03912231584556, -32.114751209912484], [-52.069049074799679, -32.063005602469801], [-52.04316528474979, -31.977488021082557], [-52.059589845923213, -31.913371807699221], [-52.063193361685677, -31.830359109220041], [-51.995023193069557, -31.815044167229566], [-51.893092036837459, -31.867690653612875], [-51.841115716495324, -31.831919167873302], [-51.80332274630365, -31.796609107932575], [-51.680693347094461, -31.774548560216033], [-51.446245095963462, -31.557414762870536], [-51.272089815882481, -31.47686300198523], [-51.174223601211679, -31.339841512383273], [-51.157568327138819, -31.266716509593778], [-51.161391569472158, -31.118906445361525], [-51.106042446267026, -31.081333201740719], [-50.980040244194782, -31.094143260823131], [-50.954398153372864, -31.052065622499249], [-50.965417440902598, -31.005505562129372], [-50.940895955592168, -30.903794132468136], [-50.770124464702775, -30.813354675893144], [-50.689341990918024, -30.704216488136105], [-50.716346386479415, -30.425888840799999], [-50.685068309114371, -30.413518234859346], [-50.614865669717602, -30.456958177922701], [-50.582016547370756, -30.438940599110381], [-50.546464788202059, -30.316772625700047], [-50.563570501745232, -30.253557291257323], [-50.646143747082647, -30.236902017184477], [-50.931898152514549, -30.374362959928192], [-51.025040245911413, -30.368737959713613], [-51.040344201573333, -30.26052262355428], [-51.17939816195593, -30.211018227134588], [-51.233615693321042, -30.121479649500209], [-51.249820527923589, -30.06004410028163], [-51.297973605932356, -30.034841462601477], [-51.295040256211081, -30.14105728696579], [-51.281768771329808, -30.244109048709397], [-51.157348600567929, -30.364255537667624], [-51.187495086092923, -30.411958176206085], [-51.246667451631424, -30.467527025982122], [-51.287624484443825, -30.591277030702805], [-51.283120089740748, -30.751479673532806], [-51.316419651557879, -30.702656429482843], [-51.359167455922972, -30.674531428409963], [-51.376492896037007, -30.84686297795264], [-51.459066141374421, -30.912802921874295], [-51.485169657995186, -30.977600287627368], [-51.463570536077498, -31.052746774868979], [-51.50631834044259, -31.104492382311669], [-51.716915272304334, -31.243777055593711], [-51.926842038124903, -31.338940633442661], [-51.97252319221127, -31.383720908588394], [-51.994792480170133, -31.489914760295619], [-52.02697143647579, -31.599052948052659], [-52.11989380330175, -31.694897678271346], [-52.193469245561559, -31.885466533197217], [-52.191447761109444, -31.967600325392873], [-52.167146002369904, -32.088427966720836], [-52.127320561397553, -32.16785912209464], [-52.190096442698518, -32.220725335048826], [-52.274691172488048, -32.32377709679244], [-52.341740735592666, -32.439638917618467], [-52.508469257577858, -32.875246844391839], [-52.652247339234421, -33.137820096595718], [-52.762945585644729, -33.266294222590368], [-52.920896031123192, -33.401975380109938], [-53.370665335389901, -33.742178029806389], [-53.397669730951279, -33.737234181961547], [-53.463598688544394, -33.709768360601309], [-53.518947811749555, -33.677138964825346], [-53.531318417690201, -33.655539842907658], [-53.537624570274517, -33.622932419788782], [-53.530417538749589, -33.500303020579594], [-53.531318417690201, -33.17088894551344], [-53.511971493124051, -33.108574490011335], [-53.482945613110545, -33.068518336139562], [-53.395197807028865, -33.01024684954168], [-53.310141651440475, -32.926992451834529], [-53.214066208322365, -32.821018326698187], [-53.125648236199481, -32.736643323479534], [-53.157365766706292, -32.680173594762884], [-53.231171921865524, -32.625505623927474], [-53.362799124152332, -32.581164801923499], [-53.489471492265736, -32.503315677860044], [-53.601740783657846, -32.402966552938281], [-53.653717103999966, -32.298794185683171], [-53.701200015967544, -32.186294181391631], [-53.746650457154473, -32.097414783469901], [-53.761723699916971, -32.056919176456368], [-53.80604254926385, -32.039824449241756], [-53.876464915231495, -31.994604720954264], [-53.920575024336031, -31.952307356059492], [-53.985141677189688, -31.928225323890835], [-54.100344318303073, -31.901440654900334], [-54.220490807261285, -31.855100321101339], [-54.369893889132442, -31.745083227060768], [-54.477669772150008, -31.622673554422462], [-54.530997410903055, -31.541902066966273], [-54.587697852519128, -31.485190639021653], [-54.895941272480812, -31.391147666684198], [-55.036115838374911, -31.279109088191518], [-55.091245235009183, -31.313979694990479], [-55.173598753775721, -31.279548541333284], [-55.254589967802801, -31.225539750210508], [-55.278891726542327, -31.184143264256356], [-55.313322880199522, -31.141626172790708], [-55.345490850176631, -31.093022655311636], [-55.365969366582831, -31.046220895713788], [-55.449674203760296, -30.964548529316986], [-55.557219373878439, -30.875888857966139], [-55.603120254535668, -30.850708192943074], [-55.627191300375785, -30.85811297838179], [-55.650592180174698, -30.892104678897219], [-55.665214983466896, -30.924953801244065], [-55.705941303379859, -30.946552923161761], [-55.756346578740164, -30.987048530175294], [-55.807872459611971, -31.036772653165869], [-55.873570704305664, -31.069621775512708], [-55.952089994410315, -31.080871775941866], [-56.004747467122158, -31.079289744631517], [-56.015547028081002, -31.059734079823023], [-56.01846939147373, -30.991772651449253], [-55.998891754008156, -30.837195008833831], [-56.044792634665384, -30.777583190153571], [-56.10576675808511, -30.71366473068403], [-56.176200110381302, -30.628388848524764], [-56.40727555864926, -30.447487962717688], [-56.721594418295822, -30.186958167623018], [-56.83274310417643, -30.107307285678324], [-56.93714618433097, -30.101001133094016], [-57.032771187978781, -30.109987949843088], [-57.120518994060461, -30.144419103500283], [-57.18689839112389, -30.264807291686473], [-57.214342239827033, -30.283484050211435], [-57.383773398634077, -30.28078141338959], [-57.552292692171946, -30.26120377592401], [-57.608993133788019, -30.187859046563631], [-57.563773405500527, -30.1399147087972], [-57.405141807652342, -30.033940583660858], [-57.317394001570648, -29.939458158181644], [-57.300749713826349, -29.856643213616252], [-57.224691361315578, -29.782177878744378], [-57.089240916695417, -29.716237934822715], [-56.938717229312772, -29.59475111378211], [-56.772450133126441, -29.41789319687927], [-56.671419855834941, -29.287397586432505], [-56.635868096666243, -29.203022583213851], [-56.570620291442864, -29.138005490889896], [-56.47589616673568, -29.092544063374433], [-56.393322921398266, -28.997380485525483], [-56.322450115960308, -28.852470812028862], [-56.225473793901571, -28.737268170915485], [-56.102844394692383, -28.651772562185336], [-56.034223786605963, -28.580888770418831], [-56.019589996985232, -28.524638768273064], [-55.984950103085694, -28.488647555962608], [-55.930271145921736, -28.472893160830374], [-55.903717189830658, -28.443208101104233], [-55.905518947711883, -28.399548431469995], [-55.890445704949386, -28.37008309831473], [-55.858947901013465, -28.35410897661162], [-55.806070701730746, -28.359733976826199], [-55.732044820000624, -28.386716399730496], [-55.687275531183445, -28.38155282531477], [-55.671971575521511, -28.344880460634577], [-55.691549212987098, -28.302802822310696], [-55.745997457251633, -28.255539636913994], [-55.725518940845433, -28.204013756042194], [-55.582422011558592, -28.121001057563006], [-55.47666761299314, -28.089272540727663], [-55.409848762787945, -28.037746659855856], [-55.346391729117258, -27.956074293459054], [-55.243790406843942, -27.898923412372667], [-55.101594356497728, -27.866755442395558], [-55.063790399977492, -27.835927804500827], [-55.068964960721758, -27.796333076427906], [-55.039950067036813, -27.767746649556173], [-54.955794790389035, -27.74726813314998], [-54.91012462263123, -27.708574284017672], [-54.902697864535426, -27.651862856073052], [-54.875693468974035, -27.599216369689749], [-54.829122422275617, -27.550612852210676], [-54.777146101933511, -27.532397519484562], [-54.719775494276234, -27.544987851996098], [-54.665766703153466, -27.526552792699107], [-54.615372414121708, -27.477048396279415], [-54.554848730172282, -27.454108942279341], [-54.48441537787609, -27.457251032242951], [-54.448193452666203, -27.446440484955566], [-54.326915371867941, -27.423501030955492], [-54.26009652166276, -27.38210454500134], [-54.205197837927912, -27.289621631317146], [-54.156374593877956, -27.253850145577573], [-54.113846516083754, -27.274768115125532], [-54.040040360924522, -27.243720750659918], [-53.935417554199105, -27.161147505322504] ] ] ] } } ] } ================================================ FILE: packages/turf-center-median/test/in/brazil-states.json ================================================ { "type": "FeatureCollection", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, "features": [ { "type": "Feature", "properties": { "population": 790, "fill": "#fff" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-66.627670235635748, -9.925465695489663], [-66.730040845009626, -9.975431517708216], [-67.111420254089353, -10.269052134377702], [-67.190400969992851, -10.311349499272467], [-67.280400973426083, -10.317194226057921], [-67.332816746909955, -10.357931532299432], [-67.416972023557719, -10.389879775705666], [-67.582349227131985, -10.505983295759663], [-67.666724230350638, -10.598905662585608], [-67.721842640656362, -10.683038966576291], [-67.785750113797363, -10.685983302626113], [-67.835023797317632, -10.662802149398075], [-67.991622924385169, -10.674491602968985], [-68.071724245800169, -10.703078029840725], [-68.158571172941237, -10.784970122808403], [-68.266566782529694, -10.933021886268634], [-68.311116344775996, -10.975099524592522], [-68.397974258245611, -11.018737221569666], [-68.498323383167374, -11.05475040653721], [-68.622743553929254, -11.109198650801744], [-68.678323390033839, -11.112802166564208], [-68.727597073554108, -11.122470135683017], [-68.769894438448873, -11.097728923801711], [-68.784066802270758, -11.044621011619554], [-68.848424714882057, -11.011090736902972], [-69.001651039086553, -10.99445743548722], [-69.228441819222311, -10.955741613697825], [-69.462450617211545, -10.948095129031131], [-69.578543150936994, -10.951698644793595], [-69.673948428013915, -10.954181555044556], [-69.839776071058495, -10.933483312067494], [-69.960372999487021, -10.92987979630503], [-70.066347124623363, -10.982526282688326], [-70.220023888298172, -11.047543375012282], [-70.290446254265817, -11.064198649085128], [-70.341972135137624, -11.066681559336104], [-70.392366424169396, -11.058573648870549], [-70.450868623666693, -11.024823647583091], [-70.533222142433232, -10.946974523519643], [-70.596448463204496, -10.976901282473747], [-70.642349343861724, -11.010189857962359], [-70.641448464921112, -10.840780671812411], [-70.640316873081076, -10.586073630846116], [-70.639415994140464, -10.361293348833925], [-70.638526101528385, -10.181513068538351], [-70.637625222587772, -9.971828001945752], [-70.636944070218036, -9.823776238485522], [-70.593745826382658, -9.767526236339762], [-70.56719187029158, -9.704530628467907], [-70.599151100026347, -9.62059507839102], [-70.592174781400843, -9.543427106697308], [-70.570125220012855, -9.489879741373386], [-70.541099339999349, -9.437452981560966], [-70.607918190204529, -9.463776224752607], [-70.636944070218036, -9.478168315145382], [-70.672495829386733, -9.518004742446266], [-70.758441877587188, -9.571771834341064], [-70.816273911043297, -9.625319199664986], [-70.884444079659417, -9.668978869299224], [-70.970840567330171, -9.765724478458523], [-71.041724359096676, -9.818832390640679], [-71.115299801356485, -9.852340692700167], [-71.237918214237126, -9.965983275160283], [-71.339398930998939, -9.988483276018599], [-71.608047622887696, -10.006017456374977], [-71.887495875735297, -10.005578003233211], [-72.142873082742796, -10.005116577434364], [-72.181566931875096, -10.003776245351972], [-72.179095007952668, -9.91017272615629], [-72.172799841696914, -9.844013055663751], [-72.259866495408858, -9.774271842065829], [-72.26572220852286, -9.688556506764797], [-72.289123088321787, -9.629142441998326], [-72.318148968335294, -9.556698591578566], [-72.379123091755019, -9.510116558551601], [-72.464849413384584, -9.492120952396377], [-72.605474418749012, -9.452064798524603], [-72.814269592729531, -9.410448585999575], [-73.013847237061569, -9.407526222606847], [-73.20937092616083, -9.411349464940187], [-73.089894603243792, -9.265780611730932], [-72.970418280326768, -9.120189785864582], [-72.974021796089232, -8.993077964609398], [-73.070547678677642, -8.882819171340856], [-73.122523999019762, -8.81397883668356], [-73.203075759905062, -8.719254711976376], [-73.302524005886212, -8.65399592042445], [-73.356741537251324, -8.566918280383945], [-73.351797689406482, -8.514271794000649], [-73.360345053013788, -8.479401187201688], [-73.398149009534023, -8.458922670795488], [-73.435941979725712, -8.426974427389268], [-73.488149012967241, -8.392103820590307], [-73.549123136386982, -8.345741514134218], [-73.549123136386982, -8.299401180335224], [-73.572293303286472, -8.249896783915531], [-73.610097259806707, -8.191845023888533], [-73.610097259806707, -8.145504690089538], [-73.644967866605668, -8.072819140441808], [-73.68277182312589, -8.020612107200265], [-73.720345066746702, -7.985741500401318], [-73.775694189951849, -7.936478803209596], [-73.772771826559122, -7.895741496968085], [-73.732045506646159, -7.875504679789856], [-73.714500339961234, -7.828922646762891], [-73.720345066746702, -7.78258231296391], [-73.76691611344512, -7.753556432950404], [-73.822045510079391, -7.738922643329673], [-73.894720073398574, -7.654767366681895], [-73.94691612031157, -7.611129669704752], [-73.981797713439079, -7.585026153083987], [-74.002045516945842, -7.556000273070481], [-73.981797713439079, -7.535741483235171], [-73.958396833640151, -7.506715603221679], [-73.952771833425572, -7.460375269422684], [-73.964241560425606, -7.416715599788446], [-73.964241560425606, -7.378922629596758], [-73.929370953626659, -7.367233176025834], [-73.891797710005847, -7.373077902811303], [-73.853993753485611, -7.349896749583266], [-73.804720069965356, -7.34112965940507], [-73.749370946760195, -7.33526295996252], [-73.720345066746702, -7.309181415998836], [-73.72326743013943, -7.262819109542761], [-73.758149023266924, -7.172819106109529], [-73.793019630065885, -7.13502613591784], [-73.796842872399239, -7.116788830534645], [-72.66352617877601, -7.592672637750681], [-70.373250212502668, -8.155172659208347], [-69.806465522912788, -8.454198549521536], [-66.828599198378711, -9.838168328878282], [-66.627670235635748, -9.925245968918787], [-66.627670235635748, -9.925465695489663] ] ] ] } }, { "type": "Feature", "properties": { "population": 1749, "fill": "#fff" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-66.627670235635748, -9.925465695489663], [-66.627670235635748, -9.925245968918787], [-66.828599198378711, -9.838168328878282], [-66.743773755689745, -9.748849477814787], [-66.694719798740365, -9.748849477814787], [-66.59662287117014, -9.664013048797287], [-66.502799625403568, -9.63274595776079], [-66.404691711504796, -9.525651227112959], [-66.395693908427177, -9.405043312355886], [-66.105446094620731, -9.418556496465115], [-65.998340377644354, -9.400780616880766], [-65.931290814539736, -9.414052101762039], [-65.766144323864893, -9.565927107555609], [-65.676825472801397, -9.534638043862032], [-65.632275910555094, -9.449823587501612], [-65.525170193578717, -9.414052101762039], [-65.444849145592826, -9.445319192798536], [-65.418075462930872, -9.391771827474614], [-65.221650894890999, -9.257892427836268], [-65.199150894032684, -9.266681490671544], [-65.172366225042182, -9.373995947890265], [-65.092045177056306, -9.436332376049464], [-65.038497811732384, -9.400780616880766], [-64.904618412094038, -9.213112152690542], [-64.926898686381463, -9.11953060615194], [-64.886622805938813, -9.061478846124942], [-64.779517088962422, -8.985431479942704], [-64.69019823789894, -9.021202965682278], [-64.596594718703244, -9.025707360385354], [-64.475997790274718, -8.949879720774021], [-64.417946030247705, -8.972138022404351], [-64.382174544508132, -8.940870931367854], [-64.217017067504756, -8.949879720774021], [-64.118920139934531, -8.936366536664778], [-64.12769821644126, -8.68640558962953], [-64.074150851117338, -8.713168285962936], [-63.998323211505991, -8.681901194926454], [-63.922495571894657, -8.534530583835959], [-63.993818816802914, -8.440927064640263], [-63.917991177191567, -8.333832333992419], [-63.752844686516738, -8.284547664143616], [-63.72607100385477, -8.19094414494792], [-63.591971877645548, -8.164181448614499], [-63.587698195841895, -8.079345019597], [-63.538424512321626, -7.9987932587117], [-62.904590259627142, -8.007802048117853], [-62.828773606344342, -8.016788864866925], [-62.721448162797074, -8.061349413441775], [-62.676898600550771, -8.114896778765697], [-62.636622720108122, -8.222233208641498], [-62.556290685793698, -8.289052058846693], [-62.538525792537897, -8.36059503032584], [-62.45370034984893, -8.347103818873691], [-62.373368315534506, -8.382875304613265], [-62.306318752429902, -8.570302069575533], [-62.172450339120104, -8.610577950018182], [-62.13217445867744, -8.766715651286859], [-61.998295059039108, -8.811495926432599], [-61.917974011053218, -8.873832354591784], [-61.873424448806915, -8.856056475007449], [-61.837641976738794, -8.744457349656528], [-61.761825323455994, -8.72668147007218], [-61.717045048310268, -8.68640558962953], [-61.609950317662424, -8.722177075369103], [-61.609950317662424, -8.766715651286859], [-61.507348995389123, -8.847047685601282], [-61.484848994530822, -8.914108235034448], [-61.529618283348, -8.998922691394853], [-61.556391966009969, -9.128297696330122], [-61.529618283348, -9.226625336799771], [-61.592174438078075, -9.239896821681043], [-61.609950317662424, -9.320448582566343], [-61.547394162932349, -9.409547707058962], [-61.551898557635425, -9.463095072382885], [-61.480575312727169, -9.63725035246388], [-61.520620480270395, -9.704288929239937], [-61.565400755416121, -9.726569203527362], [-61.520620480270395, -9.860448603165707], [-61.534122678051077, -9.994547729374943], [-61.569674437219774, -10.061366579580124], [-61.565400755416121, -10.262306528651621], [-61.471566523321002, -10.436439836075536], [-61.502844600686046, -10.686422755767879], [-61.471566523321002, -10.757746000676136], [-61.520620480270395, -10.789013091712633], [-61.507348995389123, -10.878353915433223], [-61.520620480270395, -10.954181555044556], [-61.471566523321002, -10.998939857533202], [-60.440400712500775, -11.003444252236292], [-60.440400712500775, -11.038996011404976], [-60.382348952473777, -11.10155216613505], [-60.279516917301038, -11.079271891847625], [-60.176915595027737, -11.119547772290289], [-60.069820864379906, -11.115043377587199], [-60.002771301275288, -11.146332441280791], [-59.908948055508716, -11.382802176863891], [-60.025040589234166, -11.534677182657461], [-60.101098941744937, -11.601496032862656], [-60.101098941744937, -11.744362249250059], [-60.060823061302287, -11.905246044449797], [-59.98499542169094, -11.918517529331055], [-59.931448056367017, -12.052396928969401], [-59.886667781221291, -12.128444295151638], [-59.891172175924368, -12.244547815205635], [-59.82412261281975, -12.387194305022163], [-59.908948055508716, -12.619401345130157], [-60.002771301275288, -12.731000470481078], [-60.043047181717938, -12.873866686868496], [-60.083092349261165, -12.927414052192404], [-60.194691474612085, -12.972194327338144], [-60.270749827122856, -13.070302241236917], [-60.275023508926509, -13.137340818012973], [-60.351070875108732, -13.271220217651319], [-60.382348952473777, -13.418590828741813], [-60.659094568499526, -13.601513199001005], [-60.724792813193218, -13.662948748219577], [-60.914471775507025, -13.561479017786311], [-61.076915629360016, -13.489694347079194], [-61.12912266260156, -13.498483409914471], [-61.415997673544965, -13.526608410987365], [-61.511622677192776, -13.541220227951001], [-61.575749876904652, -13.524806653106126], [-61.789950324528888, -13.525707532046738], [-61.874094614848104, -13.470358408841591], [-61.944747693715186, -13.406220222801167], [-62.094820941627518, -13.241974611066937], [-62.117991108527022, -13.159840818871288], [-62.176042868554021, -13.133737302250523], [-62.264021387535138, -13.143646970597288], [-62.352900785456868, -13.132396970168131], [-62.525474034227514, -13.064215815223477], [-62.687017009139879, -12.994254875054679], [-62.765547285573078, -12.997177238447421], [-62.83506877260011, -12.953737295384059], [-62.957917898380188, -12.847103990535075], [-63.015299492365997, -12.805465805352952], [-63.041392022658215, -12.750358381375776], [-63.067495539278994, -12.669125468120725], [-63.116769222799263, -12.651569315107267], [-63.180665709611716, -12.666203104727998], [-63.249747743496982, -12.70781931725304], [-63.346724065555719, -12.680155741979007], [-63.46529950953213, -12.605228981308272], [-63.541797315184667, -12.546715795482427], [-63.585665725061233, -12.519052220208394], [-63.688497760233972, -12.478095187396008], [-63.788165732785998, -12.469547823788702], [-63.938469693597767, -12.529621068267815], [-64.061549532277269, -12.505099582957385], [-64.255040750595867, -12.483280734468821], [-64.420417954170134, -12.439840791405459], [-64.48072191154867, -12.326220181602437], [-64.513340320996093, -12.251073694360826], [-64.611667961465741, -12.20383248162122], [-64.689967524999503, -12.146439901306863], [-64.783340331295776, -12.059362261266358], [-64.829922364322741, -12.030358353909946], [-64.914297367541394, -12.006056595170406], [-64.992596931075155, -11.975228957275675], [-65.001144294682462, -11.920099560641404], [-65.030170174695954, -11.847414010993674], [-65.037146493321458, -11.829418404838449], [-65.090243419175067, -11.741220159286456], [-65.115215343955796, -11.735155705930111], [-65.142670178987501, -11.752250433144724], [-65.163368421964563, -11.76508246488423], [-65.185648696251988, -11.749547796322872], [-65.189691665156218, -11.710172794820835], [-65.175299574763457, -11.646957460378118], [-65.206116226329641, -11.58057806331469], [-65.282174578840412, -11.511056576287658], [-65.322000019812762, -11.43927190558054], [-65.325592549246679, -11.364806570708666], [-65.342467549890415, -11.315082447718083], [-65.372844748314833, -11.289879810037931], [-65.389950461857993, -11.246220140403707], [-65.393542991291909, -11.184345138043355], [-65.371493429903907, -11.110319256313247], [-65.323790791365454, -11.024823647583091], [-65.333920186283109, -10.892746005825984], [-65.402321067798638, -10.714767483411634], [-65.439894311419451, -10.586293357416992], [-65.447090356615831, -10.507323627842041], [-65.436971948026709, -10.449052141244152], [-65.395344749173134, -10.392340713299532], [-65.312991230406595, -10.253078012674592], [-65.298599140013835, -10.14686218831028], [-65.324471943735176, -10.026957398580024], [-65.32807545949764, -9.935595090407318], [-65.309398700972679, -9.872599482535477], [-65.337974141515872, -9.790245963768939], [-65.396245628113761, -9.712396839705491], [-65.436741235127286, -9.710375355253376], [-65.492090358332447, -9.731754750600174], [-65.558700468295285, -9.797452995293867], [-65.637219758399937, -9.80914244886479], [-65.706741245426969, -9.768427115280375], [-65.924775921713092, -9.785521842494987], [-66.26361626667007, -9.826017449508512], [-66.399297424189641, -9.868095087832401], [-66.478948306134328, -9.886090693987626], [-66.575243475823328, -9.899823604667745], [-66.627670235635748, -9.925465695489663] ] ] ] } }, { "type": "Feature", "properties": { "population": 497, "fill": "#fff" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-58.868773455282323, 0.224275902629742], [-59.770575247495842, 0.228780297332833], [-60.025040589234166, 0.224275902629742], [-60.127872624406905, 0.13067238343406], [-60.167917791950131, 0.005582046630991], [-60.21697174889951, -0.043482896646935], [-60.252743234639084, -0.15057762729478], [-60.310794994666082, -0.235392083655199], [-60.315299389369159, -0.306957027791427], [-60.38662263427743, -0.463094729060117], [-60.391116042651959, -0.521146489087116], [-60.315299389369159, -0.619474129556764], [-60.306290599963006, -0.673021494880686], [-60.337568677328051, -0.704288585917183], [-60.467174395162729, -0.740082044313837], [-60.516217365783575, -0.829181168806457], [-60.641098962344302, -0.86044825984294], [-60.734922208110873, -0.851681169664758], [-60.815243256096764, -0.686292979761944], [-60.904573093488793, -0.610465340150597], [-60.931346776150761, -0.556917974826689], [-61.060721781086016, -0.530155278493268], [-61.105491069903209, -0.4943618200966], [-61.221594589957206, -0.498866214799691], [-61.243874864244631, -0.547931158077617], [-61.458075311868853, -0.637250009141113], [-61.534122678051077, -0.726568860204608], [-61.578672240297394, -0.945262716203359], [-61.560896360713045, -1.021332055042677], [-61.574167845594303, -1.14169827057178], [-61.618948120740043, -1.275797396781002], [-61.619848999680656, -1.449491251063151], [-61.717275761209692, -1.401129432812041], [-61.798497688136194, -1.388736854214301], [-61.880840220574186, -1.389198280013161], [-61.877698130610568, -1.369400915976698], [-61.935749890637567, -1.244530305744519], [-62.029573136404139, -1.146202665274856], [-62.141172261755059, -1.065870630960433], [-62.203717430156601, -1.043590356673008], [-62.243773584028361, -0.981056174600027], [-62.315316555507508, -0.945262716203359], [-62.417917877780823, -0.829181168806457], [-62.507247715172852, -0.771129408779444], [-62.475969637807822, -0.695301769168111], [-62.377872710237597, -0.717582043455536], [-62.310823147132979, -0.641754403844189], [-62.319820950210598, -0.521146489087116], [-62.368874907159977, -0.467599123763193], [-62.373368315534506, -0.342728513531], [-62.404646392899551, -0.271163569394773], [-62.475969637807822, -0.222120598773927], [-62.511741123547395, -0.123792958304278], [-62.569792883574394, -0.047965318692931], [-62.578790686651999, 0.018853531512249], [-62.525023594757201, 0.094900897694487], [-62.565299475199851, 0.17523293200891], [-62.569792883574394, 0.246556176917167], [-62.53402139783482, 0.313605740021785], [-62.52951700313173, 0.429698273747235], [-62.489471835588503, 0.487750033774233], [-62.484967440885427, 0.541297399098156], [-62.538525792537897, 0.675176798736501], [-62.53402139783482, 0.7332285587635], [-62.444691560442777, 0.804782516571194], [-62.511741123547395, 0.960931204168418], [-62.516245518250471, 1.059247858309519], [-62.614342445820697, 1.362778143325784], [-62.623340248898316, 1.416325508649706], [-62.721448162797074, 1.49665754296413], [-62.788497725901692, 1.603752273611974], [-62.712670086290345, 1.73763167325032], [-62.730445965874694, 1.831454919016892], [-62.690400798331467, 1.911775967002768], [-62.708165691587268, 1.947547452742342], [-62.846549485928691, 2.018881683979146], [-63.002698173525914, 2.018881683979146], [-63.123295101954454, 2.112704929745718], [-63.150068784616408, 2.179754492850336], [-63.306448185113055, 2.16625229506964], [-63.393745551724436, 2.224073342197215], [-63.374849066628599, 2.340407575150635], [-63.38924115702136, 2.411950546629782], [-63.584545119549745, 2.434000108017784], [-63.712568806074088, 2.434000108017784], [-63.924066616876459, 2.45245713997187], [-64.024866181268536, 2.481922473127128], [-64.046696016085647, 2.502400989533328], [-64.048717500537762, 2.525131703291052], [-64.028700409930423, 2.575976431793123], [-64.009122772464849, 2.671832148340357], [-64.037698213008028, 2.801426879846503], [-64.143441625244947, 3.00482776651188], [-64.218818825385981, 3.204625137414794], [-64.228717507404212, 3.343898824368296], [-64.227146462422411, 3.491280421787323], [-64.221071022737533, 3.587355864905447], [-64.275299540431178, 3.662733065046481], [-64.568019278160051, 3.89987296667077], [-64.669049555451551, 4.011702804921114], [-64.702568843839586, 4.089332202413701], [-64.817771484952971, 4.232198418801104], [-64.788745604939464, 4.276077815006218], [-64.72236620787605, 4.274506770024416], [-64.665446039689087, 4.237153252974494], [-64.613700432246404, 4.15773308392923], [-64.576346915196481, 4.139957204344881], [-64.525491200365863, 4.139957204344881], [-64.255721902965604, 4.140407643815195], [-64.19249558219434, 4.126905446034499], [-64.154241186203791, 4.100131763372545], [-64.121622776756382, 4.067051928126276], [-64.073469698747601, 3.974349287871192], [-64.021493378405495, 3.9291295595837], [-63.914618374328541, 3.930700604565502], [-63.746999959731269, 3.932502362446741], [-63.652946001065274, 3.940829999483157], [-63.596695998919515, 3.914957195761815], [-63.526724072422169, 3.893797526985892], [-63.379792914473441, 3.942851483935272], [-63.338616155090165, 3.943983075775321], [-63.294747745213598, 3.922153240958195], [-63.136116147365414, 3.756556310813053], [-63.045215264991569, 3.686573397987161], [-62.968717459339032, 3.593881744060639], [-62.856898607417236, 3.593431304590325], [-62.764646406632465, 3.672851473635589], [-62.739894208422612, 3.940379560012857], [-62.712219646820046, 4.017997971176882], [-62.665417887222191, 4.039608079423118], [-62.609849037446168, 4.042299729916422], [-62.543920079853052, 4.084377368240311], [-62.472596834944781, 4.138605885933956], [-62.410721832584429, 4.156832204988618], [-62.153092428225406, 4.098330005491306], [-62.081549456746259, 4.126224293664762], [-61.820766976095072, 4.197108085431267], [-61.554150754986964, 4.287778254905689], [-61.479443720887119, 4.402299743649337], [-61.367624868965322, 4.432907654973178], [-61.280096789454518, 4.516832218721532], [-61.209443710587436, 4.508054142214789], [-61.102348979939592, 4.504681339351762], [-61.0362002957756, 4.519304142643946], [-61.002900733958441, 4.535278264347056], [-60.966448095849145, 4.574653265849093], [-60.906144138470594, 4.686702830670328], [-60.833469575151412, 4.729230908464515], [-60.741667813836955, 4.774230910181132], [-60.679122645435413, 4.827108109463865], [-60.627596764563606, 4.892575641258119], [-60.603745445294379, 4.949276082874206], [-60.604415611335568, 4.994506797490246], [-60.635023522659424, 5.082023890672502], [-60.671915613910485, 5.164377409439041], [-60.711971767782259, 5.191601531571308], [-60.742118253307254, 5.201950653059839], [-60.651448083832847, 5.221077851055114], [-60.576521323162112, 5.192502410511921], [-60.459516924167502, 5.187998015808844], [-60.408891922236307, 5.210047577196846], [-60.335096753405622, 5.199248016238002], [-60.241723947109364, 5.257980928634737], [-60.18165070263025, 5.238853730639462], [-60.142044988228776, 5.238853730639462], [-60.106042789589779, 5.19430416839316], [-60.078148501416322, 5.143898893032841], [-59.990620421905518, 5.082924769613115], [-59.999398498412248, 4.989782676216279], [-60.015372620115372, 4.907429157449741], [-60.026842347115405, 4.812705032742556], [-60.031797181288781, 4.740480908893673], [-60.06891998543928, 4.666674753734441], [-60.124499821543864, 4.597603706177708], [-60.140924382717287, 4.569698431675718], [-60.148570867383981, 4.533256779894955], [-60.111217350334044, 4.511207218506954], [-60.045068666170053, 4.504681339351762], [-59.962275694261749, 4.501747989630488], [-59.906025692115989, 4.480379580612222], [-59.833340142468245, 4.475875185909146], [-59.745823049285988, 4.416702820370645], [-59.7032949714918, 4.381151061201948], [-59.699691455729337, 4.353476499599381], [-59.72759673023134, 4.287547542006266], [-59.738616017761061, 4.226804131485963], [-59.716797169272496, 4.188099296025115], [-59.69114409212203, 4.160424734422534], [-59.620271286684073, 4.023172531921148], [-59.586521285396614, 3.975480879711242], [-59.557715131953998, 3.959957197478431], [-59.55120023912734, 3.933622967958229], [-59.575491011538332, 3.883448405497347], [-59.604516891551839, 3.819782631584317], [-59.670215136245531, 3.752733068479714], [-59.67899321275226, 3.699855869196981], [-59.731650685464103, 3.666556307379821], [-59.854499811244182, 3.587575591476323], [-59.833120415897369, 3.462254541773831], [-59.828846734093716, 3.398577781532254], [-59.831098931445254, 3.349304098011984], [-59.87294585686972, 3.283155413847993], [-59.945620420188902, 3.087851451319608], [-59.97239410285087, 2.990424689790572], [-59.995794982649784, 2.765424681207506], [-59.994443664238858, 2.690047481066472], [-59.9606936629514, 2.58835802406233], [-59.889590144614019, 2.362907576008951], [-59.849094537600479, 2.32712510394083], [-59.755271291833907, 2.274028178087221], [-59.74357085193445, 2.121702732823337], [-59.751667776071443, 1.962400968933963], [-59.756172170774533, 1.900525966573611], [-59.740648488541723, 1.874202723381956], [-59.698570850217834, 1.861381677970996], [-59.668424364692839, 1.842254479975736], [-59.663700243418873, 1.795232993807005], [-59.6666226068116, 1.746179036857626], [-59.596650680314269, 1.718054035784732], [-59.535665570565996, 1.70004744330096], [-59.479415568420222, 1.632327714155167], [-59.377715125087533, 1.527254467959438], [-59.337219518074008, 1.508127269964163], [-59.316971714567231, 1.464698313229363], [-59.231245392937666, 1.376049628207056], [-59.100299343020595, 1.343650945330523], [-58.968441427834364, 1.304506656727909], [-58.966419943382249, 1.302474185947247], [-58.868773455282323, 0.224275902629742] ] ] ] } }, { "type": "Feature", "properties": { "population": 3874, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-66.828599198378711, -9.838168328878282], [-69.806465522912788, -8.454198549521536], [-70.373250212502668, -8.155172659208347], [-72.66352617877601, -7.592672637750681], [-73.796842872399239, -7.116788830534645], [-73.804720069965356, -7.079896739283569], [-73.776375342321586, -6.973483161005475], [-73.758149023266924, -6.905741459202574], [-73.694472263025361, -6.83373706192458], [-73.499849452866712, -6.679401118537129], [-73.325474446214827, -6.574767325483165], [-73.240418290626451, -6.563978750852868], [-73.17742268275461, -6.525262929063473], [-73.137366528882836, -6.465870836954096], [-73.126347241353102, -6.40085374463014], [-73.135345044430721, -6.34436204325641], [-73.167743727307254, -6.260668192407493], [-73.206448562768102, -6.156495825152376], [-73.235474442781609, -6.098444065125378], [-73.20937092616083, -6.028702851527456], [-73.162799879462412, -5.933297574450535], [-73.068075754755228, -5.789530479122504], [-72.979866522874687, -5.634952836507097], [-72.970198553755878, -5.58973310821959], [-72.958948553326721, -5.495228710083282], [-72.918222233413772, -5.302616398048215], [-72.895722232555457, -5.198224304222222], [-72.907422672454928, -5.157728697208682], [-72.887174868948151, -5.122858090409721], [-72.832045472313879, -5.093832210396229], [-72.698616512145847, -5.067267267976604], [-72.608396782141739, -5.009676933748452], [-72.468892382288814, -4.901219898361148], [-72.352799848563365, -4.786017257247764], [-72.256724405445254, -4.748905439425812], [-72.082569125364259, -4.642250161919733], [-71.982450713341919, -4.57453043277394], [-71.943075711839882, -4.553370763998004], [-71.844748071370233, -4.504327793377172], [-71.668340593937685, -4.48723306616256], [-71.521420422317505, -4.469676913149087], [-71.438166024610354, -4.437486970514897], [-71.316898930140624, -4.424215485633624], [-71.234995850844399, -4.388224273323175], [-71.144325681369978, -4.387323394382548], [-70.973773917051446, -4.350431303131487], [-70.915722157024447, -4.295301906497215], [-70.865998034033879, -4.229603661803523], [-70.79961863697045, -4.173353659657764], [-70.721549786336112, -4.158939596607908], [-70.634472146295607, -4.168629538383797], [-70.530750218510818, -4.167486960215214], [-70.404748016438589, -4.150172506429712], [-70.343543180119426, -4.193590476835979], [-70.317000210356895, -4.246918115589011], [-70.239151086293433, -4.30114663328267], [-70.184021689659161, -4.298224269889943], [-70.128892293024904, -4.286512843661939], [-70.05329536631298, -4.333094876688904], [-70.004021682792711, -4.327250149903449], [-69.972073439386477, -4.30114663328267], [-69.965997999701599, -4.235887841730744], [-69.948222120117251, -4.200577781790031], [-69.911099315966752, -3.996495742754917], [-69.849674753076712, -3.659896608820929], [-69.794094916972142, -3.354564565923425], [-69.732670354082103, -3.01662509990706], [-69.668993593840526, -2.667655360032427], [-69.604646667557759, -2.314181225454703], [-69.55176946827504, -2.024142151890601], [-69.506549739987534, -1.77484038456798], [-69.47864446548553, -1.622064499833797], [-69.434995782179854, -1.421607949218242], [-69.417901054965242, -1.245650911256007], [-69.400344901951769, -1.195025909324826], [-69.411375175810036, -1.152267118631201], [-69.449168146001725, -1.091512721782351], [-69.448717706531426, -1.06496975201982], [-69.444444024727773, -1.029637719422013], [-69.448717706531426, -0.998832054184362], [-69.488323420932886, -0.96574123260956], [-69.519370785398493, -0.945724142002206], [-69.54344183123861, -0.91713771513048], [-69.554691831667768, -0.877323260486676], [-69.574500182032764, -0.837728532413763], [-69.583267272210961, -0.79587062066075], [-69.611842712754154, -0.762801771743028], [-69.620620789260883, -0.72094385999003], [-69.600823425224419, -0.681349131917102], [-69.59204534871769, -0.639271493593228], [-69.600823425224419, -0.5996767655203], [-69.611842712754154, -0.553314459064225], [-69.633892274142141, -0.509215336288221], [-69.667422548858724, -0.482452639954801], [-69.747523870273724, -0.452525881000696], [-69.827844918259601, -0.381422362663301], [-69.922799755866222, -0.317525875850848], [-70.044066850335938, -0.196236808724038], [-70.070620806427016, -0.138866201066776], [-70.070840532997906, 0.018622818612826], [-70.065665972253626, 0.189405295830795], [-70.058019487586947, 0.447254426760708], [-70.053965532354169, 0.578650916148078], [-69.98534492426775, 0.585857947673006], [-69.925040966889213, 0.589450477106922], [-69.862045359017372, 0.598448280184542], [-69.807146675282524, 0.607457069590694], [-69.75674139992222, 0.626353554686546], [-69.718948429730531, 0.649754434485459], [-69.673717715114492, 0.665047403818846], [-69.638616395416108, 0.659653116503691], [-69.603526062046271, 0.680351359480767], [-69.564821226585423, 0.700148723517231], [-69.527017270065187, 0.716353558119778], [-69.472118586330339, 0.729855755900459], [-69.420823418357969, 0.698357951964539], [-69.392017264915353, 0.666849161700071], [-69.358717703098193, 0.651556192366698], [-69.327219899162273, 0.655148721800614], [-69.305620777244584, 0.65245707130731], [-69.283120776386269, 0.627254433627158], [-69.254094896372777, 0.625452675745933], [-69.212698410418625, 0.629957070449009], [-69.173993574957777, 0.635351357764151], [-69.155997968802552, 0.642547402960545], [-69.153295331980701, 0.658752237563078], [-69.163194013998933, 0.686657512065082], [-69.176696211779628, 0.712750042357314], [-69.165896650820784, 0.753256635699387], [-69.164995771880157, 0.801849166849919], [-69.163194013998933, 0.863954882109695], [-69.19379093899424, 0.898375049438343], [-69.224398850318082, 0.963172415191409], [-69.258599291075853, 1.015379448432952], [-69.311915943500352, 1.050480768131337], [-69.361420339920045, 1.063982965912032], [-69.402816825874197, 1.042372857665796], [-69.441521661335045, 1.03878032823188], [-69.470316828449114, 1.058577692268329], [-69.517118588046955, 1.059478571208956], [-69.567523863407274, 1.065773737464724], [-69.620840515831759, 1.073200495560528], [-69.716915958949869, 1.059028131738643], [-69.751347112607064, 1.076573298423568], [-69.798148872204919, 1.078375056304793], [-69.852146676999141, 1.059478571208956], [-69.850795358588215, 1.308780338531562], [-69.849444040177289, 1.543898755703736], [-69.848543161236677, 1.708825519807704], [-69.799950630086144, 1.705232990373773], [-69.739646672707607, 1.734929036428468], [-69.650097108744689, 1.739422444802997], [-69.581245787758846, 1.770700522168042], [-69.542991391768297, 1.773172446090456], [-69.470097101878224, 1.757879476757083], [-69.394269462266891, 1.725700520451426], [-69.319793141066469, 1.721207112076897], [-69.124269451967209, 1.721207112076897], [-68.913222080635137, 1.721426838647773], [-68.678543116604715, 1.721426838647773], [-68.443424699432541, 1.721657551547196], [-68.239573373296849, 1.721657551547196], [-68.176566779096461, 1.719855793665971], [-68.213250130105195, 1.774523764501382], [-68.255997934470273, 1.845407556267887], [-68.239342660397426, 1.901426845514223], [-68.218424690849474, 1.957676847659997], [-68.193892219210497, 1.986922454244379], [-68.130215458968934, 1.955875089778772], [-68.077118533115311, 1.860030359560085], [-68.032799683768431, 1.788025962282077], [-67.98982116650393, 1.75247420311338], [-67.936273801180022, 1.748431234209164], [-67.875519404331172, 1.760582113578934], [-67.814995720381745, 1.790047446734192], [-67.71194395863813, 1.922125088491299], [-67.609122909793953, 2.035075532253146], [-67.556025983940344, 2.073099215344257], [-67.499545268895147, 2.107980808471765], [-67.457698343470682, 2.121252293353024], [-67.400547462384296, 2.116747898649948], [-67.35194394490523, 2.085931247083764], [-67.320665867540185, 2.032153168860418], [-67.205924652225661, 1.84472640389815], [-67.11929745165547, 1.703650959063424], [-67.09004085874254, 1.615672440082307], [-67.088250087189849, 1.400582099846019], [-67.093644374505004, 1.210002258591601], [-67.082174647504971, 1.185480773281185], [-67.065299646861234, 1.178273741756257], [-66.876071124017741, 1.223054016901983], [-66.619122872028441, 0.992198295204915], [-66.429224183143759, 0.821657517214916], [-66.347090390948111, 0.767198286621849], [-66.301650936089729, 0.751905317288461], [-66.191172416250311, 0.763375044288495], [-66.059995653433816, 0.785424605676496], [-65.996318893192239, 0.809726364416036], [-65.92589652722458, 0.863054003169069], [-65.811375038480932, 0.937299611470067], [-65.718221958755549, 0.97802593138303], [-65.681549594075364, 0.983431205026719], [-65.64464651649574, 0.970379446716336], [-65.566116240062556, 0.926049611040909], [-65.522917996227179, 0.843476365703495], [-65.562743437199515, 0.747400922585385], [-65.555997831473448, 0.687997844147461], [-65.473424586136019, 0.691150920439611], [-65.407275901972028, 0.790379439849886], [-65.360924581844486, 0.868679003383647], [-65.263948259785764, 0.931905324154911], [-65.169674574548878, 1.022125054159034], [-65.103745616955763, 1.108082088688022], [-65.02656665893349, 1.158476377719794], [-64.910023685737741, 1.219681214038943], [-64.817991211523847, 1.257023744760332], [-64.731594723853092, 1.253431215326401], [-64.667467524141202, 1.293926822339941], [-64.584443839333474, 1.369974188522164], [-64.5261723527356, 1.430948311941904], [-64.486116198863826, 1.452778146759016], [-64.405124984836746, 1.446922433645014], [-64.304094707545261, 1.45525007068143], [-64.205096901034409, 1.529506665310976], [-64.114866184701754, 1.61927595584477], [-64.06694381959241, 1.770480795597152], [-64.03544601565649, 1.904349208906964], [-64.008441620095113, 1.931573331039232], [-63.97582321064769, 1.95295272638603], [-63.937118375186841, 1.966905363637039], [-63.844415734931772, 1.976804045655271], [-63.682191607649656, 2.048127290563528], [-63.57037275572786, 2.120582127311835], [-63.463948191121204, 2.136105809544645], [-63.432450387185284, 2.155452734110796], [-63.393965278295326, 2.222502297215414], [-63.393745551724436, 2.224073342197215], [-63.306448185113055, 2.16625229506964], [-63.150068784616408, 2.179754492850336], [-63.123295101954454, 2.112704929745718], [-63.002698173525914, 2.018881683979146], [-62.846549485928691, 2.018881683979146], [-62.708165691587268, 1.947547452742342], [-62.690400798331467, 1.911775967002768], [-62.730445965874694, 1.831454919016892], [-62.712670086290345, 1.73763167325032], [-62.788497725901692, 1.603752273611974], [-62.721448162797074, 1.49665754296413], [-62.623340248898316, 1.416325508649706], [-62.614342445820697, 1.362778143325784], [-62.516245518250471, 1.059247858309519], [-62.511741123547395, 0.960931204168418], [-62.444691560442777, 0.804782516571194], [-62.53402139783482, 0.7332285587635], [-62.538525792537897, 0.675176798736501], [-62.484967440885427, 0.541297399098156], [-62.489471835588503, 0.487750033774233], [-62.52951700313173, 0.429698273747235], [-62.53402139783482, 0.313605740021785], [-62.569792883574394, 0.246556176917167], [-62.565299475199851, 0.17523293200891], [-62.525023594757201, 0.094900897694487], [-62.578790686651999, 0.018853531512249], [-62.569792883574394, -0.047965318692931], [-62.511741123547395, -0.123792958304278], [-62.475969637807822, -0.222120598773927], [-62.404646392899551, -0.271163569394773], [-62.373368315534506, -0.342728513531], [-62.368874907159977, -0.467599123763193], [-62.319820950210598, -0.521146489087116], [-62.310823147132979, -0.641754403844189], [-62.377872710237597, -0.717582043455536], [-62.475969637807822, -0.695301769168111], [-62.507247715172852, -0.771129408779444], [-62.417917877780823, -0.829181168806457], [-62.315316555507508, -0.945262716203359], [-62.243773584028361, -0.981056174600027], [-62.203717430156601, -1.043590356673008], [-62.141172261755059, -1.065870630960433], [-62.029573136404139, -1.146202665274856], [-61.935749890637567, -1.244530305744519], [-61.877698130610568, -1.369400915976698], [-61.880840220574186, -1.389198280013161], [-61.798497688136194, -1.388736854214301], [-61.717275761209692, -1.401129432812041], [-61.619848999680656, -1.449491251063151], [-61.618948120740043, -1.275797396781002], [-61.574167845594303, -1.14169827057178], [-61.560896360713045, -1.021332055042677], [-61.578672240297394, -0.945262716203359], [-61.534122678051077, -0.726568860204608], [-61.458075311868853, -0.637250009141113], [-61.243874864244631, -0.547931158077617], [-61.221594589957206, -0.498866214799691], [-61.105491069903209, -0.4943618200966], [-61.060721781086016, -0.530155278493268], [-60.931346776150761, -0.556917974826689], [-60.904573093488793, -0.610465340150597], [-60.815243256096764, -0.686292979761944], [-60.734922208110873, -0.851681169664758], [-60.641098962344302, -0.86044825984294], [-60.516217365783575, -0.829181168806457], [-60.467174395162729, -0.740082044313837], [-60.337568677328051, -0.704288585917183], [-60.306290599963006, -0.673021494880686], [-60.315299389369159, -0.619474129556764], [-60.391116042651959, -0.521146489087116], [-60.38662263427743, -0.463094729060117], [-60.315299389369159, -0.306957027791427], [-60.310794994666082, -0.235392083655199], [-60.252743234639084, -0.15057762729478], [-60.21697174889951, -0.043482896646935], [-60.167917791950131, 0.005582046630991], [-60.127872624406905, 0.13067238343406], [-60.025040589234166, 0.224275902629742], [-59.770575247495842, 0.228780297332833], [-58.868773455282323, 0.224275902629742], [-58.850997575697988, -0.083736804432505], [-58.86449977347867, -0.173077628153081], [-58.855490984072517, -0.351495603709196], [-58.739398450347068, -0.432047364594496], [-58.748396253424673, -0.62397852425984], [-58.703615978278947, -0.695301769168111], [-58.627799324996147, -0.766844740647258], [-58.569747564969148, -0.762340345944182], [-58.440372560033893, -0.86044825984294], [-58.39109887651361, -1.048094751376084], [-58.315271236902262, -1.119417996284355], [-58.252715082172188, -1.128426785690522], [-58.159122549305039, -1.235521516338338], [-58.083075183122816, -1.298077671068427], [-57.980473860849543, -1.34712064168923], [-57.900141826535105, -1.422948281300592], [-57.828598855055944, -1.445228555588045], [-57.654674287874371, -1.588094771975463], [-57.565344450482328, -1.623866257715036], [-57.449240930428331, -1.690926807148188], [-57.337641805077411, -1.730982961019961], [-57.275096636675883, -1.713207081435613], [-57.248322954013915, -1.757745657353368], [-57.167990919699491, -1.771236868805516], [-57.087669871713615, -1.81129302267729], [-57.007348823727739, -1.936405332137454], [-56.824195740569124, -2.034491273379132], [-56.743874692583248, -2.052486879534356], [-56.748368100957777, -2.17737946242363], [-56.63676897560687, -2.222137764912276], [-56.498396167593981, -2.159603582839281], [-56.484893969813299, -2.248922433902749], [-56.400969406064945, -2.336219800514158], [-56.391070724046713, -2.391788650290195], [-56.75714617746452, -3.186495711855869], [-58.292990962614851, -6.49893968587179], [-58.374443602440763, -6.57050463000806], [-58.436769044271415, -6.675797602774665], [-58.455445802796376, -6.793922607280777], [-58.385924315769344, -6.949181402265936], [-58.228424309761195, -7.141552015073032], [-58.146290517565546, -7.263500261912498], [-58.136622548446738, -7.338207296012342], [-58.201870353670117, -7.414474388765456], [-58.223700188487229, -7.484677028162224], [-58.223919915058119, -7.574677031595442], [-58.259471674226816, -7.67322439863598], [-58.330344479664774, -7.780099402712935], [-58.353525632892811, -7.905870891885741], [-58.328773434682958, -8.050538866154383], [-58.354415525504876, -8.27600030053631], [-58.397174316198502, -8.415504700389221], [-58.426650635682307, -8.523038884178831], [-58.471650637398923, -8.690888011675511], [-58.547467290681723, -8.74893977170251], [-61.609950317662424, -8.766715651286859], [-61.609950317662424, -8.722177075369103], [-61.717045048310268, -8.68640558962953], [-61.761825323455994, -8.72668147007218], [-61.837641976738794, -8.744457349656528], [-61.873424448806915, -8.856056475007449], [-61.917974011053218, -8.873832354591784], [-61.998295059039108, -8.811495926432599], [-62.13217445867744, -8.766715651286859], [-62.172450339120104, -8.610577950018182], [-62.306318752429902, -8.570302069575533], [-62.373368315534506, -8.382875304613265], [-62.45370034984893, -8.347103818873691], [-62.538525792537897, -8.36059503032584], [-62.556290685793698, -8.289052058846693], [-62.636622720108122, -8.222233208641498], [-62.676898600550771, -8.114896778765697], [-62.721448162797074, -8.061349413441775], [-62.828773606344342, -8.016788864866925], [-62.904590259627142, -8.007802048117853], [-63.538424512321626, -7.9987932587117], [-63.587698195841895, -8.079345019597], [-63.591971877645548, -8.164181448614499], [-63.72607100385477, -8.19094414494792], [-63.752844686516738, -8.284547664143616], [-63.917991177191567, -8.333832333992419], [-63.993818816802914, -8.440927064640263], [-63.922495571894657, -8.534530583835959], [-63.998323211505991, -8.681901194926454], [-64.074150851117338, -8.713168285962936], [-64.12769821644126, -8.68640558962953], [-64.118920139934531, -8.936366536664778], [-64.217017067504756, -8.949879720774021], [-64.382174544508132, -8.940870931367854], [-64.417946030247705, -8.972138022404351], [-64.475997790274718, -8.949879720774021], [-64.596594718703244, -9.025707360385354], [-64.69019823789894, -9.021202965682278], [-64.779517088962422, -8.985431479942704], [-64.886622805938813, -9.061478846124942], [-64.926898686381463, -9.11953060615194], [-64.904618412094038, -9.213112152690542], [-65.038497811732384, -9.400780616880766], [-65.092045177056306, -9.436332376049464], [-65.172366225042182, -9.373995947890265], [-65.199150894032684, -9.266681490671544], [-65.221650894890999, -9.257892427836268], [-65.418075462930872, -9.391771827474614], [-65.444849145592826, -9.445319192798536], [-65.525170193578717, -9.414052101762039], [-65.632275910555094, -9.449823587501612], [-65.676825472801397, -9.534638043862032], [-65.766144323864893, -9.565927107555609], [-65.931290814539736, -9.414052101762039], [-65.998340377644354, -9.400780616880766], [-66.105446094620731, -9.418556496465115], [-66.395693908427177, -9.405043312355886], [-66.404691711504796, -9.525651227112959], [-66.502799625403568, -9.63274595776079], [-66.59662287117014, -9.664013048797287], [-66.694719798740365, -9.748849477814787], [-66.743773755689745, -9.748849477814787], [-66.828599198378711, -9.838168328878282] ] ] ] } }, { "type": "Feature", "properties": { "population": 8074, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-58.868773455282323, 0.224275902629742], [-58.966419943382249, 1.302474185947247], [-58.916695820391681, 1.248926820623353], [-58.862467302698008, 1.203707092335833], [-58.821740982785059, 1.2012241820849], [-58.787320815456383, 1.208431213609913], [-58.730400647269448, 1.247575502212442], [-58.684719493183024, 1.281105776928996], [-58.60506861123838, 1.279073306148348], [-58.511915531513012, 1.284698306362941], [-58.495721683239026, 1.312153141394674], [-58.486943606732268, 1.347704900563258], [-58.506070804727528, 1.438605782937259], [-58.472990969481316, 1.466280344539769], [-58.395822997787548, 1.481804026772636], [-58.380299315554737, 1.530176831352151], [-58.362743162541221, 1.556730787443371], [-58.340693601153305, 1.58754743900937], [-58.31415063139076, 1.592051833712503], [-58.28107079614449, 1.574275954128211], [-58.230445794213267, 1.563256666598477], [-58.173075186555991, 1.547952710936613], [-58.142247548661317, 1.516905346470935], [-58.091391833830642, 1.514422436220059], [-58.034691392214654, 1.520278149333876], [-58.011740951885997, 1.539855786799592], [-57.99509666414167, 1.574275954128211], [-57.982715071872519, 1.648532548757714], [-57.9462734200917, 1.650554033209858], [-57.873368143873051, 1.667198320954185], [-57.795749732709112, 1.70004744330106], [-57.691797092024899, 1.704782550903417], [-57.594370330495849, 1.704101398533737], [-57.545766813016712, 1.726150959921654], [-57.500547084729249, 1.773853598460107], [-57.412799278647583, 1.908853603609998], [-57.366898397990326, 1.940131680975128], [-57.317394001570563, 1.963532560774013], [-57.275547076146154, 1.959247892641883], [-57.189590041617123, 1.981528166929309], [-57.118947949078688, 2.013926849805898], [-57.092624705887033, 2.005829925668877], [-57.037495309252733, 1.936528165212735], [-57.010040474221057, 1.921224209550701], [-56.969544867207446, 1.916500088276791], [-56.83679705940915, 1.881179042007489], [-56.766374693441492, 1.892198329537223], [-56.68986590146045, 1.914247890925139], [-56.616521172100022, 1.922575527961612], [-56.563643972817317, 1.907282558628253], [-56.525400563155301, 1.927299649235522], [-56.482872485361213, 1.942153165427158], [-56.452945726407052, 1.932254483408883], [-56.385896163302448, 1.923926846372581], [-56.22704483888333, 1.885452723811113], [-56.019820709884584, 1.842254479975736], [-55.96333999483943, 1.857107996167372], [-55.929589993551929, 1.887474208263313], [-55.921723782314359, 1.976573332755947], [-55.91541762973003, 2.039579926956264], [-55.961999662757023, 2.095148776732287], [-56.020040436455531, 2.158155370932775], [-56.073598788108029, 2.236674661037284], [-56.137715001491358, 2.258954935324823], [-56.12939835078339, 2.29945054233832], [-56.087771151929871, 2.341297467762729], [-56.045023347564779, 2.364478620990781], [-56.020271149354983, 2.392823348634579], [-55.993497466692929, 2.497457141688471], [-55.975490874209186, 2.515903187313995], [-55.957495268054004, 2.520407582017128], [-55.935896146136315, 2.516573353355284], [-55.893818507812398, 2.489579944122454], [-55.730473775018822, 2.406105819844413], [-55.658919817211142, 2.41870713868434], [-55.385316291148968, 2.440525987173032], [-55.343919805194787, 2.488679065181771], [-55.286098758067283, 2.499698352711505], [-55.187771117597606, 2.547400991249958], [-55.148846555565854, 2.55077379411307], [-55.114195675337783, 2.53930406711288], [-55.070316279132669, 2.548301870190642], [-55.005749626279055, 2.593082145336382], [-54.978745230717664, 2.59757555371084], [-54.968396109229104, 2.548301870190642], [-54.926549183804582, 2.497457141688471], [-54.876143908444305, 2.45042466919125], [-54.851622423133847, 2.439625108232349], [-54.766796980444951, 2.454698350994931], [-54.722247418198663, 2.441657579013167], [-54.714820660102873, 2.425002304940222], [-54.73484873703876, 2.416224228433464], [-54.717072857454411, 2.264579935539416], [-54.78839610236264, 2.130480809330038], [-54.752844343193885, 2.081426852380673], [-54.792900497065716, 2.010103607472502], [-54.7616224197007, 1.969827727029838], [-54.766115828075158, 1.898504482121496], [-54.73484873703876, 1.773403158989879], [-54.578700049441466, 1.782400962067584], [-54.498368015127028, 1.746629476328053], [-54.364499601817215, 1.760131674108663], [-54.203615806617563, 1.657299638935967], [-54.172348715580995, 1.657299638935967], [-54.083249591088475, 1.541207105210503], [-54.078745196385341, 1.505655346041749], [-54.007191238577661, 1.523431225626041], [-53.922365795888709, 1.460875070896009], [-53.891098704852141, 1.407327705572129], [-53.757219305213823, 1.394056220690743], [-53.739443425629474, 1.434101388234183], [-53.659122377643598, 1.420829903352796], [-53.650124574566064, 1.362778143325841], [-53.556290342470902, 1.367282538028917], [-53.538525449215058, 1.2421812148973], [-53.440197808745438, 1.259957094481592], [-53.408919731380422, 1.184129454870344], [-53.466971491407435, 1.152851377505215], [-53.41791753445807, 0.94315532458404], [-53.266273241563908, 0.782282515712836], [-53.132174115354644, 0.751004438347934], [-53.114398235770352, 0.719957073882256], [-53.141171918432292, 0.536803990723683], [-53.127669720651625, 0.384928984930184], [-53.042844277962672, 0.246556176917181], [-53.007292518793975, 0.134957051566346], [-53.016070595300675, 0.054625017251851], [-52.976025427757463, -0.016698227656377], [-52.913469273027374, -0.190853507737359], [-52.828643830338422, -0.181844718331263], [-52.699268825403124, -0.302452633088365], [-52.627714867595444, -0.396275878854851], [-52.63221926229852, -0.556917974826604], [-52.605445579636523, -0.610465340150597], [-52.525124531650647, -0.646236825890128], [-52.507348652066355, -0.731073254907699], [-52.516115742244551, -0.873939471295046], [-52.400023208519087, -0.869457049249036], [-52.368745131153958, -0.923004414573029], [-52.39124513201233, -0.954271505609483], [-52.359967054647313, -1.070375025663452], [-52.239370126218773, -1.146202665274814], [-52.132275395570957, -1.15070705997789], [-52.051943361256519, -1.177469756311268], [-51.984893798151859, -1.141698270571794], [-51.888148188992545, -1.160375029096713], [-51.921667477380652, -1.180853545502885], [-51.934499509120144, -1.320357945355852], [-51.980839842919124, -1.368038611237182], [-52.020445557320613, -1.39910794835987], [-52.229240731301161, -1.362413611022589], [-52.553469259294388, -1.514068890245312], [-52.664167505704711, -1.551642133866153], [-52.31024293165666, -1.559530317760732], [-52.196622321853681, -1.64008207864606], [-51.947540281101965, -1.586754439893014], [-51.646273179765785, -1.394361854428894], [-51.531290265223333, -1.354107946643353], [-51.297292453562591, -1.223590363539415], [-51.202348602284587, -1.136512723498981], [-51.028874474573229, -1.032120629672988], [-50.99197139699362, -0.986219749015731], [-50.894995074934968, -0.937616231536595], [-50.842348588551602, -0.999491233896947], [-50.838294633318867, -1.038866235398984], [-50.917945515263568, -1.115155300809249], [-50.89724727228645, -1.164417998000999], [-50.844589799574635, -1.226293000361238], [-50.825473587907936, -1.311349155949642], [-50.818716995853265, -1.376146521702708], [-50.786098586405842, -1.489986858076691], [-50.678992869429521, -1.643905320979457], [-50.675400339995576, -1.694750049481513], [-50.690023143287704, -1.761788626257555], [-50.638716988986857, -1.817137749462688], [-50.585620063133149, -1.849986871809563], [-50.403148132344256, -2.015594788283238], [-50.260490656199295, -1.922892148028211], [-50.172742850117572, -1.896129451694776], [-50.116492847971813, -1.857413629905352], [-49.999268722406327, -1.831771539083491], [-49.902973552717242, -1.870707087443691], [-49.719589756659275, -1.926275937219714], [-49.58527090387912, -1.867103571681298], [-49.313699848597707, -1.731642140732561], [-49.398745017857493, -1.971495665507291], [-49.460169580747561, -2.191551826245473], [-49.506971340345444, -2.280189524939203], [-49.553322660472929, -2.5198233231431], [-49.599223541130186, -2.583939536526429], [-49.636566071851519, -2.656844812744964], [-49.575822661331244, -2.631422448493993], [-49.52384634098911, -2.596771568265922], [-49.457466943925681, -2.504530353809628], [-49.407742820935141, -2.344327710979655], [-49.211098526324349, -1.916607968100948], [-49.15484852417859, -1.87857329868126], [-48.991273078485619, -1.829750054631404], [-48.710023067756765, -1.4877456470536], [-48.599994987387618, -1.488646525994284], [-48.529572621419959, -1.567396528998415], [-48.462973497785697, -1.613978562025295], [-48.445867784242466, -1.520375042829585], [-48.349792341124385, -1.482120646839121], [-48.451492784457059, -1.435780313040141], [-48.468148058529948, -1.393922401287114], [-48.477816027648714, -1.323719761890345], [-48.408525253521134, -1.229215363754008], [-48.449691026575863, -1.145521512905134], [-48.306594097288951, -1.039767114339611], [-48.317624371147247, -0.960577658193756], [-48.266548929745738, -0.895099140071011], [-48.201740577664111, -0.827818864066955], [-48.128395848303796, -0.795189468291028], [-48.115124363422524, -0.737599134062862], [-48.068773043294982, -0.713736828465073], [-48.032540131756605, -0.704969738286877], [-47.960997160277429, -0.769547377469053], [-47.883367762784758, -0.693280284716025], [-47.807770836072905, -0.663573252332753], [-47.773790121886066, -0.676844737214026], [-47.731492756991315, -0.71037501193058], [-47.687173907644365, -0.724767102323369], [-47.651171709005439, -0.718702648966996], [-47.557348463238782, -0.669879404917026], [-47.470721262668633, -0.748629407921158], [-47.418744942326441, -0.76594386170666], [-47.432917306148397, -0.721844738930656], [-47.460372141180073, -0.680887706118199], [-47.438992745833275, -0.647599130629658], [-47.398046699349436, -0.626681161081649], [-47.268671694414138, -0.645357919606681], [-47.200490539469513, -0.680448252976419], [-47.126915097209633, -0.745465345300431], [-47.02454448783584, -0.750189466574341], [-46.944443166420854, -0.743443860848345], [-46.893598437918683, -0.779896498957612], [-46.811244919152273, -0.779676772386722], [-46.769848433198092, -0.836607926902275], [-46.644516397167081, -0.916478535417809], [-46.617292275034742, -0.970707053111482], [-46.516272984071861, -0.996788597075124], [-46.421768585935524, -1.030099145220788], [-46.320749294972529, -1.039107934626998], [-46.219048851639855, -1.031219750732305], [-46.214994896407063, -1.099840358818767], [-46.14029884863578, -1.118297390772852], [-46.044673844987983, -1.103004421439437], [-46.007089615038637, -1.146861844987484], [-46.141199727576407, -1.240025911041414], [-46.158964620832137, -1.315853550652776], [-46.123193135092549, -1.34712064168923], [-46.199240501274801, -1.485504436030624], [-46.181244895119619, -1.574823287094205], [-46.199240501274801, -1.677413623038944], [-46.243790063521089, -1.722193898184685], [-46.315344021328883, -1.73098296101989], [-46.301841823548159, -1.802525932499123], [-46.217016380859263, -1.807030327202142], [-46.212522972484635, -1.927396542731231], [-46.279572535589239, -2.141827703254933], [-46.377669463159521, -2.253426828605825], [-46.413440948899051, -2.239913644496539], [-46.408947540524537, -2.387306228244199], [-46.435721223186533, -2.409564529874501], [-46.426943146679776, -2.512396565047197], [-46.484994906706731, -2.547948324215952], [-46.507275180994213, -2.614986900991994], [-46.600867713861305, -2.664051844269977], [-46.667917276965966, -2.739879483881225], [-46.574094031199365, -2.847193941099988], [-46.650141397381617, -2.91401279130514], [-46.636650185929511, -2.985577735441382], [-46.667917276965966, -3.092672466089311], [-46.743744916577327, -3.190780379988041], [-46.824296677462542, -3.329142201672369], [-46.859848436631296, -3.329142201672369], [-46.944673879320192, -3.396202751105534], [-46.966943167279112, -3.525797482611608], [-47.029499322009201, -3.570358031186515], [-47.024994927306068, -3.59712072751995], [-47.065270807748732, -3.842599252509217], [-47.28846905845063, -4.079288714663221], [-47.310749332738055, -4.065797503211058], [-47.333018620696976, -4.164125143680735], [-47.382292304217231, -4.275724269031571], [-47.458119943828592, -4.338280423761717], [-47.489398021193608, -4.423094880122107], [-47.583221266960209, -4.547965490354329], [-47.65454451186838, -4.606017250381342], [-47.801915122958917, -4.597030433632256], [-48.252816019065619, -4.954327810543248], [-48.730490597834375, -5.338168157216899], [-48.721943234227098, -5.355043157860635], [-48.721492794756784, -5.355724310230372], [-48.721492794756784, -5.355944036801247], [-48.597523063465246, -5.398702827494787], [-48.51111558946593, -5.408151070042777], [-48.421566025503012, -5.398483100923954], [-48.356999372649341, -5.424344918316791], [-48.31717393167699, -5.486219920677129], [-48.275316019923991, -5.522452832215549], [-48.231447610047439, -5.533241406845832], [-48.192742774586577, -5.565431349480036], [-48.159223486198584, -5.619198441374863], [-48.181273047586529, -5.672064654329048], [-48.258671732179693, -5.723590535200856], [-48.280040141197958, -5.795814659049739], [-48.24540024729842, -5.888517299304809], [-48.254398050376039, -5.945228727249429], [-48.307044536759349, -5.965926970226505], [-48.321216900581248, -6.006642303810906], [-48.296695415270818, -6.067396700659771], [-48.319415142699995, -6.112396702376316], [-48.389848494996187, -6.141862035531645], [-48.413699814265414, -6.207340553654447], [-48.391199813407098, -6.308832256744807], [-48.410096298502964, -6.357655500794763], [-48.470619982452376, -6.353370832662506], [-48.527320424068449, -6.3722673177584], [-48.579966910451759, -6.414125229511413], [-48.622044548775648, -6.488590564383287], [-48.652872186670379, -6.595707267688226], [-48.805417358505139, -6.71831469424032], [-49.079471324037627, -6.856237062782895], [-49.209747207913466, -7.005651130982585], [-49.195124404621282, -7.168556410634423], [-49.239673966867599, -7.334823506820669], [-49.340473531259647, -7.510099392413281], [-49.333947652104456, -7.649142366467331], [-49.220316055972887, -7.752194128210874], [-49.172393690863544, -7.867396769324316], [-49.189949843877002, -7.994970016378346], [-49.226841935128078, -8.139418264076113], [-49.282641497803553, -8.301422664787339], [-49.378947653821115, -8.498297672297554], [-49.502697658541763, -8.70866389125986], [-49.612945465481772, -8.839181474363713], [-49.707900303088365, -8.894970050710626], [-49.829848549927817, -9.022103844622904], [-49.979240645470441, -9.220099457644579], [-50.08409416509528, -9.421918312999608], [-50.175214774040001, -9.730172719289826], [-50.234848565377348, -9.842672723581373], [-51.297523166462042, -9.789125358257451], [-55.092146113949809, -9.565927107555609], [-56.462624681854408, -9.467599467085961], [-56.489398364516376, -9.467599467085961], [-56.67682512947863, -9.378280616022494], [-56.770648375245202, -9.39627622217769], [-56.837697938349834, -9.271163912717554], [-56.926797062842439, -9.244401216384119], [-57.047393991270965, -9.231129731502847], [-57.074167673932948, -9.18634945635705], [-57.083165477010539, -9.079254725709276], [-57.100941356594888, -9.052470056718775], [-57.297365924634761, -8.958646810952203], [-57.480519007793376, -8.79350032027736], [-57.578615935363601, -8.757948561108677], [-57.641172090093676, -8.615082344721259], [-57.650169893171295, -8.498978824667262], [-57.681447970536325, -8.436422669937187], [-57.641172090093676, -8.231000298819694], [-57.779544898106565, -8.048077928560417], [-57.895648418160548, -7.690780551649439], [-57.94919578348447, -7.619457306741182], [-57.980473860849543, -7.530116483020606], [-58.060794908835419, -7.409530540920628], [-58.136622548446738, -7.338207296012342], [-58.146290517565546, -7.263500261912498], [-58.228424309761195, -7.141552015073032], [-58.385924315769344, -6.949181402265936], [-58.455445802796376, -6.793922607280777], [-58.436769044271415, -6.675797602774665], [-58.374443602440763, -6.57050463000806], [-58.292990962614851, -6.49893968587179], [-56.75714617746452, -3.186495711855869], [-56.391070724046713, -2.391788650290195], [-56.400969406064945, -2.336219800514158], [-56.484893969813299, -2.248922433902749], [-56.498396167593981, -2.159603582839281], [-56.63676897560687, -2.222137764912276], [-56.748368100957777, -2.17737946242363], [-56.743874692583248, -2.052486879534356], [-56.824195740569124, -2.034491273379132], [-57.007348823727739, -1.936405332137454], [-57.087669871713615, -1.81129302267729], [-57.167990919699491, -1.771236868805516], [-57.248322954013915, -1.757745657353368], [-57.275096636675883, -1.713207081435613], [-57.337641805077411, -1.730982961019961], [-57.449240930428331, -1.690926807148188], [-57.565344450482328, -1.623866257715036], [-57.654674287874371, -1.588094771975463], [-57.828598855055944, -1.445228555588045], [-57.900141826535105, -1.422948281300592], [-57.980473860849543, -1.34712064168923], [-58.083075183122816, -1.298077671068427], [-58.159122549305039, -1.235521516338338], [-58.252715082172188, -1.128426785690522], [-58.315271236902262, -1.119417996284355], [-58.39109887651361, -1.048094751376084], [-58.440372560033893, -0.86044825984294], [-58.569747564969148, -0.762340345944182], [-58.627799324996147, -0.766844740647258], [-58.703615978278947, -0.695301769168111], [-58.748396253424673, -0.62397852425984], [-58.739398450347068, -0.432047364594496], [-58.855490984072517, -0.351495603709196], [-58.86449977347867, -0.173077628153081], [-58.850997575697988, -0.083736804432505], [-58.868773455282323, 0.224275902629742] ] ], [ [ [-51.424415261146351, -0.565926764232813], [-51.254094209727157, -0.541405278922355], [-51.160721403430955, -0.6667153422963], [-51.276374484014639, -1.021771508184429], [-51.310124485302083, -1.023792992636515], [-51.465141581059243, -1.211219757598826], [-51.637714829829918, -1.34195706727354], [-51.664949938290761, -1.35476712635591], [-51.832568352888018, -1.433736855930931], [-51.938322751453427, -1.452655313683863], [-51.801971427892624, -1.202452667420573], [-51.68002318105323, -1.086129420795658], [-51.679572741583002, -1.018629418220826], [-51.678221423172033, -0.855042986199237], [-51.546143781414855, -0.649620615081744], [-51.424415261146351, -0.565926764232813] ] ], [ [ [-48.444516465831612, -0.271844721764467], [-48.392770858388872, -0.297267086015552], [-48.379719100078489, -0.352857908448641], [-48.428091904658174, -0.441495607142429], [-48.46387437672621, -0.534879399767249], [-48.497393665114316, -0.664913584415103], [-48.523266468835629, -0.691478526834715], [-48.566695425570458, -0.684491221880705], [-48.539691030009067, -0.80105616773352], [-48.549589712027341, -0.847616228103448], [-48.57096910737414, -0.892857929048034], [-48.624066033227791, -0.986900901385468], [-48.704617794113062, -1.106607937201943], [-48.728469113382289, -1.131788602225015], [-48.7898936762723, -1.173426787407095], [-48.839617799262896, -1.226512726932128], [-48.829048951203447, -1.276478549150681], [-48.804066040094142, -1.326861851853948], [-48.833542359577962, -1.390099158953774], [-48.928947636654925, -1.482340373410011], [-48.985867804841803, -1.504620647697379], [-49.038525277553731, -1.514068890245312], [-49.086898082133416, -1.505082073496283], [-49.172624403762882, -1.412599159812089], [-49.18162220684053, -1.485043010231834], [-49.204792373740077, -1.559068891961942], [-49.234048966653006, -1.599564498975496], [-49.344747213063272, -1.59530180350032], [-49.406622215423624, -1.555465376199436], [-49.506740627445993, -1.511607952651389], [-49.52564809887042, -1.630392136870171], [-49.587973540701, -1.712306202495029], [-49.650518709102585, -1.73816801988778], [-49.748846349572204, -1.755262747102392], [-49.805096351717964, -1.790155326558363], [-49.911290203425153, -1.762931204426195], [-50.010068283365172, -1.708482960161632], [-50.065648119469756, -1.703736866230599], [-50.109296802775475, -1.747857961663669], [-50.338339780262743, -1.755943899472072], [-50.44342401278692, -1.800724174617812], [-50.507540226170363, -1.78789214287832], [-50.602044624306586, -1.697672412874226], [-50.617117867069169, -1.63759916839507], [-50.673367869214928, -1.516090374697455], [-50.723773144575262, -1.371422400428798], [-50.759775343214187, -1.240245637612304], [-50.729398144789741, -1.126844754380102], [-50.668424021370015, -1.130448270142608], [-50.595969184621708, -1.14754299735722], [-50.580445502388898, -1.139457059548818], [-50.576841986626505, -1.103224148010327], [-50.5928161083296, -1.072857935914499], [-50.709589794424801, -1.077801783759355], [-50.783395949583962, -1.01030178118441], [-50.795997268424117, -0.906349140500197], [-50.780924025661591, -0.689896495524408], [-50.771464796785153, -0.645357919606681], [-50.719949902241865, -0.583482917246329], [-50.703074901598086, -0.528573247182862], [-50.71589594700913, -0.470301760585016], [-50.693615672721648, -0.364547362019607], [-50.645473581041415, -0.272745600705093], [-50.461650331841668, -0.157323233020861], [-50.248339776829539, -0.116366200208404], [-49.628699860614006, -0.229107903727936], [-49.535096341418296, -0.233590325773889], [-49.402798973090228, -0.214693840678137], [-49.314370014638882, -0.167892081080254], [-49.215141495228636, -0.158663565103154], [-49.117044567658297, -0.163629385605191], [-48.786520873409302, -0.215594719618707], [-48.588074820917257, -0.231568841321803], [-48.51540025759806, -0.248224115394692], [-48.444516465831612, -0.271844721764467] ] ], [ [ [-50.765169630529329, -0.040780259825112], [-50.66707270295916, -0.058094713610558], [-50.650648141785723, -0.105797352149011], [-50.652900339137261, -0.131681142198886], [-50.926273152299984, -0.327413571540546], [-51.01896480622645, -0.26307763158627], [-51.038092004221767, -0.22594384110721], [-51.022348595418066, -0.188370597486426], [-51.025721398281121, -0.172396475783273], [-50.995124473285784, -0.105357899007231], [-50.84211787565215, -0.050228502372988], [-50.765169630529329, -0.040780259825112] ] ], [ [ [-49.503367824582938, 0.083650897265329], [-49.400546775738803, 0.057327654073731], [-49.372421774665895, 0.001077651927972], [-49.380969138273201, -0.055392076788678], [-49.443964746145014, -0.112323231304231], [-49.708790195700431, -0.143832021568699], [-49.830068276498707, -0.093866199350146], [-49.802624427795536, -0.051788561026285], [-49.712393711462937, 0.015030289178867], [-49.602145904522899, 0.06273292771732], [-49.503367824582938, 0.083650897265329] ] ], [ [ [-49.878891520548677, 0.304607936944308], [-49.738266515184193, 0.26815529883487], [-49.697320468700354, 0.215948265593283], [-49.839066079576355, 0.006922378713398], [-49.917145916539141, -0.023224106811597], [-50.002421798698435, -0.02928856016797], [-50.113120045108758, 0.033025895334163], [-50.285693293879376, 0.028532486959705], [-50.339471372102707, 0.043375016822665], [-50.3450963723173, 0.134506612095947], [-50.272641535568994, 0.231702660725603], [-50.127973561300337, 0.226528099981408], [-49.878891520548677, 0.304607936944308] ] ], [ [ [-50.350941099102783, 0.5818039924402], [-50.342624448394929, 0.381556182067072], [-50.33227532690637, 0.258926782857827], [-50.42609857267297, 0.139230733370027], [-50.443874452257262, -0.007700424578843], [-50.623874459123726, 0.054405290681018], [-50.610372261343059, 0.204698265164097], [-50.526216984695338, 0.247006616387409], [-50.451520936923941, 0.326877224903058], [-50.42609857267297, 0.424974152473396], [-50.424516541362607, 0.558172399741864], [-50.39684197976004, 0.581353552969972], [-50.372770933919924, 0.590801795517962], [-50.350941099102783, 0.5818039924402] ] ], [ [ [-50.098716968387407, 0.625002236275577], [-50.058891527415085, 0.63805399458596], [-50.036841966027168, 0.594855750750639], [-50.039995042319219, 0.522851353472561], [-50.15294548608108, 0.393025909067035], [-50.261391535139808, 0.359275907779647], [-50.281650324975203, 0.390773711715553], [-50.281650324975203, 0.516556187216906], [-50.251273126550757, 0.58540750820282], [-50.112900318537868, 0.604754432768857], [-50.098716968387407, 0.625002236275577] ] ] ] } }, { "type": "Feature", "properties": { "population": 2620, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-50.96429683539111, -19.511366940069024], [-50.997596397208241, -19.663923098232331], [-50.99377315487493, -20.101552509457804], [-51.063964807943137, -20.223039330498423], [-51.160721403430983, -20.306513454776464], [-51.396971412443207, -20.441755159154269], [-51.534223614944608, -20.55761697998031], [-51.593165267583686, -20.666513468509322], [-51.619049057633561, -20.806918747302916], [-51.691943347523647, -20.943720510334003], [-51.811419670440642, -21.077138484173474], [-51.866318354175519, -21.18267315616805], [-51.856650385056696, -21.260082827089718], [-51.872844233330682, -21.32982404068764], [-51.936290280672836, -21.422746407513614], [-51.954747312626921, -21.469548167111469], [-51.989848632325305, -21.493630199280119], [-52.047669679452866, -21.510944653065621], [-52.072641604233596, -21.554142896900998], [-52.064995119566902, -21.622763504987418], [-52.12259644012363, -21.718168782064367], [-52.245665292474555, -21.840358728131761], [-52.338818372199967, -21.957341154469304], [-52.402495132441516, -22.069181979048096], [-52.566070578134543, -22.207324074161647], [-52.960721472095528, -22.454824083603015], [-53.116199993651563, -22.639987664885183], [-53.272348681248786, -22.752048216034964], [-53.480693415759006, -22.852397340956728], [-53.619967102712508, -23.001130256786681], [-53.677348696698317, -23.173483778986451], [-53.771171942464889, -23.322194722159324], [-53.907523266025649, -23.407031151176824], [-53.995490798678219, -23.570156157399552], [-54.050169755842191, -23.822819741256652], [-54.124646077042598, -23.978517989383576], [-54.242540368649287, -24.046918870899106], [-54.370794768073054, -23.971091231287758], [-54.440316255100086, -23.901789470831602], [-54.529646092492129, -23.852065347841034], [-54.625490822710816, -23.812470619768121], [-54.671842142838358, -23.829125893840967], [-54.72134653925805, -23.852065347841034], [-54.817191269476737, -23.888517985950344], [-54.926549183804653, -23.951293867251295], [-54.982568473051003, -23.974475020479346], [-55.081796992461264, -23.997656173707384], [-55.194296996752797, -24.017453537743847], [-55.286999637007881, -24.004401779433451], [-55.366419806053145, -23.991130294552192], [-55.415924202472837, -23.951293867251295], [-55.442467172235368, -23.865358805379387], [-55.442467172235368, -23.792673255731657], [-55.458891733408791, -23.686699130595315], [-55.518525524746138, -23.627307038485938], [-55.538322888782602, -23.580944732029849], [-55.541695691645629, -23.524694729884089], [-55.534950085919562, -23.461918848583124], [-55.518525524746138, -23.41557851478413], [-55.52842420676437, -23.359328512638371], [-55.554747449956025, -23.319733784565443], [-55.54822157080082, -23.250190324881331], [-55.561493055682092, -23.154345594662644], [-55.601098770083553, -23.094733775982377], [-55.620896134120017, -23.02519031629825], [-55.620896134120017, -22.955888555842108], [-55.650822893074135, -22.886367068815062], [-55.653964983037739, -22.810319702632839], [-55.627641739846084, -22.741017942176683], [-55.617743057827866, -22.671496455149651], [-55.647450090211095, -22.621772332159082], [-55.703700092356854, -22.59206529977584], [-55.746667623292822, -22.512656117059123], [-55.753193502448013, -22.410043808457274], [-55.799544822575541, -22.353793806311515], [-55.849268945566124, -22.307673199083396], [-55.905299221141007, -22.307673199083396], [-55.991464995912352, -22.281130229320866], [-56.067523348423123, -22.284492045855359], [-56.189922034732888, -22.281130229320866], [-56.245941323979224, -22.264694681818895], [-56.275868082933343, -22.228242043709585], [-56.351915449115566, -22.178517920719017], [-56.394893966380067, -22.092582858847109], [-56.4477711656628, -22.076147311345139], [-56.523818531845023, -22.102470554536794], [-56.550372487936102, -22.135539403454516], [-56.580068533990783, -22.181901709910591], [-56.632945733273516, -22.234767922864776], [-56.702467220300548, -22.231625832901173], [-56.775141783619745, -22.261332865284402], [-56.844674256975324, -22.264694681818895], [-56.93714618433097, -22.271220560974086], [-57.02984882458604, -22.244897317782446], [-57.142348828877573, -22.214970558828327], [-57.23819355909626, -22.195173194791863], [-57.330896199351344, -22.214970558828327], [-57.393672080652294, -22.198315284755481], [-57.476465052560599, -22.188647315636672], [-57.568947966244792, -22.181901709910591], [-57.641622529563989, -22.129013524299324], [-57.721042698609253, -22.099328464573176], [-57.764021215873754, -22.109216160262861], [-57.820271218019514, -22.142306981837677], [-57.879894023028328, -22.135539403454516], [-57.955941389210551, -22.109216160262861], [-57.98564842159378, -22.04644027896191], [-57.979122542438589, -22.006625824318107], [-57.962467268365742, -21.967031096245179], [-57.932771222311047, -21.91078109409942], [-57.94941551005536, -21.851147302762072], [-57.942669904329279, -21.798281089807887], [-57.92939841944802, -21.751918783351798], [-57.9161159482382, -21.699052570397612], [-57.926245343155855, -21.649548173977919], [-57.92939841944802, -21.596681961023734], [-57.936144025174087, -21.546957838033165], [-57.946042707192319, -21.494069652421885], [-57.906217266219969, -21.418022286239662], [-57.873148417302247, -21.355026678367821], [-57.893165507909586, -21.302138492756541], [-57.886419902183519, -21.265927553875201], [-57.860096658991864, -21.206293762537854], [-57.827016823745595, -21.133630185547219], [-57.830169900037745, -20.997949028027634], [-57.860096658991864, -20.918517872653823], [-57.892275615297521, -20.897138477307024], [-57.90059226600539, -20.873078417795455], [-57.884848857201703, -20.841789354101863], [-57.901943584416316, -20.809401657553877], [-57.908469463571507, -20.776332808636155], [-57.891374736356894, -20.747526655193525], [-57.915215069297588, -20.690375774107153], [-57.962467268365742, -20.673720500034307], [-57.979122542438589, -20.657306925189417], [-57.995547103612012, -20.594531043888466], [-58.008818588493284, -20.521625767669846], [-58.002292709338079, -20.465375765524072], [-58.02547386256613, -20.41587136910438], [-58.058542711483852, -20.386164336721151], [-58.091391833830698, -20.333298123766966], [-58.124691395647844, -20.293483669123162], [-58.13774315395824, -20.237233666977403], [-58.159792715346228, -20.164548117329659], [-58.093644031182237, -20.15105690587751], [-58.067540514561472, -20.110319599636014], [-58.021200180762477, -20.055190203001743], [-57.960215071014204, -20.040798112608982], [-57.887540507695007, -20.020319596202782], [-57.860766825033053, -19.979604262618366], [-58.029967270940659, -19.832673104669638], [-58.131447987702472, -19.744474859117645], [-58.072044909264548, -19.62522924910003], [-57.971695784342785, -19.424289300028533], [-57.874499735713172, -19.229457749627542], [-57.800473853983064, -19.080944560368465], [-57.78134665598779, -19.053500711665322], [-57.7167690168056, -19.044052469117403], [-57.72870016960448, -18.967323950565444], [-57.730941380627485, -18.917138401776015], [-57.783148413869014, -18.914216038383287], [-57.725096653842016, -18.733095426005335], [-57.639150605641561, -18.475026568504532], [-57.574122526989058, -18.279272166505848], [-57.553193571112558, -18.246423044159002], [-57.506172084943842, -18.237194528181959], [-57.495592250555873, -18.214694527323658], [-57.55207296560107, -18.183207709716271], [-57.586493132929718, -18.122233586296545], [-57.661650606499876, -17.947397153845813], [-57.75322165491491, -17.734767751203393], [-57.752771215444596, -17.734548024632517], [-57.632174287016056, -17.739953298276205], [-57.600896209651026, -17.816000664458443], [-57.493790492674634, -17.869548029782365], [-57.471521204715756, -17.900595394247972], [-57.41932515780276, -17.882138362293887], [-57.369820761383068, -17.875612483138696], [-57.198598831023347, -17.812397148695979], [-57.079792674147498, -17.734328298061641], [-56.980124701595471, -17.594823898208716], [-56.887422061340402, -17.517875653085866], [-56.789995299811366, -17.386017737899635], [-56.745215024665626, -17.316957676671464], [-56.6680470529719, -17.320319493205957], [-56.489398364516376, -17.302543613621609], [-56.435840012863906, -17.320319493205957], [-56.328745282216062, -17.284548007466384], [-56.248424234230185, -17.217729157261189], [-56.101042636811144, -17.186440093567612], [-56.024995270628921, -17.213224762558113], [-55.984950103085694, -17.266772127882035], [-55.833075097292124, -17.311332676456885], [-55.788525535045821, -17.351608556899535], [-55.609865860261749, -17.391862464685104], [-55.534049206978949, -17.503483562693106], [-55.337624638939062, -17.583793624350449], [-55.181245238442415, -17.686405932952297], [-55.07415050779457, -17.681901538249207], [-54.899995227713575, -17.650612474555629], [-54.810896103220969, -17.601569503934783], [-54.779618025855925, -17.557030928017028], [-54.699296977870048, -17.516755047574378], [-54.525141697789053, -17.512250652871302], [-54.422320648944861, -17.579289229647358], [-54.391273284479254, -17.673112475413944], [-54.31971932667156, -17.673112475413944], [-54.234893883982593, -17.637340989674357], [-54.145575032919112, -17.628354172925299], [-54.08324959108846, -17.588298019053525], [-54.03846931594272, -17.512250652871302], [-53.949150464879224, -17.45870328754738], [-53.819775459943969, -17.307048008324685], [-53.743947820332622, -17.253500643000763], [-53.681391665602547, -17.257763338475868], [-53.752714910510804, -17.641845384377447], [-53.859820627487196, -17.690888354998279], [-53.989415358993341, -17.900595394247972], [-53.975924147541193, -17.931862485284469], [-53.868818430564801, -17.945375669393698], [-53.72594122784885, -18.007931824123787], [-53.60534429942031, -17.994418640014544], [-53.493745174069389, -18.012414246169769], [-53.306318409107135, -17.99892303471762], [-53.145665326806835, -18.030190125754118], [-53.065344278820945, -18.021203309005045], [-53.051842081040249, -18.016698914301969], [-53.042844277962644, -18.097250675187283], [-53.056346475743339, -18.293664256898609], [-53.034066201455914, -18.356000685057808], [-52.989296912638721, -18.387267776094305], [-52.908964878324298, -18.347233594879611], [-52.784094268092119, -18.391772170797381], [-52.788598662795195, -18.463095415705638], [-52.84641970992277, -18.534638387184799], [-52.891199985068496, -18.637250695786648], [-52.868919710781071, -18.682030970932374], [-52.761594267233804, -18.708793667265795], [-52.6144433827142, -18.722065152147053], [-52.498339862660202, -18.704289272562704], [-52.341971448492089, -18.815888397913625], [-52.270648203583818, -18.811405975867643], [-52.096492923502822, -18.896220432228048], [-52.060721437763249, -18.945263402848894], [-51.91357055324363, -18.99004367799462], [-51.84201659543595, -19.048095438021619], [-51.641098619021534, -19.128427472336043], [-51.542990705122776, -19.137414289085115], [-51.404617897109887, -19.168483626207816], [-51.310794651343315, -19.253298082568236], [-51.136650357590867, -19.284565173604733], [-51.034049035317565, -19.369401602622233], [-50.96429683539111, -19.511366940069024] ] ] ] } }, { "type": "Feature", "properties": { "population": 751, "fill": "#fff" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-51.888148188992545, -1.160375029096713], [-51.984893798151859, -1.141698270571794], [-52.051943361256519, -1.177469756311268], [-52.132275395570957, -1.15070705997789], [-52.239370126218773, -1.146202665274814], [-52.359967054647313, -1.070375025663452], [-52.39124513201233, -0.954271505609483], [-52.368745131153958, -0.923004414573029], [-52.400023208519087, -0.869457049249036], [-52.516115742244551, -0.873939471295046], [-52.507348652066355, -0.731073254907699], [-52.525124531650647, -0.646236825890128], [-52.605445579636523, -0.610465340150597], [-52.63221926229852, -0.556917974826604], [-52.627714867595444, -0.396275878854851], [-52.699268825403124, -0.302452633088365], [-52.828643830338422, -0.181844718331263], [-52.913469273027374, -0.190853507737359], [-52.976025427757463, -0.016698227656377], [-53.016070595300675, 0.054625017251851], [-53.007292518793975, 0.134957051566346], [-53.042844277962672, 0.246556176917181], [-53.127669720651625, 0.384928984930184], [-53.141171918432292, 0.536803990723683], [-53.114398235770352, 0.719957073882256], [-53.132174115354644, 0.751004438347934], [-53.266273241563908, 0.782282515712836], [-53.41791753445807, 0.94315532458404], [-53.466971491407435, 1.152851377505215], [-53.408919731380422, 1.184129454870344], [-53.440197808745438, 1.259957094481592], [-53.538525449215058, 1.2421812148973], [-53.556290342470902, 1.367282538028917], [-53.650124574566064, 1.362778143325841], [-53.659122377643598, 1.420829903352796], [-53.739443425629474, 1.434101388234183], [-53.757219305213823, 1.394056220690743], [-53.891098704852141, 1.407327705572129], [-53.922365795888709, 1.460875070896009], [-54.007191238577661, 1.523431225626041], [-54.078745196385341, 1.505655346041749], [-54.083249591088475, 1.541207105210503], [-54.172348715580995, 1.657299638935967], [-54.203615806617563, 1.657299638935967], [-54.364499601817215, 1.760131674108663], [-54.498368015127028, 1.746629476328053], [-54.578700049441466, 1.782400962067584], [-54.73484873703876, 1.773403158989879], [-54.766115828075158, 1.898504482121496], [-54.7616224197007, 1.969827727029838], [-54.792900497065716, 2.010103607472502], [-54.752844343193885, 2.081426852380673], [-54.78839610236264, 2.130480809330038], [-54.717072857454411, 2.264579935539416], [-54.73484873703876, 2.416224228433464], [-54.714820660102873, 2.425002304940222], [-54.702900493632512, 2.397997909378716], [-54.697495219988809, 2.359754499716871], [-54.661943460820055, 2.327575543411285], [-54.61627329306225, 2.326674664470602], [-54.591971534322738, 2.313853619059614], [-54.550575048368614, 2.293155376082495], [-54.515023289199917, 2.245452737543985], [-54.433120209903677, 2.207429054452973], [-54.293165370580425, 2.154332128599378], [-54.227917565357018, 2.153431249658695], [-54.167393881407634, 2.137006688485371], [-54.13004036435774, 2.121032566782276], [-54.089775470243637, 2.150497899937534], [-53.946447828057387, 2.232631692133054], [-53.876695628130904, 2.27830185989086], [-53.829443429062678, 2.312952740118931], [-53.794342109364379, 2.346032575365257], [-53.767799139601777, 2.354799665543339], [-53.750242986588376, 2.335002301507075], [-53.734719304355565, 2.308448345415854], [-53.683643862954057, 2.292924663183044], [-53.563947813466143, 2.261877298717536], [-53.509049129731295, 2.253099222210778], [-53.431870171709022, 2.279422465402376], [-53.365941214115935, 2.324202740548117], [-53.334443410180029, 2.339726422780984], [-53.285400439559169, 2.295176860534639], [-53.252089891413391, 2.232181252662826], [-53.229820603454584, 2.204957130530545], [-53.180096480463988, 2.21125229678637], [-53.082219279464653, 2.20180405423838], [-53.009775429044907, 2.181775977302436], [-52.964775427328277, 2.18357773518369], [-52.903570591009156, 2.211483009685821], [-52.87049075576283, 2.266601419991446], [-52.783424102050844, 2.317226421922612], [-52.700620143814092, 2.363577742050097], [-52.653148218174977, 2.425672470981453], [-52.582945578778208, 2.528954945624434], [-52.559544698979323, 2.573054068400438], [-52.554589864805905, 2.647750116171721], [-52.455822771194505, 2.864202761147453], [-52.418469254144611, 2.903797489220437], [-52.396419692756581, 2.972198370735896], [-52.356594251784259, 3.051629526109878], [-52.356594251784259, 3.117778210273684], [-52.327799084670232, 3.181674697086237], [-52.271318369624964, 3.237023820291483], [-52.229471444200556, 3.271674700519384], [-52.162641607666842, 3.364608053674033], [-52.116070560968353, 3.452355859755698], [-51.9995166014441, 3.64697866991429], [-51.990518798366452, 3.702108066548533], [-51.944398191138305, 3.735176915466184], [-51.928874508905551, 3.77702384089082], [-51.879589839056678, 3.828549721762442], [-51.827393792143766, 3.869506754575013], [-51.805344230755679, 3.930030438524398], [-51.767089834765216, 3.992575606925811], [-51.683395983916284, 4.039608079423203], [-51.652568346021496, 4.061207201340892], [-51.557844221314383, 4.233780450111567], [-51.547044660355539, 4.310948421805278], [-51.461549051625411, 4.313881771526439], [-51.326999485945862, 4.224782647033805], [-51.219893768969428, 4.093605884217311], [-51.076346400212287, 3.671730868124087], [-51.052495080943118, 3.281804095437053], [-50.994223594345158, 3.07750232983102], [-50.827275345789133, 2.651804071404399], [-50.816464798501727, 2.573054068400438], [-50.789691115839787, 2.477879504222983], [-50.737044629456477, 2.376849226931483], [-50.678773142858631, 2.210351417845686], [-50.676520945507036, 2.179523779951012], [-50.714324902027272, 2.134073338763983], [-50.658964792493578, 2.130931248800493], [-50.608790230032696, 2.104157566138497], [-50.575941107685878, 1.998622894143864], [-50.534324895160751, 1.927299649235522], [-50.458947695019731, 1.829653161135639], [-50.304370052404295, 1.797704917729448], [-50.187596366309151, 1.786004477830033], [-50.05461784561146, 1.730655354624787], [-49.957191084082353, 1.6597825491869], [-49.881594157370444, 1.419929024412284], [-49.906346355580297, 1.268954897559297], [-49.898919597484564, 1.162980772422884], [-49.937844159516317, 1.121353573569309], [-50.047191087515671, 1.052051813113167], [-50.071042406784898, 1.015148735533614], [-50.294471370386134, 0.835829881036886], [-50.343294614436104, 0.751004438347934], [-50.462990663924018, 0.63737284221628], [-50.581566107900471, 0.420480744098768], [-50.755040235611716, 0.22247414474856], [-50.816245071930837, 0.17253029518713], [-50.910068317697437, 0.161049581858492], [-50.966999472212933, 0.130232930292266], [-51.101999477362767, -0.03133201727718], [-51.282900363169858, -0.085099109171949], [-51.299544650914186, -0.17892235493855], [-51.404167457639517, -0.392672363092458], [-51.496199931853425, -0.509457035516164], [-51.554921857921613, -0.549051763589034], [-51.702742908482492, -0.762340345944153], [-51.72141966700741, -0.855504411998083], [-51.720518788066784, -1.018387718992813], [-51.819066155107294, -1.117857937631129], [-51.888148188992545, -1.160375029096713] ] ], [ [ [-50.362641539002311, 2.154551855170212], [-50.341943296025136, 2.141730809759224], [-50.291999446463706, 1.979506682477108], [-50.298964778760705, 1.938549649664708], [-50.398874450540688, 1.892879481906903], [-50.456025331627075, 1.910424648591913], [-50.508891544581275, 2.029450532038538], [-50.491115664996926, 2.128679051448842], [-50.418671814577067, 2.161528173795716], [-50.362641539002311, 2.154551855170212] ] ] ] } }, { "type": "Feature", "properties": { "population": 3224, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-60.724792813193218, -13.662948748219577], [-60.659094568499526, -13.601513199001005], [-60.382348952473777, -13.418590828741813], [-60.351070875108732, -13.271220217651319], [-60.275023508926509, -13.137340818012973], [-60.270749827122856, -13.070302241236917], [-60.194691474612085, -12.972194327338144], [-60.083092349261165, -12.927414052192404], [-60.043047181717938, -12.873866686868496], [-60.002771301275288, -12.731000470481078], [-59.908948055508716, -12.619401345130157], [-59.82412261281975, -12.387194305022163], [-59.891172175924368, -12.244547815205635], [-59.886667781221291, -12.128444295151638], [-59.931448056367017, -12.052396928969401], [-59.98499542169094, -11.918517529331055], [-60.060823061302287, -11.905246044449797], [-60.101098941744937, -11.744362249250059], [-60.101098941744937, -11.601496032862656], [-60.025040589234166, -11.534677182657461], [-59.908948055508716, -11.382802176863891], [-60.002771301275288, -11.146332441280791], [-60.069820864379906, -11.115043377587199], [-60.176915595027737, -11.119547772290289], [-60.279516917301038, -11.079271891847625], [-60.382348952473777, -11.10155216613505], [-60.440400712500775, -11.038996011404976], [-60.440400712500775, -11.003444252236292], [-61.471566523321002, -10.998939857533202], [-61.520620480270395, -10.954181555044556], [-61.507348995389123, -10.878353915433223], [-61.520620480270395, -10.789013091712633], [-61.471566523321002, -10.757746000676136], [-61.502844600686046, -10.686422755767879], [-61.471566523321002, -10.436439836075536], [-61.565400755416121, -10.262306528651621], [-61.569674437219774, -10.061366579580124], [-61.534122678051077, -9.994547729374943], [-61.520620480270395, -9.860448603165707], [-61.565400755416121, -9.726569203527362], [-61.520620480270395, -9.704288929239937], [-61.480575312727169, -9.63725035246388], [-61.551898557635425, -9.463095072382885], [-61.547394162932349, -9.409547707058962], [-61.609950317662424, -9.320448582566343], [-61.592174438078075, -9.239896821681043], [-61.529618283348, -9.226625336799771], [-61.556391966009969, -9.128297696330122], [-61.529618283348, -8.998922691394853], [-61.484848994530822, -8.914108235034448], [-61.507348995389123, -8.847047685601282], [-61.609950317662424, -8.766715651286859], [-58.547467290681723, -8.74893977170251], [-58.471650637398923, -8.690888011675511], [-58.426650635682307, -8.523038884178831], [-58.397174316198502, -8.415504700389221], [-58.354415525504876, -8.27600030053631], [-58.328773434682958, -8.050538866154383], [-58.353525632892811, -7.905870891885741], [-58.330344479664774, -7.780099402712935], [-58.259471674226816, -7.67322439863598], [-58.223919915058119, -7.574677031595442], [-58.223700188487229, -7.484677028162224], [-58.201870353670117, -7.414474388765456], [-58.136622548446738, -7.338207296012342], [-58.060794908835419, -7.409530540920628], [-57.980473860849543, -7.530116483020606], [-57.94919578348447, -7.619457306741182], [-57.895648418160548, -7.690780551649439], [-57.779544898106565, -8.048077928560417], [-57.641172090093676, -8.231000298819694], [-57.681447970536325, -8.436422669937187], [-57.650169893171295, -8.498978824667262], [-57.641172090093676, -8.615082344721259], [-57.578615935363601, -8.757948561108677], [-57.480519007793376, -8.79350032027736], [-57.297365924634761, -8.958646810952203], [-57.100941356594888, -9.052470056718775], [-57.083165477010539, -9.079254725709276], [-57.074167673932948, -9.18634945635705], [-57.047393991270965, -9.231129731502847], [-56.926797062842439, -9.244401216384119], [-56.837697938349834, -9.271163912717554], [-56.770648375245202, -9.39627622217769], [-56.67682512947863, -9.378280616022494], [-56.489398364516376, -9.467599467085961], [-56.462624681854408, -9.467599467085961], [-55.092146113949809, -9.565927107555609], [-51.297523166462042, -9.789125358257451], [-50.234848565377348, -9.842672723581373], [-50.337449887650649, -10.034362184018732], [-50.395270934778239, -10.176788947264384], [-50.402697692874028, -10.258241587090311], [-50.454674013216163, -10.388517470966192], [-50.550749456334273, -10.567177145750264], [-50.59912226091393, -10.689806544959453], [-50.610372261343059, -11.000983314642411], [-50.64524286814202, -11.162746016125666], [-50.708018749442999, -11.345668386384844], [-50.716566113050305, -11.482689875986807], [-50.671346384762813, -11.573832457588622], [-50.66572138454822, -11.651901308222961], [-50.717466991990904, -11.749108343181121], [-50.661447702744567, -11.853500437007099], [-50.653570505178465, -11.922340771664409], [-50.67471918762584, -11.990082473467297], [-50.667523142429445, -12.112030720306748], [-50.631740670361324, -12.288646937981625], [-50.629268746438925, -12.437379853811592], [-50.660546823803969, -12.558207495139541], [-50.655372263059689, -12.666862284440654], [-50.613964790777004, -12.763388167029063], [-50.566042425667661, -12.819638169174837], [-50.484820498741158, -12.842599595831999], [-50.566042425667661, -13.014733391460879], [-50.595068305681139, -13.130814938857782], [-50.598441108544193, -13.249401369162754], [-50.666622263488847, -13.409604011992741], [-50.799589797858033, -13.611862320489536], [-50.860574907606292, -13.806056663834966], [-50.851796831099563, -13.995043487450488], [-50.867540239903263, -14.095172885801375], [-50.908497272715636, -14.107323765171145], [-50.941115682163058, -14.200927284366827], [-50.977568320272354, -14.46328080999983], [-51.114370083303442, -14.837892640696381], [-51.18861569160444, -14.976496161608694], [-51.246217012161139, -15.004401436110683], [-51.286273166032885, -15.002819404800334], [-51.471447733643629, -15.044215890754487], [-51.589792464720603, -15.141422925712646], [-51.664719225391337, -15.261349688099983], [-51.695997302756382, -15.403315025546789], [-51.731999501395393, -15.490392665587279], [-51.772714834979809, -15.52280233479236], [-51.788249503541152, -15.556991789221584], [-51.778790274664686, -15.592763274961158], [-51.798598625029683, -15.656220308631859], [-51.847421869079653, -15.747121191005704], [-51.961492918352974, -15.819125588283697], [-52.142393804160051, -15.872672953607619], [-52.256695566332823, -15.93566856147946], [-52.308441173775506, -16.009254990067816], [-52.361768812528553, -16.058297960688648], [-52.416667496263386, -16.082379992857312], [-52.538396016531962, -16.168556753957191], [-52.534122334728309, -16.226608513984189], [-52.667990748038108, -16.289142696057183], [-52.681273219247927, -16.36046594096544], [-52.6144433827142, -16.427526490398606], [-52.679921900837002, -16.576017707000588], [-52.789049102265494, -16.704953258794092], [-52.942714879611756, -16.813630020752285], [-53.024167519437682, -16.910375629911584], [-53.033165322515288, -16.995190086272004], [-53.077945597661028, -17.094638332253155], [-53.158266645646904, -17.208720367855037], [-53.202596481322331, -17.304125644931958], [-53.21137455782906, -17.409198891127687], [-53.115068401811527, -17.854914240161619], [-53.051842081040249, -18.016698914301969], [-53.065344278820945, -18.021203309005045], [-53.145665326806835, -18.030190125754118], [-53.306318409107135, -17.99892303471762], [-53.493745174069389, -18.012414246169769], [-53.60534429942031, -17.994418640014544], [-53.72594122784885, -18.007931824123787], [-53.868818430564801, -17.945375669393698], [-53.975924147541193, -17.931862485284469], [-53.989415358993341, -17.900595394247972], [-53.859820627487196, -17.690888354998279], [-53.752714910510804, -17.641845384377447], [-53.681391665602547, -17.257763338475868], [-53.743947820332622, -17.253500643000763], [-53.819775459943969, -17.307048008324685], [-53.949150464879224, -17.45870328754738], [-54.03846931594272, -17.512250652871302], [-54.08324959108846, -17.588298019053525], [-54.145575032919112, -17.628354172925299], [-54.234893883982593, -17.637340989674357], [-54.31971932667156, -17.673112475413944], [-54.391273284479254, -17.673112475413944], [-54.422320648944861, -17.579289229647358], [-54.525141697789053, -17.512250652871302], [-54.699296977870048, -17.516755047574378], [-54.779618025855925, -17.557030928017028], [-54.810896103220969, -17.601569503934783], [-54.899995227713575, -17.650612474555629], [-55.07415050779457, -17.681901538249207], [-55.181245238442415, -17.686405932952297], [-55.337624638939062, -17.583793624350449], [-55.534049206978949, -17.503483562693106], [-55.609865860261749, -17.391862464685104], [-55.788525535045821, -17.351608556899535], [-55.833075097292124, -17.311332676456885], [-55.984950103085694, -17.266772127882035], [-56.024995270628921, -17.213224762558113], [-56.101042636811144, -17.186440093567612], [-56.248424234230185, -17.217729157261189], [-56.328745282216062, -17.284548007466384], [-56.435840012863906, -17.320319493205957], [-56.489398364516376, -17.302543613621609], [-56.6680470529719, -17.320319493205957], [-56.745215024665626, -17.316957676671464], [-56.789995299811366, -17.386017737899635], [-56.887422061340402, -17.517875653085866], [-56.980124701595471, -17.594823898208716], [-57.079792674147498, -17.734328298061641], [-57.198598831023347, -17.812397148695979], [-57.369820761383068, -17.875612483138696], [-57.41932515780276, -17.882138362293887], [-57.471521204715756, -17.900595394247972], [-57.493790492674634, -17.869548029782365], [-57.600896209651026, -17.816000664458443], [-57.632174287016056, -17.739953298276205], [-57.752771215444596, -17.734548024632517], [-57.75322165491491, -17.734767751203393], [-57.78021506414774, -17.671772143331552], [-57.788773414083593, -17.573005049720138], [-57.832422097389284, -17.512030926300412], [-57.90509666070848, -17.532267743478641], [-57.990822982338045, -17.512931805241024], [-58.205473869432581, -17.363078283899569], [-58.347669919778809, -17.282065097215408], [-58.396042724358452, -17.234362458676955], [-58.417422119705265, -17.08046596843127], [-58.459719484600029, -16.91081508305335], [-58.478165530225567, -16.700668590661891], [-58.470519045558873, -16.650263315301586], [-58.350372556600647, -16.490741824841322], [-58.35082299607096, -16.410190063956023], [-58.340473874582429, -16.339987424559254], [-58.345648435326694, -16.284418574783217], [-58.375344481381376, -16.283517695842605], [-58.423717285961033, -16.307819454582145], [-58.496622562179653, -16.326715939677982], [-58.538019048133805, -16.328297970988331], [-58.957191427405206, -16.313224728225833], [-59.43419584013273, -16.295888301783251], [-59.831098931445254, -16.281715937961366], [-60.175575262945358, -16.26934533202072], [-60.187275702844815, -16.132104115847881], [-60.206622627410979, -15.901918560192001], [-60.220344551762551, -15.738573827398397], [-60.242394113150553, -15.479604090956983], [-60.380547194592538, -15.318280842615493], [-60.530400715934007, -15.143224683593871], [-60.583266928888193, -15.098224681877269], [-60.401915603610803, -15.092819408233566], [-60.27344147761616, -15.088776439329337], [-60.298874828195736, -14.618517632327894], [-60.33801911679835, -14.57059526721855], [-60.372669997026435, -14.41872026142498], [-60.396290603396238, -14.332763226895977], [-60.460198076537239, -14.263022013298055], [-60.47459016693, -14.184733436092841], [-60.462900713359076, -14.132526402851298], [-60.428019120231582, -14.099897007075342], [-60.405068679902968, -14.019125519619152], [-60.422394120017003, -13.937892606364102], [-60.460198076537239, -13.862306665980739], [-60.506549396664767, -13.789840842903885], [-60.595198081687073, -13.745302266986116], [-60.722320889270804, -13.664289080301955], [-60.724792813193218, -13.662948748219577] ] ] ] } }, { "type": "Feature", "properties": { "population": 11082, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-54.242540368649287, -24.046918870899106], [-54.124646077042598, -23.978517989383576], [-54.050169755842191, -23.822819741256652], [-53.995490798678219, -23.570156157399552], [-53.907523266025649, -23.407031151176824], [-53.771171942464889, -23.322194722159324], [-53.677348696698317, -23.173483778986451], [-53.619967102712508, -23.001130256786681], [-53.480693415759006, -22.852397340956728], [-53.272348681248786, -22.752048216034964], [-53.116199993651563, -22.639987664885183], [-53.044415322944445, -22.636406121779814], [-52.949240758766962, -22.570466177858123], [-52.694775417028623, -22.601513542323772], [-52.6144433827142, -22.570466177858151], [-52.520620136947628, -22.615026726433001], [-52.44479249733628, -22.601513542323772], [-52.315197765830135, -22.619531121136077], [-52.261650400506213, -22.601513542323772], [-52.217089851931362, -22.641789422766422], [-52.16354248660744, -22.601513542323772], [-52.141273198648562, -22.543483754953854], [-52.065214846137792, -22.521203480666429], [-51.984893798151916, -22.54796617699985], [-51.873294672800995, -22.610522331729925], [-51.743919667865725, -22.619531121136077], [-51.69464598434547, -22.664069697053776], [-51.641098619021534, -22.650798212172575], [-51.547495099825852, -22.686349971341272], [-51.35534421358966, -22.65079821217256], [-51.181419646408045, -22.739897336665194], [-51.002770957952521, -22.793664428559993], [-50.882174029523981, -22.820449097550494], [-50.784066115625222, -22.945319707782687], [-50.726025341926771, -22.949824102485763], [-50.627697701457123, -22.923039433495262], [-50.431273133417221, -22.945319707782687], [-50.368947691586584, -22.91405261674619], [-50.292900325404389, -22.95432849718884], [-50.123249440026427, -22.940815313079611], [-49.971594160803761, -22.914052616746176], [-49.958091963023065, -22.963315313937912], [-49.913542400776748, -22.985595588225337], [-49.909048992402205, -23.034638558846183], [-49.730400303946681, -23.105983776411534], [-49.636796784750999, -23.257858782205105], [-49.614296783892684, -23.409733787998675], [-49.654572664335348, -23.507819729240353], [-49.605518707385954, -23.641699128878713], [-49.551971342062075, -23.713242100357832], [-49.569747221646367, -23.833850015114933], [-49.601025299011411, -23.86489737958054], [-49.409094139346081, -24.083832934807262], [-49.333046773163858, -24.14186272217718], [-49.337540181538373, -24.213207939742531], [-49.274995013136845, -24.315798275687285], [-49.22594105618748, -24.338298276545572], [-49.239443253968147, -24.418630310860024], [-49.310766498876433, -24.530229436210945], [-49.29749501399516, -24.664108835849291], [-49.216943253109861, -24.690871532182697], [-49.092072642877667, -24.686367137479621], [-49.025023079773064, -24.668591257895272], [-48.828598511733162, -24.66410883584922], [-48.779544554783797, -24.695375926885774], [-48.61439806410894, -24.681862742776545], [-48.489296740977352, -24.74441889750662], [-48.54284410630126, -24.811479446939771], [-48.565344107159603, -25.056957971928966], [-48.511796741835639, -25.083720668262458], [-48.41346910136599, -24.958850058030265], [-48.26609849027551, -25.034677697641598], [-48.230546731106813, -25.012397423354116], [-48.185766455961073, -25.190815398910289], [-48.091943210194501, -25.235595674056029], [-48.087669528390848, -25.280156222630879], [-48.077540133473207, -25.290263644891439], [-48.202641456604795, -25.416496559863091], [-48.242466897577145, -25.403225074981833], [-48.185997168860496, -25.309841282357027], [-48.2735252483713, -25.306237766594563], [-48.402449813836256, -25.272048312165339], [-48.458469103082621, -25.31074216129764], [-48.427641465187889, -25.403225074981833], [-48.476025256096079, -25.443039529625636], [-48.564223501648058, -25.447543924328713], [-48.64409411016365, -25.436513650470445], [-48.731841916245315, -25.368793921324638], [-48.692247188172416, -25.491423320533826], [-48.507072620561672, -25.521350079487945], [-48.429893662539428, -25.550156232930561], [-48.401098495425344, -25.597397445670168], [-48.545096303652798, -25.815871575098043], [-48.665693232081338, -25.844458001969784], [-48.678964716962611, -25.87526366720742], [-48.612816032798605, -25.875043940636544], [-48.576374381017843, -25.935358884343628], [-48.585372184095462, -25.986203612845699], [-48.650169549848528, -25.97225097559469], [-48.917917362796658, -25.97651367106981], [-48.944691045458626, -26.007802734763388], [-49.109848522462016, -25.994531249882129], [-49.212669571306208, -26.030302735621696], [-49.29749501399516, -26.106130375233022], [-49.45364370159237, -26.16866455730603], [-49.489415187331957, -26.22223389528704], [-49.596520904308335, -26.22223389528704], [-49.721622227439951, -26.159677740556958], [-49.752669591905601, -26.123906254817314], [-49.882275309740265, -26.039069825799885], [-49.949094159945446, -26.012307129466471], [-50.190299003131059, -26.052583009909121], [-50.315169613363224, -26.052583009909121], [-50.369167418157474, -26.085871585397726], [-50.45804681607919, -26.02579834091862], [-50.542872258768142, -26.02579834091862], [-50.645693307612333, -26.07035888949347], [-50.735023145004391, -26.231000985465229], [-50.77057490417306, -26.22223389528704], [-50.900169635679219, -26.280263682656951], [-50.944719197925508, -26.244492196917378], [-51.074094202860806, -26.23550538016832], [-51.248249482941787, -26.347104505519212], [-51.288525363384451, -26.423151871701464], [-51.279516573978299, -26.498979511312712], [-51.239471406435086, -26.606074241960584], [-51.284020968681347, -26.650854517106367], [-51.422393776694236, -26.699897487727206], [-51.502714824680112, -26.601569847257558], [-51.873294672800995, -26.601569847257558], [-52.007174072439341, -26.583793967673216], [-52.199094245776138, -26.44991456803487], [-52.458074968546086, -26.431918961879639], [-52.542900411235053, -26.400651870843141], [-52.641217065376168, -26.400651870843092], [-52.672495142741198, -26.378371596555716], [-52.815372345457149, -26.33831544268395], [-52.913469273027374, -26.365100111674394], [-52.99379032101325, -26.351608900222303], [-53.123396038847943, -26.369604506377534], [-53.279544726445167, -26.262268076501719], [-53.355372366056514, -26.239987802214294], [-53.458193414900734, -26.289052745492199], [-53.516245174927704, -26.289052745492228], [-53.663396059447336, -26.257763681798622], [-53.669921938602499, -26.258005381026635], [-53.671273257013425, -26.225156258679768], [-53.746870183725349, -26.083630374374735], [-53.823148262806995, -25.959638670426074], [-53.864094309290849, -25.748832998321973], [-53.891098704852226, -25.668940417149315], [-53.954775465093803, -25.647582994459597], [-54.012365799321955, -25.577819808204595], [-54.085040362641138, -25.57197508141914], [-54.11924080339891, -25.545190412428624], [-54.154572835996717, -25.52315183736917], [-54.206098716868524, -25.529677716524361], [-54.250197839644528, -25.570393050108777], [-54.33187020604133, -25.57197508141914], [-54.383396086913137, -25.588630355491986], [-54.44391977086255, -25.625082993601296], [-54.501521091419249, -25.60820799295756], [-54.537743016629122, -25.576479476122216], [-54.615822853592007, -25.576018050323356], [-54.610648292847742, -25.432690408137091], [-54.473165377446932, -25.220302704722641], [-54.43627328619587, -25.121293911883257], [-54.454049165780205, -25.065263636308373], [-54.413092132967819, -24.867487749857574], [-54.312973720945479, -24.52820795175883], [-54.281025477539259, -24.306130306568491], [-54.317247402749132, -24.201276786943637], [-54.318368008260634, -24.128151784154142], [-54.266842127388827, -24.065815355994943], [-54.241870202608098, -24.047380296697952], [-54.242540368649287, -24.046918870899106] ] ] ] } }, { "type": "Feature", "properties": { "population": 2852, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-47.301971256231354, -16.039181749021921], [-47.855473474611387, -16.043664171067917], [-48.181273047586529, -16.039181749021921], [-48.252816019065676, -16.030172959615768], [-48.234820412910466, -15.958849714707497], [-48.279589701727645, -15.838241799950424], [-48.203773048444845, -15.73543173743478], [-48.239324807613542, -15.69087118885993], [-48.181273047586529, -15.489953212445528], [-47.766143637219358, -15.489953212445528], [-47.422348458089004, -15.498940029194586], [-47.413570381582247, -15.534733487591254], [-47.306244938035007, -15.588280852915176], [-47.306244938035007, -15.708647068444279], [-47.351025213180719, -15.833737405247348], [-47.359792303358915, -15.985612411040918], [-47.301971256231354, -16.039181749021921] ] ] ] } }, { "type": "Feature", "properties": { "population": 6523, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-50.96429683539111, -19.511366940069024], [-51.034049035317565, -19.369401602622233], [-51.136650357590867, -19.284565173604733], [-51.310794651343315, -19.253298082568236], [-51.404617897109887, -19.168483626207816], [-51.542990705122776, -19.137414289085115], [-51.641098619021534, -19.128427472336043], [-51.84201659543595, -19.048095438021619], [-51.91357055324363, -18.99004367799462], [-52.060721437763249, -18.945263402848894], [-52.096492923502822, -18.896220432228048], [-52.270648203583818, -18.811405975867643], [-52.341971448492089, -18.815888397913625], [-52.498339862660202, -18.704289272562704], [-52.6144433827142, -18.722065152147053], [-52.761594267233804, -18.708793667265795], [-52.868919710781071, -18.682030970932374], [-52.891199985068496, -18.637250695786648], [-52.84641970992277, -18.534638387184799], [-52.788598662795195, -18.463095415705638], [-52.784094268092119, -18.391772170797381], [-52.908964878324298, -18.347233594879611], [-52.989296912638721, -18.387267776094305], [-53.034066201455914, -18.356000685057808], [-53.056346475743339, -18.293664256898609], [-53.042844277962644, -18.097250675187283], [-53.051842081040249, -18.016698914301969], [-53.115068401811527, -17.854914240161619], [-53.21137455782906, -17.409198891127687], [-53.202596481322331, -17.304125644931958], [-53.158266645646904, -17.208720367855037], [-53.077945597661028, -17.094638332253155], [-53.033165322515288, -16.995190086272004], [-53.024167519437682, -16.910375629911584], [-52.942714879611756, -16.813630020752285], [-52.789049102265494, -16.704953258794092], [-52.679921900837002, -16.576017707000588], [-52.6144433827142, -16.427526490398606], [-52.681273219247927, -16.36046594096544], [-52.667990748038108, -16.289142696057183], [-52.534122334728309, -16.226608513984189], [-52.538396016531962, -16.168556753957191], [-52.416667496263386, -16.082379992857312], [-52.361768812528553, -16.058297960688648], [-52.308441173775506, -16.009254990067816], [-52.256695566332823, -15.93566856147946], [-52.142393804160051, -15.872672953607619], [-51.961492918352974, -15.819125588283697], [-51.847421869079653, -15.747121191005704], [-51.798598625029683, -15.656220308631859], [-51.778790274664686, -15.592763274961158], [-51.788249503541152, -15.556991789221584], [-51.772714834979809, -15.52280233479236], [-51.731999501395393, -15.490392665587279], [-51.695997302756382, -15.403315025546789], [-51.664719225391337, -15.261349688099983], [-51.589792464720603, -15.141422925712646], [-51.471447733643629, -15.044215890754487], [-51.286273166032885, -15.002819404800334], [-51.246217012161139, -15.004401436110683], [-51.18861569160444, -14.976496161608694], [-51.114370083303442, -14.837892640696381], [-50.977568320272354, -14.46328080999983], [-50.941115682163058, -14.200927284366827], [-50.908497272715636, -14.107323765171145], [-50.867540239903263, -14.095172885801375], [-50.851796831099563, -13.995043487450488], [-50.860574907606292, -13.806056663834966], [-50.799589797858033, -13.611862320489536], [-50.666622263488847, -13.409604011992741], [-50.598441108544193, -13.249401369162754], [-50.595068305681139, -13.130814938857782], [-50.566042425667661, -13.014733391460879], [-50.484820498741158, -12.842599595831999], [-50.392348571385497, -12.617138161450072], [-50.295591975897651, -12.490026340194888], [-50.163745047039981, -12.38765573082101], [-50.13674065147859, -12.476513156085659], [-50.203570488012303, -12.570358374509311], [-50.19929680620865, -12.655172830869731], [-50.275124445820012, -12.789052230508076], [-50.270620051116936, -12.891862293023721], [-50.239341973751891, -12.931918446895494], [-50.051915208789637, -13.021237297958976], [-49.971594160803761, -13.025741692662066], [-49.913542400776748, -13.070302241236917], [-49.685839755371831, -13.177396971884747], [-49.520693264697002, -13.199896972743062], [-49.382320456684113, -13.248939943363894], [-49.359820455825798, -13.132858395966991], [-49.29749501399516, -13.003483391031722], [-49.136622205123956, -12.735504865184154], [-49.016245003266306, -12.655172830869731], [-48.998249397111096, -12.748996076636303], [-48.926915165874277, -12.784547835805], [-48.824094117030086, -12.873866686868496], [-48.797320434368146, -12.927414052192404], [-48.801824829071222, -12.998978996328646], [-48.766273069902525, -13.097064937570323], [-48.761768675199448, -13.208664062921244], [-48.775040160080721, -13.351552251965742], [-48.739268674341133, -13.38281934300224], [-48.685721309017225, -13.338280767084484], [-48.654443231652181, -13.177396971884747], [-48.587624381447, -13.155116697597322], [-48.480518664470594, -13.195392578039986], [-48.368919539119673, -13.186405761290914], [-48.226042336403736, -13.092582515524342], [-48.163716894573071, -13.102470211214026], [-48.174966895002228, -13.180780761076335], [-48.074167330610152, -13.195392578039986], [-48.002844085701895, -13.248939943363894], [-47.935794522597291, -13.244457521317912], [-47.855473474611387, -13.293500491938744], [-47.681318194530405, -13.356056646668833], [-47.659048906571513, -13.320263188272165], [-47.721594074973069, -13.150612302894245], [-47.641042314087741, -13.115082516382643], [-47.556447584298212, -13.244457521317912], [-47.440344064244215, -13.248939943363894], [-47.292973453153735, -13.199896972743062], [-47.092044490410757, -13.097064937570323], [-46.971447561982245, -13.070302241236917], [-46.82857035926628, -13.070302241236917], [-46.752742719654947, -13.034750482068219], [-46.645647989007102, -12.922931630146422], [-46.592089637354633, -12.891862293023721], [-46.435721223186533, -12.847103990535075], [-46.301841823548187, -12.833832505653803], [-46.234792260443555, -12.798039047257149], [-46.087641375923965, -12.914142567311146], [-46.074150164471803, -12.976698722041192], [-46.150197530654054, -13.025741692662052], [-46.181244895119647, -13.159621092300398], [-46.176971213315994, -13.217672852327382], [-46.083147967549422, -13.253444338066984], [-46.096419452430723, -13.351552251965757], [-46.185749289822724, -13.405099617289665], [-46.270574732511704, -13.655082536981979], [-46.261796656004947, -13.869491724848501], [-46.221520775562311, -13.998866729783842], [-46.172466818612918, -14.074914095966065], [-46.127697529795739, -14.18203079927099], [-46.038367692403682, -14.253354044179261], [-46.011594009741771, -14.298112346667835], [-45.922494885249108, -14.351681684648909], [-45.962540052792349, -14.467763232045797], [-45.962540052792349, -14.534604054908087], [-45.913497082171517, -14.690983455404748], [-45.931272961755838, -14.749013242774652], [-46.025096207522409, -14.869401430960849], [-46.078643572846346, -14.922948796284771], [-46.190242698197267, -14.93644000773692], [-46.297348415173644, -14.909677311403499], [-46.315344021328883, -14.847121156673424], [-46.38666726623714, -14.771293517062077], [-46.51604227117241, -14.713241757035078], [-46.583091834277013, -14.793573791349502], [-46.556318151615045, -14.869401430960849], [-46.57859842590247, -14.914181706106575], [-46.547320348537454, -15.039052316338768], [-46.636650185929483, -15.070319407375266], [-46.734966840070598, -15.016772042051343], [-46.833074753969356, -15.012267647348267], [-46.891115527667807, -15.04803913308784], [-46.931391408110471, -15.226698807871912], [-46.891115527667807, -15.239970292753185], [-46.855344041928248, -15.324806721770685], [-46.935895802813548, -15.431901452418515], [-46.931391408110471, -15.543500577769436], [-46.868846239708944, -15.592763274961158], [-46.833074753969356, -15.8427461946535], [-46.864341845005839, -15.882802348525274], [-47.07854229263009, -15.936349713849197], [-47.127815976150345, -15.923078228967924], [-47.230417298423646, -16.034677354318845], [-47.301971256231354, -16.039181749021921], [-47.359792303358915, -15.985612411040918], [-47.351025213180719, -15.833737405247348], [-47.306244938035007, -15.708647068444279], [-47.306244938035007, -15.588280852915176], [-47.413570381582247, -15.534733487591254], [-47.422348458089004, -15.498940029194586], [-47.766143637219358, -15.489953212445528], [-48.181273047586529, -15.489953212445528], [-48.239324807613542, -15.69087118885993], [-48.203773048444845, -15.73543173743478], [-48.279589701727645, -15.838241799950424], [-48.234820412910466, -15.958849714707497], [-48.252816019065676, -16.030172959615768], [-48.181273047586529, -16.039181749021921], [-47.855473474611387, -16.043664171067917], [-47.301971256231354, -16.039181749021921], [-47.337523015400023, -16.146276479669766], [-47.324240544190218, -16.226608513984189], [-47.351025213180719, -16.302414180938442], [-47.431346261166595, -16.409750610814257], [-47.453615549125487, -16.494345340603786], [-47.404572578504656, -16.570392706786023], [-47.266199770491767, -16.6597335305066], [-47.159094053515389, -16.918483540377125], [-47.15009625043777, -16.976513327747043], [-47.230417298423646, -17.025797997595845], [-47.212641418839297, -17.074840968216691], [-47.310749332738084, -17.141901517649842], [-47.422348458089004, -17.271276522585111], [-47.453615549125487, -17.347104162196459], [-47.498395824271228, -17.32932828261211], [-47.529443188736821, -17.454198892844303], [-47.458119943828564, -17.52574186432345], [-47.40906598687917, -17.498979167990029], [-47.288469058450659, -17.548022138610875], [-47.27069317886631, -17.668630053367949], [-47.328744938893294, -17.744457692979296], [-47.355518621555262, -17.824767754636625], [-47.346520818477643, -17.878315119960547], [-47.279471255373039, -18.061479189447695], [-47.318846256875077, -18.083298037936274], [-47.446419503929093, -18.170595404547655], [-47.786171714155245, -18.379401564856721], [-47.928818203971787, -18.445319536121303], [-48.017917328464392, -18.434530961490992], [-48.226943215344335, -18.340246289925574], [-48.953699834864778, -18.325854199532813], [-49.108266491151653, -18.388388381605793], [-49.179370009489048, -18.404823929107764], [-49.247540178105169, -18.468500689349341], [-49.336650288926307, -18.584823935974214], [-49.41674062401276, -18.602819542129453], [-49.488294581820469, -18.522048054673263], [-49.553322660472958, -18.510116901874369], [-49.611824859970255, -18.566828329818989], [-49.677973544134261, -18.600116905307601], [-49.788671790544555, -18.614530968357457], [-49.960124433803713, -18.616332726238682], [-50.093773120542636, -18.641293664690863], [-50.246999444747132, -18.690116908740833], [-50.368266539216847, -18.768647185174018], [-50.457596376608876, -18.876642794762475], [-50.498992862563028, -18.953151586743559], [-50.489775332914547, -19.0204318627476], [-50.531622258339013, -19.087030986381905], [-50.577523138996241, -19.112233624062057], [-50.641870065278994, -19.118517803989278], [-50.713193310187251, -19.160595442313166], [-50.791943313191325, -19.238444566376614], [-50.84391963353346, -19.310888416796388], [-50.868891558314175, -19.377487540430693], [-50.870924029094823, -19.423849846886768], [-50.864167437040209, -19.437802484137762], [-50.880822711113069, -19.459181879484575], [-50.923790242049023, -19.464125727329417], [-50.96429683539111, -19.511366940069024] ] ] ] } }, { "type": "Feature", "properties": { "population": 1497, "fill": "#fff" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-50.234848565377348, -9.842672723581373], [-50.175214774040001, -9.730172719289826], [-50.08409416509528, -9.421918312999608], [-49.979240645470441, -9.220099457644579], [-49.829848549927817, -9.022103844622904], [-49.707900303088365, -8.894970050710626], [-49.612945465481772, -8.839181474363713], [-49.502697658541763, -8.70866389125986], [-49.378947653821115, -8.498297672297554], [-49.282641497803553, -8.301422664787339], [-49.226841935128078, -8.139418264076113], [-49.189949843877002, -7.994970016378346], [-49.172393690863544, -7.867396769324316], [-49.220316055972887, -7.752194128210874], [-49.333947652104456, -7.649142366467331], [-49.340473531259647, -7.510099392413281], [-49.239673966867599, -7.334823506820669], [-49.195124404621282, -7.168556410634423], [-49.209747207913466, -7.005651130982585], [-49.079471324037627, -6.856237062782895], [-48.805417358505139, -6.71831469424032], [-48.652872186670379, -6.595707267688226], [-48.622044548775648, -6.488590564383287], [-48.579966910451759, -6.414125229511413], [-48.527320424068449, -6.3722673177584], [-48.470619982452376, -6.353370832662506], [-48.410096298502964, -6.357655500794763], [-48.391199813407098, -6.308832256744807], [-48.413699814265414, -6.207340553654447], [-48.389848494996187, -6.141862035531645], [-48.319415142699995, -6.112396702376316], [-48.296695415270818, -6.067396700659771], [-48.321216900581248, -6.006642303810906], [-48.307044536759349, -5.965926970226505], [-48.254398050376039, -5.945228727249429], [-48.24540024729842, -5.888517299304809], [-48.280040141197958, -5.795814659049739], [-48.258671732179693, -5.723590535200856], [-48.181273047586529, -5.672064654329048], [-48.159223486198584, -5.619198441374863], [-48.192742774586577, -5.565431349480036], [-48.231447610047439, -5.533241406845832], [-48.275316019923991, -5.522452832215549], [-48.31717393167699, -5.486219920677129], [-48.356999372649341, -5.424344918316791], [-48.421566025503012, -5.398483100923954], [-48.51111558946593, -5.408151070042777], [-48.597523063465246, -5.398702827494787], [-48.721492794756784, -5.355944036801247], [-48.721492794756784, -5.355724310230372], [-48.721943234227098, -5.355043157860635], [-48.630591912382954, -5.330301945979329], [-48.574341910237166, -5.28822430765544], [-48.52349718173511, -5.220504578509647], [-48.458249376511731, -5.180887877779639], [-48.378148055096744, -5.169418150779563], [-48.281622172508321, -5.189457214043955], [-48.16889145531735, -5.240741395687863], [-48.059544527317968, -5.263021669975288], [-47.953119962711327, -5.256276064249221], [-47.884499354624893, -5.285521670833603], [-47.853891443301052, -5.350780462385529], [-47.763221273826645, -5.407250191102179], [-47.612466873544577, -5.454952829640604], [-47.519994946188945, -5.506478710512454], [-47.48579450543113, -5.561146681347864], [-47.444848458947291, -5.749913778392497], [-47.397145820408838, -6.072340548504613], [-47.405473457445254, -6.42109056180837], [-47.47049054976921, -6.795944091732892], [-47.537089673403528, -7.027250252900274], [-47.605721267818495, -7.11476734608253], [-47.665344072827281, -7.16719410589495], [-47.715969074758476, -7.184750258908423], [-47.717089680269964, -7.22210377595826], [-47.668947588589759, -7.279694110186497], [-47.611796707503373, -7.301512958675062], [-47.545867749910258, -7.287582294081119], [-47.506943187878534, -7.305797626807262], [-47.495023021408201, -7.356202902167524], [-47.498395824271256, -7.449806421363292], [-47.458119943828592, -7.534620877723682], [-47.413570381582247, -7.530116483020592], [-47.346520818477643, -7.659733187183832], [-47.303542301213156, -7.66287527714745], [-47.279471255373039, -7.731056432092103], [-47.15009625043777, -7.856146768895158], [-47.078542292630118, -7.976512984424289], [-47.016216850799424, -8.043573533857341], [-46.984949759762941, -8.03906913915435], [-46.868846239708944, -7.958737104839884], [-46.743744916577327, -7.922965619100353], [-46.574094031199394, -7.905189739516004], [-46.489268588510441, -7.963241499543003], [-46.466999300551549, -8.070358202847899], [-46.502770786291137, -8.172948538792639], [-46.507275180994213, -8.27578057396542], [-46.543046666733801, -8.320319149883176], [-46.502770786291137, -8.396146789494537], [-46.658919473888375, -8.396146789494537], [-46.793018600097582, -8.436422669937187], [-46.837568162343928, -8.485465640557948], [-46.882117724590216, -8.583793281027681], [-46.92239360503288, -8.744457349656443], [-46.904617725448503, -8.829271806016934], [-47.065270807748817, -8.976642417107428], [-47.083046687333194, -9.03469417713444], [-47.038497125086849, -9.065983240828018], [-46.940169484617201, -9.070245936303124], [-46.846565965421519, -9.168573576772772], [-46.82857035926628, -9.306957371114194], [-46.752742719654975, -9.409547707058948], [-46.56082254631815, -9.498866558122458], [-46.534048863656182, -9.556918318149457], [-46.600867713861362, -9.650741563916029], [-46.650141397381617, -9.664013048797287], [-46.667917276965966, -9.74434508311171], [-46.507275180994213, -9.855944208462631], [-46.462494905848473, -9.949767454229232], [-46.471492708926121, -10.003314819553111], [-46.346622098693899, -10.168483282885049], [-46.284065943963839, -10.186478889040274], [-46.190242698197267, -10.177470099634036], [-46.087641375923965, -10.208737190670604], [-46.034094010600029, -10.271293345400693], [-45.944775159536533, -10.315853893975543], [-45.757117681674856, -10.329345105427691], [-45.859949716847581, -10.467728899769114], [-46.038367692403682, -10.570319235713882], [-46.087641375923965, -10.583832419823125], [-46.301841823548187, -10.757746000676136], [-46.234792260443555, -10.882858310136299], [-46.248294458224251, -10.914125401172797], [-46.368891386652791, -10.967672766496719], [-46.462494905848473, -11.177599532317288], [-46.529544468953105, -11.235431565773396], [-46.569820349395741, -11.315983326658738], [-46.551824743240559, -11.378297782160814], [-46.489268588510441, -11.414069267900388], [-46.426943146679804, -11.498905696917888], [-46.190242698197267, -11.543444272835643], [-46.083147967549422, -11.601496032862656], [-46.105417255508314, -11.664052187592731], [-46.243790063521175, -11.726608342322805], [-46.275068140886219, -11.766862250108375], [-46.248294458224251, -11.842689889719722], [-46.158964620832222, -11.83370307297065], [-46.100923847133771, -11.864970164007147], [-46.078643572846346, -11.927526318737222], [-46.212522972484692, -11.998849563645479], [-46.248294458224251, -12.048112260837215], [-46.324122097835613, -12.092672809412065], [-46.337624295616308, -12.128444295151638], [-46.346622098693899, -12.342655729104393], [-46.315344021328883, -12.42296579076168], [-46.158964620832222, -12.50329782507616], [-46.158964620832222, -12.601625465545808], [-46.234792260443555, -12.713224590896743], [-46.234792260443555, -12.798039047257149], [-46.301841823548187, -12.833832505653803], [-46.435721223186533, -12.847103990535075], [-46.592089637354633, -12.891862293023721], [-46.645647989007102, -12.922931630146422], [-46.752742719654947, -13.034750482068219], [-46.82857035926628, -13.070302241236917], [-46.971447561982245, -13.070302241236917], [-47.092044490410757, -13.097064937570323], [-47.292973453153735, -13.199896972743062], [-47.440344064244215, -13.248939943363894], [-47.556447584298212, -13.244457521317912], [-47.641042314087741, -13.115082516382643], [-47.721594074973069, -13.150612302894245], [-47.659048906571513, -13.320263188272165], [-47.681318194530405, -13.356056646668833], [-47.855473474611387, -13.293500491938744], [-47.935794522597291, -13.244457521317912], [-48.002844085701895, -13.248939943363894], [-48.074167330610152, -13.195392578039986], [-48.174966895002228, -13.180780761076335], [-48.163716894573071, -13.102470211214026], [-48.226042336403736, -13.092582515524342], [-48.368919539119673, -13.186405761290914], [-48.480518664470594, -13.195392578039986], [-48.587624381447, -13.155116697597322], [-48.654443231652181, -13.177396971884747], [-48.685721309017225, -13.338280767084484], [-48.739268674341133, -13.38281934300224], [-48.775040160080721, -13.351552251965742], [-48.761768675199448, -13.208664062921244], [-48.766273069902525, -13.097064937570323], [-48.801824829071222, -12.998978996328646], [-48.797320434368146, -12.927414052192404], [-48.824094117030086, -12.873866686868496], [-48.926915165874277, -12.784547835805], [-48.998249397111096, -12.748996076636303], [-49.016245003266306, -12.655172830869731], [-49.136622205123956, -12.735504865184154], [-49.29749501399516, -13.003483391031722], [-49.359820455825798, -13.132858395966991], [-49.382320456684113, -13.248939943363894], [-49.520693264697002, -13.199896972743062], [-49.685839755371831, -13.177396971884747], [-49.913542400776748, -13.070302241236917], [-49.971594160803761, -13.025741692662066], [-50.051915208789637, -13.021237297958976], [-50.239341973751891, -12.931918446895494], [-50.270620051116936, -12.891862293023721], [-50.275124445820012, -12.789052230508076], [-50.19929680620865, -12.655172830869731], [-50.203570488012303, -12.570358374509311], [-50.13674065147859, -12.476513156085659], [-50.163745047039981, -12.38765573082101], [-50.295591975897651, -12.490026340194888], [-50.392348571385497, -12.617138161450072], [-50.484820498741158, -12.842599595831999], [-50.566042425667661, -12.819638169174837], [-50.613964790777004, -12.763388167029063], [-50.655372263059689, -12.666862284440654], [-50.660546823803969, -12.558207495139541], [-50.629268746438925, -12.437379853811592], [-50.631740670361324, -12.288646937981625], [-50.667523142429445, -12.112030720306748], [-50.67471918762584, -11.990082473467297], [-50.653570505178465, -11.922340771664409], [-50.661447702744567, -11.853500437007099], [-50.717466991990904, -11.749108343181121], [-50.66572138454822, -11.651901308222961], [-50.671346384762813, -11.573832457588622], [-50.716566113050305, -11.482689875986807], [-50.708018749442999, -11.345668386384844], [-50.64524286814202, -11.162746016125666], [-50.610372261343059, -11.000983314642411], [-50.59912226091393, -10.689806544959453], [-50.550749456334273, -10.567177145750264], [-50.454674013216163, -10.388517470966192], [-50.402697692874028, -10.258241587090311], [-50.395270934778239, -10.176788947264384], [-50.337449887650649, -10.034362184018732], [-50.234848565377348, -9.842672723581373] ] ] ] } }, { "type": "Feature", "properties": { "population": 44035, "fill": "#333" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-53.116199993651563, -22.639987664885183], [-52.960721472095528, -22.454824083603015], [-52.566070578134543, -22.207324074161647], [-52.402495132441516, -22.069181979048096], [-52.338818372199967, -21.957341154469304], [-52.245665292474555, -21.840358728131761], [-52.12259644012363, -21.718168782064367], [-52.064995119566902, -21.622763504987418], [-52.072641604233596, -21.554142896900998], [-52.047669679452866, -21.510944653065621], [-51.989848632325305, -21.493630199280119], [-51.954747312626921, -21.469548167111469], [-51.936290280672836, -21.422746407513614], [-51.872844233330682, -21.32982404068764], [-51.856650385056696, -21.260082827089718], [-51.866318354175519, -21.18267315616805], [-51.811419670440642, -21.077138484173474], [-51.691943347523647, -20.943720510334003], [-51.619049057633561, -20.806918747302916], [-51.593165267583686, -20.666513468509322], [-51.534223614944608, -20.55761697998031], [-51.396971412443207, -20.441755159154269], [-51.160721403430983, -20.306513454776464], [-51.063964807943137, -20.223039330498423], [-50.99377315487493, -20.101552509457804], [-50.584049018151433, -19.821203377669605], [-50.488643741074497, -19.790815192916568], [-50.43374505733965, -19.800263435464558], [-50.364443296883508, -19.858556894719527], [-49.377145895939833, -19.978483657106864], [-49.2783678159999, -19.98703102071417], [-49.258790178534298, -20.016957779668289], [-49.288046771447227, -20.073647234955814], [-49.283542376744151, -20.148573995626549], [-49.238992814497863, -20.245539331356738], [-49.199848525895277, -20.294362575406637], [-49.166318251178666, -20.295043727776431], [-49.112770885854729, -20.259272242036786], [-49.039645883065248, -20.18726784475885], [-48.994645881348617, -20.213591087950419], [-48.977990607275785, -20.338241971611808], [-48.952568243024757, -20.41002664231894], [-48.918367802266971, -20.429142853985638], [-48.886869998331065, -20.369970488447152], [-48.858294557787872, -20.232729272274312], [-48.81194323766033, -20.158923117115094], [-48.71564806797133, -20.143849874352583], [-48.363744978375422, -20.138224874138018], [-48.25326645853599, -20.093005145850512], [-48.178339697865255, -20.082875750932857], [-48.109499363207959, -20.116625752220315], [-48.051216890281552, -20.120229267982779], [-47.991143645802424, -20.082875750932857], [-47.9087901270359, -20.081755145421369], [-47.861768640867155, -20.055651628800589], [-47.860197595885353, -20.011991959166366], [-47.818570397031777, -19.980724868129869], [-47.749719076045949, -19.977121352367419], [-47.695490558352276, -19.9910739896184], [-47.655895830279405, -20.022802506453729], [-47.594240554489943, -20.018517838321486], [-47.517742748837378, -19.994216079582017], [-47.459921701709789, -20.000983657965179], [-47.427742745404146, -20.036293717905892], [-47.328964665464184, -20.117526631160942], [-47.244369935674655, -20.173996359877592], [-47.234921693126722, -20.204362571973462], [-47.266199770491767, -20.284694606287886], [-47.292973453153763, -20.423078400629322], [-47.252697572711099, -20.476625765953202], [-47.154589658812313, -20.525668736574076], [-47.109820369995106, -20.632763467221906], [-47.212641418839326, -20.806918747302916], [-47.221419495346026, -20.914013477950732], [-47.145591855734693, -20.981074027383912], [-47.123322567775801, -21.132949033177482], [-47.056273004671198, -21.195263488679586], [-46.993947562840532, -21.342656072427161], [-47.002714653018757, -21.400707832454088], [-46.895619922370884, -21.405190254500155], [-46.815298874385007, -21.3606516785824], [-46.685693156550315, -21.396203437751083], [-46.654645792084722, -21.373923163463658], [-46.605372108564438, -21.42747052878758], [-46.507275180994213, -21.458737619824078], [-46.493772983213518, -21.525798169257229], [-46.56082254631815, -21.672949053776847], [-46.605372108564438, -21.681957843183], [-46.627872109422754, -21.771276694246495], [-46.667917276965966, -21.811552574689145], [-46.658919473888375, -21.905156093884841], [-46.618874306345134, -21.98546615554217], [-46.658919473888375, -22.052526704975335], [-46.600867713861362, -22.132858739289759], [-46.663423868591451, -22.204401710768877], [-46.69919535433101, -22.320263531594932], [-46.641143594304026, -22.409604355315508], [-46.547320348537454, -22.440871446352006], [-46.543046666733801, -22.472138537388503], [-46.453716829341744, -22.516699085963353], [-46.395665069314759, -22.615026726433001], [-46.471492708926121, -22.682065303209072], [-46.368891386652791, -22.748906126071347], [-46.359893583575172, -22.842729371837919], [-46.288570338666915, -22.882763553052598], [-46.154471212457679, -22.847233766540995], [-46.14569313595095, -22.891772342458765], [-46.020591812819333, -22.873996462874416], [-45.908992687468412, -22.820449097550494], [-45.859949716847581, -22.860505251422268], [-45.792900153742977, -22.851716188586991], [-45.743846196793584, -22.797949096692193], [-45.743846196793584, -22.726625851783922], [-45.801897956820596, -22.699841182793421], [-45.672292238985904, -22.619531121136077], [-45.629775147520235, -22.622673211099695], [-45.58319311449327, -22.615026726433001], [-45.52964574916939, -22.65079821217256], [-45.470923823101202, -22.611642937241413], [-45.40904882074085, -22.646293817469484], [-45.270665026399399, -22.606017937026849], [-45.243891343737459, -22.561479361109079], [-45.056244852204316, -22.467656115342507], [-44.92236545256597, -22.449880235758172], [-44.833046601502474, -22.405099960612404], [-44.770721159671723, -22.423095566767586], [-44.650124231243183, -22.561479361109093], [-44.636622033462515, -22.601513542323801], [-44.538525105892347, -22.619531121136106], [-44.216999214720829, -22.592746452145548], [-44.167945257771521, -22.699841182793421], [-44.248266305757397, -22.74890612607129], [-44.275039988419337, -22.820449097550522], [-44.35986543110829, -22.85600085671922], [-44.471464556459125, -22.851716188586977], [-44.587568076513207, -22.878500857577478], [-44.72594088452604, -22.936552617604434], [-44.79749484233372, -22.990099982928371], [-44.806272918840477, -23.13725086744796], [-44.864324678867433, -23.204289444224003], [-44.782872039041592, -23.353923238994639], [-44.951622045478871, -23.381367087697811], [-45.21531590319421, -23.575539458386174], [-45.325343983563357, -23.599621490554739], [-45.423221184562749, -23.68535879851288], [-45.4333395931518, -23.758483801302418], [-45.464397943945983, -23.802582924078365], [-45.527173825246848, -23.804824135101398], [-45.664645754319167, -23.764767981229625], [-45.843074716203887, -23.763647375718108], [-45.971999281668786, -23.795595619124356], [-46.630794472815467, -24.110375904569707], [-46.867275194727029, -24.236367120313503], [-47.137275205026754, -24.493095645731842], [-47.5922190700378, -24.781091262186806], [-47.831171715871847, -24.953005331244754], [-47.876622157058762, -24.997543907162594], [-47.914195400679546, -24.999807090842637], [-47.989122161350281, -25.035798303153058], [-47.959415128967009, -25.065505335536272], [-47.908339687565501, -25.068207972358152], [-47.929499356341466, -25.168315398051959], [-48.024443207619584, -25.236716279567474], [-48.077540133473207, -25.290263644891439], [-48.087669528390848, -25.280156222630879], [-48.091943210194501, -25.235595674056029], [-48.185766455961073, -25.190815398910289], [-48.230546731106813, -25.012397423354116], [-48.26609849027551, -25.034677697641598], [-48.41346910136599, -24.958850058030265], [-48.511796741835639, -25.083720668262458], [-48.565344107159603, -25.056957971928966], [-48.54284410630126, -24.811479446939771], [-48.489296740977352, -24.74441889750662], [-48.61439806410894, -24.681862742776545], [-48.779544554783797, -24.695375926885774], [-48.828598511733162, -24.66410883584922], [-49.025023079773064, -24.668591257895272], [-49.092072642877667, -24.686367137479621], [-49.216943253109861, -24.690871532182697], [-49.29749501399516, -24.664108835849291], [-49.310766498876433, -24.530229436210945], [-49.239443253968147, -24.418630310860024], [-49.22594105618748, -24.338298276545572], [-49.274995013136845, -24.315798275687285], [-49.337540181538373, -24.213207939742531], [-49.333046773163858, -24.14186272217718], [-49.409094139346081, -24.083832934807262], [-49.601025299011411, -23.86489737958054], [-49.569747221646367, -23.833850015114933], [-49.551971342062075, -23.713242100357832], [-49.605518707385954, -23.641699128878713], [-49.654572664335348, -23.507819729240353], [-49.614296783892684, -23.409733787998675], [-49.636796784750999, -23.257858782205105], [-49.730400303946681, -23.105983776411534], [-49.909048992402205, -23.034638558846183], [-49.913542400776748, -22.985595588225337], [-49.958091963023065, -22.963315313937912], [-49.971594160803761, -22.914052616746176], [-50.123249440026427, -22.940815313079611], [-50.292900325404389, -22.95432849718884], [-50.368947691586584, -22.91405261674619], [-50.431273133417221, -22.945319707782687], [-50.627697701457123, -22.923039433495262], [-50.726025341926771, -22.949824102485763], [-50.784066115625222, -22.945319707782687], [-50.882174029523981, -22.820449097550494], [-51.002770957952521, -22.793664428559993], [-51.181419646408045, -22.739897336665194], [-51.35534421358966, -22.65079821217256], [-51.547495099825852, -22.686349971341272], [-51.641098619021534, -22.650798212172575], [-51.69464598434547, -22.664069697053776], [-51.743919667865725, -22.619531121136077], [-51.873294672800995, -22.610522331729925], [-51.984893798151916, -22.54796617699985], [-52.065214846137792, -22.521203480666429], [-52.141273198648562, -22.543483754953854], [-52.16354248660744, -22.601513542323772], [-52.217089851931362, -22.641789422766422], [-52.261650400506213, -22.601513542323772], [-52.315197765830135, -22.619531121136077], [-52.44479249733628, -22.601513542323772], [-52.520620136947628, -22.615026726433001], [-52.6144433827142, -22.570466177858151], [-52.694775417028623, -22.601513542323772], [-52.949240758766962, -22.570466177858123], [-53.044415322944445, -22.636406121779814], [-53.116199993651563, -22.639987664885183] ] ], [ [ [-45.249065904481711, -23.782543860813973], [-45.233091782778615, -23.825302651507627], [-45.250197496321732, -23.852966226781632], [-45.260315904910783, -23.889199138320066], [-45.260997057280576, -23.941406171561539], [-45.302624256134209, -23.914841229141985], [-45.412872063074133, -23.934880292406433], [-45.4513461856356, -23.895505290904396], [-45.302393543234757, -23.72765616340763], [-45.272247057709762, -23.751957922147199], [-45.249065904481711, -23.782543860813973] ] ] ] } }, { "type": "Feature", "properties": { "population": 6850, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-48.721943234227098, -5.355043157860635], [-48.730490597834375, -5.338168157216899], [-48.252816019065619, -4.954327810543248], [-47.801915122958917, -4.597030433632256], [-47.65454451186838, -4.606017250381342], [-47.583221266960209, -4.547965490354329], [-47.489398021193608, -4.423094880122107], [-47.458119943828592, -4.338280423761717], [-47.382292304217231, -4.275724269031571], [-47.333018620696976, -4.164125143680735], [-47.310749332738055, -4.065797503211058], [-47.28846905845063, -4.079288714663221], [-47.065270807748732, -3.842599252509217], [-47.024994927306068, -3.59712072751995], [-47.029499322009201, -3.570358031186515], [-46.966943167279112, -3.525797482611608], [-46.944673879320192, -3.396202751105534], [-46.859848436631296, -3.329142201672369], [-46.824296677462542, -3.329142201672369], [-46.743744916577327, -3.190780379988041], [-46.667917276965966, -3.092672466089311], [-46.636650185929511, -2.985577735441382], [-46.650141397381617, -2.91401279130514], [-46.574094031199365, -2.847193941099988], [-46.667917276965966, -2.739879483881225], [-46.600867713861305, -2.664051844269977], [-46.507275180994213, -2.614986900991994], [-46.484994906706731, -2.547948324215952], [-46.426943146679776, -2.512396565047197], [-46.435721223186533, -2.409564529874501], [-46.408947540524537, -2.387306228244199], [-46.413440948899051, -2.239913644496539], [-46.377669463159521, -2.253426828605825], [-46.279572535589239, -2.141827703254933], [-46.212522972484635, -1.927396542731231], [-46.217016380859263, -1.807030327202142], [-46.301841823548159, -1.802525932499123], [-46.315344021328883, -1.73098296101989], [-46.243790063521089, -1.722193898184685], [-46.199240501274801, -1.677413623038944], [-46.181244895119619, -1.574823287094205], [-46.199240501274801, -1.485504436030624], [-46.123193135092549, -1.34712064168923], [-46.158964620832137, -1.315853550652776], [-46.141199727576407, -1.240025911041414], [-46.007089615038637, -1.146861844987484], [-45.972219008239676, -1.187379424658161], [-45.778716803592545, -1.250814485671697], [-45.644848390282675, -1.347801794059023], [-45.556869871301558, -1.330707066844354], [-45.458542230831938, -1.35634915766633], [-45.353018545165924, -1.567396528998415], [-45.329167225896754, -1.717250050339828], [-45.28214573972798, -1.696551807362709], [-45.238497056422204, -1.629491257929601], [-45.182016341377107, -1.507103557948312], [-45.076272929140146, -1.466366251706802], [-45.025867653779869, -1.513387737875576], [-44.91967380207268, -1.588775924345214], [-44.828322480228508, -1.671568896253461], [-44.78984835766704, -1.724896535006508], [-44.72121676325213, -1.733443898613814], [-44.778598357237854, -1.798922416736616], [-44.72099703668124, -1.792396537581453], [-44.651244836754756, -1.74581450455446], [-44.591622031745942, -1.841900934001103], [-44.546841756600202, -1.946293027827096], [-44.537843953522554, -2.052728578762299], [-44.579921591846528, -2.113922428752971], [-44.617275108896422, -2.152176824743435], [-44.658671594850546, -2.22754303855595], [-44.707494838900516, -2.241056222665179], [-44.756318082950543, -2.265577707975638], [-44.700749233174406, -2.320465405381867], [-44.662494837183942, -2.373353590993133], [-44.579020712905901, -2.23046540194872], [-44.520298786837714, -2.190431220734013], [-44.435473344148761, -2.168150946446588], [-44.391374221372701, -2.269620676879811], [-44.381914992496263, -2.365465407098554], [-44.520068073938262, -2.405521560970271], [-44.520749226307998, -2.481349200581633], [-44.561914999362671, -2.524327717846177], [-44.588919394924062, -2.57337068846698], [-44.610749229741202, -2.676861903352346], [-44.638874230814167, -2.762599211310487], [-44.721447476151525, -3.142396589079851], [-44.723018521133326, -3.204733017238993], [-44.622669396211563, -3.137892194376775], [-44.437494828600848, -2.944400976058205], [-44.381244826455088, -2.738297452570919], [-44.30811982366555, -2.535116292476459], [-44.2286996546203, -2.47121980566402], [-44.179414984771427, -2.47121980566402], [-44.105619815940827, -2.493500079951446], [-44.101346134137202, -2.560099203585764], [-44.112596134566274, -2.598573326147118], [-44.191565864141296, -2.699603603438618], [-44.225096138857907, -2.754952726643808], [-44.192697455981374, -2.809620697479147], [-44.013147888585195, -2.642232995781399], [-43.932815854270757, -2.583500083384649], [-43.864414972755185, -2.595431236183515], [-43.728525074993286, -2.51824129183268], [-43.455141275502001, -2.502047443558695], [-43.434673745424391, -2.413629471435797], [-43.379994788260376, -2.376056227815013], [-43.229690827448678, -2.385943923504726], [-42.936740376820353, -2.465155352307647], [-42.83234828299436, -2.529491292261866], [-42.675968882497727, -2.589564536741022], [-42.593615363731146, -2.661129480877207], [-42.24958947170137, -2.792064544465745], [-41.999848251236983, -2.806017181716754], [-41.876098246516335, -2.746625089607392], [-41.846171487562231, -2.758775968977091], [-41.868891214991407, -2.851698335803107], [-41.815343849667499, -2.936293065592636], [-41.842117532329439, -3.034620706062299], [-41.922449566643877, -3.110448345673632], [-42.002770614629753, -3.231056260430719], [-42.105371936903055, -3.262323351467202], [-42.100867542199978, -3.302379505338976], [-42.216971062253975, -3.431974236845122], [-42.364341673344484, -3.44975011642947], [-42.453671510736513, -3.476512812762891], [-42.502714481357344, -3.44975011642947], [-42.574268439165053, -3.570358031186515], [-42.627815804488961, -3.614896607104313], [-42.676869761438354, -3.699733036121813], [-42.663367563657658, -3.789051887185309], [-42.734921521465367, -3.922931286823655], [-42.851025041519335, -4.039012834220557], [-42.891070209062576, -4.141844869393296], [-42.989397849532224, -4.239952783292068], [-42.953615377464104, -4.391827789085639], [-42.895574603765681, -4.405099273966925], [-42.864296526400608, -4.498922519733469], [-42.913570209920863, -4.637306314074863], [-42.94912196908956, -4.659564615705236], [-42.931346089505212, -4.731129559841463], [-42.953615377464104, -4.775668135759233], [-42.904572406843272, -4.829215501083155], [-42.855518449893907, -4.936332204388066], [-42.833018449035563, -5.097194026930723], [-42.806244766373652, -5.159530455089907], [-42.833018449035563, -5.311405460883492], [-42.913570209920863, -5.391715522540821], [-43.047449609559209, -5.597137893658314], [-43.100996974883174, -5.623922562648772], [-43.083221095298796, -5.713241413712311], [-43.109994777960765, -5.771293173739309], [-43.074223292221177, -6.057047579171225], [-43.002669334413497, -6.12386642937642], [-42.962624166870256, -6.186422584106495], [-42.851025041519335, -6.253483133539646], [-42.868789934775151, -6.436405503798838], [-42.855518449893907, -6.480944079716608], [-42.913570209920863, -6.615043205925815], [-42.917843891724516, -6.668590571249737], [-42.980400046454633, -6.744418210861056], [-43.13227505224819, -6.780189696600658], [-43.19909390245337, -6.753427000267237], [-43.30191495129759, -6.802469970888012], [-43.462568033597847, -6.842745851330733], [-43.560895674067524, -6.753427000267266], [-43.676768481222069, -6.699879634943329], [-43.815372002134382, -6.708646725121511], [-43.953744810147271, -6.762194090445348], [-44.038570252836223, -6.766698485148481], [-44.060839540795115, -6.829254639878584], [-44.092117618160131, -6.806974365591159], [-44.163440863068445, -6.887306399905583], [-44.167945257771521, -6.923077885645114], [-44.257275095163521, -7.007892342005576], [-44.306318065784353, -7.110504650607368], [-44.449195268500318, -7.146276136347012], [-44.578570273435588, -7.248866472291766], [-44.712669399644824, -7.396237083382246], [-44.815270721918125, -7.364969992345763], [-44.909093967684726, -7.445302026660158], [-45.024966774839299, -7.494344997281019], [-45.297449695389901, -7.556901152011108], [-45.471593989142377, -7.673004672065105], [-45.542917234050634, -7.869418253776431], [-45.578699706118755, -8.150668264505271], [-45.654516359401555, -8.253280573107133], [-45.659020754104631, -8.311332333134118], [-45.734848393715993, -8.431918275234068], [-45.752843999871203, -8.561293280169366], [-45.819673836404945, -8.699896801081678], [-45.926768567052761, -8.788995925574284], [-45.980546645276121, -8.927599446486596], [-45.940270764833457, -9.012194176276125], [-45.935766370130409, -9.119530606151898], [-45.904499279093898, -9.177582366178939], [-45.895721202587197, -9.32921567274451], [-45.828671639482536, -9.373995947890265], [-45.79739356211752, -9.463095072382885], [-45.837669442560156, -9.534638043862032], [-45.859949716847581, -9.833663934175206], [-45.859949716847581, -9.99883239750713], [-45.899994884390821, -10.02559509384055], [-45.899994884390821, -10.083646853867549], [-45.953542249714729, -10.181974494337197], [-45.935766370130409, -10.213241585373623], [-45.944775159536533, -10.315853893975543], [-46.034094010600029, -10.271293345400693], [-46.087641375923965, -10.208737190670604], [-46.190242698197267, -10.177470099634036], [-46.284065943963839, -10.186478889040274], [-46.346622098693899, -10.168483282885049], [-46.471492708926121, -10.003314819553111], [-46.462494905848473, -9.949767454229232], [-46.507275180994213, -9.855944208462631], [-46.667917276965966, -9.74434508311171], [-46.650141397381617, -9.664013048797287], [-46.600867713861362, -9.650741563916029], [-46.534048863656182, -9.556918318149457], [-46.56082254631815, -9.498866558122458], [-46.752742719654975, -9.409547707058948], [-46.82857035926628, -9.306957371114194], [-46.846565965421519, -9.168573576772772], [-46.940169484617201, -9.070245936303124], [-47.038497125086849, -9.065983240828018], [-47.083046687333194, -9.03469417713444], [-47.065270807748817, -8.976642417107428], [-46.904617725448503, -8.829271806016934], [-46.92239360503288, -8.744457349656443], [-46.882117724590216, -8.583793281027681], [-46.837568162343928, -8.485465640557948], [-46.793018600097582, -8.436422669937187], [-46.658919473888375, -8.396146789494537], [-46.502770786291137, -8.396146789494537], [-46.543046666733801, -8.320319149883176], [-46.507275180994213, -8.27578057396542], [-46.502770786291137, -8.172948538792639], [-46.466999300551549, -8.070358202847899], [-46.489268588510441, -7.963241499543003], [-46.574094031199394, -7.905189739516004], [-46.743744916577327, -7.922965619100353], [-46.868846239708944, -7.958737104839884], [-46.984949759762941, -8.03906913915435], [-47.016216850799424, -8.043573533857341], [-47.078542292630118, -7.976512984424289], [-47.15009625043777, -7.856146768895158], [-47.279471255373039, -7.731056432092103], [-47.303542301213156, -7.66287527714745], [-47.346520818477643, -7.659733187183832], [-47.413570381582247, -7.530116483020592], [-47.458119943828592, -7.534620877723682], [-47.498395824271256, -7.449806421363292], [-47.495023021408201, -7.356202902167524], [-47.506943187878534, -7.305797626807262], [-47.545867749910258, -7.287582294081119], [-47.611796707503373, -7.301512958675062], [-47.668947588589759, -7.279694110186497], [-47.717089680269964, -7.22210377595826], [-47.715969074758476, -7.184750258908423], [-47.665344072827281, -7.16719410589495], [-47.605721267818495, -7.11476734608253], [-47.537089673403528, -7.027250252900274], [-47.47049054976921, -6.795944091732892], [-47.405473457445254, -6.42109056180837], [-47.397145820408838, -6.072340548504613], [-47.444848458947291, -5.749913778392497], [-47.48579450543113, -5.561146681347864], [-47.519994946188945, -5.506478710512454], [-47.612466873544577, -5.454952829640604], [-47.763221273826645, -5.407250191102179], [-47.853891443301052, -5.350780462385529], [-47.884499354624893, -5.285521670833603], [-47.953119962711327, -5.256276064249221], [-48.059544527317968, -5.263021669975288], [-48.16889145531735, -5.240741395687863], [-48.281622172508321, -5.189457214043955], [-48.378148055096744, -5.169418150779563], [-48.458249376511731, -5.180887877779639], [-48.52349718173511, -5.220504578509647], [-48.574341910237166, -5.28822430765544], [-48.630591912382954, -5.330301945979329], [-48.721943234227098, -5.355043157860635] ] ], [ [ [-44.565298788554287, -2.923922459651919], [-44.581943076298614, -2.845611909789682], [-44.569122030887684, -2.784879485597855], [-44.501841754883628, -2.726146573201106], [-44.481374224806018, -2.717599209593914], [-44.487218951591387, -2.789823333442769], [-44.482494830317421, -2.811861908502237], [-44.4993698309612, -2.939676854784238], [-44.59769747143082, -3.037543069454955], [-44.565298788554287, -2.923922459651919] ] ], [ [ [-45.011244850487628, -1.34463773143824], [-44.99549045535548, -1.347582067488133], [-44.978615454711758, -1.267250033173696], [-44.88839572470755, -1.276918002292462], [-44.882990451063961, -1.317875035104862], [-44.947117650775738, -1.366017126785096], [-44.967815893752913, -1.39078031132351], [-45.020923805935013, -1.372323279369425], [-45.011244850487628, -1.34463773143824] ] ] ] } }, { "type": "Feature", "properties": { "population": 16461, "fill": "#666" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-44.782872039041592, -23.353923238994639], [-44.864324678867433, -23.204289444224003], [-44.806272918840477, -23.13725086744796], [-44.79749484233372, -22.990099982928371], [-44.72594088452604, -22.936552617604434], [-44.587568076513207, -22.878500857577478], [-44.471464556459125, -22.851716188586977], [-44.35986543110829, -22.85600085671922], [-44.275039988419337, -22.820449097550522], [-44.248266305757397, -22.74890612607129], [-44.167945257771521, -22.699841182793421], [-44.216999214720829, -22.592746452145548], [-44.538525105892347, -22.619531121136106], [-44.636622033462515, -22.601513542323801], [-44.650124231243183, -22.561479361109093], [-44.770721159671723, -22.423095566767586], [-44.833046601502474, -22.405099960612404], [-44.730445279229173, -22.360539412037582], [-44.663395716124569, -22.369548201443706], [-44.601070274293903, -22.316000836119827], [-44.534020711189271, -22.302487652010583], [-44.444690873797242, -22.253444681389752], [-44.293046580903109, -22.239953469937589], [-44.216999214720857, -22.248940286686661], [-44.092117618160131, -22.173112647075314], [-43.895693050120258, -22.106074070299258], [-43.815372002134382, -22.065798189856594], [-43.565169355871149, -22.065798189856594], [-43.462568033597847, -22.057031099678412], [-43.341971105169364, -22.003483734354461], [-43.13227505224819, -22.02574203598482], [-43.063423731262333, -22.063556978833603], [-42.279516230655531, -21.713224934219511], [-42.284020625358579, -21.641901689311226], [-42.36884606804756, -21.632892899905073], [-42.364341673344484, -21.592617019462423], [-42.301796504942928, -21.485522288814579], [-42.297292110239852, -21.405190254500155], [-42.221464470628518, -21.338151677724113], [-42.181419303085278, -21.163996397643089], [-42.096593860396325, -21.003354301671337], [-42.141143422642642, -20.963298147799563], [-42.096593860396325, -20.923022267356913], [-41.998266219926677, -20.932031056763066], [-41.962494734187089, -20.909750782475641], [-41.92694297501842, -20.829199021590341], [-41.864397806616864, -20.775651656266419], [-41.743789891859791, -20.820431931412145], [-41.712522800823308, -20.976569632680821], [-41.730518406978518, -21.043630182113986], [-41.712522800823308, -21.110449032319167], [-41.440270593172073, -21.199767883382663], [-41.391216636222708, -21.186496398501404], [-41.266115313091092, -21.231056947076254], [-41.069690745051219, -21.213281067491906], [-40.967539862248202, -21.27559552299401], [-41.047190744192903, -21.505781078649875], [-41.02311969835273, -21.596901687594595], [-41.021548653370985, -21.610854324845604], [-40.987798652083427, -21.92022933664731], [-41.000399970923581, -21.998979339651441], [-41.122567944333866, -22.084474948381569], [-41.582917082988558, -22.243556985700025], [-41.705546482197747, -22.309694683535497], [-41.980490340342328, -22.580595572775735], [-41.997596053885445, -22.644733758816187], [-41.986115340556921, -22.735854367760908], [-41.940895612269344, -22.788281127573384], [-41.987466658967833, -22.845190309431814], [-42.042365342702681, -22.94712146566394], [-42.12246666411761, -22.940815313079611], [-42.581025031219667, -22.94105701230751], [-42.829195206702195, -22.973224982284705], [-42.958339498738042, -22.967138556271266], [-43.016171532194221, -22.942617070960807], [-43.081199610846681, -22.902582889746157], [-43.100766261983722, -22.850156129933737], [-43.065445215714476, -22.770724974559869], [-43.086374171590933, -22.723242062592306], [-43.154324613636163, -22.725263547044392], [-43.229020661407503, -22.747543821331874], [-43.241841706818434, -22.795026733299437], [-43.236667146074183, -22.828776734586938], [-43.208772857900669, -22.878039431778575], [-43.1936996151382, -22.938574102056521], [-43.224065827234085, -22.991220588439887], [-43.369414953872422, -22.997966194165997], [-43.532770672994559, -23.04634998507413], [-43.736621999130307, -23.066608774909412], [-43.898846126412366, -23.101479381708486], [-43.973772887083101, -23.057380258932426], [-43.898846126412366, -23.035319711215834], [-43.791520682865098, -23.04588855927534], [-43.675867602281471, -23.009457893823082], [-43.702871997842863, -22.966237677330582], [-43.866216730636381, -22.910449100983726], [-44.047568055913871, -22.944638555412894], [-44.147917180835577, -23.011017952476379], [-44.367973341573816, -23.004953499120006], [-44.637292199503747, -23.05557850105123], [-44.681171595708861, -23.106862682695066], [-44.673744837613071, -23.206552627904102], [-44.621098351229705, -23.228591202963571], [-44.569792196928859, -23.274052630479048], [-44.619065880449114, -23.316349995373798], [-44.667218958457852, -23.335246480469664], [-44.782872039041592, -23.353923238994639] ] ], [ [ [-44.155794378401652, -23.166496474032442], [-44.220591744154774, -23.190798232771897], [-44.320039990135911, -23.212397354689585], [-44.360096144007684, -23.172121474246921], [-44.274150095807272, -23.116332897900065], [-44.242872018442199, -23.074013560348192], [-44.220372017583884, -23.083022349754401], [-44.191565864141296, -23.113168835279282], [-44.129240422310602, -23.141974988721927], [-44.097973331274147, -23.169418837425098], [-44.155794378401652, -23.166496474032442] ] ] ] } }, { "type": "Feature", "properties": { "population": 3195, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-45.757117681674856, -10.329345105427691], [-45.944775159536533, -10.315853893975543], [-45.935766370130409, -10.213241585373623], [-45.953542249714729, -10.181974494337197], [-45.899994884390821, -10.083646853867549], [-45.899994884390821, -10.02559509384055], [-45.859949716847581, -9.99883239750713], [-45.859949716847581, -9.833663934175206], [-45.837669442560156, -9.534638043862032], [-45.79739356211752, -9.463095072382885], [-45.828671639482536, -9.373995947890265], [-45.895721202587197, -9.32921567274451], [-45.904499279093898, -9.177582366178939], [-45.935766370130409, -9.119530606151898], [-45.940270764833457, -9.012194176276125], [-45.980546645276121, -8.927599446486596], [-45.926768567052761, -8.788995925574284], [-45.819673836404945, -8.699896801081678], [-45.752843999871203, -8.561293280169366], [-45.734848393715993, -8.431918275234068], [-45.659020754104631, -8.311332333134118], [-45.654516359401555, -8.253280573107133], [-45.578699706118755, -8.150668264505271], [-45.542917234050634, -7.869418253776431], [-45.471593989142377, -7.673004672065105], [-45.297449695389901, -7.556901152011108], [-45.024966774839299, -7.494344997281019], [-44.909093967684726, -7.445302026660158], [-44.815270721918125, -7.364969992345763], [-44.712669399644824, -7.396237083382246], [-44.578570273435588, -7.248866472291766], [-44.449195268500318, -7.146276136347012], [-44.306318065784353, -7.110504650607368], [-44.257275095163521, -7.007892342005576], [-44.167945257771521, -6.923077885645114], [-44.163440863068445, -6.887306399905583], [-44.092117618160131, -6.806974365591159], [-44.060839540795115, -6.829254639878584], [-44.038570252836223, -6.766698485148481], [-43.953744810147271, -6.762194090445348], [-43.815372002134382, -6.708646725121511], [-43.676768481222069, -6.699879634943329], [-43.560895674067524, -6.753427000267266], [-43.462568033597847, -6.842745851330733], [-43.30191495129759, -6.802469970888012], [-43.19909390245337, -6.753427000267237], [-43.13227505224819, -6.780189696600658], [-42.980400046454633, -6.744418210861056], [-42.917843891724516, -6.668590571249737], [-42.913570209920863, -6.615043205925815], [-42.855518449893907, -6.480944079716608], [-42.868789934775151, -6.436405503798838], [-42.851025041519335, -6.253483133539646], [-42.962624166870256, -6.186422584106495], [-43.002669334413497, -6.12386642937642], [-43.074223292221177, -6.057047579171225], [-43.109994777960765, -5.771293173739309], [-43.083221095298796, -5.713241413712311], [-43.100996974883174, -5.623922562648772], [-43.047449609559209, -5.597137893658314], [-42.913570209920863, -5.391715522540821], [-42.833018449035563, -5.311405460883492], [-42.806244766373652, -5.159530455089907], [-42.833018449035563, -5.097194026930723], [-42.855518449893907, -4.936332204388066], [-42.904572406843272, -4.829215501083155], [-42.953615377464104, -4.775668135759233], [-42.931346089505212, -4.731129559841463], [-42.94912196908956, -4.659564615705236], [-42.913570209920863, -4.637306314074863], [-42.864296526400608, -4.498922519733469], [-42.895574603765681, -4.405099273966925], [-42.953615377464104, -4.391827789085639], [-42.989397849532224, -4.239952783292068], [-42.891070209062576, -4.141844869393296], [-42.851025041519335, -4.039012834220557], [-42.734921521465367, -3.922931286823655], [-42.663367563657658, -3.789051887185309], [-42.676869761438354, -3.699733036121813], [-42.627815804488961, -3.614896607104313], [-42.574268439165053, -3.570358031186515], [-42.502714481357344, -3.44975011642947], [-42.453671510736513, -3.476512812762891], [-42.364341673344484, -3.44975011642947], [-42.216971062253975, -3.431974236845122], [-42.100867542199978, -3.302379505338976], [-42.105371936903055, -3.262323351467202], [-42.002770614629753, -3.231056260430719], [-41.922449566643877, -3.110448345673632], [-41.842117532329439, -3.034620706062299], [-41.815343849667499, -2.936293065592636], [-41.868891214991407, -2.851698335803107], [-41.846171487562231, -2.758775968977091], [-41.721971043371212, -2.808939545109496], [-41.640067964075001, -2.878702731364498], [-41.479865321245001, -2.916495701556187], [-41.318322346332621, -2.936293065592636], [-41.268598223342053, -2.916056248414421], [-41.257117510013472, -3.079181254637149], [-41.377714438442013, -3.271332140873369], [-41.426768395391377, -3.320375111494201], [-41.449268396249693, -3.436478631548212], [-41.382218833145089, -3.592616332816888], [-41.355445150483121, -3.708719852870885], [-41.283891192675441, -3.811332161472734], [-41.230343827351504, -4.043517228923633], [-41.181289870402111, -4.123849263238057], [-41.118744702000583, -4.177396628561979], [-41.074195139754295, -4.324767239652473], [-41.141244702858899, -4.427379548254322], [-41.23484822205458, -4.539198400176133], [-41.2438460251322, -4.615026039787466], [-41.226070145547851, -4.726625165138387], [-41.181289870402111, -4.811439621498806], [-41.185794265105216, -4.914051930100655], [-41.12324909670366, -5.007875175867227], [-41.11447102019693, -5.065926935894225], [-41.060692941973599, -5.168517271838979], [-41.069690745051219, -5.306901066180416], [-41.025141182804902, -5.364952826207414], [-40.949093816622678, -5.418500191531322], [-40.917815739257634, -5.60164228836139], [-40.92232013396071, -5.681974322675813], [-40.891042056595666, -5.905172573377655], [-40.891042056595666, -6.012267304025499], [-40.806216613906713, -6.253483133539646], [-40.797449523728517, -6.378353743771839], [-40.770664854738015, -6.494457263825836], [-40.721391171217761, -6.570262930780089], [-40.708119686336488, -6.659603754500665], [-40.614296440569916, -6.708646725121511], [-40.48041704093157, -6.735431394112013], [-40.417871872530043, -6.81147876029425], [-40.440141160488906, -6.905082279489932], [-40.511695118296615, -7.0033879473025], [-40.583018363204872, -7.195319106967844], [-40.533964406255507, -7.324694111903099], [-40.538468800958583, -7.391754661336265], [-40.645574517934961, -7.400741478085337], [-40.690343806752139, -7.427526147075838], [-40.690343806752139, -7.512340603436257], [-40.618789848944459, -7.637233186325531], [-40.659065729387095, -7.762323523128586], [-40.547466604036174, -7.833646768036857], [-40.529470997880964, -7.905189739516004], [-40.542973195661659, -8.030082322405278], [-40.592016166282491, -8.12390556817185], [-40.748395566779152, -8.244491510271843], [-40.833221009468105, -8.36487969845804], [-40.886768374792013, -8.351608213576768], [-40.92232013396071, -8.431918275234111], [-41.016143379727282, -8.418646790352838], [-41.083192942831886, -8.525741521000683], [-41.159020582443247, -8.548021795288108], [-41.212567947767155, -8.632858224305608], [-41.368716635364422, -8.713168285962922], [-41.399994712729438, -8.784733230099178], [-41.467044275834041, -8.865043291756422], [-41.498322353199114, -8.936366536664764], [-41.55637411322607, -8.972138022404351], [-41.609921478550007, -8.963151205655279], [-41.734792088782172, -8.981146811810504], [-41.734792088782172, -9.132802091033199], [-41.797348243512261, -9.173077971475848], [-41.850895608836169, -9.253388033133191], [-41.917945171940801, -9.213112152690485], [-42.043046495072417, -9.208849457215422], [-42.150141225720233, -9.293444187004965], [-42.310794308020547, -9.306957371114194], [-42.431391236449088, -9.409547707058962], [-42.489442996476072, -9.498866558122458], [-42.574268439165053, -9.485595073241143], [-42.618818001411341, -9.565927107555609], [-42.752697401049687, -9.521146832409883], [-42.851025041519335, -9.547931501400399], [-42.931346089505212, -9.516862164277654], [-42.936971089719805, -9.474345072812028], [-43.029443017075437, -9.436332376049464], [-43.042945214856132, -9.39627622217769], [-43.127770657545085, -9.373995947890265], [-43.185822417572126, -9.418556496465044], [-43.377742590908895, -9.414052101762039], [-43.414865395059394, -9.33552182532884], [-43.449296548716575, -9.302452976411118], [-43.538395673209209, -9.360504736438116], [-43.605445236313813, -9.338224462150691], [-43.658992601637721, -9.364987158484112], [-43.694775073705841, -9.445319192798536], [-43.810867607431305, -9.427543313214187], [-43.828643487015654, -9.498866558122458], [-43.784093924769337, -9.565927107555609], [-43.726042164742353, -9.748849477814815], [-43.681272875925174, -9.802396843138695], [-43.712539966961657, -9.949767454229203], [-43.703542163884038, -10.034603883246703], [-43.752815847404293, -10.106146854725807], [-43.76159392391105, -10.168483282885063], [-43.801869804353714, -10.204254768624651], [-43.913468929704607, -10.43195741402954], [-43.993789977690483, -10.454215715659814], [-44.118891300822099, -10.588095115298231], [-44.216999214720857, -10.62837099574088], [-44.310822460487458, -10.601608299407459], [-44.417917191135274, -10.588095115298231], [-44.538525105892347, -10.628370995740852], [-44.618846153878252, -10.686422755767879], [-44.645619836540192, -10.735465726388711], [-44.752714567188036, -10.784750396237527], [-44.783992644553109, -10.85607364114577], [-44.851042207657684, -10.878353915433223], [-44.931374241972122, -10.860578035848874], [-45.042973367323043, -10.896349521588448], [-45.315214588645745, -10.780246001534408], [-45.440315911777333, -10.619362206334714], [-45.471593989142377, -10.485504779353462], [-45.516143551388666, -10.414181534445163], [-45.605473388780695, -10.333849500130768], [-45.757117681674856, -10.329345105427691] ] ] ] } }, { "type": "Feature", "properties": { "population": 20734, "fill": "#666" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-50.99377315487493, -20.101552509457804], [-50.997596397208241, -19.663923098232331], [-50.96429683539111, -19.511366940069024], [-50.923790242049023, -19.464125727329417], [-50.880822711113069, -19.459181879484575], [-50.864167437040209, -19.437802484137762], [-50.870924029094823, -19.423849846886768], [-50.868891558314175, -19.377487540430693], [-50.84391963353346, -19.310888416796388], [-50.791943313191325, -19.238444566376614], [-50.713193310187251, -19.160595442313166], [-50.641870065278994, -19.118517803989278], [-50.577523138996241, -19.112233624062057], [-50.531622258339013, -19.087030986381905], [-50.489775332914547, -19.0204318627476], [-50.498992862563028, -18.953151586743559], [-50.457596376608876, -18.876642794762475], [-50.368266539216847, -18.768647185174018], [-50.246999444747132, -18.690116908740833], [-50.093773120542636, -18.641293664690863], [-49.960124433803713, -18.616332726238682], [-49.788671790544555, -18.614530968357457], [-49.677973544134261, -18.600116905307601], [-49.611824859970255, -18.566828329818989], [-49.553322660472958, -18.510116901874369], [-49.488294581820469, -18.522048054673263], [-49.41674062401276, -18.602819542129453], [-49.336650288926307, -18.584823935974214], [-49.247540178105169, -18.468500689349341], [-49.179370009489048, -18.404823929107764], [-49.108266491151653, -18.388388381605793], [-48.953699834864778, -18.325854199532813], [-48.226943215344335, -18.340246289925574], [-48.017917328464392, -18.434530961490992], [-47.928818203971787, -18.445319536121303], [-47.786171714155245, -18.379401564856721], [-47.446419503929093, -18.170595404547655], [-47.318846256875077, -18.083298037936274], [-47.279471255373039, -18.061479189447695], [-47.346520818477643, -17.878315119960547], [-47.355518621555262, -17.824767754636625], [-47.328744938893294, -17.744457692979296], [-47.27069317886631, -17.668630053367949], [-47.288469058450659, -17.548022138610875], [-47.40906598687917, -17.498979167990029], [-47.458119943828564, -17.52574186432345], [-47.529443188736821, -17.454198892844303], [-47.498395824271228, -17.32932828261211], [-47.453615549125487, -17.347104162196459], [-47.422348458089004, -17.271276522585111], [-47.310749332738084, -17.141901517649842], [-47.212641418839297, -17.074840968216691], [-47.230417298423646, -17.025797997595845], [-47.15009625043777, -16.976513327747043], [-47.159094053515389, -16.918483540377125], [-47.266199770491767, -16.6597335305066], [-47.404572578504656, -16.570392706786023], [-47.453615549125487, -16.494345340603786], [-47.431346261166595, -16.409750610814257], [-47.351025213180719, -16.302414180938442], [-47.324240544190218, -16.226608513984189], [-47.337523015400023, -16.146276479669766], [-47.301971256231354, -16.039181749021921], [-47.230417298423646, -16.034677354318845], [-47.127815976150345, -15.923078228967924], [-47.07854229263009, -15.936349713849197], [-46.864341845005839, -15.882802348525274], [-46.833074753969356, -15.8427461946535], [-46.868846239708944, -15.592763274961158], [-46.931391408110471, -15.543500577769436], [-46.935895802813548, -15.431901452418515], [-46.855344041928248, -15.324806721770685], [-46.891115527667807, -15.239970292753185], [-46.931391408110471, -15.226698807871912], [-46.891115527667807, -15.04803913308784], [-46.833074753969356, -15.012267647348267], [-46.734966840070598, -15.016772042051343], [-46.636650185929483, -15.070319407375266], [-46.547320348537454, -15.039052316338768], [-46.57859842590247, -14.914181706106575], [-46.556318151615045, -14.869401430960849], [-46.583091834277013, -14.793573791349502], [-46.51604227117241, -14.713241757035078], [-46.38666726623714, -14.771293517062077], [-46.315344021328883, -14.847121156673424], [-46.297348415173644, -14.909677311403499], [-46.190242698197267, -14.93644000773692], [-46.078643572846346, -14.922948796284771], [-46.025096207522409, -14.869401430960849], [-45.976042250573073, -14.985504951014832], [-46.074150164471803, -15.248979082159337], [-45.967044447495425, -15.186422927429248], [-45.926768567052761, -15.128371167402264], [-45.766115484752476, -15.146147046986613], [-45.712568119428539, -15.123866772699188], [-45.654516359401555, -15.043556711041788], [-45.551915037128254, -14.93644000773692], [-45.462596186064758, -14.940944402439996], [-45.319718983348793, -14.856129946079577], [-45.225895737582221, -14.74002642602558], [-45.101025127350027, -14.717746151738154], [-44.882320285022729, -14.597138236981039], [-44.837540009876989, -14.516828175323752], [-44.560794393851239, -14.347177289945833], [-44.35986543110829, -14.271349650334457], [-44.319820263565049, -14.244345254773094], [-44.212494820017781, -14.240082559297988], [-44.158947454693873, -14.271349650334486], [-43.837641290093273, -14.315888226252241], [-43.781391287947486, -14.342892621813633], [-43.800068046472461, -14.369897017375024], [-43.860822443321297, -14.534362355680116], [-43.879499201846272, -14.624604058341333], [-43.864414972755213, -14.659694391711156], [-43.824150078641111, -14.695246150879854], [-43.708046558587114, -14.735522031322503], [-43.493846110962892, -14.789069396646426], [-43.449296548716575, -14.780082579897353], [-43.386740393986543, -14.699750545582901], [-43.230371979818415, -14.637414117423731], [-42.953615377464104, -14.677470271295505], [-42.891070209062576, -14.749013242774652], [-42.632320199192037, -14.940944402439996], [-42.578542120968706, -14.931957585690924], [-42.431391236449088, -15.034547921635692], [-42.261740351071154, -15.106090893114839], [-42.176914908382201, -15.106090893114839], [-42.087596057318706, -15.181918532726186], [-41.940214459899664, -15.172931715977143], [-41.801841651886804, -15.110595287817915], [-41.359949545186197, -15.494457607148604], [-41.333164876195724, -15.717655857850389], [-41.159020582443247, -15.780190039923411], [-41.029645577507978, -15.73543173743478], [-40.944820134819025, -15.673095309275581], [-40.891042056595666, -15.69537558356302], [-40.828716614765028, -15.681862399453777], [-40.761667051660396, -15.739914159480776], [-40.667843805893824, -15.717655857850431], [-40.574240286698142, -15.757931738293095], [-40.533964406255507, -15.797965919507703], [-40.475923632557027, -15.77570761787743], [-40.328542035138014, -15.824750588498276], [-40.234949502270865, -15.820246193795199], [-40.167899939166233, -15.896293559977423], [-40.132117467098112, -15.891789165274304], [-40.002742462162871, -15.994401473876223], [-39.935692899058239, -15.998905868579271], [-39.864369654149982, -16.110504993930192], [-39.940197293761315, -16.311422970344609], [-40.056289827486779, -16.396237426705014], [-40.132117467098112, -16.503354130009953], [-40.136621861801217, -16.543630010452603], [-40.252714395526652, -16.565888312082905], [-40.274994669814077, -16.614953255360874], [-40.283992472891697, -16.744547986867019], [-40.243716592449033, -16.833647111359625], [-40.297494670672393, -16.878427386505351], [-40.471419237853979, -16.869418597099184], [-40.524966603177887, -16.931974751829273], [-40.574240286698142, -17.132892728243689], [-40.565242483620523, -17.262267733178959], [-40.605518364063187, -17.311332676456885], [-40.60979204586684, -17.391862464685104], [-40.498192920515919, -17.418647133675606], [-40.48041704093157, -17.557030928017028], [-40.413367477826966, -17.557030928017028], [-40.382320113361345, -17.623849778222223], [-40.283992472891697, -17.717673023988795], [-40.208164833280364, -17.766715994609626], [-40.1858955453215, -17.816000664458443], [-40.230445107567789, -17.918591000403126], [-40.208164833280364, -17.976642760430195], [-40.216942909787093, -17.972138365727119], [-40.426869675607662, -17.89182830406979], [-40.475923632557027, -17.927599789809364], [-40.533964406255507, -17.900595394247972], [-40.667843805893824, -17.95436248614277], [-40.725895565920837, -17.945375669393698], [-40.788440734322364, -17.972138365727119], [-40.909048649079438, -17.972138365727119], [-40.775169249441092, -18.092746280484192], [-40.766171446363501, -18.137306829059042], [-40.837494691271758, -18.150798040511191], [-40.913542057453981, -18.101513370662389], [-41.016143379727282, -18.173078314798616], [-41.060692941973599, -18.177582709501706], [-41.141244702858899, -18.297948925030809], [-41.127742505078203, -18.333720410770383], [-41.025141182804902, -18.40526338224953], [-41.002641181946586, -18.454328325527456], [-41.029645577507978, -18.637250695786648], [-40.926824528663786, -18.695302455813646], [-40.93131793703833, -18.806901581164553], [-41.091971019338644, -18.829401582022868], [-41.194792068182807, -18.806901581164553], [-41.23484822205458, -18.851681856310293], [-41.163524977146324, -18.905229221634215], [-41.105473217119311, -18.887233615478976], [-41.025141182804902, -18.981056861245563], [-41.05191486546687, -19.034604226569471], [-40.944820134819025, -19.146203351920391], [-40.926824528663786, -19.293573963010886], [-40.958091619700298, -19.472233637794957], [-41.047421457092327, -19.489987544722226], [-41.029645577507978, -19.548039304749224], [-41.159020582443247, -19.659638430100145], [-41.185794265105216, -19.865082773874718], [-41.306391193533727, -19.954401624938214], [-41.36444295356074, -20.186366965818237], [-41.404499107432514, -20.213151634808739], [-41.717016209197851, -20.208647240105662], [-41.855400003539273, -20.369531035305386], [-41.797348243512261, -20.427582795332398], [-41.797348243512261, -20.534677525980229], [-41.850895608836169, -20.623996377043724], [-41.810839454964423, -20.646276651331149], [-41.882173686201213, -20.75787577668207], [-41.864397806616864, -20.775651656266419], [-41.92694297501842, -20.829199021590341], [-41.962494734187089, -20.909750782475641], [-41.998266219926677, -20.932031056763066], [-42.096593860396325, -20.923022267356913], [-42.141143422642642, -20.963298147799563], [-42.096593860396325, -21.003354301671337], [-42.181419303085278, -21.163996397643089], [-42.221464470628518, -21.338151677724113], [-42.297292110239852, -21.405190254500155], [-42.301796504942928, -21.485522288814579], [-42.364341673344484, -21.592617019462423], [-42.36884606804756, -21.632892899905073], [-42.284020625358579, -21.641901689311226], [-42.279516230655531, -21.713224934219511], [-43.063423731262333, -22.063556978833603], [-43.13227505224819, -22.02574203598482], [-43.341971105169364, -22.003483734354461], [-43.462568033597847, -22.057031099678412], [-43.565169355871149, -22.065798189856594], [-43.815372002134382, -22.065798189856594], [-43.895693050120258, -22.106074070299258], [-44.092117618160131, -22.173112647075314], [-44.216999214720857, -22.248940286686661], [-44.293046580903109, -22.239953469937589], [-44.444690873797242, -22.253444681389752], [-44.534020711189271, -22.302487652010583], [-44.601070274293903, -22.316000836119827], [-44.663395716124569, -22.369548201443706], [-44.730445279229173, -22.360539412037582], [-44.833046601502474, -22.405099960612404], [-44.92236545256597, -22.449880235758172], [-45.056244852204316, -22.467656115342507], [-45.243891343737459, -22.561479361109079], [-45.270665026399399, -22.606017937026849], [-45.40904882074085, -22.646293817469484], [-45.470923823101202, -22.611642937241413], [-45.52964574916939, -22.65079821217256], [-45.58319311449327, -22.615026726433001], [-45.629775147520235, -22.622673211099695], [-45.672292238985904, -22.619531121136077], [-45.801897956820596, -22.699841182793421], [-45.743846196793584, -22.726625851783922], [-45.743846196793584, -22.797949096692193], [-45.792900153742977, -22.851716188586991], [-45.859949716847581, -22.860505251422268], [-45.908992687468412, -22.820449097550494], [-46.020591812819333, -22.873996462874416], [-46.14569313595095, -22.891772342458765], [-46.154471212457679, -22.847233766540995], [-46.288570338666915, -22.882763553052598], [-46.359893583575172, -22.842729371837919], [-46.368891386652791, -22.748906126071347], [-46.471492708926121, -22.682065303209072], [-46.395665069314759, -22.615026726433001], [-46.453716829341744, -22.516699085963353], [-46.543046666733801, -22.472138537388503], [-46.547320348537454, -22.440871446352006], [-46.641143594304026, -22.409604355315508], [-46.69919535433101, -22.320263531594932], [-46.663423868591451, -22.204401710768877], [-46.600867713861362, -22.132858739289759], [-46.658919473888375, -22.052526704975335], [-46.618874306345134, -21.98546615554217], [-46.658919473888375, -21.905156093884841], [-46.667917276965966, -21.811552574689145], [-46.627872109422754, -21.771276694246495], [-46.605372108564438, -21.681957843183], [-46.56082254631815, -21.672949053776847], [-46.493772983213518, -21.525798169257229], [-46.507275180994213, -21.458737619824078], [-46.605372108564438, -21.42747052878758], [-46.654645792084722, -21.373923163463658], [-46.685693156550315, -21.396203437751083], [-46.815298874385007, -21.3606516785824], [-46.895619922370884, -21.405190254500155], [-47.002714653018757, -21.400707832454088], [-46.993947562840532, -21.342656072427161], [-47.056273004671198, -21.195263488679586], [-47.123322567775801, -21.132949033177482], [-47.145591855734693, -20.981074027383912], [-47.221419495346026, -20.914013477950732], [-47.212641418839326, -20.806918747302916], [-47.109820369995106, -20.632763467221906], [-47.154589658812313, -20.525668736574076], [-47.252697572711099, -20.476625765953202], [-47.292973453153763, -20.423078400629322], [-47.266199770491767, -20.284694606287886], [-47.234921693126722, -20.204362571973462], [-47.244369935674655, -20.173996359877592], [-47.328964665464184, -20.117526631160942], [-47.427742745404146, -20.036293717905892], [-47.459921701709789, -20.000983657965179], [-47.517742748837378, -19.994216079582017], [-47.594240554489943, -20.018517838321486], [-47.655895830279405, -20.022802506453729], [-47.695490558352276, -19.9910739896184], [-47.749719076045949, -19.977121352367419], [-47.818570397031777, -19.980724868129869], [-47.860197595885353, -20.011991959166366], [-47.861768640867155, -20.055651628800589], [-47.9087901270359, -20.081755145421369], [-47.991143645802424, -20.082875750932857], [-48.051216890281552, -20.120229267982779], [-48.109499363207959, -20.116625752220315], [-48.178339697865255, -20.082875750932857], [-48.25326645853599, -20.093005145850512], [-48.363744978375422, -20.138224874138018], [-48.71564806797133, -20.143849874352583], [-48.81194323766033, -20.158923117115094], [-48.858294557787872, -20.232729272274312], [-48.886869998331065, -20.369970488447152], [-48.918367802266971, -20.429142853985638], [-48.952568243024757, -20.41002664231894], [-48.977990607275785, -20.338241971611808], [-48.994645881348617, -20.213591087950419], [-49.039645883065248, -20.18726784475885], [-49.112770885854729, -20.259272242036786], [-49.166318251178666, -20.295043727776431], [-49.199848525895277, -20.294362575406637], [-49.238992814497863, -20.245539331356738], [-49.283542376744151, -20.148573995626549], [-49.288046771447227, -20.073647234955814], [-49.258790178534298, -20.016957779668289], [-49.2783678159999, -19.98703102071417], [-49.377145895939833, -19.978483657106864], [-50.364443296883508, -19.858556894719527], [-50.43374505733965, -19.800263435464558], [-50.488643741074497, -19.790815192916568], [-50.584049018151433, -19.821203377669605], [-50.99377315487493, -20.101552509457804] ] ] ] } }, { "type": "Feature", "properties": { "population": 3885, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-40.967539862248202, -21.27559552299401], [-41.069690745051219, -21.213281067491906], [-41.266115313091092, -21.231056947076254], [-41.391216636222708, -21.186496398501404], [-41.440270593172073, -21.199767883382663], [-41.712522800823308, -21.110449032319167], [-41.730518406978518, -21.043630182113986], [-41.712522800823308, -20.976569632680821], [-41.743789891859791, -20.820431931412145], [-41.864397806616864, -20.775651656266419], [-41.882173686201213, -20.75787577668207], [-41.810839454964423, -20.646276651331149], [-41.850895608836169, -20.623996377043724], [-41.797348243512261, -20.534677525980229], [-41.797348243512261, -20.427582795332398], [-41.855400003539273, -20.369531035305386], [-41.717016209197851, -20.208647240105662], [-41.404499107432514, -20.213151634808739], [-41.36444295356074, -20.186366965818237], [-41.306391193533727, -19.954401624938214], [-41.185794265105216, -19.865082773874718], [-41.159020582443247, -19.659638430100145], [-41.029645577507978, -19.548039304749224], [-41.047421457092327, -19.489987544722226], [-40.958091619700298, -19.472233637794957], [-40.926824528663786, -19.293573963010886], [-40.944820134819025, -19.146203351920391], [-41.05191486546687, -19.034604226569471], [-41.025141182804902, -18.981056861245563], [-41.105473217119311, -18.887233615478976], [-41.163524977146324, -18.905229221634215], [-41.23484822205458, -18.851681856310293], [-41.194792068182807, -18.806901581164553], [-41.091971019338644, -18.829401582022868], [-40.93131793703833, -18.806901581164553], [-40.926824528663786, -18.695302455813646], [-41.029645577507978, -18.637250695786648], [-41.002641181946586, -18.454328325527456], [-41.025141182804902, -18.40526338224953], [-41.127742505078203, -18.333720410770383], [-41.141244702858899, -18.297948925030809], [-41.060692941973599, -18.177582709501706], [-41.016143379727282, -18.173078314798616], [-40.913542057453981, -18.101513370662389], [-40.837494691271758, -18.150798040511191], [-40.766171446363501, -18.137306829059042], [-40.775169249441092, -18.092746280484192], [-40.909048649079438, -17.972138365727119], [-40.788440734322364, -17.972138365727119], [-40.725895565920837, -17.945375669393698], [-40.667843805893824, -17.95436248614277], [-40.533964406255507, -17.900595394247972], [-40.475923632557027, -17.927599789809364], [-40.426869675607662, -17.89182830406979], [-40.216942909787093, -17.972138365727119], [-40.208164833280364, -17.976642760430195], [-40.1858955453215, -18.007931824123773], [-39.672449480813185, -18.324733594021311], [-39.667714373210686, -18.325854199532813], [-39.739718770488679, -18.639953332608485], [-39.741970967840217, -18.846056856095714], [-39.699893329516328, -19.277819567878652], [-39.731391133452263, -19.453996332411762], [-39.783367453794369, -19.571681883776108], [-39.844792016684409, -19.649069582040724], [-40.001391143751931, -19.741991948866669], [-40.141796422545468, -19.968354262189209], [-40.202770545965194, -20.205944603283811], [-40.298845989083304, -20.29258279018255], [-40.318643353119768, -20.425781037451159], [-40.396042037712931, -20.56954813277919], [-40.596520560985567, -20.783737594074864], [-40.727016171432325, -20.846074022234063], [-40.789341613262991, -20.906147266713177], [-40.828716614765028, -21.031237603516246], [-40.954499090266381, -21.237802552802322], [-40.967539862248202, -21.27559552299401] ] ] ] } }, { "type": "Feature", "properties": { "population": 15126, "fill": "#666" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-46.025096207522409, -14.869401430960849], [-45.931272961755838, -14.749013242774652], [-45.913497082171517, -14.690983455404748], [-45.962540052792349, -14.534604054908087], [-45.962540052792349, -14.467763232045797], [-45.922494885249108, -14.351681684648909], [-46.011594009741771, -14.298112346667835], [-46.038367692403682, -14.253354044179261], [-46.127697529795739, -14.18203079927099], [-46.172466818612918, -14.074914095966065], [-46.221520775562311, -13.998866729783842], [-46.261796656004947, -13.869491724848501], [-46.270574732511704, -13.655082536981979], [-46.185749289822724, -13.405099617289665], [-46.096419452430723, -13.351552251965757], [-46.083147967549422, -13.253444338066984], [-46.176971213315994, -13.217672852327382], [-46.181244895119647, -13.159621092300398], [-46.150197530654054, -13.025741692662052], [-46.074150164471803, -12.976698722041192], [-46.087641375923965, -12.914142567311146], [-46.234792260443555, -12.798039047257149], [-46.234792260443555, -12.713224590896743], [-46.158964620832222, -12.601625465545808], [-46.158964620832222, -12.50329782507616], [-46.315344021328883, -12.42296579076168], [-46.346622098693899, -12.342655729104393], [-46.337624295616308, -12.128444295151638], [-46.324122097835613, -12.092672809412065], [-46.248294458224251, -12.048112260837215], [-46.212522972484692, -11.998849563645479], [-46.078643572846346, -11.927526318737222], [-46.100923847133771, -11.864970164007147], [-46.158964620832222, -11.83370307297065], [-46.248294458224251, -11.842689889719722], [-46.275068140886219, -11.766862250108375], [-46.243790063521175, -11.726608342322805], [-46.105417255508314, -11.664052187592731], [-46.083147967549422, -11.601496032862656], [-46.190242698197267, -11.543444272835643], [-46.426943146679804, -11.498905696917888], [-46.489268588510441, -11.414069267900388], [-46.551824743240559, -11.378297782160814], [-46.569820349395741, -11.315983326658738], [-46.529544468953105, -11.235431565773396], [-46.462494905848473, -11.177599532317288], [-46.368891386652791, -10.967672766496719], [-46.248294458224251, -10.914125401172797], [-46.234792260443555, -10.882858310136299], [-46.301841823548187, -10.757746000676136], [-46.087641375923965, -10.583832419823125], [-46.038367692403682, -10.570319235713882], [-45.859949716847581, -10.467728899769114], [-45.757117681674856, -10.329345105427691], [-45.605473388780695, -10.333849500130768], [-45.516143551388666, -10.414181534445163], [-45.471593989142377, -10.485504779353462], [-45.440315911777333, -10.619362206334714], [-45.315214588645745, -10.780246001534408], [-45.042973367323043, -10.896349521588448], [-44.931374241972122, -10.860578035848874], [-44.851042207657684, -10.878353915433223], [-44.783992644553109, -10.85607364114577], [-44.752714567188036, -10.784750396237527], [-44.645619836540192, -10.735465726388711], [-44.618846153878252, -10.686422755767879], [-44.538525105892347, -10.628370995740852], [-44.417917191135274, -10.588095115298231], [-44.310822460487458, -10.601608299407459], [-44.216999214720857, -10.62837099574088], [-44.118891300822099, -10.588095115298231], [-43.993789977690483, -10.454215715659814], [-43.913468929704607, -10.43195741402954], [-43.801869804353714, -10.204254768624651], [-43.76159392391105, -10.168483282885063], [-43.752815847404293, -10.106146854725807], [-43.703542163884038, -10.034603883246703], [-43.712539966961657, -9.949767454229203], [-43.681272875925174, -9.802396843138695], [-43.726042164742353, -9.748849477814815], [-43.784093924769337, -9.565927107555609], [-43.828643487015654, -9.498866558122458], [-43.810867607431305, -9.427543313214187], [-43.694775073705841, -9.445319192798536], [-43.658992601637721, -9.364987158484112], [-43.605445236313813, -9.338224462150691], [-43.538395673209209, -9.360504736438116], [-43.449296548716575, -9.302452976411118], [-43.414865395059394, -9.33552182532884], [-43.377742590908895, -9.414052101762039], [-43.185822417572126, -9.418556496465044], [-43.127770657545085, -9.373995947890265], [-43.042945214856132, -9.39627622217769], [-43.029443017075437, -9.436332376049464], [-42.936971089719805, -9.474345072812028], [-42.931346089505212, -9.516862164277654], [-42.851025041519335, -9.547931501400399], [-42.752697401049687, -9.521146832409883], [-42.618818001411341, -9.565927107555609], [-42.574268439165053, -9.485595073241143], [-42.489442996476072, -9.498866558122458], [-42.431391236449088, -9.409547707058962], [-42.310794308020547, -9.306957371114194], [-42.150141225720233, -9.293444187004965], [-42.043046495072417, -9.208849457215422], [-41.917945171940801, -9.213112152690485], [-41.850895608836169, -9.253388033133191], [-41.797348243512261, -9.173077971475848], [-41.734792088782172, -9.132802091033199], [-41.734792088782172, -8.981146811810504], [-41.609921478550007, -8.963151205655279], [-41.55637411322607, -8.972138022404351], [-41.498322353199114, -8.936366536664764], [-41.467044275834041, -8.865043291756422], [-41.399994712729438, -8.784733230099178], [-41.368716635364422, -8.713168285962922], [-41.324167073118076, -8.735448560250362], [-41.159020582443247, -8.708663891259846], [-41.105473217119311, -8.717672680666027], [-41.100968822416235, -8.775724440693025], [-41.003992500357526, -8.781349440907604], [-40.980371893987723, -8.815780594564785], [-40.891042056595666, -8.856056475007449], [-40.891042056595666, -9.03469417713444], [-40.855490297426996, -9.092745937161425], [-40.850996889052453, -9.150797697188352], [-40.703615291633412, -9.217616547393618], [-40.690343806752139, -9.342728856853768], [-40.743891172076076, -9.423038918511111], [-40.685839412049063, -9.47210386178898], [-40.564792044150238, -9.460172708990143], [-40.412697311785791, -9.396957374547355], [-40.319774944959818, -9.293004733863199], [-40.273192911932853, -9.144952970402969], [-40.212218788513155, -9.101513027339593], [-40.077669222833606, -9.08824154245832], [-40.004994659514409, -9.058095056933354], [-39.948744657368621, -9.022103844622904], [-39.909149929295722, -8.980245932869821], [-39.887770533948924, -8.923995930724061], [-39.884617457656759, -8.853353838185598], [-39.834893334666162, -8.809013016181552], [-39.738367452077739, -8.791237136597275], [-39.687742450146573, -8.749401197501371], [-39.682798602301716, -8.683021800437942], [-39.600895523005477, -8.619564766767255], [-39.441824472015526, -8.559271795717166], [-39.332697270587033, -8.565797674872442], [-39.25664990440481, -8.640263009744331], [-39.098249019456034, -8.714970043844119], [-38.834994614882476, -8.800245926003356], [-38.705399883376288, -8.879896807948114], [-38.667815653426942, -8.896090656222128], [-38.619223122276424, -8.896090656222128], [-38.57759592342282, -8.860538897053431], [-38.544296361605689, -8.831073563898173], [-38.504690647204228, -8.834896806231512], [-38.483992404227138, -8.877655596925138], [-38.482190646345913, -8.959547689892815], [-38.43291696282563, -9.003646812668819], [-38.335940640766921, -9.01017269182401], [-38.294324428241907, -9.043021814170856], [-38.307595913123151, -9.102194179709358], [-38.283074427812721, -9.203663910142609], [-38.221199425452397, -9.34767270469861], [-37.975720900463131, -9.512138043003716], [-38.042990190138653, -9.605983261427355], [-37.993716506618341, -9.646237169212938], [-38.029498978686462, -9.726569203527362], [-37.962669142152777, -9.873939814617813], [-37.900123973751192, -9.913995968489587], [-37.900123973751192, -9.949767454229232], [-37.779516058994119, -10.079362185735349], [-37.784020453697195, -10.306845104569391], [-37.83756781902116, -10.422948624623359], [-37.824065621240436, -10.548038961426414], [-37.784020453697195, -10.62837099574088], [-37.81529853106224, -10.677413966361712], [-37.971447218659478, -10.75348330520103], [-38.011723099102113, -10.75348330520103], [-38.109820026672338, -10.708703030055304], [-38.190141074658214, -10.717689846804376], [-38.243919152881574, -10.824806550109301], [-38.234921349803955, -10.896349521588448], [-38.17686958977697, -10.980944251377977], [-38.109820026672338, -11.030228921226794], [-38.060766069722973, -11.168590742911121], [-37.980445021737097, -11.239913987819392], [-38.007218704399037, -11.356017507873389], [-37.966942823956401, -11.400797783019115], [-37.851070016801827, -11.440853936890889], [-37.797291938578496, -11.525668393251294], [-37.658919130565607, -11.556957456944886], [-37.632145447903639, -11.521163998548232], [-37.574093687876626, -11.539181577360537], [-37.411869560594539, -11.497323665607496], [-37.469240168251758, -11.653703066104185], [-37.68861517662026, -12.100099567507868], [-37.957274854837578, -12.475392550574156], [-38.019149857197931, -12.591276344057235], [-38.239645471077893, -12.844181627142348], [-38.401869598359951, -12.966129873981799], [-38.44732003954698, -12.967030752922426], [-38.498845920418717, -12.95668163143381], [-38.524949437039481, -12.76226756151749], [-38.654093729075328, -12.644603982810281], [-38.690996806654937, -12.623905739833219], [-38.743874005937755, -12.748556623494494], [-38.787973128713702, -12.782746077923775], [-38.851869615526141, -12.790172836019565], [-38.783699446910077, -12.844401353713238], [-38.763671369974134, -12.90717723501416], [-38.833192857001166, -13.032948724186951], [-38.835214341453252, -13.147250486359724], [-38.959195059073409, -13.273021975532515], [-39.030968743451979, -13.365043463417862], [-39.067421381561303, -13.480465831102151], [-39.089240230049882, -13.588241714119647], [-39.03502269868477, -13.558776380964389], [-39.009149894963457, -13.581496108393651], [-38.988671378557228, -13.615026383110262], [-39.001272697397269, -13.664530779529912], [-39.041098138369591, -13.758112326068499], [-39.03502269868477, -13.99100051854623], [-39.048074456995153, -14.04386673150043], [-39.008468742593607, -14.101237339157706], [-38.966391104269746, -14.003371124486875], [-38.94232005842963, -14.030595246619157], [-39.059544183995115, -14.654750543866328], [-39.013423576767082, -14.935539128796336], [-38.996098136653018, -15.253922930004194], [-38.943220937370313, -15.564418547317416], [-38.8851691773433, -15.842065042283764], [-38.880664782640167, -15.864345316571132], [-38.960766104055153, -16.186552360112387], [-39.063147699757621, -16.504474735521399], [-39.125022702117974, -16.763664198533661], [-39.16394726414967, -17.043573877180108], [-39.202871826181479, -17.178112456531096], [-39.215242432122068, -17.315815098502867], [-39.170692869875779, -17.642065110948352], [-39.154048582131452, -17.703940113308647], [-39.278468752893389, -17.849530939174997], [-39.412567879102596, -17.919953305142656], [-39.486824473732156, -17.990155944539367], [-39.65083937256685, -18.252267770944457], [-39.667714373210686, -18.325854199532813], [-39.672449480813185, -18.324733594021311], [-40.1858955453215, -18.007931824123773], [-40.208164833280364, -17.976642760430195], [-40.230445107567789, -17.918591000403126], [-40.1858955453215, -17.816000664458443], [-40.208164833280364, -17.766715994609626], [-40.283992472891697, -17.717673023988795], [-40.382320113361345, -17.623849778222223], [-40.413367477826966, -17.557030928017028], [-40.48041704093157, -17.557030928017028], [-40.498192920515919, -17.418647133675606], [-40.60979204586684, -17.391862464685104], [-40.605518364063187, -17.311332676456885], [-40.565242483620523, -17.262267733178959], [-40.574240286698142, -17.132892728243689], [-40.524966603177887, -16.931974751829273], [-40.471419237853979, -16.869418597099184], [-40.297494670672393, -16.878427386505351], [-40.243716592449033, -16.833647111359625], [-40.283992472891697, -16.744547986867019], [-40.274994669814077, -16.614953255360874], [-40.252714395526652, -16.565888312082905], [-40.136621861801217, -16.543630010452603], [-40.132117467098112, -16.503354130009953], [-40.056289827486779, -16.396237426705014], [-39.940197293761315, -16.311422970344609], [-39.864369654149982, -16.110504993930192], [-39.935692899058239, -15.998905868579271], [-40.002742462162871, -15.994401473876223], [-40.132117467098112, -15.891789165274304], [-40.167899939166233, -15.896293559977423], [-40.234949502270865, -15.820246193795199], [-40.328542035138014, -15.824750588498276], [-40.475923632557027, -15.77570761787743], [-40.533964406255507, -15.797965919507703], [-40.574240286698142, -15.757931738293095], [-40.667843805893824, -15.717655857850431], [-40.761667051660396, -15.739914159480776], [-40.828716614765028, -15.681862399453777], [-40.891042056595666, -15.69537558356302], [-40.944820134819025, -15.673095309275581], [-41.029645577507978, -15.73543173743478], [-41.159020582443247, -15.780190039923411], [-41.333164876195724, -15.717655857850389], [-41.359949545186197, -15.494457607148604], [-41.801841651886804, -15.110595287817915], [-41.940214459899664, -15.172931715977143], [-42.087596057318706, -15.181918532726186], [-42.176914908382201, -15.106090893114839], [-42.261740351071154, -15.106090893114839], [-42.431391236449088, -15.034547921635692], [-42.578542120968706, -14.931957585690924], [-42.632320199192037, -14.940944402439996], [-42.891070209062576, -14.749013242774652], [-42.953615377464104, -14.677470271295505], [-43.230371979818415, -14.637414117423731], [-43.386740393986543, -14.699750545582901], [-43.449296548716575, -14.780082579897353], [-43.493846110962892, -14.789069396646426], [-43.708046558587114, -14.735522031322503], [-43.824150078641111, -14.695246150879854], [-43.864414972755213, -14.659694391711156], [-43.879499201846272, -14.624604058341333], [-43.860822443321297, -14.534362355680116], [-43.800068046472461, -14.369897017375024], [-43.781391287947486, -14.342892621813633], [-43.837641290093273, -14.315888226252241], [-44.158947454693873, -14.271349650334486], [-44.212494820017781, -14.240082559297988], [-44.319820263565049, -14.244345254773094], [-44.35986543110829, -14.271349650334457], [-44.560794393851239, -14.347177289945833], [-44.837540009876989, -14.516828175323752], [-44.882320285022729, -14.597138236981039], [-45.101025127350027, -14.717746151738154], [-45.225895737582221, -14.74002642602558], [-45.319718983348793, -14.856129946079577], [-45.462596186064758, -14.940944402439996], [-45.551915037128254, -14.93644000773692], [-45.654516359401555, -15.043556711041788], [-45.712568119428539, -15.123866772699188], [-45.766115484752476, -15.146147046986613], [-45.926768567052761, -15.128371167402264], [-45.967044447495425, -15.186422927429248], [-46.074150164471803, -15.248979082159337], [-45.976042250573073, -14.985504951014832], [-46.025096207522409, -14.869401430960849] ] ], [ [ [-38.907218738731331, -13.401056648385349], [-38.903615222968824, -13.473500498805151], [-38.93781566372661, -13.532233411201901], [-38.977641104698932, -13.523444348366638], [-38.993164786931686, -13.484069346864658], [-39.022190666945278, -13.44559522430319], [-39.00666698471241, -13.415448738778196], [-38.980124014949865, -13.398354011563526], [-38.907218738731331, -13.401056648385349] ] ], [ [ [-38.601216529792623, -12.992672843744288], [-38.743874005937755, -13.097064937570281], [-38.783018294540284, -13.118664059487969], [-38.787072249773132, -13.05498729924642], [-38.684921366970116, -12.974896964159996], [-38.668046366326337, -12.880172839452769], [-38.614499001002457, -12.924052235657825], [-38.600315650852053, -12.972414053909006], [-38.601216529792623, -12.992672843744288] ] ] ] } }, { "type": "Feature", "properties": { "population": 8843, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-40.538468800958583, -7.391754661336265], [-40.533964406255507, -7.324694111903099], [-40.583018363204872, -7.195319106967844], [-40.511695118296615, -7.0033879473025], [-40.440141160488906, -6.905082279489932], [-40.417871872530043, -6.81147876029425], [-40.48041704093157, -6.735431394112013], [-40.614296440569916, -6.708646725121511], [-40.708119686336488, -6.659603754500665], [-40.721391171217761, -6.570262930780089], [-40.770664854738015, -6.494457263825836], [-40.797449523728517, -6.378353743771839], [-40.806216613906713, -6.253483133539646], [-40.891042056595666, -6.012267304025499], [-40.891042056595666, -5.905172573377655], [-40.92232013396071, -5.681974322675813], [-40.917815739257634, -5.60164228836139], [-40.949093816622678, -5.418500191531322], [-41.025141182804902, -5.364952826207414], [-41.069690745051219, -5.306901066180416], [-41.060692941973599, -5.168517271838979], [-41.11447102019693, -5.065926935894225], [-41.12324909670366, -5.007875175867227], [-41.185794265105216, -4.914051930100655], [-41.181289870402111, -4.811439621498806], [-41.226070145547851, -4.726625165138387], [-41.2438460251322, -4.615026039787466], [-41.23484822205458, -4.539198400176133], [-41.141244702858899, -4.427379548254322], [-41.074195139754295, -4.324767239652473], [-41.118744702000583, -4.177396628561979], [-41.181289870402111, -4.123849263238057], [-41.230343827351504, -4.043517228923633], [-41.283891192675441, -3.811332161472734], [-41.355445150483121, -3.708719852870885], [-41.382218833145089, -3.592616332816888], [-41.449268396249693, -3.436478631548212], [-41.426768395391377, -3.320375111494201], [-41.377714438442013, -3.271332140873369], [-41.257117510013472, -3.079181254637149], [-41.268598223342053, -2.916056248414421], [-41.194572341611945, -2.886129489460302], [-40.875518374362855, -2.869693941958332], [-40.474572314146116, -2.795668060228223], [-40.23539994174115, -2.813224213241682], [-39.964718779071745, -2.861608004149886], [-39.771897726794322, -2.985797462012329], [-39.609442886612783, -3.056219827979987], [-39.511115246143135, -3.125521588436129], [-39.352714361194387, -3.197306259143247], [-39.014324455707708, -3.390116325092123], [-38.895968738302173, -3.501715450443044], [-38.686272685381027, -3.653832155464585], [-38.475895480090145, -3.717486943049067], [-38.361824430816796, -3.87634925379669], [-38.271824427383564, -3.948111951846712], [-38.048845903252612, -4.216332176922251], [-37.795720893596666, -4.404198395026285], [-37.626289734789623, -4.592064613130319], [-37.301391040755107, -4.713111981029158], [-37.230748948216586, -4.824271653238313], [-37.54281561051161, -4.93204753625588], [-37.596593688734941, -4.958832205246381], [-37.721464298967135, -5.061422541191149], [-37.913395458632465, -5.463280466677062], [-38.047494584841701, -5.614913773242662], [-38.078541949307322, -5.686478717378904], [-38.078541949307322, -5.762306356990237], [-38.127815632827577, -5.878387904387154], [-38.301740200009135, -6.074823458755574], [-38.368789763113767, -6.092599338339923], [-38.413570038259479, -6.061332247303426], [-38.493891086245384, -6.128370824079497], [-38.511666965829704, -6.181918189403419], [-38.578716528934336, -6.262250223717842], [-38.605490211596305, -6.396129623356174], [-38.5251691636104, -6.382858138474916], [-38.578716528934336, -6.480944079716593], [-38.650039773842593, -6.690870845537162], [-38.61877268280611, -6.757931394970328], [-38.650039773842593, -6.838241456627657], [-38.725867413453955, -6.891788821951579], [-38.730371808157031, -7.0033879473025], [-38.685822245910714, -7.030172616293001], [-38.676824442833095, -7.15954762122827], [-38.600996803221761, -7.222103775958345], [-38.547449437897825, -7.235594987410494], [-38.533947240117129, -7.293646747437492], [-38.582990210737989, -7.427526147075838], [-38.632274880586806, -7.458793238112335], [-38.636768288961321, -7.534620877723682], [-38.699093730791986, -7.619457306741182], [-38.819690659220527, -7.663995882658938], [-38.864240221466815, -7.704271763101588], [-38.96707225663954, -7.847137979489005], [-38.998339347676051, -7.820375283155585], [-39.074166987287384, -7.856146768895158], [-39.109949459355505, -7.753314733722434], [-39.243817872665318, -7.681991488814162], [-39.306374027395378, -7.623939728787164], [-39.350923589641695, -7.548112089175831], [-39.534065686471763, -7.47656911769667], [-39.654442888329413, -7.373978781751916], [-39.846593774565633, -7.347194112761414], [-39.953699491542011, -7.360465597642673], [-40.065298616892932, -7.405245872788413], [-40.172393347540776, -7.418517357669671], [-40.261723184932805, -7.391754661336265], [-40.538468800958583, -7.391754661336265] ] ] ] } }, { "type": "Feature", "properties": { "population": 2220, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-37.411869560594539, -11.497323665607496], [-37.574093687876626, -11.539181577360537], [-37.632145447903639, -11.521163998548232], [-37.658919130565607, -11.556957456944886], [-37.797291938578496, -11.525668393251294], [-37.851070016801827, -11.440853936890889], [-37.966942823956401, -11.400797783019115], [-38.007218704399037, -11.356017507873389], [-37.980445021737097, -11.239913987819392], [-38.060766069722973, -11.168590742911121], [-38.109820026672338, -11.030228921226794], [-38.17686958977697, -10.980944251377977], [-38.234921349803955, -10.896349521588448], [-38.243919152881574, -10.824806550109301], [-38.190141074658214, -10.717689846804376], [-38.109820026672338, -10.708703030055304], [-38.011723099102113, -10.75348330520103], [-37.971447218659478, -10.75348330520103], [-37.81529853106224, -10.677413966361712], [-37.784020453697195, -10.62837099574088], [-37.824065621240436, -10.548038961426414], [-37.83756781902116, -10.422948624623359], [-37.784020453697195, -10.306845104569391], [-37.779516058994119, -10.079362185735349], [-37.900123973751192, -9.949767454229232], [-37.900123973751192, -9.913995968489587], [-37.962669142152777, -9.873939814617813], [-38.029498978686462, -9.726569203527362], [-37.993716506618341, -9.646237169212938], [-38.042990190138653, -9.605983261427355], [-37.975720900463131, -9.512138043003716], [-37.938147656842318, -9.537802106482729], [-37.425591484946096, -9.778314810970059], [-37.196098067988487, -9.88587096741675], [-37.019240151085654, -9.956974485754131], [-36.956464269784703, -10.013663941041671], [-36.939589269140953, -10.083646853867549], [-36.879746737561277, -10.153629766693442], [-36.776694975817662, -10.22359070686224], [-36.699065578325076, -10.257340708149698], [-36.647539697453283, -10.253978891615205], [-36.607044090439757, -10.292892467318381], [-36.579819968307476, -10.37142274375158], [-36.538423482353323, -10.410578018682727], [-36.482623919677877, -10.410578018682727], [-36.443018205276417, -10.43195741402954], [-36.431768204847259, -10.452875383577506], [-36.414673477632647, -10.491349506138917], [-36.635839257553812, -10.589896873179455], [-36.768367338781246, -10.671569239576257], [-36.937798497588261, -10.820521881977101], [-37.093266032815762, -11.05475040653721], [-37.125444989121434, -11.084896892062204], [-37.182815596778681, -11.068483317217328], [-37.18124455179688, -11.187487228006972], [-37.315123951435226, -11.376056571137823], [-37.356069997919064, -11.403939872982733], [-37.354949392407576, -11.35039250765881], [-37.331548512608634, -11.309896900645271], [-37.32074895164979, -11.266698656809893], [-37.321869557161307, -11.215172775938086], [-37.359223074211229, -11.252526292988009], [-37.438423516685617, -11.393832450722158], [-37.411869560594539, -11.497323665607496] ] ] ] } }, { "type": "Feature", "properties": { "population": 3322, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-37.975720900463131, -9.512138043003716], [-38.221199425452397, -9.34767270469861], [-38.154589315489545, -9.266681490671544], [-38.092044147087989, -9.186349456357121], [-37.966942823956401, -9.141788907782271], [-37.81529853106224, -8.976642417107428], [-37.806289741656087, -8.896332355450099], [-37.748248967957636, -8.860538897053431], [-37.681419131423894, -8.976642417107428], [-37.627641053200563, -8.981146811810504], [-37.520546322552718, -8.945375326070931], [-37.471492365603325, -9.003427086097929], [-37.391171317617449, -9.043483239969703], [-37.18124455179688, -9.239896821681043], [-36.998322181537702, -9.306957371114194], [-36.940270421510689, -9.35600034173504], [-36.90449893577113, -9.289181491529845], [-36.833164704534312, -9.262396822539344], [-36.578699362795987, -9.293444187004965], [-36.440315568454565, -9.208849457215422], [-36.346492322687993, -9.199840667809269], [-36.266171274702117, -9.141788907782271], [-36.239397592040149, -9.088241542458348], [-36.123294071986152, -9.016698570979202], [-36.118789677283075, -8.967655600358356], [-36.016199341338307, -8.896332355450099], [-35.971419066192567, -8.905099445628281], [-35.882319941699961, -8.873832354591784], [-35.801768180814662, -8.869547686459597], [-35.721447132828786, -8.918590657080429], [-35.609848007477865, -8.865043291756507], [-35.471464213136443, -8.833776200720024], [-35.391143165150567, -8.882819171340856], [-35.301824314087071, -8.887323566043932], [-35.151740079846178, -8.913866535806477], [-35.157815519531056, -8.930521809879323], [-35.340968602689685, -9.230668305704], [-35.597015975738344, -9.540724469875457], [-35.763964224294426, -9.702487171358712], [-35.830123894786965, -9.719142445431558], [-35.890867305307268, -9.686974475454448], [-35.84766906147189, -9.772470084184604], [-35.885473017992126, -9.847616571426215], [-36.054893190470608, -10.075780642629979], [-36.223643196907915, -10.225172738172589], [-36.39824891645921, -10.484142474613989], [-36.411520401340482, -10.489987201399458], [-36.414673477632647, -10.491349506138917], [-36.431768204847259, -10.452875383577506], [-36.443018205276417, -10.43195741402954], [-36.482623919677877, -10.410578018682727], [-36.538423482353323, -10.410578018682727], [-36.579819968307476, -10.37142274375158], [-36.607044090439757, -10.292892467318381], [-36.647539697453283, -10.253978891615205], [-36.699065578325076, -10.257340708149698], [-36.776694975817662, -10.22359070686224], [-36.879746737561277, -10.153629766693442], [-36.939589269140953, -10.083646853867549], [-36.956464269784703, -10.013663941041671], [-37.019240151085654, -9.956974485754131], [-37.196098067988487, -9.88587096741675], [-37.425591484946096, -9.778314810970059], [-37.938147656842318, -9.537802106482729], [-37.975720900463131, -9.512138043003716] ] ] ] } }, { "type": "Feature", "properties": { "population": 3409, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-38.5251691636104, -6.382858138474916], [-38.605490211596305, -6.396129623356174], [-38.578716528934336, -6.262250223717842], [-38.511666965829704, -6.181918189403419], [-38.493891086245384, -6.128370824079497], [-38.413570038259479, -6.061332247303426], [-38.368789763113767, -6.092599338339923], [-38.301740200009135, -6.074823458755574], [-38.127815632827577, -5.878387904387154], [-38.078541949307322, -5.762306356990237], [-38.078541949307322, -5.686478717378904], [-38.047494584841701, -5.614913773242662], [-37.913395458632465, -5.463280466677062], [-37.721464298967135, -5.061422541191149], [-37.596593688734941, -4.958832205246381], [-37.54281561051161, -4.93204753625588], [-37.230748948216586, -4.824271653238313], [-37.174718672641688, -4.912469898790306], [-36.954893224802873, -4.936771657529846], [-36.861069979036301, -4.96669841648395], [-36.747449369233294, -5.050611993903757], [-36.59061952926632, -5.097655452729569], [-36.386768203130629, -5.084361995191216], [-36.161768194547562, -5.093832210396229], [-35.979966429799873, -5.054457208894192], [-35.549324323528452, -5.129361996907832], [-35.481593608054084, -5.166056334245113], [-35.392494483561478, -5.250870790605518], [-35.235444917023642, -5.566771681562443], [-35.14184139782796, -5.917103726176549], [-35.095490077700418, -6.185301978594993], [-34.988164634153151, -6.393646713105213], [-34.971740072979713, -6.503905506373755], [-35.047347986020185, -6.534733144268486], [-35.257274751840754, -6.507948475277985], [-35.306317722461586, -6.53022874956541], [-35.4669708047619, -6.463168200132245], [-35.667899767504849, -6.427396714392671], [-35.721447132828786, -6.44539232054791], [-35.926869503946278, -6.467672594835335], [-36.252669076921421, -6.414125229511413], [-36.292944957364057, -6.307030498863568], [-36.382274794756114, -6.302526104160492], [-36.493873920107035, -6.378353743771839], [-36.516143208065898, -6.480944079716593], [-36.444819963157641, -6.623832268761092], [-36.533919087650247, -6.63732348021324], [-36.529414692947171, -6.735431394112013], [-36.502641010285203, -6.784694091303734], [-36.574194968092911, -6.927582280348247], [-36.659020410781864, -6.931844975823353], [-36.712567776105772, -6.976625250969079], [-36.770619536132784, -6.931844975823353], [-36.743845853470816, -6.824750245175508], [-36.792899810420209, -6.76669848514851], [-36.944774816213766, -6.748922605564161], [-36.989324378460083, -6.708646725121511], [-37.042871743783991, -6.753427000267237], [-37.154470869134911, -6.784694091303734], [-37.217016037536467, -6.824750245175508], [-37.270574389188909, -6.739913816158008], [-37.337623952293541, -6.699879634943329], [-37.516041927849642, -6.68186205613101], [-37.507274837671446, -6.55248705119574], [-37.431216485160689, -6.516715565456167], [-37.395664725991992, -6.391844955223988], [-37.176740157093803, -6.114879612627348], [-37.176740157093803, -6.052543184468149], [-37.261565599782756, -6.025780488134728], [-37.422449394982493, -6.097103733042999], [-37.475996760306401, -6.083832248161727], [-37.641143250981258, -6.128370824079497], [-37.757246771035256, -6.177413794700328], [-37.793018256774815, -6.293517314754325], [-37.842072213724208, -6.342582258032266], [-38.002714309695961, -6.431901109095762], [-38.05627266134843, -6.44539232054791], [-38.132320027530653, -6.521219960159243], [-38.239414758178498, -6.48544847441967], [-38.283964320424815, -6.503444080574909], [-38.435839326218371, -6.414125229511413], [-38.5251691636104, -6.382858138474916] ] ] ] } }, { "type": "Feature", "properties": { "population": 9278, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-41.368716635364422, -8.713168285962922], [-41.212567947767155, -8.632858224305608], [-41.159020582443247, -8.548021795288108], [-41.083192942831886, -8.525741521000683], [-41.016143379727282, -8.418646790352838], [-40.92232013396071, -8.431918275234111], [-40.886768374792013, -8.351608213576768], [-40.833221009468105, -8.36487969845804], [-40.748395566779152, -8.244491510271843], [-40.592016166282491, -8.12390556817185], [-40.542973195661659, -8.030082322405278], [-40.529470997880964, -7.905189739516004], [-40.547466604036174, -7.833646768036857], [-40.659065729387095, -7.762323523128586], [-40.618789848944459, -7.637233186325531], [-40.690343806752139, -7.512340603436257], [-40.690343806752139, -7.427526147075838], [-40.645574517934961, -7.400741478085337], [-40.538468800958583, -7.391754661336265], [-40.261723184932805, -7.391754661336265], [-40.172393347540776, -7.418517357669671], [-40.065298616892932, -7.405245872788413], [-39.953699491542011, -7.360465597642673], [-39.846593774565633, -7.347194112761414], [-39.654442888329413, -7.373978781751916], [-39.534065686471763, -7.47656911769667], [-39.350923589641695, -7.548112089175831], [-39.306374027395378, -7.623939728787164], [-39.243817872665318, -7.681991488814162], [-39.109949459355505, -7.753314733722434], [-39.074166987287384, -7.856146768895158], [-38.998339347676051, -7.820375283155585], [-38.96707225663954, -7.847137979489005], [-38.864240221466815, -7.704271763101588], [-38.819690659220527, -7.663995882658938], [-38.699093730791986, -7.619457306741182], [-38.64554636546805, -7.677487094111086], [-38.591999000144142, -7.690780551649439], [-38.587494605441066, -7.740043248841161], [-38.5251691636104, -7.766827917831677], [-38.449121797428177, -7.735538854138085], [-38.417843720063132, -7.748832311676438], [-38.355518278232495, -7.699767368398511], [-38.304223110260125, -7.78234061373594], [-38.301740200009135, -7.829362099904657], [-38.257190637762847, -7.851642374192082], [-38.225923546726335, -7.811366493749432], [-38.167871786699351, -7.806862099046356], [-38.150095907115002, -7.771332312534753], [-38.087539752384913, -7.820375283155585], [-38.057393266859918, -7.75781912842551], [-37.975940627033992, -7.771332312534753], [-37.895619579048116, -7.686495883517253], [-37.793018256774815, -7.637233186325531], [-37.708192814085862, -7.548112089175831], [-37.551824399917763, -7.47656911769667], [-37.435720879863766, -7.347194112761414], [-37.382173514539829, -7.351698507464491], [-37.346391042471708, -7.297931415569693], [-37.25279850960456, -7.271146746579191], [-37.149966474431835, -7.347194112761414], [-37.016098061122051, -7.400741478085337], [-37.016098061122051, -7.507858181390262], [-37.199240157952119, -7.574896758166332], [-37.212522629161924, -7.646220003074589], [-37.167973066915607, -7.762323523128586], [-37.22602482694262, -7.815870888452508], [-37.342117360668055, -7.9987932587117], [-37.212522629161924, -7.958737104839926], [-37.149966474431835, -7.976512984424275], [-37.127697186472972, -8.164181448614499], [-37.06086734993923, -8.231000298819694], [-36.962539709469581, -8.284547664143616], [-36.833164704534312, -8.226495904116618], [-36.783891021014057, -8.222233208641498], [-36.627742333416819, -8.0836296877292], [-36.659020410781864, -8.012306442820929], [-36.569690573389835, -7.922965619100353], [-36.449093644961295, -7.90969413421908], [-36.422319962299326, -7.824879677858675], [-36.337494519610374, -7.811366493749432], [-36.266171274702117, -7.824879677858675], [-36.217117317752724, -7.780099402712935], [-36.16784363423244, -7.824879677858675], [-36.123294071986152, -7.780099402712935], [-36.074240115036758, -7.824879677858675], [-35.966914671489491, -7.815870888452508], [-35.931373898649355, -7.838151162739933], [-35.886593623503614, -7.732177037603591], [-35.837539666554221, -7.744327916973361], [-35.712669056322056, -7.708776157804678], [-35.681390978957012, -7.713280552507754], [-35.556289655825395, -7.655228792480756], [-35.498248882126944, -7.454288843409245], [-35.373367285566218, -7.458793238112335], [-35.270546236722026, -7.382745871930098], [-35.065343592175424, -7.409530540920613], [-34.980518149486443, -7.512340603436257], [-34.858569902646991, -7.54969412048618], [-34.860822099998529, -7.594913848773672], [-34.854746660313651, -7.634288850275709], [-34.872972979368313, -7.692120883731818], [-34.878597979582878, -7.747470006936979], [-34.836970780729303, -7.871681437456516], [-34.834718583377764, -7.971569136579433], [-34.890518146053239, -8.092177051336506], [-34.966565512235462, -8.407616516494571], [-35.151740079846178, -8.913866535806477], [-35.301824314087071, -8.887323566043932], [-35.391143165150567, -8.882819171340856], [-35.471464213136443, -8.833776200720024], [-35.609848007477865, -8.865043291756507], [-35.721447132828786, -8.918590657080429], [-35.801768180814662, -8.869547686459597], [-35.882319941699961, -8.873832354591784], [-35.971419066192567, -8.905099445628281], [-36.016199341338307, -8.896332355450099], [-36.118789677283075, -8.967655600358356], [-36.123294071986152, -9.016698570979202], [-36.239397592040149, -9.088241542458348], [-36.266171274702117, -9.141788907782271], [-36.346492322687993, -9.199840667809269], [-36.440315568454565, -9.208849457215422], [-36.578699362795987, -9.293444187004965], [-36.833164704534312, -9.262396822539344], [-36.90449893577113, -9.289181491529845], [-36.940270421510689, -9.35600034173504], [-36.998322181537702, -9.306957371114194], [-37.18124455179688, -9.239896821681043], [-37.391171317617449, -9.043483239969703], [-37.471492365603325, -9.003427086097929], [-37.520546322552718, -8.945375326070931], [-37.627641053200563, -8.981146811810504], [-37.681419131423894, -8.976642417107428], [-37.748248967957636, -8.860538897053431], [-37.806289741656087, -8.896332355450099], [-37.81529853106224, -8.976642417107428], [-37.966942823956401, -9.141788907782271], [-38.092044147087989, -9.186349456357121], [-38.154589315489545, -9.266681490671544], [-38.221199425452397, -9.34767270469861], [-38.283074427812721, -9.203663910142609], [-38.307595913123151, -9.102194179709358], [-38.294324428241907, -9.043021814170856], [-38.335940640766921, -9.01017269182401], [-38.43291696282563, -9.003646812668819], [-38.482190646345913, -8.959547689892815], [-38.483992404227138, -8.877655596925138], [-38.504690647204228, -8.834896806231512], [-38.544296361605689, -8.831073563898173], [-38.57759592342282, -8.860538897053431], [-38.619223122276424, -8.896090656222128], [-38.667815653426942, -8.896090656222128], [-38.705399883376288, -8.879896807948114], [-38.834994614882476, -8.800245926003356], [-39.098249019456034, -8.714970043844119], [-39.25664990440481, -8.640263009744331], [-39.332697270587033, -8.565797674872442], [-39.441824472015526, -8.559271795717166], [-39.600895523005477, -8.619564766767255], [-39.682798602301716, -8.683021800437942], [-39.687742450146573, -8.749401197501371], [-39.738367452077739, -8.791237136597275], [-39.834893334666162, -8.809013016181552], [-39.884617457656759, -8.853353838185598], [-39.887770533948924, -8.923995930724061], [-39.909149929295722, -8.980245932869821], [-39.948744657368621, -9.022103844622904], [-40.004994659514409, -9.058095056933354], [-40.077669222833606, -9.08824154245832], [-40.212218788513155, -9.101513027339593], [-40.273192911932853, -9.144952970402969], [-40.319774944959818, -9.293004733863199], [-40.412697311785791, -9.396957374547355], [-40.564792044150238, -9.460172708990143], [-40.685839412049063, -9.47210386178898], [-40.743891172076076, -9.423038918511111], [-40.690343806752139, -9.342728856853768], [-40.703615291633412, -9.217616547393618], [-40.850996889052453, -9.150797697188352], [-40.855490297426996, -9.092745937161425], [-40.891042056595666, -9.03469417713444], [-40.891042056595666, -8.856056475007449], [-40.980371893987723, -8.815780594564785], [-41.003992500357526, -8.781349440907604], [-41.100968822416235, -8.775724440693025], [-41.105473217119311, -8.717672680666027], [-41.159020582443247, -8.708663891259846], [-41.324167073118076, -8.735448560250362], [-41.368716635364422, -8.713168285962922] ] ] ] } }, { "type": "Feature", "properties": { "population": 3944, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-38.699093730791986, -7.619457306741182], [-38.636768288961321, -7.534620877723682], [-38.632274880586806, -7.458793238112335], [-38.582990210737989, -7.427526147075838], [-38.533947240117129, -7.293646747437492], [-38.547449437897825, -7.235594987410494], [-38.600996803221761, -7.222103775958345], [-38.676824442833095, -7.15954762122827], [-38.685822245910714, -7.030172616293001], [-38.730371808157031, -7.0033879473025], [-38.725867413453955, -6.891788821951579], [-38.650039773842593, -6.838241456627657], [-38.61877268280611, -6.757931394970328], [-38.650039773842593, -6.690870845537162], [-38.578716528934336, -6.480944079716593], [-38.5251691636104, -6.382858138474916], [-38.435839326218371, -6.414125229511413], [-38.283964320424815, -6.503444080574909], [-38.239414758178498, -6.48544847441967], [-38.132320027530653, -6.521219960159243], [-38.05627266134843, -6.44539232054791], [-38.002714309695961, -6.431901109095762], [-37.842072213724208, -6.342582258032266], [-37.793018256774815, -6.293517314754325], [-37.757246771035256, -6.177413794700328], [-37.641143250981258, -6.128370824079497], [-37.475996760306401, -6.083832248161727], [-37.422449394982493, -6.097103733042999], [-37.261565599782756, -6.025780488134728], [-37.176740157093803, -6.052543184468149], [-37.176740157093803, -6.114879612627348], [-37.395664725991992, -6.391844955223988], [-37.431216485160689, -6.516715565456167], [-37.507274837671446, -6.55248705119574], [-37.516041927849642, -6.68186205613101], [-37.337623952293541, -6.699879634943329], [-37.270574389188909, -6.739913816158008], [-37.217016037536467, -6.824750245175508], [-37.154470869134911, -6.784694091303734], [-37.042871743783991, -6.753427000267237], [-36.989324378460083, -6.708646725121511], [-36.944774816213766, -6.748922605564161], [-36.792899810420209, -6.76669848514851], [-36.743845853470816, -6.824750245175508], [-36.770619536132784, -6.931844975823353], [-36.712567776105772, -6.976625250969079], [-36.659020410781864, -6.931844975823353], [-36.574194968092911, -6.927582280348247], [-36.502641010285203, -6.784694091303734], [-36.529414692947171, -6.735431394112013], [-36.533919087650247, -6.63732348021324], [-36.444819963157641, -6.623832268761092], [-36.516143208065898, -6.480944079716593], [-36.493873920107035, -6.378353743771839], [-36.382274794756114, -6.302526104160492], [-36.292944957364057, -6.307030498863568], [-36.252669076921421, -6.414125229511413], [-35.926869503946278, -6.467672594835335], [-35.721447132828786, -6.44539232054791], [-35.667899767504849, -6.427396714392671], [-35.4669708047619, -6.463168200132245], [-35.306317722461586, -6.53022874956541], [-35.257274751840754, -6.507948475277985], [-35.047347986020185, -6.534733144268486], [-34.971740072979713, -6.503905506373755], [-34.929673420984386, -6.785155517102595], [-34.879949297993818, -6.908224369453549], [-34.875895342761027, -7.002948494160734], [-34.833817704437166, -7.024327889507546], [-34.805472976793396, -7.288483173021774], [-34.816492264323102, -7.394896751299868], [-34.857669023706393, -7.53328054564129], [-34.858569902646991, -7.54969412048618], [-34.980518149486443, -7.512340603436257], [-35.065343592175424, -7.409530540920613], [-35.270546236722026, -7.382745871930098], [-35.373367285566218, -7.458793238112335], [-35.498248882126944, -7.454288843409245], [-35.556289655825395, -7.655228792480756], [-35.681390978957012, -7.713280552507754], [-35.712669056322056, -7.708776157804678], [-35.837539666554221, -7.744327916973361], [-35.886593623503614, -7.732177037603591], [-35.931373898649355, -7.838151162739933], [-35.966914671489491, -7.815870888452508], [-36.074240115036758, -7.824879677858675], [-36.123294071986152, -7.780099402712935], [-36.16784363423244, -7.824879677858675], [-36.217117317752724, -7.780099402712935], [-36.266171274702117, -7.824879677858675], [-36.337494519610374, -7.811366493749432], [-36.422319962299326, -7.824879677858675], [-36.449093644961295, -7.90969413421908], [-36.569690573389835, -7.922965619100353], [-36.659020410781864, -8.012306442820929], [-36.627742333416819, -8.0836296877292], [-36.783891021014057, -8.222233208641498], [-36.833164704534312, -8.226495904116618], [-36.962539709469581, -8.284547664143616], [-37.06086734993923, -8.231000298819694], [-37.127697186472972, -8.164181448614499], [-37.149966474431835, -7.976512984424275], [-37.212522629161924, -7.958737104839926], [-37.342117360668055, -7.9987932587117], [-37.22602482694262, -7.815870888452508], [-37.167973066915607, -7.762323523128586], [-37.212522629161924, -7.646220003074589], [-37.199240157952119, -7.574896758166332], [-37.016098061122051, -7.507858181390262], [-37.016098061122051, -7.400741478085337], [-37.149966474431835, -7.347194112761414], [-37.25279850960456, -7.271146746579191], [-37.346391042471708, -7.297931415569693], [-37.382173514539829, -7.351698507464491], [-37.435720879863766, -7.347194112761414], [-37.551824399917763, -7.47656911769667], [-37.708192814085862, -7.548112089175831], [-37.793018256774815, -7.637233186325531], [-37.895619579048116, -7.686495883517253], [-37.975940627033992, -7.771332312534753], [-38.057393266859918, -7.75781912842551], [-38.087539752384913, -7.820375283155585], [-38.150095907115002, -7.771332312534753], [-38.167871786699351, -7.806862099046356], [-38.225923546726335, -7.811366493749432], [-38.257190637762847, -7.851642374192082], [-38.301740200009135, -7.829362099904657], [-38.304223110260125, -7.78234061373594], [-38.355518278232495, -7.699767368398511], [-38.417843720063132, -7.748832311676438], [-38.449121797428177, -7.735538854138085], [-38.5251691636104, -7.766827917831677], [-38.587494605441066, -7.740043248841161], [-38.591999000144142, -7.690780551649439], [-38.64554636546805, -7.677487094111086], [-38.699093730791986, -7.619457306741182] ] ] ] } }, { "type": "Feature", "properties": { "population": 6727, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-53.669921938602499, -26.258005381026635], [-53.663396059447336, -26.257763681798622], [-53.516245174927704, -26.289052745492228], [-53.458193414900734, -26.289052745492199], [-53.355372366056514, -26.239987802214294], [-53.279544726445167, -26.262268076501719], [-53.123396038847943, -26.369604506377534], [-52.99379032101325, -26.351608900222303], [-52.913469273027374, -26.365100111674394], [-52.815372345457149, -26.33831544268395], [-52.672495142741198, -26.378371596555716], [-52.641217065376168, -26.400651870843092], [-52.542900411235053, -26.400651870843141], [-52.458074968546086, -26.431918961879639], [-52.199094245776138, -26.44991456803487], [-52.007174072439341, -26.583793967673216], [-51.873294672800995, -26.601569847257558], [-51.502714824680112, -26.601569847257558], [-51.422393776694236, -26.699897487727206], [-51.284020968681347, -26.650854517106367], [-51.239471406435086, -26.606074241960584], [-51.279516573978299, -26.498979511312712], [-51.288525363384451, -26.423151871701464], [-51.248249482941787, -26.347104505519212], [-51.074094202860806, -26.23550538016832], [-50.944719197925508, -26.244492196917378], [-50.900169635679219, -26.280263682656951], [-50.77057490417306, -26.22223389528704], [-50.735023145004391, -26.231000985465229], [-50.645693307612333, -26.07035888949347], [-50.542872258768142, -26.02579834091862], [-50.45804681607919, -26.02579834091862], [-50.369167418157474, -26.085871585397726], [-50.315169613363224, -26.052583009909121], [-50.190299003131059, -26.052583009909121], [-49.949094159945446, -26.012307129466471], [-49.882275309740265, -26.039069825799885], [-49.752669591905601, -26.123906254817314], [-49.721622227439951, -26.159677740556958], [-49.596520904308335, -26.22223389528704], [-49.489415187331957, -26.22223389528704], [-49.45364370159237, -26.16866455730603], [-49.29749501399516, -26.106130375233022], [-49.212669571306208, -26.030302735621696], [-49.109848522462016, -25.994531249882129], [-48.944691045458626, -26.007802734763388], [-48.917917362796658, -25.97651367106981], [-48.650169549848528, -25.97225097559469], [-48.585372184095462, -25.986203612845699], [-48.619341911953825, -26.179475104593394], [-48.678964716962525, -26.225815438392431], [-48.713846310090048, -26.226958016561014], [-48.748266477418667, -26.268574229086028], [-48.700794551779722, -26.348225111030729], [-48.651520868259468, -26.406496597628575], [-48.65804674741463, -26.519216328491041], [-48.676492793040154, -26.612380394544971], [-48.677844111451122, -26.702819851119898], [-48.61574938251988, -26.878095736712453], [-48.593469108232398, -27.058095743578804], [-48.568266470552317, -27.123354535130829], [-48.554094106730417, -27.196018112121465], [-48.595490592684484, -27.2639795404952], [-48.571869986314709, -27.372876029024326], [-48.64252306518182, -27.55781988373559], [-48.605619987602211, -27.825117257213435], [-48.620693230364736, -28.075539630047501], [-48.648367791967303, -28.207177818662899], [-48.693148067113043, -28.310229580406485], [-48.797320434368146, -28.442746675305386], [-48.799572631719684, -28.575263770204174], [-49.023671761362095, -28.698574321783155], [-49.271391497374395, -28.871147570553831], [-49.499995021719883, -29.075449336159807], [-49.712844150933222, -29.324531376911544], [-49.8152147603071, -29.271203738158505], [-49.86877311195957, -29.21765637283459], [-49.953598554648522, -29.195376098547115], [-50.078699877780139, -29.244419069168003], [-50.033919602634398, -29.320466435350227], [-50.051915208789637, -29.356018194518924], [-50.168018728843663, -29.284694949610639], [-50.163525320469091, -29.195376098547165], [-50.069691088373986, -29.092763789945316], [-50.007145919972459, -29.101552852780515], [-49.944820478141793, -28.949897573557898], [-49.953598554648522, -28.793518173061251], [-49.846492837672145, -28.695432231819552], [-49.797449867051284, -28.623867287683332], [-49.699122226581636, -28.597104591349918], [-49.708120029659256, -28.530263768487643], [-49.736695470202449, -28.511367283391792], [-49.839066079576355, -28.465246676163645], [-49.938525311886025, -28.448151948949075], [-50.068790209433359, -28.444328706615693], [-50.141025319610776, -28.452876070223034], [-50.154966970533252, -28.473794039770993], [-50.233046807496123, -28.468630465355268], [-50.446566102750609, -28.422048432328303], [-50.577523138996241, -28.38627694658873], [-50.736143750515879, -28.235983972105508], [-50.965867880372912, -27.959458082650634], [-51.117292446696183, -27.807802803427933], [-51.190417449485665, -27.781237861008321], [-51.286723605503198, -27.716220768684309], [-51.406419654991112, -27.613169006940751], [-51.487641581917615, -27.564126036319912], [-51.530169659711817, -27.568850157593872], [-51.582365706624842, -27.547470762247087], [-51.644691148455451, -27.499768123708598], [-51.701622302970947, -27.488078670137682], [-51.75359862331311, -27.51191900307839], [-51.873294672800995, -27.509458065484495], [-51.912900387202455, -27.472544001576331], [-51.984223632110712, -27.376699271357644], [-52.059589845923213, -27.31348393691492], [-52.1392407278679, -27.283315478732838], [-52.192348640050056, -27.280854541138964], [-52.228570565259943, -27.292543994709881], [-52.264792490469816, -27.277251025376501], [-52.304398204871291, -27.283095752161898], [-52.348046888177009, -27.276350146435902], [-52.414646011811286, -27.236293992564114], [-52.51072145492941, -27.230449265778645], [-52.636492944102201, -27.259475145792123], [-52.741566190297917, -27.245742235112033], [-52.826391632986883, -27.189492232966188], [-52.900197788146116, -27.176682173883854], [-52.952844274529411, -27.178923384906845], [-52.994240760483564, -27.163388716345494], [-53.030473672021984, -27.137526898952693], [-53.070749552464648, -27.141789594427806], [-53.103598674811508, -27.154401899596394], [-53.134195599806787, -27.140449262345427], [-53.184370162267669, -27.14945805175158], [-53.227117966632761, -27.173737837833983], [-53.263339891842634, -27.163388716345494], [-53.304747364125333, -27.097690471651809], [-53.347495168490411, -27.080595744437176], [-53.398120170421592, -27.082397502318429], [-53.456622369918932, -27.103315471866381], [-53.48969121883664, -27.133242230820429], [-53.498018855873042, -27.172177779180771], [-53.540096494196931, -27.197819870002689], [-53.615693420908883, -27.209970749372474], [-53.659572817113968, -27.200522506824541], [-53.671492983584315, -27.169475142358927], [-53.718525456081579, -27.157543989559997], [-53.800417549049271, -27.16475102108496], [-53.851723703350189, -27.156203657477654], [-53.935417554199105, -27.161147505322504], [-53.915620190162599, -27.159565474012084], [-53.838221505569436, -27.12109135145073], [-53.758570623624792, -26.978225135063269], [-53.717393864241558, -26.882819857986362], [-53.727072819688885, -26.804751007352024], [-53.75339606288054, -26.748720731777155], [-53.744617986373783, -26.666608912238587], [-53.718075016611238, -26.443168962308732], [-53.710867985086338, -26.351828626793122], [-53.668570620191588, -26.288151866551573], [-53.669921938602499, -26.258005381026635] ] ], [ [ [-48.464775255666893, -27.436333062694985], [-48.414820419776902, -27.399638725357704], [-48.377917342197293, -27.451406305457454], [-48.409645859032651, -27.566367247342839], [-48.496723499073084, -27.706992252707323], [-48.48592393811424, -27.767065497186366], [-48.554544546200759, -27.812307198130952], [-48.54217394026, -27.574694884379255], [-48.505270862680447, -27.495505428233514], [-48.464775255666893, -27.436333062694985] ] ], [ [ [-48.603148063679726, -26.413703629153474], [-48.66569323208131, -26.289733897861879], [-48.539691030009067, -26.170246588616294], [-48.497624378013768, -26.218850106095431], [-48.531143666401817, -26.313112805003755], [-48.568046743981427, -26.379733901295197], [-48.58447130515475, -26.401552749783775], [-48.603148063679726, -26.413703629153474] ] ] ] } }, { "type": "Feature", "properties": { "population": 11207, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-53.935417554199105, -27.161147505322504], [-53.851723703350189, -27.156203657477654], [-53.800417549049271, -27.16475102108496], [-53.718525456081579, -27.157543989559997], [-53.671492983584315, -27.169475142358927], [-53.659572817113968, -27.200522506824541], [-53.615693420908883, -27.209970749372474], [-53.540096494196931, -27.197819870002689], [-53.498018855873042, -27.172177779180771], [-53.48969121883664, -27.133242230820429], [-53.456622369918932, -27.103315471866381], [-53.398120170421592, -27.082397502318429], [-53.347495168490411, -27.080595744437176], [-53.304747364125333, -27.097690471651809], [-53.263339891842634, -27.163388716345494], [-53.227117966632761, -27.173737837833983], [-53.184370162267669, -27.14945805175158], [-53.134195599806787, -27.140449262345427], [-53.103598674811508, -27.154401899596394], [-53.070749552464648, -27.141789594427806], [-53.030473672021984, -27.137526898952693], [-52.994240760483564, -27.163388716345494], [-52.952844274529411, -27.178923384906845], [-52.900197788146116, -27.176682173883854], [-52.826391632986883, -27.189492232966188], [-52.741566190297917, -27.245742235112033], [-52.636492944102201, -27.259475145792123], [-52.51072145492941, -27.230449265778645], [-52.414646011811286, -27.236293992564114], [-52.348046888177009, -27.276350146435902], [-52.304398204871291, -27.283095752161898], [-52.264792490469816, -27.277251025376501], [-52.228570565259943, -27.292543994709881], [-52.192348640050056, -27.280854541138964], [-52.1392407278679, -27.283315478732838], [-52.059589845923213, -27.31348393691492], [-51.984223632110712, -27.376699271357644], [-51.912900387202455, -27.472544001576331], [-51.873294672800995, -27.509458065484495], [-51.75359862331311, -27.51191900307839], [-51.701622302970947, -27.488078670137682], [-51.644691148455451, -27.499768123708598], [-51.582365706624842, -27.547470762247087], [-51.530169659711817, -27.568850157593872], [-51.487641581917615, -27.564126036319912], [-51.406419654991112, -27.613169006940751], [-51.286723605503198, -27.716220768684309], [-51.190417449485665, -27.781237861008321], [-51.117292446696183, -27.807802803427933], [-50.965867880372912, -27.959458082650634], [-50.736143750515879, -28.235983972105508], [-50.577523138996241, -28.38627694658873], [-50.446566102750609, -28.422048432328303], [-50.233046807496123, -28.468630465355268], [-50.154966970533252, -28.473794039770993], [-50.141025319610776, -28.452876070223034], [-50.068790209433359, -28.444328706615693], [-49.938525311886025, -28.448151948949075], [-49.839066079576355, -28.465246676163645], [-49.736695470202449, -28.511367283391792], [-49.708120029659256, -28.530263768487643], [-49.699122226581636, -28.597104591349918], [-49.797449867051284, -28.623867287683332], [-49.846492837672145, -28.695432231819552], [-49.953598554648522, -28.793518173061251], [-49.944820478141793, -28.949897573557898], [-50.007145919972459, -29.101552852780515], [-50.069691088373986, -29.092763789945316], [-50.163525320469091, -29.195376098547165], [-50.168018728843663, -29.284694949610639], [-50.051915208789637, -29.356018194518924], [-50.033919602634398, -29.320466435350227], [-50.078699877780139, -29.244419069168003], [-49.953598554648522, -29.195376098547115], [-49.86877311195957, -29.21765637283459], [-49.8152147603071, -29.271203738158505], [-49.712844150933222, -29.324531376911544], [-49.745923986179491, -29.363225226043852], [-50.033249436593223, -29.801074363840215], [-50.29941521823099, -30.425669114229116], [-50.620040230461882, -30.897729679111798], [-50.748074903314773, -31.068039744202359], [-50.921318318126595, -31.258388872557354], [-51.151723600353364, -31.480466517747693], [-51.460417459785361, -31.702324436367149], [-51.79814818555937, -31.900320049388839], [-51.920316158969712, -31.989638900452327], [-52.03912231584556, -32.114751209912484], [-52.069049074799679, -32.063005602469801], [-52.04316528474979, -31.977488021082557], [-52.059589845923213, -31.913371807699221], [-52.063193361685677, -31.830359109220041], [-51.995023193069557, -31.815044167229566], [-51.893092036837459, -31.867690653612875], [-51.841115716495324, -31.831919167873302], [-51.80332274630365, -31.796609107932575], [-51.680693347094461, -31.774548560216033], [-51.446245095963462, -31.557414762870536], [-51.272089815882481, -31.47686300198523], [-51.174223601211679, -31.339841512383273], [-51.157568327138819, -31.266716509593778], [-51.161391569472158, -31.118906445361525], [-51.106042446267026, -31.081333201740719], [-50.980040244194782, -31.094143260823131], [-50.954398153372864, -31.052065622499249], [-50.965417440902598, -31.005505562129372], [-50.940895955592168, -30.903794132468136], [-50.770124464702775, -30.813354675893144], [-50.689341990918024, -30.704216488136105], [-50.716346386479415, -30.425888840799999], [-50.685068309114371, -30.413518234859346], [-50.614865669717602, -30.456958177922701], [-50.582016547370756, -30.438940599110381], [-50.546464788202059, -30.316772625700047], [-50.563570501745232, -30.253557291257323], [-50.646143747082647, -30.236902017184477], [-50.931898152514549, -30.374362959928192], [-51.025040245911413, -30.368737959713613], [-51.040344201573333, -30.26052262355428], [-51.17939816195593, -30.211018227134588], [-51.233615693321042, -30.121479649500209], [-51.249820527923589, -30.06004410028163], [-51.297973605932356, -30.034841462601477], [-51.295040256211081, -30.14105728696579], [-51.281768771329808, -30.244109048709397], [-51.157348600567929, -30.364255537667624], [-51.187495086092923, -30.411958176206085], [-51.246667451631424, -30.467527025982122], [-51.287624484443825, -30.591277030702805], [-51.283120089740748, -30.751479673532806], [-51.316419651557879, -30.702656429482843], [-51.359167455922972, -30.674531428409963], [-51.376492896037007, -30.84686297795264], [-51.459066141374421, -30.912802921874295], [-51.485169657995186, -30.977600287627368], [-51.463570536077498, -31.052746774868979], [-51.50631834044259, -31.104492382311669], [-51.716915272304334, -31.243777055593711], [-51.926842038124903, -31.338940633442661], [-51.97252319221127, -31.383720908588394], [-51.994792480170133, -31.489914760295619], [-52.02697143647579, -31.599052948052659], [-52.11989380330175, -31.694897678271346], [-52.193469245561559, -31.885466533197217], [-52.191447761109444, -31.967600325392873], [-52.167146002369904, -32.088427966720836], [-52.127320561397553, -32.16785912209464], [-52.190096442698518, -32.220725335048826], [-52.274691172488048, -32.32377709679244], [-52.341740735592666, -32.439638917618467], [-52.508469257577858, -32.875246844391839], [-52.652247339234421, -33.137820096595718], [-52.762945585644729, -33.266294222590368], [-52.920896031123192, -33.401975380109938], [-53.370665335389901, -33.742178029806389], [-53.397669730951279, -33.737234181961547], [-53.463598688544394, -33.709768360601309], [-53.518947811749555, -33.677138964825346], [-53.531318417690201, -33.655539842907658], [-53.537624570274517, -33.622932419788782], [-53.530417538749589, -33.500303020579594], [-53.531318417690201, -33.17088894551344], [-53.511971493124051, -33.108574490011335], [-53.482945613110545, -33.068518336139562], [-53.395197807028865, -33.01024684954168], [-53.310141651440475, -32.926992451834529], [-53.214066208322365, -32.821018326698187], [-53.125648236199481, -32.736643323479534], [-53.157365766706292, -32.680173594762884], [-53.231171921865524, -32.625505623927474], [-53.362799124152332, -32.581164801923499], [-53.489471492265736, -32.503315677860044], [-53.601740783657846, -32.402966552938281], [-53.653717103999966, -32.298794185683171], [-53.701200015967544, -32.186294181391631], [-53.746650457154473, -32.097414783469901], [-53.761723699916971, -32.056919176456368], [-53.80604254926385, -32.039824449241756], [-53.876464915231495, -31.994604720954264], [-53.920575024336031, -31.952307356059492], [-53.985141677189688, -31.928225323890835], [-54.100344318303073, -31.901440654900334], [-54.220490807261285, -31.855100321101339], [-54.369893889132442, -31.745083227060768], [-54.477669772150008, -31.622673554422462], [-54.530997410903055, -31.541902066966273], [-54.587697852519128, -31.485190639021653], [-54.895941272480812, -31.391147666684198], [-55.036115838374911, -31.279109088191518], [-55.091245235009183, -31.313979694990479], [-55.173598753775721, -31.279548541333284], [-55.254589967802801, -31.225539750210508], [-55.278891726542327, -31.184143264256356], [-55.313322880199522, -31.141626172790708], [-55.345490850176631, -31.093022655311636], [-55.365969366582831, -31.046220895713788], [-55.449674203760296, -30.964548529316986], [-55.557219373878439, -30.875888857966139], [-55.603120254535668, -30.850708192943074], [-55.627191300375785, -30.85811297838179], [-55.650592180174698, -30.892104678897219], [-55.665214983466896, -30.924953801244065], [-55.705941303379859, -30.946552923161761], [-55.756346578740164, -30.987048530175294], [-55.807872459611971, -31.036772653165869], [-55.873570704305664, -31.069621775512708], [-55.952089994410315, -31.080871775941866], [-56.004747467122158, -31.079289744631517], [-56.015547028081002, -31.059734079823023], [-56.01846939147373, -30.991772651449253], [-55.998891754008156, -30.837195008833831], [-56.044792634665384, -30.777583190153571], [-56.10576675808511, -30.71366473068403], [-56.176200110381302, -30.628388848524764], [-56.40727555864926, -30.447487962717688], [-56.721594418295822, -30.186958167623018], [-56.83274310417643, -30.107307285678324], [-56.93714618433097, -30.101001133094016], [-57.032771187978781, -30.109987949843088], [-57.120518994060461, -30.144419103500283], [-57.18689839112389, -30.264807291686473], [-57.214342239827033, -30.283484050211435], [-57.383773398634077, -30.28078141338959], [-57.552292692171946, -30.26120377592401], [-57.608993133788019, -30.187859046563631], [-57.563773405500527, -30.1399147087972], [-57.405141807652342, -30.033940583660858], [-57.317394001570648, -29.939458158181644], [-57.300749713826349, -29.856643213616252], [-57.224691361315578, -29.782177878744378], [-57.089240916695417, -29.716237934822715], [-56.938717229312772, -29.59475111378211], [-56.772450133126441, -29.41789319687927], [-56.671419855834941, -29.287397586432505], [-56.635868096666243, -29.203022583213851], [-56.570620291442864, -29.138005490889896], [-56.47589616673568, -29.092544063374433], [-56.393322921398266, -28.997380485525483], [-56.322450115960308, -28.852470812028862], [-56.225473793901571, -28.737268170915485], [-56.102844394692383, -28.651772562185336], [-56.034223786605963, -28.580888770418831], [-56.019589996985232, -28.524638768273064], [-55.984950103085694, -28.488647555962608], [-55.930271145921736, -28.472893160830374], [-55.903717189830658, -28.443208101104233], [-55.905518947711883, -28.399548431469995], [-55.890445704949386, -28.37008309831473], [-55.858947901013465, -28.35410897661162], [-55.806070701730746, -28.359733976826199], [-55.732044820000624, -28.386716399730496], [-55.687275531183445, -28.38155282531477], [-55.671971575521511, -28.344880460634577], [-55.691549212987098, -28.302802822310696], [-55.745997457251633, -28.255539636913994], [-55.725518940845433, -28.204013756042194], [-55.582422011558592, -28.121001057563006], [-55.47666761299314, -28.089272540727663], [-55.409848762787945, -28.037746659855856], [-55.346391729117258, -27.956074293459054], [-55.243790406843942, -27.898923412372667], [-55.101594356497728, -27.866755442395558], [-55.063790399977492, -27.835927804500827], [-55.068964960721758, -27.796333076427906], [-55.039950067036813, -27.767746649556173], [-54.955794790389035, -27.74726813314998], [-54.91012462263123, -27.708574284017672], [-54.902697864535426, -27.651862856073052], [-54.875693468974035, -27.599216369689749], [-54.829122422275617, -27.550612852210676], [-54.777146101933511, -27.532397519484562], [-54.719775494276234, -27.544987851996098], [-54.665766703153466, -27.526552792699107], [-54.615372414121708, -27.477048396279415], [-54.554848730172282, -27.454108942279341], [-54.48441537787609, -27.457251032242951], [-54.448193452666203, -27.446440484955566], [-54.326915371867941, -27.423501030955492], [-54.26009652166276, -27.38210454500134], [-54.205197837927912, -27.289621631317146], [-54.156374593877956, -27.253850145577573], [-54.113846516083754, -27.274768115125532], [-54.040040360924522, -27.243720750659918], [-53.935417554199105, -27.161147505322504] ] ] ] } } ] } ================================================ FILE: packages/turf-center-median/test/in/burt-barber-rigby-problem-unweighted.json ================================================ { "type": "FeatureCollection", "properties": {}, "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [2, 4] }, "properties": { "weight": "10" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [3, 6] }, "properties": { "weight": "20" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [3.4, 5.2] }, "properties": { "weight": "10" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [4, 4] }, "properties": { "weight": "20" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [4.4, 5.2] }, "properties": { "weight": "10" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [4.8, 6.2] }, "properties": { "weight": "80" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [5, 1] }, "properties": { "weight": "10" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [6, 5] }, "properties": { "weight": "90" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [9, 9] }, "properties": { "weight": "100" } } ] } ================================================ FILE: packages/turf-center-median/test/in/burt-barber-rigby-problem.json ================================================ { "type": "FeatureCollection", "properties": { "weight": "weight" }, "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [2, 4] }, "properties": { "weight": "10" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [3, 6] }, "properties": { "weight": "20" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [3.4, 5.2] }, "properties": { "weight": "10" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [4, 4] }, "properties": { "weight": "20" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [4.4, 5.2] }, "properties": { "weight": "10" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [4.8, 6.2] }, "properties": { "weight": "80" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [5, 1] }, "properties": { "weight": "10" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [6, 5] }, "properties": { "weight": "90" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [9, 9] }, "properties": { "weight": "100" } } ] } ================================================ FILE: packages/turf-center-median/test/in/kuhn-kuenne-ukraine-problem.json ================================================ { "type": "FeatureCollection", "properties": { "weight": "populationProportion" }, "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [28, 54] }, "properties": { "name": "Minsk", "populationProportion": "0.012" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [24, 50] }, "properties": { "name": "Lvov", "populationProportion": "0.010" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [28, 47] }, "properties": { "name": "Kishinev", "populationProportion": "0.005" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [31, 46] }, "properties": { "name": "Odessa", "populationProportion": "0.014" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [32, 47] }, "properties": { "name": "Nikolaev", "populationProportion": "0.005" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [33, 47] }, "properties": { "name": "Kherson", "populationProportion": "0.004" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [34, 45] }, "properties": { "name": "Sevastopol", "populationProportion": "0.004" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [34, 45] }, "properties": { "name": "Simferopol", "populationProportion": "0.004" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [34, 46] }, "properties": { "name": "Krivoi Rog", "populationProportion": "0.009" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [35, 48] }, "properties": { "name": "Dneprodzerhinsk", "populationProportion": "0.004" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [35, 48] }, "properties": { "name": "Dnepropetrovsk", "populationProportion": "0.015" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [36, 48] }, "properties": { "name": "Zaporozhe", "populationProportion": "0.010" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [38, 47] }, "properties": { "name": "Zhdanov", "populationProportion": "0.007" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [37, 48] }, "properties": { "name": "Stalino", "populationProportion": "0.016" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [38, 48] }, "properties": { "name": "Makeyevka", "populationProportion": "0.008" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [38, 48] }, "properties": { "name": "Gorlovka", "populationProportion": "0.007" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [39, 47] }, "properties": { "name": "Taganrog", "populationProportion": "0.005" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [29, 45] }, "properties": { "name": "Krasnodar", "populationProportion": "0.007" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [40, 47] }, "properties": { "name": "Rostov", "populationProportion": "0.014" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [40, 48] }, "properties": { "name": "Shakhty", "populationProportion": "0.004" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [39, 49] }, "properties": { "name": "Kadiyevka", "populationProportion": "0.004" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [37, 51] }, "properties": { "name": "Kharkhov", "populationProportion": "0.021" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [31, 50] }, "properties": { "name": "Kiev", "populationProportion": "0.026" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [31, 52] }, "properties": { "name": "Gomel", "populationProportion": "0.004" } } ] } ================================================ FILE: packages/turf-center-median/test/in/lines.json ================================================ { "type": "FeatureCollection", "properties": {}, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.125738749668566, 38.76746626035359], [-9.118958660834354, 38.7838161797457] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.161999067964235, 38.75179370240931], [-9.147535970888825, 38.72884802907016] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.112236293805175, 38.73875598177839], [-9.199016504129736, 38.74023266794694] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.172145822943001, 38.78402506701773], [-9.136258235151075, 38.799637924903166] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.10727033052904, 38.73484447193901], [-9.053278383064967, 38.679128517168316] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.169262101247146, 38.772240341481], [-9.15765120809318, 38.75627601637043] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.14661901988399, 38.72004765296632], [-9.204143991573973, 38.78492020730122] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.138999685485105, 38.778251383504895], [-9.233963423890962, 38.775678685071206] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.135802790342526, 38.78077103840063], [-9.151642146107683, 38.74294839813439] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.150669919917616, 38.71412491974352], [-9.124492811616365, 38.64953861366426] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.097246787705444, 38.73944669482268], [-9.075048980801867, 38.723268791247854] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.09735344272555, 38.782582410972], [-9.117047224630989, 38.759902043510316] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.105282192601013, 38.73863730130412], [-9.04396012939997, 38.70232905706804] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.092942812805378, 38.70204485360651], [-9.073458460421703, 38.69601533701997] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.1520226476006, 38.72134120396426], [-9.203089429895131, 38.715861478160406] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.127291465845172, 38.76640254826793], [-9.18111081229971, 38.77980610930915] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.168224491230864, 38.738032415084795], [-9.188253123198445, 38.74639631949864] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.160274853546044, 38.74488955597258], [-9.20667786946356, 38.77364846537799] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.138399322591825, 38.79860043526947], [-9.179620290997937, 38.88735586861508] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.170032930346219, 38.72088087810547], [-9.169243656966975, 38.70388504357632] ] } } ] } ================================================ FILE: packages/turf-center-median/test/in/square.json ================================================ { "type": "FeatureCollection", "properties": {}, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [9, 9] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [9.25, 9.25] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [9.5, 9.5] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [9.75, 9.75] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [10, 10] } } ] } ================================================ FILE: packages/turf-center-median/test/in/squares-weighted.json ================================================ { "type": "FeatureCollection", "properties": { "weight": "weight" }, "features": [ { "type": "Feature", "properties": { "fill": "#333", "weight": 100 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.12013592725509], [-9.299992605418552, 38.16510194544132], [-9.242851861013252, 38.16510194544132], [-9.242851861013252, 38.12013592725509], [-9.299992605418552, 38.12013592725509] ] ] } }, { "type": "Feature", "properties": { "fill": "#777", "weight": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.16510194544132], [-9.299992605418552, 38.21006796362755], [-9.242851861013252, 38.21006796362755], [-9.242851861013252, 38.16510194544132], [-9.299992605418552, 38.16510194544132] ] ] } }, { "type": "Feature", "properties": { "fill": "#777", "weight": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.21006796362755], [-9.299992605418552, 38.25503398181378], [-9.242851861013252, 38.25503398181378], [-9.242851861013252, 38.21006796362755], [-9.299992605418552, 38.21006796362755] ] ] } }, { "type": "Feature", "properties": { "fill": "#777", "weight": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.25503398181378], [-9.299992605418552, 38.30000000000001], [-9.242851861013252, 38.30000000000001], [-9.242851861013252, 38.25503398181378], [-9.299992605418552, 38.25503398181378] ] ] } }, { "type": "Feature", "properties": { "fill": "#777", "weight": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.30000000000001], [-9.299992605418552, 38.34496601818624], [-9.242851861013252, 38.34496601818624], [-9.242851861013252, 38.30000000000001], [-9.299992605418552, 38.30000000000001] ] ] } }, { "type": "Feature", "properties": { "fill": "#777", "weight": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.34496601818624], [-9.299992605418552, 38.38993203637247], [-9.242851861013252, 38.38993203637247], [-9.242851861013252, 38.34496601818624], [-9.299992605418552, 38.34496601818624] ] ] } }, { "type": "Feature", "properties": { "fill": "#777", "weight": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.38993203637247], [-9.299992605418552, 38.4348980545587], [-9.242851861013252, 38.4348980545587], [-9.242851861013252, 38.38993203637247], [-9.299992605418552, 38.38993203637247] ] ] } }, { "type": "Feature", "properties": { "fill": "#777", "weight": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.4348980545587], [-9.299992605418552, 38.47986407274493], [-9.242851861013252, 38.47986407274493], [-9.242851861013252, 38.4348980545587], [-9.299992605418552, 38.4348980545587] ] ] } }, { "type": "Feature", "properties": { "fill": "#777", "weight": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.12013592725509], [-9.242851861013252, 38.16510194544132], [-9.185711116607951, 38.16510194544132], [-9.185711116607951, 38.12013592725509], [-9.242851861013252, 38.12013592725509] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.16510194544132], [-9.242851861013252, 38.21006796362755], [-9.185711116607951, 38.21006796362755], [-9.185711116607951, 38.16510194544132], [-9.242851861013252, 38.16510194544132] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.21006796362755], [-9.242851861013252, 38.25503398181378], [-9.185711116607951, 38.25503398181378], [-9.185711116607951, 38.21006796362755], [-9.242851861013252, 38.21006796362755] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.25503398181378], [-9.242851861013252, 38.30000000000001], [-9.185711116607951, 38.30000000000001], [-9.185711116607951, 38.25503398181378], [-9.242851861013252, 38.25503398181378] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.30000000000001], [-9.242851861013252, 38.34496601818624], [-9.185711116607951, 38.34496601818624], [-9.185711116607951, 38.30000000000001], [-9.242851861013252, 38.30000000000001] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.34496601818624], [-9.242851861013252, 38.38993203637247], [-9.185711116607951, 38.38993203637247], [-9.185711116607951, 38.34496601818624], [-9.242851861013252, 38.34496601818624] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.38993203637247], [-9.242851861013252, 38.4348980545587], [-9.185711116607951, 38.4348980545587], [-9.185711116607951, 38.38993203637247], [-9.242851861013252, 38.38993203637247] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.4348980545587], [-9.242851861013252, 38.47986407274493], [-9.185711116607951, 38.47986407274493], [-9.185711116607951, 38.4348980545587], [-9.242851861013252, 38.4348980545587] ] ] } }, { "type": "Feature", "properties": { "fill": "#777", "weight": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.12013592725509], [-9.185711116607951, 38.16510194544132], [-9.12857037220265, 38.16510194544132], [-9.12857037220265, 38.12013592725509], [-9.185711116607951, 38.12013592725509] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.16510194544132], [-9.185711116607951, 38.21006796362755], [-9.12857037220265, 38.21006796362755], [-9.12857037220265, 38.16510194544132], [-9.185711116607951, 38.16510194544132] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.21006796362755], [-9.185711116607951, 38.25503398181378], [-9.12857037220265, 38.25503398181378], [-9.12857037220265, 38.21006796362755], [-9.185711116607951, 38.21006796362755] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.25503398181378], [-9.185711116607951, 38.30000000000001], [-9.12857037220265, 38.30000000000001], [-9.12857037220265, 38.25503398181378], [-9.185711116607951, 38.25503398181378] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.30000000000001], [-9.185711116607951, 38.34496601818624], [-9.12857037220265, 38.34496601818624], [-9.12857037220265, 38.30000000000001], [-9.185711116607951, 38.30000000000001] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.34496601818624], [-9.185711116607951, 38.38993203637247], [-9.12857037220265, 38.38993203637247], [-9.12857037220265, 38.34496601818624], [-9.185711116607951, 38.34496601818624] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.38993203637247], [-9.185711116607951, 38.4348980545587], [-9.12857037220265, 38.4348980545587], [-9.12857037220265, 38.38993203637247], [-9.185711116607951, 38.38993203637247] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.4348980545587], [-9.185711116607951, 38.47986407274493], [-9.12857037220265, 38.47986407274493], [-9.12857037220265, 38.4348980545587], [-9.185711116607951, 38.4348980545587] ] ] } }, { "type": "Feature", "properties": { "fill": "#777", "weight": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.12013592725509], [-9.12857037220265, 38.16510194544132], [-9.07142962779735, 38.16510194544132], [-9.07142962779735, 38.12013592725509], [-9.12857037220265, 38.12013592725509] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.16510194544132], [-9.12857037220265, 38.21006796362755], [-9.07142962779735, 38.21006796362755], [-9.07142962779735, 38.16510194544132], [-9.12857037220265, 38.16510194544132] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.21006796362755], [-9.12857037220265, 38.25503398181378], [-9.07142962779735, 38.25503398181378], [-9.07142962779735, 38.21006796362755], [-9.12857037220265, 38.21006796362755] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.25503398181378], [-9.12857037220265, 38.30000000000001], [-9.07142962779735, 38.30000000000001], [-9.07142962779735, 38.25503398181378], [-9.12857037220265, 38.25503398181378] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.30000000000001], [-9.12857037220265, 38.34496601818624], [-9.07142962779735, 38.34496601818624], [-9.07142962779735, 38.30000000000001], [-9.12857037220265, 38.30000000000001] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.34496601818624], [-9.12857037220265, 38.38993203637247], [-9.07142962779735, 38.38993203637247], [-9.07142962779735, 38.34496601818624], [-9.12857037220265, 38.34496601818624] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.38993203637247], [-9.12857037220265, 38.4348980545587], [-9.07142962779735, 38.4348980545587], [-9.07142962779735, 38.38993203637247], [-9.12857037220265, 38.38993203637247] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.4348980545587], [-9.12857037220265, 38.47986407274493], [-9.07142962779735, 38.47986407274493], [-9.07142962779735, 38.4348980545587], [-9.12857037220265, 38.4348980545587] ] ] } } ] } ================================================ FILE: packages/turf-center-median/test/in/squares.json ================================================ { "type": "FeatureCollection", "properties": {}, "features": [ { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.12013592725509], [-9.299992605418552, 38.16510194544132], [-9.242851861013252, 38.16510194544132], [-9.242851861013252, 38.12013592725509], [-9.299992605418552, 38.12013592725509] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.16510194544132], [-9.299992605418552, 38.21006796362755], [-9.242851861013252, 38.21006796362755], [-9.242851861013252, 38.16510194544132], [-9.299992605418552, 38.16510194544132] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.21006796362755], [-9.299992605418552, 38.25503398181378], [-9.242851861013252, 38.25503398181378], [-9.242851861013252, 38.21006796362755], [-9.299992605418552, 38.21006796362755] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.25503398181378], [-9.299992605418552, 38.30000000000001], [-9.242851861013252, 38.30000000000001], [-9.242851861013252, 38.25503398181378], [-9.299992605418552, 38.25503398181378] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.30000000000001], [-9.299992605418552, 38.34496601818624], [-9.242851861013252, 38.34496601818624], [-9.242851861013252, 38.30000000000001], [-9.299992605418552, 38.30000000000001] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.34496601818624], [-9.299992605418552, 38.38993203637247], [-9.242851861013252, 38.38993203637247], [-9.242851861013252, 38.34496601818624], [-9.299992605418552, 38.34496601818624] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.38993203637247], [-9.299992605418552, 38.4348980545587], [-9.242851861013252, 38.4348980545587], [-9.242851861013252, 38.38993203637247], [-9.299992605418552, 38.38993203637247] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.4348980545587], [-9.299992605418552, 38.47986407274493], [-9.242851861013252, 38.47986407274493], [-9.242851861013252, 38.4348980545587], [-9.299992605418552, 38.4348980545587] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.12013592725509], [-9.242851861013252, 38.16510194544132], [-9.185711116607951, 38.16510194544132], [-9.185711116607951, 38.12013592725509], [-9.242851861013252, 38.12013592725509] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.16510194544132], [-9.242851861013252, 38.21006796362755], [-9.185711116607951, 38.21006796362755], [-9.185711116607951, 38.16510194544132], [-9.242851861013252, 38.16510194544132] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.21006796362755], [-9.242851861013252, 38.25503398181378], [-9.185711116607951, 38.25503398181378], [-9.185711116607951, 38.21006796362755], [-9.242851861013252, 38.21006796362755] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.25503398181378], [-9.242851861013252, 38.30000000000001], [-9.185711116607951, 38.30000000000001], [-9.185711116607951, 38.25503398181378], [-9.242851861013252, 38.25503398181378] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.30000000000001], [-9.242851861013252, 38.34496601818624], [-9.185711116607951, 38.34496601818624], [-9.185711116607951, 38.30000000000001], [-9.242851861013252, 38.30000000000001] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.34496601818624], [-9.242851861013252, 38.38993203637247], [-9.185711116607951, 38.38993203637247], [-9.185711116607951, 38.34496601818624], [-9.242851861013252, 38.34496601818624] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.38993203637247], [-9.242851861013252, 38.4348980545587], [-9.185711116607951, 38.4348980545587], [-9.185711116607951, 38.38993203637247], [-9.242851861013252, 38.38993203637247] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.4348980545587], [-9.242851861013252, 38.47986407274493], [-9.185711116607951, 38.47986407274493], [-9.185711116607951, 38.4348980545587], [-9.242851861013252, 38.4348980545587] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.12013592725509], [-9.185711116607951, 38.16510194544132], [-9.12857037220265, 38.16510194544132], [-9.12857037220265, 38.12013592725509], [-9.185711116607951, 38.12013592725509] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.16510194544132], [-9.185711116607951, 38.21006796362755], [-9.12857037220265, 38.21006796362755], [-9.12857037220265, 38.16510194544132], [-9.185711116607951, 38.16510194544132] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.21006796362755], [-9.185711116607951, 38.25503398181378], [-9.12857037220265, 38.25503398181378], [-9.12857037220265, 38.21006796362755], [-9.185711116607951, 38.21006796362755] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.25503398181378], [-9.185711116607951, 38.30000000000001], [-9.12857037220265, 38.30000000000001], [-9.12857037220265, 38.25503398181378], [-9.185711116607951, 38.25503398181378] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.30000000000001], [-9.185711116607951, 38.34496601818624], [-9.12857037220265, 38.34496601818624], [-9.12857037220265, 38.30000000000001], [-9.185711116607951, 38.30000000000001] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.34496601818624], [-9.185711116607951, 38.38993203637247], [-9.12857037220265, 38.38993203637247], [-9.12857037220265, 38.34496601818624], [-9.185711116607951, 38.34496601818624] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.38993203637247], [-9.185711116607951, 38.4348980545587], [-9.12857037220265, 38.4348980545587], [-9.12857037220265, 38.38993203637247], [-9.185711116607951, 38.38993203637247] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.4348980545587], [-9.185711116607951, 38.47986407274493], [-9.12857037220265, 38.47986407274493], [-9.12857037220265, 38.4348980545587], [-9.185711116607951, 38.4348980545587] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.12013592725509], [-9.12857037220265, 38.16510194544132], [-9.07142962779735, 38.16510194544132], [-9.07142962779735, 38.12013592725509], [-9.12857037220265, 38.12013592725509] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.16510194544132], [-9.12857037220265, 38.21006796362755], [-9.07142962779735, 38.21006796362755], [-9.07142962779735, 38.16510194544132], [-9.12857037220265, 38.16510194544132] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.21006796362755], [-9.12857037220265, 38.25503398181378], [-9.07142962779735, 38.25503398181378], [-9.07142962779735, 38.21006796362755], [-9.12857037220265, 38.21006796362755] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.25503398181378], [-9.12857037220265, 38.30000000000001], [-9.07142962779735, 38.30000000000001], [-9.07142962779735, 38.25503398181378], [-9.12857037220265, 38.25503398181378] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.30000000000001], [-9.12857037220265, 38.34496601818624], [-9.07142962779735, 38.34496601818624], [-9.07142962779735, 38.30000000000001], [-9.12857037220265, 38.30000000000001] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.34496601818624], [-9.12857037220265, 38.38993203637247], [-9.07142962779735, 38.38993203637247], [-9.07142962779735, 38.34496601818624], [-9.12857037220265, 38.34496601818624] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.38993203637247], [-9.12857037220265, 38.4348980545587], [-9.07142962779735, 38.4348980545587], [-9.07142962779735, 38.38993203637247], [-9.12857037220265, 38.38993203637247] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.4348980545587], [-9.12857037220265, 38.47986407274493], [-9.07142962779735, 38.47986407274493], [-9.07142962779735, 38.4348980545587], [-9.12857037220265, 38.4348980545587] ] ] } } ] } ================================================ FILE: packages/turf-center-median/test/in/steiners-problem-bad-weights.json ================================================ { "type": "FeatureCollection", "properties": { "weight": "weight" }, "features": [ { "type": "Feature", "properties": { "weight": 0 }, "geometry": { "type": "Point", "coordinates": [0, 0] } }, { "type": "Feature", "properties": { "weight": -10 }, "geometry": { "type": "Point", "coordinates": [1, 0] } }, { "type": "Feature", "properties": { "weight": -30 }, "geometry": { "type": "Point", "coordinates": [0, 1] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [5, 8] } } ] } ================================================ FILE: packages/turf-center-median/test/in/steiners-problem-low-tolerance.json ================================================ { "type": "FeatureCollection", "properties": { "tolerance": 2 }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [5, 8] } } ] } ================================================ FILE: packages/turf-center-median/test/in/steiners-problem.json ================================================ { "type": "FeatureCollection", "properties": {}, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [5, 8] } } ] } ================================================ FILE: packages/turf-center-median/test/out/brazil-states-weighted.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "population": 790, "fill": "#fff" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-66.62767023563575, -9.925465695489663], [-66.73004084500963, -9.975431517708216], [-67.11142025408935, -10.269052134377702], [-67.19040096999285, -10.311349499272467], [-67.28040097342608, -10.317194226057921], [-67.33281674690996, -10.357931532299432], [-67.41697202355772, -10.389879775705666], [-67.58234922713199, -10.505983295759663], [-67.66672423035064, -10.598905662585608], [-67.72184264065636, -10.68303896657629], [-67.78575011379736, -10.685983302626113], [-67.83502379731763, -10.662802149398075], [-67.99162292438517, -10.674491602968985], [-68.07172424580017, -10.703078029840725], [-68.15857117294124, -10.784970122808403], [-68.2665667825297, -10.933021886268634], [-68.311116344776, -10.975099524592522], [-68.39797425824561, -11.018737221569666], [-68.49832338316737, -11.05475040653721], [-68.62274355392925, -11.109198650801744], [-68.67832339003384, -11.112802166564208], [-68.72759707355411, -11.122470135683017], [-68.76989443844887, -11.09772892380171], [-68.78406680227076, -11.044621011619554], [-68.84842471488206, -11.011090736902972], [-69.00165103908655, -10.99445743548722], [-69.22844181922231, -10.955741613697825], [-69.46245061721154, -10.948095129031131], [-69.578543150937, -10.951698644793595], [-69.67394842801392, -10.954181555044556], [-69.8397760710585, -10.933483312067494], [-69.96037299948702, -10.92987979630503], [-70.06634712462336, -10.982526282688326], [-70.22002388829817, -11.047543375012282], [-70.29044625426582, -11.064198649085128], [-70.34197213513762, -11.066681559336104], [-70.3923664241694, -11.05857364887055], [-70.4508686236667, -11.02482364758309], [-70.53322214243323, -10.946974523519643], [-70.5964484632045, -10.976901282473747], [-70.64234934386172, -11.01018985796236], [-70.64144846492111, -10.84078067181241], [-70.64031687308108, -10.586073630846116], [-70.63941599414046, -10.361293348833925], [-70.63852610152838, -10.18151306853835], [-70.63762522258777, -9.971828001945752], [-70.63694407021804, -9.823776238485522], [-70.59374582638266, -9.767526236339762], [-70.56719187029158, -9.704530628467907], [-70.59915110002635, -9.62059507839102], [-70.59217478140084, -9.543427106697308], [-70.57012522001286, -9.489879741373386], [-70.54109933999935, -9.437452981560966], [-70.60791819020453, -9.463776224752607], [-70.63694407021804, -9.478168315145382], [-70.67249582938673, -9.518004742446266], [-70.75844187758719, -9.571771834341064], [-70.8162739110433, -9.625319199664986], [-70.88444407965942, -9.668978869299224], [-70.97084056733017, -9.765724478458523], [-71.04172435909668, -9.81883239064068], [-71.11529980135649, -9.852340692700167], [-71.23791821423713, -9.965983275160283], [-71.33939893099894, -9.988483276018599], [-71.6080476228877, -10.006017456374977], [-71.8874958757353, -10.005578003233211], [-72.1428730827428, -10.005116577434364], [-72.1815669318751, -10.003776245351972], [-72.17909500795267, -9.91017272615629], [-72.17279984169691, -9.844013055663751], [-72.25986649540886, -9.77427184206583], [-72.26572220852286, -9.688556506764797], [-72.28912308832179, -9.629142441998326], [-72.3181489683353, -9.556698591578566], [-72.37912309175502, -9.510116558551601], [-72.46484941338458, -9.492120952396377], [-72.60547441874901, -9.452064798524603], [-72.81426959272953, -9.410448585999575], [-73.01384723706157, -9.407526222606847], [-73.20937092616083, -9.411349464940187], [-73.08989460324379, -9.265780611730932], [-72.97041828032677, -9.120189785864582], [-72.97402179608923, -8.993077964609398], [-73.07054767867764, -8.882819171340856], [-73.12252399901976, -8.81397883668356], [-73.20307575990506, -8.719254711976376], [-73.30252400588621, -8.65399592042445], [-73.35674153725132, -8.566918280383945], [-73.35179768940648, -8.51427179400065], [-73.36034505301379, -8.479401187201688], [-73.39814900953402, -8.458922670795488], [-73.43594197972571, -8.426974427389268], [-73.48814901296724, -8.392103820590307], [-73.54912313638698, -8.345741514134218], [-73.54912313638698, -8.299401180335224], [-73.57229330328647, -8.249896783915531], [-73.61009725980671, -8.191845023888533], [-73.61009725980671, -8.145504690089538], [-73.64496786660567, -8.072819140441808], [-73.68277182312589, -8.020612107200265], [-73.7203450667467, -7.985741500401318], [-73.77569418995185, -7.936478803209596], [-73.77277182655912, -7.895741496968085], [-73.73204550664616, -7.875504679789856], [-73.71450033996123, -7.828922646762891], [-73.7203450667467, -7.78258231296391], [-73.76691611344512, -7.753556432950404], [-73.82204551007939, -7.738922643329673], [-73.89472007339857, -7.654767366681895], [-73.94691612031157, -7.611129669704752], [-73.98179771343908, -7.585026153083987], [-74.00204551694584, -7.556000273070481], [-73.98179771343908, -7.535741483235171], [-73.95839683364015, -7.506715603221679], [-73.95277183342557, -7.460375269422684], [-73.9642415604256, -7.416715599788446], [-73.9642415604256, -7.378922629596758], [-73.92937095362666, -7.367233176025834], [-73.89179771000585, -7.373077902811303], [-73.85399375348561, -7.349896749583266], [-73.80472006996536, -7.34112965940507], [-73.7493709467602, -7.33526295996252], [-73.7203450667467, -7.309181415998836], [-73.72326743013943, -7.262819109542761], [-73.75814902326692, -7.172819106109529], [-73.79301963006588, -7.13502613591784], [-73.79684287239924, -7.116788830534645], [-72.66352617877601, -7.592672637750681], [-70.37325021250267, -8.155172659208347], [-69.80646552291279, -8.454198549521536], [-66.82859919837871, -9.838168328878282], [-66.62767023563575, -9.925245968918787], [-66.62767023563575, -9.925465695489663] ] ] ] } }, { "type": "Feature", "properties": { "population": 1749, "fill": "#fff" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-66.62767023563575, -9.925465695489663], [-66.62767023563575, -9.925245968918787], [-66.82859919837871, -9.838168328878282], [-66.74377375568974, -9.748849477814787], [-66.69471979874037, -9.748849477814787], [-66.59662287117014, -9.664013048797287], [-66.50279962540357, -9.63274595776079], [-66.4046917115048, -9.52565122711296], [-66.39569390842718, -9.405043312355886], [-66.10544609462073, -9.418556496465115], [-65.99834037764435, -9.400780616880766], [-65.93129081453974, -9.414052101762039], [-65.76614432386489, -9.56592710755561], [-65.6768254728014, -9.534638043862032], [-65.6322759105551, -9.449823587501612], [-65.52517019357872, -9.414052101762039], [-65.44484914559283, -9.445319192798536], [-65.41807546293087, -9.391771827474614], [-65.221650894891, -9.257892427836268], [-65.19915089403268, -9.266681490671544], [-65.17236622504218, -9.373995947890265], [-65.0920451770563, -9.436332376049464], [-65.03849781173238, -9.400780616880766], [-64.90461841209404, -9.213112152690542], [-64.92689868638146, -9.11953060615194], [-64.88662280593881, -9.061478846124942], [-64.77951708896242, -8.985431479942704], [-64.69019823789894, -9.021202965682278], [-64.59659471870324, -9.025707360385354], [-64.47599779027472, -8.949879720774021], [-64.4179460302477, -8.972138022404351], [-64.38217454450813, -8.940870931367854], [-64.21701706750476, -8.949879720774021], [-64.11892013993453, -8.936366536664778], [-64.12769821644126, -8.68640558962953], [-64.07415085111734, -8.713168285962936], [-63.99832321150599, -8.681901194926454], [-63.92249557189466, -8.53453058383596], [-63.993818816802914, -8.440927064640263], [-63.91799117719157, -8.333832333992419], [-63.75284468651674, -8.284547664143616], [-63.72607100385477, -8.19094414494792], [-63.59197187764555, -8.1641814486145], [-63.587698195841895, -8.079345019597], [-63.538424512321626, -7.9987932587117], [-62.90459025962714, -8.007802048117853], [-62.82877360634434, -8.016788864866925], [-62.721448162797074, -8.061349413441775], [-62.67689860055077, -8.114896778765697], [-62.63662272010812, -8.222233208641498], [-62.5562906857937, -8.289052058846693], [-62.5385257925379, -8.36059503032584], [-62.45370034984893, -8.347103818873691], [-62.373368315534506, -8.382875304613265], [-62.3063187524299, -8.570302069575533], [-62.172450339120104, -8.610577950018182], [-62.13217445867744, -8.766715651286859], [-61.99829505903911, -8.811495926432599], [-61.91797401105322, -8.873832354591784], [-61.873424448806915, -8.856056475007449], [-61.837641976738794, -8.744457349656528], [-61.761825323455994, -8.72668147007218], [-61.71704504831027, -8.68640558962953], [-61.609950317662424, -8.722177075369103], [-61.609950317662424, -8.766715651286859], [-61.50734899538912, -8.847047685601282], [-61.48484899453082, -8.914108235034448], [-61.529618283348, -8.998922691394853], [-61.55639196600997, -9.128297696330122], [-61.529618283348, -9.22662533679977], [-61.592174438078075, -9.239896821681043], [-61.609950317662424, -9.320448582566343], [-61.54739416293235, -9.409547707058962], [-61.551898557635425, -9.463095072382885], [-61.48057531272717, -9.63725035246388], [-61.520620480270395, -9.704288929239937], [-61.56540075541612, -9.726569203527362], [-61.520620480270395, -9.860448603165707], [-61.53412267805108, -9.994547729374943], [-61.569674437219774, -10.061366579580124], [-61.56540075541612, -10.26230652865162], [-61.471566523321, -10.436439836075536], [-61.502844600686046, -10.686422755767879], [-61.471566523321, -10.757746000676136], [-61.520620480270395, -10.789013091712633], [-61.50734899538912, -10.878353915433223], [-61.520620480270395, -10.954181555044556], [-61.471566523321, -10.998939857533202], [-60.440400712500775, -11.003444252236292], [-60.440400712500775, -11.038996011404976], [-60.38234895247378, -11.10155216613505], [-60.27951691730104, -11.079271891847625], [-60.17691559502774, -11.11954777229029], [-60.069820864379906, -11.115043377587199], [-60.00277130127529, -11.14633244128079], [-59.908948055508716, -11.38280217686389], [-60.025040589234166, -11.534677182657461], [-60.10109894174494, -11.601496032862656], [-60.10109894174494, -11.74436224925006], [-60.06082306130229, -11.905246044449797], [-59.98499542169094, -11.918517529331055], [-59.93144805636702, -12.0523969289694], [-59.88666778122129, -12.128444295151638], [-59.89117217592437, -12.244547815205635], [-59.82412261281975, -12.387194305022163], [-59.908948055508716, -12.619401345130157], [-60.00277130127529, -12.731000470481078], [-60.04304718171794, -12.873866686868496], [-60.083092349261165, -12.927414052192404], [-60.194691474612085, -12.972194327338144], [-60.270749827122856, -13.070302241236917], [-60.27502350892651, -13.137340818012973], [-60.35107087510873, -13.271220217651319], [-60.38234895247378, -13.418590828741813], [-60.659094568499526, -13.601513199001005], [-60.72479281319322, -13.662948748219577], [-60.914471775507025, -13.561479017786311], [-61.076915629360016, -13.489694347079194], [-61.12912266260156, -13.49848340991447], [-61.415997673544965, -13.526608410987365], [-61.511622677192776, -13.541220227951001], [-61.57574987690465, -13.524806653106126], [-61.78995032452889, -13.525707532046738], [-61.874094614848104, -13.47035840884159], [-61.944747693715186, -13.406220222801167], [-62.09482094162752, -13.241974611066937], [-62.11799110852702, -13.159840818871288], [-62.17604286855402, -13.133737302250523], [-62.26402138753514, -13.143646970597288], [-62.35290078545687, -13.13239697016813], [-62.525474034227514, -13.064215815223477], [-62.68701700913988, -12.99425487505468], [-62.76554728557308, -12.99717723844742], [-62.83506877260011, -12.953737295384059], [-62.95791789838019, -12.847103990535075], [-63.015299492366, -12.805465805352952], [-63.041392022658215, -12.750358381375776], [-63.067495539278994, -12.669125468120725], [-63.11676922279926, -12.651569315107267], [-63.180665709611716, -12.666203104727998], [-63.24974774349698, -12.70781931725304], [-63.34672406555572, -12.680155741979007], [-63.46529950953213, -12.605228981308272], [-63.54179731518467, -12.546715795482427], [-63.58566572506123, -12.519052220208394], [-63.68849776023397, -12.478095187396008], [-63.788165732786, -12.469547823788702], [-63.93846969359777, -12.529621068267815], [-64.06154953227727, -12.505099582957385], [-64.25504075059587, -12.48328073446882], [-64.42041795417013, -12.439840791405459], [-64.48072191154867, -12.326220181602437], [-64.5133403209961, -12.251073694360826], [-64.61166796146574, -12.20383248162122], [-64.6899675249995, -12.146439901306863], [-64.78334033129578, -12.059362261266358], [-64.82992236432274, -12.030358353909946], [-64.9142973675414, -12.006056595170406], [-64.99259693107516, -11.975228957275675], [-65.00114429468246, -11.920099560641404], [-65.03017017469595, -11.847414010993674], [-65.03714649332146, -11.82941840483845], [-65.09024341917507, -11.741220159286456], [-65.1152153439558, -11.735155705930111], [-65.1426701789875, -11.752250433144724], [-65.16336842196456, -11.76508246488423], [-65.18564869625199, -11.749547796322872], [-65.18969166515622, -11.710172794820835], [-65.17529957476346, -11.646957460378118], [-65.20611622632964, -11.58057806331469], [-65.28217457884041, -11.511056576287658], [-65.32200001981276, -11.43927190558054], [-65.32559254924668, -11.364806570708666], [-65.34246754989042, -11.315082447718083], [-65.37284474831483, -11.289879810037931], [-65.38995046185799, -11.246220140403707], [-65.39354299129191, -11.184345138043355], [-65.37149342990391, -11.110319256313247], [-65.32379079136545, -11.02482364758309], [-65.33392018628311, -10.892746005825984], [-65.40232106779864, -10.714767483411634], [-65.43989431141945, -10.586293357416992], [-65.44709035661583, -10.507323627842041], [-65.43697194802671, -10.449052141244152], [-65.39534474917313, -10.392340713299532], [-65.3129912304066, -10.253078012674592], [-65.29859914001383, -10.14686218831028], [-65.32447194373518, -10.026957398580024], [-65.32807545949764, -9.935595090407318], [-65.30939870097268, -9.872599482535477], [-65.33797414151587, -9.790245963768939], [-65.39624562811376, -9.712396839705491], [-65.43674123512729, -9.710375355253376], [-65.49209035833245, -9.731754750600174], [-65.55870046829529, -9.797452995293867], [-65.63721975839994, -9.80914244886479], [-65.70674124542697, -9.768427115280375], [-65.92477592171309, -9.785521842494987], [-66.26361626667007, -9.826017449508512], [-66.39929742418964, -9.868095087832401], [-66.47894830613433, -9.886090693987626], [-66.57524347582333, -9.899823604667745], [-66.62767023563575, -9.925465695489663] ] ] ] } }, { "type": "Feature", "properties": { "population": 497, "fill": "#fff" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-58.86877345528232, 0.224275902629742], [-59.77057524749584, 0.228780297332833], [-60.025040589234166, 0.224275902629742], [-60.127872624406905, 0.13067238343406], [-60.16791779195013, 0.005582046630991], [-60.21697174889951, -0.043482896646935], [-60.252743234639084, -0.15057762729478], [-60.31079499466608, -0.235392083655199], [-60.31529938936916, -0.306957027791427], [-60.38662263427743, -0.463094729060117], [-60.39111604265196, -0.521146489087116], [-60.31529938936916, -0.619474129556764], [-60.306290599963006, -0.673021494880686], [-60.33756867732805, -0.704288585917183], [-60.46717439516273, -0.740082044313837], [-60.516217365783575, -0.829181168806457], [-60.6410989623443, -0.86044825984294], [-60.73492220811087, -0.851681169664758], [-60.815243256096764, -0.686292979761944], [-60.90457309348879, -0.610465340150597], [-60.93134677615076, -0.556917974826689], [-61.060721781086016, -0.530155278493268], [-61.10549106990321, -0.4943618200966], [-61.221594589957206, -0.498866214799691], [-61.24387486424463, -0.547931158077617], [-61.45807531186885, -0.637250009141113], [-61.53412267805108, -0.726568860204608], [-61.578672240297394, -0.945262716203359], [-61.560896360713045, -1.021332055042677], [-61.5741678455943, -1.14169827057178], [-61.61894812074004, -1.275797396781002], [-61.619848999680656, -1.449491251063151], [-61.71727576120969, -1.401129432812041], [-61.798497688136194, -1.388736854214301], [-61.880840220574186, -1.389198280013161], [-61.87769813061057, -1.369400915976698], [-61.93574989063757, -1.244530305744519], [-62.02957313640414, -1.146202665274856], [-62.14117226175506, -1.065870630960433], [-62.2037174301566, -1.043590356673008], [-62.24377358402836, -0.981056174600027], [-62.31531655550751, -0.945262716203359], [-62.41791787778082, -0.829181168806457], [-62.50724771517285, -0.771129408779444], [-62.47596963780782, -0.695301769168111], [-62.3778727102376, -0.717582043455536], [-62.31082314713298, -0.641754403844189], [-62.3198209502106, -0.521146489087116], [-62.36887490715998, -0.467599123763193], [-62.373368315534506, -0.342728513531], [-62.40464639289955, -0.271163569394773], [-62.47596963780782, -0.222120598773927], [-62.511741123547395, -0.123792958304278], [-62.569792883574394, -0.047965318692931], [-62.578790686652, 0.018853531512249], [-62.5250235947572, 0.094900897694487], [-62.56529947519985, 0.17523293200891], [-62.569792883574394, 0.246556176917167], [-62.53402139783482, 0.313605740021785], [-62.52951700313173, 0.429698273747235], [-62.4894718355885, 0.487750033774233], [-62.48496744088543, 0.541297399098156], [-62.5385257925379, 0.675176798736501], [-62.53402139783482, 0.7332285587635], [-62.44469156044278, 0.804782516571194], [-62.511741123547395, 0.960931204168418], [-62.51624551825047, 1.059247858309519], [-62.6143424458207, 1.362778143325784], [-62.623340248898316, 1.416325508649706], [-62.721448162797074, 1.49665754296413], [-62.78849772590169, 1.603752273611974], [-62.712670086290345, 1.73763167325032], [-62.730445965874694, 1.831454919016892], [-62.69040079833147, 1.911775967002768], [-62.70816569158727, 1.947547452742342], [-62.84654948592869, 2.018881683979146], [-63.002698173525914, 2.018881683979146], [-63.123295101954454, 2.112704929745718], [-63.15006878461641, 2.179754492850336], [-63.306448185113055, 2.16625229506964], [-63.393745551724436, 2.224073342197215], [-63.3748490666286, 2.340407575150635], [-63.38924115702136, 2.411950546629782], [-63.584545119549745, 2.434000108017784], [-63.71256880607409, 2.434000108017784], [-63.92406661687646, 2.45245713997187], [-64.02486618126854, 2.481922473127128], [-64.04669601608565, 2.502400989533328], [-64.04871750053776, 2.525131703291052], [-64.02870040993042, 2.575976431793123], [-64.00912277246485, 2.671832148340357], [-64.03769821300803, 2.801426879846503], [-64.14344162524495, 3.00482776651188], [-64.21881882538598, 3.204625137414794], [-64.22871750740421, 3.343898824368296], [-64.22714646242241, 3.491280421787323], [-64.22107102273753, 3.587355864905447], [-64.27529954043118, 3.662733065046481], [-64.56801927816005, 3.89987296667077], [-64.66904955545155, 4.011702804921114], [-64.70256884383959, 4.089332202413701], [-64.81777148495297, 4.232198418801104], [-64.78874560493946, 4.276077815006218], [-64.72236620787605, 4.274506770024416], [-64.66544603968909, 4.237153252974494], [-64.6137004322464, 4.15773308392923], [-64.57634691519648, 4.139957204344881], [-64.52549120036586, 4.139957204344881], [-64.2557219029656, 4.140407643815195], [-64.19249558219434, 4.126905446034499], [-64.15424118620379, 4.100131763372545], [-64.12162277675638, 4.067051928126276], [-64.0734696987476, 3.974349287871192], [-64.0214933784055, 3.9291295595837], [-63.91461837432854, 3.930700604565502], [-63.74699995973127, 3.932502362446741], [-63.652946001065274, 3.940829999483157], [-63.596695998919515, 3.914957195761815], [-63.52672407242217, 3.893797526985892], [-63.37979291447344, 3.942851483935272], [-63.338616155090165, 3.943983075775321], [-63.2947477452136, 3.922153240958195], [-63.136116147365414, 3.756556310813053], [-63.04521526499157, 3.686573397987161], [-62.96871745933903, 3.593881744060639], [-62.856898607417236, 3.593431304590325], [-62.764646406632465, 3.672851473635589], [-62.73989420842261, 3.940379560012857], [-62.712219646820046, 4.017997971176882], [-62.66541788722219, 4.039608079423118], [-62.60984903744617, 4.042299729916422], [-62.54392007985305, 4.084377368240311], [-62.47259683494478, 4.138605885933956], [-62.41072183258443, 4.156832204988618], [-62.153092428225406, 4.098330005491306], [-62.08154945674626, 4.126224293664762], [-61.82076697609507, 4.197108085431267], [-61.55415075498696, 4.287778254905689], [-61.47944372088712, 4.402299743649337], [-61.36762486896532, 4.432907654973178], [-61.28009678945452, 4.516832218721532], [-61.209443710587436, 4.508054142214789], [-61.10234897993959, 4.504681339351762], [-61.0362002957756, 4.519304142643946], [-61.00290073395844, 4.535278264347056], [-60.966448095849145, 4.574653265849093], [-60.906144138470594, 4.686702830670328], [-60.83346957515141, 4.729230908464515], [-60.741667813836955, 4.774230910181132], [-60.67912264543541, 4.827108109463865], [-60.627596764563606, 4.892575641258119], [-60.60374544529438, 4.949276082874206], [-60.60441561133557, 4.994506797490246], [-60.635023522659424, 5.082023890672502], [-60.671915613910485, 5.164377409439041], [-60.71197176778226, 5.191601531571308], [-60.742118253307254, 5.201950653059839], [-60.65144808383285, 5.221077851055114], [-60.57652132316211, 5.192502410511921], [-60.4595169241675, 5.187998015808844], [-60.40889192223631, 5.210047577196846], [-60.33509675340562, 5.199248016238002], [-60.241723947109364, 5.257980928634737], [-60.18165070263025, 5.238853730639462], [-60.142044988228776, 5.238853730639462], [-60.10604278958978, 5.19430416839316], [-60.07814850141632, 5.143898893032841], [-59.99062042190552, 5.082924769613115], [-59.99939849841225, 4.989782676216279], [-60.01537262011537, 4.907429157449741], [-60.026842347115405, 4.812705032742556], [-60.03179718128878, 4.740480908893673], [-60.06891998543928, 4.666674753734441], [-60.124499821543864, 4.597603706177708], [-60.14092438271729, 4.569698431675718], [-60.14857086738398, 4.533256779894955], [-60.111217350334044, 4.511207218506954], [-60.04506866617005, 4.504681339351762], [-59.96227569426175, 4.501747989630488], [-59.90602569211599, 4.480379580612222], [-59.833340142468245, 4.475875185909146], [-59.74582304928599, 4.416702820370645], [-59.7032949714918, 4.381151061201948], [-59.69969145572934, 4.353476499599381], [-59.72759673023134, 4.287547542006266], [-59.73861601776106, 4.226804131485963], [-59.716797169272496, 4.188099296025115], [-59.69114409212203, 4.160424734422534], [-59.62027128668407, 4.023172531921148], [-59.586521285396614, 3.975480879711242], [-59.557715131954, 3.959957197478431], [-59.55120023912734, 3.933622967958229], [-59.57549101153833, 3.883448405497347], [-59.60451689155184, 3.819782631584317], [-59.67021513624553, 3.752733068479714], [-59.67899321275226, 3.699855869196981], [-59.7316506854641, 3.666556307379821], [-59.85449981124418, 3.587575591476323], [-59.83312041589737, 3.462254541773831], [-59.828846734093716, 3.398577781532254], [-59.831098931445254, 3.349304098011984], [-59.87294585686972, 3.283155413847993], [-59.9456204201889, 3.087851451319608], [-59.97239410285087, 2.990424689790572], [-59.995794982649784, 2.765424681207506], [-59.99444366423886, 2.690047481066472], [-59.9606936629514, 2.58835802406233], [-59.88959014461402, 2.362907576008951], [-59.84909453760048, 2.32712510394083], [-59.75527129183391, 2.274028178087221], [-59.74357085193445, 2.121702732823337], [-59.75166777607144, 1.962400968933963], [-59.75617217077453, 1.900525966573611], [-59.74064848854172, 1.874202723381956], [-59.698570850217834, 1.861381677970996], [-59.66842436469284, 1.842254479975736], [-59.66370024341887, 1.795232993807005], [-59.6666226068116, 1.746179036857626], [-59.59665068031427, 1.718054035784732], [-59.535665570565996, 1.70004744330096], [-59.47941556842022, 1.632327714155167], [-59.37771512508753, 1.527254467959438], [-59.33721951807401, 1.508127269964163], [-59.31697171456723, 1.464698313229363], [-59.231245392937666, 1.376049628207056], [-59.100299343020595, 1.343650945330523], [-58.968441427834364, 1.304506656727909], [-58.96641994338225, 1.302474185947247], [-58.86877345528232, 0.224275902629742] ] ] ] } }, { "type": "Feature", "properties": { "population": 3874, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-66.82859919837871, -9.838168328878282], [-69.80646552291279, -8.454198549521536], [-70.37325021250267, -8.155172659208347], [-72.66352617877601, -7.592672637750681], [-73.79684287239924, -7.116788830534645], [-73.80472006996536, -7.079896739283569], [-73.77637534232159, -6.973483161005475], [-73.75814902326692, -6.905741459202574], [-73.69447226302536, -6.83373706192458], [-73.49984945286671, -6.679401118537129], [-73.32547444621483, -6.574767325483165], [-73.24041829062645, -6.563978750852868], [-73.17742268275461, -6.525262929063473], [-73.13736652888284, -6.465870836954096], [-73.1263472413531, -6.40085374463014], [-73.13534504443072, -6.34436204325641], [-73.16774372730725, -6.260668192407493], [-73.2064485627681, -6.156495825152376], [-73.23547444278161, -6.098444065125378], [-73.20937092616083, -6.028702851527456], [-73.16279987946241, -5.933297574450535], [-73.06807575475523, -5.789530479122504], [-72.97986652287469, -5.634952836507097], [-72.97019855375588, -5.58973310821959], [-72.95894855332672, -5.495228710083282], [-72.91822223341377, -5.302616398048215], [-72.89572223255546, -5.198224304222222], [-72.90742267245493, -5.157728697208682], [-72.88717486894815, -5.122858090409721], [-72.83204547231388, -5.093832210396229], [-72.69861651214585, -5.067267267976604], [-72.60839678214174, -5.009676933748452], [-72.46889238228881, -4.901219898361148], [-72.35279984856336, -4.786017257247764], [-72.25672440544525, -4.748905439425812], [-72.08256912536426, -4.642250161919733], [-71.98245071334192, -4.57453043277394], [-71.94307571183988, -4.553370763998004], [-71.84474807137023, -4.504327793377172], [-71.66834059393769, -4.48723306616256], [-71.5214204223175, -4.469676913149087], [-71.43816602461035, -4.437486970514897], [-71.31689893014062, -4.424215485633624], [-71.2349958508444, -4.388224273323175], [-71.14432568136998, -4.387323394382548], [-70.97377391705145, -4.350431303131487], [-70.91572215702445, -4.295301906497215], [-70.86599803403388, -4.229603661803523], [-70.79961863697045, -4.173353659657764], [-70.72154978633611, -4.158939596607908], [-70.63447214629561, -4.168629538383797], [-70.53075021851082, -4.167486960215214], [-70.40474801643859, -4.150172506429712], [-70.34354318011943, -4.193590476835979], [-70.3170002103569, -4.246918115589011], [-70.23915108629343, -4.30114663328267], [-70.18402168965916, -4.298224269889943], [-70.1288922930249, -4.286512843661939], [-70.05329536631298, -4.333094876688904], [-70.00402168279271, -4.327250149903449], [-69.97207343938648, -4.30114663328267], [-69.9659979997016, -4.235887841730744], [-69.94822212011725, -4.200577781790031], [-69.91109931596675, -3.996495742754917], [-69.84967475307671, -3.659896608820929], [-69.79409491697214, -3.354564565923425], [-69.7326703540821, -3.01662509990706], [-69.66899359384053, -2.667655360032427], [-69.60464666755776, -2.314181225454703], [-69.55176946827504, -2.024142151890601], [-69.50654973998753, -1.77484038456798], [-69.47864446548553, -1.622064499833797], [-69.43499578217985, -1.421607949218242], [-69.41790105496524, -1.245650911256007], [-69.40034490195177, -1.195025909324826], [-69.41137517581004, -1.152267118631201], [-69.44916814600172, -1.091512721782351], [-69.44871770653143, -1.06496975201982], [-69.44444402472777, -1.029637719422013], [-69.44871770653143, -0.998832054184362], [-69.48832342093289, -0.96574123260956], [-69.5193707853985, -0.945724142002206], [-69.54344183123861, -0.91713771513048], [-69.55469183166777, -0.877323260486676], [-69.57450018203276, -0.837728532413763], [-69.58326727221096, -0.79587062066075], [-69.61184271275415, -0.762801771743028], [-69.62062078926088, -0.72094385999003], [-69.60082342522442, -0.681349131917102], [-69.59204534871769, -0.639271493593228], [-69.60082342522442, -0.5996767655203], [-69.61184271275415, -0.553314459064225], [-69.63389227414214, -0.509215336288221], [-69.66742254885872, -0.482452639954801], [-69.74752387027372, -0.452525881000696], [-69.8278449182596, -0.381422362663301], [-69.92279975586622, -0.317525875850848], [-70.04406685033594, -0.196236808724038], [-70.07062080642702, -0.138866201066776], [-70.0708405329979, 0.018622818612826], [-70.06566597225363, 0.189405295830795], [-70.05801948758695, 0.447254426760708], [-70.05396553235417, 0.578650916148078], [-69.98534492426775, 0.585857947673006], [-69.92504096688921, 0.589450477106922], [-69.86204535901737, 0.598448280184542], [-69.80714667528252, 0.607457069590694], [-69.75674139992222, 0.626353554686546], [-69.71894842973053, 0.649754434485459], [-69.67371771511449, 0.665047403818846], [-69.63861639541611, 0.659653116503691], [-69.60352606204627, 0.680351359480767], [-69.56482122658542, 0.700148723517231], [-69.52701727006519, 0.716353558119778], [-69.47211858633034, 0.729855755900459], [-69.42082341835797, 0.698357951964539], [-69.39201726491535, 0.666849161700071], [-69.3587177030982, 0.651556192366698], [-69.32721989916227, 0.655148721800614], [-69.30562077724458, 0.65245707130731], [-69.28312077638627, 0.627254433627158], [-69.25409489637278, 0.625452675745933], [-69.21269841041862, 0.629957070449009], [-69.17399357495778, 0.635351357764151], [-69.15599796880255, 0.642547402960545], [-69.1532953319807, 0.658752237563078], [-69.16319401399893, 0.686657512065082], [-69.17669621177963, 0.712750042357314], [-69.16589665082078, 0.753256635699387], [-69.16499577188016, 0.801849166849919], [-69.16319401399893, 0.863954882109695], [-69.19379093899424, 0.898375049438343], [-69.22439885031808, 0.963172415191409], [-69.25859929107585, 1.015379448432952], [-69.31191594350035, 1.050480768131337], [-69.36142033992004, 1.063982965912032], [-69.4028168258742, 1.042372857665796], [-69.44152166133505, 1.03878032823188], [-69.47031682844911, 1.058577692268329], [-69.51711858804696, 1.059478571208956], [-69.56752386340727, 1.065773737464724], [-69.62084051583176, 1.073200495560528], [-69.71691595894987, 1.059028131738643], [-69.75134711260706, 1.076573298423568], [-69.79814887220492, 1.078375056304793], [-69.85214667699914, 1.059478571208956], [-69.85079535858821, 1.308780338531562], [-69.84944404017729, 1.543898755703736], [-69.84854316123668, 1.708825519807704], [-69.79995063008614, 1.705232990373773], [-69.73964667270761, 1.734929036428468], [-69.65009710874469, 1.739422444802997], [-69.58124578775885, 1.770700522168042], [-69.5429913917683, 1.773172446090456], [-69.47009710187822, 1.757879476757083], [-69.39426946226689, 1.725700520451426], [-69.31979314106647, 1.721207112076897], [-69.12426945196721, 1.721207112076897], [-68.91322208063514, 1.721426838647773], [-68.67854311660471, 1.721426838647773], [-68.44342469943254, 1.721657551547196], [-68.23957337329685, 1.721657551547196], [-68.17656677909646, 1.719855793665971], [-68.2132501301052, 1.774523764501382], [-68.25599793447027, 1.845407556267887], [-68.23934266039743, 1.901426845514223], [-68.21842469084947, 1.957676847659997], [-68.1938922192105, 1.986922454244379], [-68.13021545896893, 1.955875089778772], [-68.07711853311531, 1.860030359560085], [-68.03279968376843, 1.788025962282077], [-67.98982116650393, 1.75247420311338], [-67.93627380118002, 1.748431234209164], [-67.87551940433117, 1.760582113578934], [-67.81499572038175, 1.790047446734192], [-67.71194395863813, 1.922125088491299], [-67.60912290979395, 2.035075532253146], [-67.55602598394034, 2.073099215344257], [-67.49954526889515, 2.107980808471765], [-67.45769834347068, 2.121252293353024], [-67.4005474623843, 2.116747898649948], [-67.35194394490523, 2.085931247083764], [-67.32066586754019, 2.032153168860418], [-67.20592465222566, 1.84472640389815], [-67.11929745165547, 1.703650959063424], [-67.09004085874254, 1.615672440082307], [-67.08825008718985, 1.400582099846019], [-67.093644374505, 1.210002258591601], [-67.08217464750497, 1.185480773281185], [-67.06529964686123, 1.178273741756257], [-66.87607112401774, 1.223054016901983], [-66.61912287202844, 0.992198295204915], [-66.42922418314376, 0.821657517214916], [-66.34709039094811, 0.767198286621849], [-66.30165093608973, 0.751905317288461], [-66.19117241625031, 0.763375044288495], [-66.05999565343382, 0.785424605676496], [-65.99631889319224, 0.809726364416036], [-65.92589652722458, 0.863054003169069], [-65.81137503848093, 0.937299611470067], [-65.71822195875555, 0.97802593138303], [-65.68154959407536, 0.983431205026719], [-65.64464651649574, 0.970379446716336], [-65.56611624006256, 0.926049611040909], [-65.52291799622718, 0.843476365703495], [-65.56274343719952, 0.747400922585385], [-65.55599783147345, 0.687997844147461], [-65.47342458613602, 0.691150920439611], [-65.40727590197203, 0.790379439849886], [-65.36092458184449, 0.868679003383647], [-65.26394825978576, 0.931905324154911], [-65.16967457454888, 1.022125054159034], [-65.10374561695576, 1.108082088688022], [-65.02656665893349, 1.158476377719794], [-64.91002368573774, 1.219681214038943], [-64.81799121152385, 1.257023744760332], [-64.73159472385309, 1.253431215326401], [-64.6674675241412, 1.293926822339941], [-64.58444383933347, 1.369974188522164], [-64.5261723527356, 1.430948311941904], [-64.48611619886383, 1.452778146759016], [-64.40512498483675, 1.446922433645014], [-64.30409470754526, 1.45525007068143], [-64.20509690103441, 1.529506665310976], [-64.11486618470175, 1.61927595584477], [-64.06694381959241, 1.770480795597152], [-64.03544601565649, 1.904349208906964], [-64.00844162009511, 1.931573331039232], [-63.97582321064769, 1.95295272638603], [-63.93711837518684, 1.966905363637039], [-63.84441573493177, 1.976804045655271], [-63.682191607649656, 2.048127290563528], [-63.57037275572786, 2.120582127311835], [-63.463948191121204, 2.136105809544645], [-63.432450387185284, 2.155452734110796], [-63.393965278295326, 2.222502297215414], [-63.393745551724436, 2.224073342197215], [-63.306448185113055, 2.16625229506964], [-63.15006878461641, 2.179754492850336], [-63.123295101954454, 2.112704929745718], [-63.002698173525914, 2.018881683979146], [-62.84654948592869, 2.018881683979146], [-62.70816569158727, 1.947547452742342], [-62.69040079833147, 1.911775967002768], [-62.730445965874694, 1.831454919016892], [-62.712670086290345, 1.73763167325032], [-62.78849772590169, 1.603752273611974], [-62.721448162797074, 1.49665754296413], [-62.623340248898316, 1.416325508649706], [-62.6143424458207, 1.362778143325784], [-62.51624551825047, 1.059247858309519], [-62.511741123547395, 0.960931204168418], [-62.44469156044278, 0.804782516571194], [-62.53402139783482, 0.7332285587635], [-62.5385257925379, 0.675176798736501], [-62.48496744088543, 0.541297399098156], [-62.4894718355885, 0.487750033774233], [-62.52951700313173, 0.429698273747235], [-62.53402139783482, 0.313605740021785], [-62.569792883574394, 0.246556176917167], [-62.56529947519985, 0.17523293200891], [-62.5250235947572, 0.094900897694487], [-62.578790686652, 0.018853531512249], [-62.569792883574394, -0.047965318692931], [-62.511741123547395, -0.123792958304278], [-62.47596963780782, -0.222120598773927], [-62.40464639289955, -0.271163569394773], [-62.373368315534506, -0.342728513531], [-62.36887490715998, -0.467599123763193], [-62.3198209502106, -0.521146489087116], [-62.31082314713298, -0.641754403844189], [-62.3778727102376, -0.717582043455536], [-62.47596963780782, -0.695301769168111], [-62.50724771517285, -0.771129408779444], [-62.41791787778082, -0.829181168806457], [-62.31531655550751, -0.945262716203359], [-62.24377358402836, -0.981056174600027], [-62.2037174301566, -1.043590356673008], [-62.14117226175506, -1.065870630960433], [-62.02957313640414, -1.146202665274856], [-61.93574989063757, -1.244530305744519], [-61.87769813061057, -1.369400915976698], [-61.880840220574186, -1.389198280013161], [-61.798497688136194, -1.388736854214301], [-61.71727576120969, -1.401129432812041], [-61.619848999680656, -1.449491251063151], [-61.61894812074004, -1.275797396781002], [-61.5741678455943, -1.14169827057178], [-61.560896360713045, -1.021332055042677], [-61.578672240297394, -0.945262716203359], [-61.53412267805108, -0.726568860204608], [-61.45807531186885, -0.637250009141113], [-61.24387486424463, -0.547931158077617], [-61.221594589957206, -0.498866214799691], [-61.10549106990321, -0.4943618200966], [-61.060721781086016, -0.530155278493268], [-60.93134677615076, -0.556917974826689], [-60.90457309348879, -0.610465340150597], [-60.815243256096764, -0.686292979761944], [-60.73492220811087, -0.851681169664758], [-60.6410989623443, -0.86044825984294], [-60.516217365783575, -0.829181168806457], [-60.46717439516273, -0.740082044313837], [-60.33756867732805, -0.704288585917183], [-60.306290599963006, -0.673021494880686], [-60.31529938936916, -0.619474129556764], [-60.39111604265196, -0.521146489087116], [-60.38662263427743, -0.463094729060117], [-60.31529938936916, -0.306957027791427], [-60.31079499466608, -0.235392083655199], [-60.252743234639084, -0.15057762729478], [-60.21697174889951, -0.043482896646935], [-60.16791779195013, 0.005582046630991], [-60.127872624406905, 0.13067238343406], [-60.025040589234166, 0.224275902629742], [-59.77057524749584, 0.228780297332833], [-58.86877345528232, 0.224275902629742], [-58.85099757569799, -0.083736804432505], [-58.86449977347867, -0.173077628153081], [-58.85549098407252, -0.351495603709196], [-58.73939845034707, -0.432047364594496], [-58.74839625342467, -0.62397852425984], [-58.70361597827895, -0.695301769168111], [-58.62779932499615, -0.766844740647258], [-58.56974756496915, -0.762340345944182], [-58.44037256003389, -0.86044825984294], [-58.39109887651361, -1.048094751376084], [-58.31527123690226, -1.119417996284355], [-58.25271508217219, -1.128426785690522], [-58.15912254930504, -1.235521516338338], [-58.083075183122816, -1.298077671068427], [-57.98047386084954, -1.34712064168923], [-57.900141826535105, -1.422948281300592], [-57.828598855055944, -1.445228555588045], [-57.65467428787437, -1.588094771975463], [-57.56534445048233, -1.623866257715036], [-57.44924093042833, -1.690926807148188], [-57.33764180507741, -1.730982961019961], [-57.27509663667588, -1.713207081435613], [-57.248322954013915, -1.757745657353368], [-57.16799091969949, -1.771236868805516], [-57.087669871713615, -1.81129302267729], [-57.00734882372774, -1.936405332137454], [-56.824195740569124, -2.034491273379132], [-56.74387469258325, -2.052486879534356], [-56.74836810095778, -2.17737946242363], [-56.63676897560687, -2.222137764912276], [-56.49839616759398, -2.159603582839281], [-56.4848939698133, -2.248922433902749], [-56.400969406064945, -2.336219800514158], [-56.39107072404671, -2.391788650290195], [-56.75714617746452, -3.186495711855869], [-58.29299096261485, -6.49893968587179], [-58.37444360244076, -6.57050463000806], [-58.436769044271415, -6.675797602774665], [-58.455445802796376, -6.793922607280777], [-58.385924315769344, -6.949181402265936], [-58.228424309761195, -7.141552015073032], [-58.14629051756555, -7.263500261912498], [-58.13662254844674, -7.338207296012342], [-58.20187035367012, -7.414474388765456], [-58.22370018848723, -7.484677028162224], [-58.22391991505812, -7.574677031595442], [-58.259471674226816, -7.67322439863598], [-58.330344479664774, -7.780099402712935], [-58.35352563289281, -7.905870891885741], [-58.32877343468296, -8.050538866154383], [-58.354415525504876, -8.27600030053631], [-58.3971743161985, -8.41550470038922], [-58.42665063568231, -8.523038884178831], [-58.47165063739892, -8.690888011675511], [-58.54746729068172, -8.74893977170251], [-61.609950317662424, -8.766715651286859], [-61.609950317662424, -8.722177075369103], [-61.71704504831027, -8.68640558962953], [-61.761825323455994, -8.72668147007218], [-61.837641976738794, -8.744457349656528], [-61.873424448806915, -8.856056475007449], [-61.91797401105322, -8.873832354591784], [-61.99829505903911, -8.811495926432599], [-62.13217445867744, -8.766715651286859], [-62.172450339120104, -8.610577950018182], [-62.3063187524299, -8.570302069575533], [-62.373368315534506, -8.382875304613265], [-62.45370034984893, -8.347103818873691], [-62.5385257925379, -8.36059503032584], [-62.5562906857937, -8.289052058846693], [-62.63662272010812, -8.222233208641498], [-62.67689860055077, -8.114896778765697], [-62.721448162797074, -8.061349413441775], [-62.82877360634434, -8.016788864866925], [-62.90459025962714, -8.007802048117853], [-63.538424512321626, -7.9987932587117], [-63.587698195841895, -8.079345019597], [-63.59197187764555, -8.1641814486145], [-63.72607100385477, -8.19094414494792], [-63.75284468651674, -8.284547664143616], [-63.91799117719157, -8.333832333992419], [-63.993818816802914, -8.440927064640263], [-63.92249557189466, -8.53453058383596], [-63.99832321150599, -8.681901194926454], [-64.07415085111734, -8.713168285962936], [-64.12769821644126, -8.68640558962953], [-64.11892013993453, -8.936366536664778], [-64.21701706750476, -8.949879720774021], [-64.38217454450813, -8.940870931367854], [-64.4179460302477, -8.972138022404351], [-64.47599779027472, -8.949879720774021], [-64.59659471870324, -9.025707360385354], [-64.69019823789894, -9.021202965682278], [-64.77951708896242, -8.985431479942704], [-64.88662280593881, -9.061478846124942], [-64.92689868638146, -9.11953060615194], [-64.90461841209404, -9.213112152690542], [-65.03849781173238, -9.400780616880766], [-65.0920451770563, -9.436332376049464], [-65.17236622504218, -9.373995947890265], [-65.19915089403268, -9.266681490671544], [-65.221650894891, -9.257892427836268], [-65.41807546293087, -9.391771827474614], [-65.44484914559283, -9.445319192798536], [-65.52517019357872, -9.414052101762039], [-65.6322759105551, -9.449823587501612], [-65.6768254728014, -9.534638043862032], [-65.76614432386489, -9.56592710755561], [-65.93129081453974, -9.414052101762039], [-65.99834037764435, -9.400780616880766], [-66.10544609462073, -9.418556496465115], [-66.39569390842718, -9.405043312355886], [-66.4046917115048, -9.52565122711296], [-66.50279962540357, -9.63274595776079], [-66.59662287117014, -9.664013048797287], [-66.69471979874037, -9.748849477814787], [-66.74377375568974, -9.748849477814787], [-66.82859919837871, -9.838168328878282] ] ] ] } }, { "type": "Feature", "properties": { "population": 8074, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-58.86877345528232, 0.224275902629742], [-58.96641994338225, 1.302474185947247], [-58.91669582039168, 1.248926820623353], [-58.86246730269801, 1.203707092335833], [-58.82174098278506, 1.2012241820849], [-58.78732081545638, 1.208431213609913], [-58.73040064726945, 1.247575502212442], [-58.684719493183024, 1.281105776928996], [-58.60506861123838, 1.279073306148348], [-58.51191553151301, 1.284698306362941], [-58.495721683239026, 1.312153141394674], [-58.48694360673227, 1.347704900563258], [-58.50607080472753, 1.438605782937259], [-58.472990969481316, 1.466280344539769], [-58.39582299778755, 1.481804026772636], [-58.38029931555474, 1.530176831352151], [-58.36274316254122, 1.556730787443371], [-58.340693601153305, 1.58754743900937], [-58.31415063139076, 1.592051833712503], [-58.28107079614449, 1.574275954128211], [-58.23044579421327, 1.563256666598477], [-58.17307518655599, 1.547952710936613], [-58.14224754866132, 1.516905346470935], [-58.09139183383064, 1.514422436220059], [-58.034691392214654, 1.520278149333876], [-58.011740951886, 1.539855786799592], [-57.99509666414167, 1.574275954128211], [-57.98271507187252, 1.648532548757714], [-57.9462734200917, 1.650554033209858], [-57.87336814387305, 1.667198320954185], [-57.79574973270911, 1.70004744330106], [-57.6917970920249, 1.704782550903417], [-57.59437033049585, 1.704101398533737], [-57.54576681301671, 1.726150959921654], [-57.50054708472925, 1.773853598460107], [-57.41279927864758, 1.908853603609998], [-57.366898397990326, 1.940131680975128], [-57.31739400157056, 1.963532560774013], [-57.275547076146154, 1.959247892641883], [-57.18959004161712, 1.981528166929309], [-57.11894794907869, 2.013926849805898], [-57.09262470588703, 2.005829925668877], [-57.03749530925273, 1.936528165212735], [-57.01004047422106, 1.921224209550701], [-56.969544867207446, 1.916500088276791], [-56.83679705940915, 1.881179042007489], [-56.76637469344149, 1.892198329537223], [-56.68986590146045, 1.914247890925139], [-56.61652117210002, 1.922575527961612], [-56.56364397281732, 1.907282558628253], [-56.5254005631553, 1.927299649235522], [-56.48287248536121, 1.942153165427158], [-56.45294572640705, 1.932254483408883], [-56.38589616330245, 1.923926846372581], [-56.22704483888333, 1.885452723811113], [-56.019820709884584, 1.842254479975736], [-55.96333999483943, 1.857107996167372], [-55.92958999355193, 1.887474208263313], [-55.92172378231436, 1.976573332755947], [-55.91541762973003, 2.039579926956264], [-55.96199966275702, 2.095148776732287], [-56.02004043645553, 2.158155370932775], [-56.07359878810803, 2.236674661037284], [-56.13771500149136, 2.258954935324823], [-56.12939835078339, 2.29945054233832], [-56.08777115192987, 2.341297467762729], [-56.04502334756478, 2.364478620990781], [-56.02027114935498, 2.392823348634579], [-55.99349746669293, 2.497457141688471], [-55.975490874209186, 2.515903187313995], [-55.957495268054004, 2.520407582017128], [-55.935896146136315, 2.516573353355284], [-55.8938185078124, 2.489579944122454], [-55.73047377501882, 2.406105819844413], [-55.65891981721114, 2.41870713868434], [-55.38531629114897, 2.440525987173032], [-55.34391980519479, 2.488679065181771], [-55.28609875806728, 2.499698352711505], [-55.187771117597606, 2.547400991249958], [-55.148846555565854, 2.55077379411307], [-55.11419567533778, 2.53930406711288], [-55.07031627913267, 2.548301870190642], [-55.005749626279055, 2.593082145336382], [-54.978745230717664, 2.59757555371084], [-54.968396109229104, 2.548301870190642], [-54.92654918380458, 2.497457141688471], [-54.876143908444305, 2.45042466919125], [-54.85162242313385, 2.439625108232349], [-54.76679698044495, 2.454698350994931], [-54.72224741819866, 2.441657579013167], [-54.71482066010287, 2.425002304940222], [-54.73484873703876, 2.416224228433464], [-54.71707285745441, 2.264579935539416], [-54.78839610236264, 2.130480809330038], [-54.752844343193885, 2.081426852380673], [-54.792900497065716, 2.010103607472502], [-54.7616224197007, 1.969827727029838], [-54.76611582807516, 1.898504482121496], [-54.73484873703876, 1.773403158989879], [-54.578700049441466, 1.782400962067584], [-54.49836801512703, 1.746629476328053], [-54.364499601817215, 1.760131674108663], [-54.20361580661756, 1.657299638935967], [-54.172348715580995, 1.657299638935967], [-54.083249591088475, 1.541207105210503], [-54.07874519638534, 1.505655346041749], [-54.00719123857766, 1.523431225626041], [-53.92236579588871, 1.460875070896009], [-53.89109870485214, 1.407327705572129], [-53.75721930521382, 1.394056220690743], [-53.739443425629474, 1.434101388234183], [-53.6591223776436, 1.420829903352796], [-53.650124574566064, 1.362778143325841], [-53.5562903424709, 1.367282538028917], [-53.53852544921506, 1.2421812148973], [-53.44019780874544, 1.259957094481592], [-53.40891973138042, 1.184129454870344], [-53.466971491407435, 1.152851377505215], [-53.41791753445807, 0.94315532458404], [-53.26627324156391, 0.782282515712836], [-53.132174115354644, 0.751004438347934], [-53.11439823577035, 0.719957073882256], [-53.14117191843229, 0.536803990723683], [-53.127669720651625, 0.384928984930184], [-53.04284427796267, 0.246556176917181], [-53.007292518793975, 0.134957051566346], [-53.016070595300675, 0.054625017251851], [-52.97602542775746, -0.016698227656377], [-52.913469273027374, -0.190853507737359], [-52.82864383033842, -0.181844718331263], [-52.699268825403124, -0.302452633088365], [-52.627714867595444, -0.396275878854851], [-52.63221926229852, -0.556917974826604], [-52.60544557963652, -0.610465340150597], [-52.52512453165065, -0.646236825890128], [-52.507348652066355, -0.731073254907699], [-52.51611574224455, -0.873939471295046], [-52.40002320851909, -0.869457049249036], [-52.36874513115396, -0.923004414573029], [-52.39124513201233, -0.954271505609483], [-52.35996705464731, -1.070375025663452], [-52.23937012621877, -1.146202665274814], [-52.13227539557096, -1.15070705997789], [-52.05194336125652, -1.177469756311268], [-51.98489379815186, -1.141698270571794], [-51.888148188992545, -1.160375029096713], [-51.92166747738065, -1.180853545502885], [-51.934499509120144, -1.320357945355852], [-51.980839842919124, -1.368038611237182], [-52.02044555732061, -1.39910794835987], [-52.22924073130116, -1.362413611022589], [-52.55346925929439, -1.514068890245312], [-52.66416750570471, -1.551642133866153], [-52.31024293165666, -1.559530317760732], [-52.19662232185368, -1.64008207864606], [-51.947540281101965, -1.586754439893014], [-51.646273179765785, -1.394361854428894], [-51.53129026522333, -1.354107946643353], [-51.29729245356259, -1.223590363539415], [-51.20234860228459, -1.136512723498981], [-51.02887447457323, -1.032120629672988], [-50.99197139699362, -0.986219749015731], [-50.89499507493497, -0.937616231536595], [-50.8423485885516, -0.999491233896947], [-50.83829463331887, -1.038866235398984], [-50.91794551526357, -1.115155300809249], [-50.89724727228645, -1.164417998000999], [-50.844589799574635, -1.226293000361238], [-50.825473587907936, -1.311349155949642], [-50.818716995853265, -1.376146521702708], [-50.78609858640584, -1.489986858076691], [-50.67899286942952, -1.643905320979457], [-50.675400339995576, -1.694750049481513], [-50.6900231432877, -1.761788626257555], [-50.63871698898686, -1.817137749462688], [-50.58562006313315, -1.849986871809563], [-50.403148132344256, -2.015594788283238], [-50.260490656199295, -1.922892148028211], [-50.17274285011757, -1.896129451694776], [-50.11649284797181, -1.857413629905352], [-49.99926872240633, -1.831771539083491], [-49.90297355271724, -1.870707087443691], [-49.719589756659275, -1.926275937219714], [-49.58527090387912, -1.867103571681298], [-49.31369984859771, -1.731642140732561], [-49.39874501785749, -1.971495665507291], [-49.46016958074756, -2.191551826245473], [-49.506971340345444, -2.280189524939203], [-49.55332266047293, -2.5198233231431], [-49.599223541130186, -2.583939536526429], [-49.63656607185152, -2.656844812744964], [-49.575822661331244, -2.631422448493993], [-49.52384634098911, -2.596771568265922], [-49.45746694392568, -2.504530353809628], [-49.40774282093514, -2.344327710979655], [-49.21109852632435, -1.916607968100948], [-49.15484852417859, -1.87857329868126], [-48.99127307848562, -1.829750054631404], [-48.710023067756765, -1.4877456470536], [-48.59999498738762, -1.488646525994284], [-48.52957262141996, -1.567396528998415], [-48.4629734977857, -1.613978562025295], [-48.445867784242466, -1.520375042829585], [-48.349792341124385, -1.482120646839121], [-48.45149278445706, -1.435780313040141], [-48.46814805852995, -1.393922401287114], [-48.477816027648714, -1.323719761890345], [-48.408525253521134, -1.229215363754008], [-48.44969102657586, -1.145521512905134], [-48.30659409728895, -1.039767114339611], [-48.31762437114725, -0.960577658193756], [-48.26654892974574, -0.895099140071011], [-48.20174057766411, -0.827818864066955], [-48.128395848303796, -0.795189468291028], [-48.115124363422524, -0.737599134062862], [-48.06877304329498, -0.713736828465073], [-48.032540131756605, -0.704969738286877], [-47.96099716027743, -0.769547377469053], [-47.88336776278476, -0.693280284716025], [-47.807770836072905, -0.663573252332753], [-47.773790121886066, -0.676844737214026], [-47.731492756991315, -0.71037501193058], [-47.687173907644365, -0.724767102323369], [-47.65117170900544, -0.718702648966996], [-47.55734846323878, -0.669879404917026], [-47.47072126266863, -0.748629407921158], [-47.41874494232644, -0.76594386170666], [-47.4329173061484, -0.721844738930656], [-47.46037214118007, -0.680887706118199], [-47.438992745833275, -0.647599130629658], [-47.398046699349436, -0.626681161081649], [-47.26867169441414, -0.645357919606681], [-47.20049053946951, -0.680448252976419], [-47.12691509720963, -0.745465345300431], [-47.02454448783584, -0.750189466574341], [-46.944443166420854, -0.743443860848345], [-46.89359843791868, -0.779896498957612], [-46.81124491915227, -0.779676772386722], [-46.76984843319809, -0.836607926902275], [-46.64451639716708, -0.916478535417809], [-46.61729227503474, -0.970707053111482], [-46.51627298407186, -0.996788597075124], [-46.421768585935524, -1.030099145220788], [-46.32074929497253, -1.039107934626998], [-46.219048851639855, -1.031219750732305], [-46.21499489640706, -1.099840358818767], [-46.14029884863578, -1.118297390772852], [-46.04467384498798, -1.103004421439437], [-46.00708961503864, -1.146861844987484], [-46.14119972757641, -1.240025911041414], [-46.15896462083214, -1.315853550652776], [-46.12319313509255, -1.34712064168923], [-46.1992405012748, -1.485504436030624], [-46.18124489511962, -1.574823287094205], [-46.1992405012748, -1.677413623038944], [-46.24379006352109, -1.722193898184685], [-46.31534402132888, -1.73098296101989], [-46.30184182354816, -1.802525932499123], [-46.21701638085926, -1.807030327202142], [-46.212522972484635, -1.927396542731231], [-46.27957253558924, -2.141827703254933], [-46.37766946315952, -2.253426828605825], [-46.41344094889905, -2.239913644496539], [-46.40894754052454, -2.387306228244199], [-46.43572122318653, -2.409564529874501], [-46.426943146679776, -2.512396565047197], [-46.48499490670673, -2.547948324215952], [-46.50727518099421, -2.614986900991994], [-46.600867713861305, -2.664051844269977], [-46.667917276965966, -2.739879483881225], [-46.574094031199365, -2.847193941099988], [-46.65014139738162, -2.91401279130514], [-46.63665018592951, -2.985577735441382], [-46.667917276965966, -3.092672466089311], [-46.74374491657733, -3.190780379988041], [-46.82429667746254, -3.329142201672369], [-46.859848436631296, -3.329142201672369], [-46.94467387932019, -3.396202751105534], [-46.96694316727911, -3.525797482611608], [-47.0294993220092, -3.570358031186515], [-47.02499492730607, -3.59712072751995], [-47.06527080774873, -3.842599252509217], [-47.28846905845063, -4.079288714663221], [-47.310749332738055, -4.065797503211058], [-47.333018620696976, -4.164125143680735], [-47.38229230421723, -4.275724269031571], [-47.45811994382859, -4.338280423761717], [-47.48939802119361, -4.423094880122107], [-47.58322126696021, -4.547965490354329], [-47.65454451186838, -4.606017250381342], [-47.80191512295892, -4.597030433632256], [-48.25281601906562, -4.954327810543248], [-48.730490597834375, -5.338168157216899], [-48.7219432342271, -5.355043157860635], [-48.721492794756784, -5.355724310230372], [-48.721492794756784, -5.355944036801247], [-48.597523063465246, -5.398702827494787], [-48.51111558946593, -5.408151070042777], [-48.42156602550301, -5.398483100923954], [-48.35699937264934, -5.424344918316791], [-48.31717393167699, -5.486219920677129], [-48.27531601992399, -5.522452832215549], [-48.23144761004744, -5.533241406845832], [-48.19274277458658, -5.565431349480036], [-48.159223486198584, -5.619198441374863], [-48.18127304758653, -5.672064654329048], [-48.25867173217969, -5.723590535200856], [-48.28004014119796, -5.795814659049739], [-48.24540024729842, -5.888517299304809], [-48.25439805037604, -5.945228727249429], [-48.30704453675935, -5.965926970226505], [-48.32121690058125, -6.006642303810906], [-48.29669541527082, -6.067396700659771], [-48.319415142699995, -6.112396702376316], [-48.38984849499619, -6.141862035531645], [-48.413699814265414, -6.207340553654447], [-48.3911998134071, -6.308832256744807], [-48.410096298502964, -6.357655500794763], [-48.47061998245238, -6.353370832662506], [-48.52732042406845, -6.3722673177584], [-48.57996691045176, -6.414125229511413], [-48.62204454877565, -6.488590564383287], [-48.65287218667038, -6.595707267688226], [-48.80541735850514, -6.71831469424032], [-49.07947132403763, -6.856237062782895], [-49.209747207913466, -7.005651130982585], [-49.19512440462128, -7.168556410634423], [-49.2396739668676, -7.334823506820669], [-49.34047353125965, -7.510099392413281], [-49.333947652104456, -7.649142366467331], [-49.22031605597289, -7.752194128210874], [-49.172393690863544, -7.867396769324316], [-49.189949843877, -7.994970016378346], [-49.22684193512808, -8.139418264076113], [-49.28264149780355, -8.301422664787339], [-49.378947653821115, -8.498297672297554], [-49.50269765854176, -8.70866389125986], [-49.61294546548177, -8.839181474363713], [-49.707900303088365, -8.894970050710626], [-49.82984854992782, -9.022103844622904], [-49.97924064547044, -9.22009945764458], [-50.08409416509528, -9.421918312999608], [-50.17521477404, -9.730172719289826], [-50.23484856537735, -9.842672723581373], [-51.29752316646204, -9.78912535825745], [-55.09214611394981, -9.56592710755561], [-56.46262468185441, -9.467599467085961], [-56.489398364516376, -9.467599467085961], [-56.67682512947863, -9.378280616022494], [-56.7706483752452, -9.39627622217769], [-56.837697938349834, -9.271163912717554], [-56.92679706284244, -9.24440121638412], [-57.047393991270965, -9.231129731502847], [-57.07416767393295, -9.18634945635705], [-57.08316547701054, -9.079254725709276], [-57.10094135659489, -9.052470056718775], [-57.29736592463476, -8.958646810952203], [-57.480519007793376, -8.79350032027736], [-57.5786159353636, -8.757948561108677], [-57.641172090093676, -8.615082344721259], [-57.650169893171295, -8.498978824667262], [-57.681447970536325, -8.436422669937187], [-57.641172090093676, -8.231000298819694], [-57.779544898106565, -8.048077928560417], [-57.89564841816055, -7.690780551649439], [-57.94919578348447, -7.619457306741182], [-57.98047386084954, -7.530116483020606], [-58.06079490883542, -7.409530540920628], [-58.13662254844674, -7.338207296012342], [-58.14629051756555, -7.263500261912498], [-58.228424309761195, -7.141552015073032], [-58.385924315769344, -6.949181402265936], [-58.455445802796376, -6.793922607280777], [-58.436769044271415, -6.675797602774665], [-58.37444360244076, -6.57050463000806], [-58.29299096261485, -6.49893968587179], [-56.75714617746452, -3.186495711855869], [-56.39107072404671, -2.391788650290195], [-56.400969406064945, -2.336219800514158], [-56.4848939698133, -2.248922433902749], [-56.49839616759398, -2.159603582839281], [-56.63676897560687, -2.222137764912276], [-56.74836810095778, -2.17737946242363], [-56.74387469258325, -2.052486879534356], [-56.824195740569124, -2.034491273379132], [-57.00734882372774, -1.936405332137454], [-57.087669871713615, -1.81129302267729], [-57.16799091969949, -1.771236868805516], [-57.248322954013915, -1.757745657353368], [-57.27509663667588, -1.713207081435613], [-57.33764180507741, -1.730982961019961], [-57.44924093042833, -1.690926807148188], [-57.56534445048233, -1.623866257715036], [-57.65467428787437, -1.588094771975463], [-57.828598855055944, -1.445228555588045], [-57.900141826535105, -1.422948281300592], [-57.98047386084954, -1.34712064168923], [-58.083075183122816, -1.298077671068427], [-58.15912254930504, -1.235521516338338], [-58.25271508217219, -1.128426785690522], [-58.31527123690226, -1.119417996284355], [-58.39109887651361, -1.048094751376084], [-58.44037256003389, -0.86044825984294], [-58.56974756496915, -0.762340345944182], [-58.62779932499615, -0.766844740647258], [-58.70361597827895, -0.695301769168111], [-58.74839625342467, -0.62397852425984], [-58.73939845034707, -0.432047364594496], [-58.85549098407252, -0.351495603709196], [-58.86449977347867, -0.173077628153081], [-58.85099757569799, -0.083736804432505], [-58.86877345528232, 0.224275902629742] ] ], [ [ [-51.42441526114635, -0.565926764232813], [-51.25409420972716, -0.541405278922355], [-51.160721403430955, -0.6667153422963], [-51.27637448401464, -1.021771508184429], [-51.31012448530208, -1.023792992636515], [-51.46514158105924, -1.211219757598826], [-51.63771482982992, -1.34195706727354], [-51.66494993829076, -1.35476712635591], [-51.83256835288802, -1.433736855930931], [-51.93832275145343, -1.452655313683863], [-51.801971427892624, -1.202452667420573], [-51.68002318105323, -1.086129420795658], [-51.679572741583, -1.018629418220826], [-51.67822142317203, -0.855042986199237], [-51.546143781414855, -0.649620615081744], [-51.42441526114635, -0.565926764232813] ] ], [ [ [-48.44451646583161, -0.271844721764467], [-48.39277085838887, -0.297267086015552], [-48.37971910007849, -0.352857908448641], [-48.428091904658174, -0.441495607142429], [-48.46387437672621, -0.534879399767249], [-48.497393665114316, -0.664913584415103], [-48.52326646883563, -0.691478526834715], [-48.56669542557046, -0.684491221880705], [-48.53969103000907, -0.80105616773352], [-48.54958971202734, -0.847616228103448], [-48.57096910737414, -0.892857929048034], [-48.62406603322779, -0.986900901385468], [-48.70461779411306, -1.106607937201943], [-48.72846911338229, -1.131788602225015], [-48.7898936762723, -1.173426787407095], [-48.839617799262896, -1.226512726932128], [-48.82904895120345, -1.276478549150681], [-48.80406604009414, -1.326861851853948], [-48.83354235957796, -1.390099158953774], [-48.928947636654925, -1.482340373410011], [-48.9858678048418, -1.504620647697379], [-49.03852527755373, -1.514068890245312], [-49.086898082133416, -1.505082073496283], [-49.17262440376288, -1.412599159812089], [-49.18162220684053, -1.485043010231834], [-49.20479237374008, -1.559068891961942], [-49.234048966653006, -1.599564498975496], [-49.34474721306327, -1.59530180350032], [-49.406622215423624, -1.555465376199436], [-49.50674062744599, -1.511607952651389], [-49.52564809887042, -1.630392136870171], [-49.587973540701, -1.712306202495029], [-49.650518709102585, -1.73816801988778], [-49.748846349572204, -1.755262747102392], [-49.805096351717964, -1.790155326558363], [-49.91129020342515, -1.762931204426195], [-50.01006828336517, -1.708482960161632], [-50.065648119469756, -1.703736866230599], [-50.109296802775475, -1.747857961663669], [-50.33833978026274, -1.755943899472072], [-50.44342401278692, -1.800724174617812], [-50.50754022617036, -1.78789214287832], [-50.602044624306586, -1.697672412874226], [-50.61711786706917, -1.63759916839507], [-50.67336786921493, -1.516090374697455], [-50.72377314457526, -1.371422400428798], [-50.75977534321419, -1.240245637612304], [-50.72939814478974, -1.126844754380102], [-50.668424021370015, -1.130448270142608], [-50.59596918462171, -1.14754299735722], [-50.5804455023889, -1.139457059548818], [-50.576841986626505, -1.103224148010327], [-50.5928161083296, -1.072857935914499], [-50.7095897944248, -1.077801783759355], [-50.78339594958396, -1.01030178118441], [-50.79599726842412, -0.906349140500197], [-50.78092402566159, -0.689896495524408], [-50.77146479678515, -0.645357919606681], [-50.719949902241865, -0.583482917246329], [-50.703074901598086, -0.528573247182862], [-50.71589594700913, -0.470301760585016], [-50.69361567272165, -0.364547362019607], [-50.645473581041415, -0.272745600705093], [-50.46165033184167, -0.157323233020861], [-50.24833977682954, -0.116366200208404], [-49.628699860614006, -0.229107903727936], [-49.535096341418296, -0.233590325773889], [-49.40279897309023, -0.214693840678137], [-49.31437001463888, -0.167892081080254], [-49.215141495228636, -0.158663565103154], [-49.1170445676583, -0.163629385605191], [-48.7865208734093, -0.215594719618707], [-48.58807482091726, -0.231568841321803], [-48.51540025759806, -0.248224115394692], [-48.44451646583161, -0.271844721764467] ] ], [ [ [-50.76516963052933, -0.040780259825112], [-50.66707270295916, -0.058094713610558], [-50.65064814178572, -0.105797352149011], [-50.65290033913726, -0.131681142198886], [-50.926273152299984, -0.327413571540546], [-51.01896480622645, -0.26307763158627], [-51.03809200422177, -0.22594384110721], [-51.022348595418066, -0.188370597486426], [-51.02572139828112, -0.172396475783273], [-50.995124473285784, -0.105357899007231], [-50.84211787565215, -0.050228502372988], [-50.76516963052933, -0.040780259825112] ] ], [ [ [-49.50336782458294, 0.083650897265329], [-49.4005467757388, 0.057327654073731], [-49.372421774665895, 0.001077651927972], [-49.3809691382732, -0.055392076788678], [-49.443964746145014, -0.112323231304231], [-49.70879019570043, -0.143832021568699], [-49.83006827649871, -0.093866199350146], [-49.802624427795536, -0.051788561026285], [-49.71239371146294, 0.015030289178867], [-49.6021459045229, 0.06273292771732], [-49.50336782458294, 0.083650897265329] ] ], [ [ [-49.87889152054868, 0.304607936944308], [-49.73826651518419, 0.26815529883487], [-49.697320468700354, 0.215948265593283], [-49.839066079576355, 0.006922378713398], [-49.91714591653914, -0.023224106811597], [-50.002421798698435, -0.02928856016797], [-50.11312004510876, 0.033025895334163], [-50.285693293879376, 0.028532486959705], [-50.33947137210271, 0.043375016822665], [-50.3450963723173, 0.134506612095947], [-50.272641535568994, 0.231702660725603], [-50.12797356130034, 0.226528099981408], [-49.87889152054868, 0.304607936944308] ] ], [ [ [-50.35094109910278, 0.5818039924402], [-50.34262444839493, 0.381556182067072], [-50.33227532690637, 0.258926782857827], [-50.42609857267297, 0.139230733370027], [-50.44387445225726, -0.007700424578843], [-50.623874459123726, 0.054405290681018], [-50.61037226134306, 0.204698265164097], [-50.52621698469534, 0.247006616387409], [-50.45152093692394, 0.326877224903058], [-50.42609857267297, 0.424974152473396], [-50.42451654136261, 0.558172399741864], [-50.39684197976004, 0.581353552969972], [-50.372770933919924, 0.590801795517962], [-50.35094109910278, 0.5818039924402] ] ], [ [ [-50.09871696838741, 0.625002236275577], [-50.058891527415085, 0.63805399458596], [-50.03684196602717, 0.594855750750639], [-50.03999504231922, 0.522851353472561], [-50.15294548608108, 0.393025909067035], [-50.26139153513981, 0.359275907779647], [-50.2816503249752, 0.390773711715553], [-50.2816503249752, 0.516556187216906], [-50.25127312655076, 0.58540750820282], [-50.11290031853787, 0.604754432768857], [-50.09871696838741, 0.625002236275577] ] ] ] } }, { "type": "Feature", "properties": { "population": 2620, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-50.96429683539111, -19.511366940069024], [-50.99759639720824, -19.66392309823233], [-50.99377315487493, -20.101552509457804], [-51.06396480794314, -20.223039330498423], [-51.16072140343098, -20.306513454776464], [-51.39697141244321, -20.44175515915427], [-51.53422361494461, -20.55761697998031], [-51.593165267583686, -20.666513468509322], [-51.61904905763356, -20.806918747302916], [-51.69194334752365, -20.943720510334003], [-51.81141967044064, -21.077138484173474], [-51.86631835417552, -21.18267315616805], [-51.856650385056696, -21.260082827089718], [-51.87284423333068, -21.32982404068764], [-51.936290280672836, -21.422746407513614], [-51.95474731262692, -21.46954816711147], [-51.989848632325305, -21.49363019928012], [-52.047669679452866, -21.51094465306562], [-52.072641604233596, -21.554142896901], [-52.0649951195669, -21.622763504987418], [-52.12259644012363, -21.718168782064367], [-52.245665292474555, -21.84035872813176], [-52.33881837219997, -21.957341154469304], [-52.402495132441516, -22.069181979048096], [-52.56607057813454, -22.207324074161647], [-52.96072147209553, -22.454824083603015], [-53.11619999365156, -22.639987664885183], [-53.272348681248786, -22.752048216034964], [-53.480693415759006, -22.852397340956728], [-53.61996710271251, -23.00113025678668], [-53.67734869669832, -23.17348377898645], [-53.77117194246489, -23.322194722159324], [-53.90752326602565, -23.407031151176824], [-53.99549079867822, -23.570156157399552], [-54.05016975584219, -23.82281974125665], [-54.1246460770426, -23.978517989383576], [-54.24254036864929, -24.046918870899106], [-54.370794768073054, -23.971091231287758], [-54.440316255100086, -23.901789470831602], [-54.52964609249213, -23.852065347841034], [-54.625490822710816, -23.81247061976812], [-54.67184214283836, -23.829125893840967], [-54.72134653925805, -23.852065347841034], [-54.81719126947674, -23.888517985950344], [-54.92654918380465, -23.951293867251295], [-54.982568473051, -23.974475020479346], [-55.081796992461264, -23.997656173707384], [-55.1942969967528, -24.017453537743847], [-55.28699963700788, -24.00440177943345], [-55.366419806053145, -23.991130294552192], [-55.41592420247284, -23.951293867251295], [-55.44246717223537, -23.865358805379387], [-55.44246717223537, -23.792673255731657], [-55.45889173340879, -23.686699130595315], [-55.51852552474614, -23.627307038485938], [-55.5383228887826, -23.58094473202985], [-55.54169569164563, -23.52469472988409], [-55.53495008591956, -23.461918848583124], [-55.51852552474614, -23.41557851478413], [-55.52842420676437, -23.35932851263837], [-55.554747449956025, -23.319733784565443], [-55.54822157080082, -23.25019032488133], [-55.56149305568209, -23.154345594662644], [-55.60109877008355, -23.094733775982377], [-55.62089613412002, -23.02519031629825], [-55.62089613412002, -22.955888555842108], [-55.650822893074135, -22.886367068815062], [-55.65396498303774, -22.81031970263284], [-55.627641739846084, -22.741017942176683], [-55.617743057827866, -22.67149645514965], [-55.647450090211095, -22.621772332159082], [-55.703700092356854, -22.59206529977584], [-55.74666762329282, -22.512656117059123], [-55.75319350244801, -22.410043808457274], [-55.79954482257554, -22.353793806311515], [-55.84926894556612, -22.307673199083396], [-55.90529922114101, -22.307673199083396], [-55.99146499591235, -22.281130229320866], [-56.06752334842312, -22.28449204585536], [-56.18992203473289, -22.281130229320866], [-56.245941323979224, -22.264694681818895], [-56.27586808293334, -22.228242043709585], [-56.351915449115566, -22.178517920719017], [-56.39489396638007, -22.09258285884711], [-56.4477711656628, -22.07614731134514], [-56.52381853184502, -22.102470554536794], [-56.5503724879361, -22.135539403454516], [-56.58006853399078, -22.18190170991059], [-56.632945733273516, -22.234767922864776], [-56.70246722030055, -22.231625832901173], [-56.775141783619745, -22.261332865284402], [-56.844674256975324, -22.264694681818895], [-56.93714618433097, -22.271220560974086], [-57.02984882458604, -22.244897317782446], [-57.14234882887757, -22.214970558828327], [-57.23819355909626, -22.195173194791863], [-57.33089619935134, -22.214970558828327], [-57.393672080652294, -22.19831528475548], [-57.4764650525606, -22.188647315636672], [-57.56894796624479, -22.18190170991059], [-57.64162252956399, -22.129013524299324], [-57.72104269860925, -22.099328464573176], [-57.764021215873754, -22.10921616026286], [-57.82027121801951, -22.142306981837677], [-57.87989402302833, -22.135539403454516], [-57.95594138921055, -22.10921616026286], [-57.98564842159378, -22.04644027896191], [-57.97912254243859, -22.006625824318107], [-57.96246726836574, -21.96703109624518], [-57.93277122231105, -21.91078109409942], [-57.94941551005536, -21.851147302762072], [-57.94266990432928, -21.798281089807887], [-57.92939841944802, -21.751918783351798], [-57.9161159482382, -21.699052570397612], [-57.926245343155855, -21.64954817397792], [-57.92939841944802, -21.596681961023734], [-57.93614402517409, -21.546957838033165], [-57.94604270719232, -21.494069652421885], [-57.90621726621997, -21.418022286239662], [-57.87314841730225, -21.35502667836782], [-57.893165507909586, -21.30213849275654], [-57.88641990218352, -21.2659275538752], [-57.860096658991864, -21.206293762537854], [-57.827016823745595, -21.13363018554722], [-57.830169900037745, -20.997949028027634], [-57.860096658991864, -20.918517872653823], [-57.89227561529752, -20.897138477307024], [-57.90059226600539, -20.873078417795455], [-57.8848488572017, -20.841789354101863], [-57.901943584416316, -20.809401657553877], [-57.90846946357151, -20.776332808636155], [-57.891374736356894, -20.747526655193525], [-57.91521506929759, -20.690375774107153], [-57.96246726836574, -20.673720500034307], [-57.97912254243859, -20.657306925189417], [-57.99554710361201, -20.594531043888466], [-58.008818588493284, -20.521625767669846], [-58.00229270933808, -20.465375765524072], [-58.02547386256613, -20.41587136910438], [-58.05854271148385, -20.38616433672115], [-58.0913918338307, -20.333298123766966], [-58.124691395647844, -20.293483669123162], [-58.13774315395824, -20.237233666977403], [-58.15979271534623, -20.16454811732966], [-58.09364403118224, -20.15105690587751], [-58.06754051456147, -20.110319599636014], [-58.02120018076248, -20.055190203001743], [-57.960215071014204, -20.040798112608982], [-57.88754050769501, -20.020319596202782], [-57.86076682503305, -19.979604262618366], [-58.02996727094066, -19.832673104669638], [-58.13144798770247, -19.744474859117645], [-58.07204490926455, -19.62522924910003], [-57.971695784342785, -19.424289300028533], [-57.87449973571317, -19.229457749627542], [-57.800473853983064, -19.080944560368465], [-57.78134665598779, -19.053500711665322], [-57.7167690168056, -19.044052469117403], [-57.72870016960448, -18.967323950565444], [-57.730941380627485, -18.917138401776015], [-57.783148413869014, -18.914216038383287], [-57.725096653842016, -18.733095426005335], [-57.63915060564156, -18.475026568504532], [-57.57412252698906, -18.279272166505848], [-57.55319357111256, -18.246423044159002], [-57.50617208494384, -18.23719452818196], [-57.49559225055587, -18.21469452732366], [-57.55207296560107, -18.18320770971627], [-57.58649313292972, -18.122233586296545], [-57.661650606499876, -17.947397153845813], [-57.75322165491491, -17.734767751203393], [-57.7527712154446, -17.734548024632517], [-57.632174287016056, -17.739953298276205], [-57.600896209651026, -17.816000664458443], [-57.493790492674634, -17.869548029782365], [-57.471521204715756, -17.900595394247972], [-57.41932515780276, -17.882138362293887], [-57.36982076138307, -17.875612483138696], [-57.19859883102335, -17.81239714869598], [-57.0797926741475, -17.73432829806164], [-56.98012470159547, -17.594823898208716], [-56.8874220613404, -17.517875653085866], [-56.789995299811366, -17.386017737899635], [-56.745215024665626, -17.316957676671464], [-56.6680470529719, -17.320319493205957], [-56.489398364516376, -17.30254361362161], [-56.435840012863906, -17.320319493205957], [-56.32874528221606, -17.284548007466384], [-56.248424234230185, -17.21772915726119], [-56.101042636811144, -17.18644009356761], [-56.02499527062892, -17.213224762558113], [-55.984950103085694, -17.266772127882035], [-55.833075097292124, -17.311332676456885], [-55.78852553504582, -17.351608556899535], [-55.60986586026175, -17.391862464685104], [-55.53404920697895, -17.503483562693106], [-55.33762463893906, -17.58379362435045], [-55.181245238442415, -17.686405932952297], [-55.07415050779457, -17.681901538249207], [-54.899995227713575, -17.65061247455563], [-54.81089610322097, -17.601569503934783], [-54.779618025855925, -17.557030928017028], [-54.69929697787005, -17.516755047574378], [-54.52514169778905, -17.512250652871302], [-54.42232064894486, -17.579289229647358], [-54.391273284479254, -17.673112475413944], [-54.31971932667156, -17.673112475413944], [-54.23489388398259, -17.637340989674357], [-54.14557503291911, -17.6283541729253], [-54.08324959108846, -17.588298019053525], [-54.03846931594272, -17.512250652871302], [-53.949150464879224, -17.45870328754738], [-53.81977545994397, -17.307048008324685], [-53.74394782033262, -17.253500643000763], [-53.68139166560255, -17.25776333847587], [-53.752714910510804, -17.641845384377447], [-53.859820627487196, -17.69088835499828], [-53.98941535899334, -17.900595394247972], [-53.97592414754119, -17.93186248528447], [-53.8688184305648, -17.945375669393698], [-53.72594122784885, -18.007931824123787], [-53.60534429942031, -17.994418640014544], [-53.49374517406939, -18.01241424616977], [-53.306318409107135, -17.99892303471762], [-53.145665326806835, -18.030190125754118], [-53.065344278820945, -18.021203309005045], [-53.05184208104025, -18.01669891430197], [-53.042844277962644, -18.097250675187283], [-53.05634647574334, -18.29366425689861], [-53.034066201455914, -18.356000685057808], [-52.98929691263872, -18.387267776094305], [-52.9089648783243, -18.34723359487961], [-52.78409426809212, -18.39177217079738], [-52.788598662795195, -18.463095415705638], [-52.84641970992277, -18.5346383871848], [-52.891199985068496, -18.637250695786648], [-52.86891971078107, -18.682030970932374], [-52.761594267233804, -18.708793667265795], [-52.6144433827142, -18.722065152147053], [-52.4983398626602, -18.704289272562704], [-52.34197144849209, -18.815888397913625], [-52.27064820358382, -18.811405975867643], [-52.09649292350282, -18.89622043222805], [-52.06072143776325, -18.945263402848894], [-51.91357055324363, -18.99004367799462], [-51.84201659543595, -19.04809543802162], [-51.641098619021534, -19.128427472336043], [-51.542990705122776, -19.137414289085115], [-51.40461789710989, -19.168483626207816], [-51.310794651343315, -19.253298082568236], [-51.13665035759087, -19.284565173604733], [-51.034049035317565, -19.369401602622233], [-50.96429683539111, -19.511366940069024] ] ] ] } }, { "type": "Feature", "properties": { "population": 751, "fill": "#fff" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-51.888148188992545, -1.160375029096713], [-51.98489379815186, -1.141698270571794], [-52.05194336125652, -1.177469756311268], [-52.13227539557096, -1.15070705997789], [-52.23937012621877, -1.146202665274814], [-52.35996705464731, -1.070375025663452], [-52.39124513201233, -0.954271505609483], [-52.36874513115396, -0.923004414573029], [-52.40002320851909, -0.869457049249036], [-52.51611574224455, -0.873939471295046], [-52.507348652066355, -0.731073254907699], [-52.52512453165065, -0.646236825890128], [-52.60544557963652, -0.610465340150597], [-52.63221926229852, -0.556917974826604], [-52.627714867595444, -0.396275878854851], [-52.699268825403124, -0.302452633088365], [-52.82864383033842, -0.181844718331263], [-52.913469273027374, -0.190853507737359], [-52.97602542775746, -0.016698227656377], [-53.016070595300675, 0.054625017251851], [-53.007292518793975, 0.134957051566346], [-53.04284427796267, 0.246556176917181], [-53.127669720651625, 0.384928984930184], [-53.14117191843229, 0.536803990723683], [-53.11439823577035, 0.719957073882256], [-53.132174115354644, 0.751004438347934], [-53.26627324156391, 0.782282515712836], [-53.41791753445807, 0.94315532458404], [-53.466971491407435, 1.152851377505215], [-53.40891973138042, 1.184129454870344], [-53.44019780874544, 1.259957094481592], [-53.53852544921506, 1.2421812148973], [-53.5562903424709, 1.367282538028917], [-53.650124574566064, 1.362778143325841], [-53.6591223776436, 1.420829903352796], [-53.739443425629474, 1.434101388234183], [-53.75721930521382, 1.394056220690743], [-53.89109870485214, 1.407327705572129], [-53.92236579588871, 1.460875070896009], [-54.00719123857766, 1.523431225626041], [-54.07874519638534, 1.505655346041749], [-54.083249591088475, 1.541207105210503], [-54.172348715580995, 1.657299638935967], [-54.20361580661756, 1.657299638935967], [-54.364499601817215, 1.760131674108663], [-54.49836801512703, 1.746629476328053], [-54.578700049441466, 1.782400962067584], [-54.73484873703876, 1.773403158989879], [-54.76611582807516, 1.898504482121496], [-54.7616224197007, 1.969827727029838], [-54.792900497065716, 2.010103607472502], [-54.752844343193885, 2.081426852380673], [-54.78839610236264, 2.130480809330038], [-54.71707285745441, 2.264579935539416], [-54.73484873703876, 2.416224228433464], [-54.71482066010287, 2.425002304940222], [-54.70290049363251, 2.397997909378716], [-54.69749521998881, 2.359754499716871], [-54.661943460820055, 2.327575543411285], [-54.61627329306225, 2.326674664470602], [-54.59197153432274, 2.313853619059614], [-54.550575048368614, 2.293155376082495], [-54.51502328919992, 2.245452737543985], [-54.43312020990368, 2.207429054452973], [-54.293165370580425, 2.154332128599378], [-54.22791756535702, 2.153431249658695], [-54.167393881407634, 2.137006688485371], [-54.13004036435774, 2.121032566782276], [-54.08977547024364, 2.150497899937534], [-53.94644782805739, 2.232631692133054], [-53.8766956281309, 2.27830185989086], [-53.82944342906268, 2.312952740118931], [-53.79434210936438, 2.346032575365257], [-53.76779913960178, 2.354799665543339], [-53.750242986588376, 2.335002301507075], [-53.734719304355565, 2.308448345415854], [-53.68364386295406, 2.292924663183044], [-53.56394781346614, 2.261877298717536], [-53.509049129731295, 2.253099222210778], [-53.43187017170902, 2.279422465402376], [-53.365941214115935, 2.324202740548117], [-53.33444341018003, 2.339726422780984], [-53.28540043955917, 2.295176860534639], [-53.25208989141339, 2.232181252662826], [-53.229820603454584, 2.204957130530545], [-53.18009648046399, 2.21125229678637], [-53.08221927946465, 2.20180405423838], [-53.00977542904491, 2.181775977302436], [-52.96477542732828, 2.18357773518369], [-52.90357059100916, 2.211483009685821], [-52.87049075576283, 2.266601419991446], [-52.783424102050844, 2.317226421922612], [-52.70062014381409, 2.363577742050097], [-52.65314821817498, 2.425672470981453], [-52.58294557877821, 2.528954945624434], [-52.55954469897932, 2.573054068400438], [-52.554589864805905, 2.647750116171721], [-52.455822771194505, 2.864202761147453], [-52.41846925414461, 2.903797489220437], [-52.39641969275658, 2.972198370735896], [-52.35659425178426, 3.051629526109878], [-52.35659425178426, 3.117778210273684], [-52.32779908467023, 3.181674697086237], [-52.271318369624964, 3.237023820291483], [-52.229471444200556, 3.271674700519384], [-52.16264160766684, 3.364608053674033], [-52.11607056096835, 3.452355859755698], [-51.9995166014441, 3.64697866991429], [-51.99051879836645, 3.702108066548533], [-51.944398191138305, 3.735176915466184], [-51.92887450890555, 3.77702384089082], [-51.87958983905668, 3.828549721762442], [-51.827393792143766, 3.869506754575013], [-51.80534423075568, 3.930030438524398], [-51.767089834765216, 3.992575606925811], [-51.683395983916284, 4.039608079423203], [-51.652568346021496, 4.061207201340892], [-51.55784422131438, 4.233780450111567], [-51.54704466035554, 4.310948421805278], [-51.46154905162541, 4.313881771526439], [-51.32699948594586, 4.224782647033805], [-51.21989376896943, 4.093605884217311], [-51.07634640021229, 3.671730868124087], [-51.05249508094312, 3.281804095437053], [-50.99422359434516, 3.07750232983102], [-50.82727534578913, 2.651804071404399], [-50.81646479850173, 2.573054068400438], [-50.78969111583979, 2.477879504222983], [-50.73704462945648, 2.376849226931483], [-50.67877314285863, 2.210351417845686], [-50.676520945507036, 2.179523779951012], [-50.71432490202727, 2.134073338763983], [-50.65896479249358, 2.130931248800493], [-50.608790230032696, 2.104157566138497], [-50.57594110768588, 1.998622894143864], [-50.53432489516075, 1.927299649235522], [-50.45894769501973, 1.829653161135639], [-50.304370052404295, 1.797704917729448], [-50.18759636630915, 1.786004477830033], [-50.05461784561146, 1.730655354624787], [-49.95719108408235, 1.6597825491869], [-49.881594157370444, 1.419929024412284], [-49.9063463555803, 1.268954897559297], [-49.898919597484564, 1.162980772422884], [-49.93784415951632, 1.121353573569309], [-50.04719108751567, 1.052051813113167], [-50.0710424067849, 1.015148735533614], [-50.294471370386134, 0.835829881036886], [-50.343294614436104, 0.751004438347934], [-50.46299066392402, 0.63737284221628], [-50.58156610790047, 0.420480744098768], [-50.755040235611716, 0.22247414474856], [-50.81624507193084, 0.17253029518713], [-50.91006831769744, 0.161049581858492], [-50.96699947221293, 0.130232930292266], [-51.10199947736277, -0.03133201727718], [-51.28290036316986, -0.085099109171949], [-51.299544650914186, -0.17892235493855], [-51.40416745763952, -0.392672363092458], [-51.496199931853425, -0.509457035516164], [-51.55492185792161, -0.549051763589034], [-51.70274290848249, -0.762340345944153], [-51.72141966700741, -0.855504411998083], [-51.720518788066784, -1.018387718992813], [-51.81906615510729, -1.117857937631129], [-51.888148188992545, -1.160375029096713] ] ], [ [ [-50.36264153900231, 2.154551855170212], [-50.341943296025136, 2.141730809759224], [-50.291999446463706, 1.979506682477108], [-50.298964778760705, 1.938549649664708], [-50.39887445054069, 1.892879481906903], [-50.456025331627075, 1.910424648591913], [-50.508891544581275, 2.029450532038538], [-50.491115664996926, 2.128679051448842], [-50.41867181457707, 2.161528173795716], [-50.36264153900231, 2.154551855170212] ] ] ] } }, { "type": "Feature", "properties": { "population": 3224, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-60.72479281319322, -13.662948748219577], [-60.659094568499526, -13.601513199001005], [-60.38234895247378, -13.418590828741813], [-60.35107087510873, -13.271220217651319], [-60.27502350892651, -13.137340818012973], [-60.270749827122856, -13.070302241236917], [-60.194691474612085, -12.972194327338144], [-60.083092349261165, -12.927414052192404], [-60.04304718171794, -12.873866686868496], [-60.00277130127529, -12.731000470481078], [-59.908948055508716, -12.619401345130157], [-59.82412261281975, -12.387194305022163], [-59.89117217592437, -12.244547815205635], [-59.88666778122129, -12.128444295151638], [-59.93144805636702, -12.0523969289694], [-59.98499542169094, -11.918517529331055], [-60.06082306130229, -11.905246044449797], [-60.10109894174494, -11.74436224925006], [-60.10109894174494, -11.601496032862656], [-60.025040589234166, -11.534677182657461], [-59.908948055508716, -11.38280217686389], [-60.00277130127529, -11.14633244128079], [-60.069820864379906, -11.115043377587199], [-60.17691559502774, -11.11954777229029], [-60.27951691730104, -11.079271891847625], [-60.38234895247378, -11.10155216613505], [-60.440400712500775, -11.038996011404976], [-60.440400712500775, -11.003444252236292], [-61.471566523321, -10.998939857533202], [-61.520620480270395, -10.954181555044556], [-61.50734899538912, -10.878353915433223], [-61.520620480270395, -10.789013091712633], [-61.471566523321, -10.757746000676136], [-61.502844600686046, -10.686422755767879], [-61.471566523321, -10.436439836075536], [-61.56540075541612, -10.26230652865162], [-61.569674437219774, -10.061366579580124], [-61.53412267805108, -9.994547729374943], [-61.520620480270395, -9.860448603165707], [-61.56540075541612, -9.726569203527362], [-61.520620480270395, -9.704288929239937], [-61.48057531272717, -9.63725035246388], [-61.551898557635425, -9.463095072382885], [-61.54739416293235, -9.409547707058962], [-61.609950317662424, -9.320448582566343], [-61.592174438078075, -9.239896821681043], [-61.529618283348, -9.22662533679977], [-61.55639196600997, -9.128297696330122], [-61.529618283348, -8.998922691394853], [-61.48484899453082, -8.914108235034448], [-61.50734899538912, -8.847047685601282], [-61.609950317662424, -8.766715651286859], [-58.54746729068172, -8.74893977170251], [-58.47165063739892, -8.690888011675511], [-58.42665063568231, -8.523038884178831], [-58.3971743161985, -8.41550470038922], [-58.354415525504876, -8.27600030053631], [-58.32877343468296, -8.050538866154383], [-58.35352563289281, -7.905870891885741], [-58.330344479664774, -7.780099402712935], [-58.259471674226816, -7.67322439863598], [-58.22391991505812, -7.574677031595442], [-58.22370018848723, -7.484677028162224], [-58.20187035367012, -7.414474388765456], [-58.13662254844674, -7.338207296012342], [-58.06079490883542, -7.409530540920628], [-57.98047386084954, -7.530116483020606], [-57.94919578348447, -7.619457306741182], [-57.89564841816055, -7.690780551649439], [-57.779544898106565, -8.048077928560417], [-57.641172090093676, -8.231000298819694], [-57.681447970536325, -8.436422669937187], [-57.650169893171295, -8.498978824667262], [-57.641172090093676, -8.615082344721259], [-57.5786159353636, -8.757948561108677], [-57.480519007793376, -8.79350032027736], [-57.29736592463476, -8.958646810952203], [-57.10094135659489, -9.052470056718775], [-57.08316547701054, -9.079254725709276], [-57.07416767393295, -9.18634945635705], [-57.047393991270965, -9.231129731502847], [-56.92679706284244, -9.24440121638412], [-56.837697938349834, -9.271163912717554], [-56.7706483752452, -9.39627622217769], [-56.67682512947863, -9.378280616022494], [-56.489398364516376, -9.467599467085961], [-56.46262468185441, -9.467599467085961], [-55.09214611394981, -9.56592710755561], [-51.29752316646204, -9.78912535825745], [-50.23484856537735, -9.842672723581373], [-50.33744988765065, -10.034362184018732], [-50.39527093477824, -10.176788947264384], [-50.40269769287403, -10.25824158709031], [-50.45467401321616, -10.388517470966192], [-50.55074945633427, -10.567177145750264], [-50.59912226091393, -10.689806544959453], [-50.61037226134306, -11.000983314642411], [-50.64524286814202, -11.162746016125666], [-50.708018749443, -11.345668386384844], [-50.716566113050305, -11.482689875986807], [-50.67134638476281, -11.573832457588622], [-50.66572138454822, -11.65190130822296], [-50.717466991990904, -11.74910834318112], [-50.66144770274457, -11.8535004370071], [-50.653570505178465, -11.922340771664409], [-50.67471918762584, -11.990082473467297], [-50.667523142429445, -12.112030720306748], [-50.631740670361324, -12.288646937981625], [-50.629268746438925, -12.437379853811592], [-50.66054682380397, -12.558207495139541], [-50.65537226305969, -12.666862284440654], [-50.613964790777004, -12.763388167029063], [-50.56604242566766, -12.819638169174837], [-50.48482049874116, -12.842599595831999], [-50.56604242566766, -13.01473339146088], [-50.59506830568114, -13.130814938857782], [-50.59844110854419, -13.249401369162754], [-50.66662226348885, -13.40960401199274], [-50.79958979785803, -13.611862320489536], [-50.86057490760629, -13.806056663834966], [-50.85179683109956, -13.995043487450488], [-50.86754023990326, -14.095172885801375], [-50.908497272715636, -14.107323765171145], [-50.94111568216306, -14.200927284366827], [-50.977568320272354, -14.46328080999983], [-51.11437008330344, -14.837892640696381], [-51.18861569160444, -14.976496161608694], [-51.24621701216114, -15.004401436110683], [-51.286273166032885, -15.002819404800334], [-51.47144773364363, -15.044215890754487], [-51.5897924647206, -15.141422925712646], [-51.66471922539134, -15.261349688099983], [-51.69599730275638, -15.403315025546789], [-51.73199950139539, -15.49039266558728], [-51.77271483497981, -15.52280233479236], [-51.78824950354115, -15.556991789221584], [-51.778790274664686, -15.592763274961158], [-51.79859862502968, -15.656220308631859], [-51.84742186907965, -15.747121191005704], [-51.961492918352974, -15.819125588283697], [-52.14239380416005, -15.87267295360762], [-52.25669556633282, -15.93566856147946], [-52.308441173775506, -16.009254990067816], [-52.36176881252855, -16.05829796068865], [-52.416667496263386, -16.082379992857312], [-52.53839601653196, -16.16855675395719], [-52.53412233472831, -16.22660851398419], [-52.66799074803811, -16.289142696057183], [-52.68127321924793, -16.36046594096544], [-52.6144433827142, -16.427526490398606], [-52.679921900837, -16.576017707000588], [-52.789049102265494, -16.70495325879409], [-52.942714879611756, -16.813630020752285], [-53.02416751943768, -16.910375629911584], [-53.03316532251529, -16.995190086272004], [-53.07794559766103, -17.094638332253155], [-53.158266645646904, -17.208720367855037], [-53.20259648132233, -17.304125644931958], [-53.21137455782906, -17.409198891127687], [-53.11506840181153, -17.85491424016162], [-53.05184208104025, -18.01669891430197], [-53.065344278820945, -18.021203309005045], [-53.145665326806835, -18.030190125754118], [-53.306318409107135, -17.99892303471762], [-53.49374517406939, -18.01241424616977], [-53.60534429942031, -17.994418640014544], [-53.72594122784885, -18.007931824123787], [-53.8688184305648, -17.945375669393698], [-53.97592414754119, -17.93186248528447], [-53.98941535899334, -17.900595394247972], [-53.859820627487196, -17.69088835499828], [-53.752714910510804, -17.641845384377447], [-53.68139166560255, -17.25776333847587], [-53.74394782033262, -17.253500643000763], [-53.81977545994397, -17.307048008324685], [-53.949150464879224, -17.45870328754738], [-54.03846931594272, -17.512250652871302], [-54.08324959108846, -17.588298019053525], [-54.14557503291911, -17.6283541729253], [-54.23489388398259, -17.637340989674357], [-54.31971932667156, -17.673112475413944], [-54.391273284479254, -17.673112475413944], [-54.42232064894486, -17.579289229647358], [-54.52514169778905, -17.512250652871302], [-54.69929697787005, -17.516755047574378], [-54.779618025855925, -17.557030928017028], [-54.81089610322097, -17.601569503934783], [-54.899995227713575, -17.65061247455563], [-55.07415050779457, -17.681901538249207], [-55.181245238442415, -17.686405932952297], [-55.33762463893906, -17.58379362435045], [-55.53404920697895, -17.503483562693106], [-55.60986586026175, -17.391862464685104], [-55.78852553504582, -17.351608556899535], [-55.833075097292124, -17.311332676456885], [-55.984950103085694, -17.266772127882035], [-56.02499527062892, -17.213224762558113], [-56.101042636811144, -17.18644009356761], [-56.248424234230185, -17.21772915726119], [-56.32874528221606, -17.284548007466384], [-56.435840012863906, -17.320319493205957], [-56.489398364516376, -17.30254361362161], [-56.6680470529719, -17.320319493205957], [-56.745215024665626, -17.316957676671464], [-56.789995299811366, -17.386017737899635], [-56.8874220613404, -17.517875653085866], [-56.98012470159547, -17.594823898208716], [-57.0797926741475, -17.73432829806164], [-57.19859883102335, -17.81239714869598], [-57.36982076138307, -17.875612483138696], [-57.41932515780276, -17.882138362293887], [-57.471521204715756, -17.900595394247972], [-57.493790492674634, -17.869548029782365], [-57.600896209651026, -17.816000664458443], [-57.632174287016056, -17.739953298276205], [-57.7527712154446, -17.734548024632517], [-57.75322165491491, -17.734767751203393], [-57.78021506414774, -17.67177214333155], [-57.78877341408359, -17.573005049720138], [-57.83242209738928, -17.51203092630041], [-57.90509666070848, -17.53226774347864], [-57.990822982338045, -17.512931805241024], [-58.20547386943258, -17.36307828389957], [-58.34766991977881, -17.28206509721541], [-58.39604272435845, -17.234362458676955], [-58.417422119705265, -17.08046596843127], [-58.45971948460003, -16.91081508305335], [-58.47816553022557, -16.70066859066189], [-58.47051904555887, -16.650263315301586], [-58.35037255660065, -16.490741824841322], [-58.35082299607096, -16.410190063956023], [-58.34047387458243, -16.339987424559254], [-58.345648435326694, -16.284418574783217], [-58.375344481381376, -16.283517695842605], [-58.42371728596103, -16.307819454582145], [-58.49662256217965, -16.32671593967798], [-58.538019048133805, -16.32829797098833], [-58.957191427405206, -16.313224728225833], [-59.43419584013273, -16.29588830178325], [-59.831098931445254, -16.281715937961366], [-60.17557526294536, -16.26934533202072], [-60.187275702844815, -16.13210411584788], [-60.20662262741098, -15.901918560192001], [-60.22034455176255, -15.738573827398397], [-60.24239411315055, -15.479604090956983], [-60.38054719459254, -15.318280842615493], [-60.53040071593401, -15.143224683593871], [-60.58326692888819, -15.09822468187727], [-60.4019156036108, -15.092819408233566], [-60.27344147761616, -15.088776439329337], [-60.298874828195736, -14.618517632327894], [-60.33801911679835, -14.57059526721855], [-60.372669997026435, -14.41872026142498], [-60.39629060339624, -14.332763226895977], [-60.46019807653724, -14.263022013298055], [-60.47459016693, -14.184733436092841], [-60.462900713359076, -14.132526402851298], [-60.42801912023158, -14.099897007075342], [-60.40506867990297, -14.019125519619152], [-60.422394120017, -13.937892606364102], [-60.46019807653724, -13.86230666598074], [-60.50654939666477, -13.789840842903885], [-60.59519808168707, -13.745302266986116], [-60.722320889270804, -13.664289080301955], [-60.72479281319322, -13.662948748219577] ] ] ] } }, { "type": "Feature", "properties": { "population": 11082, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-54.24254036864929, -24.046918870899106], [-54.1246460770426, -23.978517989383576], [-54.05016975584219, -23.82281974125665], [-53.99549079867822, -23.570156157399552], [-53.90752326602565, -23.407031151176824], [-53.77117194246489, -23.322194722159324], [-53.67734869669832, -23.17348377898645], [-53.61996710271251, -23.00113025678668], [-53.480693415759006, -22.852397340956728], [-53.272348681248786, -22.752048216034964], [-53.11619999365156, -22.639987664885183], [-53.044415322944445, -22.636406121779814], [-52.94924075876696, -22.570466177858123], [-52.69477541702862, -22.601513542323772], [-52.6144433827142, -22.57046617785815], [-52.52062013694763, -22.615026726433], [-52.44479249733628, -22.601513542323772], [-52.315197765830135, -22.619531121136077], [-52.26165040050621, -22.601513542323772], [-52.21708985193136, -22.641789422766422], [-52.16354248660744, -22.601513542323772], [-52.14127319864856, -22.543483754953854], [-52.06521484613779, -22.52120348066643], [-51.984893798151916, -22.54796617699985], [-51.873294672800995, -22.610522331729925], [-51.743919667865725, -22.619531121136077], [-51.69464598434547, -22.664069697053776], [-51.641098619021534, -22.650798212172575], [-51.54749509982585, -22.686349971341272], [-51.35534421358966, -22.65079821217256], [-51.181419646408045, -22.739897336665194], [-51.00277095795252, -22.793664428559993], [-50.88217402952398, -22.820449097550494], [-50.78406611562522, -22.945319707782687], [-50.72602534192677, -22.949824102485763], [-50.62769770145712, -22.923039433495262], [-50.43127313341722, -22.945319707782687], [-50.368947691586584, -22.91405261674619], [-50.29290032540439, -22.95432849718884], [-50.12324944002643, -22.94081531307961], [-49.97159416080376, -22.914052616746176], [-49.958091963023065, -22.963315313937912], [-49.91354240077675, -22.985595588225337], [-49.909048992402205, -23.034638558846183], [-49.73040030394668, -23.105983776411534], [-49.636796784751, -23.257858782205105], [-49.614296783892684, -23.409733787998675], [-49.65457266433535, -23.507819729240353], [-49.605518707385954, -23.641699128878713], [-49.551971342062075, -23.71324210035783], [-49.56974722164637, -23.833850015114933], [-49.60102529901141, -23.86489737958054], [-49.40909413934608, -24.083832934807262], [-49.33304677316386, -24.14186272217718], [-49.33754018153837, -24.21320793974253], [-49.274995013136845, -24.315798275687285], [-49.22594105618748, -24.338298276545572], [-49.23944325396815, -24.418630310860024], [-49.31076649887643, -24.530229436210945], [-49.29749501399516, -24.66410883584929], [-49.21694325310986, -24.690871532182697], [-49.09207264287767, -24.68636713747962], [-49.025023079773064, -24.668591257895272], [-48.82859851173316, -24.66410883584922], [-48.7795445547838, -24.695375926885774], [-48.61439806410894, -24.681862742776545], [-48.48929674097735, -24.74441889750662], [-48.54284410630126, -24.81147944693977], [-48.5653441071596, -25.056957971928966], [-48.51179674183564, -25.08372066826246], [-48.41346910136599, -24.958850058030265], [-48.26609849027551, -25.034677697641598], [-48.23054673110681, -25.012397423354116], [-48.18576645596107, -25.19081539891029], [-48.0919432101945, -25.23559567405603], [-48.08766952839085, -25.28015622263088], [-48.07754013347321, -25.29026364489144], [-48.202641456604795, -25.41649655986309], [-48.242466897577145, -25.403225074981833], [-48.185997168860496, -25.309841282357027], [-48.2735252483713, -25.306237766594563], [-48.402449813836256, -25.27204831216534], [-48.45846910308262, -25.31074216129764], [-48.42764146518789, -25.403225074981833], [-48.47602525609608, -25.443039529625636], [-48.56422350164806, -25.447543924328713], [-48.64409411016365, -25.436513650470445], [-48.731841916245315, -25.368793921324638], [-48.692247188172416, -25.491423320533826], [-48.50707262056167, -25.521350079487945], [-48.42989366253943, -25.55015623293056], [-48.401098495425344, -25.59739744567017], [-48.5450963036528, -25.815871575098043], [-48.66569323208134, -25.844458001969784], [-48.67896471696261, -25.87526366720742], [-48.612816032798605, -25.875043940636544], [-48.57637438101784, -25.93535888434363], [-48.58537218409546, -25.9862036128457], [-48.65016954984853, -25.97225097559469], [-48.91791736279666, -25.97651367106981], [-48.944691045458626, -26.007802734763388], [-49.109848522462016, -25.99453124988213], [-49.21266957130621, -26.030302735621696], [-49.29749501399516, -26.106130375233022], [-49.45364370159237, -26.16866455730603], [-49.48941518733196, -26.22223389528704], [-49.596520904308335, -26.22223389528704], [-49.72162222743995, -26.15967774055696], [-49.7526695919056, -26.123906254817314], [-49.882275309740265, -26.039069825799885], [-49.949094159945446, -26.01230712946647], [-50.19029900313106, -26.05258300990912], [-50.315169613363224, -26.05258300990912], [-50.369167418157474, -26.085871585397726], [-50.45804681607919, -26.02579834091862], [-50.54287225876814, -26.02579834091862], [-50.64569330761233, -26.07035888949347], [-50.73502314500439, -26.23100098546523], [-50.77057490417306, -26.22223389528704], [-50.90016963567922, -26.28026368265695], [-50.94471919792551, -26.244492196917378], [-51.074094202860806, -26.23550538016832], [-51.24824948294179, -26.347104505519212], [-51.28852536338445, -26.423151871701464], [-51.2795165739783, -26.49897951131271], [-51.23947140643509, -26.606074241960584], [-51.28402096868135, -26.650854517106367], [-51.422393776694236, -26.699897487727206], [-51.50271482468011, -26.601569847257558], [-51.873294672800995, -26.601569847257558], [-52.00717407243934, -26.583793967673216], [-52.19909424577614, -26.44991456803487], [-52.458074968546086, -26.43191896187964], [-52.54290041123505, -26.40065187084314], [-52.64121706537617, -26.40065187084309], [-52.6724951427412, -26.378371596555716], [-52.81537234545715, -26.33831544268395], [-52.913469273027374, -26.365100111674394], [-52.99379032101325, -26.351608900222303], [-53.12339603884794, -26.369604506377534], [-53.27954472644517, -26.26226807650172], [-53.355372366056514, -26.239987802214294], [-53.458193414900734, -26.2890527454922], [-53.516245174927704, -26.289052745492228], [-53.66339605944734, -26.25776368179862], [-53.6699219386025, -26.258005381026635], [-53.671273257013425, -26.225156258679768], [-53.74687018372535, -26.083630374374735], [-53.823148262806995, -25.959638670426074], [-53.86409430929085, -25.748832998321973], [-53.891098704852226, -25.668940417149315], [-53.9547754650938, -25.647582994459597], [-54.012365799321955, -25.577819808204595], [-54.08504036264114, -25.57197508141914], [-54.11924080339891, -25.545190412428624], [-54.15457283599672, -25.52315183736917], [-54.206098716868524, -25.52967771652436], [-54.25019783964453, -25.570393050108777], [-54.33187020604133, -25.57197508141914], [-54.38339608691314, -25.588630355491986], [-54.44391977086255, -25.625082993601296], [-54.50152109141925, -25.60820799295756], [-54.53774301662912, -25.576479476122216], [-54.61582285359201, -25.576018050323356], [-54.61064829284774, -25.43269040813709], [-54.47316537744693, -25.22030270472264], [-54.43627328619587, -25.121293911883257], [-54.454049165780205, -25.065263636308373], [-54.41309213296782, -24.867487749857574], [-54.31297372094548, -24.52820795175883], [-54.28102547753926, -24.30613030656849], [-54.31724740274913, -24.201276786943637], [-54.318368008260634, -24.12815178415414], [-54.26684212738883, -24.065815355994943], [-54.2418702026081, -24.047380296697952], [-54.24254036864929, -24.046918870899106] ] ] ] } }, { "type": "Feature", "properties": { "population": 2852, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-47.301971256231354, -16.03918174902192], [-47.85547347461139, -16.043664171067917], [-48.18127304758653, -16.03918174902192], [-48.252816019065676, -16.03017295961577], [-48.234820412910466, -15.958849714707497], [-48.279589701727645, -15.838241799950424], [-48.203773048444845, -15.73543173743478], [-48.23932480761354, -15.69087118885993], [-48.18127304758653, -15.489953212445528], [-47.76614363721936, -15.489953212445528], [-47.422348458089004, -15.498940029194586], [-47.41357038158225, -15.534733487591254], [-47.30624493803501, -15.588280852915176], [-47.30624493803501, -15.708647068444279], [-47.35102521318072, -15.833737405247348], [-47.359792303358915, -15.985612411040918], [-47.301971256231354, -16.03918174902192] ] ] ] } }, { "type": "Feature", "properties": { "population": 6523, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-50.96429683539111, -19.511366940069024], [-51.034049035317565, -19.369401602622233], [-51.13665035759087, -19.284565173604733], [-51.310794651343315, -19.253298082568236], [-51.40461789710989, -19.168483626207816], [-51.542990705122776, -19.137414289085115], [-51.641098619021534, -19.128427472336043], [-51.84201659543595, -19.04809543802162], [-51.91357055324363, -18.99004367799462], [-52.06072143776325, -18.945263402848894], [-52.09649292350282, -18.89622043222805], [-52.27064820358382, -18.811405975867643], [-52.34197144849209, -18.815888397913625], [-52.4983398626602, -18.704289272562704], [-52.6144433827142, -18.722065152147053], [-52.761594267233804, -18.708793667265795], [-52.86891971078107, -18.682030970932374], [-52.891199985068496, -18.637250695786648], [-52.84641970992277, -18.5346383871848], [-52.788598662795195, -18.463095415705638], [-52.78409426809212, -18.39177217079738], [-52.9089648783243, -18.34723359487961], [-52.98929691263872, -18.387267776094305], [-53.034066201455914, -18.356000685057808], [-53.05634647574334, -18.29366425689861], [-53.042844277962644, -18.097250675187283], [-53.05184208104025, -18.01669891430197], [-53.11506840181153, -17.85491424016162], [-53.21137455782906, -17.409198891127687], [-53.20259648132233, -17.304125644931958], [-53.158266645646904, -17.208720367855037], [-53.07794559766103, -17.094638332253155], [-53.03316532251529, -16.995190086272004], [-53.02416751943768, -16.910375629911584], [-52.942714879611756, -16.813630020752285], [-52.789049102265494, -16.70495325879409], [-52.679921900837, -16.576017707000588], [-52.6144433827142, -16.427526490398606], [-52.68127321924793, -16.36046594096544], [-52.66799074803811, -16.289142696057183], [-52.53412233472831, -16.22660851398419], [-52.53839601653196, -16.16855675395719], [-52.416667496263386, -16.082379992857312], [-52.36176881252855, -16.05829796068865], [-52.308441173775506, -16.009254990067816], [-52.25669556633282, -15.93566856147946], [-52.14239380416005, -15.87267295360762], [-51.961492918352974, -15.819125588283697], [-51.84742186907965, -15.747121191005704], [-51.79859862502968, -15.656220308631859], [-51.778790274664686, -15.592763274961158], [-51.78824950354115, -15.556991789221584], [-51.77271483497981, -15.52280233479236], [-51.73199950139539, -15.49039266558728], [-51.69599730275638, -15.403315025546789], [-51.66471922539134, -15.261349688099983], [-51.5897924647206, -15.141422925712646], [-51.47144773364363, -15.044215890754487], [-51.286273166032885, -15.002819404800334], [-51.24621701216114, -15.004401436110683], [-51.18861569160444, -14.976496161608694], [-51.11437008330344, -14.837892640696381], [-50.977568320272354, -14.46328080999983], [-50.94111568216306, -14.200927284366827], [-50.908497272715636, -14.107323765171145], [-50.86754023990326, -14.095172885801375], [-50.85179683109956, -13.995043487450488], [-50.86057490760629, -13.806056663834966], [-50.79958979785803, -13.611862320489536], [-50.66662226348885, -13.40960401199274], [-50.59844110854419, -13.249401369162754], [-50.59506830568114, -13.130814938857782], [-50.56604242566766, -13.01473339146088], [-50.48482049874116, -12.842599595831999], [-50.3923485713855, -12.617138161450072], [-50.29559197589765, -12.490026340194888], [-50.16374504703998, -12.38765573082101], [-50.13674065147859, -12.476513156085659], [-50.2035704880123, -12.570358374509311], [-50.19929680620865, -12.65517283086973], [-50.27512444582001, -12.789052230508076], [-50.270620051116936, -12.89186229302372], [-50.23934197375189, -12.931918446895494], [-50.05191520878964, -13.021237297958976], [-49.97159416080376, -13.025741692662066], [-49.91354240077675, -13.070302241236917], [-49.68583975537183, -13.177396971884747], [-49.520693264697, -13.199896972743062], [-49.38232045668411, -13.248939943363894], [-49.3598204558258, -13.132858395966991], [-49.29749501399516, -13.003483391031722], [-49.136622205123956, -12.735504865184154], [-49.016245003266306, -12.65517283086973], [-48.998249397111096, -12.748996076636303], [-48.92691516587428, -12.784547835805], [-48.824094117030086, -12.873866686868496], [-48.797320434368146, -12.927414052192404], [-48.80182482907122, -12.998978996328646], [-48.766273069902525, -13.097064937570323], [-48.76176867519945, -13.208664062921244], [-48.77504016008072, -13.351552251965742], [-48.73926867434113, -13.38281934300224], [-48.685721309017225, -13.338280767084484], [-48.65444323165218, -13.177396971884747], [-48.587624381447, -13.155116697597322], [-48.480518664470594, -13.195392578039986], [-48.36891953911967, -13.186405761290914], [-48.22604233640374, -13.092582515524342], [-48.16371689457307, -13.102470211214026], [-48.17496689500223, -13.180780761076335], [-48.07416733061015, -13.195392578039986], [-48.002844085701895, -13.248939943363894], [-47.93579452259729, -13.244457521317912], [-47.85547347461139, -13.293500491938744], [-47.681318194530405, -13.356056646668833], [-47.65904890657151, -13.320263188272165], [-47.72159407497307, -13.150612302894245], [-47.64104231408774, -13.115082516382643], [-47.55644758429821, -13.244457521317912], [-47.440344064244215, -13.248939943363894], [-47.292973453153735, -13.199896972743062], [-47.09204449041076, -13.097064937570323], [-46.971447561982245, -13.070302241236917], [-46.82857035926628, -13.070302241236917], [-46.75274271965495, -13.034750482068219], [-46.6456479890071, -12.922931630146422], [-46.59208963735463, -12.89186229302372], [-46.43572122318653, -12.847103990535075], [-46.30184182354819, -12.833832505653803], [-46.234792260443555, -12.798039047257149], [-46.087641375923965, -12.914142567311146], [-46.0741501644718, -12.976698722041192], [-46.150197530654054, -13.025741692662052], [-46.18124489511965, -13.159621092300398], [-46.176971213315994, -13.217672852327382], [-46.08314796754942, -13.253444338066984], [-46.09641945243072, -13.351552251965757], [-46.18574928982272, -13.405099617289665], [-46.270574732511704, -13.655082536981979], [-46.26179665600495, -13.869491724848501], [-46.22152077556231, -13.998866729783842], [-46.17246681861292, -14.074914095966065], [-46.12769752979574, -14.18203079927099], [-46.03836769240368, -14.253354044179261], [-46.01159400974177, -14.298112346667835], [-45.92249488524911, -14.35168168464891], [-45.96254005279235, -14.467763232045797], [-45.96254005279235, -14.534604054908087], [-45.91349708217152, -14.690983455404748], [-45.93127296175584, -14.749013242774652], [-46.02509620752241, -14.869401430960849], [-46.078643572846346, -14.922948796284771], [-46.19024269819727, -14.93644000773692], [-46.297348415173644, -14.909677311403499], [-46.31534402132888, -14.847121156673424], [-46.38666726623714, -14.771293517062077], [-46.51604227117241, -14.713241757035078], [-46.58309183427701, -14.793573791349502], [-46.556318151615045, -14.869401430960849], [-46.57859842590247, -14.914181706106575], [-46.547320348537454, -15.039052316338768], [-46.63665018592948, -15.070319407375266], [-46.7349668400706, -15.016772042051343], [-46.833074753969356, -15.012267647348267], [-46.89111552766781, -15.04803913308784], [-46.93139140811047, -15.226698807871912], [-46.89111552766781, -15.239970292753185], [-46.85534404192825, -15.324806721770685], [-46.93589580281355, -15.431901452418515], [-46.93139140811047, -15.543500577769436], [-46.868846239708944, -15.592763274961158], [-46.833074753969356, -15.8427461946535], [-46.86434184500584, -15.882802348525274], [-47.07854229263009, -15.936349713849197], [-47.127815976150345, -15.923078228967924], [-47.230417298423646, -16.034677354318845], [-47.301971256231354, -16.03918174902192], [-47.359792303358915, -15.985612411040918], [-47.35102521318072, -15.833737405247348], [-47.30624493803501, -15.708647068444279], [-47.30624493803501, -15.588280852915176], [-47.41357038158225, -15.534733487591254], [-47.422348458089004, -15.498940029194586], [-47.76614363721936, -15.489953212445528], [-48.18127304758653, -15.489953212445528], [-48.23932480761354, -15.69087118885993], [-48.203773048444845, -15.73543173743478], [-48.279589701727645, -15.838241799950424], [-48.234820412910466, -15.958849714707497], [-48.252816019065676, -16.03017295961577], [-48.18127304758653, -16.03918174902192], [-47.85547347461139, -16.043664171067917], [-47.301971256231354, -16.03918174902192], [-47.33752301540002, -16.146276479669766], [-47.32424054419022, -16.22660851398419], [-47.35102521318072, -16.30241418093844], [-47.431346261166595, -16.409750610814257], [-47.45361554912549, -16.494345340603786], [-47.404572578504656, -16.570392706786023], [-47.26619977049177, -16.6597335305066], [-47.15909405351539, -16.918483540377125], [-47.15009625043777, -16.976513327747043], [-47.230417298423646, -17.025797997595845], [-47.2126414188393, -17.07484096821669], [-47.310749332738084, -17.141901517649842], [-47.422348458089004, -17.27127652258511], [-47.45361554912549, -17.34710416219646], [-47.49839582427123, -17.32932828261211], [-47.52944318873682, -17.454198892844303], [-47.458119943828564, -17.52574186432345], [-47.40906598687917, -17.49897916799003], [-47.28846905845066, -17.548022138610875], [-47.27069317886631, -17.66863005336795], [-47.328744938893294, -17.744457692979296], [-47.35551862155526, -17.824767754636625], [-47.34652081847764, -17.878315119960547], [-47.27947125537304, -18.061479189447695], [-47.31884625687508, -18.083298037936274], [-47.44641950392909, -18.170595404547655], [-47.786171714155245, -18.37940156485672], [-47.92881820397179, -18.445319536121303], [-48.01791732846439, -18.434530961490992], [-48.226943215344335, -18.340246289925574], [-48.95369983486478, -18.325854199532813], [-49.10826649115165, -18.388388381605793], [-49.17937000948905, -18.404823929107764], [-49.24754017810517, -18.46850068934934], [-49.33665028892631, -18.584823935974214], [-49.41674062401276, -18.602819542129453], [-49.48829458182047, -18.522048054673263], [-49.55332266047296, -18.51011690187437], [-49.611824859970255, -18.56682832981899], [-49.67797354413426, -18.6001169053076], [-49.788671790544555, -18.614530968357457], [-49.96012443380371, -18.61633272623868], [-50.093773120542636, -18.641293664690863], [-50.24699944474713, -18.690116908740833], [-50.36826653921685, -18.768647185174018], [-50.457596376608876, -18.876642794762475], [-50.49899286256303, -18.95315158674356], [-50.48977533291455, -19.0204318627476], [-50.53162225833901, -19.087030986381905], [-50.57752313899624, -19.112233624062057], [-50.641870065278994, -19.118517803989278], [-50.71319331018725, -19.160595442313166], [-50.791943313191325, -19.238444566376614], [-50.84391963353346, -19.310888416796388], [-50.868891558314175, -19.377487540430693], [-50.87092402909482, -19.423849846886768], [-50.86416743704021, -19.437802484137762], [-50.88082271111307, -19.459181879484575], [-50.92379024204902, -19.464125727329417], [-50.96429683539111, -19.511366940069024] ] ] ] } }, { "type": "Feature", "properties": { "population": 1497, "fill": "#fff" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-50.23484856537735, -9.842672723581373], [-50.17521477404, -9.730172719289826], [-50.08409416509528, -9.421918312999608], [-49.97924064547044, -9.22009945764458], [-49.82984854992782, -9.022103844622904], [-49.707900303088365, -8.894970050710626], [-49.61294546548177, -8.839181474363713], [-49.50269765854176, -8.70866389125986], [-49.378947653821115, -8.498297672297554], [-49.28264149780355, -8.301422664787339], [-49.22684193512808, -8.139418264076113], [-49.189949843877, -7.994970016378346], [-49.172393690863544, -7.867396769324316], [-49.22031605597289, -7.752194128210874], [-49.333947652104456, -7.649142366467331], [-49.34047353125965, -7.510099392413281], [-49.2396739668676, -7.334823506820669], [-49.19512440462128, -7.168556410634423], [-49.209747207913466, -7.005651130982585], [-49.07947132403763, -6.856237062782895], [-48.80541735850514, -6.71831469424032], [-48.65287218667038, -6.595707267688226], [-48.62204454877565, -6.488590564383287], [-48.57996691045176, -6.414125229511413], [-48.52732042406845, -6.3722673177584], [-48.47061998245238, -6.353370832662506], [-48.410096298502964, -6.357655500794763], [-48.3911998134071, -6.308832256744807], [-48.413699814265414, -6.207340553654447], [-48.38984849499619, -6.141862035531645], [-48.319415142699995, -6.112396702376316], [-48.29669541527082, -6.067396700659771], [-48.32121690058125, -6.006642303810906], [-48.30704453675935, -5.965926970226505], [-48.25439805037604, -5.945228727249429], [-48.24540024729842, -5.888517299304809], [-48.28004014119796, -5.795814659049739], [-48.25867173217969, -5.723590535200856], [-48.18127304758653, -5.672064654329048], [-48.159223486198584, -5.619198441374863], [-48.19274277458658, -5.565431349480036], [-48.23144761004744, -5.533241406845832], [-48.27531601992399, -5.522452832215549], [-48.31717393167699, -5.486219920677129], [-48.35699937264934, -5.424344918316791], [-48.42156602550301, -5.398483100923954], [-48.51111558946593, -5.408151070042777], [-48.597523063465246, -5.398702827494787], [-48.721492794756784, -5.355944036801247], [-48.721492794756784, -5.355724310230372], [-48.7219432342271, -5.355043157860635], [-48.630591912382954, -5.330301945979329], [-48.574341910237166, -5.28822430765544], [-48.52349718173511, -5.220504578509647], [-48.45824937651173, -5.180887877779639], [-48.378148055096744, -5.169418150779563], [-48.28162217250832, -5.189457214043955], [-48.16889145531735, -5.240741395687863], [-48.05954452731797, -5.263021669975288], [-47.95311996271133, -5.256276064249221], [-47.88449935462489, -5.285521670833603], [-47.85389144330105, -5.350780462385529], [-47.763221273826645, -5.407250191102179], [-47.61246687354458, -5.454952829640604], [-47.519994946188945, -5.506478710512454], [-47.48579450543113, -5.561146681347864], [-47.44484845894729, -5.749913778392497], [-47.39714582040884, -6.072340548504613], [-47.405473457445254, -6.42109056180837], [-47.47049054976921, -6.795944091732892], [-47.53708967340353, -7.027250252900274], [-47.605721267818495, -7.11476734608253], [-47.66534407282728, -7.16719410589495], [-47.715969074758476, -7.184750258908423], [-47.717089680269964, -7.22210377595826], [-47.66894758858976, -7.279694110186497], [-47.61179670750337, -7.301512958675062], [-47.54586774991026, -7.287582294081119], [-47.506943187878534, -7.305797626807262], [-47.4950230214082, -7.356202902167524], [-47.498395824271256, -7.449806421363292], [-47.45811994382859, -7.534620877723682], [-47.41357038158225, -7.530116483020592], [-47.34652081847764, -7.659733187183832], [-47.303542301213156, -7.66287527714745], [-47.27947125537304, -7.731056432092103], [-47.15009625043777, -7.856146768895158], [-47.07854229263012, -7.976512984424289], [-47.016216850799424, -8.04357353385734], [-46.98494975976294, -8.03906913915435], [-46.868846239708944, -7.958737104839884], [-46.74374491657733, -7.922965619100353], [-46.574094031199394, -7.905189739516004], [-46.48926858851044, -7.963241499543003], [-46.46699930055155, -8.070358202847899], [-46.50277078629114, -8.172948538792639], [-46.50727518099421, -8.27578057396542], [-46.5430466667338, -8.320319149883176], [-46.50277078629114, -8.396146789494537], [-46.658919473888375, -8.396146789494537], [-46.79301860009758, -8.436422669937187], [-46.83756816234393, -8.485465640557948], [-46.882117724590216, -8.583793281027681], [-46.92239360503288, -8.744457349656443], [-46.9046177254485, -8.829271806016934], [-47.06527080774882, -8.976642417107428], [-47.083046687333194, -9.03469417713444], [-47.03849712508685, -9.065983240828018], [-46.9401694846172, -9.070245936303124], [-46.84656596542152, -9.168573576772772], [-46.82857035926628, -9.306957371114194], [-46.752742719654975, -9.409547707058948], [-46.56082254631815, -9.498866558122458], [-46.53404886365618, -9.556918318149457], [-46.60086771386136, -9.650741563916029], [-46.65014139738162, -9.664013048797287], [-46.667917276965966, -9.74434508311171], [-46.50727518099421, -9.855944208462631], [-46.46249490584847, -9.949767454229232], [-46.47149270892612, -10.003314819553111], [-46.3466220986939, -10.168483282885049], [-46.28406594396384, -10.186478889040274], [-46.19024269819727, -10.177470099634036], [-46.087641375923965, -10.208737190670604], [-46.03409401060003, -10.271293345400693], [-45.94477515953653, -10.315853893975543], [-45.757117681674856, -10.329345105427691], [-45.85994971684758, -10.467728899769114], [-46.03836769240368, -10.570319235713882], [-46.087641375923965, -10.583832419823125], [-46.30184182354819, -10.757746000676136], [-46.234792260443555, -10.8828583101363], [-46.24829445822425, -10.914125401172797], [-46.36889138665279, -10.967672766496719], [-46.46249490584847, -11.177599532317288], [-46.529544468953105, -11.235431565773396], [-46.56982034939574, -11.315983326658738], [-46.55182474324056, -11.378297782160814], [-46.48926858851044, -11.414069267900388], [-46.426943146679804, -11.498905696917888], [-46.19024269819727, -11.543444272835643], [-46.08314796754942, -11.601496032862656], [-46.105417255508314, -11.66405218759273], [-46.243790063521175, -11.726608342322805], [-46.27506814088622, -11.766862250108375], [-46.24829445822425, -11.842689889719722], [-46.15896462083222, -11.83370307297065], [-46.10092384713377, -11.864970164007147], [-46.078643572846346, -11.927526318737222], [-46.21252297248469, -11.998849563645479], [-46.24829445822425, -12.048112260837215], [-46.32412209783561, -12.092672809412065], [-46.33762429561631, -12.128444295151638], [-46.3466220986939, -12.342655729104393], [-46.31534402132888, -12.42296579076168], [-46.15896462083222, -12.50329782507616], [-46.15896462083222, -12.601625465545808], [-46.234792260443555, -12.713224590896743], [-46.234792260443555, -12.798039047257149], [-46.30184182354819, -12.833832505653803], [-46.43572122318653, -12.847103990535075], [-46.59208963735463, -12.89186229302372], [-46.6456479890071, -12.922931630146422], [-46.75274271965495, -13.034750482068219], [-46.82857035926628, -13.070302241236917], [-46.971447561982245, -13.070302241236917], [-47.09204449041076, -13.097064937570323], [-47.292973453153735, -13.199896972743062], [-47.440344064244215, -13.248939943363894], [-47.55644758429821, -13.244457521317912], [-47.64104231408774, -13.115082516382643], [-47.72159407497307, -13.150612302894245], [-47.65904890657151, -13.320263188272165], [-47.681318194530405, -13.356056646668833], [-47.85547347461139, -13.293500491938744], [-47.93579452259729, -13.244457521317912], [-48.002844085701895, -13.248939943363894], [-48.07416733061015, -13.195392578039986], [-48.17496689500223, -13.180780761076335], [-48.16371689457307, -13.102470211214026], [-48.22604233640374, -13.092582515524342], [-48.36891953911967, -13.186405761290914], [-48.480518664470594, -13.195392578039986], [-48.587624381447, -13.155116697597322], [-48.65444323165218, -13.177396971884747], [-48.685721309017225, -13.338280767084484], [-48.73926867434113, -13.38281934300224], [-48.77504016008072, -13.351552251965742], [-48.76176867519945, -13.208664062921244], [-48.766273069902525, -13.097064937570323], [-48.80182482907122, -12.998978996328646], [-48.797320434368146, -12.927414052192404], [-48.824094117030086, -12.873866686868496], [-48.92691516587428, -12.784547835805], [-48.998249397111096, -12.748996076636303], [-49.016245003266306, -12.65517283086973], [-49.136622205123956, -12.735504865184154], [-49.29749501399516, -13.003483391031722], [-49.3598204558258, -13.132858395966991], [-49.38232045668411, -13.248939943363894], [-49.520693264697, -13.199896972743062], [-49.68583975537183, -13.177396971884747], [-49.91354240077675, -13.070302241236917], [-49.97159416080376, -13.025741692662066], [-50.05191520878964, -13.021237297958976], [-50.23934197375189, -12.931918446895494], [-50.270620051116936, -12.89186229302372], [-50.27512444582001, -12.789052230508076], [-50.19929680620865, -12.65517283086973], [-50.2035704880123, -12.570358374509311], [-50.13674065147859, -12.476513156085659], [-50.16374504703998, -12.38765573082101], [-50.29559197589765, -12.490026340194888], [-50.3923485713855, -12.617138161450072], [-50.48482049874116, -12.842599595831999], [-50.56604242566766, -12.819638169174837], [-50.613964790777004, -12.763388167029063], [-50.65537226305969, -12.666862284440654], [-50.66054682380397, -12.558207495139541], [-50.629268746438925, -12.437379853811592], [-50.631740670361324, -12.288646937981625], [-50.667523142429445, -12.112030720306748], [-50.67471918762584, -11.990082473467297], [-50.653570505178465, -11.922340771664409], [-50.66144770274457, -11.8535004370071], [-50.717466991990904, -11.74910834318112], [-50.66572138454822, -11.65190130822296], [-50.67134638476281, -11.573832457588622], [-50.716566113050305, -11.482689875986807], [-50.708018749443, -11.345668386384844], [-50.64524286814202, -11.162746016125666], [-50.61037226134306, -11.000983314642411], [-50.59912226091393, -10.689806544959453], [-50.55074945633427, -10.567177145750264], [-50.45467401321616, -10.388517470966192], [-50.40269769287403, -10.25824158709031], [-50.39527093477824, -10.176788947264384], [-50.33744988765065, -10.034362184018732], [-50.23484856537735, -9.842672723581373] ] ] ] } }, { "type": "Feature", "properties": { "population": 44035, "fill": "#333" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-53.11619999365156, -22.639987664885183], [-52.96072147209553, -22.454824083603015], [-52.56607057813454, -22.207324074161647], [-52.402495132441516, -22.069181979048096], [-52.33881837219997, -21.957341154469304], [-52.245665292474555, -21.84035872813176], [-52.12259644012363, -21.718168782064367], [-52.0649951195669, -21.622763504987418], [-52.072641604233596, -21.554142896901], [-52.047669679452866, -21.51094465306562], [-51.989848632325305, -21.49363019928012], [-51.95474731262692, -21.46954816711147], [-51.936290280672836, -21.422746407513614], [-51.87284423333068, -21.32982404068764], [-51.856650385056696, -21.260082827089718], [-51.86631835417552, -21.18267315616805], [-51.81141967044064, -21.077138484173474], [-51.69194334752365, -20.943720510334003], [-51.61904905763356, -20.806918747302916], [-51.593165267583686, -20.666513468509322], [-51.53422361494461, -20.55761697998031], [-51.39697141244321, -20.44175515915427], [-51.16072140343098, -20.306513454776464], [-51.06396480794314, -20.223039330498423], [-50.99377315487493, -20.101552509457804], [-50.58404901815143, -19.821203377669605], [-50.4886437410745, -19.79081519291657], [-50.43374505733965, -19.800263435464558], [-50.36444329688351, -19.858556894719527], [-49.37714589593983, -19.978483657106864], [-49.2783678159999, -19.98703102071417], [-49.2587901785343, -20.01695777966829], [-49.28804677144723, -20.073647234955814], [-49.28354237674415, -20.14857399562655], [-49.23899281449786, -20.24553933135674], [-49.19984852589528, -20.294362575406637], [-49.166318251178666, -20.29504372777643], [-49.11277088585473, -20.259272242036786], [-49.03964588306525, -20.18726784475885], [-48.99464588134862, -20.21359108795042], [-48.977990607275785, -20.338241971611808], [-48.95256824302476, -20.41002664231894], [-48.91836780226697, -20.42914285398564], [-48.886869998331065, -20.36997048844715], [-48.85829455778787, -20.232729272274312], [-48.81194323766033, -20.158923117115094], [-48.71564806797133, -20.143849874352583], [-48.36374497837542, -20.138224874138018], [-48.25326645853599, -20.093005145850512], [-48.178339697865255, -20.082875750932857], [-48.10949936320796, -20.116625752220315], [-48.05121689028155, -20.12022926798278], [-47.991143645802424, -20.082875750932857], [-47.9087901270359, -20.08175514542137], [-47.861768640867155, -20.05565162880059], [-47.86019759588535, -20.011991959166366], [-47.81857039703178, -19.98072486812987], [-47.74971907604595, -19.97712135236742], [-47.695490558352276, -19.9910739896184], [-47.655895830279405, -20.02280250645373], [-47.59424055448994, -20.018517838321486], [-47.51774274883738, -19.994216079582017], [-47.45992170170979, -20.00098365796518], [-47.427742745404146, -20.03629371790589], [-47.328964665464184, -20.117526631160942], [-47.244369935674655, -20.17399635987759], [-47.23492169312672, -20.204362571973462], [-47.26619977049177, -20.284694606287886], [-47.29297345315376, -20.423078400629322], [-47.2526975727111, -20.4766257659532], [-47.15458965881231, -20.525668736574076], [-47.109820369995106, -20.632763467221906], [-47.212641418839326, -20.806918747302916], [-47.22141949534603, -20.914013477950732], [-47.14559185573469, -20.98107402738391], [-47.1233225677758, -21.132949033177482], [-47.0562730046712, -21.195263488679586], [-46.99394756284053, -21.34265607242716], [-47.00271465301876, -21.40070783245409], [-46.895619922370884, -21.405190254500155], [-46.81529887438501, -21.3606516785824], [-46.685693156550315, -21.396203437751083], [-46.65464579208472, -21.373923163463658], [-46.60537210856444, -21.42747052878758], [-46.50727518099421, -21.458737619824078], [-46.49377298321352, -21.52579816925723], [-46.56082254631815, -21.672949053776847], [-46.60537210856444, -21.681957843183], [-46.62787210942275, -21.771276694246495], [-46.667917276965966, -21.811552574689145], [-46.658919473888375, -21.90515609388484], [-46.618874306345134, -21.98546615554217], [-46.658919473888375, -22.052526704975335], [-46.60086771386136, -22.13285873928976], [-46.66342386859145, -22.204401710768877], [-46.69919535433101, -22.320263531594932], [-46.641143594304026, -22.40960435531551], [-46.547320348537454, -22.440871446352006], [-46.5430466667338, -22.472138537388503], [-46.453716829341744, -22.516699085963353], [-46.39566506931476, -22.615026726433], [-46.47149270892612, -22.68206530320907], [-46.36889138665279, -22.748906126071347], [-46.35989358357517, -22.84272937183792], [-46.288570338666915, -22.882763553052598], [-46.15447121245768, -22.847233766540995], [-46.14569313595095, -22.891772342458765], [-46.02059181281933, -22.873996462874416], [-45.90899268746841, -22.820449097550494], [-45.85994971684758, -22.860505251422268], [-45.79290015374298, -22.85171618858699], [-45.743846196793584, -22.797949096692193], [-45.743846196793584, -22.726625851783922], [-45.801897956820596, -22.69984118279342], [-45.672292238985904, -22.619531121136077], [-45.629775147520235, -22.622673211099695], [-45.58319311449327, -22.615026726433], [-45.52964574916939, -22.65079821217256], [-45.4709238231012, -22.611642937241413], [-45.40904882074085, -22.646293817469484], [-45.2706650263994, -22.60601793702685], [-45.24389134373746, -22.56147936110908], [-45.056244852204316, -22.467656115342507], [-44.92236545256597, -22.449880235758172], [-44.833046601502474, -22.405099960612404], [-44.77072115967172, -22.423095566767586], [-44.65012423124318, -22.561479361109093], [-44.636622033462515, -22.6015135423238], [-44.53852510589235, -22.619531121136106], [-44.21699921472083, -22.592746452145548], [-44.16794525777152, -22.69984118279342], [-44.2482663057574, -22.74890612607129], [-44.27503998841934, -22.820449097550522], [-44.35986543110829, -22.85600085671922], [-44.471464556459125, -22.851716188586977], [-44.58756807651321, -22.878500857577478], [-44.72594088452604, -22.936552617604434], [-44.79749484233372, -22.99009998292837], [-44.80627291884048, -23.13725086744796], [-44.86432467886743, -23.204289444224003], [-44.78287203904159, -23.35392323899464], [-44.95162204547887, -23.38136708769781], [-45.21531590319421, -23.575539458386174], [-45.32534398356336, -23.59962149055474], [-45.42322118456275, -23.68535879851288], [-45.4333395931518, -23.758483801302418], [-45.46439794394598, -23.802582924078365], [-45.52717382524685, -23.8048241351014], [-45.66464575431917, -23.764767981229625], [-45.84307471620389, -23.763647375718108], [-45.971999281668786, -23.795595619124356], [-46.63079447281547, -24.110375904569707], [-46.86727519472703, -24.236367120313503], [-47.137275205026754, -24.49309564573184], [-47.5922190700378, -24.781091262186806], [-47.83117171587185, -24.953005331244754], [-47.87662215705876, -24.997543907162594], [-47.914195400679546, -24.999807090842637], [-47.98912216135028, -25.035798303153058], [-47.95941512896701, -25.065505335536272], [-47.9083396875655, -25.068207972358152], [-47.929499356341466, -25.16831539805196], [-48.02444320761958, -25.236716279567474], [-48.07754013347321, -25.29026364489144], [-48.08766952839085, -25.28015622263088], [-48.0919432101945, -25.23559567405603], [-48.18576645596107, -25.19081539891029], [-48.23054673110681, -25.012397423354116], [-48.26609849027551, -25.034677697641598], [-48.41346910136599, -24.958850058030265], [-48.51179674183564, -25.08372066826246], [-48.5653441071596, -25.056957971928966], [-48.54284410630126, -24.81147944693977], [-48.48929674097735, -24.74441889750662], [-48.61439806410894, -24.681862742776545], [-48.7795445547838, -24.695375926885774], [-48.82859851173316, -24.66410883584922], [-49.025023079773064, -24.668591257895272], [-49.09207264287767, -24.68636713747962], [-49.21694325310986, -24.690871532182697], [-49.29749501399516, -24.66410883584929], [-49.31076649887643, -24.530229436210945], [-49.23944325396815, -24.418630310860024], [-49.22594105618748, -24.338298276545572], [-49.274995013136845, -24.315798275687285], [-49.33754018153837, -24.21320793974253], [-49.33304677316386, -24.14186272217718], [-49.40909413934608, -24.083832934807262], [-49.60102529901141, -23.86489737958054], [-49.56974722164637, -23.833850015114933], [-49.551971342062075, -23.71324210035783], [-49.605518707385954, -23.641699128878713], [-49.65457266433535, -23.507819729240353], [-49.614296783892684, -23.409733787998675], [-49.636796784751, -23.257858782205105], [-49.73040030394668, -23.105983776411534], [-49.909048992402205, -23.034638558846183], [-49.91354240077675, -22.985595588225337], [-49.958091963023065, -22.963315313937912], [-49.97159416080376, -22.914052616746176], [-50.12324944002643, -22.94081531307961], [-50.29290032540439, -22.95432849718884], [-50.368947691586584, -22.91405261674619], [-50.43127313341722, -22.945319707782687], [-50.62769770145712, -22.923039433495262], [-50.72602534192677, -22.949824102485763], [-50.78406611562522, -22.945319707782687], [-50.88217402952398, -22.820449097550494], [-51.00277095795252, -22.793664428559993], [-51.181419646408045, -22.739897336665194], [-51.35534421358966, -22.65079821217256], [-51.54749509982585, -22.686349971341272], [-51.641098619021534, -22.650798212172575], [-51.69464598434547, -22.664069697053776], [-51.743919667865725, -22.619531121136077], [-51.873294672800995, -22.610522331729925], [-51.984893798151916, -22.54796617699985], [-52.06521484613779, -22.52120348066643], [-52.14127319864856, -22.543483754953854], [-52.16354248660744, -22.601513542323772], [-52.21708985193136, -22.641789422766422], [-52.26165040050621, -22.601513542323772], [-52.315197765830135, -22.619531121136077], [-52.44479249733628, -22.601513542323772], [-52.52062013694763, -22.615026726433], [-52.6144433827142, -22.57046617785815], [-52.69477541702862, -22.601513542323772], [-52.94924075876696, -22.570466177858123], [-53.044415322944445, -22.636406121779814], [-53.11619999365156, -22.639987664885183] ] ], [ [ [-45.24906590448171, -23.782543860813973], [-45.233091782778615, -23.825302651507627], [-45.25019749632173, -23.852966226781632], [-45.26031590491078, -23.889199138320066], [-45.260997057280576, -23.94140617156154], [-45.30262425613421, -23.914841229141985], [-45.41287206307413, -23.934880292406433], [-45.4513461856356, -23.895505290904396], [-45.30239354323476, -23.72765616340763], [-45.27224705770976, -23.7519579221472], [-45.24906590448171, -23.782543860813973] ] ] ] } }, { "type": "Feature", "properties": { "population": 6850, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-48.7219432342271, -5.355043157860635], [-48.730490597834375, -5.338168157216899], [-48.25281601906562, -4.954327810543248], [-47.80191512295892, -4.597030433632256], [-47.65454451186838, -4.606017250381342], [-47.58322126696021, -4.547965490354329], [-47.48939802119361, -4.423094880122107], [-47.45811994382859, -4.338280423761717], [-47.38229230421723, -4.275724269031571], [-47.333018620696976, -4.164125143680735], [-47.310749332738055, -4.065797503211058], [-47.28846905845063, -4.079288714663221], [-47.06527080774873, -3.842599252509217], [-47.02499492730607, -3.59712072751995], [-47.0294993220092, -3.570358031186515], [-46.96694316727911, -3.525797482611608], [-46.94467387932019, -3.396202751105534], [-46.859848436631296, -3.329142201672369], [-46.82429667746254, -3.329142201672369], [-46.74374491657733, -3.190780379988041], [-46.667917276965966, -3.092672466089311], [-46.63665018592951, -2.985577735441382], [-46.65014139738162, -2.91401279130514], [-46.574094031199365, -2.847193941099988], [-46.667917276965966, -2.739879483881225], [-46.600867713861305, -2.664051844269977], [-46.50727518099421, -2.614986900991994], [-46.48499490670673, -2.547948324215952], [-46.426943146679776, -2.512396565047197], [-46.43572122318653, -2.409564529874501], [-46.40894754052454, -2.387306228244199], [-46.41344094889905, -2.239913644496539], [-46.37766946315952, -2.253426828605825], [-46.27957253558924, -2.141827703254933], [-46.212522972484635, -1.927396542731231], [-46.21701638085926, -1.807030327202142], [-46.30184182354816, -1.802525932499123], [-46.31534402132888, -1.73098296101989], [-46.24379006352109, -1.722193898184685], [-46.1992405012748, -1.677413623038944], [-46.18124489511962, -1.574823287094205], [-46.1992405012748, -1.485504436030624], [-46.12319313509255, -1.34712064168923], [-46.15896462083214, -1.315853550652776], [-46.14119972757641, -1.240025911041414], [-46.00708961503864, -1.146861844987484], [-45.972219008239676, -1.187379424658161], [-45.778716803592545, -1.250814485671697], [-45.644848390282675, -1.347801794059023], [-45.55686987130156, -1.330707066844354], [-45.45854223083194, -1.35634915766633], [-45.353018545165924, -1.567396528998415], [-45.329167225896754, -1.717250050339828], [-45.28214573972798, -1.696551807362709], [-45.238497056422204, -1.629491257929601], [-45.18201634137711, -1.507103557948312], [-45.076272929140146, -1.466366251706802], [-45.02586765377987, -1.513387737875576], [-44.91967380207268, -1.588775924345214], [-44.82832248022851, -1.671568896253461], [-44.78984835766704, -1.724896535006508], [-44.72121676325213, -1.733443898613814], [-44.778598357237854, -1.798922416736616], [-44.72099703668124, -1.792396537581453], [-44.651244836754756, -1.74581450455446], [-44.59162203174594, -1.841900934001103], [-44.5468417566002, -1.946293027827096], [-44.537843953522554, -2.052728578762299], [-44.57992159184653, -2.113922428752971], [-44.61727510889642, -2.152176824743435], [-44.658671594850546, -2.22754303855595], [-44.707494838900516, -2.241056222665179], [-44.75631808295054, -2.265577707975638], [-44.700749233174406, -2.320465405381867], [-44.66249483718394, -2.373353590993133], [-44.5790207129059, -2.23046540194872], [-44.520298786837714, -2.190431220734013], [-44.43547334414876, -2.168150946446588], [-44.3913742213727, -2.269620676879811], [-44.38191499249626, -2.365465407098554], [-44.52006807393826, -2.405521560970271], [-44.520749226308, -2.481349200581633], [-44.56191499936267, -2.524327717846177], [-44.58891939492406, -2.57337068846698], [-44.6107492297412, -2.676861903352346], [-44.63887423081417, -2.762599211310487], [-44.721447476151525, -3.142396589079851], [-44.723018521133326, -3.204733017238993], [-44.62266939621156, -3.137892194376775], [-44.43749482860085, -2.944400976058205], [-44.38124482645509, -2.738297452570919], [-44.30811982366555, -2.535116292476459], [-44.2286996546203, -2.47121980566402], [-44.17941498477143, -2.47121980566402], [-44.10561981594083, -2.493500079951446], [-44.1013461341372, -2.560099203585764], [-44.112596134566274, -2.598573326147118], [-44.191565864141296, -2.699603603438618], [-44.22509613885791, -2.754952726643808], [-44.192697455981374, -2.809620697479147], [-44.013147888585195, -2.642232995781399], [-43.93281585427076, -2.583500083384649], [-43.864414972755185, -2.595431236183515], [-43.728525074993286, -2.51824129183268], [-43.455141275502, -2.502047443558695], [-43.43467374542439, -2.413629471435797], [-43.379994788260376, -2.376056227815013], [-43.22969082744868, -2.385943923504726], [-42.93674037682035, -2.465155352307647], [-42.83234828299436, -2.529491292261866], [-42.67596888249773, -2.589564536741022], [-42.593615363731146, -2.661129480877207], [-42.24958947170137, -2.792064544465745], [-41.99984825123698, -2.806017181716754], [-41.876098246516335, -2.746625089607392], [-41.84617148756223, -2.758775968977091], [-41.86889121499141, -2.851698335803107], [-41.8153438496675, -2.936293065592636], [-41.84211753232944, -3.034620706062299], [-41.92244956664388, -3.110448345673632], [-42.00277061462975, -3.231056260430719], [-42.105371936903055, -3.262323351467202], [-42.10086754219998, -3.302379505338976], [-42.216971062253975, -3.431974236845122], [-42.364341673344484, -3.44975011642947], [-42.45367151073651, -3.476512812762891], [-42.502714481357344, -3.44975011642947], [-42.57426843916505, -3.570358031186515], [-42.62781580448896, -3.614896607104313], [-42.676869761438354, -3.699733036121813], [-42.66336756365766, -3.789051887185309], [-42.73492152146537, -3.922931286823655], [-42.851025041519335, -4.039012834220557], [-42.891070209062576, -4.141844869393296], [-42.989397849532224, -4.239952783292068], [-42.953615377464104, -4.391827789085639], [-42.89557460376568, -4.405099273966925], [-42.86429652640061, -4.498922519733469], [-42.91357020992086, -4.637306314074863], [-42.94912196908956, -4.659564615705236], [-42.93134608950521, -4.731129559841463], [-42.953615377464104, -4.775668135759233], [-42.90457240684327, -4.829215501083155], [-42.85551844989391, -4.936332204388066], [-42.83301844903556, -5.097194026930723], [-42.80624476637365, -5.159530455089907], [-42.83301844903556, -5.311405460883492], [-42.91357020992086, -5.391715522540821], [-43.04744960955921, -5.597137893658314], [-43.100996974883174, -5.623922562648772], [-43.083221095298796, -5.713241413712311], [-43.109994777960765, -5.771293173739309], [-43.07422329222118, -6.057047579171225], [-43.0026693344135, -6.12386642937642], [-42.962624166870256, -6.186422584106495], [-42.851025041519335, -6.253483133539646], [-42.86878993477515, -6.436405503798838], [-42.85551844989391, -6.480944079716608], [-42.91357020992086, -6.615043205925815], [-42.917843891724516, -6.668590571249737], [-42.98040004645463, -6.744418210861056], [-43.13227505224819, -6.780189696600658], [-43.19909390245337, -6.753427000267237], [-43.30191495129759, -6.802469970888012], [-43.46256803359785, -6.842745851330733], [-43.560895674067524, -6.753427000267266], [-43.67676848122207, -6.699879634943329], [-43.81537200213438, -6.708646725121511], [-43.95374481014727, -6.762194090445348], [-44.03857025283622, -6.766698485148481], [-44.060839540795115, -6.829254639878584], [-44.09211761816013, -6.806974365591159], [-44.163440863068445, -6.887306399905583], [-44.16794525777152, -6.923077885645114], [-44.25727509516352, -7.007892342005576], [-44.30631806578435, -7.110504650607368], [-44.44919526850032, -7.146276136347012], [-44.57857027343559, -7.248866472291766], [-44.712669399644824, -7.396237083382246], [-44.815270721918125, -7.364969992345763], [-44.909093967684726, -7.445302026660158], [-45.0249667748393, -7.494344997281019], [-45.2974496953899, -7.556901152011108], [-45.47159398914238, -7.673004672065105], [-45.542917234050634, -7.869418253776431], [-45.578699706118755, -8.15066826450527], [-45.654516359401555, -8.253280573107133], [-45.65902075410463, -8.311332333134118], [-45.73484839371599, -8.431918275234068], [-45.7528439998712, -8.561293280169366], [-45.819673836404945, -8.699896801081678], [-45.92676856705276, -8.788995925574284], [-45.98054664527612, -8.927599446486596], [-45.94027076483346, -9.012194176276125], [-45.93576637013041, -9.119530606151898], [-45.9044992790939, -9.177582366178939], [-45.8957212025872, -9.32921567274451], [-45.828671639482536, -9.373995947890265], [-45.79739356211752, -9.463095072382885], [-45.837669442560156, -9.534638043862032], [-45.85994971684758, -9.833663934175206], [-45.85994971684758, -9.99883239750713], [-45.89999488439082, -10.02559509384055], [-45.89999488439082, -10.083646853867549], [-45.95354224971473, -10.181974494337197], [-45.93576637013041, -10.213241585373623], [-45.94477515953653, -10.315853893975543], [-46.03409401060003, -10.271293345400693], [-46.087641375923965, -10.208737190670604], [-46.19024269819727, -10.177470099634036], [-46.28406594396384, -10.186478889040274], [-46.3466220986939, -10.168483282885049], [-46.47149270892612, -10.003314819553111], [-46.46249490584847, -9.949767454229232], [-46.50727518099421, -9.855944208462631], [-46.667917276965966, -9.74434508311171], [-46.65014139738162, -9.664013048797287], [-46.60086771386136, -9.650741563916029], [-46.53404886365618, -9.556918318149457], [-46.56082254631815, -9.498866558122458], [-46.752742719654975, -9.409547707058948], [-46.82857035926628, -9.306957371114194], [-46.84656596542152, -9.168573576772772], [-46.9401694846172, -9.070245936303124], [-47.03849712508685, -9.065983240828018], [-47.083046687333194, -9.03469417713444], [-47.06527080774882, -8.976642417107428], [-46.9046177254485, -8.829271806016934], [-46.92239360503288, -8.744457349656443], [-46.882117724590216, -8.583793281027681], [-46.83756816234393, -8.485465640557948], [-46.79301860009758, -8.436422669937187], [-46.658919473888375, -8.396146789494537], [-46.50277078629114, -8.396146789494537], [-46.5430466667338, -8.320319149883176], [-46.50727518099421, -8.27578057396542], [-46.50277078629114, -8.172948538792639], [-46.46699930055155, -8.070358202847899], [-46.48926858851044, -7.963241499543003], [-46.574094031199394, -7.905189739516004], [-46.74374491657733, -7.922965619100353], [-46.868846239708944, -7.958737104839884], [-46.98494975976294, -8.03906913915435], [-47.016216850799424, -8.04357353385734], [-47.07854229263012, -7.976512984424289], [-47.15009625043777, -7.856146768895158], [-47.27947125537304, -7.731056432092103], [-47.303542301213156, -7.66287527714745], [-47.34652081847764, -7.659733187183832], [-47.41357038158225, -7.530116483020592], [-47.45811994382859, -7.534620877723682], [-47.498395824271256, -7.449806421363292], [-47.4950230214082, -7.356202902167524], [-47.506943187878534, -7.305797626807262], [-47.54586774991026, -7.287582294081119], [-47.61179670750337, -7.301512958675062], [-47.66894758858976, -7.279694110186497], [-47.717089680269964, -7.22210377595826], [-47.715969074758476, -7.184750258908423], [-47.66534407282728, -7.16719410589495], [-47.605721267818495, -7.11476734608253], [-47.53708967340353, -7.027250252900274], [-47.47049054976921, -6.795944091732892], [-47.405473457445254, -6.42109056180837], [-47.39714582040884, -6.072340548504613], [-47.44484845894729, -5.749913778392497], [-47.48579450543113, -5.561146681347864], [-47.519994946188945, -5.506478710512454], [-47.61246687354458, -5.454952829640604], [-47.763221273826645, -5.407250191102179], [-47.85389144330105, -5.350780462385529], [-47.88449935462489, -5.285521670833603], [-47.95311996271133, -5.256276064249221], [-48.05954452731797, -5.263021669975288], [-48.16889145531735, -5.240741395687863], [-48.28162217250832, -5.189457214043955], [-48.378148055096744, -5.169418150779563], [-48.45824937651173, -5.180887877779639], [-48.52349718173511, -5.220504578509647], [-48.574341910237166, -5.28822430765544], [-48.630591912382954, -5.330301945979329], [-48.7219432342271, -5.355043157860635] ] ], [ [ [-44.56529878855429, -2.923922459651919], [-44.581943076298614, -2.845611909789682], [-44.569122030887684, -2.784879485597855], [-44.50184175488363, -2.726146573201106], [-44.48137422480602, -2.717599209593914], [-44.48721895159139, -2.789823333442769], [-44.48249483031742, -2.811861908502237], [-44.4993698309612, -2.939676854784238], [-44.59769747143082, -3.037543069454955], [-44.56529878855429, -2.923922459651919] ] ], [ [ [-45.01124485048763, -1.34463773143824], [-44.99549045535548, -1.347582067488133], [-44.97861545471176, -1.267250033173696], [-44.88839572470755, -1.276918002292462], [-44.88299045106396, -1.317875035104862], [-44.94711765077574, -1.366017126785096], [-44.96781589375291, -1.39078031132351], [-45.02092380593501, -1.372323279369425], [-45.01124485048763, -1.34463773143824] ] ] ] } }, { "type": "Feature", "properties": { "population": 16461, "fill": "#666" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-44.78287203904159, -23.35392323899464], [-44.86432467886743, -23.204289444224003], [-44.80627291884048, -23.13725086744796], [-44.79749484233372, -22.99009998292837], [-44.72594088452604, -22.936552617604434], [-44.58756807651321, -22.878500857577478], [-44.471464556459125, -22.851716188586977], [-44.35986543110829, -22.85600085671922], [-44.27503998841934, -22.820449097550522], [-44.2482663057574, -22.74890612607129], [-44.16794525777152, -22.69984118279342], [-44.21699921472083, -22.592746452145548], [-44.53852510589235, -22.619531121136106], [-44.636622033462515, -22.6015135423238], [-44.65012423124318, -22.561479361109093], [-44.77072115967172, -22.423095566767586], [-44.833046601502474, -22.405099960612404], [-44.73044527922917, -22.360539412037582], [-44.66339571612457, -22.369548201443706], [-44.6010702742939, -22.316000836119827], [-44.53402071118927, -22.302487652010583], [-44.44469087379724, -22.25344468138975], [-44.29304658090311, -22.23995346993759], [-44.21699921472086, -22.24894028668666], [-44.09211761816013, -22.173112647075314], [-43.89569305012026, -22.106074070299258], [-43.81537200213438, -22.065798189856594], [-43.56516935587115, -22.065798189856594], [-43.46256803359785, -22.05703109967841], [-43.341971105169364, -22.00348373435446], [-43.13227505224819, -22.02574203598482], [-43.06342373126233, -22.063556978833603], [-42.27951623065553, -21.71322493421951], [-42.28402062535858, -21.641901689311226], [-42.36884606804756, -21.632892899905073], [-42.364341673344484, -21.592617019462423], [-42.30179650494293, -21.48552228881458], [-42.29729211023985, -21.405190254500155], [-42.22146447062852, -21.338151677724113], [-42.18141930308528, -21.16399639764309], [-42.096593860396325, -21.003354301671337], [-42.14114342264264, -20.963298147799563], [-42.096593860396325, -20.923022267356913], [-41.99826621992668, -20.932031056763066], [-41.96249473418709, -20.90975078247564], [-41.92694297501842, -20.82919902159034], [-41.864397806616864, -20.77565165626642], [-41.74378989185979, -20.820431931412145], [-41.71252280082331, -20.97656963268082], [-41.73051840697852, -21.043630182113986], [-41.71252280082331, -21.110449032319167], [-41.44027059317207, -21.199767883382663], [-41.39121663622271, -21.186496398501404], [-41.26611531309109, -21.231056947076254], [-41.06969074505122, -21.213281067491906], [-40.9675398622482, -21.27559552299401], [-41.0471907441929, -21.505781078649875], [-41.02311969835273, -21.596901687594595], [-41.021548653370985, -21.610854324845604], [-40.98779865208343, -21.92022933664731], [-41.00039997092358, -21.99897933965144], [-41.122567944333866, -22.08447494838157], [-41.58291708298856, -22.243556985700025], [-41.70554648219775, -22.309694683535497], [-41.98049034034233, -22.580595572775735], [-41.997596053885445, -22.644733758816187], [-41.98611534055692, -22.735854367760908], [-41.940895612269344, -22.788281127573384], [-41.98746665896783, -22.845190309431814], [-42.04236534270268, -22.94712146566394], [-42.12246666411761, -22.94081531307961], [-42.58102503121967, -22.94105701230751], [-42.829195206702195, -22.973224982284705], [-42.95833949873804, -22.967138556271266], [-43.01617153219422, -22.942617070960807], [-43.08119961084668, -22.902582889746157], [-43.10076626198372, -22.850156129933737], [-43.065445215714476, -22.77072497455987], [-43.08637417159093, -22.723242062592306], [-43.15432461363616, -22.725263547044392], [-43.2290206614075, -22.747543821331874], [-43.241841706818434, -22.795026733299437], [-43.23666714607418, -22.82877673458694], [-43.20877285790067, -22.878039431778575], [-43.1936996151382, -22.93857410205652], [-43.224065827234085, -22.991220588439887], [-43.36941495387242, -22.997966194165997], [-43.53277067299456, -23.04634998507413], [-43.73662199913031, -23.06660877490941], [-43.898846126412366, -23.101479381708486], [-43.9737728870831, -23.057380258932426], [-43.898846126412366, -23.035319711215834], [-43.7915206828651, -23.04588855927534], [-43.67586760228147, -23.009457893823082], [-43.70287199784286, -22.966237677330582], [-43.86621673063638, -22.910449100983726], [-44.04756805591387, -22.944638555412894], [-44.14791718083558, -23.01101795247638], [-44.367973341573816, -23.004953499120006], [-44.63729219950375, -23.05557850105123], [-44.68117159570886, -23.106862682695066], [-44.67374483761307, -23.206552627904102], [-44.621098351229705, -23.22859120296357], [-44.56979219692886, -23.274052630479048], [-44.619065880449114, -23.3163499953738], [-44.66721895845785, -23.335246480469664], [-44.78287203904159, -23.35392323899464] ] ], [ [ [-44.15579437840165, -23.166496474032442], [-44.220591744154774, -23.190798232771897], [-44.32003999013591, -23.212397354689585], [-44.360096144007684, -23.17212147424692], [-44.27415009580727, -23.116332897900065], [-44.2428720184422, -23.07401356034819], [-44.220372017583884, -23.0830223497544], [-44.191565864141296, -23.113168835279282], [-44.1292404223106, -23.141974988721927], [-44.09797333127415, -23.1694188374251], [-44.15579437840165, -23.166496474032442] ] ] ] } }, { "type": "Feature", "properties": { "population": 3195, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-45.757117681674856, -10.329345105427691], [-45.94477515953653, -10.315853893975543], [-45.93576637013041, -10.213241585373623], [-45.95354224971473, -10.181974494337197], [-45.89999488439082, -10.083646853867549], [-45.89999488439082, -10.02559509384055], [-45.85994971684758, -9.99883239750713], [-45.85994971684758, -9.833663934175206], [-45.837669442560156, -9.534638043862032], [-45.79739356211752, -9.463095072382885], [-45.828671639482536, -9.373995947890265], [-45.8957212025872, -9.32921567274451], [-45.9044992790939, -9.177582366178939], [-45.93576637013041, -9.119530606151898], [-45.94027076483346, -9.012194176276125], [-45.98054664527612, -8.927599446486596], [-45.92676856705276, -8.788995925574284], [-45.819673836404945, -8.699896801081678], [-45.7528439998712, -8.561293280169366], [-45.73484839371599, -8.431918275234068], [-45.65902075410463, -8.311332333134118], [-45.654516359401555, -8.253280573107133], [-45.578699706118755, -8.15066826450527], [-45.542917234050634, -7.869418253776431], [-45.47159398914238, -7.673004672065105], [-45.2974496953899, -7.556901152011108], [-45.0249667748393, -7.494344997281019], [-44.909093967684726, -7.445302026660158], [-44.815270721918125, -7.364969992345763], [-44.712669399644824, -7.396237083382246], [-44.57857027343559, -7.248866472291766], [-44.44919526850032, -7.146276136347012], [-44.30631806578435, -7.110504650607368], [-44.25727509516352, -7.007892342005576], [-44.16794525777152, -6.923077885645114], [-44.163440863068445, -6.887306399905583], [-44.09211761816013, -6.806974365591159], [-44.060839540795115, -6.829254639878584], [-44.03857025283622, -6.766698485148481], [-43.95374481014727, -6.762194090445348], [-43.81537200213438, -6.708646725121511], [-43.67676848122207, -6.699879634943329], [-43.560895674067524, -6.753427000267266], [-43.46256803359785, -6.842745851330733], [-43.30191495129759, -6.802469970888012], [-43.19909390245337, -6.753427000267237], [-43.13227505224819, -6.780189696600658], [-42.98040004645463, -6.744418210861056], [-42.917843891724516, -6.668590571249737], [-42.91357020992086, -6.615043205925815], [-42.85551844989391, -6.480944079716608], [-42.86878993477515, -6.436405503798838], [-42.851025041519335, -6.253483133539646], [-42.962624166870256, -6.186422584106495], [-43.0026693344135, -6.12386642937642], [-43.07422329222118, -6.057047579171225], [-43.109994777960765, -5.771293173739309], [-43.083221095298796, -5.713241413712311], [-43.100996974883174, -5.623922562648772], [-43.04744960955921, -5.597137893658314], [-42.91357020992086, -5.391715522540821], [-42.83301844903556, -5.311405460883492], [-42.80624476637365, -5.159530455089907], [-42.83301844903556, -5.097194026930723], [-42.85551844989391, -4.936332204388066], [-42.90457240684327, -4.829215501083155], [-42.953615377464104, -4.775668135759233], [-42.93134608950521, -4.731129559841463], [-42.94912196908956, -4.659564615705236], [-42.91357020992086, -4.637306314074863], [-42.86429652640061, -4.498922519733469], [-42.89557460376568, -4.405099273966925], [-42.953615377464104, -4.391827789085639], [-42.989397849532224, -4.239952783292068], [-42.891070209062576, -4.141844869393296], [-42.851025041519335, -4.039012834220557], [-42.73492152146537, -3.922931286823655], [-42.66336756365766, -3.789051887185309], [-42.676869761438354, -3.699733036121813], [-42.62781580448896, -3.614896607104313], [-42.57426843916505, -3.570358031186515], [-42.502714481357344, -3.44975011642947], [-42.45367151073651, -3.476512812762891], [-42.364341673344484, -3.44975011642947], [-42.216971062253975, -3.431974236845122], [-42.10086754219998, -3.302379505338976], [-42.105371936903055, -3.262323351467202], [-42.00277061462975, -3.231056260430719], [-41.92244956664388, -3.110448345673632], [-41.84211753232944, -3.034620706062299], [-41.8153438496675, -2.936293065592636], [-41.86889121499141, -2.851698335803107], [-41.84617148756223, -2.758775968977091], [-41.72197104337121, -2.808939545109496], [-41.640067964075, -2.878702731364498], [-41.479865321245, -2.916495701556187], [-41.31832234633262, -2.936293065592636], [-41.26859822334205, -2.916056248414421], [-41.25711751001347, -3.079181254637149], [-41.37771443844201, -3.271332140873369], [-41.42676839539138, -3.320375111494201], [-41.44926839624969, -3.436478631548212], [-41.38221883314509, -3.592616332816888], [-41.35544515048312, -3.708719852870885], [-41.28389119267544, -3.811332161472734], [-41.230343827351504, -4.043517228923633], [-41.18128987040211, -4.123849263238057], [-41.11874470200058, -4.177396628561979], [-41.074195139754295, -4.324767239652473], [-41.1412447028589, -4.427379548254322], [-41.23484822205458, -4.539198400176133], [-41.2438460251322, -4.615026039787466], [-41.22607014554785, -4.726625165138387], [-41.18128987040211, -4.811439621498806], [-41.185794265105216, -4.914051930100655], [-41.12324909670366, -5.007875175867227], [-41.11447102019693, -5.065926935894225], [-41.0606929419736, -5.168517271838979], [-41.06969074505122, -5.306901066180416], [-41.0251411828049, -5.364952826207414], [-40.94909381662268, -5.418500191531322], [-40.917815739257634, -5.60164228836139], [-40.92232013396071, -5.681974322675813], [-40.891042056595666, -5.905172573377655], [-40.891042056595666, -6.012267304025499], [-40.80621661390671, -6.253483133539646], [-40.79744952372852, -6.378353743771839], [-40.770664854738015, -6.494457263825836], [-40.72139117121776, -6.570262930780089], [-40.70811968633649, -6.659603754500665], [-40.614296440569916, -6.708646725121511], [-40.48041704093157, -6.735431394112013], [-40.41787187253004, -6.81147876029425], [-40.440141160488906, -6.905082279489932], [-40.511695118296615, -7.0033879473025], [-40.58301836320487, -7.195319106967844], [-40.53396440625551, -7.324694111903099], [-40.53846880095858, -7.391754661336265], [-40.64557451793496, -7.400741478085337], [-40.69034380675214, -7.427526147075838], [-40.69034380675214, -7.512340603436257], [-40.61878984894446, -7.637233186325531], [-40.659065729387095, -7.762323523128586], [-40.547466604036174, -7.833646768036857], [-40.52947099788096, -7.905189739516004], [-40.54297319566166, -8.030082322405278], [-40.59201616628249, -8.12390556817185], [-40.74839556677915, -8.244491510271843], [-40.833221009468105, -8.36487969845804], [-40.88676837479201, -8.351608213576768], [-40.92232013396071, -8.43191827523411], [-41.01614337972728, -8.418646790352838], [-41.083192942831886, -8.525741521000683], [-41.15902058244325, -8.548021795288108], [-41.212567947767155, -8.632858224305608], [-41.36871663536442, -8.713168285962922], [-41.39999471272944, -8.784733230099178], [-41.46704427583404, -8.865043291756422], [-41.498322353199114, -8.936366536664764], [-41.55637411322607, -8.972138022404351], [-41.60992147855001, -8.96315120565528], [-41.73479208878217, -8.981146811810504], [-41.73479208878217, -9.132802091033199], [-41.79734824351226, -9.173077971475848], [-41.85089560883617, -9.253388033133191], [-41.9179451719408, -9.213112152690485], [-42.04304649507242, -9.208849457215422], [-42.15014122572023, -9.293444187004965], [-42.31079430802055, -9.306957371114194], [-42.43139123644909, -9.409547707058962], [-42.48944299647607, -9.498866558122458], [-42.57426843916505, -9.485595073241143], [-42.61881800141134, -9.56592710755561], [-42.75269740104969, -9.521146832409883], [-42.851025041519335, -9.547931501400399], [-42.93134608950521, -9.516862164277654], [-42.936971089719805, -9.474345072812028], [-43.02944301707544, -9.436332376049464], [-43.04294521485613, -9.39627622217769], [-43.127770657545085, -9.373995947890265], [-43.185822417572126, -9.418556496465044], [-43.377742590908895, -9.414052101762039], [-43.414865395059394, -9.33552182532884], [-43.449296548716575, -9.302452976411118], [-43.53839567320921, -9.360504736438116], [-43.60544523631381, -9.338224462150691], [-43.65899260163772, -9.364987158484112], [-43.69477507370584, -9.445319192798536], [-43.810867607431305, -9.427543313214187], [-43.828643487015654, -9.498866558122458], [-43.78409392476934, -9.56592710755561], [-43.72604216474235, -9.748849477814815], [-43.681272875925174, -9.802396843138695], [-43.71253996696166, -9.949767454229203], [-43.70354216388404, -10.034603883246703], [-43.75281584740429, -10.106146854725807], [-43.76159392391105, -10.168483282885063], [-43.801869804353714, -10.20425476862465], [-43.91346892970461, -10.43195741402954], [-43.99378997769048, -10.454215715659814], [-44.1188913008221, -10.58809511529823], [-44.21699921472086, -10.62837099574088], [-44.31082246048746, -10.60160829940746], [-44.417917191135274, -10.58809511529823], [-44.53852510589235, -10.628370995740852], [-44.61884615387825, -10.686422755767879], [-44.64561983654019, -10.73546572638871], [-44.752714567188036, -10.784750396237527], [-44.78399264455311, -10.85607364114577], [-44.851042207657684, -10.878353915433223], [-44.93137424197212, -10.860578035848874], [-45.04297336732304, -10.896349521588448], [-45.315214588645745, -10.780246001534408], [-45.44031591177733, -10.619362206334714], [-45.47159398914238, -10.485504779353462], [-45.516143551388666, -10.414181534445163], [-45.605473388780695, -10.333849500130768], [-45.757117681674856, -10.329345105427691] ] ] ] } }, { "type": "Feature", "properties": { "population": 20734, "fill": "#666" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-50.99377315487493, -20.101552509457804], [-50.99759639720824, -19.66392309823233], [-50.96429683539111, -19.511366940069024], [-50.92379024204902, -19.464125727329417], [-50.88082271111307, -19.459181879484575], [-50.86416743704021, -19.437802484137762], [-50.87092402909482, -19.423849846886768], [-50.868891558314175, -19.377487540430693], [-50.84391963353346, -19.310888416796388], [-50.791943313191325, -19.238444566376614], [-50.71319331018725, -19.160595442313166], [-50.641870065278994, -19.118517803989278], [-50.57752313899624, -19.112233624062057], [-50.53162225833901, -19.087030986381905], [-50.48977533291455, -19.0204318627476], [-50.49899286256303, -18.95315158674356], [-50.457596376608876, -18.876642794762475], [-50.36826653921685, -18.768647185174018], [-50.24699944474713, -18.690116908740833], [-50.093773120542636, -18.641293664690863], [-49.96012443380371, -18.61633272623868], [-49.788671790544555, -18.614530968357457], [-49.67797354413426, -18.6001169053076], [-49.611824859970255, -18.56682832981899], [-49.55332266047296, -18.51011690187437], [-49.48829458182047, -18.522048054673263], [-49.41674062401276, -18.602819542129453], [-49.33665028892631, -18.584823935974214], [-49.24754017810517, -18.46850068934934], [-49.17937000948905, -18.404823929107764], [-49.10826649115165, -18.388388381605793], [-48.95369983486478, -18.325854199532813], [-48.226943215344335, -18.340246289925574], [-48.01791732846439, -18.434530961490992], [-47.92881820397179, -18.445319536121303], [-47.786171714155245, -18.37940156485672], [-47.44641950392909, -18.170595404547655], [-47.31884625687508, -18.083298037936274], [-47.27947125537304, -18.061479189447695], [-47.34652081847764, -17.878315119960547], [-47.35551862155526, -17.824767754636625], [-47.328744938893294, -17.744457692979296], [-47.27069317886631, -17.66863005336795], [-47.28846905845066, -17.548022138610875], [-47.40906598687917, -17.49897916799003], [-47.458119943828564, -17.52574186432345], [-47.52944318873682, -17.454198892844303], [-47.49839582427123, -17.32932828261211], [-47.45361554912549, -17.34710416219646], [-47.422348458089004, -17.27127652258511], [-47.310749332738084, -17.141901517649842], [-47.2126414188393, -17.07484096821669], [-47.230417298423646, -17.025797997595845], [-47.15009625043777, -16.976513327747043], [-47.15909405351539, -16.918483540377125], [-47.26619977049177, -16.6597335305066], [-47.404572578504656, -16.570392706786023], [-47.45361554912549, -16.494345340603786], [-47.431346261166595, -16.409750610814257], [-47.35102521318072, -16.30241418093844], [-47.32424054419022, -16.22660851398419], [-47.33752301540002, -16.146276479669766], [-47.301971256231354, -16.03918174902192], [-47.230417298423646, -16.034677354318845], [-47.127815976150345, -15.923078228967924], [-47.07854229263009, -15.936349713849197], [-46.86434184500584, -15.882802348525274], [-46.833074753969356, -15.8427461946535], [-46.868846239708944, -15.592763274961158], [-46.93139140811047, -15.543500577769436], [-46.93589580281355, -15.431901452418515], [-46.85534404192825, -15.324806721770685], [-46.89111552766781, -15.239970292753185], [-46.93139140811047, -15.226698807871912], [-46.89111552766781, -15.04803913308784], [-46.833074753969356, -15.012267647348267], [-46.7349668400706, -15.016772042051343], [-46.63665018592948, -15.070319407375266], [-46.547320348537454, -15.039052316338768], [-46.57859842590247, -14.914181706106575], [-46.556318151615045, -14.869401430960849], [-46.58309183427701, -14.793573791349502], [-46.51604227117241, -14.713241757035078], [-46.38666726623714, -14.771293517062077], [-46.31534402132888, -14.847121156673424], [-46.297348415173644, -14.909677311403499], [-46.19024269819727, -14.93644000773692], [-46.078643572846346, -14.922948796284771], [-46.02509620752241, -14.869401430960849], [-45.97604225057307, -14.985504951014832], [-46.0741501644718, -15.248979082159337], [-45.967044447495425, -15.186422927429248], [-45.92676856705276, -15.128371167402264], [-45.766115484752476, -15.146147046986613], [-45.71256811942854, -15.123866772699188], [-45.654516359401555, -15.043556711041788], [-45.55191503712825, -14.93644000773692], [-45.46259618606476, -14.940944402439996], [-45.31971898334879, -14.856129946079577], [-45.22589573758222, -14.74002642602558], [-45.10102512735003, -14.717746151738154], [-44.88232028502273, -14.597138236981039], [-44.83754000987699, -14.516828175323752], [-44.56079439385124, -14.347177289945833], [-44.35986543110829, -14.271349650334457], [-44.31982026356505, -14.244345254773094], [-44.21249482001778, -14.240082559297988], [-44.15894745469387, -14.271349650334486], [-43.83764129009327, -14.315888226252241], [-43.781391287947486, -14.342892621813633], [-43.80006804647246, -14.369897017375024], [-43.8608224433213, -14.534362355680116], [-43.87949920184627, -14.624604058341333], [-43.86441497275521, -14.659694391711156], [-43.82415007864111, -14.695246150879854], [-43.708046558587114, -14.735522031322503], [-43.49384611096289, -14.789069396646426], [-43.449296548716575, -14.780082579897353], [-43.38674039398654, -14.699750545582901], [-43.230371979818415, -14.63741411742373], [-42.953615377464104, -14.677470271295505], [-42.891070209062576, -14.749013242774652], [-42.63232019919204, -14.940944402439996], [-42.578542120968706, -14.931957585690924], [-42.43139123644909, -15.034547921635692], [-42.261740351071154, -15.106090893114839], [-42.1769149083822, -15.106090893114839], [-42.087596057318706, -15.181918532726186], [-41.940214459899664, -15.172931715977143], [-41.801841651886804, -15.110595287817915], [-41.3599495451862, -15.494457607148604], [-41.333164876195724, -15.717655857850389], [-41.15902058244325, -15.780190039923411], [-41.02964557750798, -15.73543173743478], [-40.944820134819025, -15.673095309275581], [-40.891042056595666, -15.69537558356302], [-40.82871661476503, -15.681862399453777], [-40.761667051660396, -15.739914159480776], [-40.667843805893824, -15.717655857850431], [-40.57424028669814, -15.757931738293095], [-40.53396440625551, -15.797965919507703], [-40.47592363255703, -15.77570761787743], [-40.328542035138014, -15.824750588498276], [-40.234949502270865, -15.8202461937952], [-40.16789993916623, -15.896293559977423], [-40.13211746709811, -15.891789165274304], [-40.00274246216287, -15.994401473876223], [-39.93569289905824, -15.998905868579271], [-39.86436965414998, -16.110504993930192], [-39.940197293761315, -16.31142297034461], [-40.05628982748678, -16.396237426705014], [-40.13211746709811, -16.503354130009953], [-40.13662186180122, -16.543630010452603], [-40.25271439552665, -16.565888312082905], [-40.27499466981408, -16.614953255360874], [-40.2839924728917, -16.74454798686702], [-40.24371659244903, -16.833647111359625], [-40.29749467067239, -16.87842738650535], [-40.47141923785398, -16.869418597099184], [-40.52496660317789, -16.931974751829273], [-40.57424028669814, -17.13289272824369], [-40.56524248362052, -17.26226773317896], [-40.60551836406319, -17.311332676456885], [-40.60979204586684, -17.391862464685104], [-40.49819292051592, -17.418647133675606], [-40.48041704093157, -17.557030928017028], [-40.41336747782697, -17.557030928017028], [-40.382320113361345, -17.623849778222223], [-40.2839924728917, -17.717673023988795], [-40.208164833280364, -17.766715994609626], [-40.1858955453215, -17.816000664458443], [-40.23044510756779, -17.918591000403126], [-40.208164833280364, -17.976642760430195], [-40.21694290978709, -17.97213836572712], [-40.42686967560766, -17.89182830406979], [-40.47592363255703, -17.927599789809364], [-40.53396440625551, -17.900595394247972], [-40.667843805893824, -17.95436248614277], [-40.72589556592084, -17.945375669393698], [-40.788440734322364, -17.97213836572712], [-40.90904864907944, -17.97213836572712], [-40.77516924944109, -18.092746280484192], [-40.7661714463635, -18.137306829059042], [-40.83749469127176, -18.15079804051119], [-40.91354205745398, -18.10151337066239], [-41.01614337972728, -18.173078314798616], [-41.0606929419736, -18.177582709501706], [-41.1412447028589, -18.29794892503081], [-41.1277425050782, -18.333720410770383], [-41.0251411828049, -18.40526338224953], [-41.002641181946586, -18.454328325527456], [-41.02964557750798, -18.637250695786648], [-40.926824528663786, -18.695302455813646], [-40.93131793703833, -18.806901581164553], [-41.091971019338644, -18.829401582022868], [-41.19479206818281, -18.806901581164553], [-41.23484822205458, -18.851681856310293], [-41.163524977146324, -18.905229221634215], [-41.10547321711931, -18.887233615478976], [-41.0251411828049, -18.981056861245563], [-41.05191486546687, -19.03460422656947], [-40.944820134819025, -19.14620335192039], [-40.926824528663786, -19.293573963010886], [-40.9580916197003, -19.472233637794957], [-41.04742145709233, -19.489987544722226], [-41.02964557750798, -19.548039304749224], [-41.15902058244325, -19.659638430100145], [-41.185794265105216, -19.865082773874718], [-41.30639119353373, -19.954401624938214], [-41.36444295356074, -20.186366965818237], [-41.404499107432514, -20.21315163480874], [-41.71701620919785, -20.208647240105662], [-41.85540000353927, -20.369531035305386], [-41.79734824351226, -20.4275827953324], [-41.79734824351226, -20.53467752598023], [-41.85089560883617, -20.623996377043724], [-41.81083945496442, -20.64627665133115], [-41.88217368620121, -20.75787577668207], [-41.864397806616864, -20.77565165626642], [-41.92694297501842, -20.82919902159034], [-41.96249473418709, -20.90975078247564], [-41.99826621992668, -20.932031056763066], [-42.096593860396325, -20.923022267356913], [-42.14114342264264, -20.963298147799563], [-42.096593860396325, -21.003354301671337], [-42.18141930308528, -21.16399639764309], [-42.22146447062852, -21.338151677724113], [-42.29729211023985, -21.405190254500155], [-42.30179650494293, -21.48552228881458], [-42.364341673344484, -21.592617019462423], [-42.36884606804756, -21.632892899905073], [-42.28402062535858, -21.641901689311226], [-42.27951623065553, -21.71322493421951], [-43.06342373126233, -22.063556978833603], [-43.13227505224819, -22.02574203598482], [-43.341971105169364, -22.00348373435446], [-43.46256803359785, -22.05703109967841], [-43.56516935587115, -22.065798189856594], [-43.81537200213438, -22.065798189856594], [-43.89569305012026, -22.106074070299258], [-44.09211761816013, -22.173112647075314], [-44.21699921472086, -22.24894028668666], [-44.29304658090311, -22.23995346993759], [-44.44469087379724, -22.25344468138975], [-44.53402071118927, -22.302487652010583], [-44.6010702742939, -22.316000836119827], [-44.66339571612457, -22.369548201443706], [-44.73044527922917, -22.360539412037582], [-44.833046601502474, -22.405099960612404], [-44.92236545256597, -22.449880235758172], [-45.056244852204316, -22.467656115342507], [-45.24389134373746, -22.56147936110908], [-45.2706650263994, -22.60601793702685], [-45.40904882074085, -22.646293817469484], [-45.4709238231012, -22.611642937241413], [-45.52964574916939, -22.65079821217256], [-45.58319311449327, -22.615026726433], [-45.629775147520235, -22.622673211099695], [-45.672292238985904, -22.619531121136077], [-45.801897956820596, -22.69984118279342], [-45.743846196793584, -22.726625851783922], [-45.743846196793584, -22.797949096692193], [-45.79290015374298, -22.85171618858699], [-45.85994971684758, -22.860505251422268], [-45.90899268746841, -22.820449097550494], [-46.02059181281933, -22.873996462874416], [-46.14569313595095, -22.891772342458765], [-46.15447121245768, -22.847233766540995], [-46.288570338666915, -22.882763553052598], [-46.35989358357517, -22.84272937183792], [-46.36889138665279, -22.748906126071347], [-46.47149270892612, -22.68206530320907], [-46.39566506931476, -22.615026726433], [-46.453716829341744, -22.516699085963353], [-46.5430466667338, -22.472138537388503], [-46.547320348537454, -22.440871446352006], [-46.641143594304026, -22.40960435531551], [-46.69919535433101, -22.320263531594932], [-46.66342386859145, -22.204401710768877], [-46.60086771386136, -22.13285873928976], [-46.658919473888375, -22.052526704975335], [-46.618874306345134, -21.98546615554217], [-46.658919473888375, -21.90515609388484], [-46.667917276965966, -21.811552574689145], [-46.62787210942275, -21.771276694246495], [-46.60537210856444, -21.681957843183], [-46.56082254631815, -21.672949053776847], [-46.49377298321352, -21.52579816925723], [-46.50727518099421, -21.458737619824078], [-46.60537210856444, -21.42747052878758], [-46.65464579208472, -21.373923163463658], [-46.685693156550315, -21.396203437751083], [-46.81529887438501, -21.3606516785824], [-46.895619922370884, -21.405190254500155], [-47.00271465301876, -21.40070783245409], [-46.99394756284053, -21.34265607242716], [-47.0562730046712, -21.195263488679586], [-47.1233225677758, -21.132949033177482], [-47.14559185573469, -20.98107402738391], [-47.22141949534603, -20.914013477950732], [-47.212641418839326, -20.806918747302916], [-47.109820369995106, -20.632763467221906], [-47.15458965881231, -20.525668736574076], [-47.2526975727111, -20.4766257659532], [-47.29297345315376, -20.423078400629322], [-47.26619977049177, -20.284694606287886], [-47.23492169312672, -20.204362571973462], [-47.244369935674655, -20.17399635987759], [-47.328964665464184, -20.117526631160942], [-47.427742745404146, -20.03629371790589], [-47.45992170170979, -20.00098365796518], [-47.51774274883738, -19.994216079582017], [-47.59424055448994, -20.018517838321486], [-47.655895830279405, -20.02280250645373], [-47.695490558352276, -19.9910739896184], [-47.74971907604595, -19.97712135236742], [-47.81857039703178, -19.98072486812987], [-47.86019759588535, -20.011991959166366], [-47.861768640867155, -20.05565162880059], [-47.9087901270359, -20.08175514542137], [-47.991143645802424, -20.082875750932857], [-48.05121689028155, -20.12022926798278], [-48.10949936320796, -20.116625752220315], [-48.178339697865255, -20.082875750932857], [-48.25326645853599, -20.093005145850512], [-48.36374497837542, -20.138224874138018], [-48.71564806797133, -20.143849874352583], [-48.81194323766033, -20.158923117115094], [-48.85829455778787, -20.232729272274312], [-48.886869998331065, -20.36997048844715], [-48.91836780226697, -20.42914285398564], [-48.95256824302476, -20.41002664231894], [-48.977990607275785, -20.338241971611808], [-48.99464588134862, -20.21359108795042], [-49.03964588306525, -20.18726784475885], [-49.11277088585473, -20.259272242036786], [-49.166318251178666, -20.29504372777643], [-49.19984852589528, -20.294362575406637], [-49.23899281449786, -20.24553933135674], [-49.28354237674415, -20.14857399562655], [-49.28804677144723, -20.073647234955814], [-49.2587901785343, -20.01695777966829], [-49.2783678159999, -19.98703102071417], [-49.37714589593983, -19.978483657106864], [-50.36444329688351, -19.858556894719527], [-50.43374505733965, -19.800263435464558], [-50.4886437410745, -19.79081519291657], [-50.58404901815143, -19.821203377669605], [-50.99377315487493, -20.101552509457804] ] ] ] } }, { "type": "Feature", "properties": { "population": 3885, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-40.9675398622482, -21.27559552299401], [-41.06969074505122, -21.213281067491906], [-41.26611531309109, -21.231056947076254], [-41.39121663622271, -21.186496398501404], [-41.44027059317207, -21.199767883382663], [-41.71252280082331, -21.110449032319167], [-41.73051840697852, -21.043630182113986], [-41.71252280082331, -20.97656963268082], [-41.74378989185979, -20.820431931412145], [-41.864397806616864, -20.77565165626642], [-41.88217368620121, -20.75787577668207], [-41.81083945496442, -20.64627665133115], [-41.85089560883617, -20.623996377043724], [-41.79734824351226, -20.53467752598023], [-41.79734824351226, -20.4275827953324], [-41.85540000353927, -20.369531035305386], [-41.71701620919785, -20.208647240105662], [-41.404499107432514, -20.21315163480874], [-41.36444295356074, -20.186366965818237], [-41.30639119353373, -19.954401624938214], [-41.185794265105216, -19.865082773874718], [-41.15902058244325, -19.659638430100145], [-41.02964557750798, -19.548039304749224], [-41.04742145709233, -19.489987544722226], [-40.9580916197003, -19.472233637794957], [-40.926824528663786, -19.293573963010886], [-40.944820134819025, -19.14620335192039], [-41.05191486546687, -19.03460422656947], [-41.0251411828049, -18.981056861245563], [-41.10547321711931, -18.887233615478976], [-41.163524977146324, -18.905229221634215], [-41.23484822205458, -18.851681856310293], [-41.19479206818281, -18.806901581164553], [-41.091971019338644, -18.829401582022868], [-40.93131793703833, -18.806901581164553], [-40.926824528663786, -18.695302455813646], [-41.02964557750798, -18.637250695786648], [-41.002641181946586, -18.454328325527456], [-41.0251411828049, -18.40526338224953], [-41.1277425050782, -18.333720410770383], [-41.1412447028589, -18.29794892503081], [-41.0606929419736, -18.177582709501706], [-41.01614337972728, -18.173078314798616], [-40.91354205745398, -18.10151337066239], [-40.83749469127176, -18.15079804051119], [-40.7661714463635, -18.137306829059042], [-40.77516924944109, -18.092746280484192], [-40.90904864907944, -17.97213836572712], [-40.788440734322364, -17.97213836572712], [-40.72589556592084, -17.945375669393698], [-40.667843805893824, -17.95436248614277], [-40.53396440625551, -17.900595394247972], [-40.47592363255703, -17.927599789809364], [-40.42686967560766, -17.89182830406979], [-40.21694290978709, -17.97213836572712], [-40.208164833280364, -17.976642760430195], [-40.1858955453215, -18.007931824123773], [-39.672449480813185, -18.32473359402131], [-39.667714373210686, -18.325854199532813], [-39.73971877048868, -18.639953332608485], [-39.74197096784022, -18.846056856095714], [-39.69989332951633, -19.27781956787865], [-39.73139113345226, -19.453996332411762], [-39.78336745379437, -19.571681883776108], [-39.84479201668441, -19.649069582040724], [-40.00139114375193, -19.74199194886667], [-40.14179642254547, -19.96835426218921], [-40.202770545965194, -20.20594460328381], [-40.298845989083304, -20.29258279018255], [-40.31864335311977, -20.42578103745116], [-40.39604203771293, -20.56954813277919], [-40.59652056098557, -20.783737594074864], [-40.727016171432325, -20.846074022234063], [-40.78934161326299, -20.906147266713177], [-40.82871661476503, -21.031237603516246], [-40.95449909026638, -21.23780255280232], [-40.9675398622482, -21.27559552299401] ] ] ] } }, { "type": "Feature", "properties": { "population": 15126, "fill": "#666" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-46.02509620752241, -14.869401430960849], [-45.93127296175584, -14.749013242774652], [-45.91349708217152, -14.690983455404748], [-45.96254005279235, -14.534604054908087], [-45.96254005279235, -14.467763232045797], [-45.92249488524911, -14.35168168464891], [-46.01159400974177, -14.298112346667835], [-46.03836769240368, -14.253354044179261], [-46.12769752979574, -14.18203079927099], [-46.17246681861292, -14.074914095966065], [-46.22152077556231, -13.998866729783842], [-46.26179665600495, -13.869491724848501], [-46.270574732511704, -13.655082536981979], [-46.18574928982272, -13.405099617289665], [-46.09641945243072, -13.351552251965757], [-46.08314796754942, -13.253444338066984], [-46.176971213315994, -13.217672852327382], [-46.18124489511965, -13.159621092300398], [-46.150197530654054, -13.025741692662052], [-46.0741501644718, -12.976698722041192], [-46.087641375923965, -12.914142567311146], [-46.234792260443555, -12.798039047257149], [-46.234792260443555, -12.713224590896743], [-46.15896462083222, -12.601625465545808], [-46.15896462083222, -12.50329782507616], [-46.31534402132888, -12.42296579076168], [-46.3466220986939, -12.342655729104393], [-46.33762429561631, -12.128444295151638], [-46.32412209783561, -12.092672809412065], [-46.24829445822425, -12.048112260837215], [-46.21252297248469, -11.998849563645479], [-46.078643572846346, -11.927526318737222], [-46.10092384713377, -11.864970164007147], [-46.15896462083222, -11.83370307297065], [-46.24829445822425, -11.842689889719722], [-46.27506814088622, -11.766862250108375], [-46.243790063521175, -11.726608342322805], [-46.105417255508314, -11.66405218759273], [-46.08314796754942, -11.601496032862656], [-46.19024269819727, -11.543444272835643], [-46.426943146679804, -11.498905696917888], [-46.48926858851044, -11.414069267900388], [-46.55182474324056, -11.378297782160814], [-46.56982034939574, -11.315983326658738], [-46.529544468953105, -11.235431565773396], [-46.46249490584847, -11.177599532317288], [-46.36889138665279, -10.967672766496719], [-46.24829445822425, -10.914125401172797], [-46.234792260443555, -10.8828583101363], [-46.30184182354819, -10.757746000676136], [-46.087641375923965, -10.583832419823125], [-46.03836769240368, -10.570319235713882], [-45.85994971684758, -10.467728899769114], [-45.757117681674856, -10.329345105427691], [-45.605473388780695, -10.333849500130768], [-45.516143551388666, -10.414181534445163], [-45.47159398914238, -10.485504779353462], [-45.44031591177733, -10.619362206334714], [-45.315214588645745, -10.780246001534408], [-45.04297336732304, -10.896349521588448], [-44.93137424197212, -10.860578035848874], [-44.851042207657684, -10.878353915433223], [-44.78399264455311, -10.85607364114577], [-44.752714567188036, -10.784750396237527], [-44.64561983654019, -10.73546572638871], [-44.61884615387825, -10.686422755767879], [-44.53852510589235, -10.628370995740852], [-44.417917191135274, -10.58809511529823], [-44.31082246048746, -10.60160829940746], [-44.21699921472086, -10.62837099574088], [-44.1188913008221, -10.58809511529823], [-43.99378997769048, -10.454215715659814], [-43.91346892970461, -10.43195741402954], [-43.801869804353714, -10.20425476862465], [-43.76159392391105, -10.168483282885063], [-43.75281584740429, -10.106146854725807], [-43.70354216388404, -10.034603883246703], [-43.71253996696166, -9.949767454229203], [-43.681272875925174, -9.802396843138695], [-43.72604216474235, -9.748849477814815], [-43.78409392476934, -9.56592710755561], [-43.828643487015654, -9.498866558122458], [-43.810867607431305, -9.427543313214187], [-43.69477507370584, -9.445319192798536], [-43.65899260163772, -9.364987158484112], [-43.60544523631381, -9.338224462150691], [-43.53839567320921, -9.360504736438116], [-43.449296548716575, -9.302452976411118], [-43.414865395059394, -9.33552182532884], [-43.377742590908895, -9.414052101762039], [-43.185822417572126, -9.418556496465044], [-43.127770657545085, -9.373995947890265], [-43.04294521485613, -9.39627622217769], [-43.02944301707544, -9.436332376049464], [-42.936971089719805, -9.474345072812028], [-42.93134608950521, -9.516862164277654], [-42.851025041519335, -9.547931501400399], [-42.75269740104969, -9.521146832409883], [-42.61881800141134, -9.56592710755561], [-42.57426843916505, -9.485595073241143], [-42.48944299647607, -9.498866558122458], [-42.43139123644909, -9.409547707058962], [-42.31079430802055, -9.306957371114194], [-42.15014122572023, -9.293444187004965], [-42.04304649507242, -9.208849457215422], [-41.9179451719408, -9.213112152690485], [-41.85089560883617, -9.253388033133191], [-41.79734824351226, -9.173077971475848], [-41.73479208878217, -9.132802091033199], [-41.73479208878217, -8.981146811810504], [-41.60992147855001, -8.96315120565528], [-41.55637411322607, -8.972138022404351], [-41.498322353199114, -8.936366536664764], [-41.46704427583404, -8.865043291756422], [-41.39999471272944, -8.784733230099178], [-41.36871663536442, -8.713168285962922], [-41.324167073118076, -8.735448560250362], [-41.15902058244325, -8.708663891259846], [-41.10547321711931, -8.717672680666027], [-41.100968822416235, -8.775724440693025], [-41.003992500357526, -8.781349440907604], [-40.98037189398772, -8.815780594564785], [-40.891042056595666, -8.856056475007449], [-40.891042056595666, -9.03469417713444], [-40.855490297427, -9.092745937161425], [-40.85099688905245, -9.150797697188352], [-40.70361529163341, -9.217616547393618], [-40.69034380675214, -9.342728856853768], [-40.743891172076076, -9.42303891851111], [-40.68583941204906, -9.47210386178898], [-40.56479204415024, -9.460172708990143], [-40.41269731178579, -9.396957374547355], [-40.31977494495982, -9.2930047338632], [-40.27319291193285, -9.144952970402969], [-40.212218788513155, -9.101513027339593], [-40.077669222833606, -9.08824154245832], [-40.00499465951441, -9.058095056933354], [-39.94874465736862, -9.022103844622904], [-39.90914992929572, -8.98024593286982], [-39.887770533948924, -8.923995930724061], [-39.88461745765676, -8.853353838185598], [-39.83489333466616, -8.809013016181552], [-39.73836745207774, -8.791237136597275], [-39.68774245014657, -8.74940119750137], [-39.682798602301716, -8.683021800437942], [-39.60089552300548, -8.619564766767255], [-39.441824472015526, -8.559271795717166], [-39.33269727058703, -8.565797674872442], [-39.25664990440481, -8.64026300974433], [-39.098249019456034, -8.714970043844119], [-38.834994614882476, -8.800245926003356], [-38.70539988337629, -8.879896807948114], [-38.66781565342694, -8.896090656222128], [-38.61922312227642, -8.896090656222128], [-38.57759592342282, -8.86053889705343], [-38.54429636160569, -8.831073563898173], [-38.50469064720423, -8.834896806231512], [-38.48399240422714, -8.877655596925138], [-38.48219064634591, -8.959547689892815], [-38.43291696282563, -9.00364681266882], [-38.33594064076692, -9.01017269182401], [-38.29432442824191, -9.043021814170856], [-38.30759591312315, -9.102194179709358], [-38.28307442781272, -9.203663910142609], [-38.2211994254524, -9.34767270469861], [-37.97572090046313, -9.512138043003716], [-38.04299019013865, -9.605983261427355], [-37.99371650661834, -9.646237169212938], [-38.02949897868646, -9.726569203527362], [-37.96266914215278, -9.873939814617813], [-37.90012397375119, -9.913995968489587], [-37.90012397375119, -9.949767454229232], [-37.77951605899412, -10.079362185735349], [-37.784020453697195, -10.30684510456939], [-37.83756781902116, -10.42294862462336], [-37.824065621240436, -10.548038961426414], [-37.784020453697195, -10.62837099574088], [-37.81529853106224, -10.677413966361712], [-37.97144721865948, -10.75348330520103], [-38.01172309910211, -10.75348330520103], [-38.10982002667234, -10.708703030055304], [-38.190141074658214, -10.717689846804376], [-38.243919152881574, -10.824806550109301], [-38.234921349803955, -10.896349521588448], [-38.17686958977697, -10.980944251377977], [-38.10982002667234, -11.030228921226794], [-38.06076606972297, -11.168590742911121], [-37.9804450217371, -11.239913987819392], [-38.00721870439904, -11.35601750787339], [-37.9669428239564, -11.400797783019115], [-37.85107001680183, -11.440853936890889], [-37.797291938578496, -11.525668393251294], [-37.65891913056561, -11.556957456944886], [-37.63214544790364, -11.521163998548232], [-37.574093687876626, -11.539181577360537], [-37.41186956059454, -11.497323665607496], [-37.46924016825176, -11.653703066104185], [-37.68861517662026, -12.100099567507868], [-37.95727485483758, -12.475392550574156], [-38.01914985719793, -12.591276344057235], [-38.23964547107789, -12.844181627142348], [-38.40186959835995, -12.9661298739818], [-38.44732003954698, -12.967030752922426], [-38.49884592041872, -12.95668163143381], [-38.52494943703948, -12.76226756151749], [-38.65409372907533, -12.644603982810281], [-38.69099680665494, -12.62390573983322], [-38.743874005937755, -12.748556623494494], [-38.7879731287137, -12.782746077923775], [-38.85186961552614, -12.790172836019565], [-38.78369944691008, -12.844401353713238], [-38.76367136997413, -12.90717723501416], [-38.833192857001166, -13.032948724186951], [-38.83521434145325, -13.147250486359724], [-38.95919505907341, -13.273021975532515], [-39.03096874345198, -13.365043463417862], [-39.0674213815613, -13.480465831102151], [-39.08924023004988, -13.588241714119647], [-39.03502269868477, -13.558776380964389], [-39.00914989496346, -13.581496108393651], [-38.98867137855723, -13.615026383110262], [-39.00127269739727, -13.664530779529912], [-39.04109813836959, -13.758112326068499], [-39.03502269868477, -13.99100051854623], [-39.04807445699515, -14.04386673150043], [-39.00846874259361, -14.101237339157706], [-38.966391104269746, -14.003371124486875], [-38.94232005842963, -14.030595246619157], [-39.059544183995115, -14.654750543866328], [-39.01342357676708, -14.935539128796336], [-38.99609813665302, -15.253922930004194], [-38.94322093737031, -15.564418547317416], [-38.8851691773433, -15.842065042283764], [-38.88066478264017, -15.864345316571132], [-38.96076610405515, -16.186552360112387], [-39.06314769975762, -16.5044747355214], [-39.125022702117974, -16.76366419853366], [-39.16394726414967, -17.04357387718011], [-39.20287182618148, -17.178112456531096], [-39.21524243212207, -17.315815098502867], [-39.17069286987578, -17.64206511094835], [-39.15404858213145, -17.703940113308647], [-39.27846875289339, -17.849530939174997], [-39.412567879102596, -17.919953305142656], [-39.486824473732156, -17.990155944539367], [-39.65083937256685, -18.252267770944457], [-39.667714373210686, -18.325854199532813], [-39.672449480813185, -18.32473359402131], [-40.1858955453215, -18.007931824123773], [-40.208164833280364, -17.976642760430195], [-40.23044510756779, -17.918591000403126], [-40.1858955453215, -17.816000664458443], [-40.208164833280364, -17.766715994609626], [-40.2839924728917, -17.717673023988795], [-40.382320113361345, -17.623849778222223], [-40.41336747782697, -17.557030928017028], [-40.48041704093157, -17.557030928017028], [-40.49819292051592, -17.418647133675606], [-40.60979204586684, -17.391862464685104], [-40.60551836406319, -17.311332676456885], [-40.56524248362052, -17.26226773317896], [-40.57424028669814, -17.13289272824369], [-40.52496660317789, -16.931974751829273], [-40.47141923785398, -16.869418597099184], [-40.29749467067239, -16.87842738650535], [-40.24371659244903, -16.833647111359625], [-40.2839924728917, -16.74454798686702], [-40.27499466981408, -16.614953255360874], [-40.25271439552665, -16.565888312082905], [-40.13662186180122, -16.543630010452603], [-40.13211746709811, -16.503354130009953], [-40.05628982748678, -16.396237426705014], [-39.940197293761315, -16.31142297034461], [-39.86436965414998, -16.110504993930192], [-39.93569289905824, -15.998905868579271], [-40.00274246216287, -15.994401473876223], [-40.13211746709811, -15.891789165274304], [-40.16789993916623, -15.896293559977423], [-40.234949502270865, -15.8202461937952], [-40.328542035138014, -15.824750588498276], [-40.47592363255703, -15.77570761787743], [-40.53396440625551, -15.797965919507703], [-40.57424028669814, -15.757931738293095], [-40.667843805893824, -15.717655857850431], [-40.761667051660396, -15.739914159480776], [-40.82871661476503, -15.681862399453777], [-40.891042056595666, -15.69537558356302], [-40.944820134819025, -15.673095309275581], [-41.02964557750798, -15.73543173743478], [-41.15902058244325, -15.780190039923411], [-41.333164876195724, -15.717655857850389], [-41.3599495451862, -15.494457607148604], [-41.801841651886804, -15.110595287817915], [-41.940214459899664, -15.172931715977143], [-42.087596057318706, -15.181918532726186], [-42.1769149083822, -15.106090893114839], [-42.261740351071154, -15.106090893114839], [-42.43139123644909, -15.034547921635692], [-42.578542120968706, -14.931957585690924], [-42.63232019919204, -14.940944402439996], [-42.891070209062576, -14.749013242774652], [-42.953615377464104, -14.677470271295505], [-43.230371979818415, -14.63741411742373], [-43.38674039398654, -14.699750545582901], [-43.449296548716575, -14.780082579897353], [-43.49384611096289, -14.789069396646426], [-43.708046558587114, -14.735522031322503], [-43.82415007864111, -14.695246150879854], [-43.86441497275521, -14.659694391711156], [-43.87949920184627, -14.624604058341333], [-43.8608224433213, -14.534362355680116], [-43.80006804647246, -14.369897017375024], [-43.781391287947486, -14.342892621813633], [-43.83764129009327, -14.315888226252241], [-44.15894745469387, -14.271349650334486], [-44.21249482001778, -14.240082559297988], [-44.31982026356505, -14.244345254773094], [-44.35986543110829, -14.271349650334457], [-44.56079439385124, -14.347177289945833], [-44.83754000987699, -14.516828175323752], [-44.88232028502273, -14.597138236981039], [-45.10102512735003, -14.717746151738154], [-45.22589573758222, -14.74002642602558], [-45.31971898334879, -14.856129946079577], [-45.46259618606476, -14.940944402439996], [-45.55191503712825, -14.93644000773692], [-45.654516359401555, -15.043556711041788], [-45.71256811942854, -15.123866772699188], [-45.766115484752476, -15.146147046986613], [-45.92676856705276, -15.128371167402264], [-45.967044447495425, -15.186422927429248], [-46.0741501644718, -15.248979082159337], [-45.97604225057307, -14.985504951014832], [-46.02509620752241, -14.869401430960849] ] ], [ [ [-38.90721873873133, -13.40105664838535], [-38.903615222968824, -13.473500498805151], [-38.93781566372661, -13.5322334112019], [-38.97764110469893, -13.523444348366638], [-38.993164786931686, -13.484069346864658], [-39.02219066694528, -13.44559522430319], [-39.00666698471241, -13.415448738778196], [-38.980124014949865, -13.398354011563526], [-38.90721873873133, -13.40105664838535] ] ], [ [ [-38.60121652979262, -12.992672843744288], [-38.743874005937755, -13.09706493757028], [-38.783018294540284, -13.118664059487969], [-38.78707224977313, -13.05498729924642], [-38.684921366970116, -12.974896964159996], [-38.66804636632634, -12.880172839452769], [-38.61449900100246, -12.924052235657825], [-38.60031565085205, -12.972414053909006], [-38.60121652979262, -12.992672843744288] ] ] ] } }, { "type": "Feature", "properties": { "population": 8843, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-40.53846880095858, -7.391754661336265], [-40.53396440625551, -7.324694111903099], [-40.58301836320487, -7.195319106967844], [-40.511695118296615, -7.0033879473025], [-40.440141160488906, -6.905082279489932], [-40.41787187253004, -6.81147876029425], [-40.48041704093157, -6.735431394112013], [-40.614296440569916, -6.708646725121511], [-40.70811968633649, -6.659603754500665], [-40.72139117121776, -6.570262930780089], [-40.770664854738015, -6.494457263825836], [-40.79744952372852, -6.378353743771839], [-40.80621661390671, -6.253483133539646], [-40.891042056595666, -6.012267304025499], [-40.891042056595666, -5.905172573377655], [-40.92232013396071, -5.681974322675813], [-40.917815739257634, -5.60164228836139], [-40.94909381662268, -5.418500191531322], [-41.0251411828049, -5.364952826207414], [-41.06969074505122, -5.306901066180416], [-41.0606929419736, -5.168517271838979], [-41.11447102019693, -5.065926935894225], [-41.12324909670366, -5.007875175867227], [-41.185794265105216, -4.914051930100655], [-41.18128987040211, -4.811439621498806], [-41.22607014554785, -4.726625165138387], [-41.2438460251322, -4.615026039787466], [-41.23484822205458, -4.539198400176133], [-41.1412447028589, -4.427379548254322], [-41.074195139754295, -4.324767239652473], [-41.11874470200058, -4.177396628561979], [-41.18128987040211, -4.123849263238057], [-41.230343827351504, -4.043517228923633], [-41.28389119267544, -3.811332161472734], [-41.35544515048312, -3.708719852870885], [-41.38221883314509, -3.592616332816888], [-41.44926839624969, -3.436478631548212], [-41.42676839539138, -3.320375111494201], [-41.37771443844201, -3.271332140873369], [-41.25711751001347, -3.079181254637149], [-41.26859822334205, -2.916056248414421], [-41.194572341611945, -2.886129489460302], [-40.875518374362855, -2.869693941958332], [-40.474572314146116, -2.795668060228223], [-40.23539994174115, -2.813224213241682], [-39.964718779071745, -2.861608004149886], [-39.77189772679432, -2.985797462012329], [-39.60944288661278, -3.056219827979987], [-39.511115246143135, -3.125521588436129], [-39.35271436119439, -3.197306259143247], [-39.01432445570771, -3.390116325092123], [-38.89596873830217, -3.501715450443044], [-38.68627268538103, -3.653832155464585], [-38.475895480090145, -3.717486943049067], [-38.361824430816796, -3.87634925379669], [-38.271824427383564, -3.948111951846712], [-38.04884590325261, -4.216332176922251], [-37.795720893596666, -4.404198395026285], [-37.62628973478962, -4.592064613130319], [-37.30139104075511, -4.713111981029158], [-37.230748948216586, -4.824271653238313], [-37.54281561051161, -4.93204753625588], [-37.59659368873494, -4.958832205246381], [-37.721464298967135, -5.061422541191149], [-37.913395458632465, -5.463280466677062], [-38.0474945848417, -5.614913773242662], [-38.07854194930732, -5.686478717378904], [-38.07854194930732, -5.762306356990237], [-38.12781563282758, -5.878387904387154], [-38.301740200009135, -6.074823458755574], [-38.36878976311377, -6.092599338339923], [-38.41357003825948, -6.061332247303426], [-38.493891086245384, -6.128370824079497], [-38.511666965829704, -6.181918189403419], [-38.578716528934336, -6.262250223717842], [-38.605490211596305, -6.396129623356174], [-38.5251691636104, -6.382858138474916], [-38.578716528934336, -6.480944079716593], [-38.65003977384259, -6.690870845537162], [-38.61877268280611, -6.757931394970328], [-38.65003977384259, -6.838241456627657], [-38.725867413453955, -6.891788821951579], [-38.73037180815703, -7.0033879473025], [-38.685822245910714, -7.030172616293001], [-38.676824442833095, -7.15954762122827], [-38.60099680322176, -7.222103775958345], [-38.547449437897825, -7.235594987410494], [-38.53394724011713, -7.293646747437492], [-38.58299021073799, -7.427526147075838], [-38.632274880586806, -7.458793238112335], [-38.63676828896132, -7.534620877723682], [-38.699093730791986, -7.619457306741182], [-38.81969065922053, -7.663995882658938], [-38.864240221466815, -7.704271763101588], [-38.96707225663954, -7.847137979489005], [-38.99833934767605, -7.820375283155585], [-39.074166987287384, -7.856146768895158], [-39.109949459355505, -7.753314733722434], [-39.24381787266532, -7.681991488814162], [-39.30637402739538, -7.623939728787164], [-39.350923589641695, -7.548112089175831], [-39.53406568647176, -7.47656911769667], [-39.65444288832941, -7.373978781751916], [-39.84659377456563, -7.347194112761414], [-39.95369949154201, -7.360465597642673], [-40.06529861689293, -7.405245872788413], [-40.172393347540776, -7.418517357669671], [-40.261723184932805, -7.391754661336265], [-40.53846880095858, -7.391754661336265] ] ] ] } }, { "type": "Feature", "properties": { "population": 2220, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-37.41186956059454, -11.497323665607496], [-37.574093687876626, -11.539181577360537], [-37.63214544790364, -11.521163998548232], [-37.65891913056561, -11.556957456944886], [-37.797291938578496, -11.525668393251294], [-37.85107001680183, -11.440853936890889], [-37.9669428239564, -11.400797783019115], [-38.00721870439904, -11.35601750787339], [-37.9804450217371, -11.239913987819392], [-38.06076606972297, -11.168590742911121], [-38.10982002667234, -11.030228921226794], [-38.17686958977697, -10.980944251377977], [-38.234921349803955, -10.896349521588448], [-38.243919152881574, -10.824806550109301], [-38.190141074658214, -10.717689846804376], [-38.10982002667234, -10.708703030055304], [-38.01172309910211, -10.75348330520103], [-37.97144721865948, -10.75348330520103], [-37.81529853106224, -10.677413966361712], [-37.784020453697195, -10.62837099574088], [-37.824065621240436, -10.548038961426414], [-37.83756781902116, -10.42294862462336], [-37.784020453697195, -10.30684510456939], [-37.77951605899412, -10.079362185735349], [-37.90012397375119, -9.949767454229232], [-37.90012397375119, -9.913995968489587], [-37.96266914215278, -9.873939814617813], [-38.02949897868646, -9.726569203527362], [-37.99371650661834, -9.646237169212938], [-38.04299019013865, -9.605983261427355], [-37.97572090046313, -9.512138043003716], [-37.93814765684232, -9.53780210648273], [-37.425591484946096, -9.778314810970059], [-37.19609806798849, -9.88587096741675], [-37.019240151085654, -9.956974485754131], [-36.9564642697847, -10.01366394104167], [-36.93958926914095, -10.083646853867549], [-36.87974673756128, -10.153629766693442], [-36.77669497581766, -10.22359070686224], [-36.699065578325076, -10.257340708149698], [-36.64753969745328, -10.253978891615205], [-36.60704409043976, -10.292892467318381], [-36.579819968307476, -10.37142274375158], [-36.53842348235332, -10.410578018682727], [-36.48262391967788, -10.410578018682727], [-36.44301820527642, -10.43195741402954], [-36.43176820484726, -10.452875383577506], [-36.41467347763265, -10.491349506138917], [-36.63583925755381, -10.589896873179455], [-36.768367338781246, -10.671569239576257], [-36.93779849758826, -10.8205218819771], [-37.09326603281576, -11.05475040653721], [-37.12544498912143, -11.084896892062204], [-37.18281559677868, -11.068483317217328], [-37.18124455179688, -11.187487228006972], [-37.315123951435226, -11.376056571137823], [-37.356069997919064, -11.403939872982733], [-37.354949392407576, -11.35039250765881], [-37.331548512608634, -11.30989690064527], [-37.32074895164979, -11.266698656809893], [-37.32186955716131, -11.215172775938086], [-37.35922307421123, -11.252526292988009], [-37.43842351668562, -11.393832450722158], [-37.41186956059454, -11.497323665607496] ] ] ] } }, { "type": "Feature", "properties": { "population": 3322, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-37.97572090046313, -9.512138043003716], [-38.2211994254524, -9.34767270469861], [-38.154589315489545, -9.266681490671544], [-38.09204414708799, -9.18634945635712], [-37.9669428239564, -9.14178890778227], [-37.81529853106224, -8.976642417107428], [-37.80628974165609, -8.896332355450099], [-37.748248967957636, -8.86053889705343], [-37.681419131423894, -8.976642417107428], [-37.62764105320056, -8.981146811810504], [-37.52054632255272, -8.94537532607093], [-37.471492365603325, -9.003427086097929], [-37.39117131761745, -9.043483239969703], [-37.18124455179688, -9.239896821681043], [-36.9983221815377, -9.306957371114194], [-36.94027042151069, -9.35600034173504], [-36.90449893577113, -9.289181491529845], [-36.83316470453431, -9.262396822539344], [-36.57869936279599, -9.293444187004965], [-36.440315568454565, -9.208849457215422], [-36.34649232268799, -9.19984066780927], [-36.26617127470212, -9.14178890778227], [-36.23939759204015, -9.088241542458348], [-36.12329407198615, -9.016698570979202], [-36.118789677283075, -8.967655600358356], [-36.01619934133831, -8.896332355450099], [-35.97141906619257, -8.90509944562828], [-35.88231994169996, -8.873832354591784], [-35.80176818081466, -8.869547686459597], [-35.721447132828786, -8.91859065708043], [-35.609848007477865, -8.865043291756507], [-35.47146421313644, -8.833776200720024], [-35.39114316515057, -8.882819171340856], [-35.30182431408707, -8.887323566043932], [-35.15174007984618, -8.913866535806477], [-35.157815519531056, -8.930521809879323], [-35.340968602689685, -9.230668305704], [-35.597015975738344, -9.540724469875457], [-35.763964224294426, -9.702487171358712], [-35.830123894786965, -9.719142445431558], [-35.89086730530727, -9.686974475454448], [-35.84766906147189, -9.772470084184604], [-35.885473017992126, -9.847616571426215], [-36.05489319047061, -10.07578064262998], [-36.223643196907915, -10.225172738172589], [-36.39824891645921, -10.48414247461399], [-36.41152040134048, -10.489987201399458], [-36.41467347763265, -10.491349506138917], [-36.43176820484726, -10.452875383577506], [-36.44301820527642, -10.43195741402954], [-36.48262391967788, -10.410578018682727], [-36.53842348235332, -10.410578018682727], [-36.579819968307476, -10.37142274375158], [-36.60704409043976, -10.292892467318381], [-36.64753969745328, -10.253978891615205], [-36.699065578325076, -10.257340708149698], [-36.77669497581766, -10.22359070686224], [-36.87974673756128, -10.153629766693442], [-36.93958926914095, -10.083646853867549], [-36.9564642697847, -10.01366394104167], [-37.019240151085654, -9.956974485754131], [-37.19609806798849, -9.88587096741675], [-37.425591484946096, -9.778314810970059], [-37.93814765684232, -9.53780210648273], [-37.97572090046313, -9.512138043003716] ] ] ] } }, { "type": "Feature", "properties": { "population": 3409, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-38.5251691636104, -6.382858138474916], [-38.605490211596305, -6.396129623356174], [-38.578716528934336, -6.262250223717842], [-38.511666965829704, -6.181918189403419], [-38.493891086245384, -6.128370824079497], [-38.41357003825948, -6.061332247303426], [-38.36878976311377, -6.092599338339923], [-38.301740200009135, -6.074823458755574], [-38.12781563282758, -5.878387904387154], [-38.07854194930732, -5.762306356990237], [-38.07854194930732, -5.686478717378904], [-38.0474945848417, -5.614913773242662], [-37.913395458632465, -5.463280466677062], [-37.721464298967135, -5.061422541191149], [-37.59659368873494, -4.958832205246381], [-37.54281561051161, -4.93204753625588], [-37.230748948216586, -4.824271653238313], [-37.17471867264169, -4.912469898790306], [-36.95489322480287, -4.936771657529846], [-36.8610699790363, -4.96669841648395], [-36.747449369233294, -5.050611993903757], [-36.59061952926632, -5.097655452729569], [-36.38676820313063, -5.084361995191216], [-36.16176819454756, -5.093832210396229], [-35.97996642979987, -5.054457208894192], [-35.54932432352845, -5.129361996907832], [-35.481593608054084, -5.166056334245113], [-35.39249448356148, -5.250870790605518], [-35.23544491702364, -5.566771681562443], [-35.14184139782796, -5.917103726176549], [-35.09549007770042, -6.185301978594993], [-34.98816463415315, -6.393646713105213], [-34.97174007297971, -6.503905506373755], [-35.047347986020185, -6.534733144268486], [-35.257274751840754, -6.507948475277985], [-35.306317722461586, -6.53022874956541], [-35.4669708047619, -6.463168200132245], [-35.66789976750485, -6.427396714392671], [-35.721447132828786, -6.44539232054791], [-35.92686950394628, -6.467672594835335], [-36.25266907692142, -6.414125229511413], [-36.29294495736406, -6.307030498863568], [-36.382274794756114, -6.302526104160492], [-36.493873920107035, -6.378353743771839], [-36.5161432080659, -6.480944079716593], [-36.44481996315764, -6.623832268761092], [-36.53391908765025, -6.63732348021324], [-36.52941469294717, -6.735431394112013], [-36.5026410102852, -6.784694091303734], [-36.57419496809291, -6.927582280348247], [-36.659020410781864, -6.931844975823353], [-36.71256777610577, -6.976625250969079], [-36.770619536132784, -6.931844975823353], [-36.743845853470816, -6.824750245175508], [-36.79289981042021, -6.76669848514851], [-36.944774816213766, -6.748922605564161], [-36.98932437846008, -6.708646725121511], [-37.04287174378399, -6.753427000267237], [-37.15447086913491, -6.784694091303734], [-37.21701603753647, -6.824750245175508], [-37.27057438918891, -6.739913816158008], [-37.33762395229354, -6.699879634943329], [-37.51604192784964, -6.68186205613101], [-37.507274837671446, -6.55248705119574], [-37.43121648516069, -6.516715565456167], [-37.39566472599199, -6.391844955223988], [-37.1767401570938, -6.114879612627348], [-37.1767401570938, -6.052543184468149], [-37.261565599782756, -6.025780488134728], [-37.42244939498249, -6.097103733042999], [-37.4759967603064, -6.083832248161727], [-37.64114325098126, -6.128370824079497], [-37.757246771035256, -6.177413794700328], [-37.793018256774815, -6.293517314754325], [-37.84207221372421, -6.342582258032266], [-38.00271430969596, -6.431901109095762], [-38.05627266134843, -6.44539232054791], [-38.13232002753065, -6.521219960159243], [-38.2394147581785, -6.48544847441967], [-38.283964320424815, -6.503444080574909], [-38.43583932621837, -6.414125229511413], [-38.5251691636104, -6.382858138474916] ] ] ] } }, { "type": "Feature", "properties": { "population": 9278, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-41.36871663536442, -8.713168285962922], [-41.212567947767155, -8.632858224305608], [-41.15902058244325, -8.548021795288108], [-41.083192942831886, -8.525741521000683], [-41.01614337972728, -8.418646790352838], [-40.92232013396071, -8.43191827523411], [-40.88676837479201, -8.351608213576768], [-40.833221009468105, -8.36487969845804], [-40.74839556677915, -8.244491510271843], [-40.59201616628249, -8.12390556817185], [-40.54297319566166, -8.030082322405278], [-40.52947099788096, -7.905189739516004], [-40.547466604036174, -7.833646768036857], [-40.659065729387095, -7.762323523128586], [-40.61878984894446, -7.637233186325531], [-40.69034380675214, -7.512340603436257], [-40.69034380675214, -7.427526147075838], [-40.64557451793496, -7.400741478085337], [-40.53846880095858, -7.391754661336265], [-40.261723184932805, -7.391754661336265], [-40.172393347540776, -7.418517357669671], [-40.06529861689293, -7.405245872788413], [-39.95369949154201, -7.360465597642673], [-39.84659377456563, -7.347194112761414], [-39.65444288832941, -7.373978781751916], [-39.53406568647176, -7.47656911769667], [-39.350923589641695, -7.548112089175831], [-39.30637402739538, -7.623939728787164], [-39.24381787266532, -7.681991488814162], [-39.109949459355505, -7.753314733722434], [-39.074166987287384, -7.856146768895158], [-38.99833934767605, -7.820375283155585], [-38.96707225663954, -7.847137979489005], [-38.864240221466815, -7.704271763101588], [-38.81969065922053, -7.663995882658938], [-38.699093730791986, -7.619457306741182], [-38.64554636546805, -7.677487094111086], [-38.59199900014414, -7.690780551649439], [-38.587494605441066, -7.740043248841161], [-38.5251691636104, -7.766827917831677], [-38.44912179742818, -7.735538854138085], [-38.41784372006313, -7.748832311676438], [-38.355518278232495, -7.699767368398511], [-38.304223110260125, -7.78234061373594], [-38.301740200009135, -7.829362099904657], [-38.25719063776285, -7.851642374192082], [-38.225923546726335, -7.811366493749432], [-38.16787178669935, -7.806862099046356], [-38.150095907115, -7.771332312534753], [-38.08753975238491, -7.820375283155585], [-38.05739326685992, -7.75781912842551], [-37.97594062703399, -7.771332312534753], [-37.895619579048116, -7.686495883517253], [-37.793018256774815, -7.637233186325531], [-37.70819281408586, -7.548112089175831], [-37.55182439991776, -7.47656911769667], [-37.435720879863766, -7.347194112761414], [-37.38217351453983, -7.351698507464491], [-37.34639104247171, -7.297931415569693], [-37.25279850960456, -7.271146746579191], [-37.149966474431835, -7.347194112761414], [-37.01609806112205, -7.400741478085337], [-37.01609806112205, -7.507858181390262], [-37.19924015795212, -7.574896758166332], [-37.212522629161924, -7.646220003074589], [-37.16797306691561, -7.762323523128586], [-37.22602482694262, -7.815870888452508], [-37.342117360668055, -7.9987932587117], [-37.212522629161924, -7.958737104839926], [-37.149966474431835, -7.976512984424275], [-37.12769718647297, -8.1641814486145], [-37.06086734993923, -8.231000298819694], [-36.96253970946958, -8.284547664143616], [-36.83316470453431, -8.226495904116618], [-36.78389102101406, -8.222233208641498], [-36.62774233341682, -8.0836296877292], [-36.659020410781864, -8.012306442820929], [-36.569690573389835, -7.922965619100353], [-36.449093644961295, -7.90969413421908], [-36.422319962299326, -7.824879677858675], [-36.337494519610374, -7.811366493749432], [-36.26617127470212, -7.824879677858675], [-36.217117317752724, -7.780099402712935], [-36.16784363423244, -7.824879677858675], [-36.12329407198615, -7.780099402712935], [-36.07424011503676, -7.824879677858675], [-35.96691467148949, -7.815870888452508], [-35.931373898649355, -7.838151162739933], [-35.886593623503614, -7.732177037603591], [-35.83753966655422, -7.744327916973361], [-35.712669056322056, -7.708776157804678], [-35.68139097895701, -7.713280552507754], [-35.556289655825395, -7.655228792480756], [-35.498248882126944, -7.454288843409245], [-35.37336728556622, -7.458793238112335], [-35.270546236722026, -7.382745871930098], [-35.065343592175424, -7.409530540920613], [-34.98051814948644, -7.512340603436257], [-34.85856990264699, -7.54969412048618], [-34.86082209999853, -7.594913848773672], [-34.85474666031365, -7.634288850275709], [-34.87297297936831, -7.692120883731818], [-34.87859797958288, -7.747470006936979], [-34.8369707807293, -7.871681437456516], [-34.834718583377764, -7.971569136579433], [-34.89051814605324, -8.092177051336506], [-34.96656551223546, -8.40761651649457], [-35.15174007984618, -8.913866535806477], [-35.30182431408707, -8.887323566043932], [-35.39114316515057, -8.882819171340856], [-35.47146421313644, -8.833776200720024], [-35.609848007477865, -8.865043291756507], [-35.721447132828786, -8.91859065708043], [-35.80176818081466, -8.869547686459597], [-35.88231994169996, -8.873832354591784], [-35.97141906619257, -8.90509944562828], [-36.01619934133831, -8.896332355450099], [-36.118789677283075, -8.967655600358356], [-36.12329407198615, -9.016698570979202], [-36.23939759204015, -9.088241542458348], [-36.26617127470212, -9.14178890778227], [-36.34649232268799, -9.19984066780927], [-36.440315568454565, -9.208849457215422], [-36.57869936279599, -9.293444187004965], [-36.83316470453431, -9.262396822539344], [-36.90449893577113, -9.289181491529845], [-36.94027042151069, -9.35600034173504], [-36.9983221815377, -9.306957371114194], [-37.18124455179688, -9.239896821681043], [-37.39117131761745, -9.043483239969703], [-37.471492365603325, -9.003427086097929], [-37.52054632255272, -8.94537532607093], [-37.62764105320056, -8.981146811810504], [-37.681419131423894, -8.976642417107428], [-37.748248967957636, -8.86053889705343], [-37.80628974165609, -8.896332355450099], [-37.81529853106224, -8.976642417107428], [-37.9669428239564, -9.14178890778227], [-38.09204414708799, -9.18634945635712], [-38.154589315489545, -9.266681490671544], [-38.2211994254524, -9.34767270469861], [-38.28307442781272, -9.203663910142609], [-38.30759591312315, -9.102194179709358], [-38.29432442824191, -9.043021814170856], [-38.33594064076692, -9.01017269182401], [-38.43291696282563, -9.00364681266882], [-38.48219064634591, -8.959547689892815], [-38.48399240422714, -8.877655596925138], [-38.50469064720423, -8.834896806231512], [-38.54429636160569, -8.831073563898173], [-38.57759592342282, -8.86053889705343], [-38.61922312227642, -8.896090656222128], [-38.66781565342694, -8.896090656222128], [-38.70539988337629, -8.879896807948114], [-38.834994614882476, -8.800245926003356], [-39.098249019456034, -8.714970043844119], [-39.25664990440481, -8.64026300974433], [-39.33269727058703, -8.565797674872442], [-39.441824472015526, -8.559271795717166], [-39.60089552300548, -8.619564766767255], [-39.682798602301716, -8.683021800437942], [-39.68774245014657, -8.74940119750137], [-39.73836745207774, -8.791237136597275], [-39.83489333466616, -8.809013016181552], [-39.88461745765676, -8.853353838185598], [-39.887770533948924, -8.923995930724061], [-39.90914992929572, -8.98024593286982], [-39.94874465736862, -9.022103844622904], [-40.00499465951441, -9.058095056933354], [-40.077669222833606, -9.08824154245832], [-40.212218788513155, -9.101513027339593], [-40.27319291193285, -9.144952970402969], [-40.31977494495982, -9.2930047338632], [-40.41269731178579, -9.396957374547355], [-40.56479204415024, -9.460172708990143], [-40.68583941204906, -9.47210386178898], [-40.743891172076076, -9.42303891851111], [-40.69034380675214, -9.342728856853768], [-40.70361529163341, -9.217616547393618], [-40.85099688905245, -9.150797697188352], [-40.855490297427, -9.092745937161425], [-40.891042056595666, -9.03469417713444], [-40.891042056595666, -8.856056475007449], [-40.98037189398772, -8.815780594564785], [-41.003992500357526, -8.781349440907604], [-41.100968822416235, -8.775724440693025], [-41.10547321711931, -8.717672680666027], [-41.15902058244325, -8.708663891259846], [-41.324167073118076, -8.735448560250362], [-41.36871663536442, -8.713168285962922] ] ] ] } }, { "type": "Feature", "properties": { "population": 3944, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-38.699093730791986, -7.619457306741182], [-38.63676828896132, -7.534620877723682], [-38.632274880586806, -7.458793238112335], [-38.58299021073799, -7.427526147075838], [-38.53394724011713, -7.293646747437492], [-38.547449437897825, -7.235594987410494], [-38.60099680322176, -7.222103775958345], [-38.676824442833095, -7.15954762122827], [-38.685822245910714, -7.030172616293001], [-38.73037180815703, -7.0033879473025], [-38.725867413453955, -6.891788821951579], [-38.65003977384259, -6.838241456627657], [-38.61877268280611, -6.757931394970328], [-38.65003977384259, -6.690870845537162], [-38.578716528934336, -6.480944079716593], [-38.5251691636104, -6.382858138474916], [-38.43583932621837, -6.414125229511413], [-38.283964320424815, -6.503444080574909], [-38.2394147581785, -6.48544847441967], [-38.13232002753065, -6.521219960159243], [-38.05627266134843, -6.44539232054791], [-38.00271430969596, -6.431901109095762], [-37.84207221372421, -6.342582258032266], [-37.793018256774815, -6.293517314754325], [-37.757246771035256, -6.177413794700328], [-37.64114325098126, -6.128370824079497], [-37.4759967603064, -6.083832248161727], [-37.42244939498249, -6.097103733042999], [-37.261565599782756, -6.025780488134728], [-37.1767401570938, -6.052543184468149], [-37.1767401570938, -6.114879612627348], [-37.39566472599199, -6.391844955223988], [-37.43121648516069, -6.516715565456167], [-37.507274837671446, -6.55248705119574], [-37.51604192784964, -6.68186205613101], [-37.33762395229354, -6.699879634943329], [-37.27057438918891, -6.739913816158008], [-37.21701603753647, -6.824750245175508], [-37.15447086913491, -6.784694091303734], [-37.04287174378399, -6.753427000267237], [-36.98932437846008, -6.708646725121511], [-36.944774816213766, -6.748922605564161], [-36.79289981042021, -6.76669848514851], [-36.743845853470816, -6.824750245175508], [-36.770619536132784, -6.931844975823353], [-36.71256777610577, -6.976625250969079], [-36.659020410781864, -6.931844975823353], [-36.57419496809291, -6.927582280348247], [-36.5026410102852, -6.784694091303734], [-36.52941469294717, -6.735431394112013], [-36.53391908765025, -6.63732348021324], [-36.44481996315764, -6.623832268761092], [-36.5161432080659, -6.480944079716593], [-36.493873920107035, -6.378353743771839], [-36.382274794756114, -6.302526104160492], [-36.29294495736406, -6.307030498863568], [-36.25266907692142, -6.414125229511413], [-35.92686950394628, -6.467672594835335], [-35.721447132828786, -6.44539232054791], [-35.66789976750485, -6.427396714392671], [-35.4669708047619, -6.463168200132245], [-35.306317722461586, -6.53022874956541], [-35.257274751840754, -6.507948475277985], [-35.047347986020185, -6.534733144268486], [-34.97174007297971, -6.503905506373755], [-34.929673420984386, -6.785155517102595], [-34.87994929799382, -6.908224369453549], [-34.87589534276103, -7.002948494160734], [-34.833817704437166, -7.024327889507546], [-34.805472976793396, -7.288483173021774], [-34.8164922643231, -7.394896751299868], [-34.85766902370639, -7.53328054564129], [-34.85856990264699, -7.54969412048618], [-34.98051814948644, -7.512340603436257], [-35.065343592175424, -7.409530540920613], [-35.270546236722026, -7.382745871930098], [-35.37336728556622, -7.458793238112335], [-35.498248882126944, -7.454288843409245], [-35.556289655825395, -7.655228792480756], [-35.68139097895701, -7.713280552507754], [-35.712669056322056, -7.708776157804678], [-35.83753966655422, -7.744327916973361], [-35.886593623503614, -7.732177037603591], [-35.931373898649355, -7.838151162739933], [-35.96691467148949, -7.815870888452508], [-36.07424011503676, -7.824879677858675], [-36.12329407198615, -7.780099402712935], [-36.16784363423244, -7.824879677858675], [-36.217117317752724, -7.780099402712935], [-36.26617127470212, -7.824879677858675], [-36.337494519610374, -7.811366493749432], [-36.422319962299326, -7.824879677858675], [-36.449093644961295, -7.90969413421908], [-36.569690573389835, -7.922965619100353], [-36.659020410781864, -8.012306442820929], [-36.62774233341682, -8.0836296877292], [-36.78389102101406, -8.222233208641498], [-36.83316470453431, -8.226495904116618], [-36.96253970946958, -8.284547664143616], [-37.06086734993923, -8.231000298819694], [-37.12769718647297, -8.1641814486145], [-37.149966474431835, -7.976512984424275], [-37.212522629161924, -7.958737104839926], [-37.342117360668055, -7.9987932587117], [-37.22602482694262, -7.815870888452508], [-37.16797306691561, -7.762323523128586], [-37.212522629161924, -7.646220003074589], [-37.19924015795212, -7.574896758166332], [-37.01609806112205, -7.507858181390262], [-37.01609806112205, -7.400741478085337], [-37.149966474431835, -7.347194112761414], [-37.25279850960456, -7.271146746579191], [-37.34639104247171, -7.297931415569693], [-37.38217351453983, -7.351698507464491], [-37.435720879863766, -7.347194112761414], [-37.55182439991776, -7.47656911769667], [-37.70819281408586, -7.548112089175831], [-37.793018256774815, -7.637233186325531], [-37.895619579048116, -7.686495883517253], [-37.97594062703399, -7.771332312534753], [-38.05739326685992, -7.75781912842551], [-38.08753975238491, -7.820375283155585], [-38.150095907115, -7.771332312534753], [-38.16787178669935, -7.806862099046356], [-38.225923546726335, -7.811366493749432], [-38.25719063776285, -7.851642374192082], [-38.301740200009135, -7.829362099904657], [-38.304223110260125, -7.78234061373594], [-38.355518278232495, -7.699767368398511], [-38.41784372006313, -7.748832311676438], [-38.44912179742818, -7.735538854138085], [-38.5251691636104, -7.766827917831677], [-38.587494605441066, -7.740043248841161], [-38.59199900014414, -7.690780551649439], [-38.64554636546805, -7.677487094111086], [-38.699093730791986, -7.619457306741182] ] ] ] } }, { "type": "Feature", "properties": { "population": 6727, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-53.6699219386025, -26.258005381026635], [-53.66339605944734, -26.25776368179862], [-53.516245174927704, -26.289052745492228], [-53.458193414900734, -26.2890527454922], [-53.355372366056514, -26.239987802214294], [-53.27954472644517, -26.26226807650172], [-53.12339603884794, -26.369604506377534], [-52.99379032101325, -26.351608900222303], [-52.913469273027374, -26.365100111674394], [-52.81537234545715, -26.33831544268395], [-52.6724951427412, -26.378371596555716], [-52.64121706537617, -26.40065187084309], [-52.54290041123505, -26.40065187084314], [-52.458074968546086, -26.43191896187964], [-52.19909424577614, -26.44991456803487], [-52.00717407243934, -26.583793967673216], [-51.873294672800995, -26.601569847257558], [-51.50271482468011, -26.601569847257558], [-51.422393776694236, -26.699897487727206], [-51.28402096868135, -26.650854517106367], [-51.23947140643509, -26.606074241960584], [-51.2795165739783, -26.49897951131271], [-51.28852536338445, -26.423151871701464], [-51.24824948294179, -26.347104505519212], [-51.074094202860806, -26.23550538016832], [-50.94471919792551, -26.244492196917378], [-50.90016963567922, -26.28026368265695], [-50.77057490417306, -26.22223389528704], [-50.73502314500439, -26.23100098546523], [-50.64569330761233, -26.07035888949347], [-50.54287225876814, -26.02579834091862], [-50.45804681607919, -26.02579834091862], [-50.369167418157474, -26.085871585397726], [-50.315169613363224, -26.05258300990912], [-50.19029900313106, -26.05258300990912], [-49.949094159945446, -26.01230712946647], [-49.882275309740265, -26.039069825799885], [-49.7526695919056, -26.123906254817314], [-49.72162222743995, -26.15967774055696], [-49.596520904308335, -26.22223389528704], [-49.48941518733196, -26.22223389528704], [-49.45364370159237, -26.16866455730603], [-49.29749501399516, -26.106130375233022], [-49.21266957130621, -26.030302735621696], [-49.109848522462016, -25.99453124988213], [-48.944691045458626, -26.007802734763388], [-48.91791736279666, -25.97651367106981], [-48.65016954984853, -25.97225097559469], [-48.58537218409546, -25.9862036128457], [-48.619341911953825, -26.179475104593394], [-48.678964716962525, -26.22581543839243], [-48.71384631009005, -26.226958016561014], [-48.74826647741867, -26.268574229086028], [-48.70079455177972, -26.34822511103073], [-48.65152086825947, -26.406496597628575], [-48.65804674741463, -26.51921632849104], [-48.676492793040154, -26.61238039454497], [-48.67784411145112, -26.702819851119898], [-48.61574938251988, -26.878095736712453], [-48.5934691082324, -27.058095743578804], [-48.56826647055232, -27.12335453513083], [-48.55409410673042, -27.196018112121465], [-48.595490592684484, -27.2639795404952], [-48.57186998631471, -27.372876029024326], [-48.64252306518182, -27.55781988373559], [-48.60561998760221, -27.825117257213435], [-48.620693230364736, -28.0755396300475], [-48.6483677919673, -28.2071778186629], [-48.69314806711304, -28.310229580406485], [-48.797320434368146, -28.442746675305386], [-48.799572631719684, -28.575263770204174], [-49.023671761362095, -28.698574321783155], [-49.271391497374395, -28.87114757055383], [-49.49999502171988, -29.075449336159807], [-49.71284415093322, -29.324531376911544], [-49.8152147603071, -29.271203738158505], [-49.86877311195957, -29.21765637283459], [-49.95359855464852, -29.195376098547115], [-50.07869987778014, -29.244419069168003], [-50.0339196026344, -29.320466435350227], [-50.05191520878964, -29.356018194518924], [-50.16801872884366, -29.28469494961064], [-50.16352532046909, -29.195376098547165], [-50.069691088373986, -29.092763789945316], [-50.00714591997246, -29.101552852780515], [-49.94482047814179, -28.949897573557898], [-49.95359855464852, -28.79351817306125], [-49.846492837672145, -28.695432231819552], [-49.797449867051284, -28.623867287683332], [-49.699122226581636, -28.597104591349918], [-49.708120029659256, -28.530263768487643], [-49.73669547020245, -28.51136728339179], [-49.839066079576355, -28.465246676163645], [-49.938525311886025, -28.448151948949075], [-50.06879020943336, -28.444328706615693], [-50.141025319610776, -28.452876070223034], [-50.15496697053325, -28.473794039770993], [-50.23304680749612, -28.468630465355268], [-50.44656610275061, -28.422048432328303], [-50.57752313899624, -28.38627694658873], [-50.73614375051588, -28.235983972105508], [-50.96586788037291, -27.959458082650634], [-51.11729244669618, -27.807802803427933], [-51.190417449485665, -27.78123786100832], [-51.2867236055032, -27.71622076868431], [-51.40641965499111, -27.61316900694075], [-51.487641581917615, -27.564126036319912], [-51.53016965971182, -27.56885015759387], [-51.58236570662484, -27.547470762247087], [-51.64469114845545, -27.4997681237086], [-51.70162230297095, -27.488078670137682], [-51.75359862331311, -27.51191900307839], [-51.873294672800995, -27.509458065484495], [-51.912900387202455, -27.47254400157633], [-51.98422363211071, -27.376699271357644], [-52.05958984592321, -27.31348393691492], [-52.1392407278679, -27.28331547873284], [-52.19234864005006, -27.280854541138964], [-52.22857056525994, -27.29254399470988], [-52.264792490469816, -27.2772510253765], [-52.30439820487129, -27.2830957521619], [-52.34804688817701, -27.276350146435902], [-52.414646011811286, -27.236293992564114], [-52.51072145492941, -27.230449265778645], [-52.6364929441022, -27.259475145792123], [-52.74156619029792, -27.245742235112033], [-52.82639163298688, -27.189492232966188], [-52.900197788146116, -27.176682173883854], [-52.95284427452941, -27.178923384906845], [-52.994240760483564, -27.163388716345494], [-53.030473672021984, -27.137526898952693], [-53.07074955246465, -27.141789594427806], [-53.10359867481151, -27.154401899596394], [-53.13419559980679, -27.140449262345427], [-53.18437016226767, -27.14945805175158], [-53.22711796663276, -27.173737837833983], [-53.263339891842634, -27.163388716345494], [-53.30474736412533, -27.09769047165181], [-53.34749516849041, -27.080595744437176], [-53.39812017042159, -27.08239750231843], [-53.45662236991893, -27.10331547186638], [-53.48969121883664, -27.13324223082043], [-53.49801885587304, -27.17217777918077], [-53.54009649419693, -27.19781987000269], [-53.61569342090888, -27.209970749372474], [-53.65957281711397, -27.20052250682454], [-53.671492983584315, -27.169475142358927], [-53.71852545608158, -27.157543989559997], [-53.80041754904927, -27.16475102108496], [-53.85172370335019, -27.156203657477654], [-53.935417554199105, -27.161147505322504], [-53.9156201901626, -27.159565474012084], [-53.838221505569436, -27.12109135145073], [-53.75857062362479, -26.97822513506327], [-53.71739386424156, -26.882819857986362], [-53.727072819688885, -26.804751007352024], [-53.75339606288054, -26.748720731777155], [-53.74461798637378, -26.666608912238587], [-53.71807501661124, -26.443168962308732], [-53.71086798508634, -26.35182862679312], [-53.66857062019159, -26.288151866551573], [-53.6699219386025, -26.258005381026635] ] ], [ [ [-48.46477525566689, -27.436333062694985], [-48.4148204197769, -27.399638725357704], [-48.37791734219729, -27.451406305457454], [-48.40964585903265, -27.56636724734284], [-48.496723499073084, -27.706992252707323], [-48.48592393811424, -27.767065497186366], [-48.55454454620076, -27.812307198130952], [-48.54217394026, -27.574694884379255], [-48.50527086268045, -27.495505428233514], [-48.46477525566689, -27.436333062694985] ] ], [ [ [-48.603148063679726, -26.413703629153474], [-48.66569323208131, -26.28973389786188], [-48.53969103000907, -26.170246588616294], [-48.49762437801377, -26.21885010609543], [-48.53114366640182, -26.313112805003755], [-48.56804674398143, -26.379733901295197], [-48.58447130515475, -26.401552749783775], [-48.603148063679726, -26.413703629153474] ] ] ] } }, { "type": "Feature", "properties": { "population": 11207, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-53.935417554199105, -27.161147505322504], [-53.85172370335019, -27.156203657477654], [-53.80041754904927, -27.16475102108496], [-53.71852545608158, -27.157543989559997], [-53.671492983584315, -27.169475142358927], [-53.65957281711397, -27.20052250682454], [-53.61569342090888, -27.209970749372474], [-53.54009649419693, -27.19781987000269], [-53.49801885587304, -27.17217777918077], [-53.48969121883664, -27.13324223082043], [-53.45662236991893, -27.10331547186638], [-53.39812017042159, -27.08239750231843], [-53.34749516849041, -27.080595744437176], [-53.30474736412533, -27.09769047165181], [-53.263339891842634, -27.163388716345494], [-53.22711796663276, -27.173737837833983], [-53.18437016226767, -27.14945805175158], [-53.13419559980679, -27.140449262345427], [-53.10359867481151, -27.154401899596394], [-53.07074955246465, -27.141789594427806], [-53.030473672021984, -27.137526898952693], [-52.994240760483564, -27.163388716345494], [-52.95284427452941, -27.178923384906845], [-52.900197788146116, -27.176682173883854], [-52.82639163298688, -27.189492232966188], [-52.74156619029792, -27.245742235112033], [-52.6364929441022, -27.259475145792123], [-52.51072145492941, -27.230449265778645], [-52.414646011811286, -27.236293992564114], [-52.34804688817701, -27.276350146435902], [-52.30439820487129, -27.2830957521619], [-52.264792490469816, -27.2772510253765], [-52.22857056525994, -27.29254399470988], [-52.19234864005006, -27.280854541138964], [-52.1392407278679, -27.28331547873284], [-52.05958984592321, -27.31348393691492], [-51.98422363211071, -27.376699271357644], [-51.912900387202455, -27.47254400157633], [-51.873294672800995, -27.509458065484495], [-51.75359862331311, -27.51191900307839], [-51.70162230297095, -27.488078670137682], [-51.64469114845545, -27.4997681237086], [-51.58236570662484, -27.547470762247087], [-51.53016965971182, -27.56885015759387], [-51.487641581917615, -27.564126036319912], [-51.40641965499111, -27.61316900694075], [-51.2867236055032, -27.71622076868431], [-51.190417449485665, -27.78123786100832], [-51.11729244669618, -27.807802803427933], [-50.96586788037291, -27.959458082650634], [-50.73614375051588, -28.235983972105508], [-50.57752313899624, -28.38627694658873], [-50.44656610275061, -28.422048432328303], [-50.23304680749612, -28.468630465355268], [-50.15496697053325, -28.473794039770993], [-50.141025319610776, -28.452876070223034], [-50.06879020943336, -28.444328706615693], [-49.938525311886025, -28.448151948949075], [-49.839066079576355, -28.465246676163645], [-49.73669547020245, -28.51136728339179], [-49.708120029659256, -28.530263768487643], [-49.699122226581636, -28.597104591349918], [-49.797449867051284, -28.623867287683332], [-49.846492837672145, -28.695432231819552], [-49.95359855464852, -28.79351817306125], [-49.94482047814179, -28.949897573557898], [-50.00714591997246, -29.101552852780515], [-50.069691088373986, -29.092763789945316], [-50.16352532046909, -29.195376098547165], [-50.16801872884366, -29.28469494961064], [-50.05191520878964, -29.356018194518924], [-50.0339196026344, -29.320466435350227], [-50.07869987778014, -29.244419069168003], [-49.95359855464852, -29.195376098547115], [-49.86877311195957, -29.21765637283459], [-49.8152147603071, -29.271203738158505], [-49.71284415093322, -29.324531376911544], [-49.74592398617949, -29.363225226043852], [-50.03324943659322, -29.801074363840215], [-50.29941521823099, -30.425669114229116], [-50.62004023046188, -30.897729679111798], [-50.74807490331477, -31.06803974420236], [-50.921318318126595, -31.258388872557354], [-51.151723600353364, -31.480466517747693], [-51.46041745978536, -31.70232443636715], [-51.79814818555937, -31.90032004938884], [-51.92031615896971, -31.989638900452327], [-52.03912231584556, -32.114751209912484], [-52.06904907479968, -32.0630056024698], [-52.04316528474979, -31.977488021082557], [-52.05958984592321, -31.91337180769922], [-52.06319336168568, -31.83035910922004], [-51.99502319306956, -31.815044167229566], [-51.89309203683746, -31.867690653612875], [-51.841115716495324, -31.831919167873302], [-51.80332274630365, -31.796609107932575], [-51.68069334709446, -31.774548560216033], [-51.44624509596346, -31.557414762870536], [-51.27208981588248, -31.47686300198523], [-51.17422360121168, -31.339841512383273], [-51.15756832713882, -31.266716509593778], [-51.16139156947216, -31.118906445361525], [-51.106042446267026, -31.08133320174072], [-50.98004024419478, -31.09414326082313], [-50.954398153372864, -31.05206562249925], [-50.9654174409026, -31.005505562129372], [-50.94089595559217, -30.903794132468136], [-50.770124464702775, -30.813354675893144], [-50.689341990918024, -30.704216488136105], [-50.716346386479415, -30.4258888408], [-50.68506830911437, -30.413518234859346], [-50.6148656697176, -30.4569581779227], [-50.582016547370756, -30.43894059911038], [-50.54646478820206, -30.316772625700047], [-50.56357050174523, -30.253557291257323], [-50.64614374708265, -30.236902017184477], [-50.93189815251455, -30.37436295992819], [-51.02504024591141, -30.368737959713613], [-51.04034420157333, -30.26052262355428], [-51.17939816195593, -30.211018227134588], [-51.23361569332104, -30.12147964950021], [-51.24982052792359, -30.06004410028163], [-51.297973605932356, -30.034841462601477], [-51.29504025621108, -30.14105728696579], [-51.28176877132981, -30.244109048709397], [-51.15734860056793, -30.364255537667624], [-51.18749508609292, -30.411958176206085], [-51.246667451631424, -30.467527025982122], [-51.287624484443825, -30.591277030702805], [-51.28312008974075, -30.751479673532806], [-51.31641965155788, -30.702656429482843], [-51.35916745592297, -30.674531428409963], [-51.37649289603701, -30.84686297795264], [-51.45906614137442, -30.912802921874295], [-51.485169657995186, -30.977600287627368], [-51.4635705360775, -31.05274677486898], [-51.50631834044259, -31.10449238231167], [-51.716915272304334, -31.24377705559371], [-51.9268420381249, -31.33894063344266], [-51.97252319221127, -31.383720908588394], [-51.99479248017013, -31.48991476029562], [-52.02697143647579, -31.59905294805266], [-52.11989380330175, -31.694897678271346], [-52.19346924556156, -31.885466533197217], [-52.191447761109444, -31.967600325392873], [-52.167146002369904, -32.088427966720836], [-52.12732056139755, -32.16785912209464], [-52.19009644269852, -32.220725335048826], [-52.27469117248805, -32.32377709679244], [-52.341740735592666, -32.43963891761847], [-52.50846925757786, -32.87524684439184], [-52.65224733923442, -33.13782009659572], [-52.76294558564473, -33.26629422259037], [-52.92089603112319, -33.40197538010994], [-53.3706653353899, -33.74217802980639], [-53.39766973095128, -33.73723418196155], [-53.463598688544394, -33.70976836060131], [-53.518947811749555, -33.677138964825346], [-53.5313184176902, -33.65553984290766], [-53.53762457027452, -33.62293241978878], [-53.53041753874959, -33.500303020579594], [-53.5313184176902, -33.17088894551344], [-53.51197149312405, -33.108574490011335], [-53.482945613110545, -33.06851833613956], [-53.395197807028865, -33.01024684954168], [-53.310141651440475, -32.92699245183453], [-53.214066208322365, -32.82101832669819], [-53.12564823619948, -32.736643323479534], [-53.15736576670629, -32.680173594762884], [-53.231171921865524, -32.625505623927474], [-53.36279912415233, -32.5811648019235], [-53.489471492265736, -32.503315677860044], [-53.601740783657846, -32.40296655293828], [-53.653717103999966, -32.29879418568317], [-53.701200015967544, -32.18629418139163], [-53.74665045715447, -32.0974147834699], [-53.76172369991697, -32.05691917645637], [-53.80604254926385, -32.039824449241756], [-53.876464915231495, -31.994604720954264], [-53.92057502433603, -31.952307356059492], [-53.98514167718969, -31.928225323890835], [-54.10034431830307, -31.901440654900334], [-54.220490807261285, -31.85510032110134], [-54.36989388913244, -31.745083227060768], [-54.47766977215001, -31.622673554422462], [-54.530997410903055, -31.541902066966273], [-54.58769785251913, -31.485190639021653], [-54.89594127248081, -31.391147666684198], [-55.03611583837491, -31.279109088191518], [-55.09124523500918, -31.31397969499048], [-55.17359875377572, -31.279548541333284], [-55.2545899678028, -31.22553975021051], [-55.27889172654233, -31.184143264256356], [-55.31332288019952, -31.14162617279071], [-55.34549085017663, -31.093022655311636], [-55.36596936658283, -31.046220895713788], [-55.449674203760296, -30.964548529316986], [-55.55721937387844, -30.87588885796614], [-55.60312025453567, -30.850708192943074], [-55.627191300375785, -30.85811297838179], [-55.6505921801747, -30.89210467889722], [-55.665214983466896, -30.924953801244065], [-55.70594130337986, -30.94655292316176], [-55.756346578740164, -30.987048530175294], [-55.80787245961197, -31.03677265316587], [-55.87357070430566, -31.069621775512708], [-55.952089994410315, -31.080871775941866], [-56.00474746712216, -31.079289744631517], [-56.015547028081, -31.059734079823023], [-56.01846939147373, -30.991772651449253], [-55.998891754008156, -30.83719500883383], [-56.044792634665384, -30.77758319015357], [-56.10576675808511, -30.71366473068403], [-56.1762001103813, -30.628388848524764], [-56.40727555864926, -30.447487962717688], [-56.72159441829582, -30.18695816762302], [-56.83274310417643, -30.107307285678324], [-56.93714618433097, -30.101001133094016], [-57.03277118797878, -30.109987949843088], [-57.12051899406046, -30.144419103500283], [-57.18689839112389, -30.264807291686473], [-57.21434223982703, -30.283484050211435], [-57.38377339863408, -30.28078141338959], [-57.552292692171946, -30.26120377592401], [-57.60899313378802, -30.18785904656363], [-57.56377340550053, -30.1399147087972], [-57.40514180765234, -30.033940583660858], [-57.31739400157065, -29.939458158181644], [-57.30074971382635, -29.856643213616252], [-57.22469136131558, -29.782177878744378], [-57.08924091669542, -29.716237934822715], [-56.93871722931277, -29.59475111378211], [-56.77245013312644, -29.41789319687927], [-56.67141985583494, -29.287397586432505], [-56.63586809666624, -29.20302258321385], [-56.570620291442864, -29.138005490889896], [-56.47589616673568, -29.092544063374433], [-56.393322921398266, -28.997380485525483], [-56.32245011596031, -28.852470812028862], [-56.22547379390157, -28.737268170915485], [-56.10284439469238, -28.651772562185336], [-56.03422378660596, -28.58088877041883], [-56.01958999698523, -28.524638768273064], [-55.984950103085694, -28.488647555962608], [-55.930271145921736, -28.472893160830374], [-55.90371718983066, -28.443208101104233], [-55.90551894771188, -28.399548431469995], [-55.890445704949386, -28.37008309831473], [-55.858947901013465, -28.35410897661162], [-55.80607070173075, -28.3597339768262], [-55.732044820000624, -28.386716399730496], [-55.687275531183445, -28.38155282531477], [-55.67197157552151, -28.344880460634577], [-55.6915492129871, -28.302802822310696], [-55.74599745725163, -28.255539636913994], [-55.72551894084543, -28.204013756042194], [-55.58242201155859, -28.121001057563006], [-55.47666761299314, -28.089272540727663], [-55.409848762787945, -28.037746659855856], [-55.34639172911726, -27.956074293459054], [-55.24379040684394, -27.898923412372667], [-55.10159435649773, -27.866755442395558], [-55.06379039997749, -27.835927804500827], [-55.06896496072176, -27.796333076427906], [-55.03995006703681, -27.767746649556173], [-54.955794790389035, -27.74726813314998], [-54.91012462263123, -27.708574284017672], [-54.902697864535426, -27.651862856073052], [-54.875693468974035, -27.59921636968975], [-54.82912242227562, -27.550612852210676], [-54.77714610193351, -27.53239751948456], [-54.719775494276234, -27.544987851996098], [-54.665766703153466, -27.526552792699107], [-54.61537241412171, -27.477048396279415], [-54.55484873017228, -27.45410894227934], [-54.48441537787609, -27.45725103224295], [-54.4481934526662, -27.446440484955566], [-54.32691537186794, -27.423501030955492], [-54.26009652166276, -27.38210454500134], [-54.20519783792791, -27.289621631317146], [-54.156374593877956, -27.253850145577573], [-54.113846516083754, -27.274768115125532], [-54.04004036092452, -27.243720750659918], [-53.935417554199105, -27.161147505322504] ] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#a00", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [-47.745287, -15.923726] } }, { "type": "Feature", "properties": { "medianCandidates": [ [-47.717392, -15.325783], [-47.625268, -14.77049], [-47.486291, -14.239613], [-47.3428, -13.830916], [-47.225066, -13.537914], [-47.138475, -13.335262], [-47.078171, -13.198161], [-47.037397, -13.106737], [-47.010288, -13.046354], [-46.992443, -13.006728] ], "marker-color": "#0a0", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [-46.980766, -12.980834] } }, { "type": "Feature", "properties": { "marker-color": "#00a", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [-54.403759, -14.242099] } }, { "type": "Feature", "properties": { "marker-color": "#aaa", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [-54.363435, -11.529937] } } ] } ================================================ FILE: packages/turf-center-median/test/out/brazil-states.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "population": 790, "fill": "#fff" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-66.62767023563575, -9.925465695489663], [-66.73004084500963, -9.975431517708216], [-67.11142025408935, -10.269052134377702], [-67.19040096999285, -10.311349499272467], [-67.28040097342608, -10.317194226057921], [-67.33281674690996, -10.357931532299432], [-67.41697202355772, -10.389879775705666], [-67.58234922713199, -10.505983295759663], [-67.66672423035064, -10.598905662585608], [-67.72184264065636, -10.68303896657629], [-67.78575011379736, -10.685983302626113], [-67.83502379731763, -10.662802149398075], [-67.99162292438517, -10.674491602968985], [-68.07172424580017, -10.703078029840725], [-68.15857117294124, -10.784970122808403], [-68.2665667825297, -10.933021886268634], [-68.311116344776, -10.975099524592522], [-68.39797425824561, -11.018737221569666], [-68.49832338316737, -11.05475040653721], [-68.62274355392925, -11.109198650801744], [-68.67832339003384, -11.112802166564208], [-68.72759707355411, -11.122470135683017], [-68.76989443844887, -11.09772892380171], [-68.78406680227076, -11.044621011619554], [-68.84842471488206, -11.011090736902972], [-69.00165103908655, -10.99445743548722], [-69.22844181922231, -10.955741613697825], [-69.46245061721154, -10.948095129031131], [-69.578543150937, -10.951698644793595], [-69.67394842801392, -10.954181555044556], [-69.8397760710585, -10.933483312067494], [-69.96037299948702, -10.92987979630503], [-70.06634712462336, -10.982526282688326], [-70.22002388829817, -11.047543375012282], [-70.29044625426582, -11.064198649085128], [-70.34197213513762, -11.066681559336104], [-70.3923664241694, -11.05857364887055], [-70.4508686236667, -11.02482364758309], [-70.53322214243323, -10.946974523519643], [-70.5964484632045, -10.976901282473747], [-70.64234934386172, -11.01018985796236], [-70.64144846492111, -10.84078067181241], [-70.64031687308108, -10.586073630846116], [-70.63941599414046, -10.361293348833925], [-70.63852610152838, -10.18151306853835], [-70.63762522258777, -9.971828001945752], [-70.63694407021804, -9.823776238485522], [-70.59374582638266, -9.767526236339762], [-70.56719187029158, -9.704530628467907], [-70.59915110002635, -9.62059507839102], [-70.59217478140084, -9.543427106697308], [-70.57012522001286, -9.489879741373386], [-70.54109933999935, -9.437452981560966], [-70.60791819020453, -9.463776224752607], [-70.63694407021804, -9.478168315145382], [-70.67249582938673, -9.518004742446266], [-70.75844187758719, -9.571771834341064], [-70.8162739110433, -9.625319199664986], [-70.88444407965942, -9.668978869299224], [-70.97084056733017, -9.765724478458523], [-71.04172435909668, -9.81883239064068], [-71.11529980135649, -9.852340692700167], [-71.23791821423713, -9.965983275160283], [-71.33939893099894, -9.988483276018599], [-71.6080476228877, -10.006017456374977], [-71.8874958757353, -10.005578003233211], [-72.1428730827428, -10.005116577434364], [-72.1815669318751, -10.003776245351972], [-72.17909500795267, -9.91017272615629], [-72.17279984169691, -9.844013055663751], [-72.25986649540886, -9.77427184206583], [-72.26572220852286, -9.688556506764797], [-72.28912308832179, -9.629142441998326], [-72.3181489683353, -9.556698591578566], [-72.37912309175502, -9.510116558551601], [-72.46484941338458, -9.492120952396377], [-72.60547441874901, -9.452064798524603], [-72.81426959272953, -9.410448585999575], [-73.01384723706157, -9.407526222606847], [-73.20937092616083, -9.411349464940187], [-73.08989460324379, -9.265780611730932], [-72.97041828032677, -9.120189785864582], [-72.97402179608923, -8.993077964609398], [-73.07054767867764, -8.882819171340856], [-73.12252399901976, -8.81397883668356], [-73.20307575990506, -8.719254711976376], [-73.30252400588621, -8.65399592042445], [-73.35674153725132, -8.566918280383945], [-73.35179768940648, -8.51427179400065], [-73.36034505301379, -8.479401187201688], [-73.39814900953402, -8.458922670795488], [-73.43594197972571, -8.426974427389268], [-73.48814901296724, -8.392103820590307], [-73.54912313638698, -8.345741514134218], [-73.54912313638698, -8.299401180335224], [-73.57229330328647, -8.249896783915531], [-73.61009725980671, -8.191845023888533], [-73.61009725980671, -8.145504690089538], [-73.64496786660567, -8.072819140441808], [-73.68277182312589, -8.020612107200265], [-73.7203450667467, -7.985741500401318], [-73.77569418995185, -7.936478803209596], [-73.77277182655912, -7.895741496968085], [-73.73204550664616, -7.875504679789856], [-73.71450033996123, -7.828922646762891], [-73.7203450667467, -7.78258231296391], [-73.76691611344512, -7.753556432950404], [-73.82204551007939, -7.738922643329673], [-73.89472007339857, -7.654767366681895], [-73.94691612031157, -7.611129669704752], [-73.98179771343908, -7.585026153083987], [-74.00204551694584, -7.556000273070481], [-73.98179771343908, -7.535741483235171], [-73.95839683364015, -7.506715603221679], [-73.95277183342557, -7.460375269422684], [-73.9642415604256, -7.416715599788446], [-73.9642415604256, -7.378922629596758], [-73.92937095362666, -7.367233176025834], [-73.89179771000585, -7.373077902811303], [-73.85399375348561, -7.349896749583266], [-73.80472006996536, -7.34112965940507], [-73.7493709467602, -7.33526295996252], [-73.7203450667467, -7.309181415998836], [-73.72326743013943, -7.262819109542761], [-73.75814902326692, -7.172819106109529], [-73.79301963006588, -7.13502613591784], [-73.79684287239924, -7.116788830534645], [-72.66352617877601, -7.592672637750681], [-70.37325021250267, -8.155172659208347], [-69.80646552291279, -8.454198549521536], [-66.82859919837871, -9.838168328878282], [-66.62767023563575, -9.925245968918787], [-66.62767023563575, -9.925465695489663] ] ] ] } }, { "type": "Feature", "properties": { "population": 1749, "fill": "#fff" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-66.62767023563575, -9.925465695489663], [-66.62767023563575, -9.925245968918787], [-66.82859919837871, -9.838168328878282], [-66.74377375568974, -9.748849477814787], [-66.69471979874037, -9.748849477814787], [-66.59662287117014, -9.664013048797287], [-66.50279962540357, -9.63274595776079], [-66.4046917115048, -9.52565122711296], [-66.39569390842718, -9.405043312355886], [-66.10544609462073, -9.418556496465115], [-65.99834037764435, -9.400780616880766], [-65.93129081453974, -9.414052101762039], [-65.76614432386489, -9.56592710755561], [-65.6768254728014, -9.534638043862032], [-65.6322759105551, -9.449823587501612], [-65.52517019357872, -9.414052101762039], [-65.44484914559283, -9.445319192798536], [-65.41807546293087, -9.391771827474614], [-65.221650894891, -9.257892427836268], [-65.19915089403268, -9.266681490671544], [-65.17236622504218, -9.373995947890265], [-65.0920451770563, -9.436332376049464], [-65.03849781173238, -9.400780616880766], [-64.90461841209404, -9.213112152690542], [-64.92689868638146, -9.11953060615194], [-64.88662280593881, -9.061478846124942], [-64.77951708896242, -8.985431479942704], [-64.69019823789894, -9.021202965682278], [-64.59659471870324, -9.025707360385354], [-64.47599779027472, -8.949879720774021], [-64.4179460302477, -8.972138022404351], [-64.38217454450813, -8.940870931367854], [-64.21701706750476, -8.949879720774021], [-64.11892013993453, -8.936366536664778], [-64.12769821644126, -8.68640558962953], [-64.07415085111734, -8.713168285962936], [-63.99832321150599, -8.681901194926454], [-63.92249557189466, -8.53453058383596], [-63.993818816802914, -8.440927064640263], [-63.91799117719157, -8.333832333992419], [-63.75284468651674, -8.284547664143616], [-63.72607100385477, -8.19094414494792], [-63.59197187764555, -8.1641814486145], [-63.587698195841895, -8.079345019597], [-63.538424512321626, -7.9987932587117], [-62.90459025962714, -8.007802048117853], [-62.82877360634434, -8.016788864866925], [-62.721448162797074, -8.061349413441775], [-62.67689860055077, -8.114896778765697], [-62.63662272010812, -8.222233208641498], [-62.5562906857937, -8.289052058846693], [-62.5385257925379, -8.36059503032584], [-62.45370034984893, -8.347103818873691], [-62.373368315534506, -8.382875304613265], [-62.3063187524299, -8.570302069575533], [-62.172450339120104, -8.610577950018182], [-62.13217445867744, -8.766715651286859], [-61.99829505903911, -8.811495926432599], [-61.91797401105322, -8.873832354591784], [-61.873424448806915, -8.856056475007449], [-61.837641976738794, -8.744457349656528], [-61.761825323455994, -8.72668147007218], [-61.71704504831027, -8.68640558962953], [-61.609950317662424, -8.722177075369103], [-61.609950317662424, -8.766715651286859], [-61.50734899538912, -8.847047685601282], [-61.48484899453082, -8.914108235034448], [-61.529618283348, -8.998922691394853], [-61.55639196600997, -9.128297696330122], [-61.529618283348, -9.22662533679977], [-61.592174438078075, -9.239896821681043], [-61.609950317662424, -9.320448582566343], [-61.54739416293235, -9.409547707058962], [-61.551898557635425, -9.463095072382885], [-61.48057531272717, -9.63725035246388], [-61.520620480270395, -9.704288929239937], [-61.56540075541612, -9.726569203527362], [-61.520620480270395, -9.860448603165707], [-61.53412267805108, -9.994547729374943], [-61.569674437219774, -10.061366579580124], [-61.56540075541612, -10.26230652865162], [-61.471566523321, -10.436439836075536], [-61.502844600686046, -10.686422755767879], [-61.471566523321, -10.757746000676136], [-61.520620480270395, -10.789013091712633], [-61.50734899538912, -10.878353915433223], [-61.520620480270395, -10.954181555044556], [-61.471566523321, -10.998939857533202], [-60.440400712500775, -11.003444252236292], [-60.440400712500775, -11.038996011404976], [-60.38234895247378, -11.10155216613505], [-60.27951691730104, -11.079271891847625], [-60.17691559502774, -11.11954777229029], [-60.069820864379906, -11.115043377587199], [-60.00277130127529, -11.14633244128079], [-59.908948055508716, -11.38280217686389], [-60.025040589234166, -11.534677182657461], [-60.10109894174494, -11.601496032862656], [-60.10109894174494, -11.74436224925006], [-60.06082306130229, -11.905246044449797], [-59.98499542169094, -11.918517529331055], [-59.93144805636702, -12.0523969289694], [-59.88666778122129, -12.128444295151638], [-59.89117217592437, -12.244547815205635], [-59.82412261281975, -12.387194305022163], [-59.908948055508716, -12.619401345130157], [-60.00277130127529, -12.731000470481078], [-60.04304718171794, -12.873866686868496], [-60.083092349261165, -12.927414052192404], [-60.194691474612085, -12.972194327338144], [-60.270749827122856, -13.070302241236917], [-60.27502350892651, -13.137340818012973], [-60.35107087510873, -13.271220217651319], [-60.38234895247378, -13.418590828741813], [-60.659094568499526, -13.601513199001005], [-60.72479281319322, -13.662948748219577], [-60.914471775507025, -13.561479017786311], [-61.076915629360016, -13.489694347079194], [-61.12912266260156, -13.49848340991447], [-61.415997673544965, -13.526608410987365], [-61.511622677192776, -13.541220227951001], [-61.57574987690465, -13.524806653106126], [-61.78995032452889, -13.525707532046738], [-61.874094614848104, -13.47035840884159], [-61.944747693715186, -13.406220222801167], [-62.09482094162752, -13.241974611066937], [-62.11799110852702, -13.159840818871288], [-62.17604286855402, -13.133737302250523], [-62.26402138753514, -13.143646970597288], [-62.35290078545687, -13.13239697016813], [-62.525474034227514, -13.064215815223477], [-62.68701700913988, -12.99425487505468], [-62.76554728557308, -12.99717723844742], [-62.83506877260011, -12.953737295384059], [-62.95791789838019, -12.847103990535075], [-63.015299492366, -12.805465805352952], [-63.041392022658215, -12.750358381375776], [-63.067495539278994, -12.669125468120725], [-63.11676922279926, -12.651569315107267], [-63.180665709611716, -12.666203104727998], [-63.24974774349698, -12.70781931725304], [-63.34672406555572, -12.680155741979007], [-63.46529950953213, -12.605228981308272], [-63.54179731518467, -12.546715795482427], [-63.58566572506123, -12.519052220208394], [-63.68849776023397, -12.478095187396008], [-63.788165732786, -12.469547823788702], [-63.93846969359777, -12.529621068267815], [-64.06154953227727, -12.505099582957385], [-64.25504075059587, -12.48328073446882], [-64.42041795417013, -12.439840791405459], [-64.48072191154867, -12.326220181602437], [-64.5133403209961, -12.251073694360826], [-64.61166796146574, -12.20383248162122], [-64.6899675249995, -12.146439901306863], [-64.78334033129578, -12.059362261266358], [-64.82992236432274, -12.030358353909946], [-64.9142973675414, -12.006056595170406], [-64.99259693107516, -11.975228957275675], [-65.00114429468246, -11.920099560641404], [-65.03017017469595, -11.847414010993674], [-65.03714649332146, -11.82941840483845], [-65.09024341917507, -11.741220159286456], [-65.1152153439558, -11.735155705930111], [-65.1426701789875, -11.752250433144724], [-65.16336842196456, -11.76508246488423], [-65.18564869625199, -11.749547796322872], [-65.18969166515622, -11.710172794820835], [-65.17529957476346, -11.646957460378118], [-65.20611622632964, -11.58057806331469], [-65.28217457884041, -11.511056576287658], [-65.32200001981276, -11.43927190558054], [-65.32559254924668, -11.364806570708666], [-65.34246754989042, -11.315082447718083], [-65.37284474831483, -11.289879810037931], [-65.38995046185799, -11.246220140403707], [-65.39354299129191, -11.184345138043355], [-65.37149342990391, -11.110319256313247], [-65.32379079136545, -11.02482364758309], [-65.33392018628311, -10.892746005825984], [-65.40232106779864, -10.714767483411634], [-65.43989431141945, -10.586293357416992], [-65.44709035661583, -10.507323627842041], [-65.43697194802671, -10.449052141244152], [-65.39534474917313, -10.392340713299532], [-65.3129912304066, -10.253078012674592], [-65.29859914001383, -10.14686218831028], [-65.32447194373518, -10.026957398580024], [-65.32807545949764, -9.935595090407318], [-65.30939870097268, -9.872599482535477], [-65.33797414151587, -9.790245963768939], [-65.39624562811376, -9.712396839705491], [-65.43674123512729, -9.710375355253376], [-65.49209035833245, -9.731754750600174], [-65.55870046829529, -9.797452995293867], [-65.63721975839994, -9.80914244886479], [-65.70674124542697, -9.768427115280375], [-65.92477592171309, -9.785521842494987], [-66.26361626667007, -9.826017449508512], [-66.39929742418964, -9.868095087832401], [-66.47894830613433, -9.886090693987626], [-66.57524347582333, -9.899823604667745], [-66.62767023563575, -9.925465695489663] ] ] ] } }, { "type": "Feature", "properties": { "population": 497, "fill": "#fff" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-58.86877345528232, 0.224275902629742], [-59.77057524749584, 0.228780297332833], [-60.025040589234166, 0.224275902629742], [-60.127872624406905, 0.13067238343406], [-60.16791779195013, 0.005582046630991], [-60.21697174889951, -0.043482896646935], [-60.252743234639084, -0.15057762729478], [-60.31079499466608, -0.235392083655199], [-60.31529938936916, -0.306957027791427], [-60.38662263427743, -0.463094729060117], [-60.39111604265196, -0.521146489087116], [-60.31529938936916, -0.619474129556764], [-60.306290599963006, -0.673021494880686], [-60.33756867732805, -0.704288585917183], [-60.46717439516273, -0.740082044313837], [-60.516217365783575, -0.829181168806457], [-60.6410989623443, -0.86044825984294], [-60.73492220811087, -0.851681169664758], [-60.815243256096764, -0.686292979761944], [-60.90457309348879, -0.610465340150597], [-60.93134677615076, -0.556917974826689], [-61.060721781086016, -0.530155278493268], [-61.10549106990321, -0.4943618200966], [-61.221594589957206, -0.498866214799691], [-61.24387486424463, -0.547931158077617], [-61.45807531186885, -0.637250009141113], [-61.53412267805108, -0.726568860204608], [-61.578672240297394, -0.945262716203359], [-61.560896360713045, -1.021332055042677], [-61.5741678455943, -1.14169827057178], [-61.61894812074004, -1.275797396781002], [-61.619848999680656, -1.449491251063151], [-61.71727576120969, -1.401129432812041], [-61.798497688136194, -1.388736854214301], [-61.880840220574186, -1.389198280013161], [-61.87769813061057, -1.369400915976698], [-61.93574989063757, -1.244530305744519], [-62.02957313640414, -1.146202665274856], [-62.14117226175506, -1.065870630960433], [-62.2037174301566, -1.043590356673008], [-62.24377358402836, -0.981056174600027], [-62.31531655550751, -0.945262716203359], [-62.41791787778082, -0.829181168806457], [-62.50724771517285, -0.771129408779444], [-62.47596963780782, -0.695301769168111], [-62.3778727102376, -0.717582043455536], [-62.31082314713298, -0.641754403844189], [-62.3198209502106, -0.521146489087116], [-62.36887490715998, -0.467599123763193], [-62.373368315534506, -0.342728513531], [-62.40464639289955, -0.271163569394773], [-62.47596963780782, -0.222120598773927], [-62.511741123547395, -0.123792958304278], [-62.569792883574394, -0.047965318692931], [-62.578790686652, 0.018853531512249], [-62.5250235947572, 0.094900897694487], [-62.56529947519985, 0.17523293200891], [-62.569792883574394, 0.246556176917167], [-62.53402139783482, 0.313605740021785], [-62.52951700313173, 0.429698273747235], [-62.4894718355885, 0.487750033774233], [-62.48496744088543, 0.541297399098156], [-62.5385257925379, 0.675176798736501], [-62.53402139783482, 0.7332285587635], [-62.44469156044278, 0.804782516571194], [-62.511741123547395, 0.960931204168418], [-62.51624551825047, 1.059247858309519], [-62.6143424458207, 1.362778143325784], [-62.623340248898316, 1.416325508649706], [-62.721448162797074, 1.49665754296413], [-62.78849772590169, 1.603752273611974], [-62.712670086290345, 1.73763167325032], [-62.730445965874694, 1.831454919016892], [-62.69040079833147, 1.911775967002768], [-62.70816569158727, 1.947547452742342], [-62.84654948592869, 2.018881683979146], [-63.002698173525914, 2.018881683979146], [-63.123295101954454, 2.112704929745718], [-63.15006878461641, 2.179754492850336], [-63.306448185113055, 2.16625229506964], [-63.393745551724436, 2.224073342197215], [-63.3748490666286, 2.340407575150635], [-63.38924115702136, 2.411950546629782], [-63.584545119549745, 2.434000108017784], [-63.71256880607409, 2.434000108017784], [-63.92406661687646, 2.45245713997187], [-64.02486618126854, 2.481922473127128], [-64.04669601608565, 2.502400989533328], [-64.04871750053776, 2.525131703291052], [-64.02870040993042, 2.575976431793123], [-64.00912277246485, 2.671832148340357], [-64.03769821300803, 2.801426879846503], [-64.14344162524495, 3.00482776651188], [-64.21881882538598, 3.204625137414794], [-64.22871750740421, 3.343898824368296], [-64.22714646242241, 3.491280421787323], [-64.22107102273753, 3.587355864905447], [-64.27529954043118, 3.662733065046481], [-64.56801927816005, 3.89987296667077], [-64.66904955545155, 4.011702804921114], [-64.70256884383959, 4.089332202413701], [-64.81777148495297, 4.232198418801104], [-64.78874560493946, 4.276077815006218], [-64.72236620787605, 4.274506770024416], [-64.66544603968909, 4.237153252974494], [-64.6137004322464, 4.15773308392923], [-64.57634691519648, 4.139957204344881], [-64.52549120036586, 4.139957204344881], [-64.2557219029656, 4.140407643815195], [-64.19249558219434, 4.126905446034499], [-64.15424118620379, 4.100131763372545], [-64.12162277675638, 4.067051928126276], [-64.0734696987476, 3.974349287871192], [-64.0214933784055, 3.9291295595837], [-63.91461837432854, 3.930700604565502], [-63.74699995973127, 3.932502362446741], [-63.652946001065274, 3.940829999483157], [-63.596695998919515, 3.914957195761815], [-63.52672407242217, 3.893797526985892], [-63.37979291447344, 3.942851483935272], [-63.338616155090165, 3.943983075775321], [-63.2947477452136, 3.922153240958195], [-63.136116147365414, 3.756556310813053], [-63.04521526499157, 3.686573397987161], [-62.96871745933903, 3.593881744060639], [-62.856898607417236, 3.593431304590325], [-62.764646406632465, 3.672851473635589], [-62.73989420842261, 3.940379560012857], [-62.712219646820046, 4.017997971176882], [-62.66541788722219, 4.039608079423118], [-62.60984903744617, 4.042299729916422], [-62.54392007985305, 4.084377368240311], [-62.47259683494478, 4.138605885933956], [-62.41072183258443, 4.156832204988618], [-62.153092428225406, 4.098330005491306], [-62.08154945674626, 4.126224293664762], [-61.82076697609507, 4.197108085431267], [-61.55415075498696, 4.287778254905689], [-61.47944372088712, 4.402299743649337], [-61.36762486896532, 4.432907654973178], [-61.28009678945452, 4.516832218721532], [-61.209443710587436, 4.508054142214789], [-61.10234897993959, 4.504681339351762], [-61.0362002957756, 4.519304142643946], [-61.00290073395844, 4.535278264347056], [-60.966448095849145, 4.574653265849093], [-60.906144138470594, 4.686702830670328], [-60.83346957515141, 4.729230908464515], [-60.741667813836955, 4.774230910181132], [-60.67912264543541, 4.827108109463865], [-60.627596764563606, 4.892575641258119], [-60.60374544529438, 4.949276082874206], [-60.60441561133557, 4.994506797490246], [-60.635023522659424, 5.082023890672502], [-60.671915613910485, 5.164377409439041], [-60.71197176778226, 5.191601531571308], [-60.742118253307254, 5.201950653059839], [-60.65144808383285, 5.221077851055114], [-60.57652132316211, 5.192502410511921], [-60.4595169241675, 5.187998015808844], [-60.40889192223631, 5.210047577196846], [-60.33509675340562, 5.199248016238002], [-60.241723947109364, 5.257980928634737], [-60.18165070263025, 5.238853730639462], [-60.142044988228776, 5.238853730639462], [-60.10604278958978, 5.19430416839316], [-60.07814850141632, 5.143898893032841], [-59.99062042190552, 5.082924769613115], [-59.99939849841225, 4.989782676216279], [-60.01537262011537, 4.907429157449741], [-60.026842347115405, 4.812705032742556], [-60.03179718128878, 4.740480908893673], [-60.06891998543928, 4.666674753734441], [-60.124499821543864, 4.597603706177708], [-60.14092438271729, 4.569698431675718], [-60.14857086738398, 4.533256779894955], [-60.111217350334044, 4.511207218506954], [-60.04506866617005, 4.504681339351762], [-59.96227569426175, 4.501747989630488], [-59.90602569211599, 4.480379580612222], [-59.833340142468245, 4.475875185909146], [-59.74582304928599, 4.416702820370645], [-59.7032949714918, 4.381151061201948], [-59.69969145572934, 4.353476499599381], [-59.72759673023134, 4.287547542006266], [-59.73861601776106, 4.226804131485963], [-59.716797169272496, 4.188099296025115], [-59.69114409212203, 4.160424734422534], [-59.62027128668407, 4.023172531921148], [-59.586521285396614, 3.975480879711242], [-59.557715131954, 3.959957197478431], [-59.55120023912734, 3.933622967958229], [-59.57549101153833, 3.883448405497347], [-59.60451689155184, 3.819782631584317], [-59.67021513624553, 3.752733068479714], [-59.67899321275226, 3.699855869196981], [-59.7316506854641, 3.666556307379821], [-59.85449981124418, 3.587575591476323], [-59.83312041589737, 3.462254541773831], [-59.828846734093716, 3.398577781532254], [-59.831098931445254, 3.349304098011984], [-59.87294585686972, 3.283155413847993], [-59.9456204201889, 3.087851451319608], [-59.97239410285087, 2.990424689790572], [-59.995794982649784, 2.765424681207506], [-59.99444366423886, 2.690047481066472], [-59.9606936629514, 2.58835802406233], [-59.88959014461402, 2.362907576008951], [-59.84909453760048, 2.32712510394083], [-59.75527129183391, 2.274028178087221], [-59.74357085193445, 2.121702732823337], [-59.75166777607144, 1.962400968933963], [-59.75617217077453, 1.900525966573611], [-59.74064848854172, 1.874202723381956], [-59.698570850217834, 1.861381677970996], [-59.66842436469284, 1.842254479975736], [-59.66370024341887, 1.795232993807005], [-59.6666226068116, 1.746179036857626], [-59.59665068031427, 1.718054035784732], [-59.535665570565996, 1.70004744330096], [-59.47941556842022, 1.632327714155167], [-59.37771512508753, 1.527254467959438], [-59.33721951807401, 1.508127269964163], [-59.31697171456723, 1.464698313229363], [-59.231245392937666, 1.376049628207056], [-59.100299343020595, 1.343650945330523], [-58.968441427834364, 1.304506656727909], [-58.96641994338225, 1.302474185947247], [-58.86877345528232, 0.224275902629742] ] ] ] } }, { "type": "Feature", "properties": { "population": 3874, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-66.82859919837871, -9.838168328878282], [-69.80646552291279, -8.454198549521536], [-70.37325021250267, -8.155172659208347], [-72.66352617877601, -7.592672637750681], [-73.79684287239924, -7.116788830534645], [-73.80472006996536, -7.079896739283569], [-73.77637534232159, -6.973483161005475], [-73.75814902326692, -6.905741459202574], [-73.69447226302536, -6.83373706192458], [-73.49984945286671, -6.679401118537129], [-73.32547444621483, -6.574767325483165], [-73.24041829062645, -6.563978750852868], [-73.17742268275461, -6.525262929063473], [-73.13736652888284, -6.465870836954096], [-73.1263472413531, -6.40085374463014], [-73.13534504443072, -6.34436204325641], [-73.16774372730725, -6.260668192407493], [-73.2064485627681, -6.156495825152376], [-73.23547444278161, -6.098444065125378], [-73.20937092616083, -6.028702851527456], [-73.16279987946241, -5.933297574450535], [-73.06807575475523, -5.789530479122504], [-72.97986652287469, -5.634952836507097], [-72.97019855375588, -5.58973310821959], [-72.95894855332672, -5.495228710083282], [-72.91822223341377, -5.302616398048215], [-72.89572223255546, -5.198224304222222], [-72.90742267245493, -5.157728697208682], [-72.88717486894815, -5.122858090409721], [-72.83204547231388, -5.093832210396229], [-72.69861651214585, -5.067267267976604], [-72.60839678214174, -5.009676933748452], [-72.46889238228881, -4.901219898361148], [-72.35279984856336, -4.786017257247764], [-72.25672440544525, -4.748905439425812], [-72.08256912536426, -4.642250161919733], [-71.98245071334192, -4.57453043277394], [-71.94307571183988, -4.553370763998004], [-71.84474807137023, -4.504327793377172], [-71.66834059393769, -4.48723306616256], [-71.5214204223175, -4.469676913149087], [-71.43816602461035, -4.437486970514897], [-71.31689893014062, -4.424215485633624], [-71.2349958508444, -4.388224273323175], [-71.14432568136998, -4.387323394382548], [-70.97377391705145, -4.350431303131487], [-70.91572215702445, -4.295301906497215], [-70.86599803403388, -4.229603661803523], [-70.79961863697045, -4.173353659657764], [-70.72154978633611, -4.158939596607908], [-70.63447214629561, -4.168629538383797], [-70.53075021851082, -4.167486960215214], [-70.40474801643859, -4.150172506429712], [-70.34354318011943, -4.193590476835979], [-70.3170002103569, -4.246918115589011], [-70.23915108629343, -4.30114663328267], [-70.18402168965916, -4.298224269889943], [-70.1288922930249, -4.286512843661939], [-70.05329536631298, -4.333094876688904], [-70.00402168279271, -4.327250149903449], [-69.97207343938648, -4.30114663328267], [-69.9659979997016, -4.235887841730744], [-69.94822212011725, -4.200577781790031], [-69.91109931596675, -3.996495742754917], [-69.84967475307671, -3.659896608820929], [-69.79409491697214, -3.354564565923425], [-69.7326703540821, -3.01662509990706], [-69.66899359384053, -2.667655360032427], [-69.60464666755776, -2.314181225454703], [-69.55176946827504, -2.024142151890601], [-69.50654973998753, -1.77484038456798], [-69.47864446548553, -1.622064499833797], [-69.43499578217985, -1.421607949218242], [-69.41790105496524, -1.245650911256007], [-69.40034490195177, -1.195025909324826], [-69.41137517581004, -1.152267118631201], [-69.44916814600172, -1.091512721782351], [-69.44871770653143, -1.06496975201982], [-69.44444402472777, -1.029637719422013], [-69.44871770653143, -0.998832054184362], [-69.48832342093289, -0.96574123260956], [-69.5193707853985, -0.945724142002206], [-69.54344183123861, -0.91713771513048], [-69.55469183166777, -0.877323260486676], [-69.57450018203276, -0.837728532413763], [-69.58326727221096, -0.79587062066075], [-69.61184271275415, -0.762801771743028], [-69.62062078926088, -0.72094385999003], [-69.60082342522442, -0.681349131917102], [-69.59204534871769, -0.639271493593228], [-69.60082342522442, -0.5996767655203], [-69.61184271275415, -0.553314459064225], [-69.63389227414214, -0.509215336288221], [-69.66742254885872, -0.482452639954801], [-69.74752387027372, -0.452525881000696], [-69.8278449182596, -0.381422362663301], [-69.92279975586622, -0.317525875850848], [-70.04406685033594, -0.196236808724038], [-70.07062080642702, -0.138866201066776], [-70.0708405329979, 0.018622818612826], [-70.06566597225363, 0.189405295830795], [-70.05801948758695, 0.447254426760708], [-70.05396553235417, 0.578650916148078], [-69.98534492426775, 0.585857947673006], [-69.92504096688921, 0.589450477106922], [-69.86204535901737, 0.598448280184542], [-69.80714667528252, 0.607457069590694], [-69.75674139992222, 0.626353554686546], [-69.71894842973053, 0.649754434485459], [-69.67371771511449, 0.665047403818846], [-69.63861639541611, 0.659653116503691], [-69.60352606204627, 0.680351359480767], [-69.56482122658542, 0.700148723517231], [-69.52701727006519, 0.716353558119778], [-69.47211858633034, 0.729855755900459], [-69.42082341835797, 0.698357951964539], [-69.39201726491535, 0.666849161700071], [-69.3587177030982, 0.651556192366698], [-69.32721989916227, 0.655148721800614], [-69.30562077724458, 0.65245707130731], [-69.28312077638627, 0.627254433627158], [-69.25409489637278, 0.625452675745933], [-69.21269841041862, 0.629957070449009], [-69.17399357495778, 0.635351357764151], [-69.15599796880255, 0.642547402960545], [-69.1532953319807, 0.658752237563078], [-69.16319401399893, 0.686657512065082], [-69.17669621177963, 0.712750042357314], [-69.16589665082078, 0.753256635699387], [-69.16499577188016, 0.801849166849919], [-69.16319401399893, 0.863954882109695], [-69.19379093899424, 0.898375049438343], [-69.22439885031808, 0.963172415191409], [-69.25859929107585, 1.015379448432952], [-69.31191594350035, 1.050480768131337], [-69.36142033992004, 1.063982965912032], [-69.4028168258742, 1.042372857665796], [-69.44152166133505, 1.03878032823188], [-69.47031682844911, 1.058577692268329], [-69.51711858804696, 1.059478571208956], [-69.56752386340727, 1.065773737464724], [-69.62084051583176, 1.073200495560528], [-69.71691595894987, 1.059028131738643], [-69.75134711260706, 1.076573298423568], [-69.79814887220492, 1.078375056304793], [-69.85214667699914, 1.059478571208956], [-69.85079535858821, 1.308780338531562], [-69.84944404017729, 1.543898755703736], [-69.84854316123668, 1.708825519807704], [-69.79995063008614, 1.705232990373773], [-69.73964667270761, 1.734929036428468], [-69.65009710874469, 1.739422444802997], [-69.58124578775885, 1.770700522168042], [-69.5429913917683, 1.773172446090456], [-69.47009710187822, 1.757879476757083], [-69.39426946226689, 1.725700520451426], [-69.31979314106647, 1.721207112076897], [-69.12426945196721, 1.721207112076897], [-68.91322208063514, 1.721426838647773], [-68.67854311660471, 1.721426838647773], [-68.44342469943254, 1.721657551547196], [-68.23957337329685, 1.721657551547196], [-68.17656677909646, 1.719855793665971], [-68.2132501301052, 1.774523764501382], [-68.25599793447027, 1.845407556267887], [-68.23934266039743, 1.901426845514223], [-68.21842469084947, 1.957676847659997], [-68.1938922192105, 1.986922454244379], [-68.13021545896893, 1.955875089778772], [-68.07711853311531, 1.860030359560085], [-68.03279968376843, 1.788025962282077], [-67.98982116650393, 1.75247420311338], [-67.93627380118002, 1.748431234209164], [-67.87551940433117, 1.760582113578934], [-67.81499572038175, 1.790047446734192], [-67.71194395863813, 1.922125088491299], [-67.60912290979395, 2.035075532253146], [-67.55602598394034, 2.073099215344257], [-67.49954526889515, 2.107980808471765], [-67.45769834347068, 2.121252293353024], [-67.4005474623843, 2.116747898649948], [-67.35194394490523, 2.085931247083764], [-67.32066586754019, 2.032153168860418], [-67.20592465222566, 1.84472640389815], [-67.11929745165547, 1.703650959063424], [-67.09004085874254, 1.615672440082307], [-67.08825008718985, 1.400582099846019], [-67.093644374505, 1.210002258591601], [-67.08217464750497, 1.185480773281185], [-67.06529964686123, 1.178273741756257], [-66.87607112401774, 1.223054016901983], [-66.61912287202844, 0.992198295204915], [-66.42922418314376, 0.821657517214916], [-66.34709039094811, 0.767198286621849], [-66.30165093608973, 0.751905317288461], [-66.19117241625031, 0.763375044288495], [-66.05999565343382, 0.785424605676496], [-65.99631889319224, 0.809726364416036], [-65.92589652722458, 0.863054003169069], [-65.81137503848093, 0.937299611470067], [-65.71822195875555, 0.97802593138303], [-65.68154959407536, 0.983431205026719], [-65.64464651649574, 0.970379446716336], [-65.56611624006256, 0.926049611040909], [-65.52291799622718, 0.843476365703495], [-65.56274343719952, 0.747400922585385], [-65.55599783147345, 0.687997844147461], [-65.47342458613602, 0.691150920439611], [-65.40727590197203, 0.790379439849886], [-65.36092458184449, 0.868679003383647], [-65.26394825978576, 0.931905324154911], [-65.16967457454888, 1.022125054159034], [-65.10374561695576, 1.108082088688022], [-65.02656665893349, 1.158476377719794], [-64.91002368573774, 1.219681214038943], [-64.81799121152385, 1.257023744760332], [-64.73159472385309, 1.253431215326401], [-64.6674675241412, 1.293926822339941], [-64.58444383933347, 1.369974188522164], [-64.5261723527356, 1.430948311941904], [-64.48611619886383, 1.452778146759016], [-64.40512498483675, 1.446922433645014], [-64.30409470754526, 1.45525007068143], [-64.20509690103441, 1.529506665310976], [-64.11486618470175, 1.61927595584477], [-64.06694381959241, 1.770480795597152], [-64.03544601565649, 1.904349208906964], [-64.00844162009511, 1.931573331039232], [-63.97582321064769, 1.95295272638603], [-63.93711837518684, 1.966905363637039], [-63.84441573493177, 1.976804045655271], [-63.682191607649656, 2.048127290563528], [-63.57037275572786, 2.120582127311835], [-63.463948191121204, 2.136105809544645], [-63.432450387185284, 2.155452734110796], [-63.393965278295326, 2.222502297215414], [-63.393745551724436, 2.224073342197215], [-63.306448185113055, 2.16625229506964], [-63.15006878461641, 2.179754492850336], [-63.123295101954454, 2.112704929745718], [-63.002698173525914, 2.018881683979146], [-62.84654948592869, 2.018881683979146], [-62.70816569158727, 1.947547452742342], [-62.69040079833147, 1.911775967002768], [-62.730445965874694, 1.831454919016892], [-62.712670086290345, 1.73763167325032], [-62.78849772590169, 1.603752273611974], [-62.721448162797074, 1.49665754296413], [-62.623340248898316, 1.416325508649706], [-62.6143424458207, 1.362778143325784], [-62.51624551825047, 1.059247858309519], [-62.511741123547395, 0.960931204168418], [-62.44469156044278, 0.804782516571194], [-62.53402139783482, 0.7332285587635], [-62.5385257925379, 0.675176798736501], [-62.48496744088543, 0.541297399098156], [-62.4894718355885, 0.487750033774233], [-62.52951700313173, 0.429698273747235], [-62.53402139783482, 0.313605740021785], [-62.569792883574394, 0.246556176917167], [-62.56529947519985, 0.17523293200891], [-62.5250235947572, 0.094900897694487], [-62.578790686652, 0.018853531512249], [-62.569792883574394, -0.047965318692931], [-62.511741123547395, -0.123792958304278], [-62.47596963780782, -0.222120598773927], [-62.40464639289955, -0.271163569394773], [-62.373368315534506, -0.342728513531], [-62.36887490715998, -0.467599123763193], [-62.3198209502106, -0.521146489087116], [-62.31082314713298, -0.641754403844189], [-62.3778727102376, -0.717582043455536], [-62.47596963780782, -0.695301769168111], [-62.50724771517285, -0.771129408779444], [-62.41791787778082, -0.829181168806457], [-62.31531655550751, -0.945262716203359], [-62.24377358402836, -0.981056174600027], [-62.2037174301566, -1.043590356673008], [-62.14117226175506, -1.065870630960433], [-62.02957313640414, -1.146202665274856], [-61.93574989063757, -1.244530305744519], [-61.87769813061057, -1.369400915976698], [-61.880840220574186, -1.389198280013161], [-61.798497688136194, -1.388736854214301], [-61.71727576120969, -1.401129432812041], [-61.619848999680656, -1.449491251063151], [-61.61894812074004, -1.275797396781002], [-61.5741678455943, -1.14169827057178], [-61.560896360713045, -1.021332055042677], [-61.578672240297394, -0.945262716203359], [-61.53412267805108, -0.726568860204608], [-61.45807531186885, -0.637250009141113], [-61.24387486424463, -0.547931158077617], [-61.221594589957206, -0.498866214799691], [-61.10549106990321, -0.4943618200966], [-61.060721781086016, -0.530155278493268], [-60.93134677615076, -0.556917974826689], [-60.90457309348879, -0.610465340150597], [-60.815243256096764, -0.686292979761944], [-60.73492220811087, -0.851681169664758], [-60.6410989623443, -0.86044825984294], [-60.516217365783575, -0.829181168806457], [-60.46717439516273, -0.740082044313837], [-60.33756867732805, -0.704288585917183], [-60.306290599963006, -0.673021494880686], [-60.31529938936916, -0.619474129556764], [-60.39111604265196, -0.521146489087116], [-60.38662263427743, -0.463094729060117], [-60.31529938936916, -0.306957027791427], [-60.31079499466608, -0.235392083655199], [-60.252743234639084, -0.15057762729478], [-60.21697174889951, -0.043482896646935], [-60.16791779195013, 0.005582046630991], [-60.127872624406905, 0.13067238343406], [-60.025040589234166, 0.224275902629742], [-59.77057524749584, 0.228780297332833], [-58.86877345528232, 0.224275902629742], [-58.85099757569799, -0.083736804432505], [-58.86449977347867, -0.173077628153081], [-58.85549098407252, -0.351495603709196], [-58.73939845034707, -0.432047364594496], [-58.74839625342467, -0.62397852425984], [-58.70361597827895, -0.695301769168111], [-58.62779932499615, -0.766844740647258], [-58.56974756496915, -0.762340345944182], [-58.44037256003389, -0.86044825984294], [-58.39109887651361, -1.048094751376084], [-58.31527123690226, -1.119417996284355], [-58.25271508217219, -1.128426785690522], [-58.15912254930504, -1.235521516338338], [-58.083075183122816, -1.298077671068427], [-57.98047386084954, -1.34712064168923], [-57.900141826535105, -1.422948281300592], [-57.828598855055944, -1.445228555588045], [-57.65467428787437, -1.588094771975463], [-57.56534445048233, -1.623866257715036], [-57.44924093042833, -1.690926807148188], [-57.33764180507741, -1.730982961019961], [-57.27509663667588, -1.713207081435613], [-57.248322954013915, -1.757745657353368], [-57.16799091969949, -1.771236868805516], [-57.087669871713615, -1.81129302267729], [-57.00734882372774, -1.936405332137454], [-56.824195740569124, -2.034491273379132], [-56.74387469258325, -2.052486879534356], [-56.74836810095778, -2.17737946242363], [-56.63676897560687, -2.222137764912276], [-56.49839616759398, -2.159603582839281], [-56.4848939698133, -2.248922433902749], [-56.400969406064945, -2.336219800514158], [-56.39107072404671, -2.391788650290195], [-56.75714617746452, -3.186495711855869], [-58.29299096261485, -6.49893968587179], [-58.37444360244076, -6.57050463000806], [-58.436769044271415, -6.675797602774665], [-58.455445802796376, -6.793922607280777], [-58.385924315769344, -6.949181402265936], [-58.228424309761195, -7.141552015073032], [-58.14629051756555, -7.263500261912498], [-58.13662254844674, -7.338207296012342], [-58.20187035367012, -7.414474388765456], [-58.22370018848723, -7.484677028162224], [-58.22391991505812, -7.574677031595442], [-58.259471674226816, -7.67322439863598], [-58.330344479664774, -7.780099402712935], [-58.35352563289281, -7.905870891885741], [-58.32877343468296, -8.050538866154383], [-58.354415525504876, -8.27600030053631], [-58.3971743161985, -8.41550470038922], [-58.42665063568231, -8.523038884178831], [-58.47165063739892, -8.690888011675511], [-58.54746729068172, -8.74893977170251], [-61.609950317662424, -8.766715651286859], [-61.609950317662424, -8.722177075369103], [-61.71704504831027, -8.68640558962953], [-61.761825323455994, -8.72668147007218], [-61.837641976738794, -8.744457349656528], [-61.873424448806915, -8.856056475007449], [-61.91797401105322, -8.873832354591784], [-61.99829505903911, -8.811495926432599], [-62.13217445867744, -8.766715651286859], [-62.172450339120104, -8.610577950018182], [-62.3063187524299, -8.570302069575533], [-62.373368315534506, -8.382875304613265], [-62.45370034984893, -8.347103818873691], [-62.5385257925379, -8.36059503032584], [-62.5562906857937, -8.289052058846693], [-62.63662272010812, -8.222233208641498], [-62.67689860055077, -8.114896778765697], [-62.721448162797074, -8.061349413441775], [-62.82877360634434, -8.016788864866925], [-62.90459025962714, -8.007802048117853], [-63.538424512321626, -7.9987932587117], [-63.587698195841895, -8.079345019597], [-63.59197187764555, -8.1641814486145], [-63.72607100385477, -8.19094414494792], [-63.75284468651674, -8.284547664143616], [-63.91799117719157, -8.333832333992419], [-63.993818816802914, -8.440927064640263], [-63.92249557189466, -8.53453058383596], [-63.99832321150599, -8.681901194926454], [-64.07415085111734, -8.713168285962936], [-64.12769821644126, -8.68640558962953], [-64.11892013993453, -8.936366536664778], [-64.21701706750476, -8.949879720774021], [-64.38217454450813, -8.940870931367854], [-64.4179460302477, -8.972138022404351], [-64.47599779027472, -8.949879720774021], [-64.59659471870324, -9.025707360385354], [-64.69019823789894, -9.021202965682278], [-64.77951708896242, -8.985431479942704], [-64.88662280593881, -9.061478846124942], [-64.92689868638146, -9.11953060615194], [-64.90461841209404, -9.213112152690542], [-65.03849781173238, -9.400780616880766], [-65.0920451770563, -9.436332376049464], [-65.17236622504218, -9.373995947890265], [-65.19915089403268, -9.266681490671544], [-65.221650894891, -9.257892427836268], [-65.41807546293087, -9.391771827474614], [-65.44484914559283, -9.445319192798536], [-65.52517019357872, -9.414052101762039], [-65.6322759105551, -9.449823587501612], [-65.6768254728014, -9.534638043862032], [-65.76614432386489, -9.56592710755561], [-65.93129081453974, -9.414052101762039], [-65.99834037764435, -9.400780616880766], [-66.10544609462073, -9.418556496465115], [-66.39569390842718, -9.405043312355886], [-66.4046917115048, -9.52565122711296], [-66.50279962540357, -9.63274595776079], [-66.59662287117014, -9.664013048797287], [-66.69471979874037, -9.748849477814787], [-66.74377375568974, -9.748849477814787], [-66.82859919837871, -9.838168328878282] ] ] ] } }, { "type": "Feature", "properties": { "population": 8074, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-58.86877345528232, 0.224275902629742], [-58.96641994338225, 1.302474185947247], [-58.91669582039168, 1.248926820623353], [-58.86246730269801, 1.203707092335833], [-58.82174098278506, 1.2012241820849], [-58.78732081545638, 1.208431213609913], [-58.73040064726945, 1.247575502212442], [-58.684719493183024, 1.281105776928996], [-58.60506861123838, 1.279073306148348], [-58.51191553151301, 1.284698306362941], [-58.495721683239026, 1.312153141394674], [-58.48694360673227, 1.347704900563258], [-58.50607080472753, 1.438605782937259], [-58.472990969481316, 1.466280344539769], [-58.39582299778755, 1.481804026772636], [-58.38029931555474, 1.530176831352151], [-58.36274316254122, 1.556730787443371], [-58.340693601153305, 1.58754743900937], [-58.31415063139076, 1.592051833712503], [-58.28107079614449, 1.574275954128211], [-58.23044579421327, 1.563256666598477], [-58.17307518655599, 1.547952710936613], [-58.14224754866132, 1.516905346470935], [-58.09139183383064, 1.514422436220059], [-58.034691392214654, 1.520278149333876], [-58.011740951886, 1.539855786799592], [-57.99509666414167, 1.574275954128211], [-57.98271507187252, 1.648532548757714], [-57.9462734200917, 1.650554033209858], [-57.87336814387305, 1.667198320954185], [-57.79574973270911, 1.70004744330106], [-57.6917970920249, 1.704782550903417], [-57.59437033049585, 1.704101398533737], [-57.54576681301671, 1.726150959921654], [-57.50054708472925, 1.773853598460107], [-57.41279927864758, 1.908853603609998], [-57.366898397990326, 1.940131680975128], [-57.31739400157056, 1.963532560774013], [-57.275547076146154, 1.959247892641883], [-57.18959004161712, 1.981528166929309], [-57.11894794907869, 2.013926849805898], [-57.09262470588703, 2.005829925668877], [-57.03749530925273, 1.936528165212735], [-57.01004047422106, 1.921224209550701], [-56.969544867207446, 1.916500088276791], [-56.83679705940915, 1.881179042007489], [-56.76637469344149, 1.892198329537223], [-56.68986590146045, 1.914247890925139], [-56.61652117210002, 1.922575527961612], [-56.56364397281732, 1.907282558628253], [-56.5254005631553, 1.927299649235522], [-56.48287248536121, 1.942153165427158], [-56.45294572640705, 1.932254483408883], [-56.38589616330245, 1.923926846372581], [-56.22704483888333, 1.885452723811113], [-56.019820709884584, 1.842254479975736], [-55.96333999483943, 1.857107996167372], [-55.92958999355193, 1.887474208263313], [-55.92172378231436, 1.976573332755947], [-55.91541762973003, 2.039579926956264], [-55.96199966275702, 2.095148776732287], [-56.02004043645553, 2.158155370932775], [-56.07359878810803, 2.236674661037284], [-56.13771500149136, 2.258954935324823], [-56.12939835078339, 2.29945054233832], [-56.08777115192987, 2.341297467762729], [-56.04502334756478, 2.364478620990781], [-56.02027114935498, 2.392823348634579], [-55.99349746669293, 2.497457141688471], [-55.975490874209186, 2.515903187313995], [-55.957495268054004, 2.520407582017128], [-55.935896146136315, 2.516573353355284], [-55.8938185078124, 2.489579944122454], [-55.73047377501882, 2.406105819844413], [-55.65891981721114, 2.41870713868434], [-55.38531629114897, 2.440525987173032], [-55.34391980519479, 2.488679065181771], [-55.28609875806728, 2.499698352711505], [-55.187771117597606, 2.547400991249958], [-55.148846555565854, 2.55077379411307], [-55.11419567533778, 2.53930406711288], [-55.07031627913267, 2.548301870190642], [-55.005749626279055, 2.593082145336382], [-54.978745230717664, 2.59757555371084], [-54.968396109229104, 2.548301870190642], [-54.92654918380458, 2.497457141688471], [-54.876143908444305, 2.45042466919125], [-54.85162242313385, 2.439625108232349], [-54.76679698044495, 2.454698350994931], [-54.72224741819866, 2.441657579013167], [-54.71482066010287, 2.425002304940222], [-54.73484873703876, 2.416224228433464], [-54.71707285745441, 2.264579935539416], [-54.78839610236264, 2.130480809330038], [-54.752844343193885, 2.081426852380673], [-54.792900497065716, 2.010103607472502], [-54.7616224197007, 1.969827727029838], [-54.76611582807516, 1.898504482121496], [-54.73484873703876, 1.773403158989879], [-54.578700049441466, 1.782400962067584], [-54.49836801512703, 1.746629476328053], [-54.364499601817215, 1.760131674108663], [-54.20361580661756, 1.657299638935967], [-54.172348715580995, 1.657299638935967], [-54.083249591088475, 1.541207105210503], [-54.07874519638534, 1.505655346041749], [-54.00719123857766, 1.523431225626041], [-53.92236579588871, 1.460875070896009], [-53.89109870485214, 1.407327705572129], [-53.75721930521382, 1.394056220690743], [-53.739443425629474, 1.434101388234183], [-53.6591223776436, 1.420829903352796], [-53.650124574566064, 1.362778143325841], [-53.5562903424709, 1.367282538028917], [-53.53852544921506, 1.2421812148973], [-53.44019780874544, 1.259957094481592], [-53.40891973138042, 1.184129454870344], [-53.466971491407435, 1.152851377505215], [-53.41791753445807, 0.94315532458404], [-53.26627324156391, 0.782282515712836], [-53.132174115354644, 0.751004438347934], [-53.11439823577035, 0.719957073882256], [-53.14117191843229, 0.536803990723683], [-53.127669720651625, 0.384928984930184], [-53.04284427796267, 0.246556176917181], [-53.007292518793975, 0.134957051566346], [-53.016070595300675, 0.054625017251851], [-52.97602542775746, -0.016698227656377], [-52.913469273027374, -0.190853507737359], [-52.82864383033842, -0.181844718331263], [-52.699268825403124, -0.302452633088365], [-52.627714867595444, -0.396275878854851], [-52.63221926229852, -0.556917974826604], [-52.60544557963652, -0.610465340150597], [-52.52512453165065, -0.646236825890128], [-52.507348652066355, -0.731073254907699], [-52.51611574224455, -0.873939471295046], [-52.40002320851909, -0.869457049249036], [-52.36874513115396, -0.923004414573029], [-52.39124513201233, -0.954271505609483], [-52.35996705464731, -1.070375025663452], [-52.23937012621877, -1.146202665274814], [-52.13227539557096, -1.15070705997789], [-52.05194336125652, -1.177469756311268], [-51.98489379815186, -1.141698270571794], [-51.888148188992545, -1.160375029096713], [-51.92166747738065, -1.180853545502885], [-51.934499509120144, -1.320357945355852], [-51.980839842919124, -1.368038611237182], [-52.02044555732061, -1.39910794835987], [-52.22924073130116, -1.362413611022589], [-52.55346925929439, -1.514068890245312], [-52.66416750570471, -1.551642133866153], [-52.31024293165666, -1.559530317760732], [-52.19662232185368, -1.64008207864606], [-51.947540281101965, -1.586754439893014], [-51.646273179765785, -1.394361854428894], [-51.53129026522333, -1.354107946643353], [-51.29729245356259, -1.223590363539415], [-51.20234860228459, -1.136512723498981], [-51.02887447457323, -1.032120629672988], [-50.99197139699362, -0.986219749015731], [-50.89499507493497, -0.937616231536595], [-50.8423485885516, -0.999491233896947], [-50.83829463331887, -1.038866235398984], [-50.91794551526357, -1.115155300809249], [-50.89724727228645, -1.164417998000999], [-50.844589799574635, -1.226293000361238], [-50.825473587907936, -1.311349155949642], [-50.818716995853265, -1.376146521702708], [-50.78609858640584, -1.489986858076691], [-50.67899286942952, -1.643905320979457], [-50.675400339995576, -1.694750049481513], [-50.6900231432877, -1.761788626257555], [-50.63871698898686, -1.817137749462688], [-50.58562006313315, -1.849986871809563], [-50.403148132344256, -2.015594788283238], [-50.260490656199295, -1.922892148028211], [-50.17274285011757, -1.896129451694776], [-50.11649284797181, -1.857413629905352], [-49.99926872240633, -1.831771539083491], [-49.90297355271724, -1.870707087443691], [-49.719589756659275, -1.926275937219714], [-49.58527090387912, -1.867103571681298], [-49.31369984859771, -1.731642140732561], [-49.39874501785749, -1.971495665507291], [-49.46016958074756, -2.191551826245473], [-49.506971340345444, -2.280189524939203], [-49.55332266047293, -2.5198233231431], [-49.599223541130186, -2.583939536526429], [-49.63656607185152, -2.656844812744964], [-49.575822661331244, -2.631422448493993], [-49.52384634098911, -2.596771568265922], [-49.45746694392568, -2.504530353809628], [-49.40774282093514, -2.344327710979655], [-49.21109852632435, -1.916607968100948], [-49.15484852417859, -1.87857329868126], [-48.99127307848562, -1.829750054631404], [-48.710023067756765, -1.4877456470536], [-48.59999498738762, -1.488646525994284], [-48.52957262141996, -1.567396528998415], [-48.4629734977857, -1.613978562025295], [-48.445867784242466, -1.520375042829585], [-48.349792341124385, -1.482120646839121], [-48.45149278445706, -1.435780313040141], [-48.46814805852995, -1.393922401287114], [-48.477816027648714, -1.323719761890345], [-48.408525253521134, -1.229215363754008], [-48.44969102657586, -1.145521512905134], [-48.30659409728895, -1.039767114339611], [-48.31762437114725, -0.960577658193756], [-48.26654892974574, -0.895099140071011], [-48.20174057766411, -0.827818864066955], [-48.128395848303796, -0.795189468291028], [-48.115124363422524, -0.737599134062862], [-48.06877304329498, -0.713736828465073], [-48.032540131756605, -0.704969738286877], [-47.96099716027743, -0.769547377469053], [-47.88336776278476, -0.693280284716025], [-47.807770836072905, -0.663573252332753], [-47.773790121886066, -0.676844737214026], [-47.731492756991315, -0.71037501193058], [-47.687173907644365, -0.724767102323369], [-47.65117170900544, -0.718702648966996], [-47.55734846323878, -0.669879404917026], [-47.47072126266863, -0.748629407921158], [-47.41874494232644, -0.76594386170666], [-47.4329173061484, -0.721844738930656], [-47.46037214118007, -0.680887706118199], [-47.438992745833275, -0.647599130629658], [-47.398046699349436, -0.626681161081649], [-47.26867169441414, -0.645357919606681], [-47.20049053946951, -0.680448252976419], [-47.12691509720963, -0.745465345300431], [-47.02454448783584, -0.750189466574341], [-46.944443166420854, -0.743443860848345], [-46.89359843791868, -0.779896498957612], [-46.81124491915227, -0.779676772386722], [-46.76984843319809, -0.836607926902275], [-46.64451639716708, -0.916478535417809], [-46.61729227503474, -0.970707053111482], [-46.51627298407186, -0.996788597075124], [-46.421768585935524, -1.030099145220788], [-46.32074929497253, -1.039107934626998], [-46.219048851639855, -1.031219750732305], [-46.21499489640706, -1.099840358818767], [-46.14029884863578, -1.118297390772852], [-46.04467384498798, -1.103004421439437], [-46.00708961503864, -1.146861844987484], [-46.14119972757641, -1.240025911041414], [-46.15896462083214, -1.315853550652776], [-46.12319313509255, -1.34712064168923], [-46.1992405012748, -1.485504436030624], [-46.18124489511962, -1.574823287094205], [-46.1992405012748, -1.677413623038944], [-46.24379006352109, -1.722193898184685], [-46.31534402132888, -1.73098296101989], [-46.30184182354816, -1.802525932499123], [-46.21701638085926, -1.807030327202142], [-46.212522972484635, -1.927396542731231], [-46.27957253558924, -2.141827703254933], [-46.37766946315952, -2.253426828605825], [-46.41344094889905, -2.239913644496539], [-46.40894754052454, -2.387306228244199], [-46.43572122318653, -2.409564529874501], [-46.426943146679776, -2.512396565047197], [-46.48499490670673, -2.547948324215952], [-46.50727518099421, -2.614986900991994], [-46.600867713861305, -2.664051844269977], [-46.667917276965966, -2.739879483881225], [-46.574094031199365, -2.847193941099988], [-46.65014139738162, -2.91401279130514], [-46.63665018592951, -2.985577735441382], [-46.667917276965966, -3.092672466089311], [-46.74374491657733, -3.190780379988041], [-46.82429667746254, -3.329142201672369], [-46.859848436631296, -3.329142201672369], [-46.94467387932019, -3.396202751105534], [-46.96694316727911, -3.525797482611608], [-47.0294993220092, -3.570358031186515], [-47.02499492730607, -3.59712072751995], [-47.06527080774873, -3.842599252509217], [-47.28846905845063, -4.079288714663221], [-47.310749332738055, -4.065797503211058], [-47.333018620696976, -4.164125143680735], [-47.38229230421723, -4.275724269031571], [-47.45811994382859, -4.338280423761717], [-47.48939802119361, -4.423094880122107], [-47.58322126696021, -4.547965490354329], [-47.65454451186838, -4.606017250381342], [-47.80191512295892, -4.597030433632256], [-48.25281601906562, -4.954327810543248], [-48.730490597834375, -5.338168157216899], [-48.7219432342271, -5.355043157860635], [-48.721492794756784, -5.355724310230372], [-48.721492794756784, -5.355944036801247], [-48.597523063465246, -5.398702827494787], [-48.51111558946593, -5.408151070042777], [-48.42156602550301, -5.398483100923954], [-48.35699937264934, -5.424344918316791], [-48.31717393167699, -5.486219920677129], [-48.27531601992399, -5.522452832215549], [-48.23144761004744, -5.533241406845832], [-48.19274277458658, -5.565431349480036], [-48.159223486198584, -5.619198441374863], [-48.18127304758653, -5.672064654329048], [-48.25867173217969, -5.723590535200856], [-48.28004014119796, -5.795814659049739], [-48.24540024729842, -5.888517299304809], [-48.25439805037604, -5.945228727249429], [-48.30704453675935, -5.965926970226505], [-48.32121690058125, -6.006642303810906], [-48.29669541527082, -6.067396700659771], [-48.319415142699995, -6.112396702376316], [-48.38984849499619, -6.141862035531645], [-48.413699814265414, -6.207340553654447], [-48.3911998134071, -6.308832256744807], [-48.410096298502964, -6.357655500794763], [-48.47061998245238, -6.353370832662506], [-48.52732042406845, -6.3722673177584], [-48.57996691045176, -6.414125229511413], [-48.62204454877565, -6.488590564383287], [-48.65287218667038, -6.595707267688226], [-48.80541735850514, -6.71831469424032], [-49.07947132403763, -6.856237062782895], [-49.209747207913466, -7.005651130982585], [-49.19512440462128, -7.168556410634423], [-49.2396739668676, -7.334823506820669], [-49.34047353125965, -7.510099392413281], [-49.333947652104456, -7.649142366467331], [-49.22031605597289, -7.752194128210874], [-49.172393690863544, -7.867396769324316], [-49.189949843877, -7.994970016378346], [-49.22684193512808, -8.139418264076113], [-49.28264149780355, -8.301422664787339], [-49.378947653821115, -8.498297672297554], [-49.50269765854176, -8.70866389125986], [-49.61294546548177, -8.839181474363713], [-49.707900303088365, -8.894970050710626], [-49.82984854992782, -9.022103844622904], [-49.97924064547044, -9.22009945764458], [-50.08409416509528, -9.421918312999608], [-50.17521477404, -9.730172719289826], [-50.23484856537735, -9.842672723581373], [-51.29752316646204, -9.78912535825745], [-55.09214611394981, -9.56592710755561], [-56.46262468185441, -9.467599467085961], [-56.489398364516376, -9.467599467085961], [-56.67682512947863, -9.378280616022494], [-56.7706483752452, -9.39627622217769], [-56.837697938349834, -9.271163912717554], [-56.92679706284244, -9.24440121638412], [-57.047393991270965, -9.231129731502847], [-57.07416767393295, -9.18634945635705], [-57.08316547701054, -9.079254725709276], [-57.10094135659489, -9.052470056718775], [-57.29736592463476, -8.958646810952203], [-57.480519007793376, -8.79350032027736], [-57.5786159353636, -8.757948561108677], [-57.641172090093676, -8.615082344721259], [-57.650169893171295, -8.498978824667262], [-57.681447970536325, -8.436422669937187], [-57.641172090093676, -8.231000298819694], [-57.779544898106565, -8.048077928560417], [-57.89564841816055, -7.690780551649439], [-57.94919578348447, -7.619457306741182], [-57.98047386084954, -7.530116483020606], [-58.06079490883542, -7.409530540920628], [-58.13662254844674, -7.338207296012342], [-58.14629051756555, -7.263500261912498], [-58.228424309761195, -7.141552015073032], [-58.385924315769344, -6.949181402265936], [-58.455445802796376, -6.793922607280777], [-58.436769044271415, -6.675797602774665], [-58.37444360244076, -6.57050463000806], [-58.29299096261485, -6.49893968587179], [-56.75714617746452, -3.186495711855869], [-56.39107072404671, -2.391788650290195], [-56.400969406064945, -2.336219800514158], [-56.4848939698133, -2.248922433902749], [-56.49839616759398, -2.159603582839281], [-56.63676897560687, -2.222137764912276], [-56.74836810095778, -2.17737946242363], [-56.74387469258325, -2.052486879534356], [-56.824195740569124, -2.034491273379132], [-57.00734882372774, -1.936405332137454], [-57.087669871713615, -1.81129302267729], [-57.16799091969949, -1.771236868805516], [-57.248322954013915, -1.757745657353368], [-57.27509663667588, -1.713207081435613], [-57.33764180507741, -1.730982961019961], [-57.44924093042833, -1.690926807148188], [-57.56534445048233, -1.623866257715036], [-57.65467428787437, -1.588094771975463], [-57.828598855055944, -1.445228555588045], [-57.900141826535105, -1.422948281300592], [-57.98047386084954, -1.34712064168923], [-58.083075183122816, -1.298077671068427], [-58.15912254930504, -1.235521516338338], [-58.25271508217219, -1.128426785690522], [-58.31527123690226, -1.119417996284355], [-58.39109887651361, -1.048094751376084], [-58.44037256003389, -0.86044825984294], [-58.56974756496915, -0.762340345944182], [-58.62779932499615, -0.766844740647258], [-58.70361597827895, -0.695301769168111], [-58.74839625342467, -0.62397852425984], [-58.73939845034707, -0.432047364594496], [-58.85549098407252, -0.351495603709196], [-58.86449977347867, -0.173077628153081], [-58.85099757569799, -0.083736804432505], [-58.86877345528232, 0.224275902629742] ] ], [ [ [-51.42441526114635, -0.565926764232813], [-51.25409420972716, -0.541405278922355], [-51.160721403430955, -0.6667153422963], [-51.27637448401464, -1.021771508184429], [-51.31012448530208, -1.023792992636515], [-51.46514158105924, -1.211219757598826], [-51.63771482982992, -1.34195706727354], [-51.66494993829076, -1.35476712635591], [-51.83256835288802, -1.433736855930931], [-51.93832275145343, -1.452655313683863], [-51.801971427892624, -1.202452667420573], [-51.68002318105323, -1.086129420795658], [-51.679572741583, -1.018629418220826], [-51.67822142317203, -0.855042986199237], [-51.546143781414855, -0.649620615081744], [-51.42441526114635, -0.565926764232813] ] ], [ [ [-48.44451646583161, -0.271844721764467], [-48.39277085838887, -0.297267086015552], [-48.37971910007849, -0.352857908448641], [-48.428091904658174, -0.441495607142429], [-48.46387437672621, -0.534879399767249], [-48.497393665114316, -0.664913584415103], [-48.52326646883563, -0.691478526834715], [-48.56669542557046, -0.684491221880705], [-48.53969103000907, -0.80105616773352], [-48.54958971202734, -0.847616228103448], [-48.57096910737414, -0.892857929048034], [-48.62406603322779, -0.986900901385468], [-48.70461779411306, -1.106607937201943], [-48.72846911338229, -1.131788602225015], [-48.7898936762723, -1.173426787407095], [-48.839617799262896, -1.226512726932128], [-48.82904895120345, -1.276478549150681], [-48.80406604009414, -1.326861851853948], [-48.83354235957796, -1.390099158953774], [-48.928947636654925, -1.482340373410011], [-48.9858678048418, -1.504620647697379], [-49.03852527755373, -1.514068890245312], [-49.086898082133416, -1.505082073496283], [-49.17262440376288, -1.412599159812089], [-49.18162220684053, -1.485043010231834], [-49.20479237374008, -1.559068891961942], [-49.234048966653006, -1.599564498975496], [-49.34474721306327, -1.59530180350032], [-49.406622215423624, -1.555465376199436], [-49.50674062744599, -1.511607952651389], [-49.52564809887042, -1.630392136870171], [-49.587973540701, -1.712306202495029], [-49.650518709102585, -1.73816801988778], [-49.748846349572204, -1.755262747102392], [-49.805096351717964, -1.790155326558363], [-49.91129020342515, -1.762931204426195], [-50.01006828336517, -1.708482960161632], [-50.065648119469756, -1.703736866230599], [-50.109296802775475, -1.747857961663669], [-50.33833978026274, -1.755943899472072], [-50.44342401278692, -1.800724174617812], [-50.50754022617036, -1.78789214287832], [-50.602044624306586, -1.697672412874226], [-50.61711786706917, -1.63759916839507], [-50.67336786921493, -1.516090374697455], [-50.72377314457526, -1.371422400428798], [-50.75977534321419, -1.240245637612304], [-50.72939814478974, -1.126844754380102], [-50.668424021370015, -1.130448270142608], [-50.59596918462171, -1.14754299735722], [-50.5804455023889, -1.139457059548818], [-50.576841986626505, -1.103224148010327], [-50.5928161083296, -1.072857935914499], [-50.7095897944248, -1.077801783759355], [-50.78339594958396, -1.01030178118441], [-50.79599726842412, -0.906349140500197], [-50.78092402566159, -0.689896495524408], [-50.77146479678515, -0.645357919606681], [-50.719949902241865, -0.583482917246329], [-50.703074901598086, -0.528573247182862], [-50.71589594700913, -0.470301760585016], [-50.69361567272165, -0.364547362019607], [-50.645473581041415, -0.272745600705093], [-50.46165033184167, -0.157323233020861], [-50.24833977682954, -0.116366200208404], [-49.628699860614006, -0.229107903727936], [-49.535096341418296, -0.233590325773889], [-49.40279897309023, -0.214693840678137], [-49.31437001463888, -0.167892081080254], [-49.215141495228636, -0.158663565103154], [-49.1170445676583, -0.163629385605191], [-48.7865208734093, -0.215594719618707], [-48.58807482091726, -0.231568841321803], [-48.51540025759806, -0.248224115394692], [-48.44451646583161, -0.271844721764467] ] ], [ [ [-50.76516963052933, -0.040780259825112], [-50.66707270295916, -0.058094713610558], [-50.65064814178572, -0.105797352149011], [-50.65290033913726, -0.131681142198886], [-50.926273152299984, -0.327413571540546], [-51.01896480622645, -0.26307763158627], [-51.03809200422177, -0.22594384110721], [-51.022348595418066, -0.188370597486426], [-51.02572139828112, -0.172396475783273], [-50.995124473285784, -0.105357899007231], [-50.84211787565215, -0.050228502372988], [-50.76516963052933, -0.040780259825112] ] ], [ [ [-49.50336782458294, 0.083650897265329], [-49.4005467757388, 0.057327654073731], [-49.372421774665895, 0.001077651927972], [-49.3809691382732, -0.055392076788678], [-49.443964746145014, -0.112323231304231], [-49.70879019570043, -0.143832021568699], [-49.83006827649871, -0.093866199350146], [-49.802624427795536, -0.051788561026285], [-49.71239371146294, 0.015030289178867], [-49.6021459045229, 0.06273292771732], [-49.50336782458294, 0.083650897265329] ] ], [ [ [-49.87889152054868, 0.304607936944308], [-49.73826651518419, 0.26815529883487], [-49.697320468700354, 0.215948265593283], [-49.839066079576355, 0.006922378713398], [-49.91714591653914, -0.023224106811597], [-50.002421798698435, -0.02928856016797], [-50.11312004510876, 0.033025895334163], [-50.285693293879376, 0.028532486959705], [-50.33947137210271, 0.043375016822665], [-50.3450963723173, 0.134506612095947], [-50.272641535568994, 0.231702660725603], [-50.12797356130034, 0.226528099981408], [-49.87889152054868, 0.304607936944308] ] ], [ [ [-50.35094109910278, 0.5818039924402], [-50.34262444839493, 0.381556182067072], [-50.33227532690637, 0.258926782857827], [-50.42609857267297, 0.139230733370027], [-50.44387445225726, -0.007700424578843], [-50.623874459123726, 0.054405290681018], [-50.61037226134306, 0.204698265164097], [-50.52621698469534, 0.247006616387409], [-50.45152093692394, 0.326877224903058], [-50.42609857267297, 0.424974152473396], [-50.42451654136261, 0.558172399741864], [-50.39684197976004, 0.581353552969972], [-50.372770933919924, 0.590801795517962], [-50.35094109910278, 0.5818039924402] ] ], [ [ [-50.09871696838741, 0.625002236275577], [-50.058891527415085, 0.63805399458596], [-50.03684196602717, 0.594855750750639], [-50.03999504231922, 0.522851353472561], [-50.15294548608108, 0.393025909067035], [-50.26139153513981, 0.359275907779647], [-50.2816503249752, 0.390773711715553], [-50.2816503249752, 0.516556187216906], [-50.25127312655076, 0.58540750820282], [-50.11290031853787, 0.604754432768857], [-50.09871696838741, 0.625002236275577] ] ] ] } }, { "type": "Feature", "properties": { "population": 2620, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-50.96429683539111, -19.511366940069024], [-50.99759639720824, -19.66392309823233], [-50.99377315487493, -20.101552509457804], [-51.06396480794314, -20.223039330498423], [-51.16072140343098, -20.306513454776464], [-51.39697141244321, -20.44175515915427], [-51.53422361494461, -20.55761697998031], [-51.593165267583686, -20.666513468509322], [-51.61904905763356, -20.806918747302916], [-51.69194334752365, -20.943720510334003], [-51.81141967044064, -21.077138484173474], [-51.86631835417552, -21.18267315616805], [-51.856650385056696, -21.260082827089718], [-51.87284423333068, -21.32982404068764], [-51.936290280672836, -21.422746407513614], [-51.95474731262692, -21.46954816711147], [-51.989848632325305, -21.49363019928012], [-52.047669679452866, -21.51094465306562], [-52.072641604233596, -21.554142896901], [-52.0649951195669, -21.622763504987418], [-52.12259644012363, -21.718168782064367], [-52.245665292474555, -21.84035872813176], [-52.33881837219997, -21.957341154469304], [-52.402495132441516, -22.069181979048096], [-52.56607057813454, -22.207324074161647], [-52.96072147209553, -22.454824083603015], [-53.11619999365156, -22.639987664885183], [-53.272348681248786, -22.752048216034964], [-53.480693415759006, -22.852397340956728], [-53.61996710271251, -23.00113025678668], [-53.67734869669832, -23.17348377898645], [-53.77117194246489, -23.322194722159324], [-53.90752326602565, -23.407031151176824], [-53.99549079867822, -23.570156157399552], [-54.05016975584219, -23.82281974125665], [-54.1246460770426, -23.978517989383576], [-54.24254036864929, -24.046918870899106], [-54.370794768073054, -23.971091231287758], [-54.440316255100086, -23.901789470831602], [-54.52964609249213, -23.852065347841034], [-54.625490822710816, -23.81247061976812], [-54.67184214283836, -23.829125893840967], [-54.72134653925805, -23.852065347841034], [-54.81719126947674, -23.888517985950344], [-54.92654918380465, -23.951293867251295], [-54.982568473051, -23.974475020479346], [-55.081796992461264, -23.997656173707384], [-55.1942969967528, -24.017453537743847], [-55.28699963700788, -24.00440177943345], [-55.366419806053145, -23.991130294552192], [-55.41592420247284, -23.951293867251295], [-55.44246717223537, -23.865358805379387], [-55.44246717223537, -23.792673255731657], [-55.45889173340879, -23.686699130595315], [-55.51852552474614, -23.627307038485938], [-55.5383228887826, -23.58094473202985], [-55.54169569164563, -23.52469472988409], [-55.53495008591956, -23.461918848583124], [-55.51852552474614, -23.41557851478413], [-55.52842420676437, -23.35932851263837], [-55.554747449956025, -23.319733784565443], [-55.54822157080082, -23.25019032488133], [-55.56149305568209, -23.154345594662644], [-55.60109877008355, -23.094733775982377], [-55.62089613412002, -23.02519031629825], [-55.62089613412002, -22.955888555842108], [-55.650822893074135, -22.886367068815062], [-55.65396498303774, -22.81031970263284], [-55.627641739846084, -22.741017942176683], [-55.617743057827866, -22.67149645514965], [-55.647450090211095, -22.621772332159082], [-55.703700092356854, -22.59206529977584], [-55.74666762329282, -22.512656117059123], [-55.75319350244801, -22.410043808457274], [-55.79954482257554, -22.353793806311515], [-55.84926894556612, -22.307673199083396], [-55.90529922114101, -22.307673199083396], [-55.99146499591235, -22.281130229320866], [-56.06752334842312, -22.28449204585536], [-56.18992203473289, -22.281130229320866], [-56.245941323979224, -22.264694681818895], [-56.27586808293334, -22.228242043709585], [-56.351915449115566, -22.178517920719017], [-56.39489396638007, -22.09258285884711], [-56.4477711656628, -22.07614731134514], [-56.52381853184502, -22.102470554536794], [-56.5503724879361, -22.135539403454516], [-56.58006853399078, -22.18190170991059], [-56.632945733273516, -22.234767922864776], [-56.70246722030055, -22.231625832901173], [-56.775141783619745, -22.261332865284402], [-56.844674256975324, -22.264694681818895], [-56.93714618433097, -22.271220560974086], [-57.02984882458604, -22.244897317782446], [-57.14234882887757, -22.214970558828327], [-57.23819355909626, -22.195173194791863], [-57.33089619935134, -22.214970558828327], [-57.393672080652294, -22.19831528475548], [-57.4764650525606, -22.188647315636672], [-57.56894796624479, -22.18190170991059], [-57.64162252956399, -22.129013524299324], [-57.72104269860925, -22.099328464573176], [-57.764021215873754, -22.10921616026286], [-57.82027121801951, -22.142306981837677], [-57.87989402302833, -22.135539403454516], [-57.95594138921055, -22.10921616026286], [-57.98564842159378, -22.04644027896191], [-57.97912254243859, -22.006625824318107], [-57.96246726836574, -21.96703109624518], [-57.93277122231105, -21.91078109409942], [-57.94941551005536, -21.851147302762072], [-57.94266990432928, -21.798281089807887], [-57.92939841944802, -21.751918783351798], [-57.9161159482382, -21.699052570397612], [-57.926245343155855, -21.64954817397792], [-57.92939841944802, -21.596681961023734], [-57.93614402517409, -21.546957838033165], [-57.94604270719232, -21.494069652421885], [-57.90621726621997, -21.418022286239662], [-57.87314841730225, -21.35502667836782], [-57.893165507909586, -21.30213849275654], [-57.88641990218352, -21.2659275538752], [-57.860096658991864, -21.206293762537854], [-57.827016823745595, -21.13363018554722], [-57.830169900037745, -20.997949028027634], [-57.860096658991864, -20.918517872653823], [-57.89227561529752, -20.897138477307024], [-57.90059226600539, -20.873078417795455], [-57.8848488572017, -20.841789354101863], [-57.901943584416316, -20.809401657553877], [-57.90846946357151, -20.776332808636155], [-57.891374736356894, -20.747526655193525], [-57.91521506929759, -20.690375774107153], [-57.96246726836574, -20.673720500034307], [-57.97912254243859, -20.657306925189417], [-57.99554710361201, -20.594531043888466], [-58.008818588493284, -20.521625767669846], [-58.00229270933808, -20.465375765524072], [-58.02547386256613, -20.41587136910438], [-58.05854271148385, -20.38616433672115], [-58.0913918338307, -20.333298123766966], [-58.124691395647844, -20.293483669123162], [-58.13774315395824, -20.237233666977403], [-58.15979271534623, -20.16454811732966], [-58.09364403118224, -20.15105690587751], [-58.06754051456147, -20.110319599636014], [-58.02120018076248, -20.055190203001743], [-57.960215071014204, -20.040798112608982], [-57.88754050769501, -20.020319596202782], [-57.86076682503305, -19.979604262618366], [-58.02996727094066, -19.832673104669638], [-58.13144798770247, -19.744474859117645], [-58.07204490926455, -19.62522924910003], [-57.971695784342785, -19.424289300028533], [-57.87449973571317, -19.229457749627542], [-57.800473853983064, -19.080944560368465], [-57.78134665598779, -19.053500711665322], [-57.7167690168056, -19.044052469117403], [-57.72870016960448, -18.967323950565444], [-57.730941380627485, -18.917138401776015], [-57.783148413869014, -18.914216038383287], [-57.725096653842016, -18.733095426005335], [-57.63915060564156, -18.475026568504532], [-57.57412252698906, -18.279272166505848], [-57.55319357111256, -18.246423044159002], [-57.50617208494384, -18.23719452818196], [-57.49559225055587, -18.21469452732366], [-57.55207296560107, -18.18320770971627], [-57.58649313292972, -18.122233586296545], [-57.661650606499876, -17.947397153845813], [-57.75322165491491, -17.734767751203393], [-57.7527712154446, -17.734548024632517], [-57.632174287016056, -17.739953298276205], [-57.600896209651026, -17.816000664458443], [-57.493790492674634, -17.869548029782365], [-57.471521204715756, -17.900595394247972], [-57.41932515780276, -17.882138362293887], [-57.36982076138307, -17.875612483138696], [-57.19859883102335, -17.81239714869598], [-57.0797926741475, -17.73432829806164], [-56.98012470159547, -17.594823898208716], [-56.8874220613404, -17.517875653085866], [-56.789995299811366, -17.386017737899635], [-56.745215024665626, -17.316957676671464], [-56.6680470529719, -17.320319493205957], [-56.489398364516376, -17.30254361362161], [-56.435840012863906, -17.320319493205957], [-56.32874528221606, -17.284548007466384], [-56.248424234230185, -17.21772915726119], [-56.101042636811144, -17.18644009356761], [-56.02499527062892, -17.213224762558113], [-55.984950103085694, -17.266772127882035], [-55.833075097292124, -17.311332676456885], [-55.78852553504582, -17.351608556899535], [-55.60986586026175, -17.391862464685104], [-55.53404920697895, -17.503483562693106], [-55.33762463893906, -17.58379362435045], [-55.181245238442415, -17.686405932952297], [-55.07415050779457, -17.681901538249207], [-54.899995227713575, -17.65061247455563], [-54.81089610322097, -17.601569503934783], [-54.779618025855925, -17.557030928017028], [-54.69929697787005, -17.516755047574378], [-54.52514169778905, -17.512250652871302], [-54.42232064894486, -17.579289229647358], [-54.391273284479254, -17.673112475413944], [-54.31971932667156, -17.673112475413944], [-54.23489388398259, -17.637340989674357], [-54.14557503291911, -17.6283541729253], [-54.08324959108846, -17.588298019053525], [-54.03846931594272, -17.512250652871302], [-53.949150464879224, -17.45870328754738], [-53.81977545994397, -17.307048008324685], [-53.74394782033262, -17.253500643000763], [-53.68139166560255, -17.25776333847587], [-53.752714910510804, -17.641845384377447], [-53.859820627487196, -17.69088835499828], [-53.98941535899334, -17.900595394247972], [-53.97592414754119, -17.93186248528447], [-53.8688184305648, -17.945375669393698], [-53.72594122784885, -18.007931824123787], [-53.60534429942031, -17.994418640014544], [-53.49374517406939, -18.01241424616977], [-53.306318409107135, -17.99892303471762], [-53.145665326806835, -18.030190125754118], [-53.065344278820945, -18.021203309005045], [-53.05184208104025, -18.01669891430197], [-53.042844277962644, -18.097250675187283], [-53.05634647574334, -18.29366425689861], [-53.034066201455914, -18.356000685057808], [-52.98929691263872, -18.387267776094305], [-52.9089648783243, -18.34723359487961], [-52.78409426809212, -18.39177217079738], [-52.788598662795195, -18.463095415705638], [-52.84641970992277, -18.5346383871848], [-52.891199985068496, -18.637250695786648], [-52.86891971078107, -18.682030970932374], [-52.761594267233804, -18.708793667265795], [-52.6144433827142, -18.722065152147053], [-52.4983398626602, -18.704289272562704], [-52.34197144849209, -18.815888397913625], [-52.27064820358382, -18.811405975867643], [-52.09649292350282, -18.89622043222805], [-52.06072143776325, -18.945263402848894], [-51.91357055324363, -18.99004367799462], [-51.84201659543595, -19.04809543802162], [-51.641098619021534, -19.128427472336043], [-51.542990705122776, -19.137414289085115], [-51.40461789710989, -19.168483626207816], [-51.310794651343315, -19.253298082568236], [-51.13665035759087, -19.284565173604733], [-51.034049035317565, -19.369401602622233], [-50.96429683539111, -19.511366940069024] ] ] ] } }, { "type": "Feature", "properties": { "population": 751, "fill": "#fff" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-51.888148188992545, -1.160375029096713], [-51.98489379815186, -1.141698270571794], [-52.05194336125652, -1.177469756311268], [-52.13227539557096, -1.15070705997789], [-52.23937012621877, -1.146202665274814], [-52.35996705464731, -1.070375025663452], [-52.39124513201233, -0.954271505609483], [-52.36874513115396, -0.923004414573029], [-52.40002320851909, -0.869457049249036], [-52.51611574224455, -0.873939471295046], [-52.507348652066355, -0.731073254907699], [-52.52512453165065, -0.646236825890128], [-52.60544557963652, -0.610465340150597], [-52.63221926229852, -0.556917974826604], [-52.627714867595444, -0.396275878854851], [-52.699268825403124, -0.302452633088365], [-52.82864383033842, -0.181844718331263], [-52.913469273027374, -0.190853507737359], [-52.97602542775746, -0.016698227656377], [-53.016070595300675, 0.054625017251851], [-53.007292518793975, 0.134957051566346], [-53.04284427796267, 0.246556176917181], [-53.127669720651625, 0.384928984930184], [-53.14117191843229, 0.536803990723683], [-53.11439823577035, 0.719957073882256], [-53.132174115354644, 0.751004438347934], [-53.26627324156391, 0.782282515712836], [-53.41791753445807, 0.94315532458404], [-53.466971491407435, 1.152851377505215], [-53.40891973138042, 1.184129454870344], [-53.44019780874544, 1.259957094481592], [-53.53852544921506, 1.2421812148973], [-53.5562903424709, 1.367282538028917], [-53.650124574566064, 1.362778143325841], [-53.6591223776436, 1.420829903352796], [-53.739443425629474, 1.434101388234183], [-53.75721930521382, 1.394056220690743], [-53.89109870485214, 1.407327705572129], [-53.92236579588871, 1.460875070896009], [-54.00719123857766, 1.523431225626041], [-54.07874519638534, 1.505655346041749], [-54.083249591088475, 1.541207105210503], [-54.172348715580995, 1.657299638935967], [-54.20361580661756, 1.657299638935967], [-54.364499601817215, 1.760131674108663], [-54.49836801512703, 1.746629476328053], [-54.578700049441466, 1.782400962067584], [-54.73484873703876, 1.773403158989879], [-54.76611582807516, 1.898504482121496], [-54.7616224197007, 1.969827727029838], [-54.792900497065716, 2.010103607472502], [-54.752844343193885, 2.081426852380673], [-54.78839610236264, 2.130480809330038], [-54.71707285745441, 2.264579935539416], [-54.73484873703876, 2.416224228433464], [-54.71482066010287, 2.425002304940222], [-54.70290049363251, 2.397997909378716], [-54.69749521998881, 2.359754499716871], [-54.661943460820055, 2.327575543411285], [-54.61627329306225, 2.326674664470602], [-54.59197153432274, 2.313853619059614], [-54.550575048368614, 2.293155376082495], [-54.51502328919992, 2.245452737543985], [-54.43312020990368, 2.207429054452973], [-54.293165370580425, 2.154332128599378], [-54.22791756535702, 2.153431249658695], [-54.167393881407634, 2.137006688485371], [-54.13004036435774, 2.121032566782276], [-54.08977547024364, 2.150497899937534], [-53.94644782805739, 2.232631692133054], [-53.8766956281309, 2.27830185989086], [-53.82944342906268, 2.312952740118931], [-53.79434210936438, 2.346032575365257], [-53.76779913960178, 2.354799665543339], [-53.750242986588376, 2.335002301507075], [-53.734719304355565, 2.308448345415854], [-53.68364386295406, 2.292924663183044], [-53.56394781346614, 2.261877298717536], [-53.509049129731295, 2.253099222210778], [-53.43187017170902, 2.279422465402376], [-53.365941214115935, 2.324202740548117], [-53.33444341018003, 2.339726422780984], [-53.28540043955917, 2.295176860534639], [-53.25208989141339, 2.232181252662826], [-53.229820603454584, 2.204957130530545], [-53.18009648046399, 2.21125229678637], [-53.08221927946465, 2.20180405423838], [-53.00977542904491, 2.181775977302436], [-52.96477542732828, 2.18357773518369], [-52.90357059100916, 2.211483009685821], [-52.87049075576283, 2.266601419991446], [-52.783424102050844, 2.317226421922612], [-52.70062014381409, 2.363577742050097], [-52.65314821817498, 2.425672470981453], [-52.58294557877821, 2.528954945624434], [-52.55954469897932, 2.573054068400438], [-52.554589864805905, 2.647750116171721], [-52.455822771194505, 2.864202761147453], [-52.41846925414461, 2.903797489220437], [-52.39641969275658, 2.972198370735896], [-52.35659425178426, 3.051629526109878], [-52.35659425178426, 3.117778210273684], [-52.32779908467023, 3.181674697086237], [-52.271318369624964, 3.237023820291483], [-52.229471444200556, 3.271674700519384], [-52.16264160766684, 3.364608053674033], [-52.11607056096835, 3.452355859755698], [-51.9995166014441, 3.64697866991429], [-51.99051879836645, 3.702108066548533], [-51.944398191138305, 3.735176915466184], [-51.92887450890555, 3.77702384089082], [-51.87958983905668, 3.828549721762442], [-51.827393792143766, 3.869506754575013], [-51.80534423075568, 3.930030438524398], [-51.767089834765216, 3.992575606925811], [-51.683395983916284, 4.039608079423203], [-51.652568346021496, 4.061207201340892], [-51.55784422131438, 4.233780450111567], [-51.54704466035554, 4.310948421805278], [-51.46154905162541, 4.313881771526439], [-51.32699948594586, 4.224782647033805], [-51.21989376896943, 4.093605884217311], [-51.07634640021229, 3.671730868124087], [-51.05249508094312, 3.281804095437053], [-50.99422359434516, 3.07750232983102], [-50.82727534578913, 2.651804071404399], [-50.81646479850173, 2.573054068400438], [-50.78969111583979, 2.477879504222983], [-50.73704462945648, 2.376849226931483], [-50.67877314285863, 2.210351417845686], [-50.676520945507036, 2.179523779951012], [-50.71432490202727, 2.134073338763983], [-50.65896479249358, 2.130931248800493], [-50.608790230032696, 2.104157566138497], [-50.57594110768588, 1.998622894143864], [-50.53432489516075, 1.927299649235522], [-50.45894769501973, 1.829653161135639], [-50.304370052404295, 1.797704917729448], [-50.18759636630915, 1.786004477830033], [-50.05461784561146, 1.730655354624787], [-49.95719108408235, 1.6597825491869], [-49.881594157370444, 1.419929024412284], [-49.9063463555803, 1.268954897559297], [-49.898919597484564, 1.162980772422884], [-49.93784415951632, 1.121353573569309], [-50.04719108751567, 1.052051813113167], [-50.0710424067849, 1.015148735533614], [-50.294471370386134, 0.835829881036886], [-50.343294614436104, 0.751004438347934], [-50.46299066392402, 0.63737284221628], [-50.58156610790047, 0.420480744098768], [-50.755040235611716, 0.22247414474856], [-50.81624507193084, 0.17253029518713], [-50.91006831769744, 0.161049581858492], [-50.96699947221293, 0.130232930292266], [-51.10199947736277, -0.03133201727718], [-51.28290036316986, -0.085099109171949], [-51.299544650914186, -0.17892235493855], [-51.40416745763952, -0.392672363092458], [-51.496199931853425, -0.509457035516164], [-51.55492185792161, -0.549051763589034], [-51.70274290848249, -0.762340345944153], [-51.72141966700741, -0.855504411998083], [-51.720518788066784, -1.018387718992813], [-51.81906615510729, -1.117857937631129], [-51.888148188992545, -1.160375029096713] ] ], [ [ [-50.36264153900231, 2.154551855170212], [-50.341943296025136, 2.141730809759224], [-50.291999446463706, 1.979506682477108], [-50.298964778760705, 1.938549649664708], [-50.39887445054069, 1.892879481906903], [-50.456025331627075, 1.910424648591913], [-50.508891544581275, 2.029450532038538], [-50.491115664996926, 2.128679051448842], [-50.41867181457707, 2.161528173795716], [-50.36264153900231, 2.154551855170212] ] ] ] } }, { "type": "Feature", "properties": { "population": 3224, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-60.72479281319322, -13.662948748219577], [-60.659094568499526, -13.601513199001005], [-60.38234895247378, -13.418590828741813], [-60.35107087510873, -13.271220217651319], [-60.27502350892651, -13.137340818012973], [-60.270749827122856, -13.070302241236917], [-60.194691474612085, -12.972194327338144], [-60.083092349261165, -12.927414052192404], [-60.04304718171794, -12.873866686868496], [-60.00277130127529, -12.731000470481078], [-59.908948055508716, -12.619401345130157], [-59.82412261281975, -12.387194305022163], [-59.89117217592437, -12.244547815205635], [-59.88666778122129, -12.128444295151638], [-59.93144805636702, -12.0523969289694], [-59.98499542169094, -11.918517529331055], [-60.06082306130229, -11.905246044449797], [-60.10109894174494, -11.74436224925006], [-60.10109894174494, -11.601496032862656], [-60.025040589234166, -11.534677182657461], [-59.908948055508716, -11.38280217686389], [-60.00277130127529, -11.14633244128079], [-60.069820864379906, -11.115043377587199], [-60.17691559502774, -11.11954777229029], [-60.27951691730104, -11.079271891847625], [-60.38234895247378, -11.10155216613505], [-60.440400712500775, -11.038996011404976], [-60.440400712500775, -11.003444252236292], [-61.471566523321, -10.998939857533202], [-61.520620480270395, -10.954181555044556], [-61.50734899538912, -10.878353915433223], [-61.520620480270395, -10.789013091712633], [-61.471566523321, -10.757746000676136], [-61.502844600686046, -10.686422755767879], [-61.471566523321, -10.436439836075536], [-61.56540075541612, -10.26230652865162], [-61.569674437219774, -10.061366579580124], [-61.53412267805108, -9.994547729374943], [-61.520620480270395, -9.860448603165707], [-61.56540075541612, -9.726569203527362], [-61.520620480270395, -9.704288929239937], [-61.48057531272717, -9.63725035246388], [-61.551898557635425, -9.463095072382885], [-61.54739416293235, -9.409547707058962], [-61.609950317662424, -9.320448582566343], [-61.592174438078075, -9.239896821681043], [-61.529618283348, -9.22662533679977], [-61.55639196600997, -9.128297696330122], [-61.529618283348, -8.998922691394853], [-61.48484899453082, -8.914108235034448], [-61.50734899538912, -8.847047685601282], [-61.609950317662424, -8.766715651286859], [-58.54746729068172, -8.74893977170251], [-58.47165063739892, -8.690888011675511], [-58.42665063568231, -8.523038884178831], [-58.3971743161985, -8.41550470038922], [-58.354415525504876, -8.27600030053631], [-58.32877343468296, -8.050538866154383], [-58.35352563289281, -7.905870891885741], [-58.330344479664774, -7.780099402712935], [-58.259471674226816, -7.67322439863598], [-58.22391991505812, -7.574677031595442], [-58.22370018848723, -7.484677028162224], [-58.20187035367012, -7.414474388765456], [-58.13662254844674, -7.338207296012342], [-58.06079490883542, -7.409530540920628], [-57.98047386084954, -7.530116483020606], [-57.94919578348447, -7.619457306741182], [-57.89564841816055, -7.690780551649439], [-57.779544898106565, -8.048077928560417], [-57.641172090093676, -8.231000298819694], [-57.681447970536325, -8.436422669937187], [-57.650169893171295, -8.498978824667262], [-57.641172090093676, -8.615082344721259], [-57.5786159353636, -8.757948561108677], [-57.480519007793376, -8.79350032027736], [-57.29736592463476, -8.958646810952203], [-57.10094135659489, -9.052470056718775], [-57.08316547701054, -9.079254725709276], [-57.07416767393295, -9.18634945635705], [-57.047393991270965, -9.231129731502847], [-56.92679706284244, -9.24440121638412], [-56.837697938349834, -9.271163912717554], [-56.7706483752452, -9.39627622217769], [-56.67682512947863, -9.378280616022494], [-56.489398364516376, -9.467599467085961], [-56.46262468185441, -9.467599467085961], [-55.09214611394981, -9.56592710755561], [-51.29752316646204, -9.78912535825745], [-50.23484856537735, -9.842672723581373], [-50.33744988765065, -10.034362184018732], [-50.39527093477824, -10.176788947264384], [-50.40269769287403, -10.25824158709031], [-50.45467401321616, -10.388517470966192], [-50.55074945633427, -10.567177145750264], [-50.59912226091393, -10.689806544959453], [-50.61037226134306, -11.000983314642411], [-50.64524286814202, -11.162746016125666], [-50.708018749443, -11.345668386384844], [-50.716566113050305, -11.482689875986807], [-50.67134638476281, -11.573832457588622], [-50.66572138454822, -11.65190130822296], [-50.717466991990904, -11.74910834318112], [-50.66144770274457, -11.8535004370071], [-50.653570505178465, -11.922340771664409], [-50.67471918762584, -11.990082473467297], [-50.667523142429445, -12.112030720306748], [-50.631740670361324, -12.288646937981625], [-50.629268746438925, -12.437379853811592], [-50.66054682380397, -12.558207495139541], [-50.65537226305969, -12.666862284440654], [-50.613964790777004, -12.763388167029063], [-50.56604242566766, -12.819638169174837], [-50.48482049874116, -12.842599595831999], [-50.56604242566766, -13.01473339146088], [-50.59506830568114, -13.130814938857782], [-50.59844110854419, -13.249401369162754], [-50.66662226348885, -13.40960401199274], [-50.79958979785803, -13.611862320489536], [-50.86057490760629, -13.806056663834966], [-50.85179683109956, -13.995043487450488], [-50.86754023990326, -14.095172885801375], [-50.908497272715636, -14.107323765171145], [-50.94111568216306, -14.200927284366827], [-50.977568320272354, -14.46328080999983], [-51.11437008330344, -14.837892640696381], [-51.18861569160444, -14.976496161608694], [-51.24621701216114, -15.004401436110683], [-51.286273166032885, -15.002819404800334], [-51.47144773364363, -15.044215890754487], [-51.5897924647206, -15.141422925712646], [-51.66471922539134, -15.261349688099983], [-51.69599730275638, -15.403315025546789], [-51.73199950139539, -15.49039266558728], [-51.77271483497981, -15.52280233479236], [-51.78824950354115, -15.556991789221584], [-51.778790274664686, -15.592763274961158], [-51.79859862502968, -15.656220308631859], [-51.84742186907965, -15.747121191005704], [-51.961492918352974, -15.819125588283697], [-52.14239380416005, -15.87267295360762], [-52.25669556633282, -15.93566856147946], [-52.308441173775506, -16.009254990067816], [-52.36176881252855, -16.05829796068865], [-52.416667496263386, -16.082379992857312], [-52.53839601653196, -16.16855675395719], [-52.53412233472831, -16.22660851398419], [-52.66799074803811, -16.289142696057183], [-52.68127321924793, -16.36046594096544], [-52.6144433827142, -16.427526490398606], [-52.679921900837, -16.576017707000588], [-52.789049102265494, -16.70495325879409], [-52.942714879611756, -16.813630020752285], [-53.02416751943768, -16.910375629911584], [-53.03316532251529, -16.995190086272004], [-53.07794559766103, -17.094638332253155], [-53.158266645646904, -17.208720367855037], [-53.20259648132233, -17.304125644931958], [-53.21137455782906, -17.409198891127687], [-53.11506840181153, -17.85491424016162], [-53.05184208104025, -18.01669891430197], [-53.065344278820945, -18.021203309005045], [-53.145665326806835, -18.030190125754118], [-53.306318409107135, -17.99892303471762], [-53.49374517406939, -18.01241424616977], [-53.60534429942031, -17.994418640014544], [-53.72594122784885, -18.007931824123787], [-53.8688184305648, -17.945375669393698], [-53.97592414754119, -17.93186248528447], [-53.98941535899334, -17.900595394247972], [-53.859820627487196, -17.69088835499828], [-53.752714910510804, -17.641845384377447], [-53.68139166560255, -17.25776333847587], [-53.74394782033262, -17.253500643000763], [-53.81977545994397, -17.307048008324685], [-53.949150464879224, -17.45870328754738], [-54.03846931594272, -17.512250652871302], [-54.08324959108846, -17.588298019053525], [-54.14557503291911, -17.6283541729253], [-54.23489388398259, -17.637340989674357], [-54.31971932667156, -17.673112475413944], [-54.391273284479254, -17.673112475413944], [-54.42232064894486, -17.579289229647358], [-54.52514169778905, -17.512250652871302], [-54.69929697787005, -17.516755047574378], [-54.779618025855925, -17.557030928017028], [-54.81089610322097, -17.601569503934783], [-54.899995227713575, -17.65061247455563], [-55.07415050779457, -17.681901538249207], [-55.181245238442415, -17.686405932952297], [-55.33762463893906, -17.58379362435045], [-55.53404920697895, -17.503483562693106], [-55.60986586026175, -17.391862464685104], [-55.78852553504582, -17.351608556899535], [-55.833075097292124, -17.311332676456885], [-55.984950103085694, -17.266772127882035], [-56.02499527062892, -17.213224762558113], [-56.101042636811144, -17.18644009356761], [-56.248424234230185, -17.21772915726119], [-56.32874528221606, -17.284548007466384], [-56.435840012863906, -17.320319493205957], [-56.489398364516376, -17.30254361362161], [-56.6680470529719, -17.320319493205957], [-56.745215024665626, -17.316957676671464], [-56.789995299811366, -17.386017737899635], [-56.8874220613404, -17.517875653085866], [-56.98012470159547, -17.594823898208716], [-57.0797926741475, -17.73432829806164], [-57.19859883102335, -17.81239714869598], [-57.36982076138307, -17.875612483138696], [-57.41932515780276, -17.882138362293887], [-57.471521204715756, -17.900595394247972], [-57.493790492674634, -17.869548029782365], [-57.600896209651026, -17.816000664458443], [-57.632174287016056, -17.739953298276205], [-57.7527712154446, -17.734548024632517], [-57.75322165491491, -17.734767751203393], [-57.78021506414774, -17.67177214333155], [-57.78877341408359, -17.573005049720138], [-57.83242209738928, -17.51203092630041], [-57.90509666070848, -17.53226774347864], [-57.990822982338045, -17.512931805241024], [-58.20547386943258, -17.36307828389957], [-58.34766991977881, -17.28206509721541], [-58.39604272435845, -17.234362458676955], [-58.417422119705265, -17.08046596843127], [-58.45971948460003, -16.91081508305335], [-58.47816553022557, -16.70066859066189], [-58.47051904555887, -16.650263315301586], [-58.35037255660065, -16.490741824841322], [-58.35082299607096, -16.410190063956023], [-58.34047387458243, -16.339987424559254], [-58.345648435326694, -16.284418574783217], [-58.375344481381376, -16.283517695842605], [-58.42371728596103, -16.307819454582145], [-58.49662256217965, -16.32671593967798], [-58.538019048133805, -16.32829797098833], [-58.957191427405206, -16.313224728225833], [-59.43419584013273, -16.29588830178325], [-59.831098931445254, -16.281715937961366], [-60.17557526294536, -16.26934533202072], [-60.187275702844815, -16.13210411584788], [-60.20662262741098, -15.901918560192001], [-60.22034455176255, -15.738573827398397], [-60.24239411315055, -15.479604090956983], [-60.38054719459254, -15.318280842615493], [-60.53040071593401, -15.143224683593871], [-60.58326692888819, -15.09822468187727], [-60.4019156036108, -15.092819408233566], [-60.27344147761616, -15.088776439329337], [-60.298874828195736, -14.618517632327894], [-60.33801911679835, -14.57059526721855], [-60.372669997026435, -14.41872026142498], [-60.39629060339624, -14.332763226895977], [-60.46019807653724, -14.263022013298055], [-60.47459016693, -14.184733436092841], [-60.462900713359076, -14.132526402851298], [-60.42801912023158, -14.099897007075342], [-60.40506867990297, -14.019125519619152], [-60.422394120017, -13.937892606364102], [-60.46019807653724, -13.86230666598074], [-60.50654939666477, -13.789840842903885], [-60.59519808168707, -13.745302266986116], [-60.722320889270804, -13.664289080301955], [-60.72479281319322, -13.662948748219577] ] ] ] } }, { "type": "Feature", "properties": { "population": 11082, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-54.24254036864929, -24.046918870899106], [-54.1246460770426, -23.978517989383576], [-54.05016975584219, -23.82281974125665], [-53.99549079867822, -23.570156157399552], [-53.90752326602565, -23.407031151176824], [-53.77117194246489, -23.322194722159324], [-53.67734869669832, -23.17348377898645], [-53.61996710271251, -23.00113025678668], [-53.480693415759006, -22.852397340956728], [-53.272348681248786, -22.752048216034964], [-53.11619999365156, -22.639987664885183], [-53.044415322944445, -22.636406121779814], [-52.94924075876696, -22.570466177858123], [-52.69477541702862, -22.601513542323772], [-52.6144433827142, -22.57046617785815], [-52.52062013694763, -22.615026726433], [-52.44479249733628, -22.601513542323772], [-52.315197765830135, -22.619531121136077], [-52.26165040050621, -22.601513542323772], [-52.21708985193136, -22.641789422766422], [-52.16354248660744, -22.601513542323772], [-52.14127319864856, -22.543483754953854], [-52.06521484613779, -22.52120348066643], [-51.984893798151916, -22.54796617699985], [-51.873294672800995, -22.610522331729925], [-51.743919667865725, -22.619531121136077], [-51.69464598434547, -22.664069697053776], [-51.641098619021534, -22.650798212172575], [-51.54749509982585, -22.686349971341272], [-51.35534421358966, -22.65079821217256], [-51.181419646408045, -22.739897336665194], [-51.00277095795252, -22.793664428559993], [-50.88217402952398, -22.820449097550494], [-50.78406611562522, -22.945319707782687], [-50.72602534192677, -22.949824102485763], [-50.62769770145712, -22.923039433495262], [-50.43127313341722, -22.945319707782687], [-50.368947691586584, -22.91405261674619], [-50.29290032540439, -22.95432849718884], [-50.12324944002643, -22.94081531307961], [-49.97159416080376, -22.914052616746176], [-49.958091963023065, -22.963315313937912], [-49.91354240077675, -22.985595588225337], [-49.909048992402205, -23.034638558846183], [-49.73040030394668, -23.105983776411534], [-49.636796784751, -23.257858782205105], [-49.614296783892684, -23.409733787998675], [-49.65457266433535, -23.507819729240353], [-49.605518707385954, -23.641699128878713], [-49.551971342062075, -23.71324210035783], [-49.56974722164637, -23.833850015114933], [-49.60102529901141, -23.86489737958054], [-49.40909413934608, -24.083832934807262], [-49.33304677316386, -24.14186272217718], [-49.33754018153837, -24.21320793974253], [-49.274995013136845, -24.315798275687285], [-49.22594105618748, -24.338298276545572], [-49.23944325396815, -24.418630310860024], [-49.31076649887643, -24.530229436210945], [-49.29749501399516, -24.66410883584929], [-49.21694325310986, -24.690871532182697], [-49.09207264287767, -24.68636713747962], [-49.025023079773064, -24.668591257895272], [-48.82859851173316, -24.66410883584922], [-48.7795445547838, -24.695375926885774], [-48.61439806410894, -24.681862742776545], [-48.48929674097735, -24.74441889750662], [-48.54284410630126, -24.81147944693977], [-48.5653441071596, -25.056957971928966], [-48.51179674183564, -25.08372066826246], [-48.41346910136599, -24.958850058030265], [-48.26609849027551, -25.034677697641598], [-48.23054673110681, -25.012397423354116], [-48.18576645596107, -25.19081539891029], [-48.0919432101945, -25.23559567405603], [-48.08766952839085, -25.28015622263088], [-48.07754013347321, -25.29026364489144], [-48.202641456604795, -25.41649655986309], [-48.242466897577145, -25.403225074981833], [-48.185997168860496, -25.309841282357027], [-48.2735252483713, -25.306237766594563], [-48.402449813836256, -25.27204831216534], [-48.45846910308262, -25.31074216129764], [-48.42764146518789, -25.403225074981833], [-48.47602525609608, -25.443039529625636], [-48.56422350164806, -25.447543924328713], [-48.64409411016365, -25.436513650470445], [-48.731841916245315, -25.368793921324638], [-48.692247188172416, -25.491423320533826], [-48.50707262056167, -25.521350079487945], [-48.42989366253943, -25.55015623293056], [-48.401098495425344, -25.59739744567017], [-48.5450963036528, -25.815871575098043], [-48.66569323208134, -25.844458001969784], [-48.67896471696261, -25.87526366720742], [-48.612816032798605, -25.875043940636544], [-48.57637438101784, -25.93535888434363], [-48.58537218409546, -25.9862036128457], [-48.65016954984853, -25.97225097559469], [-48.91791736279666, -25.97651367106981], [-48.944691045458626, -26.007802734763388], [-49.109848522462016, -25.99453124988213], [-49.21266957130621, -26.030302735621696], [-49.29749501399516, -26.106130375233022], [-49.45364370159237, -26.16866455730603], [-49.48941518733196, -26.22223389528704], [-49.596520904308335, -26.22223389528704], [-49.72162222743995, -26.15967774055696], [-49.7526695919056, -26.123906254817314], [-49.882275309740265, -26.039069825799885], [-49.949094159945446, -26.01230712946647], [-50.19029900313106, -26.05258300990912], [-50.315169613363224, -26.05258300990912], [-50.369167418157474, -26.085871585397726], [-50.45804681607919, -26.02579834091862], [-50.54287225876814, -26.02579834091862], [-50.64569330761233, -26.07035888949347], [-50.73502314500439, -26.23100098546523], [-50.77057490417306, -26.22223389528704], [-50.90016963567922, -26.28026368265695], [-50.94471919792551, -26.244492196917378], [-51.074094202860806, -26.23550538016832], [-51.24824948294179, -26.347104505519212], [-51.28852536338445, -26.423151871701464], [-51.2795165739783, -26.49897951131271], [-51.23947140643509, -26.606074241960584], [-51.28402096868135, -26.650854517106367], [-51.422393776694236, -26.699897487727206], [-51.50271482468011, -26.601569847257558], [-51.873294672800995, -26.601569847257558], [-52.00717407243934, -26.583793967673216], [-52.19909424577614, -26.44991456803487], [-52.458074968546086, -26.43191896187964], [-52.54290041123505, -26.40065187084314], [-52.64121706537617, -26.40065187084309], [-52.6724951427412, -26.378371596555716], [-52.81537234545715, -26.33831544268395], [-52.913469273027374, -26.365100111674394], [-52.99379032101325, -26.351608900222303], [-53.12339603884794, -26.369604506377534], [-53.27954472644517, -26.26226807650172], [-53.355372366056514, -26.239987802214294], [-53.458193414900734, -26.2890527454922], [-53.516245174927704, -26.289052745492228], [-53.66339605944734, -26.25776368179862], [-53.6699219386025, -26.258005381026635], [-53.671273257013425, -26.225156258679768], [-53.74687018372535, -26.083630374374735], [-53.823148262806995, -25.959638670426074], [-53.86409430929085, -25.748832998321973], [-53.891098704852226, -25.668940417149315], [-53.9547754650938, -25.647582994459597], [-54.012365799321955, -25.577819808204595], [-54.08504036264114, -25.57197508141914], [-54.11924080339891, -25.545190412428624], [-54.15457283599672, -25.52315183736917], [-54.206098716868524, -25.52967771652436], [-54.25019783964453, -25.570393050108777], [-54.33187020604133, -25.57197508141914], [-54.38339608691314, -25.588630355491986], [-54.44391977086255, -25.625082993601296], [-54.50152109141925, -25.60820799295756], [-54.53774301662912, -25.576479476122216], [-54.61582285359201, -25.576018050323356], [-54.61064829284774, -25.43269040813709], [-54.47316537744693, -25.22030270472264], [-54.43627328619587, -25.121293911883257], [-54.454049165780205, -25.065263636308373], [-54.41309213296782, -24.867487749857574], [-54.31297372094548, -24.52820795175883], [-54.28102547753926, -24.30613030656849], [-54.31724740274913, -24.201276786943637], [-54.318368008260634, -24.12815178415414], [-54.26684212738883, -24.065815355994943], [-54.2418702026081, -24.047380296697952], [-54.24254036864929, -24.046918870899106] ] ] ] } }, { "type": "Feature", "properties": { "population": 2852, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-47.301971256231354, -16.03918174902192], [-47.85547347461139, -16.043664171067917], [-48.18127304758653, -16.03918174902192], [-48.252816019065676, -16.03017295961577], [-48.234820412910466, -15.958849714707497], [-48.279589701727645, -15.838241799950424], [-48.203773048444845, -15.73543173743478], [-48.23932480761354, -15.69087118885993], [-48.18127304758653, -15.489953212445528], [-47.76614363721936, -15.489953212445528], [-47.422348458089004, -15.498940029194586], [-47.41357038158225, -15.534733487591254], [-47.30624493803501, -15.588280852915176], [-47.30624493803501, -15.708647068444279], [-47.35102521318072, -15.833737405247348], [-47.359792303358915, -15.985612411040918], [-47.301971256231354, -16.03918174902192] ] ] ] } }, { "type": "Feature", "properties": { "population": 6523, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-50.96429683539111, -19.511366940069024], [-51.034049035317565, -19.369401602622233], [-51.13665035759087, -19.284565173604733], [-51.310794651343315, -19.253298082568236], [-51.40461789710989, -19.168483626207816], [-51.542990705122776, -19.137414289085115], [-51.641098619021534, -19.128427472336043], [-51.84201659543595, -19.04809543802162], [-51.91357055324363, -18.99004367799462], [-52.06072143776325, -18.945263402848894], [-52.09649292350282, -18.89622043222805], [-52.27064820358382, -18.811405975867643], [-52.34197144849209, -18.815888397913625], [-52.4983398626602, -18.704289272562704], [-52.6144433827142, -18.722065152147053], [-52.761594267233804, -18.708793667265795], [-52.86891971078107, -18.682030970932374], [-52.891199985068496, -18.637250695786648], [-52.84641970992277, -18.5346383871848], [-52.788598662795195, -18.463095415705638], [-52.78409426809212, -18.39177217079738], [-52.9089648783243, -18.34723359487961], [-52.98929691263872, -18.387267776094305], [-53.034066201455914, -18.356000685057808], [-53.05634647574334, -18.29366425689861], [-53.042844277962644, -18.097250675187283], [-53.05184208104025, -18.01669891430197], [-53.11506840181153, -17.85491424016162], [-53.21137455782906, -17.409198891127687], [-53.20259648132233, -17.304125644931958], [-53.158266645646904, -17.208720367855037], [-53.07794559766103, -17.094638332253155], [-53.03316532251529, -16.995190086272004], [-53.02416751943768, -16.910375629911584], [-52.942714879611756, -16.813630020752285], [-52.789049102265494, -16.70495325879409], [-52.679921900837, -16.576017707000588], [-52.6144433827142, -16.427526490398606], [-52.68127321924793, -16.36046594096544], [-52.66799074803811, -16.289142696057183], [-52.53412233472831, -16.22660851398419], [-52.53839601653196, -16.16855675395719], [-52.416667496263386, -16.082379992857312], [-52.36176881252855, -16.05829796068865], [-52.308441173775506, -16.009254990067816], [-52.25669556633282, -15.93566856147946], [-52.14239380416005, -15.87267295360762], [-51.961492918352974, -15.819125588283697], [-51.84742186907965, -15.747121191005704], [-51.79859862502968, -15.656220308631859], [-51.778790274664686, -15.592763274961158], [-51.78824950354115, -15.556991789221584], [-51.77271483497981, -15.52280233479236], [-51.73199950139539, -15.49039266558728], [-51.69599730275638, -15.403315025546789], [-51.66471922539134, -15.261349688099983], [-51.5897924647206, -15.141422925712646], [-51.47144773364363, -15.044215890754487], [-51.286273166032885, -15.002819404800334], [-51.24621701216114, -15.004401436110683], [-51.18861569160444, -14.976496161608694], [-51.11437008330344, -14.837892640696381], [-50.977568320272354, -14.46328080999983], [-50.94111568216306, -14.200927284366827], [-50.908497272715636, -14.107323765171145], [-50.86754023990326, -14.095172885801375], [-50.85179683109956, -13.995043487450488], [-50.86057490760629, -13.806056663834966], [-50.79958979785803, -13.611862320489536], [-50.66662226348885, -13.40960401199274], [-50.59844110854419, -13.249401369162754], [-50.59506830568114, -13.130814938857782], [-50.56604242566766, -13.01473339146088], [-50.48482049874116, -12.842599595831999], [-50.3923485713855, -12.617138161450072], [-50.29559197589765, -12.490026340194888], [-50.16374504703998, -12.38765573082101], [-50.13674065147859, -12.476513156085659], [-50.2035704880123, -12.570358374509311], [-50.19929680620865, -12.65517283086973], [-50.27512444582001, -12.789052230508076], [-50.270620051116936, -12.89186229302372], [-50.23934197375189, -12.931918446895494], [-50.05191520878964, -13.021237297958976], [-49.97159416080376, -13.025741692662066], [-49.91354240077675, -13.070302241236917], [-49.68583975537183, -13.177396971884747], [-49.520693264697, -13.199896972743062], [-49.38232045668411, -13.248939943363894], [-49.3598204558258, -13.132858395966991], [-49.29749501399516, -13.003483391031722], [-49.136622205123956, -12.735504865184154], [-49.016245003266306, -12.65517283086973], [-48.998249397111096, -12.748996076636303], [-48.92691516587428, -12.784547835805], [-48.824094117030086, -12.873866686868496], [-48.797320434368146, -12.927414052192404], [-48.80182482907122, -12.998978996328646], [-48.766273069902525, -13.097064937570323], [-48.76176867519945, -13.208664062921244], [-48.77504016008072, -13.351552251965742], [-48.73926867434113, -13.38281934300224], [-48.685721309017225, -13.338280767084484], [-48.65444323165218, -13.177396971884747], [-48.587624381447, -13.155116697597322], [-48.480518664470594, -13.195392578039986], [-48.36891953911967, -13.186405761290914], [-48.22604233640374, -13.092582515524342], [-48.16371689457307, -13.102470211214026], [-48.17496689500223, -13.180780761076335], [-48.07416733061015, -13.195392578039986], [-48.002844085701895, -13.248939943363894], [-47.93579452259729, -13.244457521317912], [-47.85547347461139, -13.293500491938744], [-47.681318194530405, -13.356056646668833], [-47.65904890657151, -13.320263188272165], [-47.72159407497307, -13.150612302894245], [-47.64104231408774, -13.115082516382643], [-47.55644758429821, -13.244457521317912], [-47.440344064244215, -13.248939943363894], [-47.292973453153735, -13.199896972743062], [-47.09204449041076, -13.097064937570323], [-46.971447561982245, -13.070302241236917], [-46.82857035926628, -13.070302241236917], [-46.75274271965495, -13.034750482068219], [-46.6456479890071, -12.922931630146422], [-46.59208963735463, -12.89186229302372], [-46.43572122318653, -12.847103990535075], [-46.30184182354819, -12.833832505653803], [-46.234792260443555, -12.798039047257149], [-46.087641375923965, -12.914142567311146], [-46.0741501644718, -12.976698722041192], [-46.150197530654054, -13.025741692662052], [-46.18124489511965, -13.159621092300398], [-46.176971213315994, -13.217672852327382], [-46.08314796754942, -13.253444338066984], [-46.09641945243072, -13.351552251965757], [-46.18574928982272, -13.405099617289665], [-46.270574732511704, -13.655082536981979], [-46.26179665600495, -13.869491724848501], [-46.22152077556231, -13.998866729783842], [-46.17246681861292, -14.074914095966065], [-46.12769752979574, -14.18203079927099], [-46.03836769240368, -14.253354044179261], [-46.01159400974177, -14.298112346667835], [-45.92249488524911, -14.35168168464891], [-45.96254005279235, -14.467763232045797], [-45.96254005279235, -14.534604054908087], [-45.91349708217152, -14.690983455404748], [-45.93127296175584, -14.749013242774652], [-46.02509620752241, -14.869401430960849], [-46.078643572846346, -14.922948796284771], [-46.19024269819727, -14.93644000773692], [-46.297348415173644, -14.909677311403499], [-46.31534402132888, -14.847121156673424], [-46.38666726623714, -14.771293517062077], [-46.51604227117241, -14.713241757035078], [-46.58309183427701, -14.793573791349502], [-46.556318151615045, -14.869401430960849], [-46.57859842590247, -14.914181706106575], [-46.547320348537454, -15.039052316338768], [-46.63665018592948, -15.070319407375266], [-46.7349668400706, -15.016772042051343], [-46.833074753969356, -15.012267647348267], [-46.89111552766781, -15.04803913308784], [-46.93139140811047, -15.226698807871912], [-46.89111552766781, -15.239970292753185], [-46.85534404192825, -15.324806721770685], [-46.93589580281355, -15.431901452418515], [-46.93139140811047, -15.543500577769436], [-46.868846239708944, -15.592763274961158], [-46.833074753969356, -15.8427461946535], [-46.86434184500584, -15.882802348525274], [-47.07854229263009, -15.936349713849197], [-47.127815976150345, -15.923078228967924], [-47.230417298423646, -16.034677354318845], [-47.301971256231354, -16.03918174902192], [-47.359792303358915, -15.985612411040918], [-47.35102521318072, -15.833737405247348], [-47.30624493803501, -15.708647068444279], [-47.30624493803501, -15.588280852915176], [-47.41357038158225, -15.534733487591254], [-47.422348458089004, -15.498940029194586], [-47.76614363721936, -15.489953212445528], [-48.18127304758653, -15.489953212445528], [-48.23932480761354, -15.69087118885993], [-48.203773048444845, -15.73543173743478], [-48.279589701727645, -15.838241799950424], [-48.234820412910466, -15.958849714707497], [-48.252816019065676, -16.03017295961577], [-48.18127304758653, -16.03918174902192], [-47.85547347461139, -16.043664171067917], [-47.301971256231354, -16.03918174902192], [-47.33752301540002, -16.146276479669766], [-47.32424054419022, -16.22660851398419], [-47.35102521318072, -16.30241418093844], [-47.431346261166595, -16.409750610814257], [-47.45361554912549, -16.494345340603786], [-47.404572578504656, -16.570392706786023], [-47.26619977049177, -16.6597335305066], [-47.15909405351539, -16.918483540377125], [-47.15009625043777, -16.976513327747043], [-47.230417298423646, -17.025797997595845], [-47.2126414188393, -17.07484096821669], [-47.310749332738084, -17.141901517649842], [-47.422348458089004, -17.27127652258511], [-47.45361554912549, -17.34710416219646], [-47.49839582427123, -17.32932828261211], [-47.52944318873682, -17.454198892844303], [-47.458119943828564, -17.52574186432345], [-47.40906598687917, -17.49897916799003], [-47.28846905845066, -17.548022138610875], [-47.27069317886631, -17.66863005336795], [-47.328744938893294, -17.744457692979296], [-47.35551862155526, -17.824767754636625], [-47.34652081847764, -17.878315119960547], [-47.27947125537304, -18.061479189447695], [-47.31884625687508, -18.083298037936274], [-47.44641950392909, -18.170595404547655], [-47.786171714155245, -18.37940156485672], [-47.92881820397179, -18.445319536121303], [-48.01791732846439, -18.434530961490992], [-48.226943215344335, -18.340246289925574], [-48.95369983486478, -18.325854199532813], [-49.10826649115165, -18.388388381605793], [-49.17937000948905, -18.404823929107764], [-49.24754017810517, -18.46850068934934], [-49.33665028892631, -18.584823935974214], [-49.41674062401276, -18.602819542129453], [-49.48829458182047, -18.522048054673263], [-49.55332266047296, -18.51011690187437], [-49.611824859970255, -18.56682832981899], [-49.67797354413426, -18.6001169053076], [-49.788671790544555, -18.614530968357457], [-49.96012443380371, -18.61633272623868], [-50.093773120542636, -18.641293664690863], [-50.24699944474713, -18.690116908740833], [-50.36826653921685, -18.768647185174018], [-50.457596376608876, -18.876642794762475], [-50.49899286256303, -18.95315158674356], [-50.48977533291455, -19.0204318627476], [-50.53162225833901, -19.087030986381905], [-50.57752313899624, -19.112233624062057], [-50.641870065278994, -19.118517803989278], [-50.71319331018725, -19.160595442313166], [-50.791943313191325, -19.238444566376614], [-50.84391963353346, -19.310888416796388], [-50.868891558314175, -19.377487540430693], [-50.87092402909482, -19.423849846886768], [-50.86416743704021, -19.437802484137762], [-50.88082271111307, -19.459181879484575], [-50.92379024204902, -19.464125727329417], [-50.96429683539111, -19.511366940069024] ] ] ] } }, { "type": "Feature", "properties": { "population": 1497, "fill": "#fff" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-50.23484856537735, -9.842672723581373], [-50.17521477404, -9.730172719289826], [-50.08409416509528, -9.421918312999608], [-49.97924064547044, -9.22009945764458], [-49.82984854992782, -9.022103844622904], [-49.707900303088365, -8.894970050710626], [-49.61294546548177, -8.839181474363713], [-49.50269765854176, -8.70866389125986], [-49.378947653821115, -8.498297672297554], [-49.28264149780355, -8.301422664787339], [-49.22684193512808, -8.139418264076113], [-49.189949843877, -7.994970016378346], [-49.172393690863544, -7.867396769324316], [-49.22031605597289, -7.752194128210874], [-49.333947652104456, -7.649142366467331], [-49.34047353125965, -7.510099392413281], [-49.2396739668676, -7.334823506820669], [-49.19512440462128, -7.168556410634423], [-49.209747207913466, -7.005651130982585], [-49.07947132403763, -6.856237062782895], [-48.80541735850514, -6.71831469424032], [-48.65287218667038, -6.595707267688226], [-48.62204454877565, -6.488590564383287], [-48.57996691045176, -6.414125229511413], [-48.52732042406845, -6.3722673177584], [-48.47061998245238, -6.353370832662506], [-48.410096298502964, -6.357655500794763], [-48.3911998134071, -6.308832256744807], [-48.413699814265414, -6.207340553654447], [-48.38984849499619, -6.141862035531645], [-48.319415142699995, -6.112396702376316], [-48.29669541527082, -6.067396700659771], [-48.32121690058125, -6.006642303810906], [-48.30704453675935, -5.965926970226505], [-48.25439805037604, -5.945228727249429], [-48.24540024729842, -5.888517299304809], [-48.28004014119796, -5.795814659049739], [-48.25867173217969, -5.723590535200856], [-48.18127304758653, -5.672064654329048], [-48.159223486198584, -5.619198441374863], [-48.19274277458658, -5.565431349480036], [-48.23144761004744, -5.533241406845832], [-48.27531601992399, -5.522452832215549], [-48.31717393167699, -5.486219920677129], [-48.35699937264934, -5.424344918316791], [-48.42156602550301, -5.398483100923954], [-48.51111558946593, -5.408151070042777], [-48.597523063465246, -5.398702827494787], [-48.721492794756784, -5.355944036801247], [-48.721492794756784, -5.355724310230372], [-48.7219432342271, -5.355043157860635], [-48.630591912382954, -5.330301945979329], [-48.574341910237166, -5.28822430765544], [-48.52349718173511, -5.220504578509647], [-48.45824937651173, -5.180887877779639], [-48.378148055096744, -5.169418150779563], [-48.28162217250832, -5.189457214043955], [-48.16889145531735, -5.240741395687863], [-48.05954452731797, -5.263021669975288], [-47.95311996271133, -5.256276064249221], [-47.88449935462489, -5.285521670833603], [-47.85389144330105, -5.350780462385529], [-47.763221273826645, -5.407250191102179], [-47.61246687354458, -5.454952829640604], [-47.519994946188945, -5.506478710512454], [-47.48579450543113, -5.561146681347864], [-47.44484845894729, -5.749913778392497], [-47.39714582040884, -6.072340548504613], [-47.405473457445254, -6.42109056180837], [-47.47049054976921, -6.795944091732892], [-47.53708967340353, -7.027250252900274], [-47.605721267818495, -7.11476734608253], [-47.66534407282728, -7.16719410589495], [-47.715969074758476, -7.184750258908423], [-47.717089680269964, -7.22210377595826], [-47.66894758858976, -7.279694110186497], [-47.61179670750337, -7.301512958675062], [-47.54586774991026, -7.287582294081119], [-47.506943187878534, -7.305797626807262], [-47.4950230214082, -7.356202902167524], [-47.498395824271256, -7.449806421363292], [-47.45811994382859, -7.534620877723682], [-47.41357038158225, -7.530116483020592], [-47.34652081847764, -7.659733187183832], [-47.303542301213156, -7.66287527714745], [-47.27947125537304, -7.731056432092103], [-47.15009625043777, -7.856146768895158], [-47.07854229263012, -7.976512984424289], [-47.016216850799424, -8.04357353385734], [-46.98494975976294, -8.03906913915435], [-46.868846239708944, -7.958737104839884], [-46.74374491657733, -7.922965619100353], [-46.574094031199394, -7.905189739516004], [-46.48926858851044, -7.963241499543003], [-46.46699930055155, -8.070358202847899], [-46.50277078629114, -8.172948538792639], [-46.50727518099421, -8.27578057396542], [-46.5430466667338, -8.320319149883176], [-46.50277078629114, -8.396146789494537], [-46.658919473888375, -8.396146789494537], [-46.79301860009758, -8.436422669937187], [-46.83756816234393, -8.485465640557948], [-46.882117724590216, -8.583793281027681], [-46.92239360503288, -8.744457349656443], [-46.9046177254485, -8.829271806016934], [-47.06527080774882, -8.976642417107428], [-47.083046687333194, -9.03469417713444], [-47.03849712508685, -9.065983240828018], [-46.9401694846172, -9.070245936303124], [-46.84656596542152, -9.168573576772772], [-46.82857035926628, -9.306957371114194], [-46.752742719654975, -9.409547707058948], [-46.56082254631815, -9.498866558122458], [-46.53404886365618, -9.556918318149457], [-46.60086771386136, -9.650741563916029], [-46.65014139738162, -9.664013048797287], [-46.667917276965966, -9.74434508311171], [-46.50727518099421, -9.855944208462631], [-46.46249490584847, -9.949767454229232], [-46.47149270892612, -10.003314819553111], [-46.3466220986939, -10.168483282885049], [-46.28406594396384, -10.186478889040274], [-46.19024269819727, -10.177470099634036], [-46.087641375923965, -10.208737190670604], [-46.03409401060003, -10.271293345400693], [-45.94477515953653, -10.315853893975543], [-45.757117681674856, -10.329345105427691], [-45.85994971684758, -10.467728899769114], [-46.03836769240368, -10.570319235713882], [-46.087641375923965, -10.583832419823125], [-46.30184182354819, -10.757746000676136], [-46.234792260443555, -10.8828583101363], [-46.24829445822425, -10.914125401172797], [-46.36889138665279, -10.967672766496719], [-46.46249490584847, -11.177599532317288], [-46.529544468953105, -11.235431565773396], [-46.56982034939574, -11.315983326658738], [-46.55182474324056, -11.378297782160814], [-46.48926858851044, -11.414069267900388], [-46.426943146679804, -11.498905696917888], [-46.19024269819727, -11.543444272835643], [-46.08314796754942, -11.601496032862656], [-46.105417255508314, -11.66405218759273], [-46.243790063521175, -11.726608342322805], [-46.27506814088622, -11.766862250108375], [-46.24829445822425, -11.842689889719722], [-46.15896462083222, -11.83370307297065], [-46.10092384713377, -11.864970164007147], [-46.078643572846346, -11.927526318737222], [-46.21252297248469, -11.998849563645479], [-46.24829445822425, -12.048112260837215], [-46.32412209783561, -12.092672809412065], [-46.33762429561631, -12.128444295151638], [-46.3466220986939, -12.342655729104393], [-46.31534402132888, -12.42296579076168], [-46.15896462083222, -12.50329782507616], [-46.15896462083222, -12.601625465545808], [-46.234792260443555, -12.713224590896743], [-46.234792260443555, -12.798039047257149], [-46.30184182354819, -12.833832505653803], [-46.43572122318653, -12.847103990535075], [-46.59208963735463, -12.89186229302372], [-46.6456479890071, -12.922931630146422], [-46.75274271965495, -13.034750482068219], [-46.82857035926628, -13.070302241236917], [-46.971447561982245, -13.070302241236917], [-47.09204449041076, -13.097064937570323], [-47.292973453153735, -13.199896972743062], [-47.440344064244215, -13.248939943363894], [-47.55644758429821, -13.244457521317912], [-47.64104231408774, -13.115082516382643], [-47.72159407497307, -13.150612302894245], [-47.65904890657151, -13.320263188272165], [-47.681318194530405, -13.356056646668833], [-47.85547347461139, -13.293500491938744], [-47.93579452259729, -13.244457521317912], [-48.002844085701895, -13.248939943363894], [-48.07416733061015, -13.195392578039986], [-48.17496689500223, -13.180780761076335], [-48.16371689457307, -13.102470211214026], [-48.22604233640374, -13.092582515524342], [-48.36891953911967, -13.186405761290914], [-48.480518664470594, -13.195392578039986], [-48.587624381447, -13.155116697597322], [-48.65444323165218, -13.177396971884747], [-48.685721309017225, -13.338280767084484], [-48.73926867434113, -13.38281934300224], [-48.77504016008072, -13.351552251965742], [-48.76176867519945, -13.208664062921244], [-48.766273069902525, -13.097064937570323], [-48.80182482907122, -12.998978996328646], [-48.797320434368146, -12.927414052192404], [-48.824094117030086, -12.873866686868496], [-48.92691516587428, -12.784547835805], [-48.998249397111096, -12.748996076636303], [-49.016245003266306, -12.65517283086973], [-49.136622205123956, -12.735504865184154], [-49.29749501399516, -13.003483391031722], [-49.3598204558258, -13.132858395966991], [-49.38232045668411, -13.248939943363894], [-49.520693264697, -13.199896972743062], [-49.68583975537183, -13.177396971884747], [-49.91354240077675, -13.070302241236917], [-49.97159416080376, -13.025741692662066], [-50.05191520878964, -13.021237297958976], [-50.23934197375189, -12.931918446895494], [-50.270620051116936, -12.89186229302372], [-50.27512444582001, -12.789052230508076], [-50.19929680620865, -12.65517283086973], [-50.2035704880123, -12.570358374509311], [-50.13674065147859, -12.476513156085659], [-50.16374504703998, -12.38765573082101], [-50.29559197589765, -12.490026340194888], [-50.3923485713855, -12.617138161450072], [-50.48482049874116, -12.842599595831999], [-50.56604242566766, -12.819638169174837], [-50.613964790777004, -12.763388167029063], [-50.65537226305969, -12.666862284440654], [-50.66054682380397, -12.558207495139541], [-50.629268746438925, -12.437379853811592], [-50.631740670361324, -12.288646937981625], [-50.667523142429445, -12.112030720306748], [-50.67471918762584, -11.990082473467297], [-50.653570505178465, -11.922340771664409], [-50.66144770274457, -11.8535004370071], [-50.717466991990904, -11.74910834318112], [-50.66572138454822, -11.65190130822296], [-50.67134638476281, -11.573832457588622], [-50.716566113050305, -11.482689875986807], [-50.708018749443, -11.345668386384844], [-50.64524286814202, -11.162746016125666], [-50.61037226134306, -11.000983314642411], [-50.59912226091393, -10.689806544959453], [-50.55074945633427, -10.567177145750264], [-50.45467401321616, -10.388517470966192], [-50.40269769287403, -10.25824158709031], [-50.39527093477824, -10.176788947264384], [-50.33744988765065, -10.034362184018732], [-50.23484856537735, -9.842672723581373] ] ] ] } }, { "type": "Feature", "properties": { "population": 44035, "fill": "#333" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-53.11619999365156, -22.639987664885183], [-52.96072147209553, -22.454824083603015], [-52.56607057813454, -22.207324074161647], [-52.402495132441516, -22.069181979048096], [-52.33881837219997, -21.957341154469304], [-52.245665292474555, -21.84035872813176], [-52.12259644012363, -21.718168782064367], [-52.0649951195669, -21.622763504987418], [-52.072641604233596, -21.554142896901], [-52.047669679452866, -21.51094465306562], [-51.989848632325305, -21.49363019928012], [-51.95474731262692, -21.46954816711147], [-51.936290280672836, -21.422746407513614], [-51.87284423333068, -21.32982404068764], [-51.856650385056696, -21.260082827089718], [-51.86631835417552, -21.18267315616805], [-51.81141967044064, -21.077138484173474], [-51.69194334752365, -20.943720510334003], [-51.61904905763356, -20.806918747302916], [-51.593165267583686, -20.666513468509322], [-51.53422361494461, -20.55761697998031], [-51.39697141244321, -20.44175515915427], [-51.16072140343098, -20.306513454776464], [-51.06396480794314, -20.223039330498423], [-50.99377315487493, -20.101552509457804], [-50.58404901815143, -19.821203377669605], [-50.4886437410745, -19.79081519291657], [-50.43374505733965, -19.800263435464558], [-50.36444329688351, -19.858556894719527], [-49.37714589593983, -19.978483657106864], [-49.2783678159999, -19.98703102071417], [-49.2587901785343, -20.01695777966829], [-49.28804677144723, -20.073647234955814], [-49.28354237674415, -20.14857399562655], [-49.23899281449786, -20.24553933135674], [-49.19984852589528, -20.294362575406637], [-49.166318251178666, -20.29504372777643], [-49.11277088585473, -20.259272242036786], [-49.03964588306525, -20.18726784475885], [-48.99464588134862, -20.21359108795042], [-48.977990607275785, -20.338241971611808], [-48.95256824302476, -20.41002664231894], [-48.91836780226697, -20.42914285398564], [-48.886869998331065, -20.36997048844715], [-48.85829455778787, -20.232729272274312], [-48.81194323766033, -20.158923117115094], [-48.71564806797133, -20.143849874352583], [-48.36374497837542, -20.138224874138018], [-48.25326645853599, -20.093005145850512], [-48.178339697865255, -20.082875750932857], [-48.10949936320796, -20.116625752220315], [-48.05121689028155, -20.12022926798278], [-47.991143645802424, -20.082875750932857], [-47.9087901270359, -20.08175514542137], [-47.861768640867155, -20.05565162880059], [-47.86019759588535, -20.011991959166366], [-47.81857039703178, -19.98072486812987], [-47.74971907604595, -19.97712135236742], [-47.695490558352276, -19.9910739896184], [-47.655895830279405, -20.02280250645373], [-47.59424055448994, -20.018517838321486], [-47.51774274883738, -19.994216079582017], [-47.45992170170979, -20.00098365796518], [-47.427742745404146, -20.03629371790589], [-47.328964665464184, -20.117526631160942], [-47.244369935674655, -20.17399635987759], [-47.23492169312672, -20.204362571973462], [-47.26619977049177, -20.284694606287886], [-47.29297345315376, -20.423078400629322], [-47.2526975727111, -20.4766257659532], [-47.15458965881231, -20.525668736574076], [-47.109820369995106, -20.632763467221906], [-47.212641418839326, -20.806918747302916], [-47.22141949534603, -20.914013477950732], [-47.14559185573469, -20.98107402738391], [-47.1233225677758, -21.132949033177482], [-47.0562730046712, -21.195263488679586], [-46.99394756284053, -21.34265607242716], [-47.00271465301876, -21.40070783245409], [-46.895619922370884, -21.405190254500155], [-46.81529887438501, -21.3606516785824], [-46.685693156550315, -21.396203437751083], [-46.65464579208472, -21.373923163463658], [-46.60537210856444, -21.42747052878758], [-46.50727518099421, -21.458737619824078], [-46.49377298321352, -21.52579816925723], [-46.56082254631815, -21.672949053776847], [-46.60537210856444, -21.681957843183], [-46.62787210942275, -21.771276694246495], [-46.667917276965966, -21.811552574689145], [-46.658919473888375, -21.90515609388484], [-46.618874306345134, -21.98546615554217], [-46.658919473888375, -22.052526704975335], [-46.60086771386136, -22.13285873928976], [-46.66342386859145, -22.204401710768877], [-46.69919535433101, -22.320263531594932], [-46.641143594304026, -22.40960435531551], [-46.547320348537454, -22.440871446352006], [-46.5430466667338, -22.472138537388503], [-46.453716829341744, -22.516699085963353], [-46.39566506931476, -22.615026726433], [-46.47149270892612, -22.68206530320907], [-46.36889138665279, -22.748906126071347], [-46.35989358357517, -22.84272937183792], [-46.288570338666915, -22.882763553052598], [-46.15447121245768, -22.847233766540995], [-46.14569313595095, -22.891772342458765], [-46.02059181281933, -22.873996462874416], [-45.90899268746841, -22.820449097550494], [-45.85994971684758, -22.860505251422268], [-45.79290015374298, -22.85171618858699], [-45.743846196793584, -22.797949096692193], [-45.743846196793584, -22.726625851783922], [-45.801897956820596, -22.69984118279342], [-45.672292238985904, -22.619531121136077], [-45.629775147520235, -22.622673211099695], [-45.58319311449327, -22.615026726433], [-45.52964574916939, -22.65079821217256], [-45.4709238231012, -22.611642937241413], [-45.40904882074085, -22.646293817469484], [-45.2706650263994, -22.60601793702685], [-45.24389134373746, -22.56147936110908], [-45.056244852204316, -22.467656115342507], [-44.92236545256597, -22.449880235758172], [-44.833046601502474, -22.405099960612404], [-44.77072115967172, -22.423095566767586], [-44.65012423124318, -22.561479361109093], [-44.636622033462515, -22.6015135423238], [-44.53852510589235, -22.619531121136106], [-44.21699921472083, -22.592746452145548], [-44.16794525777152, -22.69984118279342], [-44.2482663057574, -22.74890612607129], [-44.27503998841934, -22.820449097550522], [-44.35986543110829, -22.85600085671922], [-44.471464556459125, -22.851716188586977], [-44.58756807651321, -22.878500857577478], [-44.72594088452604, -22.936552617604434], [-44.79749484233372, -22.99009998292837], [-44.80627291884048, -23.13725086744796], [-44.86432467886743, -23.204289444224003], [-44.78287203904159, -23.35392323899464], [-44.95162204547887, -23.38136708769781], [-45.21531590319421, -23.575539458386174], [-45.32534398356336, -23.59962149055474], [-45.42322118456275, -23.68535879851288], [-45.4333395931518, -23.758483801302418], [-45.46439794394598, -23.802582924078365], [-45.52717382524685, -23.8048241351014], [-45.66464575431917, -23.764767981229625], [-45.84307471620389, -23.763647375718108], [-45.971999281668786, -23.795595619124356], [-46.63079447281547, -24.110375904569707], [-46.86727519472703, -24.236367120313503], [-47.137275205026754, -24.49309564573184], [-47.5922190700378, -24.781091262186806], [-47.83117171587185, -24.953005331244754], [-47.87662215705876, -24.997543907162594], [-47.914195400679546, -24.999807090842637], [-47.98912216135028, -25.035798303153058], [-47.95941512896701, -25.065505335536272], [-47.9083396875655, -25.068207972358152], [-47.929499356341466, -25.16831539805196], [-48.02444320761958, -25.236716279567474], [-48.07754013347321, -25.29026364489144], [-48.08766952839085, -25.28015622263088], [-48.0919432101945, -25.23559567405603], [-48.18576645596107, -25.19081539891029], [-48.23054673110681, -25.012397423354116], [-48.26609849027551, -25.034677697641598], [-48.41346910136599, -24.958850058030265], [-48.51179674183564, -25.08372066826246], [-48.5653441071596, -25.056957971928966], [-48.54284410630126, -24.81147944693977], [-48.48929674097735, -24.74441889750662], [-48.61439806410894, -24.681862742776545], [-48.7795445547838, -24.695375926885774], [-48.82859851173316, -24.66410883584922], [-49.025023079773064, -24.668591257895272], [-49.09207264287767, -24.68636713747962], [-49.21694325310986, -24.690871532182697], [-49.29749501399516, -24.66410883584929], [-49.31076649887643, -24.530229436210945], [-49.23944325396815, -24.418630310860024], [-49.22594105618748, -24.338298276545572], [-49.274995013136845, -24.315798275687285], [-49.33754018153837, -24.21320793974253], [-49.33304677316386, -24.14186272217718], [-49.40909413934608, -24.083832934807262], [-49.60102529901141, -23.86489737958054], [-49.56974722164637, -23.833850015114933], [-49.551971342062075, -23.71324210035783], [-49.605518707385954, -23.641699128878713], [-49.65457266433535, -23.507819729240353], [-49.614296783892684, -23.409733787998675], [-49.636796784751, -23.257858782205105], [-49.73040030394668, -23.105983776411534], [-49.909048992402205, -23.034638558846183], [-49.91354240077675, -22.985595588225337], [-49.958091963023065, -22.963315313937912], [-49.97159416080376, -22.914052616746176], [-50.12324944002643, -22.94081531307961], [-50.29290032540439, -22.95432849718884], [-50.368947691586584, -22.91405261674619], [-50.43127313341722, -22.945319707782687], [-50.62769770145712, -22.923039433495262], [-50.72602534192677, -22.949824102485763], [-50.78406611562522, -22.945319707782687], [-50.88217402952398, -22.820449097550494], [-51.00277095795252, -22.793664428559993], [-51.181419646408045, -22.739897336665194], [-51.35534421358966, -22.65079821217256], [-51.54749509982585, -22.686349971341272], [-51.641098619021534, -22.650798212172575], [-51.69464598434547, -22.664069697053776], [-51.743919667865725, -22.619531121136077], [-51.873294672800995, -22.610522331729925], [-51.984893798151916, -22.54796617699985], [-52.06521484613779, -22.52120348066643], [-52.14127319864856, -22.543483754953854], [-52.16354248660744, -22.601513542323772], [-52.21708985193136, -22.641789422766422], [-52.26165040050621, -22.601513542323772], [-52.315197765830135, -22.619531121136077], [-52.44479249733628, -22.601513542323772], [-52.52062013694763, -22.615026726433], [-52.6144433827142, -22.57046617785815], [-52.69477541702862, -22.601513542323772], [-52.94924075876696, -22.570466177858123], [-53.044415322944445, -22.636406121779814], [-53.11619999365156, -22.639987664885183] ] ], [ [ [-45.24906590448171, -23.782543860813973], [-45.233091782778615, -23.825302651507627], [-45.25019749632173, -23.852966226781632], [-45.26031590491078, -23.889199138320066], [-45.260997057280576, -23.94140617156154], [-45.30262425613421, -23.914841229141985], [-45.41287206307413, -23.934880292406433], [-45.4513461856356, -23.895505290904396], [-45.30239354323476, -23.72765616340763], [-45.27224705770976, -23.7519579221472], [-45.24906590448171, -23.782543860813973] ] ] ] } }, { "type": "Feature", "properties": { "population": 6850, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-48.7219432342271, -5.355043157860635], [-48.730490597834375, -5.338168157216899], [-48.25281601906562, -4.954327810543248], [-47.80191512295892, -4.597030433632256], [-47.65454451186838, -4.606017250381342], [-47.58322126696021, -4.547965490354329], [-47.48939802119361, -4.423094880122107], [-47.45811994382859, -4.338280423761717], [-47.38229230421723, -4.275724269031571], [-47.333018620696976, -4.164125143680735], [-47.310749332738055, -4.065797503211058], [-47.28846905845063, -4.079288714663221], [-47.06527080774873, -3.842599252509217], [-47.02499492730607, -3.59712072751995], [-47.0294993220092, -3.570358031186515], [-46.96694316727911, -3.525797482611608], [-46.94467387932019, -3.396202751105534], [-46.859848436631296, -3.329142201672369], [-46.82429667746254, -3.329142201672369], [-46.74374491657733, -3.190780379988041], [-46.667917276965966, -3.092672466089311], [-46.63665018592951, -2.985577735441382], [-46.65014139738162, -2.91401279130514], [-46.574094031199365, -2.847193941099988], [-46.667917276965966, -2.739879483881225], [-46.600867713861305, -2.664051844269977], [-46.50727518099421, -2.614986900991994], [-46.48499490670673, -2.547948324215952], [-46.426943146679776, -2.512396565047197], [-46.43572122318653, -2.409564529874501], [-46.40894754052454, -2.387306228244199], [-46.41344094889905, -2.239913644496539], [-46.37766946315952, -2.253426828605825], [-46.27957253558924, -2.141827703254933], [-46.212522972484635, -1.927396542731231], [-46.21701638085926, -1.807030327202142], [-46.30184182354816, -1.802525932499123], [-46.31534402132888, -1.73098296101989], [-46.24379006352109, -1.722193898184685], [-46.1992405012748, -1.677413623038944], [-46.18124489511962, -1.574823287094205], [-46.1992405012748, -1.485504436030624], [-46.12319313509255, -1.34712064168923], [-46.15896462083214, -1.315853550652776], [-46.14119972757641, -1.240025911041414], [-46.00708961503864, -1.146861844987484], [-45.972219008239676, -1.187379424658161], [-45.778716803592545, -1.250814485671697], [-45.644848390282675, -1.347801794059023], [-45.55686987130156, -1.330707066844354], [-45.45854223083194, -1.35634915766633], [-45.353018545165924, -1.567396528998415], [-45.329167225896754, -1.717250050339828], [-45.28214573972798, -1.696551807362709], [-45.238497056422204, -1.629491257929601], [-45.18201634137711, -1.507103557948312], [-45.076272929140146, -1.466366251706802], [-45.02586765377987, -1.513387737875576], [-44.91967380207268, -1.588775924345214], [-44.82832248022851, -1.671568896253461], [-44.78984835766704, -1.724896535006508], [-44.72121676325213, -1.733443898613814], [-44.778598357237854, -1.798922416736616], [-44.72099703668124, -1.792396537581453], [-44.651244836754756, -1.74581450455446], [-44.59162203174594, -1.841900934001103], [-44.5468417566002, -1.946293027827096], [-44.537843953522554, -2.052728578762299], [-44.57992159184653, -2.113922428752971], [-44.61727510889642, -2.152176824743435], [-44.658671594850546, -2.22754303855595], [-44.707494838900516, -2.241056222665179], [-44.75631808295054, -2.265577707975638], [-44.700749233174406, -2.320465405381867], [-44.66249483718394, -2.373353590993133], [-44.5790207129059, -2.23046540194872], [-44.520298786837714, -2.190431220734013], [-44.43547334414876, -2.168150946446588], [-44.3913742213727, -2.269620676879811], [-44.38191499249626, -2.365465407098554], [-44.52006807393826, -2.405521560970271], [-44.520749226308, -2.481349200581633], [-44.56191499936267, -2.524327717846177], [-44.58891939492406, -2.57337068846698], [-44.6107492297412, -2.676861903352346], [-44.63887423081417, -2.762599211310487], [-44.721447476151525, -3.142396589079851], [-44.723018521133326, -3.204733017238993], [-44.62266939621156, -3.137892194376775], [-44.43749482860085, -2.944400976058205], [-44.38124482645509, -2.738297452570919], [-44.30811982366555, -2.535116292476459], [-44.2286996546203, -2.47121980566402], [-44.17941498477143, -2.47121980566402], [-44.10561981594083, -2.493500079951446], [-44.1013461341372, -2.560099203585764], [-44.112596134566274, -2.598573326147118], [-44.191565864141296, -2.699603603438618], [-44.22509613885791, -2.754952726643808], [-44.192697455981374, -2.809620697479147], [-44.013147888585195, -2.642232995781399], [-43.93281585427076, -2.583500083384649], [-43.864414972755185, -2.595431236183515], [-43.728525074993286, -2.51824129183268], [-43.455141275502, -2.502047443558695], [-43.43467374542439, -2.413629471435797], [-43.379994788260376, -2.376056227815013], [-43.22969082744868, -2.385943923504726], [-42.93674037682035, -2.465155352307647], [-42.83234828299436, -2.529491292261866], [-42.67596888249773, -2.589564536741022], [-42.593615363731146, -2.661129480877207], [-42.24958947170137, -2.792064544465745], [-41.99984825123698, -2.806017181716754], [-41.876098246516335, -2.746625089607392], [-41.84617148756223, -2.758775968977091], [-41.86889121499141, -2.851698335803107], [-41.8153438496675, -2.936293065592636], [-41.84211753232944, -3.034620706062299], [-41.92244956664388, -3.110448345673632], [-42.00277061462975, -3.231056260430719], [-42.105371936903055, -3.262323351467202], [-42.10086754219998, -3.302379505338976], [-42.216971062253975, -3.431974236845122], [-42.364341673344484, -3.44975011642947], [-42.45367151073651, -3.476512812762891], [-42.502714481357344, -3.44975011642947], [-42.57426843916505, -3.570358031186515], [-42.62781580448896, -3.614896607104313], [-42.676869761438354, -3.699733036121813], [-42.66336756365766, -3.789051887185309], [-42.73492152146537, -3.922931286823655], [-42.851025041519335, -4.039012834220557], [-42.891070209062576, -4.141844869393296], [-42.989397849532224, -4.239952783292068], [-42.953615377464104, -4.391827789085639], [-42.89557460376568, -4.405099273966925], [-42.86429652640061, -4.498922519733469], [-42.91357020992086, -4.637306314074863], [-42.94912196908956, -4.659564615705236], [-42.93134608950521, -4.731129559841463], [-42.953615377464104, -4.775668135759233], [-42.90457240684327, -4.829215501083155], [-42.85551844989391, -4.936332204388066], [-42.83301844903556, -5.097194026930723], [-42.80624476637365, -5.159530455089907], [-42.83301844903556, -5.311405460883492], [-42.91357020992086, -5.391715522540821], [-43.04744960955921, -5.597137893658314], [-43.100996974883174, -5.623922562648772], [-43.083221095298796, -5.713241413712311], [-43.109994777960765, -5.771293173739309], [-43.07422329222118, -6.057047579171225], [-43.0026693344135, -6.12386642937642], [-42.962624166870256, -6.186422584106495], [-42.851025041519335, -6.253483133539646], [-42.86878993477515, -6.436405503798838], [-42.85551844989391, -6.480944079716608], [-42.91357020992086, -6.615043205925815], [-42.917843891724516, -6.668590571249737], [-42.98040004645463, -6.744418210861056], [-43.13227505224819, -6.780189696600658], [-43.19909390245337, -6.753427000267237], [-43.30191495129759, -6.802469970888012], [-43.46256803359785, -6.842745851330733], [-43.560895674067524, -6.753427000267266], [-43.67676848122207, -6.699879634943329], [-43.81537200213438, -6.708646725121511], [-43.95374481014727, -6.762194090445348], [-44.03857025283622, -6.766698485148481], [-44.060839540795115, -6.829254639878584], [-44.09211761816013, -6.806974365591159], [-44.163440863068445, -6.887306399905583], [-44.16794525777152, -6.923077885645114], [-44.25727509516352, -7.007892342005576], [-44.30631806578435, -7.110504650607368], [-44.44919526850032, -7.146276136347012], [-44.57857027343559, -7.248866472291766], [-44.712669399644824, -7.396237083382246], [-44.815270721918125, -7.364969992345763], [-44.909093967684726, -7.445302026660158], [-45.0249667748393, -7.494344997281019], [-45.2974496953899, -7.556901152011108], [-45.47159398914238, -7.673004672065105], [-45.542917234050634, -7.869418253776431], [-45.578699706118755, -8.15066826450527], [-45.654516359401555, -8.253280573107133], [-45.65902075410463, -8.311332333134118], [-45.73484839371599, -8.431918275234068], [-45.7528439998712, -8.561293280169366], [-45.819673836404945, -8.699896801081678], [-45.92676856705276, -8.788995925574284], [-45.98054664527612, -8.927599446486596], [-45.94027076483346, -9.012194176276125], [-45.93576637013041, -9.119530606151898], [-45.9044992790939, -9.177582366178939], [-45.8957212025872, -9.32921567274451], [-45.828671639482536, -9.373995947890265], [-45.79739356211752, -9.463095072382885], [-45.837669442560156, -9.534638043862032], [-45.85994971684758, -9.833663934175206], [-45.85994971684758, -9.99883239750713], [-45.89999488439082, -10.02559509384055], [-45.89999488439082, -10.083646853867549], [-45.95354224971473, -10.181974494337197], [-45.93576637013041, -10.213241585373623], [-45.94477515953653, -10.315853893975543], [-46.03409401060003, -10.271293345400693], [-46.087641375923965, -10.208737190670604], [-46.19024269819727, -10.177470099634036], [-46.28406594396384, -10.186478889040274], [-46.3466220986939, -10.168483282885049], [-46.47149270892612, -10.003314819553111], [-46.46249490584847, -9.949767454229232], [-46.50727518099421, -9.855944208462631], [-46.667917276965966, -9.74434508311171], [-46.65014139738162, -9.664013048797287], [-46.60086771386136, -9.650741563916029], [-46.53404886365618, -9.556918318149457], [-46.56082254631815, -9.498866558122458], [-46.752742719654975, -9.409547707058948], [-46.82857035926628, -9.306957371114194], [-46.84656596542152, -9.168573576772772], [-46.9401694846172, -9.070245936303124], [-47.03849712508685, -9.065983240828018], [-47.083046687333194, -9.03469417713444], [-47.06527080774882, -8.976642417107428], [-46.9046177254485, -8.829271806016934], [-46.92239360503288, -8.744457349656443], [-46.882117724590216, -8.583793281027681], [-46.83756816234393, -8.485465640557948], [-46.79301860009758, -8.436422669937187], [-46.658919473888375, -8.396146789494537], [-46.50277078629114, -8.396146789494537], [-46.5430466667338, -8.320319149883176], [-46.50727518099421, -8.27578057396542], [-46.50277078629114, -8.172948538792639], [-46.46699930055155, -8.070358202847899], [-46.48926858851044, -7.963241499543003], [-46.574094031199394, -7.905189739516004], [-46.74374491657733, -7.922965619100353], [-46.868846239708944, -7.958737104839884], [-46.98494975976294, -8.03906913915435], [-47.016216850799424, -8.04357353385734], [-47.07854229263012, -7.976512984424289], [-47.15009625043777, -7.856146768895158], [-47.27947125537304, -7.731056432092103], [-47.303542301213156, -7.66287527714745], [-47.34652081847764, -7.659733187183832], [-47.41357038158225, -7.530116483020592], [-47.45811994382859, -7.534620877723682], [-47.498395824271256, -7.449806421363292], [-47.4950230214082, -7.356202902167524], [-47.506943187878534, -7.305797626807262], [-47.54586774991026, -7.287582294081119], [-47.61179670750337, -7.301512958675062], [-47.66894758858976, -7.279694110186497], [-47.717089680269964, -7.22210377595826], [-47.715969074758476, -7.184750258908423], [-47.66534407282728, -7.16719410589495], [-47.605721267818495, -7.11476734608253], [-47.53708967340353, -7.027250252900274], [-47.47049054976921, -6.795944091732892], [-47.405473457445254, -6.42109056180837], [-47.39714582040884, -6.072340548504613], [-47.44484845894729, -5.749913778392497], [-47.48579450543113, -5.561146681347864], [-47.519994946188945, -5.506478710512454], [-47.61246687354458, -5.454952829640604], [-47.763221273826645, -5.407250191102179], [-47.85389144330105, -5.350780462385529], [-47.88449935462489, -5.285521670833603], [-47.95311996271133, -5.256276064249221], [-48.05954452731797, -5.263021669975288], [-48.16889145531735, -5.240741395687863], [-48.28162217250832, -5.189457214043955], [-48.378148055096744, -5.169418150779563], [-48.45824937651173, -5.180887877779639], [-48.52349718173511, -5.220504578509647], [-48.574341910237166, -5.28822430765544], [-48.630591912382954, -5.330301945979329], [-48.7219432342271, -5.355043157860635] ] ], [ [ [-44.56529878855429, -2.923922459651919], [-44.581943076298614, -2.845611909789682], [-44.569122030887684, -2.784879485597855], [-44.50184175488363, -2.726146573201106], [-44.48137422480602, -2.717599209593914], [-44.48721895159139, -2.789823333442769], [-44.48249483031742, -2.811861908502237], [-44.4993698309612, -2.939676854784238], [-44.59769747143082, -3.037543069454955], [-44.56529878855429, -2.923922459651919] ] ], [ [ [-45.01124485048763, -1.34463773143824], [-44.99549045535548, -1.347582067488133], [-44.97861545471176, -1.267250033173696], [-44.88839572470755, -1.276918002292462], [-44.88299045106396, -1.317875035104862], [-44.94711765077574, -1.366017126785096], [-44.96781589375291, -1.39078031132351], [-45.02092380593501, -1.372323279369425], [-45.01124485048763, -1.34463773143824] ] ] ] } }, { "type": "Feature", "properties": { "population": 16461, "fill": "#666" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-44.78287203904159, -23.35392323899464], [-44.86432467886743, -23.204289444224003], [-44.80627291884048, -23.13725086744796], [-44.79749484233372, -22.99009998292837], [-44.72594088452604, -22.936552617604434], [-44.58756807651321, -22.878500857577478], [-44.471464556459125, -22.851716188586977], [-44.35986543110829, -22.85600085671922], [-44.27503998841934, -22.820449097550522], [-44.2482663057574, -22.74890612607129], [-44.16794525777152, -22.69984118279342], [-44.21699921472083, -22.592746452145548], [-44.53852510589235, -22.619531121136106], [-44.636622033462515, -22.6015135423238], [-44.65012423124318, -22.561479361109093], [-44.77072115967172, -22.423095566767586], [-44.833046601502474, -22.405099960612404], [-44.73044527922917, -22.360539412037582], [-44.66339571612457, -22.369548201443706], [-44.6010702742939, -22.316000836119827], [-44.53402071118927, -22.302487652010583], [-44.44469087379724, -22.25344468138975], [-44.29304658090311, -22.23995346993759], [-44.21699921472086, -22.24894028668666], [-44.09211761816013, -22.173112647075314], [-43.89569305012026, -22.106074070299258], [-43.81537200213438, -22.065798189856594], [-43.56516935587115, -22.065798189856594], [-43.46256803359785, -22.05703109967841], [-43.341971105169364, -22.00348373435446], [-43.13227505224819, -22.02574203598482], [-43.06342373126233, -22.063556978833603], [-42.27951623065553, -21.71322493421951], [-42.28402062535858, -21.641901689311226], [-42.36884606804756, -21.632892899905073], [-42.364341673344484, -21.592617019462423], [-42.30179650494293, -21.48552228881458], [-42.29729211023985, -21.405190254500155], [-42.22146447062852, -21.338151677724113], [-42.18141930308528, -21.16399639764309], [-42.096593860396325, -21.003354301671337], [-42.14114342264264, -20.963298147799563], [-42.096593860396325, -20.923022267356913], [-41.99826621992668, -20.932031056763066], [-41.96249473418709, -20.90975078247564], [-41.92694297501842, -20.82919902159034], [-41.864397806616864, -20.77565165626642], [-41.74378989185979, -20.820431931412145], [-41.71252280082331, -20.97656963268082], [-41.73051840697852, -21.043630182113986], [-41.71252280082331, -21.110449032319167], [-41.44027059317207, -21.199767883382663], [-41.39121663622271, -21.186496398501404], [-41.26611531309109, -21.231056947076254], [-41.06969074505122, -21.213281067491906], [-40.9675398622482, -21.27559552299401], [-41.0471907441929, -21.505781078649875], [-41.02311969835273, -21.596901687594595], [-41.021548653370985, -21.610854324845604], [-40.98779865208343, -21.92022933664731], [-41.00039997092358, -21.99897933965144], [-41.122567944333866, -22.08447494838157], [-41.58291708298856, -22.243556985700025], [-41.70554648219775, -22.309694683535497], [-41.98049034034233, -22.580595572775735], [-41.997596053885445, -22.644733758816187], [-41.98611534055692, -22.735854367760908], [-41.940895612269344, -22.788281127573384], [-41.98746665896783, -22.845190309431814], [-42.04236534270268, -22.94712146566394], [-42.12246666411761, -22.94081531307961], [-42.58102503121967, -22.94105701230751], [-42.829195206702195, -22.973224982284705], [-42.95833949873804, -22.967138556271266], [-43.01617153219422, -22.942617070960807], [-43.08119961084668, -22.902582889746157], [-43.10076626198372, -22.850156129933737], [-43.065445215714476, -22.77072497455987], [-43.08637417159093, -22.723242062592306], [-43.15432461363616, -22.725263547044392], [-43.2290206614075, -22.747543821331874], [-43.241841706818434, -22.795026733299437], [-43.23666714607418, -22.82877673458694], [-43.20877285790067, -22.878039431778575], [-43.1936996151382, -22.93857410205652], [-43.224065827234085, -22.991220588439887], [-43.36941495387242, -22.997966194165997], [-43.53277067299456, -23.04634998507413], [-43.73662199913031, -23.06660877490941], [-43.898846126412366, -23.101479381708486], [-43.9737728870831, -23.057380258932426], [-43.898846126412366, -23.035319711215834], [-43.7915206828651, -23.04588855927534], [-43.67586760228147, -23.009457893823082], [-43.70287199784286, -22.966237677330582], [-43.86621673063638, -22.910449100983726], [-44.04756805591387, -22.944638555412894], [-44.14791718083558, -23.01101795247638], [-44.367973341573816, -23.004953499120006], [-44.63729219950375, -23.05557850105123], [-44.68117159570886, -23.106862682695066], [-44.67374483761307, -23.206552627904102], [-44.621098351229705, -23.22859120296357], [-44.56979219692886, -23.274052630479048], [-44.619065880449114, -23.3163499953738], [-44.66721895845785, -23.335246480469664], [-44.78287203904159, -23.35392323899464] ] ], [ [ [-44.15579437840165, -23.166496474032442], [-44.220591744154774, -23.190798232771897], [-44.32003999013591, -23.212397354689585], [-44.360096144007684, -23.17212147424692], [-44.27415009580727, -23.116332897900065], [-44.2428720184422, -23.07401356034819], [-44.220372017583884, -23.0830223497544], [-44.191565864141296, -23.113168835279282], [-44.1292404223106, -23.141974988721927], [-44.09797333127415, -23.1694188374251], [-44.15579437840165, -23.166496474032442] ] ] ] } }, { "type": "Feature", "properties": { "population": 3195, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-45.757117681674856, -10.329345105427691], [-45.94477515953653, -10.315853893975543], [-45.93576637013041, -10.213241585373623], [-45.95354224971473, -10.181974494337197], [-45.89999488439082, -10.083646853867549], [-45.89999488439082, -10.02559509384055], [-45.85994971684758, -9.99883239750713], [-45.85994971684758, -9.833663934175206], [-45.837669442560156, -9.534638043862032], [-45.79739356211752, -9.463095072382885], [-45.828671639482536, -9.373995947890265], [-45.8957212025872, -9.32921567274451], [-45.9044992790939, -9.177582366178939], [-45.93576637013041, -9.119530606151898], [-45.94027076483346, -9.012194176276125], [-45.98054664527612, -8.927599446486596], [-45.92676856705276, -8.788995925574284], [-45.819673836404945, -8.699896801081678], [-45.7528439998712, -8.561293280169366], [-45.73484839371599, -8.431918275234068], [-45.65902075410463, -8.311332333134118], [-45.654516359401555, -8.253280573107133], [-45.578699706118755, -8.15066826450527], [-45.542917234050634, -7.869418253776431], [-45.47159398914238, -7.673004672065105], [-45.2974496953899, -7.556901152011108], [-45.0249667748393, -7.494344997281019], [-44.909093967684726, -7.445302026660158], [-44.815270721918125, -7.364969992345763], [-44.712669399644824, -7.396237083382246], [-44.57857027343559, -7.248866472291766], [-44.44919526850032, -7.146276136347012], [-44.30631806578435, -7.110504650607368], [-44.25727509516352, -7.007892342005576], [-44.16794525777152, -6.923077885645114], [-44.163440863068445, -6.887306399905583], [-44.09211761816013, -6.806974365591159], [-44.060839540795115, -6.829254639878584], [-44.03857025283622, -6.766698485148481], [-43.95374481014727, -6.762194090445348], [-43.81537200213438, -6.708646725121511], [-43.67676848122207, -6.699879634943329], [-43.560895674067524, -6.753427000267266], [-43.46256803359785, -6.842745851330733], [-43.30191495129759, -6.802469970888012], [-43.19909390245337, -6.753427000267237], [-43.13227505224819, -6.780189696600658], [-42.98040004645463, -6.744418210861056], [-42.917843891724516, -6.668590571249737], [-42.91357020992086, -6.615043205925815], [-42.85551844989391, -6.480944079716608], [-42.86878993477515, -6.436405503798838], [-42.851025041519335, -6.253483133539646], [-42.962624166870256, -6.186422584106495], [-43.0026693344135, -6.12386642937642], [-43.07422329222118, -6.057047579171225], [-43.109994777960765, -5.771293173739309], [-43.083221095298796, -5.713241413712311], [-43.100996974883174, -5.623922562648772], [-43.04744960955921, -5.597137893658314], [-42.91357020992086, -5.391715522540821], [-42.83301844903556, -5.311405460883492], [-42.80624476637365, -5.159530455089907], [-42.83301844903556, -5.097194026930723], [-42.85551844989391, -4.936332204388066], [-42.90457240684327, -4.829215501083155], [-42.953615377464104, -4.775668135759233], [-42.93134608950521, -4.731129559841463], [-42.94912196908956, -4.659564615705236], [-42.91357020992086, -4.637306314074863], [-42.86429652640061, -4.498922519733469], [-42.89557460376568, -4.405099273966925], [-42.953615377464104, -4.391827789085639], [-42.989397849532224, -4.239952783292068], [-42.891070209062576, -4.141844869393296], [-42.851025041519335, -4.039012834220557], [-42.73492152146537, -3.922931286823655], [-42.66336756365766, -3.789051887185309], [-42.676869761438354, -3.699733036121813], [-42.62781580448896, -3.614896607104313], [-42.57426843916505, -3.570358031186515], [-42.502714481357344, -3.44975011642947], [-42.45367151073651, -3.476512812762891], [-42.364341673344484, -3.44975011642947], [-42.216971062253975, -3.431974236845122], [-42.10086754219998, -3.302379505338976], [-42.105371936903055, -3.262323351467202], [-42.00277061462975, -3.231056260430719], [-41.92244956664388, -3.110448345673632], [-41.84211753232944, -3.034620706062299], [-41.8153438496675, -2.936293065592636], [-41.86889121499141, -2.851698335803107], [-41.84617148756223, -2.758775968977091], [-41.72197104337121, -2.808939545109496], [-41.640067964075, -2.878702731364498], [-41.479865321245, -2.916495701556187], [-41.31832234633262, -2.936293065592636], [-41.26859822334205, -2.916056248414421], [-41.25711751001347, -3.079181254637149], [-41.37771443844201, -3.271332140873369], [-41.42676839539138, -3.320375111494201], [-41.44926839624969, -3.436478631548212], [-41.38221883314509, -3.592616332816888], [-41.35544515048312, -3.708719852870885], [-41.28389119267544, -3.811332161472734], [-41.230343827351504, -4.043517228923633], [-41.18128987040211, -4.123849263238057], [-41.11874470200058, -4.177396628561979], [-41.074195139754295, -4.324767239652473], [-41.1412447028589, -4.427379548254322], [-41.23484822205458, -4.539198400176133], [-41.2438460251322, -4.615026039787466], [-41.22607014554785, -4.726625165138387], [-41.18128987040211, -4.811439621498806], [-41.185794265105216, -4.914051930100655], [-41.12324909670366, -5.007875175867227], [-41.11447102019693, -5.065926935894225], [-41.0606929419736, -5.168517271838979], [-41.06969074505122, -5.306901066180416], [-41.0251411828049, -5.364952826207414], [-40.94909381662268, -5.418500191531322], [-40.917815739257634, -5.60164228836139], [-40.92232013396071, -5.681974322675813], [-40.891042056595666, -5.905172573377655], [-40.891042056595666, -6.012267304025499], [-40.80621661390671, -6.253483133539646], [-40.79744952372852, -6.378353743771839], [-40.770664854738015, -6.494457263825836], [-40.72139117121776, -6.570262930780089], [-40.70811968633649, -6.659603754500665], [-40.614296440569916, -6.708646725121511], [-40.48041704093157, -6.735431394112013], [-40.41787187253004, -6.81147876029425], [-40.440141160488906, -6.905082279489932], [-40.511695118296615, -7.0033879473025], [-40.58301836320487, -7.195319106967844], [-40.53396440625551, -7.324694111903099], [-40.53846880095858, -7.391754661336265], [-40.64557451793496, -7.400741478085337], [-40.69034380675214, -7.427526147075838], [-40.69034380675214, -7.512340603436257], [-40.61878984894446, -7.637233186325531], [-40.659065729387095, -7.762323523128586], [-40.547466604036174, -7.833646768036857], [-40.52947099788096, -7.905189739516004], [-40.54297319566166, -8.030082322405278], [-40.59201616628249, -8.12390556817185], [-40.74839556677915, -8.244491510271843], [-40.833221009468105, -8.36487969845804], [-40.88676837479201, -8.351608213576768], [-40.92232013396071, -8.43191827523411], [-41.01614337972728, -8.418646790352838], [-41.083192942831886, -8.525741521000683], [-41.15902058244325, -8.548021795288108], [-41.212567947767155, -8.632858224305608], [-41.36871663536442, -8.713168285962922], [-41.39999471272944, -8.784733230099178], [-41.46704427583404, -8.865043291756422], [-41.498322353199114, -8.936366536664764], [-41.55637411322607, -8.972138022404351], [-41.60992147855001, -8.96315120565528], [-41.73479208878217, -8.981146811810504], [-41.73479208878217, -9.132802091033199], [-41.79734824351226, -9.173077971475848], [-41.85089560883617, -9.253388033133191], [-41.9179451719408, -9.213112152690485], [-42.04304649507242, -9.208849457215422], [-42.15014122572023, -9.293444187004965], [-42.31079430802055, -9.306957371114194], [-42.43139123644909, -9.409547707058962], [-42.48944299647607, -9.498866558122458], [-42.57426843916505, -9.485595073241143], [-42.61881800141134, -9.56592710755561], [-42.75269740104969, -9.521146832409883], [-42.851025041519335, -9.547931501400399], [-42.93134608950521, -9.516862164277654], [-42.936971089719805, -9.474345072812028], [-43.02944301707544, -9.436332376049464], [-43.04294521485613, -9.39627622217769], [-43.127770657545085, -9.373995947890265], [-43.185822417572126, -9.418556496465044], [-43.377742590908895, -9.414052101762039], [-43.414865395059394, -9.33552182532884], [-43.449296548716575, -9.302452976411118], [-43.53839567320921, -9.360504736438116], [-43.60544523631381, -9.338224462150691], [-43.65899260163772, -9.364987158484112], [-43.69477507370584, -9.445319192798536], [-43.810867607431305, -9.427543313214187], [-43.828643487015654, -9.498866558122458], [-43.78409392476934, -9.56592710755561], [-43.72604216474235, -9.748849477814815], [-43.681272875925174, -9.802396843138695], [-43.71253996696166, -9.949767454229203], [-43.70354216388404, -10.034603883246703], [-43.75281584740429, -10.106146854725807], [-43.76159392391105, -10.168483282885063], [-43.801869804353714, -10.20425476862465], [-43.91346892970461, -10.43195741402954], [-43.99378997769048, -10.454215715659814], [-44.1188913008221, -10.58809511529823], [-44.21699921472086, -10.62837099574088], [-44.31082246048746, -10.60160829940746], [-44.417917191135274, -10.58809511529823], [-44.53852510589235, -10.628370995740852], [-44.61884615387825, -10.686422755767879], [-44.64561983654019, -10.73546572638871], [-44.752714567188036, -10.784750396237527], [-44.78399264455311, -10.85607364114577], [-44.851042207657684, -10.878353915433223], [-44.93137424197212, -10.860578035848874], [-45.04297336732304, -10.896349521588448], [-45.315214588645745, -10.780246001534408], [-45.44031591177733, -10.619362206334714], [-45.47159398914238, -10.485504779353462], [-45.516143551388666, -10.414181534445163], [-45.605473388780695, -10.333849500130768], [-45.757117681674856, -10.329345105427691] ] ] ] } }, { "type": "Feature", "properties": { "population": 20734, "fill": "#666" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-50.99377315487493, -20.101552509457804], [-50.99759639720824, -19.66392309823233], [-50.96429683539111, -19.511366940069024], [-50.92379024204902, -19.464125727329417], [-50.88082271111307, -19.459181879484575], [-50.86416743704021, -19.437802484137762], [-50.87092402909482, -19.423849846886768], [-50.868891558314175, -19.377487540430693], [-50.84391963353346, -19.310888416796388], [-50.791943313191325, -19.238444566376614], [-50.71319331018725, -19.160595442313166], [-50.641870065278994, -19.118517803989278], [-50.57752313899624, -19.112233624062057], [-50.53162225833901, -19.087030986381905], [-50.48977533291455, -19.0204318627476], [-50.49899286256303, -18.95315158674356], [-50.457596376608876, -18.876642794762475], [-50.36826653921685, -18.768647185174018], [-50.24699944474713, -18.690116908740833], [-50.093773120542636, -18.641293664690863], [-49.96012443380371, -18.61633272623868], [-49.788671790544555, -18.614530968357457], [-49.67797354413426, -18.6001169053076], [-49.611824859970255, -18.56682832981899], [-49.55332266047296, -18.51011690187437], [-49.48829458182047, -18.522048054673263], [-49.41674062401276, -18.602819542129453], [-49.33665028892631, -18.584823935974214], [-49.24754017810517, -18.46850068934934], [-49.17937000948905, -18.404823929107764], [-49.10826649115165, -18.388388381605793], [-48.95369983486478, -18.325854199532813], [-48.226943215344335, -18.340246289925574], [-48.01791732846439, -18.434530961490992], [-47.92881820397179, -18.445319536121303], [-47.786171714155245, -18.37940156485672], [-47.44641950392909, -18.170595404547655], [-47.31884625687508, -18.083298037936274], [-47.27947125537304, -18.061479189447695], [-47.34652081847764, -17.878315119960547], [-47.35551862155526, -17.824767754636625], [-47.328744938893294, -17.744457692979296], [-47.27069317886631, -17.66863005336795], [-47.28846905845066, -17.548022138610875], [-47.40906598687917, -17.49897916799003], [-47.458119943828564, -17.52574186432345], [-47.52944318873682, -17.454198892844303], [-47.49839582427123, -17.32932828261211], [-47.45361554912549, -17.34710416219646], [-47.422348458089004, -17.27127652258511], [-47.310749332738084, -17.141901517649842], [-47.2126414188393, -17.07484096821669], [-47.230417298423646, -17.025797997595845], [-47.15009625043777, -16.976513327747043], [-47.15909405351539, -16.918483540377125], [-47.26619977049177, -16.6597335305066], [-47.404572578504656, -16.570392706786023], [-47.45361554912549, -16.494345340603786], [-47.431346261166595, -16.409750610814257], [-47.35102521318072, -16.30241418093844], [-47.32424054419022, -16.22660851398419], [-47.33752301540002, -16.146276479669766], [-47.301971256231354, -16.03918174902192], [-47.230417298423646, -16.034677354318845], [-47.127815976150345, -15.923078228967924], [-47.07854229263009, -15.936349713849197], [-46.86434184500584, -15.882802348525274], [-46.833074753969356, -15.8427461946535], [-46.868846239708944, -15.592763274961158], [-46.93139140811047, -15.543500577769436], [-46.93589580281355, -15.431901452418515], [-46.85534404192825, -15.324806721770685], [-46.89111552766781, -15.239970292753185], [-46.93139140811047, -15.226698807871912], [-46.89111552766781, -15.04803913308784], [-46.833074753969356, -15.012267647348267], [-46.7349668400706, -15.016772042051343], [-46.63665018592948, -15.070319407375266], [-46.547320348537454, -15.039052316338768], [-46.57859842590247, -14.914181706106575], [-46.556318151615045, -14.869401430960849], [-46.58309183427701, -14.793573791349502], [-46.51604227117241, -14.713241757035078], [-46.38666726623714, -14.771293517062077], [-46.31534402132888, -14.847121156673424], [-46.297348415173644, -14.909677311403499], [-46.19024269819727, -14.93644000773692], [-46.078643572846346, -14.922948796284771], [-46.02509620752241, -14.869401430960849], [-45.97604225057307, -14.985504951014832], [-46.0741501644718, -15.248979082159337], [-45.967044447495425, -15.186422927429248], [-45.92676856705276, -15.128371167402264], [-45.766115484752476, -15.146147046986613], [-45.71256811942854, -15.123866772699188], [-45.654516359401555, -15.043556711041788], [-45.55191503712825, -14.93644000773692], [-45.46259618606476, -14.940944402439996], [-45.31971898334879, -14.856129946079577], [-45.22589573758222, -14.74002642602558], [-45.10102512735003, -14.717746151738154], [-44.88232028502273, -14.597138236981039], [-44.83754000987699, -14.516828175323752], [-44.56079439385124, -14.347177289945833], [-44.35986543110829, -14.271349650334457], [-44.31982026356505, -14.244345254773094], [-44.21249482001778, -14.240082559297988], [-44.15894745469387, -14.271349650334486], [-43.83764129009327, -14.315888226252241], [-43.781391287947486, -14.342892621813633], [-43.80006804647246, -14.369897017375024], [-43.8608224433213, -14.534362355680116], [-43.87949920184627, -14.624604058341333], [-43.86441497275521, -14.659694391711156], [-43.82415007864111, -14.695246150879854], [-43.708046558587114, -14.735522031322503], [-43.49384611096289, -14.789069396646426], [-43.449296548716575, -14.780082579897353], [-43.38674039398654, -14.699750545582901], [-43.230371979818415, -14.63741411742373], [-42.953615377464104, -14.677470271295505], [-42.891070209062576, -14.749013242774652], [-42.63232019919204, -14.940944402439996], [-42.578542120968706, -14.931957585690924], [-42.43139123644909, -15.034547921635692], [-42.261740351071154, -15.106090893114839], [-42.1769149083822, -15.106090893114839], [-42.087596057318706, -15.181918532726186], [-41.940214459899664, -15.172931715977143], [-41.801841651886804, -15.110595287817915], [-41.3599495451862, -15.494457607148604], [-41.333164876195724, -15.717655857850389], [-41.15902058244325, -15.780190039923411], [-41.02964557750798, -15.73543173743478], [-40.944820134819025, -15.673095309275581], [-40.891042056595666, -15.69537558356302], [-40.82871661476503, -15.681862399453777], [-40.761667051660396, -15.739914159480776], [-40.667843805893824, -15.717655857850431], [-40.57424028669814, -15.757931738293095], [-40.53396440625551, -15.797965919507703], [-40.47592363255703, -15.77570761787743], [-40.328542035138014, -15.824750588498276], [-40.234949502270865, -15.8202461937952], [-40.16789993916623, -15.896293559977423], [-40.13211746709811, -15.891789165274304], [-40.00274246216287, -15.994401473876223], [-39.93569289905824, -15.998905868579271], [-39.86436965414998, -16.110504993930192], [-39.940197293761315, -16.31142297034461], [-40.05628982748678, -16.396237426705014], [-40.13211746709811, -16.503354130009953], [-40.13662186180122, -16.543630010452603], [-40.25271439552665, -16.565888312082905], [-40.27499466981408, -16.614953255360874], [-40.2839924728917, -16.74454798686702], [-40.24371659244903, -16.833647111359625], [-40.29749467067239, -16.87842738650535], [-40.47141923785398, -16.869418597099184], [-40.52496660317789, -16.931974751829273], [-40.57424028669814, -17.13289272824369], [-40.56524248362052, -17.26226773317896], [-40.60551836406319, -17.311332676456885], [-40.60979204586684, -17.391862464685104], [-40.49819292051592, -17.418647133675606], [-40.48041704093157, -17.557030928017028], [-40.41336747782697, -17.557030928017028], [-40.382320113361345, -17.623849778222223], [-40.2839924728917, -17.717673023988795], [-40.208164833280364, -17.766715994609626], [-40.1858955453215, -17.816000664458443], [-40.23044510756779, -17.918591000403126], [-40.208164833280364, -17.976642760430195], [-40.21694290978709, -17.97213836572712], [-40.42686967560766, -17.89182830406979], [-40.47592363255703, -17.927599789809364], [-40.53396440625551, -17.900595394247972], [-40.667843805893824, -17.95436248614277], [-40.72589556592084, -17.945375669393698], [-40.788440734322364, -17.97213836572712], [-40.90904864907944, -17.97213836572712], [-40.77516924944109, -18.092746280484192], [-40.7661714463635, -18.137306829059042], [-40.83749469127176, -18.15079804051119], [-40.91354205745398, -18.10151337066239], [-41.01614337972728, -18.173078314798616], [-41.0606929419736, -18.177582709501706], [-41.1412447028589, -18.29794892503081], [-41.1277425050782, -18.333720410770383], [-41.0251411828049, -18.40526338224953], [-41.002641181946586, -18.454328325527456], [-41.02964557750798, -18.637250695786648], [-40.926824528663786, -18.695302455813646], [-40.93131793703833, -18.806901581164553], [-41.091971019338644, -18.829401582022868], [-41.19479206818281, -18.806901581164553], [-41.23484822205458, -18.851681856310293], [-41.163524977146324, -18.905229221634215], [-41.10547321711931, -18.887233615478976], [-41.0251411828049, -18.981056861245563], [-41.05191486546687, -19.03460422656947], [-40.944820134819025, -19.14620335192039], [-40.926824528663786, -19.293573963010886], [-40.9580916197003, -19.472233637794957], [-41.04742145709233, -19.489987544722226], [-41.02964557750798, -19.548039304749224], [-41.15902058244325, -19.659638430100145], [-41.185794265105216, -19.865082773874718], [-41.30639119353373, -19.954401624938214], [-41.36444295356074, -20.186366965818237], [-41.404499107432514, -20.21315163480874], [-41.71701620919785, -20.208647240105662], [-41.85540000353927, -20.369531035305386], [-41.79734824351226, -20.4275827953324], [-41.79734824351226, -20.53467752598023], [-41.85089560883617, -20.623996377043724], [-41.81083945496442, -20.64627665133115], [-41.88217368620121, -20.75787577668207], [-41.864397806616864, -20.77565165626642], [-41.92694297501842, -20.82919902159034], [-41.96249473418709, -20.90975078247564], [-41.99826621992668, -20.932031056763066], [-42.096593860396325, -20.923022267356913], [-42.14114342264264, -20.963298147799563], [-42.096593860396325, -21.003354301671337], [-42.18141930308528, -21.16399639764309], [-42.22146447062852, -21.338151677724113], [-42.29729211023985, -21.405190254500155], [-42.30179650494293, -21.48552228881458], [-42.364341673344484, -21.592617019462423], [-42.36884606804756, -21.632892899905073], [-42.28402062535858, -21.641901689311226], [-42.27951623065553, -21.71322493421951], [-43.06342373126233, -22.063556978833603], [-43.13227505224819, -22.02574203598482], [-43.341971105169364, -22.00348373435446], [-43.46256803359785, -22.05703109967841], [-43.56516935587115, -22.065798189856594], [-43.81537200213438, -22.065798189856594], [-43.89569305012026, -22.106074070299258], [-44.09211761816013, -22.173112647075314], [-44.21699921472086, -22.24894028668666], [-44.29304658090311, -22.23995346993759], [-44.44469087379724, -22.25344468138975], [-44.53402071118927, -22.302487652010583], [-44.6010702742939, -22.316000836119827], [-44.66339571612457, -22.369548201443706], [-44.73044527922917, -22.360539412037582], [-44.833046601502474, -22.405099960612404], [-44.92236545256597, -22.449880235758172], [-45.056244852204316, -22.467656115342507], [-45.24389134373746, -22.56147936110908], [-45.2706650263994, -22.60601793702685], [-45.40904882074085, -22.646293817469484], [-45.4709238231012, -22.611642937241413], [-45.52964574916939, -22.65079821217256], [-45.58319311449327, -22.615026726433], [-45.629775147520235, -22.622673211099695], [-45.672292238985904, -22.619531121136077], [-45.801897956820596, -22.69984118279342], [-45.743846196793584, -22.726625851783922], [-45.743846196793584, -22.797949096692193], [-45.79290015374298, -22.85171618858699], [-45.85994971684758, -22.860505251422268], [-45.90899268746841, -22.820449097550494], [-46.02059181281933, -22.873996462874416], [-46.14569313595095, -22.891772342458765], [-46.15447121245768, -22.847233766540995], [-46.288570338666915, -22.882763553052598], [-46.35989358357517, -22.84272937183792], [-46.36889138665279, -22.748906126071347], [-46.47149270892612, -22.68206530320907], [-46.39566506931476, -22.615026726433], [-46.453716829341744, -22.516699085963353], [-46.5430466667338, -22.472138537388503], [-46.547320348537454, -22.440871446352006], [-46.641143594304026, -22.40960435531551], [-46.69919535433101, -22.320263531594932], [-46.66342386859145, -22.204401710768877], [-46.60086771386136, -22.13285873928976], [-46.658919473888375, -22.052526704975335], [-46.618874306345134, -21.98546615554217], [-46.658919473888375, -21.90515609388484], [-46.667917276965966, -21.811552574689145], [-46.62787210942275, -21.771276694246495], [-46.60537210856444, -21.681957843183], [-46.56082254631815, -21.672949053776847], [-46.49377298321352, -21.52579816925723], [-46.50727518099421, -21.458737619824078], [-46.60537210856444, -21.42747052878758], [-46.65464579208472, -21.373923163463658], [-46.685693156550315, -21.396203437751083], [-46.81529887438501, -21.3606516785824], [-46.895619922370884, -21.405190254500155], [-47.00271465301876, -21.40070783245409], [-46.99394756284053, -21.34265607242716], [-47.0562730046712, -21.195263488679586], [-47.1233225677758, -21.132949033177482], [-47.14559185573469, -20.98107402738391], [-47.22141949534603, -20.914013477950732], [-47.212641418839326, -20.806918747302916], [-47.109820369995106, -20.632763467221906], [-47.15458965881231, -20.525668736574076], [-47.2526975727111, -20.4766257659532], [-47.29297345315376, -20.423078400629322], [-47.26619977049177, -20.284694606287886], [-47.23492169312672, -20.204362571973462], [-47.244369935674655, -20.17399635987759], [-47.328964665464184, -20.117526631160942], [-47.427742745404146, -20.03629371790589], [-47.45992170170979, -20.00098365796518], [-47.51774274883738, -19.994216079582017], [-47.59424055448994, -20.018517838321486], [-47.655895830279405, -20.02280250645373], [-47.695490558352276, -19.9910739896184], [-47.74971907604595, -19.97712135236742], [-47.81857039703178, -19.98072486812987], [-47.86019759588535, -20.011991959166366], [-47.861768640867155, -20.05565162880059], [-47.9087901270359, -20.08175514542137], [-47.991143645802424, -20.082875750932857], [-48.05121689028155, -20.12022926798278], [-48.10949936320796, -20.116625752220315], [-48.178339697865255, -20.082875750932857], [-48.25326645853599, -20.093005145850512], [-48.36374497837542, -20.138224874138018], [-48.71564806797133, -20.143849874352583], [-48.81194323766033, -20.158923117115094], [-48.85829455778787, -20.232729272274312], [-48.886869998331065, -20.36997048844715], [-48.91836780226697, -20.42914285398564], [-48.95256824302476, -20.41002664231894], [-48.977990607275785, -20.338241971611808], [-48.99464588134862, -20.21359108795042], [-49.03964588306525, -20.18726784475885], [-49.11277088585473, -20.259272242036786], [-49.166318251178666, -20.29504372777643], [-49.19984852589528, -20.294362575406637], [-49.23899281449786, -20.24553933135674], [-49.28354237674415, -20.14857399562655], [-49.28804677144723, -20.073647234955814], [-49.2587901785343, -20.01695777966829], [-49.2783678159999, -19.98703102071417], [-49.37714589593983, -19.978483657106864], [-50.36444329688351, -19.858556894719527], [-50.43374505733965, -19.800263435464558], [-50.4886437410745, -19.79081519291657], [-50.58404901815143, -19.821203377669605], [-50.99377315487493, -20.101552509457804] ] ] ] } }, { "type": "Feature", "properties": { "population": 3885, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-40.9675398622482, -21.27559552299401], [-41.06969074505122, -21.213281067491906], [-41.26611531309109, -21.231056947076254], [-41.39121663622271, -21.186496398501404], [-41.44027059317207, -21.199767883382663], [-41.71252280082331, -21.110449032319167], [-41.73051840697852, -21.043630182113986], [-41.71252280082331, -20.97656963268082], [-41.74378989185979, -20.820431931412145], [-41.864397806616864, -20.77565165626642], [-41.88217368620121, -20.75787577668207], [-41.81083945496442, -20.64627665133115], [-41.85089560883617, -20.623996377043724], [-41.79734824351226, -20.53467752598023], [-41.79734824351226, -20.4275827953324], [-41.85540000353927, -20.369531035305386], [-41.71701620919785, -20.208647240105662], [-41.404499107432514, -20.21315163480874], [-41.36444295356074, -20.186366965818237], [-41.30639119353373, -19.954401624938214], [-41.185794265105216, -19.865082773874718], [-41.15902058244325, -19.659638430100145], [-41.02964557750798, -19.548039304749224], [-41.04742145709233, -19.489987544722226], [-40.9580916197003, -19.472233637794957], [-40.926824528663786, -19.293573963010886], [-40.944820134819025, -19.14620335192039], [-41.05191486546687, -19.03460422656947], [-41.0251411828049, -18.981056861245563], [-41.10547321711931, -18.887233615478976], [-41.163524977146324, -18.905229221634215], [-41.23484822205458, -18.851681856310293], [-41.19479206818281, -18.806901581164553], [-41.091971019338644, -18.829401582022868], [-40.93131793703833, -18.806901581164553], [-40.926824528663786, -18.695302455813646], [-41.02964557750798, -18.637250695786648], [-41.002641181946586, -18.454328325527456], [-41.0251411828049, -18.40526338224953], [-41.1277425050782, -18.333720410770383], [-41.1412447028589, -18.29794892503081], [-41.0606929419736, -18.177582709501706], [-41.01614337972728, -18.173078314798616], [-40.91354205745398, -18.10151337066239], [-40.83749469127176, -18.15079804051119], [-40.7661714463635, -18.137306829059042], [-40.77516924944109, -18.092746280484192], [-40.90904864907944, -17.97213836572712], [-40.788440734322364, -17.97213836572712], [-40.72589556592084, -17.945375669393698], [-40.667843805893824, -17.95436248614277], [-40.53396440625551, -17.900595394247972], [-40.47592363255703, -17.927599789809364], [-40.42686967560766, -17.89182830406979], [-40.21694290978709, -17.97213836572712], [-40.208164833280364, -17.976642760430195], [-40.1858955453215, -18.007931824123773], [-39.672449480813185, -18.32473359402131], [-39.667714373210686, -18.325854199532813], [-39.73971877048868, -18.639953332608485], [-39.74197096784022, -18.846056856095714], [-39.69989332951633, -19.27781956787865], [-39.73139113345226, -19.453996332411762], [-39.78336745379437, -19.571681883776108], [-39.84479201668441, -19.649069582040724], [-40.00139114375193, -19.74199194886667], [-40.14179642254547, -19.96835426218921], [-40.202770545965194, -20.20594460328381], [-40.298845989083304, -20.29258279018255], [-40.31864335311977, -20.42578103745116], [-40.39604203771293, -20.56954813277919], [-40.59652056098557, -20.783737594074864], [-40.727016171432325, -20.846074022234063], [-40.78934161326299, -20.906147266713177], [-40.82871661476503, -21.031237603516246], [-40.95449909026638, -21.23780255280232], [-40.9675398622482, -21.27559552299401] ] ] ] } }, { "type": "Feature", "properties": { "population": 15126, "fill": "#666" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-46.02509620752241, -14.869401430960849], [-45.93127296175584, -14.749013242774652], [-45.91349708217152, -14.690983455404748], [-45.96254005279235, -14.534604054908087], [-45.96254005279235, -14.467763232045797], [-45.92249488524911, -14.35168168464891], [-46.01159400974177, -14.298112346667835], [-46.03836769240368, -14.253354044179261], [-46.12769752979574, -14.18203079927099], [-46.17246681861292, -14.074914095966065], [-46.22152077556231, -13.998866729783842], [-46.26179665600495, -13.869491724848501], [-46.270574732511704, -13.655082536981979], [-46.18574928982272, -13.405099617289665], [-46.09641945243072, -13.351552251965757], [-46.08314796754942, -13.253444338066984], [-46.176971213315994, -13.217672852327382], [-46.18124489511965, -13.159621092300398], [-46.150197530654054, -13.025741692662052], [-46.0741501644718, -12.976698722041192], [-46.087641375923965, -12.914142567311146], [-46.234792260443555, -12.798039047257149], [-46.234792260443555, -12.713224590896743], [-46.15896462083222, -12.601625465545808], [-46.15896462083222, -12.50329782507616], [-46.31534402132888, -12.42296579076168], [-46.3466220986939, -12.342655729104393], [-46.33762429561631, -12.128444295151638], [-46.32412209783561, -12.092672809412065], [-46.24829445822425, -12.048112260837215], [-46.21252297248469, -11.998849563645479], [-46.078643572846346, -11.927526318737222], [-46.10092384713377, -11.864970164007147], [-46.15896462083222, -11.83370307297065], [-46.24829445822425, -11.842689889719722], [-46.27506814088622, -11.766862250108375], [-46.243790063521175, -11.726608342322805], [-46.105417255508314, -11.66405218759273], [-46.08314796754942, -11.601496032862656], [-46.19024269819727, -11.543444272835643], [-46.426943146679804, -11.498905696917888], [-46.48926858851044, -11.414069267900388], [-46.55182474324056, -11.378297782160814], [-46.56982034939574, -11.315983326658738], [-46.529544468953105, -11.235431565773396], [-46.46249490584847, -11.177599532317288], [-46.36889138665279, -10.967672766496719], [-46.24829445822425, -10.914125401172797], [-46.234792260443555, -10.8828583101363], [-46.30184182354819, -10.757746000676136], [-46.087641375923965, -10.583832419823125], [-46.03836769240368, -10.570319235713882], [-45.85994971684758, -10.467728899769114], [-45.757117681674856, -10.329345105427691], [-45.605473388780695, -10.333849500130768], [-45.516143551388666, -10.414181534445163], [-45.47159398914238, -10.485504779353462], [-45.44031591177733, -10.619362206334714], [-45.315214588645745, -10.780246001534408], [-45.04297336732304, -10.896349521588448], [-44.93137424197212, -10.860578035848874], [-44.851042207657684, -10.878353915433223], [-44.78399264455311, -10.85607364114577], [-44.752714567188036, -10.784750396237527], [-44.64561983654019, -10.73546572638871], [-44.61884615387825, -10.686422755767879], [-44.53852510589235, -10.628370995740852], [-44.417917191135274, -10.58809511529823], [-44.31082246048746, -10.60160829940746], [-44.21699921472086, -10.62837099574088], [-44.1188913008221, -10.58809511529823], [-43.99378997769048, -10.454215715659814], [-43.91346892970461, -10.43195741402954], [-43.801869804353714, -10.20425476862465], [-43.76159392391105, -10.168483282885063], [-43.75281584740429, -10.106146854725807], [-43.70354216388404, -10.034603883246703], [-43.71253996696166, -9.949767454229203], [-43.681272875925174, -9.802396843138695], [-43.72604216474235, -9.748849477814815], [-43.78409392476934, -9.56592710755561], [-43.828643487015654, -9.498866558122458], [-43.810867607431305, -9.427543313214187], [-43.69477507370584, -9.445319192798536], [-43.65899260163772, -9.364987158484112], [-43.60544523631381, -9.338224462150691], [-43.53839567320921, -9.360504736438116], [-43.449296548716575, -9.302452976411118], [-43.414865395059394, -9.33552182532884], [-43.377742590908895, -9.414052101762039], [-43.185822417572126, -9.418556496465044], [-43.127770657545085, -9.373995947890265], [-43.04294521485613, -9.39627622217769], [-43.02944301707544, -9.436332376049464], [-42.936971089719805, -9.474345072812028], [-42.93134608950521, -9.516862164277654], [-42.851025041519335, -9.547931501400399], [-42.75269740104969, -9.521146832409883], [-42.61881800141134, -9.56592710755561], [-42.57426843916505, -9.485595073241143], [-42.48944299647607, -9.498866558122458], [-42.43139123644909, -9.409547707058962], [-42.31079430802055, -9.306957371114194], [-42.15014122572023, -9.293444187004965], [-42.04304649507242, -9.208849457215422], [-41.9179451719408, -9.213112152690485], [-41.85089560883617, -9.253388033133191], [-41.79734824351226, -9.173077971475848], [-41.73479208878217, -9.132802091033199], [-41.73479208878217, -8.981146811810504], [-41.60992147855001, -8.96315120565528], [-41.55637411322607, -8.972138022404351], [-41.498322353199114, -8.936366536664764], [-41.46704427583404, -8.865043291756422], [-41.39999471272944, -8.784733230099178], [-41.36871663536442, -8.713168285962922], [-41.324167073118076, -8.735448560250362], [-41.15902058244325, -8.708663891259846], [-41.10547321711931, -8.717672680666027], [-41.100968822416235, -8.775724440693025], [-41.003992500357526, -8.781349440907604], [-40.98037189398772, -8.815780594564785], [-40.891042056595666, -8.856056475007449], [-40.891042056595666, -9.03469417713444], [-40.855490297427, -9.092745937161425], [-40.85099688905245, -9.150797697188352], [-40.70361529163341, -9.217616547393618], [-40.69034380675214, -9.342728856853768], [-40.743891172076076, -9.42303891851111], [-40.68583941204906, -9.47210386178898], [-40.56479204415024, -9.460172708990143], [-40.41269731178579, -9.396957374547355], [-40.31977494495982, -9.2930047338632], [-40.27319291193285, -9.144952970402969], [-40.212218788513155, -9.101513027339593], [-40.077669222833606, -9.08824154245832], [-40.00499465951441, -9.058095056933354], [-39.94874465736862, -9.022103844622904], [-39.90914992929572, -8.98024593286982], [-39.887770533948924, -8.923995930724061], [-39.88461745765676, -8.853353838185598], [-39.83489333466616, -8.809013016181552], [-39.73836745207774, -8.791237136597275], [-39.68774245014657, -8.74940119750137], [-39.682798602301716, -8.683021800437942], [-39.60089552300548, -8.619564766767255], [-39.441824472015526, -8.559271795717166], [-39.33269727058703, -8.565797674872442], [-39.25664990440481, -8.64026300974433], [-39.098249019456034, -8.714970043844119], [-38.834994614882476, -8.800245926003356], [-38.70539988337629, -8.879896807948114], [-38.66781565342694, -8.896090656222128], [-38.61922312227642, -8.896090656222128], [-38.57759592342282, -8.86053889705343], [-38.54429636160569, -8.831073563898173], [-38.50469064720423, -8.834896806231512], [-38.48399240422714, -8.877655596925138], [-38.48219064634591, -8.959547689892815], [-38.43291696282563, -9.00364681266882], [-38.33594064076692, -9.01017269182401], [-38.29432442824191, -9.043021814170856], [-38.30759591312315, -9.102194179709358], [-38.28307442781272, -9.203663910142609], [-38.2211994254524, -9.34767270469861], [-37.97572090046313, -9.512138043003716], [-38.04299019013865, -9.605983261427355], [-37.99371650661834, -9.646237169212938], [-38.02949897868646, -9.726569203527362], [-37.96266914215278, -9.873939814617813], [-37.90012397375119, -9.913995968489587], [-37.90012397375119, -9.949767454229232], [-37.77951605899412, -10.079362185735349], [-37.784020453697195, -10.30684510456939], [-37.83756781902116, -10.42294862462336], [-37.824065621240436, -10.548038961426414], [-37.784020453697195, -10.62837099574088], [-37.81529853106224, -10.677413966361712], [-37.97144721865948, -10.75348330520103], [-38.01172309910211, -10.75348330520103], [-38.10982002667234, -10.708703030055304], [-38.190141074658214, -10.717689846804376], [-38.243919152881574, -10.824806550109301], [-38.234921349803955, -10.896349521588448], [-38.17686958977697, -10.980944251377977], [-38.10982002667234, -11.030228921226794], [-38.06076606972297, -11.168590742911121], [-37.9804450217371, -11.239913987819392], [-38.00721870439904, -11.35601750787339], [-37.9669428239564, -11.400797783019115], [-37.85107001680183, -11.440853936890889], [-37.797291938578496, -11.525668393251294], [-37.65891913056561, -11.556957456944886], [-37.63214544790364, -11.521163998548232], [-37.574093687876626, -11.539181577360537], [-37.41186956059454, -11.497323665607496], [-37.46924016825176, -11.653703066104185], [-37.68861517662026, -12.100099567507868], [-37.95727485483758, -12.475392550574156], [-38.01914985719793, -12.591276344057235], [-38.23964547107789, -12.844181627142348], [-38.40186959835995, -12.9661298739818], [-38.44732003954698, -12.967030752922426], [-38.49884592041872, -12.95668163143381], [-38.52494943703948, -12.76226756151749], [-38.65409372907533, -12.644603982810281], [-38.69099680665494, -12.62390573983322], [-38.743874005937755, -12.748556623494494], [-38.7879731287137, -12.782746077923775], [-38.85186961552614, -12.790172836019565], [-38.78369944691008, -12.844401353713238], [-38.76367136997413, -12.90717723501416], [-38.833192857001166, -13.032948724186951], [-38.83521434145325, -13.147250486359724], [-38.95919505907341, -13.273021975532515], [-39.03096874345198, -13.365043463417862], [-39.0674213815613, -13.480465831102151], [-39.08924023004988, -13.588241714119647], [-39.03502269868477, -13.558776380964389], [-39.00914989496346, -13.581496108393651], [-38.98867137855723, -13.615026383110262], [-39.00127269739727, -13.664530779529912], [-39.04109813836959, -13.758112326068499], [-39.03502269868477, -13.99100051854623], [-39.04807445699515, -14.04386673150043], [-39.00846874259361, -14.101237339157706], [-38.966391104269746, -14.003371124486875], [-38.94232005842963, -14.030595246619157], [-39.059544183995115, -14.654750543866328], [-39.01342357676708, -14.935539128796336], [-38.99609813665302, -15.253922930004194], [-38.94322093737031, -15.564418547317416], [-38.8851691773433, -15.842065042283764], [-38.88066478264017, -15.864345316571132], [-38.96076610405515, -16.186552360112387], [-39.06314769975762, -16.5044747355214], [-39.125022702117974, -16.76366419853366], [-39.16394726414967, -17.04357387718011], [-39.20287182618148, -17.178112456531096], [-39.21524243212207, -17.315815098502867], [-39.17069286987578, -17.64206511094835], [-39.15404858213145, -17.703940113308647], [-39.27846875289339, -17.849530939174997], [-39.412567879102596, -17.919953305142656], [-39.486824473732156, -17.990155944539367], [-39.65083937256685, -18.252267770944457], [-39.667714373210686, -18.325854199532813], [-39.672449480813185, -18.32473359402131], [-40.1858955453215, -18.007931824123773], [-40.208164833280364, -17.976642760430195], [-40.23044510756779, -17.918591000403126], [-40.1858955453215, -17.816000664458443], [-40.208164833280364, -17.766715994609626], [-40.2839924728917, -17.717673023988795], [-40.382320113361345, -17.623849778222223], [-40.41336747782697, -17.557030928017028], [-40.48041704093157, -17.557030928017028], [-40.49819292051592, -17.418647133675606], [-40.60979204586684, -17.391862464685104], [-40.60551836406319, -17.311332676456885], [-40.56524248362052, -17.26226773317896], [-40.57424028669814, -17.13289272824369], [-40.52496660317789, -16.931974751829273], [-40.47141923785398, -16.869418597099184], [-40.29749467067239, -16.87842738650535], [-40.24371659244903, -16.833647111359625], [-40.2839924728917, -16.74454798686702], [-40.27499466981408, -16.614953255360874], [-40.25271439552665, -16.565888312082905], [-40.13662186180122, -16.543630010452603], [-40.13211746709811, -16.503354130009953], [-40.05628982748678, -16.396237426705014], [-39.940197293761315, -16.31142297034461], [-39.86436965414998, -16.110504993930192], [-39.93569289905824, -15.998905868579271], [-40.00274246216287, -15.994401473876223], [-40.13211746709811, -15.891789165274304], [-40.16789993916623, -15.896293559977423], [-40.234949502270865, -15.8202461937952], [-40.328542035138014, -15.824750588498276], [-40.47592363255703, -15.77570761787743], [-40.53396440625551, -15.797965919507703], [-40.57424028669814, -15.757931738293095], [-40.667843805893824, -15.717655857850431], [-40.761667051660396, -15.739914159480776], [-40.82871661476503, -15.681862399453777], [-40.891042056595666, -15.69537558356302], [-40.944820134819025, -15.673095309275581], [-41.02964557750798, -15.73543173743478], [-41.15902058244325, -15.780190039923411], [-41.333164876195724, -15.717655857850389], [-41.3599495451862, -15.494457607148604], [-41.801841651886804, -15.110595287817915], [-41.940214459899664, -15.172931715977143], [-42.087596057318706, -15.181918532726186], [-42.1769149083822, -15.106090893114839], [-42.261740351071154, -15.106090893114839], [-42.43139123644909, -15.034547921635692], [-42.578542120968706, -14.931957585690924], [-42.63232019919204, -14.940944402439996], [-42.891070209062576, -14.749013242774652], [-42.953615377464104, -14.677470271295505], [-43.230371979818415, -14.63741411742373], [-43.38674039398654, -14.699750545582901], [-43.449296548716575, -14.780082579897353], [-43.49384611096289, -14.789069396646426], [-43.708046558587114, -14.735522031322503], [-43.82415007864111, -14.695246150879854], [-43.86441497275521, -14.659694391711156], [-43.87949920184627, -14.624604058341333], [-43.8608224433213, -14.534362355680116], [-43.80006804647246, -14.369897017375024], [-43.781391287947486, -14.342892621813633], [-43.83764129009327, -14.315888226252241], [-44.15894745469387, -14.271349650334486], [-44.21249482001778, -14.240082559297988], [-44.31982026356505, -14.244345254773094], [-44.35986543110829, -14.271349650334457], [-44.56079439385124, -14.347177289945833], [-44.83754000987699, -14.516828175323752], [-44.88232028502273, -14.597138236981039], [-45.10102512735003, -14.717746151738154], [-45.22589573758222, -14.74002642602558], [-45.31971898334879, -14.856129946079577], [-45.46259618606476, -14.940944402439996], [-45.55191503712825, -14.93644000773692], [-45.654516359401555, -15.043556711041788], [-45.71256811942854, -15.123866772699188], [-45.766115484752476, -15.146147046986613], [-45.92676856705276, -15.128371167402264], [-45.967044447495425, -15.186422927429248], [-46.0741501644718, -15.248979082159337], [-45.97604225057307, -14.985504951014832], [-46.02509620752241, -14.869401430960849] ] ], [ [ [-38.90721873873133, -13.40105664838535], [-38.903615222968824, -13.473500498805151], [-38.93781566372661, -13.5322334112019], [-38.97764110469893, -13.523444348366638], [-38.993164786931686, -13.484069346864658], [-39.02219066694528, -13.44559522430319], [-39.00666698471241, -13.415448738778196], [-38.980124014949865, -13.398354011563526], [-38.90721873873133, -13.40105664838535] ] ], [ [ [-38.60121652979262, -12.992672843744288], [-38.743874005937755, -13.09706493757028], [-38.783018294540284, -13.118664059487969], [-38.78707224977313, -13.05498729924642], [-38.684921366970116, -12.974896964159996], [-38.66804636632634, -12.880172839452769], [-38.61449900100246, -12.924052235657825], [-38.60031565085205, -12.972414053909006], [-38.60121652979262, -12.992672843744288] ] ] ] } }, { "type": "Feature", "properties": { "population": 8843, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-40.53846880095858, -7.391754661336265], [-40.53396440625551, -7.324694111903099], [-40.58301836320487, -7.195319106967844], [-40.511695118296615, -7.0033879473025], [-40.440141160488906, -6.905082279489932], [-40.41787187253004, -6.81147876029425], [-40.48041704093157, -6.735431394112013], [-40.614296440569916, -6.708646725121511], [-40.70811968633649, -6.659603754500665], [-40.72139117121776, -6.570262930780089], [-40.770664854738015, -6.494457263825836], [-40.79744952372852, -6.378353743771839], [-40.80621661390671, -6.253483133539646], [-40.891042056595666, -6.012267304025499], [-40.891042056595666, -5.905172573377655], [-40.92232013396071, -5.681974322675813], [-40.917815739257634, -5.60164228836139], [-40.94909381662268, -5.418500191531322], [-41.0251411828049, -5.364952826207414], [-41.06969074505122, -5.306901066180416], [-41.0606929419736, -5.168517271838979], [-41.11447102019693, -5.065926935894225], [-41.12324909670366, -5.007875175867227], [-41.185794265105216, -4.914051930100655], [-41.18128987040211, -4.811439621498806], [-41.22607014554785, -4.726625165138387], [-41.2438460251322, -4.615026039787466], [-41.23484822205458, -4.539198400176133], [-41.1412447028589, -4.427379548254322], [-41.074195139754295, -4.324767239652473], [-41.11874470200058, -4.177396628561979], [-41.18128987040211, -4.123849263238057], [-41.230343827351504, -4.043517228923633], [-41.28389119267544, -3.811332161472734], [-41.35544515048312, -3.708719852870885], [-41.38221883314509, -3.592616332816888], [-41.44926839624969, -3.436478631548212], [-41.42676839539138, -3.320375111494201], [-41.37771443844201, -3.271332140873369], [-41.25711751001347, -3.079181254637149], [-41.26859822334205, -2.916056248414421], [-41.194572341611945, -2.886129489460302], [-40.875518374362855, -2.869693941958332], [-40.474572314146116, -2.795668060228223], [-40.23539994174115, -2.813224213241682], [-39.964718779071745, -2.861608004149886], [-39.77189772679432, -2.985797462012329], [-39.60944288661278, -3.056219827979987], [-39.511115246143135, -3.125521588436129], [-39.35271436119439, -3.197306259143247], [-39.01432445570771, -3.390116325092123], [-38.89596873830217, -3.501715450443044], [-38.68627268538103, -3.653832155464585], [-38.475895480090145, -3.717486943049067], [-38.361824430816796, -3.87634925379669], [-38.271824427383564, -3.948111951846712], [-38.04884590325261, -4.216332176922251], [-37.795720893596666, -4.404198395026285], [-37.62628973478962, -4.592064613130319], [-37.30139104075511, -4.713111981029158], [-37.230748948216586, -4.824271653238313], [-37.54281561051161, -4.93204753625588], [-37.59659368873494, -4.958832205246381], [-37.721464298967135, -5.061422541191149], [-37.913395458632465, -5.463280466677062], [-38.0474945848417, -5.614913773242662], [-38.07854194930732, -5.686478717378904], [-38.07854194930732, -5.762306356990237], [-38.12781563282758, -5.878387904387154], [-38.301740200009135, -6.074823458755574], [-38.36878976311377, -6.092599338339923], [-38.41357003825948, -6.061332247303426], [-38.493891086245384, -6.128370824079497], [-38.511666965829704, -6.181918189403419], [-38.578716528934336, -6.262250223717842], [-38.605490211596305, -6.396129623356174], [-38.5251691636104, -6.382858138474916], [-38.578716528934336, -6.480944079716593], [-38.65003977384259, -6.690870845537162], [-38.61877268280611, -6.757931394970328], [-38.65003977384259, -6.838241456627657], [-38.725867413453955, -6.891788821951579], [-38.73037180815703, -7.0033879473025], [-38.685822245910714, -7.030172616293001], [-38.676824442833095, -7.15954762122827], [-38.60099680322176, -7.222103775958345], [-38.547449437897825, -7.235594987410494], [-38.53394724011713, -7.293646747437492], [-38.58299021073799, -7.427526147075838], [-38.632274880586806, -7.458793238112335], [-38.63676828896132, -7.534620877723682], [-38.699093730791986, -7.619457306741182], [-38.81969065922053, -7.663995882658938], [-38.864240221466815, -7.704271763101588], [-38.96707225663954, -7.847137979489005], [-38.99833934767605, -7.820375283155585], [-39.074166987287384, -7.856146768895158], [-39.109949459355505, -7.753314733722434], [-39.24381787266532, -7.681991488814162], [-39.30637402739538, -7.623939728787164], [-39.350923589641695, -7.548112089175831], [-39.53406568647176, -7.47656911769667], [-39.65444288832941, -7.373978781751916], [-39.84659377456563, -7.347194112761414], [-39.95369949154201, -7.360465597642673], [-40.06529861689293, -7.405245872788413], [-40.172393347540776, -7.418517357669671], [-40.261723184932805, -7.391754661336265], [-40.53846880095858, -7.391754661336265] ] ] ] } }, { "type": "Feature", "properties": { "population": 2220, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-37.41186956059454, -11.497323665607496], [-37.574093687876626, -11.539181577360537], [-37.63214544790364, -11.521163998548232], [-37.65891913056561, -11.556957456944886], [-37.797291938578496, -11.525668393251294], [-37.85107001680183, -11.440853936890889], [-37.9669428239564, -11.400797783019115], [-38.00721870439904, -11.35601750787339], [-37.9804450217371, -11.239913987819392], [-38.06076606972297, -11.168590742911121], [-38.10982002667234, -11.030228921226794], [-38.17686958977697, -10.980944251377977], [-38.234921349803955, -10.896349521588448], [-38.243919152881574, -10.824806550109301], [-38.190141074658214, -10.717689846804376], [-38.10982002667234, -10.708703030055304], [-38.01172309910211, -10.75348330520103], [-37.97144721865948, -10.75348330520103], [-37.81529853106224, -10.677413966361712], [-37.784020453697195, -10.62837099574088], [-37.824065621240436, -10.548038961426414], [-37.83756781902116, -10.42294862462336], [-37.784020453697195, -10.30684510456939], [-37.77951605899412, -10.079362185735349], [-37.90012397375119, -9.949767454229232], [-37.90012397375119, -9.913995968489587], [-37.96266914215278, -9.873939814617813], [-38.02949897868646, -9.726569203527362], [-37.99371650661834, -9.646237169212938], [-38.04299019013865, -9.605983261427355], [-37.97572090046313, -9.512138043003716], [-37.93814765684232, -9.53780210648273], [-37.425591484946096, -9.778314810970059], [-37.19609806798849, -9.88587096741675], [-37.019240151085654, -9.956974485754131], [-36.9564642697847, -10.01366394104167], [-36.93958926914095, -10.083646853867549], [-36.87974673756128, -10.153629766693442], [-36.77669497581766, -10.22359070686224], [-36.699065578325076, -10.257340708149698], [-36.64753969745328, -10.253978891615205], [-36.60704409043976, -10.292892467318381], [-36.579819968307476, -10.37142274375158], [-36.53842348235332, -10.410578018682727], [-36.48262391967788, -10.410578018682727], [-36.44301820527642, -10.43195741402954], [-36.43176820484726, -10.452875383577506], [-36.41467347763265, -10.491349506138917], [-36.63583925755381, -10.589896873179455], [-36.768367338781246, -10.671569239576257], [-36.93779849758826, -10.8205218819771], [-37.09326603281576, -11.05475040653721], [-37.12544498912143, -11.084896892062204], [-37.18281559677868, -11.068483317217328], [-37.18124455179688, -11.187487228006972], [-37.315123951435226, -11.376056571137823], [-37.356069997919064, -11.403939872982733], [-37.354949392407576, -11.35039250765881], [-37.331548512608634, -11.30989690064527], [-37.32074895164979, -11.266698656809893], [-37.32186955716131, -11.215172775938086], [-37.35922307421123, -11.252526292988009], [-37.43842351668562, -11.393832450722158], [-37.41186956059454, -11.497323665607496] ] ] ] } }, { "type": "Feature", "properties": { "population": 3322, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-37.97572090046313, -9.512138043003716], [-38.2211994254524, -9.34767270469861], [-38.154589315489545, -9.266681490671544], [-38.09204414708799, -9.18634945635712], [-37.9669428239564, -9.14178890778227], [-37.81529853106224, -8.976642417107428], [-37.80628974165609, -8.896332355450099], [-37.748248967957636, -8.86053889705343], [-37.681419131423894, -8.976642417107428], [-37.62764105320056, -8.981146811810504], [-37.52054632255272, -8.94537532607093], [-37.471492365603325, -9.003427086097929], [-37.39117131761745, -9.043483239969703], [-37.18124455179688, -9.239896821681043], [-36.9983221815377, -9.306957371114194], [-36.94027042151069, -9.35600034173504], [-36.90449893577113, -9.289181491529845], [-36.83316470453431, -9.262396822539344], [-36.57869936279599, -9.293444187004965], [-36.440315568454565, -9.208849457215422], [-36.34649232268799, -9.19984066780927], [-36.26617127470212, -9.14178890778227], [-36.23939759204015, -9.088241542458348], [-36.12329407198615, -9.016698570979202], [-36.118789677283075, -8.967655600358356], [-36.01619934133831, -8.896332355450099], [-35.97141906619257, -8.90509944562828], [-35.88231994169996, -8.873832354591784], [-35.80176818081466, -8.869547686459597], [-35.721447132828786, -8.91859065708043], [-35.609848007477865, -8.865043291756507], [-35.47146421313644, -8.833776200720024], [-35.39114316515057, -8.882819171340856], [-35.30182431408707, -8.887323566043932], [-35.15174007984618, -8.913866535806477], [-35.157815519531056, -8.930521809879323], [-35.340968602689685, -9.230668305704], [-35.597015975738344, -9.540724469875457], [-35.763964224294426, -9.702487171358712], [-35.830123894786965, -9.719142445431558], [-35.89086730530727, -9.686974475454448], [-35.84766906147189, -9.772470084184604], [-35.885473017992126, -9.847616571426215], [-36.05489319047061, -10.07578064262998], [-36.223643196907915, -10.225172738172589], [-36.39824891645921, -10.48414247461399], [-36.41152040134048, -10.489987201399458], [-36.41467347763265, -10.491349506138917], [-36.43176820484726, -10.452875383577506], [-36.44301820527642, -10.43195741402954], [-36.48262391967788, -10.410578018682727], [-36.53842348235332, -10.410578018682727], [-36.579819968307476, -10.37142274375158], [-36.60704409043976, -10.292892467318381], [-36.64753969745328, -10.253978891615205], [-36.699065578325076, -10.257340708149698], [-36.77669497581766, -10.22359070686224], [-36.87974673756128, -10.153629766693442], [-36.93958926914095, -10.083646853867549], [-36.9564642697847, -10.01366394104167], [-37.019240151085654, -9.956974485754131], [-37.19609806798849, -9.88587096741675], [-37.425591484946096, -9.778314810970059], [-37.93814765684232, -9.53780210648273], [-37.97572090046313, -9.512138043003716] ] ] ] } }, { "type": "Feature", "properties": { "population": 3409, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-38.5251691636104, -6.382858138474916], [-38.605490211596305, -6.396129623356174], [-38.578716528934336, -6.262250223717842], [-38.511666965829704, -6.181918189403419], [-38.493891086245384, -6.128370824079497], [-38.41357003825948, -6.061332247303426], [-38.36878976311377, -6.092599338339923], [-38.301740200009135, -6.074823458755574], [-38.12781563282758, -5.878387904387154], [-38.07854194930732, -5.762306356990237], [-38.07854194930732, -5.686478717378904], [-38.0474945848417, -5.614913773242662], [-37.913395458632465, -5.463280466677062], [-37.721464298967135, -5.061422541191149], [-37.59659368873494, -4.958832205246381], [-37.54281561051161, -4.93204753625588], [-37.230748948216586, -4.824271653238313], [-37.17471867264169, -4.912469898790306], [-36.95489322480287, -4.936771657529846], [-36.8610699790363, -4.96669841648395], [-36.747449369233294, -5.050611993903757], [-36.59061952926632, -5.097655452729569], [-36.38676820313063, -5.084361995191216], [-36.16176819454756, -5.093832210396229], [-35.97996642979987, -5.054457208894192], [-35.54932432352845, -5.129361996907832], [-35.481593608054084, -5.166056334245113], [-35.39249448356148, -5.250870790605518], [-35.23544491702364, -5.566771681562443], [-35.14184139782796, -5.917103726176549], [-35.09549007770042, -6.185301978594993], [-34.98816463415315, -6.393646713105213], [-34.97174007297971, -6.503905506373755], [-35.047347986020185, -6.534733144268486], [-35.257274751840754, -6.507948475277985], [-35.306317722461586, -6.53022874956541], [-35.4669708047619, -6.463168200132245], [-35.66789976750485, -6.427396714392671], [-35.721447132828786, -6.44539232054791], [-35.92686950394628, -6.467672594835335], [-36.25266907692142, -6.414125229511413], [-36.29294495736406, -6.307030498863568], [-36.382274794756114, -6.302526104160492], [-36.493873920107035, -6.378353743771839], [-36.5161432080659, -6.480944079716593], [-36.44481996315764, -6.623832268761092], [-36.53391908765025, -6.63732348021324], [-36.52941469294717, -6.735431394112013], [-36.5026410102852, -6.784694091303734], [-36.57419496809291, -6.927582280348247], [-36.659020410781864, -6.931844975823353], [-36.71256777610577, -6.976625250969079], [-36.770619536132784, -6.931844975823353], [-36.743845853470816, -6.824750245175508], [-36.79289981042021, -6.76669848514851], [-36.944774816213766, -6.748922605564161], [-36.98932437846008, -6.708646725121511], [-37.04287174378399, -6.753427000267237], [-37.15447086913491, -6.784694091303734], [-37.21701603753647, -6.824750245175508], [-37.27057438918891, -6.739913816158008], [-37.33762395229354, -6.699879634943329], [-37.51604192784964, -6.68186205613101], [-37.507274837671446, -6.55248705119574], [-37.43121648516069, -6.516715565456167], [-37.39566472599199, -6.391844955223988], [-37.1767401570938, -6.114879612627348], [-37.1767401570938, -6.052543184468149], [-37.261565599782756, -6.025780488134728], [-37.42244939498249, -6.097103733042999], [-37.4759967603064, -6.083832248161727], [-37.64114325098126, -6.128370824079497], [-37.757246771035256, -6.177413794700328], [-37.793018256774815, -6.293517314754325], [-37.84207221372421, -6.342582258032266], [-38.00271430969596, -6.431901109095762], [-38.05627266134843, -6.44539232054791], [-38.13232002753065, -6.521219960159243], [-38.2394147581785, -6.48544847441967], [-38.283964320424815, -6.503444080574909], [-38.43583932621837, -6.414125229511413], [-38.5251691636104, -6.382858138474916] ] ] ] } }, { "type": "Feature", "properties": { "population": 9278, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-41.36871663536442, -8.713168285962922], [-41.212567947767155, -8.632858224305608], [-41.15902058244325, -8.548021795288108], [-41.083192942831886, -8.525741521000683], [-41.01614337972728, -8.418646790352838], [-40.92232013396071, -8.43191827523411], [-40.88676837479201, -8.351608213576768], [-40.833221009468105, -8.36487969845804], [-40.74839556677915, -8.244491510271843], [-40.59201616628249, -8.12390556817185], [-40.54297319566166, -8.030082322405278], [-40.52947099788096, -7.905189739516004], [-40.547466604036174, -7.833646768036857], [-40.659065729387095, -7.762323523128586], [-40.61878984894446, -7.637233186325531], [-40.69034380675214, -7.512340603436257], [-40.69034380675214, -7.427526147075838], [-40.64557451793496, -7.400741478085337], [-40.53846880095858, -7.391754661336265], [-40.261723184932805, -7.391754661336265], [-40.172393347540776, -7.418517357669671], [-40.06529861689293, -7.405245872788413], [-39.95369949154201, -7.360465597642673], [-39.84659377456563, -7.347194112761414], [-39.65444288832941, -7.373978781751916], [-39.53406568647176, -7.47656911769667], [-39.350923589641695, -7.548112089175831], [-39.30637402739538, -7.623939728787164], [-39.24381787266532, -7.681991488814162], [-39.109949459355505, -7.753314733722434], [-39.074166987287384, -7.856146768895158], [-38.99833934767605, -7.820375283155585], [-38.96707225663954, -7.847137979489005], [-38.864240221466815, -7.704271763101588], [-38.81969065922053, -7.663995882658938], [-38.699093730791986, -7.619457306741182], [-38.64554636546805, -7.677487094111086], [-38.59199900014414, -7.690780551649439], [-38.587494605441066, -7.740043248841161], [-38.5251691636104, -7.766827917831677], [-38.44912179742818, -7.735538854138085], [-38.41784372006313, -7.748832311676438], [-38.355518278232495, -7.699767368398511], [-38.304223110260125, -7.78234061373594], [-38.301740200009135, -7.829362099904657], [-38.25719063776285, -7.851642374192082], [-38.225923546726335, -7.811366493749432], [-38.16787178669935, -7.806862099046356], [-38.150095907115, -7.771332312534753], [-38.08753975238491, -7.820375283155585], [-38.05739326685992, -7.75781912842551], [-37.97594062703399, -7.771332312534753], [-37.895619579048116, -7.686495883517253], [-37.793018256774815, -7.637233186325531], [-37.70819281408586, -7.548112089175831], [-37.55182439991776, -7.47656911769667], [-37.435720879863766, -7.347194112761414], [-37.38217351453983, -7.351698507464491], [-37.34639104247171, -7.297931415569693], [-37.25279850960456, -7.271146746579191], [-37.149966474431835, -7.347194112761414], [-37.01609806112205, -7.400741478085337], [-37.01609806112205, -7.507858181390262], [-37.19924015795212, -7.574896758166332], [-37.212522629161924, -7.646220003074589], [-37.16797306691561, -7.762323523128586], [-37.22602482694262, -7.815870888452508], [-37.342117360668055, -7.9987932587117], [-37.212522629161924, -7.958737104839926], [-37.149966474431835, -7.976512984424275], [-37.12769718647297, -8.1641814486145], [-37.06086734993923, -8.231000298819694], [-36.96253970946958, -8.284547664143616], [-36.83316470453431, -8.226495904116618], [-36.78389102101406, -8.222233208641498], [-36.62774233341682, -8.0836296877292], [-36.659020410781864, -8.012306442820929], [-36.569690573389835, -7.922965619100353], [-36.449093644961295, -7.90969413421908], [-36.422319962299326, -7.824879677858675], [-36.337494519610374, -7.811366493749432], [-36.26617127470212, -7.824879677858675], [-36.217117317752724, -7.780099402712935], [-36.16784363423244, -7.824879677858675], [-36.12329407198615, -7.780099402712935], [-36.07424011503676, -7.824879677858675], [-35.96691467148949, -7.815870888452508], [-35.931373898649355, -7.838151162739933], [-35.886593623503614, -7.732177037603591], [-35.83753966655422, -7.744327916973361], [-35.712669056322056, -7.708776157804678], [-35.68139097895701, -7.713280552507754], [-35.556289655825395, -7.655228792480756], [-35.498248882126944, -7.454288843409245], [-35.37336728556622, -7.458793238112335], [-35.270546236722026, -7.382745871930098], [-35.065343592175424, -7.409530540920613], [-34.98051814948644, -7.512340603436257], [-34.85856990264699, -7.54969412048618], [-34.86082209999853, -7.594913848773672], [-34.85474666031365, -7.634288850275709], [-34.87297297936831, -7.692120883731818], [-34.87859797958288, -7.747470006936979], [-34.8369707807293, -7.871681437456516], [-34.834718583377764, -7.971569136579433], [-34.89051814605324, -8.092177051336506], [-34.96656551223546, -8.40761651649457], [-35.15174007984618, -8.913866535806477], [-35.30182431408707, -8.887323566043932], [-35.39114316515057, -8.882819171340856], [-35.47146421313644, -8.833776200720024], [-35.609848007477865, -8.865043291756507], [-35.721447132828786, -8.91859065708043], [-35.80176818081466, -8.869547686459597], [-35.88231994169996, -8.873832354591784], [-35.97141906619257, -8.90509944562828], [-36.01619934133831, -8.896332355450099], [-36.118789677283075, -8.967655600358356], [-36.12329407198615, -9.016698570979202], [-36.23939759204015, -9.088241542458348], [-36.26617127470212, -9.14178890778227], [-36.34649232268799, -9.19984066780927], [-36.440315568454565, -9.208849457215422], [-36.57869936279599, -9.293444187004965], [-36.83316470453431, -9.262396822539344], [-36.90449893577113, -9.289181491529845], [-36.94027042151069, -9.35600034173504], [-36.9983221815377, -9.306957371114194], [-37.18124455179688, -9.239896821681043], [-37.39117131761745, -9.043483239969703], [-37.471492365603325, -9.003427086097929], [-37.52054632255272, -8.94537532607093], [-37.62764105320056, -8.981146811810504], [-37.681419131423894, -8.976642417107428], [-37.748248967957636, -8.86053889705343], [-37.80628974165609, -8.896332355450099], [-37.81529853106224, -8.976642417107428], [-37.9669428239564, -9.14178890778227], [-38.09204414708799, -9.18634945635712], [-38.154589315489545, -9.266681490671544], [-38.2211994254524, -9.34767270469861], [-38.28307442781272, -9.203663910142609], [-38.30759591312315, -9.102194179709358], [-38.29432442824191, -9.043021814170856], [-38.33594064076692, -9.01017269182401], [-38.43291696282563, -9.00364681266882], [-38.48219064634591, -8.959547689892815], [-38.48399240422714, -8.877655596925138], [-38.50469064720423, -8.834896806231512], [-38.54429636160569, -8.831073563898173], [-38.57759592342282, -8.86053889705343], [-38.61922312227642, -8.896090656222128], [-38.66781565342694, -8.896090656222128], [-38.70539988337629, -8.879896807948114], [-38.834994614882476, -8.800245926003356], [-39.098249019456034, -8.714970043844119], [-39.25664990440481, -8.64026300974433], [-39.33269727058703, -8.565797674872442], [-39.441824472015526, -8.559271795717166], [-39.60089552300548, -8.619564766767255], [-39.682798602301716, -8.683021800437942], [-39.68774245014657, -8.74940119750137], [-39.73836745207774, -8.791237136597275], [-39.83489333466616, -8.809013016181552], [-39.88461745765676, -8.853353838185598], [-39.887770533948924, -8.923995930724061], [-39.90914992929572, -8.98024593286982], [-39.94874465736862, -9.022103844622904], [-40.00499465951441, -9.058095056933354], [-40.077669222833606, -9.08824154245832], [-40.212218788513155, -9.101513027339593], [-40.27319291193285, -9.144952970402969], [-40.31977494495982, -9.2930047338632], [-40.41269731178579, -9.396957374547355], [-40.56479204415024, -9.460172708990143], [-40.68583941204906, -9.47210386178898], [-40.743891172076076, -9.42303891851111], [-40.69034380675214, -9.342728856853768], [-40.70361529163341, -9.217616547393618], [-40.85099688905245, -9.150797697188352], [-40.855490297427, -9.092745937161425], [-40.891042056595666, -9.03469417713444], [-40.891042056595666, -8.856056475007449], [-40.98037189398772, -8.815780594564785], [-41.003992500357526, -8.781349440907604], [-41.100968822416235, -8.775724440693025], [-41.10547321711931, -8.717672680666027], [-41.15902058244325, -8.708663891259846], [-41.324167073118076, -8.735448560250362], [-41.36871663536442, -8.713168285962922] ] ] ] } }, { "type": "Feature", "properties": { "population": 3944, "fill": "#ccc" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-38.699093730791986, -7.619457306741182], [-38.63676828896132, -7.534620877723682], [-38.632274880586806, -7.458793238112335], [-38.58299021073799, -7.427526147075838], [-38.53394724011713, -7.293646747437492], [-38.547449437897825, -7.235594987410494], [-38.60099680322176, -7.222103775958345], [-38.676824442833095, -7.15954762122827], [-38.685822245910714, -7.030172616293001], [-38.73037180815703, -7.0033879473025], [-38.725867413453955, -6.891788821951579], [-38.65003977384259, -6.838241456627657], [-38.61877268280611, -6.757931394970328], [-38.65003977384259, -6.690870845537162], [-38.578716528934336, -6.480944079716593], [-38.5251691636104, -6.382858138474916], [-38.43583932621837, -6.414125229511413], [-38.283964320424815, -6.503444080574909], [-38.2394147581785, -6.48544847441967], [-38.13232002753065, -6.521219960159243], [-38.05627266134843, -6.44539232054791], [-38.00271430969596, -6.431901109095762], [-37.84207221372421, -6.342582258032266], [-37.793018256774815, -6.293517314754325], [-37.757246771035256, -6.177413794700328], [-37.64114325098126, -6.128370824079497], [-37.4759967603064, -6.083832248161727], [-37.42244939498249, -6.097103733042999], [-37.261565599782756, -6.025780488134728], [-37.1767401570938, -6.052543184468149], [-37.1767401570938, -6.114879612627348], [-37.39566472599199, -6.391844955223988], [-37.43121648516069, -6.516715565456167], [-37.507274837671446, -6.55248705119574], [-37.51604192784964, -6.68186205613101], [-37.33762395229354, -6.699879634943329], [-37.27057438918891, -6.739913816158008], [-37.21701603753647, -6.824750245175508], [-37.15447086913491, -6.784694091303734], [-37.04287174378399, -6.753427000267237], [-36.98932437846008, -6.708646725121511], [-36.944774816213766, -6.748922605564161], [-36.79289981042021, -6.76669848514851], [-36.743845853470816, -6.824750245175508], [-36.770619536132784, -6.931844975823353], [-36.71256777610577, -6.976625250969079], [-36.659020410781864, -6.931844975823353], [-36.57419496809291, -6.927582280348247], [-36.5026410102852, -6.784694091303734], [-36.52941469294717, -6.735431394112013], [-36.53391908765025, -6.63732348021324], [-36.44481996315764, -6.623832268761092], [-36.5161432080659, -6.480944079716593], [-36.493873920107035, -6.378353743771839], [-36.382274794756114, -6.302526104160492], [-36.29294495736406, -6.307030498863568], [-36.25266907692142, -6.414125229511413], [-35.92686950394628, -6.467672594835335], [-35.721447132828786, -6.44539232054791], [-35.66789976750485, -6.427396714392671], [-35.4669708047619, -6.463168200132245], [-35.306317722461586, -6.53022874956541], [-35.257274751840754, -6.507948475277985], [-35.047347986020185, -6.534733144268486], [-34.97174007297971, -6.503905506373755], [-34.929673420984386, -6.785155517102595], [-34.87994929799382, -6.908224369453549], [-34.87589534276103, -7.002948494160734], [-34.833817704437166, -7.024327889507546], [-34.805472976793396, -7.288483173021774], [-34.8164922643231, -7.394896751299868], [-34.85766902370639, -7.53328054564129], [-34.85856990264699, -7.54969412048618], [-34.98051814948644, -7.512340603436257], [-35.065343592175424, -7.409530540920613], [-35.270546236722026, -7.382745871930098], [-35.37336728556622, -7.458793238112335], [-35.498248882126944, -7.454288843409245], [-35.556289655825395, -7.655228792480756], [-35.68139097895701, -7.713280552507754], [-35.712669056322056, -7.708776157804678], [-35.83753966655422, -7.744327916973361], [-35.886593623503614, -7.732177037603591], [-35.931373898649355, -7.838151162739933], [-35.96691467148949, -7.815870888452508], [-36.07424011503676, -7.824879677858675], [-36.12329407198615, -7.780099402712935], [-36.16784363423244, -7.824879677858675], [-36.217117317752724, -7.780099402712935], [-36.26617127470212, -7.824879677858675], [-36.337494519610374, -7.811366493749432], [-36.422319962299326, -7.824879677858675], [-36.449093644961295, -7.90969413421908], [-36.569690573389835, -7.922965619100353], [-36.659020410781864, -8.012306442820929], [-36.62774233341682, -8.0836296877292], [-36.78389102101406, -8.222233208641498], [-36.83316470453431, -8.226495904116618], [-36.96253970946958, -8.284547664143616], [-37.06086734993923, -8.231000298819694], [-37.12769718647297, -8.1641814486145], [-37.149966474431835, -7.976512984424275], [-37.212522629161924, -7.958737104839926], [-37.342117360668055, -7.9987932587117], [-37.22602482694262, -7.815870888452508], [-37.16797306691561, -7.762323523128586], [-37.212522629161924, -7.646220003074589], [-37.19924015795212, -7.574896758166332], [-37.01609806112205, -7.507858181390262], [-37.01609806112205, -7.400741478085337], [-37.149966474431835, -7.347194112761414], [-37.25279850960456, -7.271146746579191], [-37.34639104247171, -7.297931415569693], [-37.38217351453983, -7.351698507464491], [-37.435720879863766, -7.347194112761414], [-37.55182439991776, -7.47656911769667], [-37.70819281408586, -7.548112089175831], [-37.793018256774815, -7.637233186325531], [-37.895619579048116, -7.686495883517253], [-37.97594062703399, -7.771332312534753], [-38.05739326685992, -7.75781912842551], [-38.08753975238491, -7.820375283155585], [-38.150095907115, -7.771332312534753], [-38.16787178669935, -7.806862099046356], [-38.225923546726335, -7.811366493749432], [-38.25719063776285, -7.851642374192082], [-38.301740200009135, -7.829362099904657], [-38.304223110260125, -7.78234061373594], [-38.355518278232495, -7.699767368398511], [-38.41784372006313, -7.748832311676438], [-38.44912179742818, -7.735538854138085], [-38.5251691636104, -7.766827917831677], [-38.587494605441066, -7.740043248841161], [-38.59199900014414, -7.690780551649439], [-38.64554636546805, -7.677487094111086], [-38.699093730791986, -7.619457306741182] ] ] ] } }, { "type": "Feature", "properties": { "population": 6727, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-53.6699219386025, -26.258005381026635], [-53.66339605944734, -26.25776368179862], [-53.516245174927704, -26.289052745492228], [-53.458193414900734, -26.2890527454922], [-53.355372366056514, -26.239987802214294], [-53.27954472644517, -26.26226807650172], [-53.12339603884794, -26.369604506377534], [-52.99379032101325, -26.351608900222303], [-52.913469273027374, -26.365100111674394], [-52.81537234545715, -26.33831544268395], [-52.6724951427412, -26.378371596555716], [-52.64121706537617, -26.40065187084309], [-52.54290041123505, -26.40065187084314], [-52.458074968546086, -26.43191896187964], [-52.19909424577614, -26.44991456803487], [-52.00717407243934, -26.583793967673216], [-51.873294672800995, -26.601569847257558], [-51.50271482468011, -26.601569847257558], [-51.422393776694236, -26.699897487727206], [-51.28402096868135, -26.650854517106367], [-51.23947140643509, -26.606074241960584], [-51.2795165739783, -26.49897951131271], [-51.28852536338445, -26.423151871701464], [-51.24824948294179, -26.347104505519212], [-51.074094202860806, -26.23550538016832], [-50.94471919792551, -26.244492196917378], [-50.90016963567922, -26.28026368265695], [-50.77057490417306, -26.22223389528704], [-50.73502314500439, -26.23100098546523], [-50.64569330761233, -26.07035888949347], [-50.54287225876814, -26.02579834091862], [-50.45804681607919, -26.02579834091862], [-50.369167418157474, -26.085871585397726], [-50.315169613363224, -26.05258300990912], [-50.19029900313106, -26.05258300990912], [-49.949094159945446, -26.01230712946647], [-49.882275309740265, -26.039069825799885], [-49.7526695919056, -26.123906254817314], [-49.72162222743995, -26.15967774055696], [-49.596520904308335, -26.22223389528704], [-49.48941518733196, -26.22223389528704], [-49.45364370159237, -26.16866455730603], [-49.29749501399516, -26.106130375233022], [-49.21266957130621, -26.030302735621696], [-49.109848522462016, -25.99453124988213], [-48.944691045458626, -26.007802734763388], [-48.91791736279666, -25.97651367106981], [-48.65016954984853, -25.97225097559469], [-48.58537218409546, -25.9862036128457], [-48.619341911953825, -26.179475104593394], [-48.678964716962525, -26.22581543839243], [-48.71384631009005, -26.226958016561014], [-48.74826647741867, -26.268574229086028], [-48.70079455177972, -26.34822511103073], [-48.65152086825947, -26.406496597628575], [-48.65804674741463, -26.51921632849104], [-48.676492793040154, -26.61238039454497], [-48.67784411145112, -26.702819851119898], [-48.61574938251988, -26.878095736712453], [-48.5934691082324, -27.058095743578804], [-48.56826647055232, -27.12335453513083], [-48.55409410673042, -27.196018112121465], [-48.595490592684484, -27.2639795404952], [-48.57186998631471, -27.372876029024326], [-48.64252306518182, -27.55781988373559], [-48.60561998760221, -27.825117257213435], [-48.620693230364736, -28.0755396300475], [-48.6483677919673, -28.2071778186629], [-48.69314806711304, -28.310229580406485], [-48.797320434368146, -28.442746675305386], [-48.799572631719684, -28.575263770204174], [-49.023671761362095, -28.698574321783155], [-49.271391497374395, -28.87114757055383], [-49.49999502171988, -29.075449336159807], [-49.71284415093322, -29.324531376911544], [-49.8152147603071, -29.271203738158505], [-49.86877311195957, -29.21765637283459], [-49.95359855464852, -29.195376098547115], [-50.07869987778014, -29.244419069168003], [-50.0339196026344, -29.320466435350227], [-50.05191520878964, -29.356018194518924], [-50.16801872884366, -29.28469494961064], [-50.16352532046909, -29.195376098547165], [-50.069691088373986, -29.092763789945316], [-50.00714591997246, -29.101552852780515], [-49.94482047814179, -28.949897573557898], [-49.95359855464852, -28.79351817306125], [-49.846492837672145, -28.695432231819552], [-49.797449867051284, -28.623867287683332], [-49.699122226581636, -28.597104591349918], [-49.708120029659256, -28.530263768487643], [-49.73669547020245, -28.51136728339179], [-49.839066079576355, -28.465246676163645], [-49.938525311886025, -28.448151948949075], [-50.06879020943336, -28.444328706615693], [-50.141025319610776, -28.452876070223034], [-50.15496697053325, -28.473794039770993], [-50.23304680749612, -28.468630465355268], [-50.44656610275061, -28.422048432328303], [-50.57752313899624, -28.38627694658873], [-50.73614375051588, -28.235983972105508], [-50.96586788037291, -27.959458082650634], [-51.11729244669618, -27.807802803427933], [-51.190417449485665, -27.78123786100832], [-51.2867236055032, -27.71622076868431], [-51.40641965499111, -27.61316900694075], [-51.487641581917615, -27.564126036319912], [-51.53016965971182, -27.56885015759387], [-51.58236570662484, -27.547470762247087], [-51.64469114845545, -27.4997681237086], [-51.70162230297095, -27.488078670137682], [-51.75359862331311, -27.51191900307839], [-51.873294672800995, -27.509458065484495], [-51.912900387202455, -27.47254400157633], [-51.98422363211071, -27.376699271357644], [-52.05958984592321, -27.31348393691492], [-52.1392407278679, -27.28331547873284], [-52.19234864005006, -27.280854541138964], [-52.22857056525994, -27.29254399470988], [-52.264792490469816, -27.2772510253765], [-52.30439820487129, -27.2830957521619], [-52.34804688817701, -27.276350146435902], [-52.414646011811286, -27.236293992564114], [-52.51072145492941, -27.230449265778645], [-52.6364929441022, -27.259475145792123], [-52.74156619029792, -27.245742235112033], [-52.82639163298688, -27.189492232966188], [-52.900197788146116, -27.176682173883854], [-52.95284427452941, -27.178923384906845], [-52.994240760483564, -27.163388716345494], [-53.030473672021984, -27.137526898952693], [-53.07074955246465, -27.141789594427806], [-53.10359867481151, -27.154401899596394], [-53.13419559980679, -27.140449262345427], [-53.18437016226767, -27.14945805175158], [-53.22711796663276, -27.173737837833983], [-53.263339891842634, -27.163388716345494], [-53.30474736412533, -27.09769047165181], [-53.34749516849041, -27.080595744437176], [-53.39812017042159, -27.08239750231843], [-53.45662236991893, -27.10331547186638], [-53.48969121883664, -27.13324223082043], [-53.49801885587304, -27.17217777918077], [-53.54009649419693, -27.19781987000269], [-53.61569342090888, -27.209970749372474], [-53.65957281711397, -27.20052250682454], [-53.671492983584315, -27.169475142358927], [-53.71852545608158, -27.157543989559997], [-53.80041754904927, -27.16475102108496], [-53.85172370335019, -27.156203657477654], [-53.935417554199105, -27.161147505322504], [-53.9156201901626, -27.159565474012084], [-53.838221505569436, -27.12109135145073], [-53.75857062362479, -26.97822513506327], [-53.71739386424156, -26.882819857986362], [-53.727072819688885, -26.804751007352024], [-53.75339606288054, -26.748720731777155], [-53.74461798637378, -26.666608912238587], [-53.71807501661124, -26.443168962308732], [-53.71086798508634, -26.35182862679312], [-53.66857062019159, -26.288151866551573], [-53.6699219386025, -26.258005381026635] ] ], [ [ [-48.46477525566689, -27.436333062694985], [-48.4148204197769, -27.399638725357704], [-48.37791734219729, -27.451406305457454], [-48.40964585903265, -27.56636724734284], [-48.496723499073084, -27.706992252707323], [-48.48592393811424, -27.767065497186366], [-48.55454454620076, -27.812307198130952], [-48.54217394026, -27.574694884379255], [-48.50527086268045, -27.495505428233514], [-48.46477525566689, -27.436333062694985] ] ], [ [ [-48.603148063679726, -26.413703629153474], [-48.66569323208131, -26.28973389786188], [-48.53969103000907, -26.170246588616294], [-48.49762437801377, -26.21885010609543], [-48.53114366640182, -26.313112805003755], [-48.56804674398143, -26.379733901295197], [-48.58447130515475, -26.401552749783775], [-48.603148063679726, -26.413703629153474] ] ] ] } }, { "type": "Feature", "properties": { "population": 11207, "fill": "#999" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-53.935417554199105, -27.161147505322504], [-53.85172370335019, -27.156203657477654], [-53.80041754904927, -27.16475102108496], [-53.71852545608158, -27.157543989559997], [-53.671492983584315, -27.169475142358927], [-53.65957281711397, -27.20052250682454], [-53.61569342090888, -27.209970749372474], [-53.54009649419693, -27.19781987000269], [-53.49801885587304, -27.17217777918077], [-53.48969121883664, -27.13324223082043], [-53.45662236991893, -27.10331547186638], [-53.39812017042159, -27.08239750231843], [-53.34749516849041, -27.080595744437176], [-53.30474736412533, -27.09769047165181], [-53.263339891842634, -27.163388716345494], [-53.22711796663276, -27.173737837833983], [-53.18437016226767, -27.14945805175158], [-53.13419559980679, -27.140449262345427], [-53.10359867481151, -27.154401899596394], [-53.07074955246465, -27.141789594427806], [-53.030473672021984, -27.137526898952693], [-52.994240760483564, -27.163388716345494], [-52.95284427452941, -27.178923384906845], [-52.900197788146116, -27.176682173883854], [-52.82639163298688, -27.189492232966188], [-52.74156619029792, -27.245742235112033], [-52.6364929441022, -27.259475145792123], [-52.51072145492941, -27.230449265778645], [-52.414646011811286, -27.236293992564114], [-52.34804688817701, -27.276350146435902], [-52.30439820487129, -27.2830957521619], [-52.264792490469816, -27.2772510253765], [-52.22857056525994, -27.29254399470988], [-52.19234864005006, -27.280854541138964], [-52.1392407278679, -27.28331547873284], [-52.05958984592321, -27.31348393691492], [-51.98422363211071, -27.376699271357644], [-51.912900387202455, -27.47254400157633], [-51.873294672800995, -27.509458065484495], [-51.75359862331311, -27.51191900307839], [-51.70162230297095, -27.488078670137682], [-51.64469114845545, -27.4997681237086], [-51.58236570662484, -27.547470762247087], [-51.53016965971182, -27.56885015759387], [-51.487641581917615, -27.564126036319912], [-51.40641965499111, -27.61316900694075], [-51.2867236055032, -27.71622076868431], [-51.190417449485665, -27.78123786100832], [-51.11729244669618, -27.807802803427933], [-50.96586788037291, -27.959458082650634], [-50.73614375051588, -28.235983972105508], [-50.57752313899624, -28.38627694658873], [-50.44656610275061, -28.422048432328303], [-50.23304680749612, -28.468630465355268], [-50.15496697053325, -28.473794039770993], [-50.141025319610776, -28.452876070223034], [-50.06879020943336, -28.444328706615693], [-49.938525311886025, -28.448151948949075], [-49.839066079576355, -28.465246676163645], [-49.73669547020245, -28.51136728339179], [-49.708120029659256, -28.530263768487643], [-49.699122226581636, -28.597104591349918], [-49.797449867051284, -28.623867287683332], [-49.846492837672145, -28.695432231819552], [-49.95359855464852, -28.79351817306125], [-49.94482047814179, -28.949897573557898], [-50.00714591997246, -29.101552852780515], [-50.069691088373986, -29.092763789945316], [-50.16352532046909, -29.195376098547165], [-50.16801872884366, -29.28469494961064], [-50.05191520878964, -29.356018194518924], [-50.0339196026344, -29.320466435350227], [-50.07869987778014, -29.244419069168003], [-49.95359855464852, -29.195376098547115], [-49.86877311195957, -29.21765637283459], [-49.8152147603071, -29.271203738158505], [-49.71284415093322, -29.324531376911544], [-49.74592398617949, -29.363225226043852], [-50.03324943659322, -29.801074363840215], [-50.29941521823099, -30.425669114229116], [-50.62004023046188, -30.897729679111798], [-50.74807490331477, -31.06803974420236], [-50.921318318126595, -31.258388872557354], [-51.151723600353364, -31.480466517747693], [-51.46041745978536, -31.70232443636715], [-51.79814818555937, -31.90032004938884], [-51.92031615896971, -31.989638900452327], [-52.03912231584556, -32.114751209912484], [-52.06904907479968, -32.0630056024698], [-52.04316528474979, -31.977488021082557], [-52.05958984592321, -31.91337180769922], [-52.06319336168568, -31.83035910922004], [-51.99502319306956, -31.815044167229566], [-51.89309203683746, -31.867690653612875], [-51.841115716495324, -31.831919167873302], [-51.80332274630365, -31.796609107932575], [-51.68069334709446, -31.774548560216033], [-51.44624509596346, -31.557414762870536], [-51.27208981588248, -31.47686300198523], [-51.17422360121168, -31.339841512383273], [-51.15756832713882, -31.266716509593778], [-51.16139156947216, -31.118906445361525], [-51.106042446267026, -31.08133320174072], [-50.98004024419478, -31.09414326082313], [-50.954398153372864, -31.05206562249925], [-50.9654174409026, -31.005505562129372], [-50.94089595559217, -30.903794132468136], [-50.770124464702775, -30.813354675893144], [-50.689341990918024, -30.704216488136105], [-50.716346386479415, -30.4258888408], [-50.68506830911437, -30.413518234859346], [-50.6148656697176, -30.4569581779227], [-50.582016547370756, -30.43894059911038], [-50.54646478820206, -30.316772625700047], [-50.56357050174523, -30.253557291257323], [-50.64614374708265, -30.236902017184477], [-50.93189815251455, -30.37436295992819], [-51.02504024591141, -30.368737959713613], [-51.04034420157333, -30.26052262355428], [-51.17939816195593, -30.211018227134588], [-51.23361569332104, -30.12147964950021], [-51.24982052792359, -30.06004410028163], [-51.297973605932356, -30.034841462601477], [-51.29504025621108, -30.14105728696579], [-51.28176877132981, -30.244109048709397], [-51.15734860056793, -30.364255537667624], [-51.18749508609292, -30.411958176206085], [-51.246667451631424, -30.467527025982122], [-51.287624484443825, -30.591277030702805], [-51.28312008974075, -30.751479673532806], [-51.31641965155788, -30.702656429482843], [-51.35916745592297, -30.674531428409963], [-51.37649289603701, -30.84686297795264], [-51.45906614137442, -30.912802921874295], [-51.485169657995186, -30.977600287627368], [-51.4635705360775, -31.05274677486898], [-51.50631834044259, -31.10449238231167], [-51.716915272304334, -31.24377705559371], [-51.9268420381249, -31.33894063344266], [-51.97252319221127, -31.383720908588394], [-51.99479248017013, -31.48991476029562], [-52.02697143647579, -31.59905294805266], [-52.11989380330175, -31.694897678271346], [-52.19346924556156, -31.885466533197217], [-52.191447761109444, -31.967600325392873], [-52.167146002369904, -32.088427966720836], [-52.12732056139755, -32.16785912209464], [-52.19009644269852, -32.220725335048826], [-52.27469117248805, -32.32377709679244], [-52.341740735592666, -32.43963891761847], [-52.50846925757786, -32.87524684439184], [-52.65224733923442, -33.13782009659572], [-52.76294558564473, -33.26629422259037], [-52.92089603112319, -33.40197538010994], [-53.3706653353899, -33.74217802980639], [-53.39766973095128, -33.73723418196155], [-53.463598688544394, -33.70976836060131], [-53.518947811749555, -33.677138964825346], [-53.5313184176902, -33.65553984290766], [-53.53762457027452, -33.62293241978878], [-53.53041753874959, -33.500303020579594], [-53.5313184176902, -33.17088894551344], [-53.51197149312405, -33.108574490011335], [-53.482945613110545, -33.06851833613956], [-53.395197807028865, -33.01024684954168], [-53.310141651440475, -32.92699245183453], [-53.214066208322365, -32.82101832669819], [-53.12564823619948, -32.736643323479534], [-53.15736576670629, -32.680173594762884], [-53.231171921865524, -32.625505623927474], [-53.36279912415233, -32.5811648019235], [-53.489471492265736, -32.503315677860044], [-53.601740783657846, -32.40296655293828], [-53.653717103999966, -32.29879418568317], [-53.701200015967544, -32.18629418139163], [-53.74665045715447, -32.0974147834699], [-53.76172369991697, -32.05691917645637], [-53.80604254926385, -32.039824449241756], [-53.876464915231495, -31.994604720954264], [-53.92057502433603, -31.952307356059492], [-53.98514167718969, -31.928225323890835], [-54.10034431830307, -31.901440654900334], [-54.220490807261285, -31.85510032110134], [-54.36989388913244, -31.745083227060768], [-54.47766977215001, -31.622673554422462], [-54.530997410903055, -31.541902066966273], [-54.58769785251913, -31.485190639021653], [-54.89594127248081, -31.391147666684198], [-55.03611583837491, -31.279109088191518], [-55.09124523500918, -31.31397969499048], [-55.17359875377572, -31.279548541333284], [-55.2545899678028, -31.22553975021051], [-55.27889172654233, -31.184143264256356], [-55.31332288019952, -31.14162617279071], [-55.34549085017663, -31.093022655311636], [-55.36596936658283, -31.046220895713788], [-55.449674203760296, -30.964548529316986], [-55.55721937387844, -30.87588885796614], [-55.60312025453567, -30.850708192943074], [-55.627191300375785, -30.85811297838179], [-55.6505921801747, -30.89210467889722], [-55.665214983466896, -30.924953801244065], [-55.70594130337986, -30.94655292316176], [-55.756346578740164, -30.987048530175294], [-55.80787245961197, -31.03677265316587], [-55.87357070430566, -31.069621775512708], [-55.952089994410315, -31.080871775941866], [-56.00474746712216, -31.079289744631517], [-56.015547028081, -31.059734079823023], [-56.01846939147373, -30.991772651449253], [-55.998891754008156, -30.83719500883383], [-56.044792634665384, -30.77758319015357], [-56.10576675808511, -30.71366473068403], [-56.1762001103813, -30.628388848524764], [-56.40727555864926, -30.447487962717688], [-56.72159441829582, -30.18695816762302], [-56.83274310417643, -30.107307285678324], [-56.93714618433097, -30.101001133094016], [-57.03277118797878, -30.109987949843088], [-57.12051899406046, -30.144419103500283], [-57.18689839112389, -30.264807291686473], [-57.21434223982703, -30.283484050211435], [-57.38377339863408, -30.28078141338959], [-57.552292692171946, -30.26120377592401], [-57.60899313378802, -30.18785904656363], [-57.56377340550053, -30.1399147087972], [-57.40514180765234, -30.033940583660858], [-57.31739400157065, -29.939458158181644], [-57.30074971382635, -29.856643213616252], [-57.22469136131558, -29.782177878744378], [-57.08924091669542, -29.716237934822715], [-56.93871722931277, -29.59475111378211], [-56.77245013312644, -29.41789319687927], [-56.67141985583494, -29.287397586432505], [-56.63586809666624, -29.20302258321385], [-56.570620291442864, -29.138005490889896], [-56.47589616673568, -29.092544063374433], [-56.393322921398266, -28.997380485525483], [-56.32245011596031, -28.852470812028862], [-56.22547379390157, -28.737268170915485], [-56.10284439469238, -28.651772562185336], [-56.03422378660596, -28.58088877041883], [-56.01958999698523, -28.524638768273064], [-55.984950103085694, -28.488647555962608], [-55.930271145921736, -28.472893160830374], [-55.90371718983066, -28.443208101104233], [-55.90551894771188, -28.399548431469995], [-55.890445704949386, -28.37008309831473], [-55.858947901013465, -28.35410897661162], [-55.80607070173075, -28.3597339768262], [-55.732044820000624, -28.386716399730496], [-55.687275531183445, -28.38155282531477], [-55.67197157552151, -28.344880460634577], [-55.6915492129871, -28.302802822310696], [-55.74599745725163, -28.255539636913994], [-55.72551894084543, -28.204013756042194], [-55.58242201155859, -28.121001057563006], [-55.47666761299314, -28.089272540727663], [-55.409848762787945, -28.037746659855856], [-55.34639172911726, -27.956074293459054], [-55.24379040684394, -27.898923412372667], [-55.10159435649773, -27.866755442395558], [-55.06379039997749, -27.835927804500827], [-55.06896496072176, -27.796333076427906], [-55.03995006703681, -27.767746649556173], [-54.955794790389035, -27.74726813314998], [-54.91012462263123, -27.708574284017672], [-54.902697864535426, -27.651862856073052], [-54.875693468974035, -27.59921636968975], [-54.82912242227562, -27.550612852210676], [-54.77714610193351, -27.53239751948456], [-54.719775494276234, -27.544987851996098], [-54.665766703153466, -27.526552792699107], [-54.61537241412171, -27.477048396279415], [-54.55484873017228, -27.45410894227934], [-54.48441537787609, -27.45725103224295], [-54.4481934526662, -27.446440484955566], [-54.32691537186794, -27.423501030955492], [-54.26009652166276, -27.38210454500134], [-54.20519783792791, -27.289621631317146], [-54.156374593877956, -27.253850145577573], [-54.113846516083754, -27.274768115125532], [-54.04004036092452, -27.243720750659918], [-53.935417554199105, -27.161147505322504] ] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#a00", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [-50.478998, -11.558755] } }, { "type": "Feature", "properties": { "medianCandidates": [ [-48.10923, -12.415848], [-47.342077, -12.711268], [-47.085436, -12.83535], [-46.998469, -12.886992], [-46.96966, -12.909357], [-46.960667, -12.919802], [-46.958246, -12.925126], [-46.957876, -12.928066], [-46.958058, -12.929791], [-46.958324, -12.930846] ], "marker-color": "#0a0", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [-46.958549, -12.931507] } }, { "type": "Feature", "properties": { "marker-color": "#00a", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [-54.403759, -14.242099] } }, { "type": "Feature", "properties": { "marker-color": "#aaa", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [-54.363435, -11.529937] } } ] } ================================================ FILE: packages/turf-center-median/test/out/burt-barber-rigby-problem-unweighted.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [2, 4] }, "properties": { "weight": "10" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [3, 6] }, "properties": { "weight": "20" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [3.4, 5.2] }, "properties": { "weight": "10" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [4, 4] }, "properties": { "weight": "20" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [4.4, 5.2] }, "properties": { "weight": "10" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [4.8, 6.2] }, "properties": { "weight": "80" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [5, 1] }, "properties": { "weight": "10" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [6, 5] }, "properties": { "weight": "90" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [9, 9] }, "properties": { "weight": "100" } }, { "type": "Feature", "properties": { "marker-color": "#a00", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [4.622222, 5.066667] } }, { "type": "Feature", "properties": { "medianCandidates": [ [4.364711, 5.125941], [4.345306, 5.163958], [4.351824, 5.173088], [4.358763, 5.177372], [4.364523, 5.180539], [4.369253, 5.183114], [4.373175, 5.185253], [4.376463, 5.18705], [4.379248, 5.188575], [4.381625, 5.189878] ], "marker-color": "#0a0", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [4.38367, 5.191] } }, { "type": "Feature", "properties": { "marker-color": "#00a", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [5.5, 5] } }, { "type": "Feature", "properties": { "marker-color": "#aaa", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [5.2, 5] } } ] } ================================================ FILE: packages/turf-center-median/test/out/burt-barber-rigby-problem.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [2, 4] }, "properties": { "weight": "10" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [3, 6] }, "properties": { "weight": "20" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [3.4, 5.2] }, "properties": { "weight": "10" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [4, 4] }, "properties": { "weight": "20" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [4.4, 5.2] }, "properties": { "weight": "10" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [4.8, 6.2] }, "properties": { "weight": "80" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [5, 1] }, "properties": { "weight": "10" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [6, 5] }, "properties": { "weight": "90" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [9, 9] }, "properties": { "weight": "100" } }, { "type": "Feature", "properties": { "marker-color": "#a00", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [6.034286, 6.285714] } }, { "type": "Feature", "properties": { "medianCandidates": [ [4.76287, 5.316638], [4.420083, 5.189567], [4.384602, 5.19066], [4.385935, 5.192219], [4.387405, 5.193052], [4.388702, 5.193767], [4.389844, 5.194396], [4.390853, 5.194952], [4.391748, 5.195445], [4.392545, 5.195884] ], "marker-color": "#0a0", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [4.393255, 5.196275] } }, { "type": "Feature", "properties": { "marker-color": "#00a", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [5.5, 5] } }, { "type": "Feature", "properties": { "marker-color": "#aaa", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [5.2, 5] } } ] } ================================================ FILE: packages/turf-center-median/test/out/kuhn-kuenne-ukraine-problem.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [28, 54] }, "properties": { "name": "Minsk", "populationProportion": "0.012" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [24, 50] }, "properties": { "name": "Lvov", "populationProportion": "0.010" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [28, 47] }, "properties": { "name": "Kishinev", "populationProportion": "0.005" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [31, 46] }, "properties": { "name": "Odessa", "populationProportion": "0.014" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [32, 47] }, "properties": { "name": "Nikolaev", "populationProportion": "0.005" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [33, 47] }, "properties": { "name": "Kherson", "populationProportion": "0.004" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [34, 45] }, "properties": { "name": "Sevastopol", "populationProportion": "0.004" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [34, 45] }, "properties": { "name": "Simferopol", "populationProportion": "0.004" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [34, 46] }, "properties": { "name": "Krivoi Rog", "populationProportion": "0.009" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [35, 48] }, "properties": { "name": "Dneprodzerhinsk", "populationProportion": "0.004" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [35, 48] }, "properties": { "name": "Dnepropetrovsk", "populationProportion": "0.015" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [36, 48] }, "properties": { "name": "Zaporozhe", "populationProportion": "0.010" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [38, 47] }, "properties": { "name": "Zhdanov", "populationProportion": "0.007" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [37, 48] }, "properties": { "name": "Stalino", "populationProportion": "0.016" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [38, 48] }, "properties": { "name": "Makeyevka", "populationProportion": "0.008" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [38, 48] }, "properties": { "name": "Gorlovka", "populationProportion": "0.007" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [39, 47] }, "properties": { "name": "Taganrog", "populationProportion": "0.005" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [29, 45] }, "properties": { "name": "Krasnodar", "populationProportion": "0.007" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [40, 47] }, "properties": { "name": "Rostov", "populationProportion": "0.014" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [40, 48] }, "properties": { "name": "Shakhty", "populationProportion": "0.004" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [39, 49] }, "properties": { "name": "Kadiyevka", "populationProportion": "0.004" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [37, 51] }, "properties": { "name": "Kharkhov", "populationProportion": "0.021" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [31, 50] }, "properties": { "name": "Kiev", "populationProportion": "0.026" } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [31, 52] }, "properties": { "name": "Gomel", "populationProportion": "0.004" } }, { "type": "Feature", "properties": { "marker-color": "#a00", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [34.03653, 48.438356] } }, { "type": "Feature", "properties": { "medianCandidates": [ [34.720621, 47.820867], [34.986039, 47.805917], [35.071027, 47.84065], [35.094461, 47.860744], [35.09865, 47.870221], [35.097737, 47.875045], [35.095936, 47.877877], [35.094323, 47.879729], [35.093079, 47.881012], [35.092161, 47.881925] ], "marker-color": "#0a0", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [35.091493, 47.882584] } }, { "type": "Feature", "properties": { "marker-color": "#00a", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [32, 49.5] } }, { "type": "Feature", "properties": { "marker-color": "#aaa", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [31.773481, 49.020258] } } ] } ================================================ FILE: packages/turf-center-median/test/out/lines.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.125738749668566, 38.76746626035359], [-9.118958660834354, 38.7838161797457] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.161999067964235, 38.75179370240931], [-9.147535970888825, 38.72884802907016] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.112236293805175, 38.73875598177839], [-9.199016504129736, 38.74023266794694] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.172145822943001, 38.78402506701773], [-9.136258235151075, 38.799637924903166] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.10727033052904, 38.73484447193901], [-9.053278383064967, 38.679128517168316] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.169262101247146, 38.772240341481], [-9.15765120809318, 38.75627601637043] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.14661901988399, 38.72004765296632], [-9.204143991573973, 38.78492020730122] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.138999685485105, 38.778251383504895], [-9.233963423890962, 38.775678685071206] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.135802790342526, 38.78077103840063], [-9.151642146107683, 38.74294839813439] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.150669919917616, 38.71412491974352], [-9.124492811616365, 38.64953861366426] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.097246787705444, 38.73944669482268], [-9.075048980801867, 38.723268791247854] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.09735344272555, 38.782582410972], [-9.117047224630989, 38.759902043510316] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.105282192601013, 38.73863730130412], [-9.04396012939997, 38.70232905706804] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.092942812805378, 38.70204485360651], [-9.073458460421703, 38.69601533701997] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.1520226476006, 38.72134120396426], [-9.203089429895131, 38.715861478160406] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.127291465845172, 38.76640254826793], [-9.18111081229971, 38.77980610930915] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.168224491230864, 38.738032415084795], [-9.188253123198445, 38.74639631949864] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.160274853546044, 38.74488955597258], [-9.20667786946356, 38.77364846537799] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.138399322591825, 38.79860043526947], [-9.179620290997937, 38.88735586861508] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-9.170032930346219, 38.72088087810547], [-9.169243656966975, 38.70388504357632] ] } }, { "type": "Feature", "properties": { "marker-color": "#a00", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [-9.142357, 38.748117] } }, { "type": "Feature", "properties": { "medianCandidates": [ [-9.148816, 38.749633], [-9.15107, 38.750009], [-9.15185, 38.750097], [-9.152124, 38.750113] ], "marker-color": "#0a0", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [-9.152222, 38.750111] } }, { "type": "Feature", "properties": { "marker-color": "#00a", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [-9.138962, 38.768447] } }, { "type": "Feature", "properties": { "marker-color": "#aaa", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [-9.144828, 38.753529] } } ] } ================================================ FILE: packages/turf-center-median/test/out/square.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [9, 9] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [9.25, 9.25] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [9.5, 9.5] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [9.75, 9.75] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [10, 10] } }, { "type": "Feature", "properties": { "marker-color": "#a00", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [7.916667, 7.916667] } }, { "type": "Feature", "properties": { "medianCandidates": [ [9.075379, 9.075379], [9.15887, 9.15887], [9.245356, 9.245356], [9.254201, 9.254201], [9.254223, 9.254223] ], "marker-color": "#0a0", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [9.254246, 9.254246] } }, { "type": "Feature", "properties": { "marker-color": "#00a", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [5, 5] } }, { "type": "Feature", "properties": { "marker-color": "#aaa", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [7.916667, 7.916667] } } ] } ================================================ FILE: packages/turf-center-median/test/out/squares-weighted.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill": "#333", "weight": 100 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.12013592725509], [-9.299992605418552, 38.16510194544132], [-9.242851861013252, 38.16510194544132], [-9.242851861013252, 38.12013592725509], [-9.299992605418552, 38.12013592725509] ] ] } }, { "type": "Feature", "properties": { "fill": "#777", "weight": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.16510194544132], [-9.299992605418552, 38.21006796362755], [-9.242851861013252, 38.21006796362755], [-9.242851861013252, 38.16510194544132], [-9.299992605418552, 38.16510194544132] ] ] } }, { "type": "Feature", "properties": { "fill": "#777", "weight": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.21006796362755], [-9.299992605418552, 38.25503398181378], [-9.242851861013252, 38.25503398181378], [-9.242851861013252, 38.21006796362755], [-9.299992605418552, 38.21006796362755] ] ] } }, { "type": "Feature", "properties": { "fill": "#777", "weight": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.25503398181378], [-9.299992605418552, 38.30000000000001], [-9.242851861013252, 38.30000000000001], [-9.242851861013252, 38.25503398181378], [-9.299992605418552, 38.25503398181378] ] ] } }, { "type": "Feature", "properties": { "fill": "#777", "weight": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.30000000000001], [-9.299992605418552, 38.34496601818624], [-9.242851861013252, 38.34496601818624], [-9.242851861013252, 38.30000000000001], [-9.299992605418552, 38.30000000000001] ] ] } }, { "type": "Feature", "properties": { "fill": "#777", "weight": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.34496601818624], [-9.299992605418552, 38.38993203637247], [-9.242851861013252, 38.38993203637247], [-9.242851861013252, 38.34496601818624], [-9.299992605418552, 38.34496601818624] ] ] } }, { "type": "Feature", "properties": { "fill": "#777", "weight": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.38993203637247], [-9.299992605418552, 38.4348980545587], [-9.242851861013252, 38.4348980545587], [-9.242851861013252, 38.38993203637247], [-9.299992605418552, 38.38993203637247] ] ] } }, { "type": "Feature", "properties": { "fill": "#777", "weight": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.4348980545587], [-9.299992605418552, 38.47986407274493], [-9.242851861013252, 38.47986407274493], [-9.242851861013252, 38.4348980545587], [-9.299992605418552, 38.4348980545587] ] ] } }, { "type": "Feature", "properties": { "fill": "#777", "weight": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.12013592725509], [-9.242851861013252, 38.16510194544132], [-9.185711116607951, 38.16510194544132], [-9.185711116607951, 38.12013592725509], [-9.242851861013252, 38.12013592725509] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.16510194544132], [-9.242851861013252, 38.21006796362755], [-9.185711116607951, 38.21006796362755], [-9.185711116607951, 38.16510194544132], [-9.242851861013252, 38.16510194544132] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.21006796362755], [-9.242851861013252, 38.25503398181378], [-9.185711116607951, 38.25503398181378], [-9.185711116607951, 38.21006796362755], [-9.242851861013252, 38.21006796362755] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.25503398181378], [-9.242851861013252, 38.30000000000001], [-9.185711116607951, 38.30000000000001], [-9.185711116607951, 38.25503398181378], [-9.242851861013252, 38.25503398181378] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.30000000000001], [-9.242851861013252, 38.34496601818624], [-9.185711116607951, 38.34496601818624], [-9.185711116607951, 38.30000000000001], [-9.242851861013252, 38.30000000000001] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.34496601818624], [-9.242851861013252, 38.38993203637247], [-9.185711116607951, 38.38993203637247], [-9.185711116607951, 38.34496601818624], [-9.242851861013252, 38.34496601818624] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.38993203637247], [-9.242851861013252, 38.4348980545587], [-9.185711116607951, 38.4348980545587], [-9.185711116607951, 38.38993203637247], [-9.242851861013252, 38.38993203637247] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.4348980545587], [-9.242851861013252, 38.47986407274493], [-9.185711116607951, 38.47986407274493], [-9.185711116607951, 38.4348980545587], [-9.242851861013252, 38.4348980545587] ] ] } }, { "type": "Feature", "properties": { "fill": "#777", "weight": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.12013592725509], [-9.185711116607951, 38.16510194544132], [-9.12857037220265, 38.16510194544132], [-9.12857037220265, 38.12013592725509], [-9.185711116607951, 38.12013592725509] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.16510194544132], [-9.185711116607951, 38.21006796362755], [-9.12857037220265, 38.21006796362755], [-9.12857037220265, 38.16510194544132], [-9.185711116607951, 38.16510194544132] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.21006796362755], [-9.185711116607951, 38.25503398181378], [-9.12857037220265, 38.25503398181378], [-9.12857037220265, 38.21006796362755], [-9.185711116607951, 38.21006796362755] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.25503398181378], [-9.185711116607951, 38.30000000000001], [-9.12857037220265, 38.30000000000001], [-9.12857037220265, 38.25503398181378], [-9.185711116607951, 38.25503398181378] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.30000000000001], [-9.185711116607951, 38.34496601818624], [-9.12857037220265, 38.34496601818624], [-9.12857037220265, 38.30000000000001], [-9.185711116607951, 38.30000000000001] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.34496601818624], [-9.185711116607951, 38.38993203637247], [-9.12857037220265, 38.38993203637247], [-9.12857037220265, 38.34496601818624], [-9.185711116607951, 38.34496601818624] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.38993203637247], [-9.185711116607951, 38.4348980545587], [-9.12857037220265, 38.4348980545587], [-9.12857037220265, 38.38993203637247], [-9.185711116607951, 38.38993203637247] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.4348980545587], [-9.185711116607951, 38.47986407274493], [-9.12857037220265, 38.47986407274493], [-9.12857037220265, 38.4348980545587], [-9.185711116607951, 38.4348980545587] ] ] } }, { "type": "Feature", "properties": { "fill": "#777", "weight": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.12013592725509], [-9.12857037220265, 38.16510194544132], [-9.07142962779735, 38.16510194544132], [-9.07142962779735, 38.12013592725509], [-9.12857037220265, 38.12013592725509] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.16510194544132], [-9.12857037220265, 38.21006796362755], [-9.07142962779735, 38.21006796362755], [-9.07142962779735, 38.16510194544132], [-9.12857037220265, 38.16510194544132] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.21006796362755], [-9.12857037220265, 38.25503398181378], [-9.07142962779735, 38.25503398181378], [-9.07142962779735, 38.21006796362755], [-9.12857037220265, 38.21006796362755] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.25503398181378], [-9.12857037220265, 38.30000000000001], [-9.07142962779735, 38.30000000000001], [-9.07142962779735, 38.25503398181378], [-9.12857037220265, 38.25503398181378] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.30000000000001], [-9.12857037220265, 38.34496601818624], [-9.07142962779735, 38.34496601818624], [-9.07142962779735, 38.30000000000001], [-9.12857037220265, 38.30000000000001] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.34496601818624], [-9.12857037220265, 38.38993203637247], [-9.07142962779735, 38.38993203637247], [-9.07142962779735, 38.34496601818624], [-9.12857037220265, 38.34496601818624] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.38993203637247], [-9.12857037220265, 38.4348980545587], [-9.07142962779735, 38.4348980545587], [-9.07142962779735, 38.38993203637247], [-9.12857037220265, 38.38993203637247] ] ] } }, { "type": "Feature", "properties": { "fill": "#ccc", "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.4348980545587], [-9.12857037220265, 38.47986407274493], [-9.07142962779735, 38.47986407274493], [-9.07142962779735, 38.4348980545587], [-9.12857037220265, 38.4348980545587] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#a00", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [-9.250764, 38.212184] } }, { "type": "Feature", "properties": { "medianCandidates": [ [-9.207196, 38.253611], [-9.193733, 38.273498], [-9.18952, 38.284859], [-9.18743, 38.290992], [-9.186424, 38.294559], [-9.185995, 38.296697], [-9.185823, 38.297992], [-9.185755, 38.298781], [-9.185728, 38.299263] ], "marker-color": "#0a0", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [-9.185718, 38.299557] } }, { "type": "Feature", "properties": { "marker-color": "#00a", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [-9.185711, 38.3] } }, { "type": "Feature", "properties": { "marker-color": "#aaa", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [-9.185711, 38.3] } } ] } ================================================ FILE: packages/turf-center-median/test/out/squares.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.12013592725509], [-9.299992605418552, 38.16510194544132], [-9.242851861013252, 38.16510194544132], [-9.242851861013252, 38.12013592725509], [-9.299992605418552, 38.12013592725509] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.16510194544132], [-9.299992605418552, 38.21006796362755], [-9.242851861013252, 38.21006796362755], [-9.242851861013252, 38.16510194544132], [-9.299992605418552, 38.16510194544132] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.21006796362755], [-9.299992605418552, 38.25503398181378], [-9.242851861013252, 38.25503398181378], [-9.242851861013252, 38.21006796362755], [-9.299992605418552, 38.21006796362755] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.25503398181378], [-9.299992605418552, 38.30000000000001], [-9.242851861013252, 38.30000000000001], [-9.242851861013252, 38.25503398181378], [-9.299992605418552, 38.25503398181378] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.30000000000001], [-9.299992605418552, 38.34496601818624], [-9.242851861013252, 38.34496601818624], [-9.242851861013252, 38.30000000000001], [-9.299992605418552, 38.30000000000001] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.34496601818624], [-9.299992605418552, 38.38993203637247], [-9.242851861013252, 38.38993203637247], [-9.242851861013252, 38.34496601818624], [-9.299992605418552, 38.34496601818624] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.38993203637247], [-9.299992605418552, 38.4348980545587], [-9.242851861013252, 38.4348980545587], [-9.242851861013252, 38.38993203637247], [-9.299992605418552, 38.38993203637247] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.4348980545587], [-9.299992605418552, 38.47986407274493], [-9.242851861013252, 38.47986407274493], [-9.242851861013252, 38.4348980545587], [-9.299992605418552, 38.4348980545587] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.12013592725509], [-9.242851861013252, 38.16510194544132], [-9.185711116607951, 38.16510194544132], [-9.185711116607951, 38.12013592725509], [-9.242851861013252, 38.12013592725509] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.16510194544132], [-9.242851861013252, 38.21006796362755], [-9.185711116607951, 38.21006796362755], [-9.185711116607951, 38.16510194544132], [-9.242851861013252, 38.16510194544132] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.21006796362755], [-9.242851861013252, 38.25503398181378], [-9.185711116607951, 38.25503398181378], [-9.185711116607951, 38.21006796362755], [-9.242851861013252, 38.21006796362755] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.25503398181378], [-9.242851861013252, 38.30000000000001], [-9.185711116607951, 38.30000000000001], [-9.185711116607951, 38.25503398181378], [-9.242851861013252, 38.25503398181378] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.30000000000001], [-9.242851861013252, 38.34496601818624], [-9.185711116607951, 38.34496601818624], [-9.185711116607951, 38.30000000000001], [-9.242851861013252, 38.30000000000001] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.34496601818624], [-9.242851861013252, 38.38993203637247], [-9.185711116607951, 38.38993203637247], [-9.185711116607951, 38.34496601818624], [-9.242851861013252, 38.34496601818624] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.38993203637247], [-9.242851861013252, 38.4348980545587], [-9.185711116607951, 38.4348980545587], [-9.185711116607951, 38.38993203637247], [-9.242851861013252, 38.38993203637247] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.4348980545587], [-9.242851861013252, 38.47986407274493], [-9.185711116607951, 38.47986407274493], [-9.185711116607951, 38.4348980545587], [-9.242851861013252, 38.4348980545587] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.12013592725509], [-9.185711116607951, 38.16510194544132], [-9.12857037220265, 38.16510194544132], [-9.12857037220265, 38.12013592725509], [-9.185711116607951, 38.12013592725509] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.16510194544132], [-9.185711116607951, 38.21006796362755], [-9.12857037220265, 38.21006796362755], [-9.12857037220265, 38.16510194544132], [-9.185711116607951, 38.16510194544132] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.21006796362755], [-9.185711116607951, 38.25503398181378], [-9.12857037220265, 38.25503398181378], [-9.12857037220265, 38.21006796362755], [-9.185711116607951, 38.21006796362755] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.25503398181378], [-9.185711116607951, 38.30000000000001], [-9.12857037220265, 38.30000000000001], [-9.12857037220265, 38.25503398181378], [-9.185711116607951, 38.25503398181378] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.30000000000001], [-9.185711116607951, 38.34496601818624], [-9.12857037220265, 38.34496601818624], [-9.12857037220265, 38.30000000000001], [-9.185711116607951, 38.30000000000001] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.34496601818624], [-9.185711116607951, 38.38993203637247], [-9.12857037220265, 38.38993203637247], [-9.12857037220265, 38.34496601818624], [-9.185711116607951, 38.34496601818624] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.38993203637247], [-9.185711116607951, 38.4348980545587], [-9.12857037220265, 38.4348980545587], [-9.12857037220265, 38.38993203637247], [-9.185711116607951, 38.38993203637247] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.4348980545587], [-9.185711116607951, 38.47986407274493], [-9.12857037220265, 38.47986407274493], [-9.12857037220265, 38.4348980545587], [-9.185711116607951, 38.4348980545587] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.12013592725509], [-9.12857037220265, 38.16510194544132], [-9.07142962779735, 38.16510194544132], [-9.07142962779735, 38.12013592725509], [-9.12857037220265, 38.12013592725509] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.16510194544132], [-9.12857037220265, 38.21006796362755], [-9.07142962779735, 38.21006796362755], [-9.07142962779735, 38.16510194544132], [-9.12857037220265, 38.16510194544132] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.21006796362755], [-9.12857037220265, 38.25503398181378], [-9.07142962779735, 38.25503398181378], [-9.07142962779735, 38.21006796362755], [-9.12857037220265, 38.21006796362755] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.25503398181378], [-9.12857037220265, 38.30000000000001], [-9.07142962779735, 38.30000000000001], [-9.07142962779735, 38.25503398181378], [-9.12857037220265, 38.25503398181378] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.30000000000001], [-9.12857037220265, 38.34496601818624], [-9.07142962779735, 38.34496601818624], [-9.07142962779735, 38.30000000000001], [-9.12857037220265, 38.30000000000001] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.34496601818624], [-9.12857037220265, 38.38993203637247], [-9.07142962779735, 38.38993203637247], [-9.07142962779735, 38.34496601818624], [-9.12857037220265, 38.34496601818624] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.38993203637247], [-9.12857037220265, 38.4348980545587], [-9.07142962779735, 38.4348980545587], [-9.07142962779735, 38.38993203637247], [-9.12857037220265, 38.38993203637247] ] ] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.4348980545587], [-9.12857037220265, 38.47986407274493], [-9.07142962779735, 38.47986407274493], [-9.07142962779735, 38.4348980545587], [-9.12857037220265, 38.4348980545587] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#a00", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [-9.191425, 38.295503] } }, { "type": "Feature", "properties": { "medianCandidates": [ [-9.187967, 38.297241], [-9.186594, 38.298321], [-9.186056, 38.298981], [-9.185845, 38.299385] ], "marker-color": "#0a0", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [-9.185763, 38.299631] } }, { "type": "Feature", "properties": { "marker-color": "#00a", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [-9.185711, 38.3] } }, { "type": "Feature", "properties": { "marker-color": "#aaa", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [-9.185711, 38.3] } } ] } ================================================ FILE: packages/turf-center-median/test/out/steiners-problem-bad-weights.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "weight": 0 }, "geometry": { "type": "Point", "coordinates": [0, 0] } }, { "type": "Feature", "properties": { "weight": -10 }, "geometry": { "type": "Point", "coordinates": [1, 0] } }, { "type": "Feature", "properties": { "weight": -30 }, "geometry": { "type": "Point", "coordinates": [0, 1] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [5, 8] } }, { "type": "Feature", "properties": { "marker-color": "#a00", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [5, 8] } }, { "type": "Feature", "properties": { "medianCandidates": [], "marker-color": "#0a0", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [5, 8] } }, { "type": "Feature", "properties": { "marker-color": "#00a", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [2.5, 4] } }, { "type": "Feature", "properties": { "marker-color": "#aaa", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [1.871795, 2.794872] } } ] } ================================================ FILE: packages/turf-center-median/test/out/steiners-problem-low-tolerance.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [5, 8] } }, { "type": "Feature", "properties": { "marker-color": "#a00", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [1.5, 2.25] } }, { "type": "Feature", "properties": { "medianCandidates": [], "marker-color": "#0a0", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [0.803941, 1.162109] } }, { "type": "Feature", "properties": { "marker-color": "#00a", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [2.5, 4] } }, { "type": "Feature", "properties": { "marker-color": "#aaa", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [1.871795, 2.794872] } } ] } ================================================ FILE: packages/turf-center-median/test/out/steiners-problem.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [5, 8] } }, { "type": "Feature", "properties": { "marker-color": "#a00", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [1.5, 2.25] } }, { "type": "Feature", "properties": { "medianCandidates": [ [0.803941, 1.162109], [0.507632, 0.764604], [0.412131, 0.666232], [0.386985, 0.638468], [0.381397, 0.628272], [0.380946, 0.623563], [0.381642, 0.620951], [0.382427, 0.619321], [0.383065, 0.618239], [0.383537, 0.617501] ], "marker-color": "#0a0", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [0.383876, 0.616989] } }, { "type": "Feature", "properties": { "marker-color": "#00a", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [2.5, 4] } }, { "type": "Feature", "properties": { "marker-color": "#aaa", "marker-symbol": "cross" }, "geometry": { "type": "Point", "coordinates": [1.871795, 2.794872] } } ] } ================================================ FILE: packages/turf-center-median/test.ts ================================================ import test from "tape"; import { glob } from "glob"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { center } from "@turf/center"; import { truncate } from "@turf/truncate"; import { centerMean } from "@turf/center-mean"; import { centerOfMass } from "@turf/center-of-mass"; import { featureCollection, round } from "@turf/helpers"; import { centerMedian } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); test("turf-center-median", (t) => { glob .sync(path.join(__dirname, "test", "in", "*.json")) .forEach((filepath) => { // Define params const { name } = path.parse(filepath); const geojson = loadJsonFileSync(filepath); const options = geojson.properties; // Calculate Centers const meanCenter = centerMean(geojson, options); const medianCenter = centerMedian(geojson, options); const extentCenter = center(geojson); const massCenter = centerOfMass(geojson); // Truncate median properties medianCenter.properties.medianCandidates.forEach((candidate, index) => { medianCenter.properties.medianCandidates[index] = [ round(candidate[0], 6), round(candidate[1], 6), ]; }); const results = featureCollection([ ...geojson.features, colorize(meanCenter, "#a00"), colorize(medianCenter, "#0a0"), colorize(extentCenter, "#00a"), colorize(massCenter, "#aaa"), ]); const out = filepath.replace( path.join("test", "in"), path.join("test", "out") ); if (process.env.REGEN) writeJsonFileSync(out, results); t.deepEqual(results, loadJsonFileSync(out), name); }); t.end(); }); function colorize(point, color) { point.properties["marker-color"] = color; point.properties["marker-symbol"] = "cross"; return truncate(point); } ================================================ FILE: packages/turf-center-median/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-center-of-mass/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-center-of-mass/README.md ================================================ # @turf/center-of-mass ## centerOfMass Takes any [Feature][1] or a [FeatureCollection][2] and returns its [center of mass][3] using this formula: [Centroid of Polygon][4]. ### Parameters * `geojson` **[GeoJSON][5]** GeoJSON to be centered * `options` **[Object][6]** Optional Parameters (optional, default `{}`) * `options.properties` **[Object][6]** Translate Properties to Feature (optional, default `{}`) ### Examples ```javascript var polygon = turf.polygon([[[-81, 41], [-88, 36], [-84, 31], [-80, 33], [-77, 39], [-81, 41]]]); var center = turf.centerOfMass(polygon); //addToMap var addToMap = [polygon, center] ``` Returns **[Feature][1]<[Point][7]>** the center of mass [1]: https://tools.ietf.org/html/rfc7946#section-3.2 [2]: https://tools.ietf.org/html/rfc7946#section-3.3 [3]: https://en.wikipedia.org/wiki/Center_of_mass [4]: https://en.wikipedia.org/wiki/Centroid#Centroid_of_polygon [5]: https://tools.ietf.org/html/rfc7946#section-3 [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [7]: https://tools.ietf.org/html/rfc7946#section-3.1.2 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/center-of-mass ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-center-of-mass/bench.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import { glob } from "glob"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { centerOfMass } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const fixtures = glob .sync(path.join(__dirname, "test", "in", "*.geojson")) .map((input) => { return { name: path.parse(input).name, geojson: loadJsonFileSync(input), }; }); /** * Single Process Benchmark * * feature-collection: 1.645ms * imbalanced-polygon: 0.073ms * linestring: 0.134ms * point: 0.253ms * polygon: 0.034ms */ for (const { name, geojson } of fixtures) { console.time(name); centerOfMass(geojson); console.timeEnd(name); } /** * Benchmark Results * * feature-collection x 268,173 ops/sec ±1.69% (89 runs sampled) * imbalanced-polygon x 227,405 ops/sec ±1.76% (86 runs sampled) * linestring x 975,430 ops/sec ±3.57% (83 runs sampled) * point x 8,949,698 ops/sec ±2.01% (85 runs sampled) * polygon x 463,325 ops/sec ±1.73% (89 runs sampled) */ const suite = new Benchmark.Suite("turf-center-of-mass"); for (const { name, geojson } of fixtures) { suite.add(name, () => centerOfMass(geojson)); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-center-of-mass/index.ts ================================================ import { Feature, GeoJsonProperties, Point, Position } from "geojson"; import { convex } from "@turf/convex"; import { centroid } from "@turf/centroid"; import { point } from "@turf/helpers"; import { getType, getCoord } from "@turf/invariant"; import { coordEach } from "@turf/meta"; /** * Takes any {@link Feature} or a {@link FeatureCollection} and returns its [center of mass](https://en.wikipedia.org/wiki/Center_of_mass) using this formula: [Centroid of Polygon](https://en.wikipedia.org/wiki/Centroid#Centroid_of_polygon). * * @function * @param {GeoJSON} geojson GeoJSON to be centered * @param {Object} [options={}] Optional Parameters * @param {Object} [options.properties={}] Translate Properties to Feature * @returns {Feature} the center of mass * @example * var polygon = turf.polygon([[[-81, 41], [-88, 36], [-84, 31], [-80, 33], [-77, 39], [-81, 41]]]); * * var center = turf.centerOfMass(polygon); * * //addToMap * var addToMap = [polygon, center] */ function centerOfMass

( geojson: any, options: { properties?: P; } = {} ): Feature { switch (getType(geojson)) { case "Point": return point(getCoord(geojson), options.properties); case "Polygon": var coords: Position[] = []; coordEach(geojson, function (coord) { coords.push(coord); }); // First, we neutralize the feature (set it around coordinates [0,0]) to prevent rounding errors // We take any point to translate all the points around 0 var centre = centroid(geojson, { properties: options.properties }); var translation = centre.geometry.coordinates; var sx = 0; var sy = 0; var sArea = 0; var i, pi, pj, xi, xj, yi, yj, a; var neutralizedPoints = coords.map(function (point) { return [point[0] - translation[0], point[1] - translation[1]]; }); for (i = 0; i < coords.length - 1; i++) { // pi is the current point pi = neutralizedPoints[i]; xi = pi[0]; yi = pi[1]; // pj is the next point (pi+1) pj = neutralizedPoints[i + 1]; xj = pj[0]; yj = pj[1]; // a is the common factor to compute the signed area and the final coordinates a = xi * yj - xj * yi; // sArea is the sum used to compute the signed area sArea += a; // sx and sy are the sums used to compute the final coordinates sx += (xi + xj) * a; sy += (yi + yj) * a; } // Shape has no area: fallback on turf.centroid if (sArea === 0) { return centre; } else { // Compute the signed area, and factorize 1/6A var area = sArea * 0.5; var areaFactor = 1 / (6 * area); // Compute the final coordinates, adding back the values that have been neutralized return point( [translation[0] + areaFactor * sx, translation[1] + areaFactor * sy], options.properties ); } default: // Not a polygon: Compute the convex hull and work with that var hull = convex(geojson); if (hull) return centerOfMass(hull, { properties: options.properties }); // Hull is empty: fallback on the centroid else return centroid(geojson, { properties: options.properties }); } } export { centerOfMass }; export default centerOfMass; ================================================ FILE: packages/turf-center-of-mass/package.json ================================================ { "name": "@turf/center-of-mass", "version": "7.3.4", "description": "Finds the “balance point” of irregular shapes, like a country outline.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "gis" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/centroid": "workspace:*", "@turf/convex": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-center-of-mass/test/in/feature-collection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.833351373672485, 45.760809294695534] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.8331475257873535, 45.760296567821456] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.833984374999999, 45.76073818687033] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.834005832672119, 45.76022171678877] } } ] } ================================================ FILE: packages/turf-center-of-mass/test/in/imbalanced-polygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4.854240417480469, 45.77258200374433], [4.8445844650268555, 45.777431068484894], [4.845442771911621, 45.778658234059755], [4.845914840698242, 45.779376562352425], [4.846644401550292, 45.78021460033108], [4.847245216369629, 45.78078326178593], [4.848060607910156, 45.78138184652523], [4.8487043380737305, 45.78186070968964], [4.849562644958495, 45.78248921135124], [4.850893020629883, 45.78302792142197], [4.852008819580077, 45.78374619341895], [4.852995872497559, 45.784075398324866], [4.853854179382324, 45.78443452873236], [4.8549699783325195, 45.78470387501975], [4.85569953918457, 45.784793656826345], [4.857330322265624, 45.784853511283764], [4.858231544494629, 45.78494329284938], [4.859304428100585, 45.784883438488365], [4.858360290527344, 45.77294120818474], [4.854240417480469, 45.77258200374433] ] ] } } ================================================ FILE: packages/turf-center-of-mass/test/in/linestring.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [4.86020565032959, 45.76884015325622], [4.85994815826416, 45.749558161214516] ] } } ================================================ FILE: packages/turf-center-of-mass/test/in/point.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.831961989402771, 45.75764678012361] } } ================================================ FILE: packages/turf-center-of-mass/test/in/polygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4.8250579833984375, 45.79398056386735], [4.882392883300781, 45.79254427435898], [4.910373687744141, 45.76081677972451], [4.894924163818359, 45.7271539426975], [4.824199676513671, 45.71337148333104], [4.773387908935547, 45.74021417890731], [4.778022766113281, 45.778418789239055], [4.8250579833984375, 45.79398056386735] ] ] } } ================================================ FILE: packages/turf-center-of-mass/test/out/feature-collection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.833617839987766, 45.7605038801208] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.833351373672485, 45.760809294695534] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.8331475257873535, 45.760296567821456] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.833984374999999, 45.76073818687033] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.834005832672119, 45.76022171678877] } } ] } ================================================ FILE: packages/turf-center-of-mass/test/out/imbalanced-polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.853372894819807, 45.77877742486245] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4.854240417480469, 45.77258200374433], [4.8445844650268555, 45.777431068484894], [4.845442771911621, 45.778658234059755], [4.845914840698242, 45.779376562352425], [4.846644401550292, 45.78021460033108], [4.847245216369629, 45.78078326178593], [4.848060607910156, 45.78138184652523], [4.8487043380737305, 45.78186070968964], [4.849562644958495, 45.78248921135124], [4.850893020629883, 45.78302792142197], [4.852008819580077, 45.78374619341895], [4.852995872497559, 45.784075398324866], [4.853854179382324, 45.78443452873236], [4.8549699783325195, 45.78470387501975], [4.85569953918457, 45.784793656826345], [4.857330322265624, 45.784853511283764], [4.858231544494629, 45.78494329284938], [4.859304428100585, 45.784883438488365], [4.858360290527344, 45.77294120818474], [4.854240417480469, 45.77258200374433] ] ] } } ] } ================================================ FILE: packages/turf-center-of-mass/test/out/linestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.860076904296875, 45.75919915723537] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [4.86020565032959, 45.76884015325622], [4.85994815826416, 45.749558161214516] ] } } ] } ================================================ FILE: packages/turf-center-of-mass/test/out/point.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.831961989402771, 45.75764678012361] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.831961989402771, 45.75764678012361] } } ] } ================================================ FILE: packages/turf-center-of-mass/test/out/polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.840728965137111, 45.75581209996416] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4.8250579833984375, 45.79398056386735], [4.882392883300781, 45.79254427435898], [4.910373687744141, 45.76081677972451], [4.894924163818359, 45.7271539426975], [4.824199676513671, 45.71337148333104], [4.773387908935547, 45.74021417890731], [4.778022766113281, 45.778418789239055], [4.8250579833984375, 45.79398056386735] ] ] } } ] } ================================================ FILE: packages/turf-center-of-mass/test.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { glob } from "glob"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { featureEach } from "@turf/meta"; import { point, lineString, polygon, featureCollection } from "@turf/helpers"; import { centerOfMass } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = glob.sync(directories.in + "*.geojson").map((input) => { const base = path.parse(input).base; return { name: path.parse(input).name, filename: base, geojson: loadJsonFileSync(input), out: directories.out + base, }; }); test("center of mass", (t) => { fixtures.forEach((fixture) => { const name = fixture.name; const out = fixture.out; const geojson = fixture.geojson; const centered = centerOfMass(geojson, { "marker-symbol": "circle" }); const result = featureCollection([centered]); featureEach(geojson, (feature) => result.features.push(feature)); if (process.env.REGEN) writeJsonFileSync(out, result); t.deepEqual(result, loadJsonFileSync(out), name); }); t.end(); }); test("center of mass -- Geometry Support", (t) => { const line = lineString([ [0, 0], [1, 1], ]); const poly = polygon([ [ [0, 0], [3, 3], [-5, -5], [0, 0], ], ]); t.deepEqual( centerOfMass(poly.geometry), centerOfMass(poly), "polygon geometry/feature should be equal" ); t.deepEqual( centerOfMass(line.geometry), centerOfMass(line), "lineString geometry/feature should be equal" ); t.end(); }); test("center of mass -- no area", (t) => { const poly = polygon([ [ [0, 0], [0, 0], [0, 0], [0, 0], ], ]); const pt = centerOfMass(poly); t.deepEqual(pt, point([0, 0]), "polygon has no area"); t.end(); }); test("center of mass -- point", (t) => { const p = point([0, 0]); const pt = centerOfMass(p); t.deepEqual(pt, point([0, 0]), "point returns pt"); t.end(); }); test("center of mass -- point geom", (t) => { const geomPoint = { type: "Point", coordinates: [0, 0] }; const pt = centerOfMass(geomPoint); t.deepEqual(pt, point([0, 0]), "point geom returns pt"); t.end(); }); test("center of mass -- properties", (t) => { const line = lineString([ [0, 0], [1, 1], ]); const pt = centerOfMass(line, { properties: { foo: "bar" } }); t.equal(pt.properties.foo, "bar", "translate properties"); t.end(); }); ================================================ FILE: packages/turf-center-of-mass/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-center-of-mass/types.ts ================================================ import { lineString } from "@turf/helpers"; import { centerOfMass } from "./index.js"; const line = lineString([ [0, 0], [10, 10], ]); centerOfMass(line); centerOfMass(line, { properties: { foo: "bar" } }); ================================================ FILE: packages/turf-centroid/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-centroid/README.md ================================================ # @turf/centroid ## centroid Computes the centroid as the mean of all vertices within the object. ### Parameters * `geojson` **[GeoJSON][1]** GeoJSON to be centered * `options` **[Object][2]** Optional Parameters (optional, default `{}`) * `options.properties` **[Object][2]** an Object that is used as the [Feature][3]'s properties (optional, default `{}`) ### Examples ```javascript var polygon = turf.polygon([[[-81, 41], [-88, 36], [-84, 31], [-80, 33], [-77, 39], [-81, 41]]]); var centroid = turf.centroid(polygon); //addToMap var addToMap = [polygon, centroid] ``` Returns **[Feature][3]<[Point][4]>** the centroid of the input object [1]: https://tools.ietf.org/html/rfc7946#section-3 [2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [3]: https://tools.ietf.org/html/rfc7946#section-3.2 [4]: https://tools.ietf.org/html/rfc7946#section-3.1.2 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/centroid ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-centroid/bench.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import { glob } from "glob"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { centroid } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const fixtures = glob .sync(path.join(__dirname, "test", "in", "*.geojson")) .map((input) => { return { name: path.parse(input).name, geojson: loadJsonFileSync(input), }; }); /** * Single Process Benchmark * * feature-collection: 0.528ms * imbalanced-polygon: 0.057ms * linestring: 0.041ms * point: 0.012ms * polygon: 0.016ms */ for (const { name, geojson } of fixtures) { console.time(name); centroid(geojson); console.timeEnd(name); } /** * Benchmark Results * * feature-collection x 3,468,116 ops/sec ±0.94% (89 runs sampled) * imbalanced-polygon x 1,578,689 ops/sec ±2.81% (84 runs sampled) * linestring x 4,154,796 ops/sec ±2.72% (84 runs sampled) * point x 4,559,430 ops/sec ±4.39% (79 runs sampled) * polygon x 2,741,762 ops/sec ±2.29% (85 runs sampled) */ const suite = new Benchmark.Suite("turf-centroid"); for (const { name, geojson } of fixtures) { suite.add(name, () => centroid(geojson)); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-centroid/index.ts ================================================ import { Feature, GeoJsonProperties, Point } from "geojson"; import { point, AllGeoJSON } from "@turf/helpers"; import { coordEach } from "@turf/meta"; /** * Computes the centroid as the mean of all vertices within the object. * * @function * @param {GeoJSON} geojson GeoJSON to be centered * @param {Object} [options={}] Optional Parameters * @param {Object} [options.properties={}] an Object that is used as the {@link Feature}'s properties * @returns {Feature} the centroid of the input object * @example * var polygon = turf.polygon([[[-81, 41], [-88, 36], [-84, 31], [-80, 33], [-77, 39], [-81, 41]]]); * * var centroid = turf.centroid(polygon); * * //addToMap * var addToMap = [polygon, centroid] */ function centroid

( geojson: AllGeoJSON, options: { properties?: P; } = {} ): Feature { let xSum = 0; let ySum = 0; let len = 0; coordEach( geojson, function (coord) { xSum += coord[0]; ySum += coord[1]; len++; }, true ); return point([xSum / len, ySum / len], options.properties); } export { centroid }; export default centroid; ================================================ FILE: packages/turf-centroid/package.json ================================================ { "name": "@turf/centroid", "version": "7.3.4", "description": "Determines the geometric center of a polygon or shape.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "geojson", "geo", "gis" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-centroid/test/in/feature-collection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.833351373672485, 45.760809294695534] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.8331475257873535, 45.760296567821456] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.833984374999999, 45.76073818687033] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.834005832672119, 45.76022171678877] } } ] } ================================================ FILE: packages/turf-centroid/test/in/imbalanced-polygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4.854240417480469, 45.77258200374433], [4.8445844650268555, 45.777431068484894], [4.845442771911621, 45.778658234059755], [4.845914840698242, 45.779376562352425], [4.846644401550292, 45.78021460033108], [4.847245216369629, 45.78078326178593], [4.848060607910156, 45.78138184652523], [4.8487043380737305, 45.78186070968964], [4.849562644958495, 45.78248921135124], [4.850893020629883, 45.78302792142197], [4.852008819580077, 45.78374619341895], [4.852995872497559, 45.784075398324866], [4.853854179382324, 45.78443452873236], [4.8549699783325195, 45.78470387501975], [4.85569953918457, 45.784793656826345], [4.857330322265624, 45.784853511283764], [4.858231544494629, 45.78494329284938], [4.859304428100585, 45.784883438488365], [4.858360290527344, 45.77294120818474], [4.854240417480469, 45.77258200374433] ] ] } } ================================================ FILE: packages/turf-centroid/test/in/linestring.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [4.86020565032959, 45.76884015325622], [4.85994815826416, 45.749558161214516] ] } } ================================================ FILE: packages/turf-centroid/test/in/point.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.831961989402771, 45.75764678012361] } } ================================================ FILE: packages/turf-centroid/test/in/polygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4.8250579833984375, 45.79398056386735], [4.882392883300781, 45.79254427435898], [4.910373687744141, 45.76081677972451], [4.894924163818359, 45.7271539426975], [4.824199676513671, 45.71337148333104], [4.773387908935547, 45.74021417890731], [4.778022766113281, 45.778418789239055], [4.8250579833984375, 45.79398056386735] ] ] } } ================================================ FILE: packages/turf-centroid/test/out/feature-collection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [4.8336222767829895, 45.76051644154402] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.833351373672485, 45.760809294695534] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.8331475257873535, 45.760296567821456] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.833984374999999, 45.76073818687033] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.834005832672119, 45.76022171678877] } } ] } ================================================ FILE: packages/turf-centroid/test/out/imbalanced-polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [4.851791984156558, 45.78143055383553] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4.854240417480469, 45.77258200374433], [4.8445844650268555, 45.777431068484894], [4.845442771911621, 45.778658234059755], [4.845914840698242, 45.779376562352425], [4.846644401550292, 45.78021460033108], [4.847245216369629, 45.78078326178593], [4.848060607910156, 45.78138184652523], [4.8487043380737305, 45.78186070968964], [4.849562644958495, 45.78248921135124], [4.850893020629883, 45.78302792142197], [4.852008819580077, 45.78374619341895], [4.852995872497559, 45.784075398324866], [4.853854179382324, 45.78443452873236], [4.8549699783325195, 45.78470387501975], [4.85569953918457, 45.784793656826345], [4.857330322265624, 45.784853511283764], [4.858231544494629, 45.78494329284938], [4.859304428100585, 45.784883438488365], [4.858360290527344, 45.77294120818474], [4.854240417480469, 45.77258200374433] ] ] } } ] } ================================================ FILE: packages/turf-centroid/test/out/linestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [4.860076904296875, 45.75919915723537] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [4.86020565032959, 45.76884015325622], [4.85994815826416, 45.749558161214516] ] } } ] } ================================================ FILE: packages/turf-centroid/test/out/point.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [4.831961989402771, 45.75764678012361] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.831961989402771, 45.75764678012361] } } ] } ================================================ FILE: packages/turf-centroid/test/out/polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [4.841194152832031, 45.75807143030368] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4.8250579833984375, 45.79398056386735], [4.882392883300781, 45.79254427435898], [4.910373687744141, 45.76081677972451], [4.894924163818359, 45.7271539426975], [4.824199676513671, 45.71337148333104], [4.773387908935547, 45.74021417890731], [4.778022766113281, 45.778418789239055], [4.8250579833984375, 45.79398056386735] ] ] } } ] } ================================================ FILE: packages/turf-centroid/test.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { glob } from "glob"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { featureEach } from "@turf/meta"; import { featureCollection, lineString } from "@turf/helpers"; import { centroid } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = glob.sync(directories.in + "*.geojson").map((input) => { const name = path.parse(input).name; const base = path.parse(input).base; return { name, filename: base, geojson: loadJsonFileSync(input), out: directories.out + base, }; }); test("centroid", (t) => { fixtures.forEach((fixture) => { const name = fixture.name; const geojson = fixture.geojson; const out = fixture.out; const centered = centroid(geojson, { properties: { "marker-symbol": "circle" }, }); const result = featureCollection([centered]); featureEach(geojson, (feature) => result.features.push(feature)); if (process.env.REGEN) writeJsonFileSync(out, result); t.deepEqual(result, loadJsonFileSync(out), name); }); t.end(); }); test("centroid -- properties", (t) => { const line = lineString([ [0, 0], [1, 1], ]); const pt = centroid(line, { properties: { foo: "bar" } }); t.equal(pt.properties.foo, "bar", "translate properties"); t.end(); }); ================================================ FILE: packages/turf-centroid/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-centroid/types.ts ================================================ import { lineString } from "@turf/helpers"; import { centroid } from "./index.js"; const line = lineString([ [0, 0], [10, 10], ]); centroid(line); centroid(line, { properties: { foo: "bar" } }); ================================================ FILE: packages/turf-circle/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-circle/README.md ================================================ # @turf/circle ## circle Takes a [Point][1] and calculates the circle polygon given a radius in [Units][2]; and steps for precision. ### Parameters * `center` **([Feature][3]<[Point][1]> | [Array][4]<[number][5]>)** center point * `radius` **[number][5]** radius of the circle * `options` **[Object][6]** Optional parameters (optional, default `{}`) * `options.steps` **[number][5]** number of steps (optional, default `64`) * `options.units` **Units** Supports all valid Turf [Units][2] (optional, default `'kilometers'`) * `options.properties` **[Object][6]** properties (optional, default `{}`) ### Examples ```javascript var center = [-75.343, 39.984]; var radius = 5; var options = {steps: 10, units: 'kilometers', properties: {foo: 'bar'}}; var circle = turf.circle(center, radius, options); //addToMap var addToMap = [turf.point(center), circle] ``` Returns **[Feature][3]<[Polygon][7]>** circle polygon [1]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [2]: https://turfjs.org/docs/api/types/Units [3]: https://tools.ietf.org/html/rfc7946#section-3.2 [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [7]: https://tools.ietf.org/html/rfc7946#section-3.1.6 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/circle ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-circle/bench.ts ================================================ import Benchmark from "benchmark"; import { circle } from "./index.js"; const center = [-75.0, 39.0]; const radius = 5; /** * Benchmark Results * * turf-circle - 16 steps x 140,793 ops/sec ±5.92% (79 runs sampled) * turf-circle - 32 steps x 84,428 ops/sec ±2.28% (86 runs sampled) * turf-circle - 64 steps x 45,202 ops/sec ±1.85% (88 runs sampled) */ const suite = new Benchmark.Suite("turf-circle"); suite .add("turf-circle - 16 steps", () => circle(center, radius, 16)) .add("turf-circle - 32 steps", () => circle(center, radius, 32)) .add("turf-circle - 64 steps", () => circle(center, radius, 64)) .on("cycle", (e) => console.log(String(e.target))) .run(); ================================================ FILE: packages/turf-circle/index.ts ================================================ import { GeoJsonProperties, Feature, Point, Polygon } from "geojson"; import { destination } from "@turf/destination"; import { polygon, Units } from "@turf/helpers"; /** * Takes a {@link Point} and calculates the circle polygon given a radius in {@link https://turfjs.org/docs/api/types/Units Units}; and steps for precision. * * @function * @param {Feature|number[]} center center point * @param {number} radius radius of the circle * @param {Object} [options={}] Optional parameters * @param {number} [options.steps=64] number of steps * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @param {Object} [options.properties={}] properties * @returns {Feature} circle polygon * @example * var center = [-75.343, 39.984]; * var radius = 5; * var options = {steps: 10, units: 'kilometers', properties: {foo: 'bar'}}; * var circle = turf.circle(center, radius, options); * * //addToMap * var addToMap = [turf.point(center), circle] */ function circle

( center: number[] | Point | Feature, radius: number, options: { steps?: number; units?: Units; properties?: P; } = {} ): Feature { // default params const steps = options.steps || 64; const properties: any = options.properties ? options.properties : !Array.isArray(center) && center.type === "Feature" && center.properties ? center.properties : {}; // main const coordinates = []; for (let i = 0; i < steps; i++) { coordinates.push( destination(center, radius, (i * -360) / steps, options).geometry .coordinates ); } coordinates.push(coordinates[0]); return polygon([coordinates], properties); } export { circle }; export default circle; ================================================ FILE: packages/turf-circle/package.json ================================================ { "name": "@turf/circle", "version": "7.3.4", "description": "Takes a point and calculates the circle polygon given a radius.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "circle", "radius", "polygon", "miles", "km" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@placemarkio/check-geojson": "^0.1.12", "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/destination": "workspace:*", "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-circle/test/in/circle1.geojson ================================================ { "type": "Feature", "properties": { "radius": 5 }, "geometry": { "type": "Point", "coordinates": [-75.343, 39.984] } } ================================================ FILE: packages/turf-circle/test/out/circle1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "radius": 5 }, "geometry": { "type": "Point", "coordinates": [-75.343, 39.984] } }, { "type": "Feature", "properties": { "radius": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.343, 40.028966], [-75.348756, 40.028749], [-75.354456, 40.028101], [-75.360046, 40.027029], [-75.365472, 40.025541], [-75.37068, 40.023653], [-75.375622, 40.021383], [-75.380248, 40.018753], [-75.384516, 40.015788], [-75.388383, 40.012517], [-75.391813, 40.008972], [-75.394772, 40.005185], [-75.397232, 40.001195], [-75.399169, 39.997039], [-75.400565, 39.992758], [-75.401406, 39.988393], [-75.401685, 39.983985], [-75.401399, 39.979578], [-75.40055, 39.975213], [-75.399148, 39.970934], [-75.397204, 39.96678], [-75.39474, 39.962792], [-75.391777, 39.959008], [-75.388345, 39.955465], [-75.384477, 39.952197], [-75.380211, 39.949235], [-75.375586, 39.946608], [-75.370648, 39.94434], [-75.365444, 39.942455], [-75.360025, 39.940969], [-75.354442, 39.939897], [-75.348748, 39.93925], [-75.343, 39.939034], [-75.337252, 39.93925], [-75.331558, 39.939897], [-75.325975, 39.940969], [-75.320556, 39.942455], [-75.315352, 39.94434], [-75.310414, 39.946608], [-75.305789, 39.949235], [-75.301523, 39.952197], [-75.297655, 39.955465], [-75.294223, 39.959008], [-75.29126, 39.962792], [-75.288796, 39.96678], [-75.286852, 39.970934], [-75.28545, 39.975213], [-75.284601, 39.979578], [-75.284315, 39.983985], [-75.284594, 39.988393], [-75.285435, 39.992758], [-75.286831, 39.997039], [-75.288768, 40.001195], [-75.291228, 40.005185], [-75.294187, 40.008972], [-75.297617, 40.012517], [-75.301484, 40.015788], [-75.305752, 40.018753], [-75.310378, 40.021383], [-75.31532, 40.023653], [-75.320528, 40.025541], [-75.325954, 40.027029], [-75.331544, 40.028101], [-75.337244, 40.028749], [-75.343, 40.028966] ] ] } } ] } ================================================ FILE: packages/turf-circle/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { truncate } from "@turf/truncate"; import { featureCollection } from "@turf/helpers"; import { check } from "@placemarkio/check-geojson"; import { circle } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("turf-circle", (t) => { fixtures.forEach((fixture) => { const filename = fixture.filename; const name = fixture.name; const geojson = fixture.geojson; const properties = geojson.properties || {}; const radius = properties.radius; const steps = properties.steps || 64; const units = properties.units; const C = truncate(circle(geojson, radius, { steps: steps, units: units })); const results = featureCollection([geojson, C]); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEquals(results, loadJsonFileSync(directories.out + filename), name); }); t.end(); }); test("turf-circle -- validate geojson", (t) => { const C = circle([0, 0], 100); try { check(JSON.stringify(C)); t.pass(); } catch (e) { t.fail(e.message); } t.end(); }); ================================================ FILE: packages/turf-circle/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-circle/types.ts ================================================ import { point } from "@turf/helpers"; import { circle } from "./index.js"; const center = point([-75.343, 39.984]); const units = "kilometers"; const radius = 5; const steps = 10; circle(center, radius); circle(center, radius, { steps }); circle(center, radius, { steps, units }); circle([-75, 39], radius, { steps, units, properties: { foo: "bar" } }); ================================================ FILE: packages/turf-clean-coords/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-clean-coords/README.md ================================================ # @turf/clean-coords ## cleanCoords Removes redundant coordinates from any GeoJSON Geometry. ### Parameters * `geojson` **([Geometry][1] | [Feature][2])** Feature or Geometry * `options` **[Object][3]** Optional parameters (optional, default `{}`) * `options.mutate` **[boolean][4]** allows GeoJSON input to be mutated (optional, default `false`) ### Examples ```javascript var line = turf.lineString([[0, 0], [0, 2], [0, 5], [0, 8], [0, 8], [0, 10]]); var multiPoint = turf.multiPoint([[0, 0], [0, 0], [2, 2]]); turf.cleanCoords(line).geometry.coordinates; //= [[0, 0], [0, 10]] turf.cleanCoords(multiPoint).geometry.coordinates; //= [[0, 0], [2, 2]] ``` Returns **([Geometry][1] | [Feature][2])** the cleaned input Feature/Geometry [1]: https://tools.ietf.org/html/rfc7946#section-3.1 [2]: https://tools.ietf.org/html/rfc7946#section-3.2 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/clean-coords ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-clean-coords/bench.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import { glob } from "glob"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { cleanCoords } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); /** * Benchmark Results * * geometry: 0.675ms * multiline: 0.044ms * multipoint: 0.291ms * multipolygon: 0.062ms * point: 0.010ms * polygon-with-hole: 0.017ms * polygon: 0.010ms * simple-line: 0.008ms * triangle: 0.020ms * * // mutate=false (using geometry/feature) * geometry x 1,524,640 ops/sec ±4.60% (74 runs sampled) * multiline x 1,511,608 ops/sec ±8.79% (72 runs sampled) * multipoint x 382,429 ops/sec ±3.56% (84 runs sampled) * multipolygon x 808,277 ops/sec ±2.84% (82 runs sampled) * point x 14,675,464 ops/sec ±4.42% (80 runs sampled) * polygon-with-hole x 1,493,507 ops/sec ±5.53% (72 runs sampled) * polygon x 2,386,278 ops/sec ±1.27% (86 runs sampled) * simple-line x 4,195,499 ops/sec ±2.88% (86 runs sampled) * triangle x 2,254,753 ops/sec ±1.10% (88 runs sampled) * * // mutate=false (using @turf/clone) * geometry x 202,410 ops/sec ±1.43% (88 runs sampled) * multiline x 235,421 ops/sec ±3.48% (86 runs sampled) * multipoint x 280,757 ops/sec ±1.59% (87 runs sampled) * multipolygon x 127,353 ops/sec ±1.35% (88 runs sampled) * point x 18,233,987 ops/sec ±1.34% (86 runs sampled) * polygon-with-hole x 199,203 ops/sec ±2.61% (84 runs sampled) * polygon x 355,616 ops/sec ±1.58% (86 runs sampled) * simple-line x 515,430 ops/sec ±2.40% (83 runs sampled) * triangle x 286,315 ops/sec ±1.64% (86 runs sampled) * * // mutate=false (using JSON.parse + JSON.stringify) * geometry x 93,681 ops/sec ±7.66% (75 runs sampled) * multiline x 112,836 ops/sec ±4.60% (82 runs sampled) * multipoint x 113,937 ops/sec ±1.09% (90 runs sampled) * multipolygon x 71,131 ops/sec ±1.32% (90 runs sampled) * point x 18,181,612 ops/sec ±1.36% (91 runs sampled) * polygon-with-hole x 100,011 ops/sec ±1.14% (85 runs sampled) * polygon x 154,331 ops/sec ±1.31% (89 runs sampled) * simple-line x 193,304 ops/sec ±1.33% (90 runs sampled) * triangle x 130,921 ops/sec ±3.37% (87 runs sampled) * * // mutate=true * geometry x 2,016,365 ops/sec ±1.83% (85 runs sampled) * multiline x 2,266,787 ops/sec ±3.69% (79 runs sampled) * multipoint x 411,246 ops/sec ±0.81% (89 runs sampled) * multipolygon x 1,011,846 ops/sec ±1.34% (85 runs sampled) * point x 17,635,961 ops/sec ±1.47% (89 runs sampled) * polygon-with-hole x 2,110,166 ops/sec ±1.59% (89 runs sampled) * polygon x 2,887,298 ops/sec ±1.75% (86 runs sampled) * simple-line x 7,109,682 ops/sec ±1.52% (87 runs sampled) * triangle x 3,116,940 ops/sec ±0.71% (87 runs sampled) */ const suite = new Benchmark.Suite("turf-clean-coords"); glob .sync(path.join(__dirname, "test", "in", "*.geojson")) .forEach((filepath) => { const { name } = path.parse(filepath); const geojson = loadJsonFileSync(filepath); console.time(name); cleanCoords(geojson); console.timeEnd(name); suite.add(name, () => cleanCoords(geojson, true)); }); suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-clean-coords/index.ts ================================================ import { Position } from "geojson"; import { feature } from "@turf/helpers"; import { getCoords, getType } from "@turf/invariant"; import { booleanPointOnLine } from "@turf/boolean-point-on-line"; import { lineString } from "@turf/helpers"; // To-Do => Improve Typescript GeoJSON handling /** * Removes redundant coordinates from any GeoJSON Geometry. * * @function * @param {Geometry|Feature} geojson Feature or Geometry * @param {Object} [options={}] Optional parameters * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated * @returns {Geometry|Feature} the cleaned input Feature/Geometry * @example * var line = turf.lineString([[0, 0], [0, 2], [0, 5], [0, 8], [0, 8], [0, 10]]); * var multiPoint = turf.multiPoint([[0, 0], [0, 0], [2, 2]]); * * turf.cleanCoords(line).geometry.coordinates; * //= [[0, 0], [0, 10]] * * turf.cleanCoords(multiPoint).geometry.coordinates; * //= [[0, 0], [2, 2]] */ function cleanCoords( geojson: any, options: { mutate?: boolean; } = {} ) { // Backwards compatible with v4.0 var mutate = typeof options === "object" ? options.mutate : options; if (!geojson) throw new Error("geojson is required"); var type = getType(geojson); // Store new "clean" points in this Array var newCoords = []; switch (type) { case "LineString": newCoords = cleanLine(geojson, type); break; case "MultiLineString": case "Polygon": getCoords(geojson).forEach(function (line) { newCoords.push(cleanLine(line, type)); }); break; case "MultiPolygon": getCoords(geojson).forEach(function (polygons: any) { var polyPoints: Position[] = []; polygons.forEach(function (ring: Position[]) { polyPoints.push(cleanLine(ring, type)); }); newCoords.push(polyPoints); }); break; case "Point": return geojson; case "MultiPoint": var existing: Record = {}; getCoords(geojson).forEach(function (coord: any) { var key = coord.join("-"); if (!Object.prototype.hasOwnProperty.call(existing, key)) { newCoords.push(coord); existing[key] = true; } }); break; default: throw new Error(type + " geometry not supported"); } // Support input mutation if (geojson.coordinates) { if (mutate === true) { geojson.coordinates = newCoords; return geojson; } return { type: type, coordinates: newCoords }; } else { if (mutate === true) { geojson.geometry.coordinates = newCoords; return geojson; } return feature({ type: type, coordinates: newCoords }, geojson.properties, { bbox: geojson.bbox, id: geojson.id, }); } } /** * Clean Coords * * @private * @param {Array|LineString} line Line * @param {string} type Type of geometry * @returns {Array} Cleaned coordinates */ function cleanLine(line: Position[], type: string) { const points = getCoords(line); // handle "clean" segment if (points.length === 2 && !equals(points[0], points[1])) return points; const newPoints = []; // Segments based approach. With initial segment a-b, keep comparing to a // longer segment a-c and as long as b is still on a-c, b is a redundant // point. let a = 0, b = 1, c = 2; // Guaranteed we'll use the first point. newPoints.push(points[a]); // While there is still room to extend the segment ... while (c < points.length) { if (booleanPointOnLine(points[b], lineString([points[a], points[c]]))) { // b is on a-c, so we can discard point b, and extend a-b to be the same // as a-c as the basis for comparison during the next iteration. b = c; } else { // b is NOT on a-c, suggesting a-c is not an extension of a-b. Commit a-b // as a necessary segment. newPoints.push(points[b]); // Make our a-b for the next iteration start from the end of the segment // that was just locked in i.e. next a-b should be the current b-(b+1). a = b; b++; c = b; } // Plan to look at the next point during the next iteration. c++; } // No remaining points, so commit the current a-b segment. newPoints.push(points[b]); if (type === "Polygon" || type === "MultiPolygon") { // For polygons need to make sure the start / end point wasn't one of the // points that needed to be cleaned. // https://github.com/Turfjs/turf/issues/2406 // For points [a, b, c, ..., z, a] // if a is on line b-z, it too can be removed. New array becomes // [b, c, ..., z, b] if ( booleanPointOnLine( newPoints[0], lineString([newPoints[1], newPoints[newPoints.length - 2]]) ) ) { newPoints.shift(); // Discard starting point. newPoints.pop(); // Discard closing point. newPoints.push(newPoints[0]); // Duplicate the new closing point to end of array. } // (Multi)Polygons must have at least 4 points and be closed. if (newPoints.length < 4) { throw new Error("invalid polygon, fewer than 4 points"); } if (!equals(newPoints[0], newPoints[newPoints.length - 1])) { throw new Error("invalid polygon, first and last points not equal"); } } return newPoints; } /** * Compares two points and returns if they are equals * * @private * @param {Position} pt1 point * @param {Position} pt2 point * @returns {boolean} true if they are equals */ function equals(pt1: Position, pt2: Position) { return pt1[0] === pt2[0] && pt1[1] === pt2[1]; } export { cleanCoords }; export default cleanCoords; ================================================ FILE: packages/turf-clean-coords/package.json ================================================ { "name": "@turf/clean-coords", "version": "7.3.4", "description": "Removes redundant coordinates from a GeoJSON Geometry.", "author": "Turf Authors", "contributors": [ "Stefano Borghi <@stebogit>", "James Beard <@smallsaucepan>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "gis", "clean-coords" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "geojson-equality-ts": "^1.0.2", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/boolean-point-on-line": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-clean-coords/test/in/clean-segment.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [2, 2] ] } } ================================================ FILE: packages/turf-clean-coords/test/in/closed-linestring.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [1, 1], [0, 0] ] } } ================================================ FILE: packages/turf-clean-coords/test/in/geometry.geojson ================================================ { "type": "Polygon", "coordinates": [ [ [0, 0], [0, 5], [0, 10], [10, 10], [10, 0], [5, 0], [5, 0], [0, 0] ], [ [1, 5], [4.5, 5], [4.5, 7], [4.5, 8.5], [1, 8.5], [1, 7], [1, 5] ] ] } ================================================ FILE: packages/turf-clean-coords/test/in/line-3-coords.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [0, 0], [0, 2] ] } } ================================================ FILE: packages/turf-clean-coords/test/in/multiline.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [0, 0], [0, 2], [0, 5], [0, 8], [0, 10], [0, 10] ], [ [1, 1], [2, 2], [3, 3], [4, 4], [5, 5], [6, 6] ] ] } } ================================================ FILE: packages/turf-clean-coords/test/in/multipoint.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [14.765625, 26.194876675795218], [8.61328125, 23.483400654325642], [17.75390625, 24.926294766395593] ] } } ================================================ FILE: packages/turf-clean-coords/test/in/multipolygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [0, 0], [5, 0], [5, 0], [10, 0], [10, 10], [0, 10], [0, 5], [0, 0] ], [ [1, 5], [1, 7], [1, 8.5], [4.5, 8.5], [4.5, 7], [4.5, 5], [1, 5] ] ], [ [ [11, 11], [11.5, 11.5], [12, 12], [12, 11], [11.5, 11], [11, 11], [11, 11] ] ] ] } } ================================================ FILE: packages/turf-clean-coords/test/in/point.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [14.765625, 26.194876675795218] } } ================================================ FILE: packages/turf-clean-coords/test/in/polygon-with-hole.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [0, 5], [0, 10], [10, 10], [10, 0], [5, 0], [5, 0], [0, 0] ], [ [1, 5], [4.5, 5], [4.5, 7], [4.5, 8.5], [1, 8.5], [1, 7], [1, 5] ] ] } } ================================================ FILE: packages/turf-clean-coords/test/in/polygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [0, 5], [0, 10], [10, 10], [10, 0], [5, 0], [0, 0], [0, 0] ] ] } } ================================================ FILE: packages/turf-clean-coords/test/in/segment.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [1, 1], [2, 2] ] } } ================================================ FILE: packages/turf-clean-coords/test/in/simple-line.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [0, 2], [0, 5], [0, 8], [0, 10], [0, 10] ] } } ================================================ FILE: packages/turf-clean-coords/test/in/triangle.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [1, 1], [2, 2], [3, 3], [4, 4], [4, 3], [4, 0], [3, 0], [1, 0], [0, 0], [0, 0] ] ] } } ================================================ FILE: packages/turf-clean-coords/test/in/triplicate-issue1255.geojson ================================================ { "type": "Polygon", "coordinates": [ [ [0, 0], [2, 2], [3, 30], [3, 30], [3, 30], [4, 4], [0, 0] ] ] } ================================================ FILE: packages/turf-clean-coords/test/out/clean-segment.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [2, 2] ] } } ================================================ FILE: packages/turf-clean-coords/test/out/closed-linestring.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [1, 1], [0, 0] ] } } ================================================ FILE: packages/turf-clean-coords/test/out/geometry.geojson ================================================ { "type": "Polygon", "coordinates": [ [ [0, 0], [0, 10], [10, 10], [10, 0], [0, 0] ], [ [1, 5], [4.5, 5], [4.5, 8.5], [1, 8.5], [1, 5] ] ] } ================================================ FILE: packages/turf-clean-coords/test/out/line-3-coords.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [0, 2] ] } } ================================================ FILE: packages/turf-clean-coords/test/out/multiline.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [0, 0], [0, 10] ], [ [1, 1], [6, 6] ] ] } } ================================================ FILE: packages/turf-clean-coords/test/out/multipoint.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [14.765625, 26.194876675795218], [8.61328125, 23.483400654325642], [17.75390625, 24.926294766395593] ] } } ================================================ FILE: packages/turf-clean-coords/test/out/multipolygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [0, 0], [10, 0], [10, 10], [0, 10], [0, 0] ], [ [1, 5], [1, 8.5], [4.5, 8.5], [4.5, 5], [1, 5] ] ], [ [ [11, 11], [12, 12], [12, 11], [11, 11] ] ] ] } } ================================================ FILE: packages/turf-clean-coords/test/out/point.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [14.765625, 26.194876675795218] } } ================================================ FILE: packages/turf-clean-coords/test/out/polygon-with-hole.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [0, 10], [10, 10], [10, 0], [0, 0] ], [ [1, 5], [4.5, 5], [4.5, 8.5], [1, 8.5], [1, 5] ] ] } } ================================================ FILE: packages/turf-clean-coords/test/out/polygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [0, 10], [10, 10], [10, 0], [0, 0] ] ] } } ================================================ FILE: packages/turf-clean-coords/test/out/segment.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [2, 2] ] } } ================================================ FILE: packages/turf-clean-coords/test/out/simple-line.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [0, 10] ] } } ================================================ FILE: packages/turf-clean-coords/test/out/triangle.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [4, 4], [4, 0], [0, 0] ] ] } } ================================================ FILE: packages/turf-clean-coords/test/out/triplicate-issue1255.geojson ================================================ { "type": "Polygon", "coordinates": [ [ [0, 0], [2, 2], [3, 30], [4, 4], [0, 0] ] ] } ================================================ FILE: packages/turf-clean-coords/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { geojsonEquality } from "geojson-equality-ts"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { truncate } from "@turf/truncate"; import { point, multiPoint, lineString, multiPolygon, polygon, } from "@turf/helpers"; import { writeJsonFileSync } from "write-json-file"; import { cleanCoords } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("turf-clean-coords", (t) => { fixtures.forEach((fixture) => { const filename = fixture.filename; const name = fixture.name; const geojson = fixture.geojson; const results = cleanCoords(geojson); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.true( geojsonEquality(results, loadJsonFileSync(directories.out + filename)), name ); }); t.end(); }); test("turf-clean-coords -- extras", (t) => { t.equal(cleanCoords(point([0, 0])).geometry.coordinates.length, 2, "point"); t.equal( cleanCoords( lineString([ [0, 0], [1, 1], [2, 2], ]) ).geometry.coordinates.length, 2, "lineString" ); t.equal( cleanCoords( polygon([ [ [0, 0], [1, 1], [2, 2], [0, 2], [0, 0], ], ]) ).geometry.coordinates[0].length, 4, "polygon" ); t.equal( cleanCoords( multiPoint([ [0, 0], [0, 0], [2, 2], ]) ).geometry.coordinates.length, 2, "multiPoint" ); t.end(); }); test("turf-clean-coords -- truncate", (t) => { t.equal( cleanCoords( truncate( lineString([ [0, 0], [1.1, 1.123], [2.12, 2.32], [3, 3], ]), { precision: 0 } ) ).geometry.coordinates.length, 2 ); t.end(); }); test("turf-clean-coords -- throws", (t) => { t.throws(() => cleanCoords(null), /geojson is required/, "missing geojson"); t.end(); }); test("turf-clean-coords -- prevent input mutation", (t) => { const line = lineString( [ [0, 0], [1, 1], [2, 2], ], { foo: "bar" } ); const lineBefore = JSON.parse(JSON.stringify(line)); cleanCoords(line); t.deepEqual(lineBefore, line, "line should NOT be mutated"); const multiPoly = multiPolygon( [ [ [ [0, 0], [1, 1], [2, 2], [2, 0], [0, 0], ], ], [ [ [0, 0], [0, 5], [5, 5], [5, 5], [5, 0], [0, 0], ], ], ], { hello: "world" } ); const multiPolyBefore = JSON.parse(JSON.stringify(multiPoly)); cleanCoords(multiPoly); t.deepEqual(multiPolyBefore, multiPoly, "multiPolygon should NOT be mutated"); t.end(); }); test("turf-clean-coords - north south lines - issue 2305", (t) => { // From https://github.com/Turfjs/turf/issues/2305#issue-1287442870 t.deepEqual( cleanCoords( lineString([ [0, 0], [0, 1], [0, 0], ]) ), lineString([ [0, 0], [0, 1], [0, 0], ]), "northern turnaround point is kept" ); // From https://github.com/Turfjs/turf/issues/2305#issue-1287442870 t.deepEqual( cleanCoords( lineString([ [0, 0], [0, 0], [0, 2], [0, 2], [0, 0], ]) ), lineString([ [0, 0], [0, 2], [0, 0], ]), "northern turnaround point is kept" ); t.end(); }); test("turf-clean-coords - overly aggressive removal - issue 2740", (t) => { // Issue 2740 is cleanCoords was too aggresive at removing points. t.deepEqual( cleanCoords( lineString([ [0, 0], [0, 2], [0, 0], ]) ), lineString([ [0, 0], [0, 2], [0, 0], ]), "north-south retraced line turnaround point kept" ); t.deepEqual( cleanCoords( lineString([ [0, 0], [0, 1], [0, 2], [0, 3], [0, 0], ]) ), lineString([ [0, 0], [0, 3], [0, 0], ]), "north-south retraced line properly cleaned" ); t.deepEqual( cleanCoords( lineString([ [0, 0], [0, 1], [0, 2], [0, -2], [0, -1], [0, 0], ]) ), lineString([ [0, 0], [0, 2], [0, -2], [0, 0], ]), "north-south retraced past origin and back to start line properly cleaned" ); t.end(); }); test("turf-clean-coords - start point protected - issue 2406", (t) => { t.true( geojsonEquality( cleanCoords( polygon([ [ [1, 3], // a [3, 3], // b [3, 1], // c [3, -3], // d [-3, -3], // e [-3, 3], // f [1, 3], // a ], ]) ), polygon([ [ [-3, 3], // f [3, 3], // b [3, -3], // d [-3, -3], // e [-3, 3], // f ], ]) ), "polygon start point (a) was also removed" ); t.end(); }); test("turf-clean-coords - multipolygon - issue #918", (t) => { // Copied from turf-simplify as (at heart) it's cleanCoords that's being // tested here. // simplify hangs on this input #918 t.throws( () => cleanCoords( multiPolygon([ [ [ [0, 90], [0, 90], [0, 90], [0, 90], [0, 90], [0, 90], [0, 90], [0, 90], [0, 90], [0, 90], [0, 90], ], ], ]) ), /invalid polygon/, "invalid polygon" ); t.end(); }); ================================================ FILE: packages/turf-clean-coords/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-clean-coords/types.ts ================================================ import { multiPoint } from "@turf/helpers"; import { cleanCoords } from "./index.js"; // Fixtures const multiPt = multiPoint([ [0, 0], [0, 0], [2, 2], ]); // Feature cleanCoords(multiPt).geometry; cleanCoords(multiPt).properties; // Geometry cleanCoords(multiPt.geometry).coordinates; cleanCoords(multiPt.geometry).type; // Input mutation cleanCoords(multiPt.geometry, { mutate: true }); ================================================ FILE: packages/turf-clone/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-clone/README.md ================================================ # @turf/clone ## clone Returns a cloned copy of the passed GeoJSON Object, including possible 'Foreign Members'. \~3-5x faster than the common JSON.parse + JSON.stringify combo method. ### Parameters * `geojson` **[GeoJSON][1]** GeoJSON Object ### Examples ```javascript var line = turf.lineString([[-74, 40], [-78, 42], [-82, 35]], {color: 'red'}); var lineCloned = turf.clone(line); ``` Returns **[GeoJSON][1]** cloned GeoJSON Object [1]: https://tools.ietf.org/html/rfc7946#section-3 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/clone ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-clone/bench.ts ================================================ import Benchmark from "benchmark"; import { point, lineString, polygon, featureCollection } from "@turf/helpers"; import { clone } from "./index.js"; const fixtures = [ point([0, 20]), lineString([ [10, 40], [0, 20], ]), polygon([ [ [10, 40], [0, 20], [20, 0], [10, 40], ], ]), featureCollection([ point([0, 20]), lineString([ [10, 40], [0, 20], ]), polygon([ [ [10, 40], [0, 20], [20, 0], [10, 40], ], ]), ]), ]; /** * Benchmark Results * * Point: 0.380ms * LineString: 1.302ms * Polygon: 1.402ms * FeatureCollection: 0.293ms * Point x 1,889,028 ops/sec ±1.50% (90 runs sampled) * Point -- JSON.parse + JSON.stringify x 363,861 ops/sec ±1.02% (89 runs sampled) * LineString x 932,348 ops/sec ±1.34% (84 runs sampled) * LineString -- JSON.parse + JSON.stringify x 296,087 ops/sec ±1.07% (92 runs sampled) * Polygon x 577,070 ops/sec ±1.24% (86 runs sampled) * Polygon -- JSON.parse + JSON.stringify x 228,373 ops/sec ±1.03% (88 runs sampled) * FeatureCollection x 248,164 ops/sec ±1.50% (84 runs sampled) * FeatureCollection -- JSON.parse + JSON.stringify x 92,873 ops/sec ±0.91% (88 runs sampled) */ const suite = new Benchmark.Suite("turf-clone"); for (const fixture of fixtures) { const name = fixture.geometry ? fixture.geometry.type : fixture.type; console.time(name); clone(fixture, true); console.timeEnd(name); suite.add(name, () => clone(fixture)); suite.add(name + " -- JSON.parse + JSON.stringify", () => JSON.parse(JSON.stringify(fixture)) ); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-clone/index.ts ================================================ import { Feature, GeoJsonProperties } from "geojson"; import { AllGeoJSON } from "@turf/helpers"; /** * Returns a cloned copy of the passed GeoJSON Object, including possible 'Foreign Members'. * ~3-5x faster than the common JSON.parse + JSON.stringify combo method. * * @function * @param {GeoJSON} geojson GeoJSON Object * @returns {GeoJSON} cloned GeoJSON Object * @example * var line = turf.lineString([[-74, 40], [-78, 42], [-82, 35]], {color: 'red'}); * * var lineCloned = turf.clone(line); */ function clone(geojson: T): T { if (!geojson) { throw new Error("geojson is required"); } switch (geojson.type) { case "Feature": return cloneFeature(geojson); case "FeatureCollection": return cloneFeatureCollection(geojson); case "Point": case "LineString": case "Polygon": case "MultiPoint": case "MultiLineString": case "MultiPolygon": case "GeometryCollection": return cloneGeometry(geojson); default: throw new Error("unknown GeoJSON type"); } } /** * Clone Feature * * @private * @param {Feature} geojson GeoJSON Feature * @returns {Feature} cloned Feature */ function cloneFeature(geojson: any) { const cloned: any = { type: "Feature" }; // Preserve Foreign Members Object.keys(geojson).forEach((key) => { switch (key) { case "type": case "properties": case "geometry": return; default: cloned[key] = geojson[key]; } }); // Add properties & geometry last cloned.properties = cloneProperties(geojson.properties); if (geojson.geometry == null) { cloned.geometry = null; } else { cloned.geometry = cloneGeometry(geojson.geometry); } return cloned; } /** * Clone Properties * * @private * @param {Object} properties GeoJSON Properties * @returns {Object} cloned Properties */ function cloneProperties(properties: GeoJsonProperties) { const cloned: { [key: string]: any } = {}; if (!properties) { return cloned; } Object.keys(properties).forEach((key) => { const value = properties[key]; if (typeof value === "object") { if (value === null) { // handle null cloned[key] = null; } else if (Array.isArray(value)) { // handle Array cloned[key] = value.map((item) => { return item; }); } else { // handle generic Object cloned[key] = cloneProperties(value); } } else { cloned[key] = value; } }); return cloned; } /** * Clone Feature Collection * * @private * @param {FeatureCollection} geojson GeoJSON Feature Collection * @returns {FeatureCollection} cloned Feature Collection */ function cloneFeatureCollection(geojson: any) { const cloned: any = { type: "FeatureCollection" }; // Preserve Foreign Members Object.keys(geojson).forEach((key) => { switch (key) { case "type": case "features": return; default: cloned[key] = geojson[key]; } }); // Add features cloned.features = geojson.features.map((feature: Feature) => { return cloneFeature(feature); }); return cloned; } /** * Clone Geometry * * @private * @param {Geometry} geometry GeoJSON Geometry * @returns {Geometry} cloned Geometry */ function cloneGeometry(geometry: any) { const geom: any = { type: geometry.type }; if (geometry.bbox) { geom.bbox = geometry.bbox; } if (geometry.type === "GeometryCollection") { geom.geometries = geometry.geometries.map((g: any) => { return cloneGeometry(g); }); return geom; } geom.coordinates = deepSlice(geometry.coordinates); return geom; } /** * Deep Slice coordinates * * @private * @param {Coordinates} coords Coordinates * @returns {Coordinates} all coordinates sliced */ function deepSlice(coords: C): C { const cloned: any = coords; if (typeof cloned[0] !== "object") { return cloned.slice(); } return cloned.map((coord: any) => { return deepSlice(coord); }); } export { clone, cloneProperties }; export default clone; ================================================ FILE: packages/turf-clone/package.json ================================================ { "name": "@turf/clone", "version": "7.3.4", "description": "Returns a cloned copy of the passed GeoJSON Object, including possible 'Foreign Members'.", "author": "Turf Authors", "contributors": [ "Denis Carriere <@DenisCarriere>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "clone" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/meta": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-clone/test.ts ================================================ import test from "tape"; import { point, lineString, polygon, feature, featureCollection, geometryCollection, } from "@turf/helpers"; import { coordEach } from "@turf/meta"; import { clone } from "./index.js"; test("turf-clone", (t) => { // Define Features const pt = point([0, 20]); const line = lineString([ [10, 40], [0, 20], ]); const poly = polygon([ [ [10, 40], [0, 20], [20, 0], [10, 40], ], ]); const fc = featureCollection([ point([0, 20]), lineString([ [10, 40], [0, 20], ]), polygon([ [ [10, 40], [0, 20], [20, 0], [10, 40], ], ]), ]); const gc = geometryCollection([ point([0, 20]).geometry, lineString([ [10, 40], [0, 20], ]).geometry, polygon([ [ [10, 40], [0, 20], [20, 0], [10, 40], ], ]).geometry, ]).geometry; // Clone Features const ptCloned = clone(pt); const lineCloned = clone(line); const polyCloned = clone(poly, true); const fcCloned = clone(fc); const gcCloned = clone(gc); // Apply Mutation ptCloned.geometry.coordinates.reverse(); lineCloned.geometry.coordinates.reverse(); polyCloned.geometry.coordinates.reverse(); coordEach(fcCloned, (coord) => coord.reverse()); coordEach(gcCloned, (coord) => coord.reverse()); // Original Geometries should not be mutated t.deepEqual(pt.geometry.coordinates, [0, 20], "point"); t.deepEqual( line.geometry.coordinates, [ [10, 40], [0, 20], ], "lineString" ); t.deepEqual( poly.geometry.coordinates, [ [ [10, 40], [0, 20], [20, 0], [10, 40], ], ], "polygon" ); // Feature Collection t.deepEqual(fc.features[0].geometry.coordinates, [0, 20], "fc - point"); t.deepEqual( fc.features[1].geometry.coordinates, [ [10, 40], [0, 20], ], "fc - lineString" ); t.deepEqual( fc.features[2].geometry.coordinates, [ [ [10, 40], [0, 20], [20, 0], [10, 40], ], ], "fc - polygon" ); // Geometry Collection t.deepEqual(gc.geometries[0].coordinates, [0, 20], "gc - point"); t.deepEqual( gc.geometries[1].coordinates, [ [10, 40], [0, 20], ], "gc - lineString" ); t.deepEqual( gc.geometries[2].coordinates, [ [ [10, 40], [0, 20], [20, 0], [10, 40], ], ], "gc - polygon" ); t.end(); }); test("turf-clone -- throws", (t) => { t.throws(() => clone(), /geojson is required/); t.end(); }); test("turf-clone -- optional properties", (t) => { const pt = point([0, 20]); pt.properties = undefined; pt.id = 300; pt.bbox = [0, 20, 0, 20]; const ptCloned = clone(pt); t.deepEqual(ptCloned.bbox, [0, 20, 0, 20]); t.equal(ptCloned.id, 300); t.end(); }); test("turf-clone -- Geometry Objects", (t) => { const pt = point([0, 20]).geometry; const line = lineString([ [10, 40], [0, 20], ]).geometry; const poly = polygon([ [ [10, 40], [0, 20], [20, 0], [10, 40], ], ]).geometry; const ptCloned = clone(pt); const lineCloned = clone(line); const polyCloned = clone(poly); ptCloned.coordinates.reverse(); lineCloned.coordinates.reverse(); polyCloned.coordinates.reverse(); t.deepEqual(pt.coordinates, [0, 20], "geometry point"); t.deepEqual( line.coordinates, [ [10, 40], [0, 20], ], "geometry line" ); t.deepEqual( poly.coordinates, [ [ [10, 40], [0, 20], [20, 0], [10, 40], ], ], "geometry polygon" ); t.end(); }); test("turf-clone -- Preserve Foreign Members -- Feature", (t) => { const properties = { foo: "bar" }; const bbox = [0, 20, 0, 20]; const id = 12345; const pt = point([0, 20], properties, { bbox, id }); pt.custom = "foreign members"; const cloned = clone(pt); t.equal(cloned.id, id); t.equal(cloned.custom, pt.custom); t.deepEqual(cloned.bbox, bbox); t.deepEqual(cloned.properties, properties); t.end(); }); test("turf-clone -- Preserve Foreign Members -- FeatureCollection", (t) => { const properties = { foo: "bar" }; const bbox = [0, 20, 0, 20]; const id = 12345; const fc = featureCollection([point([0, 20])], { bbox, id }); fc.custom = "foreign members"; fc.properties = properties; const cloned = clone(fc); t.equal(cloned.id, id); t.equal(cloned.custom, fc.custom); t.deepEqual(cloned.bbox, bbox); t.deepEqual(cloned.properties, properties); t.end(); }); test("turf-clone -- Preserve all properties -- Feature", (t) => { const id = 12345; const bbox = [0, 20, 0, 20]; const properties = { foo: "bar", object: { property: 1 }, array: [0, 1, 2], number: 1, nullity: null, boolean: true, }; const pt = point([0, 20], properties, { bbox, id }); pt.hello = "world"; // Foreign member // Clone and mutate const cloned = clone(pt); // Clone properly translated all properties t.equal(cloned.hello, "world"); t.equal(cloned.properties.foo, "bar"); t.equal(cloned.id, 12345); t.deepEqual(cloned.bbox, [0, 20, 0, 20]); t.equal(cloned.properties.object.property, 1); t.deepEqual(cloned.properties.array, [0, 1, 2]); t.equal(cloned.properties.number, 1); t.equal(cloned.properties.nullity, null); t.equal(cloned.properties.boolean, true); // Mutate clone properties cloned["hello"] = "universe"; cloned.properties["foo"] = "foo"; cloned["id"] = 54321; cloned["bbox"] = [30, 40, 30, 40]; cloned.properties.object["property"] = 2; cloned.properties.array[0] = 500; cloned.properties.number = -99; cloned.properties.boolean = false; // Test if original point hasn't been mutated t.equal(pt.hello, "world"); t.equal(pt.properties.foo, "bar"); t.equal(pt.id, 12345); t.deepEqual(pt.bbox, [0, 20, 0, 20]); t.equal(pt.properties.object.property, 1); t.deepEqual(pt.properties.array, [0, 1, 2]); t.equal(pt.properties.number, 1); t.equal(pt.properties.boolean, true); t.end(); }); test("turf-clone -- Preserve all properties -- FeatureCollection", (t) => { const bbox = [0, 20, 0, 20]; const id = 12345; const fc = featureCollection([point([0, 20])], { bbox, id }); fc.hello = "world"; // Foreign member // Clone and mutate const cloned = clone(fc); cloned["hello"] = "universe"; cloned["id"] = 54321; cloned["bbox"] = [30, 40, 30, 40]; t.equal(fc.hello, "world"); t.equal(fc.id, 12345); t.deepEqual(fc.bbox, [0, 20, 0, 20]); t.end(); }); test("turf-clone -- Feature with null geometry", (t) => { const fc = featureCollection([ { type: "Feature", geometry: { type: "Point", coordinates: [102.0, 0.5] }, properties: { prop0: "value0" }, }, { type: "Feature", geometry: null, properties: { prop0: "value1" } }, ]); // Clone const cloned = clone(fc); t.deepEqual(fc, cloned); t.end(); }); test("turf-clone -- Feature with property called 'length', issue #1621", (t) => { const f = feature( { type: "Point", coordinates: [0, 0] }, { processed: { length: { orig: 123.456, opti: 100.0, }, }, } ); // Clone const cloned = clone(f); t.deepEqual(f, cloned, "cloned feature should be deeply equal"); t.equal( cloned.properties.processed.length.orig, 123.456, "'orig' property should be preserved on 'processed.length' element" ); t.end(); }); ================================================ FILE: packages/turf-clone/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-clone/types.ts ================================================ import { Feature, LineString, Point } from "geojson"; import { lineString, point } from "@turf/helpers"; import { clone } from "./index.js"; const pt = point([0, 20]); const ptCloned: Feature = clone(pt); const line = lineString([ [0, 20], [10, 10], ]).geometry; const lineCloned: LineString = clone(line); ================================================ FILE: packages/turf-clusters/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-clusters/README.md ================================================ # @turf/clusters ## getCluster Get Cluster ### Parameters * `geojson` **[FeatureCollection][1]** GeoJSON Features * `filter` **any** Filter used on GeoJSON properties to get Cluster ### Examples ```javascript var geojson = turf.featureCollection([ turf.point([0, 0], {'marker-symbol': 'circle'}), turf.point([2, 4], {'marker-symbol': 'star'}), turf.point([3, 6], {'marker-symbol': 'star'}), turf.point([5, 1], {'marker-symbol': 'square'}), turf.point([4, 2], {'marker-symbol': 'circle'}) ]); // Create a cluster using K-Means (adds `cluster` to GeoJSON properties) var clustered = turf.clustersKmeans(geojson); // Retrieve first cluster (0) var cluster = turf.getCluster(clustered, {cluster: 0}); //= cluster // Retrieve cluster based on custom properties turf.getCluster(clustered, {'marker-symbol': 'circle'}).length; //= 2 turf.getCluster(clustered, {'marker-symbol': 'square'}).length; //= 1 ``` Returns **[FeatureCollection][1]** Single Cluster filtered by GeoJSON Properties ## clusterEachCallback Callback for clusterEach Type: [Function][2] ### Parameters * `cluster` **[FeatureCollection][1]?** The current cluster being processed. * `clusterValue` **any?** Value used to create cluster being processed. * `currentIndex` **[number][3]?** The index of the current element being processed in the array.Starts at index 0 Returns **void** ## clusterEach clusterEach ### Parameters * `geojson` **[FeatureCollection][1]** GeoJSON Features * `property` **([string][4] | [number][3])** GeoJSON property key/value used to create clusters * `callback` **[clusterEachCallback][5]** a method that takes (cluster, clusterValue, currentIndex) ### Examples ```javascript var geojson = turf.featureCollection([ turf.point([0, 0]), turf.point([2, 4]), turf.point([3, 6]), turf.point([5, 1]), turf.point([4, 2]) ]); // Create a cluster using K-Means (adds `cluster` to GeoJSON properties) var clustered = turf.clustersKmeans(geojson); // Iterate over each cluster turf.clusterEach(clustered, 'cluster', function (cluster, clusterValue, currentIndex) { //= cluster //= clusterValue //= currentIndex }) // Calculate the total number of clusters var total = 0 turf.clusterEach(clustered, 'cluster', function () { total++; }); // Create an Array of all the values retrieved from the 'cluster' property var values = [] turf.clusterEach(clustered, 'cluster', function (cluster, clusterValue) { values.push(clusterValue); }); ``` Returns **void** ## clusterReduceCallback Callback for clusterReduce The first time the callback function is called, the values provided as arguments depend on whether the reduce method has an initialValue argument. If an initialValue is provided to the reduce method: * The previousValue argument is initialValue. * The currentValue argument is the value of the first element present in the array. If an initialValue is not provided: * The previousValue argument is the value of the first element present in the array. * The currentValue argument is the value of the second element present in the array. Type: [Function][2] ### Parameters * `previousValue` **any?** The accumulated value previously returned in the last invocation of the callback, or initialValue, if supplied. * `cluster` **[FeatureCollection][1]?** The current cluster being processed. * `clusterValue` **any?** Value used to create cluster being processed. * `currentIndex` **[number][3]?** The index of the current element being processed in the array. Starts at index 0, if an initialValue is provided, and at index 1 otherwise. Returns **void** ## clusterReduce Reduce clusters in GeoJSON Features, similar to Array.reduce() ### Parameters * `geojson` **[FeatureCollection][1]** GeoJSON Features * `property` **([string][4] | [number][3])** GeoJSON property key/value used to create clusters * `callback` **[clusterReduceCallback][6]** a method that takes (previousValue, cluster, clusterValue, currentIndex) * `initialValue` **any?** Value to use as the first argument to the first call of the callback. ### Examples ```javascript var geojson = turf.featureCollection([ turf.point([0, 0]), turf.point([2, 4]), turf.point([3, 6]), turf.point([5, 1]), turf.point([4, 2]) ]); // Create a cluster using K-Means (adds `cluster` to GeoJSON properties) var clustered = turf.clustersKmeans(geojson); // Iterate over each cluster and perform a calculation var initialValue = 0 turf.clusterReduce(clustered, 'cluster', function (previousValue, cluster, clusterValue, currentIndex) { //=previousValue //=cluster //=clusterValue //=currentIndex return previousValue++; }, initialValue); // Calculate the total number of clusters var total = turf.clusterReduce(clustered, 'cluster', function (previousValue) { return previousValue++; }, 0); // Create an Array of all the values retrieved from the 'cluster' property var values = turf.clusterReduce(clustered, 'cluster', function (previousValue, cluster, clusterValue) { return previousValue.concat(clusterValue); }, []); ``` Returns **any** The value that results from the reduction. [1]: https://tools.ietf.org/html/rfc7946#section-3.3 [2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/function [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String [5]: #clustereachcallback [6]: #clusterreducecallback --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/clusters ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-clusters/bench.ts ================================================ import Benchmark from "benchmark"; import { featureCollection, point } from "@turf/helpers"; import { getCluster, clusterEach, clusterReduce, propertiesContainsFilter, filterProperties, applyFilter, createBins, } from "./index.js"; const geojson = featureCollection([ point([0, 0], { cluster: 0 }), point([2, 4], { cluster: 1 }), point([3, 6], { cluster: 1 }), point([5, 1], { 0: "foo" }), point([4, 2], { bar: "foo" }), point([2, 4], {}), point([4, 3], undefined), ]); /** * Benchmark Results * * testing -- createBins x 1,909,730 ops/sec ±2.70% (83 runs sampled) * testing -- propertiesContainsFilter x 10,378,738 ops/sec ±2.63% (86 runs sampled) * testing -- filterProperties x 26,212,665 ops/sec ±2.49% (85 runs sampled) * testing -- applyFilter x 21,368,185 ops/sec ±2.71% (84 runs sampled) * getCluster -- string filter x 3,051,513 ops/sec ±1.83% (84 runs sampled) * getCluster -- object filter x 673,824 ops/sec ±2.20% (86 runs sampled) * getCluster -- aray filter x 2,284,972 ops/sec ±1.90% (86 runs sampled) * clusterEach x 890,683 ops/sec ±1.48% (87 runs sampled) * clusterReduce x 837,383 ops/sec ±1.93% (87 runs sampled) */ const suite = new Benchmark.Suite("turf-clusters"); // Testing Purposes suite .add("testing -- createBins", () => createBins(geojson, "cluster")) .add("testing -- propertiesContainsFilter", () => propertiesContainsFilter({ foo: "bar", cluster: 0 }, { cluster: 0 }) ) .add("testing -- filterProperties", () => filterProperties({ foo: "bar", cluster: 0 }, ["cluster"]) ) .add("testing -- applyFilter", () => applyFilter({ foo: "bar", cluster: 0 }, ["cluster"]) ); suite .add("getCluster -- string filter", () => getCluster(geojson, "cluster")) .add("getCluster -- object filter", () => getCluster(geojson, { cluster: 1 })) .add("getCluster -- aray filter", () => getCluster(geojson, ["cluster"])) .add("clusterEach", () => clusterEach(geojson, "cluster", (cluster) => { return cluster; }) ) .add("clusterReduce", () => clusterReduce(geojson, "cluster", (previousValue, cluster) => { return cluster; }) ) .on("cycle", (e) => console.log(String(e.target))) .run(); ================================================ FILE: packages/turf-clusters/index.ts ================================================ import { Feature, FeatureCollection, GeoJsonProperties, GeometryObject, } from "geojson"; import { featureEach } from "@turf/meta"; import { featureCollection } from "@turf/helpers"; /** * Get Cluster * * @function * @param {FeatureCollection} geojson GeoJSON Features * @param {*} filter Filter used on GeoJSON properties to get Cluster * @returns {FeatureCollection} Single Cluster filtered by GeoJSON Properties * @example * var geojson = turf.featureCollection([ * turf.point([0, 0], {'marker-symbol': 'circle'}), * turf.point([2, 4], {'marker-symbol': 'star'}), * turf.point([3, 6], {'marker-symbol': 'star'}), * turf.point([5, 1], {'marker-symbol': 'square'}), * turf.point([4, 2], {'marker-symbol': 'circle'}) * ]); * * // Create a cluster using K-Means (adds `cluster` to GeoJSON properties) * var clustered = turf.clustersKmeans(geojson); * * // Retrieve first cluster (0) * var cluster = turf.getCluster(clustered, {cluster: 0}); * //= cluster * * // Retrieve cluster based on custom properties * turf.getCluster(clustered, {'marker-symbol': 'circle'}).length; * //= 2 * turf.getCluster(clustered, {'marker-symbol': 'square'}).length; * //= 1 */ function getCluster< G extends GeometryObject, P extends GeoJsonProperties = GeoJsonProperties, >(geojson: FeatureCollection, filter: any): FeatureCollection { // Validation if (!geojson) throw new Error("geojson is required"); if (geojson.type !== "FeatureCollection") throw new Error("geojson must be a FeatureCollection"); if (filter === undefined || filter === null) throw new Error("filter is required"); // Filter Features var features: Feature[] = []; featureEach(geojson, function (feature) { if (applyFilter(feature.properties, filter)) features.push(feature); }); return featureCollection(features); } /** * Callback for clusterEach * * @callback clusterEachCallback * @param {FeatureCollection} [cluster] The current cluster being processed. * @param {any} [clusterValue] Value used to create cluster being processed. * @param {number} [currentIndex] The index of the current element being processed in the array.Starts at index 0 * @returns {void} */ /** * clusterEach * * @function * @param {FeatureCollection} geojson GeoJSON Features * @param {string|number} property GeoJSON property key/value used to create clusters * @param {clusterEachCallback} callback a method that takes (cluster, clusterValue, currentIndex) * @returns {void} * @example * var geojson = turf.featureCollection([ * turf.point([0, 0]), * turf.point([2, 4]), * turf.point([3, 6]), * turf.point([5, 1]), * turf.point([4, 2]) * ]); * * // Create a cluster using K-Means (adds `cluster` to GeoJSON properties) * var clustered = turf.clustersKmeans(geojson); * * // Iterate over each cluster * turf.clusterEach(clustered, 'cluster', function (cluster, clusterValue, currentIndex) { * //= cluster * //= clusterValue * //= currentIndex * }) * * // Calculate the total number of clusters * var total = 0 * turf.clusterEach(clustered, 'cluster', function () { * total++; * }); * * // Create an Array of all the values retrieved from the 'cluster' property * var values = [] * turf.clusterEach(clustered, 'cluster', function (cluster, clusterValue) { * values.push(clusterValue); * }); */ function clusterEach< G extends GeometryObject, P extends GeoJsonProperties = GeoJsonProperties, >( geojson: FeatureCollection, property: number | string, callback: ( cluster: FeatureCollection, clusterValue?: any, currentIndex?: number ) => void ): void { // Validation if (!geojson) throw new Error("geojson is required"); if (geojson.type !== "FeatureCollection") throw new Error("geojson must be a FeatureCollection"); if (property === undefined || property === null) throw new Error("property is required"); // Create clusters based on property values var bins = createBins(geojson, property); var values = Object.keys(bins); for (var index = 0; index < values.length; index++) { var value = values[index]; var bin = bins[value]; var features = []; for (var i = 0; i < bin.length; i++) { features.push(geojson.features[bin[i]]); } callback(featureCollection(features), value, index); } } /** * Callback for clusterReduce * * The first time the callback function is called, the values provided as arguments depend * on whether the reduce method has an initialValue argument. * * If an initialValue is provided to the reduce method: * - The previousValue argument is initialValue. * - The currentValue argument is the value of the first element present in the array. * * If an initialValue is not provided: * - The previousValue argument is the value of the first element present in the array. * - The currentValue argument is the value of the second element present in the array. * * @callback clusterReduceCallback * @param {*} [previousValue] The accumulated value previously returned in the last invocation * of the callback, or initialValue, if supplied. * @param {FeatureCollection} [cluster] The current cluster being processed. * @param {*} [clusterValue] Value used to create cluster being processed. * @param {number} [currentIndex] The index of the current element being processed in the * array. Starts at index 0, if an initialValue is provided, and at index 1 otherwise. * @returns {void} */ /** * Reduce clusters in GeoJSON Features, similar to Array.reduce() * * @function * @param {FeatureCollection} geojson GeoJSON Features * @param {string|number} property GeoJSON property key/value used to create clusters * @param {clusterReduceCallback} callback a method that takes (previousValue, cluster, clusterValue, currentIndex) * @param {any} [initialValue] Value to use as the first argument to the first call of the callback. * @returns {any} The value that results from the reduction. * @example * var geojson = turf.featureCollection([ * turf.point([0, 0]), * turf.point([2, 4]), * turf.point([3, 6]), * turf.point([5, 1]), * turf.point([4, 2]) * ]); * * // Create a cluster using K-Means (adds `cluster` to GeoJSON properties) * var clustered = turf.clustersKmeans(geojson); * * // Iterate over each cluster and perform a calculation * var initialValue = 0 * turf.clusterReduce(clustered, 'cluster', function (previousValue, cluster, clusterValue, currentIndex) { * //=previousValue * //=cluster * //=clusterValue * //=currentIndex * return previousValue++; * }, initialValue); * * // Calculate the total number of clusters * var total = turf.clusterReduce(clustered, 'cluster', function (previousValue) { * return previousValue++; * }, 0); * * // Create an Array of all the values retrieved from the 'cluster' property * var values = turf.clusterReduce(clustered, 'cluster', function (previousValue, cluster, clusterValue) { * return previousValue.concat(clusterValue); * }, []); */ function clusterReduce< G extends GeometryObject, P extends GeoJsonProperties = GeoJsonProperties, >( geojson: FeatureCollection, property: number | string, callback: ( previousValue: any | undefined, cluster: FeatureCollection, clusterValue?: any, currentIndex?: number ) => void, initialValue?: any ): void { var previousValue = initialValue; clusterEach( geojson, property, function (cluster, clusterValue, currentIndex) { if (currentIndex === 0 && initialValue === undefined) previousValue = cluster; else previousValue = callback( previousValue, cluster, clusterValue, currentIndex ); } ); return previousValue; } /** * Create Bins * * @private * @param {FeatureCollection} geojson GeoJSON Features * @param {string|number} property Property values are used to create bins * @returns {Object} bins with Feature IDs * @example * var geojson = turf.featureCollection([ * turf.point([0, 0], {cluster: 0, foo: 'null'}), * turf.point([2, 4], {cluster: 1, foo: 'bar'}), * turf.point([5, 1], {0: 'foo'}), * turf.point([3, 6], {cluster: 1}), * ]); * createBins(geojson, 'cluster'); * //= { '0': [ 0 ], '1': [ 1, 3 ] } */ function createBins( geojson: FeatureCollection, property: string | number ) { var bins: Record = {}; featureEach(geojson, function (feature, i) { var properties = feature.properties || {}; if (Object.prototype.hasOwnProperty.call(properties, String(property))) { var value = properties[property]; if (Object.prototype.hasOwnProperty.call(bins, value)) bins[value].push(i); else bins[value] = [i]; } }); return bins; } /** * Apply Filter * * @private * @param {*} properties Properties * @param {*} filter Filter * @returns {boolean} applied Filter to properties */ function applyFilter(properties: any, filter: any) { if (properties === undefined) return false; var filterType = typeof filter; // String & Number if (filterType === "number" || filterType === "string") return Object.prototype.hasOwnProperty.call(properties, filter); // Array else if (Array.isArray(filter)) { for (var i = 0; i < filter.length; i++) { if (!applyFilter(properties, filter[i])) return false; } return true; // Object } else { return propertiesContainsFilter(properties, filter); } } /** * Properties contains filter (does not apply deepEqual operations) * * @private * @param {*} properties Properties * @param {Object} filter Filter * @returns {boolean} does filter equal Properties * @example * propertiesContainsFilter({foo: 'bar', cluster: 0}, {cluster: 0}) * //= true * propertiesContainsFilter({foo: 'bar', cluster: 0}, {cluster: 1}) * //= false */ function propertiesContainsFilter(properties: any, filter: any): boolean { var keys = Object.keys(filter); for (var i = 0; i < keys.length; i++) { var key = keys[i]; if (properties[key] !== filter[key]) return false; } return true; } /** * Filter Properties * * @private * @param {*} properties Properties * @param {Array} keys Used to filter Properties * @returns {*} filtered Properties * @example * filterProperties({foo: 'bar', cluster: 0}, ['cluster']) * //= {cluster: 0} */ function filterProperties( properties: Record, keys: string[] ): any { if (!keys) return {}; if (!keys.length) return {}; var newProperties: Record = {}; for (var i = 0; i < keys.length; i++) { var key = keys[i]; if (Object.prototype.hasOwnProperty.call(properties, key)) newProperties[key] = properties[key]; } return newProperties; } export { getCluster, clusterEach, clusterReduce, createBins, applyFilter, propertiesContainsFilter, filterProperties, }; // No default export! ================================================ FILE: packages/turf-clusters/package.json ================================================ { "name": "@turf/clusters", "version": "7.3.4", "description": "Group points into clusters based on their spatial proximity or properties.", "author": "Turf Authors", "contributors": [ "Denis Carriere <@DenisCarriere>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "geojson", "cluster", "clusters", "clustering" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-clusters/test.ts ================================================ import test from "tape"; import { point, featureCollection } from "@turf/helpers"; import { getCluster, clusterEach, clusterReduce, // Below methods are not exposed in @turf/turf createBins, applyFilter, filterProperties, propertiesContainsFilter, } from "./index.js"; const properties = { foo: "bar", cluster: 0 }; const geojson = featureCollection([ point([0, 0], { cluster: 0, foo: "null" }), point([2, 4], { cluster: 1, foo: "bar" }), point([3, 6], { cluster: 1 }), point([5, 1], { 0: "foo" }), point([4, 2], { bar: "foo" }), point([2, 4], {}), point([4, 3], undefined), ]); test("clusters -- getCluster", (t) => { t.equal(getCluster(geojson, 0).features.length, 1, "number1"); t.equal(getCluster(geojson, 1).features.length, 0, "number2"); t.equal(getCluster(geojson, "bar").features.length, 1, "string1"); t.equal(getCluster(geojson, "cluster").features.length, 3, "string2"); t.equal(getCluster(geojson, { cluster: 1 }).features.length, 2, "object1"); t.equal(getCluster(geojson, { cluster: 0 }).features.length, 1, "object2"); t.equal(getCluster(geojson, ["cluster", { foo: "bar" }]).features.length, 1); t.equal(getCluster(geojson, ["cluster", "foo"]).features.length, 2); t.equal(getCluster(geojson, ["cluster"]).features.length, 3); t.end(); }); test("clusters -- clusterEach", (t) => { const clusters = []; let total = 0; clusterEach(geojson, "cluster", (cluster) => { total += cluster.features.length; clusters.push(cluster); if (!cluster.features[0]) t.fail("if feature is undefined"); }); t.equal(total, 3); t.equal(clusters.length, 2); t.end(); }); test("clusters -- clusterReduce", (t) => { const clusters = []; const total = clusterReduce( geojson, "cluster", (previousValue, cluster) => { clusters.push(cluster); return previousValue + cluster.features.length; }, 0 ); t.equal(total, 3); t.equal(clusters.length, 2); t.end(); }); test("clusters.utils -- applyFilter", (t) => { t.true(applyFilter(properties, "cluster")); t.true(applyFilter(properties, ["cluster"])); t.false(applyFilter(properties, { cluster: 1 })); t.true(applyFilter(properties, { cluster: 0 })); t.false(applyFilter(undefined, { cluster: 0 })); t.end(); }); test("clusters.utils -- filterProperties", (t) => { t.deepEqual(filterProperties(properties, ["cluster"]), { cluster: 0 }); t.deepEqual(filterProperties(properties, []), {}); t.deepEqual(filterProperties(properties, undefined), {}); t.end(); }); test("clusters.utils -- propertiesContainsFilter", (t) => { t.deepEqual(propertiesContainsFilter(properties, { cluster: 0 }), true); t.deepEqual(propertiesContainsFilter(properties, { cluster: 1 }), false); t.deepEqual(propertiesContainsFilter(properties, { bar: "foo" }), false); t.end(); }); test("clusters.utils -- propertiesContainsFilter", (t) => { t.deepEqual(createBins(geojson, "cluster"), { 0: [0], 1: [1, 2] }); t.end(); }); ================================================ FILE: packages/turf-clusters/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-clusters/types.ts ================================================ import { Point } from "geojson"; import * as clusters from "./index.js"; import { featureCollection, point } from "@turf/helpers"; import { getCluster, clusterEach, clusterReduce } from "./index.js"; /** * Fixtures */ const geojson = featureCollection< Point, { cluster?: number; 0?: string; bar?: string } >([ point([0, 0], { cluster: 0 }), point([2, 4], { cluster: 1 }), point([3, 6], { cluster: 1 }), point([3, 6], { 0: "foo" }), point([3, 6], { bar: "foo" }), ]); /** * Get Cluster */ clusters.getCluster(geojson, { cluster: 1 }); getCluster(geojson, { cluster: 1 }); getCluster(geojson, { 0: "foo" }); getCluster(geojson, { bar: "foo" }); getCluster(geojson, "cluster"); getCluster(geojson, ["cluster", "bar"]); getCluster(geojson, 0); /** * ClusterEach */ clusters.clusterEach(geojson, "cluster", () => { /* no-op */ }); clusterEach(geojson, "cluster", (cluster, clusterValue, currentIndex) => { //= cluster //= clusterValue //= currentIndex }); // Calculate the total number of clusters let total = 0; clusterEach(geojson, "cluster", () => { total++; }); // Create an Array of all the values retrieved from the 'cluster' property const values: number[] = []; clusterEach(geojson, "cluster", (cluster, clusterValue: number) => { values.push(clusterValue); }); /** * ClusterReduce */ const initialValue = 0; clusterReduce(geojson, "cluster", () => { /* no-op */ }); clusterReduce( geojson, "cluster", (previousValue, cluster, clusterValue, currentIndex) => { //= previousValue //= cluster //= clusterValue //= currentIndex }, initialValue ); // Calculate the total number of clusters const totalReduce = clusterReduce( geojson, "cluster", function (previousValue) { return previousValue++; }, 0 ); // Create an Array of all the values retrieved from the 'cluster' property const valuesReduce = clusterReduce( geojson, "cluster", function (previousValue, cluster, clusterValue) { return previousValue.concat(clusterValue); }, [] ); /** * Custom Properties */ const customPoints = featureCollection([ point([0, 0], { cluster: 0 }), point([2, 4], { cluster: 1 }), point([3, 6], { cluster: 1 }), ]); getCluster(customPoints, { cluster: 1 }).features[0].properties.cluster; // getCluster(customPoints, {cluster: 1}).features[0].properties.foo // [ts] Property 'foo' does not exist on type '{ cluster: number; }'. clusterEach(customPoints, "cluster", (cluster) => { cluster.features[0].properties.cluster; // cluster.features[0].properties.foo // [ts] Property 'foo' does not exist on type '{ cluster: number; }'. }); clusterReduce(customPoints, "cluster", (previousValue, cluster) => { cluster.features[0].properties.cluster; // cluster.features[0].properties.foo // [ts] Property 'foo' does not exist on type '{ cluster: number; }'. }); ================================================ FILE: packages/turf-clusters-dbscan/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-clusters-dbscan/README.md ================================================ # @turf/clusters-dbscan ## Dbscan Point classification within the cluster. Type: (`"core"` | `"edge"` | `"noise"`) ## DbscanProps **Extends GeoJsonProperties** Properties assigned to each clustered point. Type: [object][1] ### Properties * `dbscan` **[Dbscan][2]?** type of point it has been classified as * `cluster` **[number][3]?** associated clusterId ## clustersDbscan Takes a set of [points][4] and partition them into clusters according to [DBSCAN's][5] data clustering algorithm. ### Parameters * `points` **[FeatureCollection][6]<[Point][4]>** to be clustered * `maxDistance` **[number][3]** Maximum Distance between any point of the cluster to generate the clusters (kilometers by default, see options) * `options` **[Object][1]** Optional parameters (optional, default `{}`) * `options.units` **Units** in which `maxDistance` is expressed, Supports all valid Turf [Units][7] (optional, default `"kilometers"`) * `options.mutate` **[boolean][8]** Allows GeoJSON input to be mutated (optional, default `false`) * `options.minPoints` **[number][3]** Minimum number of points to generate a single cluster, points which do not meet this requirement will be classified as an 'edge' or 'noise'. (optional, default `3`) ### Examples ```javascript // create random points with random z-values in their properties var points = turf.randomPoint(100, {bbox: [0, 30, 20, 50]}); var maxDistance = 100; var clustered = turf.clustersDbscan(points, maxDistance); //addToMap var addToMap = [clustered]; ``` Returns **[FeatureCollection][6]<[Point][4], [DbscanProps][9]>** Clustered Points with an additional two properties associated to each Feature:* {number} cluster - the associated clusterId * {string} dbscan - type of point it has been classified as ('core'|'edge'|'noise') [1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [2]: #dbscan [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [4]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [5]: https://en.wikipedia.org/wiki/DBSCAN [6]: https://tools.ietf.org/html/rfc7946#section-3.3 [7]: https://turfjs.org/docs/api/types/Units [8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean [9]: #dbscanprops --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/clusters-dbscan ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-clusters-dbscan/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { clustersDbscan } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); // Define Fixtures const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); /** * Benchmark Results * * fiji: 2.472ms * many-points: 48.504ms * noise: 1.218ms * points-with-properties: 0.194ms * points1: 0.697ms * points2: 0.579ms * fiji x 42,125 ops/sec ±1.27% (90 runs sampled) * many-points x 33.21 ops/sec ±1.23% (57 runs sampled) * noise x 6,379 ops/sec ±0.98% (90 runs sampled) * points-with-properties x 35,111 ops/sec ±0.74% (94 runs sampled) * points1 x 7,199 ops/sec ±0.99% (90 runs sampled) * points2 x 4,047 ops/sec ±1.02% (91 runs sampled) */ const suite = new Benchmark.Suite("turf-clusters-dbscan"); for (const { name, geojson } of fixtures) { let { distance } = geojson.properties || {}; distance = distance || 100; console.time(name); clustersDbscan(geojson, distance); console.timeEnd(name); suite.add(name, () => clustersDbscan(geojson, distance)); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-clusters-dbscan/index.ts ================================================ import { GeoJsonProperties, FeatureCollection, Point } from "geojson"; import { clone } from "@turf/clone"; import { Units } from "@turf/helpers"; import KDBush from "kdbush"; import * as geokdbush from "geokdbush"; /** * Point classification within the cluster. * * @typedef {"core" | "edge" | "noise"} Dbscan */ type Dbscan = "core" | "edge" | "noise"; /** * Properties assigned to each clustered point. * * @extends GeoJsonProperties * @typedef {object} DbscanProps * @property {Dbscan} [dbscan] type of point it has been classified as * @property {number} [cluster] associated clusterId */ type DbscanProps = GeoJsonProperties & { dbscan?: Dbscan; cluster?: number; }; // Structure of a point in the spatial index type IndexedPoint = { minX: number; minY: number; maxX: number; maxY: number; index: number; }; /** * Takes a set of {@link Point|points} and partition them into clusters according to {@link https://en.wikipedia.org/wiki/DBSCAN|DBSCAN's} data clustering algorithm. * * @function * @param {FeatureCollection} points to be clustered * @param {number} maxDistance Maximum Distance between any point of the cluster to generate the clusters (kilometers by default, see options) * @param {Object} [options={}] Optional parameters * @param {Units} [options.units="kilometers"] in which `maxDistance` is expressed, Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @param {boolean} [options.mutate=false] Allows GeoJSON input to be mutated * @param {number} [options.minPoints=3] Minimum number of points to generate a single cluster, * points which do not meet this requirement will be classified as an 'edge' or 'noise'. * @returns {FeatureCollection} Clustered Points with an additional two properties associated to each Feature: * - {number} cluster - the associated clusterId * - {string} dbscan - type of point it has been classified as ('core'|'edge'|'noise') * @example * // create random points with random z-values in their properties * var points = turf.randomPoint(100, {bbox: [0, 30, 20, 50]}); * var maxDistance = 100; * var clustered = turf.clustersDbscan(points, maxDistance); * * //addToMap * var addToMap = [clustered]; */ function clustersDbscan( points: FeatureCollection, maxDistance: number, options: { units?: Units; minPoints?: number; mutate?: boolean; } = {} ): FeatureCollection { // Input validation being handled by Typescript // TODO oops! No it isn't. Typescript doesn't do runtime checking. We should // re-enable these checks, though will have to wait for a major version bump // as more restrictive checks could break currently working code. // collectionOf(points, 'Point', 'points must consist of a FeatureCollection of only Points'); // if (maxDistance === null || maxDistance === undefined) throw new Error('maxDistance is required'); // if (!(Math.sign(maxDistance) > 0)) throw new Error('maxDistance is invalid'); // if (!(minPoints === undefined || minPoints === null || Math.sign(minPoints) > 0)) throw new Error('options.minPoints is invalid'); // Clone points to prevent any mutations if (options.mutate !== true) points = clone(points); // Defaults const minPoints = options.minPoints || 3; // Create a spatial index const kdIndex = new KDBush(points.features.length); // Index each point for spatial queries for (const point of points.features) { kdIndex.add(point.geometry.coordinates[0], point.geometry.coordinates[1]); } kdIndex.finish(); // Keeps track of whether a point has been visited or not. var visited = points.features.map((_) => false); // Keeps track of whether a point is assigned to a cluster or not. var assigned = points.features.map((_) => false); // Keeps track of whether a point is noise|edge or not. var isnoise = points.features.map((_) => false); // Keeps track of the clusterId for each point var clusterIds: number[] = points.features.map((_) => -1); // Function to find neighbors of a point within a given distance const regionQuery = (index: number): IndexedPoint[] => { const point = points.features[index]; const [x, y] = point.geometry.coordinates; return ( geokdbush // @ts-expect-error 2345 until https://github.com/mourner/geokdbush/issues/20 is resolved .around(kdIndex, x, y, undefined, maxDistance) .map((id) => ({ minX: points.features[id].geometry.coordinates[0], minY: points.features[id].geometry.coordinates[1], maxX: points.features[id].geometry.coordinates[0], maxY: points.features[id].geometry.coordinates[1], index: id, })) ); }; // Function to expand a cluster const expandCluster = (clusteredId: number, neighbors: IndexedPoint[]) => { for (var i = 0; i < neighbors.length; i++) { var neighbor = neighbors[i]; const neighborIndex = neighbor.index; if (!visited[neighborIndex]) { visited[neighborIndex] = true; const nextNeighbors = regionQuery(neighborIndex); if (nextNeighbors.length >= minPoints) { neighbors.push(...nextNeighbors); } } if (!assigned[neighborIndex]) { assigned[neighborIndex] = true; clusterIds[neighborIndex] = clusteredId; } } }; // Main DBSCAN clustering algorithm var nextClusteredId = 0; points.features.forEach((_, index) => { if (visited[index]) return; const neighbors = regionQuery(index); if (neighbors.length >= minPoints) { const clusteredId = nextClusteredId; nextClusteredId++; visited[index] = true; expandCluster(clusteredId, neighbors); } else { isnoise[index] = true; } }); // Assign DBSCAN properties to each point points.features.forEach((_, index) => { var clusterPoint = points.features[index]; if (!clusterPoint.properties) { clusterPoint.properties = {}; } if (clusterIds[index] >= 0) { clusterPoint.properties.dbscan = isnoise[index] ? "edge" : "core"; clusterPoint.properties.cluster = clusterIds[index]; } else { clusterPoint.properties.dbscan = "noise"; } }); return points as FeatureCollection; } export { Dbscan, DbscanProps, clustersDbscan }; export default clustersDbscan; ================================================ FILE: packages/turf-clusters-dbscan/package.json ================================================ { "name": "@turf/clusters-dbscan", "version": "7.3.4", "description": "Takes a set of points and partition them into clusters according to DBSCAN's data clustering algorithm.", "author": "Turf Authors", "contributors": [ "Lukasz <@uhho>", "Denis Carriere <@DenisCarriere>", "Stefano Borghi <@stebogit>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "geojson", "cluster", "clusters", "clustering", "density", "dbscan" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/centroid": "workspace:*", "@turf/clusters": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "chromatism": "^3.0.0", "concaveman": "^1.2.1", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/clone": "workspace:*", "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "@types/geokdbush": "^1.1.5", "geokdbush": "^2.0.1", "kdbush": "^4.0.2", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-clusters-dbscan/test/in/fiji.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [179.439697265625, -16.55196172197251] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [179.01123046874997, -16.97274101999901] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [179.505615234375, -17.035777250427184] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [180.75805664062497, -16.41500926733237] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [181.1865234375, -16.615137799987075] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [181.03271484375, -16.277960306212513] } } ] } ================================================ FILE: packages/turf-clusters-dbscan/test/in/many-points.geojson ================================================ { "type": "FeatureCollection", "properties": { "distance": 75, "minPoints": 3 }, "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.36337554761008, 19.119473770547124] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.32753919964946, 20.843505437175903] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.72930024352243, 22.95523079568951] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.28985709132587, 16.584015683001546] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.94492705924428, 21.0702981386651] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.05488356732162, 24.111641311913072] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.55079764304975, 25.525431992772358] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.11420407247648, 26.113452348786268] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.8076846951252, 22.255910609327792] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.98702719224296, 25.275001495112985] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.54236384636712, 20.789257545981407] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.57808400285332, 20.00051975393173] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.39655991111083, 22.12594824182586] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.42324858424885, 17.48175433130492] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.90361604004578, 26.430002559611477] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.22266857015823, 20.94137638968897] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.48717976822758, 20.224242981590255] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.06779765523183, 27.276249335066662] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.99075803676163, 17.651929487468298] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.53563340237405, 26.495418224944373] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.20462326614003, 24.00357261039075] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.58330318049086, 18.09915952726896] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.50889284912286, 18.340562952508183] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.55680807421967, 21.907870183116437] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.53689212714627, 17.422501403729605] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.18027511981438, 18.875894880366534] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.39732218872196, 25.629464613691137] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.66061545607911, 22.757810888614223] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.65357594791968, 16.66838838845727] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.77643699392496, 27.091684659861052] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.13081869539506, 26.23449839991876] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.43824120718541, 19.103181050521584] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.43898229878118, 18.874231952472687] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.92734033427595, 20.82599847071201] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.27364128877521, 21.130861117009847] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.05413199086016, 23.058073292292104] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.28388468077954, 22.883779502221373] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.77696496688779, 18.94471042190279] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.23882701110625, 20.30184311650061] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.66116457836486, 20.169682381560182] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.90248833212131, 26.884383581357255] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.28525543556775, 26.722194267296018] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.8977221405959, 19.412558043465] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.07684618758876, 27.17395724732544] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.41316964578398, 23.148029434777555] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.92622530551323, 25.623260952842156] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.2549851564484, 22.35997051326973] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.7199945397987, 25.802953128684692] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.96348979974654, 27.35814140608639] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.04921623428444, 20.61204095701038] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.54213379075634, 25.505384186492893] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.61403051800008, 17.263716566767037] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.25360192470616, 18.686705558388965] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.42930471321405, 20.022748677821312] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.44899512481147, 21.52626642668551] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.38761515683782, 18.77265726075554] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.12756391373203, 25.531641282912506] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.65487739464005, 20.270385418656613] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.44983759982364, 18.547000172845294] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.53680657077764, 25.303329199906706] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.01712484014583, 24.449642983600107] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.86222771555597, 22.720569651349564] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.2520931858629, 25.53784765691357] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.60441825132624, 23.93129090727725] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.2164652385625, 25.79578750021983] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.63151040609172, 24.490225688795583] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.51548817891319, 17.202270132332913] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.3121102967554, 25.956525827964448] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.27005222591032, 17.528372337434828] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.0823710181298, 25.482920857480014] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.75288708284614, 18.922685406247748] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.52847693811808, 24.220685835886385] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.42010129302429, 25.72860309981145] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.03682779147974, 27.053835982653894] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.67472974247343, 24.956264380693316] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.95315877653405, 18.41169388608788] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.57393282654176, 26.261024024692077] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.92845035818462, 17.837520858411256] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.5179339115434, 23.450627516507094] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.71943800617547, 19.616649637864654] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.93211879732236, 26.33170236314861] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.10661507770358, 25.13063963201959] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.24887371103026, 21.739851639014628] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.26129906562491, 21.294934204528648] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.2729878125471, 23.65784314034355] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.3562097070285, 24.24226765651852] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.99265814798184, 27.483971653923085] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.63635988061537, 18.75973134353604] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.76340181762502, 26.57219504751686] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.45164209210782, 23.76673190659356] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.65455892791887, 27.186142540274957] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.03313564896565, 24.333750064476934] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.87222884039794, 19.159104199268683] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.54286133638129, 24.13575708893132] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.26242751330523, 20.472647289870025] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.80042213720098, 20.990256802329768] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.5874725368364, 25.039930971231904] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.85825660840021, 25.43539990016023] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.17454776573982, 23.461743771248557] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.40002194939215, 20.67151202116478] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.23963323045145, 23.244627904260923] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.81552101630216, 26.53756981389545] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.9283270010284, 24.674017344728615] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.70000865367116, 21.542018533522416] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.48978633680683, 19.623096473871033] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.67175298435387, 17.880881534565148] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.04610391202878, 26.551597087996466] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.84175265531377, 16.85074369818602] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.95908129532202, 21.185424844181092] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.88684525321649, 18.726646021819167] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.15582212817301, 18.696902173553443] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.5644212682104, 20.850894115743387] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.37878622301193, 16.91615114076283] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.81019601780373, 17.165972386566605] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.4614226211491, 23.444082141644998] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.18265845716839, 25.295833894402776] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.09803657824347, 23.3454534216312] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.34448173717335, 17.84048983960788] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.18827115285569, 20.273168111170328] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.26216347689832, 23.673136982276464] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.21575485381635, 23.096925087889748] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.01908584146595, 21.557475862048076] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.92274968888073, 26.019876080997598] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.55727606952377, 22.36430316761306] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.25891612041117, 19.525184281200534] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.64279747070925, 25.651725881829897] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.40499501048518, 16.63021658406485] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.64998704253041, 24.234779530366744] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.30467012694315, 17.92521920364085] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.76550387867614, 21.84873202139447] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.2770011073176, 26.540918581152965] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.20171143790367, 24.334344930797855] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.51391779937516, 18.211967578932978] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.81858154084357, 19.071318793255987] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.87897523658762, 22.009563011217917] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.17146072076018, 22.71145107992815] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.14138268439117, 27.295964747431004] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.01085563325441, 23.60461239295877] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.61068998466835, 21.311283807756645] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.76701891828932, 27.195861233372437] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.55059712821668, 25.49682672225246] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.42534293525704, 20.342801196105015] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.85957138950651, 25.651916540759668] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.67260570784427, 20.45532583962798] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.81872422593077, 21.669857512462364] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.38646877459935, 19.37340763751337] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.50710379745864, 18.424063455433217] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.632893967135, 23.107454998460437] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.36852553393699, 24.295072371424403] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.86140755178053, 17.50071319492512] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.56458486764306, 23.27787869671228] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.25719355261317, 18.841254641177088] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.79365159485565, 24.73837411446049] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.77110623794552, 22.880747711470292] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.17830942471453, 27.459109723499697] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.5062774214051, 17.326690422594897] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.19600112265177, 22.73914989583398] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.58173201222138, 23.850997885697698] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.71045285694422, 17.079742569860166] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.34171838085163, 22.153445077419946] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.55081810986574, 24.915158163291853] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.59793295622734, 18.75099342612817] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.14433438213305, 27.036543336370556] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.4434583942987, 19.619680064723546] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.51440928893466, 19.680938852916263] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.95150377384275, 26.91911731157561] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.4550593256632, 24.03016205722427] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.8228436577642, 25.845318184468677] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.16769788043096, 16.98191521287846] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.51634149582756, 19.10937565092933] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.72446682780881, 22.25313981239625] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.95113454727932, 26.357292830184782] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.89319872559254, 21.773847762169503] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.50995550468448, 26.805856081166645] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.72311173060332, 27.453459491416243] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.20796912251339, 16.910765069076696] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.02923748665658, 17.06286092924691] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.67236850288222, 19.00571371998642] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.43657840692077, 17.42104681957319] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.48932636312891, 18.050155326157473] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.76206658518934, 23.71467590682046] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.46253580071742, 22.833272724615775] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.09703651590019, 17.421833037838393] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.61013158110691, 23.65729956086801] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.66397149031135, 25.831969038126523] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.1727623444978, 24.152605040309613] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.2741188221817, 18.639289071153634] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.90735829536999, 18.190052908059194] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.32489553257798, 19.57470756961103] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.01326798044877, 24.122014119489563] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.52731994000185, 26.95480013106508] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.3558896446572, 17.44256116852827] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.02534851234576, 16.756254338847338] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.47025910061983, 24.118620545794855] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.308362589921, 20.54596248507216] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.34538728645822, 24.41450380344747] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.33122422882889, 23.37013167679639] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.27561331569953, 16.994251063813262] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.86851913822156, 25.81027224474102] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.24173363419717, 24.34323106176321] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.84877351272029, 26.92445686110058] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.71160840330522, 21.77620359204627] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.20296576353552, 21.709322849932395] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.04325753495058, 24.349990861490674] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.01507615292597, 18.68916636419406] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.98455859943033, 21.06707023138771] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.40609968225364, 21.87541299401925] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.66122425689909, 19.364456854255717] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.2600583537702, 21.659164464794838] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.73592652087561, 17.55179712679042] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.80434002543046, 18.311428726658654] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.89936609149818, 27.20566948335109] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.9153275956025, 22.728686372271056] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.22442161042382, 20.946470968784404] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.23254193941007, 26.262181726505418] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.62437731409852, 19.781049107501957] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.49173903601617, 16.92003208241821] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.25829317577141, 21.827114782054075] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.65532298324348, 17.29988957265243] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.3453947248687, 24.50576556423695] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.37506450657898, 16.711071194315227] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.42569161383636, 21.026826554775827] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.43791743989885, 24.962432920525124] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.84458598730575, 23.70594482686843] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.37848518046901, 26.34378098000883] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.13497764736996, 17.934013939878078] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.54709582459233, 16.53706271986311] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.17844562558024, 23.80702766062598] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.64984925794586, 27.17403653643745] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.89153777133139, 23.170952976617727] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.93875091618717, 25.00047089937265] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.9102252552082, 23.883340808622673] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.45068182631776, 24.018640243238202] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.56517209188608, 24.748894301890655] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.41470444523833, 26.791071724795167] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.27546806320538, 24.62810216606337] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.37798026966385, 22.800554127763526] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.67038090634749, 19.518488261229543] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.51124408675949, 18.95091920687403] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.72209650039468, 24.280447748568445] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.28434198674468, 17.20571626766068] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.15681636726895, 26.828785859624258] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.11344269598334, 17.666989151972253] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.96994176238145, 22.888540550894795] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.50079368006108, 26.634382308937134] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.54280695688689, 23.237868840297253] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.59204571681656, 24.786873137315194] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.01377215866017, 18.936419309424537] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.01405131484972, 18.581612310870824] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.6420973159142, 18.58453117274099] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.74759623801513, 26.12337676616272] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.05313261324237, 19.319796400696145] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.13970036126891, 17.506087557394512] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.75848457074353, 21.115370497855984] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.16830971446066, 24.6894321007414] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.21048541308969, 17.919231608494442] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.97637737411591, 23.150822409149665] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.98806643205722, 18.733700354050203] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.73009496457921, 23.7983464395302] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.21686530340585, 18.59063554310776] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.94846192062774, 19.236367113472895] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.97783503664645, 19.823228188109127] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.31384918144222, 22.633190689556994] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.49404471100601, 22.009751251682275] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.1270341028659, 25.781532521957693] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.51950761862354, 23.496329401717578] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.67344643947845, 20.92896756107965] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.28006204700529, 18.638001663502685] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.33788518686183, 24.089777622921456] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.03458096249997, 22.65764273416216] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.80104984355006, 26.237062559189845] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.21242542631086, 20.177739085659635] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.38674449250746, 17.652491491363605] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.93734071291428, 23.99085830463023] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.20251485577793, 26.55556740273682] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.73360568748585, 26.28033941085063] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.13262960963559, 22.34430874872904] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.54532805510269, 17.55045667323678] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.80026818559628, 18.561998669158292] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.28628835491551, 19.571063802546057] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.58131591277606, 24.21369712743759] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.88085722918547, 19.753718721210948] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.64966522234937, 20.677188588895476] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.24840889524553, 19.69712523257967] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.96400931937723, 18.174770180214516] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.70189850382681, 16.534625567595363] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.810090294371, 25.23156636266861] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.17536572906562, 19.792647657345] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.79193518864761, 24.737897659493715] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.93555696939467, 19.98152959915939] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.21354373461136, 25.88846335275895] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.32534041974515, 26.094983944812824] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.97472021053458, 26.061373986456793] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.84081911742697, 23.793624669453152] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.24844766066971, 24.484245781333726] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.90249827777127, 22.05793250583984] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.07748325170441, 27.337367361375666] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.52285998029147, 17.487274302366117] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.81251634431071, 20.933095236667395] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.58692805675213, 24.80146814851551] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.47378831903654, 21.652685460023044] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.70162022475394, 19.229694616459863] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.78777310048918, 23.92218146021364] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.80552346807535, 22.161467782172014] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.55667427680913, 22.171811135508918] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.49928602385201, 27.41608769703238] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.34842284656386, 17.435895054282373] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.21228170738233, 22.173670632023597] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.90881672418563, 21.468642424655155] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.56477901274141, 23.02518524523849] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.43974652662247, 22.60413987147912] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.5883411017305, 19.917932537792794] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.35881511009039, 19.09687830115208] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.72145863838075, 25.18049472134159] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.95694749118951, 27.39255408553263] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.44936060272309, 27.49130192814892] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.61820042082097, 23.049137776556364] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.10989174097693, 18.469712160553517] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.379040540202, 20.37524788330293] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.51495780456581, 16.669087042407536] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.10886304098058, 16.8269149948045] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.72560883757795, 16.962762773864505] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.89333076284501, 24.384990740752006] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.59332944904146, 24.120911542546878] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.42817901090537, 17.74846475203746] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.89833899459296, 19.72230811960007] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.98171564844314, 21.140743955694063] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.99706809934376, 18.63550290606603] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.13208804398411, 19.266357159361213] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.44208974284808, 18.89754661420165] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.67095396405709, 17.953443362949123] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.61949782551551, 25.38069882274378] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.82927583009545, 18.920544836399152] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.71898403700982, 22.858679743400074] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.05832892131573, 25.244587077548168] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.53486708882008, 18.05579400531109] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.3189432679756, 20.059875630170964] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.96213190737039, 26.279325304846623] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.44927404052561, 17.791447001826654] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.39338327111777, 24.626502743687922] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.58570795493182, 25.546633692923525] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.83961825329554, 25.484747617185402] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.87200031832714, 23.66114743521159] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.83487262625073, 20.095259588587723] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.91640675333899, 16.590848739189624] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.30245460933854, 19.23352889608482] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.14994486721066, 20.53183273996738] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.80521037357039, 21.252980629644455] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.8787989831883, 18.218515429796344] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.76978734183139, 17.7977450107505] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.80371392928168, 26.040116775073876] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.95744087420283, 25.191234441288678] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.77674346051477, 21.375540465284374] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.29292929991102, 21.98589295297564] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.66745422227388, 26.168091294302087] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.92295434812097, 23.30372425686007] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.96026394085236, 25.51392205303288] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.43164354544895, 17.413235272364112] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.28566063654243, 18.482281406816814] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.18586938186745, 27.019278441405643] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.00665657564603, 18.009509829132515] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.78174587415, 25.852826126614094] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.17395695535176, 20.322052935788367] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.75631134659818, 27.4074383447763] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.30133416063728, 22.908999108726512] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.5468209860248, 25.79011427888136] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.50335139484208, 25.338279000551893] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.85611159709538, 24.40263258506802] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.19143746995799, 22.76299900389558] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.49961985245375, 23.749896556565293] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.93434205722116, 17.8751516982336] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.47725300277814, 20.834238692742822] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.40866406564102, 24.65588369863437] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.23086732338659, 22.010870880797054] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.55598541988493, 23.62640751670331] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.067479899787, 22.44918038801505] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.5723788030903, 23.774277575000852] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.68634851848167, 23.203154689599817] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.97302399035408, 22.395504699565535] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.47937906764957, 24.839570106333433] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.63060572237521, 22.939370867570908] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.28374988273468, 16.800162341500304] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.01980255637385, 21.18954858284259] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.80981841825783, 16.752970728846513] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.0632043924848, 17.78197939775129] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.31937806169958, 16.63036465541673] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.51362280935948, 19.07306061464646] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.6462554841785, 18.765258635070385] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.90737511126233, 25.663681166863604] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.3184598837461, 20.339708336838683] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.25614050898571, 20.47865304539995] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.05273739031475, 27.278196207610172] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.57090751033381, 25.058967866824403] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.72044789264216, 17.86742294760512] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.45286775268717, 27.264956115483226] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.46924741699405, 22.27588495796526] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.2743504888918, 26.691822644671085] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.18119091611597, 24.755151867045228] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.9753411638257, 22.736683695999382] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.17815192274419, 17.766464076510605] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.79951671731996, 16.979753651505465] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.81530228240368, 21.899431865794316] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.15292492090326, 18.519443297834165] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.11308732341453, 22.73505946813462] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.00830955618024, 21.885311144830727] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.54728340532579, 17.713742740545893] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.53755328892348, 25.323104677883705] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.68105867358958, 27.21289905396955] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.96411774831036, 22.888644254222072] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.98170526139158, 20.98332034823357] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.56755786305595, 19.40265705295205] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.9097441614737, 25.69899354986159] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.8522033753837, 16.57371866969067] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.59048812893998, 22.36793387394907] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.69797232502891, 17.49676706923224] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.4273474590883, 20.29560385897871] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.75702086888295, 18.06842605714349] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.93509999305662, 24.197922897145702] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.59056449409796, 17.249155158477635] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.04442014558218, 20.180967527569678] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.37084983049334, 18.874173436903888] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.56890381178304, 24.88700194600341] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.06300053256552, 25.068476848998436] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.07431215190033, 23.634255220677876] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.97261043138833, 20.783569456567577] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.69220087076908, 23.99722100792555] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.28624765409677, 19.684275914963393] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.26371632117386, 23.468899954784128] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.64211828010676, 22.535063069435896] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.76720344494535, 17.95425416674962] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.84949687526881, 23.882703836621122] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.51599855499506, 22.18056139559293] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.0586637697147, 22.618118595420675] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.82988603140993, 22.75446266986306] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.10048201961024, 21.361849810266136] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.04153303125153, 20.350657127526738] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.59504589774306, 27.064096554971023] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.07548891214728, 17.301084891511273] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.33158765668573, 19.452979509754268] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.81854336800883, 24.131395375394586] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.684418563593, 21.47654476359144] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.00730697784353, 25.897847636990367] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.40829350874473, 27.268125557919248] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.2707934048482, 20.982305048038683] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.38809337052642, 26.427105032557755] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.0134734724832, 25.13419607033201] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.17642686622017, 25.221069930712087] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.71994017762563, 20.189025977120103] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.29187361259146, 27.392240106344147] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.79976558388476, 20.035863120368496] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.3275873181896, 23.43075879262019] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.30217792473226, 22.66331518976522] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.02504204870841, 18.793197099411397] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.96796993174219, 24.703657172369798] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.41505346819054, 25.017559911985607] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.287484618002, 19.75003759357949] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.25519670513809, 19.980973614544432] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.3831207434748, 20.990164116130572] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.30367109087219, 25.1900948213395] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.33929483454432, 17.79933711363019] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.3072622609112, 19.064713633397105] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.09464045072042, 16.867824298530778] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.01339730011378, 25.682665424232965] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.74959288173342, 17.47999904710256] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.95625724719481, 26.53239538653403] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.95900351362758, 26.964513550251407] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.22624323598141, 17.943008474474265] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.14342020536195, 18.867794740406104] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.61849018164143, 22.47855670455455] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.7861071942679, 18.669738072373164] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.00369227814197, 24.612757650509216] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.77138891405684, 20.81044983619232] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.89623600838752, 19.396975077838288] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.40595166597085, 26.80155978434455] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.80825302190365, 23.35316310450464] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.96259557904392, 24.196187792487656] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.08863800575135, 25.15698262014013] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.75695759804495, 20.08490410319372] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.42234796309599, 26.22301149374214] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.26218882048389, 26.41236152098589] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.87135659444625, 17.56355668256735] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.49722908932829, 21.926256397875694] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.7096594822639, 24.460836562368442] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.09304190552334, 27.42090911618883] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.0243253011326, 17.45098074087971] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.25880876997459, 18.567348945414572] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.15374231895991, 19.572527461376602] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.90718745331596, 18.01378466658022] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.3932989046418, 19.030002383084067] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.56289580127358, 23.7331334661265] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.32615130900722, 23.22949976202878] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.32932140159735, 21.369086228743924] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.40761927871347, 22.617986414434352] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.6909951062254, 17.986704731304503] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.38990946382116, 17.402709176906622] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.59495181641225, 22.81831350748234] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.38487102139864, 26.08247375588085] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.86031632408672, 24.23389023003475] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.76905431857912, 27.471768557404076] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.43945965828523, 18.638609876647752] }, "properties": {} } ] } ================================================ FILE: packages/turf-clusters-dbscan/test/in/noise.geojson ================================================ { "type": "FeatureCollection", "properties": { "distance": 50, "minPoints": 3, "units": "miles" }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-82.46337890625, 23.059516273509303] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-82.353515625, 23.120153621695614] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-82.36450195312499, 23.074678175027337] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-82.19970703125, 23.221154981846556] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-82.19970703125, 23.089838367476705] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-82.28759765625, 22.99379497224218] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.8551025390625, 20.035289711352377] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.6683349609375, 20.128155311797183] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.73974609375, 20.122997556207757] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.6683349609375, 20.030128899024707] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.80017089843749, 20.040450354169483] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.9375, 20.195190636474504] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-76.00341796875, 19.947532877989353] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.7562255859375, 20.014645445341365] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-80.46936035156249, 22.070368801349257] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-80.34027099609375, 22.2026634080092] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-80.35675048828125, 22.12126604542578] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-80.43914794921875, 22.271305748177635] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-80.38970947265625, 22.021999432851782] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-80.55999755859375, 22.118721619281263] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-80.54351806640625, 22.0525504317147] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.94024658203124, 20.360077646657153] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-77.71728515624999, 21.596150576461426] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-78.046875, 18.218916080017465] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-82.46337890625, 21.718679805703154] } } ] } ================================================ FILE: packages/turf-clusters-dbscan/test/in/points-with-properties.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-symbol": 1 }, "geometry": { "type": "Point", "coordinates": [68.477783203125, -48.84302835299516] } }, { "type": "Feature", "properties": { "marker-symbol": 2 }, "geometry": { "type": "Point", "coordinates": [68.873291015625, -48.821332549646634] } }, { "type": "Feature", "properties": { "marker-symbol": 3 }, "geometry": { "type": "Point", "coordinates": [68.69750976562499, -48.958580664409766] } }, { "type": "Feature", "properties": { "marker-symbol": 4 }, "geometry": { "type": "Point", "coordinates": [70.87280273437499, -49.418120700666414] } }, { "type": "Feature", "properties": { "marker-symbol": 5 }, "geometry": { "type": "Point", "coordinates": [71.949462890625, -49.36091154712616] } }, { "type": "Feature", "properties": { "marker-symbol": 6 }, "geometry": { "type": "Point", "coordinates": [71.4111328125, -49.102645497788814] } } ] } ================================================ FILE: packages/turf-clusters-dbscan/test/in/points1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-82.46337890625, 23.059516273509303] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-82.353515625, 23.120153621695614] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-82.36450195312499, 23.074678175027337] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-82.19970703125, 23.221154981846556] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-82.19970703125, 23.089838367476705] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-82.28759765625, 22.99379497224218] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.8551025390625, 20.035289711352377] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.6683349609375, 20.128155311797183] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.73974609375, 20.122997556207757] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.6683349609375, 20.030128899024707] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.80017089843749, 20.040450354169483] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.9375, 20.195190636474504] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-76.00341796875, 19.947532877989353] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.7562255859375, 20.014645445341365] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-80.46936035156249, 22.070368801349257] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-80.34027099609375, 22.2026634080092] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-80.35675048828125, 22.12126604542578] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-80.43914794921875, 22.271305748177635] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-80.38970947265625, 22.021999432851782] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-80.55999755859375, 22.118721619281263] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-80.54351806640625, 22.0525504317147] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.94024658203124, 20.360077646657153] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-77.71728515624999, 21.596150576461426] } } ] } ================================================ FILE: packages/turf-clusters-dbscan/test/in/points2.geojson ================================================ { "type": "FeatureCollection", "properties": { "distance": 500 }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-118.30078125, 60.457217797743944] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-115.04882812499999, 58.401711667608] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-112.5, 60.84491057364912] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-110.478515625, 59.265880628258095] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-103.71093749999999, 60.673178565817715] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-102.3046875, 55.52863052257191] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-83.935546875, 60.930432202923335] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-79.89257812499999, 60.23981116999893] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-82.79296874999999, 57.468589192089354] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-72.7734375, 58.63121664342478] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-79.541015625, 55.178867663281984] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.263671875, 50.17689812200107] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-84.990234375, 49.38237278700955] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-94.21875, 47.27922900257082] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-88.41796875, 48.28319289548349] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-92.548828125, 52.855864177853974] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-87.1875, 45.89000815866184] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-107.490234375, 57.040729838360875] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-69.78515625, 56.511017504952136] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-81.73828125, 62.83508901142283] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-76.37695312499999, 61.938950426660604] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-91.845703125, 46.07323062540835] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-76.640625, 58.44773280389084] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-103.0078125, 58.6769376725869] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-88.857421875, 39.774769485295465] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-123.48632812499999, 57.938183012205315] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-117.158203125, 46.558860303117164] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-114.873046875, 45.767522962149876] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-112.67578124999999, 44.402391829093915] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-119.53125, 44.33956524809713] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-115.927734375, 43.389081939117496] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-120.58593749999999, 38.685509760012] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-113.90625, 40.3130432088809] } } ] } ================================================ FILE: packages/turf-clusters-dbscan/test/out/fiji.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [179.439697265625, -16.55196172197251] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [179.01123046874997, -16.97274101999901] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [179.505615234375, -17.035777250427184] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [180.75805664062497, -16.41500926733237] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [181.1865234375, -16.615137799987075] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [181.03271484375, -16.277960306212513] } }, { "type": "Feature", "properties": { "marker-color": "#0000ff", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [179.31884765625, -16.85349333079957] } }, { "type": "Feature", "properties": { "fill": "#000080", "stroke": "#000080", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [179.505615234375, -17.035777250427184], [179.01123046874997, -16.97274101999901], [179.439697265625, -16.55196172197251], [179.505615234375, -17.035777250427184] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#ffff00", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [180.992431640625, -16.43603579117732] } }, { "type": "Feature", "properties": { "fill": "#808000", "stroke": "#808000", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [181.1865234375, -16.615137799987075], [180.75805664062497, -16.41500926733237], [181.03271484375, -16.277960306212513], [181.1865234375, -16.615137799987075] ] ] } } ] } ================================================ FILE: packages/turf-clusters-dbscan/test/out/many-points.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.36337554761008, 19.119473770547124] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#6d00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.32753919964946, 20.843505437175903] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.72930024352243, 22.95523079568951] } }, { "type": "Feature", "properties": { "cluster": 3, "dbscan": "core", "marker-color": "#ff00b5", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.28985709132587, 16.584015683001546] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.94492705924428, 21.0702981386651] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.05488356732162, 24.111641311913072] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.55079764304975, 25.525431992772358] } }, { "type": "Feature", "properties": { "cluster": 4, "dbscan": "core", "marker-color": "#ff0047", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.11420407247648, 26.113452348786268] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.8076846951252, 22.255910609327792] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.98702719224296, 25.275001495112985] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#6d00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.54236384636712, 20.789257545981407] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.57808400285332, 20.00051975393173] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.39655991111083, 22.12594824182586] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.42324858424885, 17.48175433130492] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.90361604004578, 26.430002559611477] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.22266857015823, 20.94137638968897] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#6d00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.48717976822758, 20.224242981590255] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.06779765523183, 27.276249335066662] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.99075803676163, 17.651929487468298] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.53563340237405, 26.495418224944373] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.20462326614003, 24.00357261039075] } }, { "type": "Feature", "properties": { "cluster": 11, "dbscan": "edge", "marker-color": "#00996e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.58330318049086, 18.09915952726896] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.50889284912286, 18.340562952508183] } }, { "type": "Feature", "properties": { "dbscan": "noise", "marker-color": "#AEAEAE", "marker-symbol": "circle-stroked", "marker-size": "medium" }, "geometry": { "type": "Point", "coordinates": [-80.55680807421967, 21.907870183116437] } }, { "type": "Feature", "properties": { "cluster": 6, "dbscan": "core", "marker-color": "#ff9200", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.53689212714627, 17.422501403729605] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.18027511981438, 18.875894880366534] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.39732218872196, 25.629464613691137] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.66061545607911, 22.757810888614223] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.65357594791968, 16.66838838845727] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.77643699392496, 27.091684659861052] } }, { "type": "Feature", "properties": { "cluster": 10, "dbscan": "edge", "marker-color": "#00992c", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.13081869539506, 26.23449839991876] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.43824120718541, 19.103181050521584] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.43898229878118, 18.874231952472687] } }, { "type": "Feature", "properties": { "dbscan": "noise", "marker-color": "#AEAEAE", "marker-symbol": "circle-stroked", "marker-size": "medium" }, "geometry": { "type": "Point", "coordinates": [-77.92734033427595, 20.82599847071201] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.27364128877521, 21.130861117009847] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.05413199086016, 23.058073292292104] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.28388468077954, 22.883779502221373] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.77696496688779, 18.94471042190279] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.23882701110625, 20.30184311650061] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.66116457836486, 20.169682381560182] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.90248833212131, 26.884383581357255] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.28525543556775, 26.722194267296018] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.8977221405959, 19.412558043465] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.07684618758876, 27.17395724732544] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.41316964578398, 23.148029434777555] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.92622530551323, 25.623260952842156] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.2549851564484, 22.35997051326973] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.7199945397987, 25.802953128684692] } }, { "type": "Feature", "properties": { "cluster": 7, "dbscan": "core", "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.96348979974654, 27.35814140608639] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.04921623428444, 20.61204095701038] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.54213379075634, 25.505384186492893] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.61403051800008, 17.263716566767037] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.25360192470616, 18.686705558388965] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.42930471321405, 20.022748677821312] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.44899512481147, 21.52626642668551] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.38761515683782, 18.77265726075554] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.12756391373203, 25.531641282912506] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.65487739464005, 20.270385418656613] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.44983759982364, 18.547000172845294] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.53680657077764, 25.303329199906706] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.01712484014583, 24.449642983600107] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.86222771555597, 22.720569651349564] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.2520931858629, 25.53784765691357] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.60441825132624, 23.93129090727725] } }, { "type": "Feature", "properties": { "cluster": 4, "dbscan": "core", "marker-color": "#ff0047", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.2164652385625, 25.79578750021983] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.63151040609172, 24.490225688795583] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.51548817891319, 17.202270132332913] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.3121102967554, 25.956525827964448] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.27005222591032, 17.528372337434828] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.0823710181298, 25.482920857480014] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.75288708284614, 18.922685406247748] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.52847693811808, 24.220685835886385] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.42010129302429, 25.72860309981145] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.03682779147974, 27.053835982653894] } }, { "type": "Feature", "properties": { "cluster": 4, "dbscan": "core", "marker-color": "#ff0047", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.67472974247343, 24.956264380693316] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.95315877653405, 18.41169388608788] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.57393282654176, 26.261024024692077] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.92845035818462, 17.837520858411256] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.5179339115434, 23.450627516507094] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.71943800617547, 19.616649637864654] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.93211879732236, 26.33170236314861] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.10661507770358, 25.13063963201959] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.24887371103026, 21.739851639014628] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#6d00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.26129906562491, 21.294934204528648] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.2729878125471, 23.65784314034355] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.3562097070285, 24.24226765651852] } }, { "type": "Feature", "properties": { "dbscan": "noise", "marker-color": "#AEAEAE", "marker-symbol": "circle-stroked", "marker-size": "medium" }, "geometry": { "type": "Point", "coordinates": [-79.99265814798184, 27.483971653923085] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.63635988061537, 18.75973134353604] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.76340181762502, 26.57219504751686] } }, { "type": "Feature", "properties": { "cluster": 12, "dbscan": "edge", "marker-color": "#008299", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.45164209210782, 23.76673190659356] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.65455892791887, 27.186142540274957] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.03313564896565, 24.333750064476934] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.87222884039794, 19.159104199268683] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.54286133638129, 24.13575708893132] } }, { "type": "Feature", "properties": { "dbscan": "noise", "marker-color": "#AEAEAE", "marker-symbol": "circle-stroked", "marker-size": "medium" }, "geometry": { "type": "Point", "coordinates": [-83.26242751330523, 20.472647289870025] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.80042213720098, 20.990256802329768] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.5874725368364, 25.039930971231904] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.85825660840021, 25.43539990016023] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.17454776573982, 23.461743771248557] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.40002194939215, 20.67151202116478] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.23963323045145, 23.244627904260923] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.81552101630216, 26.53756981389545] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.9283270010284, 24.674017344728615] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.70000865367116, 21.542018533522416] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.48978633680683, 19.623096473871033] } }, { "type": "Feature", "properties": { "cluster": 6, "dbscan": "core", "marker-color": "#ff9200", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.67175298435387, 17.880881534565148] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.04610391202878, 26.551597087996466] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.84175265531377, 16.85074369818602] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#6d00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.95908129532202, 21.185424844181092] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.88684525321649, 18.726646021819167] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.15582212817301, 18.696902173553443] } }, { "type": "Feature", "properties": { "dbscan": "noise", "marker-color": "#AEAEAE", "marker-symbol": "circle-stroked", "marker-size": "medium" }, "geometry": { "type": "Point", "coordinates": [-77.5644212682104, 20.850894115743387] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.37878622301193, 16.91615114076283] } }, { "type": "Feature", "properties": { "cluster": 3, "dbscan": "core", "marker-color": "#ff00b5", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.81019601780373, 17.165972386566605] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.4614226211491, 23.444082141644998] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.18265845716839, 25.295833894402776] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.09803657824347, 23.3454534216312] } }, { "type": "Feature", "properties": { "cluster": 6, "dbscan": "core", "marker-color": "#ff9200", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.34448173717335, 17.84048983960788] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.18827115285569, 20.273168111170328] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.26216347689832, 23.673136982276464] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.21575485381635, 23.096925087889748] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.01908584146595, 21.557475862048076] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.92274968888073, 26.019876080997598] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#6d00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.55727606952377, 22.36430316761306] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.25891612041117, 19.525184281200534] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.64279747070925, 25.651725881829897] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.40499501048518, 16.63021658406485] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.64998704253041, 24.234779530366744] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.30467012694315, 17.92521920364085] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.76550387867614, 21.84873202139447] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.2770011073176, 26.540918581152965] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.20171143790367, 24.334344930797855] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.51391779937516, 18.211967578932978] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.81858154084357, 19.071318793255987] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.87897523658762, 22.009563011217917] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.17146072076018, 22.71145107992815] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.14138268439117, 27.295964747431004] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.01085563325441, 23.60461239295877] } }, { "type": "Feature", "properties": { "cluster": 8, "dbscan": "core", "marker-color": "#91ff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.61068998466835, 21.311283807756645] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.76701891828932, 27.195861233372437] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.55059712821668, 25.49682672225246] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#6d00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.42534293525704, 20.342801196105015] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.85957138950651, 25.651916540759668] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.67260570784427, 20.45532583962798] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.81872422593077, 21.669857512462364] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.38646877459935, 19.37340763751337] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.50710379745864, 18.424063455433217] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.632893967135, 23.107454998460437] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.36852553393699, 24.295072371424403] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.86140755178053, 17.50071319492512] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.56458486764306, 23.27787869671228] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.25719355261317, 18.841254641177088] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.79365159485565, 24.73837411446049] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.77110623794552, 22.880747711470292] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.17830942471453, 27.459109723499697] } }, { "type": "Feature", "properties": { "cluster": 6, "dbscan": "core", "marker-color": "#ff9200", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.5062774214051, 17.326690422594897] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.19600112265177, 22.73914989583398] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.58173201222138, 23.850997885697698] } }, { "type": "Feature", "properties": { "cluster": 3, "dbscan": "core", "marker-color": "#ff00b5", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.71045285694422, 17.079742569860166] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.34171838085163, 22.153445077419946] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.55081810986574, 24.915158163291853] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.59793295622734, 18.75099342612817] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.14433438213305, 27.036543336370556] } }, { "type": "Feature", "properties": { "cluster": 9, "dbscan": "core", "marker-color": "#24ff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.4434583942987, 19.619680064723546] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.51440928893466, 19.680938852916263] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.95150377384275, 26.91911731157561] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.4550593256632, 24.03016205722427] } }, { "type": "Feature", "properties": { "cluster": 4, "dbscan": "core", "marker-color": "#ff0047", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.8228436577642, 25.845318184468677] } }, { "type": "Feature", "properties": { "cluster": 3, "dbscan": "core", "marker-color": "#ff00b5", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.16769788043096, 16.98191521287846] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.51634149582756, 19.10937565092933] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.72446682780881, 22.25313981239625] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.95113454727932, 26.357292830184782] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.89319872559254, 21.773847762169503] } }, { "type": "Feature", "properties": { "cluster": 10, "dbscan": "core", "marker-color": "#00ff49", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.50995550468448, 26.805856081166645] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.72311173060332, 27.453459491416243] } }, { "type": "Feature", "properties": { "cluster": 6, "dbscan": "core", "marker-color": "#ff9200", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.20796912251339, 16.910765069076696] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.02923748665658, 17.06286092924691] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.67236850288222, 19.00571371998642] } }, { "type": "Feature", "properties": { "cluster": 6, "dbscan": "core", "marker-color": "#ff9200", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.43657840692077, 17.42104681957319] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.48932636312891, 18.050155326157473] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.76206658518934, 23.71467590682046] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.46253580071742, 22.833272724615775] } }, { "type": "Feature", "properties": { "cluster": 6, "dbscan": "core", "marker-color": "#ff9200", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.09703651590019, 17.421833037838393] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.61013158110691, 23.65729956086801] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.66397149031135, 25.831969038126523] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.1727623444978, 24.152605040309613] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.2741188221817, 18.639289071153634] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.90735829536999, 18.190052908059194] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.32489553257798, 19.57470756961103] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.01326798044877, 24.122014119489563] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.52731994000185, 26.95480013106508] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.3558896446572, 17.44256116852827] } }, { "type": "Feature", "properties": { "cluster": 6, "dbscan": "core", "marker-color": "#ff9200", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.02534851234576, 16.756254338847338] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.47025910061983, 24.118620545794855] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.308362589921, 20.54596248507216] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.34538728645822, 24.41450380344747] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.33122422882889, 23.37013167679639] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.27561331569953, 16.994251063813262] } }, { "type": "Feature", "properties": { "cluster": 4, "dbscan": "core", "marker-color": "#ff0047", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.86851913822156, 25.81027224474102] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.24173363419717, 24.34323106176321] } }, { "type": "Feature", "properties": { "dbscan": "noise", "marker-color": "#AEAEAE", "marker-symbol": "circle-stroked", "marker-size": "medium" }, "geometry": { "type": "Point", "coordinates": [-70.84877351272029, 26.92445686110058] } }, { "type": "Feature", "properties": { "dbscan": "noise", "marker-color": "#AEAEAE", "marker-symbol": "circle-stroked", "marker-size": "medium" }, "geometry": { "type": "Point", "coordinates": [-74.71160840330522, 21.77620359204627] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.20296576353552, 21.709322849932395] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.04325753495058, 24.349990861490674] } }, { "type": "Feature", "properties": { "cluster": 11, "dbscan": "core", "marker-color": "#00ffb7", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.01507615292597, 18.68916636419406] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#6d00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.98455859943033, 21.06707023138771] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#6d00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.40609968225364, 21.87541299401925] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.66122425689909, 19.364456854255717] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.2600583537702, 21.659164464794838] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.73592652087561, 17.55179712679042] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.80434002543046, 18.311428726658654] } }, { "type": "Feature", "properties": { "dbscan": "noise", "marker-color": "#AEAEAE", "marker-symbol": "circle-stroked", "marker-size": "medium" }, "geometry": { "type": "Point", "coordinates": [-78.89936609149818, 27.20566948335109] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.9153275956025, 22.728686372271056] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.22442161042382, 20.946470968784404] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.23254193941007, 26.262181726505418] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.62437731409852, 19.781049107501957] } }, { "type": "Feature", "properties": { "cluster": 3, "dbscan": "core", "marker-color": "#ff00b5", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.49173903601617, 16.92003208241821] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.25829317577141, 21.827114782054075] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.65532298324348, 17.29988957265243] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.3453947248687, 24.50576556423695] } }, { "type": "Feature", "properties": { "cluster": 13, "dbscan": "edge", "marker-color": "#004099", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.37506450657898, 16.711071194315227] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#6d00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.42569161383636, 21.026826554775827] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.43791743989885, 24.962432920525124] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.84458598730575, 23.70594482686843] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.37848518046901, 26.34378098000883] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.13497764736996, 17.934013939878078] } }, { "type": "Feature", "properties": { "cluster": 3, "dbscan": "core", "marker-color": "#ff00b5", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.54709582459233, 16.53706271986311] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.17844562558024, 23.80702766062598] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.64984925794586, 27.17403653643745] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.89153777133139, 23.170952976617727] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.93875091618717, 25.00047089937265] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.9102252552082, 23.883340808622673] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.45068182631776, 24.018640243238202] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.56517209188608, 24.748894301890655] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.41470444523833, 26.791071724795167] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.27546806320538, 24.62810216606337] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.37798026966385, 22.800554127763526] } }, { "type": "Feature", "properties": { "cluster": 11, "dbscan": "core", "marker-color": "#00ffb7", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.67038090634749, 19.518488261229543] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.51124408675949, 18.95091920687403] } }, { "type": "Feature", "properties": { "dbscan": "noise", "marker-color": "#AEAEAE", "marker-symbol": "circle-stroked", "marker-size": "medium" }, "geometry": { "type": "Point", "coordinates": [-71.72209650039468, 24.280447748568445] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.28434198674468, 17.20571626766068] } }, { "type": "Feature", "properties": { "cluster": 7, "dbscan": "core", "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.15681636726895, 26.828785859624258] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.11344269598334, 17.666989151972253] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.96994176238145, 22.888540550894795] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.50079368006108, 26.634382308937134] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.54280695688689, 23.237868840297253] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.59204571681656, 24.786873137315194] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.01377215866017, 18.936419309424537] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.01405131484972, 18.581612310870824] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.6420973159142, 18.58453117274099] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.74759623801513, 26.12337676616272] } }, { "type": "Feature", "properties": { "cluster": 11, "dbscan": "core", "marker-color": "#00ffb7", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.05313261324237, 19.319796400696145] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.13970036126891, 17.506087557394512] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#6d00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.75848457074353, 21.115370497855984] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.16830971446066, 24.6894321007414] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.21048541308969, 17.919231608494442] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.97637737411591, 23.150822409149665] } }, { "type": "Feature", "properties": { "dbscan": "noise", "marker-color": "#AEAEAE", "marker-symbol": "circle-stroked", "marker-size": "medium" }, "geometry": { "type": "Point", "coordinates": [-81.98806643205722, 18.733700354050203] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.73009496457921, 23.7983464395302] } }, { "type": "Feature", "properties": { "cluster": 11, "dbscan": "core", "marker-color": "#00ffb7", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.21686530340585, 18.59063554310776] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.94846192062774, 19.236367113472895] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.97783503664645, 19.823228188109127] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.31384918144222, 22.633190689556994] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.49404471100601, 22.009751251682275] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.1270341028659, 25.781532521957693] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.51950761862354, 23.496329401717578] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#6d00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.67344643947845, 20.92896756107965] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.28006204700529, 18.638001663502685] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.33788518686183, 24.089777622921456] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.03458096249997, 22.65764273416216] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.80104984355006, 26.237062559189845] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.21242542631086, 20.177739085659635] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.38674449250746, 17.652491491363605] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.93734071291428, 23.99085830463023] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.20251485577793, 26.55556740273682] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.73360568748585, 26.28033941085063] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.13262960963559, 22.34430874872904] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.54532805510269, 17.55045667323678] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.80026818559628, 18.561998669158292] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.28628835491551, 19.571063802546057] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.58131591277606, 24.21369712743759] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.88085722918547, 19.753718721210948] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.64966522234937, 20.677188588895476] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.24840889524553, 19.69712523257967] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.96400931937723, 18.174770180214516] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.70189850382681, 16.534625567595363] } }, { "type": "Feature", "properties": { "cluster": 4, "dbscan": "core", "marker-color": "#ff0047", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.810090294371, 25.23156636266861] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.17536572906562, 19.792647657345] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.79193518864761, 24.737897659493715] } }, { "type": "Feature", "properties": { "cluster": 11, "dbscan": "core", "marker-color": "#00ffb7", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.93555696939467, 19.98152959915939] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.21354373461136, 25.88846335275895] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.32534041974515, 26.094983944812824] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.97472021053458, 26.061373986456793] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.84081911742697, 23.793624669453152] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.24844766066971, 24.484245781333726] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.90249827777127, 22.05793250583984] } }, { "type": "Feature", "properties": { "cluster": 10, "dbscan": "core", "marker-color": "#00ff49", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.07748325170441, 27.337367361375666] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.52285998029147, 17.487274302366117] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.81251634431071, 20.933095236667395] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.58692805675213, 24.80146814851551] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.47378831903654, 21.652685460023044] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.70162022475394, 19.229694616459863] } }, { "type": "Feature", "properties": { "dbscan": "noise", "marker-color": "#AEAEAE", "marker-symbol": "circle-stroked", "marker-size": "medium" }, "geometry": { "type": "Point", "coordinates": [-71.78777310048918, 23.92218146021364] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.80552346807535, 22.161467782172014] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.55667427680913, 22.171811135508918] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.49928602385201, 27.41608769703238] } }, { "type": "Feature", "properties": { "cluster": 6, "dbscan": "core", "marker-color": "#ff9200", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.34842284656386, 17.435895054282373] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.21228170738233, 22.173670632023597] } }, { "type": "Feature", "properties": { "cluster": 8, "dbscan": "core", "marker-color": "#91ff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.90881672418563, 21.468642424655155] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.56477901274141, 23.02518524523849] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.43974652662247, 22.60413987147912] } }, { "type": "Feature", "properties": { "cluster": 9, "dbscan": "core", "marker-color": "#24ff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.5883411017305, 19.917932537792794] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.35881511009039, 19.09687830115208] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.72145863838075, 25.18049472134159] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.95694749118951, 27.39255408553263] } }, { "type": "Feature", "properties": { "dbscan": "noise", "marker-color": "#AEAEAE", "marker-symbol": "circle-stroked", "marker-size": "medium" }, "geometry": { "type": "Point", "coordinates": [-84.44936060272309, 27.49130192814892] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.61820042082097, 23.049137776556364] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.10989174097693, 18.469712160553517] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.379040540202, 20.37524788330293] } }, { "type": "Feature", "properties": { "cluster": 6, "dbscan": "core", "marker-color": "#ff9200", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.51495780456581, 16.669087042407536] } }, { "type": "Feature", "properties": { "cluster": 13, "dbscan": "edge", "marker-color": "#004099", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.10886304098058, 16.8269149948045] } }, { "type": "Feature", "properties": { "cluster": 6, "dbscan": "core", "marker-color": "#ff9200", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.72560883757795, 16.962762773864505] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.89333076284501, 24.384990740752006] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.59332944904146, 24.120911542546878] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.42817901090537, 17.74846475203746] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.89833899459296, 19.72230811960007] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.98171564844314, 21.140743955694063] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.99706809934376, 18.63550290606603] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.13208804398411, 19.266357159361213] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.44208974284808, 18.89754661420165] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.67095396405709, 17.953443362949123] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.61949782551551, 25.38069882274378] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.82927583009545, 18.920544836399152] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.71898403700982, 22.858679743400074] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.05832892131573, 25.244587077548168] } }, { "type": "Feature", "properties": { "cluster": 6, "dbscan": "core", "marker-color": "#ff9200", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.53486708882008, 18.05579400531109] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.3189432679756, 20.059875630170964] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.96213190737039, 26.279325304846623] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.44927404052561, 17.791447001826654] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.39338327111777, 24.626502743687922] } }, { "type": "Feature", "properties": { "cluster": 4, "dbscan": "core", "marker-color": "#ff0047", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.58570795493182, 25.546633692923525] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.83961825329554, 25.484747617185402] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.87200031832714, 23.66114743521159] } }, { "type": "Feature", "properties": { "cluster": 9, "dbscan": "core", "marker-color": "#24ff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.83487262625073, 20.095259588587723] } }, { "type": "Feature", "properties": { "cluster": 3, "dbscan": "core", "marker-color": "#ff00b5", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.91640675333899, 16.590848739189624] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.30245460933854, 19.23352889608482] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.14994486721066, 20.53183273996738] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.80521037357039, 21.252980629644455] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.8787989831883, 18.218515429796344] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.76978734183139, 17.7977450107505] } }, { "type": "Feature", "properties": { "cluster": 4, "dbscan": "core", "marker-color": "#ff0047", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.80371392928168, 26.040116775073876] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.95744087420283, 25.191234441288678] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.77674346051477, 21.375540465284374] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.29292929991102, 21.98589295297564] } }, { "type": "Feature", "properties": { "cluster": 4, "dbscan": "core", "marker-color": "#ff0047", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.66745422227388, 26.168091294302087] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.92295434812097, 23.30372425686007] } }, { "type": "Feature", "properties": { "cluster": 4, "dbscan": "core", "marker-color": "#ff0047", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.96026394085236, 25.51392205303288] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.43164354544895, 17.413235272364112] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.28566063654243, 18.482281406816814] } }, { "type": "Feature", "properties": { "dbscan": "noise", "marker-color": "#AEAEAE", "marker-symbol": "circle-stroked", "marker-size": "medium" }, "geometry": { "type": "Point", "coordinates": [-79.18586938186745, 27.019278441405643] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.00665657564603, 18.009509829132515] } }, { "type": "Feature", "properties": { "cluster": 4, "dbscan": "core", "marker-color": "#ff0047", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.78174587415, 25.852826126614094] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.17395695535176, 20.322052935788367] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.75631134659818, 27.4074383447763] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.30133416063728, 22.908999108726512] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.5468209860248, 25.79011427888136] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.50335139484208, 25.338279000551893] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.85611159709538, 24.40263258506802] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.19143746995799, 22.76299900389558] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.49961985245375, 23.749896556565293] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.93434205722116, 17.8751516982336] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.47725300277814, 20.834238692742822] } }, { "type": "Feature", "properties": { "cluster": 12, "dbscan": "core", "marker-color": "#00daff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.40866406564102, 24.65588369863437] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.23086732338659, 22.010870880797054] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.55598541988493, 23.62640751670331] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.067479899787, 22.44918038801505] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.5723788030903, 23.774277575000852] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.68634851848167, 23.203154689599817] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.97302399035408, 22.395504699565535] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.47937906764957, 24.839570106333433] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.63060572237521, 22.939370867570908] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.28374988273468, 16.800162341500304] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#6d00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.01980255637385, 21.18954858284259] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.80981841825783, 16.752970728846513] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.0632043924848, 17.78197939775129] } }, { "type": "Feature", "properties": { "dbscan": "noise", "marker-color": "#AEAEAE", "marker-symbol": "circle-stroked", "marker-size": "medium" }, "geometry": { "type": "Point", "coordinates": [-73.31937806169958, 16.63036465541673] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.51362280935948, 19.07306061464646] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.6462554841785, 18.765258635070385] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.90737511126233, 25.663681166863604] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.3184598837461, 20.339708336838683] } }, { "type": "Feature", "properties": { "cluster": 9, "dbscan": "core", "marker-color": "#24ff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.25614050898571, 20.47865304539995] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.05273739031475, 27.278196207610172] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.57090751033381, 25.058967866824403] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.72044789264216, 17.86742294760512] } }, { "type": "Feature", "properties": { "cluster": 10, "dbscan": "core", "marker-color": "#00ff49", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.45286775268717, 27.264956115483226] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.46924741699405, 22.27588495796526] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.2743504888918, 26.691822644671085] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.18119091611597, 24.755151867045228] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.9753411638257, 22.736683695999382] } }, { "type": "Feature", "properties": { "cluster": 6, "dbscan": "core", "marker-color": "#ff9200", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.17815192274419, 17.766464076510605] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.79951671731996, 16.979753651505465] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.81530228240368, 21.899431865794316] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.15292492090326, 18.519443297834165] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.11308732341453, 22.73505946813462] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.00830955618024, 21.885311144830727] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.54728340532579, 17.713742740545893] } }, { "type": "Feature", "properties": { "cluster": 4, "dbscan": "core", "marker-color": "#ff0047", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.53755328892348, 25.323104677883705] } }, { "type": "Feature", "properties": { "dbscan": "noise", "marker-color": "#AEAEAE", "marker-symbol": "circle-stroked", "marker-size": "medium" }, "geometry": { "type": "Point", "coordinates": [-76.68105867358958, 27.21289905396955] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.96411774831036, 22.888644254222072] } }, { "type": "Feature", "properties": { "cluster": 8, "dbscan": "core", "marker-color": "#91ff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.98170526139158, 20.98332034823357] } }, { "type": "Feature", "properties": { "cluster": 11, "dbscan": "core", "marker-color": "#00ffb7", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.56755786305595, 19.40265705295205] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.9097441614737, 25.69899354986159] } }, { "type": "Feature", "properties": { "cluster": 13, "dbscan": "core", "marker-color": "#006cff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.8522033753837, 16.57371866969067] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.59048812893998, 22.36793387394907] } }, { "type": "Feature", "properties": { "cluster": 6, "dbscan": "core", "marker-color": "#ff9200", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.69797232502891, 17.49676706923224] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.4273474590883, 20.29560385897871] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.75702086888295, 18.06842605714349] } }, { "type": "Feature", "properties": { "cluster": 12, "dbscan": "core", "marker-color": "#00daff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.93509999305662, 24.197922897145702] } }, { "type": "Feature", "properties": { "dbscan": "noise", "marker-color": "#AEAEAE", "marker-symbol": "circle-stroked", "marker-size": "medium" }, "geometry": { "type": "Point", "coordinates": [-70.59056449409796, 17.249155158477635] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.04442014558218, 20.180967527569678] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.37084983049334, 18.874173436903888] } }, { "type": "Feature", "properties": { "cluster": 12, "dbscan": "core", "marker-color": "#00daff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.56890381178304, 24.88700194600341] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.06300053256552, 25.068476848998436] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.07431215190033, 23.634255220677876] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.97261043138833, 20.783569456567577] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.69220087076908, 23.99722100792555] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.28624765409677, 19.684275914963393] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.26371632117386, 23.468899954784128] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.64211828010676, 22.535063069435896] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.76720344494535, 17.95425416674962] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.84949687526881, 23.882703836621122] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.51599855499506, 22.18056139559293] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.0586637697147, 22.618118595420675] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.82988603140993, 22.75446266986306] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#6d00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.10048201961024, 21.361849810266136] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.04153303125153, 20.350657127526738] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.59504589774306, 27.064096554971023] } }, { "type": "Feature", "properties": { "cluster": 3, "dbscan": "core", "marker-color": "#ff00b5", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.07548891214728, 17.301084891511273] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.33158765668573, 19.452979509754268] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.81854336800883, 24.131395375394586] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.684418563593, 21.47654476359144] } }, { "type": "Feature", "properties": { "dbscan": "noise", "marker-color": "#AEAEAE", "marker-symbol": "circle-stroked", "marker-size": "medium" }, "geometry": { "type": "Point", "coordinates": [-83.00730697784353, 25.897847636990367] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.40829350874473, 27.268125557919248] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.2707934048482, 20.982305048038683] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.38809337052642, 26.427105032557755] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.0134734724832, 25.13419607033201] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.17642686622017, 25.221069930712087] } }, { "type": "Feature", "properties": { "cluster": 11, "dbscan": "core", "marker-color": "#00ffb7", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.71994017762563, 20.189025977120103] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.29187361259146, 27.392240106344147] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.79976558388476, 20.035863120368496] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.3275873181896, 23.43075879262019] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.30217792473226, 22.66331518976522] } }, { "type": "Feature", "properties": { "cluster": 11, "dbscan": "core", "marker-color": "#00ffb7", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.02504204870841, 18.793197099411397] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.96796993174219, 24.703657172369798] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.41505346819054, 25.017559911985607] } }, { "type": "Feature", "properties": { "cluster": 11, "dbscan": "core", "marker-color": "#00ffb7", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.287484618002, 19.75003759357949] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.25519670513809, 19.980973614544432] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.3831207434748, 20.990164116130572] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.30367109087219, 25.1900948213395] } }, { "type": "Feature", "properties": { "cluster": 6, "dbscan": "core", "marker-color": "#ff9200", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.33929483454432, 17.79933711363019] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.3072622609112, 19.064713633397105] } }, { "type": "Feature", "properties": { "cluster": 3, "dbscan": "core", "marker-color": "#ff00b5", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.09464045072042, 16.867824298530778] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.01339730011378, 25.682665424232965] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.74959288173342, 17.47999904710256] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.95625724719481, 26.53239538653403] } }, { "type": "Feature", "properties": { "cluster": 10, "dbscan": "core", "marker-color": "#00ff49", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.95900351362758, 26.964513550251407] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.22624323598141, 17.943008474474265] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.14342020536195, 18.867794740406104] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.61849018164143, 22.47855670455455] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.7861071942679, 18.669738072373164] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.00369227814197, 24.612757650509216] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.77138891405684, 20.81044983619232] } }, { "type": "Feature", "properties": { "dbscan": "noise", "marker-color": "#AEAEAE", "marker-symbol": "circle-stroked", "marker-size": "medium" }, "geometry": { "type": "Point", "coordinates": [-70.89623600838752, 19.396975077838288] } }, { "type": "Feature", "properties": { "cluster": 10, "dbscan": "core", "marker-color": "#00ff49", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.40595166597085, 26.80155978434455] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.80825302190365, 23.35316310450464] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.96259557904392, 24.196187792487656] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.08863800575135, 25.15698262014013] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.75695759804495, 20.08490410319372] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.42234796309599, 26.22301149374214] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.26218882048389, 26.41236152098589] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.87135659444625, 17.56355668256735] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.49722908932829, 21.926256397875694] } }, { "type": "Feature", "properties": { "cluster": 4, "dbscan": "core", "marker-color": "#ff0047", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.7096594822639, 24.460836562368442] } }, { "type": "Feature", "properties": { "dbscan": "noise", "marker-color": "#AEAEAE", "marker-symbol": "circle-stroked", "marker-size": "medium" }, "geometry": { "type": "Point", "coordinates": [-71.09304190552334, 27.42090911618883] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.0243253011326, 17.45098074087971] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.25880876997459, 18.567348945414572] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.15374231895991, 19.572527461376602] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.90718745331596, 18.01378466658022] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.3932989046418, 19.030002383084067] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.56289580127358, 23.7331334661265] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.32615130900722, 23.22949976202878] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.32932140159735, 21.369086228743924] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.40761927871347, 22.617986414434352] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.6909951062254, 17.986704731304503] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.38990946382116, 17.402709176906622] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.59495181641225, 22.81831350748234] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.38487102139864, 26.08247375588085] } }, { "type": "Feature", "properties": { "cluster": 5, "dbscan": "core", "marker-color": "#ff2400", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.86031632408672, 24.23389023003475] } }, { "type": "Feature", "properties": { "cluster": 7, "dbscan": "core", "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.76905431857912, 27.471768557404076] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#da00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.43945965828523, 18.638609876647752] } }, { "type": "Feature", "properties": { "marker-color": "#0000ff", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-82.28408175118237, 18.83101672516768] } }, { "type": "Feature", "properties": { "fill": "#000080", "stroke": "#000080", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-80.27561331569953, 16.994251063813262], [-80.52285998029147, 17.487274302366117], [-80.67095396405709, 17.953443362949123], [-81.15582212817301, 18.696902173553443], [-81.25719355261317, 18.841254641177088], [-82.77696496688779, 18.94471042190279], [-83.28006204700529, 18.638001663502685], [-85.13497764736996, 17.934013939878078], [-85.30467012694315, 17.92521920364085], [-84.51391779937516, 18.211967578932978], [-84.50710379745864, 18.424063455433217], [-84.67236850288222, 19.00571371998642], [-84.33158765668573, 19.452979509754268], [-83.71943800617547, 19.616649637864654], [-82.97783503664645, 19.823228188109127], [-82.51440928893466, 19.680938852916263], [-81.28624765409677, 19.684275914963393], [-80.66116457836486, 20.169682381560182], [-80.48978633680683, 19.623096473871033], [-80.35881511009039, 19.09687830115208], [-80.15292492090326, 18.519443297834165], [-79.96400931937723, 18.174770180214516], [-80.00665657564603, 18.009509829132515], [-80.27561331569953, 16.994251063813262] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#6d00ff", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-85.49490340440704, 21.114965400671604] } }, { "type": "Feature", "properties": { "fill": "#360080", "stroke": "#360080", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.26129906562491, 21.294934204528648], [-86.40609968225364, 21.87541299401925], [-86.55727606952377, 22.36430316761306], [-86.10048201961024, 21.361849810266136], [-85.42569161383636, 21.026826554775827], [-85.01980255637385, 21.18954858284259], [-84.75848457074353, 21.115370497855984], [-84.54236384636712, 20.789257545981407], [-84.42534293525704, 20.342801196105015], [-84.48717976822758, 20.224242981590255], [-85.32753919964946, 20.843505437175903], [-85.67344643947845, 20.92896756107965], [-85.98455859943033, 21.06707023138771], [-85.95908129532202, 21.185424844181092], [-86.26129906562491, 21.294934204528648] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#da00ff", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-75.73992434997538, 21.94985759016944] } }, { "type": "Feature", "properties": { "fill": "#6d0080", "stroke": "#6d0080", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.27005222591032, 17.528372337434828], [-78.93434205722116, 17.8751516982336], [-79.43898229878118, 18.874231952472687], [-79.38646877459935, 19.37340763751337], [-80.22266857015823, 20.94137638968897], [-80.2707934048482, 20.982305048038683], [-80.47725300277814, 20.834238692742822], [-80.81251634431071, 20.933095236667395], [-81.3831207434748, 20.990164116130572], [-81.98171564844314, 21.140743955694063], [-82.32932140159735, 21.369086228743924], [-82.80521037357039, 21.252980629644455], [-83.44899512481147, 21.52626642668551], [-83.70000865367116, 21.542018533522416], [-83.00830955618024, 21.885311144830727], [-82.25829317577141, 21.827114782054075], [-82.34171838085163, 22.153445077419946], [-80.04325753495058, 24.349990861490674], [-80.72145863838075, 25.18049472134159], [-80.39732218872196, 25.629464613691137], [-80.23254193941007, 26.262181726505418], [-79.81552101630216, 26.53756981389545], [-79.32534041974515, 26.094983944812824], [-79.3121102967554, 25.956525827964448], [-78.97472021053458, 26.061373986456793], [-78.38487102139864, 26.08247375588085], [-78.37848518046901, 26.34378098000883], [-77.93211879732236, 26.33170236314861], [-78.05273739031475, 27.278196207610172], [-78.17830942471453, 27.459109723499697], [-77.95694749118951, 27.39255408553263], [-77.65455892791887, 27.186142540274957], [-77.64984925794586, 27.17403653643745], [-77.41470444523833, 26.791071724795167], [-77.20251485577793, 26.55556740273682], [-76.96213190737039, 26.279325304846623], [-76.26218882048389, 26.41236152098589], [-75.40829350874473, 27.268125557919248], [-75.06779765523183, 27.276249335066662], [-74.75631134659818, 27.4074383447763], [-74.14433438213305, 27.036543336370556], [-74.07684618758876, 27.17395724732544], [-73.77643699392496, 27.091684659861052], [-73.76701891828932, 27.195861233372437], [-73.14138268439117, 27.295964747431004], [-72.72311173060332, 27.453459491416243], [-72.76340181762502, 26.57219504751686], [-72.95113454727932, 26.357292830184782], [-72.92622530551323, 25.623260952842156], [-72.9283270010284, 24.674017344728615], [-72.59204571681656, 24.786873137315194], [-72.3275873181896, 23.43075879262019], [-71.89153777133139, 23.170952976617727], [-71.56458486764306, 23.27787869671228], [-71.30133416063728, 22.908999108726512], [-71.17146072076018, 22.71145107992815], [-70.8076846951252, 22.255910609327792], [-70.81872422593077, 21.669857512462364], [-70.94492705924428, 21.0702981386651], [-71.22442161042382, 20.946470968784404], [-71.23882701110625, 20.30184311650061], [-71.37084983049334, 18.874173436903888], [-70.63635988061537, 18.75973134353604], [-70.80026818559628, 18.561998669158292], [-70.76720344494535, 17.95425416674962], [-71.42817901090537, 17.74846475203746], [-71.42324858424885, 17.48175433130492], [-71.3558896446572, 17.44256116852827], [-71.43164354544895, 17.413235272364112], [-71.65532298324348, 17.29988957265243], [-72.02923748665658, 17.06286092924691], [-72.72044789264216, 17.86742294760512], [-72.99075803676163, 17.651929487468298], [-73.21048541308969, 17.919231608494442], [-73.73592652087561, 17.55179712679042], [-74.38674449250746, 17.652491491363605], [-75.0632043924848, 17.78197939775129], [-75.86140755178053, 17.50071319492512], [-76.0243253011326, 17.45098074087971], [-76.38990946382116, 17.402709176906622], [-76.70189850382681, 16.534625567595363], [-76.80981841825783, 16.752970728846513], [-77.28374988273468, 16.800162341500304], [-77.40499501048518, 16.63021658406485], [-77.65357594791968, 16.66838838845727], [-77.84175265531377, 16.85074369818602], [-77.79951671731996, 16.979753651505465], [-78.28434198674468, 17.20571626766068], [-78.51548817891319, 17.202270132332913], [-79.13970036126891, 17.506087557394512], [-79.27005222591032, 17.528372337434828] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#ff00b5", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-85.23373053592442, 16.8920553982022] } }, { "type": "Feature", "properties": { "fill": "#80005a", "stroke": "#80005a", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.54709582459233, 16.53706271986311], [-86.16769788043096, 16.98191521287846], [-86.07548891214728, 17.301084891511273], [-84.81019601780373, 17.165972386566605], [-84.71045285694422, 17.079742569860166], [-84.28985709132587, 16.584015683001546], [-84.91640675333899, 16.590848739189624], [-85.54709582459233, 16.53706271986311] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#ff0047", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-71.1194577566574, 25.589091707982796] } }, { "type": "Feature", "properties": { "fill": "#800023", "stroke": "#800023", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-71.810090294371, 25.23156636266861], [-71.96026394085236, 25.51392205303288], [-71.66745422227388, 26.168091294302087], [-71.11420407247648, 26.113452348786268], [-70.80371392928168, 26.040116775073876], [-70.78174587415, 25.852826126614094], [-70.58570795493182, 25.546633692923525], [-70.67472974247343, 24.956264380693316], [-70.7096594822639, 24.460836562368442], [-71.53755328892348, 25.323104677883705], [-71.810090294371, 25.23156636266861] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#ff2400", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-84.26550046355221, 24.44198758419083] } }, { "type": "Feature", "properties": { "fill": "#801200", "stroke": "#801200", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.84081911742697, 23.793624669453152], [-86.84949687526881, 23.882703836621122], [-86.96796993174219, 24.703657172369798], [-86.55081810986574, 24.915158163291853], [-86.57393282654176, 26.261024024692077], [-86.95625724719481, 26.53239538653403], [-86.59504589774306, 27.064096554971023], [-85.49928602385201, 27.41608769703238], [-85.29187361259146, 27.392240106344147], [-85.28525543556775, 26.722194267296018], [-85.2743504888918, 26.691822644671085], [-85.7199945397987, 25.802953128684692], [-85.42010129302429, 25.72860309981145], [-85.0823710181298, 25.482920857480014], [-84.90737511126233, 25.663681166863604], [-84.85957138950651, 25.651916540759668], [-84.66397149031135, 25.831969038126523], [-84.21354373461136, 25.88846335275895], [-83.74759623801513, 26.12337676616272], [-83.83961825329554, 25.484747617185402], [-83.53680657077764, 25.303329199906706], [-83.10661507770358, 25.13063963201959], [-82.56517209188608, 24.748894301890655], [-82.27546806320538, 24.62810216606337], [-82.3562097070285, 24.24226765651852], [-82.17844562558024, 23.80702766062598], [-81.49961985245375, 23.749896556565293], [-81.26371632117386, 23.468899954784128], [-81.21575485381635, 23.096925087889748], [-80.19600112265177, 22.73914989583398], [-80.37798026966385, 22.800554127763526], [-80.82988603140993, 22.75446266986306], [-81.0586637697147, 22.618118595420675], [-81.61820042082097, 23.049137776556364], [-81.77110623794552, 22.880747711470292], [-81.96411774831036, 22.888644254222072], [-82.28388468077954, 22.883779502221373], [-82.86222771555597, 22.720569651349564], [-83.2729878125471, 23.65784314034355], [-83.55598541988493, 23.62640751670331], [-83.87200031832714, 23.66114743521159], [-84.09803657824347, 23.3454534216312], [-84.19143746995799, 22.76299900389558], [-84.31384918144222, 22.633190689556994], [-84.59495181641225, 22.81831350748234], [-84.96994176238145, 22.888540550894795], [-85.2549851564484, 22.35997051326973], [-85.61849018164143, 22.47855670455455], [-86.17454776573982, 23.461743771248557], [-86.84081911742697, 23.793624669453152] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#ff9200", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-82.14437416584026, 17.41110464007145] } }, { "type": "Feature", "properties": { "fill": "#804900", "stroke": "#804900", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-83.33929483454432, 17.79933711363019], [-83.34448173717335, 17.84048983960788], [-82.67175298435387, 17.880881534565148], [-81.53486708882008, 18.05579400531109], [-81.69797232502891, 17.49676706923224], [-81.53689212714627, 17.422501403729605], [-81.43657840692077, 17.42104681957319], [-81.34842284656386, 17.435895054282373], [-81.02534851234576, 16.756254338847338], [-81.51495780456581, 16.669087042407536], [-81.72560883757795, 16.962762773864505], [-82.20796912251339, 16.910765069076696], [-82.5062774214051, 17.326690422594897], [-83.09703651590019, 17.421833037838393], [-83.17815192274419, 17.766464076510605], [-83.33929483454432, 17.79933711363019] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#ffff00", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-80.96312016186486, 27.219565274371575] } }, { "type": "Feature", "properties": { "fill": "#808000", "stroke": "#808000", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-80.76905431857912, 27.471768557404076], [-81.15681636726895, 26.828785859624258], [-80.96348979974654, 27.35814140608639], [-80.76905431857912, 27.471768557404076] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#91ff00", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-76.16707065674852, 21.25441552688179] } }, { "type": "Feature", "properties": { "fill": "#488000", "stroke": "#488000", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.98170526139158, 20.98332034823357], [-76.61068998466835, 21.311283807756645], [-75.90881672418563, 21.468642424655155], [-75.98170526139158, 20.98332034823357] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#24ff00", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-78.78070315781642, 20.027881309126002] } }, { "type": "Feature", "properties": { "fill": "#128000", "stroke": "#128000", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-78.4434583942987, 19.619680064723546], [-79.25614050898571, 20.47865304539995], [-78.83487262625073, 20.095259588587723], [-78.5883411017305, 19.917932537792794], [-78.4434583942987, 19.619680064723546] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#00ff49", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-82.75601339734492, 26.90145854875671] } }, { "type": "Feature", "properties": { "fill": "#008025", "stroke": "#008025", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-82.13081869539506, 26.23449839991876], [-83.40595166597085, 26.80155978434455], [-83.07748325170441, 27.337367361375666], [-82.45286775268717, 27.264956115483226], [-82.50995550468448, 26.805856081166645], [-82.13081869539506, 26.23449839991876] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#00ffb7", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-86.20743398331993, 19.233369341871892] } }, { "type": "Feature", "properties": { "fill": "#00805c", "stroke": "#00805c", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.58330318049086, 18.09915952726896], [-86.05313261324237, 19.319796400696145], [-86.56755786305595, 19.40265705295205], [-86.71994017762563, 20.189025977120103], [-85.93555696939467, 19.98152959915939], [-85.67038090634749, 19.518488261229543], [-86.02504204870841, 18.793197099411397], [-86.01507615292597, 18.68916636419406], [-86.21686530340585, 18.59063554310776], [-86.58330318049086, 18.09915952726896] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#00daff", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-81.09107749064712, 24.37688511209426] } }, { "type": "Feature", "properties": { "fill": "#006c80", "stroke": "#006c80", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.40866406564102, 24.65588369863437], [-81.56890381178304, 24.88700194600341], [-80.45164209210782, 23.76673190659356], [-80.93509999305662, 24.197922897145702], [-81.40866406564102, 24.65588369863437] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#006cff", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-74.77871030764776, 16.703901619603467] } }, { "type": "Feature", "properties": { "fill": "#003580", "stroke": "#003580", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.8522033753837, 16.57371866969067], [-75.10886304098058, 16.8269149948045], [-74.37506450657898, 16.711071194315227], [-74.8522033753837, 16.57371866969067] ] ] } } ] } ================================================ FILE: packages/turf-clusters-dbscan/test/out/noise.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.46337890625, 23.059516273509303] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.353515625, 23.120153621695614] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.36450195312499, 23.074678175027337] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.19970703125, 23.221154981846556] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.19970703125, 23.089838367476705] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.28759765625, 22.99379497224218] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff0000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.8551025390625, 20.035289711352377] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff0000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.6683349609375, 20.128155311797183] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff0000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.73974609375, 20.122997556207757] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff0000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.6683349609375, 20.030128899024707] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff0000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.80017089843749, 20.040450354169483] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff0000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.9375, 20.195190636474504] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff0000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.00341796875, 19.947532877989353] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff0000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.7562255859375, 20.014645445341365] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#00ff01", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.46936035156249, 22.070368801349257] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#00ff01", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.34027099609375, 22.2026634080092] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#00ff01", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.35675048828125, 22.12126604542578] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#00ff01", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.43914794921875, 22.271305748177635] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#00ff01", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.38970947265625, 22.021999432851782] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#00ff01", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.55999755859375, 22.118721619281263] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#00ff01", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.54351806640625, 22.0525504317147] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff0000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.94024658203124, 20.360077646657153] } }, { "type": "Feature", "properties": { "dbscan": "noise", "marker-color": "#AEAEAE", "marker-symbol": "circle-stroked", "marker-size": "medium" }, "geometry": { "type": "Point", "coordinates": [-77.71728515624999, 21.596150576461426] } }, { "type": "Feature", "properties": { "dbscan": "noise", "marker-color": "#AEAEAE", "marker-symbol": "circle-stroked", "marker-size": "medium" }, "geometry": { "type": "Point", "coordinates": [-78.046875, 18.218916080017465] } }, { "type": "Feature", "properties": { "dbscan": "noise", "marker-color": "#AEAEAE", "marker-symbol": "circle-stroked", "marker-size": "medium" }, "geometry": { "type": "Point", "coordinates": [-82.46337890625, 21.718679805703154] } }, { "type": "Feature", "properties": { "marker-color": "#0000ff", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-82.3114013671875, 23.093189398632948] } }, { "type": "Feature", "properties": { "fill": "#000080", "stroke": "#000080", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-82.28759765625, 22.99379497224218], [-82.46337890625, 23.059516273509303], [-82.36450195312499, 23.074678175027337], [-82.353515625, 23.120153621695614], [-82.19970703125, 23.221154981846556], [-82.19970703125, 23.089838367476705], [-82.28759765625, 22.99379497224218] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#ff0000", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-75.81878662109375, 20.097163159890428] } }, { "type": "Feature", "properties": { "fill": "#800000", "stroke": "#800000", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.6683349609375, 20.030128899024707], [-75.7562255859375, 20.014645445341365], [-75.80017089843749, 20.040450354169483], [-76.00341796875, 19.947532877989353], [-75.9375, 20.195190636474504], [-75.94024658203124, 20.360077646657153], [-75.8551025390625, 20.035289711352377], [-75.73974609375, 20.122997556207757], [-75.6683349609375, 20.128155311797183], [-75.6683349609375, 20.030128899024707] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#00ff01", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-80.44267926897321, 22.122696498115662] } }, { "type": "Feature", "properties": { "fill": "#008001", "stroke": "#008001", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-80.54351806640625, 22.0525504317147], [-80.55999755859375, 22.118721619281263], [-80.43914794921875, 22.271305748177635], [-80.34027099609375, 22.2026634080092], [-80.35675048828125, 22.12126604542578], [-80.38970947265625, 22.021999432851782], [-80.46936035156249, 22.070368801349257], [-80.54351806640625, 22.0525504317147] ] ] } } ] } ================================================ FILE: packages/turf-clusters-dbscan/test/out/points-with-properties.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-symbol": 1, "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [68.477783203125, -48.84302835299516] } }, { "type": "Feature", "properties": { "marker-symbol": 2, "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [68.873291015625, -48.821332549646634] } }, { "type": "Feature", "properties": { "marker-symbol": 3, "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [68.69750976562499, -48.958580664409766] } }, { "type": "Feature", "properties": { "marker-symbol": 4, "cluster": 1, "dbscan": "core", "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [70.87280273437499, -49.418120700666414] } }, { "type": "Feature", "properties": { "marker-symbol": 5, "cluster": 1, "dbscan": "core", "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [71.949462890625, -49.36091154712616] } }, { "type": "Feature", "properties": { "marker-symbol": 6, "cluster": 1, "dbscan": "core", "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [71.4111328125, -49.102645497788814] } }, { "type": "Feature", "properties": { "marker-color": "#0000ff", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [68.682861328125, -48.87431385568385] } }, { "type": "Feature", "properties": { "fill": "#000080", "stroke": "#000080", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [68.69750976562499, -48.958580664409766], [68.477783203125, -48.84302835299516], [68.873291015625, -48.821332549646634], [68.69750976562499, -48.958580664409766] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#ffff00", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [71.4111328125, -49.29389258186046] } }, { "type": "Feature", "properties": { "fill": "#808000", "stroke": "#808000", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [71.949462890625, -49.36091154712616], [70.87280273437499, -49.418120700666414], [71.4111328125, -49.102645497788814], [71.949462890625, -49.36091154712616] ] ] } } ] } ================================================ FILE: packages/turf-clusters-dbscan/test/out/points1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.46337890625, 23.059516273509303] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.353515625, 23.120153621695614] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.36450195312499, 23.074678175027337] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.19970703125, 23.221154981846556] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.19970703125, 23.089838367476705] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.28759765625, 22.99379497224218] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff0000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.8551025390625, 20.035289711352377] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff0000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.6683349609375, 20.128155311797183] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff0000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.73974609375, 20.122997556207757] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff0000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.6683349609375, 20.030128899024707] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff0000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.80017089843749, 20.040450354169483] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff0000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.9375, 20.195190636474504] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff0000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.00341796875, 19.947532877989353] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff0000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.7562255859375, 20.014645445341365] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#00ff01", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.46936035156249, 22.070368801349257] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#00ff01", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.34027099609375, 22.2026634080092] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#00ff01", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.35675048828125, 22.12126604542578] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#00ff01", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.43914794921875, 22.271305748177635] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#00ff01", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.38970947265625, 22.021999432851782] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#00ff01", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.55999755859375, 22.118721619281263] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#00ff01", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.54351806640625, 22.0525504317147] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff0000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.94024658203124, 20.360077646657153] } }, { "type": "Feature", "properties": { "dbscan": "noise", "marker-color": "#AEAEAE", "marker-symbol": "circle-stroked", "marker-size": "medium" }, "geometry": { "type": "Point", "coordinates": [-77.71728515624999, 21.596150576461426] } }, { "type": "Feature", "properties": { "marker-color": "#0000ff", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-82.3114013671875, 23.093189398632948] } }, { "type": "Feature", "properties": { "fill": "#000080", "stroke": "#000080", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-82.28759765625, 22.99379497224218], [-82.46337890625, 23.059516273509303], [-82.36450195312499, 23.074678175027337], [-82.353515625, 23.120153621695614], [-82.19970703125, 23.221154981846556], [-82.19970703125, 23.089838367476705], [-82.28759765625, 22.99379497224218] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#ff0000", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-75.81878662109375, 20.097163159890428] } }, { "type": "Feature", "properties": { "fill": "#800000", "stroke": "#800000", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.6683349609375, 20.030128899024707], [-75.7562255859375, 20.014645445341365], [-75.80017089843749, 20.040450354169483], [-76.00341796875, 19.947532877989353], [-75.9375, 20.195190636474504], [-75.94024658203124, 20.360077646657153], [-75.8551025390625, 20.035289711352377], [-75.73974609375, 20.122997556207757], [-75.6683349609375, 20.128155311797183], [-75.6683349609375, 20.030128899024707] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#00ff01", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-80.44267926897321, 22.122696498115662] } }, { "type": "Feature", "properties": { "fill": "#008001", "stroke": "#008001", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-80.54351806640625, 22.0525504317147], [-80.55999755859375, 22.118721619281263], [-80.43914794921875, 22.271305748177635], [-80.34027099609375, 22.2026634080092], [-80.35675048828125, 22.12126604542578], [-80.38970947265625, 22.021999432851782], [-80.46936035156249, 22.070368801349257], [-80.54351806640625, 22.0525504317147] ] ] } } ] } ================================================ FILE: packages/turf-clusters-dbscan/test/out/points2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-118.30078125, 60.457217797743944] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-115.04882812499999, 58.401711667608] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-112.5, 60.84491057364912] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-110.478515625, 59.265880628258095] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-103.71093749999999, 60.673178565817715] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-102.3046875, 55.52863052257191] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.935546875, 60.930432202923335] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.89257812499999, 60.23981116999893] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.79296874999999, 57.468589192089354] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.7734375, 58.63121664342478] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.541015625, 55.178867663281984] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.263671875, 50.17689812200107] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.990234375, 49.38237278700955] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-94.21875, 47.27922900257082] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-88.41796875, 48.28319289548349] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-92.548828125, 52.855864177853974] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-87.1875, 45.89000815866184] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-107.490234375, 57.040729838360875] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-69.78515625, 56.511017504952136] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.73828125, 62.83508901142283] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.37695312499999, 61.938950426660604] } }, { "type": "Feature", "properties": { "cluster": 2, "dbscan": "core", "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-91.845703125, 46.07323062540835] } }, { "type": "Feature", "properties": { "cluster": 1, "dbscan": "core", "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.640625, 58.44773280389084] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-103.0078125, 58.6769376725869] } }, { "type": "Feature", "properties": { "dbscan": "noise", "marker-color": "#AEAEAE", "marker-symbol": "circle-stroked", "marker-size": "medium" }, "geometry": { "type": "Point", "coordinates": [-88.857421875, 39.774769485295465] } }, { "type": "Feature", "properties": { "cluster": 0, "dbscan": "core", "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-123.48632812499999, 57.938183012205315] } }, { "type": "Feature", "properties": { "cluster": 3, "dbscan": "core", "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-117.158203125, 46.558860303117164] } }, { "type": "Feature", "properties": { "cluster": 3, "dbscan": "core", "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-114.873046875, 45.767522962149876] } }, { "type": "Feature", "properties": { "cluster": 3, "dbscan": "core", "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-112.67578124999999, 44.402391829093915] } }, { "type": "Feature", "properties": { "cluster": 3, "dbscan": "core", "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-119.53125, 44.33956524809713] } }, { "type": "Feature", "properties": { "cluster": 3, "dbscan": "core", "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-115.927734375, 43.389081939117496] } }, { "type": "Feature", "properties": { "dbscan": "noise", "marker-color": "#AEAEAE", "marker-symbol": "circle-stroked", "marker-size": "medium" }, "geometry": { "type": "Point", "coordinates": [-120.58593749999999, 38.685509760012] } }, { "type": "Feature", "properties": { "cluster": 3, "dbscan": "core", "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-113.90625, 40.3130432088809] } }, { "type": "Feature", "properties": { "marker-color": "#0000ff", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-110.703125, 58.758597808755766] } }, { "type": "Feature", "properties": { "fill": "#000080", "stroke": "#000080", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-102.3046875, 55.52863052257191], [-107.490234375, 57.040729838360875], [-115.04882812499999, 58.401711667608], [-123.48632812499999, 57.938183012205315], [-118.30078125, 60.457217797743944], [-112.5, 60.84491057364912], [-110.478515625, 59.265880628258095], [-103.71093749999999, 60.673178565817715], [-103.0078125, 58.6769376725869], [-102.3046875, 55.52863052257191] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#ff007e", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-78.1640625, 59.13130073540497] } }, { "type": "Feature", "properties": { "fill": "#80003e", "stroke": "#80003e", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-82.79296874999999, 57.468589192089354], [-83.935546875, 60.930432202923335], [-81.73828125, 62.83508901142283], [-76.37695312499999, 61.938950426660604], [-72.7734375, 58.63121664342478], [-69.78515625, 56.511017504952136], [-76.640625, 58.44773280389084], [-79.541015625, 55.178867663281984], [-82.79296874999999, 57.468589192089354] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#ffff00", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-89.92466517857143, 48.5629708241413] } }, { "type": "Feature", "properties": { "fill": "#808000", "stroke": "#808000", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.845703125, 46.07323062540835], [-94.21875, 47.27922900257082], [-92.548828125, 52.855864177853974], [-90.263671875, 50.17689812200107], [-88.41796875, 48.28319289548349], [-84.990234375, 49.38237278700955], [-87.1875, 45.89000815866184], [-91.845703125, 46.07323062540835] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#00ff80", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-115.6787109375, 44.12841091507608] } }, { "type": "Feature", "properties": { "fill": "#008040", "stroke": "#008040", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-113.90625, 40.3130432088809], [-119.53125, 44.33956524809713], [-117.158203125, 46.558860303117164], [-114.873046875, 45.767522962149876], [-112.67578124999999, 44.402391829093915], [-113.90625, 40.3130432088809] ] ] } } ] } ================================================ FILE: packages/turf-clusters-dbscan/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { centroid } from "@turf/centroid"; import chromatism from "chromatism"; import concaveman from "concaveman"; import { point, polygon, featureCollection } from "@turf/helpers"; import { clusterReduce, clusterEach } from "@turf/clusters"; import { coordAll, featureEach } from "@turf/meta"; import { clustersDbscan } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("clusters-dbscan", (t) => { fixtures.forEach((fixture) => { const name = fixture.name; const filename = fixture.filename; const geojson = fixture.geojson; const properties = geojson.properties || {}; const distance = properties.distance || 100; const minPoints = properties.minPoints; const units = properties.units; // console.log(geojson.features.length); const clustered = clustersDbscan(geojson, distance, { units: units, minPoints: minPoints, }); const result = styleResult(clustered); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, result); t.deepEqual(result, loadJsonFileSync(directories.out + filename), name); }); t.end(); }); const points = featureCollection([ point([0, 0], { foo: "bar" }), point([2, 4], { foo: "bar" }), point([3, 6], { foo: "bar" }), ]); test("clusters-dbscan -- prevent input mutation", (t) => { clustersDbscan(points, 2, { units: "kilometers", minPoints: 1 }); t.true( points.features[0].properties.cluster === undefined, "cluster properties should be undefined" ); t.end(); }); test("clusters-dbscan -- translate properties", (t) => { t.equal( clustersDbscan(points, 2, { units: "kilometers", minPoints: 1 }).features[0] .properties.foo, "bar" ); t.end(); }); // style result function styleResult(clustered) { const count = clusterReduce(clustered, "cluster", (i) => i + 1, 0); const colours = chromatism.adjacent(360 / count, count, "#0000FF").hex; const features = []; // Add all clusterd points featureEach(clustered, function (pt) { const dbscan = pt.properties.dbscan; const clusterId = pt.properties.cluster; switch (dbscan) { case "core": case "edge": { const coreColor = colours[clusterId]; const edgeColor = chromatism.brightness(-20, colours[clusterId]).hex; pt.properties["marker-color"] = dbscan === "core" ? coreColor : edgeColor; pt.properties["marker-size"] = "small"; break; } case "noise": { pt.properties["marker-color"] = "#AEAEAE"; pt.properties["marker-symbol"] = "circle-stroked"; pt.properties["marker-size"] = "medium"; break; } } features.push(pt); }); // Iterate over each Cluster clusterEach(clustered, "cluster", (cluster, clusterValue, clusterId) => { const color = chromatism.brightness(-25, colours[clusterId]).hex; // Add Centroid features.push( centroid(cluster, { properties: { "marker-color": colours[clusterId], "marker-symbol": "star-stroked", "marker-size": "large", }, }) ); // Add concave polygon features.push( polygon([concaveman(coordAll(cluster))], { fill: color, stroke: color, "fill-opacity": 0.3, }) ); }); return featureCollection(features); } test("clusters-dbscan -- allow input mutation", (t) => { const oldPoints = featureCollection([ point([0, 0], { foo: "bar" }), point([2, 4], { foo: "bar" }), point([3, 6], { foo: "bar" }), ]); // No mutation const newPoints = clustersDbscan(points, 2, { minPoints: 1 }); t.equal(newPoints.features[1].properties.cluster, 1, "cluster is 1"); t.equal( oldPoints.features[1].properties.cluster, undefined, "cluster is undefined" ); // Allow mutation clustersDbscan(oldPoints, 2, { minPoints: 1, mutate: true }); t.equal(oldPoints.features[1].properties.cluster, 1, "cluster is 1"); t.end(); }); ================================================ FILE: packages/turf-clusters-dbscan/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-clusters-dbscan/types.ts ================================================ import { featureCollection, point } from "@turf/helpers"; import { clustersDbscan } from "./index.js"; // Fixtures const points = featureCollection([point([0, 0]), point([2, 2])]); // Default const maxDistance = 5; const clustered = clustersDbscan(points, maxDistance); // Enforce strict properties when using the dbscan property const output = clustersDbscan(points, maxDistance); let { dbscan, cluster } = output.features[0].properties; dbscan = "edge"; dbscan = "core"; dbscan = "noise"; // dbscan = 'foo' //= [ts] Type '"foo"' is not assignable to type '"core" | "edge" | "noise"'. clustersDbscan(output, maxDistance); // Options const minPoints = 3; const units = "miles"; clustersDbscan(points, maxDistance); clustersDbscan(points, maxDistance, { units }); clustersDbscan(points, maxDistance, { units, minPoints }); // Custom Properties clustered.features[0].properties.cluster; clustered.features[0].properties.dbscan; clustered.features[0].properties.foo; ================================================ FILE: packages/turf-clusters-kmeans/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-clusters-kmeans/README.md ================================================ # @turf/clusters-kmeans ## clustersKmeans Takes a set of [points][1] and partition them into clusters using the k-mean . It uses the [k-means algorithm][2] ### Parameters * `points` **[FeatureCollection][3]<[Point][1]>** to be clustered * `options` **[Object][4]** Optional parameters (optional, default `{}`) * `options.numberOfClusters` **[number][5]** numberOfClusters that will be generated (optional, default `Math.sqrt(numberOfPoints/2)`) * `options.mutate` **[boolean][6]** allows GeoJSON input to be mutated (significant performance increase if true) (optional, default `false`) ### Examples ```javascript // create random points with random z-values in their properties var points = turf.randomPoint(100, {bbox: [0, 30, 20, 50]}); var options = {numberOfClusters: 7}; var clustered = turf.clustersKmeans(points, options); //addToMap var addToMap = [clustered]; ``` Returns **[FeatureCollection][3]<[Point][1]>** Clustered Points with an additional two properties associated to each Feature:* {number} cluster - the associated clusterId * {\[number, number]} centroid - Centroid of the cluster \[Longitude, Latitude] [1]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [2]: https://en.wikipedia.org/wiki/K-means_clustering [3]: https://tools.ietf.org/html/rfc7946#section-3.3 [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/clusters-kmeans ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-clusters-kmeans/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { clustersKmeans } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); // Define Fixtures const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); /** * Benchmark Results * * fiji: 2.243ms * many-points: 35.878ms * points-with-properties: 4.576ms * points1: 0.203ms * points2: 0.103ms * fiji x 240,316 ops/sec ±1.24% (87 runs sampled) * many-points x 184 ops/sec ±2.42% (82 runs sampled) * points-with-properties x 230,182 ops/sec ±2.81% (85 runs sampled) * points1 x 66,020 ops/sec ±3.35% (84 runs sampled) * points2 x 38,978 ops/sec ±2.10% (88 runs sampled) */ const suite = new Benchmark.Suite("turf-clusters-kmeans"); for (const { name, geojson } of fixtures) { const { numberOfCentroids } = geojson.properties || {}; console.time(name); clustersKmeans(geojson, numberOfCentroids, true); console.timeEnd(name); suite.add(name, () => clustersKmeans(geojson, numberOfCentroids, true)); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-clusters-kmeans/index.ts ================================================ import { FeatureCollection, Point, GeoJsonProperties } from "geojson"; import { clone } from "@turf/clone"; import { coordAll, featureEach } from "@turf/meta"; import skmeans from "skmeans"; type KmeansProps = GeoJsonProperties & { cluster?: number; centroid?: [number, number]; }; /** * Takes a set of {@link Point|points} and partition them into clusters using the k-mean . * It uses the [k-means algorithm](https://en.wikipedia.org/wiki/K-means_clustering) * * @function * @param {FeatureCollection} points to be clustered * @param {Object} [options={}] Optional parameters * @param {number} [options.numberOfClusters=Math.sqrt(numberOfPoints/2)] numberOfClusters that will be generated * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance increase if true) * @returns {FeatureCollection} Clustered Points with an additional two properties associated to each Feature: * - {number} cluster - the associated clusterId * - {[number, number]} centroid - Centroid of the cluster [Longitude, Latitude] * @example * // create random points with random z-values in their properties * var points = turf.randomPoint(100, {bbox: [0, 30, 20, 50]}); * var options = {numberOfClusters: 7}; * var clustered = turf.clustersKmeans(points, options); * * //addToMap * var addToMap = [clustered]; */ function clustersKmeans( points: FeatureCollection, options: { numberOfClusters?: number; mutate?: boolean; } = {} ): FeatureCollection { // Default Params var count = points.features.length; options.numberOfClusters = options.numberOfClusters || Math.round(Math.sqrt(count / 2)); // numberOfClusters can't be greater than the number of points // fallbacks to count if (options.numberOfClusters > count) options.numberOfClusters = count; // Clone points to prevent any mutations (enabled by default) if (options.mutate !== true) points = clone(points); // collect points coordinates var data = coordAll(points); // create seed to avoid skmeans to drift var initialCentroids = data.slice(0, options.numberOfClusters); // create skmeans clusters var skmeansResult = skmeans(data, options.numberOfClusters, initialCentroids); // store centroids {clusterId: [number, number]} var centroids: Record = {}; (skmeansResult.centroids as number[][]).forEach(function ( coord: number[], idx: number ) { centroids[idx] = coord; }); // add associated cluster number featureEach(points, function (point, index) { var clusterId = skmeansResult.idxs[index]; point.properties!.cluster = clusterId; point.properties!.centroid = centroids[clusterId]; }); return points as FeatureCollection; } export { clustersKmeans, KmeansProps }; export default clustersKmeans; ================================================ FILE: packages/turf-clusters-kmeans/package.json ================================================ { "name": "@turf/clusters-kmeans", "version": "7.3.4", "description": "Takes a set of points and partition them into clusters using the k-means algorithm.", "author": "Turf Authors", "contributors": [ "David Gómez Matarrodona <@solzimer>", "Stefano Borghi <@stebogit>", "Denis Carriere <@DenisCarriere>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "geojson", "cluster", "clusters", "clustering", "k-means" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/centroid": "workspace:*", "@turf/clusters": "workspace:*", "@turf/random": "workspace:*", "@types/benchmark": "^2.1.5", "@types/skmeans": "^0.11.7", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "chromatism": "^3.0.0", "concaveman": "^1.2.1", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/clone": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "skmeans": "0.9.7", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-clusters-kmeans/test/in/fiji.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [179.439697265625, -16.55196172197251] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [179.01123046874997, -16.97274101999901] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [179.505615234375, -17.035777250427184] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [180.75805664062497, -16.41500926733237] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [181.1865234375, -16.615137799987075] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [181.03271484375, -16.277960306212513] } } ] } ================================================ FILE: packages/turf-clusters-kmeans/test/in/many-points.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.36337554761008, 19.119473770547124] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.32753919964946, 20.843505437175903] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.72930024352243, 22.95523079568951] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.28985709132587, 16.584015683001546] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.94492705924428, 21.0702981386651] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.05488356732162, 24.111641311913072] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.55079764304975, 25.525431992772358] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.11420407247648, 26.113452348786268] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.8076846951252, 22.255910609327792] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.98702719224296, 25.275001495112985] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.54236384636712, 20.789257545981407] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.57808400285332, 20.00051975393173] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.39655991111083, 22.12594824182586] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.42324858424885, 17.48175433130492] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.90361604004578, 26.430002559611477] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.22266857015823, 20.94137638968897] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.48717976822758, 20.224242981590255] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.06779765523183, 27.276249335066662] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.99075803676163, 17.651929487468298] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.53563340237405, 26.495418224944373] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.20462326614003, 24.00357261039075] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.58330318049086, 18.09915952726896] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.50889284912286, 18.340562952508183] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.55680807421967, 21.907870183116437] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.53689212714627, 17.422501403729605] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.18027511981438, 18.875894880366534] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.39732218872196, 25.629464613691137] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.66061545607911, 22.757810888614223] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.65357594791968, 16.66838838845727] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.77643699392496, 27.091684659861052] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.13081869539506, 26.23449839991876] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.43824120718541, 19.103181050521584] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.43898229878118, 18.874231952472687] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.92734033427595, 20.82599847071201] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.27364128877521, 21.130861117009847] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.05413199086016, 23.058073292292104] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.28388468077954, 22.883779502221373] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.77696496688779, 18.94471042190279] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.23882701110625, 20.30184311650061] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.66116457836486, 20.169682381560182] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.90248833212131, 26.884383581357255] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.28525543556775, 26.722194267296018] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.8977221405959, 19.412558043465] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.07684618758876, 27.17395724732544] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.41316964578398, 23.148029434777555] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.92622530551323, 25.623260952842156] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.2549851564484, 22.35997051326973] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.7199945397987, 25.802953128684692] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.96348979974654, 27.35814140608639] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.04921623428444, 20.61204095701038] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.54213379075634, 25.505384186492893] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.61403051800008, 17.263716566767037] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.25360192470616, 18.686705558388965] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.42930471321405, 20.022748677821312] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.44899512481147, 21.52626642668551] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.38761515683782, 18.77265726075554] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.12756391373203, 25.531641282912506] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.65487739464005, 20.270385418656613] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.44983759982364, 18.547000172845294] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.53680657077764, 25.303329199906706] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.01712484014583, 24.449642983600107] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.86222771555597, 22.720569651349564] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.2520931858629, 25.53784765691357] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.60441825132624, 23.93129090727725] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.2164652385625, 25.79578750021983] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.63151040609172, 24.490225688795583] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.51548817891319, 17.202270132332913] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.3121102967554, 25.956525827964448] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.27005222591032, 17.528372337434828] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.0823710181298, 25.482920857480014] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.75288708284614, 18.922685406247748] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.52847693811808, 24.220685835886385] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.42010129302429, 25.72860309981145] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.03682779147974, 27.053835982653894] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.67472974247343, 24.956264380693316] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.95315877653405, 18.41169388608788] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.57393282654176, 26.261024024692077] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.92845035818462, 17.837520858411256] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.5179339115434, 23.450627516507094] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.71943800617547, 19.616649637864654] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.93211879732236, 26.33170236314861] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.10661507770358, 25.13063963201959] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.24887371103026, 21.739851639014628] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.26129906562491, 21.294934204528648] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.2729878125471, 23.65784314034355] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.3562097070285, 24.24226765651852] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.99265814798184, 27.483971653923085] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.63635988061537, 18.75973134353604] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.76340181762502, 26.57219504751686] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.45164209210782, 23.76673190659356] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.65455892791887, 27.186142540274957] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.03313564896565, 24.333750064476934] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.87222884039794, 19.159104199268683] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.54286133638129, 24.13575708893132] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.26242751330523, 20.472647289870025] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.80042213720098, 20.990256802329768] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.5874725368364, 25.039930971231904] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.85825660840021, 25.43539990016023] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.17454776573982, 23.461743771248557] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.40002194939215, 20.67151202116478] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.23963323045145, 23.244627904260923] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.81552101630216, 26.53756981389545] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.9283270010284, 24.674017344728615] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.70000865367116, 21.542018533522416] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.48978633680683, 19.623096473871033] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.67175298435387, 17.880881534565148] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.04610391202878, 26.551597087996466] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.84175265531377, 16.85074369818602] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.95908129532202, 21.185424844181092] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.88684525321649, 18.726646021819167] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.15582212817301, 18.696902173553443] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.5644212682104, 20.850894115743387] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.37878622301193, 16.91615114076283] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.81019601780373, 17.165972386566605] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.4614226211491, 23.444082141644998] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.18265845716839, 25.295833894402776] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.09803657824347, 23.3454534216312] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.34448173717335, 17.84048983960788] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.18827115285569, 20.273168111170328] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.26216347689832, 23.673136982276464] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.21575485381635, 23.096925087889748] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.01908584146595, 21.557475862048076] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.92274968888073, 26.019876080997598] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.55727606952377, 22.36430316761306] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.25891612041117, 19.525184281200534] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.64279747070925, 25.651725881829897] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.40499501048518, 16.63021658406485] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.64998704253041, 24.234779530366744] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.30467012694315, 17.92521920364085] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.76550387867614, 21.84873202139447] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.2770011073176, 26.540918581152965] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.20171143790367, 24.334344930797855] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.51391779937516, 18.211967578932978] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.81858154084357, 19.071318793255987] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.87897523658762, 22.009563011217917] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.17146072076018, 22.71145107992815] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.14138268439117, 27.295964747431004] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.01085563325441, 23.60461239295877] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.61068998466835, 21.311283807756645] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.76701891828932, 27.195861233372437] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.55059712821668, 25.49682672225246] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.42534293525704, 20.342801196105015] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.85957138950651, 25.651916540759668] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.67260570784427, 20.45532583962798] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.81872422593077, 21.669857512462364] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.38646877459935, 19.37340763751337] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.50710379745864, 18.424063455433217] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.632893967135, 23.107454998460437] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.36852553393699, 24.295072371424403] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.86140755178053, 17.50071319492512] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.56458486764306, 23.27787869671228] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.25719355261317, 18.841254641177088] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.79365159485565, 24.73837411446049] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.77110623794552, 22.880747711470292] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.17830942471453, 27.459109723499697] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.5062774214051, 17.326690422594897] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.19600112265177, 22.73914989583398] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.58173201222138, 23.850997885697698] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.71045285694422, 17.079742569860166] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.34171838085163, 22.153445077419946] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.55081810986574, 24.915158163291853] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.59793295622734, 18.75099342612817] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.14433438213305, 27.036543336370556] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.4434583942987, 19.619680064723546] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.51440928893466, 19.680938852916263] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.95150377384275, 26.91911731157561] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.4550593256632, 24.03016205722427] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.8228436577642, 25.845318184468677] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.16769788043096, 16.98191521287846] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.51634149582756, 19.10937565092933] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.72446682780881, 22.25313981239625] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.95113454727932, 26.357292830184782] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.89319872559254, 21.773847762169503] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.50995550468448, 26.805856081166645] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.72311173060332, 27.453459491416243] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.20796912251339, 16.910765069076696] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.02923748665658, 17.06286092924691] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.67236850288222, 19.00571371998642] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.43657840692077, 17.42104681957319] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.48932636312891, 18.050155326157473] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.76206658518934, 23.71467590682046] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.46253580071742, 22.833272724615775] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.09703651590019, 17.421833037838393] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.61013158110691, 23.65729956086801] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.66397149031135, 25.831969038126523] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.1727623444978, 24.152605040309613] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.2741188221817, 18.639289071153634] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.90735829536999, 18.190052908059194] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.32489553257798, 19.57470756961103] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.01326798044877, 24.122014119489563] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.52731994000185, 26.95480013106508] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.3558896446572, 17.44256116852827] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.02534851234576, 16.756254338847338] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.47025910061983, 24.118620545794855] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.308362589921, 20.54596248507216] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.34538728645822, 24.41450380344747] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.33122422882889, 23.37013167679639] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.27561331569953, 16.994251063813262] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.86851913822156, 25.81027224474102] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.24173363419717, 24.34323106176321] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.84877351272029, 26.92445686110058] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.71160840330522, 21.77620359204627] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.20296576353552, 21.709322849932395] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.04325753495058, 24.349990861490674] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.01507615292597, 18.68916636419406] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.98455859943033, 21.06707023138771] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.40609968225364, 21.87541299401925] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.66122425689909, 19.364456854255717] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.2600583537702, 21.659164464794838] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.73592652087561, 17.55179712679042] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.80434002543046, 18.311428726658654] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.89936609149818, 27.20566948335109] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.9153275956025, 22.728686372271056] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.22442161042382, 20.946470968784404] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.23254193941007, 26.262181726505418] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.62437731409852, 19.781049107501957] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.49173903601617, 16.92003208241821] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.25829317577141, 21.827114782054075] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.65532298324348, 17.29988957265243] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.3453947248687, 24.50576556423695] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.37506450657898, 16.711071194315227] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.42569161383636, 21.026826554775827] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.43791743989885, 24.962432920525124] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.84458598730575, 23.70594482686843] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.37848518046901, 26.34378098000883] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.13497764736996, 17.934013939878078] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.54709582459233, 16.53706271986311] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.17844562558024, 23.80702766062598] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.64984925794586, 27.17403653643745] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.89153777133139, 23.170952976617727] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.93875091618717, 25.00047089937265] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.9102252552082, 23.883340808622673] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.45068182631776, 24.018640243238202] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.56517209188608, 24.748894301890655] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.41470444523833, 26.791071724795167] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.27546806320538, 24.62810216606337] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.37798026966385, 22.800554127763526] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.67038090634749, 19.518488261229543] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.51124408675949, 18.95091920687403] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.72209650039468, 24.280447748568445] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.28434198674468, 17.20571626766068] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.15681636726895, 26.828785859624258] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.11344269598334, 17.666989151972253] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.96994176238145, 22.888540550894795] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.50079368006108, 26.634382308937134] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.54280695688689, 23.237868840297253] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.59204571681656, 24.786873137315194] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.01377215866017, 18.936419309424537] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.01405131484972, 18.581612310870824] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.6420973159142, 18.58453117274099] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.74759623801513, 26.12337676616272] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.05313261324237, 19.319796400696145] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.13970036126891, 17.506087557394512] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.75848457074353, 21.115370497855984] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.16830971446066, 24.6894321007414] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.21048541308969, 17.919231608494442] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.97637737411591, 23.150822409149665] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.98806643205722, 18.733700354050203] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.73009496457921, 23.7983464395302] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.21686530340585, 18.59063554310776] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.94846192062774, 19.236367113472895] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.97783503664645, 19.823228188109127] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.31384918144222, 22.633190689556994] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.49404471100601, 22.009751251682275] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.1270341028659, 25.781532521957693] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.51950761862354, 23.496329401717578] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.67344643947845, 20.92896756107965] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.28006204700529, 18.638001663502685] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.33788518686183, 24.089777622921456] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.03458096249997, 22.65764273416216] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.80104984355006, 26.237062559189845] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.21242542631086, 20.177739085659635] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.38674449250746, 17.652491491363605] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.93734071291428, 23.99085830463023] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.20251485577793, 26.55556740273682] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.73360568748585, 26.28033941085063] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.13262960963559, 22.34430874872904] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.54532805510269, 17.55045667323678] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.80026818559628, 18.561998669158292] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.28628835491551, 19.571063802546057] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.58131591277606, 24.21369712743759] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.88085722918547, 19.753718721210948] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.64966522234937, 20.677188588895476] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.24840889524553, 19.69712523257967] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.96400931937723, 18.174770180214516] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.70189850382681, 16.534625567595363] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.810090294371, 25.23156636266861] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.17536572906562, 19.792647657345] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.79193518864761, 24.737897659493715] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.93555696939467, 19.98152959915939] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.21354373461136, 25.88846335275895] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.32534041974515, 26.094983944812824] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.97472021053458, 26.061373986456793] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.84081911742697, 23.793624669453152] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.24844766066971, 24.484245781333726] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.90249827777127, 22.05793250583984] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.07748325170441, 27.337367361375666] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.52285998029147, 17.487274302366117] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.81251634431071, 20.933095236667395] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.58692805675213, 24.80146814851551] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.47378831903654, 21.652685460023044] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.70162022475394, 19.229694616459863] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.78777310048918, 23.92218146021364] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.80552346807535, 22.161467782172014] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.55667427680913, 22.171811135508918] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.49928602385201, 27.41608769703238] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.34842284656386, 17.435895054282373] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.21228170738233, 22.173670632023597] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.90881672418563, 21.468642424655155] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.56477901274141, 23.02518524523849] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.43974652662247, 22.60413987147912] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.5883411017305, 19.917932537792794] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.35881511009039, 19.09687830115208] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.72145863838075, 25.18049472134159] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.95694749118951, 27.39255408553263] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.44936060272309, 27.49130192814892] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.61820042082097, 23.049137776556364] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.10989174097693, 18.469712160553517] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.379040540202, 20.37524788330293] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.51495780456581, 16.669087042407536] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.10886304098058, 16.8269149948045] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.72560883757795, 16.962762773864505] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.89333076284501, 24.384990740752006] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.59332944904146, 24.120911542546878] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.42817901090537, 17.74846475203746] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.89833899459296, 19.72230811960007] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.98171564844314, 21.140743955694063] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.99706809934376, 18.63550290606603] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.13208804398411, 19.266357159361213] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.44208974284808, 18.89754661420165] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.67095396405709, 17.953443362949123] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.61949782551551, 25.38069882274378] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.82927583009545, 18.920544836399152] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.71898403700982, 22.858679743400074] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.05832892131573, 25.244587077548168] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.53486708882008, 18.05579400531109] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.3189432679756, 20.059875630170964] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.96213190737039, 26.279325304846623] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.44927404052561, 17.791447001826654] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.39338327111777, 24.626502743687922] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.58570795493182, 25.546633692923525] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.83961825329554, 25.484747617185402] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.87200031832714, 23.66114743521159] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.83487262625073, 20.095259588587723] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.91640675333899, 16.590848739189624] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.30245460933854, 19.23352889608482] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.14994486721066, 20.53183273996738] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.80521037357039, 21.252980629644455] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.8787989831883, 18.218515429796344] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.76978734183139, 17.7977450107505] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.80371392928168, 26.040116775073876] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.95744087420283, 25.191234441288678] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.77674346051477, 21.375540465284374] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.29292929991102, 21.98589295297564] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.66745422227388, 26.168091294302087] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.92295434812097, 23.30372425686007] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.96026394085236, 25.51392205303288] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.43164354544895, 17.413235272364112] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.28566063654243, 18.482281406816814] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.18586938186745, 27.019278441405643] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.00665657564603, 18.009509829132515] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.78174587415, 25.852826126614094] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.17395695535176, 20.322052935788367] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.75631134659818, 27.4074383447763] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.30133416063728, 22.908999108726512] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.5468209860248, 25.79011427888136] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.50335139484208, 25.338279000551893] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.85611159709538, 24.40263258506802] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.19143746995799, 22.76299900389558] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.49961985245375, 23.749896556565293] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.93434205722116, 17.8751516982336] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.47725300277814, 20.834238692742822] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.40866406564102, 24.65588369863437] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.23086732338659, 22.010870880797054] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.55598541988493, 23.62640751670331] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.067479899787, 22.44918038801505] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.5723788030903, 23.774277575000852] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.68634851848167, 23.203154689599817] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.97302399035408, 22.395504699565535] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.47937906764957, 24.839570106333433] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.63060572237521, 22.939370867570908] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.28374988273468, 16.800162341500304] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.01980255637385, 21.18954858284259] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.80981841825783, 16.752970728846513] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.0632043924848, 17.78197939775129] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.31937806169958, 16.63036465541673] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.51362280935948, 19.07306061464646] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.6462554841785, 18.765258635070385] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.90737511126233, 25.663681166863604] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.3184598837461, 20.339708336838683] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.25614050898571, 20.47865304539995] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.05273739031475, 27.278196207610172] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.57090751033381, 25.058967866824403] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.72044789264216, 17.86742294760512] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.45286775268717, 27.264956115483226] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.46924741699405, 22.27588495796526] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.2743504888918, 26.691822644671085] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.18119091611597, 24.755151867045228] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.9753411638257, 22.736683695999382] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.17815192274419, 17.766464076510605] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.79951671731996, 16.979753651505465] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.81530228240368, 21.899431865794316] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.15292492090326, 18.519443297834165] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.11308732341453, 22.73505946813462] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.00830955618024, 21.885311144830727] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.54728340532579, 17.713742740545893] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.53755328892348, 25.323104677883705] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.68105867358958, 27.21289905396955] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.96411774831036, 22.888644254222072] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.98170526139158, 20.98332034823357] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.56755786305595, 19.40265705295205] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.9097441614737, 25.69899354986159] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.8522033753837, 16.57371866969067] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.59048812893998, 22.36793387394907] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.69797232502891, 17.49676706923224] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.4273474590883, 20.29560385897871] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.75702086888295, 18.06842605714349] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.93509999305662, 24.197922897145702] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.59056449409796, 17.249155158477635] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.04442014558218, 20.180967527569678] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.37084983049334, 18.874173436903888] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.56890381178304, 24.88700194600341] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.06300053256552, 25.068476848998436] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-79.07431215190033, 23.634255220677876] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.97261043138833, 20.783569456567577] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.69220087076908, 23.99722100792555] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.28624765409677, 19.684275914963393] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.26371632117386, 23.468899954784128] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.64211828010676, 22.535063069435896] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.76720344494535, 17.95425416674962] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.84949687526881, 23.882703836621122] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.51599855499506, 22.18056139559293] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.0586637697147, 22.618118595420675] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.82988603140993, 22.75446266986306] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.10048201961024, 21.361849810266136] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.04153303125153, 20.350657127526738] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.59504589774306, 27.064096554971023] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.07548891214728, 17.301084891511273] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.33158765668573, 19.452979509754268] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.81854336800883, 24.131395375394586] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.684418563593, 21.47654476359144] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.00730697784353, 25.897847636990367] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.40829350874473, 27.268125557919248] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.2707934048482, 20.982305048038683] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.38809337052642, 26.427105032557755] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.0134734724832, 25.13419607033201] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.17642686622017, 25.221069930712087] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.71994017762563, 20.189025977120103] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.29187361259146, 27.392240106344147] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.79976558388476, 20.035863120368496] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.3275873181896, 23.43075879262019] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.30217792473226, 22.66331518976522] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.02504204870841, 18.793197099411397] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.96796993174219, 24.703657172369798] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.41505346819054, 25.017559911985607] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.287484618002, 19.75003759357949] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.25519670513809, 19.980973614544432] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.3831207434748, 20.990164116130572] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-73.30367109087219, 25.1900948213395] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.33929483454432, 17.79933711363019] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.3072622609112, 19.064713633397105] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.09464045072042, 16.867824298530778] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.01339730011378, 25.682665424232965] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.74959288173342, 17.47999904710256] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.95625724719481, 26.53239538653403] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.95900351362758, 26.964513550251407] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.22624323598141, 17.943008474474265] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-81.14342020536195, 18.867794740406104] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-85.61849018164143, 22.47855670455455] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.7861071942679, 18.669738072373164] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-86.00369227814197, 24.612757650509216] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.77138891405684, 20.81044983619232] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.89623600838752, 19.396975077838288] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.40595166597085, 26.80155978434455] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.80825302190365, 23.35316310450464] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.96259557904392, 24.196187792487656] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.08863800575135, 25.15698262014013] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.75695759804495, 20.08490410319372] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.42234796309599, 26.22301149374214] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.26218882048389, 26.41236152098589] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.87135659444625, 17.56355668256735] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.49722908932829, 21.926256397875694] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-70.7096594822639, 24.460836562368442] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-71.09304190552334, 27.42090911618883] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.0243253011326, 17.45098074087971] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.25880876997459, 18.567348945414572] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.15374231895991, 19.572527461376602] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.90718745331596, 18.01378466658022] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-83.3932989046418, 19.030002383084067] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.56289580127358, 23.7331334661265] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-74.32615130900722, 23.22949976202878] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-82.32932140159735, 21.369086228743924] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.40761927871347, 22.617986414434352] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-77.6909951062254, 17.986704731304503] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.38990946382116, 17.402709176906622] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.59495181641225, 22.81831350748234] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-78.38487102139864, 26.08247375588085] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-84.86031632408672, 24.23389023003475] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-80.76905431857912, 27.471768557404076] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-72.43945965828523, 18.638609876647752] }, "properties": {} } ] } ================================================ FILE: packages/turf-clusters-kmeans/test/in/points-with-properties.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-symbol": 1 }, "geometry": { "type": "Point", "coordinates": [68.477783203125, -48.84302835299516] } }, { "type": "Feature", "properties": { "marker-symbol": 2 }, "geometry": { "type": "Point", "coordinates": [68.873291015625, -48.821332549646634] } }, { "type": "Feature", "properties": { "marker-symbol": 3 }, "geometry": { "type": "Point", "coordinates": [68.69750976562499, -48.958580664409766] } }, { "type": "Feature", "properties": { "marker-symbol": 4 }, "geometry": { "type": "Point", "coordinates": [70.87280273437499, -49.418120700666414] } }, { "type": "Feature", "properties": { "marker-symbol": 5 }, "geometry": { "type": "Point", "coordinates": [71.949462890625, -49.36091154712616] } }, { "type": "Feature", "properties": { "marker-symbol": 6 }, "geometry": { "type": "Point", "coordinates": [71.4111328125, -49.102645497788814] } } ] } ================================================ FILE: packages/turf-clusters-kmeans/test/in/points1.geojson ================================================ { "type": "FeatureCollection", "properties": { "numberOfClusters": 3 }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-82.46337890625, 23.059516273509303] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-82.353515625, 23.120153621695614] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-82.36450195312499, 23.074678175027337] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-82.19970703125, 23.221154981846556] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-82.19970703125, 23.089838367476705] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-82.28759765625, 22.99379497224218] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.8551025390625, 20.035289711352377] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.6683349609375, 20.128155311797183] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.73974609375, 20.122997556207757] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.6683349609375, 20.030128899024707] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.80017089843749, 20.040450354169483] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-76.0089111328125, 20.226120295836992] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-76.0308837890625, 19.926877111209265] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.7562255859375, 20.014645445341365] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-80.46936035156249, 22.070368801349257] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-80.34027099609375, 22.2026634080092] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-80.35675048828125, 22.12126604542578] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-80.43914794921875, 22.271305748177635] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-80.38970947265625, 22.021999432851782] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-80.55999755859375, 22.118721619281263] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-80.54351806640625, 22.0525504317147] } } ] } ================================================ FILE: packages/turf-clusters-kmeans/test/in/points2.geojson ================================================ { "type": "FeatureCollection", "properties": { "numberOfClusters": 4 }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-118.30078125, 60.457217797743944] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-115.04882812499999, 58.401711667608] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-112.5, 60.84491057364912] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-110.478515625, 59.265880628258095] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-103.71093749999999, 60.673178565817715] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-102.3046875, 55.52863052257191] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-83.935546875, 60.930432202923335] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-79.89257812499999, 60.23981116999893] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-82.79296874999999, 57.468589192089354] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-72.7734375, 58.63121664342478] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-79.541015625, 55.178867663281984] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.263671875, 50.17689812200107] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-84.990234375, 49.38237278700955] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-94.21875, 47.27922900257082] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-88.41796875, 48.28319289548349] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-92.548828125, 52.855864177853974] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-87.1875, 45.89000815866184] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-107.490234375, 57.040729838360875] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-69.78515625, 56.511017504952136] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-81.73828125, 62.83508901142283] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-76.37695312499999, 61.938950426660604] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-91.845703125, 46.07323062540835] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-76.640625, 58.44773280389084] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-103.0078125, 58.6769376725869] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-88.857421875, 39.774769485295465] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-123.48632812499999, 57.938183012205315] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-117.158203125, 46.558860303117164] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-114.873046875, 45.767522962149876] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-112.67578124999999, 44.402391829093915] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-119.53125, 44.33956524809713] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-115.927734375, 43.389081939117496] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-120.58593749999999, 38.685509760012] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-113.90625, 40.3130432088809] } } ] } ================================================ FILE: packages/turf-clusters-kmeans/test/out/fiji.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "cluster": 1, "centroid": [179.31884765625, -16.85349333079957], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [179.439697265625, -16.55196172197251] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [179.31884765625, -16.85349333079957], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [179.01123046874997, -16.97274101999901] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [179.31884765625, -16.85349333079957], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [179.505615234375, -17.035777250427184] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [180.992431640625, -16.43603579117732], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [180.75805664062497, -16.41500926733237] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [180.992431640625, -16.43603579117732], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [181.1865234375, -16.615137799987075] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [180.992431640625, -16.43603579117732], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [181.03271484375, -16.277960306212513] } }, { "type": "Feature", "properties": { "marker-color": "#000080", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [180.992431640625, -16.43603579117732] } }, { "type": "Feature", "properties": { "fill": "#000080", "stroke": "#000080", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [181.1865234375, -16.615137799987075], [180.75805664062497, -16.41500926733237], [181.03271484375, -16.277960306212513], [181.1865234375, -16.615137799987075] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#808000", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [179.31884765625, -16.85349333079957] } }, { "type": "Feature", "properties": { "fill": "#808000", "stroke": "#808000", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [179.505615234375, -17.035777250427184], [179.01123046874997, -16.97274101999901], [179.439697265625, -16.55196172197251], [179.505615234375, -17.035777250427184] ] ] } } ] } ================================================ FILE: packages/turf-clusters-kmeans/test/out/many-points.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "cluster": 0, "centroid": [-85.22273916681061, 18.11205670884361], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.36337554761008, 19.119473770547124] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-85.201027549492, 21.346638923038203], "marker-color": "#5f00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.32753919964946, 20.843505437175903] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.72930024352243, 22.95523079568951] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-85.22273916681061, 18.11205670884361], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.28985709132587, 16.584015683001546] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.94492705924428, 21.0702981386651] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.05488356732162, 24.111641311913072] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.55079764304975, 25.525431992772358] } }, { "type": "Feature", "properties": { "cluster": 7, "centroid": [-71.60386443367564, 25.68144722581964], "marker-color": "#ff9f00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.11420407247648, 26.113452348786268] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.8076846951252, 22.255910609327792] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.98702719224296, 25.275001495112985] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-85.201027549492, 21.346638923038203], "marker-color": "#5f00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.54236384636712, 20.789257545981407] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.57808400285332, 20.00051975393173] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.39655991111083, 22.12594824182586] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.42324858424885, 17.48175433130492] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.90361604004578, 26.430002559611477] } }, { "type": "Feature", "properties": { "cluster": 15, "centroid": [-79.95661302836459, 19.68004339959817], "marker-color": "#005fff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.22266857015823, 20.94137638968897] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-85.201027549492, 21.346638923038203], "marker-color": "#5f00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.48717976822758, 20.224242981590255] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.06779765523183, 27.276249335066662] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.99075803676163, 17.651929487468298] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.53563340237405, 26.495418224944373] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.20462326614003, 24.00357261039075] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-85.22273916681061, 18.11205670884361], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.58330318049086, 18.09915952726896] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.50889284912286, 18.340562952508183] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.55680807421967, 21.907870183116437] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.53689212714627, 17.422501403729605] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.18027511981438, 18.875894880366534] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.39732218872196, 25.629464613691137] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.66061545607911, 22.757810888614223] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.65357594791968, 16.66838838845727] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.77643699392496, 27.091684659861052] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.13081869539506, 26.23449839991876] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.43824120718541, 19.103181050521584] } }, { "type": "Feature", "properties": { "cluster": 15, "centroid": [-79.95661302836459, 19.68004339959817], "marker-color": "#005fff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.43898229878118, 18.874231952472687] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.92734033427595, 20.82599847071201] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.27364128877521, 21.130861117009847] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.05413199086016, 23.058073292292104] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.28388468077954, 22.883779502221373] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.77696496688779, 18.94471042190279] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.23882701110625, 20.30184311650061] } }, { "type": "Feature", "properties": { "cluster": 15, "centroid": [-79.95661302836459, 19.68004339959817], "marker-color": "#005fff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.66116457836486, 20.169682381560182] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.90248833212131, 26.884383581357255] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.28525543556775, 26.722194267296018] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.8977221405959, 19.412558043465] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.07684618758876, 27.17395724732544] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.41316964578398, 23.148029434777555] } }, { "type": "Feature", "properties": { "cluster": 7, "centroid": [-71.60386443367564, 25.68144722581964], "marker-color": "#ff9f00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.92622530551323, 25.623260952842156] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-85.201027549492, 21.346638923038203], "marker-color": "#5f00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.2549851564484, 22.35997051326973] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.7199945397987, 25.802953128684692] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.96348979974654, 27.35814140608639] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.04921623428444, 20.61204095701038] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.54213379075634, 25.505384186492893] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.61403051800008, 17.263716566767037] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.25360192470616, 18.686705558388965] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.42930471321405, 20.022748677821312] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-85.201027549492, 21.346638923038203], "marker-color": "#5f00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.44899512481147, 21.52626642668551] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.38761515683782, 18.77265726075554] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.12756391373203, 25.531641282912506] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.65487739464005, 20.270385418656613] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.44983759982364, 18.547000172845294] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.53680657077764, 25.303329199906706] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.01712484014583, 24.449642983600107] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.86222771555597, 22.720569651349564] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.2520931858629, 25.53784765691357] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.60441825132624, 23.93129090727725] } }, { "type": "Feature", "properties": { "cluster": 7, "centroid": [-71.60386443367564, 25.68144722581964], "marker-color": "#ff9f00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.2164652385625, 25.79578750021983] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.63151040609172, 24.490225688795583] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.51548817891319, 17.202270132332913] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.3121102967554, 25.956525827964448] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.27005222591032, 17.528372337434828] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.0823710181298, 25.482920857480014] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.75288708284614, 18.922685406247748] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.52847693811808, 24.220685835886385] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.42010129302429, 25.72860309981145] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.03682779147974, 27.053835982653894] } }, { "type": "Feature", "properties": { "cluster": 7, "centroid": [-71.60386443367564, 25.68144722581964], "marker-color": "#ff9f00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.67472974247343, 24.956264380693316] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.95315877653405, 18.41169388608788] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.57393282654176, 26.261024024692077] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.92845035818462, 17.837520858411256] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.5179339115434, 23.450627516507094] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-85.22273916681061, 18.11205670884361], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.71943800617547, 19.616649637864654] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.93211879732236, 26.33170236314861] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.10661507770358, 25.13063963201959] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.24887371103026, 21.739851639014628] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-85.201027549492, 21.346638923038203], "marker-color": "#5f00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.26129906562491, 21.294934204528648] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.2729878125471, 23.65784314034355] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.3562097070285, 24.24226765651852] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.99265814798184, 27.483971653923085] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.63635988061537, 18.75973134353604] } }, { "type": "Feature", "properties": { "cluster": 7, "centroid": [-71.60386443367564, 25.68144722581964], "marker-color": "#ff9f00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.76340181762502, 26.57219504751686] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.45164209210782, 23.76673190659356] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.65455892791887, 27.186142540274957] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.03313564896565, 24.333750064476934] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.87222884039794, 19.159104199268683] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.54286133638129, 24.13575708893132] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-85.201027549492, 21.346638923038203], "marker-color": "#5f00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.26242751330523, 20.472647289870025] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.80042213720098, 20.990256802329768] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.5874725368364, 25.039930971231904] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.85825660840021, 25.43539990016023] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.17454776573982, 23.461743771248557] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.40002194939215, 20.67151202116478] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.23963323045145, 23.244627904260923] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.81552101630216, 26.53756981389545] } }, { "type": "Feature", "properties": { "cluster": 7, "centroid": [-71.60386443367564, 25.68144722581964], "marker-color": "#ff9f00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.9283270010284, 24.674017344728615] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-85.201027549492, 21.346638923038203], "marker-color": "#5f00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.70000865367116, 21.542018533522416] } }, { "type": "Feature", "properties": { "cluster": 15, "centroid": [-79.95661302836459, 19.68004339959817], "marker-color": "#005fff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.48978633680683, 19.623096473871033] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.67175298435387, 17.880881534565148] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.04610391202878, 26.551597087996466] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.84175265531377, 16.85074369818602] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-85.201027549492, 21.346638923038203], "marker-color": "#5f00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.95908129532202, 21.185424844181092] } }, { "type": "Feature", "properties": { "cluster": 15, "centroid": [-79.95661302836459, 19.68004339959817], "marker-color": "#005fff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.88684525321649, 18.726646021819167] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.15582212817301, 18.696902173553443] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.5644212682104, 20.850894115743387] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.37878622301193, 16.91615114076283] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-85.22273916681061, 18.11205670884361], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.81019601780373, 17.165972386566605] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.4614226211491, 23.444082141644998] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.18265845716839, 25.295833894402776] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.09803657824347, 23.3454534216312] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.34448173717335, 17.84048983960788] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.18827115285569, 20.273168111170328] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.26216347689832, 23.673136982276464] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.21575485381635, 23.096925087889748] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.01908584146595, 21.557475862048076] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.92274968888073, 26.019876080997598] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-85.201027549492, 21.346638923038203], "marker-color": "#5f00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.55727606952377, 22.36430316761306] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.25891612041117, 19.525184281200534] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.64279747070925, 25.651725881829897] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.40499501048518, 16.63021658406485] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.64998704253041, 24.234779530366744] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-85.22273916681061, 18.11205670884361], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.30467012694315, 17.92521920364085] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.76550387867614, 21.84873202139447] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.2770011073176, 26.540918581152965] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.20171143790367, 24.334344930797855] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-85.22273916681061, 18.11205670884361], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.51391779937516, 18.211967578932978] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.81858154084357, 19.071318793255987] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.87897523658762, 22.009563011217917] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.17146072076018, 22.71145107992815] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.14138268439117, 27.295964747431004] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.01085563325441, 23.60461239295877] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.61068998466835, 21.311283807756645] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.76701891828932, 27.195861233372437] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.55059712821668, 25.49682672225246] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-85.201027549492, 21.346638923038203], "marker-color": "#5f00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.42534293525704, 20.342801196105015] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.85957138950651, 25.651916540759668] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.67260570784427, 20.45532583962798] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.81872422593077, 21.669857512462364] } }, { "type": "Feature", "properties": { "cluster": 15, "centroid": [-79.95661302836459, 19.68004339959817], "marker-color": "#005fff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.38646877459935, 19.37340763751337] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-85.22273916681061, 18.11205670884361], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.50710379745864, 18.424063455433217] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.632893967135, 23.107454998460437] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.36852553393699, 24.295072371424403] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.86140755178053, 17.50071319492512] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.56458486764306, 23.27787869671228] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.25719355261317, 18.841254641177088] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.79365159485565, 24.73837411446049] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.77110623794552, 22.880747711470292] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.17830942471453, 27.459109723499697] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.5062774214051, 17.326690422594897] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.19600112265177, 22.73914989583398] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.58173201222138, 23.850997885697698] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-85.22273916681061, 18.11205670884361], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.71045285694422, 17.079742569860166] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.34171838085163, 22.153445077419946] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.55081810986574, 24.915158163291853] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.59793295622734, 18.75099342612817] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.14433438213305, 27.036543336370556] } }, { "type": "Feature", "properties": { "cluster": 15, "centroid": [-79.95661302836459, 19.68004339959817], "marker-color": "#005fff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.4434583942987, 19.619680064723546] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.51440928893466, 19.680938852916263] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.95150377384275, 26.91911731157561] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.4550593256632, 24.03016205722427] } }, { "type": "Feature", "properties": { "cluster": 7, "centroid": [-71.60386443367564, 25.68144722581964], "marker-color": "#ff9f00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.8228436577642, 25.845318184468677] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-85.22273916681061, 18.11205670884361], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.16769788043096, 16.98191521287846] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.51634149582756, 19.10937565092933] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.72446682780881, 22.25313981239625] } }, { "type": "Feature", "properties": { "cluster": 7, "centroid": [-71.60386443367564, 25.68144722581964], "marker-color": "#ff9f00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.95113454727932, 26.357292830184782] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.89319872559254, 21.773847762169503] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.50995550468448, 26.805856081166645] } }, { "type": "Feature", "properties": { "cluster": 7, "centroid": [-71.60386443367564, 25.68144722581964], "marker-color": "#ff9f00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.72311173060332, 27.453459491416243] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.20796912251339, 16.910765069076696] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.02923748665658, 17.06286092924691] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-85.22273916681061, 18.11205670884361], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.67236850288222, 19.00571371998642] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.43657840692077, 17.42104681957319] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.48932636312891, 18.050155326157473] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.76206658518934, 23.71467590682046] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.46253580071742, 22.833272724615775] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.09703651590019, 17.421833037838393] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.61013158110691, 23.65729956086801] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.66397149031135, 25.831969038126523] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.1727623444978, 24.152605040309613] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.2741188221817, 18.639289071153634] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.90735829536999, 18.190052908059194] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.32489553257798, 19.57470756961103] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.01326798044877, 24.122014119489563] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.52731994000185, 26.95480013106508] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.3558896446572, 17.44256116852827] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.02534851234576, 16.756254338847338] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.47025910061983, 24.118620545794855] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.308362589921, 20.54596248507216] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.34538728645822, 24.41450380344747] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.33122422882889, 23.37013167679639] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.27561331569953, 16.994251063813262] } }, { "type": "Feature", "properties": { "cluster": 7, "centroid": [-71.60386443367564, 25.68144722581964], "marker-color": "#ff9f00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.86851913822156, 25.81027224474102] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.24173363419717, 24.34323106176321] } }, { "type": "Feature", "properties": { "cluster": 7, "centroid": [-71.60386443367564, 25.68144722581964], "marker-color": "#ff9f00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.84877351272029, 26.92445686110058] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.71160840330522, 21.77620359204627] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.20296576353552, 21.709322849932395] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.04325753495058, 24.349990861490674] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-85.22273916681061, 18.11205670884361], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.01507615292597, 18.68916636419406] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-85.201027549492, 21.346638923038203], "marker-color": "#5f00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.98455859943033, 21.06707023138771] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-85.201027549492, 21.346638923038203], "marker-color": "#5f00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.40609968225364, 21.87541299401925] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.66122425689909, 19.364456854255717] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.2600583537702, 21.659164464794838] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.73592652087561, 17.55179712679042] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.80434002543046, 18.311428726658654] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.89936609149818, 27.20566948335109] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.9153275956025, 22.728686372271056] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.22442161042382, 20.946470968784404] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.23254193941007, 26.262181726505418] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.62437731409852, 19.781049107501957] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-85.22273916681061, 18.11205670884361], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.49173903601617, 16.92003208241821] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.25829317577141, 21.827114782054075] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.65532298324348, 17.29988957265243] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.3453947248687, 24.50576556423695] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.37506450657898, 16.711071194315227] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-85.201027549492, 21.346638923038203], "marker-color": "#5f00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.42569161383636, 21.026826554775827] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.43791743989885, 24.962432920525124] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.84458598730575, 23.70594482686843] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.37848518046901, 26.34378098000883] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-85.22273916681061, 18.11205670884361], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.13497764736996, 17.934013939878078] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-85.22273916681061, 18.11205670884361], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.54709582459233, 16.53706271986311] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.17844562558024, 23.80702766062598] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.64984925794586, 27.17403653643745] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.89153777133139, 23.170952976617727] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.93875091618717, 25.00047089937265] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.9102252552082, 23.883340808622673] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.45068182631776, 24.018640243238202] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.56517209188608, 24.748894301890655] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.41470444523833, 26.791071724795167] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.27546806320538, 24.62810216606337] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.37798026966385, 22.800554127763526] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-85.22273916681061, 18.11205670884361], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.67038090634749, 19.518488261229543] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.51124408675949, 18.95091920687403] } }, { "type": "Feature", "properties": { "cluster": 7, "centroid": [-71.60386443367564, 25.68144722581964], "marker-color": "#ff9f00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.72209650039468, 24.280447748568445] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.28434198674468, 17.20571626766068] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.15681636726895, 26.828785859624258] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.11344269598334, 17.666989151972253] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-85.201027549492, 21.346638923038203], "marker-color": "#5f00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.96994176238145, 22.888540550894795] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.50079368006108, 26.634382308937134] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.54280695688689, 23.237868840297253] } }, { "type": "Feature", "properties": { "cluster": 7, "centroid": [-71.60386443367564, 25.68144722581964], "marker-color": "#ff9f00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.59204571681656, 24.786873137315194] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.01377215866017, 18.936419309424537] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.01405131484972, 18.581612310870824] } }, { "type": "Feature", "properties": { "cluster": 15, "centroid": [-79.95661302836459, 19.68004339959817], "marker-color": "#005fff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.6420973159142, 18.58453117274099] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.74759623801513, 26.12337676616272] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-85.22273916681061, 18.11205670884361], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.05313261324237, 19.319796400696145] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.13970036126891, 17.506087557394512] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-85.201027549492, 21.346638923038203], "marker-color": "#5f00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.75848457074353, 21.115370497855984] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.16830971446066, 24.6894321007414] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.21048541308969, 17.919231608494442] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.97637737411591, 23.150822409149665] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.98806643205722, 18.733700354050203] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.73009496457921, 23.7983464395302] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-85.22273916681061, 18.11205670884361], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.21686530340585, 18.59063554310776] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.94846192062774, 19.236367113472895] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.97783503664645, 19.823228188109127] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-85.201027549492, 21.346638923038203], "marker-color": "#5f00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.31384918144222, 22.633190689556994] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.49404471100601, 22.009751251682275] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.1270341028659, 25.781532521957693] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.51950761862354, 23.496329401717578] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-85.201027549492, 21.346638923038203], "marker-color": "#5f00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.67344643947845, 20.92896756107965] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.28006204700529, 18.638001663502685] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.33788518686183, 24.089777622921456] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.03458096249997, 22.65764273416216] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.80104984355006, 26.237062559189845] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.21242542631086, 20.177739085659635] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.38674449250746, 17.652491491363605] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.93734071291428, 23.99085830463023] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.20251485577793, 26.55556740273682] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.73360568748585, 26.28033941085063] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.13262960963559, 22.34430874872904] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.54532805510269, 17.55045667323678] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.80026818559628, 18.561998669158292] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.28628835491551, 19.571063802546057] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.58131591277606, 24.21369712743759] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.88085722918547, 19.753718721210948] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.64966522234937, 20.677188588895476] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.24840889524553, 19.69712523257967] } }, { "type": "Feature", "properties": { "cluster": 15, "centroid": [-79.95661302836459, 19.68004339959817], "marker-color": "#005fff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.96400931937723, 18.174770180214516] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.70189850382681, 16.534625567595363] } }, { "type": "Feature", "properties": { "cluster": 7, "centroid": [-71.60386443367564, 25.68144722581964], "marker-color": "#ff9f00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.810090294371, 25.23156636266861] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.17536572906562, 19.792647657345] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.79193518864761, 24.737897659493715] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-85.201027549492, 21.346638923038203], "marker-color": "#5f00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.93555696939467, 19.98152959915939] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.21354373461136, 25.88846335275895] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.32534041974515, 26.094983944812824] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.97472021053458, 26.061373986456793] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.84081911742697, 23.793624669453152] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.24844766066971, 24.484245781333726] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.90249827777127, 22.05793250583984] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.07748325170441, 27.337367361375666] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.52285998029147, 17.487274302366117] } }, { "type": "Feature", "properties": { "cluster": 15, "centroid": [-79.95661302836459, 19.68004339959817], "marker-color": "#005fff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.81251634431071, 20.933095236667395] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.58692805675213, 24.80146814851551] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.47378831903654, 21.652685460023044] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.70162022475394, 19.229694616459863] } }, { "type": "Feature", "properties": { "cluster": 7, "centroid": [-71.60386443367564, 25.68144722581964], "marker-color": "#ff9f00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.78777310048918, 23.92218146021364] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.80552346807535, 22.161467782172014] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.55667427680913, 22.171811135508918] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.49928602385201, 27.41608769703238] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.34842284656386, 17.435895054282373] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.21228170738233, 22.173670632023597] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.90881672418563, 21.468642424655155] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.56477901274141, 23.02518524523849] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.43974652662247, 22.60413987147912] } }, { "type": "Feature", "properties": { "cluster": 15, "centroid": [-79.95661302836459, 19.68004339959817], "marker-color": "#005fff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.5883411017305, 19.917932537792794] } }, { "type": "Feature", "properties": { "cluster": 15, "centroid": [-79.95661302836459, 19.68004339959817], "marker-color": "#005fff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.35881511009039, 19.09687830115208] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.72145863838075, 25.18049472134159] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.95694749118951, 27.39255408553263] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.44936060272309, 27.49130192814892] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.61820042082097, 23.049137776556364] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.10989174097693, 18.469712160553517] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.379040540202, 20.37524788330293] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.51495780456581, 16.669087042407536] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.10886304098058, 16.8269149948045] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.72560883757795, 16.962762773864505] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.89333076284501, 24.384990740752006] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.59332944904146, 24.120911542546878] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.42817901090537, 17.74846475203746] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.89833899459296, 19.72230811960007] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.98171564844314, 21.140743955694063] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.99706809934376, 18.63550290606603] } }, { "type": "Feature", "properties": { "cluster": 15, "centroid": [-79.95661302836459, 19.68004339959817], "marker-color": "#005fff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.13208804398411, 19.266357159361213] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.44208974284808, 18.89754661420165] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.67095396405709, 17.953443362949123] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.61949782551551, 25.38069882274378] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.82927583009545, 18.920544836399152] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.71898403700982, 22.858679743400074] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.05832892131573, 25.244587077548168] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.53486708882008, 18.05579400531109] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.3189432679756, 20.059875630170964] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.96213190737039, 26.279325304846623] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.44927404052561, 17.791447001826654] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.39338327111777, 24.626502743687922] } }, { "type": "Feature", "properties": { "cluster": 7, "centroid": [-71.60386443367564, 25.68144722581964], "marker-color": "#ff9f00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.58570795493182, 25.546633692923525] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.83961825329554, 25.484747617185402] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.87200031832714, 23.66114743521159] } }, { "type": "Feature", "properties": { "cluster": 15, "centroid": [-79.95661302836459, 19.68004339959817], "marker-color": "#005fff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.83487262625073, 20.095259588587723] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-85.22273916681061, 18.11205670884361], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.91640675333899, 16.590848739189624] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.30245460933854, 19.23352889608482] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.14994486721066, 20.53183273996738] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.80521037357039, 21.252980629644455] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.8787989831883, 18.218515429796344] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.76978734183139, 17.7977450107505] } }, { "type": "Feature", "properties": { "cluster": 7, "centroid": [-71.60386443367564, 25.68144722581964], "marker-color": "#ff9f00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.80371392928168, 26.040116775073876] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.95744087420283, 25.191234441288678] } }, { "type": "Feature", "properties": { "cluster": 15, "centroid": [-79.95661302836459, 19.68004339959817], "marker-color": "#005fff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.77674346051477, 21.375540465284374] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.29292929991102, 21.98589295297564] } }, { "type": "Feature", "properties": { "cluster": 7, "centroid": [-71.60386443367564, 25.68144722581964], "marker-color": "#ff9f00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.66745422227388, 26.168091294302087] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.92295434812097, 23.30372425686007] } }, { "type": "Feature", "properties": { "cluster": 7, "centroid": [-71.60386443367564, 25.68144722581964], "marker-color": "#ff9f00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.96026394085236, 25.51392205303288] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.43164354544895, 17.413235272364112] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.28566063654243, 18.482281406816814] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.18586938186745, 27.019278441405643] } }, { "type": "Feature", "properties": { "cluster": 15, "centroid": [-79.95661302836459, 19.68004339959817], "marker-color": "#005fff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.00665657564603, 18.009509829132515] } }, { "type": "Feature", "properties": { "cluster": 7, "centroid": [-71.60386443367564, 25.68144722581964], "marker-color": "#ff9f00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.78174587415, 25.852826126614094] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.17395695535176, 20.322052935788367] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.75631134659818, 27.4074383447763] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.30133416063728, 22.908999108726512] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.5468209860248, 25.79011427888136] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.50335139484208, 25.338279000551893] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.85611159709538, 24.40263258506802] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-85.201027549492, 21.346638923038203], "marker-color": "#5f00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.19143746995799, 22.76299900389558] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.49961985245375, 23.749896556565293] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.93434205722116, 17.8751516982336] } }, { "type": "Feature", "properties": { "cluster": 15, "centroid": [-79.95661302836459, 19.68004339959817], "marker-color": "#005fff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.47725300277814, 20.834238692742822] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.40866406564102, 24.65588369863437] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.23086732338659, 22.010870880797054] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.55598541988493, 23.62640751670331] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.067479899787, 22.44918038801505] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.5723788030903, 23.774277575000852] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.68634851848167, 23.203154689599817] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.97302399035408, 22.395504699565535] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.47937906764957, 24.839570106333433] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.63060572237521, 22.939370867570908] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.28374988273468, 16.800162341500304] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-85.201027549492, 21.346638923038203], "marker-color": "#5f00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.01980255637385, 21.18954858284259] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.80981841825783, 16.752970728846513] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.0632043924848, 17.78197939775129] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.31937806169958, 16.63036465541673] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.51362280935948, 19.07306061464646] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.6462554841785, 18.765258635070385] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.90737511126233, 25.663681166863604] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.3184598837461, 20.339708336838683] } }, { "type": "Feature", "properties": { "cluster": 15, "centroid": [-79.95661302836459, 19.68004339959817], "marker-color": "#005fff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.25614050898571, 20.47865304539995] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.05273739031475, 27.278196207610172] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.57090751033381, 25.058967866824403] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.72044789264216, 17.86742294760512] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.45286775268717, 27.264956115483226] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.46924741699405, 22.27588495796526] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.2743504888918, 26.691822644671085] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.18119091611597, 24.755151867045228] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.9753411638257, 22.736683695999382] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.17815192274419, 17.766464076510605] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.79951671731996, 16.979753651505465] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.81530228240368, 21.899431865794316] } }, { "type": "Feature", "properties": { "cluster": 15, "centroid": [-79.95661302836459, 19.68004339959817], "marker-color": "#005fff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.15292492090326, 18.519443297834165] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.11308732341453, 22.73505946813462] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.00830955618024, 21.885311144830727] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.54728340532579, 17.713742740545893] } }, { "type": "Feature", "properties": { "cluster": 7, "centroid": [-71.60386443367564, 25.68144722581964], "marker-color": "#ff9f00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.53755328892348, 25.323104677883705] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.68105867358958, 27.21289905396955] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.96411774831036, 22.888644254222072] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.98170526139158, 20.98332034823357] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-85.22273916681061, 18.11205670884361], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.56755786305595, 19.40265705295205] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.9097441614737, 25.69899354986159] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.8522033753837, 16.57371866969067] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.59048812893998, 22.36793387394907] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.69797232502891, 17.49676706923224] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.4273474590883, 20.29560385897871] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.75702086888295, 18.06842605714349] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.93509999305662, 24.197922897145702] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.59056449409796, 17.249155158477635] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.04442014558218, 20.180967527569678] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.37084983049334, 18.874173436903888] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.56890381178304, 24.88700194600341] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.06300053256552, 25.068476848998436] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.07431215190033, 23.634255220677876] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.97261043138833, 20.783569456567577] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.69220087076908, 23.99722100792555] } }, { "type": "Feature", "properties": { "cluster": 15, "centroid": [-79.95661302836459, 19.68004339959817], "marker-color": "#005fff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.28624765409677, 19.684275914963393] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.26371632117386, 23.468899954784128] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.64211828010676, 22.535063069435896] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.76720344494535, 17.95425416674962] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.84949687526881, 23.882703836621122] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.51599855499506, 22.18056139559293] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.0586637697147, 22.618118595420675] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.82988603140993, 22.75446266986306] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-85.201027549492, 21.346638923038203], "marker-color": "#5f00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.10048201961024, 21.361849810266136] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.04153303125153, 20.350657127526738] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.59504589774306, 27.064096554971023] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-85.22273916681061, 18.11205670884361], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.07548891214728, 17.301084891511273] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-85.22273916681061, 18.11205670884361], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.33158765668573, 19.452979509754268] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.81854336800883, 24.131395375394586] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.684418563593, 21.47654476359144] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.00730697784353, 25.897847636990367] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.40829350874473, 27.268125557919248] } }, { "type": "Feature", "properties": { "cluster": 15, "centroid": [-79.95661302836459, 19.68004339959817], "marker-color": "#005fff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.2707934048482, 20.982305048038683] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.38809337052642, 26.427105032557755] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.0134734724832, 25.13419607033201] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.17642686622017, 25.221069930712087] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-85.201027549492, 21.346638923038203], "marker-color": "#5f00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.71994017762563, 20.189025977120103] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.29187361259146, 27.392240106344147] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.79976558388476, 20.035863120368496] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.3275873181896, 23.43075879262019] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.30217792473226, 22.66331518976522] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-85.22273916681061, 18.11205670884361], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.02504204870841, 18.793197099411397] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.96796993174219, 24.703657172369798] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.41505346819054, 25.017559911985607] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-85.201027549492, 21.346638923038203], "marker-color": "#5f00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.287484618002, 19.75003759357949] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.25519670513809, 19.980973614544432] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.3831207434748, 20.990164116130572] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-73.30367109087219, 25.1900948213395] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.33929483454432, 17.79933711363019] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.3072622609112, 19.064713633397105] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-85.22273916681061, 18.11205670884361], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.09464045072042, 16.867824298530778] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.01339730011378, 25.682665424232965] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.74959288173342, 17.47999904710256] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.95625724719481, 26.53239538653403] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.95900351362758, 26.964513550251407] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.22624323598141, 17.943008474474265] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.14342020536195, 18.867794740406104] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-85.201027549492, 21.346638923038203], "marker-color": "#5f00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-85.61849018164143, 22.47855670455455] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-85.22273916681061, 18.11205670884361], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.7861071942679, 18.669738072373164] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-86.00369227814197, 24.612757650509216] } }, { "type": "Feature", "properties": { "cluster": 4, "centroid": [-72.1036518524473, 21.632139370868533], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.77138891405684, 20.81044983619232] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.89623600838752, 19.396975077838288] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.40595166597085, 26.80155978434455] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.80825302190365, 23.35316310450464] } }, { "type": "Feature", "properties": { "cluster": 9, "centroid": [-83.28970527419875, 25.03901137331529], "marker-color": "#9fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.96259557904392, 24.196187792487656] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.08863800575135, 25.15698262014013] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.75695759804495, 20.08490410319372] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.42234796309599, 26.22301149374214] } }, { "type": "Feature", "properties": { "cluster": 5, "centroid": [-74.59772375968392, 26.040657608812058], "marker-color": "#ff001e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.26218882048389, 26.41236152098589] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.87135659444625, 17.56355668256735] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.49722908932829, 21.926256397875694] } }, { "type": "Feature", "properties": { "cluster": 7, "centroid": [-71.60386443367564, 25.68144722581964], "marker-color": "#ff9f00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-70.7096594822639, 24.460836562368442] } }, { "type": "Feature", "properties": { "cluster": 7, "centroid": [-71.60386443367564, 25.68144722581964], "marker-color": "#ff9f00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-71.09304190552334, 27.42090911618883] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.0243253011326, 17.45098074087971] } }, { "type": "Feature", "properties": { "cluster": 11, "centroid": [-74.87813096725604, 19.051404705480532], "marker-color": "#00ff20", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.25880876997459, 18.567348945414572] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.15374231895991, 19.572527461376602] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.90718745331596, 18.01378466658022] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-82.07389862745148, 18.10014805204155], "marker-color": "#ff00de", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.3932989046418, 19.030002383084067] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.56289580127358, 23.7331334661265] } }, { "type": "Feature", "properties": { "cluster": 8, "centroid": [-74.65884587304036, 23.14443612672486], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-74.32615130900722, 23.22949976202878] } }, { "type": "Feature", "properties": { "cluster": 10, "centroid": [-81.67819501734249, 22.456058950791007], "marker-color": "#3fff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.32932140159735, 21.369086228743924] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-77.80959890542613, 23.062586927512516], "marker-color": "#bf00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.40761927871347, 22.617986414434352] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.6909951062254, 17.986704731304503] } }, { "type": "Feature", "properties": { "cluster": 12, "centroid": [-77.46953467512287, 17.829026800774887], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.38990946382116, 17.402709176906622] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-85.201027549492, 21.346638923038203], "marker-color": "#5f00ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.59495181641225, 22.81831350748234] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-78.38487102139864, 26.08247375588085] } }, { "type": "Feature", "properties": { "cluster": 14, "centroid": [-85.66057622205204, 25.309521790657058], "marker-color": "#00beff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.86031632408672, 24.23389023003475] } }, { "type": "Feature", "properties": { "cluster": 6, "centroid": [-78.71931668447289, 26.441283306379056], "marker-color": "#ff4000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.76905431857912, 27.471768557404076] } }, { "type": "Feature", "properties": { "cluster": 13, "centroid": [-71.88949473129752, 18.220552149539706], "marker-color": "#00ffe0", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.43945965828523, 18.638609876647752] } }, { "type": "Feature", "properties": { "marker-color": "#000080", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-85.22273916681061, 18.11205670884361] } }, { "type": "Feature", "properties": { "fill": "#000080", "stroke": "#000080", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.16769788043096, 16.98191521287846], [-86.07548891214728, 17.301084891511273], [-86.58330318049086, 18.09915952726896], [-86.21686530340585, 18.59063554310776], [-86.01507615292597, 18.68916636419406], [-86.02504204870841, 18.793197099411397], [-86.56755786305595, 19.40265705295205], [-86.05313261324237, 19.319796400696145], [-85.67038090634749, 19.518488261229543], [-84.36337554761008, 19.119473770547124], [-84.33158765668573, 19.452979509754268], [-83.71943800617547, 19.616649637864654], [-83.7861071942679, 18.669738072373164], [-84.50710379745864, 18.424063455433217], [-84.51391779937516, 18.211967578932978], [-84.81019601780373, 17.165972386566605], [-84.71045285694422, 17.079742569860166], [-84.28985709132587, 16.584015683001546], [-84.91640675333899, 16.590848739189624], [-85.54709582459233, 16.53706271986311], [-86.16769788043096, 16.98191521287846] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#2f0080", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-85.201027549492, 21.346638923038203] } }, { "type": "Feature", "properties": { "fill": "#2f0080", "stroke": "#2f0080", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.287484618002, 19.75003759357949], [-86.71994017762563, 20.189025977120103], [-85.98455859943033, 21.06707023138771], [-85.95908129532202, 21.185424844181092], [-86.26129906562491, 21.294934204528648], [-86.40609968225364, 21.87541299401925], [-86.55727606952377, 22.36430316761306], [-85.61849018164143, 22.47855670455455], [-85.2549851564484, 22.35997051326973], [-84.96994176238145, 22.888540550894795], [-84.59495181641225, 22.81831350748234], [-84.31384918144222, 22.633190689556994], [-84.19143746995799, 22.76299900389558], [-83.70000865367116, 21.542018533522416], [-83.44899512481147, 21.52626642668551], [-83.26242751330523, 20.472647289870025], [-84.42534293525704, 20.342801196105015], [-84.48717976822758, 20.224242981590255], [-85.93555696939467, 19.98152959915939], [-86.287484618002, 19.75003759357949] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#5f0080", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-77.80959890542613, 23.062586927512516] } }, { "type": "Feature", "properties": { "fill": "#5f0080", "stroke": "#5f0080", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.46924741699405, 22.27588495796526], [-79.43974652662247, 22.60413987147912], [-79.07431215190033, 23.634255220677876], [-79.26216347689832, 23.673136982276464], [-79.60441825132624, 23.93129090727725], [-79.01326798044877, 24.122014119489563], [-78.9102252552082, 23.883340808622673], [-78.20462326614003, 24.00357261039075], [-77.54286133638129, 24.13575708893132], [-77.4550593256632, 24.03016205722427], [-77.20171143790367, 24.334344930797855], [-77.24844766066971, 24.484245781333726], [-77.18119091611597, 24.755151867045228], [-76.3453947248687, 24.50576556423695], [-76.45068182631776, 24.018640243238202], [-76.58173201222138, 23.850997885697698], [-76.76206658518934, 23.71467590682046], [-76.68634851848167, 23.203154689599817], [-76.41316964578398, 23.148029434777555], [-76.40761927871347, 22.617986414434352], [-76.49404471100601, 22.009751251682275], [-76.61068998466835, 21.311283807756645], [-77.5644212682104, 20.850894115743387], [-77.92734033427595, 20.82599847071201], [-78.49722908932829, 21.926256397875694], [-78.89319872559254, 21.773847762169503], [-78.87897523658762, 22.009563011217917], [-79.46924741699405, 22.27588495796526] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#80006e", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-82.07389862745148, 18.10014805204155] } }, { "type": "Feature", "properties": { "fill": "#80006e", "stroke": "#80006e", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-83.34448173717335, 17.84048983960788], [-83.28006204700529, 18.638001663502685], [-83.3932989046418, 19.030002383084067], [-83.32489553257798, 19.57470756961103], [-82.97783503664645, 19.823228188109127], [-82.51440928893466, 19.680938852916263], [-81.8977221405959, 19.412558043465], [-81.25719355261317, 18.841254641177088], [-81.14342020536195, 18.867794740406104], [-81.15582212817301, 18.696902173553443], [-80.67095396405709, 17.953443362949123], [-80.52285998029147, 17.487274302366117], [-80.27561331569953, 16.994251063813262], [-81.02534851234576, 16.756254338847338], [-81.51495780456581, 16.669087042407536], [-81.72560883757795, 16.962762773864505], [-82.20796912251339, 16.910765069076696], [-82.5062774214051, 17.326690422594897], [-83.09703651590019, 17.421833037838393], [-83.17815192274419, 17.766464076510605], [-83.33929483454432, 17.79933711363019], [-83.34448173717335, 17.84048983960788] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#80003e", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-72.1036518524473, 21.632139370868533] } }, { "type": "Feature", "properties": { "fill": "#80003e", "stroke": "#80003e", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.57808400285332, 20.00051975393173], [-73.17395695535176, 20.322052935788367], [-73.3184598837461, 20.339708336838683], [-72.97261043138833, 20.783569456567577], [-72.80042213720098, 20.990256802329768], [-73.24887371103026, 21.739851639014628], [-72.90249827777127, 22.05793250583984], [-72.97302399035408, 22.395504699565535], [-72.71898403700982, 22.858679743400074], [-72.46253580071742, 22.833272724615775], [-72.3275873181896, 23.43075879262019], [-71.89153777133139, 23.170952976617727], [-71.56458486764306, 23.27787869671228], [-71.30133416063728, 22.908999108726512], [-71.17146072076018, 22.71145107992815], [-70.8076846951252, 22.255910609327792], [-70.81872422593077, 21.669857512462364], [-70.94492705924428, 21.0702981386651], [-71.22442161042382, 20.946470968784404], [-71.23882701110625, 20.30184311650061], [-72.04442014558218, 20.180967527569678], [-72.57808400285332, 20.00051975393173] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#80000e", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-74.59772375968392, 26.040657608812058] } }, { "type": "Feature", "properties": { "fill": "#80000e", "stroke": "#80000e", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.39338327111777, 24.626502743687922], [-75.43791743989885, 24.962432920525124], [-75.54213379075634, 25.505384186492893], [-76.57090751033381, 25.058967866824403], [-76.50335139484208, 25.338279000551893], [-76.55059712821668, 25.49682672225246], [-76.26218882048389, 26.41236152098589], [-75.40829350874473, 27.268125557919248], [-74.75631134659818, 27.4074383447763], [-74.14433438213305, 27.036543336370556], [-74.07684618758876, 27.17395724732544], [-73.77643699392496, 27.091684659861052], [-73.76701891828932, 27.195861233372437], [-73.14138268439117, 27.295964747431004], [-73.38809337052642, 26.427105032557755], [-73.64279747070925, 25.651725881829897], [-73.30367109087219, 25.1900948213395], [-73.58692805675213, 24.80146814851551], [-73.79193518864761, 24.737897659493715], [-73.79365159485565, 24.73837411446049], [-75.39338327111777, 24.626502743687922] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#802000", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-78.71931668447289, 26.441283306379056] } }, { "type": "Feature", "properties": { "fill": "#802000", "stroke": "#802000", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-80.72145863838075, 25.18049472134159], [-80.39732218872196, 25.629464613691137], [-80.23254193941007, 26.262181726505418], [-81.15681636726895, 26.828785859624258], [-80.96348979974654, 27.35814140608639], [-80.76905431857912, 27.471768557404076], [-79.99265814798184, 27.483971653923085], [-79.18586938186745, 27.019278441405643], [-78.89936609149818, 27.20566948335109], [-78.17830942471453, 27.459109723499697], [-77.95694749118951, 27.39255408553263], [-77.65455892791887, 27.186142540274957], [-77.64984925794586, 27.17403653643745], [-76.68105867358958, 27.21289905396955], [-77.41470444523833, 26.791071724795167], [-77.20251485577793, 26.55556740273682], [-76.96213190737039, 26.279325304846623], [-77.05832892131573, 25.244587077548168], [-77.61949782551551, 25.38069882274378], [-78.55079764304975, 25.525431992772358], [-78.97472021053458, 26.061373986456793], [-79.32534041974515, 26.094983944812824], [-79.3121102967554, 25.956525827964448], [-79.5468209860248, 25.79011427888136], [-80.04325753495058, 24.349990861490674], [-80.72145863838075, 25.18049472134159] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#805000", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-71.60386443367564, 25.68144722581964] } }, { "type": "Feature", "properties": { "fill": "#805000", "stroke": "#805000", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.9283270010284, 24.674017344728615], [-72.92622530551323, 25.623260952842156], [-72.95113454727932, 26.357292830184782], [-72.76340181762502, 26.57219504751686], [-72.72311173060332, 27.453459491416243], [-71.09304190552334, 27.42090911618883], [-70.84877351272029, 26.92445686110058], [-71.11420407247648, 26.113452348786268], [-70.80371392928168, 26.040116775073876], [-70.78174587415, 25.852826126614094], [-70.58570795493182, 25.546633692923525], [-70.67472974247343, 24.956264380693316], [-70.7096594822639, 24.460836562368442], [-71.72209650039468, 24.280447748568445], [-71.78777310048918, 23.92218146021364], [-72.59204571681656, 24.786873137315194], [-72.9283270010284, 24.674017344728615] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#808000", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-74.65884587304036, 23.14443612672486] } }, { "type": "Feature", "properties": { "fill": "#808000", "stroke": "#808000", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.90881672418563, 21.468642424655155], [-75.55667427680913, 22.171811135508918], [-75.64211828010676, 22.535063069435896], [-76.03458096249997, 22.65764273416216], [-75.4614226211491, 23.444082141644998], [-75.84458598730575, 23.70594482686843], [-75.89333076284501, 24.384990740752006], [-75.34538728645822, 24.41450380344747], [-74.69220087076908, 23.99722100792555], [-74.05488356732162, 24.111641311913072], [-73.93734071291428, 23.99085830463023], [-73.59332944904146, 24.120911542546878], [-73.73009496457921, 23.7983464395302], [-73.54280695688689, 23.237868840297253], [-73.23963323045145, 23.244627904260923], [-73.81530228240368, 21.899431865794316], [-74.27364128877521, 21.130861117009847], [-74.71160840330522, 21.77620359204627], [-75.90881672418563, 21.468642424655155] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#4f8000", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-83.28970527419875, 25.03901137331529] } }, { "type": "Feature", "properties": { "fill": "#4f8000", "stroke": "#4f8000", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-84.09803657824347, 23.3454534216312], [-84.5179339115434, 23.450627516507094], [-84.47025910061983, 24.118620545794855], [-84.41505346819054, 25.017559911985607], [-84.2520931858629, 25.53784765691357], [-84.21354373461136, 25.88846335275895], [-83.74759623801513, 26.12337676616272], [-83.40595166597085, 26.80155978434455], [-83.07748325170441, 27.337367361375666], [-82.45286775268717, 27.264956115483226], [-82.50995550468448, 26.805856081166645], [-82.13081869539506, 26.23449839991876], [-81.56890381178304, 24.88700194600341], [-81.40866406564102, 24.65588369863437], [-82.27546806320538, 24.62810216606337], [-82.3562097070285, 24.24226765651852], [-83.2729878125471, 23.65784314034355], [-83.55598541988493, 23.62640751670331], [-84.09803657824347, 23.3454534216312] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#1f8000", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-81.67819501734249, 22.456058950791007] } }, { "type": "Feature", "properties": { "fill": "#1f8000", "stroke": "#1f8000", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-82.80521037357039, 21.252980629644455], [-82.684418563593, 21.47654476359144], [-83.00830955618024, 21.885311144830727], [-82.86222771555597, 22.720569651349564], [-82.56477901274141, 23.02518524523849], [-82.17844562558024, 23.80702766062598], [-80.93509999305662, 24.197922897145702], [-80.45164209210782, 23.76673190659356], [-80.37798026966385, 22.800554127763526], [-80.19600112265177, 22.73914989583398], [-79.76550387867614, 21.84873202139447], [-80.55680807421967, 21.907870183116437], [-81.3831207434748, 20.990164116130572], [-81.98171564844314, 21.140743955694063], [-82.80521037357039, 21.252980629644455] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#008010", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-74.87813096725604, 19.051404705480532] } }, { "type": "Feature", "properties": { "fill": "#008010", "stroke": "#008010", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.18027511981438, 18.875894880366534], [-76.30245460933854, 19.23352889608482], [-76.62437731409852, 19.781049107501957], [-76.379040540202, 20.37524788330293], [-75.98170526139158, 20.98332034823357], [-75.75695759804495, 20.08490410319372], [-75.4273474590883, 20.29560385897871], [-75.21242542631086, 20.177739085659635], [-75.18827115285569, 20.273168111170328], [-75.04153303125153, 20.350657127526738], [-74.64966522234937, 20.677188588895476], [-73.67260570784427, 20.45532583962798], [-73.65487739464005, 20.270385418656613], [-73.70162022475394, 19.229694616459863], [-73.75288708284614, 18.922685406247748], [-73.59793295622734, 18.75099342612817], [-73.73592652087561, 17.55179712679042], [-74.37506450657898, 16.711071194315227], [-74.8522033753837, 16.57371866969067], [-75.10886304098058, 16.8269149948045], [-75.0632043924848, 17.78197939775129], [-75.48932636312891, 18.050155326157473], [-75.75702086888295, 18.06842605714349], [-76.18027511981438, 18.875894880366534] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#008040", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-77.46953467512287, 17.829026800774887] } }, { "type": "Feature", "properties": { "fill": "#008040", "stroke": "#008040", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-77.65357594791968, 16.66838838845727], [-77.84175265531377, 16.85074369818602], [-77.79951671731996, 16.979753651505465], [-78.28434198674468, 17.20571626766068], [-78.51548817891319, 17.202270132332913], [-79.13970036126891, 17.506087557394512], [-79.27005222591032, 17.528372337434828], [-78.93434205722116, 17.8751516982336], [-78.28566063654243, 18.482281406816814], [-78.25360192470616, 18.686705558388965], [-77.99706809934376, 18.63550290606603], [-77.51634149582756, 19.10937565092933], [-77.28628835491551, 19.571063802546057], [-77.25519670513809, 19.980973614544432], [-77.17536572906562, 19.792647657345], [-77.01405131484972, 18.581612310870824], [-77.10989174097693, 18.469712160553517], [-76.80434002543046, 18.311428726658654], [-76.54532805510269, 17.55045667323678], [-76.11344269598334, 17.666989151972253], [-75.86140755178053, 17.50071319492512], [-76.0243253011326, 17.45098074087971], [-76.38990946382116, 17.402709176906622], [-76.70189850382681, 16.534625567595363], [-76.80981841825783, 16.752970728846513], [-77.28374988273468, 16.800162341500304], [-77.40499501048518, 16.63021658406485], [-77.65357594791968, 16.66838838845727] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#008070", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-71.88949473129752, 18.220552149539706] } }, { "type": "Feature", "properties": { "fill": "#008070", "stroke": "#008070", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-70.59056449409796, 17.249155158477635], [-71.3558896446572, 17.44256116852827], [-71.43164354544895, 17.413235272364112], [-71.65532298324348, 17.29988957265243], [-72.02923748665658, 17.06286092924691], [-73.31937806169958, 16.63036465541673], [-72.99075803676163, 17.651929487468298], [-73.21048541308969, 17.919231608494442], [-73.01377215866017, 18.936419309424537], [-72.66122425689909, 19.364456854255717], [-72.15374231895991, 19.572527461376602], [-71.89833899459296, 19.72230811960007], [-70.89623600838752, 19.396975077838288], [-70.63635988061537, 18.75973134353604], [-70.80026818559628, 18.561998669158292], [-70.76720344494535, 17.95425416674962], [-70.59056449409796, 17.249155158477635] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#005e80", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-85.66057622205204, 25.309521790657058] } }, { "type": "Feature", "properties": { "fill": "#005e80", "stroke": "#005e80", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.84081911742697, 23.793624669453152], [-86.84949687526881, 23.882703836621122], [-86.96796993174219, 24.703657172369798], [-86.55081810986574, 24.915158163291853], [-86.57393282654176, 26.261024024692077], [-86.95625724719481, 26.53239538653403], [-86.59504589774306, 27.064096554971023], [-85.49928602385201, 27.41608769703238], [-85.29187361259146, 27.392240106344147], [-84.44936060272309, 27.49130192814892], [-84.66397149031135, 25.831969038126523], [-84.85957138950651, 25.651916540759668], [-84.90737511126233, 25.663681166863604], [-84.98702719224296, 25.275001495112985], [-85.0134734724832, 25.13419607033201], [-84.63151040609172, 24.490225688795583], [-84.85611159709538, 24.40263258506802], [-84.86031632408672, 24.23389023003475], [-85.24173363419717, 24.34323106176321], [-85.51950761862354, 23.496329401717578], [-86.17454776573982, 23.461743771248557], [-86.84081911742697, 23.793624669453152] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#002f80", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-79.95661302836459, 19.68004339959817] } }, { "type": "Feature", "properties": { "fill": "#002f80", "stroke": "#002f80", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.13208804398411, 19.266357159361213], [-81.28624765409677, 19.684275914963393], [-80.81251634431071, 20.933095236667395], [-80.47725300277814, 20.834238692742822], [-80.2707934048482, 20.982305048038683], [-80.22266857015823, 20.94137638968897], [-79.77674346051477, 21.375540465284374], [-79.25614050898571, 20.47865304539995], [-78.83487262625073, 20.095259588587723], [-78.5883411017305, 19.917932537792794], [-78.4434583942987, 19.619680064723546], [-78.88684525321649, 18.726646021819167], [-79.43898229878118, 18.874231952472687], [-80.15292492090326, 18.519443297834165], [-79.96400931937723, 18.174770180214516], [-80.00665657564603, 18.009509829132515], [-80.6420973159142, 18.58453117274099], [-81.13208804398411, 19.266357159361213] ] ] } } ] } ================================================ FILE: packages/turf-clusters-kmeans/test/out/points-with-properties.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-symbol": 1, "cluster": 0, "centroid": [68.682861328125, -48.87431385568385], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [68.477783203125, -48.84302835299516] } }, { "type": "Feature", "properties": { "marker-symbol": 2, "cluster": 0, "centroid": [68.682861328125, -48.87431385568385], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [68.873291015625, -48.821332549646634] } }, { "type": "Feature", "properties": { "marker-symbol": 3, "cluster": 0, "centroid": [68.682861328125, -48.87431385568385], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [68.69750976562499, -48.958580664409766] } }, { "type": "Feature", "properties": { "marker-symbol": 4, "cluster": 1, "centroid": [71.4111328125, -49.29389258186046], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [70.87280273437499, -49.418120700666414] } }, { "type": "Feature", "properties": { "marker-symbol": 5, "cluster": 1, "centroid": [71.4111328125, -49.29389258186046], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [71.949462890625, -49.36091154712616] } }, { "type": "Feature", "properties": { "marker-symbol": 6, "cluster": 1, "centroid": [71.4111328125, -49.29389258186046], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [71.4111328125, -49.102645497788814] } }, { "type": "Feature", "properties": { "marker-color": "#000080", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [68.682861328125, -48.87431385568385] } }, { "type": "Feature", "properties": { "fill": "#000080", "stroke": "#000080", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [68.69750976562499, -48.958580664409766], [68.477783203125, -48.84302835299516], [68.873291015625, -48.821332549646634], [68.69750976562499, -48.958580664409766] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#808000", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [71.4111328125, -49.29389258186046] } }, { "type": "Feature", "properties": { "fill": "#808000", "stroke": "#808000", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [71.949462890625, -49.36091154712616], [70.87280273437499, -49.418120700666414], [71.4111328125, -49.102645497788814], [71.949462890625, -49.36091154712616] ] ] } } ] } ================================================ FILE: packages/turf-clusters-kmeans/test/out/points1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "cluster": 0, "centroid": [-82.3114013671875, 23.093189398632948], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.46337890625, 23.059516273509303] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-82.3114013671875, 23.093189398632948], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.353515625, 23.120153621695614] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-82.3114013671875, 23.093189398632948], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.36450195312499, 23.074678175027337] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-82.3114013671875, 23.093189398632948], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.19970703125, 23.221154981846556] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-82.3114013671875, 23.093189398632948], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.19970703125, 23.089838367476705] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-82.3114013671875, 23.093189398632948], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.28759765625, 22.99379497224218] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-75.81596374511719, 20.06558308561739], "marker-color": "#00ff01", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.8551025390625, 20.035289711352377] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-75.81596374511719, 20.06558308561739], "marker-color": "#00ff01", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.6683349609375, 20.128155311797183] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-75.81596374511719, 20.06558308561739], "marker-color": "#00ff01", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.73974609375, 20.122997556207757] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-75.81596374511719, 20.06558308561739], "marker-color": "#00ff01", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.6683349609375, 20.030128899024707] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-75.81596374511719, 20.06558308561739], "marker-color": "#00ff01", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.80017089843749, 20.040450354169483] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-75.81596374511719, 20.06558308561739], "marker-color": "#00ff01", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.0089111328125, 20.226120295836992] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-75.81596374511719, 20.06558308561739], "marker-color": "#00ff01", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.0308837890625, 19.926877111209265] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-75.81596374511719, 20.06558308561739], "marker-color": "#00ff01", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-75.7562255859375, 20.014645445341365] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-80.44267926897321, 22.122696498115662], "marker-color": "#ff0000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.46936035156249, 22.070368801349257] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-80.44267926897321, 22.122696498115662], "marker-color": "#ff0000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.34027099609375, 22.2026634080092] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-80.44267926897321, 22.122696498115662], "marker-color": "#ff0000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.35675048828125, 22.12126604542578] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-80.44267926897321, 22.122696498115662], "marker-color": "#ff0000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.43914794921875, 22.271305748177635] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-80.44267926897321, 22.122696498115662], "marker-color": "#ff0000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.38970947265625, 22.021999432851782] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-80.44267926897321, 22.122696498115662], "marker-color": "#ff0000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.55999755859375, 22.118721619281263] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-80.44267926897321, 22.122696498115662], "marker-color": "#ff0000", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-80.54351806640625, 22.0525504317147] } }, { "type": "Feature", "properties": { "marker-color": "#000080", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-82.3114013671875, 23.093189398632948] } }, { "type": "Feature", "properties": { "fill": "#000080", "stroke": "#000080", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-82.28759765625, 22.99379497224218], [-82.46337890625, 23.059516273509303], [-82.36450195312499, 23.074678175027337], [-82.353515625, 23.120153621695614], [-82.19970703125, 23.221154981846556], [-82.19970703125, 23.089838367476705], [-82.28759765625, 22.99379497224218] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#800000", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-80.44267926897321, 22.122696498115662] } }, { "type": "Feature", "properties": { "fill": "#800000", "stroke": "#800000", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-80.54351806640625, 22.0525504317147], [-80.55999755859375, 22.118721619281263], [-80.43914794921875, 22.271305748177635], [-80.34027099609375, 22.2026634080092], [-80.35675048828125, 22.12126604542578], [-80.38970947265625, 22.021999432851782], [-80.46936035156249, 22.070368801349257], [-80.54351806640625, 22.0525504317147] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#008001", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-75.81596374511719, 20.06558308561739] } }, { "type": "Feature", "properties": { "fill": "#008001", "stroke": "#008001", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.6683349609375, 20.030128899024707], [-75.7562255859375, 20.014645445341365], [-75.8551025390625, 20.035289711352377], [-76.0308837890625, 19.926877111209265], [-76.0089111328125, 20.226120295836992], [-75.80017089843749, 20.040450354169483], [-75.73974609375, 20.122997556207757], [-75.6683349609375, 20.128155311797183], [-75.6683349609375, 20.030128899024707] ] ] } } ] } ================================================ FILE: packages/turf-clusters-kmeans/test/out/points2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "cluster": 0, "centroid": [-118.9453125, 58.932370825852416], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-118.30078125, 60.457217797743944] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-118.9453125, 58.932370825852416], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-115.04882812499999, 58.401711667608] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-106.58203125, 58.67171130020744], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-112.5, 60.84491057364912] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-106.58203125, 58.67171130020744], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-110.478515625, 59.265880628258095] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-106.58203125, 58.67171130020744], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-103.71093749999999, 60.673178565817715] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-106.58203125, 58.67171130020744], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-102.3046875, 55.52863052257191] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-83.63568474264706, 53.64101599252527], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-83.935546875, 60.930432202923335] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-83.63568474264706, 53.64101599252527], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.89257812499999, 60.23981116999893] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-83.63568474264706, 53.64101599252527], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-82.79296874999999, 57.468589192089354] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-83.63568474264706, 53.64101599252527], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-72.7734375, 58.63121664342478] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-83.63568474264706, 53.64101599252527], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-79.541015625, 55.178867663281984] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-83.63568474264706, 53.64101599252527], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.263671875, 50.17689812200107] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-83.63568474264706, 53.64101599252527], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-84.990234375, 49.38237278700955] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-83.63568474264706, 53.64101599252527], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-94.21875, 47.27922900257082] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-83.63568474264706, 53.64101599252527], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-88.41796875, 48.28319289548349] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-83.63568474264706, 53.64101599252527], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-92.548828125, 52.855864177853974] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-83.63568474264706, 53.64101599252527], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-87.1875, 45.89000815866184] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-106.58203125, 58.67171130020744], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-107.490234375, 57.040729838360875] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-83.63568474264706, 53.64101599252527], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-69.78515625, 56.511017504952136] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-83.63568474264706, 53.64101599252527], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-81.73828125, 62.83508901142283] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-83.63568474264706, 53.64101599252527], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.37695312499999, 61.938950426660604] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-83.63568474264706, 53.64101599252527], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-91.845703125, 46.07323062540835] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-83.63568474264706, 53.64101599252527], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.640625, 58.44773280389084] } }, { "type": "Feature", "properties": { "cluster": 2, "centroid": [-106.58203125, 58.67171130020744], "marker-color": "#ffff00", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-103.0078125, 58.6769376725869] } }, { "type": "Feature", "properties": { "cluster": 3, "centroid": [-83.63568474264706, 53.64101599252527], "marker-color": "#00ff80", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-88.857421875, 39.774769485295465] } }, { "type": "Feature", "properties": { "cluster": 0, "centroid": [-118.9453125, 58.932370825852416], "marker-color": "#0000ff", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-123.48632812499999, 57.938183012205315] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-116.37974330357143, 43.350853607209785], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-117.158203125, 46.558860303117164] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-116.37974330357143, 43.350853607209785], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-114.873046875, 45.767522962149876] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-116.37974330357143, 43.350853607209785], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-112.67578124999999, 44.402391829093915] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-116.37974330357143, 43.350853607209785], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-119.53125, 44.33956524809713] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-116.37974330357143, 43.350853607209785], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-115.927734375, 43.389081939117496] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-116.37974330357143, 43.350853607209785], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-120.58593749999999, 38.685509760012] } }, { "type": "Feature", "properties": { "cluster": 1, "centroid": [-116.37974330357143, 43.350853607209785], "marker-color": "#ff007e", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-113.90625, 40.3130432088809] } }, { "type": "Feature", "properties": { "marker-color": "#000080", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-118.9453125, 58.932370825852416] } }, { "type": "Feature", "properties": { "fill": "#000080", "stroke": "#000080", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-115.04882812499999, 58.401711667608], [-123.48632812499999, 57.938183012205315], [-118.30078125, 60.457217797743944], [-115.04882812499999, 58.401711667608] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#80003e", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-116.37974330357143, 43.350853607209785] } }, { "type": "Feature", "properties": { "fill": "#80003e", "stroke": "#80003e", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-113.90625, 40.3130432088809], [-120.58593749999999, 38.685509760012], [-119.53125, 44.33956524809713], [-117.158203125, 46.558860303117164], [-114.873046875, 45.767522962149876], [-112.67578124999999, 44.402391829093915], [-113.90625, 40.3130432088809] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#808000", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-106.58203125, 58.67171130020744] } }, { "type": "Feature", "properties": { "fill": "#808000", "stroke": "#808000", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.478515625, 59.265880628258095], [-112.5, 60.84491057364912], [-103.71093749999999, 60.673178565817715], [-103.0078125, 58.6769376725869], [-102.3046875, 55.52863052257191], [-107.490234375, 57.040729838360875], [-110.478515625, 59.265880628258095] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#008040", "marker-symbol": "star-stroked", "marker-size": "large" }, "geometry": { "type": "Point", "coordinates": [-83.63568474264706, 53.64101599252527] } }, { "type": "Feature", "properties": { "fill": "#008040", "stroke": "#008040", "fill-opacity": 0.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.857421875, 39.774769485295465], [-91.845703125, 46.07323062540835], [-94.21875, 47.27922900257082], [-92.548828125, 52.855864177853974], [-82.79296874999999, 57.468589192089354], [-83.935546875, 60.930432202923335], [-81.73828125, 62.83508901142283], [-76.37695312499999, 61.938950426660604], [-72.7734375, 58.63121664342478], [-69.78515625, 56.511017504952136], [-76.640625, 58.44773280389084], [-79.541015625, 55.178867663281984], [-84.990234375, 49.38237278700955], [-87.1875, 45.89000815866184], [-88.857421875, 39.774769485295465] ] ] } } ] } ================================================ FILE: packages/turf-clusters-kmeans/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { centroid } from "@turf/centroid"; import chromatism from "chromatism"; import concaveman from "concaveman"; import { point, polygon, featureCollection } from "@turf/helpers"; import { clusterReduce, clusterEach } from "@turf/clusters"; import { coordAll, featureEach } from "@turf/meta"; import { clustersKmeans } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("clusters-kmeans", (t) => { fixtures.forEach((fixture) => { const name = fixture.name; const geojson = fixture.geojson; const numberOfClusters = (geojson.properties || {}).numberOfClusters; const clustered = clustersKmeans(geojson, { numberOfClusters: numberOfClusters, }); const result = styleResult(clustered); if (process.env.REGEN) writeJsonFileSync(directories.out + name + ".geojson", result); t.deepEqual( result, loadJsonFileSync(directories.out + name + ".geojson"), name ); }); t.end(); }); const points = featureCollection([ point([0, 0], { foo: "bar" }), point([2, 4], { foo: "bar" }), point([3, 6], { foo: "bar" }), ]); test("clusters-kmeans -- translate properties", (t) => { t.equal( clustersKmeans(points, { numberOfClusters: 2 }).features[0].properties.foo, "bar" ); t.end(); }); // style result function styleResult(clustered) { const count = clusterReduce(clustered, "cluster", (i) => i + 1, 0); const colours = chromatism.adjacent(360 / count, count, "#0000FF").hex; const features = []; // Add all Point featureEach(clustered, function (pt) { const clusterId = pt.properties.cluster; pt.properties["marker-color"] = colours[clusterId]; pt.properties["marker-size"] = "small"; features.push(pt); }); // Iterate over each Cluster clusterEach(clustered, "cluster", (cluster, clusterValue, clusterId) => { const color = chromatism.brightness(-25, colours[clusterId]).hex; // Add Centroid features.push( centroid(cluster, { properties: { "marker-color": color, "marker-symbol": "star-stroked", "marker-size": "large", }, }) ); // Add concave polygon features.push( polygon([concaveman(coordAll(cluster))], { fill: color, stroke: color, "fill-opacity": 0.3, }) ); }); return featureCollection(features); } test("clusters-kmeans -- allow input mutation", (t) => { const oldPoints = featureCollection([ point([0, 0], { foo: "bar" }), point([2, 4], { foo: "bar" }), point([3, 6], { foo: "bar" }), ]); // No mutation const newPoints = clustersKmeans(points, { numberOfClusters: 3 }); t.equal(newPoints.features[1].properties.cluster, 1, "cluster is 1"); t.equal( oldPoints.features[1].properties.cluster, undefined, "cluster is undefined" ); // Allow mutation clustersKmeans(oldPoints, { numberOfClusters: 2, mutate: true }); t.equal(oldPoints.features[1].properties.cluster, 1, "cluster is 1"); t.end(); }); ================================================ FILE: packages/turf-clusters-kmeans/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-clusters-kmeans/types.ts ================================================ import { featureCollection, point } from "@turf/helpers"; import { clustersKmeans } from "./index.js"; // Fixtures const points = featureCollection([point([0, 0]), point([2, 2])]); // Default const numberOfClusters = 5; const clustered = clustersKmeans(points, { numberOfClusters }); let { cluster, centroid } = clustered.features[0].properties; cluster = 2; centroid = [-110, 85]; // cluster = 'foo' // Type Error - Type '"foo"' is not assignable to type 'number'. // centroid = 'foo' // Type Error - Type '"foo"' is not assignable to type '[number, number]'. // Properties option clustersKmeans(points); clustersKmeans(points, { numberOfClusters }); clustersKmeans(points, { numberOfClusters, mutate: true }); // Custom Properties clustered.features[0].properties.centroid; clustered.features[0].properties.cluster; clustered.features[0].properties.foo; ================================================ FILE: packages/turf-collect/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-collect/README.md ================================================ # @turf/collect ## collect Merges a specified property from a FeatureCollection of points into a FeatureCollection of polygons. Given an `inProperty` on points and an `outProperty` for polygons, this finds every point that lies within each polygon, collects the `inProperty` values from those points, and adds them as an array to `outProperty` on the polygon. ### Parameters * `polygons` **[FeatureCollection][1]<[Polygon][2]>** polygons with values on which to aggregate * `points` **[FeatureCollection][1]<[Point][3]>** points to be aggregated * `inProperty` **[string][4]** property to be nested from * `outProperty` **[string][4]** property to be nested into ### Examples ```javascript var poly1 = turf.polygon([[[0,0],[10,0],[10,10],[0,10],[0,0]]]); var poly2 = turf.polygon([[[10,0],[20,10],[20,20],[20,0],[10,0]]]); var polyFC = turf.featureCollection([poly1, poly2]); var pt1 = turf.point([5,5], {population: 200}); var pt2 = turf.point([1,3], {population: 600}); var pt3 = turf.point([14,2], {population: 100}); var pt4 = turf.point([13,1], {population: 200}); var pt5 = turf.point([19,7], {population: 300}); var pointFC = turf.featureCollection([pt1, pt2, pt3, pt4, pt5]); var collected = turf.collect(polyFC, pointFC, 'population', 'values'); var values = collected.features[0].properties.values //=values => [200, 600] //addToMap var addToMap = [pointFC, collected] ``` Returns **[FeatureCollection][1]<[Polygon][2]>** polygons with properties listed based on `outField` [1]: https://tools.ietf.org/html/rfc7946#section-3.3 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/collect ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-collect/bench.ts ================================================ import Benchmark from "benchmark"; import { polygon, featureCollection, point } from "@turf/helpers"; import { collect } from "./index.js"; var poly1 = polygon([ [ [0, 0], [10, 0], [0, 10], [0, 10], [0, 0], ], ]); var poly2 = polygon([ [ [10, 0], [20, 10], [20, 20], [20, 0], [10, 0], ], ]); var polyFC = featureCollection([poly1, poly2]); var pt1 = point([5, 5], { population: 200 }); var pt2 = point([1, 3], { population: 600 }); var pt3 = point([14, 2], { population: 100 }); var pt4 = point([13, 1], { population: 200 }); var pt5 = point([19, 7], { population: 300 }); var ptFC = featureCollection([pt1, pt2, pt3, pt4, pt5]); var suite = new Benchmark.Suite("turf-collect"); suite .add("turf-collect", function () { collect(polyFC, ptFC, "population", "outPopulation"); }) .on("cycle", function (event) { console.log(String(event.target)); }) .run(); ================================================ FILE: packages/turf-collect/index.ts ================================================ import { FeatureCollection, Polygon, Point } from "geojson"; import { bbox as turfbbox } from "@turf/bbox"; import { booleanPointInPolygon } from "@turf/boolean-point-in-polygon"; import rbush from "rbush"; interface Entry { minX: number; minY: number; maxX: number; maxY: number; property: any; } /** * Merges a specified property from a FeatureCollection of points into a * FeatureCollection of polygons. Given an `inProperty` on points and an `outProperty` * for polygons, this finds every point that lies within each polygon, collects the * `inProperty` values from those points, and adds them as an array to `outProperty` * on the polygon. * * @function * @param {FeatureCollection} polygons polygons with values on which to aggregate * @param {FeatureCollection} points points to be aggregated * @param {string} inProperty property to be nested from * @param {string} outProperty property to be nested into * @returns {FeatureCollection} polygons with properties listed based on `outField` * @example * var poly1 = turf.polygon([[[0,0],[10,0],[10,10],[0,10],[0,0]]]); * var poly2 = turf.polygon([[[10,0],[20,10],[20,20],[20,0],[10,0]]]); * var polyFC = turf.featureCollection([poly1, poly2]); * var pt1 = turf.point([5,5], {population: 200}); * var pt2 = turf.point([1,3], {population: 600}); * var pt3 = turf.point([14,2], {population: 100}); * var pt4 = turf.point([13,1], {population: 200}); * var pt5 = turf.point([19,7], {population: 300}); * var pointFC = turf.featureCollection([pt1, pt2, pt3, pt4, pt5]); * var collected = turf.collect(polyFC, pointFC, 'population', 'values'); * var values = collected.features[0].properties.values * //=values => [200, 600] * * //addToMap * var addToMap = [pointFC, collected] */ function collect( polygons: FeatureCollection, points: FeatureCollection, inProperty: string, outProperty: string ): FeatureCollection { var rtree = new rbush(6); var treeItems = points.features.map(function (item) { return { minX: item.geometry.coordinates[0], minY: item.geometry.coordinates[1], maxX: item.geometry.coordinates[0], maxY: item.geometry.coordinates[1], property: item.properties?.[inProperty], }; }); rtree.load(treeItems); polygons.features.forEach(function (poly) { if (!poly.properties) { poly.properties = {}; } var bbox = turfbbox(poly); var potentialPoints = rtree.search({ minX: bbox[0], minY: bbox[1], maxX: bbox[2], maxY: bbox[3], }); var values: any[] = []; potentialPoints.forEach(function (pt) { if (booleanPointInPolygon([pt.minX, pt.minY], poly)) { values.push(pt.property); } }); poly.properties[outProperty] = values; }); return polygons; } export { collect }; export default collect; ================================================ FILE: packages/turf-collect/package.json ================================================ { "name": "@turf/collect", "version": "7.3.4", "description": "Merges a specified property from a FeatureCollection of points into a FeatureCollection of polygons.", "author": "Turf Authors", "contributors": [ "Rowan Winsemius <@rowanwins>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "aggregate", "turf", "geojson", "points", "polygons", "stats" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/rbush": "^3.0.4", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/bbox": "workspace:*", "@turf/boolean-point-in-polygon": "workspace:*", "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", "rbush": "^3.0.1", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-collect/test.ts ================================================ import test from "tape"; import { featureCollection, point, polygon } from "@turf/helpers"; import { collect } from "./index.js"; test("turf collect module", (t) => { const poly1 = polygon([ [ [0, 0], [10, 0], [10, 10], [0, 10], [0, 0], ], ]); const poly2 = polygon([ [ [10, 0], [20, 10], [20, 20], [20, 0], [10, 0], ], ]); const poly3 = polygon([ [ [100, 0], [110, -10], [110, -20], [100, 0], ], ]); const polyFC = featureCollection([poly1, poly2, poly3]); const pt1 = point([5, 5], { population: 200 }); const pt2 = point([1, 3], { population: 600 }); const pt3 = point([14, 2], { population: 100 }); const pt4 = point([13, 1], { population: 200 }); const pt5 = point([19, 7], { population: 300 }); const ptFC = featureCollection([pt1, pt2, pt3, pt4, pt5]); const aggregated = collect(polyFC, ptFC, "population", "values"); // Check the same number of input and output polys are the same t.equal(polyFC.features.length, aggregated.features.length); // Check the right values have been assigned t.deepEqual(aggregated.features[0].properties.values, [200, 600]); t.deepEqual(aggregated.features[1].properties.values, [100, 200, 300]); // Check the property has been created even if no values have been assigned t.deepEqual(aggregated.features[2].properties.values, []); t.end(); }); ================================================ FILE: packages/turf-collect/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-combine/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-combine/README.md ================================================ # @turf/combine ## combine Combines a [FeatureCollection][1] of [Point][2], [LineString][3], or [Polygon][4] features into [MultiPoint][5], [MultiLineString][6], or [MultiPolygon][7] features. ### Parameters * `fc` **[FeatureCollection][1]<([Point][2] | [LineString][3] | [Polygon][4])>** a FeatureCollection of any type ### Examples ```javascript var fc = turf.featureCollection([ turf.point([19.026432, 47.49134]), turf.point([19.074497, 47.509548]) ]); var combined = turf.combine(fc); //addToMap var addToMap = [combined] ``` Returns **[FeatureCollection][1]<([MultiPoint][5] | [MultiLineString][6] | [MultiPolygon][7])>** a FeatureCollection of corresponding type to input [1]: https://tools.ietf.org/html/rfc7946#section-3.3 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [4]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [5]: https://tools.ietf.org/html/rfc7946#section-3.1.3 [6]: https://tools.ietf.org/html/rfc7946#section-3.1.5 [7]: https://tools.ietf.org/html/rfc7946#section-3.1.7 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/combine ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-combine/bench.ts ================================================ import Benchmark from "benchmark"; import { point, polygon, lineString, featureCollection } from "@turf/helpers"; import { combine } from "./index.js"; // MultiPoint var pt1 = point(50, 51); var pt2 = point(100, 101); // MultiLineString var l1 = lineString([ [102.0, -10.0], [130.0, 4.0], ]); var l2 = lineString([ [40.0, -20.0], [150.0, 18.0], ]); // MultiPolygon var p1 = polygon([ [ [20.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0], [20.0, 0.0], ], ]); var p2 = polygon([ [ [30.0, 0.0], [102.0, 0.0], [103.0, 1.0], [30.0, 0.0], ], ]); var suite = new Benchmark.Suite("turf-combine"); suite .add("turf-combine#point", function () { combine(featureCollection([pt1, pt2])); }) .add("turf-combine#line", function () { combine(featureCollection([l1, l2])); }) .add("turf-combine#polygon", function () { combine(featureCollection([p1, p2])); }) .on("cycle", function (event) { console.log(String(event.target)); }) .run(); ================================================ FILE: packages/turf-combine/index.ts ================================================ import { GeoJsonProperties, FeatureCollection, LineString, MultiLineString, MultiPoint, MultiPolygon, Point, Polygon, } from "geojson"; import { feature, featureCollection } from "@turf/helpers"; import { featureEach } from "@turf/meta"; /** * Combines a {@link FeatureCollection} of {@link Point}, {@link LineString}, or {@link Polygon} features * into {@link MultiPoint}, {@link MultiLineString}, or {@link MultiPolygon} features. * * @function * @param {FeatureCollection} fc a FeatureCollection of any type * @returns {FeatureCollection} a FeatureCollection of corresponding type to input * @example * var fc = turf.featureCollection([ * turf.point([19.026432, 47.49134]), * turf.point([19.074497, 47.509548]) * ]); * * var combined = turf.combine(fc); * * //addToMap * var addToMap = [combined] */ function combine( fc: FeatureCollection< Point | MultiPoint | LineString | MultiLineString | Polygon | MultiPolygon > ) { var groups = { MultiPoint: { coordinates: [] as number[][], properties: [] as GeoJsonProperties[], }, MultiLineString: { coordinates: [] as number[][][], properties: [] as GeoJsonProperties[], }, MultiPolygon: { coordinates: [] as number[][][][], properties: [] as GeoJsonProperties[], }, }; featureEach(fc, (feature) => { switch (feature.geometry?.type) { case "Point": groups.MultiPoint.coordinates.push(feature.geometry.coordinates); groups.MultiPoint.properties.push(feature.properties); break; case "MultiPoint": groups.MultiPoint.coordinates.push(...feature.geometry.coordinates); groups.MultiPoint.properties.push(feature.properties); break; case "LineString": groups.MultiLineString.coordinates.push(feature.geometry.coordinates); groups.MultiLineString.properties.push(feature.properties); break; case "MultiLineString": groups.MultiLineString.coordinates.push( ...feature.geometry.coordinates ); groups.MultiLineString.properties.push(feature.properties); break; case "Polygon": groups.MultiPolygon.coordinates.push(feature.geometry.coordinates); groups.MultiPolygon.properties.push(feature.properties); break; case "MultiPolygon": groups.MultiPolygon.coordinates.push(...feature.geometry.coordinates); groups.MultiPolygon.properties.push(feature.properties); break; default: break; } }); return featureCollection( (Object.keys(groups) as (keyof typeof groups)[]) .filter(function (key) { return groups[key].coordinates.length; }) .sort() .map(function (key) { var geometry = { type: key, coordinates: groups[key].coordinates } as | MultiPoint | MultiLineString | MultiPolygon; var properties = { collectedProperties: groups[key].properties }; return feature(geometry, properties); }) ); } export { combine }; export default combine; ================================================ FILE: packages/turf-combine/package.json ================================================ { "name": "@turf/combine", "version": "7.3.4", "description": "Combines a FeatureCollection of Point, LineString, or Polygon features into MultiPoint, MultiLineString, or MultiPolygon features.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "geojson", "multipoint", "multipolygon", "combine" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-combine/test.ts ================================================ import test from "tape"; import { point, multiPoint, polygon, multiPolygon, lineString, multiLineString, featureCollection, } from "@turf/helpers"; import { combine } from "./index.js"; test("combine -- points", (t) => { // MultiPoint const pt1 = point([50, 51]); const pt2 = point([100, 101]); const multiPt = combine(featureCollection([pt1, pt2])); t.ok(multiPt, "should combine two Points into a MultiPoint"); t.deepEqual(multiPt.features[0].geometry.coordinates, [ [50, 51], [100, 101], ]); t.end(); }); test("combine -- mixed multiPoint & point", function (t) { // MultiPoint const pt1 = point([50, 51]); const pt2 = multiPoint([ [100, 101], [101, 102], ]); const multiPt = combine(featureCollection([pt1, pt2])); t.ok(multiPt, "should combine Points + MultiPoint into a MultiPoint"); t.deepEqual(multiPt.features[0].geometry.coordinates, [ [50, 51], [100, 101], [101, 102], ]); t.end(); }); test("combine -- linestrings", function (t) { // MultiLineString const l1 = lineString([ [102.0, -10.0], [130.0, 4.0], ]); const l2 = lineString([ [40.0, -20.0], [150.0, 18.0], ]); const multiLine = combine(featureCollection([l1, l2])); t.ok(multiLine, "should combine two LineStrings into a MultiLineString"); t.equal(multiLine.features[0].geometry.type, "MultiLineString"); t.deepEqual(multiLine.features[0].geometry.coordinates, [ [ [102, -10], [130, 4], ], [ [40, -20], [150, 18], ], ]); t.end(); }); test("combine -- mixed multiLineString & linestring", function (t) { // MultiLineString const l1 = lineString([ [102.0, -10.0], [130.0, 4.0], ]); const l2 = multiLineString([ [ [40.0, -20.0], [150.0, 18.0], ], [ [50, -10], [160, 28], ], ]); const multiLine = combine(featureCollection([l1, l2])); t.ok( multiLine, "should combine LineString + MultiLineString into a MultiLineString" ); t.equal(multiLine.features[0].geometry.type, "MultiLineString"); t.deepEqual(multiLine.features[0].geometry.coordinates, [ [ [102, -10], [130, 4], ], [ [40, -20], [150, 18], ], [ [50, -10], [160, 28], ], ]); t.end(); }); test("combine -- polygons", function (t) { // MultiPolygon const p1 = polygon([ [ [20.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0], [20.0, 0.0], ], ]); const p2 = polygon([ [ [30.0, 0.0], [102.0, 0.0], [103.0, 1.0], [30.0, 0.0], ], ]); const multiPoly = combine(featureCollection([p1, p2])); t.ok(multiPoly, "should combine two Polygons into a MultiPolygon"); t.equal(multiPoly.features[0].geometry.type, "MultiPolygon"); t.deepEqual(multiPoly.features[0].geometry.coordinates, [ [ [ [20, 0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0], [20, 0], ], ], [ [ [30.0, 0.0], [102.0, 0.0], [103.0, 1.0], [30.0, 0.0], ], ], ]); t.end(); }); test("combine -- polygons", function (t) { // MultiPolygon const p1 = polygon([ [ [20.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0], [20.0, 0.0], ], ]); const p2 = multiPolygon([ [ [ [30.0, 0.0], [102.0, 0.0], [103.0, 1.0], [30.0, 0.0], ], ], [ [ [20.0, 5.0], [92.0, 5.0], [93.0, 6.0], [20.0, 5.0], ], [ [25, 5], [30, 5], [30, 5.5], [25, 5], ], ], ]); const multiPoly = combine(featureCollection([p1, p2])); t.ok( multiPoly, "should combine two Polygon + MultiPolygon into a MultiPolygon" ); t.equal(multiPoly.features[0].geometry.type, "MultiPolygon"); t.deepEqual(multiPoly.features[0].geometry.coordinates, [ [ [ [20, 0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0], [20, 0], ], ], [ [ [30.0, 0.0], [102.0, 0.0], [103.0, 1.0], [30.0, 0.0], ], ], [ [ [20.0, 5.0], [92.0, 5.0], [93.0, 6.0], [20.0, 5.0], ], [ [25, 5], [30, 5], [30, 5.5], [25, 5], ], ], ]); t.end(); }); test("combine -- heterogenous", function (t) { // MultiPolygon const p1 = polygon([ [ [20.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0], [20.0, 0.0], ], ]); const p2 = multiPolygon([ [ [ [30.0, 0.0], [102.0, 0.0], [103.0, 1.0], [30.0, 0.0], ], ], [ [ [20.0, 5.0], [92.0, 5.0], [93.0, 6.0], [20.0, 5.0], ], [ [25, 5], [30, 5], [30, 5.5], [25, 5], ], ], ]); const pt1 = point([50, 51]); const multiPoly = combine(featureCollection([p1, p2, pt1])); t.ok( multiPoly, "should combine two Polygon + MultiPolygon into a MultiPolygon" ); t.equal(multiPoly.features[0].geometry.type, "MultiPoint"); t.equal(multiPoly.features[1].geometry.type, "MultiPolygon"); t.deepEqual(multiPoly.features[1].geometry.coordinates, [ [ [ [20, 0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0], [20, 0], ], ], [ [ [30.0, 0.0], [102.0, 0.0], [103.0, 1.0], [30.0, 0.0], ], ], [ [ [20.0, 5.0], [92.0, 5.0], [93.0, 6.0], [20.0, 5.0], ], [ [25, 5], [30, 5], [30, 5.5], [25, 5], ], ], ]); t.end(); }); ================================================ FILE: packages/turf-combine/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-concave/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-concave/README.md ================================================ # @turf/concave ## concave Takes a set of [points][1] and returns a concave hull Polygon or MultiPolygon. Internally, this uses [turf-tin][2] to generate geometries. ### Parameters * `points` **[FeatureCollection][3]<[Point][1]>** input points * `options` **[Object][4]** Optional parameters (optional, default `{}`) * `options.maxEdge` **[number][5]** the length (in 'units') of an edge necessary for part of the hull to become concave. (optional, default `Infinity`) * `options.units` **Units** Supports all valid Turf [Units][6]. (optional, default `'kilometers'`) ### Examples ```javascript var points = turf.featureCollection([ turf.point([-63.601226, 44.642643]), turf.point([-63.591442, 44.651436]), turf.point([-63.580799, 44.648749]), turf.point([-63.573589, 44.641788]), turf.point([-63.587665, 44.64533]), turf.point([-63.595218, 44.64765]) ]); var options = {units: 'miles', maxEdge: 1}; var hull = turf.concave(points, options); //addToMap var addToMap = [points, hull] ``` Returns **([Feature][7]<([Polygon][8] | [MultiPolygon][9])> | null)** a concave hull (null value is returned if unable to compute hull) [1]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [2]: https://github.com/Turfjs/turf-tin [3]: https://tools.ietf.org/html/rfc7946#section-3.3 [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [6]: https://turfjs.org/docs/api/types/Units [7]: https://tools.ietf.org/html/rfc7946#section-3.2 [8]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [9]: https://tools.ietf.org/html/rfc7946#section-3.1.7 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/concave ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-concave/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { concave } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); /** * Single Process Benchmark * * concave-hull: 15.922ms * fiji: 3.523ms * hole: 8.207ms * issue-333: 24.505ms * pts1: 0.932ms * pts2: 13.297ms * pts3: 0.375ms */ for (const { name, geojson } of fixtures) { console.time(name); concave(geojson, geojson.properties); console.timeEnd(name); } /** * Benchmark Results * * concave-hull x 616 ops/sec ±5.02% (77 runs sampled) * fiji x 1,815 ops/sec ±5.09% (80 runs sampled) * hole x 801 ops/sec ±2.29% (84 runs sampled) * issue-333 x 163 ops/sec ±10.20% (67 runs sampled) * pts1 x 2,697 ops/sec ±5.40% (79 runs sampled) * pts2 x 148 ops/sec ±2.66% (73 runs sampled) * pts3 x 6,938 ops/sec ±6.21% (71 runs sampled) * support-null-geometry x 3,110 ops/sec ±4.75% (74 runs sampled) */ const suite = new Benchmark.Suite("turf-transform-scale"); for (const { name, geojson } of fixtures) { const options = geojson.properties; options.mutate = true; suite.add(name, () => concave(geojson, options)); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-concave/index.ts ================================================ import { distance } from "@turf/distance"; import { feature, featureCollection } from "@turf/helpers"; import { Feature, FeatureCollection, MultiPolygon, Point, Polygon, } from "geojson"; import { Units } from "@turf/helpers"; import { featureEach } from "@turf/meta"; import { tin } from "@turf/tin"; import { dissolve } from "./lib/turf-dissolve.js"; /** * Takes a set of {@link Point|points} and returns a concave hull Polygon or MultiPolygon. * Internally, this uses [turf-tin](https://github.com/Turfjs/turf-tin) to generate geometries. * * @function * @param {FeatureCollection} points input points * @param {Object} [options={}] Optional parameters * @param {number} [options.maxEdge=Infinity] the length (in 'units') of an edge necessary for part of the * hull to become concave. * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @returns {Feature<(Polygon|MultiPolygon)>|null} a concave hull (null value is returned if unable to compute hull) * @example * var points = turf.featureCollection([ * turf.point([-63.601226, 44.642643]), * turf.point([-63.591442, 44.651436]), * turf.point([-63.580799, 44.648749]), * turf.point([-63.573589, 44.641788]), * turf.point([-63.587665, 44.64533]), * turf.point([-63.595218, 44.64765]) * ]); * var options = {units: 'miles', maxEdge: 1}; * * var hull = turf.concave(points, options); * * //addToMap * var addToMap = [points, hull] */ function concave( points: FeatureCollection, options: { maxEdge?: number; units?: Units } = {} ): Feature | null { const maxEdge = options.maxEdge || Infinity; const cleaned = removeDuplicates(points); const tinPolys = tin(cleaned); // calculate length of all edges and area of all triangles // and remove triangles that fail the max length test tinPolys.features = tinPolys.features.filter((triangle) => { const pt1 = triangle.geometry.coordinates[0][0]; const pt2 = triangle.geometry.coordinates[0][1]; const pt3 = triangle.geometry.coordinates[0][2]; const dist1 = distance(pt1, pt2, options); const dist2 = distance(pt2, pt3, options); const dist3 = distance(pt1, pt3, options); return dist1 <= maxEdge && dist2 <= maxEdge && dist3 <= maxEdge; }); if (tinPolys.features.length < 1) { return null; } // merge the adjacent triangles const dissolved: any = dissolve(tinPolys); // geojson-dissolve always returns a MultiPolygon if (dissolved.coordinates.length === 1) { dissolved.coordinates = dissolved.coordinates[0]; dissolved.type = "Polygon"; } return feature(dissolved); } /** * Removes duplicated points in a collection returning a new collection * * @private * @param {FeatureCollection} points to be cleaned * @returns {FeatureCollection} cleaned set of points */ function removeDuplicates( points: FeatureCollection ): FeatureCollection { const cleaned: Array> = []; const existing: { [key: string]: boolean } = {}; featureEach(points, (pt) => { if (!pt.geometry) { return; } const key = pt.geometry.coordinates.join("-"); if (!Object.prototype.hasOwnProperty.call(existing, key)) { cleaned.push(pt); existing[key] = true; } }); return featureCollection(cleaned); } export { concave }; export default concave; ================================================ FILE: packages/turf-concave/lib/turf-dissolve.ts ================================================ import { Feature, FeatureCollection, LineString, MultiLineString, MultiPolygon, Polygon, } from "geojson"; import { clone } from "@turf/clone"; import { isObject } from "@turf/helpers"; import { getType } from "@turf/invariant"; import { flattenEach } from "@turf/meta"; import { lineDissolve } from "./turf-line-dissolve.js"; import { polygonDissolve } from "./turf-polygon-dissolve.js"; /** * Transform function: attempts to dissolve geojson objects where possible * [GeoJSON] -> GeoJSON geometry * * @private * @param {FeatureCollection} geojson Features to dissolved * @param {Object} [options={}] Optional parameters * @param {boolean} [options.mutate=false] Prevent input mutation * @returns {Feature} Dissolved Features */ function dissolve( geojson: FeatureCollection< LineString | MultiLineString | Polygon | MultiPolygon >, options: { mutate?: boolean; } = {} ): Feature | null { // Optional parameters options = options || {}; if (!isObject(options)) { throw new Error("options is invalid"); } const mutate = options.mutate; // Validation if (getType(geojson) !== "FeatureCollection") { throw new Error("geojson must be a FeatureCollection"); } if (!geojson.features.length) { throw new Error("geojson is empty"); } // Clone geojson to avoid side effects // Topojson modifies in place, so we need to deep clone first if (mutate === false || mutate === undefined) { geojson = clone(geojson); } // Assert homogenity const type = getHomogenousType(geojson); if (!type) { throw new Error("geojson must be homogenous"); } // Data => Typescript hack const data: any = geojson; switch (type) { case "LineString": return lineDissolve(data, options); case "Polygon": return polygonDissolve(data, options); default: throw new Error(type + " is not supported"); } } /** * Checks if GeoJSON is Homogenous * * @private * @param {GeoJSON} geojson GeoJSON * @returns {string|null} Homogenous type or null if multiple types */ function getHomogenousType(geojson: any) { const types: { [key: string]: boolean } = {}; flattenEach(geojson, (feature) => { types[feature.geometry.type] = true; }); const keys = Object.keys(types); if (keys.length === 1) { return keys[0]; } return null; } export { dissolve }; export default dissolve; ================================================ FILE: packages/turf-concave/lib/turf-line-dissolve.ts ================================================ import { Feature, FeatureCollection, LineString, MultiLineString, } from "geojson"; import { clone } from "@turf/clone"; import { isObject, lineString, multiLineString } from "@turf/helpers"; import { getType } from "@turf/invariant"; import { lineReduce } from "@turf/meta"; /** * Merges all connected (non-forking, non-junctioning) line strings into single lineStrings. * [LineString] -> LineString|MultiLineString * * @param {FeatureCollection} geojson Lines to dissolve * @param {Object} [options={}] Optional parameters * @param {boolean} [options.mutate=false] Prevent input mutation * @returns {Feature} Dissolved lines */ function lineDissolve( geojson: FeatureCollection, options: { mutate?: boolean } = {} ): Feature | null { // Optional parameters options = options || {}; if (!isObject(options)) { throw new Error("options is invalid"); } const mutate = options.mutate; // Validation if (getType(geojson) !== "FeatureCollection") { throw new Error("geojson must be a FeatureCollection"); } if (!geojson.features.length) { throw new Error("geojson is empty"); } // Clone geojson to avoid side effects if (mutate === false || mutate === undefined) { geojson = clone(geojson); } const result: any[] = []; const lastLine = lineReduce( geojson, (previousLine: any, currentLine: any) => { // Attempt to merge this LineString with the other LineStrings, updating // the reference as it is merged with others and grows. const merged = mergeLineStrings(previousLine, currentLine); // Accumulate the merged LineString if (merged) { return merged; // Put the unmerged LineString back into the list } else { result.push(previousLine); return currentLine; } } ); // Append the last line if (lastLine) { result.push(lastLine); } // Return null if no lines were dissolved if (!result.length) { return null; // Return LineString if only 1 line was dissolved } else if (result.length === 1) { return result[0]; // Return MultiLineString if multiple lines were dissolved with gaps } else { return multiLineString( result.map((line) => { return line.coordinates; }) ); } } // [Number, Number] -> String function coordId(coord: number[]) { return coord[0].toString() + "," + coord[1].toString(); } /** * LineString, LineString -> LineString * * @private * @param {Feature} a line1 * @param {Feature} b line2 * @returns {Feature|null} Merged LineString */ function mergeLineStrings(a: Feature, b: Feature) { const coords1 = a.geometry.coordinates; const coords2 = b.geometry.coordinates; const s1 = coordId(coords1[0]); const e1 = coordId(coords1[coords1.length - 1]); const s2 = coordId(coords2[0]); const e2 = coordId(coords2[coords2.length - 1]); // TODO: handle case where more than one of these is true! let coords; if (s1 === e2) { coords = coords2.concat(coords1.slice(1)); } else if (s2 === e1) { coords = coords1.concat(coords2.slice(1)); } else if (s1 === s2) { coords = coords1.slice(1).reverse().concat(coords2); } else if (e1 === e2) { coords = coords1.concat(coords2.reverse().slice(1)); } else { return null; } return lineString(coords); } export { lineDissolve }; export default lineDissolve; ================================================ FILE: packages/turf-concave/lib/turf-polygon-dissolve.ts ================================================ import { Feature, FeatureCollection, MultiPolygon, Polygon } from "geojson"; import { clone } from "@turf/clone"; import { geometryCollection } from "@turf/helpers"; import { getType } from "@turf/invariant"; import { flattenEach } from "@turf/meta"; import { merge } from "topojson-client"; import { topology } from "topojson-server"; /** * Dissolves all overlapping (Multi)Polygon * * @param {FeatureCollection} geojson Polygons to dissolve * @param {Object} [options={}] Optional parameters * @param {boolean} [options.mutate=false] Prevent input mutation * @returns {Feature} Dissolved Polygons */ function polygonDissolve( geojson: FeatureCollection, options: { mutate?: boolean } = {} ): Feature | null { // Validation if (getType(geojson) !== "FeatureCollection") { throw new Error("geojson must be a FeatureCollection"); } if (!geojson.features.length) { throw new Error("geojson is empty"); } // Clone geojson to avoid side effects // Topojson modifies in place, so we need to deep clone first if (options.mutate === false || options.mutate === undefined) { geojson = clone(geojson); } const geoms: any[] = []; flattenEach(geojson, (feature) => { geoms.push(feature.geometry); }); const topo: any = topology({ geoms: geometryCollection(geoms).geometry }); const merged: any = merge(topo, topo.objects.geoms.geometries); return merged; } export { polygonDissolve }; export default polygonDissolve; ================================================ FILE: packages/turf-concave/package.json ================================================ { "name": "@turf/concave", "version": "7.3.4", "description": "Creates a concave hull around points.", "author": "Turf Authors", "contributors": [ "Tom MacWright <@tmcw>", "Lyzi Diamond <@lyzidiamond>", "Denis Carriere <@DenisCarriere>", "Stefano Borghi <@stebogit>", "Rowan Winsemius <@rowanwins>", "Daniel Pulido <@dpmcmlxxvi>", "Stephen Whitmore <@noffle>", "Gregor MacLennan <@gmaclennan>", "Mike Bostock <@mbostock>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "gis", "concave", "geometry" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "@types/topojson-client": "3.1.3", "@types/topojson-server": "3.0.3", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/clone": "workspace:*", "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@turf/tin": "workspace:*", "@types/geojson": "^7946.0.10", "topojson-client": "3.x", "topojson-server": "3.x", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-concave/test/in/concave-hull.geojson ================================================ { "type": "FeatureCollection", "properties": { "maxEdge": 100000 }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.7123413085937, -13.06342578889815] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.5777587890625, -13.090179355733726] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.5447998046875, -13.237271908200585] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.48162841796875, -13.365571074958245] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.627197265625, -13.667338259654947] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.923828125, -13.098204859664591] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.9403076171875, -13.288065114120283] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-312.07763671875, -13.368243250897287] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.94580078125, -13.4216805428783] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.37451171875, -13.154376055418515] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.42120361328125, -13.223903512667826] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.363525390625, -13.330830095126228] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.4788818359375, -13.552551566455168] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-312.0172119140625, -13.536530399503015] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.83593749999994, -13.608617139653036] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.66015625, -13.579251111245878] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.4129638671875, -13.467092893859657] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.978759765625, -13.18914225554674] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.8194580078125, -13.114255082724755] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.64642333984375, -13.098204859664591] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.9183349609375, -13.523178603049853] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.4459228515625, -13.095529720741482] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.74255371093744, -13.62463343823614] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-312.01446533203125, -13.266679794815271] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.923828125, -13.573911442504558] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-312.0254516601562, -13.386947652895737] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.55578613281244, -13.552551566455168] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.50360107421875, -13.435038009690732] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.3470458984375, -13.389619591747595] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.87164306640625, -13.141003126359843] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.7864990234375, -13.672675818669807] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.802978515625, -13.042020847922622] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.53656005859375, -13.603278132528756] } } ] } ================================================ FILE: packages/turf-concave/test/in/fiji.geojson ================================================ { "type": "FeatureCollection", "properties": { "maxEdge": 20, "units": "miles" }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-179.6484375, -16.90442787825499] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-179.62921142578125, -16.675662043309767] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-179.95330810546875, -16.830832189624815] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-179.85443115234375, -16.675662043309767] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-180.20050048828125, -16.97274101999901] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-180.142822265625, -16.825574258731486] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-180.0823974609375, -17.069913009885465] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-180.4833984375, -17.295576394503744] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-179.8187255859375, -16.893915964126325] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-180.01922607421875, -16.759837823776632] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-179.76791381835938, -16.784820349855963] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-180.01510620117188, -16.914939206301646] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-179.92721557617188, -16.942528651601] } } ] } ================================================ FILE: packages/turf-concave/test/in/hole.geojson ================================================ { "type": "FeatureCollection", "properties": { "maxEdge": 20 }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.7123413085937, -13.06342578889815] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.5777587890625, -13.090179355733726] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.5447998046875, -13.237271908200585] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.48162841796875, -13.365571074958245] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.627197265625, -13.667338259654947] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.923828125, -13.098204859664591] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.9403076171875, -13.288065114120283] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-312.07763671875, -13.368243250897287] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.94580078125, -13.4216805428783] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.37451171875, -13.154376055418515] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.42120361328125, -13.223903512667826] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.363525390625, -13.330830095126228] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.4788818359375, -13.552551566455168] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-312.0172119140625, -13.536530399503015] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.83593749999994, -13.608617139653036] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.66015625, -13.579251111245878] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.4129638671875, -13.467092893859657] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.978759765625, -13.18914225554674] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.8194580078125, -13.114255082724755] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.64642333984375, -13.098204859664591] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.9183349609375, -13.523178603049853] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.4459228515625, -13.095529720741482] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.74255371093744, -13.62463343823614] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-312.01446533203125, -13.266679794815271] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.923828125, -13.573911442504558] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-312.0254516601562, -13.386947652895737] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.55578613281244, -13.552551566455168] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.50360107421875, -13.435038009690732] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.3470458984375, -13.389619591747595] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.87164306640625, -13.141003126359843] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.7864990234375, -13.672675818669807] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.802978515625, -13.042020847922622] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-311.53656005859375, -13.603278132528756] } } ] } ================================================ FILE: packages/turf-concave/test/in/issue-333.geojson ================================================ { "type": "FeatureCollection", "properties": { "maxEdge": 3, "units": "kilometers" }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4723426, 14.6479128] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5201483, 14.615014] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.51424745714287, 14.612971957142857] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5132231, 14.6165441] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.48973311666667, 14.6495531] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4735275, 14.6465985] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4723723, 14.6485518] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.47247347499998, 14.6477638] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.47238633157896, 14.648176778947366] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.48551095454544, 14.644347027272726] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.48639698333333, 14.607210466666666] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5019386, 14.6511386] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5269321, 14.6573653] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5148751, 14.5823441] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.49990055555557, 14.600796044444443] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.494049, 14.5869676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.47337224999998, 14.646883625000001] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4724361, 14.6486341] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4850658857143, 14.644084114285714] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.51289270000001, 14.618719666666667] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4735528, 14.6467951] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4723841, 14.6480488] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4732471, 14.6471636] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4722805, 14.6479045] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5201343, 14.6150696] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.49114352000001, 14.66722966] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.472421, 14.648614] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.47381937499999, 14.646442443749999] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5170675, 14.604278] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.55477304537037, 14.62646318703704] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5564985, 14.627035] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5820498, 14.6369336] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.60474186153844, 14.614272646153846] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5156173, 14.6304] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.51274230000001, 14.639448640000001] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.50523385, 14.651190725000001] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.494068, 14.6524481] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4815628, 14.6482253] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4804793, 14.6461901] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.495238, 14.6457041] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4734271, 14.6466975] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4724963, 14.64851] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4723928, 14.6478788] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.47250081000001, 14.647835989999999] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.520111, 14.6150598] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5155081, 14.6274348] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.51233063333332, 14.635753766666667] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.50694795, 14.64236045] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.50368926666665, 14.645259533333332] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.47352167142857, 14.646744814285712] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4724291, 14.6485725] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.47394456363636, 14.646360845454545] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.48284538181816, 14.644143345454546] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5170826, 14.623364] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.55518267142857, 14.628796907142858] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5612823875, 14.6354786625] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5544466, 14.6730593] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5713858, 14.6338483] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.49277926666667, 14.649214383333335] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.47338355, 14.6469332] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4724373, 14.6484558] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4733026, 14.6471671] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4723626, 14.6479208] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5201275, 14.6150038] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5167131875, 14.61330465] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.473430925, 14.646790600000001] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4724253, 14.6485335] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.47381234375001, 14.646451625000001] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4814805, 14.6483101] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.48557200000002, 14.644329030769231] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5171176, 14.6233125] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.54256017980768, 14.62663586923077] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5269091, 14.6573203] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5564916, 14.6270911] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5713228, 14.6338651] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5621048, 14.590847633333332] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.56126696666666, 14.590278533333332] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5705346, 14.5772148] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.47337158333334, 14.646920666666668] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4724626, 14.6485841] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4723723, 14.6478811] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4722628, 14.6479208] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.47250489090911, 14.647854472727271] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.520098, 14.615] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.50365512500001, 14.6452732] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.49116085, 14.667282275] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.48990055, 14.65017205] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.47347362, 14.646725746666664] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4724285, 14.6485766] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.47248388571428, 14.647815600000001] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5169941, 14.604693] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.53797681111112, 14.629561677777777] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.49985591428572, 14.600705557142857] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4940656, 14.586968] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4878766, 14.6688766] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4875626, 14.6704823] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.48763687142856, 14.668962442857141] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4895363, 14.6683016] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.47322072, 14.646995100000001] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4722951, 14.6482883] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.47311286666667, 14.647139766666667] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4724025, 14.6485518] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4723355, 14.6478488] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4732443, 14.6471278] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4723105, 14.6478846] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.47244180625, 14.64800523125] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5200513, 14.6150821] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5039411, 14.644767] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.50140640000001, 14.65061405] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.47698511818181, 14.654281172727275] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.47332180000001, 14.6469442] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4723918, 14.6485571] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.47337318571428, 14.646881257142856] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5015093, 14.65032405] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.54214180000001, 14.624207466666666] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.5478511, 14.6249898] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-90.4734413, 14.6466325] } } ] } ================================================ FILE: packages/turf-concave/test/in/pts1.geojson ================================================ { "type": "FeatureCollection", "properties": { "maxEdge": 5.5, "units": "miles" }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.40898132324217, 37.77505678240509] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.43095397949219, 37.74411415606583] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.44331359863283, 37.726194088705576] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.47833251953125, 37.73651223296987] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.4103546142578, 37.72184917678752] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.41790771484375, 37.74682893940135] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.53395080566405, 37.83690319650768] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.51541137695311, 37.83473402375478] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.49069213867188, 37.837445479729666] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.52639770507812, 37.83473402375478] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.62527465820311, 37.89327929625019] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.60467529296875, 37.902490518640995] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.58682250976562, 37.895988598965644] } } ] } ================================================ FILE: packages/turf-concave/test/in/pts2.geojson ================================================ { "type": "FeatureCollection", "properties": { "maxEdge": 2, "units": "miles" }, "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, "features": [ { "type": "Feature", "properties": { "OBJECTID_1": 51, "OBJECTID_2": 25, "OBJECTID": 49.0, "PRECINCT_N": 7.0, "FACILITY_D": "Recreation Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_49", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Hardy Recreation Center", "ADDRESS": "4500 Q STREET NW", "ADDRESS_ID": 284929 }, "geometry": { "type": "Point", "coordinates": [-77.084981183092964, 38.909915833213795] } }, { "type": "Feature", "properties": { "OBJECTID_1": 52, "OBJECTID_2": 26, "OBJECTID": 50.0, "PRECINCT_N": 5.0, "FACILITY_D": "Large Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_50", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Georgetown Community Library", "ADDRESS": "3260 R STREET NW", "ADDRESS_ID": 295142 }, "geometry": { "type": "Point", "coordinates": [-77.066007305842078, 38.913434229544386] } }, { "type": "Feature", "properties": { "OBJECTID_1": 53, "OBJECTID_2": 27, "OBJECTID": 51.0, "PRECINCT_N": 76.0, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_51", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Bethesda Baptist Church", "ADDRESS": "1808 CAPITOL AVENUE NE", "ADDRESS_ID": 155925 }, "geometry": { "type": "Point", "coordinates": [-76.98614224512842, 38.911020521048734] } }, { "type": "Feature", "properties": { "OBJECTID_1": 54, "OBJECTID_2": 28, "OBJECTID": 52.0, "PRECINCT_N": 15.0, "FACILITY_D": "Community Room (Lower Level)", "ACCESSIBLE": "Yes - Use side entrance on P Street", "GIS_ID": "plp_52", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Foundry United Methodist Church", "ADDRESS": "1500 16TH STREET NW", "ADDRESS_ID": 243309 }, "geometry": { "type": "Point", "coordinates": [-77.036879490722725, 38.910033613313317] } }, { "type": "Feature", "properties": { "OBJECTID_1": 55, "OBJECTID_2": 29, "OBJECTID": 53.0, "PRECINCT_N": 14.0, "FACILITY_D": "Guild Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_53", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "St. Thomas' Episcopal Parish", "ADDRESS": "1772 CHURCH STREET NW", "ADDRESS_ID": 225918 }, "geometry": { "type": "Point", "coordinates": [-77.041041176671854, 38.910212212295264] } }, { "type": "Feature", "properties": { "OBJECTID_1": 56, "OBJECTID_2": 30, "OBJECTID": 54.0, "PRECINCT_N": 16.0, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes - Accessible entrance at the rear of the church. Use entrance on R St. side of church.", "GIS_ID": "plp_54", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "15th Street Presbyterian Church", "ADDRESS": "1701 15TH STREET NW", "ADDRESS_ID": 240136 }, "geometry": { "type": "Point", "coordinates": [-77.03417962817295, 38.912811255258127] } }, { "type": "Feature", "properties": { "OBJECTID_1": 57, "OBJECTID_2": 31, "OBJECTID": 55.0, "PRECINCT_N": 18.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_55", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Kennedy Recreation Center", "ADDRESS": "1401 7TH STREET NW", "ADDRESS_ID": 279127 }, "geometry": { "type": "Point", "coordinates": [-77.021536456247759, 38.908989778469483] } }, { "type": "Feature", "properties": { "OBJECTID_1": 58, "OBJECTID_2": 32, "OBJECTID": 56.0, "PRECINCT_N": 17.0, "FACILITY_D": "Exhibit Rooms", "ACCESSIBLE": "Yes", "GIS_ID": "plp_56", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "The Charles Sumner School Museum and Archives", "ADDRESS": "1201 17th STREET NW\r\n1201 17TH STREET NW", "ADDRESS_ID": 301200 }, "geometry": { "type": "Point", "coordinates": [-77.038222905521806, 38.905977334681452] } }, { "type": "Feature", "properties": { "OBJECTID_1": 59, "OBJECTID_2": 33, "OBJECTID": 57.0, "PRECINCT_N": 4.0, "FACILITY_D": "Large Meeting Room (2nd Floor)", "ACCESSIBLE": "Yes", "GIS_ID": "plp_57", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "West End Public Library", "ADDRESS": "1101 24TH STREET NW", "ADDRESS_ID": 218248 }, "geometry": { "type": "Point", "coordinates": [-77.05109790160472, 38.904019151364736] } }, { "type": "Feature", "properties": { "OBJECTID_1": 60, "OBJECTID_2": 34, "OBJECTID": 58.0, "PRECINCT_N": 77.0, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_58", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Delta Towers Apartments", "ADDRESS": "1400 FLORIDA AVENUE NE", "ADDRESS_ID": 65280 }, "geometry": { "type": "Point", "coordinates": [-76.984331916380768, 38.900557364972023] } }, { "type": "Feature", "properties": { "OBJECTID_1": 61, "OBJECTID_2": 35, "OBJECTID": 59.0, "PRECINCT_N": 129.0, "FACILITY_D": "Main Lobby", "ACCESSIBLE": "Yes", "GIS_ID": "plp_59", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Martin Luther King Library", "ADDRESS": "901 G STREET NW", "ADDRESS_ID": 239815 }, "geometry": { "type": "Point", "coordinates": [-77.02476626008324, 38.898691330337449] } }, { "type": "Feature", "properties": { "OBJECTID_1": 62, "OBJECTID_2": 36, "OBJECTID": 60.0, "PRECINCT_N": 82.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_60", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Sherwood Recreation Center", "ADDRESS": "640 10TH STREET NE", "ADDRESS_ID": 301075 }, "geometry": { "type": "Point", "coordinates": [-76.993016818542159, 38.898545289067677] } }, { "type": "Feature", "properties": { "OBJECTID_1": 63, "OBJECTID_2": 37, "OBJECTID": 61.0, "PRECINCT_N": 3.0, "FACILITY_D": "Dining Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_61", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "St. Mary's Court", "ADDRESS": "725 24TH STREET NW", "ADDRESS_ID": 242350 }, "geometry": { "type": "Point", "coordinates": [-77.051147709627202, 38.898862835793516] } }, { "type": "Feature", "properties": { "OBJECTID_1": 64, "OBJECTID_2": 38, "OBJECTID": 62.0, "PRECINCT_N": 1.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_62", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Walker-Jones EC", "ADDRESS": "1125 NEW JERSEY AVENUE NW", "ADDRESS_ID": 307735 }, "geometry": { "type": "Point", "coordinates": [-77.013915692345691, 38.90419164723351] } }, { "type": "Feature", "properties": { "OBJECTID_1": 65, "OBJECTID_2": 39, "OBJECTID": 64.0, "PRECINCT_N": 10.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_64", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Horace Mann Community Center", "ADDRESS": "4430 NEWARK STREET NW", "ADDRESS_ID": 294597 }, "geometry": { "type": "Point", "coordinates": [-77.087826188256471, 38.934291971694272] } }, { "type": "Feature", "properties": { "OBJECTID_1": 66, "OBJECTID_2": 40, "OBJECTID": 65.0, "PRECINCT_N": 19.0, "FACILITY_D": "Gym/Armory", "ACCESSIBLE": "Yes", "GIS_ID": "plp_65", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Dunbar Senior High School", "ADDRESS": "1301 NEW JERSEY AVENUE NW", "ADDRESS_ID": 279021 }, "geometry": { "type": "Point", "coordinates": [-77.014693855315954, 38.908523216218732] } }, { "type": "Feature", "properties": { "OBJECTID_1": 67, "OBJECTID_2": 41, "OBJECTID": 66.0, "PRECINCT_N": 20.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_66", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Washington Metropolitan High School", "ADDRESS": "300 BRYANT STREET NW", "ADDRESS_ID": 294475 }, "geometry": { "type": "Point", "coordinates": [-77.015557008963071, 38.920441293733219] } }, { "type": "Feature", "properties": { "OBJECTID_1": 68, "OBJECTID_2": 42, "OBJECTID": 67.0, "PRECINCT_N": 21.0, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_67", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Vermont Avenue Baptist Church", "ADDRESS": "1630 VERMONT AVENUE NW", "ADDRESS_ID": 243277 }, "geometry": { "type": "Point", "coordinates": [-77.028781227702837, 38.911825717245286] } }, { "type": "Feature", "properties": { "OBJECTID_1": 69, "OBJECTID_2": 43, "OBJECTID": 68.0, "PRECINCT_N": 22.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Accessible entrance located on V Street.", "GIS_ID": "plp_68", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Garnet-Patterson Middle School", "ADDRESS": "2001 10TH STREET NW", "ADDRESS_ID": 294533 }, "geometry": { "type": "Point", "coordinates": [-77.025748782113368, 38.917544774486181] } }, { "type": "Feature", "properties": { "OBJECTID_1": 70, "OBJECTID_2": 44, "OBJECTID": 69.0, "PRECINCT_N": 24.0, "FACILITY_D": "Living Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_69", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Marie Reed Learning Center", "ADDRESS": "2200 CHAMPLAIN STREET NW", "ADDRESS_ID": 235577 }, "geometry": { "type": "Point", "coordinates": [-77.04052994742716, 38.919167306666537] } }, { "type": "Feature", "properties": { "OBJECTID_1": 71, "OBJECTID_2": 45, "OBJECTID": 71.0, "PRECINCT_N": 27.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_71", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Eaton Elementary School", "ADDRESS": "3301 LOWELL STREET NW", "ADDRESS_ID": 294562 }, "geometry": { "type": "Point", "coordinates": [-77.065821132685912, 38.932726738826823] } }, { "type": "Feature", "properties": { "OBJECTID_1": 72, "OBJECTID_2": 46, "OBJECTID": 72.0, "PRECINCT_N": 29.0, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_72", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "2nd District Police Station", "ADDRESS": "3320 IDAHO AVENUE NW", "ADDRESS_ID": 222229 }, "geometry": { "type": "Point", "coordinates": [-77.074838057652229, 38.934845831784592] } }, { "type": "Feature", "properties": { "OBJECTID_1": 73, "OBJECTID_2": 47, "OBJECTID": 73.0, "PRECINCT_N": 30.0, "FACILITY_D": "Multi-Purpose Room (on Albemarle St.)", "ACCESSIBLE": "Yes - Accessible entrance at side of school, nearest to Wisconsin Ave.", "GIS_ID": "plp_73", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Janney Elementary School", "ADDRESS": "4130 ALBEMARLE STREET NW", "ADDRESS_ID": 285713 }, "geometry": { "type": "Point", "coordinates": [-77.080994819731956, 38.947550087065927] } }, { "type": "Feature", "properties": { "OBJECTID_1": 74, "OBJECTID_2": 48, "OBJECTID": 74.0, "PRECINCT_N": 33.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Use rear entrance on Ellicott St.", "GIS_ID": "plp_74", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Ben Murch Elementary School", "ADDRESS": "4810 36TH STREET NW", "ADDRESS_ID": 294602 }, "geometry": { "type": "Point", "coordinates": [-77.07007920338755, 38.952933189596607] } }, { "type": "Feature", "properties": { "OBJECTID_1": 75, "OBJECTID_2": 49, "OBJECTID": 75.0, "PRECINCT_N": 35.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_75", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "H.D. Cooke Elementary School", "ADDRESS": "2525 17TH STREET NW", "ADDRESS_ID": 235863 }, "geometry": { "type": "Point", "coordinates": [-77.038813828001906, 38.923931654217967] } }, { "type": "Feature", "properties": { "OBJECTID_1": 76, "OBJECTID_2": 50, "OBJECTID": 76.0, "PRECINCT_N": 37.0, "FACILITY_D": "Community Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_76", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Banneker Community Recreation Center", "ADDRESS": "2500 GEORGIA AVENUE NW", "ADDRESS_ID": 232292 }, "geometry": { "type": "Point", "coordinates": [-77.022579801385916, 38.922697600945042] } }, { "type": "Feature", "properties": { "OBJECTID_1": 77, "OBJECTID_2": 51, "OBJECTID": 77.0, "PRECINCT_N": 38.0, "FACILITY_D": "Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_77", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Cesar Chavez Prep Charter Middle School", "ADDRESS": "770 KENYON STREET NW", "ADDRESS_ID": 285409 }, "geometry": { "type": "Point", "coordinates": [-77.025887356034701, 38.929619476288885] } }, { "type": "Feature", "properties": { "OBJECTID_1": 78, "OBJECTID_2": 52, "OBJECTID": 78.0, "PRECINCT_N": 40.0, "FACILITY_D": "Assembly Hall", "ACCESSIBLE": "Yes - Use entrance on Newton Street.", "GIS_ID": "plp_78", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Bancroft Elementary School", "ADDRESS": "1755 NEWTON STREET NW", "ADDRESS_ID": 294528 }, "geometry": { "type": "Point", "coordinates": [-77.040553449803028, 38.934318023511061] } }, { "type": "Feature", "properties": { "OBJECTID_1": 79, "OBJECTID_2": 53, "OBJECTID": 79.0, "PRECINCT_N": 46.0, "FACILITY_D": "Classroom", "ACCESSIBLE": "Yes", "GIS_ID": "plp_79", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "E.L. Haynes Public Charter School @ Clark", "ADDRESS": "4501 KANSAS AVENUE NW", "ADDRESS_ID": 284930 }, "geometry": { "type": "Point", "coordinates": [-77.022416369914765, 38.94560156110601] } }, { "type": "Feature", "properties": { "OBJECTID_1": 80, "OBJECTID_2": 54, "OBJECTID": 80.0, "PRECINCT_N": 47.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Accessible ramped entrance off of alley.", "GIS_ID": "plp_80", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Powell Elementary School", "ADDRESS": "1350 UPSHUR STREET NW", "ADDRESS_ID": 255302 }, "geometry": { "type": "Point", "coordinates": [-77.031227415751488, 38.941534009869706] } }, { "type": "Feature", "properties": { "OBJECTID_1": 81, "OBJECTID_2": 55, "OBJECTID": 81.0, "PRECINCT_N": 48.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Use south entrance on 13th St.", "GIS_ID": "plp_81", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Sharpe Health School", "ADDRESS": "4300 13TH STREET NW", "ADDRESS_ID": 255254 }, "geometry": { "type": "Point", "coordinates": [-77.030468336673792, 38.943474325156487] } }, { "type": "Feature", "properties": { "OBJECTID_1": 82, "OBJECTID_2": 56, "OBJECTID": 82.0, "PRECINCT_N": 49.0, "FACILITY_D": "Science Room", "ACCESSIBLE": "Yes - Accessible entrance located on Rock Creek Church Road.", "GIS_ID": "plp_82", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Raymond Elementary School", "ADDRESS": "915 SPRING ROAD NW", "ADDRESS_ID": 226682 }, "geometry": { "type": "Point", "coordinates": [-77.026432654256809, 38.935810871763174] } }, { "type": "Feature", "properties": { "OBJECTID_1": 83, "OBJECTID_2": 57, "OBJECTID": 83.0, "PRECINCT_N": 51.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes - Use parking lot entrance on Northampton St.", "GIS_ID": "plp_83", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Lafayette Elementary School", "ADDRESS": "5701 BROAD BRANCH ROAD NW", "ADDRESS_ID": 294611 }, "geometry": { "type": "Point", "coordinates": [-77.06803711636698, 38.966627220648277] } }, { "type": "Feature", "properties": { "OBJECTID_1": 84, "OBJECTID_2": 58, "OBJECTID": 84.0, "PRECINCT_N": 53.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_84", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Brightwood Elementary School", "ADDRESS": "1300 NICHOLSON STREET NW", "ADDRESS_ID": 294515 }, "geometry": { "type": "Point", "coordinates": [-77.030688851988643, 38.960535392858461] } }, { "type": "Feature", "properties": { "OBJECTID_1": 85, "OBJECTID_2": 59, "OBJECTID": 85.0, "PRECINCT_N": 54.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes - Use entrance located at 14th & Farragut Streets.", "GIS_ID": "plp_85", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "West Elementary School", "ADDRESS": "1338 FARRAGUT STREET NW", "ADDRESS_ID": 294517 }, "geometry": { "type": "Point", "coordinates": [-77.032253049830672, 38.951367080952416] } }, { "type": "Feature", "properties": { "OBJECTID_1": 86, "OBJECTID_2": 60, "OBJECTID": 86.0, "PRECINCT_N": 55.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_86", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Barnard Elementary School", "ADDRESS": "430 DECATUR STREET NW", "ADDRESS_ID": 248305 }, "geometry": { "type": "Point", "coordinates": [-77.017777080008301, 38.948230614415095] } }, { "type": "Feature", "properties": { "OBJECTID_1": 87, "OBJECTID_2": 61, "OBJECTID": 87.0, "PRECINCT_N": 56.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_87", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Truesdell Elementary School", "ADDRESS": "800 INGRAHAM STREET NW", "ADDRESS_ID": 294497 }, "geometry": { "type": "Point", "coordinates": [-77.025071570135182, 38.953968358095487] } }, { "type": "Feature", "properties": { "OBJECTID_1": 88, "OBJECTID_2": 62, "OBJECTID": 88.0, "PRECINCT_N": 57.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_88", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Hattie Holmes Wellness Center", "ADDRESS": "324 KENNEDY STREET NW", "ADDRESS_ID": 307575 }, "geometry": { "type": "Point", "coordinates": [-77.017112348141424, 38.956388773368296] } }, { "type": "Feature", "properties": { "OBJECTID_1": 89, "OBJECTID_2": 63, "OBJECTID": 90.0, "PRECINCT_N": 59.0, "FACILITY_D": "Armory", "ACCESSIBLE": "Yes", "GIS_ID": "plp_90", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Coolidge Senior High School", "ADDRESS": "6315 5TH STREET NW", "ADDRESS_ID": 294615 }, "geometry": { "type": "Point", "coordinates": [-77.01957835173927, 38.967284239673525] } }, { "type": "Feature", "properties": { "OBJECTID_1": 90, "OBJECTID_2": 64, "OBJECTID": 91.0, "PRECINCT_N": 62.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Use ramped entrance on 14th Street.", "GIS_ID": "plp_91", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Shepherd Elementary School", "ADDRESS": "7800 14TH STREET NW", "ADDRESS_ID": 256319 }, "geometry": { "type": "Point", "coordinates": [-77.03399523386544, 38.984602950032162] } }, { "type": "Feature", "properties": { "OBJECTID_1": 91, "OBJECTID_2": 65, "OBJECTID": 92.0, "PRECINCT_N": 63.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_92", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Takoma Community Center", "ADDRESS": "300 VAN BUREN STREET NW", "ADDRESS_ID": 296168 }, "geometry": { "type": "Point", "coordinates": [-77.018051676182949, 38.968886691314118] } }, { "type": "Feature", "properties": { "OBJECTID_1": 92, "OBJECTID_2": 66, "OBJECTID": 93.0, "PRECINCT_N": 64.0, "FACILITY_D": "Recreation Area", "ACCESSIBLE": "Yes - Use rear entrance on 2nd St.", "GIS_ID": "plp_93", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Rabaut - Administrative Building", "ADDRESS": "100 PEABODY STREET NW", "ADDRESS_ID": 277545 }, "geometry": { "type": "Point", "coordinates": [-77.012867448323647, 38.962164521997181] } }, { "type": "Feature", "properties": { "OBJECTID_1": 93, "OBJECTID_2": 67, "OBJECTID": 94.0, "PRECINCT_N": 65.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_94", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "LaSalle Elementary School", "ADDRESS": "501 RIGGS ROAD NE", "ADDRESS_ID": 294489 }, "geometry": { "type": "Point", "coordinates": [-76.999882538481089, 38.959971809983642] } }, { "type": "Feature", "properties": { "OBJECTID_1": 94, "OBJECTID_2": 68, "OBJECTID": 95.0, "PRECINCT_N": 66.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Accessible entrance next to parking lot on Hamilton Street.", "GIS_ID": "plp_95", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "UDC Community College @ Backus", "ADDRESS": "5171 SOUTH DAKOTA AVENUE NE", "ADDRESS_ID": 294607 }, "geometry": { "type": "Point", "coordinates": [-76.997267383153954, 38.953340525729047] } }, { "type": "Feature", "properties": { "OBJECTID_1": 95, "OBJECTID_2": 69, "OBJECTID": 96.0, "PRECINCT_N": 67.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Accessible entrance next to the parking lot on 14th Street", "GIS_ID": "plp_96", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Bunker Hill Elementary School", "ADDRESS": "1401 MICHIGAN AVENUE NE", "ADDRESS_ID": 286131 }, "geometry": { "type": "Point", "coordinates": [-76.98499562999821, 38.942012135008142] } }, { "type": "Feature", "properties": { "OBJECTID_1": 96, "OBJECTID_2": 70, "OBJECTID": 97.0, "PRECINCT_N": 68.0, "FACILITY_D": "Reception Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_97", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "St. Francis Hall", "ADDRESS": "1340 QUINCY STREET NE", "ADDRESS_ID": 66591 }, "geometry": { "type": "Point", "coordinates": [-76.986529583871643, 38.9375726751204] } }, { "type": "Feature", "properties": { "OBJECTID_1": 97, "OBJECTID_2": 71, "OBJECTID": 98.0, "PRECINCT_N": 69.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_98", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Hyde Public Charter School @ Taft", "ADDRESS": "1800 PERRY STREET NE", "ADDRESS_ID": 294529 }, "geometry": { "type": "Point", "coordinates": [-76.978595514953696, 38.936796147384342] } }, { "type": "Feature", "properties": { "OBJECTID_1": 98, "OBJECTID_2": 72, "OBJECTID": 99.0, "PRECINCT_N": 70.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Use entrance on Monroe Street.", "GIS_ID": "plp_99", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Burroughs Elementary School", "ADDRESS": "1820 MONROE STREET NE", "ADDRESS_ID": 294530 }, "geometry": { "type": "Point", "coordinates": [-76.978456370398874, 38.933502326896445] } }, { "type": "Feature", "properties": { "OBJECTID_1": 99, "OBJECTID_2": 73, "OBJECTID": 100.0, "PRECINCT_N": 73.0, "FACILITY_D": "Library (Lower Level)", "ACCESSIBLE": "Yes", "GIS_ID": "plp_100", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "M.M. Bethune Day Academy @ Slowe", "ADDRESS": "1404 JACKSON STREET NE", "ADDRESS_ID": 294522 }, "geometry": { "type": "Point", "coordinates": [-76.986864622728547, 38.929605590082105] } }, { "type": "Feature", "properties": { "OBJECTID_1": 100, "OBJECTID_2": 74, "OBJECTID": 101.0, "PRECINCT_N": 74.0, "FACILITY_D": "Multipurpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_101", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Shaed Elementary School", "ADDRESS": "301 DOUGLAS STREET NE", "ADDRESS_ID": 294477 }, "geometry": { "type": "Point", "coordinates": [-77.002538318002209, 38.923654687421774] } }, { "type": "Feature", "properties": { "OBJECTID_1": 101, "OBJECTID_2": 75, "OBJECTID": 102.0, "PRECINCT_N": 78.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_102", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Trinidad Recreation Center", "ADDRESS": "1310 CHILDRESS STREET NE", "ADDRESS_ID": 68509 }, "geometry": { "type": "Point", "coordinates": [-76.982734368763062, 38.906442359837776] } }, { "type": "Feature", "properties": { "OBJECTID_1": 102, "OBJECTID_2": 76, "OBJECTID": 103.0, "PRECINCT_N": 81.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_103", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Miner Elementary School", "ADDRESS": "601 15TH STREET NE", "ADDRESS_ID": 289548 }, "geometry": { "type": "Point", "coordinates": [-76.982904313087829, 38.897375682182471] } }, { "type": "Feature", "properties": { "OBJECTID_1": 103, "OBJECTID_2": 77, "OBJECTID": 104.0, "PRECINCT_N": 79.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_104", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Browne Junior High School", "ADDRESS": "850 26TH STREET NE", "ADDRESS_ID": 294501 }, "geometry": { "type": "Point", "coordinates": [-76.970667052474028, 38.902598549008218] } }, { "type": "Feature", "properties": { "OBJECTID_1": 104, "OBJECTID_2": 78, "OBJECTID": 105.0, "PRECINCT_N": 83.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Use entrance located on 7th Street.", "GIS_ID": "plp_105", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "J.O. Wilson Elementary School", "ADDRESS": "660 K STREET NE", "ADDRESS_ID": 288841 }, "geometry": { "type": "Point", "coordinates": [-76.996589027486436, 38.90275766582991] } }, { "type": "Feature", "properties": { "OBJECTID_1": 105, "OBJECTID_2": 79, "OBJECTID": 106.0, "PRECINCT_N": 84.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_106", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Stuart-Hobson Middle School", "ADDRESS": "410 E STREET NE", "ADDRESS_ID": 294483 }, "geometry": { "type": "Point", "coordinates": [-77.000004386249671, 38.896297370808789] } }, { "type": "Feature", "properties": { "OBJECTID_1": 106, "OBJECTID_2": 80, "OBJECTID": 107.0, "PRECINCT_N": 85.0, "FACILITY_D": "Auditorium (A-Level)", "ACCESSIBLE": "Yes", "GIS_ID": "plp_107", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "The Specialty Hospital of Washington", "ADDRESS": "700 CONSTITUTION AVENUE NE", "ADDRESS_ID": 295162 }, "geometry": { "type": "Point", "coordinates": [-76.995356592112472, 38.892321795813096] } }, { "type": "Feature", "properties": { "OBJECTID_1": 107, "OBJECTID_2": 81, "OBJECTID": 108.0, "PRECINCT_N": 86.0, "FACILITY_D": "Recreation Room (lower level)", "ACCESSIBLE": "Yes - Accessible - side entrance, next to the parking lot.", "GIS_ID": "plp_108", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Eliot Junior High School", "ADDRESS": "1830 CONSTITUTION AVENUE NE", "ADDRESS_ID": 286499 }, "geometry": { "type": "Point", "coordinates": [-76.978977913437262, 38.892431159766303] } }, { "type": "Feature", "properties": { "OBJECTID_1": 108, "OBJECTID_2": 82, "OBJECTID": 109.0, "PRECINCT_N": 87.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes = Use entrance at the rear of the school, next to the parking lot.", "GIS_ID": "plp_109", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Payne Elementary School", "ADDRESS": "305 15TH STREET SE", "ADDRESS_ID": 294478 }, "geometry": { "type": "Point", "coordinates": [-76.98419490800174, 38.885132314488203] } }, { "type": "Feature", "properties": { "OBJECTID_1": 109, "OBJECTID_2": 83, "OBJECTID": 110.0, "PRECINCT_N": 89.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_110", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "William H. Rumsey Aquatic Center", "ADDRESS": "635 NORTH CAROLINA AVENUE SE", "ADDRESS_ID": 295159 }, "geometry": { "type": "Point", "coordinates": [-76.997028705938774, 38.886585046654147] } }, { "type": "Feature", "properties": { "OBJECTID_1": 110, "OBJECTID_2": 84, "OBJECTID": 111.0, "PRECINCT_N": 91.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_111", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Watkins Elementary School", "ADDRESS": "420 12TH STREET SE", "ADDRESS_ID": 294486 }, "geometry": { "type": "Point", "coordinates": [-76.989996763548163, 38.883466674788586] } }, { "type": "Feature", "properties": { "OBJECTID_1": 111, "OBJECTID_2": 85, "OBJECTID": 113.0, "PRECINCT_N": 92.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_113", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Kenilworth Elementary School", "ADDRESS": "1300 44TH STREET NE", "ADDRESS_ID": 294516 }, "geometry": { "type": "Point", "coordinates": [-76.940484939136297, 38.908228732598651] } }, { "type": "Feature", "properties": { "OBJECTID_1": 112, "OBJECTID_2": 86, "OBJECTID": 114.0, "PRECINCT_N": 93.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Accessible entrance at the rear of the school.", "GIS_ID": "plp_114", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Houston Elementary School", "ADDRESS": "1100 50TH PLACE NE", "ADDRESS_ID": 156316 }, "geometry": { "type": "Point", "coordinates": [-76.9299476407989, 38.905414987198981] } }, { "type": "Feature", "properties": { "OBJECTID_1": 113, "OBJECTID_2": 87, "OBJECTID": 115.0, "PRECINCT_N": 94.0, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_115", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Merritt Education Center", "ADDRESS": "5002 HAYES STREET NE", "ADDRESS_ID": 294606 }, "geometry": { "type": "Point", "coordinates": [-76.930131189589616, 38.900230067255841] } }, { "type": "Feature", "properties": { "OBJECTID_1": 114, "OBJECTID_2": 88, "OBJECTID": 116.0, "PRECINCT_N": 95.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes -Use entrance located at 57th & Eads Streets.", "GIS_ID": "plp_116", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Drew Elementary School", "ADDRESS": "5500 EADS STREET NE", "ADDRESS_ID": 294609 }, "geometry": { "type": "Point", "coordinates": [-76.922708043967461, 38.896192887555607] } }, { "type": "Feature", "properties": { "OBJECTID_1": 115, "OBJECTID_2": 89, "OBJECTID": 117.0, "PRECINCT_N": 100.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_117", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Thomas Elementary School", "ADDRESS": "650 ANACOSTIA AVENUE NE", "ADDRESS_ID": 294493 }, "geometry": { "type": "Point", "coordinates": [-76.952110905321987, 38.901278637588895] } }, { "type": "Feature", "properties": { "OBJECTID_1": 116, "OBJECTID_2": 90, "OBJECTID": 118.0, "PRECINCT_N": 98.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Use rear entrance of the school.", "GIS_ID": "plp_118", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Smothers Elementary School", "ADDRESS": "4400 BROOKS STREET NE", "ADDRESS_ID": 294596 }, "geometry": { "type": "Point", "coordinates": [-76.938468638784286, 38.893553701828701] } }, { "type": "Feature", "properties": { "OBJECTID_1": 117, "OBJECTID_2": 91, "OBJECTID": 120.0, "PRECINCT_N": 103.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Use ground level entrance.", "GIS_ID": "plp_120", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Plummer Elementary School", "ADDRESS": "4601 TEXAS AVENUE SE", "ADDRESS_ID": 19536 }, "geometry": { "type": "Point", "coordinates": [-76.939934669841293, 38.8872398636938] } }, { "type": "Feature", "properties": { "OBJECTID_1": 118, "OBJECTID_2": 92, "OBJECTID": 121.0, "PRECINCT_N": 104.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes- Use ground level entrance.", "GIS_ID": "plp_121", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Nalle Elementary School", "ADDRESS": "219 50TH STREET SE", "ADDRESS_ID": 294474 }, "geometry": { "type": "Point", "coordinates": [-76.930796499569979, 38.885954085228562] } }, { "type": "Feature", "properties": { "OBJECTID_1": 119, "OBJECTID_2": 93, "OBJECTID": 122.0, "PRECINCT_N": 105.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Use entrance located on D Street.", "GIS_ID": "plp_122", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "CW Harris Elementary School", "ADDRESS": "301 53RD STREET SE", "ADDRESS_ID": 289801 }, "geometry": { "type": "Point", "coordinates": [-76.926115493732041, 38.883598497883369] } }, { "type": "Feature", "properties": { "OBJECTID_1": 120, "OBJECTID_2": 94, "OBJECTID": 123.0, "PRECINCT_N": 106.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Accessible rear entrance, next to the parking lot.", "GIS_ID": "plp_123", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Davis Elementary School", "ADDRESS": "4430 H STREET SE", "ADDRESS_ID": 294598 }, "geometry": { "type": "Point", "coordinates": [-76.937616302328593, 38.879067951063831] } }, { "type": "Feature", "properties": { "OBJECTID_1": 121, "OBJECTID_2": 95, "OBJECTID": 124.0, "PRECINCT_N": 107.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_124", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Sousa Middle School", "ADDRESS": "3650 ELY PLACE SE", "ADDRESS_ID": 294584 }, "geometry": { "type": "Point", "coordinates": [-76.953161747717687, 38.883908000174614] } }, { "type": "Feature", "properties": { "OBJECTID_1": 122, "OBJECTID_2": 96, "OBJECTID": 125.0, "PRECINCT_N": 142.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_125", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Jefferson Junior High School", "ADDRESS": "801 7TH STREET SW", "ADDRESS_ID": 276812 }, "geometry": { "type": "Point", "coordinates": [-77.022910654604146, 38.879870599424763] } }, { "type": "Feature", "properties": { "OBJECTID_1": 123, "OBJECTID_2": 97, "OBJECTID": 126.0, "PRECINCT_N": 140.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_126", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Anacostia Senior High School", "ADDRESS": "1601 16TH STREET SE", "ADDRESS_ID": 155922 }, "geometry": { "type": "Point", "coordinates": [-76.983077248298486, 38.870083725754895] } }, { "type": "Feature", "properties": { "OBJECTID_1": 124, "OBJECTID_2": 98, "OBJECTID": 127.0, "PRECINCT_N": 139.0, "FACILITY_D": "Community Service Area", "ACCESSIBLE": "Yes", "GIS_ID": "plp_127", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Thurgood Marshall Elementary", "ADDRESS": "3100 FORT LINCOLN DRIVE NE", "ADDRESS_ID": 294553 }, "geometry": { "type": "Point", "coordinates": [-76.957633696697528, 38.927305943770008] } }, { "type": "Feature", "properties": { "OBJECTID_1": 1, "OBJECTID_2": 101, "OBJECTID": 130.0, "PRECINCT_N": 131.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_130", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Van Ness Elementary School", "ADDRESS": "1150 5TH STREET SE", "ADDRESS_ID": 294508 }, "geometry": { "type": "Point", "coordinates": [-76.999244002225964, 38.87679611768769] } }, { "type": "Feature", "properties": { "OBJECTID_1": 2, "OBJECTID_2": 102, "OBJECTID": 131.0, "PRECINCT_N": 125.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_131", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Hendley Elementary School", "ADDRESS": "425 CHESAPEAKE STREET SE", "ADDRESS_ID": 24445 }, "geometry": { "type": "Point", "coordinates": [-76.999184840242322, 38.828985580495711] } }, { "type": "Feature", "properties": { "OBJECTID_1": 3, "OBJECTID_2": 103, "OBJECTID": 132.0, "PRECINCT_N": 126.0, "FACILITY_D": "Library", "ACCESSIBLE": "Yes", "GIS_ID": "plp_132", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "W.B. Patterson Elementary School", "ADDRESS": "4399 SOUTH CAPITOL TERRACE SW", "ADDRESS_ID": 301073 }, "geometry": { "type": "Point", "coordinates": [-77.008475600194785, 38.826981192201202] } }, { "type": "Feature", "properties": { "OBJECTID_1": 4, "OBJECTID_2": 104, "OBJECTID": 133.0, "PRECINCT_N": 123.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_133", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Martin Luther King Elementary School", "ADDRESS": "600 ALABAMA AVENUE SE", "ADDRESS_ID": 294492 }, "geometry": { "type": "Point", "coordinates": [-76.997583187909655, 38.843386565863888] } }, { "type": "Feature", "properties": { "OBJECTID_1": 5, "OBJECTID_2": 105, "OBJECTID": 135.0, "PRECINCT_N": 121.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_135", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "National Collegiate Prep @ Draper", "ADDRESS": "908 WAHLER PLACE SE", "ADDRESS_ID": 294502 }, "geometry": { "type": "Point", "coordinates": [-76.992268817990308, 38.834327886510565] } }, { "type": "Feature", "properties": { "OBJECTID_1": 6, "OBJECTID_2": 106, "OBJECTID": 136.0, "PRECINCT_N": 120.0, "FACILITY_D": "Meeting Room", "ACCESSIBLE": "Yes - Use side Entrance", "GIS_ID": "plp_136", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Malcolm X Elementary School", "ADDRESS": "1351 ALABAMA AVENUE SE", "ADDRESS_ID": 289201 }, "geometry": { "type": "Point", "coordinates": [-76.986212854490333, 38.844973623092343] } }, { "type": "Feature", "properties": { "OBJECTID_1": 7, "OBJECTID_2": 107, "OBJECTID": 137.0, "PRECINCT_N": 118.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_137", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Garnet C. Wilkinson Elementary School", "ADDRESS": "2330 POMEROY ROAD SE", "ADDRESS_ID": 294542 }, "geometry": { "type": "Point", "coordinates": [-76.985550422151263, 38.856844389461791] } }, { "type": "Feature", "properties": { "OBJECTID_1": 8, "OBJECTID_2": 108, "OBJECTID": 138.0, "PRECINCT_N": 119.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_138", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Excel Academy PCS @ Birney", "ADDRESS": "2501 MARTIN LUTHER KING JR AVENUE SE", "ADDRESS_ID": 278172 }, "geometry": { "type": "Point", "coordinates": [-76.99535456253949, 38.859761758349642] } }, { "type": "Feature", "properties": { "OBJECTID_1": 9, "OBJECTID_2": 109, "OBJECTID": 139.0, "PRECINCT_N": 117.0, "FACILITY_D": "Main Lobby", "ACCESSIBLE": "Yes - Use ramped entrance on Stanton Road.", "GIS_ID": "plp_139", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Douglas Community Recreation Center", "ADDRESS": "1898 STANTON TERRACE SE", "ADDRESS_ID": 286513 }, "geometry": { "type": "Point", "coordinates": [-76.977761548811543, 38.852636229366837] } }, { "type": "Feature", "properties": { "OBJECTID_1": 10, "OBJECTID_2": 110, "OBJECTID": 140.0, "PRECINCT_N": 114.0, "FACILITY_D": "Church Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_140", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Union Temple Baptist Church", "ADDRESS": "1225 W STREET SE", "ADDRESS_ID": 70732 }, "geometry": { "type": "Point", "coordinates": [-76.988939737432986, 38.864499675202886] } }, { "type": "Feature", "properties": { "OBJECTID_1": 11, "OBJECTID_2": 111, "OBJECTID": 141.0, "PRECINCT_N": 113.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_141", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Senior Wellness Center", "ADDRESS": "3001 ALABAMA AVENUE SE", "ADDRESS_ID": 289473 }, "geometry": { "type": "Point", "coordinates": [-76.964116112055365, 38.860502954486471] } }, { "type": "Feature", "properties": { "OBJECTID_1": 12, "OBJECTID_2": 112, "OBJECTID": 142.0, "PRECINCT_N": 112.0, "FACILITY_D": "Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_142", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Anacostia Public Library", "ADDRESS": "1800 GOOD HOPE ROAD SE", "ADDRESS_ID": 53560 }, "geometry": { "type": "Point", "coordinates": [-76.978485420182579, 38.865896402057949] } }, { "type": "Feature", "properties": { "OBJECTID_1": 13, "OBJECTID_2": 113, "OBJECTID": 2.0, "PRECINCT_N": 99.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_2", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Smothers Elementary School", "ADDRESS": "4400 BROOKS STREET NE", "ADDRESS_ID": 294596 }, "geometry": { "type": "Point", "coordinates": [-76.938468638784286, 38.893553701828701] } }, { "type": "Feature", "properties": { "OBJECTID_1": 14, "OBJECTID_2": 114, "OBJECTID": 3.0, "PRECINCT_N": 97.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_3", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Kelly Miller Middle School", "ADDRESS": "301 49TH STREET NE", "ADDRESS_ID": 294476 }, "geometry": { "type": "Point", "coordinates": [-76.932456126905393, 38.893314974927328] } }, { "type": "Feature", "properties": { "OBJECTID_1": 15, "OBJECTID_2": 115, "OBJECTID": 4.0, "PRECINCT_N": 130.0, "FACILITY_D": "Multi-Purpose Room (lower level)", "ACCESSIBLE": "Yes - Use west entrance.", "GIS_ID": "plp_4", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Lutheran Church of the Reformation", "ADDRESS": "212 EAST CAPITOL STREET NE", "ADDRESS_ID": 286648 }, "geometry": { "type": "Point", "coordinates": [-77.002857667709918, 38.890112459701982] } }, { "type": "Feature", "properties": { "OBJECTID_1": 16, "OBJECTID_2": 116, "OBJECTID": 112.0, "PRECINCT_N": 90.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_112", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Tyler Elementary School", "ADDRESS": "1001 G STREET SE", "ADDRESS_ID": 294505 }, "geometry": { "type": "Point", "coordinates": [-76.992041656836633, 38.881084023669693] } }, { "type": "Feature", "properties": { "OBJECTID_1": 17, "OBJECTID_2": 117, "OBJECTID": 119.0, "PRECINCT_N": 101.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_119", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "River Terrace Elementary School", "ADDRESS": "420 34TH STREET NE", "ADDRESS_ID": 294485 }, "geometry": { "type": "Point", "coordinates": [-76.957807551091278, 38.895428461353752] } }, { "type": "Feature", "properties": { "OBJECTID_1": 18, "OBJECTID_2": 118, "OBJECTID": 134.0, "PRECINCT_N": 122.0, "FACILITY_D": "Armory", "ACCESSIBLE": "Yes - Accessible entrance adjacent to parking lot.", "GIS_ID": "plp_134", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Ballou Senior High School", "ADDRESS": "3401 4TH STREET SE", "ADDRESS_ID": 294567 }, "geometry": { "type": "Point", "coordinates": [-77.000975257588308, 38.839382331531922] } }, { "type": "Feature", "properties": { "OBJECTID_1": 19, "OBJECTID_2": 119, "OBJECTID": 1.0, "PRECINCT_N": 2.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_1", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "The School Without Walls", "ADDRESS": "2130 G STREET NW", "ADDRESS_ID": 242528 }, "geometry": { "type": "Point", "coordinates": [-77.048186465638153, 38.898123787570832] } }, { "type": "Feature", "properties": { "OBJECTID_1": 20, "OBJECTID_2": 120, "OBJECTID": 40.0, "PRECINCT_N": 72.0, "FACILITY_D": "Community Room (1st floor)", "ACCESSIBLE": "Yes", "GIS_ID": "plp_40", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Langdon Park Recreation Center", "ADDRESS": "2901 20TH STREET NE", "ADDRESS_ID": 287283 }, "geometry": { "type": "Point", "coordinates": [-76.975788486876453, 38.926822413922125] } }, { "type": "Feature", "properties": { "OBJECTID_1": 21, "OBJECTID_2": 121, "OBJECTID": 29.0, "PRECINCT_N": 34.0, "FACILITY_D": "Gymnasium (lower level)", "ACCESSIBLE": "Yes - Use ramped entrance.", "GIS_ID": "plp_29", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Edmund Burke School", "ADDRESS": "2955 UPTON STREET NW", "ADDRESS_ID": 284536 }, "geometry": { "type": "Point", "coordinates": [-77.061628156880005, 38.942361327729408] } }, { "type": "Feature", "properties": { "OBJECTID_1": 22, "OBJECTID_2": 122, "OBJECTID": 30.0, "PRECINCT_N": 45.0, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_30", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "MPD - Regional Operation Command (North)", "ADDRESS": "801 SHEPHERD STREET NW", "ADDRESS_ID": 252510 }, "geometry": { "type": "Point", "coordinates": [-77.023810447712307, 38.940088934414405] } }, { "type": "Feature", "properties": { "OBJECTID_1": 23, "OBJECTID_2": 123, "OBJECTID": 31.0, "PRECINCT_N": 8.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_31", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Palisades Recreation Center", "ADDRESS": "5100 SHERIER PLACE NW", "ADDRESS_ID": 268352 }, "geometry": { "type": "Point", "coordinates": [-77.102634605747866, 38.924441924850953] } }, { "type": "Feature", "properties": { "OBJECTID_1": 24, "OBJECTID_2": 124, "OBJECTID": 32.0, "PRECINCT_N": 41.0, "FACILITY_D": "Great Hall", "ACCESSIBLE": "Yes - Use entrance on Oak Street.", "GIS_ID": "plp_32", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Trinity AME Zion Church", "ADDRESS": "3505 16TH STREET NW", "ADDRESS_ID": 234593 }, "geometry": { "type": "Point", "coordinates": [-77.036080424552495, 38.934550552844456] } }, { "type": "Feature", "properties": { "OBJECTID_1": 25, "OBJECTID_2": 125, "OBJECTID": 33.0, "PRECINCT_N": 43.0, "FACILITY_D": "Recreation Area", "ACCESSIBLE": "Yes", "GIS_ID": "plp_33", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Park View Recreation Center", "ADDRESS": "693 OTIS PLACE NW", "ADDRESS_ID": 295160 }, "geometry": { "type": "Point", "coordinates": [-77.021350314279189, 38.935002875205896] } }, { "type": "Feature", "properties": { "OBJECTID_1": 26, "OBJECTID_2": 126, "OBJECTID": 34.0, "PRECINCT_N": 42.0, "FACILITY_D": "Dining Room (lower level)", "ACCESSIBLE": "Yes", "GIS_ID": "plp_34", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Mt. Rona Baptist Church", "ADDRESS": "3431 13TH STREET NW", "ADDRESS_ID": 230950 }, "geometry": { "type": "Point", "coordinates": [-77.029452852579396, 38.932240970226857] } }, { "type": "Feature", "properties": { "OBJECTID_1": 27, "OBJECTID_2": 1, "OBJECTID": 5.0, "PRECINCT_N": 80.0, "FACILITY_D": "Quander Room", "ACCESSIBLE": "Yes - Accessible entrance rear of Church.", "GIS_ID": "plp_5", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "St. Benedict the Moor Church", "ADDRESS": "320 21ST STREET NE", "ADDRESS_ID": 287504 }, "geometry": { "type": "Point", "coordinates": [-76.975457535682949, 38.894225931293576] } }, { "type": "Feature", "properties": { "OBJECTID_1": 28, "OBJECTID_2": 2, "OBJECTID": 6.0, "PRECINCT_N": 102.0, "FACILITY_D": "Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_6", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Benning Public Library", "ADDRESS": "3935 BENNING ROAD NE", "ADDRESS_ID": 295144 }, "geometry": { "type": "Point", "coordinates": [-76.947759549614048, 38.89419424144954] } }, { "type": "Feature", "properties": { "OBJECTID_1": 29, "OBJECTID_2": 3, "OBJECTID": 7.0, "PRECINCT_N": 96.0, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_7", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Hughes Memorial United Methodist Church", "ADDRESS": "25 53RD STREET NE", "ADDRESS_ID": 287077 }, "geometry": { "type": "Point", "coordinates": [-76.925776919030255, 38.890534557241999] } }, { "type": "Feature", "properties": { "OBJECTID_1": 30, "OBJECTID_2": 4, "OBJECTID": 8.0, "PRECINCT_N": 88.0, "FACILITY_D": "Church Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_8", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Thankful Baptist Church", "ADDRESS": "1401 INDEPENDENCE AVENUE SE", "ADDRESS_ID": 65107 }, "geometry": { "type": "Point", "coordinates": [-76.98528389471295, 38.887379306202888] } }, { "type": "Feature", "properties": { "OBJECTID_1": 31, "OBJECTID_2": 5, "OBJECTID": 9.0, "PRECINCT_N": 132.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_9", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "DC Center for Therapeutic Recreation", "ADDRESS": "3030 G STREET SE", "ADDRESS_ID": 288770 }, "geometry": { "type": "Point", "coordinates": [-76.963203222616286, 38.880871575493281] } }, { "type": "Feature", "properties": { "OBJECTID_1": 32, "OBJECTID_2": 6, "OBJECTID": 10.0, "PRECINCT_N": 128.0, "FACILITY_D": "Junior Church Hall", "ACCESSIBLE": "Yes - Accessible entrance adjacent to parking lot.", "GIS_ID": "plp_10", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Friendship Baptist Church", "ADDRESS": "900 DELAWARE AVENUE SW", "ADDRESS_ID": 276854 }, "geometry": { "type": "Point", "coordinates": [-77.012497934269035, 38.878918819849204] } }, { "type": "Feature", "properties": { "OBJECTID_1": 33, "OBJECTID_2": 7, "OBJECTID": 11.0, "PRECINCT_N": 111.0, "FACILITY_D": "John Bailey Room", "ACCESSIBLE": "Yes - Use the Center for Employment Training entrance for ground level access (2815", "GIS_ID": "plp_11", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "St. Francis Xavier Church", "ADDRESS": "2800 PENNSYLVANIA AVENUE SE", "ADDRESS_ID": 44697 }, "geometry": { "type": "Point", "coordinates": [-76.967509922797618, 38.872519727803635] } }, { "type": "Feature", "properties": { "OBJECTID_1": 34, "OBJECTID_2": 8, "OBJECTID": 12.0, "PRECINCT_N": 108.0, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes - Accessible - rear entrance, near parking lot.", "GIS_ID": "plp_12", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Pennsylvania Avenue Baptist Church", "ADDRESS": "3000 PENNSYLVANIA AVENUE SE", "ADDRESS_ID": 42549 }, "geometry": { "type": "Point", "coordinates": [-76.963813000815662, 38.871129274649782] } }, { "type": "Feature", "properties": { "OBJECTID_1": 35, "OBJECTID_2": 9, "OBJECTID": 13.0, "PRECINCT_N": 127.0, "FACILITY_D": "Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_13", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "King Greenleaf Recreation Center", "ADDRESS": "201 N STREET SW", "ADDRESS_ID": 52917 }, "geometry": { "type": "Point", "coordinates": [-77.012792499594184, 38.875015810745062] } }, { "type": "Feature", "properties": { "OBJECTID_1": 36, "OBJECTID_2": 10, "OBJECTID": 14.0, "PRECINCT_N": 109.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_14", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Randle-Highlands Elementary School", "ADDRESS": "1650 30TH STREET SE", "ADDRESS_ID": 156337 }, "geometry": { "type": "Point", "coordinates": [-76.964356281775736, 38.870091403187843] } }, { "type": "Feature", "properties": { "OBJECTID_1": 37, "OBJECTID_2": 11, "OBJECTID": 16.0, "PRECINCT_N": 134.0, "FACILITY_D": "Multipurpose Room", "ACCESSIBLE": "Yes - Use rear entrance, adjacent to parking lot.", "GIS_ID": "plp_16", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Allen AME Church", "ADDRESS": "2498 ALABAMA AVENUE SE", "ADDRESS_ID": 46843 }, "geometry": { "type": "Point", "coordinates": [-76.970282941213242, 38.856884832198325] } }, { "type": "Feature", "properties": { "OBJECTID_1": 38, "OBJECTID_2": 12, "OBJECTID": 17.0, "PRECINCT_N": 115.0, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_17", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Seventh District Police Station", "ADDRESS": "2455 ALABAMA AVENUE SE", "ADDRESS_ID": 278162 }, "geometry": { "type": "Point", "coordinates": [-76.969521397067084, 38.853355764139451] } }, { "type": "Feature", "properties": { "OBJECTID_1": 39, "OBJECTID_2": 13, "OBJECTID": 18.0, "PRECINCT_N": 116.0, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_18", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "New Image Community Baptist Church", "ADDRESS": "1839 ALABAMA AVENUE SE", "ADDRESS_ID": 54816 }, "geometry": { "type": "Point", "coordinates": [-76.977839930327974, 38.847658633098888] } }, { "type": "Feature", "properties": { "OBJECTID_1": 40, "OBJECTID_2": 14, "OBJECTID": 19.0, "PRECINCT_N": 124.0, "FACILITY_D": "Church Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_19", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Convenant Baptist Church", "ADDRESS": "3845 SOUTH CAPITOL STREET SW", "ADDRESS_ID": 301907 }, "geometry": { "type": "Point", "coordinates": [-77.00866130403007, 38.83401036254331] } }, { "type": "Feature", "properties": { "OBJECTID_1": 41, "OBJECTID_2": 15, "OBJECTID": 20.0, "PRECINCT_N": 61.0, "FACILITY_D": "Multi-purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_20", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Fort Stevens Recreation Center", "ADDRESS": "1327 VAN BUREN STREET NW", "ADDRESS_ID": 290152 }, "geometry": { "type": "Point", "coordinates": [-77.031090800845547, 38.970269148593538] } }, { "type": "Feature", "properties": { "OBJECTID_1": 42, "OBJECTID_2": 16, "OBJECTID": 21.0, "PRECINCT_N": 50.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Accessible rear entrance next to the parking lot.", "GIS_ID": "plp_21", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Chevy Chase Community Center", "ADDRESS": "5601 CONNECTICUT AVENUE NW", "ADDRESS_ID": 263959 }, "geometry": { "type": "Point", "coordinates": [-77.075108613262955, 38.965158421273387] } }, { "type": "Feature", "properties": { "OBJECTID_1": 43, "OBJECTID_2": 17, "OBJECTID": 22.0, "PRECINCT_N": 52.0, "FACILITY_D": "Roth Gymnasium Bldg.", "ACCESSIBLE": "Yes - Access from parking lot.", "GIS_ID": "plp_22", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "St. John's College High School", "ADDRESS": "2607 MILITARY ROAD NW", "ADDRESS_ID": 259840 }, "geometry": { "type": "Point", "coordinates": [-77.055204940372292, 38.962417220863394] } }, { "type": "Feature", "properties": { "OBJECTID_1": 44, "OBJECTID_2": 18, "OBJECTID": 24.0, "PRECINCT_N": 60.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_24", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Church of the Nativity Youth Center", "ADDRESS": "6000 GEORGIA AVENUE NW", "ADDRESS_ID": 253197 }, "geometry": { "type": "Point", "coordinates": [-77.028226985088239, 38.962848161689173] } }, { "type": "Feature", "properties": { "OBJECTID_1": 45, "OBJECTID_2": 19, "OBJECTID": 25.0, "PRECINCT_N": 138.0, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes - Accessible entrance adjacent to parking lot.", "GIS_ID": "plp_25", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Capital Memorial Adventist Church", "ADDRESS": "3150 CHESAPEAKE STREET NW", "ADDRESS_ID": 284592 }, "geometry": { "type": "Point", "coordinates": [-77.06396319555985, 38.950203225069913] } }, { "type": "Feature", "properties": { "OBJECTID_1": 46, "OBJECTID_2": 20, "OBJECTID": 26.0, "PRECINCT_N": 31.0, "FACILITY_D": "Church Hall", "ACCESSIBLE": "Yes - Accessible entrance located on 42nd St.", "GIS_ID": "plp_26", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "St. Columba's Episcopal Church", "ADDRESS": "4201 ALBEMARLE STREET NW", "ADDRESS_ID": 301545 }, "geometry": { "type": "Point", "coordinates": [-77.08244680641738, 38.948217666726201] } }, { "type": "Feature", "properties": { "OBJECTID_1": 47, "OBJECTID_2": 21, "OBJECTID": 27.0, "PRECINCT_N": 44.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_27", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "North Capitol at Plymouth", "ADDRESS": "5233 NORTH CAPTIOL STREET NE", "ADDRESS_ID": 298101 }, "geometry": { "type": "Point", "coordinates": [-77.00866515707142, 38.954067744263412] } }, { "type": "Feature", "properties": { "OBJECTID_1": 48, "OBJECTID_2": 22, "OBJECTID": 28.0, "PRECINCT_N": 9.0, "FACILITY_D": "Vestry Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_28", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Metropolitan Memorial United Methodist Church", "ADDRESS": "3401 NEBRASKA AVENUE NW", "ADDRESS_ID": 298676 }, "geometry": { "type": "Point", "coordinates": [-77.087799340484636, 38.934959237025218] } }, { "type": "Feature", "properties": { "OBJECTID_1": 49, "OBJECTID_2": 23, "OBJECTID": 47.0, "PRECINCT_N": 75.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_47", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "McKinley Technology Senior High School", "ADDRESS": "151 T STREET NE", "ADDRESS_ID": 296345 }, "geometry": { "type": "Point", "coordinates": [-77.004122439059401, 38.915219785761813] } }, { "type": "Feature", "properties": { "OBJECTID_1": 50, "OBJECTID_2": 24, "OBJECTID": 48.0, "PRECINCT_N": 141.0, "FACILITY_D": "North Lobby", "ACCESSIBLE": "Yes", "GIS_ID": "plp_48", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Frank D. Reeves Municipal Center", "ADDRESS": "2000 14TH STREET NW", "ADDRESS_ID": 239976 }, "geometry": { "type": "Point", "coordinates": [-77.032403524076486, 38.917444026973975] } }, { "type": "Feature", "properties": { "OBJECTID_1": 125, "OBJECTID_2": 99, "OBJECTID": 128.0, "PRECINCT_N": 137.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Accessible entrance adjacent to parking lot.", "GIS_ID": "plp_128", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Garrison Elementary School", "ADDRESS": "1200 S STREET NW", "ADDRESS_ID": 294509 }, "geometry": { "type": "Point", "coordinates": [-77.028612550392012, 38.913900958245385] } }, { "type": "Feature", "properties": { "OBJECTID_1": 126, "OBJECTID_2": 100, "OBJECTID": 129.0, "PRECINCT_N": 133.0, "FACILITY_D": "Library", "ACCESSIBLE": "Yes - Accessible entrance rear of school", "GIS_ID": "plp_129", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Orr Elementary School", "ADDRESS": "2200 MINNESOTA AVENUE SE", "ADDRESS_ID": 294539 }, "geometry": { "type": "Point", "coordinates": [-76.974484011563916, 38.871796823975465] } }, { "type": "Feature", "properties": { "OBJECTID_1": 127, "OBJECTID_2": 127, "OBJECTID": 35.0, "PRECINCT_N": 71.0, "FACILITY_D": "Upper Fellowship Hall", "ACCESSIBLE": "Yes - Accessible entrance on Bladensburg Road", "GIS_ID": "plp_35", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Mt. Horeb Baptist Church", "ADDRESS": "3015 EARL PLACE NE", "ADDRESS_ID": 287380 }, "geometry": { "type": "Point", "coordinates": [-76.962575827800578, 38.928281639524052] } }, { "type": "Feature", "properties": { "OBJECTID_1": 128, "OBJECTID_2": 128, "OBJECTID": 36.0, "PRECINCT_N": 28.0, "FACILITY_D": "Parish Center (near Klingle Place)", "ACCESSIBLE": "Yes", "GIS_ID": "plp_36", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Church of the Annunciation Parish", "ADDRESS": "3810 MASSACHUSETTS AVENUE NW", "ADDRESS_ID": 263608 }, "geometry": { "type": "Point", "coordinates": [-77.075817469590191, 38.930148719361682] } }, { "type": "Feature", "properties": { "OBJECTID_1": 129, "OBJECTID_2": 129, "OBJECTID": 37.0, "PRECINCT_N": 136.0, "FACILITY_D": "Conference Room", "ACCESSIBLE": "Yes - Use side entrance from parking lot", "GIS_ID": "plp_37", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Leading Age", "ADDRESS": "2519 CONNECTICUT AVENUE NW", "ADDRESS_ID": 284405 }, "geometry": { "type": "Point", "coordinates": [-77.050817099689468, 38.923171900472795] } }, { "type": "Feature", "properties": { "OBJECTID_1": 130, "OBJECTID_2": 130, "OBJECTID": 38.0, "PRECINCT_N": 12.0, "FACILITY_D": "Church Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_38", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "St Sophia's Greek Orthodox Cathederal Church", "ADDRESS": "3600 MASSACHUSETTS AVENUE NW", "ADDRESS_ID": 262638 }, "geometry": { "type": "Point", "coordinates": [-77.071174182052317, 38.926724696389051] } }, { "type": "Feature", "properties": { "OBJECTID_1": 131, "OBJECTID_2": 131, "OBJECTID": 39.0, "PRECINCT_N": 39.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_39", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Bell Multicultural High School", "ADDRESS": "3101 16th Street NW", "ADDRESS_ID": 234375 }, "geometry": { "type": "Point", "coordinates": [-77.035851518793763, 38.929540334081075] } }, { "type": "Feature", "properties": { "OBJECTID_1": 132, "OBJECTID_2": 132, "OBJECTID": 41.0, "PRECINCT_N": 36.0, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_41", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Latin American Youth Center", "ADDRESS": "1419 COLUMBIA ROAD NW", "ADDRESS_ID": 234363 }, "geometry": { "type": "Point", "coordinates": [-77.033357815907635, 38.927766394492799] } }, { "type": "Feature", "properties": { "OBJECTID_1": 133, "OBJECTID_2": 133, "OBJECTID": 42.0, "PRECINCT_N": 135.0, "FACILITY_D": "Church Hall", "ACCESSIBLE": "Yes - Use ramped entrance on Rhode Island Avenue.", "GIS_ID": "plp_42", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Mt. Bethel Baptist Church", "ADDRESS": "1901 1ST STREET NW", "ADDRESS_ID": 227421 }, "geometry": { "type": "Point", "coordinates": [-77.01182725241577, 38.916136758622002] } }, { "type": "Feature", "properties": { "OBJECTID_1": 134, "OBJECTID_2": 134, "OBJECTID": 43.0, "PRECINCT_N": 11.0, "FACILITY_D": "Union Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_43", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "International Union of Operating Engineer", "ADDRESS": "2461 WISCONSIN AVENUE NW", "ADDRESS_ID": 284395 }, "geometry": { "type": "Point", "coordinates": [-77.072501975359245, 38.92234916933058] } }, { "type": "Feature", "properties": { "OBJECTID_1": 135, "OBJECTID_2": 135, "OBJECTID": 44.0, "PRECINCT_N": 23.0, "FACILITY_D": "Library and Computer Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_44", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Loughran Community Center", "ADDRESS": "2500 14TH STREET NW", "ADDRESS_ID": 234200 }, "geometry": { "type": "Point", "coordinates": [-77.032362118987933, 38.921998738498395] } }, { "type": "Feature", "properties": { "OBJECTID_1": 136, "OBJECTID_2": 136, "OBJECTID": 45.0, "PRECINCT_N": 25.0, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_45", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Goodwill Baptist Church", "ADDRESS": "1862 KALORAMA ROAD NW", "ADDRESS_ID": 235475 }, "geometry": { "type": "Point", "coordinates": [-77.043826034297922, 38.919316646134163] } }, { "type": "Feature", "properties": { "OBJECTID_1": 137, "OBJECTID_2": 137, "OBJECTID": 46.0, "PRECINCT_N": 13.0, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_46", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Goodwill Baptist Church", "ADDRESS": "1862 KALORAMA ROAD NW", "ADDRESS_ID": 235475 }, "geometry": { "type": "Point", "coordinates": [-77.043826034297922, 38.919316646134163] } }, { "type": "Feature", "properties": { "OBJECTID_1": 138, "OBJECTID_2": 138, "OBJECTID": 143.0, "PRECINCT_N": 143.0, "FACILITY_D": "Church Hall/Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_143", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Chinese Community Church", "ADDRESS": "500 I STREET NW", "ADDRESS_ID": 238945 }, "geometry": { "type": "Point", "coordinates": [-77.019133548822794, 38.900621429714505] } }, { "type": "Feature", "properties": { "OBJECTID_1": 139, "OBJECTID_2": 139, "OBJECTID": 15.0, "PRECINCT_N": 110.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_15", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "St. Timothy's Episcopal Church", "ADDRESS": "3601 ALABAMA AVENUE SE", "ADDRESS_ID": 33104 }, "geometry": { "type": "Point", "coordinates": [-76.956092288786962, 38.862989239014041] } }, { "type": "Feature", "properties": { "OBJECTID_1": 140, "OBJECTID_2": 140, "OBJECTID": 23.0, "PRECINCT_N": 32.0, "FACILITY_D": "Fellowship Hall (1st Floor)", "ACCESSIBLE": "Yes - Use Connecticut Ave. entrance", "GIS_ID": "plp_23", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Wesley Methodist Church", "ADDRESS": "5312 CONNECTICUT AVENUE NW", "ADDRESS_ID": 301282 }, "geometry": { "type": "Point", "coordinates": [-77.07264987664179, 38.959324066446086] } }, { "type": "Feature", "properties": { "OBJECTID_1": 141, "OBJECTID_2": 141, "OBJECTID": 63.0, "PRECINCT_N": 6.0, "FACILITY_D": "Gallery", "ACCESSIBLE": "Yes", "GIS_ID": "plp_63", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Duke Ellington School of the Arts", "ADDRESS": "3500 R STREET NW", "ADDRESS_ID": 294569 }, "geometry": { "type": "Point", "coordinates": [-77.070307562295099, 38.913446044424617] } }, { "type": "Feature", "properties": { "OBJECTID_1": 142, "OBJECTID_2": 142, "OBJECTID": 70.0, "PRECINCT_N": 26.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes - Use ramped entrance on 27th Street", "GIS_ID": "plp_70", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Oyster Elementary School", "ADDRESS": "2801 CALVERT STREET NW", "ADDRESS_ID": 275944 }, "geometry": { "type": "Point", "coordinates": [-77.057203378566399, 38.923595492962626] } }, { "type": "Feature", "properties": { "OBJECTID_1": 143, "OBJECTID_2": 143, "OBJECTID": 89.0, "PRECINCT_N": 58.0, "FACILITY_D": "Community Room.", "ACCESSIBLE": "Yes - Ground level at Georgia. Avenue & Quackenbos Street.", "GIS_ID": "plp_89", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Fourth District Police Station", "ADDRESS": "6001 GEORGIA AVENUE NW", "ADDRESS_ID": 243485 }, "geometry": { "type": "Point", "coordinates": [-77.027410983594336, 38.963125449653411] } } ] } ================================================ FILE: packages/turf-concave/test/in/pts3.geojson ================================================ { "type": "FeatureCollection", "properties": { "maxEdge": 2, "units": "miles" }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.40898132324217, 37.77505678240509] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.41859436035156, 37.729724141962045] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.42786407470703, 37.738141282210385] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.43198394775389, 37.72836644908416] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.47592926025389, 37.78645343442073] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.41687774658202, 37.76555823017286] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.42820739746094, 37.91115885137137] } } ] } ================================================ FILE: packages/turf-concave/test/in/support-null-geometry.geojson ================================================ { "type": "FeatureCollection", "properties": { "maxEdge": 5.5, "units": "miles" }, "features": [ { "type": "Feature", "properties": {}, "geometry": null }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.43095397949219, 37.74411415606583] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.44331359863283, 37.726194088705576] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.47833251953125, 37.73651223296987] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.4103546142578, 37.72184917678752] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.41790771484375, 37.74682893940135] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.53395080566405, 37.83690319650768] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.51541137695311, 37.83473402375478] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.49069213867188, 37.837445479729666] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.52639770507812, 37.83473402375478] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.62527465820311, 37.89327929625019] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.60467529296875, 37.902490518640995] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.58682250976562, 37.895988598965644] } } ] } ================================================ FILE: packages/turf-concave/test/out/concave-hull.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.7123413085937, -13.06342578889815] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.5777587890625, -13.090179355733726] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.5447998046875, -13.237271908200585] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.48162841796875, -13.365571074958245] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.627197265625, -13.667338259654947] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.923828125, -13.098204859664591] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.9403076171875, -13.288065114120283] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-312.07763671875, -13.368243250897287] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.94580078125, -13.4216805428783] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.37451171875, -13.154376055418515] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.42120361328125, -13.223903512667826] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.363525390625, -13.330830095126228] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.4788818359375, -13.552551566455168] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-312.0172119140625, -13.536530399503015] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.83593749999994, -13.608617139653036] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.66015625, -13.579251111245878] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.4129638671875, -13.467092893859657] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.978759765625, -13.18914225554674] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.8194580078125, -13.114255082724755] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.64642333984375, -13.098204859664591] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.9183349609375, -13.523178603049853] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.4459228515625, -13.095529720741482] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.74255371093744, -13.62463343823614] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-312.01446533203125, -13.266679794815271] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.923828125, -13.573911442504558] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-312.0254516601562, -13.386947652895737] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.55578613281244, -13.552551566455168] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.50360107421875, -13.435038009690732] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.3470458984375, -13.389619591747595] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.87164306640625, -13.141003126359843] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.7864990234375, -13.672675818669807] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.802978515625, -13.042020847922622] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.53656005859375, -13.603278132528756] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-312.0172119140625, -13.536530399503015], [-312.07763671875, -13.368243250897287], [-311.978759765625, -13.18914225554674], [-311.923828125, -13.098204859664591], [-311.802978515625, -13.042020847922622], [-311.4459228515625, -13.095529720741482], [-311.37451171875, -13.154376055418515], [-311.3470458984375, -13.389619591747595], [-311.4788818359375, -13.552551566455168], [-311.53656005859375, -13.603278132528756], [-311.627197265625, -13.667338259654947], [-311.7864990234375, -13.672675818669807], [-312.0172119140625, -13.536530399503015] ] ] } } ] } ================================================ FILE: packages/turf-concave/test/out/fiji.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-179.6484375, -16.90442787825499] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-179.62921142578125, -16.675662043309767] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-179.95330810546875, -16.830832189624815] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-179.85443115234375, -16.675662043309767] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-180.20050048828125, -16.97274101999901] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-180.142822265625, -16.825574258731486] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-180.0823974609375, -17.069913009885465] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-180.4833984375, -17.295576394503744] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-179.8187255859375, -16.893915964126325] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-180.01922607421875, -16.759837823776632] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-179.76791381835938, -16.784820349855963] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-180.01510620117188, -16.914939206301646] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-179.92721557617188, -16.942528651601] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.85443115234375, -16.675662043309767], [-179.62921142578125, -16.675662043309767], [-179.6484375, -16.90442787825499], [-179.92721557617188, -16.942528651601], [-180.0823974609375, -17.069913009885465], [-180.20050048828125, -16.97274101999901], [-180.142822265625, -16.825574258731486], [-180.01922607421875, -16.759837823776632], [-179.85443115234375, -16.675662043309767] ] ] } } ] } ================================================ FILE: packages/turf-concave/test/out/hole.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.7123413085937, -13.06342578889815] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.5777587890625, -13.090179355733726] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.5447998046875, -13.237271908200585] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.48162841796875, -13.365571074958245] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.627197265625, -13.667338259654947] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.923828125, -13.098204859664591] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.9403076171875, -13.288065114120283] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-312.07763671875, -13.368243250897287] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.94580078125, -13.4216805428783] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.37451171875, -13.154376055418515] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.42120361328125, -13.223903512667826] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.363525390625, -13.330830095126228] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.4788818359375, -13.552551566455168] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-312.0172119140625, -13.536530399503015] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.83593749999994, -13.608617139653036] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.66015625, -13.579251111245878] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.4129638671875, -13.467092893859657] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.978759765625, -13.18914225554674] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.8194580078125, -13.114255082724755] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.64642333984375, -13.098204859664591] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.9183349609375, -13.523178603049853] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.4459228515625, -13.095529720741482] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.74255371093744, -13.62463343823614] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-312.01446533203125, -13.266679794815271] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.923828125, -13.573911442504558] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-312.0254516601562, -13.386947652895737] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.55578613281244, -13.552551566455168] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.50360107421875, -13.435038009690732] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.3470458984375, -13.389619591747595] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.87164306640625, -13.141003126359843] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.7864990234375, -13.672675818669807] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.802978515625, -13.042020847922622] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-311.53656005859375, -13.603278132528756] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-312.01446533203125, -13.266679794815271], [-311.978759765625, -13.18914225554674], [-311.923828125, -13.098204859664591], [-311.802978515625, -13.042020847922622], [-311.7123413085937, -13.06342578889815], [-311.5777587890625, -13.090179355733726], [-311.4459228515625, -13.095529720741482], [-311.37451171875, -13.154376055418515], [-311.363525390625, -13.330830095126228], [-311.3470458984375, -13.389619591747595], [-311.4129638671875, -13.467092893859657], [-311.4788818359375, -13.552551566455168], [-311.53656005859375, -13.603278132528756], [-311.627197265625, -13.667338259654947], [-311.7864990234375, -13.672675818669807], [-311.923828125, -13.573911442504558], [-312.0172119140625, -13.536530399503015], [-312.07763671875, -13.368243250897287], [-312.01446533203125, -13.266679794815271] ], [ [-311.94580078125, -13.4216805428783], [-311.9183349609375, -13.523178603049853], [-311.83593749999994, -13.608617139653036], [-311.66015625, -13.579251111245878], [-311.55578613281244, -13.552551566455168], [-311.50360107421875, -13.435038009690732], [-311.48162841796875, -13.365571074958245], [-311.5447998046875, -13.237271908200585], [-311.64642333984375, -13.098204859664591], [-311.8194580078125, -13.114255082724755], [-311.87164306640625, -13.141003126359843], [-311.9403076171875, -13.288065114120283], [-311.94580078125, -13.4216805428783] ] ] } } ] } ================================================ FILE: packages/turf-concave/test/out/issue-333.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4723426, 14.6479128] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5201483, 14.615014] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.51424745714287, 14.612971957142857] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5132231, 14.6165441] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.48973311666667, 14.6495531] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4735275, 14.6465985] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4723723, 14.6485518] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.47247347499999, 14.6477638] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.47238633157896, 14.648176778947366] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.48551095454545, 14.644347027272726] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.48639698333334, 14.607210466666666] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5019386, 14.6511386] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5269321, 14.6573653] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5148751, 14.5823441] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.49990055555557, 14.600796044444444] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.494049, 14.5869676] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.47337224999998, 14.646883625000001] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4724361, 14.6486341] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4850658857143, 14.644084114285715] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.51289270000001, 14.618719666666667] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4735528, 14.6467951] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4723841, 14.6480488] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4732471, 14.6471636] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4722805, 14.6479045] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5201343, 14.6150696] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.49114352000001, 14.66722966] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.472421, 14.648614] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.47381937499999, 14.646442443749999] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5170675, 14.604278] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.55477304537037, 14.62646318703704] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5564985, 14.627035] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5820498, 14.6369336] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.60474186153844, 14.614272646153847] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5156173, 14.6304] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.51274230000001, 14.639448640000001] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.50523385, 14.651190725000001] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.494068, 14.6524481] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4815628, 14.6482253] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4804793, 14.6461901] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.495238, 14.6457041] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4734271, 14.6466975] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4724963, 14.64851] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4723928, 14.6478788] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.47250081000001, 14.647835989999999] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.520111, 14.6150598] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5155081, 14.6274348] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.51233063333332, 14.635753766666667] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.50694795, 14.64236045] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.50368926666665, 14.645259533333332] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.47352167142857, 14.646744814285713] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4724291, 14.6485725] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.47394456363637, 14.646360845454545] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.48284538181817, 14.644143345454546] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5170826, 14.623364] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.55518267142857, 14.628796907142858] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5612823875, 14.6354786625] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5544466, 14.6730593] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5713858, 14.6338483] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.49277926666667, 14.649214383333335] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.47338355, 14.6469332] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4724373, 14.6484558] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4733026, 14.6471671] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4723626, 14.6479208] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5201275, 14.6150038] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5167131875, 14.61330465] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.473430925, 14.646790600000001] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4724253, 14.6485335] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.47381234375001, 14.646451625000001] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4814805, 14.6483101] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.48557200000002, 14.644329030769232] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5171176, 14.6233125] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.54256017980768, 14.62663586923077] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5269091, 14.6573203] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5564916, 14.6270911] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5713228, 14.6338651] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5621048, 14.590847633333333] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.56126696666666, 14.590278533333333] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5705346, 14.5772148] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.47337158333335, 14.646920666666668] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4724626, 14.6485841] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4723723, 14.6478811] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4722628, 14.6479208] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.47250489090911, 14.647854472727271] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.520098, 14.615] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.50365512500001, 14.6452732] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.49116085, 14.667282275] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.48990055, 14.65017205] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.47347362, 14.646725746666664] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4724285, 14.6485766] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.47248388571428, 14.647815600000001] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5169941, 14.604693] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.53797681111112, 14.629561677777778] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.49985591428572, 14.600705557142858] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4940656, 14.586968] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4878766, 14.6688766] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4875626, 14.6704823] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.48763687142856, 14.668962442857142] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4895363, 14.6683016] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.47322072, 14.646995100000002] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4722951, 14.6482883] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.47311286666667, 14.647139766666667] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4724025, 14.6485518] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4723355, 14.6478488] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4732443, 14.6471278] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4723105, 14.6478846] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.47244180625, 14.64800523125] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5200513, 14.6150821] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5039411, 14.644767] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.50140640000001, 14.65061405] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.47698511818182, 14.654281172727275] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.47332180000001, 14.6469442] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4723918, 14.6485571] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.47337318571428, 14.646881257142857] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5015093, 14.65032405] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.54214180000001, 14.624207466666666] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.5478511, 14.6249898] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-90.4734413, 14.6466325] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-90.53797681111112, 14.629561677777778], [-90.51274230000001, 14.639448640000001], [-90.5269091, 14.6573203], [-90.5269321, 14.6573653], [-90.50523385, 14.651190725000001], [-90.49116085, 14.667282275], [-90.4875626, 14.6704823], [-90.4723723, 14.6485518], [-90.4722951, 14.6482883], [-90.4722628, 14.6479208], [-90.4734413, 14.6466325], [-90.47394456363637, 14.646360845454545], [-90.48284538181817, 14.644143345454546], [-90.4850658857143, 14.644084114285715], [-90.495238, 14.6457041], [-90.51233063333332, 14.635753766666667], [-90.51289270000001, 14.618719666666667], [-90.5132231, 14.6165441], [-90.49990055555557, 14.600796044444444], [-90.48639698333334, 14.607210466666666], [-90.494049, 14.5869676], [-90.5148751, 14.5823441], [-90.5170675, 14.604278], [-90.5201483, 14.615014], [-90.54214180000001, 14.624207466666666], [-90.5478511, 14.6249898], [-90.55477304537037, 14.62646318703704], [-90.5564985, 14.627035], [-90.5713858, 14.6338483], [-90.5820498, 14.6369336], [-90.5713228, 14.6338651], [-90.5612823875, 14.6354786625], [-90.53797681111112, 14.629561677777778] ] ], [ [ [-90.5705346, 14.5772148], [-90.5621048, 14.590847633333333], [-90.56126696666666, 14.590278533333333], [-90.5705346, 14.5772148] ] ] ] } } ] } ================================================ FILE: packages/turf-concave/test/out/pts1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.40898132324217, 37.77505678240509] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.43095397949219, 37.74411415606583] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.44331359863283, 37.726194088705576] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.47833251953125, 37.73651223296987] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.4103546142578, 37.72184917678752] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.41790771484375, 37.74682893940135] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.53395080566405, 37.83690319650768] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.51541137695311, 37.83473402375478] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.49069213867188, 37.837445479729666] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.52639770507812, 37.83473402375478] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.62527465820311, 37.89327929625019] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.60467529296875, 37.902490518640995] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.58682250976562, 37.895988598965644] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-122.62527465820311, 37.89327929625019], [-122.60467529296875, 37.902490518640995], [-122.58682250976562, 37.895988598965644], [-122.62527465820311, 37.89327929625019] ] ], [ [ [-122.52639770507812, 37.83473402375478], [-122.53395080566405, 37.83690319650768], [-122.51541137695311, 37.83473402375478], [-122.52639770507812, 37.83473402375478] ] ], [ [ [-122.40898132324217, 37.77505678240509], [-122.4103546142578, 37.72184917678752], [-122.44331359863283, 37.726194088705576], [-122.47833251953125, 37.73651223296987], [-122.43095397949219, 37.74411415606583], [-122.40898132324217, 37.77505678240509] ] ] ] } } ] } ================================================ FILE: packages/turf-concave/test/out/pts2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "OBJECTID_1": 51, "OBJECTID_2": 25, "OBJECTID": 49, "PRECINCT_N": 7, "FACILITY_D": "Recreation Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_49", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Hardy Recreation Center", "ADDRESS": "4500 Q STREET NW", "ADDRESS_ID": 284929, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.08498118309296, 38.909915833213795] } }, { "type": "Feature", "properties": { "OBJECTID_1": 52, "OBJECTID_2": 26, "OBJECTID": 50, "PRECINCT_N": 5, "FACILITY_D": "Large Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_50", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Georgetown Community Library", "ADDRESS": "3260 R STREET NW", "ADDRESS_ID": 295142, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.06600730584208, 38.913434229544386] } }, { "type": "Feature", "properties": { "OBJECTID_1": 53, "OBJECTID_2": 27, "OBJECTID": 51, "PRECINCT_N": 76, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_51", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Bethesda Baptist Church", "ADDRESS": "1808 CAPITOL AVENUE NE", "ADDRESS_ID": 155925, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.98614224512842, 38.911020521048734] } }, { "type": "Feature", "properties": { "OBJECTID_1": 54, "OBJECTID_2": 28, "OBJECTID": 52, "PRECINCT_N": 15, "FACILITY_D": "Community Room (Lower Level)", "ACCESSIBLE": "Yes - Use side entrance on P Street", "GIS_ID": "plp_52", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Foundry United Methodist Church", "ADDRESS": "1500 16TH STREET NW", "ADDRESS_ID": 243309, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.03687949072273, 38.91003361331332] } }, { "type": "Feature", "properties": { "OBJECTID_1": 55, "OBJECTID_2": 29, "OBJECTID": 53, "PRECINCT_N": 14, "FACILITY_D": "Guild Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_53", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "St. Thomas' Episcopal Parish", "ADDRESS": "1772 CHURCH STREET NW", "ADDRESS_ID": 225918, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.04104117667185, 38.910212212295264] } }, { "type": "Feature", "properties": { "OBJECTID_1": 56, "OBJECTID_2": 30, "OBJECTID": 54, "PRECINCT_N": 16, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes - Accessible entrance at the rear of the church. Use entrance on R St. side of church.", "GIS_ID": "plp_54", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "15th Street Presbyterian Church", "ADDRESS": "1701 15TH STREET NW", "ADDRESS_ID": 240136, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.03417962817295, 38.91281125525813] } }, { "type": "Feature", "properties": { "OBJECTID_1": 57, "OBJECTID_2": 31, "OBJECTID": 55, "PRECINCT_N": 18, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_55", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Kennedy Recreation Center", "ADDRESS": "1401 7TH STREET NW", "ADDRESS_ID": 279127, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.02153645624776, 38.90898977846948] } }, { "type": "Feature", "properties": { "OBJECTID_1": 58, "OBJECTID_2": 32, "OBJECTID": 56, "PRECINCT_N": 17, "FACILITY_D": "Exhibit Rooms", "ACCESSIBLE": "Yes", "GIS_ID": "plp_56", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "The Charles Sumner School Museum and Archives", "ADDRESS": "1201 17th STREET NW\r\n1201 17TH STREET NW", "ADDRESS_ID": 301200, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.0382229055218, 38.90597733468145] } }, { "type": "Feature", "properties": { "OBJECTID_1": 59, "OBJECTID_2": 33, "OBJECTID": 57, "PRECINCT_N": 4, "FACILITY_D": "Large Meeting Room (2nd Floor)", "ACCESSIBLE": "Yes", "GIS_ID": "plp_57", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "West End Public Library", "ADDRESS": "1101 24TH STREET NW", "ADDRESS_ID": 218248, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.05109790160472, 38.904019151364736] } }, { "type": "Feature", "properties": { "OBJECTID_1": 60, "OBJECTID_2": 34, "OBJECTID": 58, "PRECINCT_N": 77, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_58", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Delta Towers Apartments", "ADDRESS": "1400 FLORIDA AVENUE NE", "ADDRESS_ID": 65280, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.98433191638077, 38.90055736497202] } }, { "type": "Feature", "properties": { "OBJECTID_1": 61, "OBJECTID_2": 35, "OBJECTID": 59, "PRECINCT_N": 129, "FACILITY_D": "Main Lobby", "ACCESSIBLE": "Yes", "GIS_ID": "plp_59", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Martin Luther King Library", "ADDRESS": "901 G STREET NW", "ADDRESS_ID": 239815, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.02476626008324, 38.89869133033745] } }, { "type": "Feature", "properties": { "OBJECTID_1": 62, "OBJECTID_2": 36, "OBJECTID": 60, "PRECINCT_N": 82, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_60", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Sherwood Recreation Center", "ADDRESS": "640 10TH STREET NE", "ADDRESS_ID": 301075, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.99301681854216, 38.89854528906768] } }, { "type": "Feature", "properties": { "OBJECTID_1": 63, "OBJECTID_2": 37, "OBJECTID": 61, "PRECINCT_N": 3, "FACILITY_D": "Dining Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_61", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "St. Mary's Court", "ADDRESS": "725 24TH STREET NW", "ADDRESS_ID": 242350, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.0511477096272, 38.898862835793516] } }, { "type": "Feature", "properties": { "OBJECTID_1": 64, "OBJECTID_2": 38, "OBJECTID": 62, "PRECINCT_N": 1, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_62", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Walker-Jones EC", "ADDRESS": "1125 NEW JERSEY AVENUE NW", "ADDRESS_ID": 307735, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.01391569234569, 38.90419164723351] } }, { "type": "Feature", "properties": { "OBJECTID_1": 65, "OBJECTID_2": 39, "OBJECTID": 64, "PRECINCT_N": 10, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_64", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Horace Mann Community Center", "ADDRESS": "4430 NEWARK STREET NW", "ADDRESS_ID": 294597, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.08782618825647, 38.93429197169427] } }, { "type": "Feature", "properties": { "OBJECTID_1": 66, "OBJECTID_2": 40, "OBJECTID": 65, "PRECINCT_N": 19, "FACILITY_D": "Gym/Armory", "ACCESSIBLE": "Yes", "GIS_ID": "plp_65", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Dunbar Senior High School", "ADDRESS": "1301 NEW JERSEY AVENUE NW", "ADDRESS_ID": 279021, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.01469385531595, 38.90852321621873] } }, { "type": "Feature", "properties": { "OBJECTID_1": 67, "OBJECTID_2": 41, "OBJECTID": 66, "PRECINCT_N": 20, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_66", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Washington Metropolitan High School", "ADDRESS": "300 BRYANT STREET NW", "ADDRESS_ID": 294475, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.01555700896307, 38.92044129373322] } }, { "type": "Feature", "properties": { "OBJECTID_1": 68, "OBJECTID_2": 42, "OBJECTID": 67, "PRECINCT_N": 21, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_67", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Vermont Avenue Baptist Church", "ADDRESS": "1630 VERMONT AVENUE NW", "ADDRESS_ID": 243277, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.02878122770284, 38.911825717245286] } }, { "type": "Feature", "properties": { "OBJECTID_1": 69, "OBJECTID_2": 43, "OBJECTID": 68, "PRECINCT_N": 22, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Accessible entrance located on V Street.", "GIS_ID": "plp_68", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Garnet-Patterson Middle School", "ADDRESS": "2001 10TH STREET NW", "ADDRESS_ID": 294533, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.02574878211337, 38.91754477448618] } }, { "type": "Feature", "properties": { "OBJECTID_1": 70, "OBJECTID_2": 44, "OBJECTID": 69, "PRECINCT_N": 24, "FACILITY_D": "Living Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_69", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Marie Reed Learning Center", "ADDRESS": "2200 CHAMPLAIN STREET NW", "ADDRESS_ID": 235577, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.04052994742716, 38.91916730666654] } }, { "type": "Feature", "properties": { "OBJECTID_1": 71, "OBJECTID_2": 45, "OBJECTID": 71, "PRECINCT_N": 27, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_71", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Eaton Elementary School", "ADDRESS": "3301 LOWELL STREET NW", "ADDRESS_ID": 294562, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.06582113268591, 38.93272673882682] } }, { "type": "Feature", "properties": { "OBJECTID_1": 72, "OBJECTID_2": 46, "OBJECTID": 72, "PRECINCT_N": 29, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_72", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "2nd District Police Station", "ADDRESS": "3320 IDAHO AVENUE NW", "ADDRESS_ID": 222229, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.07483805765223, 38.93484583178459] } }, { "type": "Feature", "properties": { "OBJECTID_1": 73, "OBJECTID_2": 47, "OBJECTID": 73, "PRECINCT_N": 30, "FACILITY_D": "Multi-Purpose Room (on Albemarle St.)", "ACCESSIBLE": "Yes - Accessible entrance at side of school, nearest to Wisconsin Ave.", "GIS_ID": "plp_73", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Janney Elementary School", "ADDRESS": "4130 ALBEMARLE STREET NW", "ADDRESS_ID": 285713, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.08099481973196, 38.94755008706593] } }, { "type": "Feature", "properties": { "OBJECTID_1": 74, "OBJECTID_2": 48, "OBJECTID": 74, "PRECINCT_N": 33, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Use rear entrance on Ellicott St.", "GIS_ID": "plp_74", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Ben Murch Elementary School", "ADDRESS": "4810 36TH STREET NW", "ADDRESS_ID": 294602, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.07007920338755, 38.95293318959661] } }, { "type": "Feature", "properties": { "OBJECTID_1": 75, "OBJECTID_2": 49, "OBJECTID": 75, "PRECINCT_N": 35, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_75", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "H.D. Cooke Elementary School", "ADDRESS": "2525 17TH STREET NW", "ADDRESS_ID": 235863, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.0388138280019, 38.92393165421797] } }, { "type": "Feature", "properties": { "OBJECTID_1": 76, "OBJECTID_2": 50, "OBJECTID": 76, "PRECINCT_N": 37, "FACILITY_D": "Community Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_76", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Banneker Community Recreation Center", "ADDRESS": "2500 GEORGIA AVENUE NW", "ADDRESS_ID": 232292, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.02257980138592, 38.92269760094504] } }, { "type": "Feature", "properties": { "OBJECTID_1": 77, "OBJECTID_2": 51, "OBJECTID": 77, "PRECINCT_N": 38, "FACILITY_D": "Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_77", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Cesar Chavez Prep Charter Middle School", "ADDRESS": "770 KENYON STREET NW", "ADDRESS_ID": 285409, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.0258873560347, 38.929619476288885] } }, { "type": "Feature", "properties": { "OBJECTID_1": 78, "OBJECTID_2": 52, "OBJECTID": 78, "PRECINCT_N": 40, "FACILITY_D": "Assembly Hall", "ACCESSIBLE": "Yes - Use entrance on Newton Street.", "GIS_ID": "plp_78", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Bancroft Elementary School", "ADDRESS": "1755 NEWTON STREET NW", "ADDRESS_ID": 294528, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.04055344980303, 38.93431802351106] } }, { "type": "Feature", "properties": { "OBJECTID_1": 79, "OBJECTID_2": 53, "OBJECTID": 79, "PRECINCT_N": 46, "FACILITY_D": "Classroom", "ACCESSIBLE": "Yes", "GIS_ID": "plp_79", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "E.L. Haynes Public Charter School @ Clark", "ADDRESS": "4501 KANSAS AVENUE NW", "ADDRESS_ID": 284930, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.02241636991477, 38.94560156110601] } }, { "type": "Feature", "properties": { "OBJECTID_1": 80, "OBJECTID_2": 54, "OBJECTID": 80, "PRECINCT_N": 47, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Accessible ramped entrance off of alley.", "GIS_ID": "plp_80", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Powell Elementary School", "ADDRESS": "1350 UPSHUR STREET NW", "ADDRESS_ID": 255302, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.03122741575149, 38.941534009869706] } }, { "type": "Feature", "properties": { "OBJECTID_1": 81, "OBJECTID_2": 55, "OBJECTID": 81, "PRECINCT_N": 48, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Use south entrance on 13th St.", "GIS_ID": "plp_81", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Sharpe Health School", "ADDRESS": "4300 13TH STREET NW", "ADDRESS_ID": 255254, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.03046833667379, 38.94347432515649] } }, { "type": "Feature", "properties": { "OBJECTID_1": 82, "OBJECTID_2": 56, "OBJECTID": 82, "PRECINCT_N": 49, "FACILITY_D": "Science Room", "ACCESSIBLE": "Yes - Accessible entrance located on Rock Creek Church Road.", "GIS_ID": "plp_82", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Raymond Elementary School", "ADDRESS": "915 SPRING ROAD NW", "ADDRESS_ID": 226682, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.02643265425681, 38.935810871763174] } }, { "type": "Feature", "properties": { "OBJECTID_1": 83, "OBJECTID_2": 57, "OBJECTID": 83, "PRECINCT_N": 51, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes - Use parking lot entrance on Northampton St.", "GIS_ID": "plp_83", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Lafayette Elementary School", "ADDRESS": "5701 BROAD BRANCH ROAD NW", "ADDRESS_ID": 294611, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.06803711636698, 38.96662722064828] } }, { "type": "Feature", "properties": { "OBJECTID_1": 84, "OBJECTID_2": 58, "OBJECTID": 84, "PRECINCT_N": 53, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_84", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Brightwood Elementary School", "ADDRESS": "1300 NICHOLSON STREET NW", "ADDRESS_ID": 294515, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.03068885198864, 38.96053539285846] } }, { "type": "Feature", "properties": { "OBJECTID_1": 85, "OBJECTID_2": 59, "OBJECTID": 85, "PRECINCT_N": 54, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes - Use entrance located at 14th & Farragut Streets.", "GIS_ID": "plp_85", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "West Elementary School", "ADDRESS": "1338 FARRAGUT STREET NW", "ADDRESS_ID": 294517, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.03225304983067, 38.951367080952416] } }, { "type": "Feature", "properties": { "OBJECTID_1": 86, "OBJECTID_2": 60, "OBJECTID": 86, "PRECINCT_N": 55, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_86", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Barnard Elementary School", "ADDRESS": "430 DECATUR STREET NW", "ADDRESS_ID": 248305, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.0177770800083, 38.948230614415095] } }, { "type": "Feature", "properties": { "OBJECTID_1": 87, "OBJECTID_2": 61, "OBJECTID": 87, "PRECINCT_N": 56, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_87", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Truesdell Elementary School", "ADDRESS": "800 INGRAHAM STREET NW", "ADDRESS_ID": 294497, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.02507157013518, 38.95396835809549] } }, { "type": "Feature", "properties": { "OBJECTID_1": 88, "OBJECTID_2": 62, "OBJECTID": 88, "PRECINCT_N": 57, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_88", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Hattie Holmes Wellness Center", "ADDRESS": "324 KENNEDY STREET NW", "ADDRESS_ID": 307575, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.01711234814142, 38.956388773368296] } }, { "type": "Feature", "properties": { "OBJECTID_1": 89, "OBJECTID_2": 63, "OBJECTID": 90, "PRECINCT_N": 59, "FACILITY_D": "Armory", "ACCESSIBLE": "Yes", "GIS_ID": "plp_90", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Coolidge Senior High School", "ADDRESS": "6315 5TH STREET NW", "ADDRESS_ID": 294615, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.01957835173927, 38.967284239673525] } }, { "type": "Feature", "properties": { "OBJECTID_1": 90, "OBJECTID_2": 64, "OBJECTID": 91, "PRECINCT_N": 62, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Use ramped entrance on 14th Street.", "GIS_ID": "plp_91", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Shepherd Elementary School", "ADDRESS": "7800 14TH STREET NW", "ADDRESS_ID": 256319, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.03399523386544, 38.98460295003216] } }, { "type": "Feature", "properties": { "OBJECTID_1": 91, "OBJECTID_2": 65, "OBJECTID": 92, "PRECINCT_N": 63, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_92", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Takoma Community Center", "ADDRESS": "300 VAN BUREN STREET NW", "ADDRESS_ID": 296168, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.01805167618295, 38.96888669131412] } }, { "type": "Feature", "properties": { "OBJECTID_1": 92, "OBJECTID_2": 66, "OBJECTID": 93, "PRECINCT_N": 64, "FACILITY_D": "Recreation Area", "ACCESSIBLE": "Yes - Use rear entrance on 2nd St.", "GIS_ID": "plp_93", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Rabaut - Administrative Building", "ADDRESS": "100 PEABODY STREET NW", "ADDRESS_ID": 277545, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.01286744832365, 38.96216452199718] } }, { "type": "Feature", "properties": { "OBJECTID_1": 93, "OBJECTID_2": 67, "OBJECTID": 94, "PRECINCT_N": 65, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_94", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "LaSalle Elementary School", "ADDRESS": "501 RIGGS ROAD NE", "ADDRESS_ID": 294489, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.99988253848109, 38.95997180998364] } }, { "type": "Feature", "properties": { "OBJECTID_1": 94, "OBJECTID_2": 68, "OBJECTID": 95, "PRECINCT_N": 66, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Accessible entrance next to parking lot on Hamilton Street.", "GIS_ID": "plp_95", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "UDC Community College @ Backus", "ADDRESS": "5171 SOUTH DAKOTA AVENUE NE", "ADDRESS_ID": 294607, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.99726738315395, 38.95334052572905] } }, { "type": "Feature", "properties": { "OBJECTID_1": 95, "OBJECTID_2": 69, "OBJECTID": 96, "PRECINCT_N": 67, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Accessible entrance next to the parking lot on 14th Street", "GIS_ID": "plp_96", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Bunker Hill Elementary School", "ADDRESS": "1401 MICHIGAN AVENUE NE", "ADDRESS_ID": 286131, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.98499562999821, 38.94201213500814] } }, { "type": "Feature", "properties": { "OBJECTID_1": 96, "OBJECTID_2": 70, "OBJECTID": 97, "PRECINCT_N": 68, "FACILITY_D": "Reception Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_97", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "St. Francis Hall", "ADDRESS": "1340 QUINCY STREET NE", "ADDRESS_ID": 66591, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.98652958387164, 38.9375726751204] } }, { "type": "Feature", "properties": { "OBJECTID_1": 97, "OBJECTID_2": 71, "OBJECTID": 98, "PRECINCT_N": 69, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_98", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Hyde Public Charter School @ Taft", "ADDRESS": "1800 PERRY STREET NE", "ADDRESS_ID": 294529, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.9785955149537, 38.93679614738434] } }, { "type": "Feature", "properties": { "OBJECTID_1": 98, "OBJECTID_2": 72, "OBJECTID": 99, "PRECINCT_N": 70, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Use entrance on Monroe Street.", "GIS_ID": "plp_99", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Burroughs Elementary School", "ADDRESS": "1820 MONROE STREET NE", "ADDRESS_ID": 294530, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.97845637039887, 38.933502326896445] } }, { "type": "Feature", "properties": { "OBJECTID_1": 99, "OBJECTID_2": 73, "OBJECTID": 100, "PRECINCT_N": 73, "FACILITY_D": "Library (Lower Level)", "ACCESSIBLE": "Yes", "GIS_ID": "plp_100", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "M.M. Bethune Day Academy @ Slowe", "ADDRESS": "1404 JACKSON STREET NE", "ADDRESS_ID": 294522, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.98686462272855, 38.929605590082105] } }, { "type": "Feature", "properties": { "OBJECTID_1": 100, "OBJECTID_2": 74, "OBJECTID": 101, "PRECINCT_N": 74, "FACILITY_D": "Multipurpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_101", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Shaed Elementary School", "ADDRESS": "301 DOUGLAS STREET NE", "ADDRESS_ID": 294477, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.00253831800221, 38.923654687421774] } }, { "type": "Feature", "properties": { "OBJECTID_1": 101, "OBJECTID_2": 75, "OBJECTID": 102, "PRECINCT_N": 78, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_102", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Trinidad Recreation Center", "ADDRESS": "1310 CHILDRESS STREET NE", "ADDRESS_ID": 68509, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.98273436876306, 38.906442359837776] } }, { "type": "Feature", "properties": { "OBJECTID_1": 102, "OBJECTID_2": 76, "OBJECTID": 103, "PRECINCT_N": 81, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_103", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Miner Elementary School", "ADDRESS": "601 15TH STREET NE", "ADDRESS_ID": 289548, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.98290431308783, 38.89737568218247] } }, { "type": "Feature", "properties": { "OBJECTID_1": 103, "OBJECTID_2": 77, "OBJECTID": 104, "PRECINCT_N": 79, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_104", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Browne Junior High School", "ADDRESS": "850 26TH STREET NE", "ADDRESS_ID": 294501, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.97066705247403, 38.90259854900822] } }, { "type": "Feature", "properties": { "OBJECTID_1": 104, "OBJECTID_2": 78, "OBJECTID": 105, "PRECINCT_N": 83, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Use entrance located on 7th Street.", "GIS_ID": "plp_105", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "J.O. Wilson Elementary School", "ADDRESS": "660 K STREET NE", "ADDRESS_ID": 288841, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.99658902748644, 38.90275766582991] } }, { "type": "Feature", "properties": { "OBJECTID_1": 105, "OBJECTID_2": 79, "OBJECTID": 106, "PRECINCT_N": 84, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_106", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Stuart-Hobson Middle School", "ADDRESS": "410 E STREET NE", "ADDRESS_ID": 294483, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.00000438624967, 38.89629737080879] } }, { "type": "Feature", "properties": { "OBJECTID_1": 106, "OBJECTID_2": 80, "OBJECTID": 107, "PRECINCT_N": 85, "FACILITY_D": "Auditorium (A-Level)", "ACCESSIBLE": "Yes", "GIS_ID": "plp_107", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "The Specialty Hospital of Washington", "ADDRESS": "700 CONSTITUTION AVENUE NE", "ADDRESS_ID": 295162, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.99535659211247, 38.892321795813096] } }, { "type": "Feature", "properties": { "OBJECTID_1": 107, "OBJECTID_2": 81, "OBJECTID": 108, "PRECINCT_N": 86, "FACILITY_D": "Recreation Room (lower level)", "ACCESSIBLE": "Yes - Accessible - side entrance, next to the parking lot.", "GIS_ID": "plp_108", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Eliot Junior High School", "ADDRESS": "1830 CONSTITUTION AVENUE NE", "ADDRESS_ID": 286499, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.97897791343726, 38.8924311597663] } }, { "type": "Feature", "properties": { "OBJECTID_1": 108, "OBJECTID_2": 82, "OBJECTID": 109, "PRECINCT_N": 87, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes = Use entrance at the rear of the school, next to the parking lot.", "GIS_ID": "plp_109", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Payne Elementary School", "ADDRESS": "305 15TH STREET SE", "ADDRESS_ID": 294478, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.98419490800174, 38.8851323144882] } }, { "type": "Feature", "properties": { "OBJECTID_1": 109, "OBJECTID_2": 83, "OBJECTID": 110, "PRECINCT_N": 89, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_110", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "William H. Rumsey Aquatic Center", "ADDRESS": "635 NORTH CAROLINA AVENUE SE", "ADDRESS_ID": 295159, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.99702870593877, 38.88658504665415] } }, { "type": "Feature", "properties": { "OBJECTID_1": 110, "OBJECTID_2": 84, "OBJECTID": 111, "PRECINCT_N": 91, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_111", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Watkins Elementary School", "ADDRESS": "420 12TH STREET SE", "ADDRESS_ID": 294486, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.98999676354816, 38.883466674788586] } }, { "type": "Feature", "properties": { "OBJECTID_1": 111, "OBJECTID_2": 85, "OBJECTID": 113, "PRECINCT_N": 92, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_113", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Kenilworth Elementary School", "ADDRESS": "1300 44TH STREET NE", "ADDRESS_ID": 294516, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.9404849391363, 38.90822873259865] } }, { "type": "Feature", "properties": { "OBJECTID_1": 112, "OBJECTID_2": 86, "OBJECTID": 114, "PRECINCT_N": 93, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Accessible entrance at the rear of the school.", "GIS_ID": "plp_114", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Houston Elementary School", "ADDRESS": "1100 50TH PLACE NE", "ADDRESS_ID": 156316, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.9299476407989, 38.90541498719898] } }, { "type": "Feature", "properties": { "OBJECTID_1": 113, "OBJECTID_2": 87, "OBJECTID": 115, "PRECINCT_N": 94, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_115", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Merritt Education Center", "ADDRESS": "5002 HAYES STREET NE", "ADDRESS_ID": 294606, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.93013118958962, 38.90023006725584] } }, { "type": "Feature", "properties": { "OBJECTID_1": 114, "OBJECTID_2": 88, "OBJECTID": 116, "PRECINCT_N": 95, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes -Use entrance located at 57th & Eads Streets.", "GIS_ID": "plp_116", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Drew Elementary School", "ADDRESS": "5500 EADS STREET NE", "ADDRESS_ID": 294609, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.92270804396746, 38.89619288755561] } }, { "type": "Feature", "properties": { "OBJECTID_1": 115, "OBJECTID_2": 89, "OBJECTID": 117, "PRECINCT_N": 100, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_117", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Thomas Elementary School", "ADDRESS": "650 ANACOSTIA AVENUE NE", "ADDRESS_ID": 294493, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.95211090532199, 38.901278637588895] } }, { "type": "Feature", "properties": { "OBJECTID_1": 116, "OBJECTID_2": 90, "OBJECTID": 118, "PRECINCT_N": 98, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Use rear entrance of the school.", "GIS_ID": "plp_118", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Smothers Elementary School", "ADDRESS": "4400 BROOKS STREET NE", "ADDRESS_ID": 294596, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.93846863878429, 38.8935537018287] } }, { "type": "Feature", "properties": { "OBJECTID_1": 117, "OBJECTID_2": 91, "OBJECTID": 120, "PRECINCT_N": 103, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Use ground level entrance.", "GIS_ID": "plp_120", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Plummer Elementary School", "ADDRESS": "4601 TEXAS AVENUE SE", "ADDRESS_ID": 19536, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.93993466984129, 38.8872398636938] } }, { "type": "Feature", "properties": { "OBJECTID_1": 118, "OBJECTID_2": 92, "OBJECTID": 121, "PRECINCT_N": 104, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes- Use ground level entrance.", "GIS_ID": "plp_121", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Nalle Elementary School", "ADDRESS": "219 50TH STREET SE", "ADDRESS_ID": 294474, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.93079649956998, 38.88595408522856] } }, { "type": "Feature", "properties": { "OBJECTID_1": 119, "OBJECTID_2": 93, "OBJECTID": 122, "PRECINCT_N": 105, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Use entrance located on D Street.", "GIS_ID": "plp_122", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "CW Harris Elementary School", "ADDRESS": "301 53RD STREET SE", "ADDRESS_ID": 289801, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.92611549373204, 38.88359849788337] } }, { "type": "Feature", "properties": { "OBJECTID_1": 120, "OBJECTID_2": 94, "OBJECTID": 123, "PRECINCT_N": 106, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Accessible rear entrance, next to the parking lot.", "GIS_ID": "plp_123", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Davis Elementary School", "ADDRESS": "4430 H STREET SE", "ADDRESS_ID": 294598, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.93761630232859, 38.87906795106383] } }, { "type": "Feature", "properties": { "OBJECTID_1": 121, "OBJECTID_2": 95, "OBJECTID": 124, "PRECINCT_N": 107, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_124", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Sousa Middle School", "ADDRESS": "3650 ELY PLACE SE", "ADDRESS_ID": 294584, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.95316174771769, 38.883908000174614] } }, { "type": "Feature", "properties": { "OBJECTID_1": 122, "OBJECTID_2": 96, "OBJECTID": 125, "PRECINCT_N": 142, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_125", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Jefferson Junior High School", "ADDRESS": "801 7TH STREET SW", "ADDRESS_ID": 276812, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.02291065460415, 38.87987059942476] } }, { "type": "Feature", "properties": { "OBJECTID_1": 123, "OBJECTID_2": 97, "OBJECTID": 126, "PRECINCT_N": 140, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_126", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Anacostia Senior High School", "ADDRESS": "1601 16TH STREET SE", "ADDRESS_ID": 155922, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.98307724829849, 38.870083725754895] } }, { "type": "Feature", "properties": { "OBJECTID_1": 124, "OBJECTID_2": 98, "OBJECTID": 127, "PRECINCT_N": 139, "FACILITY_D": "Community Service Area", "ACCESSIBLE": "Yes", "GIS_ID": "plp_127", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Thurgood Marshall Elementary", "ADDRESS": "3100 FORT LINCOLN DRIVE NE", "ADDRESS_ID": 294553, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.95763369669753, 38.92730594377001] } }, { "type": "Feature", "properties": { "OBJECTID_1": 1, "OBJECTID_2": 101, "OBJECTID": 130, "PRECINCT_N": 131, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_130", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Van Ness Elementary School", "ADDRESS": "1150 5TH STREET SE", "ADDRESS_ID": 294508, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.99924400222596, 38.87679611768769] } }, { "type": "Feature", "properties": { "OBJECTID_1": 2, "OBJECTID_2": 102, "OBJECTID": 131, "PRECINCT_N": 125, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_131", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Hendley Elementary School", "ADDRESS": "425 CHESAPEAKE STREET SE", "ADDRESS_ID": 24445, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.99918484024232, 38.82898558049571] } }, { "type": "Feature", "properties": { "OBJECTID_1": 3, "OBJECTID_2": 103, "OBJECTID": 132, "PRECINCT_N": 126, "FACILITY_D": "Library", "ACCESSIBLE": "Yes", "GIS_ID": "plp_132", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "W.B. Patterson Elementary School", "ADDRESS": "4399 SOUTH CAPITOL TERRACE SW", "ADDRESS_ID": 301073, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.00847560019479, 38.8269811922012] } }, { "type": "Feature", "properties": { "OBJECTID_1": 4, "OBJECTID_2": 104, "OBJECTID": 133, "PRECINCT_N": 123, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_133", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Martin Luther King Elementary School", "ADDRESS": "600 ALABAMA AVENUE SE", "ADDRESS_ID": 294492, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.99758318790965, 38.84338656586389] } }, { "type": "Feature", "properties": { "OBJECTID_1": 5, "OBJECTID_2": 105, "OBJECTID": 135, "PRECINCT_N": 121, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_135", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "National Collegiate Prep @ Draper", "ADDRESS": "908 WAHLER PLACE SE", "ADDRESS_ID": 294502, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.99226881799031, 38.834327886510565] } }, { "type": "Feature", "properties": { "OBJECTID_1": 6, "OBJECTID_2": 106, "OBJECTID": 136, "PRECINCT_N": 120, "FACILITY_D": "Meeting Room", "ACCESSIBLE": "Yes - Use side Entrance", "GIS_ID": "plp_136", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Malcolm X Elementary School", "ADDRESS": "1351 ALABAMA AVENUE SE", "ADDRESS_ID": 289201, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.98621285449033, 38.84497362309234] } }, { "type": "Feature", "properties": { "OBJECTID_1": 7, "OBJECTID_2": 107, "OBJECTID": 137, "PRECINCT_N": 118, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_137", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Garnet C. Wilkinson Elementary School", "ADDRESS": "2330 POMEROY ROAD SE", "ADDRESS_ID": 294542, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.98555042215126, 38.85684438946179] } }, { "type": "Feature", "properties": { "OBJECTID_1": 8, "OBJECTID_2": 108, "OBJECTID": 138, "PRECINCT_N": 119, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_138", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Excel Academy PCS @ Birney", "ADDRESS": "2501 MARTIN LUTHER KING JR AVENUE SE", "ADDRESS_ID": 278172, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.99535456253949, 38.85976175834964] } }, { "type": "Feature", "properties": { "OBJECTID_1": 9, "OBJECTID_2": 109, "OBJECTID": 139, "PRECINCT_N": 117, "FACILITY_D": "Main Lobby", "ACCESSIBLE": "Yes - Use ramped entrance on Stanton Road.", "GIS_ID": "plp_139", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Douglas Community Recreation Center", "ADDRESS": "1898 STANTON TERRACE SE", "ADDRESS_ID": 286513, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.97776154881154, 38.85263622936684] } }, { "type": "Feature", "properties": { "OBJECTID_1": 10, "OBJECTID_2": 110, "OBJECTID": 140, "PRECINCT_N": 114, "FACILITY_D": "Church Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_140", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Union Temple Baptist Church", "ADDRESS": "1225 W STREET SE", "ADDRESS_ID": 70732, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.98893973743299, 38.864499675202886] } }, { "type": "Feature", "properties": { "OBJECTID_1": 11, "OBJECTID_2": 111, "OBJECTID": 141, "PRECINCT_N": 113, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_141", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Senior Wellness Center", "ADDRESS": "3001 ALABAMA AVENUE SE", "ADDRESS_ID": 289473, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.96411611205536, 38.86050295448647] } }, { "type": "Feature", "properties": { "OBJECTID_1": 12, "OBJECTID_2": 112, "OBJECTID": 142, "PRECINCT_N": 112, "FACILITY_D": "Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_142", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Anacostia Public Library", "ADDRESS": "1800 GOOD HOPE ROAD SE", "ADDRESS_ID": 53560, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.97848542018258, 38.86589640205795] } }, { "type": "Feature", "properties": { "OBJECTID_1": 13, "OBJECTID_2": 113, "OBJECTID": 2, "PRECINCT_N": 99, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_2", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Smothers Elementary School", "ADDRESS": "4400 BROOKS STREET NE", "ADDRESS_ID": 294596, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.93846863878429, 38.8935537018287] } }, { "type": "Feature", "properties": { "OBJECTID_1": 14, "OBJECTID_2": 114, "OBJECTID": 3, "PRECINCT_N": 97, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_3", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Kelly Miller Middle School", "ADDRESS": "301 49TH STREET NE", "ADDRESS_ID": 294476, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.9324561269054, 38.89331497492733] } }, { "type": "Feature", "properties": { "OBJECTID_1": 15, "OBJECTID_2": 115, "OBJECTID": 4, "PRECINCT_N": 130, "FACILITY_D": "Multi-Purpose Room (lower level)", "ACCESSIBLE": "Yes - Use west entrance.", "GIS_ID": "plp_4", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Lutheran Church of the Reformation", "ADDRESS": "212 EAST CAPITOL STREET NE", "ADDRESS_ID": 286648, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.00285766770992, 38.89011245970198] } }, { "type": "Feature", "properties": { "OBJECTID_1": 16, "OBJECTID_2": 116, "OBJECTID": 112, "PRECINCT_N": 90, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_112", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Tyler Elementary School", "ADDRESS": "1001 G STREET SE", "ADDRESS_ID": 294505, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.99204165683663, 38.88108402366969] } }, { "type": "Feature", "properties": { "OBJECTID_1": 17, "OBJECTID_2": 117, "OBJECTID": 119, "PRECINCT_N": 101, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_119", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "River Terrace Elementary School", "ADDRESS": "420 34TH STREET NE", "ADDRESS_ID": 294485, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.95780755109128, 38.89542846135375] } }, { "type": "Feature", "properties": { "OBJECTID_1": 18, "OBJECTID_2": 118, "OBJECTID": 134, "PRECINCT_N": 122, "FACILITY_D": "Armory", "ACCESSIBLE": "Yes - Accessible entrance adjacent to parking lot.", "GIS_ID": "plp_134", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Ballou Senior High School", "ADDRESS": "3401 4TH STREET SE", "ADDRESS_ID": 294567, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.00097525758831, 38.83938233153192] } }, { "type": "Feature", "properties": { "OBJECTID_1": 19, "OBJECTID_2": 119, "OBJECTID": 1, "PRECINCT_N": 2, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_1", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "The School Without Walls", "ADDRESS": "2130 G STREET NW", "ADDRESS_ID": 242528, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.04818646563815, 38.89812378757083] } }, { "type": "Feature", "properties": { "OBJECTID_1": 20, "OBJECTID_2": 120, "OBJECTID": 40, "PRECINCT_N": 72, "FACILITY_D": "Community Room (1st floor)", "ACCESSIBLE": "Yes", "GIS_ID": "plp_40", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Langdon Park Recreation Center", "ADDRESS": "2901 20TH STREET NE", "ADDRESS_ID": 287283, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.97578848687645, 38.926822413922125] } }, { "type": "Feature", "properties": { "OBJECTID_1": 21, "OBJECTID_2": 121, "OBJECTID": 29, "PRECINCT_N": 34, "FACILITY_D": "Gymnasium (lower level)", "ACCESSIBLE": "Yes - Use ramped entrance.", "GIS_ID": "plp_29", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Edmund Burke School", "ADDRESS": "2955 UPTON STREET NW", "ADDRESS_ID": 284536, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.06162815688, 38.94236132772941] } }, { "type": "Feature", "properties": { "OBJECTID_1": 22, "OBJECTID_2": 122, "OBJECTID": 30, "PRECINCT_N": 45, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_30", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "MPD - Regional Operation Command (North)", "ADDRESS": "801 SHEPHERD STREET NW", "ADDRESS_ID": 252510, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.02381044771231, 38.940088934414405] } }, { "type": "Feature", "properties": { "OBJECTID_1": 23, "OBJECTID_2": 123, "OBJECTID": 31, "PRECINCT_N": 8, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_31", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Palisades Recreation Center", "ADDRESS": "5100 SHERIER PLACE NW", "ADDRESS_ID": 268352, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.10263460574787, 38.92444192485095] } }, { "type": "Feature", "properties": { "OBJECTID_1": 24, "OBJECTID_2": 124, "OBJECTID": 32, "PRECINCT_N": 41, "FACILITY_D": "Great Hall", "ACCESSIBLE": "Yes - Use entrance on Oak Street.", "GIS_ID": "plp_32", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Trinity AME Zion Church", "ADDRESS": "3505 16TH STREET NW", "ADDRESS_ID": 234593, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.0360804245525, 38.934550552844456] } }, { "type": "Feature", "properties": { "OBJECTID_1": 25, "OBJECTID_2": 125, "OBJECTID": 33, "PRECINCT_N": 43, "FACILITY_D": "Recreation Area", "ACCESSIBLE": "Yes", "GIS_ID": "plp_33", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Park View Recreation Center", "ADDRESS": "693 OTIS PLACE NW", "ADDRESS_ID": 295160, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.02135031427919, 38.935002875205896] } }, { "type": "Feature", "properties": { "OBJECTID_1": 26, "OBJECTID_2": 126, "OBJECTID": 34, "PRECINCT_N": 42, "FACILITY_D": "Dining Room (lower level)", "ACCESSIBLE": "Yes", "GIS_ID": "plp_34", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Mt. Rona Baptist Church", "ADDRESS": "3431 13TH STREET NW", "ADDRESS_ID": 230950, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.0294528525794, 38.93224097022686] } }, { "type": "Feature", "properties": { "OBJECTID_1": 27, "OBJECTID_2": 1, "OBJECTID": 5, "PRECINCT_N": 80, "FACILITY_D": "Quander Room", "ACCESSIBLE": "Yes - Accessible entrance rear of Church.", "GIS_ID": "plp_5", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "St. Benedict the Moor Church", "ADDRESS": "320 21ST STREET NE", "ADDRESS_ID": 287504, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.97545753568295, 38.894225931293576] } }, { "type": "Feature", "properties": { "OBJECTID_1": 28, "OBJECTID_2": 2, "OBJECTID": 6, "PRECINCT_N": 102, "FACILITY_D": "Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_6", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Benning Public Library", "ADDRESS": "3935 BENNING ROAD NE", "ADDRESS_ID": 295144, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.94775954961405, 38.89419424144954] } }, { "type": "Feature", "properties": { "OBJECTID_1": 29, "OBJECTID_2": 3, "OBJECTID": 7, "PRECINCT_N": 96, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_7", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Hughes Memorial United Methodist Church", "ADDRESS": "25 53RD STREET NE", "ADDRESS_ID": 287077, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.92577691903026, 38.890534557242] } }, { "type": "Feature", "properties": { "OBJECTID_1": 30, "OBJECTID_2": 4, "OBJECTID": 8, "PRECINCT_N": 88, "FACILITY_D": "Church Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_8", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Thankful Baptist Church", "ADDRESS": "1401 INDEPENDENCE AVENUE SE", "ADDRESS_ID": 65107, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.98528389471295, 38.88737930620289] } }, { "type": "Feature", "properties": { "OBJECTID_1": 31, "OBJECTID_2": 5, "OBJECTID": 9, "PRECINCT_N": 132, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_9", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "DC Center for Therapeutic Recreation", "ADDRESS": "3030 G STREET SE", "ADDRESS_ID": 288770, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.96320322261629, 38.88087157549328] } }, { "type": "Feature", "properties": { "OBJECTID_1": 32, "OBJECTID_2": 6, "OBJECTID": 10, "PRECINCT_N": 128, "FACILITY_D": "Junior Church Hall", "ACCESSIBLE": "Yes - Accessible entrance adjacent to parking lot.", "GIS_ID": "plp_10", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Friendship Baptist Church", "ADDRESS": "900 DELAWARE AVENUE SW", "ADDRESS_ID": 276854, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.01249793426904, 38.878918819849204] } }, { "type": "Feature", "properties": { "OBJECTID_1": 33, "OBJECTID_2": 7, "OBJECTID": 11, "PRECINCT_N": 111, "FACILITY_D": "John Bailey Room", "ACCESSIBLE": "Yes - Use the Center for Employment Training entrance for ground level access (2815", "GIS_ID": "plp_11", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "St. Francis Xavier Church", "ADDRESS": "2800 PENNSYLVANIA AVENUE SE", "ADDRESS_ID": 44697, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.96750992279762, 38.872519727803635] } }, { "type": "Feature", "properties": { "OBJECTID_1": 34, "OBJECTID_2": 8, "OBJECTID": 12, "PRECINCT_N": 108, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes - Accessible - rear entrance, near parking lot.", "GIS_ID": "plp_12", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Pennsylvania Avenue Baptist Church", "ADDRESS": "3000 PENNSYLVANIA AVENUE SE", "ADDRESS_ID": 42549, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.96381300081566, 38.87112927464978] } }, { "type": "Feature", "properties": { "OBJECTID_1": 35, "OBJECTID_2": 9, "OBJECTID": 13, "PRECINCT_N": 127, "FACILITY_D": "Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_13", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "King Greenleaf Recreation Center", "ADDRESS": "201 N STREET SW", "ADDRESS_ID": 52917, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.01279249959418, 38.87501581074506] } }, { "type": "Feature", "properties": { "OBJECTID_1": 36, "OBJECTID_2": 10, "OBJECTID": 14, "PRECINCT_N": 109, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_14", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Randle-Highlands Elementary School", "ADDRESS": "1650 30TH STREET SE", "ADDRESS_ID": 156337, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.96435628177574, 38.87009140318784] } }, { "type": "Feature", "properties": { "OBJECTID_1": 37, "OBJECTID_2": 11, "OBJECTID": 16, "PRECINCT_N": 134, "FACILITY_D": "Multipurpose Room", "ACCESSIBLE": "Yes - Use rear entrance, adjacent to parking lot.", "GIS_ID": "plp_16", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Allen AME Church", "ADDRESS": "2498 ALABAMA AVENUE SE", "ADDRESS_ID": 46843, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.97028294121324, 38.856884832198325] } }, { "type": "Feature", "properties": { "OBJECTID_1": 38, "OBJECTID_2": 12, "OBJECTID": 17, "PRECINCT_N": 115, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_17", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Seventh District Police Station", "ADDRESS": "2455 ALABAMA AVENUE SE", "ADDRESS_ID": 278162, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.96952139706708, 38.85335576413945] } }, { "type": "Feature", "properties": { "OBJECTID_1": 39, "OBJECTID_2": 13, "OBJECTID": 18, "PRECINCT_N": 116, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_18", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "New Image Community Baptist Church", "ADDRESS": "1839 ALABAMA AVENUE SE", "ADDRESS_ID": 54816, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.97783993032797, 38.84765863309889] } }, { "type": "Feature", "properties": { "OBJECTID_1": 40, "OBJECTID_2": 14, "OBJECTID": 19, "PRECINCT_N": 124, "FACILITY_D": "Church Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_19", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Convenant Baptist Church", "ADDRESS": "3845 SOUTH CAPITOL STREET SW", "ADDRESS_ID": 301907, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.00866130403007, 38.83401036254331] } }, { "type": "Feature", "properties": { "OBJECTID_1": 41, "OBJECTID_2": 15, "OBJECTID": 20, "PRECINCT_N": 61, "FACILITY_D": "Multi-purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_20", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Fort Stevens Recreation Center", "ADDRESS": "1327 VAN BUREN STREET NW", "ADDRESS_ID": 290152, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.03109080084555, 38.97026914859354] } }, { "type": "Feature", "properties": { "OBJECTID_1": 42, "OBJECTID_2": 16, "OBJECTID": 21, "PRECINCT_N": 50, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Accessible rear entrance next to the parking lot.", "GIS_ID": "plp_21", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Chevy Chase Community Center", "ADDRESS": "5601 CONNECTICUT AVENUE NW", "ADDRESS_ID": 263959, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.07510861326296, 38.96515842127339] } }, { "type": "Feature", "properties": { "OBJECTID_1": 43, "OBJECTID_2": 17, "OBJECTID": 22, "PRECINCT_N": 52, "FACILITY_D": "Roth Gymnasium Bldg.", "ACCESSIBLE": "Yes - Access from parking lot.", "GIS_ID": "plp_22", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "St. John's College High School", "ADDRESS": "2607 MILITARY ROAD NW", "ADDRESS_ID": 259840, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.05520494037229, 38.962417220863394] } }, { "type": "Feature", "properties": { "OBJECTID_1": 44, "OBJECTID_2": 18, "OBJECTID": 24, "PRECINCT_N": 60, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_24", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Church of the Nativity Youth Center", "ADDRESS": "6000 GEORGIA AVENUE NW", "ADDRESS_ID": 253197, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.02822698508824, 38.96284816168917] } }, { "type": "Feature", "properties": { "OBJECTID_1": 45, "OBJECTID_2": 19, "OBJECTID": 25, "PRECINCT_N": 138, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes - Accessible entrance adjacent to parking lot.", "GIS_ID": "plp_25", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Capital Memorial Adventist Church", "ADDRESS": "3150 CHESAPEAKE STREET NW", "ADDRESS_ID": 284592, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.06396319555985, 38.95020322506991] } }, { "type": "Feature", "properties": { "OBJECTID_1": 46, "OBJECTID_2": 20, "OBJECTID": 26, "PRECINCT_N": 31, "FACILITY_D": "Church Hall", "ACCESSIBLE": "Yes - Accessible entrance located on 42nd St.", "GIS_ID": "plp_26", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "St. Columba's Episcopal Church", "ADDRESS": "4201 ALBEMARLE STREET NW", "ADDRESS_ID": 301545, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.08244680641738, 38.9482176667262] } }, { "type": "Feature", "properties": { "OBJECTID_1": 47, "OBJECTID_2": 21, "OBJECTID": 27, "PRECINCT_N": 44, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_27", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "North Capitol at Plymouth", "ADDRESS": "5233 NORTH CAPTIOL STREET NE", "ADDRESS_ID": 298101, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.00866515707142, 38.95406774426341] } }, { "type": "Feature", "properties": { "OBJECTID_1": 48, "OBJECTID_2": 22, "OBJECTID": 28, "PRECINCT_N": 9, "FACILITY_D": "Vestry Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_28", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Metropolitan Memorial United Methodist Church", "ADDRESS": "3401 NEBRASKA AVENUE NW", "ADDRESS_ID": 298676, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.08779934048464, 38.93495923702522] } }, { "type": "Feature", "properties": { "OBJECTID_1": 49, "OBJECTID_2": 23, "OBJECTID": 47, "PRECINCT_N": 75, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_47", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "McKinley Technology Senior High School", "ADDRESS": "151 T STREET NE", "ADDRESS_ID": 296345, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.0041224390594, 38.91521978576181] } }, { "type": "Feature", "properties": { "OBJECTID_1": 50, "OBJECTID_2": 24, "OBJECTID": 48, "PRECINCT_N": 141, "FACILITY_D": "North Lobby", "ACCESSIBLE": "Yes", "GIS_ID": "plp_48", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Frank D. Reeves Municipal Center", "ADDRESS": "2000 14TH STREET NW", "ADDRESS_ID": 239976, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.03240352407649, 38.917444026973975] } }, { "type": "Feature", "properties": { "OBJECTID_1": 125, "OBJECTID_2": 99, "OBJECTID": 128, "PRECINCT_N": 137, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Accessible entrance adjacent to parking lot.", "GIS_ID": "plp_128", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Garrison Elementary School", "ADDRESS": "1200 S STREET NW", "ADDRESS_ID": 294509, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.02861255039201, 38.913900958245385] } }, { "type": "Feature", "properties": { "OBJECTID_1": 126, "OBJECTID_2": 100, "OBJECTID": 129, "PRECINCT_N": 133, "FACILITY_D": "Library", "ACCESSIBLE": "Yes - Accessible entrance rear of school", "GIS_ID": "plp_129", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Orr Elementary School", "ADDRESS": "2200 MINNESOTA AVENUE SE", "ADDRESS_ID": 294539, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.97448401156392, 38.871796823975465] } }, { "type": "Feature", "properties": { "OBJECTID_1": 127, "OBJECTID_2": 127, "OBJECTID": 35, "PRECINCT_N": 71, "FACILITY_D": "Upper Fellowship Hall", "ACCESSIBLE": "Yes - Accessible entrance on Bladensburg Road", "GIS_ID": "plp_35", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Mt. Horeb Baptist Church", "ADDRESS": "3015 EARL PLACE NE", "ADDRESS_ID": 287380, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.96257582780058, 38.92828163952405] } }, { "type": "Feature", "properties": { "OBJECTID_1": 128, "OBJECTID_2": 128, "OBJECTID": 36, "PRECINCT_N": 28, "FACILITY_D": "Parish Center (near Klingle Place)", "ACCESSIBLE": "Yes", "GIS_ID": "plp_36", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Church of the Annunciation Parish", "ADDRESS": "3810 MASSACHUSETTS AVENUE NW", "ADDRESS_ID": 263608, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.07581746959019, 38.93014871936168] } }, { "type": "Feature", "properties": { "OBJECTID_1": 129, "OBJECTID_2": 129, "OBJECTID": 37, "PRECINCT_N": 136, "FACILITY_D": "Conference Room", "ACCESSIBLE": "Yes - Use side entrance from parking lot", "GIS_ID": "plp_37", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Leading Age", "ADDRESS": "2519 CONNECTICUT AVENUE NW", "ADDRESS_ID": 284405, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.05081709968947, 38.923171900472795] } }, { "type": "Feature", "properties": { "OBJECTID_1": 130, "OBJECTID_2": 130, "OBJECTID": 38, "PRECINCT_N": 12, "FACILITY_D": "Church Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_38", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "St Sophia's Greek Orthodox Cathederal Church", "ADDRESS": "3600 MASSACHUSETTS AVENUE NW", "ADDRESS_ID": 262638, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.07117418205232, 38.92672469638905] } }, { "type": "Feature", "properties": { "OBJECTID_1": 131, "OBJECTID_2": 131, "OBJECTID": 39, "PRECINCT_N": 39, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_39", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Bell Multicultural High School", "ADDRESS": "3101 16th Street NW", "ADDRESS_ID": 234375, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.03585151879376, 38.929540334081075] } }, { "type": "Feature", "properties": { "OBJECTID_1": 132, "OBJECTID_2": 132, "OBJECTID": 41, "PRECINCT_N": 36, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_41", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Latin American Youth Center", "ADDRESS": "1419 COLUMBIA ROAD NW", "ADDRESS_ID": 234363, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.03335781590764, 38.9277663944928] } }, { "type": "Feature", "properties": { "OBJECTID_1": 133, "OBJECTID_2": 133, "OBJECTID": 42, "PRECINCT_N": 135, "FACILITY_D": "Church Hall", "ACCESSIBLE": "Yes - Use ramped entrance on Rhode Island Avenue.", "GIS_ID": "plp_42", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Mt. Bethel Baptist Church", "ADDRESS": "1901 1ST STREET NW", "ADDRESS_ID": 227421, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.01182725241577, 38.916136758622] } }, { "type": "Feature", "properties": { "OBJECTID_1": 134, "OBJECTID_2": 134, "OBJECTID": 43, "PRECINCT_N": 11, "FACILITY_D": "Union Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_43", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "International Union of Operating Engineer", "ADDRESS": "2461 WISCONSIN AVENUE NW", "ADDRESS_ID": 284395, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.07250197535924, 38.92234916933058] } }, { "type": "Feature", "properties": { "OBJECTID_1": 135, "OBJECTID_2": 135, "OBJECTID": 44, "PRECINCT_N": 23, "FACILITY_D": "Library and Computer Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_44", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Loughran Community Center", "ADDRESS": "2500 14TH STREET NW", "ADDRESS_ID": 234200, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.03236211898793, 38.921998738498395] } }, { "type": "Feature", "properties": { "OBJECTID_1": 136, "OBJECTID_2": 136, "OBJECTID": 45, "PRECINCT_N": 25, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_45", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Goodwill Baptist Church", "ADDRESS": "1862 KALORAMA ROAD NW", "ADDRESS_ID": 235475, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.04382603429792, 38.91931664613416] } }, { "type": "Feature", "properties": { "OBJECTID_1": 137, "OBJECTID_2": 137, "OBJECTID": 46, "PRECINCT_N": 13, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_46", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Goodwill Baptist Church", "ADDRESS": "1862 KALORAMA ROAD NW", "ADDRESS_ID": 235475, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.04382603429792, 38.91931664613416] } }, { "type": "Feature", "properties": { "OBJECTID_1": 138, "OBJECTID_2": 138, "OBJECTID": 143, "PRECINCT_N": 143, "FACILITY_D": "Church Hall/Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_143", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Chinese Community Church", "ADDRESS": "500 I STREET NW", "ADDRESS_ID": 238945, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.0191335488228, 38.900621429714505] } }, { "type": "Feature", "properties": { "OBJECTID_1": 139, "OBJECTID_2": 139, "OBJECTID": 15, "PRECINCT_N": 110, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_15", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "St. Timothy's Episcopal Church", "ADDRESS": "3601 ALABAMA AVENUE SE", "ADDRESS_ID": 33104, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-76.95609228878696, 38.86298923901404] } }, { "type": "Feature", "properties": { "OBJECTID_1": 140, "OBJECTID_2": 140, "OBJECTID": 23, "PRECINCT_N": 32, "FACILITY_D": "Fellowship Hall (1st Floor)", "ACCESSIBLE": "Yes - Use Connecticut Ave. entrance", "GIS_ID": "plp_23", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Wesley Methodist Church", "ADDRESS": "5312 CONNECTICUT AVENUE NW", "ADDRESS_ID": 301282, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.07264987664179, 38.95932406644609] } }, { "type": "Feature", "properties": { "OBJECTID_1": 141, "OBJECTID_2": 141, "OBJECTID": 63, "PRECINCT_N": 6, "FACILITY_D": "Gallery", "ACCESSIBLE": "Yes", "GIS_ID": "plp_63", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Duke Ellington School of the Arts", "ADDRESS": "3500 R STREET NW", "ADDRESS_ID": 294569, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.0703075622951, 38.91344604442462] } }, { "type": "Feature", "properties": { "OBJECTID_1": 142, "OBJECTID_2": 142, "OBJECTID": 70, "PRECINCT_N": 26, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes - Use ramped entrance on 27th Street", "GIS_ID": "plp_70", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Oyster Elementary School", "ADDRESS": "2801 CALVERT STREET NW", "ADDRESS_ID": 275944, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.0572033785664, 38.923595492962626] } }, { "type": "Feature", "properties": { "OBJECTID_1": 143, "OBJECTID_2": 143, "OBJECTID": 89, "PRECINCT_N": 58, "FACILITY_D": "Community Room.", "ACCESSIBLE": "Yes - Ground level at Georgia. Avenue & Quackenbos Street.", "GIS_ID": "plp_89", "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", "NAME": "Fourth District Police Station", "ADDRESS": "6001 GEORGIA AVENUE NW", "ADDRESS_ID": 243485, "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-77.02741098359434, 38.96312544965341] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-77.10263460574787, 38.92444192485095], [-77.08244680641738, 38.9482176667262], [-77.07510861326296, 38.96515842127339], [-77.06803711636698, 38.96662722064828], [-77.05520494037229, 38.962417220863394], [-77.03399523386544, 38.98460295003216], [-77.01805167618295, 38.96888669131412], [-76.99988253848109, 38.95997180998364], [-76.98499562999821, 38.94201213500814], [-76.95763369669753, 38.92730594377001], [-76.9404849391363, 38.90822873259865], [-76.9299476407989, 38.90541498719898], [-76.92270804396746, 38.89619288755561], [-76.92611549373204, 38.88359849788337], [-76.93761630232859, 38.87906795106383], [-76.95609228878696, 38.86298923901404], [-76.96952139706708, 38.85335576413945], [-76.99226881799031, 38.834327886510565], [-76.99918484024232, 38.82898558049571], [-77.00847560019479, 38.8269811922012], [-77.00866130403007, 38.83401036254331], [-77.00097525758831, 38.83938233153192], [-76.99535456253949, 38.85976175834964], [-77.01279249959418, 38.87501581074506], [-77.02291065460415, 38.87987059942476], [-77.04818646563815, 38.89812378757083], [-77.0511477096272, 38.898862835793516], [-77.08498118309296, 38.909915833213795], [-77.10263460574787, 38.92444192485095] ], [ [-76.98652958387164, 38.9375726751204], [-76.99726738315395, 38.95334052572905], [-77.00866515707142, 38.95406774426341], [-77.0177770800083, 38.948230614415095], [-77.00253831800221, 38.923654687421774], [-76.98652958387164, 38.9375726751204] ] ] } } ] } ================================================ FILE: packages/turf-concave/test/out/pts3.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.40898132324217, 37.77505678240509] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.41859436035156, 37.729724141962045] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.42786407470703, 37.738141282210385] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.43198394775389, 37.72836644908416] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.47592926025389, 37.78645343442073] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.41687774658202, 37.76555823017286] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.42820739746094, 37.91115885137137] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.43198394775389, 37.72836644908416], [-122.42786407470703, 37.738141282210385], [-122.41859436035156, 37.729724141962045], [-122.43198394775389, 37.72836644908416] ] ] } } ] } ================================================ FILE: packages/turf-concave/test/out/support-null-geometry.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": null }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.43095397949219, 37.74411415606583] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.44331359863283, 37.726194088705576] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.47833251953125, 37.73651223296987] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.4103546142578, 37.72184917678752] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.41790771484375, 37.74682893940135] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.53395080566405, 37.83690319650768] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.51541137695311, 37.83473402375478] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.49069213867188, 37.837445479729666] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.52639770507812, 37.83473402375478] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.62527465820311, 37.89327929625019] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.60467529296875, 37.902490518640995] } }, { "type": "Feature", "properties": { "marker-color": "#f0f", "marker-size": "small" }, "geometry": { "type": "Point", "coordinates": [-122.58682250976562, 37.895988598965644] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-122.62527465820311, 37.89327929625019], [-122.60467529296875, 37.902490518640995], [-122.58682250976562, 37.895988598965644], [-122.62527465820311, 37.89327929625019] ] ], [ [ [-122.52639770507812, 37.83473402375478], [-122.53395080566405, 37.83690319650768], [-122.51541137695311, 37.83473402375478], [-122.52639770507812, 37.83473402375478] ] ], [ [ [-122.4103546142578, 37.72184917678752], [-122.44331359863283, 37.726194088705576], [-122.47833251953125, 37.73651223296987], [-122.43095397949219, 37.74411415606583], [-122.41790771484375, 37.74682893940135], [-122.4103546142578, 37.72184917678752] ] ] ] } } ] } ================================================ FILE: packages/turf-concave/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { point, featureCollection } from "@turf/helpers"; import { featureEach } from "@turf/meta"; import { concave } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("turf-concave", (t) => { fixtures.forEach((fixture) => { const filename = fixture.filename; const name = fixture.name; const geojson = fixture.geojson; const properties = geojson.properties || {}; const maxEdge = properties.maxEdge || 1; const units = properties.units; const hull = concave(geojson, { units, maxEdge }); featureEach(geojson, stylePt); const results = featureCollection(geojson.features.concat(hull)); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEquals(results, loadJsonFileSync(directories.out + filename), name); }); t.end(); }); const onePoint = featureCollection([point([0, 0])]); test("concave -- throw", (t) => { t.equal( concave(onePoint, { maxEdge: 5.5, units: "miles" }), null, "too few polygons found to compute concave hull" ); t.equal( concave(onePoint), null, "too few polygons found to compute concave hull -- maxEdge too small" ); t.end(); }); function stylePt(pt) { pt.properties["marker-color"] = "#f0f"; pt.properties["marker-size"] = "small"; } ================================================ FILE: packages/turf-concave/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-convex/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-convex/README.md ================================================ # @turf/convex ## convex Takes a [Feature][1] or a [FeatureCollection][2] and returns a convex hull [Polygon][3]. Internally this uses the [convex-hull][4] module that implements a [monotone chain hull][5]. ### Parameters * `geojson` **[GeoJSON][6]** input Feature or FeatureCollection * `options` **[Object][7]** Optional parameters (optional, default `{}`) * `options.concavity` **[number][8]** 1 - thin shape. Infinity - convex hull. (optional, default `Infinity`) * `options.properties` **[Object][7]** Translate Properties to Feature (optional, default `{}`) ### Examples ```javascript var points = turf.featureCollection([ turf.point([10.195312, 43.755225]), turf.point([10.404052, 43.8424511]), turf.point([10.579833, 43.659924]), turf.point([10.360107, 43.516688]), turf.point([10.14038, 43.588348]), turf.point([10.195312, 43.755225]) ]); var hull = turf.convex(points); //addToMap var addToMap = [points, hull] ``` Returns **[Feature][1]<[Polygon][3]>** a convex hull [1]: https://tools.ietf.org/html/rfc7946#section-3.2 [2]: https://tools.ietf.org/html/rfc7946#section-3.3 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [4]: https://github.com/mikolalysenko/convex-hull [5]: http://en.wikibooks.org/wiki/Algorithm_Implementation/Geometry/Convex_hull/Monotone_chain [6]: https://tools.ietf.org/html/rfc7946#section-3 [7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/convex ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-convex/bench.ts ================================================ import { glob } from "glob"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { convex } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const suite = new Benchmark.Suite("turf-convex"); /** * Benchmark Results * * elevation1 x 29,686 ops/sec ±1.77% (89 runs sampled) * elevation2 x 104,874 ops/sec ±1.33% (86 runs sampled) * elevation3 x 29,688 ops/sec ±1.77% (89 runs sampled) * elevation4 x 103,112 ops/sec ±1.26% (85 runs sampled) * elevation5 x 39,251 ops/sec ±1.32% (82 runs sampled) */ glob .sync(path.join(__dirname, "test", "in", "*.geojson")) .forEach((filepath) => { const geojson = loadJsonFileSync(filepath); suite.add(path.parse(filepath).name, () => convex(geojson)); }); suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-convex/index.ts ================================================ import { Feature, GeoJsonProperties, Polygon } from "geojson"; import { AllGeoJSON, polygon } from "@turf/helpers"; import { coordEach } from "@turf/meta"; import concaveman from "concaveman"; /** * Takes a {@link Feature} or a {@link FeatureCollection} and returns a convex hull {@link Polygon}. * * Internally this uses * the [convex-hull](https://github.com/mikolalysenko/convex-hull) module that implements a * [monotone chain hull](http://en.wikibooks.org/wiki/Algorithm_Implementation/Geometry/Convex_hull/Monotone_chain). * * @function * @param {GeoJSON} geojson input Feature or FeatureCollection * @param {Object} [options={}] Optional parameters * @param {number} [options.concavity=Infinity] 1 - thin shape. Infinity - convex hull. * @param {Object} [options.properties={}] Translate Properties to Feature * @returns {Feature} a convex hull * @example * var points = turf.featureCollection([ * turf.point([10.195312, 43.755225]), * turf.point([10.404052, 43.8424511]), * turf.point([10.579833, 43.659924]), * turf.point([10.360107, 43.516688]), * turf.point([10.14038, 43.588348]), * turf.point([10.195312, 43.755225]) * ]); * * var hull = turf.convex(points); * * //addToMap * var addToMap = [points, hull] */ function convex

( geojson: AllGeoJSON, options: { concavity?: number; properties?: P; } = {} ): Feature | null { // Default parameters options.concavity = options.concavity || Infinity; // Container const points: number[][] = []; // Convert all points to flat 2D coordinate Array coordEach(geojson, (coord) => { points.push([coord[0], coord[1]]); }); if (!points.length) { return null; } const convexHull = concaveman(points, options.concavity); // Convex hull should have at least 3 different vertices in order to create a valid polygon if (convexHull.length > 3) { return polygon([convexHull]); } return null; } export { convex }; export default convex; ================================================ FILE: packages/turf-convex/package.json ================================================ { "name": "@turf/convex", "version": "7.3.4", "description": "Creates a convex hull around points", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "gis" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/concaveman": "^1.1.6", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "concaveman": "^1.2.1", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-convex/test/in/elevation1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.833, 39.284] }, "properties": { "name": "Location B", "category": "House", "elevation": 25 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.6, 39.984] }, "properties": { "name": "Location A", "category": "Store", "elevation": 23 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.221, 39.125] }, "properties": { "name": "Location C", "category": "Office", "elevation": 29 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.358, 39.987] }, "properties": { "name": "Location A", "category": "Store", "elevation": 12 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.9221, 39.27] }, "properties": { "name": "Location B", "category": "House", "elevation": 11 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.534, 39.123] }, "properties": { "name": "Location C", "category": "Office", "elevation": 49 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.21, 39.12] }, "properties": { "name": "Location A", "category": "Store", "elevation": 50 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.22, 39.33] }, "properties": { "name": "Location B", "category": "House", "elevation": 90 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.44, 39.55] }, "properties": { "name": "Location C", "category": "Office", "elevation": 22 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.77, 39.66] }, "properties": { "name": "Location A", "category": "Store", "elevation": 99 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.44, 39.11] }, "properties": { "name": "Location B", "category": "House", "elevation": 55 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.05, 39.92] }, "properties": { "name": "Location C", "category": "Office", "elevation": 41 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.88, 39.98] }, "properties": { "name": "Location A", "category": "Store", "elevation": 52 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.55, 39.55] }, "properties": { "name": "Location B", "category": "House", "elevation": 143 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.33, 39.44] }, "properties": { "name": "Location C", "category": "Office", "elevation": 76 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.56, 39.24] }, "properties": { "name": "Location C", "category": "Office", "elevation": 18 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.56, 39.36] }, "properties": { "name": "Location C", "category": "Office", "elevation": 52 } } ] } ================================================ FILE: packages/turf-convex/test/in/elevation2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.1300048828125, 40.157885249506506] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-74.5587158203125, 39.816975090490004] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-76.06109619140625, 40.0759697987031] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-76.21490478515625, 39.60145584096999] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-74.77020263671875, 39.35766163717121] } } ] } ================================================ FILE: packages/turf-convex/test/in/elevation3.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.833, 39.284] }, "properties": { "name": "Location B", "category": "House", "elevation": 25 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.6, 39.984] }, "properties": { "name": "Location A", "category": "Store", "elevation": 23 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.221, 39.125] }, "properties": { "name": "Location C", "category": "Office", "elevation": 29 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.358, 39.987] }, "properties": { "name": "Location A", "category": "Store", "elevation": 12 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.9221, 39.27] }, "properties": { "name": "Location B", "category": "House", "elevation": 11 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.534, 39.123] }, "properties": { "name": "Location C", "category": "Office", "elevation": 49 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.21, 39.12] }, "properties": { "name": "Location A", "category": "Store", "elevation": 50 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.22, 39.33] }, "properties": { "name": "Location B", "category": "House", "elevation": 90 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.44, 39.55] }, "properties": { "name": "Location C", "category": "Office", "elevation": 22 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.77, 39.66] }, "properties": { "name": "Location A", "category": "Store", "elevation": 99 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.44, 39.11] }, "properties": { "name": "Location B", "category": "House", "elevation": 55 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.05, 39.92] }, "properties": { "name": "Location C", "category": "Office", "elevation": 41 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.88, 39.98] }, "properties": { "name": "Location A", "category": "Store", "elevation": 52 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.55, 39.55] }, "properties": { "name": "Location B", "category": "House", "elevation": 143 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.33, 39.44] }, "properties": { "name": "Location C", "category": "Office", "elevation": 76 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.56, 39.24] }, "properties": { "name": "Location C", "category": "Office", "elevation": 18 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.56, 39.36] }, "properties": { "name": "Location C", "category": "Office", "elevation": 52 } } ] } ================================================ FILE: packages/turf-convex/test/in/elevation4.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.1300048828125, 40.157885249506506, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-74.5587158203125, 39.816975090490004, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-76.06109619140625, 40.0759697987031, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-76.21490478515625, 39.60145584096999, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-74.77020263671875, 39.35766163717121, 1] } } ] } ================================================ FILE: packages/turf-convex/test/in/elevation5.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.08355712890625, 40.6723059714534], [-73.7567138671875, 40.8595252289932], [-73.86383056640625, 40.97575093157534], [-74.0203857421875, 41.04621681452063], [-74.24285888671875, 41.04828819952275], [-74.410400390625, 40.977824533189526], [-74.5257568359375, 40.851215574282456], [-74.5697021484375, 40.74309523218185], [-74.59991455078125, 40.60144147645398], [-74.56146240234375, 40.47620304302563], [-74.41864013671875, 40.386304853509046], [-74.2236328125, 40.32141999593439], [-74.01214599609375, 40.317231732315236], [-73.85009765625, 40.34654412118006], [-73.76220703125, 40.444856858961764], [-74.08355712890625, 40.6723059714534] ] ] } } ] } ================================================ FILE: packages/turf-convex/test/out/elevation1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.833, 39.284] }, "properties": { "name": "Location B", "category": "House", "elevation": 25 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.6, 39.984] }, "properties": { "name": "Location A", "category": "Store", "elevation": 23 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.221, 39.125] }, "properties": { "name": "Location C", "category": "Office", "elevation": 29 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.358, 39.987] }, "properties": { "name": "Location A", "category": "Store", "elevation": 12 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.9221, 39.27] }, "properties": { "name": "Location B", "category": "House", "elevation": 11 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.534, 39.123] }, "properties": { "name": "Location C", "category": "Office", "elevation": 49 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.21, 39.12] }, "properties": { "name": "Location A", "category": "Store", "elevation": 50 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.22, 39.33] }, "properties": { "name": "Location B", "category": "House", "elevation": 90 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.44, 39.55] }, "properties": { "name": "Location C", "category": "Office", "elevation": 22 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.77, 39.66] }, "properties": { "name": "Location A", "category": "Store", "elevation": 99 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.44, 39.11] }, "properties": { "name": "Location B", "category": "House", "elevation": 55 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.05, 39.92] }, "properties": { "name": "Location C", "category": "Office", "elevation": 41 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.88, 39.98] }, "properties": { "name": "Location A", "category": "Store", "elevation": 52 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.55, 39.55] }, "properties": { "name": "Location B", "category": "House", "elevation": 143 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.33, 39.44] }, "properties": { "name": "Location C", "category": "Office", "elevation": 76 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.56, 39.24] }, "properties": { "name": "Location C", "category": "Office", "elevation": 18 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.56, 39.36] }, "properties": { "name": "Location C", "category": "Office", "elevation": 52 } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.534, 39.123], [-75.9221, 39.27], [-75.88, 39.98], [-75.6, 39.984], [-75.358, 39.987], [-75.05, 39.92], [-75.21, 39.12], [-75.44, 39.11], [-75.534, 39.123] ] ] } } ] } ================================================ FILE: packages/turf-convex/test/out/elevation2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.1300048828125, 40.157885249506506] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-74.5587158203125, 39.816975090490004] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-76.06109619140625, 40.0759697987031] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-76.21490478515625, 39.60145584096999] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-74.77020263671875, 39.35766163717121] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.77020263671875, 39.35766163717121], [-76.21490478515625, 39.60145584096999], [-76.06109619140625, 40.0759697987031], [-75.1300048828125, 40.157885249506506], [-74.5587158203125, 39.816975090490004], [-74.77020263671875, 39.35766163717121] ] ] } } ] } ================================================ FILE: packages/turf-convex/test/out/elevation3.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.833, 39.284] }, "properties": { "name": "Location B", "category": "House", "elevation": 25 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.6, 39.984] }, "properties": { "name": "Location A", "category": "Store", "elevation": 23 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.221, 39.125] }, "properties": { "name": "Location C", "category": "Office", "elevation": 29 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.358, 39.987] }, "properties": { "name": "Location A", "category": "Store", "elevation": 12 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.9221, 39.27] }, "properties": { "name": "Location B", "category": "House", "elevation": 11 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.534, 39.123] }, "properties": { "name": "Location C", "category": "Office", "elevation": 49 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.21, 39.12] }, "properties": { "name": "Location A", "category": "Store", "elevation": 50 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.22, 39.33] }, "properties": { "name": "Location B", "category": "House", "elevation": 90 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.44, 39.55] }, "properties": { "name": "Location C", "category": "Office", "elevation": 22 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.77, 39.66] }, "properties": { "name": "Location A", "category": "Store", "elevation": 99 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.44, 39.11] }, "properties": { "name": "Location B", "category": "House", "elevation": 55 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.05, 39.92] }, "properties": { "name": "Location C", "category": "Office", "elevation": 41 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.88, 39.98] }, "properties": { "name": "Location A", "category": "Store", "elevation": 52 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.55, 39.55] }, "properties": { "name": "Location B", "category": "House", "elevation": 143 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.33, 39.44] }, "properties": { "name": "Location C", "category": "Office", "elevation": 76 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.56, 39.24] }, "properties": { "name": "Location C", "category": "Office", "elevation": 18 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.56, 39.36] }, "properties": { "name": "Location C", "category": "Office", "elevation": 52 } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.534, 39.123], [-75.9221, 39.27], [-75.88, 39.98], [-75.6, 39.984], [-75.358, 39.987], [-75.05, 39.92], [-75.21, 39.12], [-75.44, 39.11], [-75.534, 39.123] ] ] } } ] } ================================================ FILE: packages/turf-convex/test/out/elevation4.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.1300048828125, 40.157885249506506, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-74.5587158203125, 39.816975090490004, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-76.06109619140625, 40.0759697987031, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-76.21490478515625, 39.60145584096999, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-74.77020263671875, 39.35766163717121, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.77020263671875, 39.35766163717121], [-76.21490478515625, 39.60145584096999], [-76.06109619140625, 40.0759697987031], [-75.1300048828125, 40.157885249506506], [-74.5587158203125, 39.816975090490004], [-74.77020263671875, 39.35766163717121] ] ] } } ] } ================================================ FILE: packages/turf-convex/test/out/elevation5.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.08355712890625, 40.6723059714534], [-73.7567138671875, 40.8595252289932], [-73.86383056640625, 40.97575093157534], [-74.0203857421875, 41.04621681452063], [-74.24285888671875, 41.04828819952275], [-74.410400390625, 40.977824533189526], [-74.5257568359375, 40.851215574282456], [-74.5697021484375, 40.74309523218185], [-74.59991455078125, 40.60144147645398], [-74.56146240234375, 40.47620304302563], [-74.41864013671875, 40.386304853509046], [-74.2236328125, 40.32141999593439], [-74.01214599609375, 40.317231732315236], [-73.85009765625, 40.34654412118006], [-73.76220703125, 40.444856858961764], [-74.08355712890625, 40.6723059714534] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.56146240234375, 40.47620304302563], [-74.59991455078125, 40.60144147645398], [-74.5697021484375, 40.74309523218185], [-74.5257568359375, 40.851215574282456], [-74.410400390625, 40.977824533189526], [-74.24285888671875, 41.04828819952275], [-74.0203857421875, 41.04621681452063], [-73.86383056640625, 40.97575093157534], [-73.7567138671875, 40.8595252289932], [-73.76220703125, 40.444856858961764], [-73.85009765625, 40.34654412118006], [-74.01214599609375, 40.317231732315236], [-74.2236328125, 40.32141999593439], [-74.41864013671875, 40.386304853509046], [-74.56146240234375, 40.47620304302563] ] ] } } ] } ================================================ FILE: packages/turf-convex/test.ts ================================================ import test from "tape"; import { glob } from "glob"; import path from "path"; import { fileURLToPath } from "url"; import { writeJsonFileSync } from "write-json-file"; import { loadJsonFileSync } from "load-json-file"; import { featureCollection } from "@turf/helpers"; import { convex } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; test("convex hull", (t) => { glob.sync(directories.in + "*.geojson").forEach((filepath) => { const fileout = filepath.replace("/in/", "/out/"); const geojson = loadJsonFileSync(filepath); const convexHull = convex(geojson); geojson.features.push(convexHull); if (process.env.REGEN) writeJsonFileSync(fileout, geojson); t.deepEqual(geojson, loadJsonFileSync(fileout), path.parse(filepath).name); }); t.end(); }); test("turf-convex -- empty", (t) => { t.deepEqual(convex(featureCollection([])), null, "corner case: null hull"); t.end(); }); ================================================ FILE: packages/turf-convex/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-destination/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-destination/README.md ================================================ # @turf/destination ## destination Takes a [Point][1] and calculates the location of a destination point given a distance in degrees, radians, miles, or kilometers; and bearing in degrees. This uses the [Haversine formula][2] to account for global curvature. ### Parameters * `origin` **[Coord][3]** starting point * `distance` **[number][4]** distance from the origin point * `bearing` **[number][4]** ranging from -180 to 180 * `options` **[Object][5]** Optional parameters (optional, default `{}`) * `options.units` **Units** Supports all valid Turf [Units][6] (optional, default `'kilometers'`) * `options.properties` **[Object][5]** Translate properties to Point (optional, default `{}`) ### Examples ```javascript var point = turf.point([-75.343, 39.984]); var distance = 50; var bearing = 90; var options = {units: 'miles'}; var destination = turf.destination(point, distance, bearing, options); //addToMap var addToMap = [point, destination] destination.properties['marker-color'] = '#f00'; point.properties['marker-color'] = '#0f0'; ``` Returns **[Feature][7]<[Point][1]>** destination point [1]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [2]: http://en.wikipedia.org/wiki/Haversine_formula [3]: https://tools.ietf.org/html/rfc7946#section-3.1.1 [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [6]: https://turfjs.org/docs/api/types/Units [7]: https://tools.ietf.org/html/rfc7946#section-3.2 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/destination ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-destination/bench.ts ================================================ import Benchmark from "benchmark"; import { destination } from "./index.js"; var pt1 = [-75.0, 39.0]; var dist = 100; var bear = 180; new Benchmark.Suite("turf-destination") .add("turf-destination", () => destination(pt1, dist, bear)) .on("cycle", (e) => console.log(String(e.target))) .run(); ================================================ FILE: packages/turf-destination/index.ts ================================================ // http://en.wikipedia.org/wiki/Haversine_formula // http://www.movable-type.co.uk/scripts/latlong.html import { Feature, Point, GeoJsonProperties } from "geojson"; import { Coord, degreesToRadians, lengthToRadians, point, radiansToDegrees, Units, } from "@turf/helpers"; import { getCoord } from "@turf/invariant"; /** * Takes a {@link Point} and calculates the location of a destination point given a distance in * degrees, radians, miles, or kilometers; and bearing in degrees. * This uses the [Haversine formula](http://en.wikipedia.org/wiki/Haversine_formula) to account for global curvature. * * @function * @param {Coord} origin starting point * @param {number} distance distance from the origin point * @param {number} bearing ranging from -180 to 180 * @param {Object} [options={}] Optional parameters * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @param {Object} [options.properties={}] Translate properties to Point * @returns {Feature} destination point * @example * var point = turf.point([-75.343, 39.984]); * var distance = 50; * var bearing = 90; * var options = {units: 'miles'}; * * var destination = turf.destination(point, distance, bearing, options); * * //addToMap * var addToMap = [point, destination] * destination.properties['marker-color'] = '#f00'; * point.properties['marker-color'] = '#0f0'; */ function destination

( origin: Coord, distance: number, bearing: number, options: { units?: Units; properties?: P; } = {} ): Feature { // Handle input const coordinates1 = getCoord(origin); const longitude1 = degreesToRadians(coordinates1[0]); const latitude1 = degreesToRadians(coordinates1[1]); const bearingRad = degreesToRadians(bearing); const radians = lengthToRadians(distance, options.units); // Main const latitude2 = Math.asin( Math.sin(latitude1) * Math.cos(radians) + Math.cos(latitude1) * Math.sin(radians) * Math.cos(bearingRad) ); const longitude2 = longitude1 + Math.atan2( Math.sin(bearingRad) * Math.sin(radians) * Math.cos(latitude1), Math.cos(radians) - Math.sin(latitude1) * Math.sin(latitude2) ); const lng = radiansToDegrees(longitude2); const lat = radiansToDegrees(latitude2); if (coordinates1[2] !== undefined) { return point([lng, lat, coordinates1[2]], options.properties); } return point([lng, lat], options.properties); } export { destination }; export default destination; ================================================ FILE: packages/turf-destination/package.json ================================================ { "name": "@turf/destination", "version": "7.3.4", "description": "turf destination module", "author": "Turf Authors", "contributors": [ "Pavel Rozvora <@prozvora>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "distance", "destination", "bearing", "miles", "km" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-destination/test/in/point-0-with-elevation.geojson ================================================ { "type": "Feature", "properties": { "bearing": 0 }, "geometry": { "type": "Point", "coordinates": [-75, 38.10096062273525, 100] } } ================================================ FILE: packages/turf-destination/test/in/point-0.geojson ================================================ { "type": "Feature", "properties": { "bearing": 0 }, "geometry": { "type": "Point", "coordinates": [-75, 38.10096062273525] } } ================================================ FILE: packages/turf-destination/test/in/point-180.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75, 39] } } ================================================ FILE: packages/turf-destination/test/in/point-90.geojson ================================================ { "type": "Feature", "properties": { "bearing": 90 }, "geometry": { "type": "Point", "coordinates": [-75, 39] } } ================================================ FILE: packages/turf-destination/test/in/point-way-far-away-km.geojson ================================================ { "type": "Feature", "properties": { "bearing": 90, "dist": 5000, "units": "kilometers" }, "geometry": { "type": "Point", "coordinates": [-75, 39] } } ================================================ FILE: packages/turf-destination/test/in/point-way-far-away-miles.geojson ================================================ { "type": "Feature", "properties": { "bearing": 90, "dist": 5000, "units": "miles" }, "geometry": { "type": "Point", "coordinates": [-75, 39] } } ================================================ FILE: packages/turf-destination/test/out/point-0-with-elevation.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "bearing": 0 }, "geometry": { "type": "Point", "coordinates": [-75, 38.10096062273525, 100] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75, 39.000281, 100] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-75, 38.10096062273525, 100], [-75, 39.000281, 100] ] } } ] } ================================================ FILE: packages/turf-destination/test/out/point-0.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "bearing": 0 }, "geometry": { "type": "Point", "coordinates": [-75, 38.10096062273525] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75, 39.000281] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-75, 38.10096062273525], [-75, 39.000281] ] } } ] } ================================================ FILE: packages/turf-destination/test/out/point-180.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75, 39] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75, 38.10068] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-75, 39], [-75, 38.10068] ] } } ] } ================================================ FILE: packages/turf-destination/test/out/point-90.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "bearing": 90 }, "geometry": { "type": "Point", "coordinates": [-75, 39] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-73.842853, 38.994285] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-75, 39], [-73.842853, 38.994285] ] } } ] } ================================================ FILE: packages/turf-destination/test/out/point-way-far-away-km.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "bearing": 90, "dist": 5000, "units": "kilometers" }, "geometry": { "type": "Point", "coordinates": [-75, 39] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-22.885356, 26.440011] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-75, 39], [-22.885356, 26.440011] ] } } ] } ================================================ FILE: packages/turf-destination/test/out/point-way-far-away-miles.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "bearing": 90, "dist": 5000, "units": "miles" }, "geometry": { "type": "Point", "coordinates": [-75, 39] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1.123703, 10.990466] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-75, 39], [1.123703, 10.990466] ] } } ] } ================================================ FILE: packages/turf-destination/test.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { glob } from "glob"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { getCoords } from "@turf/invariant"; import { lineString, featureCollection } from "@turf/helpers"; import { truncate } from "@turf/truncate"; import { destination } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; test("turf-destination", (t) => { glob.sync(directories.in + "*.geojson").forEach((filepath) => { const geojson = loadJsonFileSync(filepath); const name = path.parse(filepath).name; const base = path.parse(filepath).base; // Params const properties = geojson.properties || {}; const bearing = properties.bearing !== undefined ? properties.bearing : 180; const dist = properties.dist !== undefined ? properties.dist : 100; let testProperties = {}; if (properties.units !== undefined) { testProperties.units = properties.units; } const dest = truncate(destination(geojson, dist, bearing, testProperties)); const result = featureCollection([ geojson, dest, lineString([getCoords(geojson), getCoords(dest)]), ]); if (process.env.REGEN) writeJsonFileSync(directories.out + base, result); t.deepEqual(result, loadJsonFileSync(directories.out + base), name); }); t.end(); }); ================================================ FILE: packages/turf-destination/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-difference/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-difference/README.md ================================================ # @turf/difference ## difference Finds the difference between multiple [polygons][1] by clipping the subsequent polygon from the first. ### Parameters * `features` **[FeatureCollection][2]<([Polygon][1] | [MultiPolygon][3])>** input Polygon features ### Examples ```javascript var polygon1 = turf.polygon([[ [128, -26], [141, -26], [141, -21], [128, -21], [128, -26] ]], { "fill": "#F00", "fill-opacity": 0.1 }); var polygon2 = turf.polygon([[ [126, -28], [140, -28], [140, -20], [126, -20], [126, -28] ]], { "fill": "#00F", "fill-opacity": 0.1 }); var difference = turf.difference(turf.featureCollection([polygon1, polygon2])); //addToMap var addToMap = [polygon1, polygon2, difference]; ``` Returns **([Feature][4]<([Polygon][1] | [MultiPolygon][3])> | null)** a Polygon or MultiPolygon feature showing the area of `polygon1` excluding the area of `polygon2` (if empty returns `null`) [1]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [2]: https://tools.ietf.org/html/rfc7946#section-3.3 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.7 [4]: https://tools.ietf.org/html/rfc7946#section-3.2 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/difference ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-difference/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { difference } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; let fixtures = fs.readdirSync(directory).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); // fixtures = fixtures.filter(({name}) => name === 'issue-#721'); /** * Benchmark Results * * ==using martinez== * clip-polygons x 38,724 ops/sec ±11.98% (65 runs sampled) * completely-overlapped x 70,644 ops/sec ±8.29% (67 runs sampled) * create-hole x 62,128 ops/sec ±7.45% (75 runs sampled) * issue-#721-inverse x 354,473 ops/sec ±2.46% (81 runs sampled) * issue-#721 x 339,053 ops/sec ±3.24% (78 runs sampled) * multi-polygon-input x 17,728 ops/sec ±10.01% (64 runs sampled) * multi-polygon-target x 14,077 ops/sec ±6.52% (75 runs sampled) * split-polygon x 29,258 ops/sec ±8.99% (69 runs sampled) */ const suite = new Benchmark.Suite("turf-difference"); for (const { name, geojson } of fixtures) { suite.add(name, () => difference(geojson)); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-difference/index.ts ================================================ import { Polygon, MultiPolygon, Feature, FeatureCollection } from "geojson"; import * as polyclip from "polyclip-ts"; import { polygon, multiPolygon } from "@turf/helpers"; import { geomEach } from "@turf/meta"; /** * Finds the difference between multiple {@link Polygon|polygons} by clipping the subsequent polygon from the first. * * @function * @param {FeatureCollection} features input Polygon features * @returns {Feature|null} a Polygon or MultiPolygon feature showing the area of `polygon1` excluding the area of `polygon2` (if empty returns `null`) * @example * var polygon1 = turf.polygon([[ * [128, -26], * [141, -26], * [141, -21], * [128, -21], * [128, -26] * ]], { * "fill": "#F00", * "fill-opacity": 0.1 * }); * var polygon2 = turf.polygon([[ * [126, -28], * [140, -28], * [140, -20], * [126, -20], * [126, -28] * ]], { * "fill": "#00F", * "fill-opacity": 0.1 * }); * * var difference = turf.difference(turf.featureCollection([polygon1, polygon2])); * * //addToMap * var addToMap = [polygon1, polygon2, difference]; */ function difference( features: FeatureCollection ): Feature | null { const geoms: Array = []; geomEach(features, (geom) => { geoms.push(geom.coordinates as polyclip.Geom); }); if (geoms.length < 2) { throw new Error("Must have at least two features"); } const properties = features.features[0].properties || {}; const differenced = polyclip.difference(geoms[0], ...geoms.slice(1)); if (differenced.length === 0) return null; if (differenced.length === 1) return polygon(differenced[0], properties); return multiPolygon(differenced, properties); } export { difference }; export default difference; ================================================ FILE: packages/turf-difference/package.json ================================================ { "name": "@turf/difference", "version": "7.3.4", "description": "Finds the difference between multiple polygons by clipping the subsequent polygon from the first.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "gis" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "polyclip-ts": "^0.16.8", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-difference/test/in/clip-polygons.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6, "stroke-opacity": 1, "fill": "#F00", "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [127.705078125, -34.52466147177172], [139.5703125, -34.52466147177172], [139.5703125, -15.28418511407642], [127.705078125, -15.28418511407642], [127.705078125, -34.52466147177172] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "stroke-opacity": 1, "fill": "#00F", "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [133.154296875, -29.075375179558346], [144.228515625, -29.075375179558346], [144.228515625, -12.983147716796566], [133.154296875, -12.983147716796566], [133.154296875, -29.075375179558346] ] ] } } ] } ================================================ FILE: packages/turf-difference/test/in/completely-overlapped.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6, "stroke-opacity": 1, "fill": "#F00", "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [128.583984375, -27.916766641249065], [137.8125, -27.916766641249065], [137.8125, -20.879342971957897], [128.583984375, -20.879342971957897], [128.583984375, -27.916766641249065] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "stroke-opacity": 1, "fill": "#00F", "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [125.33203125, -31.353636941500987], [141.15234374999997, -31.353636941500987], [141.15234374999997, -16.804541076383455], [125.33203125, -16.804541076383455], [125.33203125, -31.353636941500987] ] ] } } ] } ================================================ FILE: packages/turf-difference/test/in/create-hole.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6, "stroke-opacity": 1, "fill": "#F00", "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [121, -31], [144, -31], [144, -15], [121, -15], [121, -31] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "stroke-opacity": 1, "fill": "#00F", "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [126, -28], [140, -28], [140, -20], [126, -20], [126, -28] ] ] } } ] } ================================================ FILE: packages/turf-difference/test/in/issue-#721-inverse.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "stroke-opacity": 1, "fill": "#00F", "fill-opacity": 0.1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-0.6462588068806041, 44.80608667910215], [-0.6461987, 44.8060367], [-0.6461042, 44.8059451], [-0.6461041344154722, 44.805944903377586], [-0.6461991369724274, 44.80603699057963], [-0.6462588068806041, 44.80608667910215] ] ], [ [ [-0.646069093721612, 44.80583985137739], [-0.6460542, 44.8057952], [-0.6460421, 44.8056729], [-0.6460471709105139, 44.80564743856641], [-0.6460422277450562, 44.805672561504906], [-0.6460542976856232, 44.80579530680288], [-0.646069093721612, 44.80583985137739] ] ], [ [ [-0.646093673696575, 44.80541109474097], [-0.6461073, 44.8053383], [-0.6461158838109077, 44.80524109574131], [-0.646107941865921, 44.80533857879061], [-0.646093673696575, 44.80541109474097] ] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6, "stroke-opacity": 1, "fill": "#F00", "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6474134, 44.805326], [-0.6471907, 44.8053946], [-0.6465049, 44.8055554], [-0.6464734, 44.8056645], [-0.6465119, 44.8057959], [-0.6465922, 44.8059124], [-0.6466376, 44.8059546], [-0.6466831, 44.8059719], [-0.6467005, 44.8059967], [-0.6466971, 44.8060413], [-0.64662, 44.806065], [-0.64649, 44.80611], [-0.646437, 44.806159], [-0.6463809, 44.8061882], [-0.6461987, 44.8060367], [-0.6461042, 44.8059451], [-0.6460542, 44.8057952], [-0.6460421, 44.8056729], [-0.6460848, 44.8054585], [-0.6461073, 44.8053383], [-0.6461218, 44.8051741], [-0.6460827, 44.8050017], [-0.6460168, 44.8047948], [-0.645829, 44.8043891], [-0.646075, 44.8042943], [-0.6462847, 44.8042192], [-0.6465997, 44.8047375], [-0.6469113, 44.8048572], [-0.6472295, 44.8050484], [-0.6474134, 44.805326] ] ] } } ] } ================================================ FILE: packages/turf-difference/test/in/issue-#721.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6, "stroke-opacity": 1, "fill": "#F00", "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6474134, 44.805326], [-0.6471907, 44.8053946], [-0.6465049, 44.8055554], [-0.6464734, 44.8056645], [-0.6465119, 44.8057959], [-0.6465922, 44.8059124], [-0.6466376, 44.8059546], [-0.6466831, 44.8059719], [-0.6467005, 44.8059967], [-0.6466971, 44.8060413], [-0.64662, 44.806065], [-0.64649, 44.80611], [-0.646437, 44.806159], [-0.6463809, 44.8061882], [-0.6461987, 44.8060367], [-0.6461042, 44.8059451], [-0.6460542, 44.8057952], [-0.6460421, 44.8056729], [-0.6460848, 44.8054585], [-0.6461073, 44.8053383], [-0.6461218, 44.8051741], [-0.6460827, 44.8050017], [-0.6460168, 44.8047948], [-0.645829, 44.8043891], [-0.646075, 44.8042943], [-0.6462847, 44.8042192], [-0.6465997, 44.8047375], [-0.6469113, 44.8048572], [-0.6472295, 44.8050484], [-0.6474134, 44.805326] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "stroke-opacity": 1, "fill": "#00F", "fill-opacity": 0.1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-0.6462588068806041, 44.80608667910215], [-0.6461987, 44.8060367], [-0.6461042, 44.8059451], [-0.6461041344154722, 44.805944903377586], [-0.6461991369724274, 44.80603699057963], [-0.6462588068806041, 44.80608667910215] ] ], [ [ [-0.646069093721612, 44.80583985137739], [-0.6460542, 44.8057952], [-0.6460421, 44.8056729], [-0.6460471709105139, 44.80564743856641], [-0.6460422277450562, 44.805672561504906], [-0.6460542976856232, 44.80579530680288], [-0.646069093721612, 44.80583985137739] ] ], [ [ [-0.646093673696575, 44.80541109474097], [-0.6461073, 44.8053383], [-0.6461158838109077, 44.80524109574131], [-0.646107941865921, 44.80533857879061], [-0.646093673696575, 44.80541109474097] ] ] ] } } ] } ================================================ FILE: packages/turf-difference/test/in/multi-polygon-input.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6, "stroke-opacity": 1, "fill": "#F00", "fill-opacity": 0.1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [123.134765625, -25.562265014427492], [136.142578125, -25.562265014427492], [136.142578125, -13.068776734357694], [123.134765625, -13.068776734357694], [123.134765625, -25.562265014427492] ] ], [ [ [119.53125, -39.57182223734373], [134.560546875, -39.57182223734373], [134.560546875, -28.38173504322308], [119.53125, -28.38173504322308], [119.53125, -39.57182223734373] ] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "stroke-opacity": 1, "fill": "#00F", "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [126.298828125, -35.81781315869662], [131.8359375, -35.81781315869662], [131.8359375, -18.396230138028812], [126.298828125, -18.396230138028812], [126.298828125, -35.81781315869662] ] ] } } ] } ================================================ FILE: packages/turf-difference/test/in/multi-polygon-target.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6, "stroke-opacity": 1, "fill": "#F00", "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [127.66113281249999, -30.713503990354965], [140.7568359375, -30.713503990354965], [140.7568359375, -20.2209657795223], [127.66113281249999, -20.2209657795223], [127.66113281249999, -30.713503990354965] ], [ [132.38525390625, -27.313213898568247], [135.1318359375, -27.313213898568247], [135.1318359375, -24.467150664738988], [132.38525390625, -24.467150664738988], [132.38525390625, -27.313213898568247] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "stroke-opacity": 1, "fill": "#00F", "fill-opacity": 0.1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [128.8916015625, -31.84023266790935], [130.6494140625, -31.84023266790935], [130.6494140625, -18.646245142670598], [128.8916015625, -18.646245142670598], [128.8916015625, -31.84023266790935] ] ], [ [ [136.23046875, -32.175612478499325], [138.6474609375, -32.175612478499325], [138.6474609375, -18.729501999072138], [136.23046875, -18.729501999072138], [136.23046875, -32.175612478499325] ] ] ] } } ] } ================================================ FILE: packages/turf-difference/test/in/skip-martinez-issue-#35.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [3, 0], [3, 3], [0, 3], [0, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 0], [2, 0], [2, 4], [1, 4], [1, 0] ] ] } } ] } ================================================ FILE: packages/turf-difference/test/in/split-polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6, "stroke-opacity": 1, "fill": "#F00", "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [122.51953124999999, -29.22889003019423], [144.228515625, -29.22889003019423], [144.228515625, -21.53484700204879], [122.51953124999999, -21.53484700204879], [122.51953124999999, -29.22889003019423] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "stroke-opacity": 1, "fill": "#00F", "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [127.705078125, -34.52466147177172], [139.5703125, -34.52466147177172], [139.5703125, -15.28418511407642], [127.705078125, -15.28418511407642], [127.705078125, -34.52466147177172] ] ] } } ] } ================================================ FILE: packages/turf-difference/test/out/clip-polygons.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6, "stroke-opacity": 1, "fill": "#F00", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [127.705078125, -34.52466147177172], [139.5703125, -34.52466147177172], [139.5703125, -15.28418511407642], [127.705078125, -15.28418511407642], [127.705078125, -34.52466147177172] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "stroke-opacity": 1, "fill": "#00F", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [133.154296875, -29.075375179558346], [144.228515625, -29.075375179558346], [144.228515625, -12.983147716796566], [133.154296875, -12.983147716796566], [133.154296875, -29.075375179558346] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 1, "fill": "#0F0" }, "geometry": { "type": "Polygon", "coordinates": [ [ [127.705078125, -34.52466147177172], [139.5703125, -34.52466147177172], [139.5703125, -29.075375179558346], [133.154296875, -29.075375179558346], [133.154296875, -15.28418511407642], [127.705078125, -15.28418511407642], [127.705078125, -34.52466147177172] ] ] } } ] } ================================================ FILE: packages/turf-difference/test/out/completely-overlapped.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6, "stroke-opacity": 1, "fill": "#F00", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [128.583984375, -27.916766641249065], [137.8125, -27.916766641249065], [137.8125, -20.879342971957897], [128.583984375, -20.879342971957897], [128.583984375, -27.916766641249065] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "stroke-opacity": 1, "fill": "#00F", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [125.33203125, -31.353636941500987], [141.15234374999997, -31.353636941500987], [141.15234374999997, -16.804541076383455], [125.33203125, -16.804541076383455], [125.33203125, -31.353636941500987] ] ] } } ] } ================================================ FILE: packages/turf-difference/test/out/create-hole.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6, "stroke-opacity": 1, "fill": "#F00", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [121, -31], [144, -31], [144, -15], [121, -15], [121, -31] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "stroke-opacity": 1, "fill": "#00F", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [126, -28], [140, -28], [140, -20], [126, -20], [126, -28] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 1, "fill": "#0F0" }, "geometry": { "type": "Polygon", "coordinates": [ [ [121, -31], [144, -31], [144, -15], [121, -15], [121, -31] ], [ [126, -28], [126, -20], [140, -20], [140, -28], [126, -28] ] ] } } ] } ================================================ FILE: packages/turf-difference/test/out/issue-#721-inverse.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "stroke-opacity": 1, "fill": "#F00", "fill-opacity": 0.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-0.6462588068806041, 44.80608667910215], [-0.6461987, 44.8060367], [-0.6461042, 44.8059451], [-0.6461041344154722, 44.805944903377586], [-0.6461991369724274, 44.80603699057963], [-0.6462588068806041, 44.80608667910215] ] ], [ [ [-0.646069093721612, 44.80583985137739], [-0.6460542, 44.8057952], [-0.6460421, 44.8056729], [-0.6460471709105139, 44.80564743856641], [-0.6460422277450562, 44.805672561504906], [-0.6460542976856232, 44.80579530680288], [-0.646069093721612, 44.80583985137739] ] ], [ [ [-0.646093673696575, 44.80541109474097], [-0.6461073, 44.8053383], [-0.6461158838109077, 44.80524109574131], [-0.646107941865921, 44.80533857879061], [-0.646093673696575, 44.80541109474097] ] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6, "stroke-opacity": 1, "fill": "#00F", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6474134, 44.805326], [-0.6471907, 44.8053946], [-0.6465049, 44.8055554], [-0.6464734, 44.8056645], [-0.6465119, 44.8057959], [-0.6465922, 44.8059124], [-0.6466376, 44.8059546], [-0.6466831, 44.8059719], [-0.6467005, 44.8059967], [-0.6466971, 44.8060413], [-0.64662, 44.806065], [-0.64649, 44.80611], [-0.646437, 44.806159], [-0.6463809, 44.8061882], [-0.6461987, 44.8060367], [-0.6461042, 44.8059451], [-0.6460542, 44.8057952], [-0.6460421, 44.8056729], [-0.6460848, 44.8054585], [-0.6461073, 44.8053383], [-0.6461218, 44.8051741], [-0.6460827, 44.8050017], [-0.6460168, 44.8047948], [-0.645829, 44.8043891], [-0.646075, 44.8042943], [-0.6462847, 44.8042192], [-0.6465997, 44.8047375], [-0.6469113, 44.8048572], [-0.6472295, 44.8050484], [-0.6474134, 44.805326] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 1, "fill": "#0F0" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-0.6462588068806041, 44.80608667910215], [-0.6462588068796641, 44.80608667910137], [-0.6461987, 44.8060367], [-0.6462588068806041, 44.80608667910215] ] ], [ [ [-0.6461042, 44.8059451], [-0.6461041344154723, 44.805944903377586], [-0.6461041344154722, 44.805944903377586], [-0.6461042, 44.8059451] ] ], [ [ [-0.6460471709105139, 44.80564743856641], [-0.6460421, 44.8056729], [-0.6460471709104708, 44.80564743856663], [-0.6460471709105139, 44.80564743856641] ] ] ] } } ] } ================================================ FILE: packages/turf-difference/test/out/issue-#721.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6, "stroke-opacity": 1, "fill": "#F00", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6474134, 44.805326], [-0.6471907, 44.8053946], [-0.6465049, 44.8055554], [-0.6464734, 44.8056645], [-0.6465119, 44.8057959], [-0.6465922, 44.8059124], [-0.6466376, 44.8059546], [-0.6466831, 44.8059719], [-0.6467005, 44.8059967], [-0.6466971, 44.8060413], [-0.64662, 44.806065], [-0.64649, 44.80611], [-0.646437, 44.806159], [-0.6463809, 44.8061882], [-0.6461987, 44.8060367], [-0.6461042, 44.8059451], [-0.6460542, 44.8057952], [-0.6460421, 44.8056729], [-0.6460848, 44.8054585], [-0.6461073, 44.8053383], [-0.6461218, 44.8051741], [-0.6460827, 44.8050017], [-0.6460168, 44.8047948], [-0.645829, 44.8043891], [-0.646075, 44.8042943], [-0.6462847, 44.8042192], [-0.6465997, 44.8047375], [-0.6469113, 44.8048572], [-0.6472295, 44.8050484], [-0.6474134, 44.805326] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "stroke-opacity": 1, "fill": "#00F", "fill-opacity": 0.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-0.6462588068806041, 44.80608667910215], [-0.6461987, 44.8060367], [-0.6461042, 44.8059451], [-0.6461041344154722, 44.805944903377586], [-0.6461991369724274, 44.80603699057963], [-0.6462588068806041, 44.80608667910215] ] ], [ [ [-0.646069093721612, 44.80583985137739], [-0.6460542, 44.8057952], [-0.6460421, 44.8056729], [-0.6460471709105139, 44.80564743856641], [-0.6460422277450562, 44.805672561504906], [-0.6460542976856232, 44.80579530680288], [-0.646069093721612, 44.80583985137739] ] ], [ [ [-0.646093673696575, 44.80541109474097], [-0.6461073, 44.8053383], [-0.6461158838109077, 44.80524109574131], [-0.646107941865921, 44.80533857879061], [-0.646093673696575, 44.80541109474097] ] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 1, "fill": "#0F0" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6474134, 44.805326], [-0.6472295, 44.8050484], [-0.6469113, 44.8048572], [-0.6465997, 44.8047375], [-0.6462847, 44.8042192], [-0.646075, 44.8042943], [-0.645829, 44.8043891], [-0.6460168, 44.8047948], [-0.6460827, 44.8050017], [-0.6461218, 44.8051741], [-0.6461073, 44.8053383], [-0.6460848, 44.8054585], [-0.6460471709104708, 44.80564743856663], [-0.6460422277450562, 44.805672561504906], [-0.6460542976856232, 44.80579530680288], [-0.646069093721612, 44.80583985137739], [-0.6460542, 44.8057952], [-0.6461041344154723, 44.805944903377586], [-0.6461991369724274, 44.80603699057963], [-0.6462588068796641, 44.80608667910137], [-0.6463809, 44.8061882], [-0.646437, 44.806159], [-0.64649, 44.80611], [-0.64662, 44.806065], [-0.6466971, 44.8060413], [-0.6467005, 44.8059967], [-0.6466831, 44.8059719], [-0.6466376, 44.8059546], [-0.6465922, 44.8059124], [-0.6465119, 44.8057959], [-0.6464734, 44.8056645], [-0.6465049, 44.8055554], [-0.6471907, 44.8053946], [-0.6474134, 44.805326] ], [ [-0.6461073, 44.8053383], [-0.6461158838109077, 44.80524109574131], [-0.646107941865921, 44.80533857879061], [-0.646093673696575, 44.80541109474097], [-0.6461073, 44.8053383] ] ] } } ] } ================================================ FILE: packages/turf-difference/test/out/jsts/clip-polygons.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill-opacity": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [139.5703125, -29.075375179558346], [139.5703125, -34.52466147177172], [127.705078125, -34.52466147177172], [127.705078125, -15.28418511407642], [133.154296875, -15.28418511407642], [133.154296875, -29.075375179558346], [139.5703125, -29.075375179558346] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6, "stroke-opacity": 1, "fill": "#F00", "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [127.705078125, -34.52466147177172], [139.5703125, -34.52466147177172], [139.5703125, -15.28418511407642], [127.705078125, -15.28418511407642], [127.705078125, -34.52466147177172] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "stroke-opacity": 1, "fill": "#00F", "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [133.154296875, -29.075375179558346], [144.228515625, -29.075375179558346], [144.228515625, -12.983147716796566], [133.154296875, -12.983147716796566], [133.154296875, -29.075375179558346] ] ] } } ] } ================================================ FILE: packages/turf-difference/test/out/jsts/completely-overlapped.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6, "stroke-opacity": 1, "fill": "#F00", "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [128.583984375, -27.916766641249065], [137.8125, -27.916766641249065], [137.8125, -20.879342971957897], [128.583984375, -20.879342971957897], [128.583984375, -27.916766641249065] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "stroke-opacity": 1, "fill": "#00F", "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [125.33203125, -31.353636941500987], [141.15234374999997, -31.353636941500987], [141.15234374999997, -16.804541076383455], [125.33203125, -16.804541076383455], [125.33203125, -31.353636941500987] ] ] } } ] } ================================================ FILE: packages/turf-difference/test/out/jsts/create-hole.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill-opacity": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [121, -31], [121, -15], [144, -15], [144, -31], [121, -31] ], [ [126, -28], [140, -28], [140, -20], [126, -20], [126, -28] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6, "stroke-opacity": 1, "fill": "#F00", "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [121, -31], [144, -31], [144, -15], [121, -15], [121, -31] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "stroke-opacity": 1, "fill": "#00F", "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [126, -28], [140, -28], [140, -20], [126, -20], [126, -28] ] ] } } ] } ================================================ FILE: packages/turf-difference/test/out/jsts/issue-#721-inverse.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "stroke-opacity": 1, "fill": "#00F", "fill-opacity": 0.1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-0.6462588068806041, 44.80608667910215], [-0.6461987, 44.8060367], [-0.6461042, 44.8059451], [-0.6461041344154722, 44.805944903377586], [-0.6461991369724274, 44.80603699057963], [-0.6462588068806041, 44.80608667910215] ] ], [ [ [-0.646069093721612, 44.80583985137739], [-0.6460542, 44.8057952], [-0.6460421, 44.8056729], [-0.6460471709105139, 44.80564743856641], [-0.6460422277450562, 44.805672561504906], [-0.6460542976856232, 44.80579530680288], [-0.646069093721612, 44.80583985137739] ] ], [ [ [-0.646093673696575, 44.80541109474097], [-0.6461073, 44.8053383], [-0.6461158838109077, 44.80524109574131], [-0.646107941865921, 44.80533857879061], [-0.646093673696575, 44.80541109474097] ] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6, "stroke-opacity": 1, "fill": "#F00", "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6474134, 44.805326], [-0.6471907, 44.8053946], [-0.6465049, 44.8055554], [-0.6464734, 44.8056645], [-0.6465119, 44.8057959], [-0.6465922, 44.8059124], [-0.6466376, 44.8059546], [-0.6466831, 44.8059719], [-0.6467005, 44.8059967], [-0.6466971, 44.8060413], [-0.64662, 44.806065], [-0.64649, 44.80611], [-0.646437, 44.806159], [-0.6463809, 44.8061882], [-0.6461987, 44.8060367], [-0.6461042, 44.8059451], [-0.6460542, 44.8057952], [-0.6460421, 44.8056729], [-0.6460848, 44.8054585], [-0.6461073, 44.8053383], [-0.6461218, 44.8051741], [-0.6460827, 44.8050017], [-0.6460168, 44.8047948], [-0.645829, 44.8043891], [-0.646075, 44.8042943], [-0.6462847, 44.8042192], [-0.6465997, 44.8047375], [-0.6469113, 44.8048572], [-0.6472295, 44.8050484], [-0.6474134, 44.805326] ] ] } } ] } ================================================ FILE: packages/turf-difference/test/out/jsts/issue-#721.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill-opacity": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6474134, 44.805326], [-0.6471907, 44.8053946], [-0.6465049, 44.8055554], [-0.6464734, 44.8056645], [-0.6465119, 44.8057959], [-0.6465922, 44.8059124], [-0.6466376, 44.8059546], [-0.6466831, 44.8059719], [-0.6467005, 44.8059967], [-0.6466971, 44.8060413], [-0.64662, 44.806065], [-0.64649, 44.80611], [-0.646437, 44.806159], [-0.6463809, 44.8061882], [-0.6461987, 44.8060367], [-0.6461042, 44.8059451], [-0.6460542, 44.8057952], [-0.6460421, 44.8056729], [-0.6460848, 44.8054585], [-0.6461073, 44.8053383], [-0.6461218, 44.8051741], [-0.6460827, 44.8050017], [-0.6460168, 44.8047948], [-0.645829, 44.8043891], [-0.646075, 44.8042943], [-0.6462847, 44.8042192], [-0.6465997, 44.8047375], [-0.6469113, 44.8048572], [-0.6472295, 44.8050484], [-0.6474134, 44.805326] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6, "stroke-opacity": 1, "fill": "#F00", "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6474134, 44.805326], [-0.6471907, 44.8053946], [-0.6465049, 44.8055554], [-0.6464734, 44.8056645], [-0.6465119, 44.8057959], [-0.6465922, 44.8059124], [-0.6466376, 44.8059546], [-0.6466831, 44.8059719], [-0.6467005, 44.8059967], [-0.6466971, 44.8060413], [-0.64662, 44.806065], [-0.64649, 44.80611], [-0.646437, 44.806159], [-0.6463809, 44.8061882], [-0.6461987, 44.8060367], [-0.6461042, 44.8059451], [-0.6460542, 44.8057952], [-0.6460421, 44.8056729], [-0.6460848, 44.8054585], [-0.6461073, 44.8053383], [-0.6461218, 44.8051741], [-0.6460827, 44.8050017], [-0.6460168, 44.8047948], [-0.645829, 44.8043891], [-0.646075, 44.8042943], [-0.6462847, 44.8042192], [-0.6465997, 44.8047375], [-0.6469113, 44.8048572], [-0.6472295, 44.8050484], [-0.6474134, 44.805326] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "stroke-opacity": 1, "fill": "#00F", "fill-opacity": 0.1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-0.6462588068806041, 44.80608667910215], [-0.6461987, 44.8060367], [-0.6461042, 44.8059451], [-0.6461041344154722, 44.805944903377586], [-0.6461991369724274, 44.80603699057963], [-0.6462588068806041, 44.80608667910215] ] ], [ [ [-0.646069093721612, 44.80583985137739], [-0.6460542, 44.8057952], [-0.6460421, 44.8056729], [-0.6460471709105139, 44.80564743856641], [-0.6460422277450562, 44.805672561504906], [-0.6460542976856232, 44.80579530680288], [-0.646069093721612, 44.80583985137739] ] ], [ [ [-0.646093673696575, 44.80541109474097], [-0.6461073, 44.8053383], [-0.6461158838109077, 44.80524109574131], [-0.646107941865921, 44.80533857879061], [-0.646093673696575, 44.80541109474097] ] ] ] } } ] } ================================================ FILE: packages/turf-difference/test/out/jsts/multi-polygon-input.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill-opacity": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [126.298828125, -25.562265014427492], [123.134765625, -25.562265014427492], [123.134765625, -13.068776734357694], [136.142578125, -13.068776734357694], [136.142578125, -25.562265014427492], [131.8359375, -25.562265014427492], [131.8359375, -18.396230138028812], [126.298828125, -18.396230138028812], [126.298828125, -25.562265014427492] ] ], [ [ [131.8359375, -28.38173504322308], [134.560546875, -28.38173504322308], [134.560546875, -39.57182223734373], [119.53125, -39.57182223734373], [119.53125, -28.38173504322308], [126.298828125, -28.38173504322308], [126.298828125, -35.81781315869662], [131.8359375, -35.81781315869662], [131.8359375, -28.38173504322308] ] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6, "stroke-opacity": 1, "fill": "#F00", "fill-opacity": 0.1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [123.134765625, -25.562265014427492], [136.142578125, -25.562265014427492], [136.142578125, -13.068776734357694], [123.134765625, -13.068776734357694], [123.134765625, -25.562265014427492] ] ], [ [ [119.53125, -39.57182223734373], [134.560546875, -39.57182223734373], [134.560546875, -28.38173504322308], [119.53125, -28.38173504322308], [119.53125, -39.57182223734373] ] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "stroke-opacity": 1, "fill": "#00F", "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [126.298828125, -35.81781315869662], [131.8359375, -35.81781315869662], [131.8359375, -18.396230138028812], [126.298828125, -18.396230138028812], [126.298828125, -35.81781315869662] ] ] } } ] } ================================================ FILE: packages/turf-difference/test/out/jsts/multi-polygon-target.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill-opacity": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [128.8916015625, -30.713503990354965], [127.66113281249999, -30.713503990354965], [127.66113281249999, -20.2209657795223], [128.8916015625, -20.2209657795223], [128.8916015625, -30.713503990354965] ] ], [ [ [136.23046875, -30.713503990354965], [130.6494140625, -30.713503990354965], [130.6494140625, -20.2209657795223], [136.23046875, -20.2209657795223], [136.23046875, -30.713503990354965] ], [ [132.38525390625, -27.313213898568247], [135.1318359375, -27.313213898568247], [135.1318359375, -24.467150664738988], [132.38525390625, -24.467150664738988], [132.38525390625, -27.313213898568247] ] ], [ [ [138.6474609375, -20.2209657795223], [140.7568359375, -20.2209657795223], [140.7568359375, -30.713503990354965], [138.6474609375, -30.713503990354965], [138.6474609375, -20.2209657795223] ] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6, "stroke-opacity": 1, "fill": "#F00", "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [127.66113281249999, -30.713503990354965], [140.7568359375, -30.713503990354965], [140.7568359375, -20.2209657795223], [127.66113281249999, -20.2209657795223], [127.66113281249999, -30.713503990354965] ], [ [132.38525390625, -27.313213898568247], [135.1318359375, -27.313213898568247], [135.1318359375, -24.467150664738988], [132.38525390625, -24.467150664738988], [132.38525390625, -27.313213898568247] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "stroke-opacity": 1, "fill": "#00F", "fill-opacity": 0.1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [128.8916015625, -31.84023266790935], [130.6494140625, -31.84023266790935], [130.6494140625, -18.646245142670598], [128.8916015625, -18.646245142670598], [128.8916015625, -31.84023266790935] ] ], [ [ [136.23046875, -32.175612478499325], [138.6474609375, -32.175612478499325], [138.6474609375, -18.729501999072138], [136.23046875, -18.729501999072138], [136.23046875, -32.175612478499325] ] ] ] } } ] } ================================================ FILE: packages/turf-difference/test/out/jsts/split-polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill-opacity": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [127.705078125, -29.22889003019423], [122.51953124999999, -29.22889003019423], [122.51953124999999, -21.53484700204879], [127.705078125, -21.53484700204879], [127.705078125, -29.22889003019423] ] ], [ [ [139.5703125, -21.53484700204879], [144.228515625, -21.53484700204879], [144.228515625, -29.22889003019423], [139.5703125, -29.22889003019423], [139.5703125, -21.53484700204879] ] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6, "stroke-opacity": 1, "fill": "#F00", "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [122.51953124999999, -29.22889003019423], [144.228515625, -29.22889003019423], [144.228515625, -21.53484700204879], [122.51953124999999, -21.53484700204879], [122.51953124999999, -29.22889003019423] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "stroke-opacity": 1, "fill": "#00F", "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [127.705078125, -34.52466147177172], [139.5703125, -34.52466147177172], [139.5703125, -15.28418511407642], [127.705078125, -15.28418511407642], [127.705078125, -34.52466147177172] ] ] } } ] } ================================================ FILE: packages/turf-difference/test/out/multi-polygon-input.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6, "stroke-opacity": 1, "fill": "#F00", "fill-opacity": 0.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [123.134765625, -25.562265014427492], [136.142578125, -25.562265014427492], [136.142578125, -13.068776734357694], [123.134765625, -13.068776734357694], [123.134765625, -25.562265014427492] ] ], [ [ [119.53125, -39.57182223734373], [134.560546875, -39.57182223734373], [134.560546875, -28.38173504322308], [119.53125, -28.38173504322308], [119.53125, -39.57182223734373] ] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "stroke-opacity": 1, "fill": "#00F", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [126.298828125, -35.81781315869662], [131.8359375, -35.81781315869662], [131.8359375, -18.396230138028812], [126.298828125, -18.396230138028812], [126.298828125, -35.81781315869662] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 1, "fill": "#0F0" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [119.53125, -39.57182223734373], [134.560546875, -39.57182223734373], [134.560546875, -28.38173504322308], [131.8359375, -28.38173504322308], [131.8359375, -35.81781315869662], [126.298828125, -35.81781315869662], [126.298828125, -28.38173504322308], [119.53125, -28.38173504322308], [119.53125, -39.57182223734373] ] ], [ [ [123.134765625, -25.562265014427492], [126.298828125, -25.562265014427492], [126.298828125, -18.396230138028812], [131.8359375, -18.396230138028812], [131.8359375, -25.562265014427492], [136.142578125, -25.562265014427492], [136.142578125, -13.068776734357694], [123.134765625, -13.068776734357694], [123.134765625, -25.562265014427492] ] ] ] } } ] } ================================================ FILE: packages/turf-difference/test/out/multi-polygon-target.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6, "stroke-opacity": 1, "fill": "#F00", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [127.66113281249999, -30.713503990354965], [140.7568359375, -30.713503990354965], [140.7568359375, -20.2209657795223], [127.66113281249999, -20.2209657795223], [127.66113281249999, -30.713503990354965] ], [ [132.38525390625, -27.313213898568247], [135.1318359375, -27.313213898568247], [135.1318359375, -24.467150664738988], [132.38525390625, -24.467150664738988], [132.38525390625, -27.313213898568247] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "stroke-opacity": 1, "fill": "#00F", "fill-opacity": 0.5 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [128.8916015625, -31.84023266790935], [130.6494140625, -31.84023266790935], [130.6494140625, -18.646245142670598], [128.8916015625, -18.646245142670598], [128.8916015625, -31.84023266790935] ] ], [ [ [136.23046875, -32.175612478499325], [138.6474609375, -32.175612478499325], [138.6474609375, -18.729501999072138], [136.23046875, -18.729501999072138], [136.23046875, -32.175612478499325] ] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 1, "fill": "#0F0" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [127.66113281249999, -30.713503990354965], [128.8916015625, -30.713503990354965], [128.8916015625, -20.2209657795223], [127.66113281249999, -20.2209657795223], [127.66113281249999, -30.713503990354965] ] ], [ [ [130.6494140625, -30.713503990354965], [136.23046875, -30.713503990354965], [136.23046875, -20.2209657795223], [130.6494140625, -20.2209657795223], [130.6494140625, -30.713503990354965] ], [ [132.38525390625, -27.313213898568247], [132.38525390625, -24.467150664738988], [135.1318359375, -24.467150664738988], [135.1318359375, -27.313213898568247], [132.38525390625, -27.313213898568247] ] ], [ [ [138.6474609375, -30.713503990354965], [140.7568359375, -30.713503990354965], [140.7568359375, -20.2209657795223], [138.6474609375, -20.2209657795223], [138.6474609375, -30.713503990354965] ] ] ] } } ] } ================================================ FILE: packages/turf-difference/test/out/split-polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6, "stroke-opacity": 1, "fill": "#F00", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [122.51953124999999, -29.22889003019423], [144.228515625, -29.22889003019423], [144.228515625, -21.53484700204879], [122.51953124999999, -21.53484700204879], [122.51953124999999, -29.22889003019423] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "stroke-opacity": 1, "fill": "#00F", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [127.705078125, -34.52466147177172], [139.5703125, -34.52466147177172], [139.5703125, -15.28418511407642], [127.705078125, -15.28418511407642], [127.705078125, -34.52466147177172] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 1, "fill": "#0F0" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [122.51953124999999, -29.22889003019423], [127.705078125, -29.22889003019423], [127.705078125, -21.53484700204879], [122.51953124999999, -21.53484700204879], [122.51953124999999, -29.22889003019423] ] ], [ [ [139.5703125, -29.22889003019423], [144.228515625, -29.22889003019423], [144.228515625, -21.53484700204879], [139.5703125, -21.53484700204879], [139.5703125, -29.22889003019423] ] ] ] } } ] } ================================================ FILE: packages/turf-difference/test.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { glob } from "glob"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { featureCollection, polygon } from "@turf/helpers"; import { difference } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; test("turf-difference", (t) => { glob.sync(directories.in + "*.geojson").forEach((filepath) => { const { name, base } = path.parse(filepath); const [polygon1, polygon2] = loadJsonFileSync(filepath).features; if (name.includes("skip")) return t.skip(name); // Red Polygon1 polygon1.properties = Object.assign(polygon1.properties || {}, { "fill-opacity": 0.5, fill: "#F00", }); // Blue Polygon2 polygon2.properties = Object.assign(polygon2.properties || {}, { "fill-opacity": 0.5, fill: "#00F", }); const results = featureCollection([polygon1, polygon2]); const result = difference(results); if (result) { // Green Polygon result.properties = { "fill-opacity": 1, fill: "#0F0" }; results.features.push(result); } if (process.env.REGEN) writeJsonFileSync(directories.out + base, results); t.deepEqual(results, loadJsonFileSync(directories.out + base), name); }); t.end(); }); test("turf-difference - support specific polygons", (t) => { const poly1 = polygon([ [ [121, -31], [144, -31], [144, -15], [121, -15], [121, -31], ], ]); const poly2 = polygon([ [ [126, -28], [140, -28], [140, -20], [126, -20], [126, -28], ], ]); t.assert( difference(featureCollection([poly1, poly2])), "geometry object support" ); t.end(); }); test("turf-difference - prevent input mutation", (t) => { const poly1 = polygon([ [ [121, -31], [144, -31], [144, -15], [121, -15], [121, -31], ], ]); const poly2 = polygon([ [ [126, -28], [140, -28], [140, -20], [126, -20], [126, -28], ], ]); const before1 = JSON.parse(JSON.stringify(poly1)); const before2 = JSON.parse(JSON.stringify(poly2)); difference(featureCollection([poly1, poly2])); t.deepEqual(poly1, before1, "polygon1 should not mutate"); t.deepEqual(poly2, before2, "polygon2 should not mutate"); t.end(); }); test("turf-difference - complete overlap", (t) => { const poly = polygon([ [ [121, -31], [144, -31], [144, -15], [121, -15], [121, -31], ], ]); const result = difference(featureCollection([poly, poly])); t.deepEqual(result, null, "difference should be null"); t.end(); }); test("difference - unable to complete output ring - issue 2409", (t) => { // Test examples copied from https://github.com/Turfjs/turf/issues/2409 const area1 = polygon([ [ [11.79926, 59.307999], [18.80383, 60.15596], [18.73765340635914, 60.23951348693759], [18.58133, 60.34301], [11.79926, 59.307999], ], ]); const area1_subtract = polygon([ [ [11.79926, 59.307999], [18.80383, 60.15596], [ 18.73765340635913, // Subtract 1 to final digit 60.23951348693759, ], [18.58133, 60.34301], [11.79926, 59.307999], ], ]); const area1_add = polygon([ [ [11.79926, 59.307999], [18.80383, 60.15596], [ 18.73765340635915, // Add 1 to final digit 60.23951348693759, ], [18.58133, 60.34301], [11.79926, 59.307999], ], ]); const area2 = polygon([ [ [18.35554, 60.35768], [18.58133, 60.34301], [18.75959, 60.22499], [18.80383, 60.15596], [18.35554, 60.35768], ], ]); t.doesNotThrow( () => difference(featureCollection([area1, area2])), "[area1, area2] should not throw" ); t.doesNotThrow( () => difference(featureCollection([area1_subtract, area2])), "[area1_subtract, area2] should not throw" ); t.doesNotThrow( () => difference(featureCollection([area1_add, area2])), "[area1_add, area2] should not throw" ); t.end(); }); test("difference - unable to complete output ring - issue 2277", (t) => { // Test example copied from https://github.com/Turfjs/turf/issues/2277 const poly1 = polygon([ [ [54.56658645236534, 24.445194105819738], [54.56658654953498, 24.441605817571325], [54.57000000000001, 24.43981171174874], [54.57341345046501, 24.441605817571325], [54.573413547634665, 24.445194105819738], [54.57000000000001, 24.44698828825126], [54.56658645236534, 24.445194105819738], ], [ [54.56795530519258, 24.44447467409078], [54.57000000000001, 24.4455493756693], [54.57204469480743, 24.44447467409078], [54.57204465994316, 24.442325298422087], [54.57000000000001, 24.441250624330703], [54.56795534005685, 24.442325298422087], [54.56795530519258, 24.44447467409078], ], ]); const poly2 = polygon([ [ [54.569778932416476, 24.441366817541834], [54.56977894449294, 24.441074136738756], [54.57000000000001, 24.441190327160086], [54.57084694057397, 24.440745161222193], [54.57084693745136, 24.44028034081218], [54.571147760242575, 24.44043845608456], [54.57114771720956, 24.441853864959285], [54.57080496898934, 24.4416737163564], [54.57080502276297, 24.441026402022757], [54.57074511559248, 24.441057889217532], [54.57074509421786, 24.441642246152345], [54.57000000000001, 24.441250624330703], [54.569778932416476, 24.441366817541834], ], ]); t.doesNotThrow( () => difference(featureCollection([poly1, poly2])), "[poly1, poly2] should not throw" ); t.end(); }); test("difference - maximum call stack size exceeded - issue 2479", (t) => { // Test example copied from https://github.com/Turfjs/turf/issues/2479 const poly1 = polygon([ [ [49.93317115095019, 20.170898437500004], [49.93927561914192, 20.16278743743897], [49.941126142253154, 20.165448188781742], [49.934096538617936, 20.174009799957275], [49.93317115095019, 20.170898437500004], ], ]); const poly2 = polygon([ [ [49.93317115095019, 20.170898437500004], [49.933680058500165, 20.170222252607346], [49.933758735535065, 20.170222252607346], [49.933803934349285, 20.170152112841606], [49.933803934349285, 20.170057658905122], [49.934306839656294, 20.169389449185992], [49.93434632011994, 20.16945071518421], [49.93434632011994, 20.16959099471569], [49.93448191656261, 20.16980141401291], [49.93457231419105, 20.16980141401291], [49.93466271181949, 20.16966113448143], [49.93484350707638, 20.16966113448143], [49.93520509759015, 20.169100016355515], [49.93529549521859, 20.169100016355515], [49.935928278617695, 20.168118059635166], [49.936018676246135, 20.168118059635166], [49.93660626083101, 20.167206242680553], [49.93660626083101, 20.167065963149074], [49.9367870560879, 20.166785404086117], [49.9367870560879, 20.166645124554638], [49.93714864660167, 20.166084006428722], [49.93714864660167, 20.165613543475054], [49.93742361679489, 20.16524819088677], [49.93755543592966, 20.165452748537067], [49.938504611028314, 20.16397981345654], [49.938504611028314, 20.163811875057462], [49.93927561914192, 20.16278743743897], [49.941126142253154, 20.165448188781742], [49.93988364085967, 20.16696147663808], [49.93981537664073, 20.166855543851856], [49.93958938256963, 20.167206242680553], [49.93958938256963, 20.167319864563666], [49.934096538617936, 20.174009799957275], [49.93317115095019, 20.170898437500004], ], ]); t.doesNotThrow( () => difference(featureCollection([poly1, poly2])), "[poly1, poly2] should not throw" ); t.end(); }); test("difference - unable to find segment - issue 2306", (t) => { // Test example copied from https://github.com/Turfjs/turf/issues/2306 const poly1 = polygon([ [ [10.299138347373786, 48.460352133145804], [10.299142854373908, 48.46034913552448], [10.299142854373908, 48.460339214732976], [10.299225267807545, 48.46033958029495], [10.29927355737747, 48.46034017606536], [10.29927355737747, 48.46034613790316], [10.299266796877285, 48.46035363195647], [10.299257782877039, 48.46035363195647], [10.299251022376856, 48.46035812838846], [10.299251022376856, 48.46036507625937], [10.299195961284822, 48.4603647734974], [10.299201445375504, 48.46036112600978], [10.29919468487532, 48.460356629577795], [10.299187924375136, 48.46035812838846], [10.299187924375136, 48.46036112600978], [10.299193387184792, 48.460364759343314], [10.299138347373786, 48.460364456698365], [10.299138347373786, 48.460352133145804], ], [ [10.299142854373908, 48.46035812838846], [10.299145107873969, 48.46035962719912], [10.2991608823744, 48.46035812838846], [10.299158628874338, 48.46035363195647], [10.299149614874093, 48.46035363195647], [10.299142854373908, 48.46035812838846], ], ]); const poly2 = polygon([ [ [10.299138347373786, 48.46036049139952], [10.299187924375136, 48.46036028454162], [10.299187924375136, 48.46036112600978], [10.29919468487532, 48.46036562244176], [10.299201445375504, 48.46036112600978], [10.299200103800315, 48.46036023372349], [10.299208777179729, 48.46036019753419], [10.299209806197382, 48.46031596598246], [10.299250947482829, 48.460316111877646], [10.299251022376856, 48.460316161689924], [10.299251022376856, 48.46031915931125], [10.299257677970186, 48.46032358596932], [10.299256707063519, 48.46035434748375], [10.299251022376856, 48.46035812838846], [10.299251022376856, 48.4603761141164], [10.299246515376732, 48.46037911173772], [10.299246515376732, 48.4603872476338], [10.29919425093356, 48.460374326689575], [10.299190177875197, 48.460371617684416], [10.299188312254989, 48.46037285851485], [10.299138347373786, 48.460360506074], [10.299138347373786, 48.46036049139952], ], ]); t.doesNotThrow( () => difference(featureCollection([poly1, poly2])), "[poly1, poly2] should not throw" ); t.end(); }); ================================================ FILE: packages/turf-difference/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-directional-mean/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-directional-mean/README.md ================================================ # @turf/directional-mean ## DirectionalMeanLine Type: [Object][1] ### Properties * `cartesianAngle` **[number][2]** the mean angle of all lines. (measure from due earth counterclockwise). * `bearingAngle` **[number][2]** the mean angle of all lines. (bearing). * `circularVariance` **[number][2]** the extent to which features all point in the same direction. the value ranges 0-1, the bigger the value, the more variation in directions between lines. * `averageX` **[number][2]** the centroid of all lines. * `averageY` **[number][2]** the centroid of all line. * `averageLength` **[number][2]** the average length of line. * `countOfLines` **[number][2]** the count of features. ## directionalMean This module calculate the average angle of a set of lines, measuring the trend of it. It can be used in both project coordinate system and geography coordinate system. It can handle segments of line or the whole line. ### Parameters * `lines` **[FeatureCollection][3]<[LineString][4]>** * `options` **[object][1]** (optional, default `{}`) * `options.planar` **[boolean][5]** whether the spatial reference system is projected or geographical. (optional, default `true`) * `options.segment` **[boolean][5]** whether treat a LineString as a whole or a set of segments. (optional, default `false`) ### Examples ```javascript var lines = turf.lineStrings([ [[110, 45], [120, 50]], [[100, 50], [115, 55]], ]) var directionalMeanLine = turf.directionalMean(lines); // => directionalMeanLine ``` Returns **[DirectionalMeanLine][6]** Directional Mean Line [1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [3]: https://tools.ietf.org/html/rfc7946#section-3.3 [4]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean [6]: #directionalmeanline --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/directional-mean ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-directional-mean/bench.ts ================================================ import Benchmark from "benchmark"; import { directionalMean } from "./index.js"; import { glob } from "glob"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); /** * Benchmark Results * * bus_route_gps: 35.172ms * bus_route_gps segment: 543.932ms * bus_route_utm: 26.696ms * bus_route_utm segment: 482.157ms * bus_route_gps x 45.72 ops/sec ±2.32% (60 runs sampled) * bus_route_gps segment x 2.48 ops/sec ±6.68% (10 runs sampled) * bus_route_utm x 46.85 ops/sec ±3.21% (62 runs sampled) * bus_route_utm segment x 2.19 ops/sec ±3.18% (10 runs sampled) */ const suite = new Benchmark.Suite("turf-directional-mean"); glob.sync(path.join(__dirname, "test", "in", "*.json")).forEach((filepath) => { const { name } = path.parse(filepath); const geojson = loadJsonFileSync(filepath); if (name === "bus_route_gps.json") { console.time(name); directionalMean(geojson, { planar: false, }); console.timeEnd(name); console.time(name + " segment"); directionalMean(geojson, { planar: false, segment: true, }); console.timeEnd(name + " segment"); suite.add(name, () => directionalMean(geojson, { planar: false, }) ); suite.add(name + " segment", () => directionalMean(geojson, { planar: false, segment: true, }) ); } else { console.time(name); directionalMean(geojson, { planar: true, }); console.timeEnd(name); console.time(name + " segment"); directionalMean(geojson, { planar: true, segment: true, }); console.timeEnd(name + " segment"); suite.add(name, () => directionalMean(geojson, { planar: true, }) ); suite.add(name + " segment", () => directionalMean(geojson, { planar: true, segment: true, }) ); } }); suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-directional-mean/index.ts ================================================ import { Feature, FeatureCollection, LineString, Point } from "geojson"; import { bearing } from "@turf/bearing"; import { centroid } from "@turf/centroid"; import { destination } from "@turf/destination"; import { featureCollection, lineString, point } from "@turf/helpers"; import { getCoord } from "@turf/invariant"; import { length } from "@turf/length"; import { featureEach, segmentEach, segmentReduce } from "@turf/meta"; interface DirectionalMeanLine extends Feature { properties: { cartesianAngle: number; bearingAngle: number; circularVariance: number; averageX: number; averageY: number; averageLength: number; countOfLines: number; [key: string]: any; }; } /** * @typedef {Object} DirectionalMeanLine * @property {number} cartesianAngle the mean angle of all lines. (measure from due earth counterclockwise). * @property {number} bearingAngle the mean angle of all lines. (bearing). * @property {number} circularVariance the extent to which features all point in the same direction. * the value ranges 0-1, the bigger the value, the more variation in directions between lines. * @property {number} averageX the centroid of all lines. * @property {number} averageY the centroid of all line. * @property {number} averageLength the average length of line. * @property {number} countOfLines the count of features. */ /** * This module calculate the average angle of a set of lines, measuring the trend of it. * It can be used in both project coordinate system and geography coordinate system. * It can handle segments of line or the whole line. * * @function * @param {FeatureCollection} lines * @param {object} [options={}] * @param {boolean} [options.planar=true] whether the spatial reference system is projected or geographical. * @param {boolean} [options.segment=false] whether treat a LineString as a whole or a set of segments. * @returns {DirectionalMeanLine} Directional Mean Line * @example * * var lines = turf.lineStrings([ * [[110, 45], [120, 50]], * [[100, 50], [115, 55]], * ]) * var directionalMeanLine = turf.directionalMean(lines); * // => directionalMeanLine */ function directionalMean( lines: FeatureCollection, options: { planar?: boolean; segment?: boolean; } = {} ): DirectionalMeanLine { const isPlanar = !!options.planar; // you can't use options.planar || true here. const isSegment: boolean = options.segment ?? false; let sigmaSin = 0; let sigmaCos = 0; let countOfLines = 0; let sumOfLen = 0; const centroidList: Array> = []; if (isSegment) { segmentEach(lines, (currentSegment: any) => { // todo fix turf-meta's declaration file const [sin1, cos1]: [number, number] = getCosAndSin( currentSegment.geometry.coordinates, isPlanar ); const lenOfLine = getLengthOfLineString(currentSegment, isPlanar); if (isNaN(sin1) || isNaN(cos1)) { return; } else { sigmaSin += sin1; sigmaCos += cos1; countOfLines += 1; sumOfLen += lenOfLine; centroidList.push(centroid(currentSegment)); } }); // planar and segment } else { // planar and non-segment featureEach(lines, (currentFeature: Feature) => { if (currentFeature.geometry.type !== "LineString") { throw new Error("shold to support MultiLineString?"); } const [sin1, cos1]: [number, number] = getCosAndSin( currentFeature.geometry.coordinates, isPlanar ); const lenOfLine = getLengthOfLineString(currentFeature, isPlanar); if (isNaN(sin1) || isNaN(cos1)) { return; } else { sigmaSin += sin1; sigmaCos += cos1; countOfLines += 1; sumOfLen += lenOfLine; centroidList.push(centroid(currentFeature)); } }); } const cartesianAngle: number = getAngleBySinAndCos(sigmaSin, sigmaCos); const bearingAngle: number = bearingToCartesian(cartesianAngle); const circularVariance = getCircularVariance( sigmaSin, sigmaCos, countOfLines ); const averageLength = sumOfLen / countOfLines; const centroidOfLines = centroid(featureCollection(centroidList)); const [averageX, averageY]: number[] = getCoord(centroidOfLines); let meanLinestring; if (isPlanar) { meanLinestring = getMeanLineString( [averageX, averageY], cartesianAngle, averageLength, isPlanar ); } else { meanLinestring = getMeanLineString( [averageX, averageY], bearingAngle, averageLength, isPlanar ); } return lineString(meanLinestring, { averageLength, averageX, averageY, bearingAngle, cartesianAngle, circularVariance, countOfLines, }); } /** * get euclidean distance between two points. * @private * @name euclideanDistance * @param coords */ function euclideanDistance(coords: number[][]) { const [x0, y0]: number[] = coords[0]; const [x1, y1]: number[] = coords[1]; const dx: number = x1 - x0; const dy: number = y1 - y0; return Math.sqrt(Math.pow(dx, 2) + Math.pow(dy, 2)); } /** * get the length of a LineString, both in projected or geographical coordinate system. * @private * @name getLengthOfLineString * @param {Feature} line * @param {boolean} isPlanar */ function getLengthOfLineString(line: Feature, isPlanar: boolean) { if (isPlanar) { return segmentReduce( line, (previousValue?: number, segment?: Feature): number => { const coords = segment!.geometry.coordinates; // the signatrue of segmentReduce has problem ? return previousValue! + euclideanDistance(coords); }, 0 ); } else { return length(line, { units: "meters", }); } } /** * bearing to xy(from due earth counterclockwise 0-180) * convert between two forms * @private * @name bearingToCartesian * @param angle */ function bearingToCartesian(angle: number): number { let result = 90 - angle; if (result > 180) { result -= 360; } return result; } /** * @private * @name getCosAndSin * @param {Array>} coordinates * @returns {Array} [cos, sin] */ function getCosAndSin( coordinates: number[][], isPlanar: boolean ): [number, number] { const beginPoint: number[] = coordinates[0]; const endPoint: number[] = coordinates[coordinates.length - 1]; if (isPlanar) { const [x0, y0]: number[] = beginPoint; const [x1, y1]: number[] = endPoint; const dx: number = x1 - x0; const dy: number = y1 - y0; const h = Math.sqrt(Math.pow(dx, 2) + Math.pow(dy, 2)); if (h < 0.000000001) { return [NaN, NaN]; } const sin1 = dy / h; const cos1 = dx / h; return [sin1, cos1]; } else { const angle = bearingToCartesian(bearing(beginPoint, endPoint)); const radian = (angle * Math.PI) / 180; return [Math.sin(radian), Math.cos(radian)]; } } function getAngleBySinAndCos(sin1: number, cos1: number): number { let angle = 0; if (Math.abs(cos1) < 0.000000001) { angle = 90; } else { angle = (Math.atan2(sin1, cos1) * 180) / Math.PI; } if (sin1 >= 0) { if (cos1 < 0) { angle += 180; } } else { if (cos1 < 0) { angle -= 180; } } return angle; } function getCircularVariance(sin1: number, cos1: number, len: number) { if (len === 0) { throw new Error("the size of the features set must be greater than 0"); } return 1 - Math.sqrt(Math.pow(sin1, 2) + Math.pow(cos1, 2)) / len; } function getMeanLineString( centroidOfLine: number[], angle: number, lenOfLine: number, isPlanar: boolean ) { if (isPlanar) { const [averageX, averageY]: number[] = centroidOfLine; let beginX: number; let beginY: number; let endX: number; let endY: number; const r: number = (angle * Math.PI) / 180; const sin: number = Math.sin(r); const cos: number = Math.cos(r); beginX = averageX - (lenOfLine / 2) * cos; beginY = averageY - (lenOfLine / 2) * sin; endX = averageX + (lenOfLine / 2) * cos; endY = averageY + (lenOfLine / 2) * sin; return [ [beginX, beginY], [endX, endY], ]; } else { const end = destination(point(centroidOfLine), lenOfLine / 2, angle, { units: "meters", }); const begin = destination(point(centroidOfLine), -lenOfLine / 2, angle, { units: "meters", }); return [getCoord(begin), getCoord(end)]; } } export { directionalMean, DirectionalMeanLine }; export default directionalMean; ================================================ FILE: packages/turf-directional-mean/package.json ================================================ { "name": "@turf/directional-mean", "version": "7.3.4", "description": "Calculates the average angle of a set of lines, measuring the trend of it.", "author": "Turf Authors", "contributors": [ "Haoming Zhuang <@zhuang-hao-ming>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "directional-mean" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/bearing": "workspace:*", "@turf/centroid": "workspace:*", "@turf/destination": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/length": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-directional-mean/test/in/bus_route_gps.json ================================================ [File too large to display: 14.3 MB] ================================================ FILE: packages/turf-directional-mean/test/in/bus_route_utm.json ================================================ [File too large to display: 14.1 MB] ================================================ FILE: packages/turf-directional-mean/test/out/bus_route_gps.json ================================================ { "type": "Feature", "properties": { "cartesianAngle": -62.476236458143916, "bearingAngle": 152.47623645814392, "circularVariance": 0.9560327266298506, "averageX": 114.0481498585655, "averageY": 22.6359322404607, "averageLength": 24840.40218696326, "countOfLines": 539 }, "geometry": { "type": "LineString", "coordinates": [ [113.99218428178095, 22.734977926527673], [114.10403479999434, 22.536867163442935] ] } } ================================================ FILE: packages/turf-directional-mean/test/out/bus_route_gps1.json ================================================ { "type": "Feature", "properties": { "averageLength": 24840.40218696326, "averageX": 114.0481498585655, "averageY": 22.6359322404607, "bearingAngle": 152.47623645814392, "cartesianAngle": -62.476236458143916, "circularVariance": 0.9560327266298506, "countOfLines": 539 }, "geometry": { "type": "LineString", "coordinates": [ [113.99218428178095, 22.734977926527673], [114.10403479999434, 22.536867163442935] ] } } ================================================ FILE: packages/turf-directional-mean/test/out/bus_route_gps2.json ================================================ { "type": "Feature", "properties": { "averageLength": 48.42971829319359, "averageX": 114.06007706366387, "averageY": 22.632852642469093, "bearingAngle": 126.93706469097845, "cartesianAngle": -36.937064690978445, "circularVariance": 0.9946441590238705, "countOfLines": 276462 }, "geometry": { "type": "LineString", "coordinates": [ [114.05988847846298, 22.632983507994844], [114.06026564850558, 22.632721776722867] ] } } ================================================ FILE: packages/turf-directional-mean/test/out/bus_route_utm1.json ================================================ { "type": "Feature", "properties": { "averageLength": 24865.8833845794, "averageX": 813350.6889736726, "averageY": 2506449.133536962, "bearingAngle": 152.504692687896, "cartesianAngle": -62.504692687896025, "circularVariance": 0.9540978955813745, "countOfLines": 538 }, "geometry": { "type": "LineString", "coordinates": [ [807610.6986453704, 2517477.757664879], [819090.6793019747, 2495420.509409045] ] } } ================================================ FILE: packages/turf-directional-mean/test/out/bus_route_utm2.json ================================================ { "type": "Feature", "properties": { "averageLength": 48.416925614400036, "averageX": 814546.9056864326, "averageY": 2506121.0821411484, "bearingAngle": 125.92398812851624, "cartesianAngle": -35.92398812851625, "circularVariance": 0.9946649189247785, "countOfLines": 276462 }, "geometry": { "type": "LineString", "coordinates": [ [814527.3017683452, 2506135.2855233904], [814566.50960452, 2506106.8787589064] ] } } ================================================ FILE: packages/turf-directional-mean/test.ts ================================================ import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { directionalMean } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); test("turf-directional-mean", (t) => { const outGpsJsonPath1 = path.join( __dirname, "test", "out", "bus_route_gps1.json" ); const outGpsJsonPath2 = path.join( __dirname, "test", "out", "bus_route_gps2.json" ); const outUtmJsonPath1 = path.join( __dirname, "test", "out", "bus_route_utm1.json" ); const outUtmJsonPath2 = path.join( __dirname, "test", "out", "bus_route_utm2.json" ); const utmFilepath = path.join(__dirname, "test", "in", "bus_route_utm.json"); const utmGeojson = loadJsonFileSync(utmFilepath); const gpsFilepath = path.join(__dirname, "test", "in", "bus_route_gps.json"); const gpsGeojson = loadJsonFileSync(gpsFilepath); // utm let utmResult1 = directionalMean(utmGeojson, { planar: true, segment: false, }); t.deepEqual(utmResult1, loadJsonFileSync(outUtmJsonPath1), "utm"); // utm segment let utmResult2 = directionalMean(utmGeojson, { planar: true, segment: true, }); t.deepEqual(utmResult2, loadJsonFileSync(outUtmJsonPath2), "utm segment"); // gps let gpsResult1 = directionalMean(gpsGeojson, { planar: false, }); t.deepEqual(gpsResult1, loadJsonFileSync(outGpsJsonPath1), "gps"); // gps segment let gpsResult2 = directionalMean(gpsGeojson, { planar: false, segment: true, }); t.deepEqual(gpsResult2, loadJsonFileSync(outGpsJsonPath2), "gps segment"); if (process.env.REGEN) { writeJsonFileSync(outGpsJsonPath1, gpsResult1); writeJsonFileSync(outGpsJsonPath2, gpsResult2); writeJsonFileSync(outUtmJsonPath1, utmResult1); writeJsonFileSync(outUtmJsonPath2, utmResult2); } t.end(); }); ================================================ FILE: packages/turf-directional-mean/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-dissolve/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-dissolve/README.md ================================================ # @turf/dissolve ## dissolve Dissolves a FeatureCollection of [Polygon][1] features, filtered by an optional property name:value. Note that [MultiPolygon][2] features within the collection are not supported ### Parameters * `fc` **[FeatureCollection][3]<[Polygon][1]>** * `options` **[Object][4]** Optional parameters (optional, default `{}`) * `options.propertyName` **[string][5]?** features with the same `propertyName` value will be dissolved. * `featureCollection` **[FeatureCollection][3]<[Polygon][1]>** input feature collection to be dissolved ### Examples ```javascript var features = turf.featureCollection([ turf.polygon([[[0, 0], [0, 1], [1, 1], [1, 0], [0, 0]]], {combine: 'yes'}), turf.polygon([[[0, -1], [0, 0], [1, 0], [1, -1], [0,-1]]], {combine: 'yes'}), turf.polygon([[[1,-1],[1, 0], [2, 0], [2, -1], [1, -1]]], {combine: 'no'}), ]); var dissolved = turf.dissolve(features, {propertyName: 'combine'}); //addToMap var addToMap = [features, dissolved] ``` Returns **[FeatureCollection][3]<[Polygon][1]>** a FeatureCollection containing the dissolved polygons [1]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.7 [3]: https://tools.ietf.org/html/rfc7946#section-3.3 [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/dissolve ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-dissolve/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { dissolve } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); /** * Benchmark Results * * polysByProperty x 6,366 ops/sec ±1.49% (89 runs sampled) * polysWithoutProperty x 4,224 ops/sec ±2.34% (77 runs sampled) */ const suite = new Benchmark.Suite("turf-dissolve"); for (const { name, geojson } of fixtures) { const propertyName = geojson.propertyName; suite.add(name, () => dissolve(geojson, { propertyName })); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-dissolve/index.ts ================================================ import { Feature, FeatureCollection, Polygon } from "geojson"; import { featureCollection, isObject, multiPolygon } from "@turf/helpers"; import { collectionOf } from "@turf/invariant"; import { featureEach } from "@turf/meta"; import { flatten } from "@turf/flatten"; import * as polyclip from "polyclip-ts"; /** * Dissolves a FeatureCollection of {@link Polygon} features, filtered by an optional property name:value. * Note that {@link MultiPolygon} features within the collection are not supported * * @function * @param {FeatureCollection} featureCollection input feature collection to be dissolved * @param {Object} [options={}] Optional parameters * @param {string} [options.propertyName] features with the same `propertyName` value will be dissolved. * @returns {FeatureCollection} a FeatureCollection containing the dissolved polygons * @example * var features = turf.featureCollection([ * turf.polygon([[[0, 0], [0, 1], [1, 1], [1, 0], [0, 0]]], {combine: 'yes'}), * turf.polygon([[[0, -1], [0, 0], [1, 0], [1, -1], [0,-1]]], {combine: 'yes'}), * turf.polygon([[[1,-1],[1, 0], [2, 0], [2, -1], [1, -1]]], {combine: 'no'}), * ]); * * var dissolved = turf.dissolve(features, {propertyName: 'combine'}); * * //addToMap * var addToMap = [features, dissolved] */ function dissolve( fc: FeatureCollection, options: { propertyName?: string; } = {} ): FeatureCollection { // Optional parameters options = options || {}; if (!isObject(options)) throw new Error("options is invalid"); const { propertyName } = options; // Input validation collectionOf(fc, "Polygon", "dissolve"); // Main const outFeatures = []; if (!propertyName) { return flatten( multiPolygon( polyclip.union.apply( null, // List of polygons expressed as Position[][][] a.k.a. Geom[] fc.features.map(function (f) { return f.geometry.coordinates; }) as [polyclip.Geom, ...polyclip.Geom[]] ) ) ); } else { // Group polygons by the value of their property named by propertyName const uniquePropertyVals: { [key: string]: Feature[] } = {}; featureEach(fc, function (feature) { if (feature.properties) { if ( !Object.prototype.hasOwnProperty.call( uniquePropertyVals, feature.properties[propertyName] ) ) { uniquePropertyVals[feature.properties[propertyName]] = [] as Feature[]; } uniquePropertyVals[feature.properties[propertyName]].push(feature); } }); const vals = Object.keys(uniquePropertyVals); // Export each group of polygons as a separate feature. for (let i = 0; i < vals.length; i++) { const mp = multiPolygon( polyclip.union.apply( null, // List of polygons expressed as Position[][][] a.k.a. Geom[] (uniquePropertyVals[vals[i]] as Feature[]).map(function (f) { return f.geometry.coordinates; }) as [polyclip.Geom, ...polyclip.Geom[]] ) ); if (mp && mp.properties) { mp.properties[propertyName] = vals[i]; outFeatures.push(mp); } } } return flatten(featureCollection(outFeatures)); } export { dissolve }; export default dissolve; ================================================ FILE: packages/turf-dissolve/package.json ================================================ { "name": "@turf/dissolve", "version": "7.3.4", "description": "Dissolves a FeatureCollection of Polygon features.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "dissolve", "gis", "geojson", "polygon" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/flatten": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "polyclip-ts": "^0.16.8", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-dissolve/test/in/hexagons-issue#742.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.653, 45.488], [-76.644, 45.485], [-76.64, 45.479], [-76.644, 45.473], [-76.653, 45.47], [-76.662, 45.473], [-76.666, 45.479], [-76.662, 45.485], [-76.653, 45.488] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.663, 45.482], [-76.654, 45.48], [-76.65, 45.473], [-76.654, 45.467], [-76.663, 45.464], [-76.672, 45.467], [-76.676, 45.473], [-76.672, 45.48], [-76.663, 45.482] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.705, 45.362], [-75.696, 45.36], [-75.692, 45.353], [-75.696, 45.347], [-75.705, 45.344], [-75.714, 45.347], [-75.717, 45.353], [-75.714, 45.36], [-75.705, 45.362] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.646, 45.363], [-75.637, 45.36], [-75.634, 45.354], [-75.637, 45.348], [-75.646, 45.345], [-75.655, 45.348], [-75.659, 45.354], [-75.655, 45.36], [-75.646, 45.363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.704, 45.379], [-75.695, 45.377], [-75.691, 45.37], [-75.695, 45.364], [-75.704, 45.361], [-75.713, 45.364], [-75.717, 45.37], [-75.713, 45.377], [-75.704, 45.379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.537, 45.488], [-75.528, 45.486], [-75.525, 45.479], [-75.528, 45.473], [-75.537, 45.47], [-75.547, 45.473], [-75.55, 45.479], [-75.547, 45.486], [-75.537, 45.488] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.687, 45.484], [-76.678, 45.481], [-76.674, 45.475], [-76.678, 45.468], [-76.687, 45.466], [-76.696, 45.468], [-76.7, 45.475], [-76.696, 45.481], [-76.687, 45.484] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.697, 45.488], [-76.687, 45.485], [-76.684, 45.479], [-76.687, 45.472], [-76.697, 45.47], [-76.706, 45.472], [-76.709, 45.479], [-76.706, 45.485], [-76.697, 45.488] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.702, 45.49], [-76.693, 45.488], [-76.689, 45.481], [-76.693, 45.475], [-76.702, 45.473], [-76.711, 45.475], [-76.715, 45.481], [-76.711, 45.488], [-76.702, 45.49] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.661, 45.483], [-76.652, 45.48], [-76.648, 45.474], [-76.652, 45.467], [-76.661, 45.465], [-76.67, 45.467], [-76.674, 45.474], [-76.67, 45.48], [-76.661, 45.483] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.724, 45.344], [-75.715, 45.342], [-75.711, 45.335], [-75.715, 45.329], [-75.724, 45.326], [-75.733, 45.329], [-75.736, 45.335], [-75.733, 45.342], [-75.724, 45.344] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.685, 45.438], [-75.676, 45.435], [-75.673, 45.429], [-75.676, 45.422], [-75.685, 45.42], [-75.694, 45.422], [-75.698, 45.429], [-75.694, 45.435], [-75.685, 45.438] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.625, 45.357], [-75.616, 45.354], [-75.612, 45.348], [-75.616, 45.342], [-75.625, 45.339], [-75.634, 45.342], [-75.638, 45.348], [-75.634, 45.354], [-75.625, 45.357] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.702, 45.378], [-75.692, 45.375], [-75.689, 45.369], [-75.692, 45.362], [-75.702, 45.36], [-75.711, 45.362], [-75.714, 45.369], [-75.711, 45.375], [-75.702, 45.378] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.365, 45.435], [-76.356, 45.432], [-76.353, 45.426], [-76.356, 45.42], [-76.365, 45.417], [-76.374, 45.42], [-76.378, 45.426], [-76.374, 45.432], [-76.365, 45.435] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.369, 45.432], [-76.36, 45.43], [-76.356, 45.423], [-76.36, 45.417], [-76.369, 45.414], [-76.378, 45.417], [-76.382, 45.423], [-76.378, 45.43], [-76.369, 45.432] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.369, 45.433], [-76.36, 45.43], [-76.356, 45.424], [-76.36, 45.417], [-76.369, 45.415], [-76.378, 45.417], [-76.382, 45.424], [-76.378, 45.43], [-76.369, 45.433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.916, 45.318], [-75.907, 45.315], [-75.904, 45.309], [-75.907, 45.302], [-75.916, 45.3], [-75.925, 45.302], [-75.929, 45.309], [-75.925, 45.315], [-75.916, 45.318] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.916, 45.317], [-75.907, 45.315], [-75.903, 45.308], [-75.907, 45.302], [-75.916, 45.299], [-75.925, 45.302], [-75.928, 45.308], [-75.925, 45.315], [-75.916, 45.317] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.881, 45.319], [-75.872, 45.316], [-75.868, 45.31], [-75.872, 45.304], [-75.881, 45.301], [-75.89, 45.304], [-75.893, 45.31], [-75.89, 45.316], [-75.881, 45.319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.87, 45.3], [-75.861, 45.297], [-75.858, 45.291], [-75.861, 45.284], [-75.87, 45.282], [-75.879, 45.284], [-75.883, 45.291], [-75.879, 45.297], [-75.87, 45.3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.637, 45.039], [-75.628, 45.036], [-75.625, 45.03], [-75.628, 45.023], [-75.637, 45.021], [-75.646, 45.023], [-75.65, 45.03], [-75.646, 45.036], [-75.637, 45.039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.653, 45.03], [-75.644, 45.027], [-75.64, 45.021], [-75.644, 45.015], [-75.653, 45.012], [-75.662, 45.015], [-75.666, 45.021], [-75.662, 45.027], [-75.653, 45.03] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.651, 45.028], [-75.642, 45.026], [-75.638, 45.02], [-75.642, 45.013], [-75.651, 45.011], [-75.66, 45.013], [-75.664, 45.02], [-75.66, 45.026], [-75.651, 45.028] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.64, 45.038], [-75.631, 45.035], [-75.627, 45.029], [-75.631, 45.022], [-75.64, 45.02], [-75.649, 45.022], [-75.653, 45.029], [-75.649, 45.035], [-75.64, 45.038] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.649, 45.032], [-75.64, 45.029], [-75.637, 45.023], [-75.64, 45.017], [-75.649, 45.014], [-75.658, 45.017], [-75.662, 45.023], [-75.658, 45.029], [-75.649, 45.032] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.497, 45.467], [-75.488, 45.464], [-75.484, 45.458], [-75.488, 45.451], [-75.497, 45.449], [-75.506, 45.451], [-75.509, 45.458], [-75.506, 45.464], [-75.497, 45.467] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.744, 45.405], [-75.735, 45.403], [-75.731, 45.396], [-75.735, 45.39], [-75.744, 45.388], [-75.753, 45.39], [-75.757, 45.396], [-75.753, 45.403], [-75.744, 45.405] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.691, 45.351], [-75.682, 45.349], [-75.678, 45.342], [-75.682, 45.336], [-75.691, 45.333], [-75.7, 45.336], [-75.703, 45.342], [-75.7, 45.349], [-75.691, 45.351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.6, 45.34], [-75.591, 45.338], [-75.587, 45.331], [-75.591, 45.325], [-75.6, 45.322], [-75.609, 45.325], [-75.612, 45.331], [-75.609, 45.338], [-75.6, 45.34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.706, 45.42], [-75.697, 45.417], [-75.693, 45.411], [-75.697, 45.405], [-75.706, 45.402], [-75.715, 45.405], [-75.719, 45.411], [-75.715, 45.417], [-75.706, 45.42] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.694, 45.343], [-75.685, 45.34], [-75.681, 45.334], [-75.685, 45.327], [-75.694, 45.325], [-75.703, 45.327], [-75.707, 45.334], [-75.703, 45.34], [-75.694, 45.343] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.643, 45.363], [-75.634, 45.36], [-75.631, 45.354], [-75.634, 45.347], [-75.643, 45.345], [-75.652, 45.347], [-75.656, 45.354], [-75.652, 45.36], [-75.643, 45.363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.697, 45.427], [-75.688, 45.425], [-75.684, 45.418], [-75.688, 45.412], [-75.697, 45.409], [-75.706, 45.412], [-75.71, 45.418], [-75.706, 45.425], [-75.697, 45.427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.618, 45.398], [-75.609, 45.395], [-75.606, 45.389], [-75.609, 45.383], [-75.618, 45.38], [-75.627, 45.383], [-75.631, 45.389], [-75.627, 45.395], [-75.618, 45.398] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.639, 45.437], [-75.63, 45.435], [-75.626, 45.428], [-75.63, 45.422], [-75.639, 45.419], [-75.648, 45.422], [-75.652, 45.428], [-75.648, 45.435], [-75.639, 45.437] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.754, 45.386], [-75.745, 45.383], [-75.741, 45.377], [-75.745, 45.371], [-75.754, 45.368], [-75.763, 45.371], [-75.767, 45.377], [-75.763, 45.383], [-75.754, 45.386] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.588, 45.458], [-75.579, 45.456], [-75.575, 45.449], [-75.579, 45.443], [-75.588, 45.44], [-75.597, 45.443], [-75.601, 45.449], [-75.597, 45.456], [-75.588, 45.458] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.729, 45.41], [-75.72, 45.407], [-75.717, 45.401], [-75.72, 45.394], [-75.729, 45.392], [-75.738, 45.394], [-75.742, 45.401], [-75.738, 45.407], [-75.729, 45.41] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.642, 45.363], [-75.633, 45.36], [-75.629, 45.354], [-75.633, 45.347], [-75.642, 45.345], [-75.651, 45.347], [-75.655, 45.354], [-75.651, 45.36], [-75.642, 45.363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.67, 45.352], [-75.661, 45.349], [-75.657, 45.343], [-75.661, 45.337], [-75.67, 45.334], [-75.679, 45.337], [-75.683, 45.343], [-75.679, 45.349], [-75.67, 45.352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.602, 45.392], [-75.593, 45.389], [-75.589, 45.383], [-75.593, 45.377], [-75.602, 45.374], [-75.611, 45.377], [-75.615, 45.383], [-75.611, 45.389], [-75.602, 45.392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.688, 45.484], [-76.679, 45.481], [-76.675, 45.475], [-76.679, 45.468], [-76.688, 45.466], [-76.697, 45.468], [-76.701, 45.475], [-76.697, 45.481], [-76.688, 45.484] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.681, 45.479], [-76.672, 45.476], [-76.668, 45.47], [-76.672, 45.463], [-76.681, 45.461], [-76.69, 45.463], [-76.693, 45.47], [-76.69, 45.476], [-76.681, 45.479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.301, 45.55], [-75.292, 45.548], [-75.288, 45.541], [-75.292, 45.535], [-75.301, 45.532], [-75.31, 45.535], [-75.314, 45.541], [-75.31, 45.548], [-75.301, 45.55] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.021, 44.913], [-76.012, 44.91], [-76.009, 44.904], [-76.012, 44.897], [-76.021, 44.895], [-76.03, 44.897], [-76.034, 44.904], [-76.03, 44.91], [-76.021, 44.913] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.255, 44.911], [-76.246, 44.908], [-76.242, 44.902], [-76.246, 44.895], [-76.255, 44.893], [-76.264, 44.895], [-76.267, 44.902], [-76.264, 44.908], [-76.255, 44.911] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.253, 44.91], [-76.244, 44.907], [-76.24, 44.901], [-76.244, 44.895], [-76.253, 44.892], [-76.262, 44.895], [-76.266, 44.901], [-76.262, 44.907], [-76.253, 44.91] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.241, 44.901], [-76.232, 44.899], [-76.228, 44.892], [-76.232, 44.886], [-76.241, 44.883], [-76.25, 44.886], [-76.253, 44.892], [-76.25, 44.899], [-76.241, 44.901] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.264, 44.92], [-76.255, 44.917], [-76.251, 44.911], [-76.255, 44.904], [-76.264, 44.902], [-76.273, 44.904], [-76.277, 44.911], [-76.273, 44.917], [-76.264, 44.92] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.027, 44.903], [-76.018, 44.9], [-76.015, 44.894], [-76.018, 44.888], [-76.027, 44.885], [-76.036, 44.888], [-76.04, 44.894], [-76.036, 44.9], [-76.027, 44.903] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.594, 45.457], [-75.585, 45.454], [-75.581, 45.448], [-75.585, 45.441], [-75.594, 45.439], [-75.603, 45.441], [-75.607, 45.448], [-75.603, 45.454], [-75.594, 45.457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.869, 45.297], [-75.86, 45.294], [-75.856, 45.288], [-75.86, 45.282], [-75.869, 45.279], [-75.878, 45.282], [-75.882, 45.288], [-75.878, 45.294], [-75.869, 45.297] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.564, 45.441], [-75.555, 45.438], [-75.551, 45.432], [-75.555, 45.425], [-75.564, 45.423], [-75.573, 45.425], [-75.577, 45.432], [-75.573, 45.438], [-75.564, 45.441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.667, 45.386], [-75.658, 45.384], [-75.654, 45.377], [-75.658, 45.371], [-75.667, 45.368], [-75.676, 45.371], [-75.68, 45.377], [-75.676, 45.384], [-75.667, 45.386] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.668, 45.387], [-75.658, 45.384], [-75.655, 45.378], [-75.658, 45.371], [-75.668, 45.369], [-75.677, 45.371], [-75.68, 45.378], [-75.677, 45.384], [-75.668, 45.387] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.747, 45.39], [-75.738, 45.387], [-75.735, 45.381], [-75.738, 45.374], [-75.747, 45.372], [-75.756, 45.374], [-75.76, 45.381], [-75.756, 45.387], [-75.747, 45.39] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.757, 45.385], [-75.748, 45.383], [-75.745, 45.376], [-75.748, 45.37], [-75.757, 45.367], [-75.766, 45.37], [-75.77, 45.376], [-75.766, 45.383], [-75.757, 45.385] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.022, 44.913], [-76.013, 44.91], [-76.009, 44.904], [-76.013, 44.898], [-76.022, 44.895], [-76.031, 44.898], [-76.034, 44.904], [-76.031, 44.91], [-76.022, 44.913] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.523, 45.481], [-75.514, 45.478], [-75.51, 45.472], [-75.514, 45.465], [-75.523, 45.463], [-75.532, 45.465], [-75.536, 45.472], [-75.532, 45.478], [-75.523, 45.481] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.651, 45.029], [-75.642, 45.026], [-75.638, 45.02], [-75.642, 45.013], [-75.651, 45.011], [-75.66, 45.013], [-75.664, 45.02], [-75.66, 45.026], [-75.651, 45.029] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.631, 45.392], [-75.622, 45.389], [-75.618, 45.383], [-75.622, 45.377], [-75.631, 45.374], [-75.64, 45.377], [-75.644, 45.383], [-75.64, 45.389], [-75.631, 45.392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.02, 44.898], [-76.011, 44.895], [-76.007, 44.889], [-76.011, 44.882], [-76.02, 44.88], [-76.029, 44.882], [-76.033, 44.889], [-76.029, 44.895], [-76.02, 44.898] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.029, 44.902], [-76.02, 44.899], [-76.017, 44.893], [-76.02, 44.886], [-76.029, 44.884], [-76.038, 44.886], [-76.042, 44.893], [-76.038, 44.899], [-76.029, 44.902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.011, 44.912], [-76.002, 44.909], [-75.999, 44.903], [-76.002, 44.896], [-76.011, 44.894], [-76.02, 44.896], [-76.024, 44.903], [-76.02, 44.909], [-76.011, 44.912] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.033, 44.898], [-76.024, 44.895], [-76.02, 44.889], [-76.024, 44.883], [-76.033, 44.88], [-76.042, 44.883], [-76.046, 44.889], [-76.042, 44.895], [-76.033, 44.898] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.021, 44.919], [-76.012, 44.917], [-76.008, 44.91], [-76.012, 44.904], [-76.021, 44.901], [-76.03, 44.904], [-76.034, 44.91], [-76.03, 44.917], [-76.021, 44.919] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.883, 45.322], [-75.874, 45.32], [-75.87, 45.313], [-75.874, 45.307], [-75.883, 45.304], [-75.892, 45.307], [-75.895, 45.313], [-75.892, 45.32], [-75.883, 45.322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.296, 45.554], [-75.287, 45.552], [-75.283, 45.545], [-75.287, 45.539], [-75.296, 45.536], [-75.305, 45.539], [-75.309, 45.545], [-75.305, 45.552], [-75.296, 45.554] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.296, 45.56], [-75.286, 45.558], [-75.283, 45.551], [-75.286, 45.545], [-75.296, 45.542], [-75.305, 45.545], [-75.308, 45.551], [-75.305, 45.558], [-75.296, 45.56] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.303, 45.555], [-75.294, 45.553], [-75.29, 45.546], [-75.294, 45.54], [-75.303, 45.537], [-75.312, 45.54], [-75.316, 45.546], [-75.312, 45.553], [-75.303, 45.555] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.54, 45.473], [-75.531, 45.47], [-75.528, 45.464], [-75.531, 45.457], [-75.54, 45.455], [-75.549, 45.457], [-75.553, 45.464], [-75.549, 45.47], [-75.54, 45.473] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.878, 45.313], [-75.869, 45.31], [-75.865, 45.304], [-75.869, 45.297], [-75.878, 45.295], [-75.887, 45.297], [-75.891, 45.304], [-75.887, 45.31], [-75.878, 45.313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.917, 45.351], [-75.908, 45.349], [-75.904, 45.342], [-75.908, 45.336], [-75.917, 45.333], [-75.926, 45.336], [-75.93, 45.342], [-75.926, 45.349], [-75.917, 45.351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.641, 45.42], [-75.632, 45.417], [-75.628, 45.411], [-75.632, 45.405], [-75.641, 45.402], [-75.65, 45.405], [-75.654, 45.411], [-75.65, 45.417], [-75.641, 45.42] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.666, 45.443], [-75.657, 45.44], [-75.653, 45.434], [-75.657, 45.428], [-75.666, 45.425], [-75.675, 45.428], [-75.679, 45.434], [-75.675, 45.44], [-75.666, 45.443] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.668, 45.442], [-75.659, 45.44], [-75.656, 45.433], [-75.659, 45.427], [-75.668, 45.424], [-75.677, 45.427], [-75.681, 45.433], [-75.677, 45.44], [-75.668, 45.442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.67, 45.442], [-75.661, 45.44], [-75.657, 45.433], [-75.661, 45.427], [-75.67, 45.424], [-75.679, 45.427], [-75.682, 45.433], [-75.679, 45.44], [-75.67, 45.442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.644, 45.451], [-75.635, 45.448], [-75.631, 45.442], [-75.635, 45.435], [-75.644, 45.433], [-75.653, 45.435], [-75.657, 45.442], [-75.653, 45.448], [-75.644, 45.451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.654, 45.448], [-75.645, 45.445], [-75.641, 45.439], [-75.645, 45.433], [-75.654, 45.43], [-75.663, 45.433], [-75.667, 45.439], [-75.663, 45.445], [-75.654, 45.448] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.605, 45.424], [-75.596, 45.421], [-75.592, 45.415], [-75.596, 45.409], [-75.605, 45.406], [-75.614, 45.409], [-75.617, 45.415], [-75.614, 45.421], [-75.605, 45.424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.516, 45.485], [-75.507, 45.482], [-75.504, 45.476], [-75.507, 45.47], [-75.516, 45.467], [-75.526, 45.47], [-75.529, 45.476], [-75.526, 45.482], [-75.516, 45.485] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.89, 45.306], [-75.881, 45.303], [-75.877, 45.297], [-75.881, 45.291], [-75.89, 45.288], [-75.899, 45.291], [-75.903, 45.297], [-75.899, 45.303], [-75.89, 45.306] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.88, 45.311], [-75.87, 45.309], [-75.867, 45.302], [-75.87, 45.296], [-75.88, 45.293], [-75.889, 45.296], [-75.892, 45.302], [-75.889, 45.309], [-75.88, 45.311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.359, 45.267], [-75.35, 45.264], [-75.346, 45.258], [-75.35, 45.252], [-75.359, 45.249], [-75.368, 45.252], [-75.372, 45.258], [-75.368, 45.264], [-75.359, 45.267] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.124, 45.139], [-76.115, 45.136], [-76.111, 45.13], [-76.115, 45.123], [-76.124, 45.121], [-76.133, 45.123], [-76.136, 45.13], [-76.133, 45.136], [-76.124, 45.139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.141, 45.146], [-76.132, 45.143], [-76.128, 45.137], [-76.132, 45.131], [-76.141, 45.128], [-76.15, 45.131], [-76.153, 45.137], [-76.15, 45.143], [-76.141, 45.146] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.141, 45.159], [-76.132, 45.157], [-76.129, 45.15], [-76.132, 45.144], [-76.141, 45.141], [-76.15, 45.144], [-76.154, 45.15], [-76.15, 45.157], [-76.141, 45.159] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.143, 45.146], [-76.134, 45.143], [-76.13, 45.137], [-76.134, 45.131], [-76.143, 45.128], [-76.152, 45.131], [-76.155, 45.137], [-76.152, 45.143], [-76.143, 45.146] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.255, 44.911], [-76.246, 44.908], [-76.242, 44.902], [-76.246, 44.895], [-76.255, 44.893], [-76.264, 44.895], [-76.267, 44.902], [-76.264, 44.908], [-76.255, 44.911] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.411, 45.527], [-75.402, 45.524], [-75.398, 45.518], [-75.402, 45.511], [-75.411, 45.509], [-75.42, 45.511], [-75.424, 45.518], [-75.42, 45.524], [-75.411, 45.527] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.596, 45.428], [-75.587, 45.426], [-75.584, 45.419], [-75.587, 45.413], [-75.596, 45.41], [-75.605, 45.413], [-75.609, 45.419], [-75.605, 45.426], [-75.596, 45.428] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.539, 45.473], [-75.53, 45.471], [-75.526, 45.464], [-75.53, 45.458], [-75.539, 45.455], [-75.548, 45.458], [-75.552, 45.464], [-75.548, 45.471], [-75.539, 45.473] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.702, 45.343], [-75.693, 45.34], [-75.689, 45.334], [-75.693, 45.327], [-75.702, 45.325], [-75.711, 45.327], [-75.715, 45.334], [-75.711, 45.34], [-75.702, 45.343] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.73, 45.352], [-75.721, 45.35], [-75.717, 45.343], [-75.721, 45.337], [-75.73, 45.334], [-75.739, 45.337], [-75.742, 45.343], [-75.739, 45.35], [-75.73, 45.352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.734, 45.359], [-75.725, 45.357], [-75.721, 45.35], [-75.725, 45.344], [-75.734, 45.341], [-75.743, 45.344], [-75.746, 45.35], [-75.743, 45.357], [-75.734, 45.359] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.736, 45.363], [-75.727, 45.361], [-75.723, 45.354], [-75.727, 45.348], [-75.736, 45.345], [-75.745, 45.348], [-75.749, 45.354], [-75.745, 45.361], [-75.736, 45.363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.346, 45.443], [-76.337, 45.44], [-76.334, 45.434], [-76.337, 45.427], [-76.346, 45.425], [-76.355, 45.427], [-76.359, 45.434], [-76.355, 45.44], [-76.346, 45.443] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.378, 45.428], [-76.369, 45.425], [-76.365, 45.419], [-76.369, 45.412], [-76.378, 45.41], [-76.387, 45.412], [-76.39, 45.419], [-76.387, 45.425], [-76.378, 45.428] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.595, 45.428], [-75.586, 45.425], [-75.582, 45.419], [-75.586, 45.413], [-75.595, 45.41], [-75.604, 45.413], [-75.608, 45.419], [-75.604, 45.425], [-75.595, 45.428] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.545, 44.852], [-75.536, 44.849], [-75.532, 44.843], [-75.536, 44.836], [-75.545, 44.834], [-75.554, 44.836], [-75.558, 44.843], [-75.554, 44.849], [-75.545, 44.852] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.444, 45.354], [-75.435, 45.351], [-75.431, 45.345], [-75.435, 45.339], [-75.444, 45.336], [-75.453, 45.339], [-75.456, 45.345], [-75.453, 45.351], [-75.444, 45.354] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.618, 45.429], [-75.609, 45.427], [-75.605, 45.42], [-75.609, 45.414], [-75.618, 45.411], [-75.627, 45.414], [-75.631, 45.42], [-75.627, 45.427], [-75.618, 45.429] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.605, 45.426], [-75.596, 45.423], [-75.592, 45.417], [-75.596, 45.411], [-75.605, 45.408], [-75.614, 45.411], [-75.617, 45.417], [-75.614, 45.423], [-75.605, 45.426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.773, 45.378], [-75.764, 45.375], [-75.76, 45.369], [-75.764, 45.362], [-75.773, 45.36], [-75.782, 45.362], [-75.786, 45.369], [-75.782, 45.375], [-75.773, 45.378] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.636, 45.434], [-75.626, 45.431], [-75.623, 45.425], [-75.626, 45.419], [-75.636, 45.416], [-75.645, 45.419], [-75.648, 45.425], [-75.645, 45.431], [-75.636, 45.434] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.637, 45.434], [-75.628, 45.432], [-75.625, 45.425], [-75.628, 45.419], [-75.637, 45.416], [-75.646, 45.419], [-75.65, 45.425], [-75.646, 45.432], [-75.637, 45.434] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.627, 45.414], [-75.618, 45.412], [-75.615, 45.405], [-75.618, 45.399], [-75.627, 45.396], [-75.636, 45.399], [-75.64, 45.405], [-75.636, 45.412], [-75.627, 45.414] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.921, 45.287], [-75.912, 45.284], [-75.908, 45.278], [-75.912, 45.271], [-75.921, 45.269], [-75.93, 45.271], [-75.934, 45.278], [-75.93, 45.284], [-75.921, 45.287] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.782, 45.38], [-75.773, 45.377], [-75.769, 45.371], [-75.773, 45.364], [-75.782, 45.362], [-75.791, 45.364], [-75.795, 45.371], [-75.791, 45.377], [-75.782, 45.38] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.757, 45.385], [-75.748, 45.382], [-75.744, 45.376], [-75.748, 45.369], [-75.757, 45.367], [-75.766, 45.369], [-75.77, 45.376], [-75.766, 45.382], [-75.757, 45.385] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.786, 45.351], [-75.777, 45.348], [-75.773, 45.342], [-75.777, 45.336], [-75.786, 45.333], [-75.795, 45.336], [-75.799, 45.342], [-75.795, 45.348], [-75.786, 45.351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.788, 45.356], [-75.779, 45.354], [-75.775, 45.348], [-75.779, 45.341], [-75.788, 45.339], [-75.797, 45.341], [-75.801, 45.348], [-75.797, 45.354], [-75.788, 45.356] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.675, 45.243], [-75.666, 45.24], [-75.662, 45.234], [-75.666, 45.228], [-75.675, 45.225], [-75.684, 45.228], [-75.688, 45.234], [-75.684, 45.24], [-75.675, 45.243] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.699, 45.279], [-75.69, 45.276], [-75.686, 45.27], [-75.69, 45.263], [-75.699, 45.261], [-75.708, 45.263], [-75.712, 45.27], [-75.708, 45.276], [-75.699, 45.279] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.62, 45.373], [-75.611, 45.371], [-75.607, 45.364], [-75.611, 45.358], [-75.62, 45.355], [-75.629, 45.358], [-75.633, 45.364], [-75.629, 45.371], [-75.62, 45.373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.621, 45.404], [-75.612, 45.402], [-75.609, 45.395], [-75.612, 45.389], [-75.621, 45.386], [-75.63, 45.389], [-75.634, 45.395], [-75.63, 45.402], [-75.621, 45.404] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.624, 45.383], [-75.615, 45.38], [-75.611, 45.374], [-75.615, 45.368], [-75.624, 45.365], [-75.633, 45.368], [-75.637, 45.374], [-75.633, 45.38], [-75.624, 45.383] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.757, 45.296], [-75.748, 45.294], [-75.745, 45.287], [-75.748, 45.281], [-75.757, 45.279], [-75.766, 45.281], [-75.77, 45.287], [-75.766, 45.294], [-75.757, 45.296] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.732, 45.307], [-75.723, 45.304], [-75.719, 45.298], [-75.723, 45.291], [-75.732, 45.289], [-75.741, 45.291], [-75.744, 45.298], [-75.741, 45.304], [-75.732, 45.307] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.677, 45.448], [-75.668, 45.446], [-75.664, 45.439], [-75.668, 45.433], [-75.677, 45.43], [-75.686, 45.433], [-75.689, 45.439], [-75.686, 45.446], [-75.677, 45.448] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.756, 45.295], [-75.747, 45.293], [-75.744, 45.286], [-75.747, 45.28], [-75.756, 45.277], [-75.765, 45.28], [-75.769, 45.286], [-75.765, 45.293], [-75.756, 45.295] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.694, 45.421], [-75.685, 45.418], [-75.681, 45.412], [-75.685, 45.405], [-75.694, 45.403], [-75.703, 45.405], [-75.706, 45.412], [-75.703, 45.418], [-75.694, 45.421] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.668, 45.39], [-75.659, 45.387], [-75.655, 45.381], [-75.659, 45.374], [-75.668, 45.372], [-75.677, 45.374], [-75.681, 45.381], [-75.677, 45.387], [-75.668, 45.39] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.75, 45.402], [-75.741, 45.4], [-75.738, 45.394], [-75.741, 45.387], [-75.75, 45.385], [-75.759, 45.387], [-75.763, 45.394], [-75.759, 45.4], [-75.75, 45.402] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.48, 45.5], [-75.471, 45.497], [-75.467, 45.491], [-75.471, 45.485], [-75.48, 45.482], [-75.489, 45.485], [-75.493, 45.491], [-75.489, 45.497], [-75.48, 45.5] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.788, 45.35], [-75.779, 45.348], [-75.775, 45.341], [-75.779, 45.335], [-75.788, 45.332], [-75.797, 45.335], [-75.801, 45.341], [-75.797, 45.348], [-75.788, 45.35] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.692, 45.419], [-75.683, 45.416], [-75.68, 45.41], [-75.683, 45.403], [-75.692, 45.401], [-75.702, 45.403], [-75.705, 45.41], [-75.702, 45.416], [-75.692, 45.419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.595, 45.279], [-75.586, 45.276], [-75.582, 45.27], [-75.586, 45.263], [-75.595, 45.261], [-75.604, 45.263], [-75.607, 45.27], [-75.604, 45.276], [-75.595, 45.279] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.631, 45.435], [-75.622, 45.432], [-75.618, 45.426], [-75.622, 45.42], [-75.631, 45.417], [-75.64, 45.42], [-75.644, 45.426], [-75.64, 45.432], [-75.631, 45.435] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.786, 45.376], [-75.777, 45.374], [-75.773, 45.367], [-75.777, 45.361], [-75.786, 45.359], [-75.795, 45.361], [-75.799, 45.367], [-75.795, 45.374], [-75.786, 45.376] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.548, 45.471], [-75.539, 45.468], [-75.536, 45.462], [-75.539, 45.455], [-75.548, 45.453], [-75.558, 45.455], [-75.561, 45.462], [-75.558, 45.468], [-75.548, 45.471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.648, 45.441], [-75.639, 45.438], [-75.635, 45.432], [-75.639, 45.426], [-75.648, 45.423], [-75.657, 45.426], [-75.661, 45.432], [-75.657, 45.438], [-75.648, 45.441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.64, 45.452], [-75.631, 45.449], [-75.628, 45.443], [-75.631, 45.437], [-75.64, 45.434], [-75.649, 45.437], [-75.653, 45.443], [-75.649, 45.449], [-75.64, 45.452] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.509, 45.463], [-75.5, 45.46], [-75.496, 45.454], [-75.5, 45.447], [-75.509, 45.445], [-75.518, 45.447], [-75.521, 45.454], [-75.518, 45.46], [-75.509, 45.463] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.505, 45.464], [-75.496, 45.462], [-75.492, 45.455], [-75.496, 45.449], [-75.505, 45.446], [-75.514, 45.449], [-75.518, 45.455], [-75.514, 45.462], [-75.505, 45.464] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.527, 45.456], [-75.518, 45.453], [-75.514, 45.447], [-75.518, 45.441], [-75.527, 45.438], [-75.536, 45.441], [-75.54, 45.447], [-75.536, 45.453], [-75.527, 45.456] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.512, 45.462], [-75.503, 45.459], [-75.499, 45.453], [-75.503, 45.447], [-75.512, 45.444], [-75.521, 45.447], [-75.525, 45.453], [-75.521, 45.459], [-75.512, 45.462] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.821, 45.336], [-75.812, 45.334], [-75.809, 45.327], [-75.812, 45.321], [-75.821, 45.318], [-75.83, 45.321], [-75.834, 45.327], [-75.83, 45.334], [-75.821, 45.336] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.82, 45.336], [-75.811, 45.334], [-75.807, 45.327], [-75.811, 45.321], [-75.82, 45.318], [-75.829, 45.321], [-75.833, 45.327], [-75.829, 45.334], [-75.82, 45.336] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.663, 45.379], [-75.654, 45.376], [-75.65, 45.37], [-75.654, 45.364], [-75.663, 45.361], [-75.672, 45.364], [-75.676, 45.37], [-75.672, 45.376], [-75.663, 45.379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.61, 45.427], [-75.601, 45.425], [-75.597, 45.419], [-75.601, 45.412], [-75.61, 45.41], [-75.619, 45.412], [-75.623, 45.419], [-75.619, 45.425], [-75.61, 45.427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.739, 45.37], [-75.73, 45.368], [-75.726, 45.361], [-75.73, 45.355], [-75.739, 45.352], [-75.748, 45.355], [-75.752, 45.361], [-75.748, 45.368], [-75.739, 45.37] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.752, 45.299], [-75.743, 45.296], [-75.739, 45.29], [-75.743, 45.284], [-75.752, 45.281], [-75.761, 45.284], [-75.765, 45.29], [-75.761, 45.296], [-75.752, 45.299] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.723, 45.294], [-75.714, 45.291], [-75.71, 45.285], [-75.714, 45.278], [-75.723, 45.276], [-75.732, 45.278], [-75.736, 45.285], [-75.732, 45.291], [-75.723, 45.294] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.704, 45.416], [-75.695, 45.414], [-75.691, 45.407], [-75.695, 45.401], [-75.704, 45.398], [-75.713, 45.401], [-75.717, 45.407], [-75.713, 45.414], [-75.704, 45.416] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.595, 45.457], [-75.586, 45.454], [-75.582, 45.448], [-75.586, 45.441], [-75.595, 45.439], [-75.604, 45.441], [-75.608, 45.448], [-75.604, 45.454], [-75.595, 45.457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.733, 45.39], [-75.724, 45.388], [-75.721, 45.381], [-75.724, 45.375], [-75.733, 45.372], [-75.743, 45.375], [-75.746, 45.381], [-75.743, 45.388], [-75.733, 45.39] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.617, 45.416], [-75.608, 45.413], [-75.604, 45.407], [-75.608, 45.401], [-75.617, 45.398], [-75.626, 45.401], [-75.63, 45.407], [-75.626, 45.413], [-75.617, 45.416] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.67, 45.452], [-75.661, 45.45], [-75.657, 45.444], [-75.661, 45.437], [-75.67, 45.435], [-75.679, 45.437], [-75.683, 45.444], [-75.679, 45.45], [-75.67, 45.452] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.742, 45.406], [-75.733, 45.404], [-75.729, 45.397], [-75.733, 45.391], [-75.742, 45.388], [-75.751, 45.391], [-75.755, 45.397], [-75.751, 45.404], [-75.742, 45.406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.756, 45.352], [-75.747, 45.349], [-75.744, 45.343], [-75.747, 45.336], [-75.756, 45.334], [-75.765, 45.336], [-75.769, 45.343], [-75.765, 45.349], [-75.756, 45.352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.809, 45.363], [-75.8, 45.36], [-75.796, 45.354], [-75.8, 45.347], [-75.809, 45.345], [-75.818, 45.347], [-75.822, 45.354], [-75.818, 45.36], [-75.809, 45.363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.67, 45.36], [-75.661, 45.357], [-75.657, 45.351], [-75.661, 45.345], [-75.67, 45.342], [-75.679, 45.345], [-75.683, 45.351], [-75.679, 45.357], [-75.67, 45.36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.955, 45.288], [-75.946, 45.286], [-75.942, 45.279], [-75.946, 45.273], [-75.955, 45.27], [-75.964, 45.273], [-75.968, 45.279], [-75.964, 45.286], [-75.955, 45.288] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.651, 45.029], [-75.642, 45.026], [-75.638, 45.02], [-75.642, 45.013], [-75.651, 45.011], [-75.66, 45.013], [-75.664, 45.02], [-75.66, 45.026], [-75.651, 45.029] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.523, 45.481], [-75.514, 45.478], [-75.51, 45.472], [-75.514, 45.465], [-75.523, 45.463], [-75.532, 45.465], [-75.536, 45.472], [-75.532, 45.478], [-75.523, 45.481] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.708, 45.408], [-75.699, 45.405], [-75.695, 45.399], [-75.699, 45.392], [-75.708, 45.39], [-75.717, 45.392], [-75.721, 45.399], [-75.717, 45.405], [-75.708, 45.408] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.747, 45.282], [-75.738, 45.279], [-75.734, 45.273], [-75.738, 45.266], [-75.747, 45.264], [-75.756, 45.266], [-75.76, 45.273], [-75.756, 45.279], [-75.747, 45.282] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.701, 45.413], [-75.692, 45.41], [-75.688, 45.404], [-75.692, 45.397], [-75.701, 45.395], [-75.71, 45.397], [-75.714, 45.404], [-75.71, 45.41], [-75.701, 45.413] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.931, 45.281], [-75.922, 45.279], [-75.918, 45.272], [-75.922, 45.266], [-75.931, 45.263], [-75.94, 45.266], [-75.943, 45.272], [-75.94, 45.279], [-75.931, 45.281] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.923, 45.285], [-75.914, 45.283], [-75.91, 45.276], [-75.914, 45.27], [-75.923, 45.267], [-75.932, 45.27], [-75.935, 45.276], [-75.932, 45.283], [-75.923, 45.285] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.938, 45.277], [-75.929, 45.274], [-75.925, 45.268], [-75.929, 45.262], [-75.938, 45.259], [-75.947, 45.262], [-75.951, 45.268], [-75.947, 45.274], [-75.938, 45.277] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.632, 45.435], [-75.623, 45.433], [-75.619, 45.426], [-75.623, 45.42], [-75.632, 45.417], [-75.641, 45.42], [-75.645, 45.426], [-75.641, 45.433], [-75.632, 45.435] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.916, 45.263], [-75.907, 45.261], [-75.904, 45.254], [-75.907, 45.248], [-75.916, 45.245], [-75.926, 45.248], [-75.929, 45.254], [-75.926, 45.261], [-75.916, 45.263] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.927, 45.36], [-75.918, 45.357], [-75.914, 45.351], [-75.918, 45.345], [-75.927, 45.342], [-75.936, 45.345], [-75.94, 45.351], [-75.936, 45.357], [-75.927, 45.36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.05, 45.327], [-76.041, 45.324], [-76.037, 45.318], [-76.041, 45.311], [-76.05, 45.309], [-76.059, 45.311], [-76.063, 45.318], [-76.059, 45.324], [-76.05, 45.327] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.648, 45.438], [-75.639, 45.435], [-75.635, 45.429], [-75.639, 45.422], [-75.648, 45.42], [-75.657, 45.422], [-75.661, 45.429], [-75.657, 45.435], [-75.648, 45.438] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.73, 45.407], [-75.721, 45.404], [-75.718, 45.398], [-75.721, 45.391], [-75.73, 45.389], [-75.739, 45.391], [-75.743, 45.398], [-75.74, 45.404], [-75.73, 45.407] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.702, 45.351], [-75.693, 45.349], [-75.689, 45.342], [-75.693, 45.336], [-75.702, 45.333], [-75.711, 45.336], [-75.715, 45.342], [-75.711, 45.349], [-75.702, 45.351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.63, 45.421], [-75.621, 45.419], [-75.617, 45.412], [-75.621, 45.406], [-75.63, 45.403], [-75.639, 45.406], [-75.643, 45.412], [-75.639, 45.419], [-75.63, 45.421] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.083, 45.315], [-75.074, 45.313], [-75.07, 45.306], [-75.074, 45.3], [-75.083, 45.297], [-75.092, 45.3], [-75.095, 45.306], [-75.092, 45.313], [-75.083, 45.315] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.487, 45.47], [-75.478, 45.468], [-75.475, 45.461], [-75.478, 45.455], [-75.487, 45.452], [-75.497, 45.455], [-75.5, 45.461], [-75.497, 45.468], [-75.487, 45.47] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.823, 45.335], [-75.814, 45.332], [-75.811, 45.326], [-75.814, 45.32], [-75.823, 45.317], [-75.832, 45.32], [-75.836, 45.326], [-75.832, 45.332], [-75.823, 45.335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.728, 45.3], [-75.719, 45.298], [-75.715, 45.291], [-75.719, 45.285], [-75.728, 45.282], [-75.737, 45.285], [-75.741, 45.291], [-75.737, 45.298], [-75.728, 45.3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.703, 45.296], [-75.694, 45.293], [-75.69, 45.287], [-75.694, 45.28], [-75.703, 45.278], [-75.712, 45.28], [-75.716, 45.287], [-75.712, 45.293], [-75.703, 45.296] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.491, 45.476], [-75.482, 45.474], [-75.478, 45.467], [-75.482, 45.461], [-75.491, 45.458], [-75.5, 45.461], [-75.504, 45.467], [-75.5, 45.474], [-75.491, 45.476] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.492, 45.477], [-75.483, 45.474], [-75.479, 45.468], [-75.483, 45.462], [-75.492, 45.459], [-75.501, 45.462], [-75.504, 45.468], [-75.501, 45.474], [-75.492, 45.477] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.802, 45.278], [-75.793, 45.276], [-75.789, 45.269], [-75.793, 45.263], [-75.802, 45.26], [-75.811, 45.263], [-75.815, 45.269], [-75.811, 45.276], [-75.802, 45.278] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.536, 45.458], [-75.527, 45.455], [-75.523, 45.449], [-75.527, 45.442], [-75.536, 45.44], [-75.545, 45.442], [-75.548, 45.449], [-75.545, 45.455], [-75.536, 45.458] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.719, 45.285], [-75.71, 45.282], [-75.706, 45.276], [-75.71, 45.27], [-75.719, 45.267], [-75.728, 45.27], [-75.732, 45.276], [-75.728, 45.282], [-75.719, 45.285] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.533, 45.476], [-75.524, 45.473], [-75.521, 45.467], [-75.524, 45.46], [-75.533, 45.458], [-75.542, 45.46], [-75.546, 45.467], [-75.542, 45.473], [-75.533, 45.476] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.613, 45.442], [-75.604, 45.44], [-75.6, 45.433], [-75.604, 45.427], [-75.613, 45.424], [-75.622, 45.427], [-75.625, 45.433], [-75.622, 45.44], [-75.613, 45.442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.951, 45.379], [-75.942, 45.376], [-75.938, 45.37], [-75.942, 45.363], [-75.951, 45.361], [-75.96, 45.363], [-75.964, 45.37], [-75.96, 45.376], [-75.951, 45.379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.777, 45.333], [-75.768, 45.33], [-75.765, 45.324], [-75.768, 45.317], [-75.777, 45.315], [-75.787, 45.317], [-75.79, 45.324], [-75.787, 45.33], [-75.777, 45.333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.736, 45.369], [-75.727, 45.366], [-75.723, 45.36], [-75.727, 45.354], [-75.736, 45.351], [-75.745, 45.354], [-75.749, 45.36], [-75.745, 45.366], [-75.736, 45.369] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.631, 45.432], [-75.622, 45.43], [-75.618, 45.423], [-75.622, 45.417], [-75.631, 45.414], [-75.64, 45.417], [-75.644, 45.423], [-75.64, 45.43], [-75.631, 45.432] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.68, 45.441], [-75.671, 45.438], [-75.667, 45.432], [-75.671, 45.425], [-75.68, 45.423], [-75.689, 45.425], [-75.692, 45.432], [-75.689, 45.438], [-75.68, 45.441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.748, 45.384], [-75.739, 45.381], [-75.735, 45.375], [-75.739, 45.368], [-75.748, 45.366], [-75.757, 45.368], [-75.761, 45.375], [-75.757, 45.381], [-75.748, 45.384] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.788, 45.372], [-75.779, 45.369], [-75.775, 45.363], [-75.779, 45.356], [-75.788, 45.354], [-75.797, 45.356], [-75.801, 45.363], [-75.797, 45.369], [-75.788, 45.372] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.621, 45.406], [-75.612, 45.403], [-75.608, 45.397], [-75.612, 45.39], [-75.621, 45.388], [-75.63, 45.39], [-75.634, 45.397], [-75.63, 45.403], [-75.621, 45.406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.752, 45.343], [-75.743, 45.341], [-75.739, 45.334], [-75.743, 45.328], [-75.752, 45.325], [-75.761, 45.328], [-75.765, 45.334], [-75.761, 45.341], [-75.752, 45.343] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.738, 45.284], [-75.729, 45.281], [-75.725, 45.275], [-75.729, 45.268], [-75.738, 45.266], [-75.747, 45.268], [-75.751, 45.275], [-75.747, 45.281], [-75.738, 45.284] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.631, 45.369], [-75.622, 45.367], [-75.619, 45.36], [-75.622, 45.354], [-75.631, 45.351], [-75.641, 45.354], [-75.644, 45.36], [-75.641, 45.367], [-75.631, 45.369] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.838, 45.29], [-75.829, 45.288], [-75.825, 45.281], [-75.829, 45.275], [-75.838, 45.272], [-75.847, 45.275], [-75.851, 45.281], [-75.847, 45.288], [-75.838, 45.29] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.901, 45.307], [-75.892, 45.304], [-75.888, 45.298], [-75.892, 45.291], [-75.901, 45.289], [-75.91, 45.291], [-75.914, 45.298], [-75.91, 45.304], [-75.901, 45.307] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.918, 45.319], [-75.909, 45.316], [-75.906, 45.31], [-75.909, 45.304], [-75.918, 45.301], [-75.927, 45.304], [-75.931, 45.31], [-75.927, 45.316], [-75.918, 45.319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.344, 45.349], [-75.335, 45.347], [-75.331, 45.34], [-75.335, 45.334], [-75.344, 45.332], [-75.353, 45.334], [-75.357, 45.34], [-75.353, 45.347], [-75.344, 45.349] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.605, 45.445], [-75.596, 45.443], [-75.592, 45.436], [-75.596, 45.43], [-75.605, 45.427], [-75.614, 45.43], [-75.617, 45.436], [-75.614, 45.443], [-75.605, 45.445] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.376, 45.427], [-76.367, 45.425], [-76.363, 45.418], [-76.367, 45.412], [-76.376, 45.409], [-76.385, 45.412], [-76.388, 45.418], [-76.385, 45.425], [-76.376, 45.427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.736, 45.364], [-75.727, 45.361], [-75.723, 45.355], [-75.727, 45.349], [-75.736, 45.346], [-75.745, 45.349], [-75.748, 45.355], [-75.745, 45.361], [-75.736, 45.364] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.713, 45.249], [-75.704, 45.247], [-75.7, 45.24], [-75.704, 45.234], [-75.713, 45.231], [-75.722, 45.234], [-75.725, 45.24], [-75.722, 45.247], [-75.713, 45.249] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.698, 45.587], [-76.689, 45.584], [-76.685, 45.578], [-76.689, 45.571], [-76.698, 45.569], [-76.707, 45.571], [-76.711, 45.578], [-76.707, 45.584], [-76.698, 45.587] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.72, 45.336], [-75.711, 45.333], [-75.707, 45.327], [-75.711, 45.321], [-75.72, 45.318], [-75.729, 45.321], [-75.733, 45.327], [-75.729, 45.333], [-75.72, 45.336] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.881, 45.567], [-74.872, 45.565], [-74.868, 45.558], [-74.872, 45.552], [-74.881, 45.549], [-74.89, 45.552], [-74.894, 45.558], [-74.89, 45.565], [-74.881, 45.567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.904, 45.561], [-74.895, 45.558], [-74.891, 45.552], [-74.895, 45.545], [-74.904, 45.543], [-74.913, 45.545], [-74.917, 45.552], [-74.913, 45.558], [-74.904, 45.561] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.197, 45.234], [-76.188, 45.232], [-76.184, 45.225], [-76.188, 45.219], [-76.197, 45.216], [-76.206, 45.219], [-76.21, 45.225], [-76.206, 45.232], [-76.197, 45.234] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.186, 45.243], [-76.177, 45.24], [-76.173, 45.234], [-76.177, 45.227], [-76.186, 45.225], [-76.195, 45.227], [-76.198, 45.234], [-76.195, 45.24], [-76.186, 45.243] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.346, 45.34], [-75.337, 45.337], [-75.333, 45.331], [-75.337, 45.324], [-75.346, 45.322], [-75.355, 45.324], [-75.359, 45.331], [-75.355, 45.337], [-75.346, 45.34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.95, 45.285], [-75.941, 45.282], [-75.937, 45.276], [-75.941, 45.269], [-75.95, 45.267], [-75.959, 45.269], [-75.963, 45.276], [-75.959, 45.282], [-75.95, 45.285] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.23, 45.112], [-75.221, 45.109], [-75.218, 45.103], [-75.221, 45.097], [-75.23, 45.094], [-75.239, 45.097], [-75.243, 45.103], [-75.239, 45.109], [-75.23, 45.112] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.969, 45.392], [-75.96, 45.389], [-75.957, 45.383], [-75.96, 45.377], [-75.969, 45.374], [-75.979, 45.377], [-75.982, 45.383], [-75.979, 45.389], [-75.969, 45.392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.077, 45.155], [-75.068, 45.153], [-75.065, 45.146], [-75.068, 45.14], [-75.077, 45.137], [-75.086, 45.14], [-75.09, 45.146], [-75.086, 45.153], [-75.077, 45.155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.205, 45.23], [-76.196, 45.227], [-76.192, 45.221], [-76.196, 45.214], [-76.205, 45.212], [-76.214, 45.214], [-76.217, 45.221], [-76.214, 45.227], [-76.205, 45.23] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.938, 44.844], [-75.929, 44.841], [-75.925, 44.835], [-75.929, 44.828], [-75.938, 44.826], [-75.947, 44.828], [-75.95, 44.835], [-75.947, 44.841], [-75.938, 44.844] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.252, 45.339], [-75.243, 45.336], [-75.239, 45.33], [-75.243, 45.323], [-75.252, 45.321], [-75.261, 45.323], [-75.265, 45.33], [-75.261, 45.336], [-75.252, 45.339] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.896, 45.349], [-74.887, 45.347], [-74.884, 45.34], [-74.887, 45.334], [-74.896, 45.331], [-74.905, 45.334], [-74.909, 45.34], [-74.905, 45.347], [-74.896, 45.349] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.081, 45.315], [-75.072, 45.313], [-75.068, 45.306], [-75.072, 45.3], [-75.081, 45.297], [-75.09, 45.3], [-75.094, 45.306], [-75.09, 45.313], [-75.081, 45.315] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.679, 44.975], [-75.67, 44.972], [-75.666, 44.966], [-75.67, 44.959], [-75.679, 44.957], [-75.688, 44.959], [-75.691, 44.966], [-75.688, 44.972], [-75.679, 44.975] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.141, 44.858], [-76.132, 44.856], [-76.129, 44.849], [-76.132, 44.843], [-76.141, 44.84], [-76.15, 44.843], [-76.154, 44.849], [-76.15, 44.856], [-76.141, 44.858] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.249, 45.568], [-75.24, 45.565], [-75.236, 45.559], [-75.24, 45.553], [-75.249, 45.55], [-75.258, 45.553], [-75.262, 45.559], [-75.258, 45.565], [-75.249, 45.568] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.344, 45.451], [-75.335, 45.448], [-75.332, 45.442], [-75.335, 45.435], [-75.344, 45.433], [-75.353, 45.435], [-75.357, 45.442], [-75.353, 45.448], [-75.344, 45.451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.423, 45.43], [-75.414, 45.428], [-75.41, 45.421], [-75.414, 45.415], [-75.423, 45.412], [-75.432, 45.415], [-75.436, 45.421], [-75.432, 45.428], [-75.423, 45.43] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.089, 45.324], [-75.079, 45.321], [-75.076, 45.315], [-75.079, 45.308], [-75.089, 45.306], [-75.098, 45.308], [-75.101, 45.315], [-75.098, 45.321], [-75.089, 45.324] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.079, 45.308], [-75.07, 45.306], [-75.066, 45.299], [-75.07, 45.293], [-75.079, 45.29], [-75.088, 45.293], [-75.092, 45.299], [-75.088, 45.306], [-75.079, 45.308] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.291, 45.343], [-76.282, 45.34], [-76.278, 45.334], [-76.282, 45.327], [-76.291, 45.325], [-76.3, 45.327], [-76.303, 45.334], [-76.3, 45.34], [-76.291, 45.343] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.032, 44.915], [-76.023, 44.913], [-76.019, 44.906], [-76.023, 44.9], [-76.032, 44.897], [-76.041, 44.9], [-76.045, 44.906], [-76.041, 44.913], [-76.032, 44.915] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.491, 45.468], [-75.482, 45.466], [-75.478, 45.459], [-75.482, 45.453], [-75.491, 45.45], [-75.5, 45.453], [-75.504, 45.459], [-75.5, 45.466], [-75.491, 45.468] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.244, 45.327], [-75.235, 45.325], [-75.231, 45.318], [-75.235, 45.312], [-75.244, 45.309], [-75.253, 45.312], [-75.257, 45.318], [-75.253, 45.325], [-75.244, 45.327] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.9, 45.356], [-74.891, 45.353], [-74.887, 45.347], [-74.891, 45.341], [-74.9, 45.338], [-74.909, 45.341], [-74.913, 45.347], [-74.909, 45.353], [-74.9, 45.356] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.074, 45.495], [-76.065, 45.493], [-76.061, 45.486], [-76.065, 45.48], [-76.074, 45.477], [-76.083, 45.48], [-76.086, 45.486], [-76.083, 45.493], [-76.074, 45.495] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.121, 45.141], [-76.112, 45.139], [-76.108, 45.132], [-76.112, 45.126], [-76.121, 45.123], [-76.13, 45.126], [-76.134, 45.132], [-76.13, 45.139], [-76.121, 45.141] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.458, 44.995], [-75.449, 44.992], [-75.445, 44.986], [-75.449, 44.98], [-75.458, 44.977], [-75.467, 44.98], [-75.471, 44.986], [-75.467, 44.992], [-75.458, 44.995] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.377, 45.097], [-75.368, 45.095], [-75.365, 45.088], [-75.368, 45.082], [-75.377, 45.079], [-75.386, 45.082], [-75.39, 45.088], [-75.386, 45.095], [-75.377, 45.097] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.597, 45.334], [-75.588, 45.331], [-75.584, 45.325], [-75.588, 45.318], [-75.597, 45.316], [-75.606, 45.318], [-75.61, 45.325], [-75.606, 45.331], [-75.597, 45.334] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.677, 45.398], [-75.668, 45.395], [-75.664, 45.389], [-75.668, 45.382], [-75.677, 45.38], [-75.686, 45.382], [-75.69, 45.389], [-75.686, 45.395], [-75.677, 45.398] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.65, 45.454], [-75.641, 45.452], [-75.637, 45.445], [-75.641, 45.439], [-75.65, 45.436], [-75.659, 45.439], [-75.662, 45.445], [-75.659, 45.452], [-75.65, 45.454] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.461, 45.169], [-75.452, 45.166], [-75.448, 45.16], [-75.452, 45.153], [-75.461, 45.151], [-75.47, 45.153], [-75.474, 45.16], [-75.47, 45.166], [-75.461, 45.169] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.836, 45.361], [-75.826, 45.359], [-75.823, 45.352], [-75.826, 45.346], [-75.836, 45.343], [-75.845, 45.346], [-75.848, 45.352], [-75.845, 45.359], [-75.836, 45.361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.734, 45.372], [-75.725, 45.37], [-75.721, 45.363], [-75.725, 45.357], [-75.734, 45.354], [-75.743, 45.357], [-75.747, 45.363], [-75.743, 45.37], [-75.734, 45.372] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.836, 45.33], [-75.827, 45.328], [-75.823, 45.321], [-75.827, 45.315], [-75.836, 45.312], [-75.845, 45.315], [-75.849, 45.321], [-75.845, 45.328], [-75.836, 45.33] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.83, 45.332], [-75.821, 45.33], [-75.817, 45.323], [-75.821, 45.317], [-75.83, 45.314], [-75.839, 45.317], [-75.842, 45.323], [-75.839, 45.33], [-75.83, 45.332] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.775, 45.356], [-75.766, 45.353], [-75.762, 45.347], [-75.766, 45.34], [-75.775, 45.338], [-75.784, 45.34], [-75.788, 45.347], [-75.784, 45.353], [-75.775, 45.356] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.775, 45.356], [-75.766, 45.353], [-75.762, 45.347], [-75.766, 45.341], [-75.775, 45.338], [-75.784, 45.341], [-75.787, 45.347], [-75.784, 45.353], [-75.775, 45.356] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.455, 45.378], [-75.446, 45.375], [-75.443, 45.369], [-75.446, 45.363], [-75.455, 45.36], [-75.464, 45.363], [-75.468, 45.369], [-75.464, 45.375], [-75.455, 45.378] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.245, 45.419], [-75.236, 45.417], [-75.232, 45.41], [-75.236, 45.404], [-75.245, 45.401], [-75.254, 45.404], [-75.258, 45.41], [-75.254, 45.417], [-75.245, 45.419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.75, 45.278], [-75.741, 45.275], [-75.738, 45.269], [-75.741, 45.262], [-75.75, 45.26], [-75.759, 45.262], [-75.763, 45.269], [-75.759, 45.275], [-75.75, 45.278] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.249, 45.069], [-76.24, 45.067], [-76.236, 45.06], [-76.24, 45.054], [-76.249, 45.051], [-76.258, 45.054], [-76.262, 45.06], [-76.258, 45.067], [-76.249, 45.069] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.571, 45.29], [-75.562, 45.288], [-75.558, 45.281], [-75.562, 45.275], [-75.571, 45.272], [-75.58, 45.275], [-75.584, 45.281], [-75.58, 45.288], [-75.571, 45.29] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.61, 45.153], [-75.601, 45.151], [-75.597, 45.144], [-75.601, 45.138], [-75.61, 45.135], [-75.619, 45.138], [-75.622, 45.144], [-75.619, 45.151], [-75.61, 45.153] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.721, 45.339], [-75.712, 45.336], [-75.708, 45.33], [-75.712, 45.323], [-75.721, 45.321], [-75.73, 45.323], [-75.734, 45.33], [-75.73, 45.336], [-75.721, 45.339] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.994, 45.503], [-74.985, 45.501], [-74.981, 45.494], [-74.985, 45.488], [-74.994, 45.485], [-75.003, 45.488], [-75.007, 45.494], [-75.003, 45.501], [-74.994, 45.503] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.606, 45.445], [-75.596, 45.442], [-75.593, 45.436], [-75.596, 45.43], [-75.606, 45.427], [-75.615, 45.43], [-75.618, 45.436], [-75.615, 45.442], [-75.606, 45.445] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.643, 45.363], [-75.634, 45.361], [-75.63, 45.354], [-75.634, 45.348], [-75.643, 45.345], [-75.652, 45.348], [-75.656, 45.354], [-75.652, 45.361], [-75.643, 45.363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.9, 45.306], [-75.891, 45.304], [-75.887, 45.297], [-75.891, 45.291], [-75.9, 45.288], [-75.909, 45.291], [-75.912, 45.297], [-75.909, 45.304], [-75.9, 45.306] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.513, 45.487], [-75.503, 45.485], [-75.5, 45.478], [-75.503, 45.472], [-75.513, 45.469], [-75.522, 45.472], [-75.525, 45.478], [-75.522, 45.485], [-75.513, 45.487] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.486, 45.606], [-76.477, 45.603], [-76.473, 45.597], [-76.477, 45.59], [-76.486, 45.588], [-76.495, 45.59], [-76.499, 45.597], [-76.495, 45.603], [-76.486, 45.606] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.494, 45.609], [-76.485, 45.606], [-76.482, 45.6], [-76.485, 45.594], [-76.494, 45.591], [-76.503, 45.594], [-76.507, 45.6], [-76.503, 45.606], [-76.494, 45.609] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.075, 45.472], [-76.066, 45.469], [-76.062, 45.463], [-76.066, 45.456], [-76.075, 45.454], [-76.084, 45.456], [-76.087, 45.463], [-76.084, 45.469], [-76.075, 45.472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.357, 45.02], [-76.348, 45.017], [-76.344, 45.011], [-76.348, 45.004], [-76.357, 45.002], [-76.366, 45.004], [-76.369, 45.011], [-76.366, 45.017], [-76.357, 45.02] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.836, 44.924], [-75.827, 44.921], [-75.824, 44.915], [-75.827, 44.908], [-75.836, 44.906], [-75.845, 44.908], [-75.849, 44.915], [-75.845, 44.921], [-75.836, 44.924] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.809, 45.422], [-75.8, 45.419], [-75.796, 45.413], [-75.8, 45.406], [-75.809, 45.404], [-75.818, 45.406], [-75.822, 45.413], [-75.818, 45.419], [-75.809, 45.422] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.839, 45.42], [-75.83, 45.417], [-75.826, 45.411], [-75.83, 45.405], [-75.839, 45.402], [-75.848, 45.405], [-75.851, 45.411], [-75.848, 45.417], [-75.839, 45.42] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.857, 45.418], [-75.848, 45.415], [-75.844, 45.409], [-75.848, 45.402], [-75.857, 45.4], [-75.866, 45.402], [-75.87, 45.409], [-75.866, 45.415], [-75.857, 45.418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.83, 45.405], [-75.821, 45.402], [-75.817, 45.396], [-75.821, 45.39], [-75.83, 45.387], [-75.839, 45.39], [-75.843, 45.396], [-75.839, 45.402], [-75.83, 45.405] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.732, 45.455], [-75.723, 45.453], [-75.719, 45.446], [-75.723, 45.44], [-75.732, 45.437], [-75.741, 45.44], [-75.745, 45.446], [-75.741, 45.453], [-75.732, 45.455] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.738, 45.477], [-75.729, 45.475], [-75.725, 45.468], [-75.729, 45.462], [-75.738, 45.459], [-75.747, 45.462], [-75.75, 45.468], [-75.747, 45.475], [-75.738, 45.477] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.188, 45.401], [-76.179, 45.398], [-76.176, 45.392], [-76.179, 45.385], [-76.188, 45.383], [-76.198, 45.385], [-76.201, 45.392], [-76.198, 45.398], [-76.188, 45.401] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.36, 44.949], [-75.351, 44.946], [-75.347, 44.94], [-75.351, 44.933], [-75.36, 44.931], [-75.369, 44.933], [-75.372, 44.94], [-75.369, 44.946], [-75.36, 44.949] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.481, 45.501], [-75.472, 45.498], [-75.468, 45.492], [-75.472, 45.486], [-75.481, 45.483], [-75.49, 45.486], [-75.494, 45.492], [-75.49, 45.498], [-75.481, 45.501] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.834, 45.404], [-75.825, 45.402], [-75.821, 45.395], [-75.825, 45.389], [-75.834, 45.386], [-75.843, 45.389], [-75.847, 45.395], [-75.843, 45.402], [-75.834, 45.404] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.454, 45.48], [-75.445, 45.477], [-75.441, 45.471], [-75.445, 45.465], [-75.454, 45.462], [-75.463, 45.465], [-75.467, 45.471], [-75.463, 45.477], [-75.454, 45.48] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.853, 45.409], [-75.844, 45.407], [-75.84, 45.4], [-75.844, 45.394], [-75.853, 45.391], [-75.862, 45.394], [-75.866, 45.4], [-75.862, 45.407], [-75.853, 45.409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.87, 45.571], [-74.861, 45.568], [-74.857, 45.562], [-74.861, 45.556], [-74.87, 45.553], [-74.879, 45.556], [-74.883, 45.562], [-74.879, 45.568], [-74.87, 45.571] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.808, 45.395], [-75.799, 45.392], [-75.795, 45.386], [-75.799, 45.38], [-75.808, 45.377], [-75.817, 45.38], [-75.821, 45.386], [-75.817, 45.392], [-75.808, 45.395] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.73, 45.684], [-75.721, 45.681], [-75.717, 45.675], [-75.721, 45.668], [-75.73, 45.666], [-75.739, 45.668], [-75.743, 45.675], [-75.739, 45.681], [-75.73, 45.684] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.783, 45.58], [-75.774, 45.577], [-75.77, 45.571], [-75.774, 45.564], [-75.783, 45.562], [-75.792, 45.564], [-75.795, 45.571], [-75.792, 45.577], [-75.783, 45.58] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.724, 45.691], [-75.715, 45.689], [-75.711, 45.682], [-75.715, 45.676], [-75.724, 45.673], [-75.733, 45.676], [-75.737, 45.682], [-75.733, 45.689], [-75.724, 45.691] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.912, 45.559], [-74.902, 45.556], [-74.899, 45.55], [-74.902, 45.543], [-74.912, 45.541], [-74.921, 45.543], [-74.924, 45.55], [-74.921, 45.556], [-74.912, 45.559] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.347, 45.34], [-75.338, 45.338], [-75.334, 45.331], [-75.338, 45.325], [-75.347, 45.322], [-75.356, 45.325], [-75.359, 45.331], [-75.356, 45.338], [-75.347, 45.34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.989, 45.55], [-74.98, 45.547], [-74.977, 45.541], [-74.98, 45.535], [-74.989, 45.532], [-74.998, 45.535], [-75.002, 45.541], [-74.998, 45.547], [-74.989, 45.55] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.44, 45.349], [-75.431, 45.346], [-75.427, 45.34], [-75.431, 45.334], [-75.44, 45.331], [-75.449, 45.334], [-75.453, 45.34], [-75.449, 45.346], [-75.44, 45.349] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.734, 45.457], [-75.725, 45.455], [-75.721, 45.448], [-75.725, 45.442], [-75.734, 45.439], [-75.743, 45.442], [-75.746, 45.448], [-75.743, 45.455], [-75.734, 45.457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.741, 45.469], [-75.732, 45.466], [-75.728, 45.46], [-75.732, 45.453], [-75.741, 45.451], [-75.75, 45.453], [-75.754, 45.46], [-75.75, 45.466], [-75.741, 45.469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.742, 45.466], [-75.733, 45.464], [-75.729, 45.457], [-75.733, 45.451], [-75.742, 45.448], [-75.751, 45.451], [-75.755, 45.457], [-75.751, 45.464], [-75.742, 45.466] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.744, 45.456], [-75.735, 45.453], [-75.731, 45.447], [-75.735, 45.441], [-75.744, 45.438], [-75.753, 45.441], [-75.757, 45.447], [-75.753, 45.453], [-75.744, 45.456] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.766, 45.445], [-75.757, 45.443], [-75.753, 45.436], [-75.757, 45.43], [-75.766, 45.427], [-75.775, 45.43], [-75.779, 45.436], [-75.775, 45.443], [-75.766, 45.445] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.699, 45.471], [-75.69, 45.468], [-75.687, 45.462], [-75.69, 45.455], [-75.699, 45.453], [-75.708, 45.455], [-75.712, 45.462], [-75.708, 45.468], [-75.699, 45.471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.708, 45.484], [-75.699, 45.482], [-75.695, 45.475], [-75.699, 45.469], [-75.708, 45.467], [-75.717, 45.469], [-75.721, 45.475], [-75.717, 45.482], [-75.708, 45.484] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.719, 45.498], [-75.71, 45.495], [-75.706, 45.489], [-75.71, 45.482], [-75.719, 45.48], [-75.728, 45.482], [-75.732, 45.489], [-75.728, 45.495], [-75.719, 45.498] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.676, 45.499], [-75.667, 45.496], [-75.663, 45.49], [-75.667, 45.484], [-75.676, 45.481], [-75.685, 45.484], [-75.689, 45.49], [-75.685, 45.496], [-75.676, 45.499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.651, 45.493], [-75.642, 45.49], [-75.638, 45.484], [-75.642, 45.478], [-75.651, 45.475], [-75.66, 45.478], [-75.663, 45.484], [-75.66, 45.49], [-75.651, 45.493] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.74, 45.482], [-75.731, 45.48], [-75.727, 45.473], [-75.731, 45.467], [-75.74, 45.464], [-75.749, 45.467], [-75.753, 45.473], [-75.749, 45.48], [-75.74, 45.482] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.738, 45.479], [-75.729, 45.476], [-75.725, 45.47], [-75.729, 45.464], [-75.738, 45.461], [-75.747, 45.464], [-75.751, 45.47], [-75.747, 45.476], [-75.738, 45.479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.809, 45.423], [-75.8, 45.421], [-75.796, 45.414], [-75.8, 45.408], [-75.809, 45.405], [-75.818, 45.408], [-75.822, 45.414], [-75.818, 45.421], [-75.809, 45.423] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.421, 45.595], [-75.412, 45.593], [-75.408, 45.586], [-75.412, 45.58], [-75.421, 45.577], [-75.43, 45.58], [-75.434, 45.586], [-75.43, 45.593], [-75.421, 45.595] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.832, 45.405], [-75.823, 45.402], [-75.82, 45.396], [-75.823, 45.39], [-75.832, 45.387], [-75.841, 45.39], [-75.845, 45.396], [-75.841, 45.402], [-75.832, 45.405] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.722, 45.442], [-75.713, 45.439], [-75.709, 45.433], [-75.713, 45.426], [-75.722, 45.424], [-75.731, 45.426], [-75.735, 45.433], [-75.731, 45.439], [-75.722, 45.442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.689, 45.498], [-75.68, 45.496], [-75.676, 45.489], [-75.68, 45.483], [-75.689, 45.48], [-75.698, 45.483], [-75.702, 45.489], [-75.698, 45.496], [-75.689, 45.498] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.713, 45.497], [-75.704, 45.495], [-75.7, 45.488], [-75.704, 45.482], [-75.713, 45.479], [-75.722, 45.482], [-75.726, 45.488], [-75.722, 45.495], [-75.713, 45.497] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.642, 45.51], [-75.633, 45.508], [-75.629, 45.501], [-75.633, 45.495], [-75.642, 45.492], [-75.651, 45.495], [-75.655, 45.501], [-75.651, 45.508], [-75.642, 45.51] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.702, 45.487], [-75.692, 45.484], [-75.689, 45.478], [-75.692, 45.472], [-75.702, 45.469], [-75.711, 45.472], [-75.714, 45.478], [-75.711, 45.484], [-75.702, 45.487] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.729, 45.451], [-75.72, 45.448], [-75.716, 45.442], [-75.72, 45.435], [-75.729, 45.433], [-75.738, 45.435], [-75.742, 45.442], [-75.738, 45.448], [-75.729, 45.451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.726, 45.438], [-75.717, 45.435], [-75.713, 45.429], [-75.717, 45.423], [-75.726, 45.42], [-75.735, 45.423], [-75.739, 45.429], [-75.735, 45.435], [-75.726, 45.438] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.747, 45.471], [-75.737, 45.469], [-75.734, 45.462], [-75.737, 45.456], [-75.747, 45.453], [-75.756, 45.456], [-75.759, 45.462], [-75.756, 45.469], [-75.747, 45.471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.639, 45.493], [-75.63, 45.491], [-75.626, 45.484], [-75.63, 45.478], [-75.639, 45.475], [-75.648, 45.478], [-75.652, 45.484], [-75.648, 45.491], [-75.639, 45.493] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.815, 45.451], [-75.806, 45.449], [-75.803, 45.442], [-75.806, 45.436], [-75.815, 45.433], [-75.824, 45.436], [-75.828, 45.442], [-75.824, 45.449], [-75.815, 45.451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.496, 45.237], [-75.487, 45.234], [-75.483, 45.228], [-75.487, 45.221], [-75.496, 45.219], [-75.505, 45.221], [-75.509, 45.228], [-75.505, 45.234], [-75.496, 45.237] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.746, 45.431], [-75.737, 45.428], [-75.733, 45.422], [-75.737, 45.416], [-75.746, 45.413], [-75.755, 45.416], [-75.759, 45.422], [-75.755, 45.428], [-75.746, 45.431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.228, 45.3], [-75.219, 45.297], [-75.216, 45.291], [-75.219, 45.284], [-75.228, 45.282], [-75.237, 45.284], [-75.241, 45.291], [-75.237, 45.297], [-75.228, 45.3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.229, 45.299], [-75.22, 45.297], [-75.216, 45.29], [-75.22, 45.284], [-75.229, 45.281], [-75.238, 45.284], [-75.242, 45.29], [-75.238, 45.297], [-75.229, 45.299] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.412, 44.927], [-75.403, 44.924], [-75.399, 44.918], [-75.403, 44.911], [-75.412, 44.909], [-75.421, 44.911], [-75.425, 44.918], [-75.421, 44.924], [-75.412, 44.927] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.407, 45.584], [-75.398, 45.582], [-75.394, 45.575], [-75.398, 45.569], [-75.407, 45.566], [-75.416, 45.569], [-75.42, 45.575], [-75.416, 45.582], [-75.407, 45.584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.422, 45.565], [-75.413, 45.563], [-75.409, 45.556], [-75.413, 45.55], [-75.422, 45.547], [-75.431, 45.55], [-75.435, 45.556], [-75.431, 45.563], [-75.422, 45.565] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.696, 45.42], [-75.686, 45.418], [-75.683, 45.411], [-75.686, 45.405], [-75.696, 45.403], [-75.705, 45.405], [-75.708, 45.411], [-75.705, 45.418], [-75.696, 45.42] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.7, 45.47], [-75.691, 45.468], [-75.687, 45.461], [-75.691, 45.455], [-75.7, 45.452], [-75.709, 45.455], [-75.713, 45.461], [-75.709, 45.468], [-75.7, 45.47] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.344, 45.442], [-76.335, 45.44], [-76.331, 45.433], [-76.335, 45.427], [-76.344, 45.424], [-76.353, 45.427], [-76.356, 45.433], [-76.353, 45.44], [-76.344, 45.442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.326, 45.201], [-76.317, 45.198], [-76.314, 45.192], [-76.317, 45.186], [-76.326, 45.183], [-76.335, 45.186], [-76.339, 45.192], [-76.335, 45.198], [-76.326, 45.201] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.106, 45.116], [-76.097, 45.113], [-76.093, 45.107], [-76.097, 45.1], [-76.106, 45.098], [-76.115, 45.1], [-76.118, 45.107], [-76.115, 45.113], [-76.106, 45.116] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.931, 45.692], [-75.922, 45.689], [-75.918, 45.683], [-75.922, 45.676], [-75.931, 45.674], [-75.94, 45.676], [-75.944, 45.683], [-75.94, 45.689], [-75.931, 45.692] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.645, 45.493], [-75.636, 45.491], [-75.632, 45.484], [-75.636, 45.478], [-75.645, 45.475], [-75.654, 45.478], [-75.658, 45.484], [-75.654, 45.491], [-75.645, 45.493] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.702, 45.49], [-75.693, 45.488], [-75.689, 45.481], [-75.693, 45.475], [-75.702, 45.472], [-75.711, 45.475], [-75.715, 45.481], [-75.711, 45.488], [-75.702, 45.49] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.772, 45.484], [-75.763, 45.481], [-75.759, 45.475], [-75.763, 45.468], [-75.772, 45.466], [-75.781, 45.468], [-75.785, 45.475], [-75.781, 45.481], [-75.772, 45.484] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.491, 45.607], [-76.482, 45.605], [-76.478, 45.598], [-76.482, 45.592], [-76.491, 45.589], [-76.5, 45.592], [-76.504, 45.598], [-76.5, 45.605], [-76.491, 45.607] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.73, 45.414], [-75.721, 45.412], [-75.717, 45.405], [-75.721, 45.399], [-75.73, 45.396], [-75.739, 45.399], [-75.743, 45.405], [-75.739, 45.412], [-75.73, 45.414] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.753, 45.402], [-75.744, 45.399], [-75.74, 45.393], [-75.744, 45.386], [-75.753, 45.384], [-75.762, 45.386], [-75.766, 45.393], [-75.762, 45.399], [-75.753, 45.402] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.841, 45.202], [-75.832, 45.199], [-75.828, 45.193], [-75.832, 45.187], [-75.841, 45.184], [-75.85, 45.187], [-75.854, 45.193], [-75.85, 45.199], [-75.841, 45.202] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.823, 45.214], [-75.814, 45.211], [-75.81, 45.205], [-75.814, 45.198], [-75.823, 45.196], [-75.832, 45.198], [-75.836, 45.205], [-75.832, 45.211], [-75.823, 45.214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.228, 45.248], [-76.219, 45.246], [-76.216, 45.239], [-76.219, 45.233], [-76.228, 45.23], [-76.237, 45.233], [-76.241, 45.239], [-76.237, 45.246], [-76.228, 45.248] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.188, 45.217], [-76.179, 45.214], [-76.175, 45.208], [-76.179, 45.201], [-76.188, 45.199], [-76.197, 45.201], [-76.201, 45.208], [-76.197, 45.214], [-76.188, 45.217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.518, 45.25], [-75.509, 45.248], [-75.505, 45.241], [-75.509, 45.235], [-75.518, 45.232], [-75.527, 45.235], [-75.531, 45.241], [-75.527, 45.248], [-75.518, 45.25] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.807, 45.395], [-75.798, 45.392], [-75.795, 45.386], [-75.798, 45.38], [-75.807, 45.377], [-75.816, 45.38], [-75.82, 45.386], [-75.816, 45.392], [-75.807, 45.395] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.902, 45.385], [-74.893, 45.382], [-74.89, 45.376], [-74.893, 45.369], [-74.902, 45.367], [-74.911, 45.369], [-74.915, 45.376], [-74.911, 45.382], [-74.902, 45.385] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.761, 45.436], [-75.752, 45.433], [-75.749, 45.427], [-75.752, 45.421], [-75.761, 45.418], [-75.77, 45.421], [-75.774, 45.427], [-75.77, 45.433], [-75.761, 45.436] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.786, 45.453], [-75.777, 45.45], [-75.773, 45.444], [-75.777, 45.437], [-75.786, 45.435], [-75.795, 45.437], [-75.799, 45.444], [-75.795, 45.45], [-75.786, 45.453] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.763, 45.439], [-75.754, 45.437], [-75.75, 45.43], [-75.754, 45.424], [-75.763, 45.421], [-75.772, 45.424], [-75.776, 45.43], [-75.772, 45.437], [-75.763, 45.439] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.747, 45.497], [-75.738, 45.495], [-75.734, 45.488], [-75.738, 45.482], [-75.747, 45.479], [-75.756, 45.482], [-75.76, 45.488], [-75.756, 45.495], [-75.747, 45.497] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.711, 45.137], [-75.702, 45.134], [-75.699, 45.128], [-75.702, 45.121], [-75.711, 45.119], [-75.72, 45.121], [-75.724, 45.128], [-75.72, 45.134], [-75.711, 45.137] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.229, 45.11], [-75.22, 45.108], [-75.216, 45.101], [-75.22, 45.095], [-75.229, 45.092], [-75.238, 45.095], [-75.242, 45.101], [-75.238, 45.108], [-75.229, 45.11] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.491, 45.364], [-76.482, 45.361], [-76.478, 45.355], [-76.482, 45.349], [-76.491, 45.346], [-76.5, 45.349], [-76.504, 45.355], [-76.5, 45.361], [-76.491, 45.364] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.713, 45.455], [-75.704, 45.453], [-75.7, 45.446], [-75.704, 45.44], [-75.713, 45.437], [-75.722, 45.44], [-75.726, 45.446], [-75.722, 45.453], [-75.713, 45.455] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.752, 45.463], [-75.743, 45.461], [-75.739, 45.454], [-75.743, 45.448], [-75.752, 45.445], [-75.761, 45.448], [-75.765, 45.454], [-75.761, 45.461], [-75.752, 45.463] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.675, 45.491], [-75.666, 45.489], [-75.662, 45.482], [-75.666, 45.476], [-75.675, 45.473], [-75.684, 45.476], [-75.688, 45.482], [-75.684, 45.489], [-75.675, 45.491] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.492, 45.477], [-75.483, 45.474], [-75.479, 45.468], [-75.483, 45.462], [-75.492, 45.459], [-75.501, 45.462], [-75.504, 45.468], [-75.501, 45.474], [-75.492, 45.477] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.676, 45.514], [-75.667, 45.512], [-75.663, 45.505], [-75.667, 45.499], [-75.676, 45.496], [-75.685, 45.499], [-75.689, 45.505], [-75.685, 45.512], [-75.676, 45.514] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.291, 45.342], [-76.282, 45.34], [-76.278, 45.333], [-76.282, 45.327], [-76.291, 45.324], [-76.3, 45.327], [-76.303, 45.333], [-76.3, 45.34], [-76.291, 45.342] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.303, 45.277], [-75.294, 45.274], [-75.29, 45.268], [-75.294, 45.261], [-75.303, 45.259], [-75.312, 45.261], [-75.316, 45.268], [-75.312, 45.274], [-75.303, 45.277] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.629, 45.455], [-75.62, 45.453], [-75.616, 45.446], [-75.62, 45.44], [-75.629, 45.437], [-75.638, 45.44], [-75.642, 45.446], [-75.638, 45.453], [-75.629, 45.455] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.294, 45.279], [-75.285, 45.276], [-75.281, 45.27], [-75.285, 45.263], [-75.294, 45.261], [-75.303, 45.263], [-75.307, 45.27], [-75.303, 45.276], [-75.294, 45.279] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.245, 44.984], [-75.236, 44.982], [-75.232, 44.975], [-75.236, 44.969], [-75.245, 44.966], [-75.254, 44.969], [-75.257, 44.975], [-75.254, 44.982], [-75.245, 44.984] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.283, 45.417], [-76.273, 45.415], [-76.27, 45.408], [-76.273, 45.402], [-76.283, 45.399], [-76.292, 45.402], [-76.295, 45.408], [-76.292, 45.415], [-76.283, 45.417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.337, 45.439], [-76.328, 45.437], [-76.324, 45.43], [-76.328, 45.424], [-76.337, 45.421], [-76.346, 45.424], [-76.35, 45.43], [-76.346, 45.437], [-76.337, 45.439] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.059, 45.048], [-76.05, 45.045], [-76.047, 45.039], [-76.05, 45.033], [-76.059, 45.03], [-76.068, 45.033], [-76.072, 45.039], [-76.068, 45.045], [-76.059, 45.048] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.829, 45.21], [-75.82, 45.207], [-75.817, 45.201], [-75.82, 45.194], [-75.829, 45.192], [-75.838, 45.194], [-75.842, 45.201], [-75.838, 45.207], [-75.829, 45.21] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.956, 45.553], [-74.946, 45.55], [-74.943, 45.544], [-74.946, 45.537], [-74.956, 45.535], [-74.965, 45.537], [-74.968, 45.544], [-74.965, 45.55], [-74.956, 45.553] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.596, 45.334], [-75.587, 45.331], [-75.583, 45.325], [-75.587, 45.318], [-75.596, 45.316], [-75.605, 45.318], [-75.609, 45.325], [-75.605, 45.331], [-75.596, 45.334] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.747, 45.498], [-75.737, 45.495], [-75.734, 45.489], [-75.737, 45.482], [-75.747, 45.48], [-75.756, 45.482], [-75.759, 45.489], [-75.756, 45.495], [-75.747, 45.498] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.639, 45.437], [-75.63, 45.435], [-75.626, 45.428], [-75.63, 45.422], [-75.639, 45.419], [-75.648, 45.422], [-75.652, 45.428], [-75.648, 45.435], [-75.639, 45.437] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.12, 45.576], [-75.111, 45.574], [-75.108, 45.567], [-75.111, 45.561], [-75.12, 45.558], [-75.129, 45.561], [-75.133, 45.567], [-75.129, 45.574], [-75.12, 45.576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.41, 45.526], [-75.401, 45.523], [-75.397, 45.517], [-75.401, 45.51], [-75.41, 45.508], [-75.419, 45.51], [-75.423, 45.517], [-75.419, 45.523], [-75.41, 45.526] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.51, 45.448], [-76.501, 45.445], [-76.497, 45.439], [-76.501, 45.432], [-76.51, 45.43], [-76.519, 45.432], [-76.523, 45.439], [-76.519, 45.445], [-76.51, 45.448] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.672, 45.471], [-76.663, 45.469], [-76.659, 45.462], [-76.663, 45.456], [-76.672, 45.454], [-76.681, 45.456], [-76.685, 45.462], [-76.681, 45.469], [-76.672, 45.471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.754, 45.386], [-75.745, 45.384], [-75.741, 45.377], [-75.745, 45.371], [-75.754, 45.368], [-75.763, 45.371], [-75.767, 45.377], [-75.763, 45.384], [-75.754, 45.386] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.881, 45.319], [-75.872, 45.316], [-75.868, 45.31], [-75.872, 45.304], [-75.881, 45.301], [-75.89, 45.304], [-75.893, 45.31], [-75.89, 45.316], [-75.881, 45.319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.731, 45.485], [-75.722, 45.482], [-75.718, 45.476], [-75.722, 45.469], [-75.731, 45.467], [-75.74, 45.469], [-75.744, 45.476], [-75.74, 45.482], [-75.731, 45.485] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.931, 45.443], [-74.922, 45.44], [-74.918, 45.434], [-74.922, 45.428], [-74.931, 45.425], [-74.94, 45.428], [-74.944, 45.434], [-74.94, 45.44], [-74.931, 45.443] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.75, 45.278], [-75.741, 45.275], [-75.738, 45.269], [-75.741, 45.262], [-75.75, 45.26], [-75.759, 45.262], [-75.763, 45.269], [-75.759, 45.275], [-75.75, 45.278] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.701, 45.475], [-75.692, 45.473], [-75.688, 45.466], [-75.692, 45.46], [-75.701, 45.457], [-75.71, 45.46], [-75.714, 45.466], [-75.71, 45.473], [-75.701, 45.475] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.724, 45.499], [-75.715, 45.496], [-75.711, 45.49], [-75.715, 45.483], [-75.724, 45.481], [-75.733, 45.483], [-75.737, 45.49], [-75.733, 45.496], [-75.724, 45.499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.014, 45.626], [-75.005, 45.624], [-75.001, 45.617], [-75.005, 45.611], [-75.014, 45.608], [-75.023, 45.611], [-75.027, 45.617], [-75.023, 45.624], [-75.014, 45.626] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.017, 45.626], [-75.007, 45.624], [-75.004, 45.617], [-75.007, 45.611], [-75.017, 45.608], [-75.026, 45.611], [-75.029, 45.617], [-75.026, 45.624], [-75.017, 45.626] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.241, 45.606], [-75.232, 45.604], [-75.228, 45.597], [-75.232, 45.591], [-75.241, 45.588], [-75.25, 45.591], [-75.254, 45.597], [-75.25, 45.604], [-75.241, 45.606] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.948, 45.659], [-74.939, 45.657], [-74.935, 45.65], [-74.939, 45.644], [-74.948, 45.641], [-74.957, 45.644], [-74.96, 45.65], [-74.957, 45.657], [-74.948, 45.659] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.767, 45.469], [-75.758, 45.467], [-75.754, 45.46], [-75.758, 45.454], [-75.767, 45.451], [-75.776, 45.454], [-75.78, 45.46], [-75.776, 45.467], [-75.767, 45.469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.637, 45.208], [-75.628, 45.205], [-75.625, 45.199], [-75.628, 45.192], [-75.637, 45.19], [-75.646, 45.192], [-75.65, 45.199], [-75.646, 45.205], [-75.637, 45.208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.43, 45.263], [-75.421, 45.261], [-75.417, 45.254], [-75.421, 45.248], [-75.43, 45.245], [-75.439, 45.248], [-75.443, 45.254], [-75.439, 45.261], [-75.43, 45.263] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.525, 45.351], [-75.516, 45.349], [-75.512, 45.342], [-75.516, 45.336], [-75.525, 45.333], [-75.534, 45.336], [-75.538, 45.342], [-75.534, 45.349], [-75.525, 45.351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.747, 45.282], [-75.738, 45.279], [-75.734, 45.273], [-75.738, 45.266], [-75.747, 45.264], [-75.756, 45.266], [-75.76, 45.273], [-75.756, 45.279], [-75.747, 45.282] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.676, 45.511], [-75.667, 45.509], [-75.663, 45.502], [-75.667, 45.496], [-75.676, 45.493], [-75.685, 45.496], [-75.689, 45.502], [-75.685, 45.509], [-75.676, 45.511] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.928, 45.303], [-75.919, 45.301], [-75.915, 45.294], [-75.919, 45.288], [-75.928, 45.285], [-75.937, 45.288], [-75.941, 45.294], [-75.937, 45.301], [-75.928, 45.303] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.12, 45.615], [-75.111, 45.612], [-75.107, 45.606], [-75.111, 45.599], [-75.12, 45.597], [-75.129, 45.599], [-75.133, 45.606], [-75.129, 45.612], [-75.12, 45.615] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.665, 45.494], [-75.656, 45.491], [-75.652, 45.485], [-75.656, 45.478], [-75.665, 45.476], [-75.674, 45.478], [-75.678, 45.485], [-75.674, 45.491], [-75.665, 45.494] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.436, 45.563], [-75.427, 45.561], [-75.423, 45.554], [-75.427, 45.548], [-75.436, 45.545], [-75.445, 45.548], [-75.449, 45.554], [-75.445, 45.561], [-75.436, 45.563] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.497, 45.539], [-75.487, 45.537], [-75.484, 45.53], [-75.487, 45.524], [-75.497, 45.521], [-75.506, 45.524], [-75.509, 45.53], [-75.506, 45.537], [-75.497, 45.539] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.571, 45.507], [-75.562, 45.505], [-75.558, 45.498], [-75.562, 45.492], [-75.571, 45.489], [-75.58, 45.492], [-75.584, 45.498], [-75.58, 45.505], [-75.571, 45.507] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.6, 45.497], [-75.591, 45.495], [-75.587, 45.488], [-75.591, 45.482], [-75.6, 45.48], [-75.609, 45.482], [-75.613, 45.488], [-75.609, 45.495], [-75.6, 45.497] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.609, 45.516], [-75.6, 45.513], [-75.596, 45.507], [-75.6, 45.501], [-75.609, 45.498], [-75.618, 45.501], [-75.622, 45.507], [-75.618, 45.513], [-75.609, 45.516] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.603, 45.496], [-75.594, 45.493], [-75.59, 45.487], [-75.594, 45.481], [-75.603, 45.478], [-75.612, 45.481], [-75.616, 45.487], [-75.612, 45.493], [-75.603, 45.496] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.607, 45.155], [-75.598, 45.152], [-75.594, 45.146], [-75.598, 45.139], [-75.607, 45.137], [-75.616, 45.139], [-75.619, 45.146], [-75.616, 45.152], [-75.607, 45.155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.657, 45.501], [-75.648, 45.498], [-75.644, 45.492], [-75.648, 45.485], [-75.657, 45.483], [-75.666, 45.485], [-75.67, 45.492], [-75.666, 45.498], [-75.657, 45.501] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.249, 45.069], [-76.24, 45.067], [-76.236, 45.06], [-76.24, 45.054], [-76.249, 45.051], [-76.258, 45.054], [-76.262, 45.06], [-76.258, 45.067], [-76.249, 45.069] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.719, 45.346], [-75.71, 45.344], [-75.706, 45.337], [-75.71, 45.331], [-75.719, 45.328], [-75.728, 45.331], [-75.732, 45.337], [-75.728, 45.344], [-75.719, 45.346] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.249, 45.069], [-76.24, 45.067], [-76.236, 45.06], [-76.24, 45.054], [-76.249, 45.051], [-76.258, 45.054], [-76.262, 45.06], [-76.258, 45.067], [-76.249, 45.069] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.997, 45.544], [-74.988, 45.542], [-74.984, 45.535], [-74.988, 45.529], [-74.997, 45.526], [-75.006, 45.529], [-75.01, 45.535], [-75.006, 45.542], [-74.997, 45.544] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.738, 45.477], [-75.729, 45.475], [-75.725, 45.468], [-75.729, 45.462], [-75.738, 45.459], [-75.747, 45.462], [-75.751, 45.468], [-75.747, 45.475], [-75.738, 45.477] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.272, 45.563], [-75.263, 45.56], [-75.259, 45.554], [-75.263, 45.547], [-75.272, 45.545], [-75.281, 45.547], [-75.284, 45.554], [-75.281, 45.56], [-75.272, 45.563] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.647, 45.158], [-75.638, 45.155], [-75.634, 45.149], [-75.638, 45.142], [-75.647, 45.14], [-75.656, 45.142], [-75.659, 45.149], [-75.656, 45.155], [-75.647, 45.158] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.193, 45.435], [-75.184, 45.433], [-75.18, 45.426], [-75.184, 45.42], [-75.193, 45.417], [-75.202, 45.42], [-75.206, 45.426], [-75.202, 45.433], [-75.193, 45.435] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.057, 45.74], [-75.048, 45.737], [-75.044, 45.731], [-75.048, 45.725], [-75.057, 45.722], [-75.066, 45.725], [-75.07, 45.731], [-75.066, 45.737], [-75.057, 45.74] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.811, 45.512], [-75.801, 45.51], [-75.798, 45.503], [-75.801, 45.497], [-75.811, 45.494], [-75.82, 45.497], [-75.823, 45.503], [-75.82, 45.51], [-75.811, 45.512] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.998, 45.544], [-74.989, 45.541], [-74.985, 45.535], [-74.989, 45.529], [-74.998, 45.526], [-75.007, 45.529], [-75.011, 45.535], [-75.007, 45.541], [-74.998, 45.544] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.82, 45.336], [-75.811, 45.334], [-75.807, 45.327], [-75.811, 45.321], [-75.82, 45.318], [-75.829, 45.321], [-75.833, 45.327], [-75.829, 45.334], [-75.82, 45.336] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.431, 45.551], [-75.421, 45.549], [-75.418, 45.542], [-75.421, 45.536], [-75.431, 45.533], [-75.44, 45.536], [-75.443, 45.542], [-75.44, 45.549], [-75.431, 45.551] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.341, 45.085], [-75.332, 45.082], [-75.328, 45.076], [-75.332, 45.069], [-75.341, 45.067], [-75.35, 45.069], [-75.354, 45.076], [-75.35, 45.082], [-75.341, 45.085] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.641, 45.502], [-75.632, 45.5], [-75.628, 45.493], [-75.632, 45.487], [-75.641, 45.484], [-75.65, 45.487], [-75.654, 45.493], [-75.65, 45.5], [-75.641, 45.502] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.428, 45.571], [-75.419, 45.568], [-75.415, 45.562], [-75.419, 45.555], [-75.428, 45.553], [-75.437, 45.555], [-75.441, 45.562], [-75.437, 45.568], [-75.428, 45.571] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.42, 45.565], [-75.411, 45.562], [-75.407, 45.556], [-75.411, 45.55], [-75.42, 45.547], [-75.429, 45.55], [-75.432, 45.556], [-75.429, 45.562], [-75.42, 45.565] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.711, 45.798], [-75.702, 45.795], [-75.698, 45.789], [-75.702, 45.783], [-75.711, 45.78], [-75.72, 45.783], [-75.724, 45.789], [-75.72, 45.795], [-75.711, 45.798] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.302, 45.555], [-75.293, 45.552], [-75.289, 45.546], [-75.293, 45.54], [-75.302, 45.537], [-75.311, 45.54], [-75.315, 45.546], [-75.311, 45.552], [-75.302, 45.555] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.617, 45.605], [-75.608, 45.602], [-75.604, 45.596], [-75.608, 45.589], [-75.617, 45.587], [-75.626, 45.589], [-75.63, 45.596], [-75.626, 45.602], [-75.617, 45.605] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.483, 45.46], [-75.474, 45.457], [-75.47, 45.451], [-75.474, 45.444], [-75.483, 45.442], [-75.492, 45.444], [-75.495, 45.451], [-75.492, 45.457], [-75.483, 45.46] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.109, 45.185], [-75.1, 45.182], [-75.096, 45.176], [-75.1, 45.17], [-75.109, 45.167], [-75.118, 45.17], [-75.122, 45.176], [-75.118, 45.182], [-75.109, 45.185] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.151, 45.225], [-75.142, 45.223], [-75.138, 45.216], [-75.142, 45.21], [-75.151, 45.207], [-75.16, 45.21], [-75.164, 45.216], [-75.16, 45.223], [-75.151, 45.225] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.293, 45.041], [-75.284, 45.038], [-75.281, 45.032], [-75.284, 45.026], [-75.293, 45.023], [-75.302, 45.026], [-75.306, 45.032], [-75.302, 45.038], [-75.293, 45.041] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.581, 45.306], [-75.572, 45.303], [-75.568, 45.297], [-75.572, 45.291], [-75.581, 45.288], [-75.59, 45.291], [-75.593, 45.297], [-75.59, 45.303], [-75.581, 45.306] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.021, 45.548], [-76.011, 45.545], [-76.008, 45.539], [-76.011, 45.532], [-76.021, 45.53], [-76.03, 45.532], [-76.033, 45.539], [-76.03, 45.545], [-76.021, 45.548] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.127, 45.149], [-76.118, 45.146], [-76.115, 45.14], [-76.118, 45.133], [-76.127, 45.131], [-76.136, 45.133], [-76.14, 45.14], [-76.136, 45.146], [-76.127, 45.149] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.4, 45.468], [-76.391, 45.466], [-76.387, 45.459], [-76.391, 45.453], [-76.4, 45.45], [-76.409, 45.453], [-76.413, 45.459], [-76.409, 45.466], [-76.4, 45.468] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.741, 45.469], [-75.732, 45.466], [-75.729, 45.46], [-75.732, 45.453], [-75.741, 45.451], [-75.75, 45.453], [-75.754, 45.46], [-75.75, 45.466], [-75.741, 45.469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.669, 45.387], [-75.66, 45.384], [-75.656, 45.378], [-75.66, 45.372], [-75.669, 45.369], [-75.678, 45.372], [-75.682, 45.378], [-75.678, 45.384], [-75.669, 45.387] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.748, 45.471], [-75.739, 45.469], [-75.735, 45.462], [-75.739, 45.456], [-75.748, 45.453], [-75.757, 45.456], [-75.76, 45.462], [-75.757, 45.469], [-75.748, 45.471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.748, 45.471], [-75.739, 45.469], [-75.735, 45.462], [-75.739, 45.456], [-75.748, 45.453], [-75.757, 45.456], [-75.76, 45.462], [-75.757, 45.469], [-75.748, 45.471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.703, 45.296], [-75.694, 45.293], [-75.69, 45.287], [-75.694, 45.28], [-75.703, 45.278], [-75.712, 45.28], [-75.716, 45.287], [-75.712, 45.293], [-75.703, 45.296] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.637, 45.434], [-75.628, 45.432], [-75.625, 45.425], [-75.628, 45.419], [-75.637, 45.416], [-75.646, 45.419], [-75.65, 45.425], [-75.646, 45.432], [-75.637, 45.434] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.772, 45.484], [-75.763, 45.481], [-75.759, 45.475], [-75.763, 45.468], [-75.772, 45.466], [-75.781, 45.468], [-75.785, 45.475], [-75.781, 45.481], [-75.772, 45.484] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.691, 45.351], [-75.682, 45.349], [-75.678, 45.342], [-75.682, 45.336], [-75.691, 45.333], [-75.7, 45.336], [-75.703, 45.342], [-75.7, 45.349], [-75.691, 45.351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.64, 45.038], [-75.631, 45.035], [-75.627, 45.029], [-75.631, 45.022], [-75.64, 45.02], [-75.649, 45.022], [-75.653, 45.029], [-75.649, 45.035], [-75.64, 45.038] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.702, 45.378], [-75.692, 45.375], [-75.689, 45.369], [-75.692, 45.362], [-75.702, 45.36], [-75.711, 45.362], [-75.714, 45.369], [-75.711, 45.375], [-75.702, 45.378] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.241, 44.901], [-76.232, 44.899], [-76.228, 44.892], [-76.232, 44.886], [-76.241, 44.883], [-76.25, 44.886], [-76.253, 44.892], [-76.25, 44.899], [-76.241, 44.901] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.594, 45.329], [-75.585, 45.326], [-75.581, 45.32], [-75.585, 45.313], [-75.594, 45.311], [-75.603, 45.313], [-75.606, 45.32], [-75.603, 45.326], [-75.594, 45.329] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.603, 45.496], [-75.594, 45.493], [-75.59, 45.487], [-75.594, 45.481], [-75.603, 45.478], [-75.612, 45.481], [-75.616, 45.487], [-75.612, 45.493], [-75.603, 45.496] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.763, 45.439], [-75.754, 45.437], [-75.75, 45.43], [-75.754, 45.424], [-75.763, 45.421], [-75.772, 45.424], [-75.775, 45.43], [-75.772, 45.437], [-75.763, 45.439] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.601, 45.497], [-75.592, 45.495], [-75.588, 45.488], [-75.592, 45.482], [-75.601, 45.479], [-75.61, 45.482], [-75.614, 45.488], [-75.61, 45.495], [-75.601, 45.497] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.719, 45.346], [-75.71, 45.344], [-75.706, 45.337], [-75.71, 45.331], [-75.719, 45.328], [-75.728, 45.331], [-75.732, 45.337], [-75.728, 45.344], [-75.719, 45.346] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.72, 45.336], [-75.711, 45.333], [-75.707, 45.327], [-75.711, 45.321], [-75.72, 45.318], [-75.729, 45.321], [-75.733, 45.327], [-75.729, 45.333], [-75.72, 45.336] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.401, 45.585], [-75.391, 45.582], [-75.388, 45.576], [-75.391, 45.569], [-75.401, 45.567], [-75.41, 45.569], [-75.413, 45.576], [-75.41, 45.582], [-75.401, 45.585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.401, 45.585], [-75.392, 45.582], [-75.388, 45.576], [-75.392, 45.569], [-75.401, 45.567], [-75.41, 45.569], [-75.413, 45.576], [-75.41, 45.582], [-75.401, 45.585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.72, 45.336], [-75.711, 45.333], [-75.707, 45.327], [-75.711, 45.321], [-75.72, 45.318], [-75.729, 45.321], [-75.733, 45.327], [-75.729, 45.333], [-75.72, 45.336] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.303, 45.277], [-75.294, 45.274], [-75.29, 45.268], [-75.294, 45.261], [-75.303, 45.259], [-75.312, 45.261], [-75.316, 45.268], [-75.312, 45.274], [-75.303, 45.277] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.303, 45.277], [-75.294, 45.274], [-75.29, 45.268], [-75.294, 45.261], [-75.303, 45.259], [-75.312, 45.261], [-75.316, 45.268], [-75.312, 45.274], [-75.303, 45.277] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.72, 45.336], [-75.711, 45.333], [-75.707, 45.327], [-75.711, 45.321], [-75.72, 45.318], [-75.729, 45.321], [-75.733, 45.327], [-75.729, 45.333], [-75.72, 45.336] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.72, 45.336], [-75.711, 45.333], [-75.707, 45.327], [-75.711, 45.321], [-75.72, 45.318], [-75.729, 45.321], [-75.733, 45.327], [-75.729, 45.333], [-75.72, 45.336] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.653, 45.03], [-75.644, 45.027], [-75.64, 45.021], [-75.644, 45.015], [-75.653, 45.012], [-75.662, 45.015], [-75.666, 45.021], [-75.662, 45.027], [-75.653, 45.03] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.625, 45.357], [-75.616, 45.354], [-75.612, 45.348], [-75.616, 45.342], [-75.625, 45.339], [-75.634, 45.342], [-75.638, 45.348], [-75.634, 45.354], [-75.625, 45.357] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.597, 45.384], [-75.588, 45.381], [-75.584, 45.375], [-75.588, 45.368], [-75.597, 45.366], [-75.606, 45.368], [-75.61, 45.375], [-75.606, 45.381], [-75.597, 45.384] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.179, 45.246], [-76.17, 45.243], [-76.167, 45.237], [-76.17, 45.23], [-76.179, 45.228], [-76.188, 45.23], [-76.192, 45.237], [-76.188, 45.243], [-76.179, 45.246] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.955, 45.288], [-75.946, 45.286], [-75.942, 45.279], [-75.946, 45.273], [-75.955, 45.27], [-75.964, 45.273], [-75.968, 45.279], [-75.964, 45.286], [-75.955, 45.288] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.955, 45.288], [-75.946, 45.286], [-75.942, 45.279], [-75.946, 45.273], [-75.955, 45.27], [-75.964, 45.273], [-75.968, 45.279], [-75.964, 45.286], [-75.955, 45.288] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.67, 45.442], [-75.661, 45.44], [-75.657, 45.433], [-75.661, 45.427], [-75.67, 45.424], [-75.679, 45.427], [-75.682, 45.433], [-75.679, 45.44], [-75.67, 45.442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.523, 45.481], [-75.514, 45.478], [-75.51, 45.472], [-75.514, 45.465], [-75.523, 45.463], [-75.532, 45.465], [-75.536, 45.472], [-75.532, 45.478], [-75.523, 45.481] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.612, 45.422], [-75.603, 45.419], [-75.599, 45.413], [-75.603, 45.406], [-75.612, 45.404], [-75.621, 45.406], [-75.624, 45.413], [-75.621, 45.419], [-75.612, 45.422] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.955, 45.288], [-75.946, 45.285], [-75.942, 45.279], [-75.946, 45.272], [-75.955, 45.27], [-75.964, 45.272], [-75.967, 45.279], [-75.964, 45.285], [-75.955, 45.288] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.23, 45.112], [-75.221, 45.109], [-75.218, 45.103], [-75.221, 45.097], [-75.23, 45.094], [-75.239, 45.097], [-75.243, 45.103], [-75.239, 45.109], [-75.23, 45.112] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.23, 45.112], [-75.221, 45.109], [-75.218, 45.103], [-75.221, 45.097], [-75.23, 45.094], [-75.239, 45.097], [-75.243, 45.103], [-75.239, 45.109], [-75.23, 45.112] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.23, 45.112], [-75.221, 45.109], [-75.218, 45.103], [-75.221, 45.097], [-75.23, 45.094], [-75.239, 45.097], [-75.243, 45.103], [-75.239, 45.109], [-75.23, 45.112] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.23, 45.112], [-75.221, 45.109], [-75.218, 45.103], [-75.221, 45.097], [-75.23, 45.094], [-75.239, 45.097], [-75.243, 45.103], [-75.239, 45.109], [-75.23, 45.112] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.23, 45.53], [-76.221, 45.527], [-76.217, 45.521], [-76.221, 45.514], [-76.23, 45.512], [-76.239, 45.514], [-76.243, 45.521], [-76.239, 45.527], [-76.23, 45.53] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.747, 45.497], [-75.738, 45.495], [-75.734, 45.488], [-75.738, 45.482], [-75.747, 45.479], [-75.756, 45.482], [-75.76, 45.488], [-75.756, 45.495], [-75.747, 45.497] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.075, 45.472], [-76.066, 45.469], [-76.062, 45.463], [-76.066, 45.456], [-76.075, 45.454], [-76.084, 45.456], [-76.087, 45.463], [-76.084, 45.469], [-76.075, 45.472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.807, 45.426], [-75.798, 45.423], [-75.795, 45.417], [-75.798, 45.411], [-75.807, 45.408], [-75.817, 45.411], [-75.82, 45.417], [-75.817, 45.423], [-75.807, 45.426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.609, 45.516], [-75.6, 45.513], [-75.596, 45.507], [-75.6, 45.501], [-75.609, 45.498], [-75.618, 45.501], [-75.622, 45.507], [-75.618, 45.513], [-75.609, 45.516] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.609, 45.516], [-75.6, 45.513], [-75.596, 45.507], [-75.6, 45.501], [-75.609, 45.498], [-75.618, 45.501], [-75.622, 45.507], [-75.618, 45.513], [-75.609, 45.516] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.609, 45.516], [-75.6, 45.513], [-75.596, 45.507], [-75.6, 45.501], [-75.609, 45.498], [-75.618, 45.501], [-75.622, 45.507], [-75.618, 45.513], [-75.609, 45.516] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.643, 45.363], [-75.634, 45.36], [-75.631, 45.354], [-75.634, 45.347], [-75.643, 45.345], [-75.652, 45.347], [-75.656, 45.354], [-75.652, 45.36], [-75.643, 45.363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.643, 45.363], [-75.634, 45.36], [-75.631, 45.354], [-75.634, 45.347], [-75.643, 45.345], [-75.652, 45.347], [-75.656, 45.354], [-75.652, 45.36], [-75.643, 45.363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.412, 45.591], [-75.403, 45.588], [-75.399, 45.582], [-75.403, 45.575], [-75.412, 45.573], [-75.421, 45.575], [-75.425, 45.582], [-75.421, 45.588], [-75.412, 45.591] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.747, 45.497], [-75.738, 45.495], [-75.734, 45.488], [-75.738, 45.482], [-75.747, 45.479], [-75.756, 45.482], [-75.76, 45.488], [-75.756, 45.495], [-75.747, 45.497] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.719, 45.346], [-75.71, 45.344], [-75.706, 45.337], [-75.71, 45.331], [-75.719, 45.328], [-75.728, 45.331], [-75.732, 45.337], [-75.728, 45.344], [-75.719, 45.346] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.719, 45.346], [-75.71, 45.344], [-75.706, 45.337], [-75.71, 45.331], [-75.719, 45.328], [-75.728, 45.331], [-75.732, 45.337], [-75.728, 45.344], [-75.719, 45.346] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.911, 45.347], [-75.902, 45.344], [-75.899, 45.338], [-75.902, 45.331], [-75.911, 45.329], [-75.92, 45.331], [-75.924, 45.338], [-75.92, 45.344], [-75.911, 45.347] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.627, 45.414], [-75.618, 45.412], [-75.615, 45.405], [-75.618, 45.399], [-75.627, 45.396], [-75.636, 45.399], [-75.64, 45.405], [-75.636, 45.412], [-75.627, 45.414] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.106, 45.116], [-76.097, 45.113], [-76.093, 45.107], [-76.097, 45.1], [-76.106, 45.098], [-76.115, 45.1], [-76.118, 45.107], [-76.115, 45.113], [-76.106, 45.116] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.786, 45.453], [-75.777, 45.451], [-75.773, 45.444], [-75.777, 45.438], [-75.786, 45.435], [-75.795, 45.438], [-75.799, 45.444], [-75.795, 45.451], [-75.786, 45.453] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.752, 45.463], [-75.743, 45.461], [-75.739, 45.454], [-75.743, 45.448], [-75.752, 45.445], [-75.761, 45.448], [-75.765, 45.454], [-75.761, 45.461], [-75.752, 45.463] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.428, 45.571], [-75.419, 45.568], [-75.415, 45.562], [-75.419, 45.555], [-75.428, 45.553], [-75.437, 45.555], [-75.441, 45.562], [-75.437, 45.568], [-75.428, 45.571] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.73, 45.407], [-75.721, 45.404], [-75.718, 45.398], [-75.721, 45.391], [-75.73, 45.389], [-75.739, 45.391], [-75.743, 45.398], [-75.74, 45.404], [-75.73, 45.407] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.241, 45.607], [-75.232, 45.604], [-75.228, 45.598], [-75.232, 45.591], [-75.241, 45.589], [-75.25, 45.591], [-75.254, 45.598], [-75.25, 45.604], [-75.241, 45.607] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.747, 45.497], [-75.738, 45.494], [-75.734, 45.488], [-75.738, 45.482], [-75.747, 45.479], [-75.756, 45.482], [-75.76, 45.488], [-75.756, 45.494], [-75.747, 45.497] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.378, 45.428], [-76.369, 45.425], [-76.365, 45.419], [-76.369, 45.412], [-76.378, 45.41], [-76.387, 45.412], [-76.39, 45.419], [-76.387, 45.425], [-76.378, 45.428] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.994, 45.503], [-74.985, 45.501], [-74.981, 45.494], [-74.985, 45.488], [-74.994, 45.485], [-75.003, 45.488], [-75.007, 45.494], [-75.003, 45.501], [-74.994, 45.503] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.564, 45.441], [-75.555, 45.438], [-75.551, 45.432], [-75.555, 45.425], [-75.564, 45.423], [-75.573, 45.425], [-75.577, 45.432], [-75.573, 45.438], [-75.564, 45.441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.64, 45.389], [-75.631, 45.387], [-75.627, 45.38], [-75.631, 45.374], [-75.64, 45.371], [-75.649, 45.374], [-75.652, 45.38], [-75.649, 45.387], [-75.64, 45.389] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.802, 45.278], [-75.793, 45.276], [-75.789, 45.269], [-75.793, 45.263], [-75.802, 45.26], [-75.811, 45.263], [-75.815, 45.269], [-75.811, 45.276], [-75.802, 45.278] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.705, 45.362], [-75.696, 45.359], [-75.692, 45.353], [-75.696, 45.347], [-75.705, 45.344], [-75.714, 45.347], [-75.717, 45.353], [-75.714, 45.359], [-75.705, 45.362] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.782, 45.278], [-75.773, 45.275], [-75.77, 45.269], [-75.773, 45.262], [-75.782, 45.26], [-75.792, 45.262], [-75.795, 45.269], [-75.792, 45.275], [-75.782, 45.278] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.642, 45.363], [-75.633, 45.36], [-75.629, 45.354], [-75.633, 45.347], [-75.642, 45.345], [-75.651, 45.347], [-75.655, 45.354], [-75.651, 45.36], [-75.642, 45.363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.925, 45.285], [-75.916, 45.282], [-75.912, 45.276], [-75.916, 45.27], [-75.925, 45.267], [-75.934, 45.27], [-75.938, 45.276], [-75.934, 45.282], [-75.925, 45.285] ] ] } } ] } ================================================ FILE: packages/turf-dissolve/test/in/issue-1208.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "combine": "yes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-1.253225263517834, 48.59717338797604, 0], [-1.253181967856458, 48.59717979931626, 0], [-1.253139397057852, 48.59718807515635, 0], [-1.253097733412258, 48.59719818005896, 0], [-1.253057155326247, 48.59721007075426, 0], [-1.253017836557686, 48.59722369632577, 0], [-1.252979945472796, 48.59723899842815, 0], [-1.252943644324689, 48.59725591153686, 0], [-1.25290908855882, 48.597274363229, 0], [-1.252876426146965, 48.59729427449319, 0], [-1.252845796954463, 48.59731556006806, 0], [-1.252817332140237, 48.59733812880711, 0], [-1.252791153595885, 48.59736188406926, 0], [-1.252767373423613, 48.59738672413238, 0], [-1.252746093455865, 48.59741254262912, 0], [-1.252727404819447, 48.59743922900204, 0], [-1.25271138754534, 48.59746666897733, 0], [-1.252698110225676, 48.59749474505379, 0], [-1.252687629720053, 48.59752333700656, 0], [-1.252679990912307, 48.59755232240108, 0], [-1.252675226517568, 48.59758157711809, 0], [-1.252673356942813, 48.59761097588475, 0], [-1.252674390198794, 48.59764039281117, 0], [-1.252678321866105, 48.5976697019295, 0], [-1.252685023359526, 48.59769830081823, 0], [-1.252679475384746, 48.59770054129492, 0], [-1.252643173803025, 48.5977174543079, 0], [-1.252608617610178, 48.59773590590888, 0], [-1.252575954780237, 48.59775581708682, 0], [-1.252545325180001, 48.59777710258079, 0], [-1.252516859970052, 48.59779967124452, 0], [-1.252490681044125, 48.59782342643738, 0], [-1.252466900505647, 48.59784826643747, 0], [-1.252445620188778, 48.59787408487775, 0], [-1.252426931221824, 48.59790077120097, 0], [-1.252410913637165, 48.59792821113346, 0], [-1.252397636028273, 48.59795628717443, 0], [-1.252387155255943, 48.59798487909906, 0], [-1.252379516205231, 48.59801386447276, 0], [-1.252374751592247, 48.59804311917658, 0], [-1.252372881824926, 48.5980725179376, 0], [-1.252373914914839, 48.59810193486606, 0], [-1.252377846443302, 48.59813124399403, 0], [-1.252384659579837, 48.59816031981494, 0], [-1.252394325154478, 48.59818903782123, 0], [-1.252406801782209, 48.59821727503727, 0], [-1.252415245537604, 48.59823327715994, 0], [-1.252836850810517, 48.59898641926226, 0], [-1.252843641512518, 48.59899805262291, 0], [-1.252861568663461, 48.59902496801673, 0], [-1.252882111484306, 48.59905104809576, 0], [-1.252905182010495, 48.5990761811798, 0], [-1.252930681452773, 48.59910025964346, 0], [-1.252958500620303, 48.5991231803775, 0], [-1.252988520388354, 48.59914484523033, 0], [-1.253020612207896, 48.59916516142785, 0], [-1.253054638656694, 48.5991840419715, 0], [-1.253090454027523, 48.59920140601011, 0], [-1.253127904951665, 48.59921717918667, 0], [-1.253166831056545, 48.59923129395642, 0], [-1.2532070656518, 48.5992436898764, 0], [-1.253248436443413, 48.59925431386409, 0], [-1.253290766271475, 48.59926312042469, 0], [-1.253333873869247, 48.59927007184644, 0], [-1.25337757463859, 48.59927513836125, 0], [-1.2534216814415, 48.59927829827314, 0], [-1.253466005400803, 48.59927953805043, 0], [-1.253510356709588, 48.5992788523841, 0], [-1.25355454544354, 48.59927624421039, 0], [-1.253598382374725, 48.59927172469814, 0], [-1.253641679781825, 48.59926531320109, 0], [-1.253684252254093, 48.59925703717507, 0], [-1.253725917485558, 48.59924693206003, 0], [-1.253766497055102, 48.59923504112891, 0], [-1.253805817191649, 48.59922141530161, 0], [-1.253843709517346, 48.59920611292741, 0], [-1.253880011769091, 48.59918919953497, 0], [-1.253914568493293, 48.59917074755153, 0], [-1.253947231711843, 48.59915083599297, 0], [-1.253977861555105, 48.59912955012546, 0], [-1.254006326861876, 48.59910698109994, 0], [-1.254032505740221, 48.59908322556196, 0], [-1.254056286089591, 48.59905838523816, 0], [-1.2540775660811, 48.59903256650014, 0], [-1.254087185345545, 48.59901940199093, 0], [-1.254516617729897, 48.59840648252719, 0], [-1.254525686751831, 48.59839296041072, 0], [-1.254541703331873, 48.59836552018291, 0], [-1.254554979853315, 48.59833744389379, 0], [-1.254565459467951, 48.59830885177131, 0], [-1.254573097305214, 48.59827986625212, 0], [-1.254577860663282, 48.59825061145719, 0], [-1.254579729149947, 48.59822121266042, 0], [-1.254578694768946, 48.59819179575207, 0], [-1.254574761954692, 48.59816248669985, 0], [-1.254567947553149, 48.59813341100927, 0], [-1.254558280749611, 48.59810469318647, 0], [-1.254545802943203, 48.59807645620485, 0], [-1.25453056757024, 48.59804882097853, 0], [-1.254512639874632, 48.59802190584469, 0], [-1.254492096629147, 48.59799582605688, 0], [-1.254469025805975, 48.59797069329133, 0], [-1.254443526200109, 48.59794661516895, 0], [-1.25441570700658, 48.59792369479444, 0], [-1.254385687352557, 48.59790203031459, 0], [-1.25436673900003, 48.59789003491503, 0], [-1.254375526750358, 48.59787937250336, 0], [-1.254394214676664, 48.59785268586207, 0], [-1.254410231156526, 48.59782524565184, 0], [-1.254423507608784, 48.59779716937713, 0], [-1.25443398718565, 48.59776857726585, 0], [-1.254441625016658, 48.59773959175458, 0], [-1.254446388400006, 48.59771033696431, 0], [-1.254448256943366, 48.59768093816884, 0], [-1.254447222650275, 48.59765152125848, 0], [-1.254443289954745, 48.5976222122009, 0], [-1.254436475702223, 48.59759313650175, 0], [-1.254426809077383, 48.59756441866699, 0], [-1.254414331478548, 48.59753618167021, 0], [-1.254399096341237, 48.59750854642555, 0], [-1.254381168908259, 48.59748163127037, 0], [-1.254360625951283, 48.59745555145822, 0], [-1.254337555441141, 48.59743041866553, 0], [-1.254312056171765, 48.59740634051322, 0], [-1.254284237336669, 48.59738342010597, 0], [-1.254254218061284, 48.59736175559107, 0], [-1.254222126893361, 48.59734143973743, 0], [-1.254188101251836, 48.59732255953907, 0], [-1.254152286838941, 48.59730519584223, 0], [-1.254114837015858, 48.59728942299935, 0], [-1.254075912146411, 48.59727530855058, 0], [-1.254035678910148, 48.59726291293472, 0], [-1.25399430958856, 48.59725228923053, 0], [-1.253951981327723, 48.59724348292905, 0], [-1.253916774952248, 48.59723765800342, 0], [-1.253497660559697, 48.59717616737184, 0], [-1.253489761006026, 48.59717504107898, 0], [-1.253446062047994, 48.59716997460642, 0], [-1.253401957090288, 48.59716681470356, 0], [-1.253357634992236, 48.5971655749013, 0], [-1.253313285542723, 48.5971662605085, 0], [-1.2532690986479, 48.59716886858938, 0], [-1.253225263517834, 48.59717338797604, 0] ] ] } }, { "type": "Feature", "properties": { "combine": "yes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-1.261047036841909, 48.59733251210368, 0], [-1.261003742039826, 48.5973389264027, 0], [-1.260961172392459, 48.59734720515201, 0], [-1.260919510185055, 48.59735731290185, 0], [-1.260878933817968, 48.59736920637014, 0], [-1.260839617041973, 48.59738283462858, 0], [-1.260801728214498, 48.59739813932027, 0], [-1.260765429579041, 48.59741505490967, 0], [-1.260730876570226, 48.59743350896311, 0], [-1.260698217148339, 48.59745342245916, 0], [-1.26066759116557, 48.59747471012703, 0], [-1.260639129767152, 48.59749728081107, 0], [-1.260612954830354, 48.59752103786196, 0], [-1.260589178441556, 48.59754587954995, 0], [-1.260567902417213, 48.59757169950064, 0], [-1.260549217867186, 48.59759838715041, 0], [-1.26053320480495, 48.59762582821987, 0], [-1.260519931804631, 48.59765390520345, 0], [-1.260509455707282, 48.59768249787204, 0], [-1.260501821377913, 48.59771148378819, 0], [-1.260497061512491, 48.59774073883042, 0], [-1.260495196498548, 48.59777013772445, 0], [-1.260496234327311, 48.5977995545799, 0], [-1.260500170559851, 48.59782886342913, 0], [-1.260502533204371, 48.59784043920406, 0], [-1.26068589218455, 48.59865869617723, 0], [-1.260690347461777, 48.59867619573216, 0], [-1.260700017872409, 48.59870491303608, 0], [-1.260712499285572, 48.59873314934578, 0], [-1.260727738258476, 48.59876078374815, 0], [-1.260745669539156, 48.59878769790737, 0], [-1.260766216346592, 48.59881377657148, 0], [-1.26078929069922, 48.59883890806648, 0], [-1.260814793791318, 48.59886298477383, 0], [-1.260842616416502, 48.59888590359184, 0], [-1.260872639435033, 48.59890756637692, 0], [-1.260904734284372, 48.59892788036397, 0], [-1.260938763528894, 48.59894675856394, 0], [-1.260974581449463, 48.59896412013557, 0], [-1.261012034666751, 48.59897989073242, 0], [-1.261046994967765, 48.59899266348113, 0], [-1.261447711504358, 48.5991290247514, 0], [-1.261451679356045, 48.59913036407725, 0], [-1.261491915909994, 48.59914275708487, 0], [-1.261533288366374, 48.59915337807792, 0], [-1.261575619558406, 48.59916218157462, 0], [-1.261618728213312, 48.5991691298759, 0], [-1.261662429728399, 48.59917419322756, 0], [-1.261706536962524, 48.59917734994673, 0], [-1.261750861036715, 48.59917858651572, 0], [-1.261795212143482, 48.59917789763902, 0], [-1.261839400359428, 48.5991752862667, 0], [-1.261883236458838, 48.59917076358131, 0], [-1.261926532723912, 48.59916434895025, 0], [-1.261969103748877, 48.59915606984265, 0], [-1.262010767233879, 48.59914596171171, 0], [-1.262051344765294, 48.59913406784322, 0], [-1.262090662580837, 48.5991204391698, 0], [-1.262128552312529, 48.59910513405278, 0], [-1.262164851708398, 48.59908821803263, 0], [-1.262199405327045, 48.59906976354785, 0], [-1.262232065203728, 48.59904984962498, 0], [-1.2622626914831, 48.59902856154037, 0], [-1.262291153019188, 48.59900599045445, 0], [-1.262317327936222, 48.59898223302151, 0], [-1.262341104150659, 48.59895739097645, 0], [-1.262362379851261, 48.598931570698, 0], [-1.262381063934981, 48.59890488275408, 0], [-1.262397076396957, 48.59887744142787, 0], [-1.262410348673095, 48.5988493642285, 0], [-1.262420471754249, 48.59882188414993, 0], [-1.26264939976048, 48.59810306363474, 0], [-1.262649751929934, 48.59810195087174, 0], [-1.262657385082044, 48.5980729648129, 0], [-1.262662143723765, 48.59804370968134, 0], [-1.262664007482672, 48.59801431075241, 0], [-1.262662968383006, 48.59798489391701, 0], [-1.262659030879443, 48.5979555851424, 0], [-1.262652211837911, 48.59792650993304, 0], [-1.26264254046345, 48.59789779279289, 0], [-1.262630058175067, 48.59786955669247, 0], [-1.262614818427883, 48.59784192254202, 0], [-1.262596886484972, 48.59781500867436, 0], [-1.262576339136929, 48.59778893033752, 0], [-1.262553264373569, 48.59776379920143, 0], [-1.262527761006931, 48.59773972288009, 0], [-1.262499938248054, 48.59771680447032, 0], [-1.262469915239455, 48.59769514211074, 0], [-1.262437820544413, 48.5976748285613, 0], [-1.262403791597453, 48.59765595080577, 0], [-1.262367974114633, 48.59763858968024, 0], [-1.262330521470347, 48.59762281952594, 0], [-1.262291594040508, 48.59760870787162, 0], [-1.262257702418959, 48.59759812952174, 0], [-1.261444686919695, 48.59736233454655, 0], [-1.261438343075305, 48.59736052012381, 0], [-1.26139697211201, 48.59734989909548, 0], [-1.261354642474715, 48.59734109553191, 0], [-1.261311535421268, 48.59733414713043, 0], [-1.261267835538396, 48.5973290836444, 0], [-1.261223729950733, 48.59732592675577, 0], [-1.261179407520268, 48.59732468998261, 0], [-1.261135058037362, 48.59732537862071, 0], [-1.261090871408246, 48.59732798972133, 0], [-1.261047036841909, 48.59733251210368, 0] ] ] } }, { "type": "Feature", "properties": { "combine": "yes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-1.256230543149746, 48.59795792463168, 0], [-1.255541047028008, 48.59938115419852, 0], [-1.255533319924131, 48.59939826307819, 0], [-1.255522840632357, 48.59942685528763, 0], [-1.255515203167816, 48.59945584086849, 0], [-1.255510440240224, 48.59948509570052, 0], [-1.255508572250161, 48.59951449451059, 0], [-1.255509607201626, 48.59954391140847, 0], [-1.255513540667899, 48.59957322042644, 0], [-1.255520355810229, 48.59960229605846, 0], [-1.255530023450098, 48.59963101379777, 0], [-1.255542502193576, 48.59965925066977, 0], [-1.255557738609325, 48.59968688575911, 0], [-1.255575667456272, 48.5997138007268, 0], [-1.255596211963908, 48.59973988031781, 0], [-1.255619284160441, 48.59976501285378, 0], [-1.255644785249421, 48.59978909071189, 0], [-1.255672606033038, 48.59981201078542, 0], [-1.255702627379527, 48.59983367492561, 0], [-1.255707698903188, 48.59983706624144, 0], [-1.256198454988837, 48.60016176286954, 0], [-1.25622547715802, 48.60017868687334, 0], [-1.256259505493429, 48.60019756646323, 0], [-1.256295322690277, 48.60021492949797, 0], [-1.256332775372293, 48.60023070162501, 0], [-1.256371703159067, 48.60024481530403, 0], [-1.256411939353164, 48.60025721009674, 0], [-1.256453311653609, 48.60026783292536, 0], [-1.256495642894322, 48.60027663830027, 0], [-1.256538751802245, 48.60028358851456, 0], [-1.256582453773667, 48.60028865380546, 0], [-1.256626561665486, 48.60029181248214, 0], [-1.256670886595852, 48.60029305101826, 0], [-1.256715238753678, 48.60029236411008, 0], [-1.256759428211032, 48.60028975469916, 0], [-1.256803265736901, 48.6002852339597, 0], [-1.25684656360739, 48.60027882125065, 0], [-1.256889136409773, 48.60027054403302, 0], [-1.256930801836662, 48.60026043775189, 0], [-1.256971381466119, 48.60024854568512, 0], [-1.257010701526846, 48.60023491875757, 0], [-1.257048593641232, 48.60021961532317, 0], [-1.257084895547114, 48.60020270091513, 0], [-1.257119451792359, 48.60018424796509, 0], [-1.257152114400977, 48.6001643354931, 0], [-1.257182743505889, 48.60014304876899, 0], [-1.257211207949192, 48.60012047894766, 0], [-1.257229351547495, 48.60010436687913, 0], [-1.258137644118331, 48.59925896598441, 0], [-1.258680604352984, 48.59908281891148, 0], [-1.258716194767939, 48.59907039158392, 0], [-1.258754085487661, 48.59905508758405, 0], [-1.258790385981052, 48.59903817263405, 0], [-1.258824940802077, 48.59901971916798, 0], [-1.258857601980818, 48.59899980620806, 0], [-1.258888229656414, 48.59897851902629, 0], [-1.258916692676795, 48.59895594877941, 0], [-1.258934830757792, 48.59893984067655, 0], [-1.259171199868516, 48.59871983140947, 0], [-1.259474356223216, 48.59853939698603, 0], [-1.259496456349145, 48.59852563942481, 0], [-1.259527083466228, 48.59850435207158, 0], [-1.259555545932252, 48.59848178166527, 0], [-1.259581721867451, 48.59845802485735, 0], [-1.259605499183967, 48.59843318337989, 0], [-1.259626776065823, 48.59840736360928, 0], [-1.259645461404939, 48.59838067611123, 0], [-1.259661475191016, 48.59835323516699, 0], [-1.259674748854365, 48.59832515828409, 0], [-1.259685225559388, 48.59829656569279, 0], [-1.25969286044753, 48.59826757983201, 0], [-1.259694945031975, 48.59825685489147, 0], [-1.259946817523598, 48.59682543806711, 0], [-1.259949493152837, 48.59680690799236, 0], [-1.259951358449833, 48.59677750910579, 0], [-1.259950320960319, 48.59674809224385, 0], [-1.259946385132316, 48.59671878337404, 0], [-1.259940451310562, 48.59669286667325, 0], [-1.259823344930708, 48.59626567713719, 0], [-1.259822461459552, 48.59626251846414, 0], [-1.259812792018544, 48.59623380108239, 0], [-1.259800311729302, 48.59620556467094, 0], [-1.259785074038713, 48.59617793014136, 0], [-1.259767144200699, 48.59615101582806, 0], [-1.25974659899714, 48.5961249369809, 0], [-1.259723526408521, 48.59609980527215, 0], [-1.259698025237646, 48.59607572831819, 0], [-1.259670204686183, 48.59605280921858, 0], [-1.259640183886917, 48.59603114611487, 0], [-1.259608091394093, 48.59601083177006, 0], [-1.259574064632345, 48.59599195317169, 0], [-1.259538249308718, 48.59597459115903, 0], [-1.259500798788273, 48.59595882007746, 0], [-1.25946187343783, 48.59594470745951, 0], [-1.259421639938898, 48.59593231373614, 0], [-1.259380270574244, 48.59592169197803, 0], [-1.259337942490186, 48.59591288766791, 0], [-1.259294836937639, 48.59590593850642, 0], [-1.259251138497013, 48.59590087424989, 0], [-1.259207034286729, 48.59589771658396, 0], [-1.259162713162918, 48.59589647902966, 0], [-1.259118364910288, 48.5958971668864, 0], [-1.259074179414845, 48.59589977721015, 0], [-1.259035110725622, 48.59590371249357, 0], [-1.258687945908628, 48.59594558091786, 0], [-1.258318735609614, 48.59567264666158, 0], [-1.258297990001303, 48.59565798384798, 0], [-1.258276829149192, 48.59564458859183, 0], [-1.258275631532106, 48.59563044105737, 0], [-1.258271696766173, 48.59560113212832, 0], [-1.258264880576721, 48.59557205665402, 0], [-1.258255212156456, 48.59554333913969, 0], [-1.258242732911818, 48.59551510255734, 0], [-1.258227496284858, 48.59548746781944, 0], [-1.258209567525281, 48.59546055326118, 0], [-1.258189023410072, 48.59543447413348, 0], [-1.258165951915178, 48.59540934210986, 0], [-1.258140451838667, 48.59538526480796, 0], [-1.258112632377513, 48.59536234532898, 0], [-1.258082612659901, 48.59534068181593, 0], [-1.258050521235483, 48.59532036703363, 0], [-1.258016495524355, 48.59530148797152, 0], [-1.257980681228725, 48.5952841254708, 0], [-1.257943231709739, 48.59526835387897, 0], [-1.25790430732952, 48.59525424073076, 0], [-1.2578640747656, 48.59524184645943, 0], [-1.25782270629673, 48.59523122413794, 0], [-1.25778037906543, 48.59522241925152, 0], [-1.257737274318858, 48.59521546950301, 0], [-1.257693576634047, 48.59521040465171, 0], [-1.257649473126181, 48.59520724638539, 0], [-1.257605152648353, 48.59520600822789, 0], [-1.257560804982554, 48.59520669548106, 0], [-1.255530334423245, 48.5952822925235, 0], [-1.255486149296388, 48.5952849014606, 0], [-1.255442316005351, 48.59528942169678, 0], [-1.255399022246033, 48.5952958338763, 0], [-1.255356453404481, 48.59530411054188, 0], [-1.255314791762565, 48.5953142162525, 0], [-1.255274215718201, 48.59532610773503, 0], [-1.255234899020583, 48.59533973406954, 0], [-1.25519701002702, 48.59535503690741, 0], [-1.255156778048931, 48.59534264168449, 0], [-1.25511541006839, 48.5953320183844, 0], [-1.25507308322562, 48.59532321249674, 0], [-1.255029978766578, 48.59531626172873, 0], [-1.254986281266639, 48.59531119584371, 0], [-1.254942177840328, 48.59530803653405, 0], [-1.254897857340378, 48.59530679732815, 0], [-1.254853509548899, 48.59530748353229, 0], [-1.254809324364887, 48.59531009220804, 0], [-1.254765490991137, 48.59531461218504, 0], [-1.254722197123985, 48.59532102410851, 0], [-1.254690489067425, 48.59532699728374, 0], [-1.253355816934831, 48.59560184247675, 0], [-1.253344955896982, 48.59560414558872, 0], [-1.253303293603267, 48.5956142505669, 0], [-1.253262716842036, 48.59562614133607, 0], [-1.253223399365842, 48.5956397669794, 0], [-1.253185509535248, 48.59565506915105, 0], [-1.253175382432152, 48.59565978765932, 0], [-1.252865074545886, 48.59365920604927, 0], [-1.252863639256538, 48.59365074067758, 0], [-1.25285764402191, 48.59362458518964, 0], [-1.252585381295466, 48.59263384110065, 0], [-1.252584563758907, 48.59263092078733, 0], [-1.25257489914268, 48.59260220278884, 0], [-1.252562423811752, 48.59257396558297, 0], [-1.252547191191886, 48.5925463300848, 0], [-1.252529266515183, 48.5925194146327, 0], [-1.252508726541501, 48.59249333448146, 0], [-1.252485659229001, 48.59246820130903, 0], [-1.252460163357647, 48.59244412273797, 0], [-1.252432348106505, 48.59242120187489, 0], [-1.25241487697886, 48.59240824724332, 0], [-1.251979031592758, 48.59209737695413, 0], [-1.251966487352612, 48.59208866653147, 0], [-1.251934400467683, 48.592068350031, 0], [-1.251900379246742, 48.59204946914733, 0], [-1.251864569372736, 48.59203210472995, 0], [-1.251827124187523, 48.5920163311342, 0], [-1.251788204035023, 48.59200221590357, 0], [-1.25174797557454, 48.59198981948016, 0], [-1.2517066110674, 48.59197919494619, 0], [-1.251664287638739, 48.59197038779638, 0], [-1.251621186519885, 48.59196343574321, 0], [-1.251577492272165, 48.5919583685559, 0], [-1.251533391996014, 48.59195520793214, 0], [-1.251489074530776, 48.59195396740589, 0], [-1.251444729645432, 48.59195465228925, 0], [-1.251400547226629, 48.59195725964946, 0], [-1.251356716465288, 48.59196177832161, 0], [-1.251313425046599, 48.59196818895667, 0], [-1.251270858346494, 48.591976464104, 0], [-1.251229198637651, 48.5919865683291, 0], [-1.251188624309814, 48.59199845836513, 0], [-1.251149309104682, 48.59201208329835, 0], [-1.25111142137331, 48.59202738478619, 0], [-1.251075123354419, 48.59204429730681, 0], [-1.251040570480038, 48.59206274843972, 0], [-1.25100791070957, 48.59208265917602, 0], [-1.250977283897043, 48.59210394425647, 0], [-1.250948821191211, 48.59212651253684, 0], [-1.250922644474657, 48.59215026737801, 0], [-1.250898865841694, 48.59217510705953, 0], [-1.250877587118231, 48.59220092521575, 0], [-1.250858899425718, 48.59222761129072, 0], [-1.250842882791099, 48.59225505101182, 0], [-1.250829605803749, 48.59228312687905, 0], [-1.250819125321867, 48.59231171866839, 0], [-1.250811486229189, 48.59234070394593, 0], [-1.250809724264255, 48.59234961940842, 0], [-1.250461573890365, 48.59425912167232, 0], [-1.250458570613717, 48.59427946084583, 0], [-1.250456699867439, 48.59430885958132, 0], [-1.25045773176081, 48.59433827653275, 0], [-1.25046166188016, 48.59436758573226, 0], [-1.250468473401107, 48.59439666167287, 0], [-1.25047813716058, 48.59442537984659, 0], [-1.250490611781436, 48.59445361727698, 0], [-1.250492943577972, 48.59445823516749, 0], [-1.251077414192019, 48.59559521142408, 0], [-1.251090315022103, 48.59561822923565, 0], [-1.251108240032599, 48.59564514490879, 0], [-1.251128780566573, 48.59567122530714, 0], [-1.251151848669221, 48.59569635874895, 0], [-1.251177345561618, 48.5957204376075, 0], [-1.25120516206392, 48.59574335877172, 0], [-1.251235179062686, 48.59576502408829, 0], [-1.251267268020917, 48.59578534078098, 0], [-1.251301291528468, 48.59580422184921, 0], [-1.251315739617673, 48.59581151578874, 0], [-1.252119283414854, 48.59620600914748, 0], [-1.252140648016082, 48.59621607964807, 0], [-1.252178096422398, 48.59623185313787, 0], [-1.252217019953297, 48.59624596823284, 0], [-1.252257251929447, 48.59625836448858, 0], [-1.252298620068022, 48.59626898882127, 0], [-1.252340947220525, 48.59627779573455, 0], [-1.252384052131446, 48.59628474751499, 0], [-1.252427750214418, 48.59628981439334, 0], [-1.252471854342847, 48.59629297467178, 0], [-1.252516175651031, 48.5962942148171, 0], [-1.252560524343349, 48.59629352951876, 0], [-1.252604710506777, 48.59629092171126, 0], [-1.252648544924313, 48.59628640256212, 0], [-1.252691839885509, 48.59627999142339, 0], [-1.252734409989931, 48.59627171574932, 0], [-1.252776072941799, 48.59626161097858, 0], [-1.252816650329969, 48.59624972038235, 0], [-1.252855968392475, 48.59623609487915, 0], [-1.252893858760378, 48.59622079281705, 0], [-1.252930159178989, 48.59620387972324, 0], [-1.252930811381681, 48.59620353146014, 0], [-1.25294601231869, 48.5962263549829, 0], [-1.252966554041572, 48.59625243505064, 0], [-1.252969983170753, 48.59625641443407, 0], [-1.253096274526067, 48.59640125213645, 0], [-1.25311591479258, 48.59642240580183, 0], [-1.253141412991772, 48.59644648422193, 0], [-1.253169230789157, 48.596469404908, 0], [-1.253199249065662, 48.59649106970851, 0], [-1.253231339279068, 48.5965113858498, 0], [-1.253265364013658, 48.59653026633346, 0], [-1.253301177569539, 48.59654763030848, 0], [-1.253338626586067, 48.59656340341826, 0], [-1.25337755069856, 48.5965775181183, 0], [-1.25341778322527, 48.59658991396594, 0], [-1.253459151880971, 48.59660053787889, 0], [-1.253501479515129, 48.59660934436283, 0], [-1.253542907217218, 48.59661606197049, 0], [-1.254395742211183, 48.59673562503283, 0], [-1.254397419872113, 48.59673585875591, 0], [-1.25444111854913, 48.5967409248654, 0], [-1.254485223199002, 48.5967440843679, 0], [-1.254529544953849, 48.59674532373347, 0], [-1.254573894016031, 48.59674463765499, 0], [-1.254618080471026, 48.5967420290703, 0], [-1.254661915100532, 48.59673750915009, 0], [-1.254705210193203, 48.59673109724988, 0], [-1.254747780348104, 48.59672282082709, 0], [-1.254789443269178, 48.59671271532367, 0], [-1.254830020545437, 48.59670082401388, 0], [-1.254869338415356, 48.59668719781935, 0], [-1.254907228510858, 48.5966718950911, 0], [-1.254943528578389, 48.59665498135906, 0], [-1.254978083173735, 48.59663652905213, 0], [-1.255010744327796, 48.59661661718745, 0], [-1.25504137218013, 48.59659533103245, 0], [-1.255069835577649, 48.59657276173942, 0], [-1.255096012636749, 48.59654900595508, 0], [-1.255119791264716, 48.59652416540705, 0], [-1.255141069639958, 48.59649834646783, 0], [-1.255157019293216, 48.59647586953799, 0], [-1.25522963646685, 48.59636573706141, 0], [-1.255236028833706, 48.59637100381518, 0], [-1.255266047940746, 48.59639266807368, 0], [-1.255298138925216, 48.59641298363562, 0], [-1.255332164368319, 48.59643186350485, 0], [-1.255367978566886, 48.59644922683323, 0], [-1.255405428157614, 48.59646499926679, 0], [-1.255444352773365, 48.59647911326404, 0], [-1.255484585730211, 48.59649150838517, 0], [-1.255525954741108, 48.59650213155112, 0], [-1.255568282654003, 48.59651093727071, 0], [-1.255611388210127, 48.59651788783566, 0], [-1.255655086820098, 48.5965229534817, 0], [-1.255699191355242, 48.59652611251633, 0], [-1.255743512948078, 48.59652735141188, 0], [-1.255787861801767, 48.5965266648629, 0], [-1.255817773487415, 48.59652489867574, 0], [-1.255823554401863, 48.59652470773709, 0], [-1.256230543149746, 48.59795792463168, 0] ] ] } }, { "type": "Feature", "properties": { "combine": "yes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-1.241687719203461, 48.60931143094087, 0], [-1.241644411634211, 48.60931783791229, 0], [-1.241601828675212, 48.60932610945541, 0], [-1.241560152668746, 48.6093362101513, 0], [-1.24151956207422, 48.60934809674809, 0], [-1.24148023070334, 48.60936171834694, 0], [-1.241442326976003, 48.60937701661938, 0], [-1.241406013199597, 48.60939392605739, 0], [-1.241371444873456, 48.60941237425373, 0], [-1.24133877002353, 48.60943228221197, 0], [-1.241308128568077, 48.60945356468499, 0], [-1.241279651718539, 48.60947613053953, 0], [-1.24125346141839, 48.60949988314678, 0], [-1.241229669819739, 48.60952472079616, 0], [-1.241208378804228, 48.60955053713047, 0], [-1.241189679545867, 48.60957722160162, 0], [-1.241173652121179, 48.60960465994387, 0], [-1.241160365165703, 48.60963273466321, 0], [-1.241149875580343, 48.60966132554038, 0], [-1.241142228287824, 48.60969031014547, 0], [-1.241137456039587, 48.60971956436265, 0], [-1.241135579276222, 48.60974896292122, 0], [-1.241136606039337, 48.60977837993217, 0], [-1.241140531937284, 48.60980768942729, 0], [-1.241147340163686, 48.60983676589844, 0], [-1.241153455566371, 48.60985592862144, 0], [-1.241332068757348, 48.61036103342558, 0], [-1.241335614830084, 48.61037058963361, 0], [-1.241348088273861, 48.61039882803615, 0], [-1.241363320147604, 48.61042646499831, 0], [-1.241381245230082, 48.61045338217331, 0], [-1.241401786766834, 48.61047946429642, 0], [-1.241424856798519, 48.61050459967855, 0], [-1.241450356538258, 48.61052868068462, 0], [-1.241478176793918, 48.61055160419455, 0], [-1.24150819843599, 48.6105732720447, 0], [-1.24154029290753, 48.61059359144834, 0], [-1.241574322774994, 48.61061247539296, 0], [-1.241610142316267, 48.61062984301297, 0], [-1.241647598144986, 48.61064561993594, 0], [-1.241686529867532, 48.61065973860122, 0], [-1.241726770769502, 48.61067213854893, 0], [-1.24176814852988, 48.6106827666795, 0], [-1.241810485958943, 48.61069157748035, 0], [-1.241853601757195, 48.61069853322142, 0], [-1.241897311291587, 48.6107036041164, 0], [-1.241941427386544, 48.61070676845031, 0], [-1.241985761125084, 48.61070801267264, 0], [-1.242030122658371, 48.61070733145532, 0], [-1.242074322018403, 48.61070472771545, 0], [-1.242118169931643, 48.61070021260301, 0], [-1.242161478629831, 48.61069380545284, 0], [-1.242204062653798, 48.61068553370215, 0], [-1.242245739648134, 48.61067543277266, 0], [-1.24228633114134, 48.61066354591928, 0], [-1.242325663311301, 48.6106499240445, 0], [-1.242363567728626, 48.61063462548064, 0], [-1.242399882078393, 48.61061771574003, 0], [-1.242434450855194, 48.61059926723443, 0], [-1.242467126029361, 48.61057935896467, 0], [-1.242497767680078, 48.61055807618281, 0], [-1.242526244595523, 48.61053551002671, 0], [-1.242552434834041, 48.61051175712953, 0], [-1.242576226246521, 48.61048691920671, 0], [-1.242597516956616, 48.61046110261935, 0], [-1.242609549700457, 48.61044446541254, 0], [-1.242881417715258, 48.61004789184448, 0], [-1.242888083705058, 48.61003784433545, 0], [-1.242904110333223, 48.61001040575394, 0], [-1.242917396415917, 48.60998233083278, 0], [-1.242927885064327, 48.60995373979417, 0], [-1.242935531368776, 48.60992475507022, 0], [-1.242940302591593, 48.60989550077839, 0], [-1.242942178306576, 48.60986610219051, 0], [-1.242941150486507, 48.60983668519591, 0], [-1.242937223538061, 48.60980737576263, 0], [-1.242930414281722, 48.60977829939786, 0], [-1.242920751880803, 48.60974958061056, 0], [-1.242908277715862, 48.60972134237837, 0], [-1.242893045207187, 48.60969370562057, 0], [-1.242875119586899, 48.60966678868117, 0], [-1.242854577618513, 48.60964070682134, 0], [-1.242831507268782, 48.6096155717261, 0], [-1.242806007330901, 48.60959149102642, 0], [-1.242778187001201, 48.60956856783788, 0], [-1.242748165411767, 48.60954690031954, 0], [-1.242716071119983, 48.60952658125334, 0], [-1.242682041558274, 48.60950769764695, 0], [-1.242646222445678, 48.6094903303613, 0], [-1.242608767163422, 48.60947455376403, 0], [-1.24256983609879, 48.60946043541146, 0], [-1.242529595957731, 48.60944803575919, 0], [-1.242495663890275, 48.60943916897769, 0], [-1.242045175849744, 48.60933063821547, 0], [-1.242037731042833, 48.60932887711164, 0], [-1.241995394719986, 48.60932006639413, 0], [-1.241952280082646, 48.60931311070586, 0], [-1.241908571750032, 48.60930803983158, 0], [-1.241864456882873, 48.60930487548472, 0], [-1.241820124382962, 48.60930363121534, 0], [-1.241775764083768, 48.60930431235134, 0], [-1.241731565937845, 48.60930691597618, 0], [-1.241687719203461, 48.60931143094087, 0] ] ] } }, { "type": "Feature", "properties": { "combine": "yes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-1.221211424717179, 48.6345355101136, 0], [-1.221168092832079, 48.63454190932896, 0], [-1.221125485161687, 48.63455017324279, 0], [-1.22108378415404, 48.63456026646873, 0], [-1.221081556502777, 48.63456086412968, 0], [-1.219859408487987, 48.63489041897382, 0], [-1.21982101983543, 48.63490170022128, 0], [-1.219781662617405, 48.63491531434391, 0], [-1.219743733044842, 48.63493060540812, 0], [-1.219707393535781, 48.63494750793669, 0], [-1.219672799699785, 48.63496594955197, 0], [-1.219640099671999, 48.63498585128588, 0], [-1.219609433478375, 48.63500712791773, 0], [-1.219580932436648, 48.63502968833942, 0], [-1.219554718593452, 48.63505343594538, 0], [-1.219530904202153, 48.63507826904636, 0], [-1.219509591241577, 48.63510408130469, 0], [-1.219490870979936, 48.63513076218975, 0], [-1.219474823583604, 48.63515819745125, 0], [-1.21946151777359, 48.63518626960809, 0], [-1.219451010531834, 48.63521485845222, 0], [-1.219443346856259, 48.63524384156246, 0], [-1.219438559568853, 48.63527309482927, 0], [-1.219436669174252, 48.635302492986, 0], [-1.219437683772817, 48.63533191014552, 0], [-1.21944159902458, 48.63536122033878, 0], [-1.219448398169227, 48.63539029805479, 0], [-1.219458052096225, 48.63541901877787, 0], [-1.219470519470938, 48.63544725952058, 0], [-1.219485746910207, 48.63547489935107, 0], [-1.219486647247292, 48.63547637366471, 0], [-1.219830961995305, 48.63603733202068, 0], [-1.219847984323792, 48.63606277821404, 0], [-1.21986852515255, 48.63608886415967, 0], [-1.219891596168448, 48.63611400384153, 0], [-1.21991709858011, 48.63613808960599, 0], [-1.219944923183951, 48.63616101831264, 0], [-1.219974950832059, 48.63618269177547, 0], [-1.22000705294169, 48.63620301718381, 0], [-1.220041092046584, 48.63622190749942, 0], [-1.220076922385001, 48.63623928182943, 0], [-1.220114390524552, 48.63625506577262, 0], [-1.220153336018661, 48.63626919173834, 0], [-1.220193592094034, 48.63628159923553, 0], [-1.220234986364566, 48.63629223513209, 0], [-1.220277341570089, 48.63630105388246, 0], [-1.220320476334929, 48.63630801772221, 0], [-1.220345153205835, 48.63631112409529, 0], [-1.221147914155289, 48.63640200371971, 0], [-1.221166966960003, 48.6364039763214, 0], [-1.22121110428346, 48.6364071486388, 0], [-1.221255460152837, 48.63640840088703, 0], [-1.221299844624435, 48.63640772770368, 0], [-1.221638541946144, 48.63639523194597, 0], [-1.221682764925243, 48.63639263608297, 0], [-1.221726637052853, 48.63638812878783, 0], [-1.221769970456899, 48.63638172936188, 0], [-1.221812579572434, 48.63637346520932, 0], [-1.221854281936636, 48.63636337171916, 0], [-1.221894898969334, 48.63635149211466, 0], [-1.221934256739057, 48.63633787726717, 0], [-1.221972186706744, 48.63632258547889, 0], [-1.22200852644812, 48.63630568223324, 0], [-1.222043120349023, 48.63628723991401, 0], [-1.222075820272173, 48.63626733749574, 0], [-1.222106486190777, 48.63624606020525, 0], [-1.222134986789079, 48.63622349915694, 0], [-1.222161200024061, 48.63619975096221, 0], [-1.222185013648094, 48.63617491731615, 0], [-1.222206325689705, 48.63614910456174, 0], [-1.222225044890315, 48.63612242323463, 0], [-1.22224109109456, 48.63609498758955, 0], [-1.222254395593982, 48.63606691511141, 0], [-1.222264901420911, 48.63603832601164, 0], [-1.222272563592108, 48.63600934271416, 0], [-1.222277349301977, 48.63598008933029, 0], [-1.222279238062185, 48.63595069112793, 0], [-1.222278221789939, 48.63592127399477, 0], [-1.222240508168133, 48.63547231053839, 0], [-1.222236591277202, 48.635443000441, 0], [-1.222229790514269, 48.63541392289059, 0], [-1.222220135006016, 48.63538520240117, 0], [-1.222215060914149, 48.63537286779603, 0], [-1.221989149801972, 48.63485293554022, 0], [-1.22198175513907, 48.63483702968675, 0], [-1.221966526521763, 48.63480939018706, 0], [-1.221948603149177, 48.63478247001221, 0], [-1.221928061775235, 48.63475638443735, 0], [-1.221904990364473, 48.63473124516356, 0], [-1.221879487714281, 48.63470715983955, 0], [-1.221851663032763, 48.6346842316008, 0], [-1.221821635470526, 48.63466255862788, 0], [-1.221789533610715, 48.63464223372615, 0], [-1.221755494918171, 48.63462334392822, 0], [-1.221719665150738, 48.63460597012152, 0], [-1.221682197735727, 48.63459018670178, 0], [-1.221643253111981, 48.63457606125441, 0], [-1.221602998043663, 48.63456365426537, 0], [-1.221561604905905, 48.63455301886201, 0], [-1.221519250946725, 48.63454420058562, 0], [-1.221476117528149, 48.63453723719652, 0], [-1.221432389349531, 48.63453215851208, 0], [-1.22138825365681, 48.63452898627956, 0], [-1.22134389944089, 48.63452773408262, 0], [-1.221299516628225, 48.63452840728311, 0], [-1.221255295267751, 48.63453100299845, 0], [-1.221211424717179, 48.6345355101136, 0] ] ] } }, { "type": "Feature", "properties": { "combine": "yes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-1.185942982098176, 48.65333607701309, 0], [-1.185981931217186, 48.65335021458009, 0], [-1.18602219252989, 48.65336263407172, 0], [-1.18606359362776, 48.65337328230446, 0], [-1.186105957221393, 48.65338211367981, 0], [-1.186149101899183, 48.65338909037958, 0], [-1.186192842904261, 48.65339418252761, 0], [-1.186236992926359, 48.65339736831804, 0], [-1.186281362903232, 48.65339863410839, 0], [-1.186325762830847, 48.65339797447825, 0], [-1.186370002576753, 48.65339539225233, 0], [-1.186413892694493, 48.65339089848849, 0], [-1.186457245235071, 48.65338451243001, 0], [-1.186473089522193, 48.65338167945284, 0], [-1.187032106025161, 48.65327690469804, 0], [-1.187419546841431, 48.65331974767945, 0], [-1.187435764768992, 48.65332140774797, 0], [-1.187479914805918, 48.6533245930595, 0], [-1.187524284749877, 48.65332585836852, 0], [-1.187568684596956, 48.65332519825675, 0], [-1.187612924215025, 48.65332261555095, 0], [-1.187656814158205, 48.65331812131092, 0], [-1.187700166478238, 48.65331173478218, 0], [-1.187742795529148, 48.65330348331359, 0], [-1.187784518762576, 48.6532934022401, 0], [-1.187825157509364, 48.65328153473148, 0], [-1.187864537744696, 48.65326793160741, 0], [-1.187902490833428, 48.6532526511201, 0], [-1.187909216244356, 48.65324952687111, 0], [-1.187988945709786, 48.65326568144791, 0], [-1.188005032512536, 48.65326879752022, 0], [-1.188048177356413, 48.65327577350493, 0], [-1.188091918455196, 48.65328086492811, 0], [-1.188136068498098, 48.65328404998677, 0], [-1.188180438422812, 48.65328531504174, 0], [-1.188224838225467, 48.6532846546757, 0], [-1.188269077774171, 48.65328207171653, 0], [-1.188312967623366, 48.6532775772252, 0], [-1.188356319825155, 48.65327119044817, 0], [-1.188398948734037, 48.65326293873549, 0], [-1.188440671802418, 48.65325285742295, 0], [-1.188481310361536, 48.6532409896816, 0], [-1.188520690387656, 48.65322738633203, 0], [-1.188550261921357, 48.65321567622387, 0], [-1.190481776837007, 48.65240600341343, 0], [-1.190490157890118, 48.65240243267529, 0], [-1.19051582888243, 48.65239075274894, 0], [-1.193554134844552, 48.65093921310398, 0], [-1.193564825163922, 48.65093399950827, 0], [-1.193599439551518, 48.65091556579884, 0], [-1.19363216023638, 48.65089567152148, 0], [-1.193662847102708, 48.6508744018682, 0], [-1.193691368745216, 48.65085184792078, 0], [-1.1937176030304, 48.65082810626018, 0], [-1.193741437620821, 48.65080327855337, 0], [-1.19376277045518, 48.6507774711181, 0], [-1.193781510185747, 48.6507507944671, 0], [-1.193797576569351, 48.65072336283517, 0], [-1.193810900811061, 48.65069529368996, 0], [-1.193821425858694, 48.65066670722867, 0], [-1.19382910664668, 48.65063772586393, 0], [-1.193833910289723, 48.65060847369876, 0], [-1.193835816222695, 48.65057907599584, 0], [-1.193834816289299, 48.65054965864081, 0], [-1.193830914776366, 48.65052034760318, 0], [-1.193829638160913, 48.65051377834664, 0], [-1.193609884164992, 48.64944513418621, 0], [-1.193604374615356, 48.64942262422446, 0], [-1.193594732762739, 48.64939390135042, 0], [-1.193582276459391, 48.64936565781867, 0], [-1.193567059049199, 48.64933801457127, 0], [-1.193549145699595, 48.64931108997994, 0], [-1.193528613121577, 48.64928499933858, 0], [-1.193505549241711, 48.64925985436994, 0], [-1.193480052825433, 48.64923576274721, 0], [-1.193452233054066, 48.64921282763271, 0], [-1.193422209057298, 48.64919114723664, 0], [-1.193390109402743, 48.64917081439612, 0], [-1.19335607154605, 48.64915191617756, 0], [-1.193320241241507, 48.6491345335047, 0], [-1.193282771918403, 48.64911874081099, 0], [-1.193243824024113, 48.64910460572173, 0], [-1.193203564336649, 48.64909218876411, 0], [-1.193162165250949, 48.64908154310819, 0], [-1.19311980404063, 48.6490727143392, 0], [-1.193076662098371, 48.64906574026216, 0], [-1.19303292416046, 48.64906065074059, 0], [-1.192988777514441, 48.64905746756783, 0], [-1.192966488681122, 48.6490565919969, 0], [-1.189498749058369, 48.64895821794163, 0], [-1.189476671645311, 48.64895782965103, 0], [-1.189432275678168, 48.64895849050232, 0], [-1.189388039991635, 48.64896107391137, 0], [-1.18934415400471, 48.6489655688159, 0], [-1.189300805639073, 48.64897195596855, 0], [-1.189258180514523, 48.64898020801915, 0], [-1.189216461153877, 48.6489902896323, 0], [-1.189175826202273, 48.64900215763786, 0], [-1.189136449661086, 48.64901576121654, 0], [-1.189106880823807, 48.64902747144124, 0], [-1.18722744104562, 48.64981533685799, 0], [-1.187219060101061, 48.64981890739618, 0], [-1.187182698910583, 48.64983579958754, 0], [-1.187148082914633, 48.64985423135969, 0], [-1.187115360342921, 48.64987412378664, 0], [-1.187084671318379, 48.6498953916876, 0], [-1.187056147256127, 48.64991794399181, 0], [-1.187029910301498, 48.64994168412856, 0], [-1.18700607280678, 48.64996651044044, 0], [-1.186984736849899, 48.64999231661896, 0], [-1.186965993797409, 48.65001899215957, 0], [-1.186949923913265, 48.65004642283475, 0], [-1.18693659601496, 48.65007449118323, 0], [-1.186926067178638, 48.65010307701301, 0], [-1.186918382495088, 48.65013205791598, 0], [-1.186913574875925, 48.65016130979201, 0], [-1.186911664913197, 48.65019070738046, 0], [-1.186912660790678, 48.65022012479652, 0], [-1.186916558248974, 48.65024943607021, 0], [-1.186917834285171, 48.65025600701116, 0], [-1.18697259624204, 48.65052247793741, 0], [-1.186733262865383, 48.65084762543689, 0], [-1.186718950109602, 48.65086839199936, 0], [-1.186702879819284, 48.65089582263828, 0], [-1.186689551558069, 48.65092389095639, 0], [-1.186683599623584, 48.65093903868794, 0], [-1.186668667814614, 48.65097994778673, 0], [-1.186664861473392, 48.65098068455525, 0], [-1.186623139933769, 48.65099076522272, 0], [-1.186582502754268, 48.65100263230683, 0], [-1.186543123945734, 48.65101623499234, 0], [-1.186505172131482, 48.65103151503179, 0], [-1.186468809824677, 48.65104840699523, 0], [-1.186434192732664, 48.65106683855019, 0], [-1.186401469089768, 48.65108673077158, 0], [-1.18637077902354, 48.65110799847954, 0], [-1.186342253953594, 48.65113055060411, 0], [-1.186316016029541, 48.65115429057546, 0], [-1.186292177607804, 48.65117911673674, 0], [-1.186270840770307, 48.6512049227802, 0], [-1.186252096887361, 48.65123159820183, 0], [-1.186236026226539, 48.6512590287746, 0], [-1.18622269760855, 48.65128709703764, 0], [-1.186212168112695, 48.65131568279952, 0], [-1.186204482832542, 48.6513446636522, 0], [-1.186199674682344, 48.65137391549587, 0], [-1.186197764256347, 48.65140331306996, 0], [-1.18619867194715, 48.65143013612602, 0], [-1.186196697951802, 48.65143150405623, 0], [-1.186168172620346, 48.65145405613703, 0], [-1.186141934445373, 48.65147779606789, 0], [-1.186123425106691, 48.65149675172897, 0], [-1.18548485702374, 48.6521881692393, 0], [-1.185479527553675, 48.65219403967279, 0], [-1.185458189868716, 48.65221984556318, 0], [-1.185439445176677, 48.65224652084996, 0], [-1.185423373748309, 48.65227395130683, 0], [-1.185410044407917, 48.65230201947345, 0], [-1.185399514237842, 48.6523306051586, 0], [-1.185391828334328, 48.65235958595477, 0], [-1.185387019614466, 48.65238883776225, 0], [-1.185385108674979, 48.6524182353208, 0], [-1.185386103703738, 48.65244765274566, 0], [-1.185390000445068, 48.6524769640668, 0], [-1.185396782217432, 48.65250604376827, 0], [-1.185406419985176, 48.65253476732597, 0], [-1.185410695453155, 48.65254526491832, 0], [-1.185635314224218, 48.65307139329811, 0], [-1.18564349141828, 48.65308914010341, 0], [-1.185658705608608, 48.65311678439598, 0], [-1.185676616089746, 48.65314371021388, 0], [-1.185697146169882, 48.65316980225537, 0], [-1.185720207938976, 48.65319494878905, 0], [-1.185745702645242, 48.65321904213202, 0], [-1.185773521118287, 48.65324197911138, 0], [-1.185803544236019, 48.6532636615057, 0], [-1.185835643435618, 48.65328399646606, 0], [-1.185869681262795, 48.65330289691341, 0], [-1.185905511961662, 48.65332028191131, 0], [-1.185942982098176, 48.65333607701309, 0] ] ] } }, { "type": "Feature", "properties": { "combine": "yes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-1.208667740434286, 48.66018729271837, 0], [-1.208624384851682, 48.66019368717697, 0], [-1.208581753388103, 48.66020194641027, 0], [-1.208540028593463, 48.6602120350517, 0], [-1.208533828789973, 48.66021371189937, 0], [-1.207131861581128, 48.66059824345537, 0], [-1.207097421379617, 48.66060844103555, 0], [-1.20705804059984, 48.66062205076235, 0], [-1.2070200877711, 48.66063733758642, 0], [-1.207003981663812, 48.66064453302487, 0], [-1.206669557837221, 48.66079859409124, 0], [-1.206649301457727, 48.66080829705572, 0], [-1.206614685044931, 48.66082673469474, 0], [-1.20658196303495, 48.66084663266569, 0], [-1.206551275547918, 48.66086790576394, 0], [-1.20652275399278, 48.66089046289665, 0], [-1.206496520503939, 48.66091420747232, 0], [-1.206472687418874, 48.66093903781454, 0], [-1.206451356796685, 48.6609648475977, 0], [-1.206432619981146, 48.66099152630166, 0], [-1.206416557209233, 48.66101895968531, 0], [-1.206403454568401, 48.66104651502528, 0], [-1.205923587389628, 48.66218171732532, 0], [-1.205923370079598, 48.66218223257492, 0], [-1.205912849501269, 48.66221082012457, 0], [-1.205905173909547, 48.66223980227558, 0], [-1.205900376177116, 48.66226905492268, 0], [-1.205898476853717, 48.66229845280189, 0], [-1.205899484077522, 48.6623278700271, 0], [-1.205903393540615, 48.6623571806292, 0], [-1.205910188506985, 48.66238625909528, 0], [-1.205919839884502, 48.66241498090649, 0], [-1.205932306348962, 48.66244322307082, 0], [-1.205947534521565, 48.6624708646502, 0], [-1.20596545919659, 48.6624977872779, 0], [-1.205986003621371, 48.66252387566602, 0], [-1.206009079824519, 48.66254901809863, 0], [-1.206034588992417, 48.6625731069105, 0], [-1.206062421892662, 48.66259603894797, 0], [-1.20609245934161, 48.66261771601107, 0], [-1.206124572714691, 48.66263804527338, 0], [-1.206158624497224, 48.66265693968038, 0], [-1.206194468873572, 48.66267431832163, 0], [-1.206231952350814, 48.66269010677753, 0], [-1.206270914416967, 48.66270423743786, 0], [-1.206311188227693, 48.66271664979168, 0], [-1.206352601321048, 48.66272729068596, 0], [-1.206394976355929, 48.66273611455376, 0], [-1.206433462071344, 48.66274242456987, 0], [-1.207418186983236, 48.66288379218516, 0], [-1.207422856810021, 48.6628844511841, 0], [-1.207466608226551, 48.66288953520722, 0], [-1.207510767930864, 48.66289271279818, 0], [-1.207555146819288, 48.66289397034956, 0], [-1.207599554849541, 48.66289330247628, 0], [-1.207643801854521, 48.66289071203827, 0], [-1.207687698356694, 48.66288621012857, 0], [-1.207731056379686, 48.66287981602552, 0], [-1.207773690253138, 48.66287155711034, 0], [-1.207815417408109, 48.66286146874987, 0], [-1.207856059158394, 48.66284959414518, 0], [-1.207895441466549, 48.66283598414632, 0], [-1.207933395688514, 48.66282069703474, 0], [-1.207969759296099, 48.66280379827375, 0], [-1.208004376573084, 48.66278536022802, 0], [-1.208037099281787, 48.6627654618538, 0], [-1.208067787298095, 48.66274418836046, 0], [-1.208096309211666, 48.66272163084625, 0], [-1.208122542887877, 48.66269788590742, 0], [-1.208146375991848, 48.66267305522512, 0], [-1.20815869366427, 48.66265864417345, 0], [-1.208376974834349, 48.66239192544576, 0], [-1.20876415012068, 48.66212639898349, 0], [-1.208781762845319, 48.66211385008661, 0], [-1.208810284081012, 48.66209129239361, 0], [-1.208836517091376, 48.66206754729033, 0], [-1.208860349544128, 48.66204271645842, 0], [-1.208881679387139, 48.66201690622891, 0], [-1.208900415285492, 48.66199022712654, 0], [-1.20891647701256, 48.66196279339657, 0], [-1.208927965796305, 48.66193899063353, 0], [-1.20944551286019, 48.66075415450932, 0], [-1.209447342770234, 48.66074988638299, 0], [-1.209457861033794, 48.66072129850588, 0], [-1.209465534346459, 48.66069231611383, 0], [-1.209470329854609, 48.66066306331418, 0], [-1.209472227028408, 48.66063366537245, 0], [-1.209471217748588, 48.66060424817509, 0], [-1.209467306342509, 48.66057493769101, 0], [-1.209460509564029, 48.66054585943221, 0], [-1.209450856523202, 48.66051713791536, 0], [-1.20943838856016, 48.66048889612993, 0], [-1.209423159069052, 48.6604612550105, 0], [-1.209405233268848, 48.66043433291971, 0], [-1.209384687923962, 48.66040824514073, 0], [-1.209361611015538, 48.66038310338397, 0], [-1.209336101364926, 48.660359015309, 0], [-1.209308268209985, 48.66033608406293, 0], [-1.209278230737796, 48.66031440783912, 0], [-1.209246117573708, 48.66029407945715, 0], [-1.209212066231002, 48.6602751859643, 0], [-1.209176222521842, 48.66025780826409, 0], [-1.209138739933189, 48.66024202076845, 0], [-1.209099778968814, 48.66022789108068, 0], [-1.209059506462884, 48.66021547970463, 0], [-1.209018094865193, 48.66020483978661, 0], [-1.208975721502914, 48.66019601688716, 0], [-1.208932567820826, 48.6601890487863, 0], [-1.208888818605396, 48.66018396532174, 0], [-1.20884466119253, 48.66018078826136, 0], [-1.208800284666076, 48.66017953120894, 0], [-1.208755879048094, 48.66018019954776, 0], [-1.20871163448512, 48.66018279041548, 0], [-1.208667740434286, 48.66018729271837, 0] ] ] } }, { "type": "Feature", "properties": { "combine": "yes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-1.196141747783353, 48.665627280773, 0], [-1.196173859055274, 48.66564761281908, 0], [-1.196207909136609, 48.66566651017852, 0], [-1.196243752219011, 48.66568389192815, 0], [-1.196281234814998, 48.66569968363514, 0], [-1.196320196416443, 48.66571381767536, 0], [-1.196360470181026, 48.66572623352319, 0], [-1.196401883646923, 48.66573687801104, 0], [-1.196444259471572, 48.66574570555621, 0], [-1.19648741619105, 48.66575267835687, 0], [-1.196531168997048, 48.66575776655377, 0], [-1.1965753305287, 48.66576094835784, 0], [-1.196619711674478, 48.66576221014363, 0], [-1.196664122382489, 48.66576154650797, 0], [-1.19670837247414, 48.66575896029264, 0], [-1.196747499281115, 48.66575504642617, 0], [-1.199755814701626, 48.66539439044286, 0], [-1.199760587810035, 48.66539380646402, 0], [-1.199803949002871, 48.66538741536122, 0], [-1.199846586304001, 48.66537915939659, 0], [-1.199888317129796, 48.66536907392437, 0], [-1.19991312560537, 48.66536207895145, 0], [-1.201832957295612, 48.6647906509407, 0], [-1.201848794101439, 48.6647857738572, 0], [-1.201888179552839, 48.66477216592431, 0], [-1.201926137062235, 48.66475688080445, 0], [-1.201962504088525, 48.66473998395202, 0], [-1.201968125574582, 48.66473715553244, 0], [-1.203130315132872, 48.66414605591847, 0], [-1.203159313757574, 48.66413044781481, 0], [-1.203192039258623, 48.66411055082595, 0], [-1.203222730145335, 48.66408927863215, 0], [-1.203251254995137, 48.66406672232602, 0], [-1.20327639546838, 48.6640440386127, 0], [-1.203797169100218, 48.66354193895945, 0], [-1.203798265270772, 48.66354087884037, 0], [-1.203822100909315, 48.6635160490589, 0], [-1.203843433963079, 48.66349023976991, 0], [-1.203862173083334, 48.66346356149417, 0], [-1.203878238029468, 48.66343612847335, 0], [-1.20388041006442, 48.66343196082209, 0], [-1.204787489268508, 48.66166335048834, 0], [-1.205715649697823, 48.66080991829035, 0], [-1.205725479979232, 48.66080063465137, 0], [-1.205742788189677, 48.66078296771654, 0], [-1.206311010477659, 48.66017209218758, 0], [-1.20632222116158, 48.66017615824559, 0], [-1.206362492960476, 48.66018857058354, 0], [-1.206403903982907, 48.66019921146133, 0], [-1.206446276896764, 48.6602080353117, 0], [-1.206489430250535, 48.66021500434876, 0], [-1.206533179250418, 48.66022008872928, 0], [-1.206577336551753, 48.6602232666805, 0], [-1.2066217130612, 48.6602245245936, 0], [-1.206666118746689, 48.66022385708191, 0], [-1.206710363451129, 48.6602212670038, 0], [-1.206754257706839, 48.66021676545078, 0], [-1.206797613547117, 48.66021037169967, 0], [-1.206840245310836, 48.66020211313011, 0], [-1.20688197043811, 48.66019202510765, 0], [-1.206922610251644, 48.66018015083173, 0], [-1.206961990722029, 48.660166541151, 0], [-1.206999943213138, 48.66015125434569, 0], [-1.207036305204217, 48.6601343558777, 0], [-1.207070920985878, 48.66011591811043, 0], [-1.207103642326994, 48.66009601999883, 0], [-1.20713432910935, 48.66007474675151, 0], [-1.207162849927557, 48.66005218946527, 0], [-1.207189082652149, 48.6600284447356, 0], [-1.207212914951943, 48.66000361424274, 0], [-1.20723424477563, 48.65997780431611, 0], [-1.207252980788272, 48.65995112547917, 0], [-1.207269042762882, 48.65992369197619, 0], [-1.207282361923097, 48.6598956212827, 0], [-1.207291488124591, 48.65987133669223, 0], [-1.207630206736929, 48.65884948558358, 0], [-1.209796757221486, 48.65707634558959, 0], [-1.209803517113472, 48.65707072157717, 0], [-1.209829747036246, 48.65704697623799, 0], [-1.209853576619573, 48.65702214519074, 0], [-1.209874903823676, 48.65699633476714, 0], [-1.209884798624954, 48.65698281364236, 0], [-1.210610226044988, 48.65594779625716, 0], [-1.211139224288138, 48.65535309246679, 0], [-1.211365747426565, 48.65524871325008, 0], [-1.21138599770442, 48.65523901080859, 0], [-1.211420608522311, 48.65522057172113, 0], [-1.211453324957772, 48.65520067236077, 0], [-1.211484006913628, 48.65517939794135, 0], [-1.211512523005096, 48.65515683956478, 0], [-1.211538751122934, 48.65513309383132, 0], [-1.211562578955661, 48.65510826242535, 0], [-1.211583904471214, 48.6550824516803, 0], [-1.21160263635314, 48.65505577212304, 0], [-1.211618694391858, 48.65502833800103, 0], [-1.211632009828292, 48.65500026679235, 0], [-1.211633708925115, 48.65499615176141, 0], [-1.212262279399705, 48.65344489577172, 0], [-1.212271095544559, 48.65342042266268, 0], [-1.212278766122412, 48.65339144006739, 0], [-1.212283559298348, 48.65336218713507, 0], [-1.212285454552502, 48.65333278913168, 0], [-1.212284443773861, 48.65330337194412, 0], [-1.212280531296039, 48.65327406154113, 0], [-1.212273733877851, 48.65324498343425, 0], [-1.212264080631689, 48.65321626213971, 0], [-1.212251612898903, 48.65318802064592, 0], [-1.212242593916821, 48.65317098500754, 0], [-1.211874160129702, 48.65251736855066, 0], [-1.212016685551027, 48.65214199774288, 0], [-1.212022799785766, 48.65212440980748, 0], [-1.212030470309022, 48.65209542722626, 0], [-1.212035263505862, 48.65206617430173, 0], [-1.212037158856338, 48.65203677629983, 0], [-1.212036148249041, 48.65200735910743, 0], [-1.212032236016702, 48.65197804869337, 0], [-1.212025438917099, 48.65194897056913, 0], [-1.212015786061524, 48.65192024925118, 0], [-1.21200331878931, 48.65189200772786, 0], [-1.211988090491727, 48.65186436693277, 0], [-1.21197016638235, 48.65183744522706, 0], [-1.21194962321866, 48.65181135789221, 0], [-1.211926548972346, 48.65178621663694, 0], [-1.211901042453429, 48.65176212911843, 0], [-1.211891479309493, 48.65175389845536, 0], [-1.211450454561052, 48.65138325663013, 0], [-1.21159618993502, 48.65099944731832, 0], [-1.211602305736685, 48.65098185529896, 0], [-1.211609976328907, 48.65095287274088, 0], [-1.211614769661518, 48.65092361983171, 0], [-1.211616665214532, 48.65089422183443, 0], [-1.211615654876119, 48.65086480463599, 0], [-1.211611742977674, 48.65083549420531, 0], [-1.211604946275653, 48.65080641605387, 0], [-1.211595293879331, 48.65077769469821, 0], [-1.211582827126501, 48.65074945312693, 0], [-1.211567599405776, 48.65072181227383, 0], [-1.211549675928694, 48.65069489050019, 0], [-1.211529133449696, 48.65066880308793, 0], [-1.211506059937675, 48.65064366174603, 0], [-1.211480554199373, 48.65061957413201, 0], [-1.211452725455984, 48.65059664339127, 0], [-1.211422692875661, 48.65057496771497, 0], [-1.211390585062673, 48.65055463992016, 0], [-1.211356539507738, 48.65053574705172, 0], [-1.211320701997898, 48.65051837001041, 0], [-1.211283225993678, 48.65050258320554, 0], [-1.211244271970631, 48.65048845423723, 0], [-1.211204006733246, 48.65047604360644, 0], [-1.211162602700204, 48.65046540445619, 0], [-1.211120237166123, 48.65045658234374, 0], [-1.21107709154259, 48.65044961504572, 0], [-1.211033350581297, 48.65044453239658, 0], [-1.210989201582839, 48.65044135616023, 0], [-1.210944833595136, 48.65044009993758, 0], [-1.210900436603533, 48.65044076910778, 0], [-1.210856200717818, 48.65044336080536, 0], [-1.210812315357832, 48.65044786393263, 0], [-1.210768968442495, 48.65045425920702, 0], [-1.210758941563048, 48.6504560227441, 0], [-1.209826515186359, 48.650625079771, 0], [-1.209943670716256, 48.65027152737947, 0], [-1.210991686897613, 48.64994126166868, 0], [-1.210994271296069, 48.6499404427828, 0], [-1.211033642648267, 48.64992683169316, 0], [-1.211071586176107, 48.64991154352855, 0], [-1.21110793939724, 48.6498946437566, 0], [-1.211142546639792, 48.64987620474632, 0], [-1.211155385259839, 48.64986870468563, 0], [-1.212587986423617, 48.64901026809634, 0], [-1.212607860180757, 48.64899786861949, 0], [-1.21263853786493, 48.64897659388184, 0], [-1.212667049922345, 48.64895403520843, 0], [-1.212693274261005, 48.64893028920055, 0], [-1.212717098585698, 48.64890545754394, 0], [-1.212738420879229, 48.64887964657298, 0], [-1.212757149838892, 48.64885296681574, 0], [-1.212773205267959, 48.64882553252022, 0], [-1.212775376066539, 48.64882136443966, 0], [-1.213361903653158, 48.6476770003389, 0], [-1.213373045472506, 48.64765309700595, 0], [-1.213383558766481, 48.64762450874271, 0], [-1.213391227819614, 48.64759552606149, 0], [-1.213396019796469, 48.64756627307111, 0], [-1.213397914182017, 48.6475368750377, 0], [-1.213396902869384, 48.64750745784829, 0], [-1.21339299019416, 48.64747814747178, 0], [-1.213386192916119, 48.64744906941936, 0], [-1.213376540147015, 48.64742034820722, 0], [-1.21336407322618, 48.6473921068234, 0], [-1.213348845543045, 48.64736446620077, 0], [-1.213330922308908, 48.64733754469966, 0], [-1.213310380277193, 48.64731145760082, 0], [-1.213287307414872, 48.64728631661193, 0], [-1.213261802525911, 48.64726222938899, 0], [-1.21325552685297, 48.64725678369738, 0], [-1.213247581391701, 48.64724999688243, 0], [-1.213249846442468, 48.64724986412166, 0], [-1.21329372879432, 48.64724536005979, 0], [-1.213337072623566, 48.6472389638288, 0], [-1.213379692320578, 48.64723070281916, 0], [-1.213421405377206, 48.64722061240654, 0], [-1.213462033167538, 48.64720873580087, 0], [-1.213501401713961, 48.64719512386078, 0], [-1.213539342431349, 48.64717983487602, 0], [-1.213575692849305, 48.64716293431795, 0], [-1.213610297308003, 48.64714449455887, 0], [-1.213643007624958, 48.6471245945623, 0], [-1.213673683728835, 48.64710331954479, 0], [-1.213702194260291, 48.64708076061099, 0], [-1.213728417133744, 48.6470570143631, 0], [-1.213752240060295, 48.6470321824881, 0], [-1.213773561028686, 48.64700637132126, 0], [-1.213792288742006, 48.64697969139139, 0], [-1.213808343008562, 48.64695225694736, 0], [-1.213815735747803, 48.64693746802404, 0], [-1.214054854053039, 48.6464298163696, 0], [-1.214326395840975, 48.6461216089379, 0], [-1.214344502086637, 48.64612054748482, 0], [-1.214388383355356, 48.64611604300328, 0], [-1.214431726072371, 48.64610964635766, 0], [-1.214474344632852, 48.64610138494019, 0], [-1.214516056533486, 48.64609129412824, 0], [-1.214556683153314, 48.64607941713349, 0], [-1.214596050519761, 48.64606580481622, 0], [-1.214633990052696, 48.64605051546779, 0], [-1.214670339286879, 48.64603361456112, 0], [-1.214704942567459, 48.64601517446999, 0], [-1.214737651717088, 48.64599527415939, 0], [-1.214768326669367, 48.6459739988472, 0], [-1.214796836069887, 48.64595143963921, 0], [-1.214823057837944, 48.64592769313904, 0], [-1.214846879689355, 48.64590286103456, 0], [-1.214868199617458, 48.64587704966203, 0], [-1.214886926329819, 48.64585036955123, 0], [-1.214902979639001, 48.64582293495172, 0], [-1.21491629080605, 48.64579486334392, 0], [-1.214926802834777, 48.64576627493548, 0], [-1.214934470715408, 48.6457372921474, 0], [-1.214939261617862, 48.64570803908882, 0], [-1.214941155031588, 48.64567864102624, 0], [-1.214940142853866, 48.64564922384682, 0], [-1.214934533827863, 48.64558234794652, 0], [-1.21608855596933, 48.64451046700448, 0], [-1.216096604261003, 48.64450282510422, 0], [-1.216120424809057, 48.64447799273257, 0], [-1.216141743479886, 48.6444521811206, 0], [-1.216160468986312, 48.64442550079909, 0], [-1.216176521146393, 48.64439806601852, 0], [-1.216189831225771, 48.64436999426, 0], [-1.216200342232956, 48.6443414057321, 0], [-1.216208009162787, 48.64431242285604, 0], [-1.216212799189003, 48.64428316974143, 0], [-1.216214691804887, 48.64425377165502, 0], [-1.216213678911138, 48.64422435448405, 0], [-1.216209764850142, 48.64419504419737, 0], [-1.21620296638759, 48.64416596630571, 0], [-1.216193312640288, 48.64413724532468, 0], [-1.216180844951826, 48.64410900424112, 0], [-1.216165616714795, 48.64408136398676, 0], [-1.216147693143008, 48.64405444292051, 0], [-1.216127150991249, 48.6440283563211, 0], [-1.216104078227029, 48.64400321589396, 0], [-1.216078573653896, 48.64397912929285, 0], [-1.216050746488044, 48.64395619965877, 0], [-1.216020715890755, 48.64393452517805, 0], [-1.215988610458143, 48.64391419866281, 0], [-1.215954567670374, 48.64389530715234, 0], [-1.215930262437288, 48.64388326369759, 0], [-1.215929283172299, 48.64388280193768, 0], [-1.215834190058156, 48.64383784320634, 0], [-1.216117057299206, 48.64357510073584, 0], [-1.216118027156761, 48.64357442801256, 0], [-1.216146534592233, 48.64355186846513, 0], [-1.216171652714615, 48.64352918795458, 0], [-1.216305029598572, 48.64340049993934, 0], [-1.216398241796333, 48.6433139178729, 0], [-1.216517568817817, 48.643243037912, 0], [-1.216695951506857, 48.64314082867317, 0], [-1.216727177646171, 48.64312177353738, 0], [-1.216757850005004, 48.64310049768843, 0], [-1.21678635688502, 48.64307793798103, 0], [-1.216811477736399, 48.64305525418967, 0], [-1.217309766484882, 48.64257445667995, 0], [-1.217974084411511, 48.64219381126623, 0], [-1.21797555610198, 48.64219296921928, 0], [-1.21800678887237, 48.64217390931894, 0], [-1.218037460112278, 48.64215263312606, 0], [-1.218065965881383, 48.64213007309889, 0], [-1.218092184114628, 48.64210632584445, 0], [-1.21809350369801, 48.64210503990541, 0], [-1.218681089811415, 48.64153029209299, 0], [-1.218703588124328, 48.64150674512521, 0], [-1.218724904210804, 48.64148093302752, 0], [-1.21874362724143, 48.64145425227854, 0], [-1.218759677044856, 48.64142681713071, 0], [-1.218772984896837, 48.64139874506656, 0], [-1.218783493815372, 48.64137015629605, 0], [-1.218791158804315, 48.64134117324149, 0], [-1.218795947045639, 48.64131192001317, 0], [-1.21879783804034, 48.64128252187832, 0], [-1.218796823696011, 48.64125310472453, 0], [-1.218792908361255, 48.64122379452031, 0], [-1.218786108807215, 48.6411947167763, 0], [-1.218776454155397, 48.64116599600733, 0], [-1.218763985753266, 48.64113775519944, 0], [-1.218748756996431, 48.64111011528308, 0], [-1.218730833100983, 48.64108319461575, 0], [-1.218710290823004, 48.64105710847442, 0], [-1.218687218130647, 48.64103196856267, 0], [-1.218661713827058, 48.64100788253198, 0], [-1.218633887127334, 48.64098495352085, 0], [-1.218603857190737, 48.6409632797131, 0], [-1.218571752610622, 48.64094295391782, 0], [-1.218537710863381, 48.64092406317128, 0], [-1.218503475968442, 48.64090741355324, 0], [-1.217443378989882, 48.64042492200069, 0], [-1.217441780772084, 48.64042419679766, 0], [-1.217404310366246, 48.64040841198442, 0], [-1.217365362439902, 48.64039428508777, 0], [-1.217325103771283, 48.64038187659993, 0], [-1.217283706751031, 48.64037123965452, 0], [-1.217281004788358, 48.64037061620907, 0], [-1.216414269225117, 48.64017198018648, 0], [-1.216217115448213, 48.64002086115919, 0], [-1.216188363269235, 48.64000016774037, 0], [-1.216156260279528, 48.63997984126682, 0], [-1.216122220090941, 48.63996094980135, 0], [-1.216086388467692, 48.63994357423843, 0], [-1.216048918845067, 48.6399277889813, 0], [-1.216009971671361, 48.63991366162338, 0], [-1.215969713721647, 48.63990125265876, 0], [-1.21592831738341, 48.63989061522323, 0], [-1.215922030522498, 48.63988917754185, 0], [-1.214687675800543, 48.639611375806, 0], [-1.214651605576695, 48.63960399274212, 0], [-1.214608468769749, 48.63959702676884, 0], [-1.214596643146968, 48.6395954593164, 0], [-1.210752597923495, 48.63910937871067, 0], [-1.210720692241418, 48.63910586378783, 0], [-1.210676553212327, 48.63910268742866, 0], [-1.210632195231378, 48.63910143108395, 0], [-1.210587808241175, 48.6391021001335, 0], [-1.210543582308539, 48.63910469171236, 0], [-1.210499706810764, 48.63910919472324, 0], [-1.210456369624584, 48.63911558988421, 0], [-1.210413756321918, 48.63912384981074, 0], [-1.210372049374962, 48.63913393913369, 0], [-1.210331427375737, 48.63914581464985, 0], [-1.210292663219972, 48.63915920185052, 0], [-1.209894014237107, 48.63930788621498, 0], [-1.209865354202142, 48.63928973643623, 0], [-1.209831316842611, 48.63927084310053, 0], [-1.209795487883671, 48.63925346556902, 0], [-1.209758020748857, 48.63923767825349, 0], [-1.20971907587593, 48.63922354875604, 0], [-1.209678820030153, 48.63921113758004, 0], [-1.209637425589938, 48.63920049787065, 0], [-1.209595069808895, 48.63919167518758, 0], [-1.209559837064154, 48.63918583631539, 0], [-1.209140422350035, 48.63912418360262, 0], [-1.209132519361811, 48.63912305456823, 0], [-1.209088788444124, 48.63911797117281, 0], [-1.209044649507458, 48.6391147941849, 0], [-1.209000291556606, 48.63911353720818, 0], [-1.208955904534028, 48.63911420562538, 0], [-1.208911678506688, 48.63911679657412, 0], [-1.208867802852318, 48.63912129896006, 0], [-1.208824465448293, 48.63912769350351, 0], [-1.208781851867449, 48.63913595282298, 0], [-1.208740144583262, 48.63914604155167, 0], [-1.208699522188974, 48.63915791648918, 0], [-1.20866015863254, 48.63917152678639, 0], [-1.208622222471627, 48.63918681416336, 0], [-1.208585876152513, 48.6392037131586, 0], [-1.208551275313918, 48.63922215140968, 0], [-1.208518568120944, 48.63924204996273, 0], [-1.208487894630257, 48.63926332361086, 0], [-1.208459386190808, 48.63928588125872, 0], [-1.208433164881004, 48.63930962631257, 0], [-1.208409342985908, 48.63933445709416, 0], [-1.208388022516778, 48.63936026727571, 0], [-1.208369294773841, 48.63938694633547, 0], [-1.208353239955566, 48.63941438003087, 0], [-1.208339926814697, 48.63944245088787, 0], [-1.208329412364586, 48.63947103870366, 0], [-1.208321741633975, 48.63950002106149, 0], [-1.208316947475165, 48.63952927385516, 0], [-1.208315050422131, 48.63955867182003, 0], [-1.208316058603769, 48.63958808906966, 0], [-1.20831996770761, 48.63961739963479, 0], [-1.208326760999599, 48.63964647800275, 0], [-1.208336409394402, 48.639675199655, 0], [-1.208348871580944, 48.63970344160031, 0], [-1.208351439211093, 48.63970852216476, 0], [-1.208490307210632, 48.6399779572966, 0], [-1.208502962327906, 48.64000051801766, 0], [-1.208520880364921, 48.64002744028703, 0], [-1.208541416939142, 48.64005352825706, 0], [-1.208558660622863, 48.64007232293123, 0], [-1.208559399263631, 48.64009387211319, 0], [-1.208563308548547, 48.64012318266905, 0], [-1.208570102049489, 48.64015226102162, 0], [-1.208579750680163, 48.64018098265245, 0], [-1.208592213128616, 48.64020922457033, 0], [-1.208607436032814, 48.64023686583829, 0], [-1.208625354209796, 48.640263788091, 0], [-1.208645890934657, 48.64028987604183, 0], [-1.208668958269019, 48.64031501797713, 0], [-1.208694457437196, 48.64033910623352, 0], [-1.20872227924963, 48.64036203765997, 0], [-1.20875230457006, 48.64038371405875, 0], [-1.208784404826013, 48.64040404260676, 0], [-1.208818442559045, 48.64042293625218, 0], [-1.208854272013349, 48.64044031408785, 0], [-1.208858278153548, 48.64044200213752, 0], [-1.208853203406526, 48.64045580004309, 0], [-1.208845532827534, 48.64048478243414, 0], [-1.208840738879415, 48.64051403524788, 0], [-1.208838842095326, 48.64054343321953, 0], [-1.208839850602863, 48.64057285046269, 0], [-1.208843760088458, 48.64060216100808, 0], [-1.208850553816179, 48.64063123934307, 0], [-1.208860202698852, 48.64065996094939, 0], [-1.208872665423344, 48.6406882028359, 0], [-1.208887888626462, 48.64071584406573, 0], [-1.208905807124208, 48.64074276627368, 0], [-1.208926344190016, 48.64076885417352, 0], [-1.20894941188411, 48.64079399605145, 0], [-1.208974911429346, 48.64081808424469, 0], [-1.209002733634386, 48.64084101560231, 0], [-1.20903275936161, 48.64086269192696, 0], [-1.209064860036468, 48.64088302039571, 0], [-1.209098898210708, 48.64090191396294, 0], [-1.209133130143356, 48.64091856646128, 0], [-1.209218664951033, 48.64095750612646, 0], [-1.208616099063287, 48.64155942702978, 0], [-1.208597315157216, 48.64157929629792, 0], [-1.20857599383319, 48.64160510651065, 0], [-1.208575263238005, 48.64160614725854, 0], [-1.208323207739792, 48.64185969598036, 0], [-1.208305628721431, 48.64187835719244, 0], [-1.208284307121066, 48.64190416735043, 0], [-1.208265578376171, 48.6419308463888, 0], [-1.208249522689491, 48.64195828006521, 0], [-1.208236208817706, 48.64198635090543, 0], [-1.208225693776888, 48.64201493870695, 0], [-1.208218022598775, 48.64204392105303, 0], [-1.208213228137107, 48.64207317383751, 0], [-1.208211330927678, 48.64210257179579, 0], [-1.208212339099524, 48.64213198904145, 0], [-1.208216248340714, 48.64216129960524, 0], [-1.208223041916177, 48.6421903779745, 0], [-1.208232690739717, 48.64221909963079, 0], [-1.208245153498062, 48.64224734158265, 0], [-1.208260376828318, 48.64227498289306, 0], [-1.208278295545449, 48.64230190519636, 0], [-1.208298832922348, 48.64232799320603, 0], [-1.208321901017742, 48.64235313520788, 0], [-1.208347401052745, 48.64237722353828, 0], [-1.208356844144334, 48.64238500652766, 0], [-1.208364130284565, 48.64239426185644, 0], [-1.208379137233968, 48.64241103235032, 0], [-1.208080646606893, 48.64253418174281, 0], [-1.208047615048484, 48.64254058321864, 0], [-1.208005904794534, 48.64255067167779, 0], [-1.207965279477943, 48.64256254635218, 0], [-1.207925913058878, 48.64257615639404, 0], [-1.207887974107558, 48.64259144352444, 0], [-1.207851625082108, 48.64260834228295, 0], [-1.207817021632902, 48.64262678030812, 0], [-1.207784311935971, 48.64264667864719, 0], [-1.207753636059092, 48.64266795209395, 0], [-1.20772512536113, 48.64269050955402, 0], [-1.207698901930143, 48.64271425443456, 0], [-1.207675078060506, 48.64273908505788, 0], [-1.207653755771811, 48.64276489509702, 0], [-1.20763502637212, 48.6427915740308, 0], [-1.207618970066935, 48.64281900761724, 0], [-1.207605655615514, 48.64284707838259, 0], [-1.207595140036466, 48.64287566612465, 0], [-1.207587468363869, 48.64290464842685, 0], [-1.20758267345354, 48.64293390118326, 0], [-1.207580775843151, 48.64296329912942, 0], [-1.207581783663558, 48.64299271637898, 0], [-1.20759369501918, 48.64313499019508, 0], [-1.207591014837524, 48.64313579965944, 0], [-1.207578416070754, 48.64313970857167, 0], [-1.207539049095394, 48.64315331848007, 0], [-1.207501109591276, 48.64316860548174, 0], [-1.207464760018844, 48.64318550411687, 0], [-1.207430156030889, 48.64320394202451, 0], [-1.20739744580566, 48.64322384025234, 0], [-1.207366769413274, 48.64324511359471, 0], [-1.207338258214772, 48.64326767095761, 0], [-1.207312034300352, 48.6432914157487, 0], [-1.207288209966406, 48.6433162462906, 0], [-1.207266887234646, 48.64334205625673, 0], [-1.207248157414911, 48.64336873512628, 0], [-1.207240396605775, 48.64338199479096, 0], [-1.206627273138858, 48.64292806062919, 0], [-1.206697515967212, 48.64272285473483, 0], [-1.207265927219519, 48.64199219523461, 0], [-1.207266495955257, 48.6419918492552, 0], [-1.207297171625861, 48.64197057593785, 0], [-1.207325682107836, 48.64194801858326, 0], [-1.207351905315481, 48.64192427378698, 0], [-1.207375728958759, 48.64189944322949, 0], [-1.207397051023293, 48.64187363324065, 0], [-1.207415780207477, 48.64184695434413, 0], [-1.207431836313222, 48.64181952078451, 0], [-1.207445150589683, 48.64179145003742, 0], [-1.207455666027324, 48.64176286230712, 0], [-1.207462969833504, 48.64173526939704, 0], [-1.207476661741191, 48.6417118752274, 0], [-1.207489975964156, 48.64168380447487, 0], [-1.207500491353735, 48.64165521674033, 0], [-1.207508162886024, 48.64162623444157, 0], [-1.207512957715038, 48.64159698168573, 0], [-1.207514855313516, 48.64156758373808, 0], [-1.207513847560795, 48.64153816648521, 0], [-1.207509938777258, 48.64150885589621, 0], [-1.207503145705993, 48.64147977748333, 0], [-1.207493497440746, 48.64145105576425, 0], [-1.207481035301545, 48.64142281372914, 0], [-1.20746581265738, 48.64139517231362, 0], [-1.207447894697964, 48.64136824988162, 0], [-1.207427358154098, 48.64134216171775, 0], [-1.207404290969296, 48.64131701953415, 0], [-1.207378791923182, 48.64129293099209, 0], [-1.20735097020833, 48.64126999924083, 0], [-1.20732094496262, 48.64124832247585, 0], [-1.207288844759324, 48.64122799351894, 0], [-1.207254807056168, 48.64120909942005, 0], [-1.207230506936552, 48.641197054937, 0], [-1.20670248359636, 48.64094733962969, 0], [-1.205963238487293, 48.64059772289944, 0], [-1.206172162977541, 48.64047365792687, 0], [-1.206194306087667, 48.64045990476034, 0], [-1.206224981277595, 48.64043863172809, 0], [-1.20625349137206, 48.64041607463809, 0], [-1.206279714287339, 48.64039233008481, 0], [-1.206303537734395, 48.64036749974794, 0], [-1.206324859699728, 48.64034168995603, 0], [-1.206343588882053, 48.64031501123216, 0], [-1.206359645083641, 48.64028757782003, 0], [-1.206372959552908, 48.64025950719472, 0], [-1.206383475279498, 48.64023091956006, 0], [-1.206391147238086, 48.6402019373334, 0], [-1.206395942580829, 48.64017268462159, 0], [-1.206397840778268, 48.64014328668974, 0], [-1.206396833707202, 48.64011386942423, 0], [-1.206392925685056, 48.64008455879447, 0], [-1.2063861334517, 48.64005548031265, 0], [-1.206376486097265, 48.64002675849685, 0], [-1.206364024937821, 48.63999851633756, 0], [-1.20634880333836, 48.63997087477113, 0], [-1.20633088648392, 48.63994395216186, 0], [-1.206310351100546, 48.63991786379527, 0], [-1.206287285127075, 48.63989272138439, 0], [-1.206261787337635, 48.63986863259147, 0], [-1.206233966919506, 48.6398457005668, 0], [-1.206203943005071, 48.63982402350706, 0], [-1.206171844161847, 48.63980369423526, 0], [-1.206137807841765, 48.63978479980268, 0], [-1.206101979792458, 48.63976742111652, 0], [-1.206064513433942, 48.63975163259339, 0], [-1.206025569200504, 48.63973750184075, 0], [-1.205985313854687, 48.63972508936714, 0], [-1.205943919772725, 48.63971444832328, 0], [-1.205901564206751, 48.63970562427483, 0], [-1.205858428525664, 48.6396986550067, 0], [-1.205825920987482, 48.63969468931273, 0], [-1.205824054542184, 48.63969449264046, 0], [-1.205850702321667, 48.63967340892189, 0], [-1.205876925039864, 48.63964966445973, 0], [-1.205900748334041, 48.63962483420536, 0], [-1.205922070191241, 48.63959902448719, 0], [-1.205940799310776, 48.63957234582791, 0], [-1.205956855494919, 48.63954491247092, 0], [-1.205970169992503, 48.6395168418911, 0], [-1.205980685792694, 48.63948825429198, 0], [-1.205988357870067, 48.63945927209091, 0], [-1.205993153376119, 48.63943001939455, 0], [-1.205995051780993, 48.63940062146794, 0], [-1.205994044960186, 48.63937120419752, 0], [-1.205990137230406, 48.63934189355254, 0], [-1.205983345330104, 48.63931281504544, 0], [-1.205973698348011, 48.63928409319435, 0], [-1.205961237598698, 48.63925585098989, 0], [-1.205946016445121, 48.6392282093685, 0], [-1.205928100070677, 48.63920128669501, 0], [-1.205907565199393, 48.63917519825496, 0], [-1.205884499767569, 48.6391500557618, 0], [-1.205859002547354, 48.63912596687807, 0], [-1.205831182723469, 48.63910303475443, 0], [-1.205801159425761, 48.63908135758808, 0], [-1.205769061219089, 48.63906102820243, 0], [-1.205455559376882, 48.63887508943533, 0], [-1.205421523953882, 48.6388561947888, 0], [-1.205385696813388, 48.63883881587753, 0], [-1.205348231371139, 48.63882302711919, 0], [-1.205309288057666, 48.63880889612215, 0], [-1.205269033631513, 48.63879648339609, 0], [-1.205227640465059, 48.63878584209281, 0], [-1.205185285806458, 48.63877701777894, 0], [-1.205142151020715, 48.63877004824062, 0], [-1.20509842081308, 48.6387649633217, 0], [-1.205054282438105, 48.63876178479599, 0], [-1.205009924898244, 48.63876052627405, 0], [-1.20496553813414, 48.63876119314493, 0], [-1.204921312211695, 48.63876378255313, 0], [-1.204877436508165, 48.63876828341062, 0], [-1.204834098901082, 48.63877467644461, 0], [-1.204791484964263, 48.63878293427982, 0], [-1.204749777172702, 48.63879302155576, 0], [-1.204709154121699, 48.6388048950784, 0], [-1.204669789761967, 48.63881850400464, 0], [-1.204631852654852, 48.63883379006033, 0], [-1.204601398535425, 48.63884794803217, 0], [-1.204406521584849, 48.63877252379015, 0], [-1.2043705643988, 48.63875955488, 0], [-1.204330310243711, 48.63874714182394, 0], [-1.204288917316525, 48.63873650018145, 0], [-1.20424656286412, 48.63872767552049, 0], [-1.204246497255122, 48.63872766340127, 0], [-1.203415770652774, 48.63857423839049, 0], [-1.203372701894434, 48.6385672803055, 0], [-1.203328972041875, 48.638562194711, 0], [-1.203284833956608, 48.63855901550342, 0], [-1.203240476639789, 48.63855775629628, 0], [-1.20319609003112, 48.63855842248155, 0], [-1.203151864195866, 48.63856101120658, 0], [-1.203107988510881, 48.63856551138638, 0], [-1.203064650853638, 48.63857190375093, 0], [-1.203022036798154, 48.63858016092791, 0], [-1.202980328819823, 48.6385902475598, 0], [-1.202939705515083, 48.63860212045499, 0], [-1.202900340835407, 48.6386157287733, 0], [-1.202862403343599, 48.63863101424323, 0], [-1.202826055491491, 48.63864791141141, 0], [-1.202791452924519, 48.63866634792329, 0], [-1.202758743814858, 48.6386862448324, 0], [-1.202728068227827, 48.63870751693889, 0], [-1.202699557520992, 48.63873007315394, 0], [-1.202673333782451, 48.63875381689012, 0], [-1.202649509307938, 48.63877864647463, 0], [-1.202628186119663, 48.638804455585, 0], [-1.202609455529464, 48.63883113370395, 0], [-1.20259339774794, 48.63885856659303, 0], [-1.202580081540703, 48.63888663678145, 0], [-1.202569563933937, 48.63891522406951, 0], [-1.202561889970273, 48.6389442060426, 0], [-1.202557092515439, 48.63897345859614, 0], [-1.20255519211796, 48.63900285646659, 0], [-1.202556196920621, 48.63903227376792, 0], [-1.20256010262582, 48.63906158453057, 0], [-1.202566892513752, 48.63909066324106, 0], [-1.202576537513891, 48.63911938537945, 0], [-1.202580813817202, 48.63912987857811, 0], [-1.202672765446013, 48.63934513871723, 0], [-1.202181497268835, 48.63936318037452, 0], [-1.202137270673969, 48.6393657687077, 0], [-1.202093394196417, 48.63937026849864, 0], [-1.202050055717112, 48.63937666047899, 0], [-1.202007440813466, 48.63938491727815, 0], [-1.201965731964632, 48.63939500354002, 0], [-1.201925107770683, 48.63940687607477, 0], [-1.20188574218693, 48.63942048404376, 0], [-1.201847803780054, 48.63943576917675, 0], [-1.201811455005803, 48.63945266602217, 0], [-1.201781641766186, 48.63946839981883, 0], [-1.200272618645986, 48.64031172257154, 0], [-1.200267828232, 48.64031442491597, 0], [-1.200235117052875, 48.64033432110239, 0], [-1.200204439393982, 48.64035559253072, 0], [-1.200175926621758, 48.6403781481152, 0], [-1.200149700833257, 48.64040189127117, 0], [-1.200125874332865, 48.64042672032806, 0], [-1.200104549151484, 48.64045252896585, 0], [-1.200085816609626, 48.64047920666929, 0], [-1.200069756925963, 48.64050663920166, 0], [-1.200056438874522, 48.64053470909371, 0], [-1.200045919489359, 48.64056329614692, 0], [-1.200038243820438, 48.64059227794783, 0], [-1.200033444741104, 48.64062153039255, 0], [-1.200031542806774, 48.64065092821795, 0], [-1.200032546166729, 48.64068034553825, 0], [-1.200036450529642, 48.64070965638381, 0], [-1.200043239181323, 48.64073873524077, 0], [-1.200052883056721, 48.64076745758855, 0], [-1.200065340863807, 48.64079570043289, 0], [-1.20008055926049, 48.6408233428327, 0], [-1.200098473083335, 48.64085026641798, 0], [-1.200119005626101, 48.64087635589647, 0], [-1.200142068967918, 48.64090149954772, 0], [-1.200149761612699, 48.64090912804412, 0], [-1.200145216420196, 48.6409160357755, 0], [-1.200129156629579, 48.64094346831542, 0], [-1.200115838495524, 48.64097153821363, 0], [-1.200105319052767, 48.64100012527143, 0], [-1.200097643351452, 48.64102910707549, 0], [-1.200092844265104, 48.6410583595219, 0], [-1.200090942348819, 48.64108775734746, 0], [-1.20009194575224, 48.64111717466636, 0], [-1.200095850183658, 48.64114648550908, 0], [-1.200102638928744, 48.64117556436168, 0], [-1.200104709771781, 48.6411825445093, 0], [-1.200186121508773, 48.64144593198417, 0], [-1.199907072492359, 48.6417947804558, 0], [-1.19990108994662, 48.6418024358247, 0], [-1.199882356794231, 48.64182911349253, 0], [-1.199866296568821, 48.64185654599392, 0], [-1.199852978046416, 48.64188461585993, 0], [-1.199842458263372, 48.6419132028919, 0], [-1.19983478227129, 48.64194218467655, 0], [-1.199829982944913, 48.64197143711023, 0], [-1.199828080840639, 48.64200083492965, 0], [-1.199829084108548, 48.64203025224914, 0], [-1.199832988457672, 48.64205956309901, 0], [-1.199837449502805, 48.64207999072288, 0], [-1.199367156312914, 48.64234932663294, 0], [-1.199335910209849, 48.64236838497992, 0], [-1.199305230930292, 48.64238965616461, 0], [-1.199276716602153, 48.64241221152236, 0], [-1.19925048932902, 48.64243595446915, 0], [-1.199226661421513, 48.64246078333585, 0], [-1.199205334916651, 48.64248659180277, 0], [-1.199186601140461, 48.64251326935562, 0], [-1.199170540317249, 48.64254070175818, 0], [-1.19915722122554, 48.64256877154201, 0], [-1.199146700904086, 48.64259735850886, 0], [-1.199139024406828, 48.64262634024563, 0], [-1.199134224610727, 48.64265559264881, 0], [-1.199132322073919, 48.64268499045539, 0], [-1.199133324948742, 48.6427144077796, 0], [-1.199137228945628, 48.64274371865194, 0], [-1.199144017352045, 48.64277279755827, 0], [-1.199153661103942, 48.64280151997795, 0], [-1.199166118909769, 48.64282976291629, 0], [-1.199181337427835, 48.64285740543197, 0], [-1.199199251493686, 48.64288432915419, 0], [-1.199219784400221, 48.64291041879044, 0], [-1.19924284822519, 48.64293556261934, 0], [-1.199268344208095, 48.64295965296969, 0], [-1.199268907174309, 48.64296011707448, 0], [-1.198688200206557, 48.64389224452903, 0], [-1.198675105887308, 48.64391498939471, 0], [-1.198661786155291, 48.6439430591184, 0], [-1.198651265264952, 48.64397164603715, 0], [-1.19864982948082, 48.64397631104529, 0], [-1.198456675804427, 48.6446212982268, 0], [-1.197510638180748, 48.64481970114973, 0], [-1.197503796479562, 48.64482116242062, 0], [-1.197462082220715, 48.64483124703914, 0], [-1.197421452573908, 48.64484311797241, 0], [-1.197382081518192, 48.64485672438871, 0], [-1.19734413764331, 48.64487200802468, 0], [-1.197307783428552, 48.64488890343487, 0], [-1.197273174546472, 48.64490733827217, 0], [-1.197240459196602, 48.64492723359727, 0], [-1.197236618449302, 48.6449297474518, 0], [-1.196651477775068, 48.64531578971412, 0], [-1.196624636372328, 48.64533454634202, 0], [-1.196596119173106, 48.645357101028, 0], [-1.196569889099413, 48.64538084335659, 0], [-1.19654605847402, 48.64540567166073, 0], [-1.196524729345496, 48.64543147962361, 0], [-1.19650599305112, 48.64545815673281, 0], [-1.19648992982599, 48.64548558875426, 0], [-1.196476608458961, 48.64551365822081, 0], [-1.196466085998258, 48.64554224493593, 0], [-1.196458407507435, 48.64557122648745, 0], [-1.196453605871486, 48.64560047877257, 0], [-1.19645170165692, 48.64562987652887, 0], [-1.19645270302279, 48.64565929387079, 0], [-1.196456605686342, 48.6456886048287, 0], [-1.196463392940621, 48.64571768388829, 0], [-1.196473035726551, 48.64574640652796, 0], [-1.196485492756698, 48.64577464975228, 0], [-1.19650071069265, 48.64580229261868, 0], [-1.196518624372509, 48.6458292167548, 0], [-1.196539157090775, 48.64585530686639, 0], [-1.196562220926076, 48.6458804512301, 0], [-1.196587717117814, 48.64590454217235, 0], [-1.196615536489141, 48.64592747653047, 0], [-1.196645559914347, 48.6459491560945, 0], [-1.196677658828853, 48.64596948802737, 0], [-1.196711695780031, 48.64598838526301, 0], [-1.196747525015689, 48.646005766879, 0], [-1.196776136083284, 48.64601802927857, 0], [-1.197297813780185, 48.64622949554524, 0], [-1.197529906850527, 48.64658013581086, 0], [-1.197539720773742, 48.64659429059588, 0], [-1.197560254333834, 48.64662038052306, 0], [-1.197583319030287, 48.6466455246799, 0], [-1.197608816098783, 48.64666961539368, 0], [-1.197636636358739, 48.64669254950273, 0], [-1.197666660680508, 48.64671422879805, 0], [-1.197698760496033, 48.6467345604437, 0], [-1.19773279834843, 48.64675345737511, 0], [-1.19776862848169, 48.64677083867076, 0], [-1.197806097464187, 48.64678662989989, 0], [-1.197845044845727, 48.64680076344038, 0], [-1.197885303844921, 48.64681317876891, 0], [-1.197926702063175, 48.64682382271976, 0], [-1.197969062223394, 48.64683264971276, 0], [-1.198012202928682, 48.64683962194855, 0], [-1.198055939439175, 48.64684470957, 0], [-1.198100084463871, 48.64684789079068, 0], [-1.198128662708422, 48.64684892407222, 0], [-1.200775460819465, 48.64690752879214, 0], [-1.200967153086425, 48.64730883353518, 0], [-1.200969357636548, 48.64731336515477, 0], [-1.200984578501936, 48.64734100742265, 0], [-1.201002495129617, 48.64736793085486, 0], [-1.2010230308014, 48.64739402016005, 0], [-1.201046097583405, 48.64741916361841, 0], [-1.201071596702321, 48.64744325356025, 0], [-1.201099418968792, 48.64746618682716, 0], [-1.201129445244737, 48.64748786521382, 0], [-1.201161546953349, 48.6475081958882, 0], [-1.201195586630006, 48.64752709178973, 0], [-1.201231418510869, 48.64754447200156, 0], [-1.201260030271449, 48.64755673276315, 0], [-1.201377893804143, 48.64760450249246, 0], [-1.201679890492959, 48.64783605367328, 0], [-1.201708654234668, 48.64785676073027, 0], [-1.201740756412784, 48.64787709124187, 0], [-1.201774796556627, 48.64789598697085, 0], [-1.201810628900379, 48.64791336700107, 0], [-1.201848100002601, 48.64792915690697, 0], [-1.201887049404324, 48.64794328907225, 0], [-1.201927310315449, 48.64795570297939, 0], [-1.201968710329247, 48.64796634546884, 0], [-1.202011072160669, 48.64797517096661, 0], [-1.202054214405985, 48.64798214167978, 0], [-1.202097952318577, 48.64798722775777, 0], [-1.202116854173618, 48.64798882647138, 0], [-1.204180345702706, 48.64814385959504, 0], [-1.2044165753862, 48.64832496958789, 0], [-1.204803722026346, 48.64866999680659, 0], [-1.204481075290038, 48.6490195655302, 0], [-1.202962131178909, 48.64893730927727, 0], [-1.20255767002494, 48.64884181928064, 0], [-1.202554508702176, 48.64884107873793, 0], [-1.202512146045993, 48.6488322534416, 0], [-1.202469003008211, 48.64882528290126, 0], [-1.202425264329432, 48.64882019696523, 0], [-1.2023811173004, 48.64881701741156, 0], [-1.202336750960658, 48.6488157578553, 0], [-1.202292355288479, 48.64881642368989, 0], [-1.202248120387957, 48.64881901206429, 0], [-1.202204235674773, 48.64882351189483, 0], [-1.202183017942922, 48.64882639423348, 0], [-1.199840723701697, 48.64917045550408, 0], [-1.197931096880525, 48.64905447232341, 0], [-1.197920401136654, 48.64905387909299, 0], [-1.19787603469977, 48.6490526178094, 0], [-1.197831638759566, 48.64905328191544, 0], [-1.197787403421293, 48.64905586856749, 0], [-1.197743518102534, 48.64906036668933, 0], [-1.197700170721949, 48.64906675701984, 0], [-1.197657546895241, 48.64907501219534, 0], [-1.197643471793217, 48.64907818637146, 0], [-1.195818623638871, 48.64950453909431, 0], [-1.195790980500313, 48.64951144914924, 0], [-1.195750346678886, 48.64952331948615, 0], [-1.195710971508002, 48.64953692532389, 0], [-1.19567302359499, 48.64955220840153, 0], [-1.195636665436486, 48.64956910327611, 0], [-1.195602052721911, 48.64958753760273, 0], [-1.195569333667186, 48.64960743244439, 0], [-1.195538648379935, 48.64962870261009, 0], [-1.19551012825923, 48.64965125701928, 0], [-1.195483895433858, 48.64967499909231, 0], [-1.195460062238081, 48.64969982716338, 0], [-1.19543873073156, 48.6497256349166, 0], [-1.195419992261784, 48.64975231184055, 0], [-1.195403927073104, 48.64977974370177, 0], [-1.195390603962829, 48.64980781303395, 0], [-1.195380079986679, 48.64983639964108, 0], [-1.19537240021464, 48.64986538111133, 0], [-1.195367597537265, 48.64989463334252, 0], [-1.195365692525436, 48.64992403107221, 0], [-1.195366693341706, 48.64995344841518, 0], [-1.195370595705558, 48.64998275940161, 0], [-1.195377382911436, 48.6500118385171, 0], [-1.19537945358339, 48.65001881913666, 0], [-1.195543731719104, 48.65055036962161, 0], [-1.195551304187197, 48.65057211171322, 0], [-1.195563761894882, 48.65060035502858, 0], [-1.195578980784271, 48.6506279980084, 0], [-1.19559689568933, 48.6506549222799, 0], [-1.195617429899363, 48.65068101254821, 0], [-1.195640495486563, 48.65070615708925, 0], [-1.195665993682857, 48.65073024822882, 0], [-1.195693815302825, 48.6507531828033, 0], [-1.195723841211125, 48.6507748626018, 0], [-1.195755942832586, 48.65079519478627, 0], [-1.195789982702868, 48.65081409228967, 0], [-1.195825815057352, 48.65083147418823, 0], [-1.195863286454597, 48.65084726604841, 0], [-1.195902236434299, 48.6508614002455, 0], [-1.195942498203977, 48.65087381625329, 0], [-1.195983899353166, 48.65088446090325, 0], [-1.196026262591943, 48.65089328861221, 0], [-1.19606940651056, 48.65090026157765, 0], [-1.196113146355267, 48.65090534993939, 0], [-1.19615729482077, 48.65090853190784, 0], [-1.196201662851539, 48.65090979385683, 0], [-1.196246060451816, 48.65090913038251, 0], [-1.196290297499101, 48.6509065443259, 0], [-1.196334184558567, 48.65090204676126, 0], [-1.196373313498496, 48.65089636624095, 0], [-1.199923668249827, 48.65030761774598, 0], [-1.201387968990568, 48.6514550636347, 0], [-1.201336738892105, 48.65182551808347, 0], [-1.201335844077642, 48.65183260492838, 0], [-1.201333942480602, 48.6518620027534, 0], [-1.201334946825889, 48.6518914200402, 0], [-1.201338852817959, 48.65192073081936, 0], [-1.201345643735667, 48.65194980957737, 0], [-1.201347713608101, 48.65195678456507, 0], [-1.201465293965871, 48.65233709485797, 0], [-1.201472870970095, 48.65235884207851, 0], [-1.201485332445367, 48.65238708474648, 0], [-1.20150055512952, 48.65241472693622, 0], [-1.201518473840755, 48.65244165027849, 0], [-1.201539011851647, 48.65246773948221, 0], [-1.201562081218204, 48.65249288282801, 0], [-1.201587583156405, 48.65251697264672, 0], [-1.201615408464583, 48.65253990578039, 0], [-1.201645437991687, 48.65256158402427, 0], [-1.201677543147022, 48.65258191454714, 0], [-1.201711586451237, 48.65260081028882, 0], [-1.201745825335925, 48.65261746563576, 0], [-1.202291152880066, 48.65286571599044, 0], [-1.202308299856545, 48.65307074382167, 0], [-1.202236901303215, 48.65404579446977, 0], [-1.201977421459384, 48.65514501584705, 0], [-1.201976005275354, 48.65515130608822, 0], [-1.201972520726204, 48.65517054020788, 0], [-1.201687925181314, 48.65709002482909, 0], [-1.201679543149645, 48.65708210768367, 0], [-1.201651715299241, 48.65705917457278, 0], [-1.201621683084047, 48.65703749633725, 0], [-1.201589575107109, 48.65701716580507, 0], [-1.201555528859528, 48.65699827003297, 0], [-1.201519690131383, 48.65698088993377, 0], [-1.201482212388474, 48.65696509993029, 0], [-1.201443256113768, 48.65695096763613, 0], [-1.201402988121427, 48.65693855356657, 0], [-1.201361580841842, 48.6569279108793, 0], [-1.20131921158376, 48.65691908514676, 0], [-1.201276061774315, 48.65691211416105, 0], [-1.201232316183445, 48.65690702777242, 0], [-1.20118816213151, 48.65690384776089, 0], [-1.201143788687991, 48.65690258774335, 0], [-1.201099385861715, 48.65690325311532, 0], [-1.201055143787331, 48.65690584102764, 0], [-1.201011251911237, 48.65691034039871, 0], [-1.200967898180272, 48.65691673196211, 0], [-1.200925268237236, 48.65692498834885, 0], [-1.200883544625551, 48.65693507420481, 0], [-1.200842906008599, 48.65694694634171, 0], [-1.200803526403462, 48.65696055392265, 0], [-1.200765574436813, 48.65697583867923, 0], [-1.200729212622493, 48.65699273516117, 0], [-1.200694596665692, 48.65701117101681, 0], [-1.200661874795979, 48.65703106730259, 0], [-1.200631187133208, 48.65705233882122, 0], [-1.200602665086763, 48.65707489448647, 0], [-1.200576430793265, 48.6570986377133, 0], [-1.200552596593631, 48.65712346683097, 0], [-1.200531264551699, 48.65714927551905, 0], [-1.200512526017254, 48.65717595326214, 0], [-1.20049646123493, 48.65720338582332, 0], [-1.200491989264416, 48.65721211752388, 0], [-1.200428302139023, 48.65734078980312, 0], [-1.200355496750065, 48.65736819157045, 0], [-1.200342942851365, 48.65735633356103, 0], [-1.200315115458694, 48.65733340012604, 0], [-1.20028508365585, 48.65731172154059, 0], [-1.200252976044161, 48.65729139063432, 0], [-1.200218930113086, 48.65727249446541, 0], [-1.200183091651468, 48.65725511394853, 0], [-1.200145614123807, 48.6572393235082, 0], [-1.20010665801231, 48.65722519075994, 0], [-1.200066390130301, 48.6572127762209, 0], [-1.20002498290781, 48.65720213305083, 0], [-1.199982613653245, 48.65719330682425, 0], [-1.19993946379382, 48.65718633533538, 0], [-1.199895718099613, 48.65718124843659, 0], [-1.199851563891463, 48.65717806791003, 0], [-1.19980719023951, 48.657176807375, 0], [-1.199762787153442, 48.65717747222897, 0], [-1.199718544769066, 48.65718005962519, 0], [-1.1996746525341, 48.65718455848419, 0], [-1.199631298396899, 48.65719094954179, 0], [-1.199588668002005, 48.65719920543113, 0], [-1.199546943894836, 48.65720929080019, 0], [-1.199506304740814, 48.65722116246288, 0], [-1.199466924559338, 48.65723476958415, 0], [-1.199428971979559, 48.65725005389773, 0], [-1.199392609517977, 48.6572669499552, 0], [-1.199357992882519, 48.65728538540672, 0], [-1.199325270305631, 48.65730528131049, 0], [-1.199294581910246, 48.65732655247076, 0], [-1.199266059108846, 48.6573491078028, 0], [-1.199239824041347, 48.65737285072319, 0], [-1.199215989051905, 48.65739767956238, 0], [-1.199194656207774, 48.65742348800109, 0], [-1.199175916862179, 48.65745016552511, 0], [-1.199159851263227, 48.65747759789841, 0], [-1.199155379036259, 48.65748632954661, 0], [-1.19915446010213, 48.6574881860283, 0], [-1.198939708489117, 48.65749606350164, 0], [-1.198895465782159, 48.65749865058, 0], [-1.198851573195494, 48.65750314912362, 0], [-1.198808218679097, 48.65750953986967, 0], [-1.198765587879047, 48.65751779545261, 0], [-1.198723863342501, 48.65752788052176, 0], [-1.198683223736801, 48.6575397518922, 0], [-1.198643843083183, 48.65755335873038, 0], [-1.198605890012856, 48.65756864277101, 0], [-1.19856952704442, 48.65758553856693, 0], [-1.198534909887958, 48.65760397376938, 0], [-1.198502186778196, 48.65762386943761, 0], [-1.198471497840326, 48.65764514037695, 0], [-1.198442974489125, 48.65766769550366, 0], [-1.19841673886685, 48.65769143823508, 0], [-1.198392903320094, 48.65771626690248, 0], [-1.198371569918488, 48.65774207518739, 0], [-1.198280776196747, 48.65774540507388, 0], [-1.19794192930812, 48.65775783174409, 0], [-1.19792351372578, 48.65775890842436, 0], [-1.197915896727049, 48.6577591195022, 0], [-1.193825147356105, 48.65801389570889, 0], [-1.193806936750741, 48.65801519399365, 0], [-1.19376304325826, 48.65801969058806, 0], [-1.193719687650097, 48.65802607940858, 0], [-1.193677055577005, 48.65803433309815, 0], [-1.193635329591678, 48.65804441631401, 0], [-1.193594688367452, 48.65805628587942, 0], [-1.193555305932879, 48.65806989096825, 0], [-1.193517350926461, 48.6580851733229, 0], [-1.193480985875191, 48.65810206750344, 0], [-1.193479564590401, 48.65810277678742, 0], [-1.192714011347982, 48.65848585932943, 0], [-1.192680812732985, 48.65850358348762, 0], [-1.192648086722123, 48.65852347748282, 0], [-1.192617394759452, 48.65854474685297, 0], [-1.192588868272739, 48.65856730052094, 0], [-1.192562629417611, 48.65859104191049, 0], [-1.192538790554527, 48.65861586935849, 0], [-1.19251745376727, 48.65864167655188, 0], [-1.192498710425951, 48.6586683529815, 0], [-1.192482640795844, 48.65869578441619, 0], [-1.192469313693203, 48.65872385339129, 0], [-1.192458786190893, 48.65875243971236, 0], [-1.19245110337397, 48.65878142096896, 0], [-1.192446298145995, 48.65881067305955, 0], [-1.192444391088863, 48.65884007072253, 0], [-1.192445390373798, 48.6588694880728, 0], [-1.192449291726938, 48.65889879914063, 0], [-1.192456078446984, 48.65892787841113, 0], [-1.192465721477098, 48.65895660136203, 0], [-1.192478179528869, 48.65898484499642, 0], [-1.192493399259464, 48.65901248837001, 0], [-1.192511315499336, 48.65903941310826, 0], [-1.192531851531951, 48.65906550391432, 0], [-1.192554919421829, 48.65909064906192, 0], [-1.192580420390985, 48.65911474087406, 0], [-1.192608245242128, 48.65913767618444, 0], [-1.192638274826068, 48.65915935677895, 0], [-1.192670380551846, 48.6591796898161, 0], [-1.192704424937656, 48.65919858822514, 0], [-1.192728732792625, 48.65921063696486, 0], [-1.193320064342711, 48.65949029692213, 0], [-1.193439451738441, 48.66206929760822, 0], [-1.191819427648424, 48.66268381605439, 0], [-1.191785405001185, 48.66269761623243, 0], [-1.191749036032728, 48.66271450985781, 0], [-1.191714412845391, 48.66273294299299, 0], [-1.191681683700017, 48.66275283670611, 0], [-1.191650988747397, 48.66277410581106, 0], [-1.19162245942803, 48.66279665923172, 0], [-1.191596217910051, 48.66282040039271, 0], [-1.191572376564953, 48.66284522763233, 0], [-1.191551037487308, 48.66287103463796, 0], [-1.191535036382188, 48.6628935055811, 0], [-1.191471111854836, 48.66299010723821, 0], [-1.190940216975358, 48.66306562575037, 0], [-1.190913768716315, 48.66306975638396, 0], [-1.190871131906992, 48.66307800902661, 0], [-1.190829401174283, 48.6630880912171, 0], [-1.190788755211687, 48.66309995978304, 0], [-1.190785735647788, 48.66310092692999, 0], [-1.189898054429017, 48.66338703495394, 0], [-1.188527655816409, 48.66367421275393, 0], [-1.188520812030811, 48.66367567333106, 0], [-1.188479080330835, 48.66368575466523, 0], [-1.18843843333059, 48.66369762239707, 0], [-1.188399045083066, 48.66371122570831, 0], [-1.188361084251928, 48.66372650634894, 0], [-1.188324713389026, 48.66374339888627, 0], [-1.18829008823826, 48.6637618309855, 0], [-1.188287630894931, 48.66376323595797, 0], [-1.187718021202018, 48.66409048111974, 0], [-1.187687746969197, 48.66410896873011, 0], [-1.187657049499611, 48.66413023676311, 0], [-1.187628517619772, 48.66415278918728, 0], [-1.187602273508468, 48.66417652943146, 0], [-1.187578429548641, 48.66420135583763, 0], [-1.187557087845896, 48.66422716209699, 0], [-1.187538339791507, 48.66425383770464, 0], [-1.187522265670573, 48.66428126843266, 0], [-1.18750893431899, 48.6643093368197, 0], [-1.187498402827711, 48.66433792267355, 0], [-1.187490716298578, 48.66436690358589, 0], [-1.187485907651458, 48.66439615545674, 0], [-1.187483997482675, 48.6644255530254, 0], [-1.187484993976862, 48.66445497040709, 0], [-1.187488892872008, 48.66448428163198, 0], [-1.187495677477406, 48.66451336118463, 0], [-1.18750531874533, 48.6645420845414, 0], [-1.187517775394782, 48.66457032870374, 0], [-1.187532994089047, 48.66459797272504, 0], [-1.187550909662971, 48.66462489822803, 0], [-1.18757144540288, 48.66465098991256, 0], [-1.187594513374572, 48.66467613604857, 0], [-1.187620014799644, 48.66470022895496, 0], [-1.187647840478885, 48.66472316546058, 0], [-1.187677871259607, 48.66474484734623, 0], [-1.187709978545717, 48.66476518176497, 0], [-1.187744024848674, 48.66478408164012, 0], [-1.187779864376299, 48.66480146603784, 0], [-1.187815245967416, 48.66481643573157, 0], [-1.1902231785281, 48.66576703806393, 0], [-1.19022527629622, 48.66576786280209, 0], [-1.190264236248204, 48.66578199890094, 0], [-1.1903045085719, 48.66579441687687, 0], [-1.190345920811897, 48.6658050635529, 0], [-1.190388295630791, 48.66581389333719, 0], [-1.190431451568974, 48.66582086841827, 0], [-1.190475203821395, 48.66582595892703, 0], [-1.190519365029585, 48.66582914306451, 0], [-1.190563746083477, 48.66583040719551, 0], [-1.190608156931516, 48.66582974590654, 0], [-1.19065240739449, 48.66582716202946, 0], [-1.190696307980097, 48.66582266662909, 0], [-1.190739670694476, 48.66581627895606, 0], [-1.190782309847125, 48.66580802636389, 0], [-1.190824042846601, 48.66579794419255, 0], [-1.190864690983637, 48.66578607561563, 0], [-1.190867712063803, 48.66578510802958, 0], [-1.191675921144684, 48.66552461757441, 0], [-1.192226839989707, 48.66558549994, 0], [-1.192243062610994, 48.66558715939062, 0], [-1.192287223721422, 48.665590342847, 0], [-1.192331604608967, 48.66559160629335, 0], [-1.192376015222834, 48.66559094431931, 0], [-1.192420265384848, 48.66558835975962, 0], [-1.192464165603928, 48.66558386368203, 0], [-1.192507527887792, 48.66557747533997, 0], [-1.192550166547814, 48.66556922209, 0], [-1.192591898994613, 48.66555913927471, 0], [-1.192632546519259, 48.66554727007137, 0], [-1.192671935059648, 48.66553366530694, 0], [-1.192709895944943, 48.66551838324044, 0], [-1.192746266618516, 48.66550148931358, 0], [-1.192780891333691, 48.66548305587033, 0], [-1.192813621821272, 48.66546316184714, 0], [-1.192844317923572, 48.66544189243499, 0], [-1.192872848195576, 48.66541933871446, 0], [-1.192899090467172, 48.66539559726557, 0], [-1.192917603022301, 48.6653766398196, 0], [-1.193241117466815, 48.66502636705992, 0], [-1.193948618895897, 48.6647261038928, 0], [-1.193953766540348, 48.66472389742243, 0], [-1.193990136221395, 48.66470700309989, 0], [-1.194024759933692, 48.66468856927982, 0], [-1.194057489411959, 48.66466867490027, 0], [-1.194088184503188, 48.66464740515367, 0], [-1.19411671376668, 48.66462485112218, 0], [-1.194134894968644, 48.66460875458085, 0], [-1.194306237698808, 48.66444976834827, 0], [-1.19448052446115, 48.66439954238128, 0], [-1.196120989519804, 48.6656126053287, 0], [-1.196141747783353, 48.665627280773, 0] ] ] } }, { "type": "Feature", "properties": { "combine": "yes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-1.243815582687555, 48.67741296781817, 0], [-1.243772216724974, 48.67741937556566, 0], [-1.243729576433137, 48.67742764786315, 0], [-1.243687844399748, 48.67743774928812, 0], [-1.243647199324163, 48.67744963658599, 0], [-1.2436078152513, 48.67746325885454, 0], [-1.243569860826956, 48.67747855776268, 0], [-1.243533498575367, 48.67749546779954, 0], [-1.243498884203538, 48.67751391655522, 0], [-1.243466165934544, 48.67753382503125, 0], [-1.243435483872513, 48.6775551079779, 0], [-1.243406969403027, 48.67757767426014, 0], [-1.243380744630294, 48.67760142724728, 0], [-1.243356921854482, 48.67762626522698, 0], [-1.243335603090348, 48.67765208184079, 0], [-1.243316879630905, 48.67767876653925, 0], [-1.243300831656256, 48.67770620505586, 0], [-1.243287527889947, 48.67773427989572, 0], [-1.243278727110202, 48.67775763125716, 0], [-1.243243029203052, 48.67786443889865, 0], [-1.243238084216551, 48.67786680918647, 0], [-1.243203469480654, 48.67788525785253, 0], [-1.243170750853007, 48.67790516624355, 0], [-1.243140068439377, 48.67792644911063, 0], [-1.243111553626586, 48.67794901531867, 0], [-1.243085328520659, 48.67797276823751, 0], [-1.243061505422844, 48.6779976061552, 0], [-1.243040186349538, 48.67802342271328, 0], [-1.243021462594991, 48.6780501073628, 0], [-1.243005414340586, 48.67807754583723, 0], [-1.24299232820615, 48.67810510319966, 0], [-1.242841991643651, 48.6784612872649, 0], [-1.242391759409316, 48.67866883339746, 0], [-1.242371502997508, 48.67867854253739, 0], [-1.242336887384672, 48.67869699094068, 0], [-1.242304167885542, 48.67871689908314, 0], [-1.242273484609662, 48.67873818171695, 0], [-1.24224496894747, 48.67876074770806, 0], [-1.24221874300863, 48.67878450042718, 0], [-1.242194919098005, 48.67880933816316, 0], [-1.24217359923543, 48.67883515455851, 0], [-1.242154874718613, 48.67886183906487, 0], [-1.242138825732093, 48.67888927741626, 0], [-1.242125521003894, 48.67891735211875, 0], [-1.242115017510919, 48.67894594295304, 0], [-1.242107360235505, 48.67897492748949, 0], [-1.2421025819719, 48.67900418161258, 0], [-1.242100703186393, 48.6790335800519, 0], [-1.242101731929324, 48.67906299691909, 0], [-1.242105663800552, 48.67909230624641, 0], [-1.242112481968123, 48.67912138252655, 0], [-1.242122124389684, 48.67915001680446, 0], [-1.242373646397406, 48.67979682214535, 0], [-1.24236907001805, 48.67979816045541, 0], [-1.242329683758956, 48.67981178228248, 0], [-1.242291727172462, 48.67982708076461, 0], [-1.242255362792215, 48.67984399039293, 0], [-1.242220746334375, 48.67986243875949, 0], [-1.242188026030608, 48.67988234686713, 0], [-1.242157341994217, 48.67990362946785, 0], [-1.242128825618916, 48.67992619542803, 0], [-1.242102599017125, 48.67994994811853, 0], [-1.242078774496769, 48.67997478582815, 0], [-1.242057454080316, 48.68000060219954, 0], [-1.242038729067836, 48.68002728668452, 0], [-1.242022679645765, 48.68005472501729, 0], [-1.242009374544244, 48.68008279970378, 0], [-1.241998870741836, 48.68011139052481, 0], [-1.241991213221838, 48.68014037505091, 0], [-1.241986434779856, 48.68016962916648, 0], [-1.241984555882878, 48.68019902760129, 0], [-1.241985584581664, 48.68022844446687, 0], [-1.241989516476334, 48.68025775379556, 0], [-1.241996334734812, 48.68028683008006, 0], [-1.242006010165249, 48.68031554881061, 0], [-1.242018501340543, 48.68034378700863, 0], [-1.242021075164677, 48.68034886818891, 0], [-1.242160235583105, 48.68061825827311, 0], [-1.242172915324542, 48.68064081382126, 0], [-1.242190865876747, 48.68066773074342, 0], [-1.242211436524232, 48.68069381259918, 0], [-1.242234539183178, 48.6807189477005, 0], [-1.242260074926778, 48.68074302841349, 0], [-1.242287934408779, 48.68076595161934, 0], [-1.24231799833175, 48.6807876191557, 0], [-1.242350137957651, 48.68080793823712, 0], [-1.242384215659511, 48.68082682185255, 0], [-1.24242008551064, 48.6808441891378, 0], [-1.242457593908988, 48.68085996572192, 0], [-1.242496580235895, 48.68087408404555, 0], [-1.242536877543106, 48.6808864836505, 0], [-1.242578313268077, 48.68089711143843, 0], [-1.242620709972764, 48.68090592189839, 0], [-1.242663886104114, 48.68091287730176, 0], [-1.242707656770425, 48.68091794786353, 0], [-1.242751834534412, 48.68092111187035, 0], [-1.242796230215084, 48.68092235577296, 0], [-1.242840653698236, 48.68092167424477, 0], [-1.242884914750619, 48.68091907020415, 0], [-1.242928823834548, 48.68091455480241, 0], [-1.242972192919731, 48.68090814737559, 0], [-1.243014836288408, 48.68089987536212, 0], [-1.243056571331089, 48.68088977418474, 0], [-1.243097219327698, 48.68087788709954, 0], [-1.24313660621407, 48.68086426500998, 0], [-1.243174563326563, 48.68084896624927, 0], [-1.243210928124596, 48.68083205633063, 0], [-1.243245544886753, 48.68081360766649, 0], [-1.24327826537783, 48.68079369925844, 0], [-1.243308941607646, 48.68077242219226, 0], [-1.243589580465858, 48.68056456194125, 0], [-1.243618100485184, 48.68054199270226, 0], [-1.24364432667978, 48.68051823966611, 0], [-1.24366815068415, 48.68049340163224, 0], [-1.243689470482456, 48.68046758496224, 0], [-1.243708194782707, 48.68044090020855, 0], [-1.243724243408075, 48.68041346164064, 0], [-1.243737547639432, 48.68038538675587, 0], [-1.243748050510245, 48.68035679577614, 0], [-1.243755707050267, 48.68032781113317, 0], [-1.243760484477721, 48.68029855694417, 0], [-1.243762362339826, 48.68026915848047, 0], [-1.243762273371574, 48.68026661690132, 0], [-1.243768516252946, 48.68025930763273, 0], [-1.244400332810818, 48.67948668911869, 0], [-1.244409341009065, 48.67947528651195, 0], [-1.244428064557697, 48.67944860163864, 0], [-1.244444112473313, 48.67942116296786, 0], [-1.244457416040041, 48.67939308799748, 0], [-1.244467918294228, 48.6793644969495, 0], [-1.244475574268003, 48.67933551225626, 0], [-1.244480351182227, 48.67930625803506, 0], [-1.244482022074771, 48.6792844597129, 0], [-1.244515111585682, 48.67845601613568, 0], [-1.244550065820589, 48.67844579310498, 0], [-1.24458945040786, 48.67843217051377, 0], [-1.244627405241836, 48.67841687126918, 0], [-1.244663767791927, 48.67839996088652, 0], [-1.24469838234635, 48.67838151178032, 0], [-1.244731100679053, 48.67836160295394, 0], [-1.244761782684809, 48.67834031966181, 0], [-1.244790296978695, 48.67831775304387, 0], [-1.244816521459122, 48.67829399973563, 0], [-1.244840343830218, 48.6782691614538, 0], [-1.244861662083301, 48.67824334456137, 0], [-1.244880384933051, 48.67821665961181, 0], [-1.24489643220852, 48.67818922087513, 0], [-1.244909735196751, 48.6781611458495, 0], [-1.244920236936249, 48.67813255475745, 0], [-1.244927892461722, 48.67810357003123, 0], [-1.244932668995611, 48.67807431578845, 0], [-1.244934546089271, 48.67804491730051, 0], [-1.24493351570951, 48.67801550045651, 0], [-1.244929582273873, 48.67798619122375, 0], [-1.244922762630942, 48.67795711510864, 0], [-1.244913085988195, 48.67792839661905, 0], [-1.244900593787321, 48.67790015873122, 0], [-1.244885339525867, 48.67787252236315, 0], [-1.244867388529058, 48.67784560585709, 0], [-1.244846817669123, 48.67781952447222, 0], [-1.244823715036516, 48.67779438989174, 0], [-1.244798179562681, 48.6777703097443, 0], [-1.244770320596167, 48.67774738714329, 0], [-1.244740257434367, 48.67772572024498, 0], [-1.244708114408646, 48.67770539922147, 0], [-1.244394223785472, 48.67751957179928, 0], [-1.244360156378717, 48.67750069399133, 0], [-1.244324288243035, 48.67748332730861, 0], [-1.244286781778041, 48.67746755133128, 0], [-1.244247797590103, 48.67745343361273, 0], [-1.244207502612789, 48.67744103460591, 0], [-1.244166069391914, 48.67743040740402, 0], [-1.24412367534726, 48.67742159751309, 0], [-1.244080502012313, 48.67741464265776, 0], [-1.244036734257672, 48.67740957261869, 0], [-1.243992559498541, 48.67740640910624, 0], [-1.24394816689311, 48.67740516566649, 0], [-1.24390374653222, 48.67740584762402, 0], [-1.24385948862564, 48.67740845205869, 0], [-1.243815582687555, 48.67741296781817, 0] ] ] } }, { "type": "Feature", "properties": { "combine": "yes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-1.243605536924812, 48.68320846010897, 0], [-1.243600759130752, 48.68323771428489, 0], [-1.243598881063091, 48.68326711273915, 0], [-1.243599910769491, 48.68329652958324, 0], [-1.243603843845396, 48.68332583884957, 0], [-1.243610663453774, 48.68335491503107, 0], [-1.24362034039702, 48.68338363361862, 0], [-1.243632833241439, 48.68341187163394, 0], [-1.243648088495259, 48.68343950815689, 0], [-1.243666040836793, 48.68346642484226, 0], [-1.24368661339495, 48.68349250642764, 0], [-1.243709718077757, 48.68351764122619, 0], [-1.243735255949734, 48.6835417216054, 0], [-1.243741891440611, 48.6835474655424, 0], [-1.244642730131693, 48.68431439138568, 0], [-1.244663956978334, 48.68433157012323, 0], [-1.24469402405802, 48.6843532370305, 0], [-1.244726166924148, 48.68437355544013, 0], [-1.244760247935801, 48.68439243834406, 0], [-1.244796121152199, 48.68440980488111, 0], [-1.244833632956861, 48.68442558068341, 0], [-1.244872622716542, 48.68443969819509, 0], [-1.244912923468258, 48.68445209696142, 0], [-1.244954362634736, 48.68446272388756, 0], [-1.244996762763204, 48.68447153346643, 0], [-1.245039942285922, 48.68447848797301, 0], [-1.245083716296698, 48.68448355762617, 0], [-1.245127897343938, 48.68448672071652, 0], [-1.245172296232484, 48.68448796369864, 0], [-1.245216722834561, 48.6844872812499, 0], [-1.245260986903392, 48.6844846762927, 0], [-1.24530489888846, 48.68448015998213, 0], [-1.245348270747064, 48.68447375165822, 0], [-1.245390916749554, 48.68446547876325, 0], [-1.245432654275049, 48.68445537672364, 0], [-1.245473304593101, 48.68444348879928, 0], [-1.245512693629414, 48.68442986589718, 0], [-1.245550652711152, 48.68441456635404, 0], [-1.2455870192893, 48.68439765568638, 0], [-1.245621637634831, 48.68437920630992, 0], [-1.245631897710899, 48.6843732420698, 0], [-1.247610331896478, 48.68319959527402, 0], [-1.247632792618141, 48.68318565004461, 0], [-1.247663476339624, 48.68316436598381, 0], [-1.247691992067244, 48.68314179865265, 0], [-1.247710163900702, 48.68312569262207, 0], [-1.247789248564519, 48.68305222847154, 0], [-1.247854171830762, 48.68302022722561, 0], [-1.247873619607651, 48.68304476570553, 0], [-1.247896726178188, 48.6830698996611, 0], [-1.247922265828403, 48.68309397910844, 0], [-1.247950129195197, 48.68311690093408, 0], [-1.247980196964731, 48.68313856698157, 0], [-1.248012340382378, 48.68315888447189, 0], [-1.248046421805042, 48.6831777664007, 0], [-1.248082295289785, 48.68319513191118, 0], [-1.248110933702427, 48.68320737889114, 0], [-1.248319230305013, 48.68329162540813, 0], [-1.24832810385143, 48.6832951531406, 0], [-1.248367093715668, 48.68330926946514, 0], [-1.248407394422999, 48.68332166700418, 0], [-1.248448833396192, 48.68333229266825, 0], [-1.248491233183633, 48.68334110095559, 0], [-1.24853441221874, 48.68334805414661, 0], [-1.248578185597522, 48.68335312246614, 0], [-1.248622365871002, 48.68335628421004, 0], [-1.248666763847497, 48.68335752583916, 0], [-1.248711189402971, 48.68335684203619, 0], [-1.248802026023017, 48.68335347219894, 0], [-1.24882756625095, 48.6833775514441, 0], [-1.248855430187867, 48.68340047304911, 0], [-1.248885498517174, 48.68342213885877, 0], [-1.248917642482104, 48.68344245609475, 0], [-1.248951724436942, 48.68346133775407, 0], [-1.248987598436893, 48.68347870298084, 0], [-1.249025110862099, 48.68349447741292, 0], [-1.249064101076676, 48.68350859350018, 0], [-1.249104402115682, 48.68352099079409, 0], [-1.249145841400625, 48.68353161620605, 0], [-1.249188241478214, 48.68354042423539, 0], [-1.249231420780967, 48.68354737716386, 0], [-1.249275194403574, 48.68355244521712, 0], [-1.249319374896099, 48.68355560669244, 0], [-1.249363773065819, 48.68355684805154, 0], [-1.24940819878798, 48.68355616397858, 0], [-1.250086214596218, 48.68353100531307, 0], [-1.250130477570584, 48.68352839847564, 0], [-1.25017438828269, 48.68352388029969, 0], [-1.250217758695331, 48.68351747013321, 0], [-1.250232545228049, 48.68351482760058, 0], [-1.250584964304531, 48.68361495505187, 0], [-1.25058693564682, 48.68361551269716, 0], [-1.250628375323051, 48.68362613757318, 0], [-1.250670775740128, 48.6836349450542, 0], [-1.250713955329112, 48.68364189742424, 0], [-1.250757729183514, 48.68364696491143, 0], [-1.250786278132778, 48.68364922867609, 0], [-1.251928736879624, 48.68372360566825, 0], [-1.251944502226332, 48.68373619431954, 0], [-1.251974572087753, 48.68375785931833, 0], [-1.252006717515972, 48.68377817568768, 0], [-1.25204080085874, 48.68379705642825, 0], [-1.252076676165266, 48.68381442068792, 0], [-1.252114189810476, 48.68383019410881, 0], [-1.252153181152871, 48.68384430914519, 0], [-1.252193483222872, 48.68385670535286, 0], [-1.252234923437392, 48.68386732964801, 0], [-1.252277324339501, 48.68387613653467, 0], [-1.252320504357842, 48.6838830882996, 0], [-1.252364278584186, 48.68388815517324, 0], [-1.252408459566019, 48.68389131545807, 0], [-1.252452858108542, 48.68389255562092, 0], [-1.252497284085299, 48.68389187035096, 0], [-1.252836293564967, 48.68387928238553, 0], [-1.252880556703362, 48.68387667448647, 0], [-1.252890272494673, 48.68387584201578, 0], [-1.25480838731429, 48.68370215314294, 0], [-1.254842582033227, 48.68369846581241, 0], [-1.254885952001124, 48.68369205388011, 0], [-1.254928595770459, 48.68368377743698, 0], [-1.254970330729948, 48.68367367192478, 0], [-1.255010978159949, 48.68366178061813, 0], [-1.25505036399854, 48.6836481544386, 0], [-1.255088319586772, 48.6836328517368, 0], [-1.25512468239054, 48.68361593804297, 0], [-1.255159296697022, 48.68359748578568, 0], [-1.255192014281303, 48.68357757398191, 0], [-1.255222695041196, 48.6835562878987, 0], [-1.255251207597492, 48.68353371868815, 0], [-1.255277429855577, 48.68350996299666, 0], [-1.25530124952951, 48.68348512255124, 0], [-1.255322564621881, 48.68345930372412, 0], [-1.25534128386098, 48.68343261707695, 0], [-1.255357327091364, 48.68340517688731, 0], [-1.255370625617225, 48.68337710065936, 0], [-1.255381122496571, 48.68334850862071, 0], [-1.255388772784474, 48.68331952320788, 0], [-1.255392788731229, 48.68329637695996, 0], [-1.255774681197639, 48.68044555047212, 0], [-1.255775436103357, 48.6804394420496, 0], [-1.255776759137139, 48.68042436593752, 0], [-1.255817678500057, 48.67976790535147, 0], [-1.256326016806046, 48.67979000274778, 0], [-1.257487460532301, 48.67987241351359, 0], [-1.257509043298055, 48.67987371448476, 0], [-1.257553438418055, 48.67987495267268, 0], [-1.257597860774748, 48.67987426542614, 0], [-1.257642120139701, 48.67987165568791, 0], [-1.257686026982443, 48.67986713463374, 0], [-1.257729393282314, 48.67986072162394, 0], [-1.257772033333484, 48.67985244412073, 0], [-1.257813764540494, 48.67984233757046, 0], [-1.257854408200052, 48.67983044525218, 0], [-1.2578937902663, 48.67981681809177, 0], [-1.257931742096279, 48.67980151444409, 0], [-1.257968101172049, 48.67978459984343, 0], [-1.258002711796675, 48.67976614672216, 0], [-1.258035425761332, 48.67974623410112, 0], [-1.258066102978999, 48.67972494725067, 0], [-1.258094612085694, 48.6797023773263, 0], [-1.258120831001652, 48.67967862097737, 0], [-1.258144647455262, 48.67965377993387, 0], [-1.25816595946282, 48.67962796057051, 0], [-1.258184675765848, 48.67960127345115, 0], [-1.258200716221491, 48.67957383285543, 0], [-1.258214012145853, 48.67954575628944, 0], [-1.258215914647449, 48.67954112903778, 0], [-1.258235319105689, 48.67954490840184, 0], [-1.258278496227467, 48.67955185792504, 0], [-1.258322267282788, 48.67955692252567, 0], [-1.258366444832546, 48.67956008051561, 0], [-1.258410839696671, 48.67956131837155, 0], [-1.258455261764535, 48.67956063079275, 0], [-1.258499520808845, 48.67955802072343, 0], [-1.258543427300547, 48.6795534993408, 0], [-1.258586793220482, 48.67954708600646, 0], [-1.258629432864438, 48.67953880818411, 0], [-1.258671163638714, 48.67952870132157, 0], [-1.258711806841897, 48.679516808699, 0], [-1.258751188430047, 48.67950318124359, 0], [-1.258789139762224, 48.67948787731187, 0], [-1.258825498322687, 48.67947096243889, 0], [-1.258860108416657, 48.67945250905827, 0], [-1.25889282183747, 48.67943259619199, 0], [-1.258923498500819, 48.67941130911169, 0], [-1.258952007044625, 48.67938873897345, 0], [-1.258970179522208, 48.6793726259419, 0], [-1.259508158531588, 48.6788726661642, 0], [-1.260531080541965, 48.67826481635244, 0], [-1.260553223936203, 48.67825105360069, 0], [-1.260583899175491, 48.67822976607413, 0], [-1.260612406303829, 48.67820719552098, 0], [-1.260638623250343, 48.67818343859355, 0], [-1.260662437751514, 48.6781585970242, 0], [-1.260683747832134, 48.6781327771898, 0], [-1.260702462241856, 48.67810608965633, 0], [-1.260718500846261, 48.67807864870518, 0], [-1.260731794969083, 48.6780505718439, 0], [-1.260742287687058, 48.67802197930281, 0], [-1.260749934073482, 48.67799299352036, 0], [-1.260754701389963, 48.6779637386187, 0], [-1.260755015387471, 48.67796083696682, 0], [-1.260942392519242, 48.67614694120506, 0], [-1.262038765757438, 48.6761061401417, 0], [-1.262083021574569, 48.67610352868825, 0], [-1.262126924727063, 48.67609900593195, 0], [-1.262170287210067, 48.67609259124038, 0], [-1.262212923334138, 48.67608431208307, 0], [-1.262254650520724, 48.67607420391332, 0], [-1.26229529008342, 48.67606231001718, 0], [-1.262334667994232, 48.67604868132731, 0], [-1.262372615627867, 48.67603337620514, 0], [-1.262408970484392, 48.67601646019115, 0], [-1.262443576884957, 48.67599800572392, 0], [-1.262476286638703, 48.67597809182978, 0], [-1.262506959676812, 48.67595680378498, 0], [-1.262535464653012, 48.67593423274979, 0], [-1.262561679505521, 48.67591047537836, 0], [-1.262585491979813, 48.67588563340523, 0], [-1.262606800109374, 48.67585981320889, 0], [-1.262625512652329, 48.67583312535687, 0], [-1.262636801520249, 48.67581438357435, 0], [-1.262985549657119, 48.67519537451714, 0], [-1.262986581663659, 48.67519558880121, 0], [-1.263029755706899, 48.6752025365372, 0], [-1.263073523454186, 48.67520759932538, 0], [-1.263117697480602, 48.67521075548544, 0], [-1.263162088621066, 48.67521199150185, 0], [-1.263206506780996, 48.67521130208173, 0], [-1.263250761749766, 48.67520869017724, 0], [-1.263294664015808, 48.67520416697338, 0], [-1.263338025578029, 48.67519775183964, 0], [-1.263380660750961, 48.67518947224735, 0], [-1.263422386959969, 48.67517936365195, 0], [-1.263463025523204, 48.67516746934093, 0], [-1.26350240241657, 48.675153840249, 0], [-1.26354034901933, 48.67513853473933, 0], [-1.263576702835907, 48.67512161835387, 0], [-1.263611308191888, 48.67510316353281, 0], [-1.263644016900829, 48.67508324930414, 0], [-1.263674688898651, 48.67506196094543, 0], [-1.263703192843255, 48.67503938961831, 0], [-1.263729406677419, 48.67501563197825, 0], [-1.263753218150892, 48.67499078976088, 0], [-1.263774525301495, 48.67496496934576, 0], [-1.263793236891453, 48.6749382813013, 0], [-1.263807199868527, 48.6749143872068, 0], [-1.263977199700699, 48.67490805700896, 0], [-1.264021454362514, 48.6749054448069, 0], [-1.264065356294404, 48.67490092130777, 0], [-1.264108717496772, 48.67489450588234, 0], [-1.264151352285612, 48.67488622600327, 0], [-1.264193078088105, 48.67487611712706, 0], [-1.264233716223762, 48.67486422254258, 0], [-1.264273092670745, 48.67485059318562, 0], [-1.264311038809975, 48.67483528742036, 0], [-1.264347392147975, 48.67481837079011, 0], [-1.264381997012329, 48.67479991573594, 0], [-1.264414705218833, 48.67478000128694, 0], [-1.264445376705223, 48.67475871272154, 0], [-1.264473880131902, 48.67473614120228, 0], [-1.264500093443763, 48.67471238338545, 0], [-1.264523904392836, 48.67468754100737, 0], [-1.264545211019119, 48.67466172044841, 0], [-1.264563922087214, 48.67463503227753, 0], [-1.26457995747663, 48.67460759077899, 0], [-1.264593248525192, 48.67457951346255, 0], [-1.264603738322883, 48.67455092056046, 0], [-1.26461138195507, 48.67452193451291, 0], [-1.264616146695552, 48.67449267944294, 0], [-1.264618012145826, 48.67446328062571, 0], [-1.264616970322918, 48.67443386395166, 0], [-1.264521670159617, 48.67331149328753, 0], [-1.26451772567338, 48.67328218471744, 0], [-1.2645108953408, 48.67325310975828, 0], [-1.264501208415199, 48.67322439291285, 0], [-1.26448870638217, 48.67319615715049, 0], [-1.264473442781446, 48.67316852338006, 0], [-1.264455482978242, 48.67314160993265, 0], [-1.264434903882454, 48.67311553205433, 0], [-1.264411793619811, 48.6730904014134, 0], [-1.264386251154488, 48.67306632562152, 0], [-1.264358385864872, 48.67304340777338, 0], [-1.264328317075494, 48.67302174600504, 0], [-1.264296173546036, 48.67300143307394, 0], [-1.26426349460828, 48.67298333235118, 0], [-1.264292903629958, 48.67296291939118, 0], [-1.264321406107036, 48.67294034790674, 0], [-1.264347618554589, 48.6729165901216, 0], [-1.264371428728501, 48.67289174777182, 0], [-1.264392734672091, 48.67286592723771, 0], [-1.264411445152835, 48.67283923908814, 0], [-1.264427480052743, 48.67281179760725, 0], [-1.264440770711757, 48.67278372030469, 0], [-1.264451260221478, 48.67275512741267, 0], [-1.264458903668673, 48.67272614137135, 0], [-1.26446366832758, 48.67269688630382, 0], [-1.264465533800496, 48.67266748748512, 0], [-1.264464492103907, 48.67263807080567, 0], [-1.264445433092358, 48.67241359663118, 0], [-1.264441488721029, 48.67238428805649, 0], [-1.264434658554516, 48.67235521309079, 0], [-1.264424971845422, 48.67232649623701, 0], [-1.2644124700785, 48.67229826046444, 0], [-1.264397206792245, 48.67227062668198, 0], [-1.264379247350551, 48.6722437132208, 0], [-1.264363924977141, 48.6722242962807, 0], [-1.264369837059804, 48.67222524765848, 0], [-1.264413602350296, 48.67223030993612, 0], [-1.264457773845038, 48.67223346558038, 0], [-1.264502162389838, 48.67223470107821, 0], [-1.264546577901147, 48.67223401113854, 0], [-1.264590830179748, 48.67223139871611, 0], [-1.264634729725547, 48.67222687499806, 0], [-1.264678088549138, 48.67222045935593, 0], [-1.264720720976726, 48.67221217926343, 0], [-1.264762444445646, 48.6722020701779, 0], [-1.264803080285299, 48.67219017538928, 0], [-1.264842454483721, 48.67217654583395, 0], [-1.264880398431565, 48.67216123987713, 0], [-1.264916749644565, 48.67214432306294, 0], [-1.264951352459498, 48.67212586783319, 0], [-1.264984058700973, 48.67210595321775, 0], [-1.265014728314962, 48.67208466449577, 0], [-1.265295214657873, 48.67187675428409, 0], [-1.265323716069384, 48.67185418254843, 0], [-1.265349927477169, 48.67183042453221, 0], [-1.265373736641529, 48.67180558197224, 0], [-1.265395041610138, 48.67177976124976, 0], [-1.265413751154532, 48.67175307293444, 0], [-1.265429785161014, 48.67172563131103, 0], [-1.265443074973325, 48.67169755388996, 0], [-1.265453563686343, 48.67166896090398, 0], [-1.265461206390592, 48.67163997479351, 0], [-1.265465970363529, 48.67161071968189, 0], [-1.265467835209986, 48.67158132084453, 0], [-1.265466792949588, 48.67155190417179, 0], [-1.26546284805048, 48.6715225956304, 0], [-1.265456017410427, 48.67149352072368, 0], [-1.265446330284026, 48.67146480395435, 0], [-1.265433828157652, 48.67143656829138, 0], [-1.265418564571776, 48.67140893464325, 0], [-1.265400604891054, 48.67138202134031, 0], [-1.265380026025262, 48.67135594362828, 0], [-1.26535691609913, 48.67133081317456, 0], [-1.265331374075114, 48.67130673759013, 0], [-1.265303509329863, 48.67128381996879, 0], [-1.265273441185608, 48.67126215844558, 0], [-1.265241298399216, 48.67124184577679, 0], [-1.265207218610704, 48.67122296894281, 0], [-1.265181932729216, 48.67121073151411, 0], [-1.26544992960151, 48.67113685393213, 0], [-1.265483673322028, 48.67112682924937, 0], [-1.265523046503183, 48.67111319945916, 0], [-1.265560989441354, 48.67109789327587, 0], [-1.265597339656612, 48.6710809762445, 0], [-1.265631941490051, 48.67106252080784, 0], [-1.265664646770175, 48.67104260599668, 0], [-1.265695315447493, 48.67102131709076, 0], [-1.265723816194515, 48.6709987452544, 0], [-1.265750026967167, 48.67097498714516, 0], [-1.26577383552877, 48.67095014450042, 0], [-1.265795139929453, 48.67092432370192, 0], [-1.265800658743919, 48.6709169129107, 0], [-1.266268127253321, 48.67027436086077, 0], [-1.26652712376236, 48.67015042443713, 0], [-1.266537827464165, 48.67014519596951, 0], [-1.266572428308455, 48.67012674024764, 0], [-1.266605132607404, 48.67010682516678, 0], [-1.266635800315756, 48.6700855360077, 0], [-1.266664300110141, 48.67006296393597, 0], [-1.266690509950619, 48.67003920560994, 0], [-1.266714317604487, 48.6700143627682, 0], [-1.266735621125694, 48.66998854179308, 0], [-1.26675432929215, 48.66996185325534, 0], [-1.266770361995815, 48.66993441144088, 0], [-1.266781617536614, 48.66991107862092, 0], [-1.26709706868102, 48.6691899448854, 0], [-1.267099101671456, 48.66918520011917, 0], [-1.267109588918707, 48.66915660697637, 0], [-1.267117230286465, 48.66912762075003, 0], [-1.267121993057743, 48.66909836556419, 0], [-1.267123856842889, 48.66906896669441, 0], [-1.267122813665744, 48.66903955003123, 0], [-1.267118867998511, 48.66901024154139, 0], [-1.267112036742171, 48.668981166728, 0], [-1.267102349154019, 48.66895245009329, 0], [-1.267089846722509, 48.6689242146057, 0], [-1.267074582989072, 48.66889658117283, 0], [-1.26705662331944, 48.66886966812444, 0], [-1.267036044623013, 48.6688435907049, 0], [-1.267012935023819, 48.6688184605804, 0], [-1.267001136790888, 48.66880733967888, 0], [-1.26709498816566, 48.66863240418627, 0], [-1.267096103003242, 48.66863030978445, 0], [-1.267109391066872, 48.66860223216375, 0], [-1.267119878186804, 48.6685736390187, 0], [-1.267127519459939, 48.66854465279044, 0], [-1.267132282170105, 48.66851539760289, 0], [-1.267134145927533, 48.66848599873167, 0], [-1.267133102756484, 48.66845658206735, 0], [-1.267129157128979, 48.66842727357661, 0], [-1.26712232594588, 48.66839819876256, 0], [-1.267112638464163, 48.6683694821275, 0], [-1.267100136171822, 48.6683412466398, 0], [-1.267084872609707, 48.66831361320713, 0], [-1.267066913142794, 48.66828670015922, 0], [-1.2670463346796, 48.6682606227404, 0], [-1.267023225343196, 48.66823549261689, 0], [-1.267002479112542, 48.66821568904371, 0], [-1.266617812181774, 48.66786873513859, 0], [-1.266669588897409, 48.66768512003426, 0], [-1.26693179181129, 48.66758462870082, 0], [-1.266963723154899, 48.66757159786585, 0], [-1.267000070349074, 48.66755468038519, 0], [-1.267034669241165, 48.66753622452027, 0], [-1.267067371672168, 48.66751630930367, 0], [-1.267098037605001, 48.66749502001698, 0], [-1.267126535723546, 48.66747244782587, 0], [-1.267152743995359, 48.66744868938964, 0], [-1.267176550194331, 48.66742384644714, 0], [-1.267197852380686, 48.66739802538122, 0], [-1.267216559338009, 48.66737133676294, 0], [-1.267232590963456, 48.66734389487858, 0], [-1.267245878611019, 48.66731581723936, 0], [-1.267256365384948, 48.66728722407913, 0], [-1.267264006384001, 48.66725823783908, 0], [-1.267268768892849, 48.66722898264309, 0], [-1.267270240571188, 48.66721126166707, 0], [-1.267298620965083, 48.66667768611518, 0], [-1.26735791930588, 48.6666754759064, 0], [-1.267402166546712, 48.66667286239755, 0], [-1.267446060986854, 48.66666833760091, 0], [-1.267489414658827, 48.66666192089274, 0], [-1.267532041910835, 48.6666536397512, 0], [-1.267573760202376, 48.66664352963817, 0], [-1.267614390885095, 48.66663163384799, 0], [-1.267653759969027, 48.66661800332135, 0], [-1.267691698866751, 48.66660269642768, 0], [-1.267728045115641, 48.66658577871493, 0], [-1.26776264307376, 48.66656732262895, 0], [-1.267795344586458, 48.66654740720319, 0], [-1.26782600962011, 48.66652611772019, 0], [-1.267854506862756, 48.66650354534657, 0], [-1.267880714285747, 48.66647978674213, 0], [-1.267904519666354, 48.66645494364671, 0], [-1.267925821068476, 48.66642912244365, 0], [-1.267944527278977, 48.66640243370469, 0], [-1.267960558198249, 48.66637499171644, 0], [-1.267973845183201, 48.66634691399097, 0], [-1.267984331341243, 48.6663183207621, 0], [-1.26799197177335, 48.66628933447142, 0], [-1.26799673376697, 48.66626007924314, 0], [-1.267998596935429, 48.66623068035302, 0], [-1.267997553305467, 48.66620126369171, 0], [-1.267977741906345, 48.66596809157402, 0], [-1.269352937126664, 48.66515129862422, 0], [-1.269375314319783, 48.66513739035384, 0], [-1.269405977824798, 48.66511610044593, 0], [-1.26943447355915, 48.66509352767707, 0], [-1.269460679500847, 48.665069768709, 0], [-1.269484483433392, 48.66504492528289, 0], [-1.269505783426921, 48.66501910378351, 0], [-1.269524488274272, 48.66499241478393, 0], [-1.269540517881913, 48.66496497257191, 0], [-1.269553803612149, 48.66493689466027, 0], [-1.269564288577705, 48.66490830128401, 0], [-1.269571927884932, 48.66487931488508, 0], [-1.269576688825873, 48.66485005958814, 0], [-1.269578551018393, 48.66482066066932, 0], [-1.269577506493447, 48.66479124401941, 0], [-1.269573559728892, 48.66476193560495, 0], [-1.269566727630405, 48.66473286092881, 0], [-1.2695570394589, 48.66470414449271, 0], [-1.269544536705247, 48.66467590926414, 0], [-1.269529272912537, 48.66464827614971, 0], [-1.269516555865262, 48.66462874223586, 0], [-1.269080581708006, 48.66400036865976, 0], [-1.269136517016372, 48.66390518457099, 0], [-1.270071425167167, 48.66361428536391, 0], [-1.270077436812189, 48.66361239089733, 0], [-1.270116802864827, 48.66359875952166, 0], [-1.270154738734992, 48.66358345180932, 0], [-1.270191081973051, 48.6635665333118, 0], [-1.270225676949994, 48.66354807647826, 0], [-1.270258375523863, 48.66352816034532, 0], [-1.270289037673682, 48.66350687019871, 0], [-1.270317532099801, 48.66348429720772, 0], [-1.270343736785662, 48.66346053803488, 0], [-1.270367539520245, 48.66343569442244, 0], [-1.270388838378742, 48.66340987275595, 0], [-1.270407542158987, 48.66338318360918, 0], [-1.270423570771704, 48.66335574127042, 0], [-1.270436855583734, 48.66332766325327, 0], [-1.27044733971164, 48.6632990697928, 0], [-1.27045497826543, 48.66327008333164, 0], [-1.270459738540324, 48.66324082799464, 0], [-1.270461600157005, 48.66321142905804, 0], [-1.270460555148925, 48.66318201241276, 0], [-1.27045660799602, 48.66315270402532, 0], [-1.270449775605647, 48.66312362939846, 0], [-1.270440087239897, 48.66309491303365, 0], [-1.270427584390641, 48.66306667789814, 0], [-1.270412320601029, 48.66303904489801, 0], [-1.270394361237073, 48.66301213236121, 0], [-1.270392897659034, 48.66301013257818, 0], [-1.270106857063984, 48.66262174108219, 0], [-1.269687082163444, 48.66164283245227, 0], [-1.26981653655579, 48.66161560307815, 0], [-1.26982337741421, 48.66161413770616, 0], [-1.269865091064444, 48.66160402675553, 0], [-1.269905717133693, 48.66159213014868, 0], [-1.269945081651458, 48.66157849882996, 0], [-1.2699830160499, 48.6615631911723, 0], [-1.270019357885781, 48.66154627272677, 0], [-1.270053951535966, 48.66152781594239, 0], [-1.27008664886429, 48.66150789985558, 0], [-1.270117309855017, 48.66148660975182, 0], [-1.270145803213549, 48.66146403680027, 0], [-1.270172006927848, 48.66144027766325, 0], [-1.270195808791048, 48.66141543408286, 0], [-1.270217106882119, 48.66138961244455, 0], [-1.270235810002012, 48.66136292332196, 0], [-1.270251838064629, 48.66133548100326, 0], [-1.27026512243887, 48.66130740300186, 0], [-1.270275606243274, 48.66127880955306, 0], [-1.27028324458919, 48.66124982309909, 0], [-1.270288004772757, 48.66122056776498, 0], [-1.270289866415058, 48.66119116882693, 0], [-1.270288821549404, 48.66116175217586, 0], [-1.270269740890051, 48.66093727878231, 0], [-1.270265794024517, 48.66090797038357, 0], [-1.270258962049411, 48.66087889574062, 0], [-1.270249274225088, 48.66085017935512, 0], [-1.27023677204102, 48.66082194419423, 0], [-1.270233182056131, 48.66081491628377, 0], [-1.269597700919039, 48.65960383901003, 0], [-1.269609053845238, 48.65960215822248, 0], [-1.269651674764392, 48.65959387628842, 0], [-1.269693386773578, 48.65958376539869, 0], [-1.26973401125136, 48.65957186885098, 0], [-1.269773374234373, 48.65955823758939, 0], [-1.269811307161233, 48.65954292998628, 0], [-1.269847647595015, 48.6595260115928, 0], [-1.269882239918561, 48.65950755485757, 0], [-1.269914936001422, 48.65948763881691, 0], [-1.269945595833175, 48.65946634875604, 0], [-1.269974088124182, 48.65944377584389, 0], [-1.270000290866957, 48.65942001674278, 0], [-1.270024091858895, 48.65939517319449, 0], [-1.270045389182539, 48.65936935158436, 0], [-1.27006409164238, 48.65934266248593, 0], [-1.270080119154757, 48.65931522018735, 0], [-1.270093403091208, 48.65928714220188, 0], [-1.270103886572191, 48.65925854876459, 0], [-1.270111524710154, 48.65922956231795, 0], [-1.270116284802394, 48.65920030698675, 0], [-1.270118146470274, 48.65917090804727, 0], [-1.270117101747046, 48.65914149139039, 0], [-1.270113155111408, 48.65911218298265, 0], [-1.270106323468496, 48.65908310832697, 0], [-1.270096636077227, 48.65905439192488, 0], [-1.270084134425273, 48.65902615674372, 0], [-1.270080556530213, 48.65901915158539, 0], [-1.269411075891587, 48.65774300306033, 0], [-1.269565853591863, 48.65675669477042, 0], [-1.269567601365169, 48.65674373709332, 0], [-1.269569463262825, 48.65671433815771, 0], [-1.26956841891158, 48.65668492149074, 0], [-1.269564472788411, 48.65665561305902, 0], [-1.269557641796359, 48.6566265383656, 0], [-1.269547955191541, 48.65659782191214, 0], [-1.269535454458113, 48.65656958666628, 0], [-1.269520193130551, 48.6565419535347, 0], [-1.269502236563938, 48.65651504084558, 0], [-1.269481661654421, 48.65648896384202, 0], [-1.269458556510084, 48.65646383418835, 0], [-1.269433020072759, 48.65643975949211, 0], [-1.269405161695294, 48.65641684284337, 0], [-1.269375100672503, 48.65639518237292, 0], [-1.269342965730835, 48.65637487083263, 0], [-1.269308894476717, 48.65635599519793, 0], [-1.269273032807683, 48.65633863629557, 0], [-1.269235534287354, 48.65632286845738, 0], [-1.269196559487846, 48.65630875920222, 0], [-1.26916262853336, 48.6562981834199, 0], [-1.269136495008136, 48.65629061484636, 0], [-1.268988205294628, 48.65611944577924, 0], [-1.269010291085044, 48.65610194767583, 0], [-1.269036492542108, 48.65607818878949, 0], [-1.26906029242867, 48.65605334543556, 0], [-1.269081588832051, 48.65602752399849, 0], [-1.269100290560656, 48.65600083505112, 0], [-1.269116317533965, 48.65597339288081, 0], [-1.269129601125851, 48.65594531500052, 0], [-1.269140084458194, 48.65591672164472, 0], [-1.269147722644097, 48.65588773525547, 0], [-1.269152482980682, 48.65585847995746, 0], [-1.26915434508823, 48.65582908102675, 0], [-1.269153300998136, 48.65579966435418, 0], [-1.269134227440882, 48.65557519068673, 0], [-1.269130281657762, 48.65554588223777, 0], [-1.269123451067449, 48.65551680751623, 0], [-1.269113764924241, 48.65548809102384, 0], [-1.269101264710517, 48.65545985572838, 0], [-1.269086003958075, 48.6554322225368, 0], [-1.269068048020019, 48.65540530977762, 0], [-1.26904747378966, 48.65537923269409, 0], [-1.269024369371941, 48.65535410295092, 0], [-1.268998833705899, 48.65533002815609, 0], [-1.268970976140904, 48.65530711139996, 0], [-1.268940915968353, 48.65528545081391, 0], [-1.268908781911078, 48.65526513915032, 0], [-1.268874711571748, 48.65524626338509, 0], [-1.268838850843701, 48.65522890434549, 0], [-1.268801353286841, 48.655213136364, 0], [-1.268762379469088, 48.65519902696008, 0], [-1.268757269236631, 48.65513887940286, 0], [-1.268753323707448, 48.65510957094008, 0], [-1.268746493394273, 48.65508049619511, 0], [-1.268736807550346, 48.65505177967003, 0], [-1.268724307656646, 48.65502354433265, 0], [-1.268709047243712, 48.65499591108996, 0], [-1.26869109166311, 48.65496899827094, 0], [-1.268670517806672, 48.6549429211189, 0], [-1.268647413777702, 48.65491779129897, 0], [-1.268621878513618, 48.65489371641935, 0], [-1.268594021362013, 48.65487079957093, 0], [-1.268563961612583, 48.65484913888533, 0], [-1.268531827986263, 48.65482882711538, 0], [-1.268497758083984, 48.65480995123749, 0], [-1.268461897797104, 48.6547925920794, 0], [-1.26842440068369, 48.6547768239741, 0], [-1.268385427309762, 48.65476271444152, 0], [-1.268380317572448, 48.65470256686568, 0], [-1.268361247881022, 48.65447809305238, 0], [-1.268323109008782, 48.65402914540593, 0], [-1.268319163819607, 48.65399983692596, 0], [-1.26831233390811, 48.6539707621529, 0], [-1.268302648525754, 48.65394204558885, 0], [-1.268290149151539, 48.6539138102019, 0], [-1.268274889313825, 48.65388617689929, 0], [-1.26825693436168, 48.65385926401017, 0], [-1.268236361184278, 48.65383318677816, 0], [-1.268213257881987, 48.65380805686877, 0], [-1.268187723389107, 48.65378398189057, 0], [-1.268159867049952, 48.65376106493483, 0], [-1.268129808150682, 48.65373940413363, 0], [-1.268097675408675, 48.65371909224042, 0], [-1.268063606420984, 48.65370021623199, 0], [-1.268027747075171, 48.65368285693667, 0], [-1.267990250925186, 48.65366708868808, 0], [-1.267951278532913, 48.65365297900674, 0], [-1.267910996781438, 48.65364058831106, 0], [-1.267889278484877, 48.65363502030965, 0], [-1.267878490865959, 48.65362134640148, 0], [-1.267855387839747, 48.65359621641954, 0], [-1.267829853625704, 48.65357214136124, 0], [-1.267801997566924, 48.65354922431813, 0], [-1.26777193894839, 48.65352756342274, 0], [-1.267739806486219, 48.65350725142885, 0], [-1.267705737776346, 48.65348837531378, 0], [-1.267669878705053, 48.65347101590619, 0], [-1.267632382825192, 48.65345524754026, 0], [-1.267593410697427, 48.65344113773701, 0], [-1.267588302041469, 48.65338099012033, 0], [-1.267584357331311, 48.65335168161379, 0], [-1.267577527932584, 48.65332260679559, 0], [-1.267567843094553, 48.65329389016819, 0], [-1.267555344293898, 48.65326565469983, 0], [-1.267540085056544, 48.65323802129807, 0], [-1.26752213072894, 48.65321110829264, 0], [-1.267501558197581, 48.65318503092753, 0], [-1.267478455560138, 48.65315990086886, 0], [-1.267452921747994, 48.65313582572582, 0], [-1.267425066102583, 48.65311290859039, 0], [-1.267395007907111, 48.65309124759547, 0], [-1.267362875875895, 48.65307093549527, 0], [-1.267328807603012, 48.65305205926753, 0], [-1.267292948972847, 48.65303469974147, 0], [-1.267255453536431, 48.65301893125173, 0], [-1.267216481852471, 48.65300482131981, 0], [-1.267211373691557, 48.65294467368454, 0], [-1.267207429235275, 48.65291536516409, 0], [-1.267200600113647, 48.6528862903226, 0], [-1.267190915574816, 48.65285757366248, 0], [-1.267178417094186, 48.65282933815214, 0], [-1.267163158196261, 48.65280170469937, 0], [-1.26714520422607, 48.65277479163404, 0], [-1.267124632068633, 48.65274871420046, 0], [-1.267101529819878, 48.65272358406501, 0], [-1.267075996409632, 48.65269950883732, 0], [-1.267048141177611, 48.65267659160956, 0], [-1.2670180834052, 48.65265493051508, 0], [-1.26698595180492, 48.65263461830857, 0], [-1.266951883969008, 48.6526157419682, 0], [-1.266916025780009, 48.65259838232363, 0], [-1.266878530786959, 48.6525826137101, 0], [-1.266839559546844, 48.65256850364954, 0], [-1.266799278937716, 48.6525561125621, 0], [-1.266777561232482, 48.65255054434953, 0], [-1.266766774148376, 48.6525368703357, 0], [-1.266743672175721, 48.65251174012775, 0], [-1.266718139044312, 48.65248766481987, 0], [-1.266690284092646, 48.65246474750482, 0], [-1.266660226600911, 48.65244308631618, 0], [-1.266628095280507, 48.65242277400903, 0], [-1.266594027722372, 48.65240389756194, 0], [-1.266558169807894, 48.65238653780515, 0], [-1.266520675084968, 48.65237076907427, 0], [-1.266481704109341, 48.6523566588918, 0], [-1.266441423758047, 48.65234426767835, 0], [-1.266419706183908, 48.65233869939787, 0], [-1.266408919242508, 48.65232502535014, 0], [-1.266385817545932, 48.65229989506964, 0], [-1.26636028469334, 48.65227581968172, 0], [-1.26633243002203, 48.6522529022793, 0], [-1.26630237281103, 48.65223124099649, 0], [-1.266270241770462, 48.65221092858866, 0], [-1.266236174490065, 48.6521920520349, 0], [-1.266200316850128, 48.65217469216588, 0], [-1.266162822397325, 48.65215892331765, 0], [-1.266123851686207, 48.65214481301329, 0], [-1.266083571592707, 48.65213242167385, 0], [-1.266042154599092, 48.65212180235978, 0], [-1.265999778055658, 48.65211300054336, 0], [-1.265956623420752, 48.65210605391435, 0], [-1.265912875484958, 48.65210099221865, 0], [-1.265868721578667, 48.6520978371305, 0], [-1.265824350770799, 48.65209660216021, 0], [-1.265779953058792, 48.65209729259588, 0], [-1.265565234978596, 48.65210529493217, 0], [-1.265564010075018, 48.65210351771958, 0], [-1.265558099721171, 48.65209516997105, 0], [-1.265537528664513, 48.65206909225135, 0], [-1.265514427520835, 48.65204396179471, 0], [-1.265488895215245, 48.65201988621218, 0], [-1.265461041082685, 48.65199696859754, 0], [-1.265430984399902, 48.65197530708571, 0], [-1.265398853874662, 48.65195499443319, 0], [-1.265364787094685, 48.65193611762, 0], [-1.265328929937941, 48.65191875747796, 0], [-1.265291435949048, 48.65190298834428, 0], [-1.265252465680695, 48.65188887774331, 0], [-1.265212186006839, 48.65187648609732, 0], [-1.265170769407908, 48.65186586646805, 0], [-1.26512839323258, 48.65185706432921, 0], [-1.265085238937582, 48.65185011737188, 0], [-1.2650414913121, 48.6518450553434, 0], [-1.264997337685145, 48.65184189991935, 0], [-1.26495296712442, 48.65184066461158, 0], [-1.264908569626382, 48.65184135470968, 0], [-1.264864335302858, 48.65184396725858, 0], [-1.264820453567093, 48.65184849107122, 0], [-1.264777112322459, 48.65185490677651, 0], [-1.264734497158342, 48.65186318690206, 0], [-1.264692790554871, 48.6518732959921, 0], [-1.264652171102629, 48.65188519075899, 0], [-1.264612812736543, 48.65189882026875, 0], [-1.264574883992418, 48.65191412615918, 0], [-1.264538547284675, 48.65193104288948, 0], [-1.26450395821095, 48.6519494980213, 0], [-1.264471264885723, 48.65196941252851, 0], [-1.264440607306687, 48.65199070113582, 0], [-1.26441211675427, 48.65201327268374, 0], [-1.264385915230399, 48.65203703051932, 0], [-1.264362114935544, 48.65206187290922, 0], [-1.264340817788459, 48.65208769347618, 0], [-1.264322114989449, 48.65211438165397, 0], [-1.264306086630169, 48.65214182316092, 0], [-1.264301626188233, 48.65215055735173, 0], [-1.264166032643881, 48.65242531464685, 0], [-1.264040002301679, 48.65262002460328, 0], [-1.264033310772368, 48.65261274501855, 0], [-1.264007778887022, 48.65258866910688, 0], [-1.263979925114314, 48.65256575113308, 0], [-1.263949868729473, 48.65254408923357, 0], [-1.263917738439084, 48.65252377616649, 0], [-1.263883671829691, 48.65250489891371, 0], [-1.263847814778663, 48.65248753830879, 0], [-1.263810320830177, 48.65247176869106, 0], [-1.263771350536644, 48.65245765758685, 0], [-1.263731070772201, 48.65244526542068, 0], [-1.263689654017675, 48.65243464525645, 0], [-1.263647277622342, 48.65242584257015, 0], [-1.263604123043931, 48.65241889505523, 0], [-1.263560375072805, 48.65241383246144, 0], [-1.263516221039516, 48.65241067646678, 0], [-1.263510334167446, 48.65241051249878, 0], [-1.263386915314049, 48.65226762841789, 0], [-1.263223605410788, 48.65181911054817, 0], [-1.263221011555977, 48.65181222543225, 0], [-1.263208515563496, 48.65178398948688, 0], [-1.263193259163793, 48.65175635550361, 0], [-1.263175307690865, 48.65172944181417, 0], [-1.263154738018979, 48.65170336366604, 0], [-1.263131638233894, 48.6516782327284, 0], [-1.263106107254464, 48.65165415661426, 0], [-1.263078254410093, 48.6516312384198, 0], [-1.263048198971974, 48.65160957628235, 0], [-1.263016069642637, 48.65158926296111, 0], [-1.262982004004587, 48.65157038543902, 0], [-1.262946147930937, 48.65155302455089, 0], [-1.262908654961708, 48.65153725463703, 0], [-1.262869685645174, 48.65152314322529, 0], [-1.262829406851174, 48.65151075074139, 0], [-1.26278799105652, 48.65150013025051, 0], [-1.262745615606171, 48.65149132723012, 0], [-1.262702461954199, 48.65148437937527, 0], [-1.262658714886611, 48.65147931643676, 0], [-1.2626145617302, 48.65147616009445, 0], [-1.262570191550649, 48.65147492386388, 0], [-1.262525794342739, 48.65147561303865, 0], [-1.262481560217137, 48.65147822466767, 0], [-1.262437678586148, 48.65148274756785, 0], [-1.262394337352786, 48.65148916237199, 0], [-1.262369354803716, 48.65149401595424, 0], [-1.262325885753237, 48.65144382511859, 0], [-1.26231585801224, 48.65132561076925, 0], [-1.262311916535395, 48.65129630207705, 0], [-1.262305090463347, 48.65126722694063, 0], [-1.262295409031111, 48.65123850986361, 0], [-1.262282913700821, 48.65121027381619, 0], [-1.262267657983531, 48.65118263970845, 0], [-1.262249707210603, 48.65115572587305, 0], [-1.262229138253366, 48.65112964755771, 0], [-1.26220603919404, 48.65110451643245, 0], [-1.262180508948863, 48.65108044011111, 0], [-1.26215265684388, 48.65105752169075, 0], [-1.262122602147209, 48.65103585930966, 0], [-1.26209047355812, 48.65101554572809, 0], [-1.262056408655981, 48.65099666793008, 0], [-1.262020553310768, 48.65097930675158, 0], [-1.261983061059364, 48.65096353653421, 0], [-1.261944092446987, 48.6509494248071, 0], [-1.261903814340457, 48.65093703199729, 0], [-1.26188209787623, 48.65093146285618, 0], [-1.261871312470162, 48.65091778837994, 0], [-1.261848213686936, 48.65089265718218, 0], [-1.261822683720535, 48.65086858078079, 0], [-1.261794831895948, 48.6508456622731, 0], [-1.261764777479932, 48.65082399979784, 0], [-1.261732649170679, 48.65080368611563, 0], [-1.261698584546278, 48.65078480821095, 0], [-1.261662729475606, 48.65076744692023, 0], [-1.261625237494306, 48.6507516765856, 0], [-1.261586269146418, 48.65073756473651, 0], [-1.261545991297701, 48.65072517180074, 0], [-1.261504576420833, 48.65071455084539, 0], [-1.261462201857035, 48.65070574734993, 0], [-1.261419049056143, 48.65069879901119, 0], [-1.261375302800984, 48.65069373558247, 0], [-1.261331150414657, 48.6506905787454, 0], [-1.261286780959627, 48.6506893420178, 0], [-1.261242384427537, 48.65069003069527, 0], [-1.26056481687667, 48.6507152553984, 0], [-1.260520583317875, 48.65071786627048, 0], [-1.260476702173916, 48.65072238841985, 0], [-1.26043336134563, 48.65072880248253, 0], [-1.260431488533844, 48.65072912449299, 0], [-1.259874123426037, 48.65082551819031, 0], [-1.259833381146567, 48.6508334744922, 0], [-1.259791674411981, 48.65084358179891, 0], [-1.259751054632241, 48.65085547482908, 0], [-1.259711695744052, 48.65086910265617, 0], [-1.259709832200713, 48.65086980282769, 0], [-1.259459122500573, 48.65096434597109, 0], [-1.25945118691998, 48.65095686172099, 0], [-1.259423336127008, 48.65093394263692, 0], [-1.259393282679617, 48.65091227953973, 0], [-1.259361155271703, 48.65089196519268, 0], [-1.259327091477558, 48.65087308658296, 0], [-1.259291237162501, 48.65085572455023, 0], [-1.259253745858919, 48.65083995343969, 0], [-1.259214778107973, 48.65082584078413, 0], [-1.259174500772866, 48.65081344701476, 0], [-1.259133086324076, 48.65080282520225, 0], [-1.259090712101005, 48.65079402082975, 0], [-1.259047559551991, 48.6507870715979, 0], [-1.259003813458803, 48.65078200726371, 0], [-1.258959661143879, 48.65077884951278, 0], [-1.258915291669305, 48.65077761186679, 0], [-1.258870895026822, 48.65077829962532, 0], [-1.258599820364705, 48.65078838611784, 0], [-1.258422610617829, 48.65077146742679, 0], [-1.258208110623003, 48.65052577293941, 0], [-1.258081668658664, 48.65038094134821, 0], [-1.258062005235674, 48.65035978860352, 0], [-1.258036477352027, 48.65033571135761, 0], [-1.258008627547584, 48.65031279192861, 0], [-1.257978575080649, 48.65029112845951, 0], [-1.257946448640701, 48.65027081371486, 0], [-1.257912385798155, 48.65025193468377, 0], [-1.257876532414253, 48.65023457220759, 0], [-1.257839042017106, 48.65021880063346, 0], [-1.257800075144298, 48.65020468749621, 0], [-1.257766150703821, 48.65019410833483, 0], [-1.257742449690629, 48.6501872406014, 0], [-1.257729796980189, 48.65017119625846, 0], [-1.257706700608994, 48.65014606422444, 0], [-1.257702029481069, 48.65014165847588, 0], [-1.257708711670491, 48.65014213646401, 0], [-1.257753080554858, 48.6501433745773, 0], [-1.257797476652176, 48.65014268725187, 0], [-1.258475037877902, 48.65011747891333, 0], [-1.259152598424431, 48.65009226656781, 0], [-1.259582154246484, 48.65007628050577, 0], [-1.259607682738344, 48.65010035740767, 0], [-1.259635533153758, 48.65012327644822, 0], [-1.259665586234122, 48.65014493948303, 0], [-1.25969771328784, 48.65016525374578, 0], [-1.259731776741737, 48.65018413224618, 0], [-1.259767630730155, 48.65020149414186, 0], [-1.259805121718989, 48.65021726508498, 0], [-1.259844089164099, 48.6502313775403, 0], [-1.259884366198087, 48.65024377107482, 0], [-1.259925780345239, 48.65025439261614, 0], [-1.259968154259916, 48.6502631966801, 0], [-1.260011306486668, 48.65027014556553, 0], [-1.260055052236131, 48.6502752095152, 0], [-1.260099204177774, 48.65027836684406, 0], [-1.260143573241097, 48.65027960403166, 0], [-1.260187969425965, 48.65027891577989, 0], [-1.260366799764803, 48.65027225915025, 0], [-1.260916312994063, 48.65042943997123, 0], [-1.260919743033335, 48.65043041367211, 0], [-1.260961157552769, 48.65044103483906, 0], [-1.261003531805895, 48.65044983852, 0], [-1.261046684335785, 48.6504567870153, 0], [-1.261090430351795, 48.65046185056956, 0], [-1.261134582522234, 48.65046500749948, 0], [-1.261178951775666, 48.65046624428603, 0], [-1.261223348111114, 48.65046555563313, 0], [-1.261267581411516, 48.65046294448968, 0], [-1.261311462258052, 48.65045842203734, 0], [-1.261354802741415, 48.65045200764241, 0], [-1.261397417266263, 48.6504437287731, 0], [-1.261439123346553, 48.65043362088157, 0], [-1.261479742386504, 48.65042172725261, 0], [-1.261519100445716, 48.65040809881771, 0], [-1.261522344266088, 48.65040687664039, 0], [-1.262041823126057, 48.6502098958564, 0], [-1.262220652974087, 48.65020323633309, 0], [-1.262264885992075, 48.65020062480458, 0], [-1.262308766520086, 48.6501961019702, 0], [-1.262352106650231, 48.65018968719788, 0], [-1.262394720788729, 48.65018140795747, 0], [-1.262436426451212, 48.65017129970271, 0], [-1.262477045043402, 48.65015940572, 0], [-1.262516402627174, 48.65014577694229, 0], [-1.262554330664245, 48.65013047173147, 0], [-1.262590666738594, 48.65011355562835, 0], [-1.262625255251808, 48.65009510107183, 0], [-1.262657948089665, 48.6500751870888, 0], [-1.262688605255711, 48.65005389895571, 0], [-1.262717095471677, 48.6500313278333, 0], [-1.262743296739013, 48.65000757037614, 0], [-1.262767096861346, 48.64998272831905, 0], [-1.262788393925038, 48.64995690804089, 0], [-1.262807096735599, 48.6499302201095, 0], [-1.262823125207908, 48.64990277880811, 0], [-1.262836410709447, 48.64987470164572, 0], [-1.26284689635386, 48.64984610885379, 0], [-1.26285453724438, 48.64981712287205, 0], [-1.262859300666517, 48.64978786782335, 0], [-1.262861166227403, 48.64975846898275, 0], [-1.262860125943583, 48.64972905224062, 0], [-1.262855023324356, 48.64966890439776, 0], [-1.262891358964173, 48.64965198819876, 0], [-1.262897111337971, 48.64964891899226, 0], [-1.262920546885713, 48.64966373641364, 0], [-1.262954611209495, 48.64968261395649, 0], [-1.262990465952789, 48.64969997484421, 0], [-1.263027957578233, 48.64971574473321, 0], [-1.263066925538972, 48.64972985609289, 0], [-1.263107202965406, 48.64974224849479, 0], [-1.263148617380163, 48.64975286887157, 0], [-1.263190991436487, 48.64976167174392, 0], [-1.263234143678067, 48.64976861941564, 0], [-1.263277889315779, 48.64977368213501, 0], [-1.263322041019452, 48.64977683822207, 0], [-1.263366409719626, 48.64977807416159, 0], [-1.263410805417724, 48.64977738466101, 0], [-1.263455037999421, 48.6497747726729, 0], [-1.263498918048915, 48.6497702493826, 0], [-1.263542257660395, 48.64976383415988, 0], [-1.263584871242218, 48.64975555447652, 0], [-1.263626576312336, 48.64974544578834, 0], [-1.263667194279345, 48.64973355138332, 0], [-1.263706551207462, 48.6497199221963, 0], [-1.2637444785613, 48.64970461659112, 0], [-1.263780813927815, 48.64968770011005, 0], [-1.263815401711532, 48.64966924519371, 0], [-1.263848093801447, 48.64964933087056, 0], [-1.263878750204264, 48.6496280424184, 0], [-1.26390723964503, 48.64960547099938, 0], [-1.263933440128433, 48.64958171326932, 0], [-1.263957239461497, 48.64955687096427, 0], [-1.263978535733963, 48.64953105046413, 0], [-1.263997237754635, 48.64950436233774, 0], [-1.264013265442112, 48.64947692086908, 0], [-1.264026550166852, 48.64944884356775, 0], [-1.264037035045897, 48.64942025066615, 0], [-1.264044675186058, 48.6493912646042, 0], [-1.264049437875681, 48.64936200950522, 0], [-1.264050037679547, 48.64935619542077, 0], [-1.264070627781031, 48.6491356083739, 0], [-1.264679263045339, 48.64925883500618, 0], [-1.264695854476627, 48.64926204163707, 0], [-1.264739006497544, 48.64926898874229, 0], [-1.264782751852183, 48.6492740508872, 0], [-1.264826903211711, 48.64927720639443, 0], [-1.264871271508188, 48.64927844175122, 0], [-1.264915666744675, 48.64927775166751, 0], [-1.264959898808886, 48.64927513909835, 0], [-1.265003778287217, 48.64927061523151, 0], [-1.265047117276275, 48.64926419943933, 0], [-1.265089730187134, 48.64925591919604, 0], [-1.265131434540705, 48.64924580995967, 0], [-1.265172051748442, 48.64923391502076, 0], [-1.265211407877758, 48.64922028531639, 0], [-1.265249334397003, 48.64920497921249, 0], [-1.265285668896492, 48.64918806225357, 0], [-1.265320255784705, 48.64916960688235, 0], [-1.265352946954017, 48.64914969212915, 0], [-1.265383602415446, 48.64912840327354, 0], [-1.265412090898079, 48.64910583147959, 0], [-1.265438290410399, 48.64908207340465, 0], [-1.265462088763887, 48.64905723078611, 0], [-1.265483384052379, 48.6490314100054, 0], [-1.265502085088999, 48.64900472163245, 0], [-1.26551811179624, 48.64897727995241, 0], [-1.265531395549058, 48.64894920247567, 0], [-1.26554187946869, 48.64892060943532, 0], [-1.265549518665685, 48.64889162327205, 0], [-1.265554280432846, 48.64886236810948, 0], [-1.265556144384359, 48.64883296922316, 0], [-1.265555102543665, 48.64880355250369, 0], [-1.265551159377112, 48.64877424391793, 0], [-1.265544331775008, 48.64874516896948, 0], [-1.265534648978963, 48.64871645216127, 0], [-1.265522152456946, 48.64868821646234, 0], [-1.265506895725028, 48.64866058278119, 0], [-1.265488944119027, 48.64863366944871, 0], [-1.265468374513767, 48.64860759171042, 0], [-1.265467318357225, 48.64860635776631, 0], [-1.265108290742707, 48.64818842699301, 0], [-1.265098186395368, 48.64806937969079, 0], [-1.265094243552576, 48.64804007108788, 0], [-1.265087416314201, 48.64801099611078, 0], [-1.265077733920315, 48.64798227926248, 0], [-1.265065237837146, 48.6479540435123, 0], [-1.26504998157893, 48.64792640976897, 0], [-1.265032030479383, 48.64789949636354, 0], [-1.265011461411174, 48.64787341854196, 0], [-1.264988362457105, 48.64784828797214, 0], [-1.26496283253289, 48.64782421226547, 0], [-1.264934980963199, 48.64780129451641, 0], [-1.26490492701385, 48.64777963286042, 0], [-1.264872799380956, 48.64775932005455, 0], [-1.264838735639748, 48.6477404430796, 0], [-1.264802881655267, 48.64772308276801, 0], [-1.26476539095856, 48.64770731345767, 0], [-1.26472642408813, 48.64769320267377, 0], [-1.264721319443902, 48.64763305490573, 0], [-1.264717376854887, 48.64760374628899, 0], [-1.264710549893571, 48.64757467128859, 0], [-1.264700867798805, 48.64754595440763, 0], [-1.264688372035581, 48.64751771861549, 0], [-1.264673116116692, 48.64749008482116, 0], [-1.26465516537448, 48.6474631713559, 0], [-1.264634596680052, 48.6474370934659, 0], [-1.264611498114612, 48.64741196281933, 0], [-1.264585968592196, 48.64738788702801, 0], [-1.264558117435775, 48.64736496918663, 0], [-1.264528063909387, 48.64734330743112, 0], [-1.264495936707368, 48.647322994519, 0], [-1.264461873403011, 48.64730411743143, 0], [-1.264426019859597, 48.64728675700139, 0], [-1.264388529606175, 48.64727098756731, 0], [-1.26434956317947, 48.64725687665478, 0], [-1.264344459030127, 48.64719672886822, 0], [-1.264340516694849, 48.64716742023762, 0], [-1.264333690010571, 48.64713834521392, 0], [-1.264324008214945, 48.64710962830027, 0], [-1.264311512771605, 48.6470813924662, 0], [-1.264296257192066, 48.64705375862086, 0], [-1.264278306807167, 48.64702684509578, 0], [-1.264257738486521, 48.64700076713734, 0], [-1.264234640309729, 48.64697563641404, 0], [-1.264209111189072, 48.64695156053803, 0], [-1.26418126044592, 48.6469286426044, 0], [-1.264151207342514, 48.64690698074941, 0], [-1.264119080571311, 48.64688666773103, 0], [-1.264085017703824, 48.64686779053086, 0], [-1.264049164601437, 48.64685042998234, 0], [-1.264011674791361, 48.64683466042444, 0], [-1.263972708808321, 48.64682054938334, 0], [-1.263971199218068, 48.64680275851145, 0], [-1.263998988471207, 48.64680474491445, 0], [-1.264043354566644, 48.64680598059213, 0], [-1.264087747632468, 48.64680529082904, 0], [-1.264131977565683, 48.64680267857911, 0], [-1.26417585496182, 48.64679815502858, 0], [-1.264219191926377, 48.64679173954851, 0], [-1.264261802879103, 48.64678345961177, 0], [-1.26430350534928, 48.64677335067508, 0], [-1.264344120756358, 48.64676145602773, 0], [-1.264383475175781, 48.64674782660551, 0], [-1.264421400082856, 48.64673252077311, 0], [-1.264457733074971, 48.64671560407394, 0], [-1.264492318566881, 48.64669714894956, 0], [-1.264525008457336, 48.64667723442924, 0], [-1.26455566276235, 48.64665594579175, 0], [-1.264836009219659, 48.64644803632938, 0], [-1.264864496430049, 48.6464254646674, 0], [-1.264890694805139, 48.64640170671344, 0], [-1.264914492161005, 48.64637686420419, 0], [-1.26493578659592, 48.64635104352061, 0], [-1.264954486926504, 48.64632435523226, 0], [-1.264970513078529, 48.64629691362375, 0], [-1.264983796429309, 48.64626883620548, 0], [-1.264994280101499, 48.64624024321015, 0], [-1.265001919207087, 48.64621125707818, 0], [-1.265006681038976, 48.64618200193307, 0], [-1.265008545211193, 48.64615260305034, 0], [-1.265007503746238, 48.64612318632061, 0], [-1.265003561108822, 48.64609387771075, 0], [-1.264996734187014, 48.64606480272445, 0], [-1.264989903379634, 48.64604454245179, 0], [-1.265014825625601, 48.6460419728591, 0], [-1.265058161831685, 48.64603555706136, 0], [-1.265100772005814, 48.64602727681216, 0], [-1.265142473680547, 48.64601716756955, 0], [-1.265183088278752, 48.64600527262417, 0], [-1.26522244187927, 48.64599164291305, 0], [-1.265260365961005, 48.64597633680219, 0], [-1.265296698124843, 48.64595941983609, 0], [-1.265331282789075, 48.64594096445749, 0], [-1.265363971856008, 48.64592104969677, 0], [-1.265394625345315, 48.64589976083366, 0], [-1.265423111994495, 48.64587718903207, 0], [-1.265449309820204, 48.64585343094941, 0], [-1.265473106640858, 48.64582858832326, 0], [-1.265494400556968, 48.64580276753487, 0], [-1.265755069458492, 48.64579305154337, 0], [-1.265772979196844, 48.64581575822255, 0], [-1.265796077609587, 48.64584088863758, 0], [-1.265821606926068, 48.64586496416175, 0], [-1.265849457827533, 48.6458878816983, 0], [-1.265879511053381, 48.64590954310922, 0], [-1.265911637911414, 48.64592985563535, 0], [-1.265945700829321, 48.64594873229355, 0], [-1.265981553943478, 48.64596609224963, 0], [-1.266019043723838, 48.64598186116371, 0], [-1.266058009631259, 48.64599597150961, 0], [-1.266098284804835, 48.6460083628632, 0], [-1.266139696777027, 48.64601898216135, 0], [-1.266182068211568, 48.6460277839297, 0], [-1.266225217663399, 48.6460347304766, 0], [-1.266268960355128, 48.6460397920552, 0], [-1.266313108969253, 48.64604294699035, 0], [-1.266357474449682, 48.64604418177191, 0], [-1.266401866811489, 48.64604349111211, 0], [-1.266446095954736, 48.6460408779686, 0], [-1.266489972478291, 48.64603635353157, 0], [-1.266533308491429, 48.64602993717579, 0], [-1.266575918417976, 48.64602165637795, 0], [-1.26661761979161, 48.64601154659838, 0], [-1.266658234036437, 48.64599965113001, 0], [-1.266697587232899, 48.64598602091219, 0], [-1.266735510861556, 48.64597071431295, 0], [-1.266771842525254, 48.64595379687906, 0], [-1.266806426644442, 48.64593534105515, 0], [-1.266839115123726, 48.64591542587348, 0], [-1.266869767985235, 48.64589413661577, 0], [-1.26715010063301, 48.64568622148019, 0], [-1.267178586373696, 48.64566364924158, 0], [-1.267201309811727, 48.64564304089839, 0], [-1.267202888615175, 48.64564976359452, 0], [-1.267212571773251, 48.64567848026767, 0], [-1.267225068496407, 48.64570671578795, 0], [-1.267240325276267, 48.64573434924575, 0], [-1.267258276784646, 48.64576126230905, 0], [-1.267278846153914, 48.64578733973091, 0], [-1.267301945305865, 48.64581246984243, 0], [-1.267327475328621, 48.64583654503107, 0], [-1.26735532690045, 48.64585946220151, 0], [-1.267385380757753, 48.6458811232175, 0], [-1.267417508205675, 48.64590143532125, 0], [-1.267731271833974, 48.64608719789241, 0], [-1.267765335541209, 48.64610607400944, 0], [-1.267801189395414, 48.64612343339581, 0], [-1.267838679863325, 48.64613920171438, 0], [-1.26787764640298, 48.64615331144121, 0], [-1.267917922150836, 48.64616570215483, 0], [-1.267959334636677, 48.64617632079519, 0], [-1.268001706522117, 48.64618512189044, 0], [-1.26804485636, 48.64619206775189, 0], [-1.268088599371633, 48.64619712863564, 0], [-1.268132748237976, 48.64620028286959, 0], [-1.268177113901778, 48.64620151694643, 0], [-1.268221506377474, 48.64620082558155, 0], [-1.268265735564487, 48.64619821173561, 0], [-1.268309612061622, 48.64619368660171, 0], [-1.268352947978177, 48.64618726955773, 0], [-1.268395557738438, 48.64617898808306, 0], [-1.2684372588767, 48.64616887764134, 0], [-1.268447394099241, 48.64616590896419, 0], [-1.268449590586014, 48.64616798020381, 0], [-1.268477442852547, 48.64619089710095, 0], [-1.268507497391025, 48.64621255782209, 0], [-1.268539625503675, 48.64623286961074, 0], [-1.268573689612769, 48.6462517454872, 0], [-1.268609543849828, 48.64626910462045, 0], [-1.268647034679709, 48.64628487267432, 0], [-1.268686001558932, 48.64629898212604, 0], [-1.268726277622536, 48.64631137255545, 0], [-1.268767690398904, 48.64632199090349, 0], [-1.268810062548333, 48.64633079169962, 0], [-1.268853212622927, 48.64633773725659, 0], [-1.268896955842513, 48.64634279783162, 0], [-1.268941104887373, 48.64634595175399, 0], [-1.268985470699497, 48.6463471855178, 0], [-1.269029863292619, 48.64634649383969, 0], [-1.269368615606878, 48.64633385695504, 0], [-1.269707367750954, 48.64632121906873, 0], [-1.271062374624998, 48.64627065750675, 0], [-1.27110660372576, 48.64626804256405, 0], [-1.271150480028231, 48.64626351634216, 0], [-1.271193815642528, 48.64625709822361, 0], [-1.271236424994235, 48.64624881569243, 0], [-1.271278125619488, 48.64623870421661, 0], [-1.27131873894559, 48.64622680709625, 0], [-1.27135809105692, 48.64621317527769, 0], [-1.271396013438695, 48.64619786713598, 0], [-1.271432343699075, 48.64618094822439, 0], [-1.271466926264546, 48.64616249099389, 0], [-1.271499613046367, 48.64614257448277, 0], [-1.271530264073983, 48.64612128397837, 0], [-1.271558748095485, 48.64609871065148, 0], [-1.271584943138739, 48.64607495116614, 0], [-1.271608737034133, 48.64605010726596, 0], [-1.271630027894668, 48.64602428533765, 0], [-1.27164872455239, 48.6459975959561, 0], [-1.27166474694854, 48.64597015341067, 0], [-1.271678026476597, 48.64594207521574, 0], [-1.271688506275845, 48.64591348160725, 0], [-1.271696141474479, 48.6458844950284, 0], [-1.271700899382406, 48.64585523960456, 0], [-1.271702759630382, 48.64582584061235, 0], [-1.271701714257694, 48.64579642394293, 0], [-1.271644471360671, 48.6451230037345, 0], [-1.272321958027498, 48.64509771349931, 0], [-1.272366186031577, 48.64509509807013, 0], [-1.272410061197697, 48.64509057136548, 0], [-1.272453395640871, 48.64508415276993, 0], [-1.272496003791699, 48.64507586976968, 0], [-1.272537703191492, 48.64506575783456, 0], [-1.27257831527277, 48.64505386026671, 0], [-1.272617666125266, 48.64504022801446, 0], [-1.272655587239515, 48.6450249194546, 0], [-1.272691916229212, 48.64500800014225, 0], [-1.272726497526198, 48.64498954253009, 0], [-1.272759183047207, 48.64496962565801, 0], [-1.272789832827121, 48.64494833481497, 0], [-1.272818315619306, 48.64492576117317, 0], [-1.272844509456945, 48.64490200139802, 0], [-1.272868302175501, 48.64487715723426, 0], [-1.272889591893089, 48.64485133506981, 0], [-1.272908287446635, 48.64482464548063, 0], [-1.272924308782113, 48.64479720275694, 0], [-1.27293758729752, 48.64476912441381, 0], [-1.272948066136517, 48.64474053068786, 0], [-1.272955700431373, 48.6447115440228, 0], [-1.272960457495915, 48.64468228854435, 0], [-1.272962316964414, 48.64465288952941, 0], [-1.272961270879596, 48.64462347286923, 0], [-1.272904012456773, 48.64395005323777, 0], [-1.273581482694302, 48.64392475555202, 0], [-1.273625709601678, 48.64392213963634, 0], [-1.273669583631467, 48.64391761244895, 0], [-1.273712916903578, 48.64391119337644, 0], [-1.273755523853586, 48.64390290990713, 0], [-1.273797222027959, 48.64389279751281, 0], [-1.273837832864453, 48.64388089949751, 0], [-1.273877182458136, 48.64386726681157, 0], [-1.273915102304979, 48.6438519578336, 0], [-1.273951430024032, 48.64383503812054, 0], [-1.273986010052632, 48.64381658012673, 0], [-1.274018694312931, 48.64379666289378, 0], [-1.274049342845163, 48.64377537171208, 0], [-1.274077824408071, 48.64375279775539, 0], [-1.274104017040114, 48.64372903769042, 0], [-1.274127808581931, 48.64370419326315, 0], [-1.274149097156654, 48.64367837086265, 0], [-1.274167791606122, 48.64365168106583, 0], [-1.274183811880989, 48.64362423816385, 0], [-1.274197089383846, 48.64359615967259, 0], [-1.274207567262631, 48.64356756582918, 0], [-1.27421520065379, 48.64353857907794, 0], [-1.274219956874987, 48.64350932354495, 0], [-1.274221815564109, 48.6434799245073, 0], [-1.2742207687672, 48.64345050785631, 0], [-1.274201677281148, 48.64322603484481, 0], [-1.274197729514475, 48.6431967265459, 0], [-1.274190897672223, 48.64316765210213, 0], [-1.274187472985768, 48.64315645109572, 0], [-1.273980249800817, 48.64252033029841, 0], [-1.273973987980495, 48.64250281520471, 0], [-1.273963700112937, 48.64247911258057, 0], [-1.273252844011215, 48.64099570532226, 0], [-1.273250632292986, 48.64099117314227, 0], [-1.273235373650357, 48.6409635404763, 0], [-1.273217420656545, 48.64093662834119, 0], [-1.273196850192413, 48.64091055197729, 0], [-1.273173750346637, 48.64088542304627, 0], [-1.273148220038789, 48.64086134915271, 0], [-1.273120368595218, 48.64083843338307, 0], [-1.27309031528114, 48.64081677386445, 0], [-1.273058188789973, 48.64079646334479, 0], [-1.273024126692071, 48.64077758879494, 0], [-1.272988274845399, 48.64076023103707, 0], [-1.272950786771874, 48.64074446439815, 0], [-1.272911822998786, 48.64073035639183, 0], [-1.272871550372292, 48.64071796742937, 0], [-1.272830141342687, 48.64070735056087, 0], [-1.272787773226192, 48.64069855124835, 0], [-1.272744627445044, 48.64069160717072, 0], [-1.272700888751956, 48.64068654806299, 0], [-1.272656744437692, 48.64068339558835, 0], [-1.272644785092978, 48.64068287343442, 0], [-1.271339680241708, 48.64063355217802, 0], [-1.271307278729035, 48.64063284162025, 0], [-1.271262891208775, 48.64063353418106, 0], [-1.271218667069485, 48.64063614918511, 0], [-1.271174795680783, 48.64064067543477, 0], [-1.271131464901798, 48.64064709354857, 0], [-1.271094756082534, 48.64065422987862, 0], [-1.271057070301718, 48.64064987032941, 0], [-1.271012926122666, 48.64064671722124, 0], [-1.27096856528768, 48.64064548424215, 0], [-1.270924177751633, 48.64064617667176, 0], [-1.270585464124228, 48.64065881816081, 0], [-1.270541239927523, 48.64066143290332, 0], [-1.270497368455827, 48.64066595889355, 0], [-1.270454037568649, 48.64067237675106, 0], [-1.270411432810927, 48.64068065899424, 0], [-1.270369736618329, 48.6406907701583, 0], [-1.270329127536771, 48.64070266694662, 0], [-1.270289779456837, 48.64071629841665, 0], [-1.270251860870266, 48.64073160619777, 0], [-1.270215534147976, 48.64074852474106, 0], [-1.270180954844875, 48.64076698160041, 0], [-1.270148271033558, 48.6407868977424, 0], [-1.27011762267097, 48.64080818788456, 0], [-1.27008914099819, 48.64083076086097, 0], [-1.270062947978976, 48.6408545200125, 0], [-1.270039155777447, 48.64087936360016, 0], [-1.270017866277704, 48.6409051852416, 0], [-1.269497633466494, 48.64092459675575, 0], [-1.269516329360247, 48.64089790771321, 0], [-1.269532351295446, 48.64087046545682, 0], [-1.269545630667528, 48.64084238749966, 0], [-1.269556110616397, 48.64081379407659, 0], [-1.269563746269706, 48.64078480763011, 0], [-1.269568504935328, 48.640755552285, 0], [-1.269570366240798, 48.64072615331754, 0], [-1.269569322220887, 48.64069673661879, 0], [-1.269613546499127, 48.6406941222515, 0], [-1.269657418074899, 48.64068959659981, 0], [-1.269700749078504, 48.64068317904361, 0], [-1.26974335395537, 48.64067489706474, 0], [-1.269785050260679, 48.64066478612869, 0], [-1.269825659440338, 48.64065288953322, 0], [-1.269865007596431, 48.64063925822259, 0], [-1.269902926231084, 48.64062395056943, 0], [-1.269939252968562, 48.64060703212511, 0], [-1.2699738322504, 48.64058857533853, 0], [-1.270006516001925, 48.64056865924611, 0], [-1.270037164265612, 48.64054736913332, 0], [-1.270065645801302, 48.64052479616943, 0], [-1.270091838647574, 48.64050103701674, 0], [-1.270115630644166, 48.64047619341753, 0], [-1.270136919912235, 48.6404503717572, 0], [-1.27015561529064, 48.6404236826095, 0], [-1.270164016302866, 48.64040929292362, 0], [-1.270184648781472, 48.64040214514154, 0], [-1.270222567140205, 48.64038683738238, 0], [-1.270258893598966, 48.64036991883643, 0], [-1.270293472600568, 48.64035146195306, 0], [-1.270326156071557, 48.64033154576914, 0], [-1.270356804055528, 48.6403102555705, 0], [-1.27038528531356, 48.64028768252679, 0], [-1.270411477885451, 48.64026392330068, 0], [-1.27043526961208, 48.64023907963463, 0], [-1.27045655861574, 48.64021325791451, 0], [-1.270475253736472, 48.64018656871426, 0], [-1.270483654617682, 48.64017217900468, 0], [-1.270504286953662, 48.64016503116496, 0], [-1.270542205036416, 48.64014972329974, 0], [-1.2705785312165, 48.64013280465218, 0], [-1.270613109937866, 48.640114347672, 0], [-1.2706457931283, 48.64009443139661, 0], [-1.270676440832554, 48.64007314111211, 0], [-1.270704921812949, 48.64005056798858, 0], [-1.270731114110439, 48.64002680868902, 0], [-1.270754905567124, 48.64000196495623, 0], [-1.270776194306396, 48.63997614317627, 0], [-1.270866951121699, 48.63997275584645, 0], [-1.270911174696101, 48.63997014097809, 0], [-1.270955045523812, 48.63996561482919, 0], [-1.270998375738408, 48.63995919678182, 0], [-1.271040979788516, 48.63995091431998, 0], [-1.271082675233053, 48.63994080291111, 0], [-1.271123283521525, 48.63992890585506, 0], [-1.271162630759792, 48.63991527409801, 0], [-1.271200548453997, 48.63989996601461, 0], [-1.271236874232382, 48.63988304715802, 0], [-1.271271452540579, 48.63986458997883, 0], [-1.271304135308131, 48.63984467351523, 0], [-1.27133478258167, 48.63982338305432, 0], [-1.271363263125314, 48.63980080976664, 0], [-1.271389454981917, 48.63977705031619, 0], [-1.271413245995376, 48.63975220644627, 0], [-1.271434534291103, 48.63972638454357, 0], [-1.271453228712114, 48.63969969518286, 0], [-1.271469249209283, 48.63967225265341, 0], [-1.271482527184142, 48.6396441744695, 0], [-1.271493005782671, 48.63961558086706, 0], [-1.271500640138179, 48.6395865942892, 0], [-1.271505397564232, 48.63955733886136, 0], [-1.271507257693603, 48.63952793986018, 0], [-1.271506212566058, 48.63949852317676, 0], [-1.271550435690421, 48.63949590806151, 0], [-1.271594306047088, 48.63949138166765, 0], [-1.271637635771696, 48.63948496337827, 0], [-1.27168023931503, 48.63947668067839, 0], [-1.271721934238084, 48.63946656903654, 0], [-1.271762541992583, 48.63945467175352, 0], [-1.271801888686786, 48.63944103977648, 0], [-1.271839805829111, 48.63942573148101, 0], [-1.271876131050103, 48.63940881242114, 0], [-1.271910708797868, 48.63939035504843, 0], [-1.271943391004309, 48.63937043840186, 0], [-1.271974037718455, 48.6393491477692, 0], [-1.272002517706823, 48.63932657432196, 0], [-1.272028709014645, 48.63930281472459, 0], [-1.272052499488177, 48.63927797072114, 0], [-1.272073787255186, 48.63925214869886, 0], [-1.272092481160889, 48.63922545923298, 0], [-1.272100881419078, 48.63921106940386, 0], [-1.272121513131137, 48.63920392127245, 0], [-1.272159429997484, 48.63918861287094, 0], [-1.272195754939818, 48.63917169370943, 0], [-1.272230332407367, 48.63915323623996, 0], [-1.272263014333253, 48.63913331950186, 0], [-1.272293660767703, 48.63911202878343, 0], [-1.272322140478452, 48.63908945525634, 0], [-1.272348331511894, 48.63906569558551, 0], [-1.272372121715502, 48.63904085151531, 0], [-1.272393409218102, 48.63901502943321, 0], [-1.272412102866192, 48.6389883399148, 0], [-1.2724281226138, 48.63896089724995, 0], [-1.272441399865818, 48.63893281895366, 0], [-1.272451877771241, 48.63890422526212, 0], [-1.272459511466397, 48.63887523861904, 0], [-1.27246426826761, 48.63884598315003, 0], [-1.27246612781039, 48.63881658413192, 0], [-1.272465082136982, 48.63878716745591, 0], [-1.272459969145012, 48.63872701999766, 0], [-1.272496293653034, 48.63871010074038, 0], [-1.272530870693085, 48.63869164317962, 0], [-1.272563552200146, 48.63867172635519, 0], [-1.272594198226282, 48.63865043555571, 0], [-1.272622677540909, 48.63862786195324, 0], [-1.272648868192137, 48.63860410221299, 0], [-1.272672658029077, 48.63857925807964, 0], [-1.272693945182137, 48.63855343594089, 0], [-1.272784699301957, 48.63855004709133, 0], [-1.272828921526179, 48.63854743148233, 0], [-1.27287279094082, 48.63854290459857, 0], [-1.272916119685472, 48.63853648582521, 0], [-1.272958722215176, 48.63852820264931, 0], [-1.273000416095265, 48.63851809054144, 0], [-1.273041022781938, 48.63850619280449, 0], [-1.273080368388011, 48.63849256038745, 0], [-1.27311828442652, 48.63847725166784, 0], [-1.273154608532823, 48.63846033220149, 0], [-1.273189185159704, 48.63844187444177, 0], [-1.273221866243943, 48.63842195742917, 0], [-1.273252511839365, 48.63840066645319, 0], [-1.27328099071724, 48.63837809268669, 0], [-1.273307180927581, 48.63835433279553, 0], [-1.273330970321356, 48.63832948852504, 0], [-1.273352257030871, 48.63830366626359, 0], [-1.273370949905999, 48.63827697658743, 0], [-1.273379349640187, 48.63826258666374, 0], [-1.273399980781682, 48.63825543830152, 0], [-1.273437896544232, 48.63824012947592, 0], [-1.273474220371857, 48.63822320990797, 0], [-1.273508796718543, 48.63820475205149, 0], [-1.273541477522266, 48.63818483494736, 0], [-1.273572122837972, 48.63816354388557, 0], [-1.27360060143827, 48.63814097003925, 0], [-1.273626791374229, 48.6381172100747, 0], [-1.27365058049804, 48.63809236573743, 0], [-1.273671866943227, 48.63806654341615, 0], [-1.273690559560701, 48.63803985368745, 0], [-1.273706578309028, 48.63801241084218, 0], [-1.273719854597297, 48.63798433239592, 0], [-1.27373033157864, 48.63795573858572, 0], [-1.27373796439332, 48.63792675185566, 0], [-1.273742720361499, 48.63789749633178, 0], [-1.273744579122185, 48.63786809729114, 0], [-1.273743532721059, 48.637838680625, 0], [-1.273738418297175, 48.63777853322018, 0], [-1.273774741690488, 48.63776161355646, 0], [-1.273809317609695, 48.63774315560866, 0], [-1.273841997994614, 48.63772323841824, 0], [-1.273872642902025, 48.63770194727539, 0], [-1.2739011211062, 48.6376793733537, 0], [-1.273927310659986, 48.63765561331972, 0], [-1.27395109941717, 48.63763076891927, 0], [-1.273972385512816, 48.63760494654143, 0], [-1.273988341916095, 48.63758246380847, 0], [-1.274092981970876, 48.63742378403876, 0], [-1.274516024977261, 48.637350547195, 0], [-1.274556758056411, 48.63734258496556, 0], [-1.274598450632842, 48.63733247227532, 0], [-1.274639055984863, 48.6373205739709, 0], [-1.274678400230664, 48.6373069410039, 0], [-1.274716314889497, 48.6372916317542, 0], [-1.274752637602454, 48.63727471177981, 0], [-1.274787212828437, 48.63725625353628, 0], [-1.274819892509898, 48.63723633606632, 0], [-1.274850536706937, 48.63721504466113, 0], [-1.274879014196864, 48.63719247049555, 0], [-1.274905203035301, 48.6371687102373, 0], [-1.274928991079436, 48.63714386563297, 0], [-1.274950276467188, 48.63711804307256, 0], [-1.274968968054167, 48.63709135313363, 0], [-1.274984985803234, 48.63706391010793, 0], [-1.274998261127793, 48.63703583151177, 0], [-1.275008737185095, 48.6370072375829, 0], [-1.275016369119419, 48.63697825076587, 0], [-1.275021124254605, 48.63694899518714, 0], [-1.275022982233276, 48.63691959612397, 0], [-1.275021935104452, 48.6368901794677, 0], [-1.274983750132608, 48.63644123351393, 0], [-1.275027970389064, 48.6364386170556, 0], [-1.275071837767174, 48.636434089329, 0], [-1.275115164415304, 48.63642766972296, 0], [-1.275157764797406, 48.63641938572806, 0], [-1.275199456488025, 48.6364092728184, 0], [-1.275240060952796, 48.63639737430027, 0], [-1.275279404313945, 48.63638374112603, 0], [-1.27531731809424, 48.63636843167646, 0], [-1.275353639938632, 48.6363515115105, 0], [-1.275388214309658, 48.63633305308447, 0], [-1.275420893153669, 48.63631313544174, 0], [-1.275451536534122, 48.63629184387459, 0], [-1.275480013231802, 48.63626926955833, 0], [-1.275506201306031, 48.63624550916116, 0], [-1.275529988616913, 48.63622066443061, 0], [-1.275551273305704, 48.63619484175701, 0], [-1.275569964230892, 48.63616815171839, 0], [-1.275585981358296, 48.636140708607, 0], [-1.275599256103879, 48.63611262993958, 0], [-1.275609731627407, 48.63608403595408, 0], [-1.275617363075461, 48.63605504909528, 0], [-1.275622117773956, 48.63602579348985, 0], [-1.275623975367415, 48.63599639441521, 0], [-1.275622927906417, 48.63596697776274, 0], [-1.275593753560917, 48.6356240137073, 0], [-1.27572732993348, 48.63541881711434, 0], [-1.275913994628841, 48.63536229848137, 0], [-1.275926588624807, 48.63535838129923, 0], [-1.275965930987555, 48.63534474788827, 0], [-1.276003843776064, 48.63532943821046, 0], [-1.27604016463956, 48.63531251782565, 0], [-1.276074738044799, 48.63529405919119, 0], [-1.276107415942247, 48.63527414135133, 0], [-1.276138058399459, 48.63525284959905, 0], [-1.276166534201115, 48.63523027511057, 0], [-1.276192721410376, 48.63520651455489, 0], [-1.276216507891101, 48.63518166968013, 0], [-1.276237791788046, 48.63515584687729, 0], [-1.276256481963114, 48.63512915672487, 0], [-1.276272498385342, 48.63510171351565, 0], [-1.276285772473691, 48.6350736347668, 0], [-1.276296247390805, 48.63504504071663, 0], [-1.276303878285781, 48.63501605381019, 0], [-1.276308632486953, 48.63498679817432, 0], [-1.276310489640904, 48.63495739908661, 0], [-1.27630944180019, 48.63492798243844, 0], [-1.276305493456837, 48.63489867419649, 0], [-1.276298661523359, 48.63486959986282, 0], [-1.276288975259867, 48.63484088393767, 0], [-1.276276476149181, 48.63481264938633, 0], [-1.276261217718462, 48.63478501711246, 0], [-1.276243265310801, 48.63475810544089, 0], [-1.276222695804443, 48.63473202960999, 0], [-1.276199597284027, 48.63470690127922, 0], [-1.276174068663409, 48.63468282805049, 0], [-1.276146219261725, 48.63465991300747, 0], [-1.276116168335477, 48.6346382542741, 0], [-1.276084044567831, 48.634617944595, 0], [-1.276049985517431, 48.63459907093744, 0], [-1.276014137029313, 48.6345817141197, 0], [-1.275976652610864, 48.6345659484648, 0], [-1.275937692773828, 48.63455184148209, 0], [-1.275897424347474, 48.63453945357851, 0], [-1.275872535846114, 48.63453307238326, 0], [-1.275878236533456, 48.63453041663849, 0], [-1.275912809460718, 48.63451195805194, 0], [-1.275945486914341, 48.63449204025729, 0], [-1.275976128963778, 48.63447074854725, 0], [-1.276004604395471, 48.63444817409798, 0], [-1.276030791274136, 48.63442441357815, 0], [-1.276054577465093, 48.63439956873577, 0], [-1.276075861114316, 48.63437374596168, 0], [-1.276094551084808, 48.63434705583439, 0], [-1.276110567346385, 48.63431961264646, 0], [-1.276123841318786, 48.634291533915, 0], [-1.276134316165096, 48.63426293987818, 0], [-1.276141947034752, 48.63423395298109, 0], [-1.276146701256149, 48.63420469735053, 0], [-1.276148558475847, 48.63417529826397, 0], [-1.276147510746104, 48.63414588161291, 0], [-1.276133236696322, 48.63397809567923, 0], [-1.27620251760721, 48.63374544746945, 0], [-1.276486341589427, 48.633422612222, 0], [-1.276504931136149, 48.63343043090574, 0], [-1.276543890263953, 48.63344453769642, 0], [-1.2765841579731, 48.63345692537365, 0], [-1.276625561828044, 48.63346754088998, 0], [-1.276667924527213, 48.63347633878719, 0], [-1.276711064662917, 48.63348328139025, 0], [-1.27675479749775, 48.63348833896912, 0], [-1.276798935756438, 48.63349148986595, 0], [-1.276843290427114, 48.63349272058783, 0], [-1.276887671571274, 48.63349202586427, 0], [-1.276931889136903, 48.63348940867037, 0], [-1.276975753772567, 48.63348488021376, 0], [-1.277019077638362, 48.63347845988637, 0], [-1.277061675210152, 48.63347017518182, 0], [-1.277103364074512, 48.63346006157725, 0], [-1.277143965709167, 48.6334481623819, 0], [-1.277183306248533, 48.6334345285512, 0], [-1.277221217227369, 48.6334192184686, 0], [-1.277257536302676, 48.6334022976957, 0], [-1.277292107948822, 48.63338383869153, 0], [-1.277324784123868, 48.6333639205019, 0], [-1.277355428834517, 48.63334262550371, 0], [-1.277635651575428, 48.63313467477455, 0], [-1.277664117642852, 48.63311210574623, 0], [-1.27769030304258, 48.63308834484506, 0], [-1.277714087782438, 48.63306349965588, 0], [-1.277735370014914, 48.63303767657127, 0], [-1.277754058608887, 48.63301098617103, 0], [-1.277770073540128, 48.6329835427487, 0], [-1.277783346234152, 48.63295546382248, 0], [-1.277793819859199, 48.6329268696315, 0], [-1.277801449570342, 48.63289788262143, 0], [-1.277806202700591, 48.63286862691949, 0], [-1.277808058901484, 48.63283922780354, 0], [-1.277807010229395, 48.63280981116518, 0], [-1.277803061180007, 48.63278050297096, 0], [-1.277796228668711, 48.6327514287227, 0], [-1.277786541958457, 48.63272271292036, 0], [-1.277774042533482, 48.6326944785287, 0], [-1.277758783922827, 48.63266684645068, 0], [-1.277740831469822, 48.63263993501012, 0], [-1.277720262053292, 48.63261385944473, 0], [-1.277697163757356, 48.63258873141268, 0], [-1.277671635494893, 48.63256465851448, 0], [-1.277643786583675, 48.63254174383245, 0], [-1.277613736277792, 48.63252008548925, 0], [-1.277581613257948, 48.63249977622733, 0], [-1.27754755507945, 48.63248090301263, 0], [-1.277511707583898, 48.63246354666127, 0], [-1.277474224274082, 48.63244778149442, 0], [-1.27743526565721, 48.63243367501927, 0], [-1.277394998557355, 48.63242128764055, 0], [-1.277353595400992, 48.63241067240166, 0], [-1.277311233479102, 48.63240187475748, 0], [-1.277275999802325, 48.63239605702935, 0], [-1.276856564046938, 48.63233465206403, 0], [-1.276848658451339, 48.63233352738568, 0], [-1.276804926610711, 48.63232846984234, 0], [-1.276760789371827, 48.63232531894755, 0], [-1.276716435732166, 48.6323240881937, 0], [-1.276672055615764, 48.63232478285091, 0], [-1.276627839060007, 48.63232739994465, 0], [-1.276583975402041, 48.63233192826832, 0], [-1.276562466140949, 48.63233511579632, 0], [-1.276577763732723, 48.63232298763126, 0], [-1.276603949234789, 48.63229922697717, 0], [-1.276627734138136, 48.63227438201248, 0], [-1.276649016594373, 48.63224855912841, 0], [-1.276667705471479, 48.63222186890403, 0], [-1.276683720744047, 48.63219442563225, 0], [-1.276696993836033, 48.6321663468306, 0], [-1.276707467914238, 48.63213775273759, 0], [-1.276715098131436, 48.63210876579846, 0], [-1.276715654673608, 48.63210534066808, 0], [-1.276730048920123, 48.63210035214518, 0], [-1.276767959031653, 48.63208504221124, 0], [-1.276804277296408, 48.63206812158071, 0], [-1.276838848192194, 48.63204966271179, 0], [-1.27687152368025, 48.63202974464983, 0], [-1.276902167770235, 48.63200844977115, 0], [-1.277182384954472, 48.63180050013351, 0], [-1.277210850470456, 48.63177793121601, 0], [-1.277237035389969, 48.63175417041644, 0], [-1.277260819722992, 48.63172932531934, 0], [-1.277282101623793, 48.63170350231677, 0], [-1.27730078996269, 48.63167681198826, 0], [-1.277316804716493, 48.63164936862704, 0], [-1.277330077311516, 48.63162128975096, 0], [-1.277340550916439, 48.63159269559909, 0], [-1.277348180686435, 48.63156370861675, 0], [-1.277352933954155, 48.63153445293123, 0], [-1.277354790370675, 48.63150505382014, 0], [-1.277353741991372, 48.63147563717517, 0], [-1.277349793310669, 48.63144632896284, 0], [-1.277342961242418, 48.63141725468513, 0], [-1.277333275047632, 48.63138853884207, 0], [-1.277320776208428, 48.63136030439861, 0], [-1.277305518251211, 48.63133267225787, 0], [-1.277287566516612, 48.63130576074401, 0], [-1.277266997880298, 48.63127968509501, 0], [-1.277243900423151, 48.63125455696947, 0], [-1.277218373054372, 48.63123048396828, 0], [-1.277190525087919, 48.63120756917414, 0], [-1.277160475773882, 48.63118591071015, 0], [-1.27712835378867, 48.63116560131942, 0], [-1.277094296683174, 48.6311467279683, 0], [-1.277058450294397, 48.6311293714737, 0], [-1.277020968120373, 48.63111360615717, 0], [-1.276982010663492, 48.63109949952671, 0], [-1.276941744742854, 48.63108711198759, 0], [-1.276900342779836, 48.63107649658395, 0], [-1.276857982060364, 48.63106769877135, 0], [-1.276822749370179, 48.63106188090337, 0], [-1.276403325288593, 48.63100047427303, 0], [-1.276395419912719, 48.63099934956334, 0], [-1.276351689277127, 48.6309942918465, 0], [-1.276307553236844, 48.63099114077677, 0], [-1.276274022234329, 48.63099021018049, 0], [-1.276276728059713, 48.63098657400613, 0], [-1.276306899755895, 48.63098345919173, 0], [-1.276350221553404, 48.63097703911633, 0], [-1.27639281711782, 48.63096875465921, 0], [-1.27643450404429, 48.63095864129654, 0], [-1.276475103818793, 48.63094674233649, 0], [-1.276514442583798, 48.63093310873336, 0], [-1.276552351881579, 48.6309177988697, 0], [-1.276588669376391, 48.63090087830631, 0], [-1.276623239549375, 48.63088241950111, 0], [-1.276655914364828, 48.63086250149922, 0], [-1.276686553903514, 48.6308412095943, 0], [-1.276715026962625, 48.63081863496326, 0], [-1.27674121161707, 48.63079487427556, 0], [-1.276764995741579, 48.63077002928002, 0], [-1.276786277491142, 48.63074420636805, 0], [-1.276804965736713, 48.63071751611876, 0], [-1.276820980455644, 48.6306900728252, 0], [-1.276834253074248, 48.63066199400505, 0], [-1.276844726761346, 48.63063339989673, 0], [-1.27685235667139, 48.63060441294577, 0], [-1.276857110136851, 48.63057515727904, 0], [-1.276858966807568, 48.63054575817425, 0], [-1.276857918738077, 48.63051634152298, 0], [-1.276819722222906, 48.63006739600102, 0], [-1.276815773963846, 48.63003808776774, 0], [-1.276808942395356, 48.63000901345562, 0], [-1.276799256776369, 48.62998029756488, 0], [-1.276786758586546, 48.62995206306065, 0], [-1.276771501349572, 48.62992443084642, 0], [-1.276753550402923, 48.62989751924657, 0], [-1.276732982618947, 48.62987144349935, 0], [-1.276729549320241, 48.62986746483568, 0], [-1.276476663328234, 48.62957784201226, 0], [-1.276457000302367, 48.62955669239661, 0], [-1.276431474171338, 48.62953261921744, 0], [-1.276403627502667, 48.62950970422958, 0], [-1.276373579541288, 48.62948804555684, 0], [-1.276341458957355, 48.62946773594337, 0], [-1.276307403296164, 48.6294488623562, 0], [-1.276271558388262, 48.62943150561351, 0], [-1.276234077725409, 48.62941574003775, 0], [-1.276195121803521, 48.6294016331381, 0], [-1.276161207521118, 48.62939105940949, 0], [-1.275671663920481, 48.62924924003848, 0], [-1.275492489760233, 48.62898925064763, 0], [-1.275486581611802, 48.62898090504945, 0], [-1.275466014858981, 48.62895482907335, 0], [-1.275442919368202, 48.62892970058087, 0], [-1.27541739404031, 48.6289056271748, 0], [-1.275389548180392, 48.62888271193941, 0], [-1.275359501029845, 48.62886105299981, 0], [-1.275327381255464, 48.62884074310104, 0], [-1.27529332639883, 48.62882186921168, 0], [-1.275257482287291, 48.62880451215092, 0], [-1.27522000240913, 48.62878874624272, 0], [-1.275181047256886, 48.62877463899758, 0], [-1.275140783639706, 48.62876225082345, 0], [-1.275099383969454, 48.62875163476729, 0], [-1.275057025521884, 48.62874283628743, 0], [-1.275013889678187, 48.62873589305924, 0], [-1.27497016114839, 48.62873083481405, 0], [-1.27492602717981, 48.62872768321159, 0], [-1.274881676755937, 48.62872645174691, 0], [-1.274837299786977, 48.62872714569336, 0], [-1.274793086296908, 48.62872976207931, 0], [-1.274749225609726, 48.62873428970139, 0], [-1.274705905538696, 48.62874070917206, 0], [-1.274663311582513, 48.62874899300289, 0], [-1.274621626130543, 48.62875910572227, 0], [-1.27458102768272, 48.62877100402689, 0], [-1.274541690084141, 48.62878463696774, 0], [-1.274503781781624, 48.6287999461679, 0], [-1.274467465102001, 48.62881686607237, 0], [-1.274432895557254, 48.62883532422917, 0], [-1.274400221178191, 48.62885524159934, 0], [-1.274369581881332, 48.62887653289518, 0], [-1.274368141964546, 48.62887767449459, 0], [-1.274112634600479, 48.62880506445049, 0], [-1.274110664267603, 48.6288045069584, 0], [-1.274069264779765, 48.62879389052982, 0], [-1.27402690647684, 48.62878509166895, 0], [-1.273983770739078, 48.62877814805286, 0], [-1.273940042276147, 48.6287730894144, 0], [-1.273895908334985, 48.62876993741489, 0], [-1.273851557899102, 48.62876870555136, 0], [-1.273807180878683, 48.62876939909858, 0], [-1.273762967297927, 48.62877201508685, 0], [-1.273719106481228, 48.62877654231436, 0], [-1.273675786242452, 48.62878296139539, 0], [-1.273633192080914, 48.62879124484307, 0], [-1.273591506386937, 48.62880135718748, 0], [-1.273550907661476, 48.62881325512687, 0], [-1.273511569750807, 48.62882688771389, 0], [-1.273473661103046, 48.62884219657295, 0], [-1.273437344046604, 48.62885911615073, 0], [-1.273402774095023, 48.62887757399658, 0], [-1.273370099280788, 48.62889749107276, 0], [-1.273367464774375, 48.62889932174514, 0], [-1.273164671443967, 48.62886962389136, 0], [-1.273156766475247, 48.62886849895794, 0], [-1.273113038016893, 48.62886344000381, 0], [-1.273068904048333, 48.6288602876856, 0], [-1.273024553553057, 48.62885905550176, 0], [-1.272980176441572, 48.62885974872856, 0], [-1.272935962738453, 48.62886236439756, 0], [-1.272892101768597, 48.62886689130828, 0], [-1.272848781346547, 48.62887331007648, 0], [-1.272806186972439, 48.62888159321653, 0], [-1.272764501037436, 48.62889170525982, 0], [-1.272723902043569, 48.62890360290601, 0], [-1.272684563838196, 48.62891723520881, 0], [-1.27264665487081, 48.62893254379409, 0], [-1.272610337471123, 48.62894946310952, 0], [-1.272575767154114, 48.62896792070561, 0], [-1.272543091953908, 48.62898783754575, 0], [-1.272512451790582, 48.62900912834459, 0], [-1.2724839778701, 48.62903170193331, 0], [-1.27245779212303, 48.62905546165024, 0], [-1.272434006682353, 48.62908030575392, 0], [-1.272412723403174, 48.62910612785977, 0], [-1.272394033426447, 48.62913281739495, 0], [-1.272378016788911, 48.62916026007208, 0], [-1.272364742079959, 48.62918833837837, 0], [-1.272354266147997, 48.62921693207945, 0], [-1.272346633857358, 48.62924591873325, 0], [-1.272341877895193, 48.62927517421512, 0], [-1.27234001863243, 48.62930457324894, 0], [-1.272341064035654, 48.6293339899437, 0], [-1.272002426905177, 48.62934663563155, 0], [-1.271958212723461, 48.62934925092301, 0], [-1.271914351241295, 48.62935377745916, 0], [-1.27187103027538, 48.6293601958573, 0], [-1.271828435328191, 48.62936847863344, 0], [-1.271786748793407, 48.62937859032057, 0], [-1.271746149175559, 48.62939048761975, 0], [-1.271706810324722, 48.62940411958631, 0], [-1.271668900693128, 48.62941942784746, 0], [-1.271632582613305, 48.62943634685232, 0], [-1.27159801160321, 48.62945480415268, 0], [-1.271565335699867, 48.62947472071324, 0], [-1.271534694826408, 48.62949601124987, 0], [-1.271506220191838, 48.62951858459486, 0], [-1.271480033729739, 48.62954234408748, 0], [-1.271456247576233, 48.62956718798733, 0], [-1.2714349635894, 48.62959300991069, 0], [-1.271416272913253, 48.62961969928552, 0], [-1.271400255587527, 48.62964714182504, 0], [-1.271386980204594, 48.62967522001717, 0], [-1.271376503615718, 48.62970381362797, 0], [-1.271368870688008, 48.6297328002157, 0], [-1.271364114111415, 48.62976205565609, 0], [-1.271362254259423, 48.62979145467315, 0], [-1.271363299101176, 48.62982087137595, 0], [-1.27131908446958, 48.62982348642057, 0], [-1.27127522251657, 48.62982801271183, 0], [-1.271231901060868, 48.62983443086799, 0], [-1.271189305607103, 48.62984271340621, 0], [-1.271147618551036, 48.62985282486037, 0], [-1.271107018399456, 48.62986472193265, 0], [-1.271067679004754, 48.62987835367926, 0], [-1.271029768821441, 48.62989366172841, 0], [-1.270993450184503, 48.62991058053009, 0], [-1.270958878614157, 48.62992903763698, 0], [-1.270926202149942, 48.62994895401464, 0], [-1.270895560717311, 48.62997024437959, 0], [-1.270867085527705, 48.629992817565, 0], [-1.270840898517065, 48.63001657691076, 0], [-1.27081711182381, 48.63004142067713, 0], [-1.27079582730846, 48.63006724248098, 0], [-1.270777136117205, 48.6300939317507, 0], [-1.270768737002421, 48.63010832149103, 0], [-1.270748108827373, 48.63011546938297, 0], [-1.270710198368221, 48.63013077732609, 0], [-1.270673879452686, 48.63014769602617, 0], [-1.270639307602244, 48.63016615303633, 0], [-1.270606630857574, 48.63018606932251, 0], [-1.270575989145366, 48.63020735960169, 0], [-1.270547513678202, 48.63022993270727, 0], [-1.270521326393261, 48.63025369197963, 0], [-1.270497539430202, 48.63027853567924, 0], [-1.270476254650563, 48.63030435742331, 0], [-1.270457563201715, 48.6303310466405, 0], [-1.270441545126748, 48.63035848904473, 0], [-1.270428269021213, 48.63038656712455, 0], [-1.270417791739471, 48.63041516064634, 0], [-1.270410158151609, 48.63044414716888, 0], [-1.270405400950416, 48.6304734025682, 0], [-1.270403540512013, 48.63050280156834, 0], [-1.270403831115774, 48.63051098757071, 0], [-1.269696647122409, 48.6308507515911, 0], [-1.269387286293295, 48.63081539471862, 0], [-1.269591415060345, 48.63040478229461, 0], [-1.26962061355181, 48.63038974478197, 0], [-1.269646975132468, 48.63037545061887, 0], [-1.269679652379816, 48.63035553460676, 0], [-1.269710294561568, 48.63033424456759, 0], [-1.269738770463325, 48.63031167167024, 0], [-1.269764958147905, 48.63028791257698, 0], [-1.269783429072655, 48.6302689424058, 0], [-1.269972774302031, 48.63006332556572, 0], [-1.270837377181262, 48.62961803610125, 0], [-1.27086374046252, 48.62960374039527, 0], [-1.270896416727314, 48.62958382403507, 0], [-1.270927057924234, 48.62956253366936, 0], [-1.270955532843516, 48.62953996046845, 0], [-1.270981719551998, 48.62951620109574, 0], [-1.271000190322731, 48.62949723008906, 0], [-1.271453234019169, 48.62900522306961, 0], [-1.272652962782044, 48.6283166265759, 0], [-1.272684171721257, 48.62829754860034, 0], [-1.272714811378648, 48.62827625775458, 0], [-1.272743284768274, 48.62825368410735, 0], [-1.272768377102465, 48.62823098405403, 0], [-1.273645429307686, 48.62738310290778, 0], [-1.273949098929395, 48.62725753664032, 0], [-1.273961776129604, 48.62725216425382, 0], [-1.273998091850055, 48.62723524450809, 0], [-1.274032660455133, 48.62721678648071, 0], [-1.27406533391575, 48.62719686921344, 0], [-1.274095972318805, 48.62717557799676, 0], [-1.274124444466025, 48.62715300400457, 0], [-1.274150628436297, 48.62712924390388, 0], [-1.27417441210735, 48.62710439944071, 0], [-1.274195693636009, 48.62707857700433, 0], [-1.274202323770031, 48.62706962064916, 0], [-1.274270370676081, 48.62697506064556, 0], [-1.274518237774007, 48.6272405972539, 0], [-1.274527630496047, 48.62725037550652, 0], [-1.274553154558731, 48.62727444911334, 0], [-1.274580999147905, 48.62729736455424, 0], [-1.274611045029868, 48.62731902370021, 0], [-1.274643163543876, 48.62733933380176, 0], [-1.274677217153428, 48.62735820788618, 0], [-1.274713060034711, 48.62737556513017, 0], [-1.274749568279499, 48.62739095119848, 0], [-1.27626417716405, 48.62798516506544, 0], [-1.276265147608915, 48.62798554505973, 0], [-1.276304102454224, 48.62799965193681, 0], [-1.276344365747604, 48.6280120397025, 0], [-1.276385765072152, 48.6280226553091, 0], [-1.276428123145741, 48.62803145329792, 0], [-1.276471258580725, 48.62803839599373, 0], [-1.276514986659683, 48.62804345366585, 0], [-1.276559120127703, 48.6280466046562, 0], [-1.276603469993463, 48.62804783547129, 0], [-1.276647846339021, 48.6280471408405, 0], [-1.276684399891825, 48.62804497711546, 0], [-1.276687877050087, 48.62804485430479, 0], [-1.276692059886724, 48.62804452804312, 0], [-1.278771380745858, 48.62788449453407, 0], [-1.27877556280168, 48.62788416389157, 0], [-1.278819422385624, 48.62787963472728, 0], [-1.278862741190607, 48.62787321370021, 0], [-1.278905333714195, 48.62786492830708, 0], [-1.278947017564607, 48.62785481402794, 0], [-1.278987614240947, 48.62784291417496, 0], [-1.279026949898898, 48.62782927970621, 0], [-1.279064856094181, 48.62781396900802, 0], [-1.27910117050422, 48.62779704764463, 0], [-1.279135737623387, 48.62777858807751, 0], [-1.279168409429128, 48.627758669355, 0], [-1.279199046015016, 48.62773737677382, 0], [-1.279227516190893, 48.62771480151384, 0], [-1.279253698044038, 48.62769104024716, 0], [-1.279277479461234, 48.62766619472512, 0], [-1.279298758608918, 48.62764037134134, 0], [-1.279314707002863, 48.62761789159951, 0], [-1.279789656554071, 48.62689738999161, 0], [-1.279792393841488, 48.62689317905749, 0], [-1.279808405714396, 48.62686573533979, 0], [-1.27982167565748, 48.62683765616672, 0], [-1.279832146851132, 48.62680906177859, 0], [-1.279839774460696, 48.62678007462175, 0], [-1.279844525828255, 48.62675081882422, 0], [-1.279846380612661, 48.62672141966406, 0], [-1.279845330876583, 48.62669200303325, 0], [-1.279841381120181, 48.62666269489817, 0], [-1.279834548262022, 48.62663362076055, 0], [-1.279824861566117, 48.62660490511973, 0], [-1.279812362517101, 48.62657667093986, 0], [-1.279797104642177, 48.62654903912302, 0], [-1.279779153281699, 48.62652212799178, 0], [-1.279758585309454, 48.62649605278263, 0], [-1.279757528703951, 48.62649481831334, 0], [-1.279652071250022, 48.62637206012624, 0], [-1.279875272508158, 48.62607205191524, 0], [-1.281753461943795, 48.62495505370313, 0], [-1.281775772328495, 48.62494117003791, 0], [-1.281806406096058, 48.62491987675553, 0], [-1.281834873508565, 48.62489730084347, 0], [-1.281853013602492, 48.62488118913314, 0], [-1.281992969806598, 48.62475090412556, 0], [-1.282001008826768, 48.62474325395918, 0], [-1.282024787494682, 48.62471840786216, 0], [-1.282046063986311, 48.6246925839633, 0], [-1.282064747195131, 48.6246658928459, 0], [-1.282080757120157, 48.62463844880679, 0], [-1.282094025208265, 48.62461036936661, 0], [-1.2821044946474, 48.62458177476684, 0], [-1.282112120610581, 48.62455278745478, 0], [-1.282116870446906, 48.62452353155894, 0], [-1.282118723821819, 48.62449413235807, 0], [-1.282117672803986, 48.62446471574414, 0], [-1.282113721899103, 48.62443540768351, 0], [-1.282106888030572, 48.62440633367755, 0], [-1.282097200466841, 48.62437761822509, 0], [-1.282084700696202, 48.62434938428942, 0], [-1.282069442248937, 48.6243217527716, 0], [-1.282051490467715, 48.62429484199298, 0], [-1.282030922228523, 48.62426876718838, 0], [-1.282007825610525, 48.62424364001276, 0], [-1.281982299519224, 48.62421956806305, 0], [-1.281954453263003, 48.62419665441759, 0], [-1.28192856902515, 48.62417783220956, 0], [-1.281761589950823, 48.6240631114826, 0], [-1.281757427029535, 48.62406027646122, 0], [-1.281725307737269, 48.62403996835099, 0], [-1.281691253729915, 48.62402109635866, 0], [-1.281686539751807, 48.62401867519647, 0], [-1.281092638173931, 48.62371639624983, 0], [-1.282346382912698, 48.62227399650104, 0], [-1.283017264546404, 48.62184480232968, 0], [-1.283021535787126, 48.62184204564879, 0], [-1.283052167141299, 48.62182075202924, 0], [-1.283080632242095, 48.62179817580327, 0], [-1.283106809198158, 48.62177441364735, 0], [-1.283130585917551, 48.6217495673162, 0], [-1.283151860586738, 48.62172374320732, 0], [-1.283170542107148, 48.62169705190474, 0], [-1.283186550484832, 48.62166960770618, 0], [-1.28319981717322, 48.62164152813292, 0], [-1.283210285366672, 48.62161293342695, 0], [-1.283217910243022, 48.62158394603607, 0], [-1.283222659156424, 48.6215546900892, 0], [-1.283224511776062, 48.62152529086523, 0], [-1.283223460173957, 48.62149587425616, 0], [-1.283204336863981, 48.62127140243766, 0], [-1.283200385576984, 48.62124209440894, 0], [-1.283193551514328, 48.62121302046229, 0], [-1.283183863945261, 48.62118430509621, 0], [-1.283171364358196, 48.6211560712738, 0], [-1.283156106282353, 48.62112843989542, 0], [-1.283138155059225, 48.62110152928209, 0], [-1.283117587562039, 48.6210754546677, 0], [-1.283094491866843, 48.62105032770651, 0], [-1.283068966875343, 48.62102625599444, 0], [-1.283041121891164, 48.62100334260881, 0], [-1.283011076151868, 48.62098168566641, 0], [-1.282978958318435, 48.62096137790418, 0], [-1.282944905924131, 48.6209425062812, 0], [-1.282909064785374, 48.62092515160702, 0], [-1.282871588378216, 48.62090938819544, 0], [-1.282853281000662, 48.62090248529155, 0], [-1.280368567300112, 48.61999912347692, 0], [-1.280347924205498, 48.6199919212834, 0], [-1.280320228618654, 48.61998340002793, 0], [-1.280324998460496, 48.61997522341591, 0], [-1.280338266298704, 48.61994714417142, 0], [-1.280348735765438, 48.61991854972417, 0], [-1.280356362033155, 48.61988956252101, 0], [-1.280361112449975, 48.61986030668986, 0], [-1.280362966678725, 48.61983090750925, 0], [-1.280361916784434, 48.619801490871, 0], [-1.28035796726794, 48.61977218274163, 0], [-1.280351135046791, 48.61974310862284, 0], [-1.280341449382321, 48.61971439301387, 0], [-1.280328951754748, 48.61968615887872, 0], [-1.28031369568492, 48.6196585271192, 0], [-1.280300986646259, 48.61963899553673, 0], [-1.280170895889152, 48.61945139684287, 0], [-1.28048774662674, 48.61854324594615, 0], [-1.280490936201344, 48.61853362513352, 0], [-1.280498562177315, 48.61850463791849, 0], [-1.280503312380765, 48.61847538207909, 0], [-1.280505166475443, 48.61844598289379, 0], [-1.280504116526935, 48.61841656625445, 0], [-1.28050016703634, 48.61838725812762, 0], [-1.280493334921027, 48.61835818401493, 0], [-1.280483649441928, 48.61832946841567, 0], [-1.280471152078464, 48.61830123429375, 0], [-1.280455896350363, 48.61827360255095, 0], [-1.280437947589066, 48.61824669150978, 0], [-1.280417382657269, 48.61822061640603, 0], [-1.280394289620006, 48.61819548889595, 0], [-1.280368767367615, 48.61817141657797, 0], [-1.28034092519197, 48.61814850253186, 0], [-1.28031088231868, 48.61812684487731, 0], [-1.280278767396359, 48.6181065363543, 0], [-1.28024471794584, 48.61808766392516, 0], [-1.280208879770972, 48.61807030840294, 0], [-1.280171406335078, 48.61805454410499, 0], [-1.280132458102798, 48.61804043853504, 0], [-1.280092201853704, 48.61802805209381, 0], [-1.280050809968025, 48.61801743782071, 0], [-1.280039161095319, 48.61801481604547, 0], [-1.277893047964311, 48.61754612109502, 0], [-1.277862347106655, 48.6175399456404, 0], [-1.277819220476808, 48.61753300346428, 0], [-1.277775501397791, 48.61752794628687, 0], [-1.277756612566772, 48.6175263603501, 0], [-1.277038716919983, 48.61747285955211, 0], [-1.276533593969416, 48.61699219301506, 0], [-1.27651894045939, 48.61697878223661, 0], [-1.276491100696056, 48.61695586725282, 0], [-1.276461060191072, 48.61693420858668, 0], [-1.276428947583039, 48.61691389898248, 0], [-1.2763949003828, 48.61689502540719, 0], [-1.276359064384531, 48.61687766867873, 0], [-1.276321593042302, 48.61686190311978, 0], [-1.276282646811742, 48.61684779623928, 0], [-1.276242392463927, 48.61683540844369, 0], [-1.276201002370874, 48.61682479277815, 0], [-1.276158653767689, 48.61681599469944, 0], [-1.276115527993058, 48.61680905188124, 0], [-1.276071809714041, 48.6168039940532, 0], [-1.276027686133991, 48.61680084287293, 0], [-1.275983346192013, 48.61679961183405, 0], [-1.275938979753371, 48.61680030620785, 0], [-1.275894776796955, 48.61680292302098, 0], [-1.275850926601601, 48.6168074510682, 0], [-1.275807616935787, 48.61681387096022, 0], [-1.275765033253546, 48.61682215520671, 0], [-1.275729335789202, 48.6168306906182, 0], [-1.274463836155797, 48.61716007658698, 0], [-1.274453290014777, 48.61715004027392, 0], [-1.274438635011306, 48.61713662732433, 0], [-1.274410796107763, 48.61711371183489, 0], [-1.274380756403759, 48.61709205262328, 0], [-1.274348644534395, 48.61707174243572, 0], [-1.274314598007298, 48.61705286824202, 0], [-1.274278762614125, 48.61703551086261, 0], [-1.274241291805989, 48.61701974462297, 0], [-1.274202346036359, 48.61700563703504, 0], [-1.274162092074316, 48.61699324850819, 0], [-1.274120702290216, 48.61698263209073, 0], [-1.274078353917727, 48.6169738332426, 0], [-1.274035228294954, 48.61696688964098, 0], [-1.27399151008792, 48.61696183101858, 0], [-1.273947386499776, 48.61695867903674, 0], [-1.273903046469629, 48.6169574471922, 0], [-1.27385867986316, 48.61695814075996, 0], [-1.273814476660002, 48.61696075676985, 0], [-1.273770626140047, 48.61696528402038, 0], [-1.273727316073114, 48.61697170312535, 0], [-1.273684731914975, 48.61697998659814, 0], [-1.273643056013185, 48.61699009896836, 0], [-1.273602466826473, 48.61700199693458, 0], [-1.27357004069961, 48.61701307787754, 0], [-1.273065773229409, 48.61719694395058, 0], [-1.273057704553942, 48.61717870814652, 0], [-1.273042453235833, 48.61715107541426, 0], [-1.273024508838465, 48.61712416320931, 0], [-1.273003948205789, 48.6170980867725, 0], [-1.272980859384494, 48.61707295776574, 0], [-1.272955341246851, 48.61704888379381, 0], [-1.272927503067129, 48.61702596794363, 0], [-1.272897464053753, 48.61700430834265, 0], [-1.272865361639526, 48.61698400295171, 0], [-1.272551755497371, 48.61679824464821, 0], [-1.272517705428846, 48.61677936731356, 0], [-1.272481870850022, 48.61676200937147, 0], [-1.272444400808233, 48.61674624254358, 0], [-1.272405455753831, 48.61673213434422, 0], [-1.272365202452899, 48.61671974518536, 0], [-1.272323813272696, 48.61670912811817, 0], [-1.272281465444451, 48.6167003286053, 0], [-1.272238340303773, 48.61669338432682, 0], [-1.272194622514884, 48.61668832501821, 0], [-1.272150499279039, 48.61668517234385, 0], [-1.272106159533784, 48.61668393980342, 0], [-1.272105879689855, 48.6166839441738, 0], [-1.27208963797846, 48.61665958454313, 0], [-1.272069078019884, 48.6166335079377, 0], [-1.272045989878425, 48.61660837874173, 0], [-1.272020472423436, 48.6165843045608, 0], [-1.271992634926249, 48.61656138848269, 0], [-1.271962596592409, 48.61653972863585, 0], [-1.271930486051163, 48.61651941776955, 0], [-1.271896440804521, 48.61650054285615, 0], [-1.271860606638346, 48.61648318471942, 0], [-1.271823136998815, 48.6164674176879, 0], [-1.271784192334302, 48.61645330927694, 0], [-1.271743939409129, 48.6164409198995, 0], [-1.271702550589258, 48.61643030260758, 0], [-1.271660203104299, 48.61642150286484, 0], [-1.271617078288221, 48.61641455835216, 0], [-1.271581154840984, 48.61641025813049, 0], [-1.26999263224622, 48.61624923195067, 0], [-1.268596544302509, 48.61563617055374, 0], [-1.268028022380709, 48.61521616769613, 0], [-1.268007264146518, 48.61520150537049, 0], [-1.267975156054972, 48.61518119339327, 0], [-1.26794111319652, 48.61516231730238, 0], [-1.267905281347133, 48.6151449579264, 0], [-1.267867813942674, 48.61512918959932, 0], [-1.267828871422145, 48.61511507984191, 0], [-1.267788620540817, 48.61510268907298, 0], [-1.267747233655618, 48.61509207035044, 0], [-1.267704887987926, 48.61508326914404, 0], [-1.267661764864074, 48.61507632314111, 0], [-1.267618048939674, 48.61507126208461, 0], [-1.267573927407986, 48.61506810764622, 0], [-1.267529589199341, 48.61506687333341, 0], [-1.26748522417157, 48.61506756443155, 0], [-1.267441022297569, 48.61507017798129, 0], [-1.267397172851494, 48.6150747027913, 0], [-1.26735386359863, 48.61508111948611, 0], [-1.26731127999121, 48.61508940058927, 0], [-1.267269604374373, 48.61509951064075, 0], [-1.267229015205946, 48.61511140634873, 0], [-1.267189686291181, 48.61512503677523, 0], [-1.267151786039824, 48.61514034355416, 0], [-1.267115476744214, 48.61515726114093, 0], [-1.267093169226601, 48.61516888784513, 0], [-1.265853283086302, 48.61584339908835, 0], [-1.26488106946905, 48.61579977812966, 0], [-1.265111733284419, 48.61527671667284, 0], [-1.265114225300092, 48.61527092175837, 0], [-1.265124702442166, 48.61524232869601, 0], [-1.265132336768398, 48.61521334249945, 0], [-1.265137095591993, 48.61518408729255, 0], [-1.265138958540149, 48.61515468835103, 0], [-1.265137917640322, 48.61512527156578, 0], [-1.265133977354904, 48.61509596290397, 0], [-1.265127154561754, 48.61506688786943, 0], [-1.265117478482176, 48.61503817096541, 0], [-1.265104990555024, 48.61500993516152, 0], [-1.265089744259877, 48.61498230136673, 0], [-1.26507180488749, 48.61495538791212, 0], [-1.265051249260629, 48.61492931004404, 0], [-1.265028165404483, 48.61490417943058, 0], [-1.265002652169878, 48.61488010368335, 0], [-1.264974818810201, 48.61485718589684, 0], [-1.264944784513211, 48.61483552420684, 0], [-1.26491267789089, 48.61481521137043, 0], [-1.264878636428402, 48.61479633436854, 0], [-1.264842805895721, 48.61477897403377, 0], [-1.264805339723096, 48.61476320470409, 0], [-1.264766398344215, 48.61474909390476, 0], [-1.264742680291753, 48.61474153548334, 0], [-1.264273856366831, 48.61459948750937, 0], [-1.264257324676035, 48.61459465401724, 0], [-1.264215938953526, 48.61458403401792, 0], [-1.264173594330798, 48.61457523150529, 0], [-1.264130472129528, 48.61456828417205, 0], [-1.26408675700143, 48.61456322176712, 0], [-1.264042636136389, 48.61456006596778, 0], [-1.263998298461877, 48.61455883028742, 0], [-1.263953933833426, 48.61455952001716, 0], [-1.263909732222235, 48.61456213220364, 0], [-1.263865882901381, 48.61456665566129, 0], [-1.263822573635507, 48.61457307102057, 0], [-1.263779989877008, 48.6145813508105, 0], [-1.263738313971581, 48.61459145957689, 0], [-1.263697724378314, 48.61460335403327, 0], [-1.263658394904357, 48.61461698324719, 0], [-1.263641872356427, 48.61462365558212, 0], [-1.26361228817792, 48.61453551155164, 0], [-1.263577540495668, 48.6141257004852, 0], [-1.263579394701717, 48.61412441198329, 0], [-1.26360786418275, 48.61410184058854, 0], [-1.263634046327982, 48.61407808287426, 0], [-1.263652514060165, 48.61405911319032, 0], [-1.264002148082399, 48.61367937660366, 0], [-1.264007462964254, 48.61367350397324, 0], [-1.264028744029984, 48.61364768340593, 0], [-1.264047432692441, 48.61362099521154, 0], [-1.26406344892714, 48.61359355367434, 0], [-1.264076724153938, 48.61356547630443, 0], [-1.264087201530484, 48.61353688333408, 0], [-1.264094836195364, 48.61350789720386, 0], [-1.264099595460806, 48.61347864203729, 0], [-1.264101458951668, 48.6134492431098, 0], [-1.264100418693408, 48.61341982631225, 0], [-1.26409647914554, 48.61339051761182, 0], [-1.264089657182885, 48.61336144251261, 0], [-1.264079982022932, 48.61333272551815, 0], [-1.264075693511366, 48.61332223090956, 0], [-1.264055429998419, 48.61327491686429, 0], [-1.26409066871952, 48.61325676512489, 0], [-1.264117023146361, 48.61324247209221, 0], [-1.264149691459715, 48.61322255763768, 0], [-1.264180325550919, 48.61320126905643, 0], [-1.264208794240425, 48.61317869751116, 0], [-1.264234975621887, 48.61315493965811, 0], [-1.264258757584087, 48.61313009723399, 0], [-1.264280038291163, 48.61310427661919, 0], [-1.264298726618569, 48.61307758838296, 0], [-1.264314742543495, 48.61305014680976, 0], [-1.2643280174868, 48.61302206940975, 0], [-1.264338494607391, 48.61299347641562, 0], [-1.264346129045293, 48.61296449026777, 0], [-1.264346456499057, 48.61296293174382, 0], [-1.264358675229425, 48.61290402229591, 0], [-1.264393629453819, 48.61291299215851, 0], [-1.264435972716875, 48.61292179459066, 0], [-1.26447909354974, 48.61292874180938, 0], [-1.264522807297881, 48.61293380406504, 0], [-1.264566926767619, 48.61293695967964, 0], [-1.264611263027602, 48.6129381951399, 0], [-1.264655626218123, 48.61293750515539, 0], [-1.264699826364046, 48.61293489268071, 0], [-1.264743674188558, 48.61293036890324, 0], [-1.264786981923756, 48.61292395319492, 0], [-1.264829564114529, 48.61291567302964, 0], [-1.264871238413401, 48.6129055638651, 0], [-1.26488176719143, 48.61290247825924, 0], [-1.264991843904455, 48.61311563907948, 0], [-1.265004515039516, 48.61313818865409, 0], [-1.265022453728331, 48.61316510212198, 0], [-1.265043008619879, 48.61319117999784, 0], [-1.265066091698008, 48.61321631061075, 0], [-1.265091604119704, 48.61324038634617, 0], [-1.265119436638493, 48.6132633041064, 0], [-1.265149470072573, 48.61328496575253, 0], [-1.265181575814418, 48.61330527852435, 0], [-1.265215616382163, 48.61332415543778, 0], [-1.265251446007909, 48.61334151565733, 0], [-1.265288911262208, 48.6133572848422, 0], [-1.265327851710874, 48.61337139546491, 0], [-1.265368100602133, 48.61338378710019, 0], [-1.265409485580937, 48.61339440668376, 0], [-1.265451829426587, 48.61340320874, 0], [-1.265494950812149, 48.61341015557595, 0], [-1.265538665080495, 48.61341521744361, 0], [-1.265582785035864, 48.61341837266652, 0], [-1.265627121744788, 48.61341960773345, 0], [-1.265671485345641, 48.61341891735524, 0], [-1.265715685861548, 48.61341630448841, 0], [-1.265759534014117, 48.61341178032205, 0], [-1.265802842033987, 48.61340536422959, 0], [-1.265845424464909, 48.61339708368674, 0], [-1.265887098958325, 48.61338697415269, 0], [-1.26592768705345, 48.61337507891926, 0], [-1.265967014942675, 48.61336144892488, 0], [-1.266004914214935, 48.6133461425366, 0], [-1.266041222577392, 48.61332922530027, 0], [-1.266075784550316, 48.61331076965969, 0], [-1.266108452133095, 48.61329085464629, 0], [-1.266139089368383, 48.61326956262371, 0], [-1.266419246699657, 48.61306163908913, 0], [-1.266447706444458, 48.61303907282166, 0], [-1.266473886696624, 48.61301531445655, 0], [-1.26649766748782, 48.61299047156706, 0], [-1.266518946987443, 48.61296465053585, 0], [-1.266537634076119, 48.61293796193404, 0], [-1.266553648735997, 48.61291052004744, 0], [-1.26656692239377, 48.6128824423876, 0], [-1.266577398213602, 48.61285384918831, 0], [-1.266585031341092, 48.61282486289091, 0], [-1.266589789094603, 48.61279560761971, 0], [-1.266591651105988, 48.61276620865053, 0], [-1.266590609406642, 48.61273679187448, 0], [-1.266586668462371, 48.61270748325862, 0], [-1.266579845153892, 48.61267840830669, 0], [-1.26657016870473, 48.61264969152158, 0], [-1.266557680555256, 48.61262145587229, 0], [-1.266542434186069, 48.61259382226704, 0], [-1.266524494888222, 48.61256690903644, 0], [-1.266503939484103, 48.61254083142565, 0], [-1.26648085599792, 48.61251570110166, 0], [-1.266455343279063, 48.61249162567489, 0], [-1.266427510578758, 48.61246870823838, 0], [-1.266397477081709, 48.61244704692652, 0], [-1.266365371396598, 48.61242673449466, 0], [-1.266331331004553, 48.61240785792216, 0], [-1.266295501670953, 48.61239049803962, 0], [-1.266258036820851, 48.61237472918332, 0], [-1.266219096882417, 48.61236061887616, 0], [-1.266178848599771, 48.61234822753933, 0], [-1.266137464318748, 48.61233760823321, 0], [-1.266095121249558, 48.61232880643009, 0], [-1.266059902919046, 48.61232298524463, 0], [-1.265640648101822, 48.61226153913135, 0], [-1.265632745909302, 48.6122604136775, 0], [-1.265589032634302, 48.61225535184555, 0], [-1.265544913697878, 48.61225219662471, 0], [-1.26550057801919, 48.61225096152596, 0], [-1.265456215445275, 48.61225165183793, 0], [-1.265438542140136, 48.61225269656265, 0], [-1.265629886839521, 48.61184521077672, 0], [-1.266390066905077, 48.61096687933918, 0], [-1.266407308275008, 48.61094565994346, 0], [-1.266425994673257, 48.61091897135676, 0], [-1.2664420087517, 48.61089152948263, 0], [-1.266455281939409, 48.61086345183254, 0], [-1.266465757402466, 48.61083485864025, 0], [-1.266467186678144, 48.61083019035177, 0], [-1.266605050830778, 48.61036733521132, 0], [-1.267328761143776, 48.60954400234456, 0], [-1.26734829064693, 48.60952015834522, 0], [-1.267366976017321, 48.60949346960276, 0], [-1.267382989129378, 48.60946602759493, 0], [-1.267396261416307, 48.60943794983346, 0], [-1.267406736048409, 48.60940935655276, 0], [-1.267414368176139, 48.60938037019444, 0], [-1.267419125122196, 48.60935111488307, 0], [-1.26741976873396, 48.60934481720861, 0], [-1.267575981475682, 48.60763882668152, 0], [-1.267577199150543, 48.60761572536382, 0], [-1.267576156981871, 48.60758630858825, 0], [-1.267572215867037, 48.6075569999979, 0], [-1.267565392687535, 48.60752792509633, 0], [-1.267555716666071, 48.6074992083862, 0], [-1.267543229241537, 48.60747097283622, 0], [-1.267527983891095, 48.60744333935444, 0], [-1.267510045901761, 48.60741642627048, 0], [-1.267489492090088, 48.60739034882907, 0], [-1.26746641047347, 48.60736521869654, 0], [-1.267440899893422, 48.60734114348243, 0], [-1.267413069591779, 48.60731822627902, 0], [-1.267383038743271, 48.60729656521947, 0], [-1.267350935945071, 48.60727625305816, 0], [-1.267316898665996, 48.60725737677326, 0], [-1.267281072658055, 48.60724001719417, 0], [-1.267243611332194, 48.60722424865573, 0], [-1.267204675101274, 48.60721013867975, 0], [-1.267164430693528, 48.60719774768587, 0], [-1.267123050438406, 48.60718712873296, 0], [-1.267080711528827, 48.60717832729186, 0], [-1.26703759526229, 48.60717138105072, 0], [-1.266993886264749, 48.60716631975366, 0], [-1.266949771700008, 48.60716316507335, 0], [-1.266905440468482, 48.60716193051825, 0], [-1.266861082398205, 48.60716262137481, 0], [-1.266816887432218, 48.6071652346847, 0], [-1.266773044815182, 48.60716975925766, 0], [-1.266729742283042, 48.60717617571935, 0], [-1.266687165259335, 48.60718445659401, 0], [-1.266645496060923, 48.60719456642282, 0], [-1.266604913118177, 48.60720646191481, 0], [-1.266565590209787, 48.60722009213305, 0], [-1.266527695719681, 48.60723539871217, 0], [-1.266491391915539, 48.60725231610858, 0], [-1.266456834254166, 48.60727077188088, 0], [-1.266454360527243, 48.60727219082437, 0], [-1.265155755343577, 48.60802069798778, 0], [-1.264047103637358, 48.60789876035135, 0], [-1.264030895333839, 48.60789711084891, 0], [-1.263986780314441, 48.6078939550269, 0], [-1.263942448512092, 48.60789271932439, 0], [-1.263898089757303, 48.60789340903281, 0], [-1.263853893996012, 48.60789602119868, 0], [-1.263810050476277, 48.60790054463663, 0], [-1.263766746937962, 48.60790695997721, 0], [-1.263750921517248, 48.60790980361223, 0], [-1.263202474455603, 48.60801308736664, 0], [-1.263175721633105, 48.60801852337573, 0], [-1.26313405103923, 48.60802863192582, 0], [-1.263093466594405, 48.60804052617247, 0], [-1.263054142083937, 48.60805415518384, 0], [-1.263016245898427, 48.60806946059985, 0], [-1.262979940312869, 48.60808637688182, 0], [-1.262945380791645, 48.60810483159321, 0], [-1.262912715322935, 48.60812474570978, 0], [-1.262882083784689, 48.60814603395793, 0], [-1.262853617346242, 48.60816860517976, 0], [-1.262827437906167, 48.60819236272344, 0], [-1.262808972739171, 48.60821133149428, 0], [-1.262658503916609, 48.60837476739238, 0], [-1.262618430348166, 48.60838553340705, 0], [-1.26257879747812, 48.60839717227114, 0], [-1.262539472549746, 48.60841080110539, 0], [-1.262501575939297, 48.60842610635074, 0], [-1.262465269923603, 48.60844302246917, 0], [-1.262430709968905, 48.60846147702485, 0], [-1.262398044065143, 48.60848139099412, 0], [-1.262367412092265, 48.60850267910412, 0], [-1.262338945221424, 48.60852525019751, 0], [-1.262316206496681, 48.60854569221159, 0], [-1.262298970254308, 48.60854544050518, 0], [-1.262254610901896, 48.60854612957674, 0], [-1.262210414482292, 48.60854874110793, 0], [-1.26216657024651, 48.60855326391642, 0], [-1.262123265937272, 48.60855967863501, 0], [-1.262080686985887, 48.60856795779573, 0], [-1.262039015717371, 48.60857806594698, 0], [-1.261998430570848, 48.60858995980499, 0], [-1.2619591053348, 48.60860358843981, 0], [-1.261921208402788, 48.60861889349279, 0], [-1.261884902053061, 48.608635809427, 0], [-1.261850341753219, 48.60865426380731, 0], [-1.261817675494821, 48.60867417761075, 0], [-1.261789687542525, 48.60869351460252, 0], [-1.26107393892587, 48.60921848097193, 0], [-1.261071294487381, 48.6092204319181, 0], [-1.26104282662945, 48.60924300268823, 0], [-1.261016645776125, 48.60926675981638, 0], [-1.260992864039106, 48.60929160157251, 0], [-1.260971583257748, 48.60931742158184, 0], [-1.260952894562317, 48.60934410928057, 0], [-1.260936877983994, 48.60937155038917, 0], [-1.260923602111972, 48.60939962740167, 0], [-1.260913123799674, 48.60942822008913, 0], [-1.260905487921524, 48.60945720601383, 0], [-1.260901490962221, 48.6094802736225, 0], [-1.260877320641876, 48.60966074727084, 0], [-1.260038261608083, 48.61001462869984, 0], [-1.260030717987835, 48.61001785695558, 0], [-1.259994409993943, 48.61003477228883, 0], [-1.259959848040804, 48.61005322609696, 0], [-1.25992718012671, 48.61007313935948, 0], [-1.259896546140542, 48.61009442680644, 0], [-1.259868077261788, 48.61011699728329, 0], [-1.25984189539943, 48.61014075414169, 0], [-1.259838378713687, 48.61014420896316, 0], [-1.257163417853711, 48.61279838906726, 0], [-1.257143149604891, 48.61281977527986, 0], [-1.257121865357427, 48.61284559456841, 0], [-1.257103173311156, 48.61287228163333, 0], [-1.257087153511689, 48.61289972219779, 0], [-1.257073874561889, 48.61292779875831, 0], [-1.25706478080744, 48.61295208762934, 0], [-1.256847445925249, 48.61361039951218, 0], [-1.256231647584889, 48.61384467236022, 0], [-1.256197676362714, 48.61385849141628, 0], [-1.256161364310628, 48.61387540553024, 0], [-1.256126798315282, 48.61389385817712, 0], [-1.256094126392535, 48.6139137703414, 0], [-1.256063488448154, 48.61393505675807, 0], [-1.256035015678552, 48.61395762627684, 0], [-1.256008830009738, 48.61398138225335, 0], [-1.255985043574037, 48.61400622296248, 0], [-1.255963758230869, 48.614032042034, 0], [-1.255947802693358, 48.61405452008826, 0], [-1.25573362947194, 48.61437923359666, 0], [-1.255489385002171, 48.61447290923803, 0], [-1.255457483022133, 48.61448593743882, 0], [-1.255421170268729, 48.61450285131736, 0], [-1.255412964966751, 48.61450701073709, 0], [-1.254835432593986, 48.61480441714611, 0], [-1.254809070878655, 48.61481871001592, 0], [-1.254776397834345, 48.61483862180317, 0], [-1.2547457587697, 48.61485990786601, 0], [-1.254717284886249, 48.61488247705593, 0], [-1.254691098114458, 48.61490623272975, 0], [-1.254672626198921, 48.61492520150522, 0], [-1.254102150869245, 48.6155446051518, 0], [-1.253237648639263, 48.61598976086305, 0], [-1.253211285032525, 48.61600405378466, 0], [-1.253178610586796, 48.61602396511452, 0], [-1.253147970125068, 48.61604525074838, 0], [-1.253119494854587, 48.61606781953933, 0], [-1.253093306712032, 48.6160915748461, 0], [-1.253074835655688, 48.61611054130374, 0], [-1.252631371983464, 48.61659200141092, 0], [-1.251902164644851, 48.61696747298707, 0], [-1.24996381601139, 48.61737519028635, 0], [-1.249956978331628, 48.61737665495142, 0], [-1.249915297336353, 48.61738675868428, 0], [-1.249874702223022, 48.61739864823802, 0], [-1.249835366822765, 48.61741227270105, 0], [-1.249797459572686, 48.61742757373278, 0], [-1.24976114279522, 48.61744448581323, 0], [-1.249726572002652, 48.61746293652391, 0], [-1.249693895231423, 48.61748284685761, 0], [-1.249663252408024, 48.6175041315571, 0], [-1.249634774749773, 48.61752669947946, 0], [-1.249608584203601, 48.61755045398715, 0], [-1.249590107091221, 48.61756942444855, 0], [-1.249588480565087, 48.61757119017085, 0], [-1.248928121484829, 48.61759572309477, 0], [-1.248883916428374, 48.61759832947968, 0], [-1.248840063113015, 48.61760284718169, 0], [-1.248796749320442, 48.6176092568558, 0], [-1.248754160522394, 48.61761753105544, 0], [-1.248712479086211, 48.6176276343503, 0], [-1.248671883494583, 48.61763952347737, 0], [-1.248632547580397, 48.61765314752702, 0], [-1.248594639783276, 48.6176684481603, 0], [-1.248558322427893, 48.61768535985898, 0], [-1.248523751029089, 48.61770381020627, 0], [-1.248491073625586, 48.61772372019649, 0], [-1.248460430146912, 48.61774500457366, 0], [-1.24843195181318, 48.61776757219652, 0], [-1.248405760573923, 48.61779132642882, 0], [-1.248381968585584, 48.6178161655527, 0], [-1.248360677731344, 48.61784198320487, 0], [-1.248357949780379, 48.61784587640148, 0], [-1.248354972557451, 48.6178457336185, 0], [-1.247561338430474, 48.61780911368209, 0], [-1.247536554564455, 48.61780206224454, 0], [-1.247098237270714, 48.61620839586915, 0], [-1.247097436133478, 48.61620553540573, 0], [-1.247087770121307, 48.61617681698068, 0], [-1.24707529202589, 48.61614857921284, 0], [-1.247060055284341, 48.61612094301968, 0], [-1.247042125146887, 48.61609402674266, 0], [-1.247021578396446, 48.61606794564006, 0], [-1.246998503020136, 48.61604281139378, 0], [-1.246972997832794, 48.61601873163107, 0], [-1.246945172053133, 48.61599580946367, 0], [-1.24691514483654, 48.61597414304601, 0], [-1.2468830447647, 48.61595382515552, 0], [-1.246849009294757, 48.61593494279469, 0], [-1.24681318417071, 48.61591757681915, 0], [-1.246775722800044, 48.61590180159094, 0], [-1.246736785595684, 48.61588768466064, 0], [-1.246696539290035, 48.6158752864776, 0], [-1.246655156220764, 48.61586466013151, 0], [-1.24661281359278, 48.61585585112495, 0], [-1.246569692719308, 48.61584889717825, 0], [-1.246525978246347, 48.61584382806876, 0], [-1.246481857360982, 48.61584066550243, 0], [-1.246437518990726, 48.6158394230216, 0], [-1.24639315299419, 48.61584010594659, 0], [-1.246348949348326, 48.61584271135313, 0], [-1.246305097334985, 48.61584722808463, 0], [-1.246261784730303, 48.61585363680048, 0], [-1.24621919700102, 48.61586191005803, 0], [-1.246177516509781, 48.61587201243105, 0], [-1.246136921735379, 48.61588390066061, 0], [-1.246097586507065, 48.61589752384071, 0], [-1.246082626169276, 48.61590356200589, 0], [-1.246074943115563, 48.61588750055275, 0], [-1.246072734629129, 48.61588296717541, 0], [-1.246057498518576, 48.61585533084845, 0], [-1.246039569011836, 48.61582841441397, 0], [-1.246019022889133, 48.61580233313099, 0], [-1.245995948135346, 48.61577719868226, 0], [-1.245970443562152, 48.61575311869592, 0], [-1.245942618385889, 48.6157301962845, 0], [-1.245912591759284, 48.61570852960365, 0], [-1.245880492261504, 48.6156882114317, 0], [-1.245846457347137, 48.61566932877259, 0], [-1.245810632758122, 48.61565196248302, 0], [-1.245782025459812, 48.61563971168037, 0], [-1.24527766358195, 48.61543543449824, 0], [-1.245135455906055, 48.61509179755218, 0], [-1.245125687646294, 48.61507030950584, 0], [-1.245110452301528, 48.61504267305151, 0], [-1.245092523590672, 48.61501575646743, 0], [-1.245071978290491, 48.61498967501343, 0], [-1.245048904382007, 48.61496454037267, 0], [-1.245023400673622, 48.61494046017419, 0], [-1.244995576377854, 48.61491753753149, 0], [-1.244965550643775, 48.61489587060124, 0], [-1.244933452046355, 48.61487555216291, 0], [-1.244899418036825, 48.6148566692213, 0], [-1.244863594352945, 48.61483930263465, 0], [-1.244826134395629, 48.61482352676767, 0], [-1.244787198572104, 48.61480940917346, 0], [-1.244746953608822, 48.61479701030437, 0], [-1.244705571837672, 48.61478638325297, 0], [-1.24466323045783, 48.61477757352483, 0], [-1.244620110777384, 48.61477061884347, 0], [-1.244576397437176, 48.6147655489893, 0], [-1.244532277619437, 48.61476238567149, 0], [-1.244487940247123, 48.61476114243561, 0], [-1.244443575174508, 48.61476182460518, 0], [-1.244399372374667, 48.61476442925915, 0], [-1.244355521125755, 48.61476894524429, 0], [-1.244312209200709, 48.61477535322296, 0], [-1.244269622063292, 48.61478362575586, 0], [-1.244227942073672, 48.61479372741981, 0], [-1.244187347708423, 48.61480561495888, 0], [-1.244148012795077, 48.61481923747, 0], [-1.244110105769039, 48.61483453662106, 0], [-1.244073788951685, 48.61485144690008, 0], [-1.244039217855519, 48.61486989589625, 0], [-1.244006540518003, 48.61488980460985, 0], [-1.243975896868326, 48.6149110877903, 0], [-1.24394741812742, 48.61493365430137, 0], [-1.243921226246436, 48.61495740751172, 0], [-1.243897433384695, 48.61498224570779, 0], [-1.243876141429037, 48.61500806253022, 0], [-1.243857441557545, 48.61503474742888, 0], [-1.243841413849345, 48.61506218613614, 0], [-1.243828126941231, 48.61509026115637, 0], [-1.243817637733828, 48.61511885226913, 0], [-1.243811546746534, 48.61514092886468, 0], [-1.243717525692571, 48.61553735313805, 0], [-1.242983084745952, 48.61556460135693, 0], [-1.242938881165576, 48.61556720544695, 0], [-1.242895029086308, 48.61557172087247, 0], [-1.242851716284583, 48.61557812829834, 0], [-1.242809128227942, 48.61558640028763, 0], [-1.242767447280508, 48.6155965014194, 0], [-1.242726851922933, 48.61560838844005, 0], [-1.242687515987024, 48.61562201044881, 0], [-1.242649607912545, 48.61563730911557, 0], [-1.242613290025367, 48.61565421893057, 0], [-1.242578717842551, 48.61567266748489, 0], [-1.242546039406214, 48.61569257578072, 0], [-1.242515394650361, 48.61571385856924, 0], [-1.242486914800443, 48.61573642471603, 0], [-1.242460721812584, 48.61576017759115, 0], [-1.242436927850723, 48.61578501548252, 0], [-1.242415634806375, 48.61581083203218, 0], [-1.242396933862402, 48.61583751669106, 0], [-1.242380905102443, 48.61586495519261, 0], [-1.24236761716781, 48.61589303004202, 0], [-1.242357126963585, 48.61592162101965, 0], [-1.24234947941511, 48.61595060569506, 0], [-1.242344707274987, 48.61597985995216, 0], [-1.242342830983325, 48.61600925852006, 0], [-1.242343320737722, 48.61602327871794, 0], [-1.242152518214021, 48.61586032617572, 0], [-1.242130968888877, 48.61584284635353, 0], [-1.242100943835813, 48.61582117867316, 0], [-1.24206884580482, 48.61580085943275, 0], [-1.24203481224429, 48.61578197564074, 0], [-1.241998988890107, 48.61576460815865, 0], [-1.241961529142124, 48.61574883135523, 0], [-1.241922593406348, 48.61573471278763, 0], [-1.241882348408874, 48.61572231291223, 0], [-1.241840966481729, 48.61571168482605, 0], [-1.241798624825028, 48.61570287403895, 0], [-1.241755504747779, 48.61569591827914, 0], [-1.241711790892563, 48.61569084733152, 0], [-1.241667670443869, 48.61568768291, 0], [-1.241623332327291, 48.61568643856485, 0], [-1.241578966400339, 48.61568711962438, 0], [-1.241534762639727, 48.61568972317224, 0], [-1.241490910327765, 48.61569423805995, 0], [-1.241447597241907, 48.61570064495459, 0], [-1.241431769204666, 48.61570348529704, 0], [-1.241247904599385, 48.61573806676205, 0], [-1.240858779439811, 48.61558755700515, 0], [-1.240767332159842, 48.61540072452942, 0], [-1.240766522373804, 48.61539908085022, 0], [-1.240751289323023, 48.61537144381644, 0], [-1.240733362826056, 48.61534452655035, 0], [-1.240712819650296, 48.6153184443145, 0], [-1.240689747767911, 48.61529330879576, 0], [-1.240673632762961, 48.61527770663503, 0], [-1.240317938077056, 48.61494840203852, 0], [-1.239655269948605, 48.61325383399979, 0], [-1.239643052951431, 48.61322625264579, 0], [-1.239627821174991, 48.61319861545914, 0], [-1.239609896052565, 48.61317169801374, 0], [-1.239589354345649, 48.61314561557313, 0], [-1.239566284020119, 48.61312047982484, 0], [-1.239540783868789, 48.61309639840263, 0], [-1.239512963088989, 48.61307347442524, 0], [-1.239482940814642, 48.61305180605486, 0], [-1.239450845606291, 48.61303148607731, 0], [-1.239416814900238, 48.61301260150409, 0], [-1.239380994420116, 48.61299523320013, 0], [-1.239362513108295, 48.61298716324475, 0], [-1.239307408071662, 48.61296394705914, 0], [-1.238801492996209, 48.61157058091715, 0], [-1.238798882326389, 48.61156363402585, 0], [-1.238786410024098, 48.61153539534737, 0], [-1.238771179229452, 48.61150775804401, 0], [-1.238753255167158, 48.61148084046197, 0], [-1.238732714594155, 48.61145475786516, 0], [-1.238709645471143, 48.6114296219419, 0], [-1.238695926340652, 48.61141625049571, 0], [-1.236613295578566, 48.60946278404123, 0], [-1.236601516724194, 48.60945207365661, 0], [-1.236573699296832, 48.60942914896023, 0], [-1.236543680461095, 48.60940747981471, 0], [-1.236511588762417, 48.60938715900907, 0], [-1.236477561622511, 48.60936827355823, 0], [-1.236472854676358, 48.60936585230947, 0], [-1.236262608041976, 48.60925867881767, 0], [-1.235804097984954, 48.60832155790068, 0], [-1.235803286487205, 48.60831991012317, 0], [-1.235788058303031, 48.60829227241801, 0], [-1.235770136980585, 48.60826535436406, 0], [-1.235749599265097, 48.60823927122745, 0], [-1.235726533104975, 48.60821413469851, 0], [-1.235701037275587, 48.60819005241446, 0], [-1.2356732209556, 48.60816712749763, 0], [-1.235643203259931, 48.60814545811449, 0], [-1.235611112729238, 48.60812513705498, 0], [-1.2355770867801, 48.60810625133514, 0], [-1.235576174660999, 48.60810577868047, 0], [-1.234121723509023, 48.60735339525775, 0], [-1.234086821045983, 48.60733649799332, 0], [-1.234049369976338, 48.60732071855876, 0], [-1.234010442977853, 48.60730659729384, 0], [-1.23397020666673, 48.60729419463151, 0], [-1.233928833337847, 48.60728356368058, 0], [-1.233886500154449, 48.60727474996327, 0], [-1.233843388389291, 48.60726779122038, 0], [-1.233799682649364, 48.60726271724944, 0], [-1.233755570084383, 48.6072595497776, 0], [-1.23371123958623, 48.60725830236778, 0], [-1.233666880979802, 48.60725898036173, 0], [-1.233622684210358, 48.6072615808561, 0], [-1.233578838530411, 48.60726609271559, 0], [-1.233535531688879, 48.60727249662004, 0], [-1.233492949127881, 48.60728076514786, 0], [-1.233451273187902, 48.6072908628927, 0], [-1.233410682328129, 48.60730274661571, 0], [-1.233371350361305, 48.60731636543007, 0], [-1.233333445710148, 48.60733166101934, 0], [-1.23329713068568, 48.60734856788697, 0], [-1.233262560792772, 48.60736701363665, 0], [-1.233229884063969, 48.60738691928266, 0], [-1.233199240425542, 48.6074081995875, 0], [-1.233170761098565, 48.60743076342743, 0], [-1.233144568036686, 48.60745451418214, 0], [-1.233120773404361, 48.60747935014899, 0], [-1.233099479095725, 48.60750516497798, 0], [-1.233080776299154, 48.60753184812747, 0], [-1.23306474510622, 48.60755928533745, 0], [-1.23305145416857, 48.60758735911859, 0], [-1.233040960404392, 48.60761594925585, 0], [-1.233033308753959, 48.60764493332243, 0], [-1.233028531987777, 48.60767418720475, 0], [-1.233026650565339, 48.60770358563357, 0], [-1.233027672548497, 48.60773300272041, 0], [-1.233031593566047, 48.60776231249674, 0], [-1.233038396832538, 48.60779138945326, 0], [-1.233047841016253, 48.60781956134012, 0], [-1.233519239252958, 48.60903947978478, 0], [-1.233519451466985, 48.60904002752132, 0], [-1.233531920196753, 48.60906826677741, 0], [-1.23354714737693, 48.60909590478154, 0], [-1.23356506780649, 48.6091228231822, 0], [-1.233585604750636, 48.60914890670954, 0], [-1.23360867027003, 48.60917404366846, 0], [-1.23363416559684, 48.60919812641721, 0], [-1.233661981557854, 48.60922105182819, 0], [-1.233691999042113, 48.6092427217295, 0], [-1.233724089510455, 48.60926304332583, 0], [-1.233758115546404, 48.60928192959513, 0], [-1.233793931444231, 48.60929929966191, 0], [-1.233812405719821, 48.60930736849932, 0], [-1.234264621749164, 48.6094979371254, 0], [-1.234358757750278, 48.60969034155035, 0], [-1.234591974185662, 48.61019633085756, 0], [-1.235015536335735, 48.61167966846324, 0], [-1.235025137592285, 48.61170818803938, 0], [-1.235037607827569, 48.61173642712728, 0], [-1.235052836641499, 48.61176406492688, 0], [-1.235070758825916, 48.61179098308782, 0], [-1.235091297638826, 48.61181706634114, 0], [-1.235114365132521, 48.61184220299298, 0], [-1.235135075643987, 48.61186201246348, 0], [-1.235831175481459, 48.61249110978704, 0], [-1.236154351175964, 48.61333508658309, 0], [-1.23615493804258, 48.61333660802195, 0], [-1.236167409314954, 48.61336484698419, 0], [-1.236182639241914, 48.61339248463101, 0], [-1.236200562610283, 48.61341940261256, 0], [-1.236221102672934, 48.61344548566077, 0], [-1.236244171477121, 48.61347062208263, 0], [-1.236269670240942, 48.61349470423858, 0], [-1.236297489776517, 48.61351762900355, 0], [-1.236327510957438, 48.61353929820866, 0], [-1.236359605228778, 48.61355961906118, 0], [-1.236393635157673, 48.61357850454252, 0], [-1.236429455022068, 48.61359587378054, 0], [-1.236458045949014, 48.61360812168122, 0], [-1.236494487883184, 48.61362288669623, 0], [-1.236207337836623, 48.61358072603828, 0], [-1.236199438252097, 48.61357959886967, 0], [-1.236155726794543, 48.61357452580006, 0], [-1.236111608550146, 48.61357135923721, 0], [-1.236067272435086, 48.61357011274026, 0], [-1.236022908298362, 48.61357079164691, 0], [-1.235978706108913, 48.61357339305001, 0], [-1.235934855142395, 48.61357790581025, 0], [-1.235891543170486, 48.61358431060371, 0], [-1.235848955657131, 48.61359258000503, 0], [-1.235807274964114, 48.61360267860403, 0], [-1.235789549166604, 48.61360786794407, 0], [-1.23471660400005, 48.61236703426386, 0], [-1.234695773654102, 48.6123445049813, 0], [-1.234670276225953, 48.61232042247324, 0], [-1.234642458093056, 48.61229749731131, 0], [-1.234612438378062, 48.61227582766291, 0], [-1.234580345630523, 48.6122555063191, 0], [-1.234546317276168, 48.61223662029736, 0], [-1.23451049902882, 48.61221925046878, 0], [-1.234473044266229, 48.6122034712122, 0], [-1.2344431501584, 48.61219262794396, 0], [-1.234399873812373, 48.6121087097201, 0], [-1.234387214101453, 48.6120861518232, 0], [-1.234369292177349, 48.61205923355566, 0], [-1.234348753639838, 48.61203315017325, 0], [-1.234325686440847, 48.61200801336745, 0], [-1.23430018936008, 48.61198393077649, 0], [-1.23427237158166, 48.61196100552415, 0], [-1.234242352226738, 48.61193933577827, 0], [-1.234210259843107, 48.61191901433035, 0], [-1.23417855380723, 48.6119014169233, 0], [-1.234187676043197, 48.61188840293706, 0], [-1.234203708002717, 48.61186096557647, 0], [-1.234216999426139, 48.61183289166819, 0], [-1.234227493401428, 48.61180430142994, 0], [-1.234235144996525, 48.61177531729032, 0], [-1.234239921450777, 48.61174606336432, 0], [-1.234241802315641, 48.61171666492224, 0], [-1.234240779542095, 48.61168724785279, 0], [-1.234236857514812, 48.61165793812426, 0], [-1.234230053033634, 48.61162886124527, 0], [-1.234220395241088, 48.61160014172683, 0], [-1.23420792549799, 48.61157190254967, 0], [-1.234192697206082, 48.6115442646374, 0], [-1.2341747755789, 48.6115173463386, 0], [-1.234154237363272, 48.61149126292042, 0], [-1.234131170509805, 48.61146612607465, 0], [-1.234105673796564, 48.61144204343965, 0], [-1.234077856406173, 48.61141911813939, 0], [-1.234047837458046, 48.61139744834188, 0], [-1.234015745498396, 48.61137712683874, 0], [-1.233981717949597, 48.61135824064826, 0], [-1.233945900522093, 48.61134087064223, 0], [-1.233908446589997, 48.61132509120012, 0], [-1.233869516534558, 48.6113109698904, 0], [-1.233829277057548, 48.61129856718137, 0], [-1.233793243842056, 48.61128930907081, 0], [-1.233764866428877, 48.61095224494345, 0], [-1.233760944735967, 48.61092293519746, 0], [-1.233754140629009, 48.61089385828893, 0], [-1.233744483248993, 48.61086513872917, 0], [-1.233732013955016, 48.61083689949901, 0], [-1.233716786146601, 48.61080926152222, 0], [-1.233698865035706, 48.6107823431479, 0], [-1.233678327366501, 48.61075625964326, 0], [-1.233655261087394, 48.61073112270053, 0], [-1.233629764974074, 48.61070703995853, 0], [-1.233601948206564, 48.61068411454173, 0], [-1.233571929901562, 48.61066244461843, 0], [-1.233539838602584, 48.61064212298113, 0], [-1.233505811729285, 48.61062323664845, 0], [-1.233469994988812, 48.6106058664928, 0], [-1.233432541752739, 48.61059008689433, 0], [-1.233393612399198, 48.61057596542223, 0], [-1.233388548955694, 48.61051581612549, 0], [-1.233384627515881, 48.61048650636586, 0], [-1.233377823685262, 48.61045742943428, 0], [-1.233368166603668, 48.61042870984205, 0], [-1.233355697628895, 48.61040047057026, 0], [-1.23334047015911, 48.61037283254268, 0], [-1.23332254940479, 48.61034591410878, 0], [-1.233302012108626, 48.61031983053601, 0], [-1.233278946217389, 48.61029469351687, 0], [-1.233253450505107, 48.61027061069044, 0], [-1.233225634150128, 48.61024768518168, 0], [-1.233195616267349, 48.61022601515918, 0], [-1.233163525398506, 48.61020569341589, 0], [-1.233129498961378, 48.61018680697084, 0], [-1.233093682661273, 48.61016943669706, 0], [-1.233056229867826, 48.61015365697513, 0], [-1.233017300957351, 48.61013953537469, 0], [-1.232977062626643, 48.61012713236519, 0], [-1.232935687179235, 48.61011650105703, 0], [-1.232893351787483, 48.61010768697389, 0], [-1.232850237733516, 48.61010072785799, 0], [-1.232850161149857, 48.61010071896692, 0], [-1.232798957767043, 48.61000509509154, 0], [-1.23278891540618, 48.60998751503201, 0], [-1.232770995083934, 48.60996059651113, 0], [-1.232766057929609, 48.60995393340933, 0], [-1.231475140314764, 48.60824740457449, 0], [-1.23145954164269, 48.60822798382628, 0], [-1.231437760855016, 48.60820415210839, 0], [-1.23064658500684, 48.60739606090572, 0], [-1.229840578373465, 48.60633045072431, 0], [-1.229824981348513, 48.60631103031015, 0], [-1.229801919029998, 48.60628589258485, 0], [-1.229776427011122, 48.60626180897878, 0], [-1.229748614454365, 48.60623888262001, 0], [-1.229718600458536, 48.60621721168108, 0], [-1.229686513548367, 48.60619688895866, 0], [-1.229652491124968, 48.60617800147593, 0], [-1.229638044824613, 48.60617070560394, 0], [-1.229563425211504, 48.60613405655685, 0], [-1.229430637590645, 48.60579610402322, 0], [-1.229418655708059, 48.6057691026799, 0], [-1.229403431800364, 48.60574146412166, 0], [-1.229385514799621, 48.60571454506452, 0], [-1.229364981432435, 48.60568846077887, 0], [-1.229341919628788, 48.60566332296008, 0], [-1.229316428145184, 48.60563923925073, 0], [-1.229288616141824, 48.6056163127794, 0], [-1.22925860271514, 48.60559464171914, 0], [-1.229226516387425, 48.60557431886706, 0], [-1.229192494557332, 48.60555543124703, 0], [-1.229156682910484, 48.60553805973712, 0], [-1.229119234796254, 48.60552227872314, 0], [-1.229080310571191, 48.60550815578037, 0], [-1.229046418969866, 48.6054975671243, 0], [-1.228779119176127, 48.60541996468906, 0], [-1.22873671013259, 48.60533769713281, 0], [-1.228724054661678, 48.60531513860125, 0], [-1.228706138175804, 48.60528821943716, 0], [-1.228685605334476, 48.60526213502904, 0], [-1.228662544065322, 48.6052369970728, 0], [-1.228637053122546, 48.60521291321163, 0], [-1.228609241664089, 48.60518998657467, 0], [-1.228579228783988, 48.60516831533579, 0], [-1.228547143002297, 48.60514799229278, 0], [-1.228513121715049, 48.60512910447039, 0], [-1.228477310605851, 48.60511173274757, 0], [-1.228439863021698, 48.60509595151098, 0], [-1.228400939316798, 48.60508182833685, 0], [-1.228360706165688, 48.60506942370138, 0], [-1.228319335849735, 48.60505879072177, 0], [-1.228277005519034, 48.60504997492899, 0], [-1.228233896434372, 48.60504301407274, 0], [-1.228190193191248, 48.60503793795949, 0], [-1.228146082928585, 48.60503476832565, 0], [-1.228101754528475, 48.60503351874342, 0], [-1.228057397806759, 48.60503419456386, 0], [-1.228013202700764, 48.60503679289285, 0], [-1.227969358455709, 48.60504130260425, 0], [-1.227926052814516, 48.60504770438741, 0], [-1.227883471214051, 48.60505597082954, 0], [-1.227841795990798, 48.60506606653344, 0], [-1.227801205600889, 48.60507794826873, 0], [-1.227761873854869, 48.60509156515733, 0], [-1.227723969174515, 48.60510685889109, 0], [-1.22768765387119, 48.60512376398122, 0], [-1.227653083450924, 48.60514220803918, 0], [-1.22762040594828, 48.60516211208635, 0], [-1.227589761293166, 48.60518339089215, 0], [-1.227309481080507, 48.60539121693888, 0], [-1.22728100025491, 48.60541377931592, 0], [-1.227254805463993, 48.6054375287256, 0], [-1.22723100887945, 48.60546236347075, 0], [-1.227209712404027, 48.60548817720694, 0], [-1.227191007235373, 48.60551485939708, 0], [-1.227174973474974, 48.60554229578519, 0], [-1.227161679785604, 48.60557036888564, 0], [-1.227151183097246, 48.60559895848596, 0], [-1.22714352836266, 48.60562794216195, 0], [-1.227138748365442, 48.6056571958017, 0], [-1.227136863579295, 48.60568659413686, 0], [-1.227137882080118, 48.60571601127946, 0], [-1.227141799511717, 48.60574532126071, 0], [-1.227148599103947, 48.60577439857043, 0], [-1.227158251744833, 48.60580311869462, 0], [-1.227170716104857, 48.60583135864852, 0], [-1.227185938813911, 48.60585899750353, 0], [-1.227203854690113, 48.60588591690471, 0], [-1.227224387018111, 48.60591200157777, 0], [-1.227247447878292, 48.60593713982286, 0], [-1.227272938522988, 48.60596122399253, 0], [-1.22730074979895, 48.60598415095309, 0], [-1.227330762615202, 48.60600582252619, 0], [-1.227362848452549, 48.60602614590924, 0], [-1.227396869914437, 48.60604503407255, 0], [-1.227432681314662, 48.60606240613259, 0], [-1.227470129301873, 48.6060781876978, 0], [-1.227509053515965, 48.60609231118766, 0], [-1.22754928727465, 48.60610471612178, 0], [-1.227590658287565, 48.60611534937901, 0], [-1.227632989393845, 48.60612416542507, 0], [-1.227668201096499, 48.60612999874961, 0], [-1.227682461943582, 48.60613209403663, 0], [-1.227723008125954, 48.60623529346931, 0], [-1.2277349881579, 48.6062622923113, 0], [-1.227750211307161, 48.6062899310907, 0], [-1.22776812763828, 48.60631685040296, 0], [-1.227788660434384, 48.60634293497414, 0], [-1.227789715437728, 48.60634417003492, 0], [-1.227995533603179, 48.60658422956676, 0], [-1.228118116551971, 48.606896222163, 0], [-1.228130096953102, 48.60692322096264, 0], [-1.22814532051907, 48.60695085968847, 0], [-1.228163237296711, 48.6069777789379, 0], [-1.228183770567095, 48.60700386343726, 0], [-1.228185551427095, 48.60700594294015, 0], [-1.231443950306947, 48.61078697287665, 0], [-1.231445739415229, 48.61078904930504, 0], [-1.231447382887927, 48.61079095132395, 0], [-1.231699915394413, 48.6110806738482, 0], [-1.231719552396338, 48.61110183116765, 0], [-1.231745047795729, 48.61112591433455, 0], [-1.23177286396174, 48.61114884020204, 0], [-1.231802881782209, 48.61117051059636, 0], [-1.231834972716939, 48.61119083271994, 0], [-1.231868999347052, 48.61120971954876, 0], [-1.231904815964604, 48.61122709020464, 0], [-1.23194226919582, 48.61124287030231, 0], [-1.231981198657954, 48.61125699226742, 0], [-1.232015091437977, 48.61126757908864, 0], [-1.23209547781753, 48.61129091185416, 0], [-1.232128923849334, 48.61168833440827, 0], [-1.232132844651657, 48.61171764420894, 0], [-1.232139647933475, 48.61174672121242, 0], [-1.232149304567067, 48.61177544090617, 0], [-1.232161773205629, 48.61180368030718, 0], [-1.232177000461086, 48.61183131848928, 0], [-1.232194921131653, 48.61185823710027, 0], [-1.232215458481794, 48.61188432086941, 0], [-1.232238524570373, 48.61190945810058, 0], [-1.232264020627099, 48.61193354115074, 0], [-1.232291837475723, 48.61195646689104, 0], [-1.232321856001308, 48.61197813714839, 0], [-1.232353947660299, 48.61199845912557, 0], [-1.23238797503104, 48.6120173457992, 0], [-1.232423792402388, 48.612034716292, 0], [-1.232461246397074, 48.61205049621917, 0], [-1.232500176629372, 48.61206461800716, 0], [-1.232540416391255, 48.61207702118287, 0], [-1.232581793366601, 48.61208765263275, 0], [-1.232624130368984, 48.61209646683012, 0], [-1.232664269047685, 48.6121029455124, 0], [-1.232672371131209, 48.61211511536588, 0], [-1.232692908833548, 48.61214119904894, 0], [-1.232715975278242, 48.61216633618351, 0], [-1.232741471693482, 48.61219041912703, 0], [-1.232769288901499, 48.61221334475107, 0], [-1.232799307785677, 48.61223501488285, 0], [-1.232831399801162, 48.61225533672597, 0], [-1.232863105589037, 48.61227293450572, 0], [-1.23285398294096, 48.61228594838609, 0], [-1.232837950110417, 48.61231338555699, 0], [-1.232824657791072, 48.61234145930443, 0], [-1.23281416290707, 48.61237004941324, 0], [-1.232806510403399, 48.61239903345692, 0], [-1.232801733054183, 48.61242828732201, 0], [-1.232799851321713, 48.61245768573923, 0], [-1.23280087326888, 48.61248710282028, 0], [-1.23280479452466, 48.61251641259662, 0], [-1.232811598302561, 48.61254548955888, 0], [-1.232821255472745, 48.61257420919459, 0], [-1.232833724686226, 48.61260244852119, 0], [-1.232848952552135, 48.6126300866126, 0], [-1.232866873866467, 48.61265700511724, 0], [-1.232887411890689, 48.61268308876463, 0], [-1.232910478680707, 48.61270822585928, 0], [-1.232935975463472, 48.61273230875872, 0], [-1.232963793059498, 48.61275523433471, 0], [-1.232993812350691, 48.61277690441483, 0], [-1.233025904790177, 48.61279722620277, 0], [-1.233059932953045, 48.61281611267584, 0], [-1.233095751124513, 48.61283348295761, 0], [-1.233133205924155, 48.61284926266428, 0], [-1.233172136962708, 48.61286338422309, 0], [-1.233212377528667, 48.61287578716203, 0], [-1.233253755302495, 48.61288641836855, 0], [-1.233296093094427, 48.61289523231712, 0], [-1.233331310189527, 48.61290106389746, 0], [-1.23333137014193, 48.61290107270173, 0], [-1.233431928240238, 48.61319369742787, 0], [-1.233436417916489, 48.61320596479111, 0], [-1.23344888763157, 48.61323420404964, 0], [-1.233464116026335, 48.61326184205832, 0], [-1.233476805467773, 48.61328137911459, 0], [-1.234230955583828, 48.6143707841709, 0], [-1.234236188234461, 48.61437816548698, 0], [-1.234256727670433, 48.61440424888618, 0], [-1.234279795933073, 48.61442938570245, 0], [-1.234305294242777, 48.61445346829461, 0], [-1.234333113413604, 48.61447639353563, 0], [-1.234363134320724, 48.61449806325466, 0], [-1.23439522841031, 48.61451838465666, 0], [-1.234429258250376, 48.61453727072085, 0], [-1.234463482723291, 48.6145539166281, 0], [-1.234502985035533, 48.61457189649422, 0], [-1.234616843387559, 48.61477537924472, 0], [-1.234623634480547, 48.61478701809371, 0], [-1.234628102210593, 48.61479419103643, 0], [-1.235173399940863, 48.61564867544494, 0], [-1.235186855684363, 48.61566842066059, 0], [-1.235207396139539, 48.6156945038873, 0], [-1.23522106452868, 48.61570983971375, 0], [-1.237234894121484, 48.61787034162996, 0], [-1.237244295856574, 48.61788014225975, 0], [-1.237269797332745, 48.61790422418688, 0], [-1.237297619760966, 48.61792714870297, 0], [-1.237327644002499, 48.61794881764029, 0], [-1.237359741489228, 48.61796913820724, 0], [-1.237388849647632, 48.61798544289, 0], [-1.23747573199299, 48.61803139907362, 0], [-1.237617075102866, 48.61839087290856, 0], [-1.237629063345505, 48.61841787072267, 0], [-1.237644295603899, 48.61844550816692, 0], [-1.237662221553384, 48.61847242591183, 0], [-1.237682764435539, 48.61849850869021, 0], [-1.23770583628547, 48.61852364481023, 0], [-1.237731338308483, 48.61854772663361, 0], [-1.237759161302612, 48.61857065103671, 0], [-1.237789186126699, 48.61859231985213, 0], [-1.23782128421015, 48.61861264028902, 0], [-1.237855318103893, 48.61863152533039, 0], [-1.237891142068608, 48.61864889410605, 0], [-1.237928602699006, 48.61866467223849, 0], [-1.237967539580944, 48.61867879216192, 0], [-1.238007785977819, 48.61869119341115, 0], [-1.238049169545152, 48.61870182288093, 0], [-1.23809151306838, 48.61871063505316, 0], [-1.238134635221828, 48.61871759219163, 0], [-1.238178351345309, 48.61872266450416, 0], [-1.238222474234991, 48.61872583026969, 0], [-1.238266814944815, 48.61872707593166, 0], [-1.238311183596088, 48.61872639615571, 0], [-1.238355390190293, 48.61872379385289, 0], [-1.238399245422959, 48.61871928016683, 0], [-1.238442561494448, 48.61871287442661, 0], [-1.23848515291402, 48.61870460406298, 0], [-1.238526837294507, 48.61869450449204, 0], [-1.238567436133078, 48.61868261896264, 0], [-1.238606775575881, 48.61866899837186, 0], [-1.238644687162431, 48.61865370104641, 0], [-1.238681008547131, 48.61863679249327, 0], [-1.238715584194456, 48.61861834511911, 0], [-1.238748266045262, 48.61859843791994, 0], [-1.238778914150336, 48.61857715614328, 0], [-1.238807397269959, 48.61855459092255, 0], [-1.238833593436055, 48.61853083888717, 0], [-1.238857390474095, 48.61850600174862, 0], [-1.238878686483611, 48.61848018586476, 0], [-1.238897390274567, 48.6184535017847, 0], [-1.238913421757808, 48.61842606377494, 0], [-1.238926712287944, 48.61839798933053, 0], [-1.238926960353732, 48.61839739672804, 0], [-1.239174852964491, 48.61780362515194, 0], [-1.239185097308884, 48.61777562707216, 0], [-1.239192746956839, 48.61774664261121, 0], [-1.239197521096402, 48.61771738848849, 0], [-1.239199399288824, 48.61768798997507, 0], [-1.239198373496553, 48.61765857296004, 0], [-1.239194448117151, 48.61762926341145, 0], [-1.239187639964849, 48.6176001868371, 0], [-1.239177978197923, 48.6175714677468, 0], [-1.239165504194253, 48.61754322911936, 0], [-1.239150271373508, 48.61751559187595, 0], [-1.239132344969127, 48.61748867436261, 0], [-1.239111801747983, 48.61746259184276, 0], [-1.239088729682185, 48.6174374560045, 0], [-1.239063227572281, 48.61741337448188, 0], [-1.239035404623876, 48.61739045039413, 0], [-1.239005379980265, 48.61736878190389, 0], [-1.238973282211981, 48.61734846179757, 0], [-1.23893924876646, 48.61732957708707, 0], [-1.238903425378943, 48.61731220863802, 0], [-1.238865965449525, 48.6172964308232, 0], [-1.238827029384932, 48.61728231120417, 0], [-1.238793136706129, 48.61727172802352, 0], [-1.23860210371882, 48.61721629766613, 0], [-1.238495992781084, 48.61700914881163, 0], [-1.238482862864989, 48.61698568261568, 0], [-1.238467791362203, 48.61696274745742, 0], [-1.237091520379725, 48.61501792198064, 0], [-1.237361865958568, 48.61481744890259, 0], [-1.237390347586025, 48.61479488402945, 0], [-1.237416542464132, 48.6147711323131, 0], [-1.237440338423934, 48.61474629546359, 0], [-1.237461633569601, 48.61472047983773, 0], [-1.237480336714734, 48.61469379598332, 0], [-1.237496367773014, 48.61466635816606, 0], [-1.237500473624433, 48.61465768503145, 0], [-1.237726065326632, 48.61502760809575, 0], [-1.237743688118378, 48.61505402979826, 0], [-1.237764229647755, 48.61508011256716, 0], [-1.237787299971527, 48.61510524867575, 0], [-1.237812800301634, 48.61512933048574, 0], [-1.237840621443445, 48.61515225487357, 0], [-1.237870644263555, 48.61517392367194, 0], [-1.237902740200063, 48.61519424409003, 0], [-1.237936771813111, 48.61521312911094, 0], [-1.237972593373089, 48.61523049786457, 0], [-1.238010051485041, 48.61524627597352, 0], [-1.238031790082803, 48.61525442978694, 0], [-1.238543057125205, 48.6154380397686, 0], [-1.238863791171128, 48.61596393593069, 0], [-1.238881413264612, 48.61599035479503, 0], [-1.238901955765612, 48.61601643735843, 0], [-1.238925027086706, 48.61604157323636, 0], [-1.238950528435479, 48.61606565479171, 0], [-1.23897835061294, 48.61608857890184, 0], [-1.239008374481292, 48.61611024740068, 0], [-1.239040471474135, 48.61613056749876, 0], [-1.239074504147075, 48.61614945218046, 0], [-1.239110326765986, 48.61616682057714, 0], [-1.239147785931356, 48.61618259831302, 0], [-1.239186721235257, 48.6161967178239, 0], [-1.239226965947959, 48.61620911864636, 0], [-1.239268347732099, 48.61621974767712, 0], [-1.239310689380766, 48.61622855939967, 0], [-1.23935380957632, 48.61623551607999, 0], [-1.239373385081337, 48.61623802182224, 0], [-1.23925371131582, 48.61645048723754, 0], [-1.239248965271023, 48.61645918510606, 0], [-1.239235675432693, 48.61648725959106, 0], [-1.23922518332575, 48.61651585028068, 0], [-1.23921753388341, 48.61654483474588, 0], [-1.239212759866688, 48.61657408887139, 0], [-1.239210881723627, 48.61660348738697, 0], [-1.239211907501729, 48.61663290440367, 0], [-1.239215832813565, 48.61666221395334, 0], [-1.239222640855275, 48.61669129052761, 0], [-1.239232302478777, 48.61672000961563, 0], [-1.2392447763159, 48.61674824823712, 0], [-1.239260008956309, 48.61677588546918, 0], [-1.239277935175098, 48.6168028029637, 0], [-1.239298478213069, 48.6168288854547, 0], [-1.239321550104646, 48.61685402125158, 0], [-1.239347052054778, 48.61687810271745, 0], [-1.239374874861856, 48.61690102673013, 0], [-1.239404899385563, 48.61692269512405, 0], [-1.239436997056544, 48.61694301510996, 0], [-1.239471030427466, 48.6169618996729, 0], [-1.239506853761505, 48.61697926794472, 0], [-1.239544313655792, 48.61699504555011, 0], [-1.239555827494714, 48.61699945109371, 0], [-1.239759146265274, 48.61707549528382, 0], [-1.24012400423589, 48.6184027660974, 0], [-1.240124804720948, 48.61840562555127, 0], [-1.240134467188254, 48.61843434456028, 0], [-1.240146941956393, 48.61846258308069, 0], [-1.24016217561097, 48.61849022018999, 0], [-1.240180102922825, 48.61851713754059, 0], [-1.240200647127943, 48.61854321986705, 0], [-1.240223720255891, 48.61856835547964, 0], [-1.240249223506222, 48.61859243674215, 0], [-1.240277047671874, 48.61861536053341, 0], [-1.240307073606453, 48.61863702868852, 0], [-1.240339172735028, 48.61865734841942, 0], [-1.240373207603591, 48.61867623271239, 0], [-1.240397502979083, 48.61868826932953, 0], [-1.242235744798046, 48.61955717591562, 0], [-1.242344830053475, 48.61976534691785, 0], [-1.242356438318524, 48.61978587127208, 0], [-1.24237436726647, 48.61981278827905, 0], [-1.242394913137535, 48.61983887020983, 0], [-1.242413124161403, 48.61985900602256, 0], [-1.242947780642991, 48.62041662079452, 0], [-1.242952644543813, 48.62042162012727, 0], [-1.242978150038849, 48.62044570077934, 0], [-1.242998737361916, 48.6204629503095, 0], [-1.244349863181102, 48.62153977541059, 0], [-1.244357102598288, 48.62154544892013, 0], [-1.244387132037523, 48.62156711600166, 0], [-1.244419234681886, 48.62158743458516, 0], [-1.2444532730627, 48.62160631766198, 0], [-1.244487501185536, 48.62162295853106, 0], [-1.244704011133526, 48.62172146476579, 0], [-1.244288076194635, 48.62167607738429, 0], [-1.244272862571814, 48.62167453454925, 0], [-1.244228736716684, 48.62167137111576, 0], [-1.244184393265493, 48.62167012776282, 0], [-1.244140022098632, 48.62167080981449, 0], [-1.244095813215178, 48.62167341435023, 0], [-1.244071552058415, 48.62167567144566, 0], [-1.243167188297456, 48.6217708751672, 0], [-1.242725460553553, 48.62175748609583, 0], [-1.242700967531643, 48.62175703737585, 0], [-1.242628970363595, 48.62175911926315, 0], [-1.241340315695321, 48.62068863280592, 0], [-1.24132439312336, 48.62067589348691, 0], [-1.241294365534365, 48.6206542256012, 0], [-1.241262264746776, 48.62063390614036, 0], [-1.241228228220699, 48.62061502211389, 0], [-1.241192401705005, 48.6205976543844, 0], [-1.241154938612676, 48.62058187732158, 0], [-1.241115999364351, 48.62056775848368, 0], [-1.241075750701188, 48.62055535832826, 0], [-1.241034364970566, 48.62054472995356, 0], [-1.240992019389204, 48.62053591887057, 0], [-1.240948895282859, 48.62052896280901, 0], [-1.240905177311276, 48.62052389155474, 0], [-1.24086105267665, 48.62052072682339, 0], [-1.240816710322441, 48.62051948216618, 0], [-1.240772340124385, 48.62052016291301, 0], [-1.240728132077382, 48.62052276614863, 0], [-1.240684275482147, 48.62052728072618, 0], [-1.240640958134498, 48.62053368731381, 0], [-1.240598365521342, 48.62054195847843, 0], [-1.240556680026366, 48.6205520588024, 0], [-1.240516080149605, 48.62056394503584, 0], [-1.240476739742413, 48.6205775662811, 0], [-1.240438827263657, 48.62059286421146, 0], [-1.240402505057914, 48.62060977332025, 0], [-1.240367928660708, 48.62062822120156, 0], [-1.240335246132565, 48.62064812886064, 0], [-1.240304597424453, 48.62066941105128, 0], [-1.240276113779251, 48.62069197664164, 0], [-1.24024991716911, 48.62071572900408, 0], [-1.240226119773615, 48.62074056642884, 0], [-1.240204823498792, 48.62076638255986, 0], [-1.240186119541389, 48.62079306684981, 0], [-1.240170087998016, 48.62082050503393, 0], [-1.240156797521756, 48.62084857961862, 0], [-1.240146305028902, 48.62087717038538, 0], [-1.240138655454168, 48.62090615490477, 0], [-1.240133881559269, 48.62093540906123, 0], [-1.240132003791388, 48.62096480758436, 0], [-1.240133030196828, 48.62099422458532, 0], [-1.240136956385243, 48.62102353409589, 0], [-1.240140360775432, 48.62103962374751, 0], [-1.240323618036618, 48.62180493773029, 0], [-1.240327022909302, 48.62181792458473, 0], [-1.240336686147112, 48.62184664357082, 0], [-1.240349161874583, 48.62187488206349, 0], [-1.240364396672906, 48.62190251914029, 0], [-1.240382325308362, 48.62192943645382, 0], [-1.240402871011261, 48.62195551873883, 0], [-1.24042466345591, 48.62197935022338, 0], [-1.241120317461171, 48.62268946615612, 0], [-1.241533931676828, 48.6232645769451, 0], [-1.241522663123937, 48.62326982268863, 0], [-1.241505090369166, 48.6232788892102, 0], [-1.240699153808558, 48.62370896564939, 0], [-1.240682148453773, 48.62371834722462, 0], [-1.240649464043095, 48.62373825496967, 0], [-1.240618813586163, 48.62375953724054, 0], [-1.240590328332947, 48.62378210290483, 0], [-1.240564130262634, 48.62380585533478, 0], [-1.240540331560944, 48.62383069282024, 0], [-1.240519034139718, 48.62385650900492, 0], [-1.24050032920062, 48.62388319334138, 0], [-1.240484296844078, 48.62391063156439, 0], [-1.240471005727151, 48.62393870618042, 0], [-1.240460512768549, 48.62396729697063, 0], [-1.240453006925641, 48.62399561004112, 0], [-1.240236681400708, 48.62499873227094, 0], [-1.239284889116421, 48.62528350428617, 0], [-1.239269770308675, 48.62528817686054, 0], [-1.239230425871227, 48.62530179767374, 0], [-1.239192509454601, 48.62531709518711, 0], [-1.23915618342044, 48.62533400389567, 0], [-1.239121603320776, 48.62535245139556, 0], [-1.239088917231641, 48.62537235869325, 0], [-1.23906874630805, 48.62538604627991, 0], [-1.238895194472867, 48.62532171672815, 0], [-1.238870002964767, 48.62531283488944, 0], [-1.238829751060058, 48.62530043394808, 0], [-1.238788361901777, 48.62528980476459, 0], [-1.238746012721095, 48.62528099285363, 0], [-1.238702884859173, 48.62527403594806, 0], [-1.238659162991986, 48.62526896383785, 0], [-1.238615034338275, 48.62526579824177, 0], [-1.238570687858787, 48.62526455271518, 0], [-1.238526313446862, 48.62526523259142, 0], [-1.238482101115526, 48.62526783495926, 0], [-1.238438240183759, 48.62527234867518, 0], [-1.238394918465986, 48.6252787544114, 0], [-1.238352321467857, 48.62528702473811, 0], [-1.238310631591786, 48.62529712424162, 0], [-1.238270027356672, 48.62530900967518, 0], [-1.238230682632313, 48.62532263014493, 0], [-1.238192765896142, 48.62533792732725, 0], [-1.238156439511082, 48.62535483571874, 0], [-1.238121859030603, 48.62537328291671, 0], [-1.238089172532375, 48.62539318992902, 0], [-1.238058519984835, 48.6254144715124, 0], [-1.238030032646926, 48.62543703653757, 0], [-1.238003832506729, 48.62546078837938, 0], [-1.23799166462127, 48.62547303703659, 0], [-1.237940448204942, 48.6255264705038, 0], [-1.237923885213204, 48.62552623068491, 0], [-1.23787951056181, 48.62552691031047, 0], [-1.237835297967145, 48.62552951242855, 0], [-1.237791436749327, 48.62553402589675, 0], [-1.237748936240815, 48.62554029143076, 0], [-1.237570288239942, 48.62557064762352, 0], [-1.237486776434171, 48.62544929879062, 0], [-1.237480875004506, 48.62544095123098, 0], [-1.237460329393174, 48.62541486842726, 0], [-1.237437254506493, 48.62538973226806, 0], [-1.23741174915714, 48.62536565038901, 0], [-1.23738392256459, 48.6253427259107, 0], [-1.237353893887805, 48.62532105699771, 0], [-1.237321791714485, 48.62530073643792, 0], [-1.23728775351079, 48.62528185124547, 0], [-1.237251925032785, 48.62526448228796, 0], [-1.237214459701828, 48.62524870394033, 0], [-1.237175517948166, 48.6252345837663, 0], [-1.237135266523552, 48.62522218222933, 0], [-1.237093877787654, 48.62521155243334, 0], [-1.237051528969402, 48.62520273989568, 0], [-1.237008401408779, 48.6251957823519, 0], [-1.236964679780381, 48.62519070959461, 0], [-1.23692055130187, 48.62518754334566, 0], [-1.236876204933273, 48.62518629716283, 0], [-1.236831830567491, 48.6251869763825, 0], [-1.23678761821731, 48.62518957809615, 0], [-1.23674375720179, 48.62519409116311, 0], [-1.236700435335716, 48.62520049625828, 0], [-1.236657838125357, 48.62520876595473, 0], [-1.236616147974066, 48.62521886484142, 0], [-1.236575543401921, 48.62523074967426, 0], [-1.23653619828016, 48.62524436956182, 0], [-1.236498281087894, 48.62525966618319, 0], [-1.236461954190025, 48.62527657403724, 0], [-1.236427373142239, 48.62529502072358, 0], [-1.236394686024567, 48.62531492725233, 0], [-1.236364032808162, 48.62533620838222, 0], [-1.236335544754805, 48.62535877298597, 0], [-1.236309343855615, 48.62538252444021, 0], [-1.236285542308502, 48.62540736103903, 0], [-1.236264242037495, 48.62543317642988, 0], [-1.236245534256291, 48.62545986006875, 0], [-1.236229499077866, 48.6254872976934, 0], [-1.236225036977636, 48.6254960290809, 0], [-1.236132431895813, 48.62568354030397, 0], [-1.23596108980224, 48.62579301334644, 0], [-1.23595681619753, 48.62579576792032, 0], [-1.235926162503087, 48.62581704893252, 0], [-1.235897673981126, 48.62583961342667, 0], [-1.235871472625061, 48.62586336478007, 0], [-1.235847670634422, 48.62588820128708, 0], [-1.235826369935298, 48.62591401659578, 0], [-1.235807661743162, 48.62594070016233, 0], [-1.235791858786399, 48.62596773971297, 0], [-1.235753090162748, 48.6259666499062, 0], [-1.235708715093729, 48.62596732869059, 0], [-1.235599786096087, 48.62597136184225, 0], [-1.235551081336901, 48.62583362548889, 0], [-1.235547535272978, 48.62582406911036, 0], [-1.235535061260795, 48.6257958301013, 0], [-1.235519827935994, 48.62576819238855, 0], [-1.235501900533791, 48.62574127431994, 0], [-1.235481355825356, 48.62571519116158, 0], [-1.235458281789534, 48.62569005460414, 0], [-1.235432777234966, 48.62566597228473, 0], [-1.235404951377868, 48.62564304732607, 0], [-1.235374923373884, 48.62562137789455, 0], [-1.235342821808039, 48.62560105678035, 0], [-1.235308784143852, 48.62558217100001, 0], [-1.235272956135052, 48.62556480142365, 0], [-1.235235491201077, 48.62554902242881, 0], [-1.235196549770317, 48.62553490158211, 0], [-1.235156298593185, 48.62552249934979, 0], [-1.23511491002819, 48.62551186883875, 0], [-1.235072561303783, 48.62550305556941, 0], [-1.235029433759527, 48.62549609728055, 0], [-1.234985712069678, 48.62549102376777, 0], [-1.234941583452358, 48.6254878567562, 0], [-1.234897236868193, 48.6254866098071, 0], [-1.234852862210885, 48.62548728825983, 0], [-1.234808649494577, 48.62548988920942, 0], [-1.234764788039888, 48.62549440151825, 0], [-1.234721465663422, 48.6255008058647, 0], [-1.234678867873726, 48.62550907482491, 0], [-1.234637177076572, 48.62551917299088, 0], [-1.234596571794775, 48.62553105712181, 0], [-1.23455722590271, 48.62554467632917, 0], [-1.234519307882667, 48.62555997229502, 0], [-1.234482980103162, 48.625576879521, 0], [-1.234448398123642, 48.62559532560939, 0], [-1.234415710028172, 48.62561523157285, 0], [-1.234385055792022, 48.62563651217267, 0], [-1.234356566681352, 48.62565907628369, 0], [-1.234330364691894, 48.62568282728472, 0], [-1.234306562026095, 48.62570766347175, 0], [-1.234285260612802, 48.62573347849399, 0], [-1.234273221461566, 48.62575011481096, 0], [-1.234031320888733, 48.62610275871455, 0], [-1.23401283392939, 48.62609250098025, 0], [-1.233977006004583, 48.62607513099903, 0], [-1.233939541096927, 48.62605935158074, 0], [-1.233900599634892, 48.62604523029381, 0], [-1.233860348368971, 48.62603282760632, 0], [-1.233818959658153, 48.62602219662723, 0], [-1.233776610731268, 48.62601338287882, 0], [-1.233733482928758, 48.62600642410214, 0], [-1.23368976092622, 48.62600135009477, 0], [-1.233645631942972, 48.62599818258396, 0], [-1.233601284941222, 48.62599693513293, 0], [-1.233556909816487, 48.62599761308359, 0], [-1.233512696584851, 48.62600021353273, 0], [-1.233468834569211, 48.62600472534509, 0], [-1.233425511588508, 48.62601112920102, 0], [-1.233382913153909, 48.62601939767887, 0], [-1.23334122167396, 48.62602949537276, 0], [-1.233300615674418, 48.62604137904376, 0], [-1.233261269032633, 48.62605499780553, 0], [-1.233223350234232, 48.62607029334172, 0], [-1.23318702165097, 48.62608720015607, 0], [-1.23315243884577, 48.62610564585252, 0], [-1.233119749906195, 48.62612555144546, 0], [-1.233089094811193, 48.62614683169765, 0], [-1.23280872055654, 48.62635467095754, 0], [-1.23278023033256, 48.62637723467547, 0], [-1.232754027225216, 48.62640098531472, 0], [-1.232730223441811, 48.62642582117303, 0], [-1.232708920915968, 48.62645163590094, 0], [-1.232690210871175, 48.6264783189573, 0], [-1.23267417342988, 48.62650575608239, 0], [-1.232660877270566, 48.62653382978739, 0], [-1.232650379333826, 48.6265624198573, 0], [-1.232642724577717, 48.62659140386582, 0], [-1.232637945785995, 48.62662065769965, 0], [-1.232636063427186, 48.62665005608965, 0], [-1.232637085566799, 48.6266794731476, 0], [-1.232641007833051, 48.62670878290506, 0], [-1.232647813435073, 48.62673785985275, 0], [-1.232657473235232, 48.62676657947831, 0], [-1.232669945873315, 48.62679481879915, 0], [-1.23268517794378, 48.62682245688924, 0], [-1.23270310422462, 48.62684937539703, 0], [-1.232723647955956, 48.62687545905202, 0], [-1.232746721169375, 48.62690059615862, 0], [-1.232772225064251, 48.62692467907441, 0], [-1.232800050430682, 48.62694760467102, 0], [-1.23283007811728, 48.62696927477594, 0], [-1.232862179541239, 48.62698959659281, 0], [-1.232896217239159, 48.62700848309872, 0], [-1.232932045455413, 48.62702585341719, 0], [-1.232969510766586, 48.62704163316419, 0], [-1.233008452738373, 48.62705575476685, 0], [-1.233048704612487, 48.62706815775294, 0], [-1.233084748988911, 48.62707741608928, 0], [-1.23311313093962, 48.62741448006601, 0], [-1.233117053540385, 48.62744378980585, 0], [-1.233123859516887, 48.62747286672397, 0], [-1.233133519729797, 48.62750158630807, 0], [-1.23314599281708, 48.62752982557579, 0], [-1.233161225371557, 48.62755746360138, 0], [-1.233179152168724, 48.62758438203335, 0], [-1.233199696446883, 48.62761046560177, 0], [-1.233222770235183, 48.62763560261136, 0], [-1.233248274730379, 48.62765968542003, 0], [-1.233276100720111, 48.62768261089998, 0], [-1.233306129050253, 48.62770428087913, 0], [-1.233338231135264, 48.62772460256157, 0], [-1.233372269508883, 48.62774348892516, 0], [-1.233408098412867, 48.62776085909387, 0], [-1.233445564420523, 48.62777663868442, 0], [-1.233484507094649, 48.6277907601246, 0], [-1.233524759674018, 48.62780316294284, 0], [-1.233566149787555, 48.62781379402712, 0], [-1.233608500192558, 48.62782260785231, 0], [-1.233643923241292, 48.6278283232835, 0], [-1.233663829152991, 48.62786718133636, 0], [-1.233676956223242, 48.62789064135865, 0], [-1.233694883414993, 48.6279175597094, 0], [-1.233715428096589, 48.62794364318477, 0], [-1.233738502295161, 48.62796878008993, 0], [-1.233764007206024, 48.62799286278329, 0], [-1.233791833614881, 48.62801578813738, 0], [-1.233821862365907, 48.6280374579809, 0], [-1.233853964871741, 48.62805777951836, 0], [-1.233888003664285, 48.62807666572827, 0], [-1.233922231693496, 48.62809330929352, 0], [-1.234448295492079, 48.62833269431737, 0], [-1.235896224593696, 48.62944228462108, 0], [-1.235924990109025, 48.62946298173886, 0], [-1.235957094373532, 48.62948330268507, 0], [-1.235991134919734, 48.62950218826821, 0], [-1.236026965979733, 48.6295195576156, 0], [-1.236064434118045, 48.62953533634764, 0], [-1.236103378888094, 48.62954945689582, 0], [-1.236143633519682, 48.62956185879221, 0], [-1.236185025632859, 48.62957248892877, 0], [-1.236227377976751, 48.62958130178462, 0], [-1.236264015409518, 48.62958733812785, 0], [-1.236981509684512, 48.62969158825194, 0], [-1.237476299733324, 48.63007073265717, 0], [-1.237505066622076, 48.63009142965645, 0], [-1.237537171925591, 48.63011175015889, 0], [-1.237571213489899, 48.63013063527164, 0], [-1.237607045542783, 48.63014800412404, 0], [-1.237644514644445, 48.63016378233853, 0], [-1.23768346034421, 48.63017790234872, 0], [-1.237723715867924, 48.63019030368934, 0], [-1.237765108831841, 48.63020093325439, 0], [-1.237767811582045, 48.63020155646432, 0], [-1.239607996161141, 48.6306229725587, 0], [-1.239647647191939, 48.63063116098252, 0], [-1.239684293028944, 48.6306371972815, 0], [-1.240104302938336, 48.63069820666284, 0], [-1.240525401919481, 48.63105776182153, 0], [-1.240546962192688, 48.63107524619073, 0], [-1.240576995678226, 48.63109691425875, 0], [-1.240609102863737, 48.63111723389876, 0], [-1.240643146261098, 48.63113611809716, 0], [-1.240678980090242, 48.63115348598737, 0], [-1.240716450903794, 48.63116926319583, 0], [-1.240755398243727, 48.63118338216054, 0], [-1.240795655328832, 48.63119578242056, 0], [-1.240837049768708, 48.63120641087468, 0], [-1.240879404302429, 48.63121522200926, 0], [-1.240922537557216, 48.63122217809245, 0], [-1.240966264825123, 48.63122724933675, 0], [-1.241010398854634, 48.63123041402556, 0], [-1.241054750652069, 48.63123165860699, 0], [-1.241099130291212, 48.63123097775113, 0], [-1.241143347726506, 48.63122837437386, 0], [-1.241187213607014, 48.63122385962348, 0], [-1.241230540087577, 48.63121745283332, 0], [-1.241273141632828, 48.63120918143899, 0], [-1.241314835812337, 48.63119908086064, 0], [-1.241355444081025, 48.63118719435179, 0], [-1.241394792544952, 48.63117357281337, 0], [-1.241432712704884, 48.63115827457629, 0], [-1.241462593634415, 48.63114454099019, 0], [-1.242214789089278, 48.63077864979384, 0], [-1.241894306808384, 48.63112637658269, 0], [-1.240735273210847, 48.63172281457736, 0], [-1.240708900723653, 48.63173710310732, 0], [-1.240676211115213, 48.63175701085013, 0], [-1.240645555785278, 48.63177829311776, 0], [-1.240617066004683, 48.63180085877762, 0], [-1.24059086377226, 48.63182461120197, 0], [-1.240567061291293, 48.6318494486808, 0], [-1.240545760489911, 48.63187526485775, 0], [-1.240527052584126, 48.63190194918546, 0], [-1.240511017687416, 48.63192938739873, 0], [-1.240497724467411, 48.63195746200397, 0], [-1.240487229851774, 48.63198605278263, 0], [-1.240485797018742, 48.63199072257087, 0], [-1.240450860419649, 48.63210775719282, 0], [-1.240435193880423, 48.6321059402364, 0], [-1.240391059119157, 48.63210277532606, 0], [-1.240346706570343, 48.63210153048779, 0], [-1.240302326153222, 48.63210221105196, 0], [-1.240258107906558, 48.63210481410437, 0], [-1.240214241174691, 48.63210932849863, 0], [-1.240170913796825, 48.63211573490399, 0], [-1.240135149959574, 48.63212254208705, 0], [-1.239815810819043, 48.63218965950347, 0], [-1.239508862274441, 48.63221984272148, 0], [-1.239482461431329, 48.63222279278219, 0], [-1.239439133862597, 48.63222919891071, 0], [-1.239396531152317, 48.6322374696223, 0], [-1.239354835727344, 48.63224756950158, 0], [-1.239314226130239, 48.63225945530035, 0], [-1.239274876254122, 48.63227307612302, 0], [-1.239236954598046, 48.6322883736445, 0], [-1.239200623546219, 48.63230528236001, 0], [-1.239166038671955, 48.63232372986537, 0], [-1.239133348072048, 48.6323436371671, 0], [-1.239102691732161, 48.63236491902094, 0], [-1.239074200927546, 48.63238748429621, 0], [-1.239047997661409, 48.63241123636669, 0], [-1.239024194141394, 48.63243607352398, 0], [-1.23901828953533, 48.63244322937118, 0], [-1.238997338681878, 48.63246222031991, 0], [-1.238978855969897, 48.63248118484626, 0], [-1.23869794640135, 48.63278593824146, 0], [-1.238366405745441, 48.63292691539477, 0], [-1.23812823160693, 48.63296807175529, 0], [-1.238087497457836, 48.63297602083302, 0], [-1.238045801158163, 48.63298612023528, 0], [-1.238005190655902, 48.63299800556932, 0], [-1.23796583984777, 48.63301162594159, 0], [-1.237927917237158, 48.63302692302903, 0], [-1.23789158521219, 48.63304383132848, 0], [-1.237856999350535, 48.63306227843766, 0], [-1.237824307752826, 48.63308218536489, 0], [-1.237793650409342, 48.6331034668673, 0], [-1.237765158599611, 48.63312603181587, 0], [-1.237738954330836, 48.63314978358584, 0], [-1.237715149815337, 48.63317462046987, 0], [-1.237693846989794, 48.63320043611424, 0], [-1.237676922703821, 48.63322436422426, 0], [-1.237472667479687, 48.63353671170965, 0], [-1.237094556394645, 48.63388820747591, 0], [-1.236911313125286, 48.63392533424069, 0], [-1.236246444870435, 48.63400563311056, 0], [-1.236245609593007, 48.63400494507833, 0], [-1.236215576236845, 48.63398327587838, 0], [-1.236183468996839, 48.63396295501047, 0], [-1.236149425360789, 48.63394406948977, 0], [-1.236113591107744, 48.63392670018537, 0], [-1.23607611968416, 48.63391092147371, 0], [-1.236037171546125, 48.63389680092023, 0], [-1.23599691347277, 48.6338843989897, 0], [-1.235955517852179, 48.63387376878802, 0], [-1.235913161943079, 48.6338649558341, 0], [-1.235870027115449, 48.63385799786538, 0], [-1.23582629807512, 48.63385292467623, 0], [-1.235782162071528, 48.63384975799022, 0], [-1.23578077780075, 48.63384971908388, 0], [-1.235777738471822, 48.63384824586673, 0], [-1.235740267211987, 48.63383246704512, 0], [-1.235701319228928, 48.63381834637733, 0], [-1.235661061301137, 48.63380594432874, 0], [-1.235619665816017, 48.6337953140056, 0], [-1.235577310031777, 48.63378650092741, 0], [-1.235534175317876, 48.63377954283219, 0], [-1.235490446379566, 48.63377446951478, 0], [-1.235446310465922, 48.63377130269929, 0], [-1.235401956568807, 48.63377005594631, 0], [-1.235357574613256, 48.63377073459429, 0], [-1.235313354644629, 48.63377333573739, 0], [-1.235269486014621, 48.63377784823724, 0], [-1.235226156570608, 48.63378425277134, 0], [-1.23521032131702, 48.63378709247178, 0], [-1.233894549664947, 48.63403439206028, 0], [-1.23315404570048, 48.63412373507685, 0], [-1.232562001427273, 48.63399751073283, 0], [-1.232051975438031, 48.63387721185757, 0], [-1.232048817602198, 48.63387647283109, 0], [-1.232006462374993, 48.63386765843244, 0], [-1.231963328085333, 48.63386069899241, 0], [-1.231957276732933, 48.633859996738, 0], [-1.231930174601834, 48.63353808526532, 0], [-1.231926252217297, 48.63350877549596, 0], [-1.231919446116474, 48.63347969851757, 0], [-1.231909785448808, 48.63345097884169, 0], [-1.231897311587544, 48.63342273944974, 0], [-1.231882077951731, 48.63339510126608, 0], [-1.231864149778266, 48.63336818264084, 0], [-1.231843603841634, 48.63334209884216, 0], [-1.231820528125556, 48.63331696156357, 0], [-1.231795021446227, 48.63329287844544, 0], [-1.231767193028877, 48.6332699526136, 0], [-1.231737162040081, 48.63324828223844, 0], [-1.231705057077672, 48.63322796011413, 0], [-1.23167101561982, 48.63320907326148, 0], [-1.231635183436119, 48.63319170255517, 0], [-1.231597713964274, 48.63317592237765, 0], [-1.231558767651959, 48.63316180030062, 0], [-1.231518511270531, 48.63314939679547, 0], [-1.231496805847832, 48.63314382188906, 0], [-1.231486032512748, 48.63313014453757, 0], [-1.231462957072489, 48.63310500718664, 0], [-1.231437450671757, 48.63308092398853, 0], [-1.231409622534503, 48.63305799806957, 0], [-1.231379591826203, 48.63303632760028, 0], [-1.231347487143431, 48.63301600537552, 0], [-1.231313445963196, 48.63299711841633, 0], [-1.231277614053876, 48.6329797475979, 0], [-1.231240144851995, 48.63296396730323, 0], [-1.231201198804088, 48.63294984510442, 0], [-1.231160942680354, 48.63293744147342, 0], [-1.23113923738871, 48.63293186649918, 0], [-1.231128464196192, 48.63291818911399, 0], [-1.231105389031793, 48.63289305169069, 0], [-1.231079882909618, 48.63286896841256, 0], [-1.23105205505252, 48.63284604240643, 0], [-1.231022024624675, 48.63282437184312, 0], [-1.230989920221579, 48.63280404951786, 0], [-1.230955879318922, 48.63278516245215, 0], [-1.230920047683983, 48.63276779152165, 0], [-1.230882578752066, 48.63275201110976, 0], [-1.230843632968568, 48.63273788878917, 0], [-1.230803377102547, 48.63272548503234, 0], [-1.230761983532636, 48.6327148529528, 0], [-1.230719629508708, 48.63270603807766, 0], [-1.230676496392809, 48.6326990781525, 0], [-1.230632768883335, 48.63269400298014, 0], [-1.23059694870681, 48.63269143123971, 0], [-1.230441495278321, 48.63199628286641, 0], [-1.230424331893147, 48.63179234072216, 0], [-1.23042041052178, 48.63176303089803, 0], [-1.230413605527212, 48.63173395382696, 0], [-1.230403946054131, 48.63170523402095, 0], [-1.230391473470724, 48.6316769944619, 0], [-1.230376241190507, 48.63164935607496, 0], [-1.23035831444454, 48.63162243721102, 0], [-1.230337770001293, 48.63159635313936, 0], [-1.230314695838013, 48.6315712155547, 0], [-1.23028919076426, 48.63154713209848, 0], [-1.230261363998408, 48.63152420589837, 0], [-1.230231334699961, 48.63150253512596, 0], [-1.230199231459515, 48.63148221257735, 0], [-1.230165191747825, 48.63146332527507, 0], [-1.230129361327095, 48.63144595409574, 0], [-1.230091893627392, 48.63143017342393, 0], [-1.230052949088838, 48.63141605083327, 0], [-1.230012694475196, 48.63140364679747, 0], [-1.229990989972341, 48.63139807160513, 0], [-1.22998021742031, 48.63138439411059, 0], [-1.229957143532849, 48.63135925645355, 0], [-1.229931638737674, 48.63133517291742, 0], [-1.229903812251938, 48.63131224663012, 0], [-1.229873783233946, 48.63129057576366, 0], [-1.229841680273116, 48.63127025311457, 0], [-1.229807640839025, 48.63125136570578, 0], [-1.229771810692655, 48.63123399441437, 0], [-1.229734343262916, 48.63121821362534, 0], [-1.229695398988731, 48.63120409091294, 0], [-1.229655144632802, 48.63119168675132, 0], [-1.229613752567167, 48.63118105425583, 0], [-1.229571400035385, 48.63117223895519, 0], [-1.229528268393008, 48.63116527859694, 0], [-1.229484542332215, 48.63116020298573, 0], [-1.229440409089655, 48.63115703385537, 0], [-1.229439214052206, 48.63115700019953, 0], [-1.22942707785298, 48.63114377824867, 0], [-1.229401573420714, 48.63111969459419, 0], [-1.22937374729563, 48.63109676817768, 0], [-1.229343718634632, 48.63107509717201, 0], [-1.229311616025262, 48.63105477437409, 0], [-1.229277576935854, 48.63103588680745, 0], [-1.229241747125995, 48.63101851535002, 0], [-1.229204280022835, 48.6310027343874, 0], [-1.229165336064177, 48.63098861149454, 0], [-1.229125082011287, 48.63097620714648, 0], [-1.22908369023488, 48.63096557445927, 0], [-1.229041337977359, 48.6309567589625, 0], [-1.228998206592995, 48.63094979840453, 0], [-1.22895448077287, 48.63094472259089, 0], [-1.228910347752672, 48.63094155325624, 0], [-1.228865996511872, 48.63094030397193, 0], [-1.228821616964135, 48.63094098008737, 0], [-1.22877739914451, 48.63094357870749, 0], [-1.228733532395496, 48.63094808870478, 0], [-1.228707874335919, 48.6309516413094, 0], [-1.228512119958851, 48.63098137250266, 0], [-1.22849340447357, 48.63097835210317, 0], [-1.228449678679604, 48.63097327609675, 0], [-1.22840554566614, 48.63097010656764, 0], [-1.22836119441269, 48.63096885708784, 0], [-1.228316814832999, 48.63096953300768, 0], [-1.228272596962194, 48.63097213143287, 0], [-1.228228730143057, 48.63097664123684, 0], [-1.228185402215112, 48.63098304310839, 0], [-1.228142798710648, 48.6309913096345, 0], [-1.228101102059975, 48.63100140541751, 0], [-1.228060490810952, 48.63101328722681, 0], [-1.228034323160805, 48.63102209863924, 0], [-1.227877551695296, 48.6310777482482, 0], [-1.227761997949584, 48.63109529768083, 0], [-1.227744328066027, 48.63109814699282, 0], [-1.227701724391659, 48.63110641335477, 0], [-1.227660027557114, 48.63111650897712, 0], [-1.227619416110948, 48.63112839062993, 0], [-1.227580063954175, 48.63114200743538, 0], [-1.227542139595701, 48.6311573010856, 0], [-1.227505805431244, 48.63117420609236, 0], [-1.227471217047447, 48.63119265006731, 0], [-1.227438522556132, 48.63121255403222, 0], [-1.227407861959671, 48.63123383275696, 0], [-1.227379366551438, 48.63125639512434, 0], [-1.227353158354425, 48.63128014452063, 0], [-1.227329349597399, 48.63130497924878, 0], [-1.227308042235384, 48.63133079296423, 0], [-1.227289327512493, 48.63135747513015, 0], [-1.227273285571378, 48.6313849114905, 0], [-1.227259985109805, 48.63141298455987, 0], [-1.227249483086514, 48.63144157412607, 0], [-1.227241824477467, 48.6314705577648, 0], [-1.227237042082547, 48.63149981136439, 0], [-1.227235156385889, 48.63152920965671, 0], [-1.227236175467228, 48.63155862675394, 0], [-1.227240094967932, 48.63158793668746, 0], [-1.227246898108982, 48.6316170139473, 0], [-1.227256555763239, 48.6316457340197, 0], [-1.227258296056129, 48.63164967487834, 0], [-1.227259324034611, 48.63165406854397, 0], [-1.227268981703076, 48.63168278861529, 0], [-1.227281452535582, 48.63171102851431, 0], [-1.227296683134644, 48.63173866731276, 0], [-1.227314608284169, 48.63176558665568, 0], [-1.227335151229394, 48.63179167126935, 0], [-1.227357082300413, 48.63181564867257, 0], [-1.227548791239317, 48.63201121792784, 0], [-1.227391061830963, 48.6322196986827, 0], [-1.227373286830011, 48.63224514316323, 0], [-1.227357244651586, 48.63227257953389, 0], [-1.227343944002224, 48.6323006526115, 0], [-1.227333441841463, 48.63232924218373, 0], [-1.227325783145545, 48.63235822582646, 0], [-1.227321000715114, 48.63238747942792, 0], [-1.227319115034222, 48.63241687771996, 0], [-1.227320134182628, 48.63244629481484, 0], [-1.227324053801377, 48.63247560474384, 0], [-1.227330857110953, 48.63250468199708, 0], [-1.227340514983495, 48.63253340206082, 0], [-1.227352986067081, 48.6325616419506, 0], [-1.227368216962785, 48.63258928073794, 0], [-1.227386142453557, 48.63261620006834, 0], [-1.227388847088153, 48.63261963424117, 0], [-1.227357126718063, 48.63259955300573, 0], [-1.227323087317225, 48.63258066486013, 0], [-1.227287257082146, 48.63256329279287, 0], [-1.227249789441736, 48.63254751119245, 0], [-1.227210844836095, 48.63253338763635, 0], [-1.227170590029347, 48.63252098260251, 0], [-1.227129197395267, 48.63251034920994, 0], [-1.227086844179812, 48.63250153299123, 0], [-1.227043711741751, 48.63249457169793, 0], [-1.226999984776422, 48.63248949513847, 0], [-1.226955850524489, 48.63248632505108, 0], [-1.226943893341566, 48.63248579811571, 0], [-1.225458866776188, 48.63242907296082, 0], [-1.225426471463156, 48.6324283494351, 0], [-1.225382090556846, 48.63242902421764, 0], [-1.225337871252008, 48.63243162150959, 0], [-1.225294002897559, 48.63243613018901, 0], [-1.225250673339557, 48.63244253094977, 0], [-1.225208068117327, 48.63245079638347, 0], [-1.225166369668473, 48.63246089109706, 0], [-1.225125756548486, 48.63247277186459, 0], [-1.225086402665574, 48.63248638781212, 0], [-1.225048476535997, 48.6325016806353, 0], [-1.225012140563027, 48.63251858484948, 0], [-1.225003927218042, 48.63252274341841, 0], [-1.224042640500076, 48.63301718282746, 0], [-1.224016263091179, 48.63303146725698, 0], [-1.223983566038494, 48.63305137023334, 0], [-1.223952902860477, 48.63307264803065, 0], [-1.223924404861916, 48.63309520953592, 0], [-1.223898194076414, 48.63311895813876, 0], [-1.223874382744148, 48.63314379214577, 0], [-1.223853072831114, 48.63316960521545, 0], [-1.223834355592375, 48.63319628681365, 0], [-1.223818311181115, 48.63322372268696, 0], [-1.223805008305954, 48.63325179535187, 0], [-1.22379450393594, 48.63328038459788, 0], [-1.223786843056849, 48.63330936800221, 0], [-1.223782058478555, 48.63333862145406, 0], [-1.223780170694406, 48.6333680196861, 0], [-1.223781187793152, 48.63339743681064, 0], [-1.223785105424591, 48.63342674685899, 0], [-1.223791906817699, 48.63345582432071, 0], [-1.223801562852851, 48.63348454468108, 0], [-1.223814032185917, 48.63351278495449, 0], [-1.223829261425726, 48.63354042421088, 0], [-1.223847185362041, 48.63356734409341, 0], [-1.223867727245356, 48.63359342932602, 0], [-1.22389079911513, 48.63361856820627, 0], [-1.223911513806433, 48.63363837935184, 0], [-1.225122410665316, 48.63473257587635, 0], [-1.225127199242191, 48.63473684955772, 0], [-1.225155025445353, 48.63475977700062, 0], [-1.225185054501394, 48.63478144909955, 0], [-1.225217157821557, 48.63480177304934, 0], [-1.225251197934305, 48.63482066181826, 0], [-1.225287029074, 48.63483803452, 0], [-1.225324497804279, 48.63485381676028, 0], [-1.225363443676426, 48.63486794095568, 0], [-1.225403699915368, 48.63488034662288, 0], [-1.225445094134441, 48.63489098063746, 0], [-1.225487449073377, 48.63489979746188, 0], [-1.225530583357961, 48.63490675934024, 0], [-1.225574312275688, 48.63491183645984, 0], [-1.225618448568069, 48.63491500707922, 0], [-1.225662803231671, 48.63491625762084, 0], [-1.225707186328009, 48.63491558272958, 0], [-1.225751407796736, 48.63491298529551, 0], [-1.22579527826965, 48.63490847644154, 0], [-1.225838609881889, 48.63490207547574, 0], [-1.225854447849746, 48.63489923672659, 0], [-1.227134543552444, 48.63465874132552, 0], [-1.227161312512812, 48.63465331410852, 0], [-1.227203012378313, 48.63464321866995, 0], [-1.227243626759551, 48.63463133716745, 0], [-1.227282981736408, 48.63461772048059, 0], [-1.227320908781793, 48.63460242691949, 0], [-1.22735724548392, 48.63458552197506, 0], [-1.227391836241678, 48.63456707803847, 0], [-1.227424532931214, 48.63454717409103, 0], [-1.227455195539626, 48.63452589536628, 0], [-1.227483692765305, 48.63450333298465, 0], [-1.227509902579644, 48.63447958356325, 0], [-1.22753371274968, 48.63445474880256, 0], [-1.227555021318809, 48.63442893505022, 0], [-1.227573737043199, 48.63440225284606, 0], [-1.227589779782456, 48.63437481644878, 0], [-1.227594515163484, 48.63436482199867, 0], [-1.227517076522764, 48.634822438216, 0], [-1.227514767018076, 48.6348387702066, 0], [-1.227512881358428, 48.63486816849732, 0], [-1.227513900669883, 48.63489758558593, 0], [-1.22751782059233, 48.63492689550377, 0], [-1.227524624345451, 48.634955972741, 0], [-1.227534282798988, 48.63498469278398, 0], [-1.227546754598881, 48.63501293264822, 0], [-1.227561986343027, 48.63504057140567, 0], [-1.227579912810877, 48.63506749070154, 0], [-1.227600457241753, 48.63509357526213, 0], [-1.227601512861045, 48.63509481034333, 0], [-1.227750551592062, 48.63526854589221, 0], [-1.227750291849594, 48.63526886054782, 0], [-1.227731575896487, 48.63529554277936, 0], [-1.227715532940983, 48.63532297919494, 0], [-1.227702231685186, 48.63535105230866, 0], [-1.227691729091192, 48.6353796419083, 0], [-1.22768407013746, 48.63540862556941, 0], [-1.227679287625394, 48.63543787918019, 0], [-1.227677402039527, 48.63546727747247, 0], [-1.227678421459195, 48.63549669455851, 0], [-1.227732330474167, 48.63613762683285, 0], [-1.227693837444064, 48.63642390638831, 0], [-1.227312861670575, 48.6365259708366, 0], [-1.227311750526698, 48.6365262668062, 0], [-1.227271883859251, 48.63653794795986, 0], [-1.227232527377558, 48.6365515646412, 0], [-1.22719459883607, 48.63656685817112, 0], [-1.227158260648391, 48.63658376306181, 0], [-1.227123668418491, 48.63660220692552, 0], [-1.227090970274598, 48.63662211078441, 0], [-1.227060306234591, 48.63664338940883, 0], [-1.227031807606973, 48.63666595168208, 0], [-1.227005596428166, 48.63668970099072, 0], [-1.226981784939825, 48.63671453563813, 0], [-1.226960475108645, 48.63674034928012, 0], [-1.226941758189351, 48.63676703138005, 0], [-1.226925714333966, 48.63679446768236, 0], [-1.226912412248393, 48.63682254070179, 0], [-1.226901908898583, 48.63685113022634, 0], [-1.226894249265775, 48.63688011383194, 0], [-1.226892784748568, 48.63688907084362, 0], [-1.226793799890937, 48.63673965356671, 0], [-1.226602478560759, 48.63640033415346, 0], [-1.226596268424254, 48.63638973097773, 0], [-1.226578342011719, 48.63636281153022, 0], [-1.226557797592474, 48.63633672678837, 0], [-1.226534723143822, 48.63631158844968, 0], [-1.226509217476484, 48.636287504159, 0], [-1.226481389811371, 48.63626457704731, 0], [-1.226451359311824, 48.63624290529032, 0], [-1.226419254573616, 48.63622258168832, 0], [-1.226385213073917, 48.63620369326825, 0], [-1.226349380582543, 48.63618632091158, 0], [-1.226311910538496, 48.63617053900788, 0], [-1.226290164237476, 48.63616238277638, 0], [-1.226044976001621, 48.63607433206275, 0], [-1.226027775215206, 48.63606836438567, 0], [-1.225987517871887, 48.63605595893881, 0], [-1.225946122579753, 48.63604532512102, 0], [-1.225939392591506, 48.63604378836753, 0], [-1.224736027807147, 48.63577367158315, 0], [-1.224724173468297, 48.63577101061219, 0], [-1.224688547877939, 48.63576373034152, 0], [-1.224645412975209, 48.63575676814638, 0], [-1.224601683416895, 48.63575169067242, 0], [-1.22455754645467, 48.63574851966145, 0], [-1.224513191084873, 48.63574726869188, 0], [-1.224468807238914, 48.63574794312039, 0], [-1.224424584970167, 48.63575054005918, 0], [-1.224380713640219, 48.63575504838784, 0], [-1.224337381107976, 48.63576144880177, 0], [-1.224294772925394, 48.63576971389394, 0], [-1.224253071542827, 48.63577980827295, 0], [-1.224212455528395, 48.63579168871414, 0], [-1.224173098802377, 48.63580530434492, 0], [-1.224135169893543, 48.63582059686253, 0], [-1.224098831216955, 48.63583750078335, 0], [-1.224064238378781, 48.63585594372397, 0], [-1.224031539509489, 48.63587584671051, 0], [-1.224000874630613, 48.63589712451683, 0], [-1.223972375053815, 48.63591968602989, 0], [-1.223946162819591, 48.63594343463955, 0], [-1.223922350174376, 48.63596826865209, 0], [-1.223901039089699, 48.63599408172609, 0], [-1.2238823208256, 48.63602076332734, 0], [-1.22386627553994, 48.63604819920247, 0], [-1.223852971944774, 48.63607627186782, 0], [-1.223842467012271, 48.63610486111319, 0], [-1.223834805730841, 48.63613384451555, 0], [-1.22383002091184, 48.63616309796417, 0], [-1.223828246389811, 48.63618757990593, 0], [-1.223822633344442, 48.63636687659398, 0], [-1.223746480589401, 48.63716476982863, 0], [-1.223745159899123, 48.63718874514668, 0], [-1.223746177054643, 48.63721816226438, 0], [-1.223783905420495, 48.63766712517483, 0], [-1.223821634459688, 48.63811608805991, 0], [-1.223825552482074, 48.63814539809805, 0], [-1.223832354536454, 48.63817447554862, 0], [-1.223842011500302, 48.63820319589696, 0], [-1.223854482025475, 48.63823143615745, 0], [-1.223869712715804, 48.63825907540014, 0], [-1.223887638354777, 48.63828599526828, 0], [-1.223908182185594, 48.63831208048579, 0], [-1.223931256239381, 48.63833721935033, 0], [-1.223956761711715, 48.63836130421192, 0], [-1.22398458938608, 48.63838423193384, 0], [-1.224014620101175, 48.6384059043346, 0], [-1.224046725261185, 48.63842622860774, 0], [-1.224080767386704, 48.63844511772014, 0], [-1.224116600703438, 48.63846249078397, 0], [-1.224154071765791, 48.63847827340349, 0], [-1.224193020114917, 48.63849239799363, 0], [-1.22423327896525, 48.63850480406928, 0], [-1.224274675918915, 48.63851543850437, 0], [-1.224317033703894, 48.63852425575958, 0], [-1.224360170933803, 48.6385312180771, 0], [-1.224403902883584, 48.63853629564236, 0], [-1.224448042281701, 48.63853946671203, 0], [-1.224480294886827, 48.63854037631263, 0], [-1.224552526703036, 48.63861443442687, 0], [-1.224554524189732, 48.63861647033419, 0], [-1.224580030102034, 48.63864055505657, 0], [-1.224607858214848, 48.63866348262673, 0], [-1.224637889364975, 48.63868515486363, 0], [-1.224669994955101, 48.6387054789617, 0], [-1.224704037503561, 48.63872436788861, 0], [-1.224739871234244, 48.63874174075703, 0], [-1.224777342700174, 48.6387575231724, 0], [-1.224816291440447, 48.63877164755035, 0], [-1.224856550667939, 48.6387840534067, 0], [-1.224897947982955, 48.63879468761637, 0], [-1.224940306112379, 48.63880350464095, 0], [-1.224983443667986, 48.63881046672363, 0], [-1.225027175923363, 48.63881554405082, 0], [-1.225071315605733, 48.63881871488027, 0], [-1.225115673697153, 48.6388199656334, 0], [-1.22516006024449, 48.63881929095437, 0], [-1.22520428517253, 48.63881669373217, 0], [-1.225248159098322, 48.63881218508892, 0], [-1.225291494142196, 48.63880578433167, 0], [-1.225334104732192, 48.6387975188704, 0], [-1.225375808399072, 48.63878742409974, 0], [-1.22539657116288, 48.63878161407108, 0], [-1.225483925456898, 48.63875602858339, 0], [-1.225677004524213, 48.63878312436405, 0], [-1.225678682424791, 48.63878335836315, 0], [-1.225722414726751, 48.638788435425, 0], [-1.225766554429164, 48.63879160598646, 0], [-1.225810912513989, 48.63879285647045, 0], [-1.225855299028034, 48.6387921815219, 0], [-1.225899523896381, 48.63878958403137, 0], [-1.225943397736242, 48.63878507512177, 0], [-1.225986732668305, 48.63877867410157, 0], [-1.226029343121091, 48.63877040838154, 0], [-1.226071046626041, 48.63876031335781, 0], [-1.226111664598126, 48.63874843225978, 0], [-1.226151023101663, 48.63873481596541, 0], [-1.226188953594689, 48.63871952278322, 0], [-1.226225293650574, 48.63870261820231, 0], [-1.226259887653916, 48.63868417461243, 0], [-1.226292587466733, 48.63866427099347, 0], [-1.226323253063075, 48.63864299257732, 0], [-1.226351753128263, 48.63862043048324, 0], [-1.226377965621539, 48.6385966813272, 0], [-1.226401778298689, 48.63857184680828, 0], [-1.226423089192219, 48.63854603327329, 0], [-1.226439066418501, 48.63852355825984, 0], [-1.22649795901592, 48.63843440616933, 0], [-1.226519531341486, 48.63842127544898, 0], [-1.226550196693643, 48.6383999969718, 0], [-1.226578696519423, 48.63837743482093, 0], [-1.226604908779085, 48.63835368561253, 0], [-1.226628721229217, 48.63832885104614, 0], [-1.226650031903382, 48.63830303746849, 0], [-1.226668749548796, 48.63827635541888, 0], [-1.22668479401685, 48.6382489191551, 0], [-1.22669809660644, 48.63822084616477, 0], [-1.226708600358109, 48.63819225666141, 0], [-1.226716260297511, 48.63816327307067, 0], [-1.226720728438628, 48.63813668546031, 0], [-1.226726685155748, 48.63808815539984, 0], [-1.226795222842614, 48.63798440049122, 0], [-1.226797963413364, 48.63798019348386, 0], [-1.22681400771649, 48.63795275720158, 0], [-1.22682731015566, 48.63792468419558, 0], [-1.226837813772117, 48.63789609467982, 0], [-1.226840576677402, 48.63788685497583, 0], [-1.226961736604473, 48.63745817011709, 0], [-1.226964166315205, 48.63745522693299, 0], [-1.226982883478665, 48.63742854483058, 0], [-1.226998927505032, 48.6374011085214, 0], [-1.227012229695301, 48.63737303549294, 0], [-1.227022733091394, 48.63734444595924, 0], [-1.227030392720845, 48.63731546234597, 0], [-1.227035175788587, 48.63728620876577, 0], [-1.227035304186619, 48.63728420737728, 0], [-1.227384293148928, 48.63790313071714, 0], [-1.227390503215808, 48.63791373309995, 0], [-1.227408430615473, 48.63794065241768, 0], [-1.227428976130622, 48.63796673700426, 0], [-1.22745205178515, 48.63799187516009, 0], [-1.227463986663375, 48.63800314425587, 0], [-1.227477066491416, 48.63802526807825, 0], [-1.227479444512056, 48.63802923483888, 0], [-1.22749737200047, 48.63805615414247, 0], [-1.227517917608885, 48.63808223871293, 0], [-1.227540993360834, 48.63810737685071, 0], [-1.227566500444599, 48.63813146090881, 0], [-1.22759432963675, 48.63815438775411, 0], [-1.22762436176949, 48.63817605920878, 0], [-1.227656468240972, 48.63819638247045, 0], [-1.227690511566171, 48.63821527051031, 0], [-1.227726345965599, 48.63823264244512, 0], [-1.227763817989023, 48.63824842388404, 0], [-1.227785567754891, 48.63825658066932, 0], [-1.22794160963283, 48.63831261168004, 0], [-1.227953094472409, 48.63833344978819, 0], [-1.227971022322634, 48.63836036901712, 0], [-1.227991568300832, 48.63838645350213, 0], [-1.228014644428961, 48.63841159154394, 0], [-1.228040151893701, 48.63843567549613, 0], [-1.228067981469965, 48.63845860222592, 0], [-1.228098013988297, 48.63848027355598, 0], [-1.22813012084523, 48.63850059668448, 0], [-1.228164164554082, 48.6385194845832, 0], [-1.228199999333706, 48.63853685636952, 0], [-1.22823747173229, 48.63855263765317, 0], [-1.228276421285273, 48.6385667608547, 0], [-1.228281481440208, 48.63862691027563, 0], [-1.228285402100484, 48.63865622016019, 0], [-1.228292206801367, 48.63868529734489, 0], [-1.228301866409081, 48.63871401731625, 0], [-1.228314339564149, 48.6387422570902, 0], [-1.228329572859075, 48.63876989573893, 0], [-1.228347501066274, 48.63879681490819, 0], [-1.228368047417894, 48.63882289932489, 0], [-1.228391123934272, 48.6388480372902, 0], [-1.228416631800511, 48.63887212115786, 0], [-1.228444461789744, 48.63889504779553, 0], [-1.228474494730758, 48.63891671902626, 0], [-1.228506602018287, 48.63893704204869, 0], [-1.228540646163769, 48.63895592983494, 0], [-1.22857648138424, 48.63897330150301, 0], [-1.228611407632854, 48.63898801020191, 0], [-1.228627149213593, 48.63901164581701, 0], [-1.228647695797946, 48.6390377301832, 0], [-1.228670772552594, 48.63906286809179, 0], [-1.228696280661579, 48.63908695189686, 0], [-1.228724110897055, 48.63910987846622, 0], [-1.22875414408679, 48.63913154962337, 0], [-1.228786251624379, 48.6391518725671, 0], [-1.228820296020221, 48.63917076027002, 0], [-1.228856131490252, 48.63918813185036, 0], [-1.228893604579704, 48.63920391291869, 0], [-1.228932554821056, 48.63921803589652, 0], [-1.22897281542063, 48.63923044030577, 0], [-1.229014213973037, 48.63924107302752, 0], [-1.229056573199443, 48.63924988852965, 0], [-1.229099711707309, 48.63925684906196, 0], [-1.229143444766043, 48.6392619248175, 0], [-1.229187585099372, 48.63926509406061, 0], [-1.229231943686615, 48.63926634321974, 0], [-1.229276330572482, 48.63926566694566, 0], [-1.229288542752349, 48.6392649493199, 0], [-1.229317734538138, 48.63927724270533, 0], [-1.22935668495533, 48.63929136553892, 0], [-1.229396945718033, 48.63930376979901, 0], [-1.229438344420439, 48.63931440236744, 0], [-1.229480703782997, 48.63932321771277, 0], [-1.229523842412426, 48.63933017808521, 0], [-1.229567575577655, 48.63933525367888, 0], [-1.22961171600203, 48.63933842275851, 0], [-1.229656074664454, 48.63933967175343, 0], [-1.229700461609293, 48.63933899531492, 0], [-1.229744686759715, 48.63933639633984, 0], [-1.229788560731751, 48.63933188595762, 0], [-1.229831895645568, 48.63932548348294, 0], [-1.229874505929669, 48.63931721633294, 0], [-1.229916209116253, 48.63930711990956, 0], [-1.229956826621672, 48.63929523744851, 0], [-1.229996184512339, 48.63928161983347, 0], [-1.23003411424875, 48.63926632537853, 0], [-1.230070453407592, 48.63924941957841, 0], [-1.230105046377221, 48.63923097482788, 0], [-1.230137745024331, 48.63921107011188, 0], [-1.230168409327568, 48.63918979066716, 0], [-1.230196907978147, 48.63916722761725, 0], [-1.230223118941347, 48.63914347758207, 0], [-1.230235294550568, 48.63913122712646, 0], [-1.230275551945406, 48.63908924724461, 0], [-1.230357679494347, 48.6390738162431, 0], [-1.230745047935611, 48.63911651277509, 0], [-1.230761262711753, 48.63911816671247, 0], [-1.23080540302086, 48.6391213353322, 0], [-1.230849761521513, 48.63912258386484, 0], [-1.230894148258779, 48.63912190696387, 0], [-1.230924098748687, 48.63912014654605, 0], [-1.230957293597716, 48.63912252939781, 0], [-1.231001652103205, 48.63912377787158, 0], [-1.231046038839452, 48.63912310091176, 0], [-1.231090263730581, 48.63912050141715, 0], [-1.231134137393724, 48.63911599051949, 0], [-1.231177471950327, 48.63910958753563, 0], [-1.231220081830491, 48.63910131988498, 0], [-1.231261784568114, 48.63909122297159, 0], [-1.231302401581407, 48.63907934003327, 0], [-1.231317640444678, 48.63907432398319, 0], [-1.231913777969562, 48.63887188069993, 0], [-1.232009409990504, 48.63886026999089, 0], [-1.232013053365226, 48.63885982082695, 0], [-1.232056387589315, 48.63885341751051, 0], [-1.232098997108129, 48.63884514953269, 0], [-1.232140699456883, 48.63883505229928, 0], [-1.232181316055947, 48.63882316904905, 0], [-1.232220672975211, 48.63880955066924, 0], [-1.232223364598915, 48.63880853832542, 0], [-1.233028372921117, 48.63850415198093, 0], [-1.233434115233685, 48.63861960544297, 0], [-1.233436085533448, 48.63862016364401, 0], [-1.233477484526842, 48.63863079475304, 0], [-1.233519844021394, 48.63863960860504, 0], [-1.233562982623404, 48.63864656745676, 0], [-1.233606715601843, 48.63865164150845, 0], [-1.233650855680855, 48.63865480903181, 0], [-1.23369521384078, 48.63865605646257, 0], [-1.233730234280528, 48.63865552152436, 0], [-1.233867012589347, 48.63868777819569, 0], [-1.233870171251938, 48.63868851728932, 0], [-1.233912530863996, 48.638697330996, 0], [-1.233955669569704, 48.63870428969973, 0], [-1.233999402637911, 48.63870936360155, 0], [-1.234043542792283, 48.63871253097359, 0], [-1.234087901012819, 48.63871377825224, 0], [-1.234132287345828, 48.63871310009647, 0], [-1.234176511717073, 48.6387104994102, 0], [-1.234220384745923, 48.63870598733037, 0], [-1.234263718556603, 48.6386995831788, 0], [-1.234306327582351, 48.63869131437988, 0], [-1.234348029360721, 48.63868121634267, 0], [-1.234388645314122, 48.63866933230967, 0], [-1.2344280015156, 48.63865571317136, 0], [-1.234465929432866, 48.63864041724833, 0], [-1.234502266650421, 48.63862351004157, 0], [-1.234536857564934, 48.63860506395196, 0], [-1.234569554051912, 48.63858515797009, 0], [-1.234600216099233, 48.63856387733812, 0], [-1.234628712407786, 48.63854131318473, 0], [-1.23465492095286, 48.63851756213456, 0], [-1.234678729506928, 48.63849272589507, 0], [-1.234700036120282, 48.63846691082018, 0], [-1.234718749557482, 48.63844022745554, 0], [-1.234734789687926, 48.63841279006466, 0], [-1.234748087829194, 48.63838471613984, 0], [-1.234758587040754, 48.63835612589878, 0], [-1.23476374750441, 48.63833788878429, 0], [-1.234781055874867, 48.63826889148497, 0], [-1.234825333350333, 48.63824925925541, 0], [-1.234855874891729, 48.63823489313523, 0], [-1.234890465409499, 48.63821644693839, 0], [-1.234923161503931, 48.63819654085516, 0], [-1.234953823164862, 48.63817526012793, 0], [-1.234982319094817, 48.63815269588599, 0], [-1.235008527270447, 48.63812894475436, 0], [-1.235032335466062, 48.63810410844068, 0], [-1.235053641733392, 48.63807829329943, 0], [-1.235072354838538, 48.63805160987634, 0], [-1.235088394652275, 48.63802417243531, 0], [-1.235101692493523, 48.63799609846871, 0], [-1.235112191423049, 48.6379675081945, 0], [-1.235119846487232, 48.63793852404157, 0], [-1.235124624910868, 48.63790927012492, 0], [-1.235126506236843, 48.63787987171477, 0], [-1.235125482414197, 48.63785045469971, 0], [-1.235121557832097, 48.6378211450478, 0], [-1.235114749301318, 48.6377920682673, 0], [-1.235105085981734, 48.63776334886888, 0], [-1.23509260925794, 48.63773510983269, 0], [-1.235077372561255, 48.63770747208169, 0], [-1.235059441141686, 48.63768055396387, 0], [-1.235038891787588, 48.63765447074565, 0], [-1.235015812497349, 48.63762933411778, 0], [-1.234990302102452, 48.63760525171783, 0], [-1.234962469843994, 48.63758232666865, 0], [-1.234932434905198, 48.63756065713729, 0], [-1.23490102423879, 48.63754077788052, 0], [-1.234893224016722, 48.63752312309561, 0], [-1.235777252828516, 48.63768453375402, 0], [-1.235789429324028, 48.63769612902739, 0], [-1.235774503930147, 48.63770408861878, 0], [-1.23574180849247, 48.63772399494572, 0], [-1.235711147439813, 48.63774527588441, 0], [-1.235682652067571, 48.63776784030826, 0], [-1.235656444398197, 48.63779159159476, 0], [-1.235632636658517, 48.63781642803858, 0], [-1.23561133079914, 48.637842243288, 0], [-1.235592618057704, 48.63786892679948, 0], [-1.235576578568407, 48.63789636431146, 0], [-1.235572115254369, 48.63790509566674, 0], [-1.235567023585023, 48.63791540271212, 0], [-1.235563809798785, 48.63791587771276, 0], [-1.235521201636367, 48.63792414697983, 0], [-1.235479500720946, 48.63793424544469, 0], [-1.235438885618625, 48.63794612986502, 0], [-1.235399530245844, 48.63795974935124, 0], [-1.23536160312548, 48.63797504558408, 0], [-1.235325266665019, 48.63799195306417, 0], [-1.235290676461098, 48.63801039939256, 0], [-1.235257980632913, 48.63803030558105, 0], [-1.23522731918897, 48.6380515863898, 0], [-1.23519882342626, 48.63807415069284, 0], [-1.235172615368916, 48.63809790186811, 0], [-1.235148807245483, 48.63812273821089, 0], [-1.235127501008149, 48.63814855336982, 0], [-1.235108787896189, 48.63817523680176, 0], [-1.235092748045421, 48.63820267424544, 0], [-1.235079450144601, 48.63823074821055, 0], [-1.235068951141534, 48.63825933848126, 0], [-1.235061295999194, 48.63828832263018, 0], [-1.235056517502755, 48.63831757654347, 0], [-1.235054636119506, 48.63834697495166, 0], [-1.235055659910838, 48.6383763919664, 0], [-1.235088832923035, 48.63877008171804, 0], [-1.234987649387345, 48.63912029141054, 0], [-1.2348654936987, 48.63930886523333, 0], [-1.234864651866416, 48.63931017045802, 0], [-1.234848611520685, 48.63933760786549, 0], [-1.234835313183673, 48.6393656818003, 0], [-1.234824813804607, 48.63939427204791, 0], [-1.234819609602997, 48.63941268338373, 0], [-1.234707751228794, 48.63985966338986, 0], [-1.234694910960805, 48.63988357917633, 0], [-1.234693796987492, 48.63988567033168, 0], [-1.234680498419145, 48.63991374424752, 0], [-1.23466999883826, 48.63994233447851, 0], [-1.234662343209929, 48.63997131859756, 0], [-1.23466201531238, 48.63997287390366, 0], [-1.234576005964896, 48.64038609998833, 0], [-1.234466708700857, 48.64082282886767, 0], [-1.234229459115739, 48.64110912139203, 0], [-1.23392774834699, 48.64112028485159, 0], [-1.23388352184463, 48.64112288544141, 0], [-1.23383964667789, 48.64112739739151, 0], [-1.233796310722106, 48.64113380138161, 0], [-1.23375369954394, 48.64114206998949, 0], [-1.233711995606477, 48.64115216780878, 0], [-1.233671377488887, 48.64116405159989, 0], [-1.233632019120383, 48.64117767047604, 0], [-1.233594089036789, 48.64119296612044, 0], [-1.233557749658223, 48.64120987303626, 0], [-1.23352315659381, 48.64122831882704, 0], [-1.233490457975017, 48.64124822450686, 0], [-1.23345979382228, 48.641269504838, 0], [-1.233431295444203, 48.64129206869662, 0], [-1.233405084876147, 48.64131581946253, 0], [-1.233385023809879, 48.64133674450386, 0], [-1.233291810694193, 48.64135632585925, 0], [-1.233284968022084, 48.64135778978863, 0], [-1.233243263811739, 48.64136788743706, 0], [-1.233202645409257, 48.64137977106183, 0], [-1.233163286745109, 48.64139338977676, 0], [-1.233125356356359, 48.64140868526575, 0], [-1.233089016664484, 48.6414255920326, 0], [-1.233054423279867, 48.64144403768157, 0], [-1.233021724335435, 48.64146394322727, 0], [-1.232991059852941, 48.64148522343267, 0], [-1.23296256114245, 48.64150778717438, 0], [-1.232939843301601, 48.64152837264391, 0], [-1.232905770093087, 48.6415383412192, 0], [-1.232866411224542, 48.64155195983199, 0], [-1.23282848062598, 48.64156725522243, 0], [-1.232792140719796, 48.64158416189493, 0], [-1.232757547117294, 48.64160260745409, 0], [-1.232724847952338, 48.64162251291485, 0], [-1.232694183247642, 48.64164379304055, 0], [-1.232665684314189, 48.64166635670812, 0], [-1.232639473189658, 48.6416901072983, 0], [-1.232615662115786, 48.64171494310876, 0], [-1.232594353057348, 48.64174075779046, 0], [-1.232575637265831, 48.6417674408023, 0], [-1.232559594888185, 48.64179487788483, 0], [-1.232546294624335, 48.64182295154938, 0], [-1.232535793432159, 48.64185154158116, 0], [-1.232528136283784, 48.64188052555398, 0], [-1.232523355973136, 48.64190977935476, 0], [-1.232521472975319, 48.64193917771443, 0], [-1.232522495358577, 48.64196859474496, 0], [-1.232526418750048, 48.64199790447796, 0], [-1.232533226354069, 48.64202698140439, 0], [-1.232542889024413, 48.64205570101184, 0], [-1.232555365388515, 48.64208394031778, 0], [-1.232570602025187, 48.64211157839644, 0], [-1.23257150240266, 48.64211305185468, 0], [-1.232639483296074, 48.64222373880764, 0], [-1.232568092457194, 48.64242020036566, 0], [-1.232563586760158, 48.64243347944651, 0], [-1.232555929539321, 48.64246246342007, 0], [-1.232551149189565, 48.64249171722086, 0], [-1.232549266186191, 48.64252111557989, 0], [-1.232549309183917, 48.64252235271876, 0], [-1.231677373685294, 48.64255459887654, 0], [-1.231661252395271, 48.64254439613962, 0], [-1.231627204649808, 48.6425255092853, 0], [-1.231591365845823, 48.64250813857566, 0], [-1.231553889448998, 48.64249235839326, 0], [-1.231514935936762, 48.64247823630983, 0], [-1.231474672111328, 48.64246583279674, 0], [-1.2314332703853, 48.64245520096648, 0], [-1.231390908043546, 48.64244638634501, 0], [-1.231347766483901, 48.64243942667709, 0], [-1.231333824499354, 48.64243759616586, 0], [-1.22859681853936, 48.64209790886746, 0], [-1.228567024858298, 48.64209466375384, 0], [-1.228540064067538, 48.64209249785306, 0], [-1.227695709011445, 48.64203600078527, 0], [-1.225862438666554, 48.6417610454417, 0], [-1.225851536629021, 48.64175947258002, 0], [-1.225807801731398, 48.64175439556845, 0], [-1.225763659426966, 48.64175122502342, 0], [-1.225729088158458, 48.64175008482845, 0], [-1.22433330294379, 48.64172767199689, 0], [-1.224279425338433, 48.64160667789012, 0], [-1.224273268502172, 48.64159358970842, 0], [-1.224258036580788, 48.64156595052543, 0], [-1.224240109574848, 48.64153903072093, 0], [-1.224219564254243, 48.64151294556842, 0], [-1.224196488599976, 48.64148780676713, 0], [-1.224170981427841, 48.64146372196382, 0], [-1.224143151965187, 48.64144079429174, 0], [-1.224113119383186, 48.64141912192908, 0], [-1.224081012286464, 48.64139879767839, 0], [-1.224046968162125, 48.64137990856972, 0], [-1.224011132791654, 48.64136253548738, 0], [-1.223973659625963, 48.64134675282405, 0], [-1.223934709128676, 48.64133262816197, 0], [-1.223894448089113, 48.64132022198372, 0], [-1.22385304890799, 48.64130958741319, 0], [-1.223811469111065, 48.64130091432517, 0], [-1.222156479578067, 48.64099404131129, 0], [-1.222155699335736, 48.64099389696272, 0], [-1.222112560299373, 48.6409869338161, 0], [-1.222068826450671, 48.64098185537683, 0], [-1.222043396120989, 48.64097979153793, 0], [-1.220371849883664, 48.64086530493125, 0], [-1.2203531389018, 48.64086419651117, 0], [-1.220308779126507, 48.64086294391383, 0], [-1.220264390711243, 48.64086361671297, 0], [-1.220220163728947, 48.64086621202758, 0], [-1.220176287561428, 48.64087071874441, 0], [-1.220132950088237, 48.64087711756557, 0], [-1.220090336882573, 48.64088538109091, 0], [-1.220048630416213, 48.64089547393587, 0], [-1.220008009279119, 48.64090735288225, 0], [-1.219968647413472, 48.64092096706385, 0], [-1.219930713370045, 48.64093625818408, 0], [-1.219894369585883, 48.64095316076542, 0], [-1.219859771689036, 48.64097160243015, 0], [-1.219827067831654, 48.64099150420972, 0], [-1.219796398056554, 48.64101278088339, 0], [-1.219767893696462, 48.64103534134281, 0], [-1.219741676812298, 48.64105908898246, 0], [-1.21971785967042, 48.64108392211261, 0], [-1.219705550591363, 48.64109833442783, 0], [-1.219534554899637, 48.64130743833926, 0], [-1.219182548682463, 48.6414422238142, 0], [-1.219174493145425, 48.64144531110902, 0], [-1.219142569813168, 48.64145832719539, 0], [-1.219106225387099, 48.64147522952608, 0], [-1.21907162684221, 48.64149367095211, 0], [-1.219038922333768, 48.64151357250596, 0], [-1.21900825190701, 48.64153484896788, 0], [-1.218979746897697, 48.64155740923049, 0], [-1.218953529369569, 48.64158115668884, 0], [-1.218929711591499, 48.64160598965437, 0], [-1.218908395557121, 48.64163180178997, 0], [-1.218889672547698, 48.64165848256555, 0], [-1.218873622741334, 48.64168591773112, 0], [-1.21886031486957, 48.64171398980643, 0], [-1.218849805922757, 48.64174257858342, 0], [-1.218842140906555, 48.64177156164117, 0], [-1.218837352648345, 48.64180081487053, 0], [-1.218837083941189, 48.64180326348172, 0], [-1.218825468143625, 48.64191326313439, 0], [-1.218674591238336, 48.64280767988122, 0], [-1.218672314975178, 48.64282379591029, 0], [-1.218670423848862, 48.64285319404242, 0], [-1.218671438151544, 48.64288261119429, 0], [-1.218675353544634, 48.64291192139943, 0], [-1.218682153266719, 48.64294099914676, 0], [-1.218691808205328, 48.64296971992036, 0], [-1.218704277021008, 48.64299796073269, 0], [-1.218719506324846, 48.64302560065156, 0], [-1.218737430906325, 48.6430525213173, 0], [-1.218757974013101, 48.64307860745028, 0], [-1.218781047679498, 48.6431037473444, 0], [-1.218806553102692, 48.6431278333452, 0], [-1.218834381066385, 48.64315076231124, 0], [-1.218864412407918, 48.6431724360554, 0], [-1.2188965185292, 48.64319276176568, 0], [-1.218930561946285, 48.64321165240281, 0], [-1.218966396879346, 48.64322902707227, 0], [-1.219003869876252, 48.64324481137162, 0], [-1.219042820469523, 48.64325893770852, 0], [-1.219076730499886, 48.64326952787894, 0], [-1.219237866560261, 48.6433162909705, 0], [-1.219236098312073, 48.64334459501417, 0], [-1.219237112955423, 48.64337401216013, 0], [-1.219241028716318, 48.64340332234501, 0], [-1.219247828831789, 48.64343240005776, 0], [-1.219257484187664, 48.64346112078276, 0], [-1.219269953442672, 48.64348936153262, 0], [-1.219285183206063, 48.64351700137536, 0], [-1.219303108265299, 48.64354392195173, 0], [-1.2193236518661, 48.64357000798242, 0], [-1.219346726040531, 48.6435951477618, 0], [-1.219372231983689, 48.6436192336359, 0], [-1.219400060477018, 48.64364216246373, 0], [-1.219430092355622, 48.64366383605889, 0], [-1.21946219901901, 48.64368416160997, 0], [-1.21949624298106, 48.6437030520784, 0], [-1.219532078459544, 48.64372042657033, 0], [-1.219569551999915, 48.64373621068414, 0], [-1.219608503132514, 48.64375033682823, 0], [-1.219642420355624, 48.64376092878751, 0], [-1.219658843256384, 48.64376569458698, 0], [-1.219503773319453, 48.643802976356, 0], [-1.219481718636852, 48.64380856835732, 0], [-1.219441095013567, 48.64382044710038, 0], [-1.219401730715366, 48.64383406108459, 0], [-1.219363794303014, 48.64384935201413, 0], [-1.219327448223908, 48.64386625441241, 0], [-1.21929284811571, 48.64388469590233, 0], [-1.219260142140421, 48.64390459751618, 0], [-1.219229470349494, 48.643925874034, 0], [-1.219200964084586, 48.64394843434809, 0], [-1.219174745414851, 48.64397218185334, 0], [-1.219150926613959, 48.64399701486099, 0], [-1.219147542677288, 48.64400085509676, 0], [-1.218860669215962, 48.64433013732353, 0], [-1.218842735976069, 48.64435210921512, 0], [-1.218824011919404, 48.6443787899752, 0], [-1.218807961209363, 48.64440622512671, 0], [-1.218794652581243, 48.64443429718934, 0], [-1.218784143028955, 48.6444628859551, 0], [-1.218776477560335, 48.64449186900326, 0], [-1.218771689005103, 48.64452112222467, 0], [-1.218769797873311, 48.64455052035276, 0], [-1.218770812268299, 48.64457993750043, 0], [-1.218774727851417, 48.64460924769895, 0], [-1.218781527860353, 48.64463832543704, 0], [-1.218791183181456, 48.64466704619905, 0], [-1.218803652473615, 48.64469528699739, 0], [-1.218818882345878, 48.64472292689992, 0], [-1.218836807585271, 48.64474984754707, 0], [-1.218857351436731, 48.64477593365934, 0], [-1.218880425931246, 48.64480107353064, 0], [-1.218905932262593, 48.64482515950662, 0], [-1.218933761210479, 48.64484808844584, 0], [-1.218963793608168, 48.64486976216155, 0], [-1.218995900852711, 48.64489008784172, 0], [-1.219029945455727, 48.64490897844712, 0], [-1.219034657059614, 48.64491140151459, 0], [-1.219746211486155, 48.64527402358199, 0], [-1.219633918738574, 48.6457336972706, 0], [-1.219631910585131, 48.64574246485769, 0], [-1.219627122408216, 48.64577171811239, 0], [-1.219625231729402, 48.64580111625219, 0], [-1.21962624664985, 48.64583053338988, 0], [-1.219630162828671, 48.64585984355665, 0], [-1.219636963501156, 48.64588892124159, 0], [-1.219646619550676, 48.6459176419291, 0], [-1.219659089633003, 48.64594588263197, 0], [-1.219674320353927, 48.6459735224185, 0], [-1.219692246496718, 48.64600044292952, 0], [-1.219712791302474, 48.6460265288862, 0], [-1.219735866798148, 48.64605166858308, 0], [-1.219761374173141, 48.64607575436661, 0], [-1.219789204202761, 48.64609868309616, 0], [-1.219819237715618, 48.64612035658579, 0], [-1.219851346103986, 48.6461406820245, 0], [-1.219885391874589, 48.64615957237414, 0], [-1.219920642336738, 48.64617668099614, 0], [-1.219867410108972, 48.64621657818709, 0], [-1.219841533139485, 48.6462371788115, 0], [-1.219815313579242, 48.64626092645975, 0], [-1.219791494010885, 48.64628575959681, 0], [-1.219770176435739, 48.64631157188476, 0], [-1.219751452141584, 48.64633825279292, 0], [-1.219735401312199, 48.64636568807077, 0], [-1.2197220926833, 48.64639376023744, 0], [-1.219711583248617, 48.64642234908461, 0], [-1.219703918015889, 48.64645133219108, 0], [-1.219699129813354, 48.64648058544739, 0], [-1.219697239149988, 48.64650998358695, 0], [-1.219698254126851, 48.64653940072263, 0], [-1.219702170402834, 48.64656871088557, 0], [-1.21970897121273, 48.64659778856483, 0], [-1.219718627439448, 48.64662650924491, 0], [-1.219731097737942, 48.64665474993861, 0], [-1.219746328713023, 48.64668238971424, 0], [-1.21976425514696, 48.64670931021279, 0], [-1.219784800279575, 48.64673539615528, 0], [-1.219807876136381, 48.64676053583649, 0], [-1.219833383905298, 48.64678462160283, 0], [-1.219861214359899, 48.6468075503138, 0], [-1.219891248326892, 48.64682922378351, 0], [-1.219923357196935, 48.64684954920109, 0], [-1.219957403474332, 48.64686843952843, 0], [-1.219993241366986, 48.64688581387248, 0], [-1.220030717410074, 48.6469015978321, 0], [-1.22006967112313, 48.64691572381644, 0], [-1.220109935697704, 48.64692813133437, 0], [-1.220151338711282, 48.64693876725376, 0], [-1.220193702866226, 48.64694758602883, 0], [-1.220236846748573, 48.64695454989531, 0], [-1.220280585604849, 48.64695962903198, 0], [-1.220324732133942, 48.64696280168876, 0], [-1.220338187159535, 48.64696318157511, 0], [-1.220338499776288, 48.64697223874066, 0], [-1.220342416459006, 48.64700154888085, 0], [-1.220349217697538, 48.64703062652127, 0], [-1.220358874372838, 48.64705934714651, 0], [-1.220371345138058, 48.64708758776975, 0], [-1.220386576595993, 48.64711522745944, 0], [-1.220391296386731, 48.64712231504741, 0], [-1.220391808062293, 48.64713713886222, 0], [-1.220395724788916, 48.64716644900022, 0], [-1.220402526080526, 48.64719552663719, 0], [-1.220412182817976, 48.6472242472576, 0], [-1.220424653654, 48.64725248787472, 0], [-1.220439885191131, 48.64728012755703, 0], [-1.220457812209241, 48.6473070479459, 0], [-1.220478357945614, 48.64733313376305, 0], [-1.220501434423262, 48.6473582733035, 0], [-1.220526942827311, 48.64738235891448, 0], [-1.220554773928735, 48.64740528745599, 0], [-1.220584808551544, 48.64742696074303, 0], [-1.220616918083237, 48.64744728596542, 0], [-1.220650965025603, 48.64746617608589, 0], [-1.220686803583784, 48.6474835502123, 0], [-1.220724280289682, 48.64749933394442, 0], [-1.220763234660391, 48.64751345969231, 0], [-1.220803499884446, 48.64752586696609, 0], [-1.220844903536753, 48.64753650263435, 0], [-1.220887268316577, 48.6475453211526, 0], [-1.220930412807597, 48.64755228475764, 0], [-1.220963727391708, 48.64755633009638, 0], [-1.221132773181175, 48.64757397989769, 0], [-1.221765400803443, 48.64789634327208, 0], [-1.222037959763784, 48.64812043560353, 0], [-1.222024001067545, 48.6481245172856, 0], [-1.221984634100179, 48.64813813215348, 0], [-1.221946695227076, 48.64815342393388, 0], [-1.221910346906023, 48.64817032714679, 0], [-1.221875744784375, 48.6481887694115, 0], [-1.221843037032508, 48.64820867175711, 0], [-1.221812363709827, 48.64822994896035, 0], [-1.221783856164243, 48.64825250991058, 0], [-1.221757636470406, 48.6482762580002, 0], [-1.221733816906645, 48.64830109153762, 0], [-1.221712499474086, 48.64832690418352, 0], [-1.221693775460127, 48.64835358540552, 0], [-1.221677725046908, 48.64838102095183, 0], [-1.221664416968769, 48.64840909334036, 0], [-1.22165390821704, 48.64843768236175, 0], [-1.221646243796182, 48.64846666559421, 0], [-1.221641456531357, 48.64849591892777, 0], [-1.221639566927384, 48.64852531709538, 0], [-1.221640583080785, 48.6485547342098, 0], [-1.221644500645398, 48.6485840443024, 0], [-1.221651302850537, 48.6486131218624, 0], [-1.221660960573099, 48.64864184237484, 0], [-1.221673432461761, 48.64867008285329, 0], [-1.221676002610075, 48.64867516450182, 0], [-1.221814966443455, 48.64894457989058, 0], [-1.221827629077696, 48.64896713773993, 0], [-1.221845557439711, 48.64899405790859, 0], [-1.221866104584797, 48.64902014347389, 0], [-1.221889182529852, 48.64904528273193, 0], [-1.221914692453905, 48.64906936803116, 0], [-1.221942525121256, 48.64909229623298, 0], [-1.221972561349241, 48.64911396915376, 0], [-1.222004672518524, 48.64913429398486, 0], [-1.222038721123899, 48.64915318369075, 0], [-1.222074561363316, 48.64917055738106, 0], [-1.22211203976152, 48.64918634065743, 0], [-1.222150995828353, 48.64920046593186, 0], [-1.222191262745094, 48.64921287271642, 0], [-1.222232668079355, 48.64922350788202, 0], [-1.222275034523248, 48.64923232588601, 0], [-1.222318180653337, 48.64923928896764, 0], [-1.222361921706356, 48.64924436730895, 0], [-1.22240607037184, 48.64924753916317, 0], [-1.222450437593436, 48.64924879094757, 0], [-1.222494833378784, 48.64924811730175, 0], [-1.22253906761326, 48.64924552111038, 0], [-1.222582950873965, 48.64924101349105, 0], [-1.2226262952413, 48.64923461374656, 0], [-1.22266891510332, 48.6492263492824, 0], [-1.222710627951156, 48.64921625548904, 0], [-1.222751255159753, 48.6492043755909, 0], [-1.222790622754078, 48.64919076046062, 0], [-1.22282856215302, 48.64917546840174, 0], [-1.222864910891819, 48.6491585648987, 0], [-1.222899513317883, 48.64914012233642, 0], [-1.222919024530789, 48.64912824984716, 0], [-1.222917388775957, 48.64915370842535, 0], [-1.22291840568943, 48.64918312552723, 0], [-1.222922324047548, 48.64921243557485, 0], [-1.222929127076289, 48.64924151305776, 0], [-1.22293878564909, 48.64927023346125, 0], [-1.222951258410834, 48.6492984737994, 0], [-1.222966491955779, 48.64932611314197, 0], [-1.222984421055204, 48.64935303313176, 0], [-1.22300496893752, 48.64937911849216, 0], [-1.223028047616448, 48.64940425752026, 0], [-1.223053558267819, 48.6494283425653, 0], [-1.223081391652896, 48.64945127048986, 0], [-1.223111428585917, 48.64947294311156, 0], [-1.223143540444549, 48.64949326762298, 0], [-1.223177589720568, 48.64951215698994, 0], [-1.223213430609085, 48.64952953032356, 0], [-1.223231917752481, 48.64953760076002, 0], [-1.22358313328224, 48.64968553399746, 0], [-1.223752620956196, 48.64987987801357, 0], [-1.223772269761858, 48.64990103664514, 0], [-1.223797781021523, 48.64992512152367, 0], [-1.223825615020708, 48.64994804926673, 0], [-1.223855652570935, 48.64996972169251, 0], [-1.223887765047473, 48.64999004599467, 0], [-1.22392181493924, 48.65000893513988, 0], [-1.223954991751017, 48.65002501661278, 0], [-1.223973538629171, 48.65004262445094, 0], [-1.223973018669795, 48.65013084815308, 0], [-1.223974063695461, 48.65015761041425, 0], [-1.223977724594845, 48.6501854958059, 0], [-1.224315140322683, 48.65207291553137, 0], [-1.224351709551848, 48.65250789735412, 0], [-1.224389454791262, 48.65295685960849, 0], [-1.224393374300579, 48.65298616959825, 0], [-1.22440017869017, 48.65301524698634, 0], [-1.22440983882756, 48.65304396725843, 0], [-1.224422313351035, 48.65307220742912, 0], [-1.224437548847239, 48.65309984656896, 0], [-1.224455480079139, 48.65312676632159, 0], [-1.224476030266011, 48.65315285141144, 0], [-1.224499111411685, 48.6531779901367, 0], [-1.224524624681462, 48.653202074848, 0], [-1.224552460825352, 48.65322500240926, 0], [-1.224582500645823, 48.65324667463967, 0], [-1.224614615508093, 48.6532669987335, 0], [-1.224648667891186, 48.65328588765842, 0], [-1.224684511976846, 48.65330326052736, 0], [-1.224692391025599, 48.65330657810717, 0], [-1.224666967038044, 48.65359876157939, 0], [-1.224365800196838, 48.65394600975484, 0], [-1.224348528823887, 48.65396721991007, 0], [-1.224329804108568, 48.65399390155261, 0], [-1.224313753333339, 48.6540213374576, 0], [-1.224300445234097, 48.65404941014145, 0], [-1.224289936802232, 48.65407799939362, 0], [-1.224282273040867, 48.65410698279122, 0], [-1.224277486772365, 48.65413623622362, 0], [-1.224275598497209, 48.65416563442334, 0], [-1.224276616306266, 48.65419505150307, 0], [-1.224280535846298, 48.65422436149418, 0], [-1.224287340338188, 48.65425343888647, 0], [-1.22429700064894, 48.65428215916559, 0], [-1.224309475416139, 48.65431039934619, 0], [-1.224324711225413, 48.65433803849867, 0], [-1.224342642838328, 48.65436495826665, 0], [-1.224344103655275, 48.65436695771593, 0], [-1.225079885293092, 48.65536770350997, 0], [-1.225098975842693, 48.65539178904421, 0], [-1.225122058327057, 48.6554169276401, 0], [-1.225147573030847, 48.65544101220895, 0], [-1.225175410697859, 48.65546393961529, 0], [-1.225205452123965, 48.65548561167899, 0], [-1.22523756866759, 48.65550593559513, 0], [-1.225271622800443, 48.65552482433197, 0], [-1.225307468696915, 48.65554219700334, 0], [-1.22534495285745, 48.65555797921524, 0], [-1.225383914767229, 48.65557210338419, 0], [-1.225424187582551, 48.65558450902698, 0], [-1.22546559884575, 48.65559514301963, 0], [-1.225507971223616, 48.65560395982432, 0], [-1.225551123266975, 48.65561092168532, 0], [-1.225558168593217, 48.65561187196662, 0], [-1.226339807124617, 48.65571444370936, 0], [-1.225689997835899, 48.65603926524107, 0], [-1.225656290357771, 48.65605726019668, 0], [-1.22562357898502, 48.65607716361071, 0], [-1.225592902462918, 48.65609844181459, 0], [-1.225564392153364, 48.65612100369339, 0], [-1.225538170142762, 48.65614475263529, 0], [-1.225514348719208, 48.65616958694531, 0], [-1.225493029891944, 48.65619540028064, 0], [-1.225474304954124, 48.65622208210608, 0], [-1.225458254092244, 48.65624951816706, 0], [-1.225444946042222, 48.65627759097954, 0], [-1.22543443779529, 48.6563061803323, 0], [-1.225426774353968, 48.65633516380192, 0], [-1.225421988539184, 48.6563644172776, 0], [-1.225420100849219, 48.65639381549164, 0], [-1.225421119372905, 48.65642323255661, 0], [-1.225425039753445, 48.65645254250404, 0], [-1.225431845208564, 48.65648161982379, 0], [-1.225441506600731, 48.65651034000199, 0], [-1.225445791288555, 48.65652083732612, 0], [-1.225510974563653, 48.65667319781134, 0], [-1.22511873899243, 48.65687485314606, 0], [-1.225092350076238, 48.65688913744124, 0], [-1.225059637939299, 48.65690904069313, 0], [-1.225028960671213, 48.65693031874481, 0], [-1.225000449637119, 48.65695288048197, 0], [-1.224974226926516, 48.65697662929341, 0], [-1.224950404830481, 48.65700146348479, 0], [-1.224929085361131, 48.65702727671371, 0], [-1.224910359814457, 48.65705395844541, 0], [-1.224894308379456, 48.65708139442582, 0], [-1.224880999794522, 48.65710946717115, 0], [-1.224870491053225, 48.65713805647052, 0], [-1.224862827160145, 48.65716703990077, 0], [-1.224858040938186, 48.65719629335115, 0], [-1.22485615288739, 48.65722569155421, 0], [-1.224857171098046, 48.65725510862244, 0], [-1.224861091214797, 48.65728441858746, 0], [-1.224867896456408, 48.65731349593906, 0], [-1.224877557686364, 48.65734221616314, 0], [-1.224881841743373, 48.65735271214291, 0], [-1.22492488726514, 48.65745332996726, 0], [-1.224424988995561, 48.65761465441502, 0], [-1.223971594246316, 48.65770982930408, 0], [-1.222942660236421, 48.65785651252033, 0], [-1.222916218786971, 48.65786065033549, 0], [-1.222873591648712, 48.65786891488678, 0], [-1.222831871657311, 48.65787900873334, 0], [-1.222812604840848, 48.65788437939118, 0], [-1.22145928303423, 48.65827796676871, 0], [-1.221437915311219, 48.65828447577796, 0], [-1.221398540232601, 48.65829809043488, 0], [-1.221387512561505, 48.65830253431231, 0], [-1.221182738841384, 48.65810879355911, 0], [-1.221169272906697, 48.65809650034478, 0], [-1.22114143560889, 48.65807357196942, 0], [-1.221111394388239, 48.65805189884425, 0], [-1.221079277886281, 48.65803157377519, 0], [-1.221045223630506, 48.65801268379576, 0], [-1.221009377445705, 48.65799530979404, 0], [-1.220971892829175, 48.65797952616656, 0], [-1.220932930293517, 48.6579654004998, 0], [-1.220892656679573, 48.65795299328056, 0], [-1.220851244441954, 48.65794235763706, 0], [-1.22080887091039, 48.65793353911179, 0], [-1.220765717530761, 48.65792657546605, 0], [-1.220755705780112, 48.65792524007038, 0], [-1.219353830506127, 48.65774550430051, 0], [-1.219345511075483, 48.65764644031434, 0], [-1.219341594144763, 48.65761713016147, 0], [-1.21933479205719, 48.65758805248237, 0], [-1.219325133945119, 48.65755933179158, 0], [-1.219312661170826, 48.65753109107477, 0], [-1.219297427148662, 48.65750345126206, 0], [-1.219279497117223, 48.65747653071047, 0], [-1.219258947858948, 48.65745044469652, 0], [-1.219235867371786, 48.65742530492323, 0], [-1.219210354492397, 48.6574012190414, 0], [-1.219182518472488, 48.65737829018907, 0], [-1.21915247851123, 48.65735661654919, 0], [-1.219120363244943, 48.6573362909302, 0], [-1.219086310195823, 48.65731740036769, 0], [-1.219050465183165, 48.65730002575238, 0], [-1.219012981699588, 48.65728424148333, 0], [-1.218974020252739, 48.65727011514979, 0], [-1.218933747678843, 48.65725770724141, 0], [-1.21891203324705, 48.65725212995909, 0], [-1.21890125817034, 48.65723845144605, 0], [-1.218878177959277, 48.65721331160028, 0], [-1.218852665358705, 48.6571892256385, 0], [-1.218824829619192, 48.65716629669891, 0], [-1.218794789938729, 48.65714462296494, 0], [-1.218762674952338, 48.65712429724543, 0], [-1.218728622181096, 48.65710540657636, 0], [-1.218692777443098, 48.65708803184883, 0], [-1.218655294229785, 48.65707224746259, 0], [-1.218616333047644, 48.65705812100723, 0], [-1.218576060731722, 48.65704571297295, 0], [-1.218534649731053, 48.65703507649165, 0], [-1.218492277370193, 48.65702625710918, 0], [-1.218449125089685, 48.65701929259054, 0], [-1.218405377669958, 48.65701421275815, 0], [-1.218361222439226, 48.65701103936396, 0], [-1.218316848472065, 48.65700978599667, 0], [-1.218272445779463, 48.65701045802319, 0], [-1.218253422779048, 48.65701115902748, 0], [-1.218221182885793, 48.65699327376341, 0], [-1.218185338403111, 48.65697589887704, 0], [-1.218147855432643, 48.65696011432465, 0], [-1.218108894479879, 48.65694598769663, 0], [-1.218068622378945, 48.65693357948397, 0], [-1.218027211577897, 48.65692294281914, 0], [-1.21798483940041, 48.65691412324899, 0], [-1.217941687286468, 48.65690715853926, 0], [-1.217897940015542, 48.65690207851298, 0], [-1.217853784915266, 48.65689890492327, 0], [-1.217809411059676, 48.65689765135946, 0], [-1.21776500845932, 48.65689832318932, 0], [-1.217720767247845, 48.65690091753617, 0], [-1.217676876868015, 48.65690542329075, 0], [-1.217633525260231, 48.65691182115939, 0], [-1.217590898058203, 48.65692008374596, 0], [-1.217580383152177, 48.65692243512006, 0], [-1.215218407984584, 48.65746488733636, 0], [-1.215187201926007, 48.65747262724272, 0], [-1.215146566251741, 48.65748450445177, 0], [-1.215127501547246, 48.65749082407903, 0], [-1.212643243798093, 48.6583468490378, 0], [-1.212622931641396, 48.65835414146558, 0], [-1.212584982215674, 48.65836943013507, 0], [-1.212548623365084, 48.6583863303658, 0], [-1.212514010782004, 48.65840476978995, 0], [-1.212481292681895, 48.65842466944863, 0], [-1.212450609168205, 48.65844594413033, 0], [-1.212422091632472, 48.65846850273507, 0], [-1.212403910979609, 48.65848460917002, 0], [-1.212110246692162, 48.65875727575717, 0], [-1.212102197816596, 48.65876491523166, 0], [-1.212078368517842, 48.65878974674347, 0], [-1.212057041684063, 48.65881555757386, 0], [-1.212038308642824, 48.65884223719833, 0], [-1.212022249615277, 48.65886967137186, 0], [-1.212008933372208, 48.65889774261815, 0], [-1.211998416940243, 48.65892633073301, 0], [-1.211990745356635, 48.65895531329833, 0], [-1.211985951477341, 48.65898456620695, 0], [-1.211984055835138, 48.65901396419379, 0], [-1.211985066552728, 48.65904338137233, 0], [-1.212041526423546, 48.65971683053877, 0], [-1.212045439263298, 48.65974614093667, 0], [-1.21205223742817, 48.65977521904387, 0], [-1.212061891812342, 48.65980394034306, 0], [-1.212074361078701, 48.65983218184439, 0], [-1.212089591836436, 48.6598598226127, 0], [-1.212107518868835, 48.65988674428463, 0], [-1.212128065413081, 48.65991283157648, 0], [-1.212151143488691, 48.65993797277692, 0], [-1.212176654274055, 48.65996206022599, 0], [-1.212204488529856, 48.65998499077598, 0], [-1.212234527066614, 48.66000666623316, 0], [-1.212266641255102, 48.66002699377809, 0], [-1.212300693577164, 48.66004588636351, 0], [-1.212336538214882, 48.66006326308688, 0], [-1.212374021674159, 48.66007904953671, 0], [-1.212383425686427, 48.66008245968392, 0], [-1.212380816071084, 48.66008617625157, 0], [-1.212364756833044, 48.66011361047071, 0], [-1.212351440451907, 48.6601416817544, 0], [-1.212340923954514, 48.66017026989811, 0], [-1.212333252378559, 48.66019925248379, 0], [-1.212328458579781, 48.66022850540416, 0], [-1.212326563091015, 48.66025790339409, 0], [-1.212327574033965, 48.66028732056697, 0], [-1.212331487084808, 48.66031663095393, 0], [-1.212338285492185, 48.66034570904299, 0], [-1.212347940149219, 48.66037443031691, 0], [-1.212360409717657, 48.66040267178599, 0], [-1.212375640805428, 48.66043031251517, 0], [-1.212393568194281, 48.66045723414126, 0], [-1.212414115120002, 48.66048332138075, 0], [-1.212437193600389, 48.66050846252255, 0], [-1.212462704812132, 48.66053254990701, 0], [-1.212490539514115, 48.66055548038656, 0], [-1.212520578514922, 48.66057715576785, 0], [-1.212552693183306, 48.6605974832318, 0], [-1.212586745999114, 48.66061637573149, 0], [-1.212622591142287, 48.66063375236466, 0], [-1.212660075116552, 48.66064953872025, 0], [-1.212699037407825, 48.6606636671972, 0], [-1.21273931117083, 48.66067607729379, 0], [-1.21278072394378, 48.66068671586669, 0], [-1.212823098386995, 48.66069553735883, 0], [-1.212866253042704, 48.66070250399437, 0], [-1.212910003111172, 48.66070758594013, 0], [-1.21292062151227, 48.66070852678805, 0], [-1.213488270430081, 48.66075580455562, 0], [-1.213525667372144, 48.66120169983839, 0], [-1.21339139624171, 48.66202735090703, 0], [-1.213389419723081, 48.66204164286537, 0], [-1.213387524786194, 48.66207104086904, 0], [-1.213388536386217, 48.66210045802875, 0], [-1.213392450196493, 48.66212976837569, 0], [-1.213399249462444, 48.66215884639809, 0], [-1.213408905073514, 48.66218756757888, 0], [-1.213421375687356, 48.66221580892887, 0], [-1.213436607907401, 48.66224344951344, 0], [-1.213454536510603, 48.66227037097006, 0], [-1.213475084727471, 48.66229645801596, 0], [-1.213498164570348, 48.66232159894081, 0], [-1.213505391577541, 48.66232876943948, 0], [-1.21447877358174, 48.66327475173358, 0], [-1.214497059885671, 48.66329166822359, 0], [-1.214524897042451, 48.66331459820454, 0], [-1.214554938568118, 48.66333627304827, 0], [-1.214587055820835, 48.66335659993816, 0], [-1.214621111269376, 48.66337549182957, 0], [-1.214656959082014, 48.66339286782285, 0], [-1.214694445751603, 48.66340865350994, 0], [-1.214733410752129, 48.66342278129235, 0], [-1.214773687226824, 48.66343519067151, 0], [-1.214815102702214, 48.66344582850713, 0], [-1.214857479827283, 48.66345464924531, 0], [-1.214894141651539, 48.66346069274249, 0], [-1.215446997020784, 48.66354107415717, 0], [-1.215459506837706, 48.66356377215541, 0], [-1.215477436994585, 48.66359069329302, 0], [-1.215497986800322, 48.66361677997367, 0], [-1.215521068260506, 48.66364192048878, 0], [-1.215546582538996, 48.66366600718126, 0], [-1.215574420381527, 48.66368893690658, 0], [-1.215604462583293, 48.66371061147464, 0], [-1.21563658049928, 48.66373093806977, 0], [-1.215670636595483, 48.6637498296488, 0], [-1.215706485037778, 48.66376720531341, 0], [-1.215743972315759, 48.66378299065677, 0], [-1.215782937901158, 48.663797118082, 0], [-1.215823214934666, 48.66380952709195, 0], [-1.215864630940451, 48.663820164548, 0], [-1.21590700856496, 48.66382898489783, 0], [-1.215950166336857, 48.66383595037042, 0], [-1.215993919443035, 48.66384103113775, 0], [-1.216038080521449, 48.66384420544257, 0], [-1.216082460462511, 48.66384545969167, 0], [-1.216126869219463, 48.66384478851412, 0], [-1.216377851835453, 48.66383554539333, 0], [-1.217065729155957, 48.66392905110671, 0], [-1.218409920642336, 48.66453382339175, 0], [-1.219237239731772, 48.66665190168623, 0], [-1.219245408339302, 48.66667035065498, 0], [-1.219215980118202, 48.66666693440002, 0], [-1.219171816360252, 48.66666376132042, 0], [-1.219127433854821, 48.66666250826788, 0], [-1.219083022649508, 48.66666318060807, 0], [-1.219038772914811, 48.66666577546188, 0], [-1.218994874129984, 48.66667028171817, 0], [-1.21895151427142, 48.66667668008093, 0], [-1.21890887900816, 48.66668494315215, 0], [-1.218867150906526, 48.66669503554887, 0], [-1.218826508648827, 48.66670691405505, 0], [-1.218787126267991, 48.66672052780642, 0], [-1.21874917240252, 48.66673581850808, 0], [-1.218712809574392, 48.66675272068442, 0], [-1.21867819349311, 48.66677116195934, 0], [-1.218645472388764, 48.66679106336609, 0], [-1.218614786377992, 48.66681233968544, 0], [-1.218586266863062, 48.66683489981056, 0], [-1.218560035969805, 48.66685864713736, 0], [-1.218536206024508, 48.66688347997753, 0], [-1.218514879072843, 48.66690929199475, 0], [-1.218496146442876, 48.6669359726593, 0], [-1.218480088353677, 48.66696340772175, 0], [-1.21846677357248, 48.66699147970213, 0], [-1.218456259119312, 48.66702006839283, 0], [-1.218448590023054, 48.66704905137354, 0], [-1.218443799128872, 48.66707830453514, 0], [-1.218441906957133, 48.66710770261163, 0], [-1.21844292161535, 48.66713711971595, 0], [-1.218446838763816, 48.66716642987952, 0], [-1.218453641633603, 48.66719550759132, 0], [-1.218463301098731, 48.66722422833574, 0], [-1.218475775800463, 48.66725246912533, 0], [-1.218478346575436, 48.66725755083894, 0], [-1.218617344629942, 48.66752696975335, 0], [-1.218630010509108, 48.66754952792657, 0], [-1.218647943784652, 48.66757644856029, 0], [-1.21866849686407, 48.66760253466489, 0], [-1.218691581738942, 48.66762767453411, 0], [-1.21871709955852, 48.66765176051372, 0], [-1.218744941053349, 48.66767468946226, 0], [-1.218774987003037, 48.66769636319287, 0], [-1.218807108746483, 48.66771668889356, 0], [-1.218841168733293, 48.66773557952493, 0], [-1.218877021112639, 48.66775295419272, 0], [-1.218914512357308, 48.66776873849438, 0], [-1.218953481922123, 48.66778286483752, 0], [-1.218993762930551, 48.66779527272959, 0], [-1.219035182889854, 48.66780590903674, 0], [-1.219077564429572, 48.66781472821162, 0], [-1.2191207260615, 48.66782169248825, 0], [-1.219164482956108, 48.66782677204355, 0], [-1.219208647735062, 48.66782994512576, 0], [-1.219253031272927, 48.66783119814676, 0], [-1.219267828630226, 48.66783097411508, 0], [-1.219254978841173, 48.66790618179577, 0], [-1.218031552794943, 48.66860682934463, 0], [-1.215931924878153, 48.66926839219309, 0], [-1.215929339783834, 48.66926921112081, 0], [-1.215889954611751, 48.6692828238741, 0], [-1.215851997931232, 48.66929811361341, 0], [-1.215815632276245, 48.66931501486738, 0], [-1.215781013368484, 48.66933345526379, 0], [-1.215748289450069, 48.66935335583965, 0], [-1.215717600649688, 48.66937463137926, 0], [-1.215689078381621, 48.6693971907792, 0], [-1.215663941739054, 48.6694198763314, 0], [-1.215458037627233, 48.66961844078752, 0], [-1.215048974572544, 48.66982863556905, 0], [-1.215022576005991, 48.66984291752739, 0], [-1.214989851455921, 48.66986281788591, 0], [-1.214959162023725, 48.66988409322169, 0], [-1.214930639126242, 48.66990665243207, 0], [-1.214904404904127, 48.66993039891673, 0], [-1.214880571697639, 48.66995523099129, 0], [-1.214859241566497, 48.66998104232236, 0], [-1.214840505852297, 48.67000772238332, 0], [-1.214824444787579, 48.67003515692731, 0], [-1.214811127152045, 48.67006322847665, 0], [-1.214800609977933, 48.67009181682556, 0], [-1.214794924948566, 48.6701121275422, 0], [-1.214567990042359, 48.67104150729048, 0], [-1.214566003323909, 48.67105017929875, 0], [-1.21456120978974, 48.67107943228942, 0], [-1.214559315197217, 48.67110883029304, 0], [-1.214560327664747, 48.67113824742306, 0], [-1.214564242861633, 48.67116755771062, 0], [-1.214571044027404, 48.67119663564428, 0], [-1.214580702043411, 48.67122535670745, 0], [-1.214593175556993, 48.67125359791122, 0], [-1.214608411159133, 48.67128123832178, 0], [-1.214626343612395, 48.67130815957732, 0], [-1.214646896130742, 48.67133424639587, 0], [-1.214669980708132, 48.67135938706814, 0], [-1.214695498495075, 48.67138347393647, 0], [-1.214723340222299, 48.6714064038556, 0], [-1.21475338666833, 48.67142807863453, 0], [-1.214785509170049, 48.67144840545667, 0], [-1.214819570173726, 48.6714672972779, 0], [-1.214855423824255, 48.67148467319893, 0], [-1.214892916588948, 48.6715004588117, 0], [-1.214931887916073, 48.67151458651831, 0], [-1.214972170921604, 48.67152699582037, 0], [-1.215013593104288, 48.67153763357793, 0], [-1.215055977084034, 48.67154645423749, 0], [-1.215099141362326, 48.6715534200266, 0], [-1.215109155070249, 48.67155475583742, 0], [-1.217404514911407, 48.67184904502301, 0], [-1.217610886471088, 48.67202521475468, 0], [-1.217632450058424, 48.67204269802366, 0], [-1.217662498138687, 48.6720643720389, 0], [-1.21769462222306, 48.67208469804477, 0], [-1.217728684750858, 48.67210358900069, 0], [-1.21776453986032, 48.6721209640108, 0], [-1.217802034012883, 48.67213674867125, 0], [-1.21784100665058, 48.6721508753881, 0], [-1.217881290883889, 48.67216328366715, 0], [-1.217922714206101, 48.6721739203729, 0], [-1.217945041752753, 48.67217881783362, 0], [-1.218549645693745, 48.67230377921458, 0], [-1.218743412198986, 48.67259614044054, 0], [-1.218753236546002, 48.67261029243714, 0], [-1.218773791737811, 48.67263637851308, 0], [-1.218796878976551, 48.67266151835173, 0], [-1.218820324847576, 48.67268376685593, 0], [-1.219283399127018, 48.67309609907674, 0], [-1.219290920932397, 48.67318563902863, 0], [-1.21929483904643, 48.67321494915008, 0], [-1.21930164322503, 48.67324402679857, 0], [-1.219311304336601, 48.67327274745866, 0], [-1.219323781015271, 48.67330098814325, 0], [-1.219339019838495, 48.67332862792076, 0], [-1.219356955554907, 48.67335554843202, 0], [-1.219377511364621, 48.67338163439828, 0], [-1.219400599247447, 48.67340677411396, 0], [-1.219426120339766, 48.67343085992538, 0], [-1.219453965358137, 48.67345378869187, 0], [-1.219484015066998, 48.67347546222731, 0], [-1.219516140789261, 48.67349578772056, 0], [-1.219550204957407, 48.67351467813312, 0], [-1.21958606170276, 48.67353205257168, 0], [-1.219623557479403, 48.67354783663462, 0], [-1.219662531722656, 48.67356196273063, 0], [-1.219702817536101, 48.67357437036815, 0], [-1.219744242406335, 48.67358500641451, 0], [-1.219762951580266, 48.6735888990327, 0], [-1.219949825662234, 48.67413249877237, 0], [-1.219954317911067, 48.67414476783772, 0], [-1.219966795167415, 48.67417300845054, 0], [-1.219982034608305, 48.67420064814071, 0], [-1.219999970980232, 48.6742275685497, 0], [-1.220020527480095, 48.6742536543989, 0], [-1.220043616084863, 48.67427879398331, 0], [-1.220069137927882, 48.67430287965001, 0], [-1.220096983722332, 48.67432580825886, 0], [-1.220127034229595, 48.67434748162428, 0], [-1.220159160769023, 48.67436780693603, 0], [-1.220193225769664, 48.67438669715627, 0], [-1.220227480364464, 48.67440334456711, 0], [-1.220823078258368, 48.67467422556451, 0], [-1.221082524739168, 48.67487293532324, 0], [-1.221111304683236, 48.67489363191096, 0], [-1.221143431969547, 48.674913956946, 0], [-1.221177497710075, 48.67493284687291, 0], [-1.221211751711651, 48.67494949340171, 0], [-1.221411265256616, 48.6750402308007, 0], [-1.22141286957987, 48.67504095819681, 0], [-1.221450367055434, 48.67505674166026, 0], [-1.221489342981661, 48.6750708671335, 0], [-1.221529630454878, 48.67508327412765, 0], [-1.221571056954849, 48.67509390951258, 0], [-1.221613445083016, 48.67510272774501, 0], [-1.221656613322859, 48.67510969106281, 0], [-1.221663659491807, 48.67511064134386, 0], [-1.221961931991766, 48.67514977916045, 0], [-1.222105595959648, 48.67527239407719, 0], [-1.22212716057692, 48.67528987485262, 0], [-1.222157212535562, 48.67531154768422, 0], [-1.222189340511741, 48.67533187242547, 0], [-1.222223406928409, 48.67535076204103, 0], [-1.222259265906935, 48.67536813564094, 0], [-1.222287898275711, 48.67538039098345, 0], [-1.223286008635134, 48.67578443980758, 0], [-1.223294874392842, 48.67578796757405, 0], [-1.22333385140416, 48.67580209241937, 0], [-1.223374139918625, 48.67581449876453, 0], [-1.223415567411161, 48.67582513348228, 0], [-1.223457956479357, 48.67583395103209, 0], [-1.223501125602493, 48.67584091365488, 0], [-1.223508174232573, 48.67584186412743, 0], [-1.223624433318571, 48.67585711671322, 0], [-1.223632891029702, 48.67587245361209, 0], [-1.223650829952789, 48.67589937344634, 0], [-1.22367138903047, 48.6759254586375, 0], [-1.223694480228543, 48.67595059748339, 0], [-1.223720004669244, 48.67597468233418, 0], [-1.223747853054742, 48.6759976100531, 0], [-1.223777906135066, 48.67601928245877, 0], [-1.22381003521872, 48.67603960674462, 0], [-1.223844102723737, 48.67605849587747, 0], [-1.223879962767231, 48.67607586896945, 0], [-1.223917461789059, 48.67609165162475, 0], [-1.223956439210749, 48.67610577625806, 0], [-1.223996728122196, 48.67611818238406, 0], [-1.224038155996767, 48.67612881687658, 0], [-1.224080545430091, 48.67613763419594, 0], [-1.224123714900229, 48.67614459658418, 0], [-1.224167479543978, 48.67614967422632, 0], [-1.224211651949931, 48.6761528453787, 0], [-1.224256042959919, 48.67615409646145, 0], [-1.224300462479842, 48.67615342211726, 0], [-1.224460189910643, 48.67614752980288, 0], [-1.226036531437293, 48.6766664270321, 0], [-1.226072785176284, 48.67667749276223, 0], [-1.226114213950755, 48.676688126504, 0], [-1.22615660421985, 48.67669694305533, 0], [-1.226199774457735, 48.67670390466138, 0], [-1.226243539798047, 48.67670898151068, 0], [-1.226287712826342, 48.67671215186293, 0], [-1.226332104381833, 48.67671340214174, 0], [-1.226376524368082, 48.67671272699309, 0], [-1.226420782566728, 48.67671012930814, 0], [-1.22643070096643, 48.67670928067314, 0], [-1.228371340434913, 48.67653358698122, 0], [-1.229276116689131, 48.67674749355296, 0], [-1.228770027945079, 48.67716750517316, 0], [-1.228278270697936, 48.67728057741353, 0], [-1.228247268726785, 48.6772882715997, 0], [-1.228206620122003, 48.67730015342271, 0], [-1.228167231983373, 48.67731377038638, 0], [-1.228129272973897, 48.67732906418213, 0], [-1.228092905637614, 48.67734596932102, 0], [-1.228058285703295, 48.67736441341435, 0], [-1.228025561417834, 48.67738431748315, 0], [-1.227994872911078, 48.67740559629695, 0], [-1.227966351596248, 48.67742815873825, 0], [-1.227940119606907, 48.67745190819286, 0], [-1.22791628927388, 48.67747674296358, 0], [-1.227901922705306, 48.67749368216146, 0], [-1.226669337203821, 48.67902342648995, 0], [-1.226662376713676, 48.67903230095819, 0], [-1.226643643890584, 48.67905898293002, 0], [-1.226627586375546, 48.67908641910895, 0], [-1.226614272933058, 48.67911449201024, 0], [-1.226603760577691, 48.67914308142223, 0], [-1.226596094329295, 48.6791720649216, 0], [-1.226591307020806, 48.67920131839708, 0], [-1.22658941915724, 48.67923071658116, 0], [-1.226590438827708, 48.67926013358643, 0], [-1.226594361670998, 48.67928944344477, 0], [-1.226601170893824, 48.67931852064634, 0], [-1.226610837342965, 48.6793472406778, 0], [-1.226623319629709, 48.67937548055477, 0], [-1.22663856430751, 48.67940311934894, 0], [-1.226656506099941, 48.67943003870549, 0], [-1.226677068181059, 48.67945612335057, 0], [-1.226700162503853, 48.67948126158423, 0], [-1.226725690177128, 48.67950534575924, 0], [-1.226753541889245, 48.67952827274179, 0], [-1.226783598375985, 48.67954994435354, 0], [-1.226815730931241, 48.67957026779151, 0], [-1.226849801958201, 48.67958915602593, 0], [-1.226874123952939, 48.67960119566106, 0], [-1.22737578133971, 48.67983812767582, 0], [-1.22765756405625, 48.68004625062066, 0], [-1.227678332074536, 48.68006091634014, 0], [-1.227710465318102, 48.68008123952655, 0], [-1.227744537027655, 48.68010012749437, 0], [-1.227780401301906, 48.68011749936081, 0], [-1.227817904563122, 48.68013328073522, 0], [-1.227856886214309, 48.68014740403786, 0], [-1.227897179327335, 48.68015980878921, 0], [-1.227938611357502, 48.68017044186879, 0], [-1.227981004882932, 48.6801792577431, 0], [-1.228024178363882, 48.68018621866026, 0], [-1.228067946920082, 48.68019129481168, 0], [-1.228112123123257, 48.68019446446007, 0], [-1.228156517799133, 48.68019571403207, 0], [-1.22820094083784, 48.68019503817658, 0], [-1.228245202007989, 48.68019243978803, 0], [-1.228289111771355, 48.68018792999314, 0], [-1.228332482094807, 48.68018152810428, 0], [-1.228358970052914, 48.68017639353751, 0], [-1.228379329819807, 48.68019107271857, 0], [-1.228411463429959, 48.68021139570827, 0], [-1.228445535491112, 48.68023028346758, 0], [-1.228481400100454, 48.68024765511454, 0], [-1.228518903678717, 48.68026343625954, 0], [-1.228557885627766, 48.68027755932366, 0], [-1.22859817901809, 48.68028996382839, 0], [-1.228639611303912, 48.68030059665453, 0], [-1.228682005062036, 48.68030941226962, 0], [-1.22872517875168, 48.68031637292264, 0], [-1.228768947491992, 48.68032144880642, 0], [-1.22881312385376, 48.68032461818466, 0], [-1.22885751866201, 48.68032586748512, 0], [-1.228901941806293, 48.68032519135805, 0], [-1.228946203054799, 48.68032259269884, 0], [-1.228990112868964, 48.6803180826356, 0], [-1.229033483215438, 48.68031168048155, 0], [-1.229076128371025, 48.68030341365257, 0], [-1.229117865718583, 48.68029331754921, 0], [-1.229158516528142, 48.68028143540583, 0], [-1.229197906723547, 48.68026781810466, 0], [-1.229235867626948, 48.68025252395852, 0], [-1.229272236681516, 48.68023561846075, 0], [-1.22930685814763, 48.68021717400491, 0], [-1.229339583769922, 48.68019726957461, 0], [-1.22937027341161, 48.68017599040537, 0], [-1.229398795655297, 48.68015342761958, 0], [-1.229425028365281, 48.68012967783605, 0], [-1.229448859210578, 48.68010484275681, 0], [-1.229470186145956, 48.68007902873084, 0], [-1.229488917849044, 48.68005234629926, 0], [-1.229504974111004, 48.68002490972156, 0], [-1.229509443071266, 48.68001617690406, 0], [-1.229535638101591, 48.67996320846347, 0], [-1.230235114958787, 48.67985572176481, 0], [-1.23025097675878, 48.67985315078378, 0], [-1.230293621325198, 48.67984488350156, 0], [-1.230335358047436, 48.67983478695464, 0], [-1.230376008198562, 48.67982290437904, 0], [-1.230415397704898, 48.6798092866591, 0], [-1.230453357891632, 48.67979399210923, 0], [-1.230489726205073, 48.67977708622469, 0], [-1.230524346908677, 48.67975864140054, 0], [-1.230557071750353, 48.67973873662205, 0], [-1.230587760596857, 48.67971745712607, 0], [-1.230616282033969, 48.67969489403655, 0], [-1.230642513929505, 48.67967114397365, 0], [-1.230666343955957, 48.67964630864045, 0], [-1.230687670071551, 48.67962049438711, 0], [-1.230706400957593, 48.67959381175561, 0], [-1.230722456408642, 48.67956637500646, 0], [-1.23073576767669, 48.67953830162912, 0], [-1.230746277764829, 48.67950971183911, 0], [-1.230753941671998, 48.67948072806304, 0], [-1.230758726584724, 48.67945147441438, 0], [-1.23075904219706, 48.6794485740557, 0], [-1.230910094701045, 48.67799479597035, 0], [-1.230910403213101, 48.67799189528817, 0], [-1.230911972909015, 48.67796539739521, 0], [-1.230910950736388, 48.67793598041992, 0], [-1.230907025482226, 48.67790667070634, 0], [-1.23090021396016, 48.67787759375737, 0], [-1.230892501183443, 48.67785402883464, 0], [-1.230552103863611, 48.67693389662275, 0], [-1.230772529835207, 48.67691393456038, 0], [-1.230806519192675, 48.67691027271579, 0], [-1.230849886368026, 48.67690386987301, 0], [-1.230892528334264, 48.67689560236609, 0], [-1.230934262487917, 48.67688550559883, 0], [-1.230974910112783, 48.67687362280827, 0], [-1.231014297146098, 48.67686000487942, 0], [-1.231052254923759, 48.67684471012779, 0], [-1.231088620902308, 48.67682780404941, 0], [-1.231123239355332, 48.67680935904021, 0], [-1.231155962040134, 48.67678945408628, 0], [-1.231186648832841, 48.67676817442525, 0], [-1.231215168328026, 48.67674561118163, 0], [-1.231241398401699, 48.67672186097637, 0], [-1.231265226734366, 48.67669702551301, 0], [-1.231286551291506, 48.67667121114241, 0], [-1.231305280760862, 48.67664452840707, 0], [-1.231315039462269, 48.67662849660083, 0], [-1.231907730216384, 48.67559810553436, 0], [-1.233126604308061, 48.67435677890063, 0], [-1.233689712338866, 48.67407762338888, 0], [-1.233690934225058, 48.67407701622228, 0], [-1.233725549829301, 48.67405857042336, 0], [-1.233758269693519, 48.67403866472243, 0], [-1.23378895370573, 48.67401738436032, 0], [-1.233817470472778, 48.67399482046465, 0], [-1.233843697882062, 48.673971069659, 0], [-1.23386752362558, 48.67394623364956, 0], [-1.233888845679863, 48.67392041878951, 0], [-1.233907572743442, 48.67389373562347, 0], [-1.233923624627344, 48.6738662984142, 0], [-1.233936932598729, 48.67383822465301, 0], [-1.233945585551484, 48.67381532589809, 0], [-1.234134958747908, 48.67325175037627, 0], [-1.234146050465053, 48.67326221402246, 0], [-1.234173902102349, 48.673285139213, 0], [-1.234203958055216, 48.67330680888941, 0], [-1.234211811086141, 48.67331202534496, 0], [-1.235343516906178, 48.67405154064504, 0], [-1.235631631390608, 48.67438378693053, 0], [-1.234694714240645, 48.67441843924063, 0], [-1.234650458487103, 48.6744210401205, 0], [-1.234606554331033, 48.67442555235373, 0], [-1.234563189771869, 48.674431956619, 0], [-1.234520550498757, 48.67444022549279, 0], [-1.234478819095164, 48.67445032356756, 0], [-1.234438174257608, 48.67446220760276, 0], [-1.234398790030189, 48.67447582671044, 0], [-1.234360835059043, 48.6744911225729, 0], [-1.234324471870982, 48.67450802969232, 0], [-1.234289856177011, 48.67452647567147, 0], [-1.234288386549332, 48.67452731513832, 0], [-1.233852706706708, 48.67477689801865, 0], [-1.233821456042812, 48.67479596428469, 0], [-1.23379077156917, 48.6748172446542, 0], [-1.233762254323745, 48.67483980854183, 0], [-1.233736026422714, 48.67486355932738, 0], [-1.233712200179555, 48.67488839530769, 0], [-1.233690877624034, 48.67491421013297, 0], [-1.233685655932275, 48.67492120489182, 0], [-1.233047836828063, 48.67579457698194, 0], [-1.233034330476726, 48.6758142652753, 0], [-1.233018277485569, 48.67584170235603, 0], [-1.233004968470799, 48.67586977600632, 0], [-1.232994460428023, 48.67589836601141, 0], [-1.232986798358604, 48.67592734994517, 0], [-1.232982015077713, 48.67595660369467, 0], [-1.232980131072821, 48.67598600199115, 0], [-1.23298115441691, 48.67601541894682, 0], [-1.232985080732683, 48.67604472859353, 0], [-1.232991893212123, 48.67607380542268, 0], [-1.233001562688123, 48.67610252492226, 0], [-1.23301404775892, 48.67613076411028, 0], [-1.233029294966057, 48.67615840206141, 0], [-1.233047239022338, 48.67618532042431, 0], [-1.233067803092105, 48.6762114039295, 0], [-1.233090899119755, 48.67623654088186, 0], [-1.23311642820688, 48.67626062363965, 0], [-1.233144281035723, 48.67628354907516, 0], [-1.233174338337311, 48.67630521901673, 0], [-1.23320647140204, 48.67632554066832, 0], [-1.233240542630958, 48.6763444270081, 0], [-1.233276406125132, 48.67636179716013, 0], [-1.23331390830973, 48.67637757674113, 0], [-1.233352888592691, 48.676391698179, 0], [-1.233393180051681, 48.67640410100212, 0], [-1.233434610149153, 48.67641473209844, 0], [-1.233440905662044, 48.67641616962024, 0], [-1.235299610150287, 48.67683382634767, 0], [-1.23614249682958, 48.67707346268261, 0], [-1.236144468041993, 48.67707402065796, 0], [-1.236185899273299, 48.67708465075943, 0], [-1.236228291642614, 48.67709346358598, 0], [-1.236271463615131, 48.67710042139878, 0], [-1.236315230317293, 48.67710549440272, 0], [-1.236359404328742, 48.67710866087377, 0], [-1.236403796484413, 48.67710990725225, 0], [-1.236448216685351, 48.67710922820087, 0], [-1.236492474712234, 48.67710662662751, 0], [-1.236536381040367, 48.67710211367282, 0], [-1.23657974765131, 48.67709570866239, 0], [-1.236622388837891, 48.67708743902421, 0], [-1.236664121999838, 48.67707734017117, 0], [-1.236704768425423, 48.67706545534905, 0], [-1.236741876817282, 48.67705268304424, 0], [-1.237115320084432, 48.67691431116812, 0], [-1.237157917112477, 48.67692618779624, 0], [-1.237196943432233, 48.6769361433768, 0], [-1.237239335853566, 48.67694495582957, 0], [-1.237282507838473, 48.67695191326164, 0], [-1.237326274513377, 48.67695698587964, 0], [-1.237370448458, 48.67696015196112, 0], [-1.237414840507596, 48.67696139794811, 0], [-1.237459260563649, 48.67696071850497, 0], [-1.237503518407459, 48.67695811654118, 0], [-1.237547424515149, 48.67695360319919, 0], [-1.237590790869196, 48.67694719780621, 0], [-1.237633431763492, 48.67693892779186, 0], [-1.237675164599059, 48.67692882857064, 0], [-1.237715810665552, 48.67691694338988, 0], [-1.23775291928385, 48.67690417053795, 0], [-1.237793252916863, 48.67688922527204, 0], [-1.237870344117487, 48.67691071878972, 0], [-1.23790937045231, 48.6769206740959, 0], [-1.237951762985494, 48.67692948628528, 0], [-1.237994935055693, 48.67693644344904, 0], [-1.23803870178903, 48.67694151579507, 0], [-1.238082875764888, 48.67694468160197, 0], [-1.238127267818501, 48.6769459273131, 0], [-1.238171687851273, 48.6769452475939, 0], [-1.238215945644583, 48.67694264535511, 0], [-1.238259851674795, 48.67693813174015, 0], [-1.238303217924706, 48.67693172607771, 0], [-1.238345858688725, 48.67692345579837, 0], [-1.238387591368317, 48.67691335631772, 0], [-1.238428237253855, 48.67690147088432, 0], [-1.238467622290007, 48.67688785039466, 0], [-1.238505577821025, 48.67687255317529, 0], [-1.238541941313203, 48.67685564473253, 0], [-1.238576557050599, 48.67683719747261, 0], [-1.238609276802427, 48.6768172903912, 0], [-1.238639960457224, 48.67679600873511, 0], [-1.238668476623013, 48.67677344363728, 0], [-1.238694703190191, 48.67674969172676, 0], [-1.238718527854053, 48.67672485471435, 0], [-1.238739848595865, 48.67669903895742, 0], [-1.238755832910556, 48.67667656157551, 0], [-1.238767154596845, 48.67665942813833, 0], [-1.238922314157265, 48.67661683506349, 0], [-1.239444014982645, 48.67661122821626, 0], [-1.239470893006971, 48.67661058647276, 0], [-1.239507895774361, 48.67660854314885, 0], [-1.242107626720759, 48.67641742396582, 0], [-1.242168918871294, 48.67660583683013, 0], [-1.24217517449793, 48.67662335558489, 0], [-1.242187664850782, 48.6766515937724, 0], [-1.242202917258859, 48.67667923050203, 0], [-1.242220866412642, 48.67670614742778, 0], [-1.242241435454732, 48.67673222928595, 0], [-1.242264536308222, 48.67675736438891, 0], [-1.24229007005402, 48.67678144510253, 0], [-1.242317927354406, 48.67680436830806, 0], [-1.242347988921182, 48.67682603584315, 0], [-1.242380126026779, 48.67684635492229, 0], [-1.242414201054598, 48.6768652385346, 0], [-1.24245006808948, 48.67688260581569, 0], [-1.242487573541724, 48.67689838239478, 0], [-1.242526556804962, 48.67691250071253, 0], [-1.242566850944207, 48.67692490031068, 0], [-1.242608283410285, 48.67693552809103, 0], [-1.2426506767795, 48.67694433854258, 0], [-1.242693849512768, 48.67695129393677, 0], [-1.242737616733016, 48.67695636448866, 0], [-1.242781791017766, 48.67695952848489, 0], [-1.242826183200796, 48.67696077237628, 0], [-1.242870603183068, 48.6769600908363, 0], [-1.242914860746163, 48.67695748678332, 0], [-1.242958766367401, 48.67695297136872, 0], [-1.243002132031301, 48.67694656392862, 0], [-1.243017978036909, 48.67694372361068, 0], [-1.243234818235885, 48.67690298645255, 0], [-1.243457167137476, 48.67692744979087, 0], [-1.243473392684482, 48.6769291017217, 0], [-1.243517566991534, 48.67693226543439, 0], [-1.243561959168749, 48.67693350904089, 0], [-1.243606379116928, 48.67693282721574, 0], [-1.243650636617892, 48.67693022287871, 0], [-1.243694542149223, 48.67692570718229, 0], [-1.243737907695877, 48.67691929946385, 0], [-1.24378054755522, 48.67691102716301, 0], [-1.243822279132734, 48.67690092570382, 0], [-1.243862923723207, 48.67688903834345, 0], [-1.243902307277125, 48.67687541598669, 0], [-1.243940261145033, 48.67686011696775, 0], [-1.24397662280028, 48.67684320680108, 0], [-1.244011236534939, 48.67682475790011, 0], [-1.244043954126715, 48.67680484926746, 0], [-1.244074635473198, 48.67678356615674, 0], [-1.244103149192604, 48.67676099970715, 0], [-1.244129373185621, 48.67673724655315, 0], [-1.244153195158655, 48.67671240841128, 0], [-1.244174513104503, 48.6766865916436, 0], [-1.244193235739206, 48.67665990680298, 0], [-1.244209282892792, 48.67663246815923, 0], [-1.244222585852726, 48.6766043932101, 0], [-1.244233087657931, 48.67657580217756, 0], [-1.244240743342397, 48.67654681749383, 0], [-1.244244008609055, 48.67652894787445, 0], [-1.244329707405174, 48.67596561372879, 0], [-1.244355280748837, 48.67598665669913, 0], [-1.244385342704701, 48.67600832370123, 0], [-1.244417480110878, 48.67602864221055, 0], [-1.244451555349828, 48.67604752521838, 0], [-1.244487422505134, 48.67606489186306, 0], [-1.244524927986674, 48.67608066777656, 0], [-1.244563911187961, 48.67609478540231, 0], [-1.244604205174289, 48.67610718428511, 0], [-1.244645637397162, 48.67611781132971, 0], [-1.244680866948638, 48.67612527317426, 0], [-1.245653771196462, 48.67631215096039, 0], [-1.246002106156019, 48.67663163437435, 0], [-1.246010002464806, 48.67663872904501, 0], [-1.246037861382199, 48.67666165134669, 0], [-1.24606792446692, 48.67668331790652, 0], [-1.246100062984588, 48.676703635943, 0], [-1.246134139312887, 48.67672251844969, 0], [-1.246170007531042, 48.67673988456711, 0], [-1.246207514044018, 48.67675565992925, 0], [-1.246219042356043, 48.67676006486099, 0], [-1.246310970375339, 48.67679439932643, 0], [-1.24615862733062, 48.67724978227873, 0], [-1.246156890678238, 48.67725512707649, 0], [-1.246149235990515, 48.67728411188661, 0], [-1.24614446023954, 48.67731336618191, 0], [-1.246142583880792, 48.67734276469126, 0], [-1.246143614954118, 48.6773721815259, 0], [-1.246147549049488, 48.67740149071834, 0], [-1.246154369325412, 48.67743056676184, 0], [-1.246164046581388, 48.67745928514774, 0], [-1.246176539382482, 48.6774875228988, 0], [-1.246179165877683, 48.67749270536714, 0], [-1.246505212216911, 48.67812330135217, 0], [-1.246517840880046, 48.67814575504387, 0], [-1.246535792867682, 48.67817267129094, 0], [-1.246556364748441, 48.678198752372, 0], [-1.246579468433027, 48.6782238866025, 0], [-1.246605004990435, 48.67824796635229, 0], [-1.246632865070898, 48.67827088850662, 0], [-1.246662929374405, 48.67829255490769, 0], [-1.246695069161257, 48.67831287277488, 0], [-1.246729146803824, 48.67833175510234, 0], [-1.246765016375657, 48.67834912103148, 0], [-1.246802524275883, 48.67836489619701, 0], [-1.246841509888041, 48.67837901304579, 0], [-1.246881806266855, 48.67839141112576, 0], [-1.246923240853817, 48.67840203734533, 0], [-1.246965636215838, 48.67841084620017, 0], [-1.247008810805281, 48.67841779996843, 0], [-1.24705257973738, 48.67842286887231, 0], [-1.247096755582182, 48.67842603120543, 0], [-1.24714114916691, 48.67842727342575, 0], [-1.247185570386373, 48.67842659021379, 0], [-1.247229829016894, 48.67842398449519, 0], [-1.247273735531258, 48.67841946742847, 0], [-1.247317101910146, 48.67841305835671, 0], [-1.247359742449246, 48.6784047847251, 0], [-1.247367569793418, 48.67840304493227, 0], [-1.247774238771711, 48.67831082770269, 0], [-1.24795849436965, 48.67833785740273, 0], [-1.247966563828471, 48.67833900713021, 0], [-1.248010332788547, 48.67834407566839, 0], [-1.248054508624357, 48.67834723763243, 0], [-1.248098902163142, 48.67834847948187, 0], [-1.248176546259294, 48.67834602085684, 0], [-1.24817788729056, 48.6783473830094, 0], [-1.248203424676286, 48.67837146240291, 0], [-1.248231285553991, 48.67839438416848, 0], [-1.248261350620228, 48.6784160501502, 0], [-1.24829349113204, 48.67843636756902, 0], [-1.24832756945866, 48.6784552494212, 0], [-1.248363439670761, 48.67847261485001, 0], [-1.248400948164692, 48.6784883894924, 0], [-1.248439934321435, 48.67850250579741, 0], [-1.248480231193434, 48.67851490331542, 0], [-1.248521666220004, 48.67852552895716, 0], [-1.248564061966218, 48.67853433722075, 0], [-1.248607236882799, 48.67854129038696, 0], [-1.248651006083603, 48.67854635868054, 0], [-1.248695182137458, 48.67854952039762, 0], [-1.248739575870708, 48.67855076199892, 0], [-1.248783997177521, 48.67855007816757, 0], [-1.24882825583392, 48.67854747183191, 0], [-1.248872162312493, 48.67854295415303, 0], [-1.248875154080686, 48.6785425749512, 0], [-1.248912327695053, 48.67857666479124, 0], [-1.2489202221036, 48.67858375686092, 0], [-1.248948083425809, 48.67860667845203, 0], [-1.248978148927757, 48.67862834424527, 0], [-1.249010289865109, 48.67864866146283, 0], [-1.249044368604879, 48.67866754310167, 0], [-1.249080239215921, 48.67868490830583, 0], [-1.249117748093265, 48.67870068271341, 0], [-1.249156734615895, 48.67871479877444, 0], [-1.249197031834817, 48.67872719604034, 0], [-1.249238467187885, 48.67873782142275, 0], [-1.249280863238615, 48.67874662942113, 0], [-1.249324038436792, 48.6787535823173, 0], [-1.24936780789465, 48.67875865033711, 0], [-1.24941198418014, 48.67876181177793, 0], [-1.249456378118545, 48.67876305310158, 0], [-1.249500799603196, 48.67876236899253, 0], [-1.249545058409316, 48.67875976238013, 0], [-1.249588965008892, 48.67875524442675, 0], [-1.249632331382264, 48.67874883447938, 0], [-1.249674971823302, 48.67874055998721, 0], [-1.249716703735009, 48.67873045638361, 0], [-1.249757348410734, 48.67871856693503, 0], [-1.249796731800583, 48.67870494255509, 0], [-1.249834685255782, 48.67868964158679, 0], [-1.249871046251516, 48.67867272955282, 0], [-1.249905659082597, 48.67865427887463, 0], [-1.249918925653959, 48.67864651866324, 0], [-1.250541877546689, 48.67827243687486, 0], [-1.250561327128135, 48.67826028666812, 0], [-1.250592006603735, 48.67823900181549, 0], [-1.250620518223, 48.67821643374724, 0], [-1.250646739895693, 48.67819267910516, 0], [-1.250670559338312, 48.67816783961165, 0], [-1.250691874554384, 48.67814202163497, 0], [-1.25071059427168, 48.67811533573292, 0], [-1.2507266383327, 48.67808789618005, 0], [-1.250739938038217, 48.67805982047773, 0], [-1.250750436440824, 48.67803122885142, 0], [-1.250758088589499, 48.67800224373575, 0], [-1.250762861721109, 48.67797298924984, 0], [-1.250764735401699, 48.67794359066635, 0], [-1.250763701612565, 48.67791417387459, 0], [-1.25075976478602, 48.67788486484174, 0], [-1.250752941784816, 48.67785578907336, 0], [-1.250743261831278, 48.67782707107573, 0], [-1.250730766380763, 48.67779883382316, 0], [-1.250728139143915, 48.67779365096346, 0], [-1.250388537107903, 48.67713695433926, 0], [-1.250403071092878, 48.67713343534125, 0], [-1.250443714315146, 48.67712154564789, 0], [-1.250483096267905, 48.6771079210305, 0], [-1.250521048308635, 48.67709261983311, 0], [-1.250557407918398, 48.67707570757939, 0], [-1.25059201939806, 48.6770572566917, 0], [-1.25062473453506, 48.67703734618126, 0], [-1.250655413237418, 48.67701606130963, 0], [-1.250683924134681, 48.67699349322363, 0], [-1.250710145139669, 48.67696973856471, 0], [-1.250733963971555, 48.67694489905578, 0], [-1.250740615202202, 48.67693726374228, 0], [-1.251131459480284, 48.67647825090927, 0], [-1.251665848284351, 48.67636597653031, 0], [-1.251633603315236, 48.67667755930504, 0], [-1.251160983910065, 48.67806323408025, 0], [-1.251158626854894, 48.67807041724788, 0], [-1.251150974926902, 48.67809940239012, 0], [-1.251146202009001, 48.67812865689189, 0], [-1.251145887671785, 48.6781315564317, 0], [-1.251067948053566, 48.67888455492231, 0], [-1.250957126476131, 48.67912743647581, 0], [-1.250867552061665, 48.67896766607192, 0], [-1.250860749593497, 48.6789560301189, 0], [-1.250842795010536, 48.67892911455081, 0], [-1.250822220607175, 48.67890303424046, 0], [-1.250799114489316, 48.6788779008664, 0], [-1.25077357560307, 48.67885382205206, 0], [-1.250745713311596, 48.67883090090516, 0], [-1.250715646926635, 48.67880923557578, 0], [-1.250683505197516, 48.67878891883653, 0], [-1.250649425759784, 48.67877003768525, 0], [-1.250613554545965, 48.6787526729721, 0], [-1.250576045160587, 48.67873689905401, 0], [-1.25053705822227, 48.67872278347566, 0], [-1.250496760676449, 48.67871038668091, 0], [-1.250455325080055, 48.67869976175318, 0], [-1.250412928862978, 48.67869095418918, 0], [-1.250369753568119, 48.67868400170308, 0], [-1.25032598407423, 48.6786789340658, 0], [-1.250281807804108, 48.67867577297717, 0], [-1.250237413922377, 48.67867453197312, 0], [-1.250192992525376, 48.67867521636765, 0], [-1.25014873382727, 48.67867782323022, 0], [-1.250104827345639, 48.67868234139798, 0], [-1.250061461089873, 48.67868875152413, 0], [-1.250018820756389, 48.67869702616019, 0], [-1.249977088933232, 48.67870712987373, 0], [-1.249966262695146, 48.67871009245918, 0], [-1.249620657987414, 48.67880698562404, 0], [-1.248319768190209, 48.67871977384971, 0], [-1.248302208402385, 48.67871874883972, 0], [-1.248257814531606, 48.67871750706907, 0], [-1.248213393069677, 48.67871819069651, 0], [-1.248169134231123, 48.67872079679476, 0], [-1.248125227534045, 48.67872531420437, 0], [-1.24808186098881, 48.6787317235816, 0], [-1.248039220293076, 48.67873999748124, 0], [-1.247997488036305, 48.67875010047417, 0], [-1.247956842918874, 48.67876198929874, 0], [-1.247917458985739, 48.67877561304654, 0], [-1.247881476931023, 48.67879006183803, 0], [-1.24687294246892, 48.67922389636892, 0], [-1.246870970385883, 48.6792247478935, 0], [-1.246834607981675, 48.67924165897518, 0], [-1.246799993618999, 48.67926010872528, 0], [-1.246767275520848, 48.67928001814072, 0], [-1.246736593790752, 48.67930130196811, 0], [-1.246708079812573, 48.67932386906836, 0], [-1.24668185568876, 48.6793476228075, 0], [-1.246658033716386, 48.67937246146987, 0], [-1.246636715906988, 48.67939827869411, 0], [-1.246617993549484, 48.67942496392821, 0], [-1.246605738087758, 48.67944541710989, 0], [-1.245584979523424, 48.68127851138964, 0], [-1.245581187974749, 48.68128549714831, 0], [-1.24556788453484, 48.68131357224498, 0], [-1.245560849474705, 48.68133178462027, 0], [-1.245318857578044, 48.68201765765073, 0], [-1.245197617341693, 48.68205429414315, 0], [-1.245185011746806, 48.6820582071799, 0], [-1.245145624480017, 48.68207182997195, 0], [-1.245107667044063, 48.68208712938381, 0], [-1.245071301976166, 48.68210403990248, 0], [-1.245036684995464, 48.68212248911603, 0], [-1.245003964335862, 48.68214239802387, 0], [-1.244973280112141, 48.68216368137455, 0], [-1.244944763718874, 48.68218624803126, 0], [-1.244918537268542, 48.6822100013618, 0], [-1.24489471306841, 48.68223483965222, 0], [-1.244873393139587, 48.68226065654281, 0], [-1.244854668779944, 48.68228734148311, 0], [-1.244838620173461, 48.6823147802052, 0], [-1.244825316046421, 48.68234285521352, 0], [-1.24481481337323, 48.68237144628763, 0], [-1.244807157132728, 48.68240043099674, 0], [-1.244802380114627, 48.68242968522457, 0], [-1.244800502780039, 48.68245908370036, 0], [-1.24480153317293, 48.68248850053547, 0], [-1.244803908422547, 48.68250619799911, 0], [-1.244786114718957, 48.68251195832204, 0], [-1.244750457450219, 48.6825243826532, 0], [-1.244712499552374, 48.68253968193368, 0], [-1.244708066775069, 48.68254161941222, 0], [-1.243901626316137, 48.68289709911278, 0], [-1.243869693099187, 48.68291207180191, 0], [-1.243835075120923, 48.68293052065151, 0], [-1.243802353459582, 48.68295042921507, 0], [-1.243771668233782, 48.68297171224281, 0], [-1.243743150842713, 48.68299427859927, 0], [-1.243716923403093, 48.68301803165336, 0], [-1.243693098226322, 48.68304286969259, 0], [-1.243671777337647, 48.68306868635811, 0], [-1.243653052039155, 48.68309537110041, 0], [-1.243637002518803, 48.68312280965255, 0], [-1.243623697506671, 48.68315088451972, 0], [-1.243613193981361, 48.68317947548194, 0], [-1.243605536924812, 48.68320846010897, 0] ], [ [-1.227579260787302, 48.63277531667875, 0], [-1.227615091274279, 48.63279268865445, 0], [-1.227652559211712, 48.63280847013521, 0], [-1.227691504154242, 48.63282259354083, 0], [-1.227731759330795, 48.63283499839128, 0], [-1.227745668272853, 48.63283880275819, 0], [-1.228026052989257, 48.63291309183324, 0], [-1.228405273609063, 48.63323697927023, 0], [-1.228373524950881, 48.63325630711471, 0], [-1.228342863504479, 48.63327758608698, 0], [-1.228314367358256, 48.6333001486841, 0], [-1.228288158537942, 48.63332389829133, 0], [-1.228269668795805, 48.63334286399222, 0], [-1.228073423058105, 48.63355570015795, 0], [-1.228004273534877, 48.6335821889051, 0], [-1.227972352325202, 48.63359520943156, 0], [-1.227936016544877, 48.63361211457213, 0], [-1.227901426642934, 48.63363055867426, 0], [-1.227868730737751, 48.63365046275892, 0], [-1.227838068837712, 48.63367174159557, 0], [-1.227809572241789, 48.63369430406654, 0], [-1.22779648123575, 48.6337061664686, 0], [-1.227835302957707, 48.63357623718851, 0], [-1.227841527941735, 48.63355192164688, 0], [-1.227846310180241, 48.6335226680258, 0], [-1.227848195594525, 48.63349326972713, 0], [-1.227847176116204, 48.63346385263888, 0], [-1.227843256115759, 48.63343454272958, 0], [-1.227836452384361, 48.63340546550847, 0], [-1.22782679406138, 48.63337674548815, 0], [-1.227816528907832, 48.63335303684518, 0], [-1.227551568345862, 48.63279887084621, 0], [-1.227549361996159, 48.63279433964719, 0], [-1.227534130938863, 48.63276670088419, 0], [-1.227516205315198, 48.63273978157721, 0], [-1.227513500665574, 48.63273634740746, 0], [-1.227545221184305, 48.63275642859933, 0], [-1.227579260787302, 48.63277531667875, 0] ] ] } }, { "type": "Feature", "properties": { "combine": "yes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-1.219664805357696, 48.68602382728152, 0], [-1.219621428889719, 48.68603022588836, 0], [-1.219578777320862, 48.68603848919657, 0], [-1.219537033287232, 48.68604858182246, 0], [-1.219496375539564, 48.68606046054877, 0], [-1.219456978176872, 48.68607407451016, 0], [-1.219427395945847, 48.68608579196574, 0], [-1.21846851065178, 48.68648782165304, 0], [-1.218460124472649, 48.68649139502836, 0], [-1.21842374725569, 48.68650829708763, 0], [-1.218389117463237, 48.68652673824751, 0], [-1.218356383384209, 48.68654663954188, 0], [-1.218325685190502, 48.68656791575183, 0], [-1.218297154336823, 48.68659047577125, 0], [-1.218270912997441, 48.68661422299611, 0], [-1.21824707354343, 48.68663905573889, 0], [-1.218228108342261, 48.68666179236556, 0], [-1.21677548687307, 48.68852866562606, 0], [-1.21677311641508, 48.68853174089351, 0], [-1.216754374801918, 48.68855842122932, 0], [-1.216738308854166, 48.68858585600245, 0], [-1.216724987372309, 48.68861392773407, 0], [-1.216714467405151, 48.68864251621785, 0], [-1.216706794005495, 48.68867149903408, 0], [-1.216702000036614, 48.68870075207468, 0], [-1.2167001060321, 48.68873015007375, 0], [-1.216701120107424, 48.68875956714492, 0], [-1.216705037925274, 48.68878887731957, 0], [-1.216711842713927, 48.68881795508672, 0], [-1.216721505339167, 48.68884667593046, 0], [-1.216733984428629, 48.68887491686298, 0], [-1.216749226549434, 48.68890255695143, 0], [-1.21676716643617, 48.68892947783552, 0], [-1.216787727271025, 48.68895556423472, 0], [-1.216810821012324, 48.68898070444172, 0], [-1.216836348771371, 48.68900479080075, 0], [-1.216864201236185, 48.68902772016863, 0], [-1.216894259139272, 48.68904939435695, 0], [-1.216926393768489, 48.68906972055144, 0], [-1.216937108399852, 48.68907566095718, 0], [-1.216926099138609, 48.68908712792237, 0], [-1.216904761938802, 48.68911293959614, 0], [-1.216886020178938, 48.68913961995223, 0], [-1.216869954117137, 48.68916705474258, 0], [-1.216856632554804, 48.68919512648827, 0], [-1.216846112540964, 48.68922371498272, 0], [-1.216838439128358, 48.68925269780642, 0], [-1.216833645180659, 48.68928195085113, 0], [-1.216831751231262, 48.68931134885105, 0], [-1.216832765395375, 48.68934076591967, 0], [-1.216836683335287, 48.68937007608848, 0], [-1.216843488278776, 48.68939915384648, 0], [-1.216853151090966, 48.68942787467783, 0], [-1.216865630398694, 48.68945611559468, 0], [-1.21688087276818, 48.68948375566436, 0], [-1.216898812932874, 48.68951067652661, 0], [-1.216919374073804, 48.68953676290099, 0], [-1.216942468147997, 48.68956190308029, 0], [-1.216967996265317, 48.68958598940886, 0], [-1.216995849112246, 48.68960891874377, 0], [-1.217025907419669, 48.68963059289653, 0], [-1.217058046877564, 48.68965092166173, 0], [-1.217371912175276, 48.6898368237466, 0], [-1.217405977804673, 48.68985570955552, 0], [-1.217441845466534, 48.68987308464285, 0], [-1.217479352760384, 48.68988886938716, 0], [-1.217518339072323, 48.68990299619433, 0], [-1.217558637454115, 48.68991540456965, 0], [-1.217600075338678, 48.68992604137749, 0], [-1.217642475278777, 48.68993486106807, 0], [-1.21768565570721, 48.68994182587323, 0], [-1.21772943171421, 48.68994690596787, 0], [-1.217773615839488, 48.68995007959767, 0], [-1.217818018874797, 48.68995133317224, 0], [-1.217862450674516, 48.68995066132349, 0], [-1.217906720969666, 48.68994806692835, 0], [-1.217950640183032, 48.68994356109693, 0], [-1.217994020240978, 48.68993716312417, 0], [-1.21803667537872, 48.68992890040802, 0], [-1.218078422936291, 48.68991880833156, 0], [-1.218119084140275, 48.68990693011176, 0], [-1.218158484869694, 48.68989331661407, 0], [-1.218196456401692, 48.68987802613515, 0], [-1.218232836133979, 48.68986112415253, 0], [-1.218267468281109, 48.68984268304469, 0], [-1.218300204542051, 48.68982278178093, 0], [-1.218330904734439, 48.68980150558333, 0], [-1.218359437395693, 48.68977894556136, 0], [-1.218385680345526, 48.6897551983221, 0], [-1.21840952120905, 48.68973036555666, 0], [-1.218430857898205, 48.68970455360417, 0], [-1.218449599048677, 48.6896778729968, 0], [-1.218465664411517, 48.68965043798626, 0], [-1.218471684858657, 48.68963775063093, 0], [-1.218510551688272, 48.689628354722, 0], [-1.218551212555046, 48.68961647634869, 0], [-1.218590612939741, 48.68960286270227, 0], [-1.21862858412086, 48.68958757207983, 0], [-1.218664963497591, 48.68957066995967, 0], [-1.218699595286048, 48.6895522287209, 0], [-1.218732331186718, 48.68953232733332, 0], [-1.218763031018735, 48.68951105101949, 0], [-1.218791563321156, 48.68948849088952, 0], [-1.218817805915173, 48.68946474355079, 0], [-1.218841646427458, 48.68943991069494, 0], [-1.218862982771349, 48.68941409866143, 0], [-1.218881723584271, 48.68938741798276, 0], [-1.218897788618314, 48.68935998291103, 0], [-1.218911109084324, 48.6893319109287, 0], [-1.218916946077193, 48.68931604686479, 0], [-1.219311158533372, 48.68923336622034, 0], [-1.219318005637715, 48.68923190365355, 0], [-1.219359752359175, 48.68922181110999, 0], [-1.219400412696472, 48.68920993243511, 0], [-1.219439812532386, 48.6891963184965, 0], [-1.219477783148018, 48.68918102759226, 0], [-1.219514161944892, 48.68916412520218, 0], [-1.219548793141763, 48.68914568370633, 0], [-1.219581528441334, 48.68912578207578, 0], [-1.219612227665576, 48.68910450553378, 0], [-1.219640759356166, 48.68908194519178, 0], [-1.219667001336575, 48.68905819765796, 0], [-1.219690841236449, 48.68903336462465, 0], [-1.219712176971708, 48.68900755243239, 0], [-1.219713682744634, 48.68900556795596, 0], [-1.220712602831782, 48.68768089509464, 0], [-1.220729836324375, 48.68765619859995, 0], [-1.220745899796347, 48.6876287632656, 0], [-1.22075921877143, 48.68760069106458, 0], [-1.220769736220002, 48.68757210220734, 0], [-1.220777407109106, 48.68754311911673, 0], [-1.220782198595733, 48.68751386590316, 0], [-1.220784090166893, 48.68748446783383, 0], [-1.22078307372774, 48.68745505079586, 0], [-1.220779153635849, 48.68742574075746, 0], [-1.220772346682768, 48.6873966632286, 0], [-1.220762682021617, 48.68736794272287, 0], [-1.22075839661199, 48.6873574474196, 0], [-1.220711630349567, 48.68724817404269, 0], [-1.220728854589481, 48.68723623594146, 0], [-1.221009622900662, 48.68702843107955, 0], [-1.221038156724945, 48.68700586747024, 0], [-1.221064396961369, 48.68698211961268, 0], [-1.221088235186183, 48.68695728628485, 0], [-1.2211095693226, 48.68693147382821, 0], [-1.221128308017256, 48.68690479277707, 0], [-1.221144371031735, 48.68687735738523, 0], [-1.221157689585135, 48.68684928513626, 0], [-1.221168206649774, 48.68682069624085, 0], [-1.221175877194494, 48.68679171312187, 0], [-1.221180668377624, 48.68676245988991, 0], [-1.221182559687433, 48.68673306181222, 0], [-1.221181543030294, 48.68670364477601, 0], [-1.221177622764622, 48.68667433474954, 0], [-1.221170815682804, 48.68664525724248, 0], [-1.221161150938459, 48.68661653676872, 0], [-1.221148669922239, 48.68658829631307, 0], [-1.221133426084127, 48.68656065680443, 0], [-1.221115484704365, 48.68653373659841, 0], [-1.221094922614074, 48.68650765097032, 0], [-1.22107182786644, 48.68648251162126, 0], [-1.221046299358792, 48.68645842620046, 0], [-1.221018446410005, 48.6864354978438, 0], [-1.220988388291691, 48.68641382473213, 0], [-1.220956253717849, 48.68639349967177, 0], [-1.220922180293427, 48.68637460969579, 0], [-1.220886313924972, 48.68635723569236, 0], [-1.220848808196569, 48.68634145205807, 0], [-1.220809823711029, 48.68632732637933, 0], [-1.220769527403298, 48.68631491914309, 0], [-1.22072809182503, 48.68630428347758, 0], [-1.220685694406034, 48.68629546492549, 0], [-1.220650435048101, 48.68628963061322, 0], [-1.220430605836327, 48.68625736748525, 0], [-1.220279800044912, 48.68615371956964, 0], [-1.220275637258177, 48.68615088356881, 0], [-1.22024350314067, 48.68613055830829, 0], [-1.220209430162351, 48.68611166812003, 0], [-1.220173564227869, 48.68609429389326, 0], [-1.22013605891945, 48.68607851002549, 0], [-1.220097074838147, 48.68606438410414, 0], [-1.220056778917147, 48.68605197661718, 0], [-1.220015343706444, 48.68604134069392, 0], [-1.219972946634271, 48.68603252187796, 0], [-1.219929769247226, 48.6860255579321, 0], [-1.219885996432932, 48.6860204786758, 0], [-1.219841815628477, 48.68601730585903, 0], [-1.219797416017949, 48.6860160530678, 0], [-1.219752987722067, 48.68601672566654, 0], [-1.219708720984671, 48.68601932077528, 0], [-1.219664805357696, 48.68602382728152, 0] ] ] } }, { "type": "Feature", "properties": { "combine": "yes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-1.231876888232117, 48.68704078661146, 0], [-1.231894835556144, 48.68706770513215, 0], [-1.231915403480068, 48.68709378882199, 0], [-1.23193850393178, 48.68711892598532, 0], [-1.231964037993865, 48.68714300897948, 0], [-1.231991896327345, 48.68716593467569, 0], [-1.232021959639524, 48.68718760490103, 0], [-1.232054099195261, 48.68720792685863, 0], [-1.232088177367805, 48.68722681352494, 0], [-1.232124048228227, 48.68724418402274, 0], [-1.232152691648902, 48.68725643765121, 0], [-1.233737282913006, 48.68789755088939, 0], [-1.233746149658883, 48.68790107708287, 0], [-1.233785138999959, 48.68791519836111, 0], [-1.233825439802894, 48.68792760102125, 0], [-1.233866879489995, 48.68793823195183, 0], [-1.233889218960429, 48.68794312699608, 0], [-1.2353537229601, 48.68824548430882, 0], [-1.236200922295525, 48.68959870231987, 0], [-1.236216327853634, 48.68962149760413, 0], [-1.236236899065228, 48.6896475805134, 0], [-1.236260002851932, 48.68967271680093, 0], [-1.236285540282003, 48.6896967988277, 0], [-1.236313402002054, 48.68971972346925, 0], [-1.236343468704921, 48.68974139255705, 0], [-1.236375611640994, 48.68976171329906, 0], [-1.236409693168774, 48.68978059867713, 0], [-1.236445567345244, 48.68979796781938, 0], [-1.236474211744936, 48.68981021974684, 0], [-1.236984238317231, 48.69001654098786, 0], [-1.236993107194624, 48.69002006754857, 0], [-1.237032099091655, 48.6900341877203, 0], [-1.23707240239483, 48.69004658923706, 0], [-1.237113844515845, 48.69005721899229, 0], [-1.237156247989337, 48.69006603146677, 0], [-1.237199431233198, 48.6900729889231, 0], [-1.237243209325269, 48.69007806156756, 0], [-1.237287394796531, 48.69008122767783, 0], [-1.237331798432959, 48.69008247369567, 0], [-1.237376230086256, 48.69008179428539, 0], [-1.2374204994882, 48.69007919235634, 0], [-1.237464417065335, 48.69007467905077, 0], [-1.237507794751018, 48.69006827369573, 0], [-1.237550446790658, 48.69006000372082, 0], [-1.237592190537518, 48.69004990454005, 0], [-1.237632847234547, 48.6900380194009, 0], [-1.237672242780072, 48.69002439919854, 0], [-1.237710208473402, 48.69000910225806, 0], [-1.237746581737222, 48.68999219408496, 0], [-1.237781206813848, 48.68997374708415, 0], [-1.237813935432564, 48.68995384025009, 0], [-1.237844627443596, 48.68993255882874, 0], [-1.237873151419537, 48.68990999395202, 0], [-1.237899385217212, 48.68988624224765, 0], [-1.237923216500978, 48.68986140542603, 0], [-1.237944543223766, 48.68983558984346, 0], [-1.237963274064065, 48.68980890604781, 0], [-1.23797198165895, 48.68979468992837, 0], [-1.237992349874044, 48.68978737681825, 0], [-1.238030315290895, 48.68977207977153, 0], [-1.238066688275499, 48.68975517149655, 0], [-1.238101313071389, 48.68973672439871, 0], [-1.238134041408949, 48.68971681747293, 0], [-1.238164733139706, 48.68969553596549, 0], [-1.23819325683743, 48.6896729710087, 0], [-1.238219490360144, 48.68964921923065, 0], [-1.238243321373327, 48.68962438234202, 0], [-1.238264647831127, 48.68959856669943, 0], [-1.238283378413152, 48.68957188285098, 0], [-1.23829943291536, 48.68954444506222, 0], [-1.238302283653305, 48.68953894197132, 0], [-1.239633076693232, 48.68691462357536, 0], [-1.23964353449006, 48.68689205230523, 0], [-1.239654041049243, 48.68686346171506, 0], [-1.239661700941064, 48.6868344773603, 0], [-1.239664105687466, 48.6868219543653, 0], [-1.239681829358437, 48.6867180148527, 0], [-1.239705832653528, 48.68673131527865, 0], [-1.239741705792767, 48.68674868339397, 0], [-1.239779217756483, 48.68676446084707, 0], [-1.239818207910708, 48.68677858007498, 0], [-1.239858509290821, 48.68679098061569, 0], [-1.239899949316832, 48.68680160936673, 0], [-1.23994235053229, 48.68681042081315, 0], [-1.2399855313648, 48.68681737722199, 0], [-1.240029306902555, 48.68682244880403, 0], [-1.240073489687426, 48.6868256138415, 0], [-1.240117890516879, 48.68682685878072, 0], [-1.240162319254667, 48.68682617829068, 0], [-1.240206585645041, 48.68682357528537, 0], [-1.240250500127451, 48.6868190609115, 0], [-1.240293874648526, 48.68681265450086, 0], [-1.240336523467223, 48.68680438348743, 0], [-1.240378263950532, 48.68679428328975, 0], [-1.240418917355435, 48.68678239715964, 0], [-1.240458309594366, 48.68676877599655, 0], [-1.24049627198076, 48.68675347812966, 0], [-1.240512379791365, 48.68674627885909, 0], [-1.24098807961178, 48.68652704142327, 0], [-1.241008341591614, 48.68651733154844, 0], [-1.241042963077512, 48.68649888355759, 0], [-1.241075688141851, 48.68647897578704, 0], [-1.241106376650125, 48.68645769348676, 0], [-1.241134897189915, 48.68643512779241, 0], [-1.241161127632713, 48.68641137533528, 0], [-1.241184955657306, 48.68638653782886, 0], [-1.241206279230533, 48.68636072163257, 0], [-1.241225007044313, 48.68633403729671, 0], [-1.241241058906752, 48.68630659908912, 0], [-1.24125414911463, 48.68627903962725, 0], [-1.24144259384547, 48.68583266366214, 0], [-1.241441572583335, 48.68584863847769, 0], [-1.241442601079963, 48.6858780553352, 0], [-1.241446533099953, 48.6859073646696, 0], [-1.241453351810689, 48.68593644097353, 0], [-1.241463028018364, 48.68596515973729, 0], [-1.241475520292559, 48.685993397982, 0], [-1.241478094351085, 48.68599847917226, 0], [-1.24161726750057, 48.68626786979683, 0], [-1.241629948423502, 48.68629042539506, 0], [-1.241647900702565, 48.68631734239041, 0], [-1.241668473380346, 48.68634342433206, 0], [-1.241691578364452, 48.6863685595317, 0], [-1.241717116718044, 48.68639264035504, 0], [-1.241744979083739, 48.68641556368267, 0], [-1.241775046151734, 48.68643723135189, 0], [-1.241807189170541, 48.68645755057656, 0], [-1.24184127049864, 48.68647643434506, 0], [-1.241877144193815, 48.6864938017925, 0], [-1.241914656637566, 48.68650957854732, 0], [-1.24195364719389, 48.68652369704933, 0], [-1.241993948896465, 48.68653609683966, 0], [-1.242035389163883, 48.6865467248191, 0], [-1.242077790538654, 48.68655553547599, 0], [-1.242120971447722, 48.68656249108072, 0], [-1.242164746978942, 48.68656756184757, 0], [-1.242208929674205, 48.68657072606221, 0], [-1.242253330331355, 48.68657197017451, 0], [-1.242297758814948, 48.68657128885702, 0], [-1.242342024870249, 48.68656868502712, 0], [-1.242385938938151, 48.68656416983534, 0], [-1.242429312967099, 48.6865577626167, 0], [-1.24247196121811, 48.68654949080878, 0], [-1.242513701060772, 48.68653938983353, 0], [-1.242554353754424, 48.68652750294605, 0], [-1.242593745214917, 48.68651388104896, 0], [-1.242631706758866, 48.68649858247476, 0], [-1.242668075826803, 48.68648167273578, 0], [-1.242702696678968, 48.68646322424369, 0], [-1.242735421062751, 48.6864433159994, 0], [-1.242766100970205, 48.68642203908784, 0], [-1.24304677361593, 48.68621418025731, 0], [-1.243075297084517, 48.68619161116327, 0], [-1.24310152648331, 48.68616785826179, 0], [-1.243125353433643, 48.68614302035165, 0], [-1.24314667590699, 48.68611720379397, 0], [-1.243165402599906, 48.68609051914071, 0], [-1.243181453325415, 48.6860630806609, 0], [-1.243194759355253, 48.68603500585147, 0], [-1.243205263715275, 48.68600641493407, 0], [-1.243212921428858, 48.68597743034016, 0], [-1.243217699709169, 48.68594817618665, 0], [-1.243219578099792, 48.6859187777448, 0], [-1.243218548562397, 48.68588936090333, 0], [-1.243214615510573, 48.68586005162968, 0], [-1.243207795791383, 48.68583097543035, 0], [-1.243198118612705, 48.6858022568135, 0], [-1.243185625418286, 48.68577401875609, 0], [-1.243170369710349, 48.68574638217675, 0], [-1.243152416819955, 48.68571946541848, 0], [-1.243131843627445, 48.68569338374182, 0], [-1.243108738233587, 48.68566824883111, 0], [-1.243083199581354, 48.68564416831633, 0], [-1.243055337032966, 48.68562124531255, 0], [-1.243025269901181, 48.68559957797767, 0], [-1.24299312693861, 48.68557925909313, 0], [-1.24295904578611, 48.68556037566567, 0], [-1.242923172383281, 48.6855430085554, 0], [-1.242885660344346, 48.6855272321294, 0], [-1.242846670299174, 48.68551311394322, 0], [-1.242806369206451, 48.6855007144517, 0], [-1.242764929638374, 48.68549008674998, 0], [-1.24272252904182, 48.68548127634649, 0], [-1.242687267698694, 48.68547544881101, 0], [-1.242267425868173, 48.68541391417829, 0], [-1.242259507166998, 48.68541278630602, 0], [-1.242215732631882, 48.68540771557486, 0], [-1.242171550958462, 48.68540455136253, 0], [-1.242127151334524, 48.68540330721842, 0], [-1.242082723880948, 48.68540398846992, 0], [-1.242038458837897, 48.68540659219991, 0], [-1.241994545750051, 48.68541110725908, 0], [-1.241951172655156, 48.68541751431376, 0], [-1.241908525278865, 48.68542578592879, 0], [-1.241866786239421, 48.68543588668454, 0], [-1.241826134265893, 48.68544777332929, 0], [-1.241786743432878, 48.68546139496384, 0], [-1.241748782415049, 48.68547669325947, 0], [-1.241712413764977, 48.68549360270815, 0], [-1.241677793217169, 48.6855120509026, 0], [-1.241645069020816, 48.68553195884653, 0], [-1.241614381305827, 48.68555324129258, 0], [-1.241585861481664, 48.68557580710775, 0], [-1.241559631675577, 48.6855995596636, 0], [-1.241535804209197, 48.68562439724946, 0], [-1.241524986590796, 48.68563749434271, 0], [-1.241644546652168, 48.68535428145905, 0], [-1.241644763614356, 48.68535376633652, 0], [-1.241655268713746, 48.68532517555944, 0], [-1.241662927217198, 48.68529619106752, 0], [-1.241667706334819, 48.68526693697703, 0], [-1.241669585606497, 48.68523753855907, 0], [-1.241668556990125, 48.68520812170211, 0], [-1.241664624895416, 48.68517881237371, 0], [-1.241657806165215, 48.68514973608062, 0], [-1.241648130003223, 48.68512101733144, 0], [-1.241642225427855, 48.6851076701785, 0], [-1.241915908717166, 48.68490498822995, 0], [-1.241944431950601, 48.68488241941493, 0], [-1.241970661200633, 48.68485866676972, 0], [-1.241994488089175, 48.68483382909205, 0], [-1.242015810587982, 48.68480801274203, 0], [-1.242034537393528, 48.68478132827072, 0], [-1.242050588318258, 48.68475388994639, 0], [-1.242063894633128, 48.68472581526532, 0], [-1.242074399362814, 48.68469722444857, 0], [-1.242082057529015, 48.68466823992715, 0], [-1.242086836343019, 48.68463898581781, 0], [-1.242088715346092, 48.68460958739148, 0], [-1.242087686497286, 48.68458017053685, 0], [-1.242083754207293, 48.68455086122134, 0], [-1.242076935319858, 48.68452178495176, 0], [-1.242067259039281, 48.68449306623656, 0], [-1.242054766805554, 48.68446482805296, 0], [-1.242039512116662, 48.68443719132034, 0], [-1.242021560299409, 48.68441027438226, 0], [-1.242000988229481, 48.68438419249997, 0], [-1.24197788400287, 48.6843590573588, 0], [-1.241952346557531, 48.68433497658966, 0], [-1.24192448525047, 48.68431205330871, 0], [-1.241894419389249, 48.68429038567502, 0], [-1.241862277720942, 48.68427006647138, 0], [-1.241828197880892, 48.68425118270587, 0], [-1.241792325803084, 48.68423381523996, 0], [-1.241754815096043, 48.68421803844237, 0], [-1.241715826383965, 48.68420391987014, 0], [-1.241675526619839, 48.68419151997991, 0], [-1.241634088370147, 48.68418089186832, 0], [-1.241611653643651, 48.68417622980259, 0], [-1.241840057862589, 48.68400707737588, 0], [-1.241868580620584, 48.68398450857813, 0], [-1.241894809437922, 48.68396075594858, 0], [-1.241918635938335, 48.68393591828494, 0], [-1.241939958095195, 48.68391010194722, 0], [-1.241958684606497, 48.68388341748643, 0], [-1.241974735285942, 48.68385597917077, 0], [-1.241988041405508, 48.6838279044965, 0], [-1.24199854599067, 48.68379931368474, 0], [-1.242006204063806, 48.68377032916635, 0], [-1.242010982836603, 48.68374107505811, 0], [-1.242012861850468, 48.68371167663094, 0], [-1.242011833064451, 48.68368225977355, 0], [-1.242007900888926, 48.6836529504534, 0], [-1.242006161389382, 48.68364553291259, 0], [-1.242141143355307, 48.68354556556547, 0], [-1.24216966571624, 48.68352299669198, 0], [-1.242195894150504, 48.68349924399269, 0], [-1.242219720283411, 48.68347440626558, 0], [-1.242241042089891, 48.68344858987092, 0], [-1.242259768269438, 48.68342190535999, 0], [-1.242275818637153, 48.68339446700121, 0], [-1.242289124466391, 48.68336639229098, 0], [-1.242299628783887, 48.68333780145056, 0], [-1.242307286613118, 48.68330881691107, 0], [-1.242312065166791, 48.68327956278919, 0], [-1.24231394398735, 48.68325016435606, 0], [-1.242312915034567, 48.68322074750031, 0], [-1.242308982719573, 48.68319143818946, 0], [-1.242302163886315, 48.68316236193017, 0], [-1.242292487738732, 48.68313364323087, 0], [-1.242279995716276, 48.68310540506886, 0], [-1.242264741316113, 48.68307776836327, 0], [-1.242246789863708, 48.68305085145758, 0], [-1.242226218233269, 48.68302476961295, 0], [-1.242215683189332, 48.68301330828354, 0], [-1.242423258688441, 48.68285957529984, 0], [-1.242451780533487, 48.68283700635504, 0], [-1.242478008476524, 48.68281325358993, 0], [-1.242501834144882, 48.68278841580286, 0], [-1.242523155515531, 48.68276259935436, 0], [-1.242541881289763, 48.68273591479587, 0], [-1.242557931284436, 48.68270847639617, 0], [-1.242571236774586, 48.68268040165172, 0], [-1.242581740788245, 48.68265181078393, 0], [-1.242589398350329, 48.68262282622402, 0], [-1.242594176674625, 48.68259357208886, 0], [-1.242596055304537, 48.6825641736495, 0], [-1.242595026200715, 48.68253475679471, 0], [-1.24259109377491, 48.68250544749196, 0], [-1.242584274871488, 48.68247637124791, 0], [-1.242574598694808, 48.6824476525709, 0], [-1.242562106684342, 48.68241941443812, 0], [-1.242546852337256, 48.68239177776857, 0], [-1.242528900978777, 48.68236486090563, 0], [-1.24250832948269, 48.68233877911024, 0], [-1.242485225942489, 48.68231364406726, 0], [-1.242459689293214, 48.68228956340731, 0], [-1.242431828888471, 48.68226664024594, 0], [-1.242401764031906, 48.68224497274191, 0], [-1.242369623466337, 48.68222465367724, 0], [-1.242335544822391, 48.68220577005949, 0], [-1.242299674028915, 48.68218840274961, 0], [-1.242262164688921, 48.68217262611546, 0], [-1.242223177420787, 48.68215850771354, 0], [-1.24218287917125, 48.6821461079996, 0], [-1.242141442500375, 48.6821354800697, 0], [-1.242099044842571, 48.68212666943337, 0], [-1.242063785924805, 48.68212084170458, 0], [-1.241643972874622, 48.6820593047727, 0], [-1.241636054715873, 48.68205817685707, 0], [-1.24159228316483, 48.68205310588655, 0], [-1.24154810447902, 48.68204994143317, 0], [-1.24150370783344, 48.68204869704734, 0], [-1.241459283336159, 48.68204937805739, 0], [-1.241415021214711, 48.68205198154737, 0], [-1.241371111001346, 48.68205649636892, 0], [-1.241327740721379, 48.68206290318948, 0], [-1.241285096088494, 48.68207117457477, 0], [-1.241243359709121, 48.68208127510623, 0], [-1.241202710301002, 48.68209316153303, 0], [-1.241163321927699, 48.68210678295695, 0], [-1.241125363253395, 48.68212208105017, 0], [-1.24108899682063, 48.68213899030557, 0], [-1.241054378354356, 48.68215743831664, 0], [-1.241021656094894, 48.6821773460878, 0], [-1.240990970163838, 48.68219862837257, 0], [-1.240962451963037, 48.68222119403864, 0], [-1.240936223612785, 48.6822449464581, 0], [-1.24091239742848, 48.68226978392087, 0], [-1.240891075439625, 48.68229560007076, 0], [-1.240872348953124, 48.6823222843605, 0], [-1.240856298161708, 48.68234972252508, 0], [-1.240842991801314, 48.68237779707117, 0], [-1.240832486856001, 48.68240638778029, 0], [-1.24082482831386, 48.68243537222333, 0], [-1.240820048974936, 48.68246462628516, 0], [-1.240818169310072, 48.68249402469557, 0], [-1.240819197373266, 48.68252344156639, 0], [-1.240823128767377, 48.68255275092985, 0], [-1.240829946662465, 48.6825818272785, 0], [-1.240839621868282, 48.68261054610245, 0], [-1.240852112958644, 48.6826387844225, 0], [-1.240854686782378, 48.68264386562812, 0], [-1.240924047025767, 48.68277813582048, 0], [-1.24092058261297, 48.68277914883599, 0], [-1.240881193625718, 48.68279277016226, 0], [-1.240843234347557, 48.68280806816124, 0], [-1.240806867323605, 48.68282497732622, 0], [-1.240772248281392, 48.68284342525114, 0], [-1.240739525463657, 48.68286333294072, 0], [-1.240708838994371, 48.68288461514884, 0], [-1.240680320277763, 48.68290718074352, 0], [-1.240654091436284, 48.68293093309715, 0], [-1.24063026478743, 48.68295577049997, 0], [-1.240608942362704, 48.68298158659603, 0], [-1.240590215470887, 48.68300827083824, 0], [-1.240574164306429, 48.6830357089619, 0], [-1.240560857606907, 48.68306378347377, 0], [-1.240550352357737, 48.68309237415547, 0], [-1.24054269354843, 48.68312135857809, 0], [-1.240537913980089, 48.68315061262656, 0], [-1.240536034124578, 48.68318001103087, 0], [-1.240537062036713, 48.68320942790261, 0], [-1.240540993319972, 48.68323873727418, 0], [-1.240547699315651, 48.68326733671395, 0], [-1.240542141356118, 48.68326957658968, 0], [-1.240505773896994, 48.68328648565857, 0], [-1.240471154426444, 48.68330493349185, 0], [-1.240438431189044, 48.68332484109481, 0], [-1.240407744310565, 48.68334612322155, 0], [-1.240379225196955, 48.68336868874052, 0], [-1.240352995972422, 48.68339244102442, 0], [-1.240329168956003, 48.68341727836377, 0], [-1.240307846180917, 48.68344309440289, 0], [-1.240289118957345, 48.68346977859497, 0], [-1.240273067481157, 48.68349721667546, 0], [-1.240259760491307, 48.68352529115141, 0], [-1.24024925497443, 48.68355388180449, 0], [-1.240241595921199, 48.68358286620597, 0], [-1.240236816133753, 48.6836121202408, 0], [-1.240234936084896, 48.68364151863908, 0], [-1.240235963830265, 48.6836709355125, 0], [-1.240239894974016, 48.68370024489334, 0], [-1.24024671268743, 48.68372932127408, 0], [-1.240256387780876, 48.68375804014464, 0], [-1.240268878828712, 48.68378627852572, 0], [-1.240271452652246, 48.68379135974395, 0], [-1.240410007775161, 48.6840595798357, 0], [-1.240404632655152, 48.68406037379048, 0], [-1.240361986175804, 48.68406864483102, 0], [-1.240320247952387, 48.68407874502493, 0], [-1.240279596710674, 48.6840906311226, 0], [-1.240240206522203, 48.68410425222712, 0], [-1.24020224605861, 48.68411955001244, 0], [-1.24016587787019, 48.68413645897235, 0], [-1.240131257689427, 48.68415490670182, 0], [-1.240098533764178, 48.68417481420634, 0], [-1.24006784622293, 48.6841960962408, 0], [-1.240039326474427, 48.68421866167368, 0], [-1.240013096645838, 48.6842424138782, 0], [-1.239989269058615, 48.68426725114533, 0], [-1.239976957171765, 48.68428166320464, 0], [-1.239692885818504, 48.68462895889504, 0], [-1.239632015134651, 48.68465701311774, 0], [-1.239630993618099, 48.68465644706258, 0], [-1.239595122010255, 48.68463907890984, 0], [-1.239557611690405, 48.68462330139381, 0], [-1.239518623281164, 48.6846091820749, 0], [-1.239478323734145, 48.6845967814126, 0], [-1.239436885614929, 48.68458615250732, 0], [-1.239394486364318, 48.68457734087247, 0], [-1.239351307537844, 48.68457038423979, 0], [-1.239307534029726, 48.68456531239796, 0], [-1.239263353279827, 48.68456214706481, 0], [-1.239218954471957, 48.68456090179441, 0], [-1.239174527723577, 48.684561581919, 0], [-1.239130263271733, 48.68456418452637, 0], [-1.239086350658627, 48.68456869847195, 0], [-1.239042977919946, 48.68457510442696, 0], [-1.239000330779847, 48.68458337496065, 0], [-1.23895859185543, 48.68459347465845, 0], [-1.238917939875648, 48.68460536027278, 0], [-1.238878548914695, 48.684618980909, 0], [-1.238840587648005, 48.68463427824284, 0], [-1.238804218629188, 48.68465118677014, 0], [-1.238769597594289, 48.68466963408766, 0], [-1.238736872794599, 48.68468954120281, 0], [-1.238706192238963, 48.68471081703906, 0], [-1.238425510039201, 48.68491866526829, 0], [-1.238417186554359, 48.68492525040573, 0], [-1.237639148791203, 48.68482564305124, 0], [-1.237605349430793, 48.68482189892747, 0], [-1.237561168562529, 48.68481873293844, 0], [-1.237516769570246, 48.68481748700888, 0], [-1.237472342572066, 48.68481816647388, 0], [-1.237428077806133, 48.68482076842402, 0], [-1.237384164816069, 48.68482528171756, 0], [-1.237340791639079, 48.68483168702848, 0], [-1.237298144001218, 48.68483995692888, 0], [-1.237256404521765, 48.68485005600678, 0], [-1.237243648350905, 48.68485378534642, 0], [-1.237233694379578, 48.68484896558083, 0], [-1.23719618464424, 48.68483318729254, 0], [-1.237157196735499, 48.6848190671708, 0], [-1.237119495136776, 48.68480740182307, 0], [-1.23502955450538, 48.68421167478038, 0], [-1.235026957032823, 48.68421093858871, 0], [-1.23498552017302, 48.6842003080742, 0], [-1.234943122028085, 48.6841914947929, 0], [-1.234899944149273, 48.68418453648365, 0], [-1.234856171426366, 48.68417946294214, 0], [-1.234811991295972, 48.68417629589352, 0], [-1.234808291795027, 48.68417611826649, 0], [-1.23425881494001, 48.68415073313425, 0], [-1.234186520180831, 48.68406791929154, 0], [-1.234166853636458, 48.68404676249908, 0], [-1.234141320091799, 48.68402267998964, 0], [-1.23411346252001, 48.68399975480997, 0], [-1.234083400212767, 48.68397808512763, 0], [-1.234051261901574, 48.68395776373383, 0], [-1.234017185207768, 48.68393887764601, 0], [-1.233981316051862, 48.68392150773599, 0], [-1.233943808029494, 48.68390572838248, 0], [-1.233904821753726, 48.68389160715373, 0], [-1.233870878879715, 48.68388102073224, 0], [-1.232575244079188, 48.6835055124789, 0], [-1.232568889460737, 48.68350369619243, 0], [-1.232527453703871, 48.68349306478895, 0], [-1.232485056586474, 48.68348425059821, 0], [-1.232441879655304, 48.68347729136278, 0], [-1.232398107796406, 48.68347221688259, 0], [-1.232353928442471, 48.6834690488866, 0], [-1.232309530771452, 48.68346780094045, 0], [-1.232265104895813, 48.68346847838771, 0], [-1.232220841048985, 48.68347107832769, 0], [-1.232176928770552, 48.68347558962726, 0], [-1.232133556094681, 48.68348199296896, 0], [-1.232090908745369, 48.6834902609332, 0], [-1.232049169340537, 48.68350035811641, 0], [-1.232008516611214, 48.68351224128186, 0], [-1.231969124634853, 48.6835258595453, 0], [-1.231931162091164, 48.68354115459265, 0], [-1.231894791539274, 48.68355806092958, 0], [-1.231860168721761, 48.68357650616215, 0], [-1.231827441897571, 48.68359641130677, 0], [-1.231796751207841, 48.68361769112811, 0], [-1.231768228074825, 48.6836402545044, 0], [-1.231741994639881, 48.68366400481765, 0], [-1.231718163240267, 48.68368884036673, 0], [-1.231696835927751, 48.68371465480363, 0], [-1.231680845795273, 48.68373713182951, 0], [-1.2315657331969, 48.6839112663349, 0], [-1.230975957043825, 48.68421435980282, 0], [-1.230949551169598, 48.68422864761228, 0], [-1.230916823560355, 48.68424855249586, 0], [-1.230886132086853, 48.68426983207236, 0], [-1.23085760817506, 48.68429239522103, 0], [-1.230831373969672, 48.68431614532463, 0], [-1.230807541810925, 48.6843409806832, 0], [-1.230786213754065, 48.68436679494941, 0], [-1.230767481131871, 48.68439347758403, 0], [-1.230751424163596, 48.68442091432915, 0], [-1.230738111611316, 48.68444898769766, 0], [-1.230727600485806, 48.68447757747604, 0], [-1.230719935801639, 48.68450656123915, 0], [-1.230715150385155, 48.68453581487471, 0], [-1.230713264732941, 48.68456521311447, 0], [-1.230714286925072, 48.68459463007087, 0], [-1.230718212589206, 48.68462393977588, 0], [-1.230725024920085, 48.68465301672045, 0], [-1.230734694751221, 48.68468173639225, 0], [-1.230747180679392, 48.68470997580846, 0], [-1.230755886434449, 48.6847264327031, 0], [-1.231471030500555, 48.68599864612484, 0], [-1.231848562816744, 48.68698338565324, 0], [-1.231849151231022, 48.68698490924069, 0], [-1.231861638357534, 48.6870131485304, 0], [-1.231876888232117, 48.68704078661146, 0] ] ] } } ] } ================================================ FILE: packages/turf-dissolve/test/in/issue-1237.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-83.49609375, 42.64507129879989], [-83.49609375, 42.645576368740564], [-83.49540710449219, 42.645576368740564], [-83.49540710449219, 42.64507129879989], [-83.49609375, 42.64507129879989] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-83.49609375, 42.64456622475866], [-83.49609375, 42.64507129879989], [-83.49540710449219, 42.64507129879989], [-83.49540710449219, 42.64456622475866], [-83.49609375, 42.64456622475866] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-83.49609375, 42.64052548480924], [-83.49609375, 42.64103059165476], [-83.49540710449219, 42.64103059165476], [-83.49540710449219, 42.64052548480924], [-83.49609375, 42.64052548480924] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-83.42674255371094, 42.681930627802714], [-83.42674255371094, 42.68243539838622], [-83.42605590820312, 42.68243539838622], [-83.42605590820312, 42.681930627802714], [-83.42674255371094, 42.681930627802714] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-83.42193603515625, 42.681930627802714], [-83.42193603515625, 42.68243539838622], [-83.42124938964844, 42.68243539838622], [-83.42124938964844, 42.681930627802714], [-83.42193603515625, 42.681930627802714] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-83.42262268066406, 42.681930627802714], [-83.42262268066406, 42.68243539838622], [-83.42193603515625, 42.68243539838622], [-83.42193603515625, 42.681930627802714], [-83.42262268066406, 42.681930627802714] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-83.41850280761719, 42.681930627802714], [-83.41850280761719, 42.68243539838622], [-83.41781616210938, 42.68243539838622], [-83.41781616210938, 42.681930627802714], [-83.41850280761719, 42.681930627802714] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-83.49609375, 42.66880515319917], [-83.49609375, 42.66931003040664], [-83.49540710449219, 42.66931003040664], [-83.49540710449219, 42.66880515319917], [-83.49609375, 42.66880515319917] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-83.49540710449219, 42.66830027189085], [-83.49540710449219, 42.66880515319917], [-83.49472045898438, 42.66880515319917], [-83.49472045898438, 42.66830027189085], [-83.49540710449219, 42.66830027189085] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-83.49472045898438, 42.66830027189085], [-83.49472045898438, 42.66880515319917], [-83.49403381347656, 42.66880515319917], [-83.49403381347656, 42.66830027189085], [-83.49472045898438, 42.66830027189085] ] ] } } ] } ================================================ FILE: packages/turf-dissolve/test/in/polysByProperty.geojson ================================================ { "type": "FeatureCollection", "propertyName": "combine", "features": [ { "type": "Feature", "properties": { "stroke": "#555555", "stroke-width": 2, "stroke-opacity": 1, "fill": "#ff0000", "fill-opacity": 0.5, "combine": "yes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [0.5, 0], [0, 1], [1, 1], [1, 0.5], [0.7, 0], [0.5, 0] ] ] } }, { "type": "Feature", "properties": { "stroke": "#555555", "stroke-width": 2, "stroke-opacity": 1, "fill": "#ff0000", "fill-opacity": 0.5, "combine": "yes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 0], [1, 1], [2, 1], [2, 0], [1, 0] ] ] } }, { "type": "Feature", "properties": { "stroke": "#555555", "stroke-width": 2, "stroke-opacity": 1, "fill": "#ff0000", "fill-opacity": 0.5, "combine": "yes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [0.23620605468749623, -0.8901516807502449], [0.23620605468749623, 0.10986321392741416], [1.2362060546874962, 0.10986321392741416], [1.2362060546874962, -0.8901516807502449], [0.23620605468749623, -0.8901516807502449] ] ] } }, { "type": "Feature", "properties": { "stroke": "#555555", "stroke-width": 2, "stroke-opacity": 1, "fill": "#00ff00", "fill-opacity": 0.5, "combine": "no" }, "geometry": { "type": "Polygon", "coordinates": [ [ [1, -1], [1, 0], [2, 0], [2, -1], [1, -1] ] ] } }, { "type": "Feature", "properties": { "stroke": "#555555", "stroke-width": 2, "stroke-opacity": 1, "fill": "#00ff00", "fill-opacity": 0.5, "combine": "no" }, "geometry": { "type": "Polygon", "coordinates": [ [ [0.851440429687502, -1.647722051796948], [0.851440429687502, 1.4500404973607692], [1.516113281250002, 1.4500404973607692], [1.516113281250002, -1.647722051796948], [0.851440429687502, -1.647722051796948] ] ] } }, { "type": "Feature", "properties": { "stroke": "#555555", "stroke-width": 2, "stroke-opacity": 1, "fill": "#ffff00", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.252685546875, 1.252341676699629], [-0.252685546875, 1.653212936926045], [0.28564453125, 1.653212936926045], [0.28564453125, 1.252341676699629], [-0.252685546875, 1.252341676699629] ] ] } } ] } ================================================ FILE: packages/turf-dissolve/test/in/polysWithoutProperty.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#555555", "stroke-width": 2, "stroke-opacity": 1, "fill": "#ff0000", "fill-opacity": 0.5, "combine": "yes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [0.5, 0], [0, 1], [1, 1], [1, 0.5], [0.7, 0], [0.5, 0] ] ] } }, { "type": "Feature", "properties": { "stroke": "#555555", "stroke-width": 2, "stroke-opacity": 1, "fill": "#ff0000", "fill-opacity": 0.5, "combine": "yes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 0], [1, 1], [2, 1], [2, 0], [1, 0] ] ] } }, { "type": "Feature", "properties": { "stroke": "#555555", "stroke-width": 2, "stroke-opacity": 1, "fill": "#ff0000", "fill-opacity": 0.5, "combine": "yes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [0.23620605468749623, -0.8901516807502449], [0.23620605468749623, 0.10986321392741416], [1.2362060546874962, 0.10986321392741416], [1.2362060546874962, -0.8901516807502449], [0.23620605468749623, -0.8901516807502449] ] ] } }, { "type": "Feature", "properties": { "stroke": "#555555", "stroke-width": 2, "stroke-opacity": 1, "fill": "#00ff00", "fill-opacity": 0.5, "combine": "no" }, "geometry": { "type": "Polygon", "coordinates": [ [ [1, -1], [1, 0], [2, 0], [2, -1], [1, -1] ] ] } }, { "type": "Feature", "properties": { "stroke": "#555555", "stroke-width": 2, "stroke-opacity": 1, "fill": "#00ff00", "fill-opacity": 0.5, "combine": "no" }, "geometry": { "type": "Polygon", "coordinates": [ [ [0.851440429687502, -1.647722051796948], [0.851440429687502, 1.4500404973607692], [1.516113281250002, 1.4500404973607692], [1.516113281250002, -1.647722051796948], [0.851440429687502, -1.647722051796948] ] ] } }, { "type": "Feature", "properties": { "stroke": "#555555", "stroke-width": 2, "stroke-opacity": 1, "fill": "#ffff00", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.252685546875, 1.252341676699629], [-0.252685546875, 1.653212936926045], [0.28564453125, 1.653212936926045], [0.28564453125, 1.252341676699629], [-0.252685546875, 1.252341676699629] ] ] } } ] } ================================================ FILE: packages/turf-dissolve/test/in/simplified-issue.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.705, 45.362], [-75.714, 45.36], [-75.717, 45.353], [-75.714, 45.347], [-75.705, 45.344], [-75.696, 45.347], [-75.692, 45.353], [-75.696, 45.36], [-75.705, 45.362] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.646, 45.363], [-75.655, 45.36], [-75.659, 45.354], [-75.655, 45.348], [-75.646, 45.345], [-75.637, 45.348], [-75.634, 45.354], [-75.637, 45.36], [-75.646, 45.363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.704, 45.379], [-75.713, 45.377], [-75.717, 45.37], [-75.713, 45.364], [-75.704, 45.361], [-75.695, 45.364], [-75.691, 45.37], [-75.695, 45.377], [-75.704, 45.379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.724, 45.344], [-75.733, 45.342], [-75.736, 45.335], [-75.733, 45.329], [-75.724, 45.326], [-75.715, 45.329], [-75.711, 45.335], [-75.715, 45.342], [-75.724, 45.344] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.685, 45.438], [-75.694, 45.435], [-75.698, 45.429], [-75.694, 45.422], [-75.685, 45.42], [-75.676, 45.422], [-75.673, 45.429], [-75.676, 45.435], [-75.685, 45.438] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.625, 45.357], [-75.634, 45.354], [-75.638, 45.348], [-75.634, 45.342], [-75.625, 45.339], [-75.616, 45.342], [-75.612, 45.348], [-75.616, 45.354], [-75.625, 45.357] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.702, 45.378], [-75.711, 45.375], [-75.714, 45.369], [-75.711, 45.362], [-75.702, 45.36], [-75.692, 45.362], [-75.689, 45.369], [-75.692, 45.375], [-75.702, 45.378] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.744, 45.405], [-75.753, 45.403], [-75.757, 45.396], [-75.753, 45.39], [-75.744, 45.388], [-75.735, 45.39], [-75.731, 45.396], [-75.735, 45.403], [-75.744, 45.405] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.691, 45.351], [-75.7, 45.349], [-75.703, 45.342], [-75.7, 45.336], [-75.691, 45.333], [-75.682, 45.336], [-75.678, 45.342], [-75.682, 45.349], [-75.691, 45.351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.706, 45.42], [-75.715, 45.417], [-75.719, 45.411], [-75.715, 45.405], [-75.706, 45.402], [-75.697, 45.405], [-75.693, 45.411], [-75.697, 45.417], [-75.706, 45.42] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.694, 45.343], [-75.703, 45.34], [-75.707, 45.334], [-75.703, 45.327], [-75.694, 45.325], [-75.685, 45.327], [-75.681, 45.334], [-75.685, 45.34], [-75.694, 45.343] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.643, 45.363], [-75.652, 45.36], [-75.656, 45.354], [-75.652, 45.347], [-75.643, 45.345], [-75.634, 45.347], [-75.631, 45.354], [-75.634, 45.36], [-75.643, 45.363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.697, 45.427], [-75.706, 45.425], [-75.71, 45.418], [-75.706, 45.412], [-75.697, 45.409], [-75.688, 45.412], [-75.684, 45.418], [-75.688, 45.425], [-75.697, 45.427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.618, 45.398], [-75.627, 45.395], [-75.631, 45.389], [-75.627, 45.383], [-75.618, 45.38], [-75.609, 45.383], [-75.606, 45.389], [-75.609, 45.395], [-75.618, 45.398] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.639, 45.437], [-75.648, 45.435], [-75.652, 45.428], [-75.648, 45.422], [-75.639, 45.419], [-75.63, 45.422], [-75.626, 45.428], [-75.63, 45.435], [-75.639, 45.437] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.754, 45.386], [-75.763, 45.383], [-75.767, 45.377], [-75.763, 45.371], [-75.754, 45.368], [-75.745, 45.371], [-75.741, 45.377], [-75.745, 45.383], [-75.754, 45.386] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.588, 45.458], [-75.597, 45.456], [-75.601, 45.449], [-75.597, 45.443], [-75.588, 45.44], [-75.579, 45.443], [-75.575, 45.449], [-75.579, 45.456], [-75.588, 45.458] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.729, 45.41], [-75.738, 45.407], [-75.742, 45.401], [-75.738, 45.394], [-75.729, 45.392], [-75.72, 45.394], [-75.717, 45.401], [-75.72, 45.407], [-75.729, 45.41] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.642, 45.363], [-75.651, 45.36], [-75.655, 45.354], [-75.651, 45.347], [-75.642, 45.345], [-75.633, 45.347], [-75.629, 45.354], [-75.633, 45.36], [-75.642, 45.363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.67, 45.352], [-75.679, 45.349], [-75.683, 45.343], [-75.679, 45.337], [-75.67, 45.334], [-75.661, 45.337], [-75.657, 45.343], [-75.661, 45.349], [-75.67, 45.352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.602, 45.392], [-75.611, 45.389], [-75.615, 45.383], [-75.611, 45.377], [-75.602, 45.374], [-75.593, 45.377], [-75.589, 45.383], [-75.593, 45.389], [-75.602, 45.392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.594, 45.457], [-75.603, 45.454], [-75.607, 45.448], [-75.603, 45.441], [-75.594, 45.439], [-75.585, 45.441], [-75.581, 45.448], [-75.585, 45.454], [-75.594, 45.457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.747, 45.39], [-75.756, 45.387], [-75.76, 45.381], [-75.756, 45.374], [-75.747, 45.372], [-75.738, 45.374], [-75.735, 45.381], [-75.738, 45.387], [-75.747, 45.39] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.757, 45.385], [-75.766, 45.383], [-75.77, 45.376], [-75.766, 45.37], [-75.757, 45.367], [-75.748, 45.37], [-75.745, 45.376], [-75.748, 45.383], [-75.757, 45.385] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.631, 45.392], [-75.64, 45.389], [-75.644, 45.383], [-75.64, 45.377], [-75.631, 45.374], [-75.622, 45.377], [-75.618, 45.383], [-75.622, 45.389], [-75.631, 45.392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.641, 45.42], [-75.65, 45.417], [-75.654, 45.411], [-75.65, 45.405], [-75.641, 45.402], [-75.632, 45.405], [-75.628, 45.411], [-75.632, 45.417], [-75.641, 45.42] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.666, 45.443], [-75.675, 45.44], [-75.679, 45.434], [-75.675, 45.428], [-75.666, 45.425], [-75.657, 45.428], [-75.653, 45.434], [-75.657, 45.44], [-75.666, 45.443] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.668, 45.442], [-75.677, 45.44], [-75.681, 45.433], [-75.677, 45.427], [-75.668, 45.424], [-75.659, 45.427], [-75.656, 45.433], [-75.659, 45.44], [-75.668, 45.442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.67, 45.442], [-75.679, 45.44], [-75.682, 45.433], [-75.679, 45.427], [-75.67, 45.424], [-75.661, 45.427], [-75.657, 45.433], [-75.661, 45.44], [-75.67, 45.442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.644, 45.451], [-75.653, 45.448], [-75.657, 45.442], [-75.653, 45.435], [-75.644, 45.433], [-75.635, 45.435], [-75.631, 45.442], [-75.635, 45.448], [-75.644, 45.451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.654, 45.448], [-75.663, 45.445], [-75.667, 45.439], [-75.663, 45.433], [-75.654, 45.43], [-75.645, 45.433], [-75.641, 45.439], [-75.645, 45.445], [-75.654, 45.448] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.605, 45.424], [-75.614, 45.421], [-75.617, 45.415], [-75.614, 45.409], [-75.605, 45.406], [-75.596, 45.409], [-75.592, 45.415], [-75.596, 45.421], [-75.605, 45.424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.596, 45.428], [-75.605, 45.426], [-75.609, 45.419], [-75.605, 45.413], [-75.596, 45.41], [-75.587, 45.413], [-75.584, 45.419], [-75.587, 45.426], [-75.596, 45.428] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.702, 45.343], [-75.711, 45.34], [-75.715, 45.334], [-75.711, 45.327], [-75.702, 45.325], [-75.693, 45.327], [-75.689, 45.334], [-75.693, 45.34], [-75.702, 45.343] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.73, 45.352], [-75.739, 45.35], [-75.742, 45.343], [-75.739, 45.337], [-75.73, 45.334], [-75.721, 45.337], [-75.717, 45.343], [-75.721, 45.35], [-75.73, 45.352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.734, 45.359], [-75.743, 45.357], [-75.746, 45.35], [-75.743, 45.344], [-75.734, 45.341], [-75.725, 45.344], [-75.721, 45.35], [-75.725, 45.357], [-75.734, 45.359] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.736, 45.363], [-75.745, 45.361], [-75.749, 45.354], [-75.745, 45.348], [-75.736, 45.345], [-75.727, 45.348], [-75.723, 45.354], [-75.727, 45.361], [-75.736, 45.363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.595, 45.428], [-75.604, 45.425], [-75.608, 45.419], [-75.604, 45.413], [-75.595, 45.41], [-75.586, 45.413], [-75.582, 45.419], [-75.586, 45.425], [-75.595, 45.428] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.618, 45.429], [-75.627, 45.427], [-75.631, 45.42], [-75.627, 45.414], [-75.618, 45.411], [-75.609, 45.414], [-75.605, 45.42], [-75.609, 45.427], [-75.618, 45.429] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.605, 45.426], [-75.614, 45.423], [-75.617, 45.417], [-75.614, 45.411], [-75.605, 45.408], [-75.596, 45.411], [-75.592, 45.417], [-75.596, 45.423], [-75.605, 45.426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.773, 45.378], [-75.782, 45.375], [-75.786, 45.369], [-75.782, 45.362], [-75.773, 45.36], [-75.764, 45.362], [-75.76, 45.369], [-75.764, 45.375], [-75.773, 45.378] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.636, 45.434], [-75.645, 45.431], [-75.648, 45.425], [-75.645, 45.419], [-75.636, 45.416], [-75.626, 45.419], [-75.623, 45.425], [-75.626, 45.431], [-75.636, 45.434] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.637, 45.434], [-75.646, 45.432], [-75.65, 45.425], [-75.646, 45.419], [-75.637, 45.416], [-75.628, 45.419], [-75.625, 45.425], [-75.628, 45.432], [-75.637, 45.434] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.627, 45.414], [-75.636, 45.412], [-75.64, 45.405], [-75.636, 45.399], [-75.627, 45.396], [-75.618, 45.399], [-75.615, 45.405], [-75.618, 45.412], [-75.627, 45.414] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.782, 45.38], [-75.791, 45.377], [-75.795, 45.371], [-75.791, 45.364], [-75.782, 45.362], [-75.773, 45.364], [-75.769, 45.371], [-75.773, 45.377], [-75.782, 45.38] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.757, 45.385], [-75.766, 45.382], [-75.77, 45.376], [-75.766, 45.369], [-75.757, 45.367], [-75.748, 45.369], [-75.744, 45.376], [-75.748, 45.382], [-75.757, 45.385] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.786, 45.351], [-75.795, 45.348], [-75.799, 45.342], [-75.795, 45.336], [-75.786, 45.333], [-75.777, 45.336], [-75.773, 45.342], [-75.777, 45.348], [-75.786, 45.351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.788, 45.356], [-75.797, 45.354], [-75.801, 45.348], [-75.797, 45.341], [-75.788, 45.339], [-75.779, 45.341], [-75.775, 45.348], [-75.779, 45.354], [-75.788, 45.356] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.62, 45.373], [-75.629, 45.371], [-75.633, 45.364], [-75.629, 45.358], [-75.62, 45.355], [-75.611, 45.358], [-75.607, 45.364], [-75.611, 45.371], [-75.62, 45.373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.621, 45.404], [-75.63, 45.402], [-75.634, 45.395], [-75.63, 45.389], [-75.621, 45.386], [-75.612, 45.389], [-75.609, 45.395], [-75.612, 45.402], [-75.621, 45.404] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.624, 45.383], [-75.633, 45.38], [-75.637, 45.374], [-75.633, 45.368], [-75.624, 45.365], [-75.615, 45.368], [-75.611, 45.374], [-75.615, 45.38], [-75.624, 45.383] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.677, 45.448], [-75.686, 45.446], [-75.689, 45.439], [-75.686, 45.433], [-75.677, 45.43], [-75.668, 45.433], [-75.664, 45.439], [-75.668, 45.446], [-75.677, 45.448] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.694, 45.421], [-75.703, 45.418], [-75.706, 45.412], [-75.703, 45.405], [-75.694, 45.403], [-75.685, 45.405], [-75.681, 45.412], [-75.685, 45.418], [-75.694, 45.421] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.75, 45.402], [-75.759, 45.4], [-75.763, 45.394], [-75.759, 45.387], [-75.75, 45.385], [-75.741, 45.387], [-75.738, 45.394], [-75.741, 45.4], [-75.75, 45.402] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.788, 45.35], [-75.797, 45.348], [-75.801, 45.341], [-75.797, 45.335], [-75.788, 45.332], [-75.779, 45.335], [-75.775, 45.341], [-75.779, 45.348], [-75.788, 45.35] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.692, 45.419], [-75.702, 45.416], [-75.705, 45.41], [-75.702, 45.403], [-75.692, 45.401], [-75.683, 45.403], [-75.68, 45.41], [-75.683, 45.416], [-75.692, 45.419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.631, 45.435], [-75.64, 45.432], [-75.644, 45.426], [-75.64, 45.42], [-75.631, 45.417], [-75.622, 45.42], [-75.618, 45.426], [-75.622, 45.432], [-75.631, 45.435] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.786, 45.376], [-75.795, 45.374], [-75.799, 45.367], [-75.795, 45.361], [-75.786, 45.359], [-75.777, 45.361], [-75.773, 45.367], [-75.777, 45.374], [-75.786, 45.376] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.648, 45.441], [-75.657, 45.438], [-75.661, 45.432], [-75.657, 45.426], [-75.648, 45.423], [-75.639, 45.426], [-75.635, 45.432], [-75.639, 45.438], [-75.648, 45.441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.64, 45.452], [-75.649, 45.449], [-75.653, 45.443], [-75.649, 45.437], [-75.64, 45.434], [-75.631, 45.437], [-75.628, 45.443], [-75.631, 45.449], [-75.64, 45.452] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.61, 45.427], [-75.619, 45.425], [-75.623, 45.419], [-75.619, 45.412], [-75.61, 45.41], [-75.601, 45.412], [-75.597, 45.419], [-75.601, 45.425], [-75.61, 45.427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.739, 45.37], [-75.748, 45.368], [-75.752, 45.361], [-75.748, 45.355], [-75.739, 45.352], [-75.73, 45.355], [-75.726, 45.361], [-75.73, 45.368], [-75.739, 45.37] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.704, 45.416], [-75.713, 45.414], [-75.717, 45.407], [-75.713, 45.401], [-75.704, 45.398], [-75.695, 45.401], [-75.691, 45.407], [-75.695, 45.414], [-75.704, 45.416] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.595, 45.457], [-75.604, 45.454], [-75.608, 45.448], [-75.604, 45.441], [-75.595, 45.439], [-75.586, 45.441], [-75.582, 45.448], [-75.586, 45.454], [-75.595, 45.457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.733, 45.39], [-75.743, 45.388], [-75.746, 45.381], [-75.743, 45.375], [-75.733, 45.372], [-75.724, 45.375], [-75.721, 45.381], [-75.724, 45.388], [-75.733, 45.39] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.617, 45.416], [-75.626, 45.413], [-75.63, 45.407], [-75.626, 45.401], [-75.617, 45.398], [-75.608, 45.401], [-75.604, 45.407], [-75.608, 45.413], [-75.617, 45.416] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.67, 45.452], [-75.679, 45.45], [-75.683, 45.444], [-75.679, 45.437], [-75.67, 45.435], [-75.661, 45.437], [-75.657, 45.444], [-75.661, 45.45], [-75.67, 45.452] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.742, 45.406], [-75.751, 45.404], [-75.755, 45.397], [-75.751, 45.391], [-75.742, 45.388], [-75.733, 45.391], [-75.729, 45.397], [-75.733, 45.404], [-75.742, 45.406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.756, 45.352], [-75.765, 45.349], [-75.769, 45.343], [-75.765, 45.336], [-75.756, 45.334], [-75.747, 45.336], [-75.744, 45.343], [-75.747, 45.349], [-75.756, 45.352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.809, 45.363], [-75.818, 45.36], [-75.822, 45.354], [-75.818, 45.347], [-75.809, 45.345], [-75.8, 45.347], [-75.796, 45.354], [-75.8, 45.36], [-75.809, 45.363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.67, 45.36], [-75.679, 45.357], [-75.683, 45.351], [-75.679, 45.345], [-75.67, 45.342], [-75.661, 45.345], [-75.657, 45.351], [-75.661, 45.357], [-75.67, 45.36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.708, 45.408], [-75.717, 45.405], [-75.721, 45.399], [-75.717, 45.392], [-75.708, 45.39], [-75.699, 45.392], [-75.695, 45.399], [-75.699, 45.405], [-75.708, 45.408] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.701, 45.413], [-75.71, 45.41], [-75.714, 45.404], [-75.71, 45.397], [-75.701, 45.395], [-75.692, 45.397], [-75.688, 45.404], [-75.692, 45.41], [-75.701, 45.413] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.632, 45.435], [-75.641, 45.433], [-75.645, 45.426], [-75.641, 45.42], [-75.632, 45.417], [-75.623, 45.42], [-75.619, 45.426], [-75.623, 45.433], [-75.632, 45.435] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.648, 45.438], [-75.657, 45.435], [-75.661, 45.429], [-75.657, 45.422], [-75.648, 45.42], [-75.639, 45.422], [-75.635, 45.429], [-75.639, 45.435], [-75.648, 45.438] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.73, 45.407], [-75.74, 45.404], [-75.743, 45.398], [-75.739, 45.391], [-75.73, 45.389], [-75.721, 45.391], [-75.718, 45.398], [-75.721, 45.404], [-75.73, 45.407] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.702, 45.351], [-75.711, 45.349], [-75.715, 45.342], [-75.711, 45.336], [-75.702, 45.333], [-75.693, 45.336], [-75.689, 45.342], [-75.693, 45.349], [-75.702, 45.351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.63, 45.421], [-75.639, 45.419], [-75.643, 45.412], [-75.639, 45.406], [-75.63, 45.403], [-75.621, 45.406], [-75.617, 45.412], [-75.621, 45.419], [-75.63, 45.421] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.613, 45.442], [-75.622, 45.44], [-75.625, 45.433], [-75.622, 45.427], [-75.613, 45.424], [-75.604, 45.427], [-75.6, 45.433], [-75.604, 45.44], [-75.613, 45.442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.736, 45.369], [-75.745, 45.366], [-75.749, 45.36], [-75.745, 45.354], [-75.736, 45.351], [-75.727, 45.354], [-75.723, 45.36], [-75.727, 45.366], [-75.736, 45.369] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.631, 45.432], [-75.64, 45.43], [-75.644, 45.423], [-75.64, 45.417], [-75.631, 45.414], [-75.622, 45.417], [-75.618, 45.423], [-75.622, 45.43], [-75.631, 45.432] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.68, 45.441], [-75.689, 45.438], [-75.692, 45.432], [-75.689, 45.425], [-75.68, 45.423], [-75.671, 45.425], [-75.667, 45.432], [-75.671, 45.438], [-75.68, 45.441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.748, 45.384], [-75.757, 45.381], [-75.761, 45.375], [-75.757, 45.368], [-75.748, 45.366], [-75.739, 45.368], [-75.735, 45.375], [-75.739, 45.381], [-75.748, 45.384] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.788, 45.372], [-75.797, 45.369], [-75.801, 45.363], [-75.797, 45.356], [-75.788, 45.354], [-75.779, 45.356], [-75.775, 45.363], [-75.779, 45.369], [-75.788, 45.372] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.621, 45.406], [-75.63, 45.403], [-75.634, 45.397], [-75.63, 45.39], [-75.621, 45.388], [-75.612, 45.39], [-75.608, 45.397], [-75.612, 45.403], [-75.621, 45.406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.752, 45.343], [-75.761, 45.341], [-75.765, 45.334], [-75.761, 45.328], [-75.752, 45.325], [-75.743, 45.328], [-75.739, 45.334], [-75.743, 45.341], [-75.752, 45.343] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.631, 45.369], [-75.641, 45.367], [-75.644, 45.36], [-75.641, 45.354], [-75.631, 45.351], [-75.622, 45.354], [-75.619, 45.36], [-75.622, 45.367], [-75.631, 45.369] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.605, 45.445], [-75.614, 45.443], [-75.617, 45.436], [-75.614, 45.43], [-75.605, 45.427], [-75.596, 45.43], [-75.592, 45.436], [-75.596, 45.443], [-75.605, 45.445] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.736, 45.364], [-75.745, 45.361], [-75.748, 45.355], [-75.745, 45.349], [-75.736, 45.346], [-75.727, 45.349], [-75.723, 45.355], [-75.727, 45.361], [-75.736, 45.364] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.72, 45.336], [-75.729, 45.333], [-75.733, 45.327], [-75.729, 45.321], [-75.72, 45.318], [-75.711, 45.321], [-75.707, 45.327], [-75.711, 45.333], [-75.72, 45.336] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.65, 45.454], [-75.659, 45.452], [-75.662, 45.445], [-75.659, 45.439], [-75.65, 45.436], [-75.641, 45.439], [-75.637, 45.445], [-75.641, 45.452], [-75.65, 45.454] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.734, 45.372], [-75.743, 45.37], [-75.747, 45.363], [-75.743, 45.357], [-75.734, 45.354], [-75.725, 45.357], [-75.721, 45.363], [-75.725, 45.37], [-75.734, 45.372] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.775, 45.356], [-75.784, 45.353], [-75.788, 45.347], [-75.784, 45.34], [-75.775, 45.338], [-75.766, 45.34], [-75.762, 45.347], [-75.766, 45.353], [-75.775, 45.356] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.775, 45.356], [-75.784, 45.353], [-75.787, 45.347], [-75.784, 45.341], [-75.775, 45.338], [-75.766, 45.341], [-75.762, 45.347], [-75.766, 45.353], [-75.775, 45.356] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.721, 45.339], [-75.73, 45.336], [-75.734, 45.33], [-75.73, 45.323], [-75.721, 45.321], [-75.712, 45.323], [-75.708, 45.33], [-75.712, 45.336], [-75.721, 45.339] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.606, 45.445], [-75.615, 45.442], [-75.618, 45.436], [-75.615, 45.43], [-75.606, 45.427], [-75.596, 45.43], [-75.593, 45.436], [-75.596, 45.442], [-75.606, 45.445] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.643, 45.363], [-75.652, 45.361], [-75.656, 45.354], [-75.652, 45.348], [-75.643, 45.345], [-75.634, 45.348], [-75.63, 45.354], [-75.634, 45.361], [-75.643, 45.363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.696, 45.42], [-75.705, 45.418], [-75.708, 45.411], [-75.705, 45.405], [-75.696, 45.403], [-75.686, 45.405], [-75.683, 45.411], [-75.686, 45.418], [-75.696, 45.42] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.73, 45.414], [-75.739, 45.412], [-75.743, 45.405], [-75.739, 45.399], [-75.73, 45.396], [-75.721, 45.399], [-75.717, 45.405], [-75.721, 45.412], [-75.73, 45.414] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.753, 45.402], [-75.762, 45.399], [-75.766, 45.393], [-75.762, 45.386], [-75.753, 45.384], [-75.744, 45.386], [-75.74, 45.393], [-75.744, 45.399], [-75.753, 45.402] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.629, 45.455], [-75.638, 45.453], [-75.642, 45.446], [-75.638, 45.44], [-75.629, 45.437], [-75.62, 45.44], [-75.616, 45.446], [-75.62, 45.453], [-75.629, 45.455] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.639, 45.437], [-75.648, 45.435], [-75.652, 45.428], [-75.648, 45.422], [-75.639, 45.419], [-75.63, 45.422], [-75.626, 45.428], [-75.63, 45.435], [-75.639, 45.437] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.754, 45.386], [-75.763, 45.384], [-75.767, 45.377], [-75.763, 45.371], [-75.754, 45.368], [-75.745, 45.371], [-75.741, 45.377], [-75.745, 45.384], [-75.754, 45.386] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.719, 45.346], [-75.728, 45.344], [-75.732, 45.337], [-75.728, 45.331], [-75.719, 45.328], [-75.71, 45.331], [-75.706, 45.337], [-75.71, 45.344], [-75.719, 45.346] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.637, 45.434], [-75.646, 45.432], [-75.65, 45.425], [-75.646, 45.419], [-75.637, 45.416], [-75.628, 45.419], [-75.625, 45.425], [-75.628, 45.432], [-75.637, 45.434] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.691, 45.351], [-75.7, 45.349], [-75.703, 45.342], [-75.7, 45.336], [-75.691, 45.333], [-75.682, 45.336], [-75.678, 45.342], [-75.682, 45.349], [-75.691, 45.351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.702, 45.378], [-75.711, 45.375], [-75.714, 45.369], [-75.711, 45.362], [-75.702, 45.36], [-75.692, 45.362], [-75.689, 45.369], [-75.692, 45.375], [-75.702, 45.378] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.719, 45.346], [-75.728, 45.344], [-75.732, 45.337], [-75.728, 45.331], [-75.719, 45.328], [-75.71, 45.331], [-75.706, 45.337], [-75.71, 45.344], [-75.719, 45.346] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.72, 45.336], [-75.729, 45.333], [-75.733, 45.327], [-75.729, 45.321], [-75.72, 45.318], [-75.711, 45.321], [-75.707, 45.327], [-75.711, 45.333], [-75.72, 45.336] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.72, 45.336], [-75.729, 45.333], [-75.733, 45.327], [-75.729, 45.321], [-75.72, 45.318], [-75.711, 45.321], [-75.707, 45.327], [-75.711, 45.333], [-75.72, 45.336] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.72, 45.336], [-75.729, 45.333], [-75.733, 45.327], [-75.729, 45.321], [-75.72, 45.318], [-75.711, 45.321], [-75.707, 45.327], [-75.711, 45.333], [-75.72, 45.336] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.72, 45.336], [-75.729, 45.333], [-75.733, 45.327], [-75.729, 45.321], [-75.72, 45.318], [-75.711, 45.321], [-75.707, 45.327], [-75.711, 45.333], [-75.72, 45.336] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.625, 45.357], [-75.634, 45.354], [-75.638, 45.348], [-75.634, 45.342], [-75.625, 45.339], [-75.616, 45.342], [-75.612, 45.348], [-75.616, 45.354], [-75.625, 45.357] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.597, 45.384], [-75.606, 45.381], [-75.61, 45.375], [-75.606, 45.368], [-75.597, 45.366], [-75.588, 45.368], [-75.584, 45.375], [-75.588, 45.381], [-75.597, 45.384] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.67, 45.442], [-75.679, 45.44], [-75.682, 45.433], [-75.679, 45.427], [-75.67, 45.424], [-75.661, 45.427], [-75.657, 45.433], [-75.661, 45.44], [-75.67, 45.442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.612, 45.422], [-75.621, 45.419], [-75.624, 45.413], [-75.621, 45.406], [-75.612, 45.404], [-75.603, 45.406], [-75.599, 45.413], [-75.603, 45.419], [-75.612, 45.422] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.643, 45.363], [-75.652, 45.36], [-75.656, 45.354], [-75.652, 45.347], [-75.643, 45.345], [-75.634, 45.347], [-75.631, 45.354], [-75.634, 45.36], [-75.643, 45.363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.643, 45.363], [-75.652, 45.36], [-75.656, 45.354], [-75.652, 45.347], [-75.643, 45.345], [-75.634, 45.347], [-75.631, 45.354], [-75.634, 45.36], [-75.643, 45.363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.719, 45.346], [-75.728, 45.344], [-75.732, 45.337], [-75.728, 45.331], [-75.719, 45.328], [-75.71, 45.331], [-75.706, 45.337], [-75.71, 45.344], [-75.719, 45.346] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.719, 45.346], [-75.728, 45.344], [-75.732, 45.337], [-75.728, 45.331], [-75.719, 45.328], [-75.71, 45.331], [-75.706, 45.337], [-75.71, 45.344], [-75.719, 45.346] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.627, 45.414], [-75.636, 45.412], [-75.64, 45.405], [-75.636, 45.399], [-75.627, 45.396], [-75.618, 45.399], [-75.615, 45.405], [-75.618, 45.412], [-75.627, 45.414] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.73, 45.407], [-75.74, 45.404], [-75.743, 45.398], [-75.739, 45.391], [-75.73, 45.389], [-75.721, 45.391], [-75.718, 45.398], [-75.721, 45.404], [-75.73, 45.407] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.64, 45.389], [-75.649, 45.387], [-75.652, 45.38], [-75.649, 45.374], [-75.64, 45.371], [-75.631, 45.374], [-75.627, 45.38], [-75.631, 45.387], [-75.64, 45.389] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.705, 45.362], [-75.714, 45.359], [-75.717, 45.353], [-75.714, 45.347], [-75.705, 45.344], [-75.696, 45.347], [-75.692, 45.353], [-75.696, 45.359], [-75.705, 45.362] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.642, 45.363], [-75.651, 45.36], [-75.655, 45.354], [-75.651, 45.347], [-75.642, 45.345], [-75.633, 45.347], [-75.629, 45.354], [-75.633, 45.36], [-75.642, 45.363] ] ] } } ] } ================================================ FILE: packages/turf-dissolve/test/out/hexagons-issue#742.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.715, 45.481], [-76.711, 45.475], [-76.7068947368421, 45.47408771929825], [-76.706, 45.472], [-76.69830909090909, 45.470290909090906], [-76.697, 45.468], [-76.69163157894737, 45.46680701754386], [-76.69, 45.463], [-76.68491304347826, 45.46186956521739], [-76.681, 45.456], [-76.672, 45.454], [-76.663, 45.456], [-76.659, 45.462], [-76.6606, 45.4648], [-76.658, 45.465666666666664], [-76.652, 45.467], [-76.64964705882353, 45.471117647058826], [-76.644, 45.473], [-76.64, 45.479], [-76.644, 45.485], [-76.653, 45.488], [-76.662, 45.485], [-76.664, 45.482], [-76.666, 45.48133333333333], [-76.672, 45.48], [-76.67392, 45.47664], [-76.67542857142857, 45.47714285714286], [-76.678, 45.481], [-76.6864, 45.4838], [-76.687, 45.485], [-76.6921724137931, 45.48655172413793], [-76.693, 45.488], [-76.702, 45.49], [-76.711, 45.488], [-76.715, 45.481] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.711, 45.578], [-76.707, 45.571], [-76.698, 45.569], [-76.689, 45.571], [-76.685, 45.578], [-76.689, 45.584], [-76.698, 45.587], [-76.707, 45.584], [-76.711, 45.578] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.523, 45.439], [-76.519, 45.432], [-76.51, 45.43], [-76.501, 45.432], [-76.497, 45.439], [-76.501, 45.445], [-76.51, 45.448], [-76.519, 45.445], [-76.523, 45.439] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.507, 45.6], [-76.503, 45.594], [-76.50085714285714, 45.59328571428571], [-76.5, 45.592], [-76.49523529411765, 45.590411764705884], [-76.495, 45.59], [-76.492, 45.589333333333336], [-76.491, 45.589], [-76.4908, 45.58906666666667], [-76.486, 45.588], [-76.477, 45.59], [-76.473, 45.597], [-76.477, 45.603], [-76.48176470588236, 45.604588235294116], [-76.482, 45.605], [-76.4848125, 45.605625], [-76.485, 45.606], [-76.494, 45.609], [-76.503, 45.606], [-76.507, 45.6] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.504, 45.355], [-76.5, 45.349], [-76.491, 45.346], [-76.482, 45.349], [-76.478, 45.355], [-76.482, 45.361], [-76.491, 45.364], [-76.5, 45.361], [-76.504, 45.355] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.413, 45.459], [-76.409, 45.453], [-76.4, 45.45], [-76.391, 45.453], [-76.387, 45.459], [-76.391, 45.466], [-76.4, 45.468], [-76.409, 45.466], [-76.413, 45.459] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.39, 45.419], [-76.387, 45.412], [-76.381, 45.410666666666664], [-76.376, 45.409], [-76.367, 45.412], [-76.36471428571429, 45.41542857142857], [-76.36, 45.417], [-76.35857142857142, 45.41914285714286], [-76.356, 45.42], [-76.353, 45.426], [-76.3533125, 45.426625], [-76.349, 45.425666666666665], [-76.34657142857142, 45.42485714285714], [-76.346, 45.424], [-76.337, 45.421], [-76.328, 45.424], [-76.324, 45.43], [-76.328, 45.437], [-76.33405454545455, 45.438345454545455], [-76.335, 45.44], [-76.341, 45.44133333333333], [-76.346, 45.443], [-76.355, 45.44], [-76.359, 45.434], [-76.35829411764706, 45.432764705882356], [-76.365, 45.435], [-76.374, 45.432], [-76.37457142857143, 45.43114285714286], [-76.378, 45.43], [-76.37971428571429, 45.42742857142857], [-76.387, 45.425], [-76.39, 45.419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.369, 45.011], [-76.366, 45.004], [-76.357, 45.002], [-76.348, 45.004], [-76.344, 45.011], [-76.348, 45.017], [-76.357, 45.02], [-76.366, 45.017], [-76.369, 45.011] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.339, 45.192], [-76.335, 45.186], [-76.326, 45.183], [-76.317, 45.186], [-76.314, 45.192], [-76.317, 45.198], [-76.326, 45.201], [-76.335, 45.198], [-76.339, 45.192] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.303, 45.333], [-76.3, 45.327], [-76.291, 45.324], [-76.282, 45.327], [-76.278, 45.333], [-76.27828571428572, 45.3335], [-76.278, 45.334], [-76.282, 45.34], [-76.291, 45.343], [-76.3, 45.34], [-76.303, 45.334], [-76.30278571428572, 45.3335], [-76.303, 45.333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.295, 45.408], [-76.292, 45.402], [-76.283, 45.399], [-76.273, 45.402], [-76.27, 45.408], [-76.273, 45.415], [-76.283, 45.417], [-76.292, 45.415], [-76.295, 45.408] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.277, 44.911], [-76.273, 44.904], [-76.2667, 44.9026], [-76.267, 44.902], [-76.264, 44.895], [-76.258, 44.89366666666667], [-76.253, 44.892], [-76.25, 44.886], [-76.241, 44.883], [-76.232, 44.886], [-76.228, 44.892], [-76.232, 44.899], [-76.24012903225807, 44.9008064516129], [-76.24, 44.901], [-76.244, 44.907], [-76.24571428571429, 44.90757142857143], [-76.246, 44.908], [-76.25164, 44.90988], [-76.251, 44.911], [-76.255, 44.917], [-76.264, 44.92], [-76.273, 44.917], [-76.277, 44.911] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.262, 45.06], [-76.258, 45.054], [-76.249, 45.051], [-76.24, 45.054], [-76.236, 45.06], [-76.24, 45.067], [-76.249, 45.069], [-76.258, 45.067], [-76.262, 45.06] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.243, 45.521], [-76.239, 45.514], [-76.23, 45.512], [-76.221, 45.514], [-76.217, 45.521], [-76.221, 45.527], [-76.23, 45.53], [-76.239, 45.527], [-76.243, 45.521] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.241, 45.239], [-76.237, 45.233], [-76.228, 45.23], [-76.219, 45.233], [-76.216, 45.239], [-76.219, 45.246], [-76.228, 45.248], [-76.237, 45.246], [-76.241, 45.239] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.217, 45.221], [-76.214, 45.214], [-76.205, 45.212], [-76.19717391304347, 45.21373913043478], [-76.201, 45.208], [-76.197, 45.201], [-76.188, 45.199], [-76.179, 45.201], [-76.175, 45.208], [-76.179, 45.214], [-76.188, 45.217], [-76.19576470588235, 45.21441176470588], [-76.19435294117648, 45.21688235294118], [-76.188, 45.219], [-76.184, 45.225], [-76.18422535211268, 45.225394366197186], [-76.177, 45.227], [-76.17605454545455, 45.228654545454546], [-76.17, 45.23], [-76.167, 45.237], [-76.17, 45.243], [-76.179, 45.246], [-76.188, 45.243], [-76.18857142857142, 45.24214285714286], [-76.195, 45.24], [-76.198, 45.234], [-76.19791304347827, 45.23379710144928], [-76.206, 45.232], [-76.20764705882353, 45.22911764705882], [-76.214, 45.227], [-76.217, 45.221] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.201, 45.392], [-76.198, 45.385], [-76.188, 45.383], [-76.179, 45.385], [-76.176, 45.392], [-76.179, 45.398], [-76.188, 45.401], [-76.198, 45.398], [-76.201, 45.392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.155, 45.137], [-76.152, 45.131], [-76.143, 45.128], [-76.142, 45.12833333333333], [-76.141, 45.128], [-76.135875, 45.12970833333333], [-76.133, 45.123], [-76.124, 45.121], [-76.115, 45.123], [-76.11358823529412, 45.125470588235295], [-76.112, 45.126], [-76.108, 45.132], [-76.112, 45.139], [-76.11513043478261, 45.13969565217391], [-76.115, 45.14], [-76.118, 45.146], [-76.127, 45.149], [-76.13, 45.148], [-76.129, 45.15], [-76.132, 45.157], [-76.141, 45.159], [-76.15, 45.157], [-76.154, 45.15], [-76.15, 45.144], [-76.1495, 45.14383333333333], [-76.152, 45.143], [-76.155, 45.137] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.154, 44.849], [-76.15, 44.843], [-76.141, 44.84], [-76.132, 44.843], [-76.129, 44.849], [-76.132, 44.856], [-76.141, 44.858], [-76.15, 44.856], [-76.154, 44.849] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.118, 45.107], [-76.115, 45.1], [-76.106, 45.098], [-76.097, 45.1], [-76.093, 45.107], [-76.097, 45.113], [-76.106, 45.116], [-76.115, 45.113], [-76.118, 45.107] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.087, 45.463], [-76.084, 45.456], [-76.075, 45.454], [-76.066, 45.456], [-76.062, 45.463], [-76.066, 45.469], [-76.075, 45.472], [-76.084, 45.469], [-76.087, 45.463] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.086, 45.486], [-76.083, 45.48], [-76.074, 45.477], [-76.065, 45.48], [-76.061, 45.486], [-76.065, 45.493], [-76.074, 45.495], [-76.083, 45.493], [-76.086, 45.486] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.072, 45.039], [-76.068, 45.033], [-76.059, 45.03], [-76.05, 45.033], [-76.047, 45.039], [-76.05, 45.045], [-76.059, 45.048], [-76.068, 45.045], [-76.072, 45.039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.063, 45.318], [-76.059, 45.311], [-76.05, 45.309], [-76.041, 45.311], [-76.037, 45.318], [-76.041, 45.324], [-76.05, 45.327], [-76.059, 45.324], [-76.063, 45.318] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.046, 44.889], [-76.042, 44.883], [-76.033, 44.88], [-76.0278, 44.88173333333334], [-76.02, 44.88], [-76.011, 44.882], [-76.007, 44.889], [-76.0104193548387, 44.894129032258064], [-76.002, 44.896], [-75.999, 44.903], [-76.002, 44.909], [-76.00870588235294, 44.911235294117645], [-76.012, 44.917], [-76.021, 44.919], [-76.03, 44.917], [-76.03123943661971, 44.91483098591549], [-76.032, 44.915], [-76.041, 44.913], [-76.045, 44.906], [-76.041, 44.9], [-76.038, 44.899], [-76.04028571428572, 44.89557142857143], [-76.042, 44.895], [-76.046, 44.889] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.033, 45.539], [-76.03, 45.532], [-76.021, 45.53], [-76.011, 45.532], [-76.008, 45.539], [-76.011, 45.545], [-76.021, 45.548], [-76.03, 45.545], [-76.033, 45.539] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.982, 45.383], [-75.979, 45.377], [-75.969, 45.374], [-75.96, 45.377], [-75.957, 45.383], [-75.96, 45.389], [-75.969, 45.392], [-75.979, 45.389], [-75.982, 45.383] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.968, 45.279], [-75.9652, 45.2748], [-75.964, 45.272], [-75.96023636363637, 45.27116363636364], [-75.959, 45.269], [-75.95039130434783, 45.26708695652174], [-75.947, 45.262], [-75.938, 45.259], [-75.929, 45.262], [-75.92757142857143, 45.26414285714286], [-75.922, 45.266], [-75.92085714285714, 45.267714285714284], [-75.914, 45.27], [-75.91356521739131, 45.27065217391304], [-75.912, 45.271], [-75.908, 45.278], [-75.912, 45.284], [-75.921, 45.287], [-75.93, 45.284], [-75.9304347826087, 45.28334782608696], [-75.932, 45.283], [-75.93216666666666, 45.28261111111111], [-75.934, 45.282], [-75.93530434782609, 45.28004347826087], [-75.93912903225807, 45.2791935483871], [-75.941, 45.282], [-75.94435294117648, 45.28311764705882], [-75.946, 45.286], [-75.955, 45.288], [-75.964, 45.286], [-75.968, 45.279] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.964, 45.37], [-75.96, 45.363], [-75.951, 45.361], [-75.942, 45.363], [-75.938, 45.37], [-75.942, 45.376], [-75.951, 45.379], [-75.96, 45.376], [-75.964, 45.37] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.95, 44.835], [-75.947, 44.828], [-75.938, 44.826], [-75.929, 44.828], [-75.925, 44.835], [-75.929, 44.841], [-75.938, 44.844], [-75.947, 44.841], [-75.95, 44.835] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.944, 45.683], [-75.94, 45.676], [-75.931, 45.674], [-75.922, 45.676], [-75.918, 45.683], [-75.922, 45.689], [-75.931, 45.692], [-75.94, 45.689], [-75.944, 45.683] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.941, 45.294], [-75.937, 45.288], [-75.928, 45.285], [-75.919, 45.288], [-75.915, 45.294], [-75.91829411764706, 45.29976470588235], [-75.916, 45.299], [-75.91257142857143, 45.30014285714286], [-75.914, 45.298], [-75.91, 45.291], [-75.907, 45.290333333333336], [-75.9, 45.288], [-75.895, 45.28966666666667], [-75.89, 45.288], [-75.88268, 45.29044], [-75.88161538461539, 45.288576923076924], [-75.882, 45.288], [-75.878, 45.282], [-75.869, 45.279], [-75.86, 45.282], [-75.856, 45.288], [-75.858, 45.291], [-75.861, 45.297], [-75.86772, 45.29924], [-75.865, 45.304], [-75.8685, 45.30925], [-75.868, 45.31], [-75.87, 45.313], [-75.874, 45.32], [-75.883, 45.322], [-75.892, 45.32], [-75.895, 45.313], [-75.892, 45.307], [-75.8914, 45.3068], [-75.89085714285714, 45.30571428571429], [-75.894, 45.30466666666667], [-75.901, 45.307], [-75.90442857142857, 45.30585714285714], [-75.903, 45.308], [-75.907, 45.315], [-75.9088, 45.3156], [-75.909, 45.316], [-75.918, 45.319], [-75.927, 45.316], [-75.931, 45.31], [-75.927, 45.304], [-75.92594117647059, 45.30364705882353], [-75.92521818181818, 45.30238181818182], [-75.928, 45.303], [-75.937, 45.301], [-75.941, 45.294] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.94, 45.351], [-75.936, 45.345], [-75.92952, 45.34284], [-75.93, 45.342], [-75.926, 45.336], [-75.92211764705883, 45.33470588235294], [-75.92, 45.331], [-75.911, 45.329], [-75.902, 45.331], [-75.899, 45.338], [-75.902, 45.344], [-75.90588235294118, 45.34529411764706], [-75.908, 45.349], [-75.91438709677419, 45.35041935483871], [-75.914, 45.351], [-75.918, 45.357], [-75.927, 45.36], [-75.936, 45.357], [-75.94, 45.351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.929, 45.254], [-75.926, 45.248], [-75.916, 45.245], [-75.907, 45.248], [-75.904, 45.254], [-75.907, 45.261], [-75.916, 45.263], [-75.926, 45.261], [-75.929, 45.254] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.87, 45.409], [-75.866, 45.402], [-75.86498591549295, 45.40177464788732], [-75.866, 45.4], [-75.862, 45.394], [-75.853, 45.391], [-75.84590909090909, 45.39336363636364], [-75.843, 45.389], [-75.834, 45.386], [-75.8305, 45.387166666666666], [-75.83, 45.387], [-75.821, 45.39], [-75.817, 45.396], [-75.821, 45.402], [-75.83, 45.405], [-75.826, 45.411], [-75.83, 45.417], [-75.839, 45.42], [-75.848, 45.417], [-75.84885714285714, 45.415285714285716], [-75.857, 45.418], [-75.866, 45.415], [-75.87, 45.409] ], [ [-75.84164705882353, 45.40288235294118], [-75.8406, 45.40253333333333], [-75.84135211267606, 45.4023661971831], [-75.84164705882353, 45.40288235294118] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.854, 45.193], [-75.85, 45.187], [-75.841, 45.184], [-75.832, 45.187], [-75.82860869565218, 45.19208695652174], [-75.82, 45.194], [-75.81873684210527, 45.19694736842105], [-75.814, 45.198], [-75.81, 45.205], [-75.814, 45.211], [-75.823, 45.214], [-75.832, 45.211], [-75.83371428571428, 45.20842857142857], [-75.838, 45.207], [-75.84142857142857, 45.20185714285714], [-75.85, 45.199], [-75.854, 45.193] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.851, 45.281], [-75.847, 45.275], [-75.838, 45.272], [-75.829, 45.275], [-75.825, 45.281], [-75.829, 45.288], [-75.838, 45.29], [-75.847, 45.288], [-75.851, 45.281] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.849, 44.915], [-75.845, 44.908], [-75.836, 44.906], [-75.827, 44.908], [-75.824, 44.915], [-75.827, 44.921], [-75.836, 44.924], [-75.845, 44.921], [-75.849, 44.915] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.849, 45.321], [-75.845, 45.315], [-75.836, 45.312], [-75.821, 45.317], [-75.82042857142856, 45.31785714285714], [-75.82, 45.318], [-75.811, 45.321], [-75.807, 45.327], [-75.811, 45.334], [-75.82, 45.336], [-75.8205, 45.33588888888889], [-75.821, 45.336], [-75.83, 45.334], [-75.83094117647059, 45.332352941176474], [-75.832, 45.332], [-75.83234782608696, 45.33147826086957], [-75.839, 45.33], [-75.83931578947369, 45.32926315789474], [-75.845, 45.328], [-75.849, 45.321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.848, 45.352], [-75.845, 45.346], [-75.836, 45.343], [-75.826, 45.346], [-75.823, 45.352], [-75.826, 45.359], [-75.836, 45.361], [-75.845, 45.359], [-75.848, 45.352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.828, 45.442], [-75.824, 45.436], [-75.815, 45.433], [-75.806, 45.436], [-75.803, 45.442], [-75.806, 45.449], [-75.815, 45.451], [-75.824, 45.449], [-75.828, 45.442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.823, 45.503], [-75.82, 45.497], [-75.811, 45.494], [-75.801, 45.497], [-75.798, 45.503], [-75.801, 45.51], [-75.811, 45.512], [-75.82, 45.51], [-75.823, 45.503] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.822, 45.354], [-75.818, 45.347], [-75.809, 45.345], [-75.80038028169014, 45.34691549295775], [-75.799, 45.3445], [-75.801, 45.341], [-75.797, 45.335], [-75.788, 45.332], [-75.779, 45.335], [-75.77871428571429, 45.33542857142857], [-75.777, 45.336], [-75.77558064516128, 45.33812903225807], [-75.775, 45.338], [-75.76714084507043, 45.33974647887324], [-75.765, 45.336], [-75.76398591549295, 45.33577464788733], [-75.765, 45.334], [-75.761, 45.328], [-75.752, 45.325], [-75.743, 45.328], [-75.739, 45.334], [-75.743, 45.341], [-75.74469565217392, 45.3413768115942], [-75.744, 45.343], [-75.747, 45.349], [-75.756, 45.352], [-75.76363636363637, 45.34945454545455], [-75.766, 45.353], [-75.775, 45.356], [-75.7802, 45.35426666666667], [-75.7835, 45.355], [-75.779, 45.356], [-75.77629577464789, 45.360732394366195], [-75.773, 45.36], [-75.764, 45.362], [-75.76067605633803, 45.36781690140845], [-75.757, 45.367], [-75.75475, 45.3675], [-75.74901408450704, 45.36622535211268], [-75.752, 45.361], [-75.74823076923077, 45.355346153846156], [-75.749, 45.354], [-75.745, 45.348], [-75.743, 45.344], [-75.74175, 45.343583333333335], [-75.742, 45.343], [-75.739, 45.337], [-75.735625, 45.335875], [-75.736, 45.335], [-75.73371428571429, 45.33042857142857], [-75.734, 45.33], [-75.73261538461539, 45.327576923076926], [-75.733, 45.327], [-75.729, 45.321], [-75.72, 45.318], [-75.711, 45.321], [-75.70751612903226, 45.32622580645161], [-75.702, 45.325], [-75.698, 45.32588888888889], [-75.694, 45.325], [-75.685, 45.327], [-75.681, 45.334], [-75.68227272727273, 45.33590909090909], [-75.682, 45.336], [-75.68016666666666, 45.33875], [-75.679, 45.337], [-75.67, 45.334], [-75.661, 45.337], [-75.657, 45.343], [-75.65966666666667, 45.347], [-75.657, 45.351], [-75.655, 45.348], [-75.646, 45.345], [-75.6448, 45.3454], [-75.643, 45.345], [-75.6425, 45.34511111111111], [-75.642, 45.345], [-75.63677419354839, 45.346161290322584], [-75.634, 45.342], [-75.625, 45.339], [-75.616, 45.342], [-75.612, 45.348], [-75.616, 45.354], [-75.6195, 45.35516666666667], [-75.611, 45.358], [-75.607, 45.364], [-75.611, 45.371], [-75.61274193548387, 45.37138709677419], [-75.611, 45.374], [-75.615, 45.38], [-75.6165, 45.3805], [-75.61390909090909, 45.38136363636364], [-75.611, 45.377], [-75.60909090909091, 45.376363636363635], [-75.61, 45.375], [-75.606, 45.368], [-75.597, 45.366], [-75.588, 45.368], [-75.584, 45.375], [-75.588, 45.381], [-75.58990909090909, 45.38163636363636], [-75.589, 45.383], [-75.593, 45.389], [-75.602, 45.392], [-75.60671428571429, 45.39042857142857], [-75.609, 45.395], [-75.60906122448979, 45.39514285714286], [-75.608, 45.397], [-75.61018181818181, 45.40027272727273], [-75.608, 45.401], [-75.60495652173913, 45.405565217391306], [-75.603, 45.406], [-75.6025294117647, 45.40682352941177], [-75.596, 45.409], [-75.59527272727273, 45.41009090909091], [-75.595, 45.41], [-75.586, 45.413], [-75.582, 45.419], [-75.586, 45.425], [-75.58666666666667, 45.425222222222224], [-75.587, 45.426], [-75.593, 45.42733333333333], [-75.595, 45.428], [-75.5954, 45.42786666666667], [-75.596, 45.428], [-75.605, 45.426], [-75.6052, 45.42593333333333], [-75.6064, 45.4262], [-75.604, 45.427], [-75.60371428571429, 45.42742857142857], [-75.596, 45.43], [-75.592, 45.436], [-75.59374647887324, 45.439056338028166], [-75.5886, 45.4402], [-75.588, 45.44], [-75.579, 45.443], [-75.575, 45.449], [-75.579, 45.456], [-75.588, 45.458], [-75.5934, 45.4568], [-75.594, 45.457], [-75.5945, 45.456833333333336], [-75.595, 45.457], [-75.604, 45.454], [-75.608, 45.448], [-75.60624, 45.44492], [-75.608, 45.44433333333333], [-75.614, 45.443], [-75.61433333333333, 45.44222222222222], [-75.615, 45.442], [-75.61525, 45.4415], [-75.61965217391304, 45.44052173913043], [-75.616, 45.446], [-75.62, 45.453], [-75.629, 45.455], [-75.638, 45.453], [-75.6388, 45.4516], [-75.64, 45.452], [-75.64084, 45.45172], [-75.641, 45.452], [-75.65, 45.454], [-75.659, 45.452], [-75.66030434782608, 45.44895652173913], [-75.661, 45.45], [-75.67, 45.452], [-75.679, 45.45], [-75.68091304347826, 45.44713043478261], [-75.686, 45.446], [-75.689, 45.439], [-75.68857142857142, 45.43814285714286], [-75.689, 45.438], [-75.6898, 45.4364], [-75.694, 45.435], [-75.698, 45.429], [-75.69683636363636, 45.42696363636364], [-75.697, 45.427], [-75.706, 45.425], [-75.7095294117647, 45.41882352941177], [-75.715, 45.417], [-75.719, 45.411], [-75.71669230769231, 45.407538461538465], [-75.717, 45.407], [-75.7159090909091, 45.40536363636364], [-75.717, 45.405], [-75.721, 45.412], [-75.73, 45.414], [-75.739, 45.412], [-75.7424909090909, 45.40589090909091], [-75.751, 45.404], [-75.75136363636364, 45.403363636363636], [-75.753, 45.403], [-75.75370588235295, 45.40176470588235], [-75.759, 45.4], [-75.762, 45.399], [-75.766, 45.393], [-75.762, 45.386], [-75.758, 45.38511111111111], [-75.763, 45.384], [-75.76321818181817, 45.38361818181818], [-75.766, 45.383], [-75.76952, 45.37684], [-75.773, 45.378], [-75.7745, 45.3775], [-75.782, 45.38], [-75.791, 45.377], [-75.79265217391304, 45.37452173913044], [-75.795, 45.374], [-75.799, 45.367], [-75.79866666666666, 45.3665], [-75.801, 45.363], [-75.797, 45.356], [-75.7925, 45.355], [-75.79612903225807, 45.354193548387094], [-75.8, 45.36], [-75.809, 45.363], [-75.818, 45.36], [-75.822, 45.354] ], [ [-75.74034375, 45.38853125], [-75.74033333333334, 45.388555555555556], [-75.738, 45.38933333333333], [-75.735, 45.39], [-75.73493548387097, 45.39009677419355], [-75.73378947368421, 45.389842105263156], [-75.74034375, 45.38853125] ], [ [-75.73710909090909, 45.371309090909094], [-75.73617073170732, 45.372951219512196], [-75.733, 45.372], [-75.724, 45.375], [-75.721, 45.381], [-75.724, 45.388], [-75.72925, 45.38916666666667], [-75.721, 45.391], [-75.71904081632653, 45.39557142857143], [-75.717, 45.392], [-75.708, 45.39], [-75.699, 45.392], [-75.69674545454545, 45.395945454545455], [-75.692, 45.397], [-75.68938181818181, 45.40158181818182], [-75.683, 45.403], [-75.68, 45.41], [-75.683, 45.416], [-75.68385714285715, 45.41628571428571], [-75.6845, 45.41725], [-75.684, 45.418], [-75.68516363636364, 45.42003636363636], [-75.685, 45.42], [-75.676, 45.422], [-75.67510526315789, 45.42408771929824], [-75.6722, 45.424733333333336], [-75.67, 45.424], [-75.669, 45.42433333333334], [-75.668, 45.424], [-75.65972, 45.42676], [-75.657, 45.422], [-75.648, 45.42], [-75.64683870967743, 45.420258064516126], [-75.646, 45.419], [-75.645, 45.41866666666667], [-75.65, 45.417], [-75.654, 45.411], [-75.65, 45.405], [-75.641, 45.402], [-75.63854545454545, 45.40281818181818], [-75.636, 45.399], [-75.63327272727273, 45.39809090909091], [-75.634, 45.397], [-75.63342857142857, 45.396], [-75.634, 45.395], [-75.63181818181818, 45.39172727272727], [-75.64, 45.389], [-75.649, 45.387], [-75.652, 45.38], [-75.649, 45.374], [-75.64, 45.371], [-75.6359090909091, 45.37236363636364], [-75.63335294117647, 45.368529411764705], [-75.641, 45.367], [-75.64273913043478, 45.36294202898551], [-75.643, 45.363], [-75.6448, 45.3626], [-75.646, 45.363], [-75.655, 45.36], [-75.659, 45.354], [-75.661, 45.357], [-75.67, 45.36], [-75.679, 45.357], [-75.683, 45.351], [-75.68033333333334, 45.347], [-75.68061538461538, 45.346576923076924], [-75.682, 45.349], [-75.691, 45.351], [-75.69373913043478, 45.35039130434782], [-75.692, 45.353], [-75.696, 45.36], [-75.69884210526315, 45.36063157894737], [-75.692, 45.362], [-75.689, 45.369], [-75.692, 45.375], [-75.69424137931034, 45.375672413793104], [-75.695, 45.377], [-75.704, 45.379], [-75.713, 45.377], [-75.717, 45.37], [-75.713, 45.364], [-75.71166666666667, 45.36355555555556], [-75.711, 45.362], [-75.708, 45.361333333333334], [-75.714, 45.36], [-75.717, 45.353], [-75.714, 45.347], [-75.71244, 45.34648], [-75.71342253521127, 45.344760563380284], [-75.71867272727273, 45.34592727272727], [-75.721, 45.35], [-75.72315384615385, 45.35376923076923], [-75.723, 45.354], [-75.7233076923077, 45.35453846153846], [-75.723, 45.355], [-75.72466666666666, 45.3575], [-75.723, 45.36], [-75.721, 45.363], [-75.725, 45.37], [-75.734, 45.372], [-75.73710909090909, 45.371309090909094] ], [ [-75.6342, 45.43593333333333], [-75.631, 45.437], [-75.63071428571429, 45.43757142857143], [-75.629, 45.437], [-75.62233333333333, 45.43922222222222], [-75.62482608695652, 45.43340579710145], [-75.629, 45.434333333333335], [-75.62976470588235, 45.434588235294115], [-75.63, 45.435], [-75.6342, 45.43593333333333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.822, 45.413], [-75.818, 45.406], [-75.809, 45.404], [-75.8, 45.406], [-75.796, 45.413], [-75.79633333333334, 45.4135], [-75.796, 45.414], [-75.79626666666667, 45.41446666666667], [-75.795, 45.417], [-75.798, 45.423], [-75.807, 45.426], [-75.817, 45.423], [-75.818, 45.421], [-75.822, 45.414], [-75.82166666666667, 45.4135], [-75.822, 45.413] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.821, 45.386], [-75.817, 45.38], [-75.808, 45.377], [-75.8075, 45.37716666666667], [-75.807, 45.377], [-75.798, 45.38], [-75.795, 45.386], [-75.798, 45.392], [-75.807, 45.395], [-75.8075, 45.39483333333333], [-75.808, 45.395], [-75.817, 45.392], [-75.821, 45.386] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.815, 45.269], [-75.811, 45.263], [-75.802, 45.26], [-75.793, 45.263], [-75.79265217391304, 45.26352173913043], [-75.792, 45.262], [-75.782, 45.26], [-75.773, 45.262], [-75.77, 45.269], [-75.773, 45.275], [-75.782, 45.278], [-75.792, 45.275], [-75.7922, 45.2746], [-75.793, 45.276], [-75.802, 45.278], [-75.811, 45.276], [-75.815, 45.269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.799, 45.444], [-75.795, 45.437], [-75.786, 45.435], [-75.77863636363637, 45.43663636363636], [-75.779, 45.436], [-75.77553846153846, 45.430807692307695], [-75.776, 45.43], [-75.77, 45.421], [-75.761, 45.418], [-75.75718181818182, 45.41927272727273], [-75.755, 45.416], [-75.746, 45.413], [-75.737, 45.416], [-75.733, 45.422], [-75.73328571428571, 45.42242857142857], [-75.726, 45.42], [-75.717, 45.423], [-75.71534782608695, 45.42547826086957], [-75.713, 45.426], [-75.709, 45.433], [-75.71190909090909, 45.437363636363635], [-75.704, 45.44], [-75.7, 45.446], [-75.704, 45.453], [-75.713, 45.455], [-75.722, 45.453], [-75.7225, 45.452125], [-75.723, 45.453], [-75.72398181818181, 45.45321818181818], [-75.725, 45.455], [-75.72964516129032, 45.45603225806452], [-75.729, 45.457], [-75.72935714285714, 45.457625], [-75.728, 45.46], [-75.72927272727273, 45.46190909090909], [-75.729, 45.462], [-75.725, 45.468], [-75.7251690140845, 45.468295774647885], [-75.722, 45.469], [-75.71969230769231, 45.473038461538465], [-75.717, 45.469], [-75.71281690140844, 45.46807042253521], [-75.714, 45.466], [-75.71192307692307, 45.46288461538462], [-75.713, 45.461], [-75.709, 45.455], [-75.7, 45.452], [-75.693, 45.45433333333333], [-75.69, 45.455], [-75.6882, 45.4592], [-75.687, 45.461], [-75.68724489795919, 45.46142857142857], [-75.687, 45.462], [-75.68857142857142, 45.46514285714286], [-75.688, 45.466], [-75.69173333333333, 45.47253333333333], [-75.689, 45.478], [-75.68985714285714, 45.47971428571429], [-75.68954545454545, 45.48018181818182], [-75.689, 45.48], [-75.68709090909091, 45.480636363636364], [-75.684, 45.476], [-75.675, 45.473], [-75.666, 45.476], [-75.66587096774194, 45.476193548387094], [-75.665, 45.476], [-75.6584, 45.477466666666665], [-75.651, 45.475], [-75.648, 45.476], [-75.645, 45.475], [-75.642, 45.476], [-75.639, 45.475], [-75.63, 45.478], [-75.626, 45.484], [-75.62969230769231, 45.49046153846154], [-75.628, 45.493], [-75.63092307692308, 45.49811538461538], [-75.629, 45.501], [-75.633, 45.508], [-75.642, 45.51], [-75.651, 45.508], [-75.655, 45.501], [-75.65442857142857, 45.500142857142855], [-75.657, 45.501], [-75.66557142857143, 45.49814285714286], [-75.663, 45.502], [-75.66392307692308, 45.50361538461539], [-75.663, 45.505], [-75.667, 45.512], [-75.676, 45.514], [-75.685, 45.512], [-75.689, 45.505], [-75.68807692307692, 45.50361538461539], [-75.689, 45.502], [-75.68586956521739, 45.49730434782609], [-75.689, 45.498], [-75.698, 45.496], [-75.70128571428572, 45.49025], [-75.704, 45.495], [-75.713, 45.497], [-75.7148, 45.4966], [-75.719, 45.498], [-75.72, 45.49766666666667], [-75.724, 45.499], [-75.733, 45.496], [-75.73557142857143, 45.49214285714286], [-75.737, 45.495], [-75.747, 45.498], [-75.756, 45.495], [-75.76, 45.488], [-75.756, 45.482], [-75.74916, 45.47972], [-75.753, 45.473], [-75.75119354838709, 45.470290322580645], [-75.757, 45.469], [-75.75791836734695, 45.466857142857144], [-75.758, 45.467], [-75.76294366197183, 45.46809859154929], [-75.759, 45.475], [-75.763, 45.481], [-75.772, 45.484], [-75.781, 45.481], [-75.785, 45.475], [-75.781, 45.468], [-75.77605633802817, 45.4669014084507], [-75.78, 45.46], [-75.776, 45.454], [-75.767, 45.451], [-75.76372727272727, 45.452090909090906], [-75.761, 45.448], [-75.75671428571428, 45.44657142857143], [-75.753, 45.441], [-75.744, 45.438], [-75.7404, 45.4392], [-75.738, 45.435], [-75.73538709677419, 45.43441935483871], [-75.739, 45.429], [-75.73871428571428, 45.42857142857143], [-75.746, 45.431], [-75.75028571428571, 45.42957142857143], [-75.75, 45.43], [-75.75323076923077, 45.43565384615385], [-75.753, 45.436], [-75.757, 45.443], [-75.766, 45.445], [-75.77336363636364, 45.443363636363635], [-75.773, 45.444], [-75.777, 45.451], [-75.786, 45.453], [-75.795, 45.451], [-75.799, 45.444] ], [ [-75.7365, 45.48316666666667], [-75.7352, 45.4862], [-75.735, 45.4865], [-75.73364, 45.48412], [-75.7365, 45.48316666666667] ], [ [-75.72095652173913, 45.4804347826087], [-75.719, 45.48], [-75.71801818181818, 45.48021818181818], [-75.7193076923077, 45.477961538461535], [-75.72095652173913, 45.4804347826087] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.795, 45.571], [-75.792, 45.564], [-75.783, 45.562], [-75.774, 45.564], [-75.77, 45.571], [-75.774, 45.577], [-75.783, 45.58], [-75.792, 45.577], [-75.795, 45.571] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.79, 45.324], [-75.787, 45.317], [-75.777, 45.315], [-75.768, 45.317], [-75.765, 45.324], [-75.768, 45.33], [-75.777, 45.333], [-75.787, 45.33], [-75.79, 45.324] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.77, 45.287], [-75.766, 45.281], [-75.76560869565218, 45.28091304347826], [-75.765, 45.28], [-75.7570909090909, 45.27736363636364], [-75.75857142857143, 45.27514285714286], [-75.759, 45.275], [-75.763, 45.269], [-75.759, 45.262], [-75.75, 45.26], [-75.741, 45.262], [-75.73942105263158, 45.26568421052632], [-75.738, 45.266], [-75.729, 45.268], [-75.72788, 45.26996], [-75.719, 45.267], [-75.71168, 45.26944], [-75.708, 45.263], [-75.699, 45.261], [-75.69, 45.263], [-75.686, 45.27], [-75.69, 45.276], [-75.6988, 45.278933333333335], [-75.694, 45.28], [-75.69, 45.287], [-75.694, 45.293], [-75.703, 45.296], [-75.712, 45.293], [-75.71366666666667, 45.2905], [-75.714, 45.291], [-75.71523529411765, 45.291411764705884], [-75.719, 45.298], [-75.723, 45.304], [-75.732, 45.307], [-75.741, 45.304], [-75.744, 45.298], [-75.74316666666667, 45.296055555555554], [-75.752, 45.299], [-75.761, 45.296], [-75.76169565217391, 45.29495652173913], [-75.766, 45.294], [-75.77, 45.287] ], [ [-75.74614285714286, 45.28171428571429], [-75.7454, 45.2832], [-75.743, 45.284], [-75.73966666666666, 45.289], [-75.737, 45.285], [-75.73576470588235, 45.284588235294116], [-75.73482352941177, 45.28294117647059], [-75.738, 45.284], [-75.7455, 45.2815], [-75.74614285714286, 45.28171428571429] ], [ [-75.70808695652174, 45.27913043478261], [-75.703, 45.278], [-75.7, 45.278666666666666], [-75.70636363636363, 45.276545454545456], [-75.70808695652174, 45.27913043478261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.743, 45.675], [-75.739, 45.668], [-75.73, 45.666], [-75.721, 45.668], [-75.717, 45.675], [-75.71718181818181, 45.67527272727273], [-75.715, 45.676], [-75.711, 45.682], [-75.715, 45.689], [-75.724, 45.691], [-75.733, 45.689], [-75.737, 45.682], [-75.73681818181818, 45.68172727272727], [-75.739, 45.681], [-75.743, 45.675] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.725, 45.24], [-75.722, 45.234], [-75.713, 45.231], [-75.704, 45.234], [-75.7, 45.24], [-75.704, 45.247], [-75.713, 45.249], [-75.722, 45.247], [-75.725, 45.24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.724, 45.128], [-75.72, 45.121], [-75.711, 45.119], [-75.702, 45.121], [-75.699, 45.128], [-75.702, 45.134], [-75.711, 45.137], [-75.72, 45.134], [-75.724, 45.128] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.724, 45.789], [-75.72, 45.783], [-75.711, 45.78], [-75.702, 45.783], [-75.698, 45.789], [-75.702, 45.795], [-75.711, 45.798], [-75.72, 45.795], [-75.724, 45.789] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.691, 44.966], [-75.688, 44.959], [-75.679, 44.957], [-75.67, 44.959], [-75.666, 44.966], [-75.67, 44.972], [-75.679, 44.975], [-75.688, 44.972], [-75.691, 44.966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.69, 45.389], [-75.686, 45.382], [-75.68092727272727, 45.380872727272724], [-75.68053846153846, 45.380192307692305], [-75.682, 45.378], [-75.678, 45.372], [-75.67733333333334, 45.37177777777778], [-75.677, 45.371], [-75.67554838709677, 45.37067741935484], [-75.676, 45.37], [-75.672, 45.364], [-75.663, 45.361], [-75.654, 45.364], [-75.65, 45.37], [-75.654, 45.376], [-75.65454545454546, 45.37618181818182], [-75.654, 45.377], [-75.65564285714285, 45.379875], [-75.655, 45.381], [-75.659, 45.387], [-75.66416, 45.38872], [-75.664, 45.389], [-75.668, 45.395], [-75.677, 45.398], [-75.686, 45.395], [-75.69, 45.389] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.688, 45.234], [-75.684, 45.228], [-75.675, 45.225], [-75.666, 45.228], [-75.662, 45.234], [-75.666, 45.24], [-75.675, 45.243], [-75.684, 45.24], [-75.688, 45.234] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.666, 45.021], [-75.662, 45.015], [-75.66094117647059, 45.01464705882353], [-75.66, 45.013], [-75.651, 45.011], [-75.642, 45.013], [-75.638, 45.02], [-75.63825806451612, 45.02038709677419], [-75.631, 45.022], [-75.63078181818182, 45.02238181818182], [-75.628, 45.023], [-75.625, 45.03], [-75.628, 45.036], [-75.637, 45.039], [-75.649, 45.035], [-75.65157142857143, 45.03114285714286], [-75.658, 45.029], [-75.65857142857143, 45.02814285714286], [-75.662, 45.027], [-75.666, 45.021] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.659, 45.149], [-75.656, 45.142], [-75.647, 45.14], [-75.638, 45.142], [-75.634, 45.149], [-75.638, 45.155], [-75.647, 45.158], [-75.656, 45.155], [-75.659, 45.149] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.65, 45.199], [-75.646, 45.192], [-75.637, 45.19], [-75.628, 45.192], [-75.625, 45.199], [-75.628, 45.205], [-75.637, 45.208], [-75.646, 45.205], [-75.65, 45.199] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.63, 45.596], [-75.626, 45.589], [-75.617, 45.587], [-75.608, 45.589], [-75.604, 45.596], [-75.608, 45.602], [-75.617, 45.605], [-75.626, 45.602], [-75.63, 45.596] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.622, 45.144], [-75.619, 45.138], [-75.61, 45.135], [-75.601, 45.138], [-75.60073913043479, 45.13839130434783], [-75.598, 45.139], [-75.594, 45.146], [-75.598, 45.152], [-75.607, 45.155], [-75.616, 45.152], [-75.6161875, 45.151625], [-75.619, 45.151], [-75.622, 45.144] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.622, 45.507], [-75.618, 45.501], [-75.609, 45.498], [-75.6, 45.501], [-75.596, 45.507], [-75.6, 45.513], [-75.609, 45.516], [-75.618, 45.513], [-75.622, 45.507] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.616, 45.487], [-75.612, 45.481], [-75.603, 45.478], [-75.594, 45.481], [-75.59373913043478, 45.481391304347824], [-75.591, 45.482], [-75.587, 45.488], [-75.591, 45.495], [-75.6, 45.497], [-75.6005, 45.49688888888889], [-75.601, 45.497], [-75.61, 45.495], [-75.61094117647059, 45.49335294117647], [-75.612, 45.493], [-75.616, 45.487] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.612, 45.331], [-75.60942857142857, 45.325857142857146], [-75.61, 45.325], [-75.606, 45.318], [-75.60505263157894, 45.31778947368421], [-75.603, 45.313], [-75.594, 45.311], [-75.585, 45.313], [-75.581, 45.32], [-75.58361538461538, 45.32392307692308], [-75.583, 45.325], [-75.587, 45.331], [-75.591, 45.338], [-75.6, 45.34], [-75.609, 45.338], [-75.612, 45.331] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.607, 45.27], [-75.604, 45.263], [-75.595, 45.261], [-75.586, 45.263], [-75.582, 45.27], [-75.586, 45.276], [-75.595, 45.279], [-75.604, 45.276], [-75.607, 45.27] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.593, 45.297], [-75.59, 45.291], [-75.581, 45.288], [-75.572, 45.291], [-75.568, 45.297], [-75.572, 45.303], [-75.581, 45.306], [-75.59, 45.303], [-75.593, 45.297] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.584, 45.281], [-75.58, 45.275], [-75.571, 45.272], [-75.562, 45.275], [-75.558, 45.281], [-75.562, 45.288], [-75.571, 45.29], [-75.58, 45.288], [-75.584, 45.281] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.584, 45.498], [-75.58, 45.492], [-75.571, 45.489], [-75.562, 45.492], [-75.558, 45.498], [-75.562, 45.505], [-75.571, 45.507], [-75.58, 45.505], [-75.584, 45.498] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.577, 45.432], [-75.573, 45.425], [-75.564, 45.423], [-75.555, 45.425], [-75.551, 45.432], [-75.555, 45.438], [-75.564, 45.441], [-75.573, 45.438], [-75.577, 45.432] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.561, 45.462], [-75.558, 45.455], [-75.548, 45.453], [-75.54575, 45.4535], [-75.548, 45.449], [-75.545, 45.442], [-75.536, 45.44], [-75.5342, 45.4404], [-75.527, 45.438], [-75.518, 45.441], [-75.51527272727273, 45.44509090909091], [-75.512, 45.444], [-75.509, 45.445], [-75.5, 45.447], [-75.49952941176471, 45.447823529411764], [-75.496, 45.449], [-75.49582608695653, 45.449260869565215], [-75.49439130434783, 45.449579710144924], [-75.492, 45.444], [-75.483, 45.442], [-75.474, 45.444], [-75.47, 45.451], [-75.474, 45.457], [-75.47657142857143, 45.457857142857144], [-75.475, 45.461], [-75.478, 45.468], [-75.47865454545455, 45.46814545454546], [-75.482, 45.474], [-75.485, 45.474666666666664], [-75.492, 45.477], [-75.501, 45.474], [-75.504, 45.468], [-75.50373333333333, 45.46746666666667], [-75.504, 45.467], [-75.50272727272727, 45.46509090909091], [-75.506, 45.464], [-75.506125, 45.46375], [-75.514, 45.462], [-75.5144705882353, 45.461176470588235], [-75.518, 45.46], [-75.521, 45.459], [-75.52372727272727, 45.45490909090909], [-75.527, 45.456], [-75.5285, 45.4555], [-75.5322, 45.45673333333333], [-75.531, 45.457], [-75.53066666666666, 45.45777777777778], [-75.53, 45.458], [-75.52947826086957, 45.45878260869565], [-75.524, 45.46], [-75.52268421052632, 45.463070175438595], [-75.514, 45.465], [-75.51211764705883, 45.46829411764706], [-75.507, 45.47], [-75.5065294117647, 45.47094117647059], [-75.503, 45.472], [-75.5, 45.478], [-75.503, 45.485], [-75.513, 45.487], [-75.522, 45.485], [-75.52288524590163, 45.482934426229505], [-75.526, 45.482], [-75.52615384615385, 45.481692307692306], [-75.528, 45.486], [-75.537, 45.488], [-75.547, 45.486], [-75.55, 45.479], [-75.547, 45.473], [-75.54359574468086, 45.471978723404256], [-75.548, 45.471], [-75.558, 45.468], [-75.561, 45.462] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.558, 44.843], [-75.554, 44.836], [-75.545, 44.834], [-75.536, 44.836], [-75.532, 44.843], [-75.536, 44.849], [-75.545, 44.852], [-75.554, 44.849], [-75.558, 44.843] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.538, 45.342], [-75.534, 45.336], [-75.525, 45.333], [-75.516, 45.336], [-75.512, 45.342], [-75.516, 45.349], [-75.525, 45.351], [-75.534, 45.349], [-75.538, 45.342] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.531, 45.241], [-75.527, 45.235], [-75.518, 45.232], [-75.509, 45.235], [-75.505, 45.241], [-75.509, 45.248], [-75.518, 45.25], [-75.527, 45.248], [-75.531, 45.241] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.509, 45.228], [-75.505, 45.221], [-75.496, 45.219], [-75.487, 45.221], [-75.483, 45.228], [-75.487, 45.234], [-75.496, 45.237], [-75.505, 45.234], [-75.509, 45.228] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.509, 45.53], [-75.506, 45.524], [-75.497, 45.521], [-75.487, 45.524], [-75.484, 45.53], [-75.487, 45.537], [-75.497, 45.539], [-75.506, 45.537], [-75.509, 45.53] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.494, 45.492], [-75.49, 45.486], [-75.48957142857142, 45.48585714285714], [-75.489, 45.485], [-75.48, 45.482], [-75.471, 45.485], [-75.467, 45.491], [-75.471, 45.497], [-75.47142857142858, 45.497142857142855], [-75.472, 45.498], [-75.481, 45.501], [-75.49, 45.498], [-75.494, 45.492] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.474, 45.16], [-75.47, 45.153], [-75.461, 45.151], [-75.452, 45.153], [-75.448, 45.16], [-75.452, 45.166], [-75.461, 45.169], [-75.47, 45.166], [-75.474, 45.16] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.471, 44.986], [-75.467, 44.98], [-75.458, 44.977], [-75.449, 44.98], [-75.445, 44.986], [-75.449, 44.992], [-75.458, 44.995], [-75.467, 44.992], [-75.471, 44.986] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.468, 45.369], [-75.464, 45.363], [-75.455, 45.36], [-75.446, 45.363], [-75.443, 45.369], [-75.446, 45.375], [-75.455, 45.378], [-75.464, 45.375], [-75.468, 45.369] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.467, 45.471], [-75.463, 45.465], [-75.454, 45.462], [-75.445, 45.465], [-75.441, 45.471], [-75.445, 45.477], [-75.454, 45.48], [-75.463, 45.477], [-75.467, 45.471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.456, 45.345], [-75.453, 45.339], [-75.45214285714286, 45.33871428571429], [-75.449, 45.334], [-75.44, 45.331], [-75.431, 45.334], [-75.427, 45.34], [-75.431, 45.346], [-75.43185714285714, 45.34628571428571], [-75.435, 45.351], [-75.444, 45.354], [-75.453, 45.351], [-75.456, 45.345] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.449, 45.554], [-75.445, 45.548], [-75.441, 45.54666666666667], [-75.443, 45.542], [-75.44, 45.536], [-75.431, 45.533], [-75.421, 45.536], [-75.418, 45.542], [-75.42016666666666, 45.54705555555555], [-75.42, 45.547], [-75.411, 45.55], [-75.407, 45.556], [-75.411, 45.562], [-75.41276470588235, 45.562588235294115], [-75.413, 45.563], [-75.416, 45.56366666666667], [-75.41614285714286, 45.56371428571428], [-75.419, 45.568], [-75.428, 45.571], [-75.437, 45.568], [-75.441, 45.562], [-75.44094366197183, 45.5619014084507], [-75.445, 45.561], [-75.449, 45.554] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.443, 45.254], [-75.439, 45.248], [-75.43, 45.245], [-75.421, 45.248], [-75.417, 45.254], [-75.421, 45.261], [-75.43, 45.263], [-75.439, 45.261], [-75.443, 45.254] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.436, 45.421], [-75.432, 45.415], [-75.423, 45.412], [-75.414, 45.415], [-75.41, 45.421], [-75.414, 45.428], [-75.423, 45.43], [-75.432, 45.428], [-75.436, 45.421] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.434, 45.586], [-75.43, 45.58], [-75.42241176470588, 45.57747058823529], [-75.421, 45.575], [-75.41982608695652, 45.574739130434786], [-75.416, 45.569], [-75.407, 45.566], [-75.4028, 45.5674], [-75.401, 45.567], [-75.391, 45.569], [-75.388, 45.576], [-75.391, 45.582], [-75.401, 45.585], [-75.403, 45.588], [-75.41058823529411, 45.590529411764706], [-75.412, 45.593], [-75.421, 45.595], [-75.43, 45.593], [-75.434, 45.586] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.425, 44.918], [-75.421, 44.911], [-75.412, 44.909], [-75.403, 44.911], [-75.399, 44.918], [-75.403, 44.924], [-75.412, 44.927], [-75.421, 44.924], [-75.425, 44.918] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.424, 45.518], [-75.42, 45.511], [-75.41950909090909, 45.51089090909091], [-75.419, 45.51], [-75.41, 45.508], [-75.401, 45.51], [-75.397, 45.517], [-75.401, 45.523], [-75.40142857142857, 45.52314285714286], [-75.402, 45.524], [-75.411, 45.527], [-75.42, 45.524], [-75.424, 45.518] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.39, 45.088], [-75.386, 45.082], [-75.377, 45.079], [-75.368, 45.082], [-75.365, 45.088], [-75.368, 45.095], [-75.377, 45.097], [-75.386, 45.095], [-75.39, 45.088] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.372, 44.94], [-75.369, 44.933], [-75.36, 44.931], [-75.351, 44.933], [-75.347, 44.94], [-75.351, 44.946], [-75.36, 44.949], [-75.369, 44.946], [-75.372, 44.94] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.372, 45.258], [-75.368, 45.252], [-75.359, 45.249], [-75.35, 45.252], [-75.346, 45.258], [-75.35, 45.264], [-75.359, 45.267], [-75.368, 45.264], [-75.372, 45.258] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.359, 45.331], [-75.356, 45.325], [-75.35547058823529, 45.324823529411766], [-75.355, 45.324], [-75.349, 45.32266666666667], [-75.347, 45.322], [-75.3466, 45.32213333333333], [-75.346, 45.322], [-75.337, 45.324], [-75.333, 45.331], [-75.335, 45.334], [-75.331, 45.34], [-75.335, 45.347], [-75.344, 45.349], [-75.353, 45.347], [-75.357, 45.34], [-75.35570967741936, 45.33806451612903], [-75.356, 45.338], [-75.359, 45.331] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.357, 45.442], [-75.353, 45.435], [-75.344, 45.433], [-75.335, 45.435], [-75.332, 45.442], [-75.335, 45.448], [-75.344, 45.451], [-75.353, 45.448], [-75.357, 45.442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.354, 45.076], [-75.35, 45.069], [-75.341, 45.067], [-75.332, 45.069], [-75.328, 45.076], [-75.332, 45.082], [-75.341, 45.085], [-75.35, 45.082], [-75.354, 45.076] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.316, 45.268], [-75.312, 45.261], [-75.303, 45.259], [-75.285, 45.263], [-75.281, 45.27], [-75.285, 45.276], [-75.294, 45.279], [-75.3015, 45.2765], [-75.303, 45.277], [-75.312, 45.274], [-75.316, 45.268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.316, 45.546], [-75.31338461538462, 45.54207692307692], [-75.314, 45.541], [-75.31, 45.535], [-75.301, 45.532], [-75.292, 45.535], [-75.29, 45.538], [-75.287, 45.539], [-75.283, 45.545], [-75.2846, 45.5478], [-75.283, 45.551], [-75.286, 45.558], [-75.296, 45.56], [-75.305, 45.558], [-75.30663157894737, 45.554192982456144], [-75.312, 45.553], [-75.316, 45.546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.306, 45.032], [-75.302, 45.026], [-75.293, 45.023], [-75.284, 45.026], [-75.281, 45.032], [-75.284, 45.038], [-75.293, 45.041], [-75.302, 45.038], [-75.306, 45.032] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.284, 45.554], [-75.281, 45.547], [-75.272, 45.545], [-75.263, 45.547], [-75.259, 45.554], [-75.263, 45.56], [-75.272, 45.563], [-75.281, 45.56], [-75.284, 45.554] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.265, 45.33], [-75.261, 45.323], [-75.25491549295775, 45.32164788732394], [-75.257, 45.318], [-75.253, 45.312], [-75.244, 45.309], [-75.235, 45.312], [-75.231, 45.318], [-75.235, 45.325], [-75.24108450704226, 45.326352112676055], [-75.239, 45.33], [-75.243, 45.336], [-75.252, 45.339], [-75.261, 45.336], [-75.265, 45.33] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.262, 45.559], [-75.258, 45.553], [-75.249, 45.55], [-75.24, 45.553], [-75.236, 45.559], [-75.24, 45.565], [-75.249, 45.568], [-75.258, 45.565], [-75.262, 45.559] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.258, 45.41], [-75.254, 45.404], [-75.245, 45.401], [-75.236, 45.404], [-75.232, 45.41], [-75.236, 45.417], [-75.245, 45.419], [-75.254, 45.417], [-75.258, 45.41] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.257, 44.975], [-75.254, 44.969], [-75.245, 44.966], [-75.236, 44.969], [-75.232, 44.975], [-75.236, 44.982], [-75.245, 44.984], [-75.254, 44.982], [-75.257, 44.975] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.254, 45.597], [-75.25, 45.591], [-75.241, 45.588], [-75.232, 45.591], [-75.228, 45.597], [-75.22828571428572, 45.5975], [-75.228, 45.598], [-75.232, 45.604], [-75.241, 45.607], [-75.25, 45.604], [-75.254, 45.598], [-75.25371428571428, 45.5975], [-75.254, 45.597] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.243, 45.103], [-75.24184615384615, 45.10126923076923], [-75.242, 45.101], [-75.238, 45.095], [-75.229, 45.092], [-75.22, 45.095], [-75.216, 45.101], [-75.22, 45.108], [-75.2205625, 45.108125], [-75.221, 45.109], [-75.23, 45.112], [-75.239, 45.109], [-75.243, 45.103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.242, 45.29], [-75.238, 45.284], [-75.229, 45.281], [-75.222, 45.28333333333333], [-75.219, 45.284], [-75.2172, 45.2882], [-75.216, 45.29], [-75.21624489795919, 45.29042857142857], [-75.216, 45.291], [-75.219, 45.297], [-75.228, 45.3], [-75.235, 45.297666666666665], [-75.238, 45.297], [-75.242, 45.29] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.206, 45.426], [-75.202, 45.42], [-75.193, 45.417], [-75.184, 45.42], [-75.18, 45.426], [-75.184, 45.433], [-75.193, 45.435], [-75.202, 45.433], [-75.206, 45.426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.164, 45.216], [-75.16, 45.21], [-75.151, 45.207], [-75.142, 45.21], [-75.138, 45.216], [-75.142, 45.223], [-75.151, 45.225], [-75.16, 45.223], [-75.164, 45.216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.133, 45.567], [-75.129, 45.561], [-75.12, 45.558], [-75.111, 45.561], [-75.108, 45.567], [-75.111, 45.574], [-75.12, 45.576], [-75.129, 45.574], [-75.133, 45.567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.133, 45.606], [-75.129, 45.599], [-75.12, 45.597], [-75.111, 45.599], [-75.107, 45.606], [-75.111, 45.612], [-75.12, 45.615], [-75.129, 45.612], [-75.133, 45.606] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.122, 45.176], [-75.118, 45.17], [-75.109, 45.167], [-75.1, 45.17], [-75.096, 45.176], [-75.1, 45.182], [-75.109, 45.185], [-75.118, 45.182], [-75.122, 45.176] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.101, 45.315], [-75.098, 45.308], [-75.09447826086956, 45.30721739130435], [-75.095, 45.306], [-75.092, 45.3], [-75.09152, 45.29984], [-75.092, 45.299], [-75.088, 45.293], [-75.079, 45.29], [-75.07, 45.293], [-75.066, 45.299], [-75.06907692307692, 45.30438461538461], [-75.068, 45.306], [-75.072, 45.313], [-75.0764347826087, 45.31398550724638], [-75.076, 45.315], [-75.079, 45.321], [-75.089, 45.324], [-75.098, 45.321], [-75.101, 45.315] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.09, 45.146], [-75.086, 45.14], [-75.077, 45.137], [-75.068, 45.14], [-75.065, 45.146], [-75.068, 45.153], [-75.077, 45.155], [-75.086, 45.153], [-75.09, 45.146] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.07, 45.731], [-75.066, 45.725], [-75.057, 45.722], [-75.048, 45.725], [-75.044, 45.731], [-75.048, 45.737], [-75.057, 45.74], [-75.066, 45.737], [-75.07, 45.731] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.029, 45.617], [-75.026, 45.611], [-75.017, 45.608], [-75.01542105263158, 45.60847368421052], [-75.014, 45.608], [-75.005, 45.611], [-75.001, 45.617], [-75.005, 45.624], [-75.014, 45.626], [-75.01542105263158, 45.625684210526316], [-75.017, 45.626], [-75.026, 45.624], [-75.029, 45.617] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.011, 45.535], [-75.007, 45.529], [-74.998, 45.526], [-74.9975, 45.52616666666667], [-74.997, 45.526], [-74.988, 45.529], [-74.98514285714286, 45.53328571428571], [-74.98, 45.535], [-74.977, 45.541], [-74.98, 45.547], [-74.989, 45.55], [-74.998, 45.547], [-75.00052173913043, 45.543217391304346], [-75.006, 45.542], [-75.00647058823529, 45.54117647058823], [-75.007, 45.541], [-75.011, 45.535] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.007, 45.494], [-75.003, 45.488], [-74.994, 45.485], [-74.985, 45.488], [-74.981, 45.494], [-74.985, 45.501], [-74.994, 45.503], [-75.003, 45.501], [-75.007, 45.494] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.968, 45.544], [-74.965, 45.537], [-74.956, 45.535], [-74.946, 45.537], [-74.943, 45.544], [-74.946, 45.55], [-74.956, 45.553], [-74.965, 45.55], [-74.968, 45.544] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.96, 45.65], [-74.957, 45.644], [-74.948, 45.641], [-74.939, 45.644], [-74.935, 45.65], [-74.939, 45.657], [-74.948, 45.659], [-74.957, 45.657], [-74.96, 45.65] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.944, 45.434], [-74.94, 45.428], [-74.931, 45.425], [-74.922, 45.428], [-74.918, 45.434], [-74.922, 45.44], [-74.931, 45.443], [-74.94, 45.44], [-74.944, 45.434] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.924, 45.55], [-74.921, 45.543], [-74.912, 45.541], [-74.902, 45.543], [-74.9017894736842, 45.543491228070174], [-74.895, 45.545], [-74.891, 45.552], [-74.895, 45.558], [-74.904, 45.561], [-74.91094736842105, 45.558684210526316], [-74.912, 45.559], [-74.921, 45.556], [-74.924, 45.55] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.915, 45.376], [-74.911, 45.369], [-74.902, 45.367], [-74.893, 45.369], [-74.89, 45.376], [-74.893, 45.382], [-74.902, 45.385], [-74.911, 45.382], [-74.915, 45.376] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.913, 45.347], [-74.909, 45.341], [-74.90852, 45.34084], [-74.909, 45.34], [-74.905, 45.334], [-74.896, 45.331], [-74.887, 45.334], [-74.884, 45.34], [-74.887, 45.347], [-74.891, 45.353], [-74.9, 45.356], [-74.909, 45.353], [-74.913, 45.347] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.894, 45.558], [-74.89, 45.552], [-74.881, 45.549], [-74.872, 45.552], [-74.87109090909091, 45.553363636363635], [-74.87, 45.553], [-74.861, 45.556], [-74.857, 45.562], [-74.861, 45.568], [-74.87, 45.571], [-74.879, 45.568], [-74.87983870967741, 45.56674193548387], [-74.881, 45.567], [-74.89, 45.565], [-74.894, 45.558] ] ] } } ] } ================================================ FILE: packages/turf-dissolve/test/out/issue-1208.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1.283224511776062, 48.62152529086523], [-1.283223460173957, 48.62149587425616], [-1.283204336863981, 48.62127140243766], [-1.283200385576984, 48.62124209440894], [-1.283193551514328, 48.62121302046229], [-1.283183863945261, 48.62118430509621], [-1.283171364358196, 48.6211560712738], [-1.283156106282353, 48.62112843989542], [-1.283138155059225, 48.62110152928209], [-1.283117587562039, 48.6210754546677], [-1.283094491866843, 48.62105032770651], [-1.283068966875343, 48.62102625599444], [-1.283041121891164, 48.62100334260881], [-1.283011076151868, 48.62098168566641], [-1.282978958318435, 48.62096137790418], [-1.282944905924131, 48.6209425062812], [-1.282909064785374, 48.62092515160702], [-1.282871588378216, 48.62090938819544], [-1.282853281000662, 48.62090248529155], [-1.280368567300112, 48.61999912347692], [-1.280347924205498, 48.6199919212834], [-1.280320228618654, 48.61998340002793], [-1.280324998460496, 48.61997522341591], [-1.280338266298704, 48.61994714417142], [-1.280348735765438, 48.61991854972417], [-1.280356362033155, 48.61988956252101], [-1.280361112449975, 48.61986030668986], [-1.280362966678725, 48.61983090750925], [-1.280361916784434, 48.619801490871], [-1.28035796726794, 48.61977218274163], [-1.280351135046791, 48.61974310862284], [-1.280341449382321, 48.61971439301387], [-1.280328951754748, 48.61968615887872], [-1.28031369568492, 48.6196585271192], [-1.280300986646259, 48.61963899553673], [-1.280170895889152, 48.61945139684287], [-1.28048774662674, 48.61854324594615], [-1.280490936201344, 48.61853362513352], [-1.280498562177315, 48.61850463791849], [-1.280503312380765, 48.61847538207909], [-1.280505166475443, 48.61844598289379], [-1.280504116526935, 48.61841656625445], [-1.28050016703634, 48.61838725812762], [-1.280493334921027, 48.61835818401493], [-1.280483649441928, 48.61832946841567], [-1.280471152078464, 48.61830123429375], [-1.280455896350363, 48.61827360255095], [-1.280437947589066, 48.61824669150978], [-1.280417382657269, 48.61822061640603], [-1.280394289620006, 48.61819548889595], [-1.280368767367615, 48.61817141657797], [-1.28034092519197, 48.61814850253186], [-1.28031088231868, 48.61812684487731], [-1.280278767396359, 48.6181065363543], [-1.28024471794584, 48.61808766392516], [-1.280208879770972, 48.61807030840294], [-1.280171406335078, 48.61805454410499], [-1.280132458102798, 48.61804043853504], [-1.280092201853704, 48.61802805209381], [-1.280050809968025, 48.61801743782071], [-1.280039161095319, 48.61801481604547], [-1.277893047964311, 48.61754612109502], [-1.277862347106655, 48.6175399456404], [-1.277819220476808, 48.61753300346428], [-1.277775501397791, 48.61752794628687], [-1.277756612566772, 48.6175263603501], [-1.277038716919983, 48.61747285955211], [-1.276533593969416, 48.61699219301506], [-1.27651894045939, 48.61697878223661], [-1.276491100696056, 48.61695586725282], [-1.276461060191072, 48.61693420858668], [-1.276428947583039, 48.61691389898248], [-1.2763949003828, 48.61689502540719], [-1.276359064384531, 48.61687766867873], [-1.276321593042302, 48.61686190311978], [-1.276282646811742, 48.61684779623928], [-1.276242392463927, 48.61683540844369], [-1.276201002370874, 48.61682479277815], [-1.276158653767689, 48.61681599469944], [-1.276115527993058, 48.61680905188124], [-1.276071809714041, 48.6168039940532], [-1.276027686133991, 48.61680084287293], [-1.275983346192013, 48.61679961183405], [-1.275938979753371, 48.61680030620785], [-1.275894776796955, 48.61680292302098], [-1.275850926601601, 48.6168074510682], [-1.275807616935787, 48.61681387096022], [-1.275765033253546, 48.61682215520671], [-1.275729335789202, 48.6168306906182], [-1.274463836155797, 48.61716007658698], [-1.274453290014777, 48.61715004027392], [-1.274438635011306, 48.61713662732433], [-1.274410796107763, 48.61711371183489], [-1.274380756403759, 48.61709205262328], [-1.274348644534395, 48.61707174243572], [-1.274314598007298, 48.61705286824202], [-1.274278762614125, 48.61703551086261], [-1.274241291805989, 48.61701974462297], [-1.274202346036359, 48.61700563703504], [-1.274162092074316, 48.61699324850819], [-1.274120702290216, 48.61698263209073], [-1.274078353917727, 48.6169738332426], [-1.274035228294954, 48.61696688964098], [-1.27399151008792, 48.61696183101858], [-1.273947386499776, 48.61695867903674], [-1.273903046469629, 48.6169574471922], [-1.27385867986316, 48.61695814075996], [-1.273814476660002, 48.61696075676985], [-1.273770626140047, 48.61696528402038], [-1.273727316073114, 48.61697170312535], [-1.273684731914975, 48.61697998659814], [-1.273643056013185, 48.61699009896836], [-1.273602466826473, 48.61700199693458], [-1.27357004069961, 48.61701307787754], [-1.273065773229409, 48.61719694395058], [-1.273057704553942, 48.61717870814652], [-1.273042453235833, 48.61715107541426], [-1.273024508838465, 48.61712416320931], [-1.273003948205789, 48.6170980867725], [-1.272980859384494, 48.61707295776574], [-1.272955341246851, 48.61704888379381], [-1.272927503067129, 48.61702596794363], [-1.272897464053753, 48.61700430834265], [-1.272865361639526, 48.61698400295171], [-1.272551755497371, 48.61679824464821], [-1.272517705428846, 48.61677936731356], [-1.272481870850022, 48.61676200937147], [-1.272444400808233, 48.61674624254358], [-1.272405455753831, 48.61673213434422], [-1.272365202452899, 48.61671974518536], [-1.272323813272696, 48.61670912811817], [-1.272281465444451, 48.6167003286053], [-1.272238340303773, 48.61669338432682], [-1.272194622514884, 48.61668832501821], [-1.272150499279039, 48.61668517234385], [-1.272106159533784, 48.61668393980342], [-1.272105879689855, 48.6166839441738], [-1.27208963797846, 48.61665958454313], [-1.272069078019884, 48.6166335079377], [-1.272045989878425, 48.61660837874173], [-1.272020472423436, 48.6165843045608], [-1.271992634926249, 48.61656138848269], [-1.271962596592409, 48.61653972863585], [-1.271930486051163, 48.61651941776955], [-1.271896440804521, 48.61650054285615], [-1.271860606638346, 48.61648318471942], [-1.271823136998815, 48.6164674176879], [-1.271784192334302, 48.61645330927694], [-1.271743939409129, 48.6164409198995], [-1.271702550589258, 48.61643030260758], [-1.271660203104299, 48.61642150286484], [-1.271617078288221, 48.61641455835216], [-1.271581154840984, 48.61641025813049], [-1.26999263224622, 48.61624923195067], [-1.268596544302509, 48.61563617055374], [-1.268028022380709, 48.61521616769613], [-1.268007264146518, 48.61520150537049], [-1.267975156054972, 48.61518119339327], [-1.26794111319652, 48.61516231730238], [-1.267905281347133, 48.6151449579264], [-1.267867813942674, 48.61512918959932], [-1.267828871422145, 48.61511507984191], [-1.267788620540817, 48.61510268907298], [-1.267747233655618, 48.61509207035044], [-1.267704887987926, 48.61508326914404], [-1.267661764864074, 48.61507632314111], [-1.267618048939674, 48.61507126208461], [-1.267573927407986, 48.61506810764622], [-1.267529589199341, 48.61506687333341], [-1.26748522417157, 48.61506756443155], [-1.267441022297569, 48.61507017798129], [-1.267397172851494, 48.6150747027913], [-1.26735386359863, 48.61508111948611], [-1.26731127999121, 48.61508940058927], [-1.267269604374373, 48.61509951064075], [-1.267229015205946, 48.61511140634873], [-1.267189686291181, 48.61512503677523], [-1.267151786039824, 48.61514034355416], [-1.267115476744214, 48.61515726114093], [-1.267093169226601, 48.61516888784513], [-1.265853283086302, 48.61584339908835], [-1.26488106946905, 48.61579977812966], [-1.265111733284419, 48.61527671667284], [-1.265114225300092, 48.61527092175837], [-1.265124702442166, 48.61524232869601], [-1.265132336768398, 48.61521334249945], [-1.265137095591993, 48.61518408729255], [-1.265138958540149, 48.61515468835103], [-1.265137917640322, 48.61512527156578], [-1.265133977354904, 48.61509596290397], [-1.265127154561754, 48.61506688786943], [-1.265117478482176, 48.61503817096541], [-1.265104990555024, 48.61500993516152], [-1.265089744259877, 48.61498230136673], [-1.26507180488749, 48.61495538791212], [-1.265051249260629, 48.61492931004404], [-1.265028165404483, 48.61490417943058], [-1.265002652169878, 48.61488010368335], [-1.264974818810201, 48.61485718589684], [-1.264944784513211, 48.61483552420684], [-1.26491267789089, 48.61481521137043], [-1.264878636428402, 48.61479633436854], [-1.264842805895721, 48.61477897403377], [-1.264805339723096, 48.61476320470409], [-1.264766398344215, 48.61474909390476], [-1.264742680291753, 48.61474153548334], [-1.264273856366831, 48.61459948750937], [-1.264257324676035, 48.61459465401724], [-1.264215938953526, 48.61458403401792], [-1.264173594330798, 48.61457523150529], [-1.264130472129528, 48.61456828417205], [-1.26408675700143, 48.61456322176712], [-1.264042636136389, 48.61456006596778], [-1.263998298461877, 48.61455883028742], [-1.263953933833426, 48.61455952001716], [-1.263909732222235, 48.61456213220364], [-1.263865882901381, 48.61456665566129], [-1.263822573635507, 48.61457307102057], [-1.263779989877008, 48.6145813508105], [-1.263738313971581, 48.61459145957689], [-1.263697724378314, 48.61460335403327], [-1.263658394904357, 48.61461698324719], [-1.263641872356427, 48.61462365558212], [-1.26361228817792, 48.61453551155164], [-1.263577540495668, 48.6141257004852], [-1.263579394701717, 48.61412441198329], [-1.26360786418275, 48.61410184058854], [-1.263634046327982, 48.61407808287426], [-1.263652514060165, 48.61405911319032], [-1.264002148082399, 48.61367937660366], [-1.264007462964254, 48.61367350397324], [-1.264028744029984, 48.61364768340593], [-1.264047432692441, 48.61362099521154], [-1.26406344892714, 48.61359355367434], [-1.264076724153938, 48.61356547630443], [-1.264087201530484, 48.61353688333408], [-1.264094836195364, 48.61350789720386], [-1.264099595460806, 48.61347864203729], [-1.264101458951668, 48.6134492431098], [-1.264100418693408, 48.61341982631225], [-1.26409647914554, 48.61339051761182], [-1.264089657182885, 48.61336144251261], [-1.264079982022932, 48.61333272551815], [-1.264075693511366, 48.61332223090956], [-1.264055429998419, 48.61327491686429], [-1.26409066871952, 48.61325676512489], [-1.264117023146361, 48.61324247209221], [-1.264149691459715, 48.61322255763768], [-1.264180325550919, 48.61320126905643], [-1.264208794240425, 48.61317869751116], [-1.264234975621887, 48.61315493965811], [-1.264258757584087, 48.61313009723399], [-1.264280038291163, 48.61310427661919], [-1.264298726618569, 48.61307758838296], [-1.264314742543495, 48.61305014680976], [-1.2643280174868, 48.61302206940975], [-1.264338494607391, 48.61299347641562], [-1.264346129045293, 48.61296449026777], [-1.264346456499057, 48.61296293174382], [-1.264358675229425, 48.61290402229591], [-1.264393629453819, 48.61291299215851], [-1.264435972716875, 48.61292179459066], [-1.26447909354974, 48.61292874180938], [-1.264522807297881, 48.61293380406504], [-1.264566926767619, 48.61293695967964], [-1.264611263027602, 48.6129381951399], [-1.264655626218123, 48.61293750515539], [-1.264699826364046, 48.61293489268071], [-1.264743674188558, 48.61293036890324], [-1.264786981923756, 48.61292395319492], [-1.264829564114529, 48.61291567302964], [-1.264871238413401, 48.6129055638651], [-1.26488176719143, 48.61290247825924], [-1.264991843904455, 48.61311563907948], [-1.265004515039516, 48.61313818865409], [-1.265022453728331, 48.61316510212198], [-1.265043008619879, 48.61319117999784], [-1.265066091698008, 48.61321631061075], [-1.265091604119704, 48.61324038634617], [-1.265119436638493, 48.6132633041064], [-1.265149470072573, 48.61328496575253], [-1.265181575814418, 48.61330527852435], [-1.265215616382163, 48.61332415543778], [-1.265251446007909, 48.61334151565733], [-1.265288911262208, 48.6133572848422], [-1.265327851710874, 48.61337139546491], [-1.265368100602133, 48.61338378710019], [-1.265409485580937, 48.61339440668376], [-1.265451829426587, 48.61340320874], [-1.265494950812149, 48.61341015557595], [-1.265538665080495, 48.61341521744361], [-1.265582785035864, 48.61341837266652], [-1.265627121744788, 48.61341960773345], [-1.265671485345641, 48.61341891735524], [-1.265715685861548, 48.61341630448841], [-1.265759534014117, 48.61341178032205], [-1.265802842033987, 48.61340536422959], [-1.265845424464909, 48.61339708368674], [-1.265887098958325, 48.61338697415269], [-1.26592768705345, 48.61337507891926], [-1.265967014942675, 48.61336144892488], [-1.266004914214935, 48.6133461425366], [-1.266041222577392, 48.61332922530027], [-1.266075784550316, 48.61331076965969], [-1.266108452133095, 48.61329085464629], [-1.266139089368383, 48.61326956262371], [-1.266419246699657, 48.61306163908913], [-1.266447706444458, 48.61303907282166], [-1.266473886696624, 48.61301531445655], [-1.26649766748782, 48.61299047156706], [-1.266518946987443, 48.61296465053585], [-1.266537634076119, 48.61293796193404], [-1.266553648735997, 48.61291052004744], [-1.26656692239377, 48.6128824423876], [-1.266577398213602, 48.61285384918831], [-1.266585031341092, 48.61282486289091], [-1.266589789094603, 48.61279560761971], [-1.266591651105988, 48.61276620865053], [-1.266590609406642, 48.61273679187448], [-1.266586668462371, 48.61270748325862], [-1.266579845153892, 48.61267840830669], [-1.26657016870473, 48.61264969152158], [-1.266557680555256, 48.61262145587229], [-1.266542434186069, 48.61259382226704], [-1.266524494888222, 48.61256690903644], [-1.266503939484103, 48.61254083142565], [-1.26648085599792, 48.61251570110166], [-1.266455343279063, 48.61249162567489], [-1.266427510578758, 48.61246870823838], [-1.266397477081709, 48.61244704692652], [-1.266365371396598, 48.61242673449466], [-1.266331331004553, 48.61240785792216], [-1.266295501670953, 48.61239049803962], [-1.266258036820851, 48.61237472918332], [-1.266219096882417, 48.61236061887616], [-1.266178848599771, 48.61234822753933], [-1.266137464318748, 48.61233760823321], [-1.266095121249558, 48.61232880643009], [-1.266059902919046, 48.61232298524463], [-1.265640648101822, 48.61226153913135], [-1.265632745909302, 48.6122604136775], [-1.265589032634302, 48.61225535184555], [-1.265544913697878, 48.61225219662471], [-1.26550057801919, 48.61225096152596], [-1.265456215445275, 48.61225165183793], [-1.265438542140136, 48.61225269656265], [-1.265629886839521, 48.61184521077672], [-1.266390066905077, 48.61096687933918], [-1.266407308275008, 48.61094565994346], [-1.266425994673257, 48.61091897135676], [-1.2664420087517, 48.61089152948263], [-1.266455281939409, 48.61086345183254], [-1.266465757402466, 48.61083485864025], [-1.266467186678144, 48.61083019035177], [-1.266605050830778, 48.61036733521132], [-1.267328761143776, 48.60954400234456], [-1.26734829064693, 48.60952015834522], [-1.267366976017321, 48.60949346960276], [-1.267382989129378, 48.60946602759493], [-1.267396261416307, 48.60943794983346], [-1.267406736048409, 48.60940935655276], [-1.267414368176139, 48.60938037019444], [-1.267419125122196, 48.60935111488307], [-1.26741976873396, 48.60934481720861], [-1.267575981475682, 48.60763882668152], [-1.267577199150543, 48.60761572536382], [-1.267576156981871, 48.60758630858825], [-1.267572215867037, 48.6075569999979], [-1.267565392687535, 48.60752792509633], [-1.267555716666071, 48.6074992083862], [-1.267543229241537, 48.60747097283622], [-1.267527983891095, 48.60744333935444], [-1.267510045901761, 48.60741642627048], [-1.267489492090088, 48.60739034882907], [-1.26746641047347, 48.60736521869654], [-1.267440899893422, 48.60734114348243], [-1.267413069591779, 48.60731822627902], [-1.267383038743271, 48.60729656521947], [-1.267350935945071, 48.60727625305816], [-1.267316898665996, 48.60725737677326], [-1.267281072658055, 48.60724001719417], [-1.267243611332194, 48.60722424865573], [-1.267204675101274, 48.60721013867975], [-1.267164430693528, 48.60719774768587], [-1.267123050438406, 48.60718712873296], [-1.267080711528827, 48.60717832729186], [-1.26703759526229, 48.60717138105072], [-1.266993886264749, 48.60716631975366], [-1.266949771700008, 48.60716316507335], [-1.266905440468482, 48.60716193051825], [-1.266861082398205, 48.60716262137481], [-1.266816887432218, 48.6071652346847], [-1.266773044815182, 48.60716975925766], [-1.266729742283042, 48.60717617571935], [-1.266687165259335, 48.60718445659401], [-1.266645496060923, 48.60719456642282], [-1.266604913118177, 48.60720646191481], [-1.266565590209787, 48.60722009213305], [-1.266527695719681, 48.60723539871217], [-1.266491391915539, 48.60725231610858], [-1.266456834254166, 48.60727077188088], [-1.266454360527243, 48.60727219082437], [-1.265155755343577, 48.60802069798778], [-1.264047103637358, 48.60789876035135], [-1.264030895333839, 48.60789711084891], [-1.263986780314441, 48.6078939550269], [-1.263942448512092, 48.60789271932439], [-1.263898089757303, 48.60789340903281], [-1.263853893996012, 48.60789602119868], [-1.263810050476277, 48.60790054463663], [-1.263766746937962, 48.60790695997721], [-1.263750921517248, 48.60790980361223], [-1.263202474455603, 48.60801308736664], [-1.263175721633105, 48.60801852337573], [-1.26313405103923, 48.60802863192582], [-1.263093466594405, 48.60804052617247], [-1.263054142083937, 48.60805415518384], [-1.263016245898427, 48.60806946059985], [-1.262979940312869, 48.60808637688182], [-1.262945380791645, 48.60810483159321], [-1.262912715322935, 48.60812474570978], [-1.262882083784689, 48.60814603395793], [-1.262853617346242, 48.60816860517976], [-1.262827437906167, 48.60819236272344], [-1.262808972739171, 48.60821133149428], [-1.262658503916609, 48.60837476739238], [-1.262618430348166, 48.60838553340705], [-1.26257879747812, 48.60839717227114], [-1.262539472549746, 48.60841080110539], [-1.262501575939297, 48.60842610635074], [-1.262465269923603, 48.60844302246917], [-1.262430709968905, 48.60846147702485], [-1.262398044065143, 48.60848139099412], [-1.262367412092265, 48.60850267910412], [-1.262338945221424, 48.60852525019751], [-1.262316206496681, 48.60854569221159], [-1.262298970254308, 48.60854544050518], [-1.262254610901896, 48.60854612957674], [-1.262210414482292, 48.60854874110793], [-1.26216657024651, 48.60855326391642], [-1.262123265937272, 48.60855967863501], [-1.262080686985887, 48.60856795779573], [-1.262039015717371, 48.60857806594698], [-1.261998430570848, 48.60858995980499], [-1.2619591053348, 48.60860358843981], [-1.261921208402788, 48.60861889349279], [-1.261884902053061, 48.608635809427], [-1.261850341753219, 48.60865426380731], [-1.261817675494821, 48.60867417761075], [-1.261789687542525, 48.60869351460252], [-1.26107393892587, 48.60921848097193], [-1.261071294487381, 48.6092204319181], [-1.26104282662945, 48.60924300268823], [-1.261016645776125, 48.60926675981638], [-1.260992864039106, 48.60929160157251], [-1.260971583257748, 48.60931742158184], [-1.260952894562317, 48.60934410928057], [-1.260936877983994, 48.60937155038917], [-1.260923602111972, 48.60939962740167], [-1.260913123799674, 48.60942822008913], [-1.260905487921524, 48.60945720601383], [-1.260901490962221, 48.6094802736225], [-1.260877320641876, 48.60966074727084], [-1.260038261608083, 48.61001462869984], [-1.260030717987835, 48.61001785695558], [-1.259994409993943, 48.61003477228883], [-1.259959848040804, 48.61005322609696], [-1.25992718012671, 48.61007313935948], [-1.259896546140542, 48.61009442680644], [-1.259868077261788, 48.61011699728329], [-1.25984189539943, 48.61014075414169], [-1.259838378713687, 48.61014420896316], [-1.257163417853711, 48.61279838906726], [-1.257143149604891, 48.61281977527986], [-1.257121865357427, 48.61284559456841], [-1.257103173311156, 48.61287228163333], [-1.257087153511689, 48.61289972219779], [-1.257073874561889, 48.61292779875831], [-1.25706478080744, 48.61295208762934], [-1.256847445925249, 48.61361039951218], [-1.256231647584889, 48.61384467236022], [-1.256197676362714, 48.61385849141628], [-1.256161364310628, 48.61387540553024], [-1.256126798315282, 48.61389385817712], [-1.256094126392535, 48.6139137703414], [-1.256063488448154, 48.61393505675807], [-1.256035015678552, 48.61395762627684], [-1.256008830009738, 48.61398138225335], [-1.255985043574037, 48.61400622296248], [-1.255963758230869, 48.614032042034], [-1.255947802693358, 48.61405452008826], [-1.25573362947194, 48.61437923359666], [-1.255489385002171, 48.61447290923803], [-1.255457483022133, 48.61448593743882], [-1.255421170268729, 48.61450285131736], [-1.255412964966751, 48.61450701073709], [-1.254835432593986, 48.61480441714611], [-1.254809070878655, 48.61481871001592], [-1.254776397834345, 48.61483862180317], [-1.2547457587697, 48.61485990786601], [-1.254717284886249, 48.61488247705593], [-1.254691098114458, 48.61490623272975], [-1.254672626198921, 48.61492520150522], [-1.254102150869245, 48.6155446051518], [-1.253237648639263, 48.61598976086305], [-1.253211285032525, 48.61600405378466], [-1.253178610586796, 48.61602396511452], [-1.253147970125068, 48.61604525074838], [-1.253119494854587, 48.61606781953933], [-1.253093306712032, 48.6160915748461], [-1.253074835655688, 48.61611054130374], [-1.252631371983464, 48.61659200141092], [-1.251902164644851, 48.61696747298707], [-1.24996381601139, 48.61737519028635], [-1.249956978331628, 48.61737665495142], [-1.249915297336353, 48.61738675868428], [-1.249874702223022, 48.61739864823802], [-1.249835366822765, 48.61741227270105], [-1.249797459572686, 48.61742757373278], [-1.24976114279522, 48.61744448581323], [-1.249726572002652, 48.61746293652391], [-1.249693895231423, 48.61748284685761], [-1.249663252408024, 48.6175041315571], [-1.249634774749773, 48.61752669947946], [-1.249608584203601, 48.61755045398715], [-1.249590107091221, 48.61756942444855], [-1.249588480565087, 48.61757119017085], [-1.248928121484829, 48.61759572309477], [-1.248883916428374, 48.61759832947968], [-1.248840063113015, 48.61760284718169], [-1.248796749320442, 48.6176092568558], [-1.248754160522394, 48.61761753105544], [-1.248712479086211, 48.6176276343503], [-1.248671883494583, 48.61763952347737], [-1.248632547580397, 48.61765314752702], [-1.248594639783276, 48.6176684481603], [-1.248558322427893, 48.61768535985898], [-1.248523751029089, 48.61770381020627], [-1.248491073625586, 48.61772372019649], [-1.248460430146912, 48.61774500457366], [-1.24843195181318, 48.61776757219652], [-1.248405760573923, 48.61779132642882], [-1.248381968585584, 48.6178161655527], [-1.248360677731344, 48.61784198320487], [-1.248357949780379, 48.61784587640148], [-1.248354972557451, 48.6178457336185], [-1.247561338430474, 48.61780911368209], [-1.247536554564455, 48.61780206224454], [-1.247098237270714, 48.61620839586915], [-1.247097436133478, 48.61620553540573], [-1.247087770121307, 48.61617681698068], [-1.24707529202589, 48.61614857921284], [-1.247060055284341, 48.61612094301968], [-1.247042125146887, 48.61609402674266], [-1.247021578396446, 48.61606794564006], [-1.246998503020136, 48.61604281139378], [-1.246972997832794, 48.61601873163107], [-1.246945172053133, 48.61599580946367], [-1.24691514483654, 48.61597414304601], [-1.2468830447647, 48.61595382515552], [-1.246849009294757, 48.61593494279469], [-1.24681318417071, 48.61591757681915], [-1.246775722800044, 48.61590180159094], [-1.246736785595684, 48.61588768466064], [-1.246696539290035, 48.6158752864776], [-1.246655156220764, 48.61586466013151], [-1.24661281359278, 48.61585585112495], [-1.246569692719308, 48.61584889717825], [-1.246525978246347, 48.61584382806876], [-1.246481857360982, 48.61584066550243], [-1.246437518990726, 48.6158394230216], [-1.24639315299419, 48.61584010594659], [-1.246348949348326, 48.61584271135313], [-1.246305097334985, 48.61584722808463], [-1.246261784730303, 48.61585363680048], [-1.24621919700102, 48.61586191005803], [-1.246177516509781, 48.61587201243105], [-1.246136921735379, 48.61588390066061], [-1.246097586507065, 48.61589752384071], [-1.246082626169276, 48.61590356200589], [-1.246074943115563, 48.61588750055275], [-1.246072734629129, 48.61588296717541], [-1.246057498518576, 48.61585533084845], [-1.246039569011836, 48.61582841441397], [-1.246019022889133, 48.61580233313099], [-1.245995948135346, 48.61577719868226], [-1.245970443562152, 48.61575311869592], [-1.245942618385889, 48.6157301962845], [-1.245912591759284, 48.61570852960365], [-1.245880492261504, 48.6156882114317], [-1.245846457347137, 48.61566932877259], [-1.245810632758122, 48.61565196248302], [-1.245782025459812, 48.61563971168037], [-1.24527766358195, 48.61543543449824], [-1.245135455906055, 48.61509179755218], [-1.245125687646294, 48.61507030950584], [-1.245110452301528, 48.61504267305151], [-1.245092523590672, 48.61501575646743], [-1.245071978290491, 48.61498967501343], [-1.245048904382007, 48.61496454037267], [-1.245023400673622, 48.61494046017419], [-1.244995576377854, 48.61491753753149], [-1.244965550643775, 48.61489587060124], [-1.244933452046355, 48.61487555216291], [-1.244899418036825, 48.6148566692213], [-1.244863594352945, 48.61483930263465], [-1.244826134395629, 48.61482352676767], [-1.244787198572104, 48.61480940917346], [-1.244746953608822, 48.61479701030437], [-1.244705571837672, 48.61478638325297], [-1.24466323045783, 48.61477757352483], [-1.244620110777384, 48.61477061884347], [-1.244576397437176, 48.6147655489893], [-1.244532277619437, 48.61476238567149], [-1.244487940247123, 48.61476114243561], [-1.244443575174508, 48.61476182460518], [-1.244399372374667, 48.61476442925915], [-1.244355521125755, 48.61476894524429], [-1.244312209200709, 48.61477535322296], [-1.244269622063292, 48.61478362575586], [-1.244227942073672, 48.61479372741981], [-1.244187347708423, 48.61480561495888], [-1.244148012795077, 48.61481923747], [-1.244110105769039, 48.61483453662106], [-1.244073788951685, 48.61485144690008], [-1.244039217855519, 48.61486989589625], [-1.244006540518003, 48.61488980460985], [-1.243975896868326, 48.6149110877903], [-1.24394741812742, 48.61493365430137], [-1.243921226246436, 48.61495740751172], [-1.243897433384695, 48.61498224570779], [-1.243876141429037, 48.61500806253022], [-1.243857441557545, 48.61503474742888], [-1.243841413849345, 48.61506218613614], [-1.243828126941231, 48.61509026115637], [-1.243817637733828, 48.61511885226913], [-1.243811546746534, 48.61514092886468], [-1.243717525692571, 48.61553735313805], [-1.242983084745952, 48.61556460135693], [-1.242938881165576, 48.61556720544695], [-1.242895029086308, 48.61557172087247], [-1.242851716284583, 48.61557812829834], [-1.242809128227942, 48.61558640028763], [-1.242767447280508, 48.6155965014194], [-1.242726851922933, 48.61560838844005], [-1.242687515987024, 48.61562201044881], [-1.242649607912545, 48.61563730911557], [-1.242613290025367, 48.61565421893057], [-1.242578717842551, 48.61567266748489], [-1.242546039406214, 48.61569257578072], [-1.242515394650361, 48.61571385856924], [-1.242486914800443, 48.61573642471603], [-1.242460721812584, 48.61576017759115], [-1.242436927850723, 48.61578501548252], [-1.242415634806375, 48.61581083203218], [-1.242396933862402, 48.61583751669106], [-1.242380905102443, 48.61586495519261], [-1.24236761716781, 48.61589303004202], [-1.242357126963585, 48.61592162101965], [-1.24234947941511, 48.61595060569506], [-1.242344707274987, 48.61597985995216], [-1.242342830983325, 48.61600925852006], [-1.242343320737722, 48.61602327871794], [-1.242152518214021, 48.61586032617572], [-1.242130968888877, 48.61584284635353], [-1.242100943835813, 48.61582117867316], [-1.24206884580482, 48.61580085943275], [-1.24203481224429, 48.61578197564074], [-1.241998988890107, 48.61576460815865], [-1.241961529142124, 48.61574883135523], [-1.241922593406348, 48.61573471278763], [-1.241882348408874, 48.61572231291223], [-1.241840966481729, 48.61571168482605], [-1.241798624825028, 48.61570287403895], [-1.241755504747779, 48.61569591827914], [-1.241711790892563, 48.61569084733152], [-1.241667670443869, 48.61568768291], [-1.241623332327291, 48.61568643856485], [-1.241578966400339, 48.61568711962438], [-1.241534762639727, 48.61568972317224], [-1.241490910327765, 48.61569423805995], [-1.241447597241907, 48.61570064495459], [-1.241431769204666, 48.61570348529704], [-1.241247904599385, 48.61573806676205], [-1.240858779439811, 48.61558755700515], [-1.240767332159842, 48.61540072452942], [-1.240766522373804, 48.61539908085022], [-1.240751289323023, 48.61537144381644], [-1.240733362826056, 48.61534452655035], [-1.240712819650296, 48.6153184443145], [-1.240689747767911, 48.61529330879576], [-1.240673632762961, 48.61527770663503], [-1.240317938077056, 48.61494840203852], [-1.239655269948605, 48.61325383399979], [-1.239643052951431, 48.61322625264579], [-1.239627821174991, 48.61319861545914], [-1.239609896052565, 48.61317169801374], [-1.239589354345649, 48.61314561557313], [-1.239566284020119, 48.61312047982484], [-1.239540783868789, 48.61309639840263], [-1.239512963088989, 48.61307347442524], [-1.239482940814642, 48.61305180605486], [-1.239450845606291, 48.61303148607731], [-1.239416814900238, 48.61301260150409], [-1.239380994420116, 48.61299523320013], [-1.239362513108295, 48.61298716324475], [-1.239307408071662, 48.61296394705914], [-1.238801492996209, 48.61157058091715], [-1.238798882326389, 48.61156363402585], [-1.238786410024098, 48.61153539534737], [-1.238771179229452, 48.61150775804401], [-1.238753255167158, 48.61148084046197], [-1.238732714594155, 48.61145475786516], [-1.238709645471143, 48.6114296219419], [-1.238695926340652, 48.61141625049571], [-1.236613295578566, 48.60946278404123], [-1.236601516724194, 48.60945207365661], [-1.236573699296832, 48.60942914896023], [-1.236543680461095, 48.60940747981471], [-1.236511588762417, 48.60938715900907], [-1.236477561622511, 48.60936827355823], [-1.236472854676358, 48.60936585230947], [-1.236262608041976, 48.60925867881767], [-1.235804097984954, 48.60832155790068], [-1.235803286487205, 48.60831991012317], [-1.235788058303031, 48.60829227241801], [-1.235770136980585, 48.60826535436406], [-1.235749599265097, 48.60823927122745], [-1.235726533104975, 48.60821413469851], [-1.235701037275587, 48.60819005241446], [-1.2356732209556, 48.60816712749763], [-1.235643203259931, 48.60814545811449], [-1.235611112729238, 48.60812513705498], [-1.2355770867801, 48.60810625133514], [-1.235576174660999, 48.60810577868047], [-1.234121723509023, 48.60735339525775], [-1.234086821045983, 48.60733649799332], [-1.234049369976338, 48.60732071855876], [-1.234010442977853, 48.60730659729384], [-1.23397020666673, 48.60729419463151], [-1.233928833337847, 48.60728356368058], [-1.233886500154449, 48.60727474996327], [-1.233843388389291, 48.60726779122038], [-1.233799682649364, 48.60726271724944], [-1.233755570084383, 48.6072595497776], [-1.23371123958623, 48.60725830236778], [-1.233666880979802, 48.60725898036173], [-1.233622684210358, 48.6072615808561], [-1.233578838530411, 48.60726609271559], [-1.233535531688879, 48.60727249662004], [-1.233492949127881, 48.60728076514786], [-1.233451273187902, 48.6072908628927], [-1.233410682328129, 48.60730274661571], [-1.233371350361305, 48.60731636543007], [-1.233333445710148, 48.60733166101934], [-1.23329713068568, 48.60734856788697], [-1.233262560792772, 48.60736701363665], [-1.233229884063969, 48.60738691928266], [-1.233199240425542, 48.6074081995875], [-1.233170761098565, 48.60743076342743], [-1.233144568036686, 48.60745451418214], [-1.233120773404361, 48.60747935014899], [-1.233099479095725, 48.60750516497798], [-1.233080776299154, 48.60753184812747], [-1.23306474510622, 48.60755928533745], [-1.23305145416857, 48.60758735911859], [-1.233040960404392, 48.60761594925585], [-1.233033308753959, 48.60764493332243], [-1.233028531987777, 48.60767418720475], [-1.233026650565339, 48.60770358563357], [-1.233027672548497, 48.60773300272041], [-1.233031593566047, 48.60776231249674], [-1.233038396832538, 48.60779138945326], [-1.233047841016253, 48.60781956134012], [-1.233519239252958, 48.60903947978478], [-1.233519451466985, 48.60904002752132], [-1.233531920196753, 48.60906826677741], [-1.23354714737693, 48.60909590478154], [-1.23356506780649, 48.6091228231822], [-1.233585604750636, 48.60914890670954], [-1.23360867027003, 48.60917404366846], [-1.23363416559684, 48.60919812641721], [-1.233661981557854, 48.60922105182819], [-1.233691999042113, 48.6092427217295], [-1.233724089510455, 48.60926304332583], [-1.233758115546404, 48.60928192959513], [-1.233793931444231, 48.60929929966191], [-1.233812405719821, 48.60930736849932], [-1.234264621749164, 48.6094979371254], [-1.234358757750278, 48.60969034155035], [-1.234591974185662, 48.61019633085756], [-1.235015536335735, 48.61167966846324], [-1.235025137592285, 48.61170818803938], [-1.235037607827569, 48.61173642712728], [-1.235052836641499, 48.61176406492688], [-1.235070758825916, 48.61179098308782], [-1.235091297638826, 48.61181706634114], [-1.235114365132521, 48.61184220299298], [-1.235135075643987, 48.61186201246348], [-1.235831175481459, 48.61249110978704], [-1.236154351175964, 48.61333508658309], [-1.23615493804258, 48.61333660802195], [-1.236167409314954, 48.61336484698419], [-1.236182639241914, 48.61339248463101], [-1.236200562610283, 48.61341940261256], [-1.236221102672934, 48.61344548566077], [-1.236244171477121, 48.61347062208263], [-1.236269670240942, 48.61349470423858], [-1.236297489776517, 48.61351762900355], [-1.236327510957438, 48.61353929820866], [-1.236359605228778, 48.61355961906118], [-1.236393635157673, 48.61357850454252], [-1.236429455022068, 48.61359587378054], [-1.236458045949014, 48.61360812168122], [-1.236494487883184, 48.61362288669623], [-1.236207337836623, 48.61358072603828], [-1.236199438252097, 48.61357959886967], [-1.236155726794543, 48.61357452580006], [-1.236111608550146, 48.61357135923721], [-1.236067272435086, 48.61357011274026], [-1.236022908298362, 48.61357079164691], [-1.235978706108913, 48.61357339305001], [-1.235934855142395, 48.61357790581025], [-1.235891543170486, 48.61358431060371], [-1.235848955657131, 48.61359258000503], [-1.235807274964114, 48.61360267860403], [-1.235789549166604, 48.61360786794407], [-1.23471660400005, 48.61236703426386], [-1.234695773654102, 48.6123445049813], [-1.234670276225953, 48.61232042247324], [-1.234642458093056, 48.61229749731131], [-1.234612438378062, 48.61227582766291], [-1.234580345630523, 48.6122555063191], [-1.234546317276168, 48.61223662029736], [-1.23451049902882, 48.61221925046878], [-1.234473044266229, 48.6122034712122], [-1.2344431501584, 48.61219262794396], [-1.234399873812373, 48.6121087097201], [-1.234387214101453, 48.6120861518232], [-1.234369292177349, 48.61205923355566], [-1.234348753639838, 48.61203315017325], [-1.234325686440847, 48.61200801336745], [-1.23430018936008, 48.61198393077649], [-1.23427237158166, 48.61196100552415], [-1.234242352226738, 48.61193933577827], [-1.234210259843107, 48.61191901433035], [-1.23417855380723, 48.6119014169233], [-1.234187676043197, 48.61188840293706], [-1.234203708002717, 48.61186096557647], [-1.234216999426139, 48.61183289166819], [-1.234227493401428, 48.61180430142994], [-1.234235144996525, 48.61177531729032], [-1.234239921450777, 48.61174606336432], [-1.234241802315641, 48.61171666492224], [-1.234240779542095, 48.61168724785279], [-1.234236857514812, 48.61165793812426], [-1.234230053033634, 48.61162886124527], [-1.234220395241088, 48.61160014172683], [-1.23420792549799, 48.61157190254967], [-1.234192697206082, 48.6115442646374], [-1.2341747755789, 48.6115173463386], [-1.234154237363272, 48.61149126292042], [-1.234131170509805, 48.61146612607465], [-1.234105673796564, 48.61144204343965], [-1.234077856406173, 48.61141911813939], [-1.234047837458046, 48.61139744834188], [-1.234015745498396, 48.61137712683874], [-1.233981717949597, 48.61135824064826], [-1.233945900522093, 48.61134087064223], [-1.233908446589997, 48.61132509120012], [-1.233869516534558, 48.6113109698904], [-1.233829277057548, 48.61129856718137], [-1.233793243842056, 48.61128930907081], [-1.233764866428877, 48.61095224494345], [-1.233760944735967, 48.61092293519746], [-1.233754140629009, 48.61089385828893], [-1.233744483248993, 48.61086513872917], [-1.233732013955016, 48.61083689949901], [-1.233716786146601, 48.61080926152222], [-1.233698865035706, 48.6107823431479], [-1.233678327366501, 48.61075625964326], [-1.233655261087394, 48.61073112270053], [-1.233629764974074, 48.61070703995853], [-1.233601948206564, 48.61068411454173], [-1.233571929901562, 48.61066244461843], [-1.233539838602584, 48.61064212298113], [-1.233505811729285, 48.61062323664845], [-1.233469994988812, 48.6106058664928], [-1.233432541752739, 48.61059008689433], [-1.233393612399198, 48.61057596542223], [-1.233388548955694, 48.61051581612549], [-1.233384627515881, 48.61048650636586], [-1.233377823685262, 48.61045742943428], [-1.233368166603668, 48.61042870984205], [-1.233355697628895, 48.61040047057026], [-1.23334047015911, 48.61037283254268], [-1.23332254940479, 48.61034591410878], [-1.233302012108626, 48.61031983053601], [-1.233278946217389, 48.61029469351687], [-1.233253450505107, 48.61027061069044], [-1.233225634150128, 48.61024768518168], [-1.233195616267349, 48.61022601515918], [-1.233163525398506, 48.61020569341589], [-1.233129498961378, 48.61018680697084], [-1.233093682661273, 48.61016943669706], [-1.233056229867826, 48.61015365697513], [-1.233017300957351, 48.61013953537469], [-1.232977062626643, 48.61012713236519], [-1.232935687179235, 48.61011650105703], [-1.232893351787483, 48.61010768697389], [-1.232850237733516, 48.61010072785799], [-1.232850161149857, 48.61010071896692], [-1.232798957767043, 48.61000509509154], [-1.23278891540618, 48.60998751503201], [-1.232770995083934, 48.60996059651113], [-1.232766057929609, 48.60995393340933], [-1.231475140314764, 48.60824740457449], [-1.23145954164269, 48.60822798382628], [-1.231437760855016, 48.60820415210839], [-1.23064658500684, 48.60739606090572], [-1.229840578373465, 48.60633045072431], [-1.229824981348513, 48.60631103031015], [-1.229801919029998, 48.60628589258485], [-1.229776427011122, 48.60626180897878], [-1.229748614454365, 48.60623888262001], [-1.229718600458536, 48.60621721168108], [-1.229686513548367, 48.60619688895866], [-1.229652491124968, 48.60617800147593], [-1.229638044824613, 48.60617070560394], [-1.229563425211504, 48.60613405655685], [-1.229430637590645, 48.60579610402322], [-1.229418655708059, 48.6057691026799], [-1.229403431800364, 48.60574146412166], [-1.229385514799621, 48.60571454506452], [-1.229364981432435, 48.60568846077887], [-1.229341919628788, 48.60566332296008], [-1.229316428145184, 48.60563923925073], [-1.229288616141824, 48.6056163127794], [-1.22925860271514, 48.60559464171914], [-1.229226516387425, 48.60557431886706], [-1.229192494557332, 48.60555543124703], [-1.229156682910484, 48.60553805973712], [-1.229119234796254, 48.60552227872314], [-1.229080310571191, 48.60550815578037], [-1.229046418969866, 48.6054975671243], [-1.228779119176127, 48.60541996468906], [-1.22873671013259, 48.60533769713281], [-1.228724054661678, 48.60531513860125], [-1.228706138175804, 48.60528821943716], [-1.228685605334476, 48.60526213502904], [-1.228662544065322, 48.6052369970728], [-1.228637053122546, 48.60521291321163], [-1.228609241664089, 48.60518998657467], [-1.228579228783988, 48.60516831533579], [-1.228547143002297, 48.60514799229278], [-1.228513121715049, 48.60512910447039], [-1.228477310605851, 48.60511173274757], [-1.228439863021698, 48.60509595151098], [-1.228400939316798, 48.60508182833685], [-1.228360706165688, 48.60506942370138], [-1.228319335849735, 48.60505879072177], [-1.228277005519034, 48.60504997492899], [-1.228233896434372, 48.60504301407274], [-1.228190193191248, 48.60503793795949], [-1.228146082928585, 48.60503476832565], [-1.228101754528475, 48.60503351874342], [-1.228057397806759, 48.60503419456386], [-1.228013202700764, 48.60503679289285], [-1.227969358455709, 48.60504130260425], [-1.227926052814516, 48.60504770438741], [-1.227883471214051, 48.60505597082954], [-1.227841795990798, 48.60506606653344], [-1.227801205600889, 48.60507794826873], [-1.227761873854869, 48.60509156515733], [-1.227723969174515, 48.60510685889109], [-1.22768765387119, 48.60512376398122], [-1.227653083450924, 48.60514220803918], [-1.22762040594828, 48.60516211208635], [-1.227589761293166, 48.60518339089215], [-1.227309481080507, 48.60539121693888], [-1.22728100025491, 48.60541377931592], [-1.227254805463993, 48.6054375287256], [-1.22723100887945, 48.60546236347075], [-1.227209712404027, 48.60548817720694], [-1.227191007235373, 48.60551485939708], [-1.227174973474974, 48.60554229578519], [-1.227161679785604, 48.60557036888564], [-1.227151183097246, 48.60559895848596], [-1.22714352836266, 48.60562794216195], [-1.227138748365442, 48.6056571958017], [-1.227136863579295, 48.60568659413686], [-1.227137882080118, 48.60571601127946], [-1.227141799511717, 48.60574532126071], [-1.227148599103947, 48.60577439857043], [-1.227158251744833, 48.60580311869462], [-1.227170716104857, 48.60583135864852], [-1.227185938813911, 48.60585899750353], [-1.227203854690113, 48.60588591690471], [-1.227224387018111, 48.60591200157777], [-1.227247447878292, 48.60593713982286], [-1.227272938522988, 48.60596122399253], [-1.22730074979895, 48.60598415095309], [-1.227330762615202, 48.60600582252619], [-1.227362848452549, 48.60602614590924], [-1.227396869914437, 48.60604503407255], [-1.227432681314662, 48.60606240613259], [-1.227470129301873, 48.6060781876978], [-1.227509053515965, 48.60609231118766], [-1.22754928727465, 48.60610471612178], [-1.227590658287565, 48.60611534937901], [-1.227632989393845, 48.60612416542507], [-1.227668201096499, 48.60612999874961], [-1.227682461943582, 48.60613209403663], [-1.227723008125954, 48.60623529346931], [-1.2277349881579, 48.6062622923113], [-1.227750211307161, 48.6062899310907], [-1.22776812763828, 48.60631685040296], [-1.227788660434384, 48.60634293497414], [-1.227789715437728, 48.60634417003492], [-1.227995533603179, 48.60658422956676], [-1.228118116551971, 48.606896222163], [-1.228130096953102, 48.60692322096264], [-1.22814532051907, 48.60695085968847], [-1.228163237296711, 48.6069777789379], [-1.228183770567095, 48.60700386343726], [-1.228185551427095, 48.60700594294015], [-1.231443950306947, 48.61078697287665], [-1.231445739415229, 48.61078904930504], [-1.231447382887927, 48.61079095132395], [-1.231699915394413, 48.6110806738482], [-1.231719552396338, 48.61110183116765], [-1.231745047795729, 48.61112591433455], [-1.23177286396174, 48.61114884020204], [-1.231802881782209, 48.61117051059636], [-1.231834972716939, 48.61119083271994], [-1.231868999347052, 48.61120971954876], [-1.231904815964604, 48.61122709020464], [-1.23194226919582, 48.61124287030231], [-1.231981198657954, 48.61125699226742], [-1.232015091437977, 48.61126757908864], [-1.23209547781753, 48.61129091185416], [-1.232128923849334, 48.61168833440827], [-1.232132844651657, 48.61171764420894], [-1.232139647933475, 48.61174672121242], [-1.232149304567067, 48.61177544090617], [-1.232161773205629, 48.61180368030718], [-1.232177000461086, 48.61183131848928], [-1.232194921131653, 48.61185823710027], [-1.232215458481794, 48.61188432086941], [-1.232238524570373, 48.61190945810058], [-1.232264020627099, 48.61193354115074], [-1.232291837475723, 48.61195646689104], [-1.232321856001308, 48.61197813714839], [-1.232353947660299, 48.61199845912557], [-1.23238797503104, 48.6120173457992], [-1.232423792402388, 48.612034716292], [-1.232461246397074, 48.61205049621917], [-1.232500176629372, 48.61206461800716], [-1.232540416391255, 48.61207702118287], [-1.232581793366601, 48.61208765263275], [-1.232624130368984, 48.61209646683012], [-1.232664269047685, 48.6121029455124], [-1.232672371131209, 48.61211511536588], [-1.232692908833548, 48.61214119904894], [-1.232715975278242, 48.61216633618351], [-1.232741471693482, 48.61219041912703], [-1.232769288901499, 48.61221334475107], [-1.232799307785677, 48.61223501488285], [-1.232831399801162, 48.61225533672597], [-1.232863105589037, 48.61227293450572], [-1.23285398294096, 48.61228594838609], [-1.232837950110417, 48.61231338555699], [-1.232824657791072, 48.61234145930443], [-1.23281416290707, 48.61237004941324], [-1.232806510403399, 48.61239903345692], [-1.232801733054183, 48.61242828732201], [-1.232799851321713, 48.61245768573923], [-1.23280087326888, 48.61248710282028], [-1.23280479452466, 48.61251641259662], [-1.232811598302561, 48.61254548955888], [-1.232821255472745, 48.61257420919459], [-1.232833724686226, 48.61260244852119], [-1.232848952552135, 48.6126300866126], [-1.232866873866467, 48.61265700511724], [-1.232887411890689, 48.61268308876463], [-1.232910478680707, 48.61270822585928], [-1.232935975463472, 48.61273230875872], [-1.232963793059498, 48.61275523433471], [-1.232993812350691, 48.61277690441483], [-1.233025904790177, 48.61279722620277], [-1.233059932953045, 48.61281611267584], [-1.233095751124513, 48.61283348295761], [-1.233133205924155, 48.61284926266428], [-1.233172136962708, 48.61286338422309], [-1.233212377528667, 48.61287578716203], [-1.233253755302495, 48.61288641836855], [-1.233296093094427, 48.61289523231712], [-1.233331310189527, 48.61290106389746], [-1.23333137014193, 48.61290107270173], [-1.233431928240238, 48.61319369742787], [-1.233436417916489, 48.61320596479111], [-1.23344888763157, 48.61323420404964], [-1.233464116026335, 48.61326184205832], [-1.233476805467773, 48.61328137911459], [-1.234230955583828, 48.6143707841709], [-1.234236188234461, 48.61437816548698], [-1.234256727670433, 48.61440424888618], [-1.234279795933073, 48.61442938570245], [-1.234305294242777, 48.61445346829461], [-1.234333113413604, 48.61447639353563], [-1.234363134320724, 48.61449806325466], [-1.23439522841031, 48.61451838465666], [-1.234429258250376, 48.61453727072085], [-1.234463482723291, 48.6145539166281], [-1.234502985035533, 48.61457189649422], [-1.234616843387559, 48.61477537924472], [-1.234623634480547, 48.61478701809371], [-1.234628102210593, 48.61479419103643], [-1.235173399940863, 48.61564867544494], [-1.235186855684363, 48.61566842066059], [-1.235207396139539, 48.6156945038873], [-1.23522106452868, 48.61570983971375], [-1.237234894121484, 48.61787034162996], [-1.237244295856574, 48.61788014225975], [-1.237269797332745, 48.61790422418688], [-1.237297619760966, 48.61792714870297], [-1.237327644002499, 48.61794881764029], [-1.237359741489228, 48.61796913820724], [-1.237388849647632, 48.61798544289], [-1.23747573199299, 48.61803139907362], [-1.237617075102866, 48.61839087290856], [-1.237629063345505, 48.61841787072267], [-1.237644295603899, 48.61844550816692], [-1.237662221553384, 48.61847242591183], [-1.237682764435539, 48.61849850869021], [-1.23770583628547, 48.61852364481023], [-1.237731338308483, 48.61854772663361], [-1.237759161302612, 48.61857065103671], [-1.237789186126699, 48.61859231985213], [-1.23782128421015, 48.61861264028902], [-1.237855318103893, 48.61863152533039], [-1.237891142068608, 48.61864889410605], [-1.237928602699006, 48.61866467223849], [-1.237967539580944, 48.61867879216192], [-1.238007785977819, 48.61869119341115], [-1.238049169545152, 48.61870182288093], [-1.23809151306838, 48.61871063505316], [-1.238134635221828, 48.61871759219163], [-1.238178351345309, 48.61872266450416], [-1.238222474234991, 48.61872583026969], [-1.238266814944815, 48.61872707593166], [-1.238311183596088, 48.61872639615571], [-1.238355390190293, 48.61872379385289], [-1.238399245422959, 48.61871928016683], [-1.238442561494448, 48.61871287442661], [-1.23848515291402, 48.61870460406298], [-1.238526837294507, 48.61869450449204], [-1.238567436133078, 48.61868261896264], [-1.238606775575881, 48.61866899837186], [-1.238644687162431, 48.61865370104641], [-1.238681008547131, 48.61863679249327], [-1.238715584194456, 48.61861834511911], [-1.238748266045262, 48.61859843791994], [-1.238778914150336, 48.61857715614328], [-1.238807397269959, 48.61855459092255], [-1.238833593436055, 48.61853083888717], [-1.238857390474095, 48.61850600174862], [-1.238878686483611, 48.61848018586476], [-1.238897390274567, 48.6184535017847], [-1.238913421757808, 48.61842606377494], [-1.238926712287944, 48.61839798933053], [-1.238926960353732, 48.61839739672804], [-1.239174852964491, 48.61780362515194], [-1.239185097308884, 48.61777562707216], [-1.239192746956839, 48.61774664261121], [-1.239197521096402, 48.61771738848849], [-1.239199399288824, 48.61768798997507], [-1.239198373496553, 48.61765857296004], [-1.239194448117151, 48.61762926341145], [-1.239187639964849, 48.6176001868371], [-1.239177978197923, 48.6175714677468], [-1.239165504194253, 48.61754322911936], [-1.239150271373508, 48.61751559187595], [-1.239132344969127, 48.61748867436261], [-1.239111801747983, 48.61746259184276], [-1.239088729682185, 48.6174374560045], [-1.239063227572281, 48.61741337448188], [-1.239035404623876, 48.61739045039413], [-1.239005379980265, 48.61736878190389], [-1.238973282211981, 48.61734846179757], [-1.23893924876646, 48.61732957708707], [-1.238903425378943, 48.61731220863802], [-1.238865965449525, 48.6172964308232], [-1.238827029384932, 48.61728231120417], [-1.238793136706129, 48.61727172802352], [-1.23860210371882, 48.61721629766613], [-1.238495992781084, 48.61700914881163], [-1.238482862864989, 48.61698568261568], [-1.238467791362203, 48.61696274745742], [-1.237091520379725, 48.61501792198064], [-1.237361865958568, 48.61481744890259], [-1.237390347586025, 48.61479488402945], [-1.237416542464132, 48.6147711323131], [-1.237440338423934, 48.61474629546359], [-1.237461633569601, 48.61472047983773], [-1.237480336714734, 48.61469379598332], [-1.237496367773014, 48.61466635816606], [-1.237500473624433, 48.61465768503145], [-1.237726065326632, 48.61502760809575], [-1.237743688118378, 48.61505402979826], [-1.237764229647755, 48.61508011256716], [-1.237787299971527, 48.61510524867575], [-1.237812800301634, 48.61512933048574], [-1.237840621443445, 48.61515225487357], [-1.237870644263555, 48.61517392367194], [-1.237902740200063, 48.61519424409003], [-1.237936771813111, 48.61521312911094], [-1.237972593373089, 48.61523049786457], [-1.238010051485041, 48.61524627597352], [-1.238031790082803, 48.61525442978694], [-1.238543057125205, 48.6154380397686], [-1.238863791171128, 48.61596393593069], [-1.238881413264612, 48.61599035479503], [-1.238901955765612, 48.61601643735843], [-1.238925027086706, 48.61604157323636], [-1.238950528435479, 48.61606565479171], [-1.23897835061294, 48.61608857890184], [-1.239008374481292, 48.61611024740068], [-1.239040471474135, 48.61613056749876], [-1.239074504147075, 48.61614945218046], [-1.239110326765986, 48.61616682057714], [-1.239147785931356, 48.61618259831302], [-1.239186721235257, 48.6161967178239], [-1.239226965947959, 48.61620911864636], [-1.239268347732099, 48.61621974767712], [-1.239310689380766, 48.61622855939967], [-1.23935380957632, 48.61623551607999], [-1.239373385081337, 48.61623802182224], [-1.23925371131582, 48.61645048723754], [-1.239248965271023, 48.61645918510606], [-1.239235675432693, 48.61648725959106], [-1.23922518332575, 48.61651585028068], [-1.23921753388341, 48.61654483474588], [-1.239212759866688, 48.61657408887139], [-1.239210881723627, 48.61660348738697], [-1.239211907501729, 48.61663290440367], [-1.239215832813565, 48.61666221395334], [-1.239222640855275, 48.61669129052761], [-1.239232302478777, 48.61672000961563], [-1.2392447763159, 48.61674824823712], [-1.239260008956309, 48.61677588546918], [-1.239277935175098, 48.6168028029637], [-1.239298478213069, 48.6168288854547], [-1.239321550104646, 48.61685402125158], [-1.239347052054778, 48.61687810271745], [-1.239374874861856, 48.61690102673013], [-1.239404899385563, 48.61692269512405], [-1.239436997056544, 48.61694301510996], [-1.239471030427466, 48.6169618996729], [-1.239506853761505, 48.61697926794472], [-1.239544313655792, 48.61699504555011], [-1.239555827494714, 48.61699945109371], [-1.239759146265274, 48.61707549528382], [-1.24012400423589, 48.6184027660974], [-1.240124804720948, 48.61840562555127], [-1.240134467188254, 48.61843434456028], [-1.240146941956393, 48.61846258308069], [-1.24016217561097, 48.61849022018999], [-1.240180102922825, 48.61851713754059], [-1.240200647127943, 48.61854321986705], [-1.240223720255891, 48.61856835547964], [-1.240249223506222, 48.61859243674215], [-1.240277047671874, 48.61861536053341], [-1.240307073606453, 48.61863702868852], [-1.240339172735028, 48.61865734841942], [-1.240373207603591, 48.61867623271239], [-1.240397502979083, 48.61868826932953], [-1.242235744798046, 48.61955717591562], [-1.242344830053475, 48.61976534691785], [-1.242356438318524, 48.61978587127208], [-1.24237436726647, 48.61981278827905], [-1.242394913137535, 48.61983887020983], [-1.242413124161403, 48.61985900602256], [-1.242947780642991, 48.62041662079452], [-1.242952644543813, 48.62042162012727], [-1.242978150038849, 48.62044570077934], [-1.242998737361916, 48.6204629503095], [-1.244349863181102, 48.62153977541059], [-1.244357102598288, 48.62154544892013], [-1.244387132037523, 48.62156711600166], [-1.244419234681886, 48.62158743458516], [-1.2444532730627, 48.62160631766198], [-1.244487501185536, 48.62162295853106], [-1.244704011133526, 48.62172146476579], [-1.244288076194635, 48.62167607738429], [-1.244272862571814, 48.62167453454925], [-1.244228736716684, 48.62167137111576], [-1.244184393265493, 48.62167012776282], [-1.244140022098632, 48.62167080981449], [-1.244095813215178, 48.62167341435023], [-1.244071552058415, 48.62167567144566], [-1.243167188297456, 48.6217708751672], [-1.242725460553553, 48.62175748609583], [-1.242700967531643, 48.62175703737585], [-1.242628970363595, 48.62175911926315], [-1.241340315695321, 48.62068863280592], [-1.24132439312336, 48.62067589348691], [-1.241294365534365, 48.6206542256012], [-1.241262264746776, 48.62063390614036], [-1.241228228220699, 48.62061502211389], [-1.241192401705005, 48.6205976543844], [-1.241154938612676, 48.62058187732158], [-1.241115999364351, 48.62056775848368], [-1.241075750701188, 48.62055535832826], [-1.241034364970566, 48.62054472995356], [-1.240992019389204, 48.62053591887057], [-1.240948895282859, 48.62052896280901], [-1.240905177311276, 48.62052389155474], [-1.24086105267665, 48.62052072682339], [-1.240816710322441, 48.62051948216618], [-1.240772340124385, 48.62052016291301], [-1.240728132077382, 48.62052276614863], [-1.240684275482147, 48.62052728072618], [-1.240640958134498, 48.62053368731381], [-1.240598365521342, 48.62054195847843], [-1.240556680026366, 48.6205520588024], [-1.240516080149605, 48.62056394503584], [-1.240476739742413, 48.6205775662811], [-1.240438827263657, 48.62059286421146], [-1.240402505057914, 48.62060977332025], [-1.240367928660708, 48.62062822120156], [-1.240335246132565, 48.62064812886064], [-1.240304597424453, 48.62066941105128], [-1.240276113779251, 48.62069197664164], [-1.24024991716911, 48.62071572900408], [-1.240226119773615, 48.62074056642884], [-1.240204823498792, 48.62076638255986], [-1.240186119541389, 48.62079306684981], [-1.240170087998016, 48.62082050503393], [-1.240156797521756, 48.62084857961862], [-1.240146305028902, 48.62087717038538], [-1.240138655454168, 48.62090615490477], [-1.240133881559269, 48.62093540906123], [-1.240132003791388, 48.62096480758436], [-1.240133030196828, 48.62099422458532], [-1.240136956385243, 48.62102353409589], [-1.240140360775432, 48.62103962374751], [-1.240323618036618, 48.62180493773029], [-1.240327022909302, 48.62181792458473], [-1.240336686147112, 48.62184664357082], [-1.240349161874583, 48.62187488206349], [-1.240364396672906, 48.62190251914029], [-1.240382325308362, 48.62192943645382], [-1.240402871011261, 48.62195551873883], [-1.24042466345591, 48.62197935022338], [-1.241120317461171, 48.62268946615612], [-1.241533931676828, 48.6232645769451], [-1.241522663123937, 48.62326982268863], [-1.241505090369166, 48.6232788892102], [-1.240699153808558, 48.62370896564939], [-1.240682148453773, 48.62371834722462], [-1.240649464043095, 48.62373825496967], [-1.240618813586163, 48.62375953724054], [-1.240590328332947, 48.62378210290483], [-1.240564130262634, 48.62380585533478], [-1.240540331560944, 48.62383069282024], [-1.240519034139718, 48.62385650900492], [-1.24050032920062, 48.62388319334138], [-1.240484296844078, 48.62391063156439], [-1.240471005727151, 48.62393870618042], [-1.240460512768549, 48.62396729697063], [-1.240453006925641, 48.62399561004112], [-1.240236681400708, 48.62499873227094], [-1.239284889116421, 48.62528350428617], [-1.239269770308675, 48.62528817686054], [-1.239230425871227, 48.62530179767374], [-1.239192509454601, 48.62531709518711], [-1.23915618342044, 48.62533400389567], [-1.239121603320776, 48.62535245139556], [-1.239088917231641, 48.62537235869325], [-1.23906874630805, 48.62538604627991], [-1.238895194472867, 48.62532171672815], [-1.238870002964767, 48.62531283488944], [-1.238829751060058, 48.62530043394808], [-1.238788361901777, 48.62528980476459], [-1.238746012721095, 48.62528099285363], [-1.238702884859173, 48.62527403594806], [-1.238659162991986, 48.62526896383785], [-1.238615034338275, 48.62526579824177], [-1.238570687858787, 48.62526455271518], [-1.238526313446862, 48.62526523259142], [-1.238482101115526, 48.62526783495926], [-1.238438240183759, 48.62527234867518], [-1.238394918465986, 48.6252787544114], [-1.238352321467857, 48.62528702473811], [-1.238310631591786, 48.62529712424162], [-1.238270027356672, 48.62530900967518], [-1.238230682632313, 48.62532263014493], [-1.238192765896142, 48.62533792732725], [-1.238156439511082, 48.62535483571874], [-1.238121859030603, 48.62537328291671], [-1.238089172532375, 48.62539318992902], [-1.238058519984835, 48.6254144715124], [-1.238030032646926, 48.62543703653757], [-1.238003832506729, 48.62546078837938], [-1.23799166462127, 48.62547303703659], [-1.237940448204942, 48.6255264705038], [-1.237923885213204, 48.62552623068491], [-1.23787951056181, 48.62552691031047], [-1.237835297967145, 48.62552951242855], [-1.237791436749327, 48.62553402589675], [-1.237748936240815, 48.62554029143076], [-1.237570288239942, 48.62557064762352], [-1.237486776434171, 48.62544929879062], [-1.237480875004506, 48.62544095123098], [-1.237460329393174, 48.62541486842726], [-1.237437254506493, 48.62538973226806], [-1.23741174915714, 48.62536565038901], [-1.23738392256459, 48.6253427259107], [-1.237353893887805, 48.62532105699771], [-1.237321791714485, 48.62530073643792], [-1.23728775351079, 48.62528185124547], [-1.237251925032785, 48.62526448228796], [-1.237214459701828, 48.62524870394033], [-1.237175517948166, 48.6252345837663], [-1.237135266523552, 48.62522218222933], [-1.237093877787654, 48.62521155243334], [-1.237051528969402, 48.62520273989568], [-1.237008401408779, 48.6251957823519], [-1.236964679780381, 48.62519070959461], [-1.23692055130187, 48.62518754334566], [-1.236876204933273, 48.62518629716283], [-1.236831830567491, 48.6251869763825], [-1.23678761821731, 48.62518957809615], [-1.23674375720179, 48.62519409116311], [-1.236700435335716, 48.62520049625828], [-1.236657838125357, 48.62520876595473], [-1.236616147974066, 48.62521886484142], [-1.236575543401921, 48.62523074967426], [-1.23653619828016, 48.62524436956182], [-1.236498281087894, 48.62525966618319], [-1.236461954190025, 48.62527657403724], [-1.236427373142239, 48.62529502072358], [-1.236394686024567, 48.62531492725233], [-1.236364032808162, 48.62533620838222], [-1.236335544754805, 48.62535877298597], [-1.236309343855615, 48.62538252444021], [-1.236285542308502, 48.62540736103903], [-1.236264242037495, 48.62543317642988], [-1.236245534256291, 48.62545986006875], [-1.236229499077866, 48.6254872976934], [-1.236225036977636, 48.6254960290809], [-1.236132431895813, 48.62568354030397], [-1.23596108980224, 48.62579301334644], [-1.23595681619753, 48.62579576792032], [-1.235926162503087, 48.62581704893252], [-1.235897673981126, 48.62583961342667], [-1.235871472625061, 48.62586336478007], [-1.235847670634422, 48.62588820128708], [-1.235826369935298, 48.62591401659578], [-1.235807661743162, 48.62594070016233], [-1.235791858786399, 48.62596773971297], [-1.235753090162748, 48.6259666499062], [-1.235708715093729, 48.62596732869059], [-1.235599786096087, 48.62597136184225], [-1.235551081336901, 48.62583362548889], [-1.235547535272978, 48.62582406911036], [-1.235535061260795, 48.6257958301013], [-1.235519827935994, 48.62576819238855], [-1.235501900533791, 48.62574127431994], [-1.235481355825356, 48.62571519116158], [-1.235458281789534, 48.62569005460414], [-1.235432777234966, 48.62566597228473], [-1.235404951377868, 48.62564304732607], [-1.235374923373884, 48.62562137789455], [-1.235342821808039, 48.62560105678035], [-1.235308784143852, 48.62558217100001], [-1.235272956135052, 48.62556480142365], [-1.235235491201077, 48.62554902242881], [-1.235196549770317, 48.62553490158211], [-1.235156298593185, 48.62552249934979], [-1.23511491002819, 48.62551186883875], [-1.235072561303783, 48.62550305556941], [-1.235029433759527, 48.62549609728055], [-1.234985712069678, 48.62549102376777], [-1.234941583452358, 48.6254878567562], [-1.234897236868193, 48.6254866098071], [-1.234852862210885, 48.62548728825983], [-1.234808649494577, 48.62548988920942], [-1.234764788039888, 48.62549440151825], [-1.234721465663422, 48.6255008058647], [-1.234678867873726, 48.62550907482491], [-1.234637177076572, 48.62551917299088], [-1.234596571794775, 48.62553105712181], [-1.23455722590271, 48.62554467632917], [-1.234519307882667, 48.62555997229502], [-1.234482980103162, 48.625576879521], [-1.234448398123642, 48.62559532560939], [-1.234415710028172, 48.62561523157285], [-1.234385055792022, 48.62563651217267], [-1.234356566681352, 48.62565907628369], [-1.234330364691894, 48.62568282728472], [-1.234306562026095, 48.62570766347175], [-1.234285260612802, 48.62573347849399], [-1.234273221461566, 48.62575011481096], [-1.234031320888733, 48.62610275871455], [-1.23401283392939, 48.62609250098025], [-1.233977006004583, 48.62607513099903], [-1.233939541096927, 48.62605935158074], [-1.233900599634892, 48.62604523029381], [-1.233860348368971, 48.62603282760632], [-1.233818959658153, 48.62602219662723], [-1.233776610731268, 48.62601338287882], [-1.233733482928758, 48.62600642410214], [-1.23368976092622, 48.62600135009477], [-1.233645631942972, 48.62599818258396], [-1.233601284941222, 48.62599693513293], [-1.233556909816487, 48.62599761308359], [-1.233512696584851, 48.62600021353273], [-1.233468834569211, 48.62600472534509], [-1.233425511588508, 48.62601112920102], [-1.233382913153909, 48.62601939767887], [-1.23334122167396, 48.62602949537276], [-1.233300615674418, 48.62604137904376], [-1.233261269032633, 48.62605499780553], [-1.233223350234232, 48.62607029334172], [-1.23318702165097, 48.62608720015607], [-1.23315243884577, 48.62610564585252], [-1.233119749906195, 48.62612555144546], [-1.233089094811193, 48.62614683169765], [-1.23280872055654, 48.62635467095754], [-1.23278023033256, 48.62637723467547], [-1.232754027225216, 48.62640098531472], [-1.232730223441811, 48.62642582117303], [-1.232708920915968, 48.62645163590094], [-1.232690210871175, 48.6264783189573], [-1.23267417342988, 48.62650575608239], [-1.232660877270566, 48.62653382978739], [-1.232650379333826, 48.6265624198573], [-1.232642724577717, 48.62659140386582], [-1.232637945785995, 48.62662065769965], [-1.232636063427186, 48.62665005608965], [-1.232637085566799, 48.6266794731476], [-1.232641007833051, 48.62670878290506], [-1.232647813435073, 48.62673785985275], [-1.232657473235232, 48.62676657947831], [-1.232669945873315, 48.62679481879915], [-1.23268517794378, 48.62682245688924], [-1.23270310422462, 48.62684937539703], [-1.232723647955956, 48.62687545905202], [-1.232746721169375, 48.62690059615862], [-1.232772225064251, 48.62692467907441], [-1.232800050430682, 48.62694760467102], [-1.23283007811728, 48.62696927477594], [-1.232862179541239, 48.62698959659281], [-1.232896217239159, 48.62700848309872], [-1.232932045455413, 48.62702585341719], [-1.232969510766586, 48.62704163316419], [-1.233008452738373, 48.62705575476685], [-1.233048704612487, 48.62706815775294], [-1.233084748988911, 48.62707741608928], [-1.23311313093962, 48.62741448006601], [-1.233117053540385, 48.62744378980585], [-1.233123859516887, 48.62747286672397], [-1.233133519729797, 48.62750158630807], [-1.23314599281708, 48.62752982557579], [-1.233161225371557, 48.62755746360138], [-1.233179152168724, 48.62758438203335], [-1.233199696446883, 48.62761046560177], [-1.233222770235183, 48.62763560261136], [-1.233248274730379, 48.62765968542003], [-1.233276100720111, 48.62768261089998], [-1.233306129050253, 48.62770428087913], [-1.233338231135264, 48.62772460256157], [-1.233372269508883, 48.62774348892516], [-1.233408098412867, 48.62776085909387], [-1.233445564420523, 48.62777663868442], [-1.233484507094649, 48.6277907601246], [-1.233524759674018, 48.62780316294284], [-1.233566149787555, 48.62781379402712], [-1.233608500192558, 48.62782260785231], [-1.233643923241292, 48.6278283232835], [-1.233663829152991, 48.62786718133636], [-1.233676956223242, 48.62789064135865], [-1.233694883414993, 48.6279175597094], [-1.233715428096589, 48.62794364318477], [-1.233738502295161, 48.62796878008993], [-1.233764007206024, 48.62799286278329], [-1.233791833614881, 48.62801578813738], [-1.233821862365907, 48.6280374579809], [-1.233853964871741, 48.62805777951836], [-1.233888003664285, 48.62807666572827], [-1.233922231693496, 48.62809330929352], [-1.234448295492079, 48.62833269431737], [-1.235896224593696, 48.62944228462108], [-1.235924990109025, 48.62946298173886], [-1.235957094373532, 48.62948330268507], [-1.235991134919734, 48.62950218826821], [-1.236026965979733, 48.6295195576156], [-1.236064434118045, 48.62953533634764], [-1.236103378888094, 48.62954945689582], [-1.236143633519682, 48.62956185879221], [-1.236185025632859, 48.62957248892877], [-1.236227377976751, 48.62958130178462], [-1.236264015409518, 48.62958733812785], [-1.236981509684512, 48.62969158825194], [-1.237476299733324, 48.63007073265717], [-1.237505066622076, 48.63009142965645], [-1.237537171925591, 48.63011175015889], [-1.237571213489899, 48.63013063527164], [-1.237607045542783, 48.63014800412404], [-1.237644514644445, 48.63016378233853], [-1.23768346034421, 48.63017790234872], [-1.237723715867924, 48.63019030368934], [-1.237765108831841, 48.63020093325439], [-1.237767811582045, 48.63020155646432], [-1.239607996161141, 48.6306229725587], [-1.239647647191939, 48.63063116098252], [-1.239684293028944, 48.6306371972815], [-1.240104302938336, 48.63069820666284], [-1.240525401919481, 48.63105776182153], [-1.240546962192688, 48.63107524619073], [-1.240576995678226, 48.63109691425875], [-1.240609102863737, 48.63111723389876], [-1.240643146261098, 48.63113611809716], [-1.240678980090242, 48.63115348598737], [-1.240716450903794, 48.63116926319583], [-1.240755398243727, 48.63118338216054], [-1.240795655328832, 48.63119578242056], [-1.240837049768708, 48.63120641087468], [-1.240879404302429, 48.63121522200926], [-1.240922537557216, 48.63122217809245], [-1.240966264825123, 48.63122724933675], [-1.241010398854634, 48.63123041402556], [-1.241054750652069, 48.63123165860699], [-1.241099130291212, 48.63123097775113], [-1.241143347726506, 48.63122837437386], [-1.241187213607014, 48.63122385962348], [-1.241230540087577, 48.63121745283332], [-1.241273141632828, 48.63120918143899], [-1.241314835812337, 48.63119908086064], [-1.241355444081025, 48.63118719435179], [-1.241394792544952, 48.63117357281337], [-1.241432712704884, 48.63115827457629], [-1.241462593634415, 48.63114454099019], [-1.242214789089278, 48.63077864979384], [-1.241894306808384, 48.63112637658269], [-1.240735273210847, 48.63172281457736], [-1.240708900723653, 48.63173710310732], [-1.240676211115213, 48.63175701085013], [-1.240645555785278, 48.63177829311776], [-1.240617066004683, 48.63180085877762], [-1.24059086377226, 48.63182461120197], [-1.240567061291293, 48.6318494486808], [-1.240545760489911, 48.63187526485775], [-1.240527052584126, 48.63190194918546], [-1.240511017687416, 48.63192938739873], [-1.240497724467411, 48.63195746200397], [-1.240487229851774, 48.63198605278263], [-1.240485797018742, 48.63199072257087], [-1.240450860419649, 48.63210775719282], [-1.240435193880423, 48.6321059402364], [-1.240391059119157, 48.63210277532606], [-1.240346706570343, 48.63210153048779], [-1.240302326153222, 48.63210221105196], [-1.240258107906558, 48.63210481410437], [-1.240214241174691, 48.63210932849863], [-1.240170913796825, 48.63211573490399], [-1.240135149959574, 48.63212254208705], [-1.239815810819043, 48.63218965950347], [-1.239508862274441, 48.63221984272148], [-1.239482461431329, 48.63222279278219], [-1.239439133862597, 48.63222919891071], [-1.239396531152317, 48.6322374696223], [-1.239354835727344, 48.63224756950158], [-1.239314226130239, 48.63225945530035], [-1.239274876254122, 48.63227307612302], [-1.239236954598046, 48.6322883736445], [-1.239200623546219, 48.63230528236001], [-1.239166038671955, 48.63232372986537], [-1.239133348072048, 48.6323436371671], [-1.239102691732161, 48.63236491902094], [-1.239074200927546, 48.63238748429621], [-1.239047997661409, 48.63241123636669], [-1.239024194141394, 48.63243607352398], [-1.23901828953533, 48.63244322937118], [-1.238997338681878, 48.63246222031991], [-1.238978855969897, 48.63248118484626], [-1.23869794640135, 48.63278593824146], [-1.238366405745441, 48.63292691539477], [-1.23812823160693, 48.63296807175529], [-1.238087497457836, 48.63297602083302], [-1.238045801158163, 48.63298612023528], [-1.238005190655902, 48.63299800556932], [-1.23796583984777, 48.63301162594159], [-1.237927917237158, 48.63302692302903], [-1.23789158521219, 48.63304383132848], [-1.237856999350535, 48.63306227843766], [-1.237824307752826, 48.63308218536489], [-1.237793650409342, 48.6331034668673], [-1.237765158599611, 48.63312603181587], [-1.237738954330836, 48.63314978358584], [-1.237715149815337, 48.63317462046987], [-1.237693846989794, 48.63320043611424], [-1.237676922703821, 48.63322436422426], [-1.237472667479687, 48.63353671170965], [-1.237094556394645, 48.63388820747591], [-1.236911313125286, 48.63392533424069], [-1.236246444870435, 48.63400563311056], [-1.236245609593007, 48.63400494507833], [-1.236215576236845, 48.63398327587838], [-1.236183468996839, 48.63396295501047], [-1.236149425360789, 48.63394406948977], [-1.236113591107744, 48.63392670018537], [-1.23607611968416, 48.63391092147371], [-1.236037171546125, 48.63389680092023], [-1.23599691347277, 48.6338843989897], [-1.235955517852179, 48.63387376878802], [-1.235913161943079, 48.6338649558341], [-1.235870027115449, 48.63385799786538], [-1.23582629807512, 48.63385292467623], [-1.235782162071528, 48.63384975799022], [-1.23578077780075, 48.63384971908388], [-1.235777738471822, 48.63384824586673], [-1.235740267211987, 48.63383246704512], [-1.235701319228928, 48.63381834637733], [-1.235661061301137, 48.63380594432874], [-1.235619665816017, 48.6337953140056], [-1.235577310031777, 48.63378650092741], [-1.235534175317876, 48.63377954283219], [-1.235490446379566, 48.63377446951478], [-1.235446310465922, 48.63377130269929], [-1.235401956568807, 48.63377005594631], [-1.235357574613256, 48.63377073459429], [-1.235313354644629, 48.63377333573739], [-1.235269486014621, 48.63377784823724], [-1.235226156570608, 48.63378425277134], [-1.23521032131702, 48.63378709247178], [-1.233894549664947, 48.63403439206028], [-1.23315404570048, 48.63412373507685], [-1.232562001427273, 48.63399751073283], [-1.232051975438031, 48.63387721185757], [-1.232048817602198, 48.63387647283109], [-1.232006462374993, 48.63386765843244], [-1.231963328085333, 48.63386069899241], [-1.231957276732933, 48.633859996738], [-1.231930174601834, 48.63353808526532], [-1.231926252217297, 48.63350877549596], [-1.231919446116474, 48.63347969851757], [-1.231909785448808, 48.63345097884169], [-1.231897311587544, 48.63342273944974], [-1.231882077951731, 48.63339510126608], [-1.231864149778266, 48.63336818264084], [-1.231843603841634, 48.63334209884216], [-1.231820528125556, 48.63331696156357], [-1.231795021446227, 48.63329287844544], [-1.231767193028877, 48.6332699526136], [-1.231737162040081, 48.63324828223844], [-1.231705057077672, 48.63322796011413], [-1.23167101561982, 48.63320907326148], [-1.231635183436119, 48.63319170255517], [-1.231597713964274, 48.63317592237765], [-1.231558767651959, 48.63316180030062], [-1.231518511270531, 48.63314939679547], [-1.231496805847832, 48.63314382188906], [-1.231486032512748, 48.63313014453757], [-1.231462957072489, 48.63310500718664], [-1.231437450671757, 48.63308092398853], [-1.231409622534503, 48.63305799806957], [-1.231379591826203, 48.63303632760028], [-1.231347487143431, 48.63301600537552], [-1.231313445963196, 48.63299711841633], [-1.231277614053876, 48.6329797475979], [-1.231240144851995, 48.63296396730323], [-1.231201198804088, 48.63294984510442], [-1.231160942680354, 48.63293744147342], [-1.23113923738871, 48.63293186649918], [-1.231128464196192, 48.63291818911399], [-1.231105389031793, 48.63289305169069], [-1.231079882909618, 48.63286896841256], [-1.23105205505252, 48.63284604240643], [-1.231022024624675, 48.63282437184312], [-1.230989920221579, 48.63280404951786], [-1.230955879318922, 48.63278516245215], [-1.230920047683983, 48.63276779152165], [-1.230882578752066, 48.63275201110976], [-1.230843632968568, 48.63273788878917], [-1.230803377102547, 48.63272548503234], [-1.230761983532636, 48.6327148529528], [-1.230719629508708, 48.63270603807766], [-1.230676496392809, 48.6326990781525], [-1.230632768883335, 48.63269400298014], [-1.23059694870681, 48.63269143123971], [-1.230441495278321, 48.63199628286641], [-1.230424331893147, 48.63179234072216], [-1.23042041052178, 48.63176303089803], [-1.230413605527212, 48.63173395382696], [-1.230403946054131, 48.63170523402095], [-1.230391473470724, 48.6316769944619], [-1.230376241190507, 48.63164935607496], [-1.23035831444454, 48.63162243721102], [-1.230337770001293, 48.63159635313936], [-1.230314695838013, 48.6315712155547], [-1.23028919076426, 48.63154713209848], [-1.230261363998408, 48.63152420589837], [-1.230231334699961, 48.63150253512596], [-1.230199231459515, 48.63148221257735], [-1.230165191747825, 48.63146332527507], [-1.230129361327095, 48.63144595409574], [-1.230091893627392, 48.63143017342393], [-1.230052949088838, 48.63141605083327], [-1.230012694475196, 48.63140364679747], [-1.229990989972341, 48.63139807160513], [-1.22998021742031, 48.63138439411059], [-1.229957143532849, 48.63135925645355], [-1.229931638737674, 48.63133517291742], [-1.229903812251938, 48.63131224663012], [-1.229873783233946, 48.63129057576366], [-1.229841680273116, 48.63127025311457], [-1.229807640839025, 48.63125136570578], [-1.229771810692655, 48.63123399441437], [-1.229734343262916, 48.63121821362534], [-1.229695398988731, 48.63120409091294], [-1.229655144632802, 48.63119168675132], [-1.229613752567167, 48.63118105425583], [-1.229571400035385, 48.63117223895519], [-1.229528268393008, 48.63116527859694], [-1.229484542332215, 48.63116020298573], [-1.229440409089655, 48.63115703385537], [-1.229439214052206, 48.63115700019953], [-1.22942707785298, 48.63114377824867], [-1.229401573420714, 48.63111969459419], [-1.22937374729563, 48.63109676817768], [-1.229343718634632, 48.63107509717201], [-1.229311616025262, 48.63105477437409], [-1.229277576935854, 48.63103588680745], [-1.229241747125995, 48.63101851535002], [-1.229204280022835, 48.6310027343874], [-1.229165336064177, 48.63098861149454], [-1.229125082011287, 48.63097620714648], [-1.22908369023488, 48.63096557445927], [-1.229041337977359, 48.6309567589625], [-1.228998206592995, 48.63094979840453], [-1.22895448077287, 48.63094472259089], [-1.228910347752672, 48.63094155325624], [-1.228865996511872, 48.63094030397193], [-1.228821616964135, 48.63094098008737], [-1.22877739914451, 48.63094357870749], [-1.228733532395496, 48.63094808870478], [-1.228707874335919, 48.6309516413094], [-1.228512119958851, 48.63098137250266], [-1.22849340447357, 48.63097835210317], [-1.228449678679604, 48.63097327609675], [-1.22840554566614, 48.63097010656764], [-1.22836119441269, 48.63096885708784], [-1.228316814832999, 48.63096953300768], [-1.228272596962194, 48.63097213143287], [-1.228228730143057, 48.63097664123684], [-1.228185402215112, 48.63098304310839], [-1.228142798710648, 48.6309913096345], [-1.228101102059975, 48.63100140541751], [-1.228060490810952, 48.63101328722681], [-1.228034323160805, 48.63102209863924], [-1.227877551695296, 48.6310777482482], [-1.227761997949584, 48.63109529768083], [-1.227744328066027, 48.63109814699282], [-1.227701724391659, 48.63110641335477], [-1.227660027557114, 48.63111650897712], [-1.227619416110948, 48.63112839062993], [-1.227580063954175, 48.63114200743538], [-1.227542139595701, 48.6311573010856], [-1.227505805431244, 48.63117420609236], [-1.227471217047447, 48.63119265006731], [-1.227438522556132, 48.63121255403222], [-1.227407861959671, 48.63123383275696], [-1.227379366551438, 48.63125639512434], [-1.227353158354425, 48.63128014452063], [-1.227329349597399, 48.63130497924878], [-1.227308042235384, 48.63133079296423], [-1.227289327512493, 48.63135747513015], [-1.227273285571378, 48.6313849114905], [-1.227259985109805, 48.63141298455987], [-1.227249483086514, 48.63144157412607], [-1.227241824477467, 48.6314705577648], [-1.227237042082547, 48.63149981136439], [-1.227235156385889, 48.63152920965671], [-1.227236175467228, 48.63155862675394], [-1.227240094967932, 48.63158793668746], [-1.227246898108982, 48.6316170139473], [-1.227256555763239, 48.6316457340197], [-1.227258296056129, 48.63164967487834], [-1.227259324034611, 48.63165406854397], [-1.227268981703076, 48.63168278861529], [-1.227281452535582, 48.63171102851431], [-1.227296683134644, 48.63173866731276], [-1.227314608284169, 48.63176558665568], [-1.227335151229394, 48.63179167126935], [-1.227357082300413, 48.63181564867257], [-1.227548791239317, 48.63201121792784], [-1.227391061830963, 48.6322196986827], [-1.227373286830011, 48.63224514316323], [-1.227357244651586, 48.63227257953389], [-1.227343944002224, 48.6323006526115], [-1.227333441841463, 48.63232924218373], [-1.227325783145545, 48.63235822582646], [-1.227321000715114, 48.63238747942792], [-1.227319115034222, 48.63241687771996], [-1.227320134182628, 48.63244629481484], [-1.227324053801377, 48.63247560474384], [-1.227330857110953, 48.63250468199708], [-1.227340514983495, 48.63253340206082], [-1.227352986067081, 48.6325616419506], [-1.227368216962785, 48.63258928073794], [-1.227386142453557, 48.63261620006834], [-1.227388847088153, 48.63261963424117], [-1.227357126718063, 48.63259955300573], [-1.227323087317225, 48.63258066486013], [-1.227287257082146, 48.63256329279287], [-1.227249789441736, 48.63254751119245], [-1.227210844836095, 48.63253338763635], [-1.227170590029347, 48.63252098260251], [-1.227129197395267, 48.63251034920994], [-1.227086844179812, 48.63250153299123], [-1.227043711741751, 48.63249457169793], [-1.226999984776422, 48.63248949513847], [-1.226955850524489, 48.63248632505108], [-1.226943893341566, 48.63248579811571], [-1.225458866776188, 48.63242907296082], [-1.225426471463156, 48.6324283494351], [-1.225382090556846, 48.63242902421764], [-1.225337871252008, 48.63243162150959], [-1.225294002897559, 48.63243613018901], [-1.225250673339557, 48.63244253094977], [-1.225208068117327, 48.63245079638347], [-1.225166369668473, 48.63246089109706], [-1.225125756548486, 48.63247277186459], [-1.225086402665574, 48.63248638781212], [-1.225048476535997, 48.6325016806353], [-1.225012140563027, 48.63251858484948], [-1.225003927218042, 48.63252274341841], [-1.224042640500076, 48.63301718282746], [-1.224016263091179, 48.63303146725698], [-1.223983566038494, 48.63305137023334], [-1.223952902860477, 48.63307264803065], [-1.223924404861916, 48.63309520953592], [-1.223898194076414, 48.63311895813876], [-1.223874382744148, 48.63314379214577], [-1.223853072831114, 48.63316960521545], [-1.223834355592375, 48.63319628681365], [-1.223818311181115, 48.63322372268696], [-1.223805008305954, 48.63325179535187], [-1.22379450393594, 48.63328038459788], [-1.223786843056849, 48.63330936800221], [-1.223782058478555, 48.63333862145406], [-1.223780170694406, 48.6333680196861], [-1.223781187793152, 48.63339743681064], [-1.223785105424591, 48.63342674685899], [-1.223791906817699, 48.63345582432071], [-1.223801562852851, 48.63348454468108], [-1.223814032185917, 48.63351278495449], [-1.223829261425726, 48.63354042421088], [-1.223847185362041, 48.63356734409341], [-1.223867727245356, 48.63359342932602], [-1.22389079911513, 48.63361856820627], [-1.223911513806433, 48.63363837935184], [-1.225122410665316, 48.63473257587635], [-1.225127199242191, 48.63473684955772], [-1.225155025445353, 48.63475977700062], [-1.225185054501394, 48.63478144909955], [-1.225217157821557, 48.63480177304934], [-1.225251197934305, 48.63482066181826], [-1.225287029074, 48.63483803452], [-1.225324497804279, 48.63485381676028], [-1.225363443676426, 48.63486794095568], [-1.225403699915368, 48.63488034662288], [-1.225445094134441, 48.63489098063746], [-1.225487449073377, 48.63489979746188], [-1.225530583357961, 48.63490675934024], [-1.225574312275688, 48.63491183645984], [-1.225618448568069, 48.63491500707922], [-1.225662803231671, 48.63491625762084], [-1.225707186328009, 48.63491558272958], [-1.225751407796736, 48.63491298529551], [-1.22579527826965, 48.63490847644154], [-1.225838609881889, 48.63490207547574], [-1.225854447849746, 48.63489923672659], [-1.227134543552444, 48.63465874132552], [-1.227161312512812, 48.63465331410852], [-1.227203012378313, 48.63464321866995], [-1.227243626759551, 48.63463133716745], [-1.227282981736408, 48.63461772048059], [-1.227320908781793, 48.63460242691949], [-1.22735724548392, 48.63458552197506], [-1.227391836241678, 48.63456707803847], [-1.227424532931214, 48.63454717409103], [-1.227455195539626, 48.63452589536628], [-1.227483692765305, 48.63450333298465], [-1.227509902579644, 48.63447958356325], [-1.22753371274968, 48.63445474880256], [-1.227555021318809, 48.63442893505022], [-1.227573737043199, 48.63440225284606], [-1.227589779782456, 48.63437481644878], [-1.227594515163484, 48.63436482199867], [-1.227517076522764, 48.634822438216], [-1.227514767018076, 48.6348387702066], [-1.227512881358428, 48.63486816849732], [-1.227513900669883, 48.63489758558593], [-1.22751782059233, 48.63492689550377], [-1.227524624345451, 48.634955972741], [-1.227534282798988, 48.63498469278398], [-1.227546754598881, 48.63501293264822], [-1.227561986343027, 48.63504057140567], [-1.227579912810877, 48.63506749070154], [-1.227600457241753, 48.63509357526213], [-1.227601512861045, 48.63509481034333], [-1.227750551592062, 48.63526854589221], [-1.227750291849594, 48.63526886054782], [-1.227731575896487, 48.63529554277936], [-1.227715532940983, 48.63532297919494], [-1.227702231685186, 48.63535105230866], [-1.227691729091192, 48.6353796419083], [-1.22768407013746, 48.63540862556941], [-1.227679287625394, 48.63543787918019], [-1.227677402039527, 48.63546727747247], [-1.227678421459195, 48.63549669455851], [-1.227732330474167, 48.63613762683285], [-1.227693837444064, 48.63642390638831], [-1.227312861670575, 48.6365259708366], [-1.227311750526698, 48.6365262668062], [-1.227271883859251, 48.63653794795986], [-1.227232527377558, 48.6365515646412], [-1.22719459883607, 48.63656685817112], [-1.227158260648391, 48.63658376306181], [-1.227123668418491, 48.63660220692552], [-1.227090970274598, 48.63662211078441], [-1.227060306234591, 48.63664338940883], [-1.227031807606973, 48.63666595168208], [-1.227005596428166, 48.63668970099072], [-1.226981784939825, 48.63671453563813], [-1.226960475108645, 48.63674034928012], [-1.226941758189351, 48.63676703138005], [-1.226925714333966, 48.63679446768236], [-1.226912412248393, 48.63682254070179], [-1.226901908898583, 48.63685113022634], [-1.226894249265775, 48.63688011383194], [-1.226892784748568, 48.63688907084362], [-1.226793799890937, 48.63673965356671], [-1.226602478560759, 48.63640033415346], [-1.226596268424254, 48.63638973097773], [-1.226578342011719, 48.63636281153022], [-1.226557797592474, 48.63633672678837], [-1.226534723143822, 48.63631158844968], [-1.226509217476484, 48.636287504159], [-1.226481389811371, 48.63626457704731], [-1.226451359311824, 48.63624290529032], [-1.226419254573616, 48.63622258168832], [-1.226385213073917, 48.63620369326825], [-1.226349380582543, 48.63618632091158], [-1.226311910538496, 48.63617053900788], [-1.226290164237476, 48.63616238277638], [-1.226044976001621, 48.63607433206275], [-1.226027775215206, 48.63606836438567], [-1.225987517871887, 48.63605595893881], [-1.225946122579753, 48.63604532512102], [-1.225939392591506, 48.63604378836753], [-1.224736027807147, 48.63577367158315], [-1.224724173468297, 48.63577101061219], [-1.224688547877939, 48.63576373034152], [-1.224645412975209, 48.63575676814638], [-1.224601683416895, 48.63575169067242], [-1.22455754645467, 48.63574851966145], [-1.224513191084873, 48.63574726869188], [-1.224468807238914, 48.63574794312039], [-1.224424584970167, 48.63575054005918], [-1.224380713640219, 48.63575504838784], [-1.224337381107976, 48.63576144880177], [-1.224294772925394, 48.63576971389394], [-1.224253071542827, 48.63577980827295], [-1.224212455528395, 48.63579168871414], [-1.224173098802377, 48.63580530434492], [-1.224135169893543, 48.63582059686253], [-1.224098831216955, 48.63583750078335], [-1.224064238378781, 48.63585594372397], [-1.224031539509489, 48.63587584671051], [-1.224000874630613, 48.63589712451683], [-1.223972375053815, 48.63591968602989], [-1.223946162819591, 48.63594343463955], [-1.223922350174376, 48.63596826865209], [-1.223901039089699, 48.63599408172609], [-1.2238823208256, 48.63602076332734], [-1.22386627553994, 48.63604819920247], [-1.223852971944774, 48.63607627186782], [-1.223842467012271, 48.63610486111319], [-1.223834805730841, 48.63613384451555], [-1.22383002091184, 48.63616309796417], [-1.223828246389811, 48.63618757990593], [-1.223822633344442, 48.63636687659398], [-1.223746480589401, 48.63716476982863], [-1.223745159899123, 48.63718874514668], [-1.223746177054643, 48.63721816226438], [-1.223783905420495, 48.63766712517483], [-1.223821634459688, 48.63811608805991], [-1.223825552482074, 48.63814539809805], [-1.223832354536454, 48.63817447554862], [-1.223842011500302, 48.63820319589696], [-1.223854482025475, 48.63823143615745], [-1.223869712715804, 48.63825907540014], [-1.223887638354777, 48.63828599526828], [-1.223908182185594, 48.63831208048579], [-1.223931256239381, 48.63833721935033], [-1.223956761711715, 48.63836130421192], [-1.22398458938608, 48.63838423193384], [-1.224014620101175, 48.6384059043346], [-1.224046725261185, 48.63842622860774], [-1.224080767386704, 48.63844511772014], [-1.224116600703438, 48.63846249078397], [-1.224154071765791, 48.63847827340349], [-1.224193020114917, 48.63849239799363], [-1.22423327896525, 48.63850480406928], [-1.224274675918915, 48.63851543850437], [-1.224317033703894, 48.63852425575958], [-1.224360170933803, 48.6385312180771], [-1.224403902883584, 48.63853629564236], [-1.224448042281701, 48.63853946671203], [-1.224480294886827, 48.63854037631263], [-1.224552526703036, 48.63861443442687], [-1.224554524189732, 48.63861647033419], [-1.224580030102034, 48.63864055505657], [-1.224607858214848, 48.63866348262673], [-1.224637889364975, 48.63868515486363], [-1.224669994955101, 48.6387054789617], [-1.224704037503561, 48.63872436788861], [-1.224739871234244, 48.63874174075703], [-1.224777342700174, 48.6387575231724], [-1.224816291440447, 48.63877164755035], [-1.224856550667939, 48.6387840534067], [-1.224897947982955, 48.63879468761637], [-1.224940306112379, 48.63880350464095], [-1.224983443667986, 48.63881046672363], [-1.225027175923363, 48.63881554405082], [-1.225071315605733, 48.63881871488027], [-1.225115673697153, 48.6388199656334], [-1.22516006024449, 48.63881929095437], [-1.22520428517253, 48.63881669373217], [-1.225248159098322, 48.63881218508892], [-1.225291494142196, 48.63880578433167], [-1.225334104732192, 48.6387975188704], [-1.225375808399072, 48.63878742409974], [-1.22539657116288, 48.63878161407108], [-1.225483925456898, 48.63875602858339], [-1.225677004524213, 48.63878312436405], [-1.225678682424791, 48.63878335836315], [-1.225722414726751, 48.638788435425], [-1.225766554429164, 48.63879160598646], [-1.225810912513989, 48.63879285647045], [-1.225855299028034, 48.6387921815219], [-1.225899523896381, 48.63878958403137], [-1.225943397736242, 48.63878507512177], [-1.225986732668305, 48.63877867410157], [-1.226029343121091, 48.63877040838154], [-1.226071046626041, 48.63876031335781], [-1.226111664598126, 48.63874843225978], [-1.226151023101663, 48.63873481596541], [-1.226188953594689, 48.63871952278322], [-1.226225293650574, 48.63870261820231], [-1.226259887653916, 48.63868417461243], [-1.226292587466733, 48.63866427099347], [-1.226323253063075, 48.63864299257732], [-1.226351753128263, 48.63862043048324], [-1.226377965621539, 48.6385966813272], [-1.226401778298689, 48.63857184680828], [-1.226423089192219, 48.63854603327329], [-1.226439066418501, 48.63852355825984], [-1.22649795901592, 48.63843440616933], [-1.226519531341486, 48.63842127544898], [-1.226550196693643, 48.6383999969718], [-1.226578696519423, 48.63837743482093], [-1.226604908779085, 48.63835368561253], [-1.226628721229217, 48.63832885104614], [-1.226650031903382, 48.63830303746849], [-1.226668749548796, 48.63827635541888], [-1.22668479401685, 48.6382489191551], [-1.22669809660644, 48.63822084616477], [-1.226708600358109, 48.63819225666141], [-1.226716260297511, 48.63816327307067], [-1.226720728438628, 48.63813668546031], [-1.226726685155748, 48.63808815539984], [-1.226795222842614, 48.63798440049122], [-1.226797963413364, 48.63798019348386], [-1.22681400771649, 48.63795275720158], [-1.22682731015566, 48.63792468419558], [-1.226837813772117, 48.63789609467982], [-1.226840576677402, 48.63788685497583], [-1.226961736604473, 48.63745817011709], [-1.226964166315205, 48.63745522693299], [-1.226982883478665, 48.63742854483058], [-1.226998927505032, 48.6374011085214], [-1.227012229695301, 48.63737303549294], [-1.227022733091394, 48.63734444595924], [-1.227030392720845, 48.63731546234597], [-1.227035175788587, 48.63728620876577], [-1.227035304186619, 48.63728420737728], [-1.227384293148928, 48.63790313071714], [-1.227390503215808, 48.63791373309995], [-1.227408430615473, 48.63794065241768], [-1.227428976130622, 48.63796673700426], [-1.22745205178515, 48.63799187516009], [-1.227463986663375, 48.63800314425587], [-1.227477066491416, 48.63802526807825], [-1.227479444512056, 48.63802923483888], [-1.22749737200047, 48.63805615414247], [-1.227517917608885, 48.63808223871293], [-1.227540993360834, 48.63810737685071], [-1.227566500444599, 48.63813146090881], [-1.22759432963675, 48.63815438775411], [-1.22762436176949, 48.63817605920878], [-1.227656468240972, 48.63819638247045], [-1.227690511566171, 48.63821527051031], [-1.227726345965599, 48.63823264244512], [-1.227763817989023, 48.63824842388404], [-1.227785567754891, 48.63825658066932], [-1.22794160963283, 48.63831261168004], [-1.227953094472409, 48.63833344978819], [-1.227971022322634, 48.63836036901712], [-1.227991568300832, 48.63838645350213], [-1.228014644428961, 48.63841159154394], [-1.228040151893701, 48.63843567549613], [-1.228067981469965, 48.63845860222592], [-1.228098013988297, 48.63848027355598], [-1.22813012084523, 48.63850059668448], [-1.228164164554082, 48.6385194845832], [-1.228199999333706, 48.63853685636952], [-1.22823747173229, 48.63855263765317], [-1.228276421285273, 48.6385667608547], [-1.228281481440208, 48.63862691027563], [-1.228285402100484, 48.63865622016019], [-1.228292206801367, 48.63868529734489], [-1.228301866409081, 48.63871401731625], [-1.228314339564149, 48.6387422570902], [-1.228329572859075, 48.63876989573893], [-1.228347501066274, 48.63879681490819], [-1.228368047417894, 48.63882289932489], [-1.228391123934272, 48.6388480372902], [-1.228416631800511, 48.63887212115786], [-1.228444461789744, 48.63889504779553], [-1.228474494730758, 48.63891671902626], [-1.228506602018287, 48.63893704204869], [-1.228540646163769, 48.63895592983494], [-1.22857648138424, 48.63897330150301], [-1.228611407632854, 48.63898801020191], [-1.228627149213593, 48.63901164581701], [-1.228647695797946, 48.6390377301832], [-1.228670772552594, 48.63906286809179], [-1.228696280661579, 48.63908695189686], [-1.228724110897055, 48.63910987846622], [-1.22875414408679, 48.63913154962337], [-1.228786251624379, 48.6391518725671], [-1.228820296020221, 48.63917076027002], [-1.228856131490252, 48.63918813185036], [-1.228893604579704, 48.63920391291869], [-1.228932554821056, 48.63921803589652], [-1.22897281542063, 48.63923044030577], [-1.229014213973037, 48.63924107302752], [-1.229056573199443, 48.63924988852965], [-1.229099711707309, 48.63925684906196], [-1.229143444766043, 48.6392619248175], [-1.229187585099372, 48.63926509406061], [-1.229231943686615, 48.63926634321974], [-1.229276330572482, 48.63926566694566], [-1.229288542752349, 48.6392649493199], [-1.229317734538138, 48.63927724270533], [-1.22935668495533, 48.63929136553892], [-1.229396945718033, 48.63930376979901], [-1.229438344420439, 48.63931440236744], [-1.229480703782997, 48.63932321771277], [-1.229523842412426, 48.63933017808521], [-1.229567575577655, 48.63933525367888], [-1.22961171600203, 48.63933842275851], [-1.229656074664454, 48.63933967175343], [-1.229700461609293, 48.63933899531492], [-1.229744686759715, 48.63933639633984], [-1.229788560731751, 48.63933188595762], [-1.229831895645568, 48.63932548348294], [-1.229874505929669, 48.63931721633294], [-1.229916209116253, 48.63930711990956], [-1.229956826621672, 48.63929523744851], [-1.229996184512339, 48.63928161983347], [-1.23003411424875, 48.63926632537853], [-1.230070453407592, 48.63924941957841], [-1.230105046377221, 48.63923097482788], [-1.230137745024331, 48.63921107011188], [-1.230168409327568, 48.63918979066716], [-1.230196907978147, 48.63916722761725], [-1.230223118941347, 48.63914347758207], [-1.230235294550568, 48.63913122712646], [-1.230275551945406, 48.63908924724461], [-1.230357679494347, 48.6390738162431], [-1.230745047935611, 48.63911651277509], [-1.230761262711753, 48.63911816671247], [-1.23080540302086, 48.6391213353322], [-1.230849761521513, 48.63912258386484], [-1.230894148258779, 48.63912190696387], [-1.230924098748687, 48.63912014654605], [-1.230957293597716, 48.63912252939781], [-1.231001652103205, 48.63912377787158], [-1.231046038839452, 48.63912310091176], [-1.231090263730581, 48.63912050141715], [-1.231134137393724, 48.63911599051949], [-1.231177471950327, 48.63910958753563], [-1.231220081830491, 48.63910131988498], [-1.231261784568114, 48.63909122297159], [-1.231302401581407, 48.63907934003327], [-1.231317640444678, 48.63907432398319], [-1.231913777969562, 48.63887188069993], [-1.232009409990504, 48.63886026999089], [-1.232013053365226, 48.63885982082695], [-1.232056387589315, 48.63885341751051], [-1.232098997108129, 48.63884514953269], [-1.232140699456883, 48.63883505229928], [-1.232181316055947, 48.63882316904905], [-1.232220672975211, 48.63880955066924], [-1.232223364598915, 48.63880853832542], [-1.233028372921117, 48.63850415198093], [-1.233434115233685, 48.63861960544297], [-1.233436085533448, 48.63862016364401], [-1.233477484526842, 48.63863079475304], [-1.233519844021394, 48.63863960860504], [-1.233562982623404, 48.63864656745676], [-1.233606715601843, 48.63865164150845], [-1.233650855680855, 48.63865480903181], [-1.23369521384078, 48.63865605646257], [-1.233730234280528, 48.63865552152436], [-1.233867012589347, 48.63868777819569], [-1.233870171251938, 48.63868851728932], [-1.233912530863996, 48.638697330996], [-1.233955669569704, 48.63870428969973], [-1.233999402637911, 48.63870936360155], [-1.234043542792283, 48.63871253097359], [-1.234087901012819, 48.63871377825224], [-1.234132287345828, 48.63871310009647], [-1.234176511717073, 48.6387104994102], [-1.234220384745923, 48.63870598733037], [-1.234263718556603, 48.6386995831788], [-1.234306327582351, 48.63869131437988], [-1.234348029360721, 48.63868121634267], [-1.234388645314122, 48.63866933230967], [-1.2344280015156, 48.63865571317136], [-1.234465929432866, 48.63864041724833], [-1.234502266650421, 48.63862351004157], [-1.234536857564934, 48.63860506395196], [-1.234569554051912, 48.63858515797009], [-1.234600216099233, 48.63856387733812], [-1.234628712407786, 48.63854131318473], [-1.23465492095286, 48.63851756213456], [-1.234678729506928, 48.63849272589507], [-1.234700036120282, 48.63846691082018], [-1.234718749557482, 48.63844022745554], [-1.234734789687926, 48.63841279006466], [-1.234748087829194, 48.63838471613984], [-1.234758587040754, 48.63835612589878], [-1.23476374750441, 48.63833788878429], [-1.234781055874867, 48.63826889148497], [-1.234825333350333, 48.63824925925541], [-1.234855874891729, 48.63823489313523], [-1.234890465409499, 48.63821644693839], [-1.234923161503931, 48.63819654085516], [-1.234953823164862, 48.63817526012793], [-1.234982319094817, 48.63815269588599], [-1.235008527270447, 48.63812894475436], [-1.235032335466062, 48.63810410844068], [-1.235053641733392, 48.63807829329943], [-1.235072354838538, 48.63805160987634], [-1.235088394652275, 48.63802417243531], [-1.235101692493523, 48.63799609846871], [-1.235112191423049, 48.6379675081945], [-1.235119846487232, 48.63793852404157], [-1.235124624910868, 48.63790927012492], [-1.235126506236843, 48.63787987171477], [-1.235125482414197, 48.63785045469971], [-1.235121557832097, 48.6378211450478], [-1.235114749301318, 48.6377920682673], [-1.235105085981734, 48.63776334886888], [-1.23509260925794, 48.63773510983269], [-1.235077372561255, 48.63770747208169], [-1.235059441141686, 48.63768055396387], [-1.235038891787588, 48.63765447074565], [-1.235015812497349, 48.63762933411778], [-1.234990302102452, 48.63760525171783], [-1.234962469843994, 48.63758232666865], [-1.234932434905198, 48.63756065713729], [-1.23490102423879, 48.63754077788052], [-1.234893224016722, 48.63752312309561], [-1.235777252828516, 48.63768453375402], [-1.235789429324028, 48.63769612902739], [-1.235774503930147, 48.63770408861878], [-1.23574180849247, 48.63772399494572], [-1.235711147439813, 48.63774527588441], [-1.235682652067571, 48.63776784030826], [-1.235656444398197, 48.63779159159476], [-1.235632636658517, 48.63781642803858], [-1.23561133079914, 48.637842243288], [-1.235592618057704, 48.63786892679948], [-1.235576578568407, 48.63789636431146], [-1.235572115254369, 48.63790509566674], [-1.235567023585023, 48.63791540271212], [-1.235563809798785, 48.63791587771276], [-1.235521201636367, 48.63792414697983], [-1.235479500720946, 48.63793424544469], [-1.235438885618625, 48.63794612986502], [-1.235399530245844, 48.63795974935124], [-1.23536160312548, 48.63797504558408], [-1.235325266665019, 48.63799195306417], [-1.235290676461098, 48.63801039939256], [-1.235257980632913, 48.63803030558105], [-1.23522731918897, 48.6380515863898], [-1.23519882342626, 48.63807415069284], [-1.235172615368916, 48.63809790186811], [-1.235148807245483, 48.63812273821089], [-1.235127501008149, 48.63814855336982], [-1.235108787896189, 48.63817523680176], [-1.235092748045421, 48.63820267424544], [-1.235079450144601, 48.63823074821055], [-1.235068951141534, 48.63825933848126], [-1.235061295999194, 48.63828832263018], [-1.235056517502755, 48.63831757654347], [-1.235054636119506, 48.63834697495166], [-1.235055659910838, 48.6383763919664], [-1.235088832923035, 48.63877008171804], [-1.234987649387345, 48.63912029141054], [-1.2348654936987, 48.63930886523333], [-1.234864651866416, 48.63931017045802], [-1.234848611520685, 48.63933760786549], [-1.234835313183673, 48.6393656818003], [-1.234824813804607, 48.63939427204791], [-1.234819609602997, 48.63941268338373], [-1.234707751228794, 48.63985966338986], [-1.234694910960805, 48.63988357917633], [-1.234693796987492, 48.63988567033168], [-1.234680498419145, 48.63991374424752], [-1.23466999883826, 48.63994233447851], [-1.234662343209929, 48.63997131859756], [-1.23466201531238, 48.63997287390366], [-1.234576005964896, 48.64038609998833], [-1.234466708700857, 48.64082282886767], [-1.234229459115739, 48.64110912139203], [-1.23392774834699, 48.64112028485159], [-1.23388352184463, 48.64112288544141], [-1.23383964667789, 48.64112739739151], [-1.233796310722106, 48.64113380138161], [-1.23375369954394, 48.64114206998949], [-1.233711995606477, 48.64115216780878], [-1.233671377488887, 48.64116405159989], [-1.233632019120383, 48.64117767047604], [-1.233594089036789, 48.64119296612044], [-1.233557749658223, 48.64120987303626], [-1.23352315659381, 48.64122831882704], [-1.233490457975017, 48.64124822450686], [-1.23345979382228, 48.641269504838], [-1.233431295444203, 48.64129206869662], [-1.233405084876147, 48.64131581946253], [-1.233385023809879, 48.64133674450386], [-1.233291810694193, 48.64135632585925], [-1.233284968022084, 48.64135778978863], [-1.233243263811739, 48.64136788743706], [-1.233202645409257, 48.64137977106183], [-1.233163286745109, 48.64139338977676], [-1.233125356356359, 48.64140868526575], [-1.233089016664484, 48.6414255920326], [-1.233054423279867, 48.64144403768157], [-1.233021724335435, 48.64146394322727], [-1.232991059852941, 48.64148522343267], [-1.23296256114245, 48.64150778717438], [-1.232939843301601, 48.64152837264391], [-1.232905770093087, 48.6415383412192], [-1.232866411224542, 48.64155195983199], [-1.23282848062598, 48.64156725522243], [-1.232792140719796, 48.64158416189493], [-1.232757547117294, 48.64160260745409], [-1.232724847952338, 48.64162251291485], [-1.232694183247642, 48.64164379304055], [-1.232665684314189, 48.64166635670812], [-1.232639473189658, 48.6416901072983], [-1.232615662115786, 48.64171494310876], [-1.232594353057348, 48.64174075779046], [-1.232575637265831, 48.6417674408023], [-1.232559594888185, 48.64179487788483], [-1.232546294624335, 48.64182295154938], [-1.232535793432159, 48.64185154158116], [-1.232528136283784, 48.64188052555398], [-1.232523355973136, 48.64190977935476], [-1.232521472975319, 48.64193917771443], [-1.232522495358577, 48.64196859474496], [-1.232526418750048, 48.64199790447796], [-1.232533226354069, 48.64202698140439], [-1.232542889024413, 48.64205570101184], [-1.232555365388515, 48.64208394031778], [-1.232570602025187, 48.64211157839644], [-1.23257150240266, 48.64211305185468], [-1.232639483296074, 48.64222373880764], [-1.232568092457194, 48.64242020036566], [-1.232563586760158, 48.64243347944651], [-1.232555929539321, 48.64246246342007], [-1.232551149189565, 48.64249171722086], [-1.232549266186191, 48.64252111557989], [-1.232549309183917, 48.64252235271876], [-1.231677373685294, 48.64255459887654], [-1.231661252395271, 48.64254439613962], [-1.231627204649808, 48.6425255092853], [-1.231591365845823, 48.64250813857566], [-1.231553889448998, 48.64249235839326], [-1.231514935936762, 48.64247823630983], [-1.231474672111328, 48.64246583279674], [-1.2314332703853, 48.64245520096648], [-1.231390908043546, 48.64244638634501], [-1.231347766483901, 48.64243942667709], [-1.231333824499354, 48.64243759616586], [-1.22859681853936, 48.64209790886746], [-1.228567024858298, 48.64209466375384], [-1.228540064067538, 48.64209249785306], [-1.227695709011445, 48.64203600078527], [-1.225862438666554, 48.6417610454417], [-1.225851536629021, 48.64175947258002], [-1.225807801731398, 48.64175439556845], [-1.225763659426966, 48.64175122502342], [-1.225729088158458, 48.64175008482845], [-1.22433330294379, 48.64172767199689], [-1.224279425338433, 48.64160667789012], [-1.224273268502172, 48.64159358970842], [-1.224258036580788, 48.64156595052543], [-1.224240109574848, 48.64153903072093], [-1.224219564254243, 48.64151294556842], [-1.224196488599976, 48.64148780676713], [-1.224170981427841, 48.64146372196382], [-1.224143151965187, 48.64144079429174], [-1.224113119383186, 48.64141912192908], [-1.224081012286464, 48.64139879767839], [-1.224046968162125, 48.64137990856972], [-1.224011132791654, 48.64136253548738], [-1.223973659625963, 48.64134675282405], [-1.223934709128676, 48.64133262816197], [-1.223894448089113, 48.64132022198372], [-1.22385304890799, 48.64130958741319], [-1.223811469111065, 48.64130091432517], [-1.222156479578067, 48.64099404131129], [-1.222155699335736, 48.64099389696272], [-1.222112560299373, 48.6409869338161], [-1.222068826450671, 48.64098185537683], [-1.222043396120989, 48.64097979153793], [-1.220371849883664, 48.64086530493125], [-1.2203531389018, 48.64086419651117], [-1.220308779126507, 48.64086294391383], [-1.220264390711243, 48.64086361671297], [-1.220220163728947, 48.64086621202758], [-1.220176287561428, 48.64087071874441], [-1.220132950088237, 48.64087711756557], [-1.220090336882573, 48.64088538109091], [-1.220048630416213, 48.64089547393587], [-1.220008009279119, 48.64090735288225], [-1.219968647413472, 48.64092096706385], [-1.219930713370045, 48.64093625818408], [-1.219894369585883, 48.64095316076542], [-1.219859771689036, 48.64097160243015], [-1.219827067831654, 48.64099150420972], [-1.219796398056554, 48.64101278088339], [-1.219767893696462, 48.64103534134281], [-1.219741676812298, 48.64105908898246], [-1.21971785967042, 48.64108392211261], [-1.219705550591363, 48.64109833442783], [-1.219534554899637, 48.64130743833926], [-1.219182548682463, 48.6414422238142], [-1.219174493145425, 48.64144531110902], [-1.219142569813168, 48.64145832719539], [-1.219106225387099, 48.64147522952608], [-1.21907162684221, 48.64149367095211], [-1.219038922333768, 48.64151357250596], [-1.21900825190701, 48.64153484896788], [-1.218979746897697, 48.64155740923049], [-1.218953529369569, 48.64158115668884], [-1.218929711591499, 48.64160598965437], [-1.218908395557121, 48.64163180178997], [-1.218889672547698, 48.64165848256555], [-1.218873622741334, 48.64168591773112], [-1.21886031486957, 48.64171398980643], [-1.218849805922757, 48.64174257858342], [-1.218842140906555, 48.64177156164117], [-1.218837352648345, 48.64180081487053], [-1.218837083941189, 48.64180326348172], [-1.218825468143625, 48.64191326313439], [-1.218674591238336, 48.64280767988122], [-1.218672314975178, 48.64282379591029], [-1.218670423848862, 48.64285319404242], [-1.218671438151544, 48.64288261119429], [-1.218675353544634, 48.64291192139943], [-1.218682153266719, 48.64294099914676], [-1.218691808205328, 48.64296971992036], [-1.218704277021008, 48.64299796073269], [-1.218719506324846, 48.64302560065156], [-1.218737430906325, 48.6430525213173], [-1.218757974013101, 48.64307860745028], [-1.218781047679498, 48.6431037473444], [-1.218806553102692, 48.6431278333452], [-1.218834381066385, 48.64315076231124], [-1.218864412407918, 48.6431724360554], [-1.2188965185292, 48.64319276176568], [-1.218930561946285, 48.64321165240281], [-1.218966396879346, 48.64322902707227], [-1.219003869876252, 48.64324481137162], [-1.219042820469523, 48.64325893770852], [-1.219076730499886, 48.64326952787894], [-1.219237866560261, 48.6433162909705], [-1.219236098312073, 48.64334459501417], [-1.219237112955423, 48.64337401216013], [-1.219241028716318, 48.64340332234501], [-1.219247828831789, 48.64343240005776], [-1.219257484187664, 48.64346112078276], [-1.219269953442672, 48.64348936153262], [-1.219285183206063, 48.64351700137536], [-1.219303108265299, 48.64354392195173], [-1.2193236518661, 48.64357000798242], [-1.219346726040531, 48.6435951477618], [-1.219372231983689, 48.6436192336359], [-1.219400060477018, 48.64364216246373], [-1.219430092355622, 48.64366383605889], [-1.21946219901901, 48.64368416160997], [-1.21949624298106, 48.6437030520784], [-1.219532078459544, 48.64372042657033], [-1.219569551999915, 48.64373621068414], [-1.219608503132514, 48.64375033682823], [-1.219642420355624, 48.64376092878751], [-1.219658843256384, 48.64376569458698], [-1.219503773319453, 48.643802976356], [-1.219481718636852, 48.64380856835732], [-1.219441095013567, 48.64382044710038], [-1.219401730715366, 48.64383406108459], [-1.219363794303014, 48.64384935201413], [-1.219327448223908, 48.64386625441241], [-1.21929284811571, 48.64388469590233], [-1.219260142140421, 48.64390459751618], [-1.219229470349494, 48.643925874034], [-1.219200964084586, 48.64394843434809], [-1.219174745414851, 48.64397218185334], [-1.219150926613959, 48.64399701486099], [-1.219147542677288, 48.64400085509676], [-1.218860669215962, 48.64433013732353], [-1.218842735976069, 48.64435210921512], [-1.218824011919404, 48.6443787899752], [-1.218807961209363, 48.64440622512671], [-1.218794652581243, 48.64443429718934], [-1.218784143028955, 48.6444628859551], [-1.218776477560335, 48.64449186900326], [-1.218771689005103, 48.64452112222467], [-1.218769797873311, 48.64455052035276], [-1.218770812268299, 48.64457993750043], [-1.218774727851417, 48.64460924769895], [-1.218781527860353, 48.64463832543704], [-1.218791183181456, 48.64466704619905], [-1.218803652473615, 48.64469528699739], [-1.218818882345878, 48.64472292689992], [-1.218836807585271, 48.64474984754707], [-1.218857351436731, 48.64477593365934], [-1.218880425931246, 48.64480107353064], [-1.218905932262593, 48.64482515950662], [-1.218933761210479, 48.64484808844584], [-1.218963793608168, 48.64486976216155], [-1.218995900852711, 48.64489008784172], [-1.219029945455727, 48.64490897844712], [-1.219034657059614, 48.64491140151459], [-1.219746211486155, 48.64527402358199], [-1.219633918738574, 48.6457336972706], [-1.219631910585131, 48.64574246485769], [-1.219627122408216, 48.64577171811239], [-1.219625231729402, 48.64580111625219], [-1.21962624664985, 48.64583053338988], [-1.219630162828671, 48.64585984355665], [-1.219636963501156, 48.64588892124159], [-1.219646619550676, 48.6459176419291], [-1.219659089633003, 48.64594588263197], [-1.219674320353927, 48.6459735224185], [-1.219692246496718, 48.64600044292952], [-1.219712791302474, 48.6460265288862], [-1.219735866798148, 48.64605166858308], [-1.219761374173141, 48.64607575436661], [-1.219789204202761, 48.64609868309616], [-1.219819237715618, 48.64612035658579], [-1.219851346103986, 48.6461406820245], [-1.219885391874589, 48.64615957237414], [-1.219920642336738, 48.64617668099614], [-1.219867410108972, 48.64621657818709], [-1.219841533139485, 48.6462371788115], [-1.219815313579242, 48.64626092645975], [-1.219791494010885, 48.64628575959681], [-1.219770176435739, 48.64631157188476], [-1.219751452141584, 48.64633825279292], [-1.219735401312199, 48.64636568807077], [-1.2197220926833, 48.64639376023744], [-1.219711583248617, 48.64642234908461], [-1.219703918015889, 48.64645133219108], [-1.219699129813354, 48.64648058544739], [-1.219697239149988, 48.64650998358695], [-1.219698254126851, 48.64653940072263], [-1.219702170402834, 48.64656871088557], [-1.21970897121273, 48.64659778856483], [-1.219718627439448, 48.64662650924491], [-1.219731097737942, 48.64665474993861], [-1.219746328713023, 48.64668238971424], [-1.21976425514696, 48.64670931021279], [-1.219784800279575, 48.64673539615528], [-1.219807876136381, 48.64676053583649], [-1.219833383905298, 48.64678462160283], [-1.219861214359899, 48.6468075503138], [-1.219891248326892, 48.64682922378351], [-1.219923357196935, 48.64684954920109], [-1.219957403474332, 48.64686843952843], [-1.219993241366986, 48.64688581387248], [-1.220030717410074, 48.6469015978321], [-1.22006967112313, 48.64691572381644], [-1.220109935697704, 48.64692813133437], [-1.220151338711282, 48.64693876725376], [-1.220193702866226, 48.64694758602883], [-1.220236846748573, 48.64695454989531], [-1.220280585604849, 48.64695962903198], [-1.220324732133942, 48.64696280168876], [-1.220338187159535, 48.64696318157511], [-1.220338499776288, 48.64697223874066], [-1.220342416459006, 48.64700154888085], [-1.220349217697538, 48.64703062652127], [-1.220358874372838, 48.64705934714651], [-1.220371345138058, 48.64708758776975], [-1.220386576595993, 48.64711522745944], [-1.220391296386731, 48.64712231504741], [-1.220391808062293, 48.64713713886222], [-1.220395724788916, 48.64716644900022], [-1.220402526080526, 48.64719552663719], [-1.220412182817976, 48.6472242472576], [-1.220424653654, 48.64725248787472], [-1.220439885191131, 48.64728012755703], [-1.220457812209241, 48.6473070479459], [-1.220478357945614, 48.64733313376305], [-1.220501434423262, 48.6473582733035], [-1.220526942827311, 48.64738235891448], [-1.220554773928735, 48.64740528745599], [-1.220584808551544, 48.64742696074303], [-1.220616918083237, 48.64744728596542], [-1.220650965025603, 48.64746617608589], [-1.220686803583784, 48.6474835502123], [-1.220724280289682, 48.64749933394442], [-1.220763234660391, 48.64751345969231], [-1.220803499884446, 48.64752586696609], [-1.220844903536753, 48.64753650263435], [-1.220887268316577, 48.6475453211526], [-1.220930412807597, 48.64755228475764], [-1.220963727391708, 48.64755633009638], [-1.221132773181175, 48.64757397989769], [-1.221765400803443, 48.64789634327208], [-1.222037959763784, 48.64812043560353], [-1.222024001067545, 48.6481245172856], [-1.221984634100179, 48.64813813215348], [-1.221946695227076, 48.64815342393388], [-1.221910346906023, 48.64817032714679], [-1.221875744784375, 48.6481887694115], [-1.221843037032508, 48.64820867175711], [-1.221812363709827, 48.64822994896035], [-1.221783856164243, 48.64825250991058], [-1.221757636470406, 48.6482762580002], [-1.221733816906645, 48.64830109153762], [-1.221712499474086, 48.64832690418352], [-1.221693775460127, 48.64835358540552], [-1.221677725046908, 48.64838102095183], [-1.221664416968769, 48.64840909334036], [-1.22165390821704, 48.64843768236175], [-1.221646243796182, 48.64846666559421], [-1.221641456531357, 48.64849591892777], [-1.221639566927384, 48.64852531709538], [-1.221640583080785, 48.6485547342098], [-1.221644500645398, 48.6485840443024], [-1.221651302850537, 48.6486131218624], [-1.221660960573099, 48.64864184237484], [-1.221673432461761, 48.64867008285329], [-1.221676002610075, 48.64867516450182], [-1.221814966443455, 48.64894457989058], [-1.221827629077696, 48.64896713773993], [-1.221845557439711, 48.64899405790859], [-1.221866104584797, 48.64902014347389], [-1.221889182529852, 48.64904528273193], [-1.221914692453905, 48.64906936803116], [-1.221942525121256, 48.64909229623298], [-1.221972561349241, 48.64911396915376], [-1.222004672518524, 48.64913429398486], [-1.222038721123899, 48.64915318369075], [-1.222074561363316, 48.64917055738106], [-1.22211203976152, 48.64918634065743], [-1.222150995828353, 48.64920046593186], [-1.222191262745094, 48.64921287271642], [-1.222232668079355, 48.64922350788202], [-1.222275034523248, 48.64923232588601], [-1.222318180653337, 48.64923928896764], [-1.222361921706356, 48.64924436730895], [-1.22240607037184, 48.64924753916317], [-1.222450437593436, 48.64924879094757], [-1.222494833378784, 48.64924811730175], [-1.22253906761326, 48.64924552111038], [-1.222582950873965, 48.64924101349105], [-1.2226262952413, 48.64923461374656], [-1.22266891510332, 48.6492263492824], [-1.222710627951156, 48.64921625548904], [-1.222751255159753, 48.6492043755909], [-1.222790622754078, 48.64919076046062], [-1.22282856215302, 48.64917546840174], [-1.222864910891819, 48.6491585648987], [-1.222899513317883, 48.64914012233642], [-1.222919024530789, 48.64912824984716], [-1.222917388775957, 48.64915370842535], [-1.22291840568943, 48.64918312552723], [-1.222922324047548, 48.64921243557485], [-1.222929127076289, 48.64924151305776], [-1.22293878564909, 48.64927023346125], [-1.222951258410834, 48.6492984737994], [-1.222966491955779, 48.64932611314197], [-1.222984421055204, 48.64935303313176], [-1.22300496893752, 48.64937911849216], [-1.223028047616448, 48.64940425752026], [-1.223053558267819, 48.6494283425653], [-1.223081391652896, 48.64945127048986], [-1.223111428585917, 48.64947294311156], [-1.223143540444549, 48.64949326762298], [-1.223177589720568, 48.64951215698994], [-1.223213430609085, 48.64952953032356], [-1.223231917752481, 48.64953760076002], [-1.22358313328224, 48.64968553399746], [-1.223752620956196, 48.64987987801357], [-1.223772269761858, 48.64990103664514], [-1.223797781021523, 48.64992512152367], [-1.223825615020708, 48.64994804926673], [-1.223855652570935, 48.64996972169251], [-1.223887765047473, 48.64999004599467], [-1.22392181493924, 48.65000893513988], [-1.223954991751017, 48.65002501661278], [-1.223973538629171, 48.65004262445094], [-1.223973018669795, 48.65013084815308], [-1.223974063695461, 48.65015761041425], [-1.223977724594845, 48.6501854958059], [-1.224315140322683, 48.65207291553137], [-1.224351709551848, 48.65250789735412], [-1.224389454791262, 48.65295685960849], [-1.224393374300579, 48.65298616959825], [-1.22440017869017, 48.65301524698634], [-1.22440983882756, 48.65304396725843], [-1.224422313351035, 48.65307220742912], [-1.224437548847239, 48.65309984656896], [-1.224455480079139, 48.65312676632159], [-1.224476030266011, 48.65315285141144], [-1.224499111411685, 48.6531779901367], [-1.224524624681462, 48.653202074848], [-1.224552460825352, 48.65322500240926], [-1.224582500645823, 48.65324667463967], [-1.224614615508093, 48.6532669987335], [-1.224648667891186, 48.65328588765842], [-1.224684511976846, 48.65330326052736], [-1.224692391025599, 48.65330657810717], [-1.224666967038044, 48.65359876157939], [-1.224365800196838, 48.65394600975484], [-1.224348528823887, 48.65396721991007], [-1.224329804108568, 48.65399390155261], [-1.224313753333339, 48.6540213374576], [-1.224300445234097, 48.65404941014145], [-1.224289936802232, 48.65407799939362], [-1.224282273040867, 48.65410698279122], [-1.224277486772365, 48.65413623622362], [-1.224275598497209, 48.65416563442334], [-1.224276616306266, 48.65419505150307], [-1.224280535846298, 48.65422436149418], [-1.224287340338188, 48.65425343888647], [-1.22429700064894, 48.65428215916559], [-1.224309475416139, 48.65431039934619], [-1.224324711225413, 48.65433803849867], [-1.224342642838328, 48.65436495826665], [-1.224344103655275, 48.65436695771593], [-1.225079885293092, 48.65536770350997], [-1.225098975842693, 48.65539178904421], [-1.225122058327057, 48.6554169276401], [-1.225147573030847, 48.65544101220895], [-1.225175410697859, 48.65546393961529], [-1.225205452123965, 48.65548561167899], [-1.22523756866759, 48.65550593559513], [-1.225271622800443, 48.65552482433197], [-1.225307468696915, 48.65554219700334], [-1.22534495285745, 48.65555797921524], [-1.225383914767229, 48.65557210338419], [-1.225424187582551, 48.65558450902698], [-1.22546559884575, 48.65559514301963], [-1.225507971223616, 48.65560395982432], [-1.225551123266975, 48.65561092168532], [-1.225558168593217, 48.65561187196662], [-1.226339807124617, 48.65571444370936], [-1.225689997835899, 48.65603926524107], [-1.225656290357771, 48.65605726019668], [-1.22562357898502, 48.65607716361071], [-1.225592902462918, 48.65609844181459], [-1.225564392153364, 48.65612100369339], [-1.225538170142762, 48.65614475263529], [-1.225514348719208, 48.65616958694531], [-1.225493029891944, 48.65619540028064], [-1.225474304954124, 48.65622208210608], [-1.225458254092244, 48.65624951816706], [-1.225444946042222, 48.65627759097954], [-1.22543443779529, 48.6563061803323], [-1.225426774353968, 48.65633516380192], [-1.225421988539184, 48.6563644172776], [-1.225420100849219, 48.65639381549164], [-1.225421119372905, 48.65642323255661], [-1.225425039753445, 48.65645254250404], [-1.225431845208564, 48.65648161982379], [-1.225441506600731, 48.65651034000199], [-1.225445791288555, 48.65652083732612], [-1.225510974563653, 48.65667319781134], [-1.22511873899243, 48.65687485314606], [-1.225092350076238, 48.65688913744124], [-1.225059637939299, 48.65690904069313], [-1.225028960671213, 48.65693031874481], [-1.225000449637119, 48.65695288048197], [-1.224974226926516, 48.65697662929341], [-1.224950404830481, 48.65700146348479], [-1.224929085361131, 48.65702727671371], [-1.224910359814457, 48.65705395844541], [-1.224894308379456, 48.65708139442582], [-1.224880999794522, 48.65710946717115], [-1.224870491053225, 48.65713805647052], [-1.224862827160145, 48.65716703990077], [-1.224858040938186, 48.65719629335115], [-1.22485615288739, 48.65722569155421], [-1.224857171098046, 48.65725510862244], [-1.224861091214797, 48.65728441858746], [-1.224867896456408, 48.65731349593906], [-1.224877557686364, 48.65734221616314], [-1.224881841743373, 48.65735271214291], [-1.22492488726514, 48.65745332996726], [-1.224424988995561, 48.65761465441502], [-1.223971594246316, 48.65770982930408], [-1.222942660236421, 48.65785651252033], [-1.222916218786971, 48.65786065033549], [-1.222873591648712, 48.65786891488678], [-1.222831871657311, 48.65787900873334], [-1.222812604840848, 48.65788437939118], [-1.22145928303423, 48.65827796676871], [-1.221437915311219, 48.65828447577796], [-1.221398540232601, 48.65829809043488], [-1.221387512561505, 48.65830253431231], [-1.221182738841384, 48.65810879355911], [-1.221169272906697, 48.65809650034478], [-1.22114143560889, 48.65807357196942], [-1.221111394388239, 48.65805189884425], [-1.221079277886281, 48.65803157377519], [-1.221045223630506, 48.65801268379576], [-1.221009377445705, 48.65799530979404], [-1.220971892829175, 48.65797952616656], [-1.220932930293517, 48.6579654004998], [-1.220892656679573, 48.65795299328056], [-1.220851244441954, 48.65794235763706], [-1.22080887091039, 48.65793353911179], [-1.220765717530761, 48.65792657546605], [-1.220755705780112, 48.65792524007038], [-1.219353830506127, 48.65774550430051], [-1.219345511075483, 48.65764644031434], [-1.219341594144763, 48.65761713016147], [-1.21933479205719, 48.65758805248237], [-1.219325133945119, 48.65755933179158], [-1.219312661170826, 48.65753109107477], [-1.219297427148662, 48.65750345126206], [-1.219279497117223, 48.65747653071047], [-1.219258947858948, 48.65745044469652], [-1.219235867371786, 48.65742530492323], [-1.219210354492397, 48.6574012190414], [-1.219182518472488, 48.65737829018907], [-1.21915247851123, 48.65735661654919], [-1.219120363244943, 48.6573362909302], [-1.219086310195823, 48.65731740036769], [-1.219050465183165, 48.65730002575238], [-1.219012981699588, 48.65728424148333], [-1.218974020252739, 48.65727011514979], [-1.218933747678843, 48.65725770724141], [-1.21891203324705, 48.65725212995909], [-1.21890125817034, 48.65723845144605], [-1.218878177959277, 48.65721331160028], [-1.218852665358705, 48.6571892256385], [-1.218824829619192, 48.65716629669891], [-1.218794789938729, 48.65714462296494], [-1.218762674952338, 48.65712429724543], [-1.218728622181096, 48.65710540657636], [-1.218692777443098, 48.65708803184883], [-1.218655294229785, 48.65707224746259], [-1.218616333047644, 48.65705812100723], [-1.218576060731722, 48.65704571297295], [-1.218534649731053, 48.65703507649165], [-1.218492277370193, 48.65702625710918], [-1.218449125089685, 48.65701929259054], [-1.218405377669958, 48.65701421275815], [-1.218361222439226, 48.65701103936396], [-1.218316848472065, 48.65700978599667], [-1.218272445779463, 48.65701045802319], [-1.218253422779048, 48.65701115902748], [-1.218221182885793, 48.65699327376341], [-1.218185338403111, 48.65697589887704], [-1.218147855432643, 48.65696011432465], [-1.218108894479879, 48.65694598769663], [-1.218068622378945, 48.65693357948397], [-1.218027211577897, 48.65692294281914], [-1.21798483940041, 48.65691412324899], [-1.217941687286468, 48.65690715853926], [-1.217897940015542, 48.65690207851298], [-1.217853784915266, 48.65689890492327], [-1.217809411059676, 48.65689765135946], [-1.21776500845932, 48.65689832318932], [-1.217720767247845, 48.65690091753617], [-1.217676876868015, 48.65690542329075], [-1.217633525260231, 48.65691182115939], [-1.217590898058203, 48.65692008374596], [-1.217580383152177, 48.65692243512006], [-1.215218407984584, 48.65746488733636], [-1.215187201926007, 48.65747262724272], [-1.215146566251741, 48.65748450445177], [-1.215127501547246, 48.65749082407903], [-1.212643243798093, 48.6583468490378], [-1.212622931641396, 48.65835414146558], [-1.212584982215674, 48.65836943013507], [-1.212548623365084, 48.6583863303658], [-1.212514010782004, 48.65840476978995], [-1.212481292681895, 48.65842466944863], [-1.212450609168205, 48.65844594413033], [-1.212422091632472, 48.65846850273507], [-1.212403910979609, 48.65848460917002], [-1.212110246692162, 48.65875727575717], [-1.212102197816596, 48.65876491523166], [-1.212078368517842, 48.65878974674347], [-1.212057041684063, 48.65881555757386], [-1.212038308642824, 48.65884223719833], [-1.212022249615277, 48.65886967137186], [-1.212008933372208, 48.65889774261815], [-1.211998416940243, 48.65892633073301], [-1.211990745356635, 48.65895531329833], [-1.211985951477341, 48.65898456620695], [-1.211984055835138, 48.65901396419379], [-1.211985066552728, 48.65904338137233], [-1.212041526423546, 48.65971683053877], [-1.212045439263298, 48.65974614093667], [-1.21205223742817, 48.65977521904387], [-1.212061891812342, 48.65980394034306], [-1.212074361078701, 48.65983218184439], [-1.212089591836436, 48.6598598226127], [-1.212107518868835, 48.65988674428463], [-1.212128065413081, 48.65991283157648], [-1.212151143488691, 48.65993797277692], [-1.212176654274055, 48.65996206022599], [-1.212204488529856, 48.65998499077598], [-1.212234527066614, 48.66000666623316], [-1.212266641255102, 48.66002699377809], [-1.212300693577164, 48.66004588636351], [-1.212336538214882, 48.66006326308688], [-1.212374021674159, 48.66007904953671], [-1.212383425686427, 48.66008245968392], [-1.212380816071084, 48.66008617625157], [-1.212364756833044, 48.66011361047071], [-1.212351440451907, 48.6601416817544], [-1.212340923954514, 48.66017026989811], [-1.212333252378559, 48.66019925248379], [-1.212328458579781, 48.66022850540416], [-1.212326563091015, 48.66025790339409], [-1.212327574033965, 48.66028732056697], [-1.212331487084808, 48.66031663095393], [-1.212338285492185, 48.66034570904299], [-1.212347940149219, 48.66037443031691], [-1.212360409717657, 48.66040267178599], [-1.212375640805428, 48.66043031251517], [-1.212393568194281, 48.66045723414126], [-1.212414115120002, 48.66048332138075], [-1.212437193600389, 48.66050846252255], [-1.212462704812132, 48.66053254990701], [-1.212490539514115, 48.66055548038656], [-1.212520578514922, 48.66057715576785], [-1.212552693183306, 48.6605974832318], [-1.212586745999114, 48.66061637573149], [-1.212622591142287, 48.66063375236466], [-1.212660075116552, 48.66064953872025], [-1.212699037407825, 48.6606636671972], [-1.21273931117083, 48.66067607729379], [-1.21278072394378, 48.66068671586669], [-1.212823098386995, 48.66069553735883], [-1.212866253042704, 48.66070250399437], [-1.212910003111172, 48.66070758594013], [-1.21292062151227, 48.66070852678805], [-1.213488270430081, 48.66075580455562], [-1.213525667372144, 48.66120169983839], [-1.21339139624171, 48.66202735090703], [-1.213389419723081, 48.66204164286537], [-1.213387524786194, 48.66207104086904], [-1.213388536386217, 48.66210045802875], [-1.213392450196493, 48.66212976837569], [-1.213399249462444, 48.66215884639809], [-1.213408905073514, 48.66218756757888], [-1.213421375687356, 48.66221580892887], [-1.213436607907401, 48.66224344951344], [-1.213454536510603, 48.66227037097006], [-1.213475084727471, 48.66229645801596], [-1.213498164570348, 48.66232159894081], [-1.213505391577541, 48.66232876943948], [-1.21447877358174, 48.66327475173358], [-1.214497059885671, 48.66329166822359], [-1.214524897042451, 48.66331459820454], [-1.214554938568118, 48.66333627304827], [-1.214587055820835, 48.66335659993816], [-1.214621111269376, 48.66337549182957], [-1.214656959082014, 48.66339286782285], [-1.214694445751603, 48.66340865350994], [-1.214733410752129, 48.66342278129235], [-1.214773687226824, 48.66343519067151], [-1.214815102702214, 48.66344582850713], [-1.214857479827283, 48.66345464924531], [-1.214894141651539, 48.66346069274249], [-1.215446997020784, 48.66354107415717], [-1.215459506837706, 48.66356377215541], [-1.215477436994585, 48.66359069329302], [-1.215497986800322, 48.66361677997367], [-1.215521068260506, 48.66364192048878], [-1.215546582538996, 48.66366600718126], [-1.215574420381527, 48.66368893690658], [-1.215604462583293, 48.66371061147464], [-1.21563658049928, 48.66373093806977], [-1.215670636595483, 48.6637498296488], [-1.215706485037778, 48.66376720531341], [-1.215743972315759, 48.66378299065677], [-1.215782937901158, 48.663797118082], [-1.215823214934666, 48.66380952709195], [-1.215864630940451, 48.663820164548], [-1.21590700856496, 48.66382898489783], [-1.215950166336857, 48.66383595037042], [-1.215993919443035, 48.66384103113775], [-1.216038080521449, 48.66384420544257], [-1.216082460462511, 48.66384545969167], [-1.216126869219463, 48.66384478851412], [-1.216377851835453, 48.66383554539333], [-1.217065729155957, 48.66392905110671], [-1.218409920642336, 48.66453382339175], [-1.219237239731772, 48.66665190168623], [-1.219245408339302, 48.66667035065498], [-1.219215980118202, 48.66666693440002], [-1.219171816360252, 48.66666376132042], [-1.219127433854821, 48.66666250826788], [-1.219083022649508, 48.66666318060807], [-1.219038772914811, 48.66666577546188], [-1.218994874129984, 48.66667028171817], [-1.21895151427142, 48.66667668008093], [-1.21890887900816, 48.66668494315215], [-1.218867150906526, 48.66669503554887], [-1.218826508648827, 48.66670691405505], [-1.218787126267991, 48.66672052780642], [-1.21874917240252, 48.66673581850808], [-1.218712809574392, 48.66675272068442], [-1.21867819349311, 48.66677116195934], [-1.218645472388764, 48.66679106336609], [-1.218614786377992, 48.66681233968544], [-1.218586266863062, 48.66683489981056], [-1.218560035969805, 48.66685864713736], [-1.218536206024508, 48.66688347997753], [-1.218514879072843, 48.66690929199475], [-1.218496146442876, 48.6669359726593], [-1.218480088353677, 48.66696340772175], [-1.21846677357248, 48.66699147970213], [-1.218456259119312, 48.66702006839283], [-1.218448590023054, 48.66704905137354], [-1.218443799128872, 48.66707830453514], [-1.218441906957133, 48.66710770261163], [-1.21844292161535, 48.66713711971595], [-1.218446838763816, 48.66716642987952], [-1.218453641633603, 48.66719550759132], [-1.218463301098731, 48.66722422833574], [-1.218475775800463, 48.66725246912533], [-1.218478346575436, 48.66725755083894], [-1.218617344629942, 48.66752696975335], [-1.218630010509108, 48.66754952792657], [-1.218647943784652, 48.66757644856029], [-1.21866849686407, 48.66760253466489], [-1.218691581738942, 48.66762767453411], [-1.21871709955852, 48.66765176051372], [-1.218744941053349, 48.66767468946226], [-1.218774987003037, 48.66769636319287], [-1.218807108746483, 48.66771668889356], [-1.218841168733293, 48.66773557952493], [-1.218877021112639, 48.66775295419272], [-1.218914512357308, 48.66776873849438], [-1.218953481922123, 48.66778286483752], [-1.218993762930551, 48.66779527272959], [-1.219035182889854, 48.66780590903674], [-1.219077564429572, 48.66781472821162], [-1.2191207260615, 48.66782169248825], [-1.219164482956108, 48.66782677204355], [-1.219208647735062, 48.66782994512576], [-1.219253031272927, 48.66783119814676], [-1.219267828630226, 48.66783097411508], [-1.219254978841173, 48.66790618179577], [-1.218031552794943, 48.66860682934463], [-1.215931924878153, 48.66926839219309], [-1.215929339783834, 48.66926921112081], [-1.215889954611751, 48.6692828238741], [-1.215851997931232, 48.66929811361341], [-1.215815632276245, 48.66931501486738], [-1.215781013368484, 48.66933345526379], [-1.215748289450069, 48.66935335583965], [-1.215717600649688, 48.66937463137926], [-1.215689078381621, 48.6693971907792], [-1.215663941739054, 48.6694198763314], [-1.215458037627233, 48.66961844078752], [-1.215048974572544, 48.66982863556905], [-1.215022576005991, 48.66984291752739], [-1.214989851455921, 48.66986281788591], [-1.214959162023725, 48.66988409322169], [-1.214930639126242, 48.66990665243207], [-1.214904404904127, 48.66993039891673], [-1.214880571697639, 48.66995523099129], [-1.214859241566497, 48.66998104232236], [-1.214840505852297, 48.67000772238332], [-1.214824444787579, 48.67003515692731], [-1.214811127152045, 48.67006322847665], [-1.214800609977933, 48.67009181682556], [-1.214794924948566, 48.6701121275422], [-1.214567990042359, 48.67104150729048], [-1.214566003323909, 48.67105017929875], [-1.21456120978974, 48.67107943228942], [-1.214559315197217, 48.67110883029304], [-1.214560327664747, 48.67113824742306], [-1.214564242861633, 48.67116755771062], [-1.214571044027404, 48.67119663564428], [-1.214580702043411, 48.67122535670745], [-1.214593175556993, 48.67125359791122], [-1.214608411159133, 48.67128123832178], [-1.214626343612395, 48.67130815957732], [-1.214646896130742, 48.67133424639587], [-1.214669980708132, 48.67135938706814], [-1.214695498495075, 48.67138347393647], [-1.214723340222299, 48.6714064038556], [-1.21475338666833, 48.67142807863453], [-1.214785509170049, 48.67144840545667], [-1.214819570173726, 48.6714672972779], [-1.214855423824255, 48.67148467319893], [-1.214892916588948, 48.6715004588117], [-1.214931887916073, 48.67151458651831], [-1.214972170921604, 48.67152699582037], [-1.215013593104288, 48.67153763357793], [-1.215055977084034, 48.67154645423749], [-1.215099141362326, 48.6715534200266], [-1.215109155070249, 48.67155475583742], [-1.217404514911407, 48.67184904502301], [-1.217610886471088, 48.67202521475468], [-1.217632450058424, 48.67204269802366], [-1.217662498138687, 48.6720643720389], [-1.21769462222306, 48.67208469804477], [-1.217728684750858, 48.67210358900069], [-1.21776453986032, 48.6721209640108], [-1.217802034012883, 48.67213674867125], [-1.21784100665058, 48.6721508753881], [-1.217881290883889, 48.67216328366715], [-1.217922714206101, 48.6721739203729], [-1.217945041752753, 48.67217881783362], [-1.218549645693745, 48.67230377921458], [-1.218743412198986, 48.67259614044054], [-1.218753236546002, 48.67261029243714], [-1.218773791737811, 48.67263637851308], [-1.218796878976551, 48.67266151835173], [-1.218820324847576, 48.67268376685593], [-1.219283399127018, 48.67309609907674], [-1.219290920932397, 48.67318563902863], [-1.21929483904643, 48.67321494915008], [-1.21930164322503, 48.67324402679857], [-1.219311304336601, 48.67327274745866], [-1.219323781015271, 48.67330098814325], [-1.219339019838495, 48.67332862792076], [-1.219356955554907, 48.67335554843202], [-1.219377511364621, 48.67338163439828], [-1.219400599247447, 48.67340677411396], [-1.219426120339766, 48.67343085992538], [-1.219453965358137, 48.67345378869187], [-1.219484015066998, 48.67347546222731], [-1.219516140789261, 48.67349578772056], [-1.219550204957407, 48.67351467813312], [-1.21958606170276, 48.67353205257168], [-1.219623557479403, 48.67354783663462], [-1.219662531722656, 48.67356196273063], [-1.219702817536101, 48.67357437036815], [-1.219744242406335, 48.67358500641451], [-1.219762951580266, 48.6735888990327], [-1.219949825662234, 48.67413249877237], [-1.219954317911067, 48.67414476783772], [-1.219966795167415, 48.67417300845054], [-1.219982034608305, 48.67420064814071], [-1.219999970980232, 48.6742275685497], [-1.220020527480095, 48.6742536543989], [-1.220043616084863, 48.67427879398331], [-1.220069137927882, 48.67430287965001], [-1.220096983722332, 48.67432580825886], [-1.220127034229595, 48.67434748162428], [-1.220159160769023, 48.67436780693603], [-1.220193225769664, 48.67438669715627], [-1.220227480364464, 48.67440334456711], [-1.220823078258368, 48.67467422556451], [-1.221082524739168, 48.67487293532324], [-1.221111304683236, 48.67489363191096], [-1.221143431969547, 48.674913956946], [-1.221177497710075, 48.67493284687291], [-1.221211751711651, 48.67494949340171], [-1.221411265256616, 48.6750402308007], [-1.22141286957987, 48.67504095819681], [-1.221450367055434, 48.67505674166026], [-1.221489342981661, 48.6750708671335], [-1.221529630454878, 48.67508327412765], [-1.221571056954849, 48.67509390951258], [-1.221613445083016, 48.67510272774501], [-1.221656613322859, 48.67510969106281], [-1.221663659491807, 48.67511064134386], [-1.221961931991766, 48.67514977916045], [-1.222105595959648, 48.67527239407719], [-1.22212716057692, 48.67528987485262], [-1.222157212535562, 48.67531154768422], [-1.222189340511741, 48.67533187242547], [-1.222223406928409, 48.67535076204103], [-1.222259265906935, 48.67536813564094], [-1.222287898275711, 48.67538039098345], [-1.223286008635134, 48.67578443980758], [-1.223294874392842, 48.67578796757405], [-1.22333385140416, 48.67580209241937], [-1.223374139918625, 48.67581449876453], [-1.223415567411161, 48.67582513348228], [-1.223457956479357, 48.67583395103209], [-1.223501125602493, 48.67584091365488], [-1.223508174232573, 48.67584186412743], [-1.223624433318571, 48.67585711671322], [-1.223632891029702, 48.67587245361209], [-1.223650829952789, 48.67589937344634], [-1.22367138903047, 48.6759254586375], [-1.223694480228543, 48.67595059748339], [-1.223720004669244, 48.67597468233418], [-1.223747853054742, 48.6759976100531], [-1.223777906135066, 48.67601928245877], [-1.22381003521872, 48.67603960674462], [-1.223844102723737, 48.67605849587747], [-1.223879962767231, 48.67607586896945], [-1.223917461789059, 48.67609165162475], [-1.223956439210749, 48.67610577625806], [-1.223996728122196, 48.67611818238406], [-1.224038155996767, 48.67612881687658], [-1.224080545430091, 48.67613763419594], [-1.224123714900229, 48.67614459658418], [-1.224167479543978, 48.67614967422632], [-1.224211651949931, 48.6761528453787], [-1.224256042959919, 48.67615409646145], [-1.224300462479842, 48.67615342211726], [-1.224460189910643, 48.67614752980288], [-1.226036531437293, 48.6766664270321], [-1.226072785176284, 48.67667749276223], [-1.226114213950755, 48.676688126504], [-1.22615660421985, 48.67669694305533], [-1.226199774457735, 48.67670390466138], [-1.226243539798047, 48.67670898151068], [-1.226287712826342, 48.67671215186293], [-1.226332104381833, 48.67671340214174], [-1.226376524368082, 48.67671272699309], [-1.226420782566728, 48.67671012930814], [-1.22643070096643, 48.67670928067314], [-1.228371340434913, 48.67653358698122], [-1.229276116689131, 48.67674749355296], [-1.228770027945079, 48.67716750517316], [-1.228278270697936, 48.67728057741353], [-1.228247268726785, 48.6772882715997], [-1.228206620122003, 48.67730015342271], [-1.228167231983373, 48.67731377038638], [-1.228129272973897, 48.67732906418213], [-1.228092905637614, 48.67734596932102], [-1.228058285703295, 48.67736441341435], [-1.228025561417834, 48.67738431748315], [-1.227994872911078, 48.67740559629695], [-1.227966351596248, 48.67742815873825], [-1.227940119606907, 48.67745190819286], [-1.22791628927388, 48.67747674296358], [-1.227901922705306, 48.67749368216146], [-1.226669337203821, 48.67902342648995], [-1.226662376713676, 48.67903230095819], [-1.226643643890584, 48.67905898293002], [-1.226627586375546, 48.67908641910895], [-1.226614272933058, 48.67911449201024], [-1.226603760577691, 48.67914308142223], [-1.226596094329295, 48.6791720649216], [-1.226591307020806, 48.67920131839708], [-1.22658941915724, 48.67923071658116], [-1.226590438827708, 48.67926013358643], [-1.226594361670998, 48.67928944344477], [-1.226601170893824, 48.67931852064634], [-1.226610837342965, 48.6793472406778], [-1.226623319629709, 48.67937548055477], [-1.22663856430751, 48.67940311934894], [-1.226656506099941, 48.67943003870549], [-1.226677068181059, 48.67945612335057], [-1.226700162503853, 48.67948126158423], [-1.226725690177128, 48.67950534575924], [-1.226753541889245, 48.67952827274179], [-1.226783598375985, 48.67954994435354], [-1.226815730931241, 48.67957026779151], [-1.226849801958201, 48.67958915602593], [-1.226874123952939, 48.67960119566106], [-1.22737578133971, 48.67983812767582], [-1.22765756405625, 48.68004625062066], [-1.227678332074536, 48.68006091634014], [-1.227710465318102, 48.68008123952655], [-1.227744537027655, 48.68010012749437], [-1.227780401301906, 48.68011749936081], [-1.227817904563122, 48.68013328073522], [-1.227856886214309, 48.68014740403786], [-1.227897179327335, 48.68015980878921], [-1.227938611357502, 48.68017044186879], [-1.227981004882932, 48.6801792577431], [-1.228024178363882, 48.68018621866026], [-1.228067946920082, 48.68019129481168], [-1.228112123123257, 48.68019446446007], [-1.228156517799133, 48.68019571403207], [-1.22820094083784, 48.68019503817658], [-1.228245202007989, 48.68019243978803], [-1.228289111771355, 48.68018792999314], [-1.228332482094807, 48.68018152810428], [-1.228358970052914, 48.68017639353751], [-1.228379329819807, 48.68019107271857], [-1.228411463429959, 48.68021139570827], [-1.228445535491112, 48.68023028346758], [-1.228481400100454, 48.68024765511454], [-1.228518903678717, 48.68026343625954], [-1.228557885627766, 48.68027755932366], [-1.22859817901809, 48.68028996382839], [-1.228639611303912, 48.68030059665453], [-1.228682005062036, 48.68030941226962], [-1.22872517875168, 48.68031637292264], [-1.228768947491992, 48.68032144880642], [-1.22881312385376, 48.68032461818466], [-1.22885751866201, 48.68032586748512], [-1.228901941806293, 48.68032519135805], [-1.228946203054799, 48.68032259269884], [-1.228990112868964, 48.6803180826356], [-1.229033483215438, 48.68031168048155], [-1.229076128371025, 48.68030341365257], [-1.229117865718583, 48.68029331754921], [-1.229158516528142, 48.68028143540583], [-1.229197906723547, 48.68026781810466], [-1.229235867626948, 48.68025252395852], [-1.229272236681516, 48.68023561846075], [-1.22930685814763, 48.68021717400491], [-1.229339583769922, 48.68019726957461], [-1.22937027341161, 48.68017599040537], [-1.229398795655297, 48.68015342761958], [-1.229425028365281, 48.68012967783605], [-1.229448859210578, 48.68010484275681], [-1.229470186145956, 48.68007902873084], [-1.229488917849044, 48.68005234629926], [-1.229504974111004, 48.68002490972156], [-1.229509443071266, 48.68001617690406], [-1.229535638101591, 48.67996320846347], [-1.230235114958787, 48.67985572176481], [-1.23025097675878, 48.67985315078378], [-1.230293621325198, 48.67984488350156], [-1.230335358047436, 48.67983478695464], [-1.230376008198562, 48.67982290437904], [-1.230415397704898, 48.6798092866591], [-1.230453357891632, 48.67979399210923], [-1.230489726205073, 48.67977708622469], [-1.230524346908677, 48.67975864140054], [-1.230557071750353, 48.67973873662205], [-1.230587760596857, 48.67971745712607], [-1.230616282033969, 48.67969489403655], [-1.230642513929505, 48.67967114397365], [-1.230666343955957, 48.67964630864045], [-1.230687670071551, 48.67962049438711], [-1.230706400957593, 48.67959381175561], [-1.230722456408642, 48.67956637500646], [-1.23073576767669, 48.67953830162912], [-1.230746277764829, 48.67950971183911], [-1.230753941671998, 48.67948072806304], [-1.230758726584724, 48.67945147441438], [-1.23075904219706, 48.6794485740557], [-1.230910094701045, 48.67799479597035], [-1.230910403213101, 48.67799189528817], [-1.230911972909015, 48.67796539739521], [-1.230910950736388, 48.67793598041992], [-1.230907025482226, 48.67790667070634], [-1.23090021396016, 48.67787759375737], [-1.230892501183443, 48.67785402883464], [-1.230552103863611, 48.67693389662275], [-1.230772529835207, 48.67691393456038], [-1.230806519192675, 48.67691027271579], [-1.230849886368026, 48.67690386987301], [-1.230892528334264, 48.67689560236609], [-1.230934262487917, 48.67688550559883], [-1.230974910112783, 48.67687362280827], [-1.231014297146098, 48.67686000487942], [-1.231052254923759, 48.67684471012779], [-1.231088620902308, 48.67682780404941], [-1.231123239355332, 48.67680935904021], [-1.231155962040134, 48.67678945408628], [-1.231186648832841, 48.67676817442525], [-1.231215168328026, 48.67674561118163], [-1.231241398401699, 48.67672186097637], [-1.231265226734366, 48.67669702551301], [-1.231286551291506, 48.67667121114241], [-1.231305280760862, 48.67664452840707], [-1.231315039462269, 48.67662849660083], [-1.231907730216384, 48.67559810553436], [-1.233126604308061, 48.67435677890063], [-1.233689712338866, 48.67407762338888], [-1.233690934225058, 48.67407701622228], [-1.233725549829301, 48.67405857042336], [-1.233758269693519, 48.67403866472243], [-1.23378895370573, 48.67401738436032], [-1.233817470472778, 48.67399482046465], [-1.233843697882062, 48.673971069659], [-1.23386752362558, 48.67394623364956], [-1.233888845679863, 48.67392041878951], [-1.233907572743442, 48.67389373562347], [-1.233923624627344, 48.6738662984142], [-1.233936932598729, 48.67383822465301], [-1.233945585551484, 48.67381532589809], [-1.234134958747908, 48.67325175037627], [-1.234146050465053, 48.67326221402246], [-1.234173902102349, 48.673285139213], [-1.234203958055216, 48.67330680888941], [-1.234211811086141, 48.67331202534496], [-1.235343516906178, 48.67405154064504], [-1.235631631390608, 48.67438378693053], [-1.234694714240645, 48.67441843924063], [-1.234650458487103, 48.6744210401205], [-1.234606554331033, 48.67442555235373], [-1.234563189771869, 48.674431956619], [-1.234520550498757, 48.67444022549279], [-1.234478819095164, 48.67445032356756], [-1.234438174257608, 48.67446220760276], [-1.234398790030189, 48.67447582671044], [-1.234360835059043, 48.6744911225729], [-1.234324471870982, 48.67450802969232], [-1.234289856177011, 48.67452647567147], [-1.234288386549332, 48.67452731513832], [-1.233852706706708, 48.67477689801865], [-1.233821456042812, 48.67479596428469], [-1.23379077156917, 48.6748172446542], [-1.233762254323745, 48.67483980854183], [-1.233736026422714, 48.67486355932738], [-1.233712200179555, 48.67488839530769], [-1.233690877624034, 48.67491421013297], [-1.233685655932275, 48.67492120489182], [-1.233047836828063, 48.67579457698194], [-1.233034330476726, 48.6758142652753], [-1.233018277485569, 48.67584170235603], [-1.233004968470799, 48.67586977600632], [-1.232994460428023, 48.67589836601141], [-1.232986798358604, 48.67592734994517], [-1.232982015077713, 48.67595660369467], [-1.232980131072821, 48.67598600199115], [-1.23298115441691, 48.67601541894682], [-1.232985080732683, 48.67604472859353], [-1.232991893212123, 48.67607380542268], [-1.233001562688123, 48.67610252492226], [-1.23301404775892, 48.67613076411028], [-1.233029294966057, 48.67615840206141], [-1.233047239022338, 48.67618532042431], [-1.233067803092105, 48.6762114039295], [-1.233090899119755, 48.67623654088186], [-1.23311642820688, 48.67626062363965], [-1.233144281035723, 48.67628354907516], [-1.233174338337311, 48.67630521901673], [-1.23320647140204, 48.67632554066832], [-1.233240542630958, 48.6763444270081], [-1.233276406125132, 48.67636179716013], [-1.23331390830973, 48.67637757674113], [-1.233352888592691, 48.676391698179], [-1.233393180051681, 48.67640410100212], [-1.233434610149153, 48.67641473209844], [-1.233440905662044, 48.67641616962024], [-1.235299610150287, 48.67683382634767], [-1.23614249682958, 48.67707346268261], [-1.236144468041993, 48.67707402065796], [-1.236185899273299, 48.67708465075943], [-1.236228291642614, 48.67709346358598], [-1.236271463615131, 48.67710042139878], [-1.236315230317293, 48.67710549440272], [-1.236359404328742, 48.67710866087377], [-1.236403796484413, 48.67710990725225], [-1.236448216685351, 48.67710922820087], [-1.236492474712234, 48.67710662662751], [-1.236536381040367, 48.67710211367282], [-1.23657974765131, 48.67709570866239], [-1.236622388837891, 48.67708743902421], [-1.236664121999838, 48.67707734017117], [-1.236704768425423, 48.67706545534905], [-1.236741876817282, 48.67705268304424], [-1.237115320084432, 48.67691431116812], [-1.237157917112477, 48.67692618779624], [-1.237196943432233, 48.6769361433768], [-1.237239335853566, 48.67694495582957], [-1.237282507838473, 48.67695191326164], [-1.237326274513377, 48.67695698587964], [-1.237370448458, 48.67696015196112], [-1.237414840507596, 48.67696139794811], [-1.237459260563649, 48.67696071850497], [-1.237503518407459, 48.67695811654118], [-1.237547424515149, 48.67695360319919], [-1.237590790869196, 48.67694719780621], [-1.237633431763492, 48.67693892779186], [-1.237675164599059, 48.67692882857064], [-1.237715810665552, 48.67691694338988], [-1.23775291928385, 48.67690417053795], [-1.237793252916863, 48.67688922527204], [-1.237870344117487, 48.67691071878972], [-1.23790937045231, 48.6769206740959], [-1.237951762985494, 48.67692948628528], [-1.237994935055693, 48.67693644344904], [-1.23803870178903, 48.67694151579507], [-1.238082875764888, 48.67694468160197], [-1.238127267818501, 48.6769459273131], [-1.238171687851273, 48.6769452475939], [-1.238215945644583, 48.67694264535511], [-1.238259851674795, 48.67693813174015], [-1.238303217924706, 48.67693172607771], [-1.238345858688725, 48.67692345579837], [-1.238387591368317, 48.67691335631772], [-1.238428237253855, 48.67690147088432], [-1.238467622290007, 48.67688785039466], [-1.238505577821025, 48.67687255317529], [-1.238541941313203, 48.67685564473253], [-1.238576557050599, 48.67683719747261], [-1.238609276802427, 48.6768172903912], [-1.238639960457224, 48.67679600873511], [-1.238668476623013, 48.67677344363728], [-1.238694703190191, 48.67674969172676], [-1.238718527854053, 48.67672485471435], [-1.238739848595865, 48.67669903895742], [-1.238755832910556, 48.67667656157551], [-1.238767154596845, 48.67665942813833], [-1.238922314157265, 48.67661683506349], [-1.239444014982645, 48.67661122821626], [-1.239470893006971, 48.67661058647276], [-1.239507895774361, 48.67660854314885], [-1.242107626720759, 48.67641742396582], [-1.242168918871294, 48.67660583683013], [-1.24217517449793, 48.67662335558489], [-1.242187664850782, 48.6766515937724], [-1.242202917258859, 48.67667923050203], [-1.242220866412642, 48.67670614742778], [-1.242241435454732, 48.67673222928595], [-1.242264536308222, 48.67675736438891], [-1.24229007005402, 48.67678144510253], [-1.242317927354406, 48.67680436830806], [-1.242347988921182, 48.67682603584315], [-1.242380126026779, 48.67684635492229], [-1.242414201054598, 48.6768652385346], [-1.24245006808948, 48.67688260581569], [-1.242487573541724, 48.67689838239478], [-1.242526556804962, 48.67691250071253], [-1.242566850944207, 48.67692490031068], [-1.242608283410285, 48.67693552809103], [-1.2426506767795, 48.67694433854258], [-1.242693849512768, 48.67695129393677], [-1.242737616733016, 48.67695636448866], [-1.242781791017766, 48.67695952848489], [-1.242826183200796, 48.67696077237628], [-1.242870603183068, 48.6769600908363], [-1.242914860746163, 48.67695748678332], [-1.242958766367401, 48.67695297136872], [-1.243002132031301, 48.67694656392862], [-1.243017978036909, 48.67694372361068], [-1.243234818235885, 48.67690298645255], [-1.243457167137476, 48.67692744979087], [-1.243473392684482, 48.6769291017217], [-1.243517566991534, 48.67693226543439], [-1.243561959168749, 48.67693350904089], [-1.243606379116928, 48.67693282721574], [-1.243650636617892, 48.67693022287871], [-1.243694542149223, 48.67692570718229], [-1.243737907695877, 48.67691929946385], [-1.24378054755522, 48.67691102716301], [-1.243822279132734, 48.67690092570382], [-1.243862923723207, 48.67688903834345], [-1.243902307277125, 48.67687541598669], [-1.243940261145033, 48.67686011696775], [-1.24397662280028, 48.67684320680108], [-1.244011236534939, 48.67682475790011], [-1.244043954126715, 48.67680484926746], [-1.244074635473198, 48.67678356615674], [-1.244103149192604, 48.67676099970715], [-1.244129373185621, 48.67673724655315], [-1.244153195158655, 48.67671240841128], [-1.244174513104503, 48.6766865916436], [-1.244193235739206, 48.67665990680298], [-1.244209282892792, 48.67663246815923], [-1.244222585852726, 48.6766043932101], [-1.244233087657931, 48.67657580217756], [-1.244240743342397, 48.67654681749383], [-1.244244008609055, 48.67652894787445], [-1.244329707405174, 48.67596561372879], [-1.244355280748837, 48.67598665669913], [-1.244385342704701, 48.67600832370123], [-1.244417480110878, 48.67602864221055], [-1.244451555349828, 48.67604752521838], [-1.244487422505134, 48.67606489186306], [-1.244524927986674, 48.67608066777656], [-1.244563911187961, 48.67609478540231], [-1.244604205174289, 48.67610718428511], [-1.244645637397162, 48.67611781132971], [-1.244680866948638, 48.67612527317426], [-1.245653771196462, 48.67631215096039], [-1.246002106156019, 48.67663163437435], [-1.246010002464806, 48.67663872904501], [-1.246037861382199, 48.67666165134669], [-1.24606792446692, 48.67668331790652], [-1.246100062984588, 48.676703635943], [-1.246134139312887, 48.67672251844969], [-1.246170007531042, 48.67673988456711], [-1.246207514044018, 48.67675565992925], [-1.246219042356043, 48.67676006486099], [-1.246310970375339, 48.67679439932643], [-1.24615862733062, 48.67724978227873], [-1.246156890678238, 48.67725512707649], [-1.246149235990515, 48.67728411188661], [-1.24614446023954, 48.67731336618191], [-1.246142583880792, 48.67734276469126], [-1.246143614954118, 48.6773721815259], [-1.246147549049488, 48.67740149071834], [-1.246154369325412, 48.67743056676184], [-1.246164046581388, 48.67745928514774], [-1.246176539382482, 48.6774875228988], [-1.246179165877683, 48.67749270536714], [-1.246505212216911, 48.67812330135217], [-1.246517840880046, 48.67814575504387], [-1.246535792867682, 48.67817267129094], [-1.246556364748441, 48.678198752372], [-1.246579468433027, 48.6782238866025], [-1.246605004990435, 48.67824796635229], [-1.246632865070898, 48.67827088850662], [-1.246662929374405, 48.67829255490769], [-1.246695069161257, 48.67831287277488], [-1.246729146803824, 48.67833175510234], [-1.246765016375657, 48.67834912103148], [-1.246802524275883, 48.67836489619701], [-1.246841509888041, 48.67837901304579], [-1.246881806266855, 48.67839141112576], [-1.246923240853817, 48.67840203734533], [-1.246965636215838, 48.67841084620017], [-1.247008810805281, 48.67841779996843], [-1.24705257973738, 48.67842286887231], [-1.247096755582182, 48.67842603120543], [-1.24714114916691, 48.67842727342575], [-1.247185570386373, 48.67842659021379], [-1.247229829016894, 48.67842398449519], [-1.247273735531258, 48.67841946742847], [-1.247317101910146, 48.67841305835671], [-1.247359742449246, 48.6784047847251], [-1.247367569793418, 48.67840304493227], [-1.247774238771711, 48.67831082770269], [-1.24795849436965, 48.67833785740273], [-1.247966563828471, 48.67833900713021], [-1.248010332788547, 48.67834407566839], [-1.248054508624357, 48.67834723763243], [-1.248098902163142, 48.67834847948187], [-1.248176546259294, 48.67834602085684], [-1.24817788729056, 48.6783473830094], [-1.248203424676286, 48.67837146240291], [-1.248231285553991, 48.67839438416848], [-1.248261350620228, 48.6784160501502], [-1.24829349113204, 48.67843636756902], [-1.24832756945866, 48.6784552494212], [-1.248363439670761, 48.67847261485001], [-1.248400948164692, 48.6784883894924], [-1.248439934321435, 48.67850250579741], [-1.248480231193434, 48.67851490331542], [-1.248521666220004, 48.67852552895716], [-1.248564061966218, 48.67853433722075], [-1.248607236882799, 48.67854129038696], [-1.248651006083603, 48.67854635868054], [-1.248695182137458, 48.67854952039762], [-1.248739575870708, 48.67855076199892], [-1.248783997177521, 48.67855007816757], [-1.24882825583392, 48.67854747183191], [-1.248872162312493, 48.67854295415303], [-1.248875154080686, 48.6785425749512], [-1.248912327695053, 48.67857666479124], [-1.2489202221036, 48.67858375686092], [-1.248948083425809, 48.67860667845203], [-1.248978148927757, 48.67862834424527], [-1.249010289865109, 48.67864866146283], [-1.249044368604879, 48.67866754310167], [-1.249080239215921, 48.67868490830583], [-1.249117748093265, 48.67870068271341], [-1.249156734615895, 48.67871479877444], [-1.249197031834817, 48.67872719604034], [-1.249238467187885, 48.67873782142275], [-1.249280863238615, 48.67874662942113], [-1.249324038436792, 48.6787535823173], [-1.24936780789465, 48.67875865033711], [-1.24941198418014, 48.67876181177793], [-1.249456378118545, 48.67876305310158], [-1.249500799603196, 48.67876236899253], [-1.249545058409316, 48.67875976238013], [-1.249588965008892, 48.67875524442675], [-1.249632331382264, 48.67874883447938], [-1.249674971823302, 48.67874055998721], [-1.249716703735009, 48.67873045638361], [-1.249757348410734, 48.67871856693503], [-1.249796731800583, 48.67870494255509], [-1.249834685255782, 48.67868964158679], [-1.249871046251516, 48.67867272955282], [-1.249905659082597, 48.67865427887463], [-1.249918925653959, 48.67864651866324], [-1.250541877546689, 48.67827243687486], [-1.250561327128135, 48.67826028666812], [-1.250592006603735, 48.67823900181549], [-1.250620518223, 48.67821643374724], [-1.250646739895693, 48.67819267910516], [-1.250670559338312, 48.67816783961165], [-1.250691874554384, 48.67814202163497], [-1.25071059427168, 48.67811533573292], [-1.2507266383327, 48.67808789618005], [-1.250739938038217, 48.67805982047773], [-1.250750436440824, 48.67803122885142], [-1.250758088589499, 48.67800224373575], [-1.250762861721109, 48.67797298924984], [-1.250764735401699, 48.67794359066635], [-1.250763701612565, 48.67791417387459], [-1.25075976478602, 48.67788486484174], [-1.250752941784816, 48.67785578907336], [-1.250743261831278, 48.67782707107573], [-1.250730766380763, 48.67779883382316], [-1.250728139143915, 48.67779365096346], [-1.250388537107903, 48.67713695433926], [-1.250403071092878, 48.67713343534125], [-1.250443714315146, 48.67712154564789], [-1.250483096267905, 48.6771079210305], [-1.250521048308635, 48.67709261983311], [-1.250557407918398, 48.67707570757939], [-1.25059201939806, 48.6770572566917], [-1.25062473453506, 48.67703734618126], [-1.250655413237418, 48.67701606130963], [-1.250683924134681, 48.67699349322363], [-1.250710145139669, 48.67696973856471], [-1.250733963971555, 48.67694489905578], [-1.250740615202202, 48.67693726374228], [-1.251131459480284, 48.67647825090927], [-1.251665848284351, 48.67636597653031], [-1.251633603315236, 48.67667755930504], [-1.251160983910065, 48.67806323408025], [-1.251158626854894, 48.67807041724788], [-1.251150974926902, 48.67809940239012], [-1.251146202009001, 48.67812865689189], [-1.251145887671785, 48.6781315564317], [-1.251067948053566, 48.67888455492231], [-1.250957126476131, 48.67912743647581], [-1.250867552061665, 48.67896766607192], [-1.250860749593497, 48.6789560301189], [-1.250842795010536, 48.67892911455081], [-1.250822220607175, 48.67890303424046], [-1.250799114489316, 48.6788779008664], [-1.25077357560307, 48.67885382205206], [-1.250745713311596, 48.67883090090516], [-1.250715646926635, 48.67880923557578], [-1.250683505197516, 48.67878891883653], [-1.250649425759784, 48.67877003768525], [-1.250613554545965, 48.6787526729721], [-1.250576045160587, 48.67873689905401], [-1.25053705822227, 48.67872278347566], [-1.250496760676449, 48.67871038668091], [-1.250455325080055, 48.67869976175318], [-1.250412928862978, 48.67869095418918], [-1.250369753568119, 48.67868400170308], [-1.25032598407423, 48.6786789340658], [-1.250281807804108, 48.67867577297717], [-1.250237413922377, 48.67867453197312], [-1.250192992525376, 48.67867521636765], [-1.25014873382727, 48.67867782323022], [-1.250104827345639, 48.67868234139798], [-1.250061461089873, 48.67868875152413], [-1.250018820756389, 48.67869702616019], [-1.249977088933232, 48.67870712987373], [-1.249966262695146, 48.67871009245918], [-1.249620657987414, 48.67880698562404], [-1.248319768190209, 48.67871977384971], [-1.248302208402385, 48.67871874883972], [-1.248257814531606, 48.67871750706907], [-1.248213393069677, 48.67871819069651], [-1.248169134231123, 48.67872079679476], [-1.248125227534045, 48.67872531420437], [-1.24808186098881, 48.6787317235816], [-1.248039220293076, 48.67873999748124], [-1.247997488036305, 48.67875010047417], [-1.247956842918874, 48.67876198929874], [-1.247917458985739, 48.67877561304654], [-1.247881476931023, 48.67879006183803], [-1.24687294246892, 48.67922389636892], [-1.246870970385883, 48.6792247478935], [-1.246834607981675, 48.67924165897518], [-1.246799993618999, 48.67926010872528], [-1.246767275520848, 48.67928001814072], [-1.246736593790752, 48.67930130196811], [-1.246708079812573, 48.67932386906836], [-1.24668185568876, 48.6793476228075], [-1.246658033716386, 48.67937246146987], [-1.246636715906988, 48.67939827869411], [-1.246617993549484, 48.67942496392821], [-1.246605738087758, 48.67944541710989], [-1.245584979523424, 48.68127851138964], [-1.245581187974749, 48.68128549714831], [-1.24556788453484, 48.68131357224498], [-1.245560849474705, 48.68133178462027], [-1.245318857578044, 48.68201765765073], [-1.245197617341693, 48.68205429414315], [-1.245185011746806, 48.6820582071799], [-1.245145624480017, 48.68207182997195], [-1.245107667044063, 48.68208712938381], [-1.245071301976166, 48.68210403990248], [-1.245036684995464, 48.68212248911603], [-1.245003964335862, 48.68214239802387], [-1.244973280112141, 48.68216368137455], [-1.244944763718874, 48.68218624803126], [-1.244918537268542, 48.6822100013618], [-1.24489471306841, 48.68223483965222], [-1.244873393139587, 48.68226065654281], [-1.244854668779944, 48.68228734148311], [-1.244838620173461, 48.6823147802052], [-1.244825316046421, 48.68234285521352], [-1.24481481337323, 48.68237144628763], [-1.244807157132728, 48.68240043099674], [-1.244802380114627, 48.68242968522457], [-1.244800502780039, 48.68245908370036], [-1.24480153317293, 48.68248850053547], [-1.244803908422547, 48.68250619799911], [-1.244786114718957, 48.68251195832204], [-1.244750457450219, 48.6825243826532], [-1.244712499552374, 48.68253968193368], [-1.244708066775069, 48.68254161941222], [-1.243901626316137, 48.68289709911278], [-1.243869693099187, 48.68291207180191], [-1.243835075120923, 48.68293052065151], [-1.243802353459582, 48.68295042921507], [-1.243771668233782, 48.68297171224281], [-1.243743150842713, 48.68299427859927], [-1.243716923403093, 48.68301803165336], [-1.243693098226322, 48.68304286969259], [-1.243671777337647, 48.68306868635811], [-1.243653052039155, 48.68309537110041], [-1.243637002518803, 48.68312280965255], [-1.243623697506671, 48.68315088451972], [-1.243613193981361, 48.68317947548194], [-1.243605536924812, 48.68320846010897], [-1.243600759130752, 48.68323771428489], [-1.243598881063091, 48.68326711273915], [-1.243599910769491, 48.68329652958324], [-1.243603843845396, 48.68332583884957], [-1.243610663453774, 48.68335491503107], [-1.24362034039702, 48.68338363361862], [-1.243632833241439, 48.68341187163394], [-1.243648088495259, 48.68343950815689], [-1.243666040836793, 48.68346642484226], [-1.24368661339495, 48.68349250642764], [-1.243709718077757, 48.68351764122619], [-1.243735255949734, 48.6835417216054], [-1.243741891440611, 48.6835474655424], [-1.244642730131693, 48.68431439138568], [-1.244663956978334, 48.68433157012323], [-1.24469402405802, 48.6843532370305], [-1.244726166924148, 48.68437355544013], [-1.244760247935801, 48.68439243834406], [-1.244796121152199, 48.68440980488111], [-1.244833632956861, 48.68442558068341], [-1.244872622716542, 48.68443969819509], [-1.244912923468258, 48.68445209696142], [-1.244954362634736, 48.68446272388756], [-1.244996762763204, 48.68447153346643], [-1.245039942285922, 48.68447848797301], [-1.245083716296698, 48.68448355762617], [-1.245127897343938, 48.68448672071652], [-1.245172296232484, 48.68448796369864], [-1.245216722834561, 48.6844872812499], [-1.245260986903392, 48.6844846762927], [-1.24530489888846, 48.68448015998213], [-1.245348270747064, 48.68447375165822], [-1.245390916749554, 48.68446547876325], [-1.245432654275049, 48.68445537672364], [-1.245473304593101, 48.68444348879928], [-1.245512693629414, 48.68442986589718], [-1.245550652711152, 48.68441456635404], [-1.2455870192893, 48.68439765568638], [-1.245621637634831, 48.68437920630992], [-1.245631897710899, 48.6843732420698], [-1.247610331896478, 48.68319959527402], [-1.247632792618141, 48.68318565004461], [-1.247663476339624, 48.68316436598381], [-1.247691992067244, 48.68314179865265], [-1.247710163900702, 48.68312569262207], [-1.247789248564519, 48.68305222847154], [-1.247854171830762, 48.68302022722561], [-1.247873619607651, 48.68304476570553], [-1.247896726178188, 48.6830698996611], [-1.247922265828403, 48.68309397910844], [-1.247950129195197, 48.68311690093408], [-1.247980196964731, 48.68313856698157], [-1.248012340382378, 48.68315888447189], [-1.248046421805042, 48.6831777664007], [-1.248082295289785, 48.68319513191118], [-1.248110933702427, 48.68320737889114], [-1.248319230305013, 48.68329162540813], [-1.24832810385143, 48.6832951531406], [-1.248367093715668, 48.68330926946514], [-1.248407394422999, 48.68332166700418], [-1.248448833396192, 48.68333229266825], [-1.248491233183633, 48.68334110095559], [-1.24853441221874, 48.68334805414661], [-1.248578185597522, 48.68335312246614], [-1.248622365871002, 48.68335628421004], [-1.248666763847497, 48.68335752583916], [-1.248711189402971, 48.68335684203619], [-1.248802026023017, 48.68335347219894], [-1.24882756625095, 48.6833775514441], [-1.248855430187867, 48.68340047304911], [-1.248885498517174, 48.68342213885877], [-1.248917642482104, 48.68344245609475], [-1.248951724436942, 48.68346133775407], [-1.248987598436893, 48.68347870298084], [-1.249025110862099, 48.68349447741292], [-1.249064101076676, 48.68350859350018], [-1.249104402115682, 48.68352099079409], [-1.249145841400625, 48.68353161620605], [-1.249188241478214, 48.68354042423539], [-1.249231420780967, 48.68354737716386], [-1.249275194403574, 48.68355244521712], [-1.249319374896099, 48.68355560669244], [-1.249363773065819, 48.68355684805154], [-1.24940819878798, 48.68355616397858], [-1.250086214596218, 48.68353100531307], [-1.250130477570584, 48.68352839847564], [-1.25017438828269, 48.68352388029969], [-1.250217758695331, 48.68351747013321], [-1.250232545228049, 48.68351482760058], [-1.250584964304531, 48.68361495505187], [-1.25058693564682, 48.68361551269716], [-1.250628375323051, 48.68362613757318], [-1.250670775740128, 48.6836349450542], [-1.250713955329112, 48.68364189742424], [-1.250757729183514, 48.68364696491143], [-1.250786278132778, 48.68364922867609], [-1.251928736879624, 48.68372360566825], [-1.251944502226332, 48.68373619431954], [-1.251974572087753, 48.68375785931833], [-1.252006717515972, 48.68377817568768], [-1.25204080085874, 48.68379705642825], [-1.252076676165266, 48.68381442068792], [-1.252114189810476, 48.68383019410881], [-1.252153181152871, 48.68384430914519], [-1.252193483222872, 48.68385670535286], [-1.252234923437392, 48.68386732964801], [-1.252277324339501, 48.68387613653467], [-1.252320504357842, 48.6838830882996], [-1.252364278584186, 48.68388815517324], [-1.252408459566019, 48.68389131545807], [-1.252452858108542, 48.68389255562092], [-1.252497284085299, 48.68389187035096], [-1.252836293564967, 48.68387928238553], [-1.252880556703362, 48.68387667448647], [-1.252890272494673, 48.68387584201578], [-1.25480838731429, 48.68370215314294], [-1.254842582033227, 48.68369846581241], [-1.254885952001124, 48.68369205388011], [-1.254928595770459, 48.68368377743698], [-1.254970330729948, 48.68367367192478], [-1.255010978159949, 48.68366178061813], [-1.25505036399854, 48.6836481544386], [-1.255088319586772, 48.6836328517368], [-1.25512468239054, 48.68361593804297], [-1.255159296697022, 48.68359748578568], [-1.255192014281303, 48.68357757398191], [-1.255222695041196, 48.6835562878987], [-1.255251207597492, 48.68353371868815], [-1.255277429855577, 48.68350996299666], [-1.25530124952951, 48.68348512255124], [-1.255322564621881, 48.68345930372412], [-1.25534128386098, 48.68343261707695], [-1.255357327091364, 48.68340517688731], [-1.255370625617225, 48.68337710065936], [-1.255381122496571, 48.68334850862071], [-1.255388772784474, 48.68331952320788], [-1.255392788731229, 48.68329637695996], [-1.255774681197639, 48.68044555047212], [-1.255775436103357, 48.6804394420496], [-1.255776759137139, 48.68042436593752], [-1.255817678500057, 48.67976790535147], [-1.256326016806046, 48.67979000274778], [-1.257487460532301, 48.67987241351359], [-1.257509043298055, 48.67987371448476], [-1.257553438418055, 48.67987495267268], [-1.257597860774748, 48.67987426542614], [-1.257642120139701, 48.67987165568791], [-1.257686026982443, 48.67986713463374], [-1.257729393282314, 48.67986072162394], [-1.257772033333484, 48.67985244412073], [-1.257813764540494, 48.67984233757046], [-1.257854408200052, 48.67983044525218], [-1.2578937902663, 48.67981681809177], [-1.257931742096279, 48.67980151444409], [-1.257968101172049, 48.67978459984343], [-1.258002711796675, 48.67976614672216], [-1.258035425761332, 48.67974623410112], [-1.258066102978999, 48.67972494725067], [-1.258094612085694, 48.6797023773263], [-1.258120831001652, 48.67967862097737], [-1.258144647455262, 48.67965377993387], [-1.25816595946282, 48.67962796057051], [-1.258184675765848, 48.67960127345115], [-1.258200716221491, 48.67957383285543], [-1.258214012145853, 48.67954575628944], [-1.258215914647449, 48.67954112903778], [-1.258235319105689, 48.67954490840184], [-1.258278496227467, 48.67955185792504], [-1.258322267282788, 48.67955692252567], [-1.258366444832546, 48.67956008051561], [-1.258410839696671, 48.67956131837155], [-1.258455261764535, 48.67956063079275], [-1.258499520808845, 48.67955802072343], [-1.258543427300547, 48.6795534993408], [-1.258586793220482, 48.67954708600646], [-1.258629432864438, 48.67953880818411], [-1.258671163638714, 48.67952870132157], [-1.258711806841897, 48.679516808699], [-1.258751188430047, 48.67950318124359], [-1.258789139762224, 48.67948787731187], [-1.258825498322687, 48.67947096243889], [-1.258860108416657, 48.67945250905827], [-1.25889282183747, 48.67943259619199], [-1.258923498500819, 48.67941130911169], [-1.258952007044625, 48.67938873897345], [-1.258970179522208, 48.6793726259419], [-1.259508158531588, 48.6788726661642], [-1.260531080541965, 48.67826481635244], [-1.260553223936203, 48.67825105360069], [-1.260583899175491, 48.67822976607413], [-1.260612406303829, 48.67820719552098], [-1.260638623250343, 48.67818343859355], [-1.260662437751514, 48.6781585970242], [-1.260683747832134, 48.6781327771898], [-1.260702462241856, 48.67810608965633], [-1.260718500846261, 48.67807864870518], [-1.260731794969083, 48.6780505718439], [-1.260742287687058, 48.67802197930281], [-1.260749934073482, 48.67799299352036], [-1.260754701389963, 48.6779637386187], [-1.260755015387471, 48.67796083696682], [-1.260942392519242, 48.67614694120506], [-1.262038765757438, 48.6761061401417], [-1.262083021574569, 48.67610352868825], [-1.262126924727063, 48.67609900593195], [-1.262170287210067, 48.67609259124038], [-1.262212923334138, 48.67608431208307], [-1.262254650520724, 48.67607420391332], [-1.26229529008342, 48.67606231001718], [-1.262334667994232, 48.67604868132731], [-1.262372615627867, 48.67603337620514], [-1.262408970484392, 48.67601646019115], [-1.262443576884957, 48.67599800572392], [-1.262476286638703, 48.67597809182978], [-1.262506959676812, 48.67595680378498], [-1.262535464653012, 48.67593423274979], [-1.262561679505521, 48.67591047537836], [-1.262585491979813, 48.67588563340523], [-1.262606800109374, 48.67585981320889], [-1.262625512652329, 48.67583312535687], [-1.262636801520249, 48.67581438357435], [-1.262985549657119, 48.67519537451714], [-1.262986581663659, 48.67519558880121], [-1.263029755706899, 48.6752025365372], [-1.263073523454186, 48.67520759932538], [-1.263117697480602, 48.67521075548544], [-1.263162088621066, 48.67521199150185], [-1.263206506780996, 48.67521130208173], [-1.263250761749766, 48.67520869017724], [-1.263294664015808, 48.67520416697338], [-1.263338025578029, 48.67519775183964], [-1.263380660750961, 48.67518947224735], [-1.263422386959969, 48.67517936365195], [-1.263463025523204, 48.67516746934093], [-1.26350240241657, 48.675153840249], [-1.26354034901933, 48.67513853473933], [-1.263576702835907, 48.67512161835387], [-1.263611308191888, 48.67510316353281], [-1.263644016900829, 48.67508324930414], [-1.263674688898651, 48.67506196094543], [-1.263703192843255, 48.67503938961831], [-1.263729406677419, 48.67501563197825], [-1.263753218150892, 48.67499078976088], [-1.263774525301495, 48.67496496934576], [-1.263793236891453, 48.6749382813013], [-1.263807199868527, 48.6749143872068], [-1.263977199700699, 48.67490805700896], [-1.264021454362514, 48.6749054448069], [-1.264065356294404, 48.67490092130777], [-1.264108717496772, 48.67489450588234], [-1.264151352285612, 48.67488622600327], [-1.264193078088105, 48.67487611712706], [-1.264233716223762, 48.67486422254258], [-1.264273092670745, 48.67485059318562], [-1.264311038809975, 48.67483528742036], [-1.264347392147975, 48.67481837079011], [-1.264381997012329, 48.67479991573594], [-1.264414705218833, 48.67478000128694], [-1.264445376705223, 48.67475871272154], [-1.264473880131902, 48.67473614120228], [-1.264500093443763, 48.67471238338545], [-1.264523904392836, 48.67468754100737], [-1.264545211019119, 48.67466172044841], [-1.264563922087214, 48.67463503227753], [-1.26457995747663, 48.67460759077899], [-1.264593248525192, 48.67457951346255], [-1.264603738322883, 48.67455092056046], [-1.26461138195507, 48.67452193451291], [-1.264616146695552, 48.67449267944294], [-1.264618012145826, 48.67446328062571], [-1.264616970322918, 48.67443386395166], [-1.264521670159617, 48.67331149328753], [-1.26451772567338, 48.67328218471744], [-1.2645108953408, 48.67325310975828], [-1.264501208415199, 48.67322439291285], [-1.26448870638217, 48.67319615715049], [-1.264473442781446, 48.67316852338006], [-1.264455482978242, 48.67314160993265], [-1.264434903882454, 48.67311553205433], [-1.264411793619811, 48.6730904014134], [-1.264386251154488, 48.67306632562152], [-1.264358385864872, 48.67304340777338], [-1.264328317075494, 48.67302174600504], [-1.264296173546036, 48.67300143307394], [-1.26426349460828, 48.67298333235118], [-1.264292903629958, 48.67296291939118], [-1.264321406107036, 48.67294034790674], [-1.264347618554589, 48.6729165901216], [-1.264371428728501, 48.67289174777182], [-1.264392734672091, 48.67286592723771], [-1.264411445152835, 48.67283923908814], [-1.264427480052743, 48.67281179760725], [-1.264440770711757, 48.67278372030469], [-1.264451260221478, 48.67275512741267], [-1.264458903668673, 48.67272614137135], [-1.26446366832758, 48.67269688630382], [-1.264465533800496, 48.67266748748512], [-1.264464492103907, 48.67263807080567], [-1.264445433092358, 48.67241359663118], [-1.264441488721029, 48.67238428805649], [-1.264434658554516, 48.67235521309079], [-1.264424971845422, 48.67232649623701], [-1.2644124700785, 48.67229826046444], [-1.264397206792245, 48.67227062668198], [-1.264379247350551, 48.6722437132208], [-1.264363924977141, 48.6722242962807], [-1.264369837059804, 48.67222524765848], [-1.264413602350296, 48.67223030993612], [-1.264457773845038, 48.67223346558038], [-1.264502162389838, 48.67223470107821], [-1.264546577901147, 48.67223401113854], [-1.264590830179748, 48.67223139871611], [-1.264634729725547, 48.67222687499806], [-1.264678088549138, 48.67222045935593], [-1.264720720976726, 48.67221217926343], [-1.264762444445646, 48.6722020701779], [-1.264803080285299, 48.67219017538928], [-1.264842454483721, 48.67217654583395], [-1.264880398431565, 48.67216123987713], [-1.264916749644565, 48.67214432306294], [-1.264951352459498, 48.67212586783319], [-1.264984058700973, 48.67210595321775], [-1.265014728314962, 48.67208466449577], [-1.265295214657873, 48.67187675428409], [-1.265323716069384, 48.67185418254843], [-1.265349927477169, 48.67183042453221], [-1.265373736641529, 48.67180558197224], [-1.265395041610138, 48.67177976124976], [-1.265413751154532, 48.67175307293444], [-1.265429785161014, 48.67172563131103], [-1.265443074973325, 48.67169755388996], [-1.265453563686343, 48.67166896090398], [-1.265461206390592, 48.67163997479351], [-1.265465970363529, 48.67161071968189], [-1.265467835209986, 48.67158132084453], [-1.265466792949588, 48.67155190417179], [-1.26546284805048, 48.6715225956304], [-1.265456017410427, 48.67149352072368], [-1.265446330284026, 48.67146480395435], [-1.265433828157652, 48.67143656829138], [-1.265418564571776, 48.67140893464325], [-1.265400604891054, 48.67138202134031], [-1.265380026025262, 48.67135594362828], [-1.26535691609913, 48.67133081317456], [-1.265331374075114, 48.67130673759013], [-1.265303509329863, 48.67128381996879], [-1.265273441185608, 48.67126215844558], [-1.265241298399216, 48.67124184577679], [-1.265207218610704, 48.67122296894281], [-1.265181932729216, 48.67121073151411], [-1.26544992960151, 48.67113685393213], [-1.265483673322028, 48.67112682924937], [-1.265523046503183, 48.67111319945916], [-1.265560989441354, 48.67109789327587], [-1.265597339656612, 48.6710809762445], [-1.265631941490051, 48.67106252080784], [-1.265664646770175, 48.67104260599668], [-1.265695315447493, 48.67102131709076], [-1.265723816194515, 48.6709987452544], [-1.265750026967167, 48.67097498714516], [-1.26577383552877, 48.67095014450042], [-1.265795139929453, 48.67092432370192], [-1.265800658743919, 48.6709169129107], [-1.266268127253321, 48.67027436086077], [-1.26652712376236, 48.67015042443713], [-1.266537827464165, 48.67014519596951], [-1.266572428308455, 48.67012674024764], [-1.266605132607404, 48.67010682516678], [-1.266635800315756, 48.6700855360077], [-1.266664300110141, 48.67006296393597], [-1.266690509950619, 48.67003920560994], [-1.266714317604487, 48.6700143627682], [-1.266735621125694, 48.66998854179308], [-1.26675432929215, 48.66996185325534], [-1.266770361995815, 48.66993441144088], [-1.266781617536614, 48.66991107862092], [-1.26709706868102, 48.6691899448854], [-1.267099101671456, 48.66918520011917], [-1.267109588918707, 48.66915660697637], [-1.267117230286465, 48.66912762075003], [-1.267121993057743, 48.66909836556419], [-1.267123856842889, 48.66906896669441], [-1.267122813665744, 48.66903955003123], [-1.267118867998511, 48.66901024154139], [-1.267112036742171, 48.668981166728], [-1.267102349154019, 48.66895245009329], [-1.267089846722509, 48.6689242146057], [-1.267074582989072, 48.66889658117283], [-1.26705662331944, 48.66886966812444], [-1.267036044623013, 48.6688435907049], [-1.267012935023819, 48.6688184605804], [-1.267001136790888, 48.66880733967888], [-1.26709498816566, 48.66863240418627], [-1.267096103003242, 48.66863030978445], [-1.267109391066872, 48.66860223216375], [-1.267119878186804, 48.6685736390187], [-1.267127519459939, 48.66854465279044], [-1.267132282170105, 48.66851539760289], [-1.267134145927533, 48.66848599873167], [-1.267133102756484, 48.66845658206735], [-1.267129157128979, 48.66842727357661], [-1.26712232594588, 48.66839819876256], [-1.267112638464163, 48.6683694821275], [-1.267100136171822, 48.6683412466398], [-1.267084872609707, 48.66831361320713], [-1.267066913142794, 48.66828670015922], [-1.2670463346796, 48.6682606227404], [-1.267023225343196, 48.66823549261689], [-1.267002479112542, 48.66821568904371], [-1.266617812181774, 48.66786873513859], [-1.266669588897409, 48.66768512003426], [-1.26693179181129, 48.66758462870082], [-1.266963723154899, 48.66757159786585], [-1.267000070349074, 48.66755468038519], [-1.267034669241165, 48.66753622452027], [-1.267067371672168, 48.66751630930367], [-1.267098037605001, 48.66749502001698], [-1.267126535723546, 48.66747244782587], [-1.267152743995359, 48.66744868938964], [-1.267176550194331, 48.66742384644714], [-1.267197852380686, 48.66739802538122], [-1.267216559338009, 48.66737133676294], [-1.267232590963456, 48.66734389487858], [-1.267245878611019, 48.66731581723936], [-1.267256365384948, 48.66728722407913], [-1.267264006384001, 48.66725823783908], [-1.267268768892849, 48.66722898264309], [-1.267270240571188, 48.66721126166707], [-1.267298620965083, 48.66667768611518], [-1.26735791930588, 48.6666754759064], [-1.267402166546712, 48.66667286239755], [-1.267446060986854, 48.66666833760091], [-1.267489414658827, 48.66666192089274], [-1.267532041910835, 48.6666536397512], [-1.267573760202376, 48.66664352963817], [-1.267614390885095, 48.66663163384799], [-1.267653759969027, 48.66661800332135], [-1.267691698866751, 48.66660269642768], [-1.267728045115641, 48.66658577871493], [-1.26776264307376, 48.66656732262895], [-1.267795344586458, 48.66654740720319], [-1.26782600962011, 48.66652611772019], [-1.267854506862756, 48.66650354534657], [-1.267880714285747, 48.66647978674213], [-1.267904519666354, 48.66645494364671], [-1.267925821068476, 48.66642912244365], [-1.267944527278977, 48.66640243370469], [-1.267960558198249, 48.66637499171644], [-1.267973845183201, 48.66634691399097], [-1.267984331341243, 48.6663183207621], [-1.26799197177335, 48.66628933447142], [-1.26799673376697, 48.66626007924314], [-1.267998596935429, 48.66623068035302], [-1.267997553305467, 48.66620126369171], [-1.267977741906345, 48.66596809157402], [-1.269352937126664, 48.66515129862422], [-1.269375314319783, 48.66513739035384], [-1.269405977824798, 48.66511610044593], [-1.26943447355915, 48.66509352767707], [-1.269460679500847, 48.665069768709], [-1.269484483433392, 48.66504492528289], [-1.269505783426921, 48.66501910378351], [-1.269524488274272, 48.66499241478393], [-1.269540517881913, 48.66496497257191], [-1.269553803612149, 48.66493689466027], [-1.269564288577705, 48.66490830128401], [-1.269571927884932, 48.66487931488508], [-1.269576688825873, 48.66485005958814], [-1.269578551018393, 48.66482066066932], [-1.269577506493447, 48.66479124401941], [-1.269573559728892, 48.66476193560495], [-1.269566727630405, 48.66473286092881], [-1.2695570394589, 48.66470414449271], [-1.269544536705247, 48.66467590926414], [-1.269529272912537, 48.66464827614971], [-1.269516555865262, 48.66462874223586], [-1.269080581708006, 48.66400036865976], [-1.269136517016372, 48.66390518457099], [-1.270071425167167, 48.66361428536391], [-1.270077436812189, 48.66361239089733], [-1.270116802864827, 48.66359875952166], [-1.270154738734992, 48.66358345180932], [-1.270191081973051, 48.6635665333118], [-1.270225676949994, 48.66354807647826], [-1.270258375523863, 48.66352816034532], [-1.270289037673682, 48.66350687019871], [-1.270317532099801, 48.66348429720772], [-1.270343736785662, 48.66346053803488], [-1.270367539520245, 48.66343569442244], [-1.270388838378742, 48.66340987275595], [-1.270407542158987, 48.66338318360918], [-1.270423570771704, 48.66335574127042], [-1.270436855583734, 48.66332766325327], [-1.27044733971164, 48.6632990697928], [-1.27045497826543, 48.66327008333164], [-1.270459738540324, 48.66324082799464], [-1.270461600157005, 48.66321142905804], [-1.270460555148925, 48.66318201241276], [-1.27045660799602, 48.66315270402532], [-1.270449775605647, 48.66312362939846], [-1.270440087239897, 48.66309491303365], [-1.270427584390641, 48.66306667789814], [-1.270412320601029, 48.66303904489801], [-1.270394361237073, 48.66301213236121], [-1.270392897659034, 48.66301013257818], [-1.270106857063984, 48.66262174108219], [-1.269687082163444, 48.66164283245227], [-1.26981653655579, 48.66161560307815], [-1.26982337741421, 48.66161413770616], [-1.269865091064444, 48.66160402675553], [-1.269905717133693, 48.66159213014868], [-1.269945081651458, 48.66157849882996], [-1.2699830160499, 48.6615631911723], [-1.270019357885781, 48.66154627272677], [-1.270053951535966, 48.66152781594239], [-1.27008664886429, 48.66150789985558], [-1.270117309855017, 48.66148660975182], [-1.270145803213549, 48.66146403680027], [-1.270172006927848, 48.66144027766325], [-1.270195808791048, 48.66141543408286], [-1.270217106882119, 48.66138961244455], [-1.270235810002012, 48.66136292332196], [-1.270251838064629, 48.66133548100326], [-1.27026512243887, 48.66130740300186], [-1.270275606243274, 48.66127880955306], [-1.27028324458919, 48.66124982309909], [-1.270288004772757, 48.66122056776498], [-1.270289866415058, 48.66119116882693], [-1.270288821549404, 48.66116175217586], [-1.270269740890051, 48.66093727878231], [-1.270265794024517, 48.66090797038357], [-1.270258962049411, 48.66087889574062], [-1.270249274225088, 48.66085017935512], [-1.27023677204102, 48.66082194419423], [-1.270233182056131, 48.66081491628377], [-1.269597700919039, 48.65960383901003], [-1.269609053845238, 48.65960215822248], [-1.269651674764392, 48.65959387628842], [-1.269693386773578, 48.65958376539869], [-1.26973401125136, 48.65957186885098], [-1.269773374234373, 48.65955823758939], [-1.269811307161233, 48.65954292998628], [-1.269847647595015, 48.6595260115928], [-1.269882239918561, 48.65950755485757], [-1.269914936001422, 48.65948763881691], [-1.269945595833175, 48.65946634875604], [-1.269974088124182, 48.65944377584389], [-1.270000290866957, 48.65942001674278], [-1.270024091858895, 48.65939517319449], [-1.270045389182539, 48.65936935158436], [-1.27006409164238, 48.65934266248593], [-1.270080119154757, 48.65931522018735], [-1.270093403091208, 48.65928714220188], [-1.270103886572191, 48.65925854876459], [-1.270111524710154, 48.65922956231795], [-1.270116284802394, 48.65920030698675], [-1.270118146470274, 48.65917090804727], [-1.270117101747046, 48.65914149139039], [-1.270113155111408, 48.65911218298265], [-1.270106323468496, 48.65908310832697], [-1.270096636077227, 48.65905439192488], [-1.270084134425273, 48.65902615674372], [-1.270080556530213, 48.65901915158539], [-1.269411075891587, 48.65774300306033], [-1.269565853591863, 48.65675669477042], [-1.269567601365169, 48.65674373709332], [-1.269569463262825, 48.65671433815771], [-1.26956841891158, 48.65668492149074], [-1.269564472788411, 48.65665561305902], [-1.269557641796359, 48.6566265383656], [-1.269547955191541, 48.65659782191214], [-1.269535454458113, 48.65656958666628], [-1.269520193130551, 48.6565419535347], [-1.269502236563938, 48.65651504084558], [-1.269481661654421, 48.65648896384202], [-1.269458556510084, 48.65646383418835], [-1.269433020072759, 48.65643975949211], [-1.269405161695294, 48.65641684284337], [-1.269375100672503, 48.65639518237292], [-1.269342965730835, 48.65637487083263], [-1.269308894476717, 48.65635599519793], [-1.269273032807683, 48.65633863629557], [-1.269235534287354, 48.65632286845738], [-1.269196559487846, 48.65630875920222], [-1.26916262853336, 48.6562981834199], [-1.269136495008136, 48.65629061484636], [-1.268988205294628, 48.65611944577924], [-1.269010291085044, 48.65610194767583], [-1.269036492542108, 48.65607818878949], [-1.26906029242867, 48.65605334543556], [-1.269081588832051, 48.65602752399849], [-1.269100290560656, 48.65600083505112], [-1.269116317533965, 48.65597339288081], [-1.269129601125851, 48.65594531500052], [-1.269140084458194, 48.65591672164472], [-1.269147722644097, 48.65588773525547], [-1.269152482980682, 48.65585847995746], [-1.26915434508823, 48.65582908102675], [-1.269153300998136, 48.65579966435418], [-1.269134227440882, 48.65557519068673], [-1.269130281657762, 48.65554588223777], [-1.269123451067449, 48.65551680751623], [-1.269113764924241, 48.65548809102384], [-1.269101264710517, 48.65545985572838], [-1.269086003958075, 48.6554322225368], [-1.269068048020019, 48.65540530977762], [-1.26904747378966, 48.65537923269409], [-1.269024369371941, 48.65535410295092], [-1.268998833705899, 48.65533002815609], [-1.268970976140904, 48.65530711139996], [-1.268940915968353, 48.65528545081391], [-1.268908781911078, 48.65526513915032], [-1.268874711571748, 48.65524626338509], [-1.268838850843701, 48.65522890434549], [-1.268801353286841, 48.655213136364], [-1.268762379469088, 48.65519902696008], [-1.268757269236631, 48.65513887940286], [-1.268753323707448, 48.65510957094008], [-1.268746493394273, 48.65508049619511], [-1.268736807550346, 48.65505177967003], [-1.268724307656646, 48.65502354433265], [-1.268709047243712, 48.65499591108996], [-1.26869109166311, 48.65496899827094], [-1.268670517806672, 48.6549429211189], [-1.268647413777702, 48.65491779129897], [-1.268621878513618, 48.65489371641935], [-1.268594021362013, 48.65487079957093], [-1.268563961612583, 48.65484913888533], [-1.268531827986263, 48.65482882711538], [-1.268497758083984, 48.65480995123749], [-1.268461897797104, 48.6547925920794], [-1.26842440068369, 48.6547768239741], [-1.268385427309762, 48.65476271444152], [-1.268380317572448, 48.65470256686568], [-1.268361247881022, 48.65447809305238], [-1.268323109008782, 48.65402914540593], [-1.268319163819607, 48.65399983692596], [-1.26831233390811, 48.6539707621529], [-1.268302648525754, 48.65394204558885], [-1.268290149151539, 48.6539138102019], [-1.268274889313825, 48.65388617689929], [-1.26825693436168, 48.65385926401017], [-1.268236361184278, 48.65383318677816], [-1.268213257881987, 48.65380805686877], [-1.268187723389107, 48.65378398189057], [-1.268159867049952, 48.65376106493483], [-1.268129808150682, 48.65373940413363], [-1.268097675408675, 48.65371909224042], [-1.268063606420984, 48.65370021623199], [-1.268027747075171, 48.65368285693667], [-1.267990250925186, 48.65366708868808], [-1.267951278532913, 48.65365297900674], [-1.267910996781438, 48.65364058831106], [-1.267889278484877, 48.65363502030965], [-1.267878490865959, 48.65362134640148], [-1.267855387839747, 48.65359621641954], [-1.267829853625704, 48.65357214136124], [-1.267801997566924, 48.65354922431813], [-1.26777193894839, 48.65352756342274], [-1.267739806486219, 48.65350725142885], [-1.267705737776346, 48.65348837531378], [-1.267669878705053, 48.65347101590619], [-1.267632382825192, 48.65345524754026], [-1.267593410697427, 48.65344113773701], [-1.267588302041469, 48.65338099012033], [-1.267584357331311, 48.65335168161379], [-1.267577527932584, 48.65332260679559], [-1.267567843094553, 48.65329389016819], [-1.267555344293898, 48.65326565469983], [-1.267540085056544, 48.65323802129807], [-1.26752213072894, 48.65321110829264], [-1.267501558197581, 48.65318503092753], [-1.267478455560138, 48.65315990086886], [-1.267452921747994, 48.65313582572582], [-1.267425066102583, 48.65311290859039], [-1.267395007907111, 48.65309124759547], [-1.267362875875895, 48.65307093549527], [-1.267328807603012, 48.65305205926753], [-1.267292948972847, 48.65303469974147], [-1.267255453536431, 48.65301893125173], [-1.267216481852471, 48.65300482131981], [-1.267211373691557, 48.65294467368454], [-1.267207429235275, 48.65291536516409], [-1.267200600113647, 48.6528862903226], [-1.267190915574816, 48.65285757366248], [-1.267178417094186, 48.65282933815214], [-1.267163158196261, 48.65280170469937], [-1.26714520422607, 48.65277479163404], [-1.267124632068633, 48.65274871420046], [-1.267101529819878, 48.65272358406501], [-1.267075996409632, 48.65269950883732], [-1.267048141177611, 48.65267659160956], [-1.2670180834052, 48.65265493051508], [-1.26698595180492, 48.65263461830857], [-1.266951883969008, 48.6526157419682], [-1.266916025780009, 48.65259838232363], [-1.266878530786959, 48.6525826137101], [-1.266839559546844, 48.65256850364954], [-1.266799278937716, 48.6525561125621], [-1.266777561232482, 48.65255054434953], [-1.266766774148376, 48.6525368703357], [-1.266743672175721, 48.65251174012775], [-1.266718139044312, 48.65248766481987], [-1.266690284092646, 48.65246474750482], [-1.266660226600911, 48.65244308631618], [-1.266628095280507, 48.65242277400903], [-1.266594027722372, 48.65240389756194], [-1.266558169807894, 48.65238653780515], [-1.266520675084968, 48.65237076907427], [-1.266481704109341, 48.6523566588918], [-1.266441423758047, 48.65234426767835], [-1.266419706183908, 48.65233869939787], [-1.266408919242508, 48.65232502535014], [-1.266385817545932, 48.65229989506964], [-1.26636028469334, 48.65227581968172], [-1.26633243002203, 48.6522529022793], [-1.26630237281103, 48.65223124099649], [-1.266270241770462, 48.65221092858866], [-1.266236174490065, 48.6521920520349], [-1.266200316850128, 48.65217469216588], [-1.266162822397325, 48.65215892331765], [-1.266123851686207, 48.65214481301329], [-1.266083571592707, 48.65213242167385], [-1.266042154599092, 48.65212180235978], [-1.265999778055658, 48.65211300054336], [-1.265956623420752, 48.65210605391435], [-1.265912875484958, 48.65210099221865], [-1.265868721578667, 48.6520978371305], [-1.265824350770799, 48.65209660216021], [-1.265779953058792, 48.65209729259588], [-1.265565234978596, 48.65210529493217], [-1.265564010075018, 48.65210351771958], [-1.265558099721171, 48.65209516997105], [-1.265537528664513, 48.65206909225135], [-1.265514427520835, 48.65204396179471], [-1.265488895215245, 48.65201988621218], [-1.265461041082685, 48.65199696859754], [-1.265430984399902, 48.65197530708571], [-1.265398853874662, 48.65195499443319], [-1.265364787094685, 48.65193611762], [-1.265328929937941, 48.65191875747796], [-1.265291435949048, 48.65190298834428], [-1.265252465680695, 48.65188887774331], [-1.265212186006839, 48.65187648609732], [-1.265170769407908, 48.65186586646805], [-1.26512839323258, 48.65185706432921], [-1.265085238937582, 48.65185011737188], [-1.2650414913121, 48.6518450553434], [-1.264997337685145, 48.65184189991935], [-1.26495296712442, 48.65184066461158], [-1.264908569626382, 48.65184135470968], [-1.264864335302858, 48.65184396725858], [-1.264820453567093, 48.65184849107122], [-1.264777112322459, 48.65185490677651], [-1.264734497158342, 48.65186318690206], [-1.264692790554871, 48.6518732959921], [-1.264652171102629, 48.65188519075899], [-1.264612812736543, 48.65189882026875], [-1.264574883992418, 48.65191412615918], [-1.264538547284675, 48.65193104288948], [-1.26450395821095, 48.6519494980213], [-1.264471264885723, 48.65196941252851], [-1.264440607306687, 48.65199070113582], [-1.26441211675427, 48.65201327268374], [-1.264385915230399, 48.65203703051932], [-1.264362114935544, 48.65206187290922], [-1.264340817788459, 48.65208769347618], [-1.264322114989449, 48.65211438165397], [-1.264306086630169, 48.65214182316092], [-1.264301626188233, 48.65215055735173], [-1.264166032643881, 48.65242531464685], [-1.264040002301679, 48.65262002460328], [-1.264033310772368, 48.65261274501855], [-1.264007778887022, 48.65258866910688], [-1.263979925114314, 48.65256575113308], [-1.263949868729473, 48.65254408923357], [-1.263917738439084, 48.65252377616649], [-1.263883671829691, 48.65250489891371], [-1.263847814778663, 48.65248753830879], [-1.263810320830177, 48.65247176869106], [-1.263771350536644, 48.65245765758685], [-1.263731070772201, 48.65244526542068], [-1.263689654017675, 48.65243464525645], [-1.263647277622342, 48.65242584257015], [-1.263604123043931, 48.65241889505523], [-1.263560375072805, 48.65241383246144], [-1.263516221039516, 48.65241067646678], [-1.263510334167446, 48.65241051249878], [-1.263386915314049, 48.65226762841789], [-1.263223605410788, 48.65181911054817], [-1.263221011555977, 48.65181222543225], [-1.263208515563496, 48.65178398948688], [-1.263193259163793, 48.65175635550361], [-1.263175307690865, 48.65172944181417], [-1.263154738018979, 48.65170336366604], [-1.263131638233894, 48.6516782327284], [-1.263106107254464, 48.65165415661426], [-1.263078254410093, 48.6516312384198], [-1.263048198971974, 48.65160957628235], [-1.263016069642637, 48.65158926296111], [-1.262982004004587, 48.65157038543902], [-1.262946147930937, 48.65155302455089], [-1.262908654961708, 48.65153725463703], [-1.262869685645174, 48.65152314322529], [-1.262829406851174, 48.65151075074139], [-1.26278799105652, 48.65150013025051], [-1.262745615606171, 48.65149132723012], [-1.262702461954199, 48.65148437937527], [-1.262658714886611, 48.65147931643676], [-1.2626145617302, 48.65147616009445], [-1.262570191550649, 48.65147492386388], [-1.262525794342739, 48.65147561303865], [-1.262481560217137, 48.65147822466767], [-1.262437678586148, 48.65148274756785], [-1.262394337352786, 48.65148916237199], [-1.262369354803716, 48.65149401595424], [-1.262325885753237, 48.65144382511859], [-1.26231585801224, 48.65132561076925], [-1.262311916535395, 48.65129630207705], [-1.262305090463347, 48.65126722694063], [-1.262295409031111, 48.65123850986361], [-1.262282913700821, 48.65121027381619], [-1.262267657983531, 48.65118263970845], [-1.262249707210603, 48.65115572587305], [-1.262229138253366, 48.65112964755771], [-1.26220603919404, 48.65110451643245], [-1.262180508948863, 48.65108044011111], [-1.26215265684388, 48.65105752169075], [-1.262122602147209, 48.65103585930966], [-1.26209047355812, 48.65101554572809], [-1.262056408655981, 48.65099666793008], [-1.262020553310768, 48.65097930675158], [-1.261983061059364, 48.65096353653421], [-1.261944092446987, 48.6509494248071], [-1.261903814340457, 48.65093703199729], [-1.26188209787623, 48.65093146285618], [-1.261871312470162, 48.65091778837994], [-1.261848213686936, 48.65089265718218], [-1.261822683720535, 48.65086858078079], [-1.261794831895948, 48.6508456622731], [-1.261764777479932, 48.65082399979784], [-1.261732649170679, 48.65080368611563], [-1.261698584546278, 48.65078480821095], [-1.261662729475606, 48.65076744692023], [-1.261625237494306, 48.6507516765856], [-1.261586269146418, 48.65073756473651], [-1.261545991297701, 48.65072517180074], [-1.261504576420833, 48.65071455084539], [-1.261462201857035, 48.65070574734993], [-1.261419049056143, 48.65069879901119], [-1.261375302800984, 48.65069373558247], [-1.261331150414657, 48.6506905787454], [-1.261286780959627, 48.6506893420178], [-1.261242384427537, 48.65069003069527], [-1.26056481687667, 48.6507152553984], [-1.260520583317875, 48.65071786627048], [-1.260476702173916, 48.65072238841985], [-1.26043336134563, 48.65072880248253], [-1.260431488533844, 48.65072912449299], [-1.259874123426037, 48.65082551819031], [-1.259833381146567, 48.6508334744922], [-1.259791674411981, 48.65084358179891], [-1.259751054632241, 48.65085547482908], [-1.259711695744052, 48.65086910265617], [-1.259709832200713, 48.65086980282769], [-1.259459122500573, 48.65096434597109], [-1.25945118691998, 48.65095686172099], [-1.259423336127008, 48.65093394263692], [-1.259393282679617, 48.65091227953973], [-1.259361155271703, 48.65089196519268], [-1.259327091477558, 48.65087308658296], [-1.259291237162501, 48.65085572455023], [-1.259253745858919, 48.65083995343969], [-1.259214778107973, 48.65082584078413], [-1.259174500772866, 48.65081344701476], [-1.259133086324076, 48.65080282520225], [-1.259090712101005, 48.65079402082975], [-1.259047559551991, 48.6507870715979], [-1.259003813458803, 48.65078200726371], [-1.258959661143879, 48.65077884951278], [-1.258915291669305, 48.65077761186679], [-1.258870895026822, 48.65077829962532], [-1.258599820364705, 48.65078838611784], [-1.258422610617829, 48.65077146742679], [-1.258208110623003, 48.65052577293941], [-1.258081668658664, 48.65038094134821], [-1.258062005235674, 48.65035978860352], [-1.258036477352027, 48.65033571135761], [-1.258008627547584, 48.65031279192861], [-1.257978575080649, 48.65029112845951], [-1.257946448640701, 48.65027081371486], [-1.257912385798155, 48.65025193468377], [-1.257876532414253, 48.65023457220759], [-1.257839042017106, 48.65021880063346], [-1.257800075144298, 48.65020468749621], [-1.257766150703821, 48.65019410833483], [-1.257742449690629, 48.6501872406014], [-1.257729796980189, 48.65017119625846], [-1.257706700608994, 48.65014606422444], [-1.257702029481069, 48.65014165847588], [-1.257708711670491, 48.65014213646401], [-1.257753080554858, 48.6501433745773], [-1.257797476652176, 48.65014268725187], [-1.258475037877902, 48.65011747891333], [-1.259152598424431, 48.65009226656781], [-1.259582154246484, 48.65007628050577], [-1.259607682738344, 48.65010035740767], [-1.259635533153758, 48.65012327644822], [-1.259665586234122, 48.65014493948303], [-1.25969771328784, 48.65016525374578], [-1.259731776741737, 48.65018413224618], [-1.259767630730155, 48.65020149414186], [-1.259805121718989, 48.65021726508498], [-1.259844089164099, 48.6502313775403], [-1.259884366198087, 48.65024377107482], [-1.259925780345239, 48.65025439261614], [-1.259968154259916, 48.6502631966801], [-1.260011306486668, 48.65027014556553], [-1.260055052236131, 48.6502752095152], [-1.260099204177774, 48.65027836684406], [-1.260143573241097, 48.65027960403166], [-1.260187969425965, 48.65027891577989], [-1.260366799764803, 48.65027225915025], [-1.260916312994063, 48.65042943997123], [-1.260919743033335, 48.65043041367211], [-1.260961157552769, 48.65044103483906], [-1.261003531805895, 48.65044983852], [-1.261046684335785, 48.6504567870153], [-1.261090430351795, 48.65046185056956], [-1.261134582522234, 48.65046500749948], [-1.261178951775666, 48.65046624428603], [-1.261223348111114, 48.65046555563313], [-1.261267581411516, 48.65046294448968], [-1.261311462258052, 48.65045842203734], [-1.261354802741415, 48.65045200764241], [-1.261397417266263, 48.6504437287731], [-1.261439123346553, 48.65043362088157], [-1.261479742386504, 48.65042172725261], [-1.261519100445716, 48.65040809881771], [-1.261522344266088, 48.65040687664039], [-1.262041823126057, 48.6502098958564], [-1.262220652974087, 48.65020323633309], [-1.262264885992075, 48.65020062480458], [-1.262308766520086, 48.6501961019702], [-1.262352106650231, 48.65018968719788], [-1.262394720788729, 48.65018140795747], [-1.262436426451212, 48.65017129970271], [-1.262477045043402, 48.65015940572], [-1.262516402627174, 48.65014577694229], [-1.262554330664245, 48.65013047173147], [-1.262590666738594, 48.65011355562835], [-1.262625255251808, 48.65009510107183], [-1.262657948089665, 48.6500751870888], [-1.262688605255711, 48.65005389895571], [-1.262717095471677, 48.6500313278333], [-1.262743296739013, 48.65000757037614], [-1.262767096861346, 48.64998272831905], [-1.262788393925038, 48.64995690804089], [-1.262807096735599, 48.6499302201095], [-1.262823125207908, 48.64990277880811], [-1.262836410709447, 48.64987470164572], [-1.26284689635386, 48.64984610885379], [-1.26285453724438, 48.64981712287205], [-1.262859300666517, 48.64978786782335], [-1.262861166227403, 48.64975846898275], [-1.262860125943583, 48.64972905224062], [-1.262855023324356, 48.64966890439776], [-1.262891358964173, 48.64965198819876], [-1.262897111337971, 48.64964891899226], [-1.262920546885713, 48.64966373641364], [-1.262954611209495, 48.64968261395649], [-1.262990465952789, 48.64969997484421], [-1.263027957578233, 48.64971574473321], [-1.263066925538972, 48.64972985609289], [-1.263107202965406, 48.64974224849479], [-1.263148617380163, 48.64975286887157], [-1.263190991436487, 48.64976167174392], [-1.263234143678067, 48.64976861941564], [-1.263277889315779, 48.64977368213501], [-1.263322041019452, 48.64977683822207], [-1.263366409719626, 48.64977807416159], [-1.263410805417724, 48.64977738466101], [-1.263455037999421, 48.6497747726729], [-1.263498918048915, 48.6497702493826], [-1.263542257660395, 48.64976383415988], [-1.263584871242218, 48.64975555447652], [-1.263626576312336, 48.64974544578834], [-1.263667194279345, 48.64973355138332], [-1.263706551207462, 48.6497199221963], [-1.2637444785613, 48.64970461659112], [-1.263780813927815, 48.64968770011005], [-1.263815401711532, 48.64966924519371], [-1.263848093801447, 48.64964933087056], [-1.263878750204264, 48.6496280424184], [-1.26390723964503, 48.64960547099938], [-1.263933440128433, 48.64958171326932], [-1.263957239461497, 48.64955687096427], [-1.263978535733963, 48.64953105046413], [-1.263997237754635, 48.64950436233774], [-1.264013265442112, 48.64947692086908], [-1.264026550166852, 48.64944884356775], [-1.264037035045897, 48.64942025066615], [-1.264044675186058, 48.6493912646042], [-1.264049437875681, 48.64936200950522], [-1.264050037679547, 48.64935619542077], [-1.264070627781031, 48.6491356083739], [-1.264679263045339, 48.64925883500618], [-1.264695854476627, 48.64926204163707], [-1.264739006497544, 48.64926898874229], [-1.264782751852183, 48.6492740508872], [-1.264826903211711, 48.64927720639443], [-1.264871271508188, 48.64927844175122], [-1.264915666744675, 48.64927775166751], [-1.264959898808886, 48.64927513909835], [-1.265003778287217, 48.64927061523151], [-1.265047117276275, 48.64926419943933], [-1.265089730187134, 48.64925591919604], [-1.265131434540705, 48.64924580995967], [-1.265172051748442, 48.64923391502076], [-1.265211407877758, 48.64922028531639], [-1.265249334397003, 48.64920497921249], [-1.265285668896492, 48.64918806225357], [-1.265320255784705, 48.64916960688235], [-1.265352946954017, 48.64914969212915], [-1.265383602415446, 48.64912840327354], [-1.265412090898079, 48.64910583147959], [-1.265438290410399, 48.64908207340465], [-1.265462088763887, 48.64905723078611], [-1.265483384052379, 48.6490314100054], [-1.265502085088999, 48.64900472163245], [-1.26551811179624, 48.64897727995241], [-1.265531395549058, 48.64894920247567], [-1.26554187946869, 48.64892060943532], [-1.265549518665685, 48.64889162327205], [-1.265554280432846, 48.64886236810948], [-1.265556144384359, 48.64883296922316], [-1.265555102543665, 48.64880355250369], [-1.265551159377112, 48.64877424391793], [-1.265544331775008, 48.64874516896948], [-1.265534648978963, 48.64871645216127], [-1.265522152456946, 48.64868821646234], [-1.265506895725028, 48.64866058278119], [-1.265488944119027, 48.64863366944871], [-1.265468374513767, 48.64860759171042], [-1.265467318357225, 48.64860635776631], [-1.265108290742707, 48.64818842699301], [-1.265098186395368, 48.64806937969079], [-1.265094243552576, 48.64804007108788], [-1.265087416314201, 48.64801099611078], [-1.265077733920315, 48.64798227926248], [-1.265065237837146, 48.6479540435123], [-1.26504998157893, 48.64792640976897], [-1.265032030479383, 48.64789949636354], [-1.265011461411174, 48.64787341854196], [-1.264988362457105, 48.64784828797214], [-1.26496283253289, 48.64782421226547], [-1.264934980963199, 48.64780129451641], [-1.26490492701385, 48.64777963286042], [-1.264872799380956, 48.64775932005455], [-1.264838735639748, 48.6477404430796], [-1.264802881655267, 48.64772308276801], [-1.26476539095856, 48.64770731345767], [-1.26472642408813, 48.64769320267377], [-1.264721319443902, 48.64763305490573], [-1.264717376854887, 48.64760374628899], [-1.264710549893571, 48.64757467128859], [-1.264700867798805, 48.64754595440763], [-1.264688372035581, 48.64751771861549], [-1.264673116116692, 48.64749008482116], [-1.26465516537448, 48.6474631713559], [-1.264634596680052, 48.6474370934659], [-1.264611498114612, 48.64741196281933], [-1.264585968592196, 48.64738788702801], [-1.264558117435775, 48.64736496918663], [-1.264528063909387, 48.64734330743112], [-1.264495936707368, 48.647322994519], [-1.264461873403011, 48.64730411743143], [-1.264426019859597, 48.64728675700139], [-1.264388529606175, 48.64727098756731], [-1.26434956317947, 48.64725687665478], [-1.264344459030127, 48.64719672886822], [-1.264340516694849, 48.64716742023762], [-1.264333690010571, 48.64713834521392], [-1.264324008214945, 48.64710962830027], [-1.264311512771605, 48.6470813924662], [-1.264296257192066, 48.64705375862086], [-1.264278306807167, 48.64702684509578], [-1.264257738486521, 48.64700076713734], [-1.264234640309729, 48.64697563641404], [-1.264209111189072, 48.64695156053803], [-1.26418126044592, 48.6469286426044], [-1.264151207342514, 48.64690698074941], [-1.264119080571311, 48.64688666773103], [-1.264085017703824, 48.64686779053086], [-1.264049164601437, 48.64685042998234], [-1.264011674791361, 48.64683466042444], [-1.263972708808321, 48.64682054938334], [-1.263971199218068, 48.64680275851145], [-1.263998988471207, 48.64680474491445], [-1.264043354566644, 48.64680598059213], [-1.264087747632468, 48.64680529082904], [-1.264131977565683, 48.64680267857911], [-1.26417585496182, 48.64679815502858], [-1.264219191926377, 48.64679173954851], [-1.264261802879103, 48.64678345961177], [-1.26430350534928, 48.64677335067508], [-1.264344120756358, 48.64676145602773], [-1.264383475175781, 48.64674782660551], [-1.264421400082856, 48.64673252077311], [-1.264457733074971, 48.64671560407394], [-1.264492318566881, 48.64669714894956], [-1.264525008457336, 48.64667723442924], [-1.26455566276235, 48.64665594579175], [-1.264836009219659, 48.64644803632938], [-1.264864496430049, 48.6464254646674], [-1.264890694805139, 48.64640170671344], [-1.264914492161005, 48.64637686420419], [-1.26493578659592, 48.64635104352061], [-1.264954486926504, 48.64632435523226], [-1.264970513078529, 48.64629691362375], [-1.264983796429309, 48.64626883620548], [-1.264994280101499, 48.64624024321015], [-1.265001919207087, 48.64621125707818], [-1.265006681038976, 48.64618200193307], [-1.265008545211193, 48.64615260305034], [-1.265007503746238, 48.64612318632061], [-1.265003561108822, 48.64609387771075], [-1.264996734187014, 48.64606480272445], [-1.264989903379634, 48.64604454245179], [-1.265014825625601, 48.6460419728591], [-1.265058161831685, 48.64603555706136], [-1.265100772005814, 48.64602727681216], [-1.265142473680547, 48.64601716756955], [-1.265183088278752, 48.64600527262417], [-1.26522244187927, 48.64599164291305], [-1.265260365961005, 48.64597633680219], [-1.265296698124843, 48.64595941983609], [-1.265331282789075, 48.64594096445749], [-1.265363971856008, 48.64592104969677], [-1.265394625345315, 48.64589976083366], [-1.265423111994495, 48.64587718903207], [-1.265449309820204, 48.64585343094941], [-1.265473106640858, 48.64582858832326], [-1.265494400556968, 48.64580276753487], [-1.265755069458492, 48.64579305154337], [-1.265772979196844, 48.64581575822255], [-1.265796077609587, 48.64584088863758], [-1.265821606926068, 48.64586496416175], [-1.265849457827533, 48.6458878816983], [-1.265879511053381, 48.64590954310922], [-1.265911637911414, 48.64592985563535], [-1.265945700829321, 48.64594873229355], [-1.265981553943478, 48.64596609224963], [-1.266019043723838, 48.64598186116371], [-1.266058009631259, 48.64599597150961], [-1.266098284804835, 48.6460083628632], [-1.266139696777027, 48.64601898216135], [-1.266182068211568, 48.6460277839297], [-1.266225217663399, 48.6460347304766], [-1.266268960355128, 48.6460397920552], [-1.266313108969253, 48.64604294699035], [-1.266357474449682, 48.64604418177191], [-1.266401866811489, 48.64604349111211], [-1.266446095954736, 48.6460408779686], [-1.266489972478291, 48.64603635353157], [-1.266533308491429, 48.64602993717579], [-1.266575918417976, 48.64602165637795], [-1.26661761979161, 48.64601154659838], [-1.266658234036437, 48.64599965113001], [-1.266697587232899, 48.64598602091219], [-1.266735510861556, 48.64597071431295], [-1.266771842525254, 48.64595379687906], [-1.266806426644442, 48.64593534105515], [-1.266839115123726, 48.64591542587348], [-1.266869767985235, 48.64589413661577], [-1.26715010063301, 48.64568622148019], [-1.267178586373696, 48.64566364924158], [-1.267201309811727, 48.64564304089839], [-1.267202888615175, 48.64564976359452], [-1.267212571773251, 48.64567848026767], [-1.267225068496407, 48.64570671578795], [-1.267240325276267, 48.64573434924575], [-1.267258276784646, 48.64576126230905], [-1.267278846153914, 48.64578733973091], [-1.267301945305865, 48.64581246984243], [-1.267327475328621, 48.64583654503107], [-1.26735532690045, 48.64585946220151], [-1.267385380757753, 48.6458811232175], [-1.267417508205675, 48.64590143532125], [-1.267731271833974, 48.64608719789241], [-1.267765335541209, 48.64610607400944], [-1.267801189395414, 48.64612343339581], [-1.267838679863325, 48.64613920171438], [-1.26787764640298, 48.64615331144121], [-1.267917922150836, 48.64616570215483], [-1.267959334636677, 48.64617632079519], [-1.268001706522117, 48.64618512189044], [-1.26804485636, 48.64619206775189], [-1.268088599371633, 48.64619712863564], [-1.268132748237976, 48.64620028286959], [-1.268177113901778, 48.64620151694643], [-1.268221506377474, 48.64620082558155], [-1.268265735564487, 48.64619821173561], [-1.268309612061622, 48.64619368660171], [-1.268352947978177, 48.64618726955773], [-1.268395557738438, 48.64617898808306], [-1.2684372588767, 48.64616887764134], [-1.268447394099241, 48.64616590896419], [-1.268449590586014, 48.64616798020381], [-1.268477442852547, 48.64619089710095], [-1.268507497391025, 48.64621255782209], [-1.268539625503675, 48.64623286961074], [-1.268573689612769, 48.6462517454872], [-1.268609543849828, 48.64626910462045], [-1.268647034679709, 48.64628487267432], [-1.268686001558932, 48.64629898212604], [-1.268726277622536, 48.64631137255545], [-1.268767690398904, 48.64632199090349], [-1.268810062548333, 48.64633079169962], [-1.268853212622927, 48.64633773725659], [-1.268896955842513, 48.64634279783162], [-1.268941104887373, 48.64634595175399], [-1.268985470699497, 48.6463471855178], [-1.269029863292619, 48.64634649383969], [-1.269368615606878, 48.64633385695504], [-1.269707367750954, 48.64632121906873], [-1.271062374624998, 48.64627065750675], [-1.27110660372576, 48.64626804256405], [-1.271150480028231, 48.64626351634216], [-1.271193815642528, 48.64625709822361], [-1.271236424994235, 48.64624881569243], [-1.271278125619488, 48.64623870421661], [-1.27131873894559, 48.64622680709625], [-1.27135809105692, 48.64621317527769], [-1.271396013438695, 48.64619786713598], [-1.271432343699075, 48.64618094822439], [-1.271466926264546, 48.64616249099389], [-1.271499613046367, 48.64614257448277], [-1.271530264073983, 48.64612128397837], [-1.271558748095485, 48.64609871065148], [-1.271584943138739, 48.64607495116614], [-1.271608737034133, 48.64605010726596], [-1.271630027894668, 48.64602428533765], [-1.27164872455239, 48.6459975959561], [-1.27166474694854, 48.64597015341067], [-1.271678026476597, 48.64594207521574], [-1.271688506275845, 48.64591348160725], [-1.271696141474479, 48.6458844950284], [-1.271700899382406, 48.64585523960456], [-1.271702759630382, 48.64582584061235], [-1.271701714257694, 48.64579642394293], [-1.271644471360671, 48.6451230037345], [-1.272321958027498, 48.64509771349931], [-1.272366186031577, 48.64509509807013], [-1.272410061197697, 48.64509057136548], [-1.272453395640871, 48.64508415276993], [-1.272496003791699, 48.64507586976968], [-1.272537703191492, 48.64506575783456], [-1.27257831527277, 48.64505386026671], [-1.272617666125266, 48.64504022801446], [-1.272655587239515, 48.6450249194546], [-1.272691916229212, 48.64500800014225], [-1.272726497526198, 48.64498954253009], [-1.272759183047207, 48.64496962565801], [-1.272789832827121, 48.64494833481497], [-1.272818315619306, 48.64492576117317], [-1.272844509456945, 48.64490200139802], [-1.272868302175501, 48.64487715723426], [-1.272889591893089, 48.64485133506981], [-1.272908287446635, 48.64482464548063], [-1.272924308782113, 48.64479720275694], [-1.27293758729752, 48.64476912441381], [-1.272948066136517, 48.64474053068786], [-1.272955700431373, 48.6447115440228], [-1.272960457495915, 48.64468228854435], [-1.272962316964414, 48.64465288952941], [-1.272961270879596, 48.64462347286923], [-1.272904012456773, 48.64395005323777], [-1.273581482694302, 48.64392475555202], [-1.273625709601678, 48.64392213963634], [-1.273669583631467, 48.64391761244895], [-1.273712916903578, 48.64391119337644], [-1.273755523853586, 48.64390290990713], [-1.273797222027959, 48.64389279751281], [-1.273837832864453, 48.64388089949751], [-1.273877182458136, 48.64386726681157], [-1.273915102304979, 48.6438519578336], [-1.273951430024032, 48.64383503812054], [-1.273986010052632, 48.64381658012673], [-1.274018694312931, 48.64379666289378], [-1.274049342845163, 48.64377537171208], [-1.274077824408071, 48.64375279775539], [-1.274104017040114, 48.64372903769042], [-1.274127808581931, 48.64370419326315], [-1.274149097156654, 48.64367837086265], [-1.274167791606122, 48.64365168106583], [-1.274183811880989, 48.64362423816385], [-1.274197089383846, 48.64359615967259], [-1.274207567262631, 48.64356756582918], [-1.27421520065379, 48.64353857907794], [-1.274219956874987, 48.64350932354495], [-1.274221815564109, 48.6434799245073], [-1.2742207687672, 48.64345050785631], [-1.274201677281148, 48.64322603484481], [-1.274197729514475, 48.6431967265459], [-1.274190897672223, 48.64316765210213], [-1.274187472985768, 48.64315645109572], [-1.273980249800817, 48.64252033029841], [-1.273973987980495, 48.64250281520471], [-1.273963700112937, 48.64247911258057], [-1.273252844011215, 48.64099570532226], [-1.273250632292986, 48.64099117314227], [-1.273235373650357, 48.6409635404763], [-1.273217420656545, 48.64093662834119], [-1.273196850192413, 48.64091055197729], [-1.273173750346637, 48.64088542304627], [-1.273148220038789, 48.64086134915271], [-1.273120368595218, 48.64083843338307], [-1.27309031528114, 48.64081677386445], [-1.273058188789973, 48.64079646334479], [-1.273024126692071, 48.64077758879494], [-1.272988274845399, 48.64076023103707], [-1.272950786771874, 48.64074446439815], [-1.272911822998786, 48.64073035639183], [-1.272871550372292, 48.64071796742937], [-1.272830141342687, 48.64070735056087], [-1.272787773226192, 48.64069855124835], [-1.272744627445044, 48.64069160717072], [-1.272700888751956, 48.64068654806299], [-1.272656744437692, 48.64068339558835], [-1.272644785092978, 48.64068287343442], [-1.271339680241708, 48.64063355217802], [-1.271307278729035, 48.64063284162025], [-1.271262891208775, 48.64063353418106], [-1.271218667069485, 48.64063614918511], [-1.271174795680783, 48.64064067543477], [-1.271131464901798, 48.64064709354857], [-1.271094756082534, 48.64065422987862], [-1.271057070301718, 48.64064987032941], [-1.271012926122666, 48.64064671722124], [-1.27096856528768, 48.64064548424215], [-1.270924177751633, 48.64064617667176], [-1.270585464124228, 48.64065881816081], [-1.270541239927523, 48.64066143290332], [-1.270497368455827, 48.64066595889355], [-1.270454037568649, 48.64067237675106], [-1.270411432810927, 48.64068065899424], [-1.270369736618329, 48.6406907701583], [-1.270329127536771, 48.64070266694662], [-1.270289779456837, 48.64071629841665], [-1.270251860870266, 48.64073160619777], [-1.270215534147976, 48.64074852474106], [-1.270180954844875, 48.64076698160041], [-1.270148271033558, 48.6407868977424], [-1.27011762267097, 48.64080818788456], [-1.27008914099819, 48.64083076086097], [-1.270062947978976, 48.6408545200125], [-1.270039155777447, 48.64087936360016], [-1.270017866277704, 48.6409051852416], [-1.269497633466494, 48.64092459675575], [-1.269516329360247, 48.64089790771321], [-1.269532351295446, 48.64087046545682], [-1.269545630667528, 48.64084238749966], [-1.269556110616397, 48.64081379407659], [-1.269563746269706, 48.64078480763011], [-1.269568504935328, 48.640755552285], [-1.269570366240798, 48.64072615331754], [-1.269569322220887, 48.64069673661879], [-1.269613546499127, 48.6406941222515], [-1.269657418074899, 48.64068959659981], [-1.269700749078504, 48.64068317904361], [-1.26974335395537, 48.64067489706474], [-1.269785050260679, 48.64066478612869], [-1.269825659440338, 48.64065288953322], [-1.269865007596431, 48.64063925822259], [-1.269902926231084, 48.64062395056943], [-1.269939252968562, 48.64060703212511], [-1.2699738322504, 48.64058857533853], [-1.270006516001925, 48.64056865924611], [-1.270037164265612, 48.64054736913332], [-1.270065645801302, 48.64052479616943], [-1.270091838647574, 48.64050103701674], [-1.270115630644166, 48.64047619341753], [-1.270136919912235, 48.6404503717572], [-1.27015561529064, 48.6404236826095], [-1.270164016302866, 48.64040929292362], [-1.270184648781472, 48.64040214514154], [-1.270222567140205, 48.64038683738238], [-1.270258893598966, 48.64036991883643], [-1.270293472600568, 48.64035146195306], [-1.270326156071557, 48.64033154576914], [-1.270356804055528, 48.6403102555705], [-1.27038528531356, 48.64028768252679], [-1.270411477885451, 48.64026392330068], [-1.27043526961208, 48.64023907963463], [-1.27045655861574, 48.64021325791451], [-1.270475253736472, 48.64018656871426], [-1.270483654617682, 48.64017217900468], [-1.270504286953662, 48.64016503116496], [-1.270542205036416, 48.64014972329974], [-1.2705785312165, 48.64013280465218], [-1.270613109937866, 48.640114347672], [-1.2706457931283, 48.64009443139661], [-1.270676440832554, 48.64007314111211], [-1.270704921812949, 48.64005056798858], [-1.270731114110439, 48.64002680868902], [-1.270754905567124, 48.64000196495623], [-1.270776194306396, 48.63997614317627], [-1.270866951121699, 48.63997275584645], [-1.270911174696101, 48.63997014097809], [-1.270955045523812, 48.63996561482919], [-1.270998375738408, 48.63995919678182], [-1.271040979788516, 48.63995091431998], [-1.271082675233053, 48.63994080291111], [-1.271123283521525, 48.63992890585506], [-1.271162630759792, 48.63991527409801], [-1.271200548453997, 48.63989996601461], [-1.271236874232382, 48.63988304715802], [-1.271271452540579, 48.63986458997883], [-1.271304135308131, 48.63984467351523], [-1.27133478258167, 48.63982338305432], [-1.271363263125314, 48.63980080976664], [-1.271389454981917, 48.63977705031619], [-1.271413245995376, 48.63975220644627], [-1.271434534291103, 48.63972638454357], [-1.271453228712114, 48.63969969518286], [-1.271469249209283, 48.63967225265341], [-1.271482527184142, 48.6396441744695], [-1.271493005782671, 48.63961558086706], [-1.271500640138179, 48.6395865942892], [-1.271505397564232, 48.63955733886136], [-1.271507257693603, 48.63952793986018], [-1.271506212566058, 48.63949852317676], [-1.271550435690421, 48.63949590806151], [-1.271594306047088, 48.63949138166765], [-1.271637635771696, 48.63948496337827], [-1.27168023931503, 48.63947668067839], [-1.271721934238084, 48.63946656903654], [-1.271762541992583, 48.63945467175352], [-1.271801888686786, 48.63944103977648], [-1.271839805829111, 48.63942573148101], [-1.271876131050103, 48.63940881242114], [-1.271910708797868, 48.63939035504843], [-1.271943391004309, 48.63937043840186], [-1.271974037718455, 48.6393491477692], [-1.272002517706823, 48.63932657432196], [-1.272028709014645, 48.63930281472459], [-1.272052499488177, 48.63927797072114], [-1.272073787255186, 48.63925214869886], [-1.272092481160889, 48.63922545923298], [-1.272100881419078, 48.63921106940386], [-1.272121513131137, 48.63920392127245], [-1.272159429997484, 48.63918861287094], [-1.272195754939818, 48.63917169370943], [-1.272230332407367, 48.63915323623996], [-1.272263014333253, 48.63913331950186], [-1.272293660767703, 48.63911202878343], [-1.272322140478452, 48.63908945525634], [-1.272348331511894, 48.63906569558551], [-1.272372121715502, 48.63904085151531], [-1.272393409218102, 48.63901502943321], [-1.272412102866192, 48.6389883399148], [-1.2724281226138, 48.63896089724995], [-1.272441399865818, 48.63893281895366], [-1.272451877771241, 48.63890422526212], [-1.272459511466397, 48.63887523861904], [-1.27246426826761, 48.63884598315003], [-1.27246612781039, 48.63881658413192], [-1.272465082136982, 48.63878716745591], [-1.272459969145012, 48.63872701999766], [-1.272496293653034, 48.63871010074038], [-1.272530870693085, 48.63869164317962], [-1.272563552200146, 48.63867172635519], [-1.272594198226282, 48.63865043555571], [-1.272622677540909, 48.63862786195324], [-1.272648868192137, 48.63860410221299], [-1.272672658029077, 48.63857925807964], [-1.272693945182137, 48.63855343594089], [-1.272784699301957, 48.63855004709133], [-1.272828921526179, 48.63854743148233], [-1.27287279094082, 48.63854290459857], [-1.272916119685472, 48.63853648582521], [-1.272958722215176, 48.63852820264931], [-1.273000416095265, 48.63851809054144], [-1.273041022781938, 48.63850619280449], [-1.273080368388011, 48.63849256038745], [-1.27311828442652, 48.63847725166784], [-1.273154608532823, 48.63846033220149], [-1.273189185159704, 48.63844187444177], [-1.273221866243943, 48.63842195742917], [-1.273252511839365, 48.63840066645319], [-1.27328099071724, 48.63837809268669], [-1.273307180927581, 48.63835433279553], [-1.273330970321356, 48.63832948852504], [-1.273352257030871, 48.63830366626359], [-1.273370949905999, 48.63827697658743], [-1.273379349640187, 48.63826258666374], [-1.273399980781682, 48.63825543830152], [-1.273437896544232, 48.63824012947592], [-1.273474220371857, 48.63822320990797], [-1.273508796718543, 48.63820475205149], [-1.273541477522266, 48.63818483494736], [-1.273572122837972, 48.63816354388557], [-1.27360060143827, 48.63814097003925], [-1.273626791374229, 48.6381172100747], [-1.27365058049804, 48.63809236573743], [-1.273671866943227, 48.63806654341615], [-1.273690559560701, 48.63803985368745], [-1.273706578309028, 48.63801241084218], [-1.273719854597297, 48.63798433239592], [-1.27373033157864, 48.63795573858572], [-1.27373796439332, 48.63792675185566], [-1.273742720361499, 48.63789749633178], [-1.273744579122185, 48.63786809729114], [-1.273743532721059, 48.637838680625], [-1.273738418297175, 48.63777853322018], [-1.273774741690488, 48.63776161355646], [-1.273809317609695, 48.63774315560866], [-1.273841997994614, 48.63772323841824], [-1.273872642902025, 48.63770194727539], [-1.2739011211062, 48.6376793733537], [-1.273927310659986, 48.63765561331972], [-1.27395109941717, 48.63763076891927], [-1.273972385512816, 48.63760494654143], [-1.273988341916095, 48.63758246380847], [-1.274092981970876, 48.63742378403876], [-1.274516024977261, 48.637350547195], [-1.274556758056411, 48.63734258496556], [-1.274598450632842, 48.63733247227532], [-1.274639055984863, 48.6373205739709], [-1.274678400230664, 48.6373069410039], [-1.274716314889497, 48.6372916317542], [-1.274752637602454, 48.63727471177981], [-1.274787212828437, 48.63725625353628], [-1.274819892509898, 48.63723633606632], [-1.274850536706937, 48.63721504466113], [-1.274879014196864, 48.63719247049555], [-1.274905203035301, 48.6371687102373], [-1.274928991079436, 48.63714386563297], [-1.274950276467188, 48.63711804307256], [-1.274968968054167, 48.63709135313363], [-1.274984985803234, 48.63706391010793], [-1.274998261127793, 48.63703583151177], [-1.275008737185095, 48.6370072375829], [-1.275016369119419, 48.63697825076587], [-1.275021124254605, 48.63694899518714], [-1.275022982233276, 48.63691959612397], [-1.275021935104452, 48.6368901794677], [-1.274983750132608, 48.63644123351393], [-1.275027970389064, 48.6364386170556], [-1.275071837767174, 48.636434089329], [-1.275115164415304, 48.63642766972296], [-1.275157764797406, 48.63641938572806], [-1.275199456488025, 48.6364092728184], [-1.275240060952796, 48.63639737430027], [-1.275279404313945, 48.63638374112603], [-1.27531731809424, 48.63636843167646], [-1.275353639938632, 48.6363515115105], [-1.275388214309658, 48.63633305308447], [-1.275420893153669, 48.63631313544174], [-1.275451536534122, 48.63629184387459], [-1.275480013231802, 48.63626926955833], [-1.275506201306031, 48.63624550916116], [-1.275529988616913, 48.63622066443061], [-1.275551273305704, 48.63619484175701], [-1.275569964230892, 48.63616815171839], [-1.275585981358296, 48.636140708607], [-1.275599256103879, 48.63611262993958], [-1.275609731627407, 48.63608403595408], [-1.275617363075461, 48.63605504909528], [-1.275622117773956, 48.63602579348985], [-1.275623975367415, 48.63599639441521], [-1.275622927906417, 48.63596697776274], [-1.275593753560917, 48.6356240137073], [-1.27572732993348, 48.63541881711434], [-1.275913994628841, 48.63536229848137], [-1.275926588624807, 48.63535838129923], [-1.275965930987555, 48.63534474788827], [-1.276003843776064, 48.63532943821046], [-1.27604016463956, 48.63531251782565], [-1.276074738044799, 48.63529405919119], [-1.276107415942247, 48.63527414135133], [-1.276138058399459, 48.63525284959905], [-1.276166534201115, 48.63523027511057], [-1.276192721410376, 48.63520651455489], [-1.276216507891101, 48.63518166968013], [-1.276237791788046, 48.63515584687729], [-1.276256481963114, 48.63512915672487], [-1.276272498385342, 48.63510171351565], [-1.276285772473691, 48.6350736347668], [-1.276296247390805, 48.63504504071663], [-1.276303878285781, 48.63501605381019], [-1.276308632486953, 48.63498679817432], [-1.276310489640904, 48.63495739908661], [-1.27630944180019, 48.63492798243844], [-1.276305493456837, 48.63489867419649], [-1.276298661523359, 48.63486959986282], [-1.276288975259867, 48.63484088393767], [-1.276276476149181, 48.63481264938633], [-1.276261217718462, 48.63478501711246], [-1.276243265310801, 48.63475810544089], [-1.276222695804443, 48.63473202960999], [-1.276199597284027, 48.63470690127922], [-1.276174068663409, 48.63468282805049], [-1.276146219261725, 48.63465991300747], [-1.276116168335477, 48.6346382542741], [-1.276084044567831, 48.634617944595], [-1.276049985517431, 48.63459907093744], [-1.276014137029313, 48.6345817141197], [-1.275976652610864, 48.6345659484648], [-1.275937692773828, 48.63455184148209], [-1.275897424347474, 48.63453945357851], [-1.275872535846114, 48.63453307238326], [-1.275878236533456, 48.63453041663849], [-1.275912809460718, 48.63451195805194], [-1.275945486914341, 48.63449204025729], [-1.275976128963778, 48.63447074854725], [-1.276004604395471, 48.63444817409798], [-1.276030791274136, 48.63442441357815], [-1.276054577465093, 48.63439956873577], [-1.276075861114316, 48.63437374596168], [-1.276094551084808, 48.63434705583439], [-1.276110567346385, 48.63431961264646], [-1.276123841318786, 48.634291533915], [-1.276134316165096, 48.63426293987818], [-1.276141947034752, 48.63423395298109], [-1.276146701256149, 48.63420469735053], [-1.276148558475847, 48.63417529826397], [-1.276147510746104, 48.63414588161291], [-1.276133236696322, 48.63397809567923], [-1.27620251760721, 48.63374544746945], [-1.276486341589427, 48.633422612222], [-1.276504931136149, 48.63343043090574], [-1.276543890263953, 48.63344453769642], [-1.2765841579731, 48.63345692537365], [-1.276625561828044, 48.63346754088998], [-1.276667924527213, 48.63347633878719], [-1.276711064662917, 48.63348328139025], [-1.27675479749775, 48.63348833896912], [-1.276798935756438, 48.63349148986595], [-1.276843290427114, 48.63349272058783], [-1.276887671571274, 48.63349202586427], [-1.276931889136903, 48.63348940867037], [-1.276975753772567, 48.63348488021376], [-1.277019077638362, 48.63347845988637], [-1.277061675210152, 48.63347017518182], [-1.277103364074512, 48.63346006157725], [-1.277143965709167, 48.6334481623819], [-1.277183306248533, 48.6334345285512], [-1.277221217227369, 48.6334192184686], [-1.277257536302676, 48.6334022976957], [-1.277292107948822, 48.63338383869153], [-1.277324784123868, 48.6333639205019], [-1.277355428834517, 48.63334262550371], [-1.277635651575428, 48.63313467477455], [-1.277664117642852, 48.63311210574623], [-1.27769030304258, 48.63308834484506], [-1.277714087782438, 48.63306349965588], [-1.277735370014914, 48.63303767657127], [-1.277754058608887, 48.63301098617103], [-1.277770073540128, 48.6329835427487], [-1.277783346234152, 48.63295546382248], [-1.277793819859199, 48.6329268696315], [-1.277801449570342, 48.63289788262143], [-1.277806202700591, 48.63286862691949], [-1.277808058901484, 48.63283922780354], [-1.277807010229395, 48.63280981116518], [-1.277803061180007, 48.63278050297096], [-1.277796228668711, 48.6327514287227], [-1.277786541958457, 48.63272271292036], [-1.277774042533482, 48.6326944785287], [-1.277758783922827, 48.63266684645068], [-1.277740831469822, 48.63263993501012], [-1.277720262053292, 48.63261385944473], [-1.277697163757356, 48.63258873141268], [-1.277671635494893, 48.63256465851448], [-1.277643786583675, 48.63254174383245], [-1.277613736277792, 48.63252008548925], [-1.277581613257948, 48.63249977622733], [-1.27754755507945, 48.63248090301263], [-1.277511707583898, 48.63246354666127], [-1.277474224274082, 48.63244778149442], [-1.27743526565721, 48.63243367501927], [-1.277394998557355, 48.63242128764055], [-1.277353595400992, 48.63241067240166], [-1.277311233479102, 48.63240187475748], [-1.277275999802325, 48.63239605702935], [-1.276856564046938, 48.63233465206403], [-1.276848658451339, 48.63233352738568], [-1.276804926610711, 48.63232846984234], [-1.276760789371827, 48.63232531894755], [-1.276716435732166, 48.6323240881937], [-1.276672055615764, 48.63232478285091], [-1.276627839060007, 48.63232739994465], [-1.276583975402041, 48.63233192826832], [-1.276562466140949, 48.63233511579632], [-1.276577763732723, 48.63232298763126], [-1.276603949234789, 48.63229922697717], [-1.276627734138136, 48.63227438201248], [-1.276649016594373, 48.63224855912841], [-1.276667705471479, 48.63222186890403], [-1.276683720744047, 48.63219442563225], [-1.276696993836033, 48.6321663468306], [-1.276707467914238, 48.63213775273759], [-1.276715098131436, 48.63210876579846], [-1.276715654673608, 48.63210534066808], [-1.276730048920123, 48.63210035214518], [-1.276767959031653, 48.63208504221124], [-1.276804277296408, 48.63206812158071], [-1.276838848192194, 48.63204966271179], [-1.27687152368025, 48.63202974464983], [-1.276902167770235, 48.63200844977115], [-1.277182384954472, 48.63180050013351], [-1.277210850470456, 48.63177793121601], [-1.277237035389969, 48.63175417041644], [-1.277260819722992, 48.63172932531934], [-1.277282101623793, 48.63170350231677], [-1.27730078996269, 48.63167681198826], [-1.277316804716493, 48.63164936862704], [-1.277330077311516, 48.63162128975096], [-1.277340550916439, 48.63159269559909], [-1.277348180686435, 48.63156370861675], [-1.277352933954155, 48.63153445293123], [-1.277354790370675, 48.63150505382014], [-1.277353741991372, 48.63147563717517], [-1.277349793310669, 48.63144632896284], [-1.277342961242418, 48.63141725468513], [-1.277333275047632, 48.63138853884207], [-1.277320776208428, 48.63136030439861], [-1.277305518251211, 48.63133267225787], [-1.277287566516612, 48.63130576074401], [-1.277266997880298, 48.63127968509501], [-1.277243900423151, 48.63125455696947], [-1.277218373054372, 48.63123048396828], [-1.277190525087919, 48.63120756917414], [-1.277160475773882, 48.63118591071015], [-1.27712835378867, 48.63116560131942], [-1.277094296683174, 48.6311467279683], [-1.277058450294397, 48.6311293714737], [-1.277020968120373, 48.63111360615717], [-1.276982010663492, 48.63109949952671], [-1.276941744742854, 48.63108711198759], [-1.276900342779836, 48.63107649658395], [-1.276857982060364, 48.63106769877135], [-1.276822749370179, 48.63106188090337], [-1.276403325288593, 48.63100047427303], [-1.276395419912719, 48.63099934956334], [-1.276351689277127, 48.6309942918465], [-1.276307553236844, 48.63099114077677], [-1.276274022234329, 48.63099021018049], [-1.276276728059713, 48.63098657400613], [-1.276306899755895, 48.63098345919173], [-1.276350221553404, 48.63097703911633], [-1.27639281711782, 48.63096875465921], [-1.27643450404429, 48.63095864129654], [-1.276475103818793, 48.63094674233649], [-1.276514442583798, 48.63093310873336], [-1.276552351881579, 48.6309177988697], [-1.276588669376391, 48.63090087830631], [-1.276623239549375, 48.63088241950111], [-1.276655914364828, 48.63086250149922], [-1.276686553903514, 48.6308412095943], [-1.276715026962625, 48.63081863496326], [-1.27674121161707, 48.63079487427556], [-1.276764995741579, 48.63077002928002], [-1.276786277491142, 48.63074420636805], [-1.276804965736713, 48.63071751611876], [-1.276820980455644, 48.6306900728252], [-1.276834253074248, 48.63066199400505], [-1.276844726761346, 48.63063339989673], [-1.27685235667139, 48.63060441294577], [-1.276857110136851, 48.63057515727904], [-1.276858966807568, 48.63054575817425], [-1.276857918738077, 48.63051634152298], [-1.276819722222906, 48.63006739600102], [-1.276815773963846, 48.63003808776774], [-1.276808942395356, 48.63000901345562], [-1.276799256776369, 48.62998029756488], [-1.276786758586546, 48.62995206306065], [-1.276771501349572, 48.62992443084642], [-1.276753550402923, 48.62989751924657], [-1.276732982618947, 48.62987144349935], [-1.276729549320241, 48.62986746483568], [-1.276476663328234, 48.62957784201226], [-1.276457000302367, 48.62955669239661], [-1.276431474171338, 48.62953261921744], [-1.276403627502667, 48.62950970422958], [-1.276373579541288, 48.62948804555684], [-1.276341458957355, 48.62946773594337], [-1.276307403296164, 48.6294488623562], [-1.276271558388262, 48.62943150561351], [-1.276234077725409, 48.62941574003775], [-1.276195121803521, 48.6294016331381], [-1.276161207521118, 48.62939105940949], [-1.275671663920481, 48.62924924003848], [-1.275492489760233, 48.62898925064763], [-1.275486581611802, 48.62898090504945], [-1.275466014858981, 48.62895482907335], [-1.275442919368202, 48.62892970058087], [-1.27541739404031, 48.6289056271748], [-1.275389548180392, 48.62888271193941], [-1.275359501029845, 48.62886105299981], [-1.275327381255464, 48.62884074310104], [-1.27529332639883, 48.62882186921168], [-1.275257482287291, 48.62880451215092], [-1.27522000240913, 48.62878874624272], [-1.275181047256886, 48.62877463899758], [-1.275140783639706, 48.62876225082345], [-1.275099383969454, 48.62875163476729], [-1.275057025521884, 48.62874283628743], [-1.275013889678187, 48.62873589305924], [-1.27497016114839, 48.62873083481405], [-1.27492602717981, 48.62872768321159], [-1.274881676755937, 48.62872645174691], [-1.274837299786977, 48.62872714569336], [-1.274793086296908, 48.62872976207931], [-1.274749225609726, 48.62873428970139], [-1.274705905538696, 48.62874070917206], [-1.274663311582513, 48.62874899300289], [-1.274621626130543, 48.62875910572227], [-1.27458102768272, 48.62877100402689], [-1.274541690084141, 48.62878463696774], [-1.274503781781624, 48.6287999461679], [-1.274467465102001, 48.62881686607237], [-1.274432895557254, 48.62883532422917], [-1.274400221178191, 48.62885524159934], [-1.274369581881332, 48.62887653289518], [-1.274368141964546, 48.62887767449459], [-1.274112634600479, 48.62880506445049], [-1.274110664267603, 48.6288045069584], [-1.274069264779765, 48.62879389052982], [-1.27402690647684, 48.62878509166895], [-1.273983770739078, 48.62877814805286], [-1.273940042276147, 48.6287730894144], [-1.273895908334985, 48.62876993741489], [-1.273851557899102, 48.62876870555136], [-1.273807180878683, 48.62876939909858], [-1.273762967297927, 48.62877201508685], [-1.273719106481228, 48.62877654231436], [-1.273675786242452, 48.62878296139539], [-1.273633192080914, 48.62879124484307], [-1.273591506386937, 48.62880135718748], [-1.273550907661476, 48.62881325512687], [-1.273511569750807, 48.62882688771389], [-1.273473661103046, 48.62884219657295], [-1.273437344046604, 48.62885911615073], [-1.273402774095023, 48.62887757399658], [-1.273370099280788, 48.62889749107276], [-1.273367464774375, 48.62889932174514], [-1.273164671443967, 48.62886962389136], [-1.273156766475247, 48.62886849895794], [-1.273113038016893, 48.62886344000381], [-1.273068904048333, 48.6288602876856], [-1.273024553553057, 48.62885905550176], [-1.272980176441572, 48.62885974872856], [-1.272935962738453, 48.62886236439756], [-1.272892101768597, 48.62886689130828], [-1.272848781346547, 48.62887331007648], [-1.272806186972439, 48.62888159321653], [-1.272764501037436, 48.62889170525982], [-1.272723902043569, 48.62890360290601], [-1.272684563838196, 48.62891723520881], [-1.27264665487081, 48.62893254379409], [-1.272610337471123, 48.62894946310952], [-1.272575767154114, 48.62896792070561], [-1.272543091953908, 48.62898783754575], [-1.272512451790582, 48.62900912834459], [-1.2724839778701, 48.62903170193331], [-1.27245779212303, 48.62905546165024], [-1.272434006682353, 48.62908030575392], [-1.272412723403174, 48.62910612785977], [-1.272394033426447, 48.62913281739495], [-1.272378016788911, 48.62916026007208], [-1.272364742079959, 48.62918833837837], [-1.272354266147997, 48.62921693207945], [-1.272346633857358, 48.62924591873325], [-1.272341877895193, 48.62927517421512], [-1.27234001863243, 48.62930457324894], [-1.272341064035654, 48.6293339899437], [-1.272002426905177, 48.62934663563155], [-1.271958212723461, 48.62934925092301], [-1.271914351241295, 48.62935377745916], [-1.27187103027538, 48.6293601958573], [-1.271828435328191, 48.62936847863344], [-1.271786748793407, 48.62937859032057], [-1.271746149175559, 48.62939048761975], [-1.271706810324722, 48.62940411958631], [-1.271668900693128, 48.62941942784746], [-1.271632582613305, 48.62943634685232], [-1.27159801160321, 48.62945480415268], [-1.271565335699867, 48.62947472071324], [-1.271534694826408, 48.62949601124987], [-1.271506220191838, 48.62951858459486], [-1.271480033729739, 48.62954234408748], [-1.271456247576233, 48.62956718798733], [-1.2714349635894, 48.62959300991069], [-1.271416272913253, 48.62961969928552], [-1.271400255587527, 48.62964714182504], [-1.271386980204594, 48.62967522001717], [-1.271376503615718, 48.62970381362797], [-1.271368870688008, 48.6297328002157], [-1.271364114111415, 48.62976205565609], [-1.271362254259423, 48.62979145467315], [-1.271363299101176, 48.62982087137595], [-1.27131908446958, 48.62982348642057], [-1.27127522251657, 48.62982801271183], [-1.271231901060868, 48.62983443086799], [-1.271189305607103, 48.62984271340621], [-1.271147618551036, 48.62985282486037], [-1.271107018399456, 48.62986472193265], [-1.271067679004754, 48.62987835367926], [-1.271029768821441, 48.62989366172841], [-1.270993450184503, 48.62991058053009], [-1.270958878614157, 48.62992903763698], [-1.270926202149942, 48.62994895401464], [-1.270895560717311, 48.62997024437959], [-1.270867085527705, 48.629992817565], [-1.270840898517065, 48.63001657691076], [-1.27081711182381, 48.63004142067713], [-1.27079582730846, 48.63006724248098], [-1.270777136117205, 48.6300939317507], [-1.270768737002421, 48.63010832149103], [-1.270748108827373, 48.63011546938297], [-1.270710198368221, 48.63013077732609], [-1.270673879452686, 48.63014769602617], [-1.270639307602244, 48.63016615303633], [-1.270606630857574, 48.63018606932251], [-1.270575989145366, 48.63020735960169], [-1.270547513678202, 48.63022993270727], [-1.270521326393261, 48.63025369197963], [-1.270497539430202, 48.63027853567924], [-1.270476254650563, 48.63030435742331], [-1.270457563201715, 48.6303310466405], [-1.270441545126748, 48.63035848904473], [-1.270428269021213, 48.63038656712455], [-1.270417791739471, 48.63041516064634], [-1.270410158151609, 48.63044414716888], [-1.270405400950416, 48.6304734025682], [-1.270403540512013, 48.63050280156834], [-1.270403831115774, 48.63051098757071], [-1.269696647122409, 48.6308507515911], [-1.269387286293295, 48.63081539471862], [-1.269591415060345, 48.63040478229461], [-1.26962061355181, 48.63038974478197], [-1.269646975132468, 48.63037545061887], [-1.269679652379816, 48.63035553460676], [-1.269710294561568, 48.63033424456759], [-1.269738770463325, 48.63031167167024], [-1.269764958147905, 48.63028791257698], [-1.269783429072655, 48.6302689424058], [-1.269972774302031, 48.63006332556572], [-1.270837377181262, 48.62961803610125], [-1.27086374046252, 48.62960374039527], [-1.270896416727314, 48.62958382403507], [-1.270927057924234, 48.62956253366936], [-1.270955532843516, 48.62953996046845], [-1.270981719551998, 48.62951620109574], [-1.271000190322731, 48.62949723008906], [-1.271453234019169, 48.62900522306961], [-1.272652962782044, 48.6283166265759], [-1.272684171721257, 48.62829754860034], [-1.272714811378648, 48.62827625775458], [-1.272743284768274, 48.62825368410735], [-1.272768377102465, 48.62823098405403], [-1.273645429307686, 48.62738310290778], [-1.273949098929395, 48.62725753664032], [-1.273961776129604, 48.62725216425382], [-1.273998091850055, 48.62723524450809], [-1.274032660455133, 48.62721678648071], [-1.27406533391575, 48.62719686921344], [-1.274095972318805, 48.62717557799676], [-1.274124444466025, 48.62715300400457], [-1.274150628436297, 48.62712924390388], [-1.27417441210735, 48.62710439944071], [-1.274195693636009, 48.62707857700433], [-1.274202323770031, 48.62706962064916], [-1.274270370676081, 48.62697506064556], [-1.274518237774007, 48.6272405972539], [-1.274527630496047, 48.62725037550652], [-1.274553154558731, 48.62727444911334], [-1.274580999147905, 48.62729736455424], [-1.274611045029868, 48.62731902370021], [-1.274643163543876, 48.62733933380176], [-1.274677217153428, 48.62735820788618], [-1.274713060034711, 48.62737556513017], [-1.274749568279499, 48.62739095119848], [-1.27626417716405, 48.62798516506544], [-1.276265147608915, 48.62798554505973], [-1.276304102454224, 48.62799965193681], [-1.276344365747604, 48.6280120397025], [-1.276385765072152, 48.6280226553091], [-1.276428123145741, 48.62803145329792], [-1.276471258580725, 48.62803839599373], [-1.276514986659683, 48.62804345366585], [-1.276559120127703, 48.6280466046562], [-1.276603469993463, 48.62804783547129], [-1.276647846339021, 48.6280471408405], [-1.276684399891825, 48.62804497711546], [-1.276687877050087, 48.62804485430479], [-1.276692059886724, 48.62804452804312], [-1.278771380745858, 48.62788449453407], [-1.27877556280168, 48.62788416389157], [-1.278819422385624, 48.62787963472728], [-1.278862741190607, 48.62787321370021], [-1.278905333714195, 48.62786492830708], [-1.278947017564607, 48.62785481402794], [-1.278987614240947, 48.62784291417496], [-1.279026949898898, 48.62782927970621], [-1.279064856094181, 48.62781396900802], [-1.27910117050422, 48.62779704764463], [-1.279135737623387, 48.62777858807751], [-1.279168409429128, 48.627758669355], [-1.279199046015016, 48.62773737677382], [-1.279227516190893, 48.62771480151384], [-1.279253698044038, 48.62769104024716], [-1.279277479461234, 48.62766619472512], [-1.279298758608918, 48.62764037134134], [-1.279314707002863, 48.62761789159951], [-1.279789656554071, 48.62689738999161], [-1.279792393841488, 48.62689317905749], [-1.279808405714396, 48.62686573533979], [-1.27982167565748, 48.62683765616672], [-1.279832146851132, 48.62680906177859], [-1.279839774460696, 48.62678007462175], [-1.279844525828255, 48.62675081882422], [-1.279846380612661, 48.62672141966406], [-1.279845330876583, 48.62669200303325], [-1.279841381120181, 48.62666269489817], [-1.279834548262022, 48.62663362076055], [-1.279824861566117, 48.62660490511973], [-1.279812362517101, 48.62657667093986], [-1.279797104642177, 48.62654903912302], [-1.279779153281699, 48.62652212799178], [-1.279758585309454, 48.62649605278263], [-1.279757528703951, 48.62649481831334], [-1.279652071250022, 48.62637206012624], [-1.279875272508158, 48.62607205191524], [-1.281753461943795, 48.62495505370313], [-1.281775772328495, 48.62494117003791], [-1.281806406096058, 48.62491987675553], [-1.281834873508565, 48.62489730084347], [-1.281853013602492, 48.62488118913314], [-1.281992969806598, 48.62475090412556], [-1.282001008826768, 48.62474325395918], [-1.282024787494682, 48.62471840786216], [-1.282046063986311, 48.6246925839633], [-1.282064747195131, 48.6246658928459], [-1.282080757120157, 48.62463844880679], [-1.282094025208265, 48.62461036936661], [-1.2821044946474, 48.62458177476684], [-1.282112120610581, 48.62455278745478], [-1.282116870446906, 48.62452353155894], [-1.282118723821819, 48.62449413235807], [-1.282117672803986, 48.62446471574414], [-1.282113721899103, 48.62443540768351], [-1.282106888030572, 48.62440633367755], [-1.282097200466841, 48.62437761822509], [-1.282084700696202, 48.62434938428942], [-1.282069442248937, 48.6243217527716], [-1.282051490467715, 48.62429484199298], [-1.282030922228523, 48.62426876718838], [-1.282007825610525, 48.62424364001276], [-1.281982299519224, 48.62421956806305], [-1.281954453263003, 48.62419665441759], [-1.28192856902515, 48.62417783220956], [-1.281761589950823, 48.6240631114826], [-1.281757427029535, 48.62406027646122], [-1.281725307737269, 48.62403996835099], [-1.281691253729915, 48.62402109635866], [-1.281686539751807, 48.62401867519647], [-1.281092638173931, 48.62371639624983], [-1.282346382912698, 48.62227399650104], [-1.283017264546404, 48.62184480232968], [-1.283021535787126, 48.62184204564879], [-1.283052167141299, 48.62182075202924], [-1.283080632242095, 48.62179817580327], [-1.283106809198158, 48.62177441364735], [-1.283130585917551, 48.6217495673162], [-1.283151860586738, 48.62172374320732], [-1.283170542107148, 48.62169705190474], [-1.283186550484832, 48.62166960770618], [-1.28319981717322, 48.62164152813292], [-1.283210285366672, 48.62161293342695], [-1.283217910243022, 48.62158394603607], [-1.283222659156424, 48.6215546900892], [-1.283224511776062, 48.62152529086523] ], [ [-1.228405273609063, 48.63323697927023], [-1.228373524950881, 48.63325630711471], [-1.228342863504479, 48.63327758608698], [-1.228314367358256, 48.6333001486841], [-1.228288158537942, 48.63332389829133], [-1.228269668795805, 48.63334286399222], [-1.228073423058105, 48.63355570015795], [-1.228004273534877, 48.6335821889051], [-1.227972352325202, 48.63359520943156], [-1.227936016544877, 48.63361211457213], [-1.227901426642934, 48.63363055867426], [-1.227868730737751, 48.63365046275892], [-1.227838068837712, 48.63367174159557], [-1.227809572241789, 48.63369430406654], [-1.22779648123575, 48.6337061664686], [-1.227835302957707, 48.63357623718851], [-1.227841527941735, 48.63355192164688], [-1.227846310180241, 48.6335226680258], [-1.227848195594525, 48.63349326972713], [-1.227847176116204, 48.63346385263888], [-1.227843256115759, 48.63343454272958], [-1.227836452384361, 48.63340546550847], [-1.22782679406138, 48.63337674548815], [-1.227816528907832, 48.63335303684518], [-1.227551568345862, 48.63279887084621], [-1.227549361996159, 48.63279433964719], [-1.227534130938863, 48.63276670088419], [-1.227516205315198, 48.63273978157721], [-1.227513500665574, 48.63273634740746], [-1.227545221184305, 48.63275642859933], [-1.227579260787302, 48.63277531667875], [-1.227615091274279, 48.63279268865445], [-1.227652559211712, 48.63280847013521], [-1.227691504154242, 48.63282259354083], [-1.227731759330795, 48.63283499839128], [-1.227745668272853, 48.63283880275819], [-1.228026052989257, 48.63291309183324], [-1.228405273609063, 48.63323697927023] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1.262664007482672, 48.59801431075241], [-1.262662968383006, 48.59798489391701], [-1.262659030879443, 48.5979555851424], [-1.262652211837911, 48.59792650993304], [-1.26264254046345, 48.59789779279289], [-1.262630058175067, 48.59786955669247], [-1.262614818427883, 48.59784192254202], [-1.262596886484972, 48.59781500867436], [-1.262576339136929, 48.59778893033752], [-1.262553264373569, 48.59776379920143], [-1.262527761006931, 48.59773972288009], [-1.262499938248054, 48.59771680447032], [-1.262469915239455, 48.59769514211074], [-1.262437820544413, 48.5976748285613], [-1.262403791597453, 48.59765595080577], [-1.262367974114633, 48.59763858968024], [-1.262330521470347, 48.59762281952594], [-1.262291594040508, 48.59760870787162], [-1.262257702418959, 48.59759812952174], [-1.261444686919695, 48.59736233454655], [-1.261438343075305, 48.59736052012381], [-1.26139697211201, 48.59734989909548], [-1.261354642474715, 48.59734109553191], [-1.261311535421268, 48.59733414713043], [-1.261267835538396, 48.5973290836444], [-1.261223729950733, 48.59732592675577], [-1.261179407520268, 48.59732468998261], [-1.261135058037362, 48.59732537862071], [-1.261090871408246, 48.59732798972133], [-1.261047036841909, 48.59733251210368], [-1.261003742039826, 48.5973389264027], [-1.260961172392459, 48.59734720515201], [-1.260919510185055, 48.59735731290185], [-1.260878933817968, 48.59736920637014], [-1.260839617041973, 48.59738283462858], [-1.260801728214498, 48.59739813932027], [-1.260765429579041, 48.59741505490967], [-1.260730876570226, 48.59743350896311], [-1.260698217148339, 48.59745342245916], [-1.26066759116557, 48.59747471012703], [-1.260639129767152, 48.59749728081107], [-1.260612954830354, 48.59752103786196], [-1.260589178441556, 48.59754587954995], [-1.260567902417213, 48.59757169950064], [-1.260549217867186, 48.59759838715041], [-1.26053320480495, 48.59762582821987], [-1.260519931804631, 48.59765390520345], [-1.260509455707282, 48.59768249787204], [-1.260501821377913, 48.59771148378819], [-1.260497061512491, 48.59774073883042], [-1.260495196498548, 48.59777013772445], [-1.260496234327311, 48.5977995545799], [-1.260500170559851, 48.59782886342913], [-1.260502533204371, 48.59784043920406], [-1.26068589218455, 48.59865869617723], [-1.260690347461777, 48.59867619573216], [-1.260700017872409, 48.59870491303608], [-1.260712499285572, 48.59873314934578], [-1.260727738258476, 48.59876078374815], [-1.260745669539156, 48.59878769790737], [-1.260766216346592, 48.59881377657148], [-1.26078929069922, 48.59883890806648], [-1.260814793791318, 48.59886298477383], [-1.260842616416502, 48.59888590359184], [-1.260872639435033, 48.59890756637692], [-1.260904734284372, 48.59892788036397], [-1.260938763528894, 48.59894675856394], [-1.260974581449463, 48.59896412013557], [-1.261012034666751, 48.59897989073242], [-1.261046994967765, 48.59899266348113], [-1.261447711504358, 48.5991290247514], [-1.261451679356045, 48.59913036407725], [-1.261491915909994, 48.59914275708487], [-1.261533288366374, 48.59915337807792], [-1.261575619558406, 48.59916218157462], [-1.261618728213312, 48.5991691298759], [-1.261662429728399, 48.59917419322756], [-1.261706536962524, 48.59917734994673], [-1.261750861036715, 48.59917858651572], [-1.261795212143482, 48.59917789763902], [-1.261839400359428, 48.5991752862667], [-1.261883236458838, 48.59917076358131], [-1.261926532723912, 48.59916434895025], [-1.261969103748877, 48.59915606984265], [-1.262010767233879, 48.59914596171171], [-1.262051344765294, 48.59913406784322], [-1.262090662580837, 48.5991204391698], [-1.262128552312529, 48.59910513405278], [-1.262164851708398, 48.59908821803263], [-1.262199405327045, 48.59906976354785], [-1.262232065203728, 48.59904984962498], [-1.2622626914831, 48.59902856154037], [-1.262291153019188, 48.59900599045445], [-1.262317327936222, 48.59898223302151], [-1.262341104150659, 48.59895739097645], [-1.262362379851261, 48.598931570698], [-1.262381063934981, 48.59890488275408], [-1.262397076396957, 48.59887744142787], [-1.262410348673095, 48.5988493642285], [-1.262420471754249, 48.59882188414993], [-1.26264939976048, 48.59810306363474], [-1.262649751929934, 48.59810195087174], [-1.262657385082044, 48.5980729648129], [-1.262662143723765, 48.59804370968134], [-1.262664007482672, 48.59801431075241] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1.259951358449833, 48.59677750910579], [-1.259950320960319, 48.59674809224385], [-1.259946385132316, 48.59671878337404], [-1.259940451310562, 48.59669286667325], [-1.259823344930708, 48.59626567713719], [-1.259822461459552, 48.59626251846414], [-1.259812792018544, 48.59623380108239], [-1.259800311729302, 48.59620556467094], [-1.259785074038713, 48.59617793014136], [-1.259767144200699, 48.59615101582806], [-1.25974659899714, 48.5961249369809], [-1.259723526408521, 48.59609980527215], [-1.259698025237646, 48.59607572831819], [-1.259670204686183, 48.59605280921858], [-1.259640183886917, 48.59603114611487], [-1.259608091394093, 48.59601083177006], [-1.259574064632345, 48.59599195317169], [-1.259538249308718, 48.59597459115903], [-1.259500798788273, 48.59595882007746], [-1.25946187343783, 48.59594470745951], [-1.259421639938898, 48.59593231373614], [-1.259380270574244, 48.59592169197803], [-1.259337942490186, 48.59591288766791], [-1.259294836937639, 48.59590593850642], [-1.259251138497013, 48.59590087424989], [-1.259207034286729, 48.59589771658396], [-1.259162713162918, 48.59589647902966], [-1.259118364910288, 48.5958971668864], [-1.259074179414845, 48.59589977721015], [-1.259035110725622, 48.59590371249357], [-1.258687945908628, 48.59594558091786], [-1.258318735609614, 48.59567264666158], [-1.258297990001303, 48.59565798384798], [-1.258276829149192, 48.59564458859183], [-1.258275631532106, 48.59563044105737], [-1.258271696766173, 48.59560113212832], [-1.258264880576721, 48.59557205665402], [-1.258255212156456, 48.59554333913969], [-1.258242732911818, 48.59551510255734], [-1.258227496284858, 48.59548746781944], [-1.258209567525281, 48.59546055326118], [-1.258189023410072, 48.59543447413348], [-1.258165951915178, 48.59540934210986], [-1.258140451838667, 48.59538526480796], [-1.258112632377513, 48.59536234532898], [-1.258082612659901, 48.59534068181593], [-1.258050521235483, 48.59532036703363], [-1.258016495524355, 48.59530148797152], [-1.257980681228725, 48.5952841254708], [-1.257943231709739, 48.59526835387897], [-1.25790430732952, 48.59525424073076], [-1.2578640747656, 48.59524184645943], [-1.25782270629673, 48.59523122413794], [-1.25778037906543, 48.59522241925152], [-1.257737274318858, 48.59521546950301], [-1.257693576634047, 48.59521040465171], [-1.257649473126181, 48.59520724638539], [-1.257605152648353, 48.59520600822789], [-1.257560804982554, 48.59520669548106], [-1.255530334423245, 48.5952822925235], [-1.255486149296388, 48.5952849014606], [-1.255442316005351, 48.59528942169678], [-1.255399022246033, 48.5952958338763], [-1.255356453404481, 48.59530411054188], [-1.255314791762565, 48.5953142162525], [-1.255274215718201, 48.59532610773503], [-1.255234899020583, 48.59533973406954], [-1.25519701002702, 48.59535503690741], [-1.255156778048931, 48.59534264168449], [-1.25511541006839, 48.5953320183844], [-1.25507308322562, 48.59532321249674], [-1.255029978766578, 48.59531626172873], [-1.254986281266639, 48.59531119584371], [-1.254942177840328, 48.59530803653405], [-1.254897857340378, 48.59530679732815], [-1.254853509548899, 48.59530748353229], [-1.254809324364887, 48.59531009220804], [-1.254765490991137, 48.59531461218504], [-1.254722197123985, 48.59532102410851], [-1.254690489067425, 48.59532699728374], [-1.253355816934831, 48.59560184247675], [-1.253344955896982, 48.59560414558872], [-1.253303293603267, 48.5956142505669], [-1.253262716842036, 48.59562614133607], [-1.253223399365842, 48.5956397669794], [-1.253185509535248, 48.59565506915105], [-1.253175382432152, 48.59565978765932], [-1.252865074545886, 48.59365920604927], [-1.252863639256538, 48.59365074067758], [-1.25285764402191, 48.59362458518964], [-1.252585381295466, 48.59263384110065], [-1.252584563758907, 48.59263092078733], [-1.25257489914268, 48.59260220278884], [-1.252562423811752, 48.59257396558297], [-1.252547191191886, 48.5925463300848], [-1.252529266515183, 48.5925194146327], [-1.252508726541501, 48.59249333448146], [-1.252485659229001, 48.59246820130903], [-1.252460163357647, 48.59244412273797], [-1.252432348106505, 48.59242120187489], [-1.25241487697886, 48.59240824724332], [-1.251979031592758, 48.59209737695413], [-1.251966487352612, 48.59208866653147], [-1.251934400467683, 48.592068350031], [-1.251900379246742, 48.59204946914733], [-1.251864569372736, 48.59203210472995], [-1.251827124187523, 48.5920163311342], [-1.251788204035023, 48.59200221590357], [-1.25174797557454, 48.59198981948016], [-1.2517066110674, 48.59197919494619], [-1.251664287638739, 48.59197038779638], [-1.251621186519885, 48.59196343574321], [-1.251577492272165, 48.5919583685559], [-1.251533391996014, 48.59195520793214], [-1.251489074530776, 48.59195396740589], [-1.251444729645432, 48.59195465228925], [-1.251400547226629, 48.59195725964946], [-1.251356716465288, 48.59196177832161], [-1.251313425046599, 48.59196818895667], [-1.251270858346494, 48.591976464104], [-1.251229198637651, 48.5919865683291], [-1.251188624309814, 48.59199845836513], [-1.251149309104682, 48.59201208329835], [-1.25111142137331, 48.59202738478619], [-1.251075123354419, 48.59204429730681], [-1.251040570480038, 48.59206274843972], [-1.25100791070957, 48.59208265917602], [-1.250977283897043, 48.59210394425647], [-1.250948821191211, 48.59212651253684], [-1.250922644474657, 48.59215026737801], [-1.250898865841694, 48.59217510705953], [-1.250877587118231, 48.59220092521575], [-1.250858899425718, 48.59222761129072], [-1.250842882791099, 48.59225505101182], [-1.250829605803749, 48.59228312687905], [-1.250819125321867, 48.59231171866839], [-1.250811486229189, 48.59234070394593], [-1.250809724264255, 48.59234961940842], [-1.250461573890365, 48.59425912167232], [-1.250458570613717, 48.59427946084583], [-1.250456699867439, 48.59430885958132], [-1.25045773176081, 48.59433827653275], [-1.25046166188016, 48.59436758573226], [-1.250468473401107, 48.59439666167287], [-1.25047813716058, 48.59442537984659], [-1.250490611781436, 48.59445361727698], [-1.250492943577972, 48.59445823516749], [-1.251077414192019, 48.59559521142408], [-1.251090315022103, 48.59561822923565], [-1.251108240032599, 48.59564514490879], [-1.251128780566573, 48.59567122530714], [-1.251151848669221, 48.59569635874895], [-1.251177345561618, 48.5957204376075], [-1.25120516206392, 48.59574335877172], [-1.251235179062686, 48.59576502408829], [-1.251267268020917, 48.59578534078098], [-1.251301291528468, 48.59580422184921], [-1.251315739617673, 48.59581151578874], [-1.252119283414854, 48.59620600914748], [-1.252140648016082, 48.59621607964807], [-1.252178096422398, 48.59623185313787], [-1.252217019953297, 48.59624596823284], [-1.252257251929447, 48.59625836448858], [-1.252298620068022, 48.59626898882127], [-1.252340947220525, 48.59627779573455], [-1.252384052131446, 48.59628474751499], [-1.252427750214418, 48.59628981439334], [-1.252471854342847, 48.59629297467178], [-1.252516175651031, 48.5962942148171], [-1.252560524343349, 48.59629352951876], [-1.252604710506777, 48.59629092171126], [-1.252648544924313, 48.59628640256212], [-1.252691839885509, 48.59627999142339], [-1.252734409989931, 48.59627171574932], [-1.252776072941799, 48.59626161097858], [-1.252816650329969, 48.59624972038235], [-1.252855968392475, 48.59623609487915], [-1.252893858760378, 48.59622079281705], [-1.252930159178989, 48.59620387972324], [-1.252930811381681, 48.59620353146014], [-1.25294601231869, 48.5962263549829], [-1.252966554041572, 48.59625243505064], [-1.252969983170753, 48.59625641443407], [-1.253096274526067, 48.59640125213645], [-1.25311591479258, 48.59642240580183], [-1.253141412991772, 48.59644648422193], [-1.253169230789157, 48.596469404908], [-1.253199249065662, 48.59649106970851], [-1.253231339279068, 48.5965113858498], [-1.253265364013658, 48.59653026633346], [-1.253301177569539, 48.59654763030848], [-1.253338626586067, 48.59656340341826], [-1.25337755069856, 48.5965775181183], [-1.25341778322527, 48.59658991396594], [-1.253459151880971, 48.59660053787889], [-1.253501479515129, 48.59660934436283], [-1.253542907217218, 48.59661606197049], [-1.254395742211183, 48.59673562503283], [-1.254397419872113, 48.59673585875591], [-1.25444111854913, 48.5967409248654], [-1.254485223199002, 48.5967440843679], [-1.254529544953849, 48.59674532373347], [-1.254573894016031, 48.59674463765499], [-1.254618080471026, 48.5967420290703], [-1.254661915100532, 48.59673750915009], [-1.254705210193203, 48.59673109724988], [-1.254747780348104, 48.59672282082709], [-1.254789443269178, 48.59671271532367], [-1.254830020545437, 48.59670082401388], [-1.254869338415356, 48.59668719781935], [-1.254907228510858, 48.5966718950911], [-1.254943528578389, 48.59665498135906], [-1.254978083173735, 48.59663652905213], [-1.255010744327796, 48.59661661718745], [-1.25504137218013, 48.59659533103245], [-1.255069835577649, 48.59657276173942], [-1.255096012636749, 48.59654900595508], [-1.255119791264716, 48.59652416540705], [-1.255141069639958, 48.59649834646783], [-1.255157019293216, 48.59647586953799], [-1.25522963646685, 48.59636573706141], [-1.255236028833706, 48.59637100381518], [-1.255266047940746, 48.59639266807368], [-1.255298138925216, 48.59641298363562], [-1.255332164368319, 48.59643186350485], [-1.255367978566886, 48.59644922683323], [-1.255405428157614, 48.59646499926679], [-1.255444352773365, 48.59647911326404], [-1.255484585730211, 48.59649150838517], [-1.255525954741108, 48.59650213155112], [-1.255568282654003, 48.59651093727071], [-1.255611388210127, 48.59651788783566], [-1.255655086820098, 48.5965229534817], [-1.255699191355242, 48.59652611251633], [-1.255743512948078, 48.59652735141188], [-1.255787861801767, 48.5965266648629], [-1.255817773487415, 48.59652489867574], [-1.255823554401863, 48.59652470773709], [-1.256230543149746, 48.59795792463168], [-1.255541047028008, 48.59938115419852], [-1.255533319924131, 48.59939826307819], [-1.255522840632357, 48.59942685528763], [-1.255515203167816, 48.59945584086849], [-1.255510440240224, 48.59948509570052], [-1.255508572250161, 48.59951449451059], [-1.255509607201626, 48.59954391140847], [-1.255513540667899, 48.59957322042644], [-1.255520355810229, 48.59960229605846], [-1.255530023450098, 48.59963101379777], [-1.255542502193576, 48.59965925066977], [-1.255557738609325, 48.59968688575911], [-1.255575667456272, 48.5997138007268], [-1.255596211963908, 48.59973988031781], [-1.255619284160441, 48.59976501285378], [-1.255644785249421, 48.59978909071189], [-1.255672606033038, 48.59981201078542], [-1.255702627379527, 48.59983367492561], [-1.255707698903188, 48.59983706624144], [-1.256198454988837, 48.60016176286954], [-1.25622547715802, 48.60017868687334], [-1.256259505493429, 48.60019756646323], [-1.256295322690277, 48.60021492949797], [-1.256332775372293, 48.60023070162501], [-1.256371703159067, 48.60024481530403], [-1.256411939353164, 48.60025721009674], [-1.256453311653609, 48.60026783292536], [-1.256495642894322, 48.60027663830027], [-1.256538751802245, 48.60028358851456], [-1.256582453773667, 48.60028865380546], [-1.256626561665486, 48.60029181248214], [-1.256670886595852, 48.60029305101826], [-1.256715238753678, 48.60029236411008], [-1.256759428211032, 48.60028975469916], [-1.256803265736901, 48.6002852339597], [-1.25684656360739, 48.60027882125065], [-1.256889136409773, 48.60027054403302], [-1.256930801836662, 48.60026043775189], [-1.256971381466119, 48.60024854568512], [-1.257010701526846, 48.60023491875757], [-1.257048593641232, 48.60021961532317], [-1.257084895547114, 48.60020270091513], [-1.257119451792359, 48.60018424796509], [-1.257152114400977, 48.6001643354931], [-1.257182743505889, 48.60014304876899], [-1.257211207949192, 48.60012047894766], [-1.257229351547495, 48.60010436687913], [-1.258137644118331, 48.59925896598441], [-1.258680604352984, 48.59908281891148], [-1.258716194767939, 48.59907039158392], [-1.258754085487661, 48.59905508758405], [-1.258790385981052, 48.59903817263405], [-1.258824940802077, 48.59901971916798], [-1.258857601980818, 48.59899980620806], [-1.258888229656414, 48.59897851902629], [-1.258916692676795, 48.59895594877941], [-1.258934830757792, 48.59893984067655], [-1.259171199868516, 48.59871983140947], [-1.259474356223216, 48.59853939698603], [-1.259496456349145, 48.59852563942481], [-1.259527083466228, 48.59850435207158], [-1.259555545932252, 48.59848178166527], [-1.259581721867451, 48.59845802485735], [-1.259605499183967, 48.59843318337989], [-1.259626776065823, 48.59840736360928], [-1.259645461404939, 48.59838067611123], [-1.259661475191016, 48.59835323516699], [-1.259674748854365, 48.59832515828409], [-1.259685225559388, 48.59829656569279], [-1.25969286044753, 48.59826757983201], [-1.259694945031975, 48.59825685489147], [-1.259946817523598, 48.59682543806711], [-1.259949493152837, 48.59680690799236], [-1.259951358449833, 48.59677750910579] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1.254579729149947, 48.59822121266042], [-1.254578694768946, 48.59819179575207], [-1.254574761954692, 48.59816248669985], [-1.254567947553149, 48.59813341100927], [-1.254558280749611, 48.59810469318647], [-1.254545802943203, 48.59807645620485], [-1.25453056757024, 48.59804882097853], [-1.254512639874632, 48.59802190584469], [-1.254492096629147, 48.59799582605688], [-1.254469025805975, 48.59797069329133], [-1.254443526200109, 48.59794661516895], [-1.25441570700658, 48.59792369479444], [-1.254385687352557, 48.59790203031459], [-1.25436673900003, 48.59789003491503], [-1.254375526750358, 48.59787937250336], [-1.254394214676664, 48.59785268586207], [-1.254410231156526, 48.59782524565184], [-1.254423507608784, 48.59779716937713], [-1.25443398718565, 48.59776857726585], [-1.254441625016658, 48.59773959175458], [-1.254446388400006, 48.59771033696431], [-1.254448256943366, 48.59768093816884], [-1.254447222650275, 48.59765152125848], [-1.254443289954745, 48.5976222122009], [-1.254436475702223, 48.59759313650175], [-1.254426809077383, 48.59756441866699], [-1.254414331478548, 48.59753618167021], [-1.254399096341237, 48.59750854642555], [-1.254381168908259, 48.59748163127037], [-1.254360625951283, 48.59745555145822], [-1.254337555441141, 48.59743041866553], [-1.254312056171765, 48.59740634051322], [-1.254284237336669, 48.59738342010597], [-1.254254218061284, 48.59736175559107], [-1.254222126893361, 48.59734143973743], [-1.254188101251836, 48.59732255953907], [-1.254152286838941, 48.59730519584223], [-1.254114837015858, 48.59728942299935], [-1.254075912146411, 48.59727530855058], [-1.254035678910148, 48.59726291293472], [-1.25399430958856, 48.59725228923053], [-1.253951981327723, 48.59724348292905], [-1.253916774952248, 48.59723765800342], [-1.253497660559697, 48.59717616737184], [-1.253489761006026, 48.59717504107898], [-1.253446062047994, 48.59716997460642], [-1.253401957090288, 48.59716681470356], [-1.253357634992236, 48.5971655749013], [-1.253313285542723, 48.5971662605085], [-1.2532690986479, 48.59716886858938], [-1.253225263517834, 48.59717338797604], [-1.253181967856458, 48.59717979931626], [-1.253139397057852, 48.59718807515635], [-1.253097733412258, 48.59719818005896], [-1.253057155326247, 48.59721007075426], [-1.253017836557686, 48.59722369632577], [-1.252979945472796, 48.59723899842815], [-1.252943644324689, 48.59725591153686], [-1.25290908855882, 48.597274363229], [-1.252876426146965, 48.59729427449319], [-1.252845796954463, 48.59731556006806], [-1.252817332140237, 48.59733812880711], [-1.252791153595885, 48.59736188406926], [-1.252767373423613, 48.59738672413238], [-1.252746093455865, 48.59741254262912], [-1.252727404819447, 48.59743922900204], [-1.25271138754534, 48.59746666897733], [-1.252698110225676, 48.59749474505379], [-1.252687629720053, 48.59752333700656], [-1.252679990912307, 48.59755232240108], [-1.252675226517568, 48.59758157711809], [-1.252673356942813, 48.59761097588475], [-1.252674390198794, 48.59764039281117], [-1.252678321866105, 48.5976697019295], [-1.252685023359526, 48.59769830081823], [-1.252679475384746, 48.59770054129492], [-1.252643173803025, 48.5977174543079], [-1.252608617610178, 48.59773590590888], [-1.252575954780237, 48.59775581708682], [-1.252545325180001, 48.59777710258079], [-1.252516859970052, 48.59779967124452], [-1.252490681044125, 48.59782342643738], [-1.252466900505647, 48.59784826643747], [-1.252445620188778, 48.59787408487775], [-1.252426931221824, 48.59790077120097], [-1.252410913637165, 48.59792821113346], [-1.252397636028273, 48.59795628717443], [-1.252387155255943, 48.59798487909906], [-1.252379516205231, 48.59801386447276], [-1.252374751592247, 48.59804311917658], [-1.252372881824926, 48.5980725179376], [-1.252373914914839, 48.59810193486606], [-1.252377846443302, 48.59813124399403], [-1.252384659579837, 48.59816031981494], [-1.252394325154478, 48.59818903782123], [-1.252406801782209, 48.59821727503727], [-1.252415245537604, 48.59823327715994], [-1.252836850810517, 48.59898641926226], [-1.252843641512518, 48.59899805262291], [-1.252861568663461, 48.59902496801673], [-1.252882111484306, 48.59905104809576], [-1.252905182010495, 48.5990761811798], [-1.252930681452773, 48.59910025964346], [-1.252958500620303, 48.5991231803775], [-1.252988520388354, 48.59914484523033], [-1.253020612207896, 48.59916516142785], [-1.253054638656694, 48.5991840419715], [-1.253090454027523, 48.59920140601011], [-1.253127904951665, 48.59921717918667], [-1.253166831056545, 48.59923129395642], [-1.2532070656518, 48.5992436898764], [-1.253248436443413, 48.59925431386409], [-1.253290766271475, 48.59926312042469], [-1.253333873869247, 48.59927007184644], [-1.25337757463859, 48.59927513836125], [-1.2534216814415, 48.59927829827314], [-1.253466005400803, 48.59927953805043], [-1.253510356709588, 48.5992788523841], [-1.25355454544354, 48.59927624421039], [-1.253598382374725, 48.59927172469814], [-1.253641679781825, 48.59926531320109], [-1.253684252254093, 48.59925703717507], [-1.253725917485558, 48.59924693206003], [-1.253766497055102, 48.59923504112891], [-1.253805817191649, 48.59922141530161], [-1.253843709517346, 48.59920611292741], [-1.253880011769091, 48.59918919953497], [-1.253914568493293, 48.59917074755153], [-1.253947231711843, 48.59915083599297], [-1.253977861555105, 48.59912955012546], [-1.254006326861876, 48.59910698109994], [-1.254032505740221, 48.59908322556196], [-1.254056286089591, 48.59905838523816], [-1.2540775660811, 48.59903256650014], [-1.254087185345545, 48.59901940199093], [-1.254516617729897, 48.59840648252719], [-1.254525686751831, 48.59839296041072], [-1.254541703331873, 48.59836552018291], [-1.254554979853315, 48.59833744389379], [-1.254565459467951, 48.59830885177131], [-1.254573097305214, 48.59827986625212], [-1.254577860663282, 48.59825061145719], [-1.254579729149947, 48.59822121266042] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1.244934546089271, 48.67804491730051], [-1.24493351570951, 48.67801550045651], [-1.244929582273873, 48.67798619122375], [-1.244922762630942, 48.67795711510864], [-1.244913085988195, 48.67792839661905], [-1.244900593787321, 48.67790015873122], [-1.244885339525867, 48.67787252236315], [-1.244867388529058, 48.67784560585709], [-1.244846817669123, 48.67781952447222], [-1.244823715036516, 48.67779438989174], [-1.244798179562681, 48.6777703097443], [-1.244770320596167, 48.67774738714329], [-1.244740257434367, 48.67772572024498], [-1.244708114408646, 48.67770539922147], [-1.244394223785472, 48.67751957179928], [-1.244360156378717, 48.67750069399133], [-1.244324288243035, 48.67748332730861], [-1.244286781778041, 48.67746755133128], [-1.244247797590103, 48.67745343361273], [-1.244207502612789, 48.67744103460591], [-1.244166069391914, 48.67743040740402], [-1.24412367534726, 48.67742159751309], [-1.244080502012313, 48.67741464265776], [-1.244036734257672, 48.67740957261869], [-1.243992559498541, 48.67740640910624], [-1.24394816689311, 48.67740516566649], [-1.24390374653222, 48.67740584762402], [-1.24385948862564, 48.67740845205869], [-1.243815582687555, 48.67741296781817], [-1.243772216724974, 48.67741937556566], [-1.243729576433137, 48.67742764786315], [-1.243687844399748, 48.67743774928812], [-1.243647199324163, 48.67744963658599], [-1.2436078152513, 48.67746325885454], [-1.243569860826956, 48.67747855776268], [-1.243533498575367, 48.67749546779954], [-1.243498884203538, 48.67751391655522], [-1.243466165934544, 48.67753382503125], [-1.243435483872513, 48.6775551079779], [-1.243406969403027, 48.67757767426014], [-1.243380744630294, 48.67760142724728], [-1.243356921854482, 48.67762626522698], [-1.243335603090348, 48.67765208184079], [-1.243316879630905, 48.67767876653925], [-1.243300831656256, 48.67770620505586], [-1.243287527889947, 48.67773427989572], [-1.243278727110202, 48.67775763125716], [-1.243243029203052, 48.67786443889865], [-1.243238084216551, 48.67786680918647], [-1.243203469480654, 48.67788525785253], [-1.243170750853007, 48.67790516624355], [-1.243140068439377, 48.67792644911063], [-1.243111553626586, 48.67794901531867], [-1.243085328520659, 48.67797276823751], [-1.243061505422844, 48.6779976061552], [-1.243040186349538, 48.67802342271328], [-1.243021462594991, 48.6780501073628], [-1.243005414340586, 48.67807754583723], [-1.24299232820615, 48.67810510319966], [-1.242841991643651, 48.6784612872649], [-1.242391759409316, 48.67866883339746], [-1.242371502997508, 48.67867854253739], [-1.242336887384672, 48.67869699094068], [-1.242304167885542, 48.67871689908314], [-1.242273484609662, 48.67873818171695], [-1.24224496894747, 48.67876074770806], [-1.24221874300863, 48.67878450042718], [-1.242194919098005, 48.67880933816316], [-1.24217359923543, 48.67883515455851], [-1.242154874718613, 48.67886183906487], [-1.242138825732093, 48.67888927741626], [-1.242125521003894, 48.67891735211875], [-1.242115017510919, 48.67894594295304], [-1.242107360235505, 48.67897492748949], [-1.2421025819719, 48.67900418161258], [-1.242100703186393, 48.6790335800519], [-1.242101731929324, 48.67906299691909], [-1.242105663800552, 48.67909230624641], [-1.242112481968123, 48.67912138252655], [-1.242122124389684, 48.67915001680446], [-1.242373646397406, 48.67979682214535], [-1.24236907001805, 48.67979816045541], [-1.242329683758956, 48.67981178228248], [-1.242291727172462, 48.67982708076461], [-1.242255362792215, 48.67984399039293], [-1.242220746334375, 48.67986243875949], [-1.242188026030608, 48.67988234686713], [-1.242157341994217, 48.67990362946785], [-1.242128825618916, 48.67992619542803], [-1.242102599017125, 48.67994994811853], [-1.242078774496769, 48.67997478582815], [-1.242057454080316, 48.68000060219954], [-1.242038729067836, 48.68002728668452], [-1.242022679645765, 48.68005472501729], [-1.242009374544244, 48.68008279970378], [-1.241998870741836, 48.68011139052481], [-1.241991213221838, 48.68014037505091], [-1.241986434779856, 48.68016962916648], [-1.241984555882878, 48.68019902760129], [-1.241985584581664, 48.68022844446687], [-1.241989516476334, 48.68025775379556], [-1.241996334734812, 48.68028683008006], [-1.242006010165249, 48.68031554881061], [-1.242018501340543, 48.68034378700863], [-1.242021075164677, 48.68034886818891], [-1.242160235583105, 48.68061825827311], [-1.242172915324542, 48.68064081382126], [-1.242190865876747, 48.68066773074342], [-1.242211436524232, 48.68069381259918], [-1.242234539183178, 48.6807189477005], [-1.242260074926778, 48.68074302841349], [-1.242287934408779, 48.68076595161934], [-1.24231799833175, 48.6807876191557], [-1.242350137957651, 48.68080793823712], [-1.242384215659511, 48.68082682185255], [-1.24242008551064, 48.6808441891378], [-1.242457593908988, 48.68085996572192], [-1.242496580235895, 48.68087408404555], [-1.242536877543106, 48.6808864836505], [-1.242578313268077, 48.68089711143843], [-1.242620709972764, 48.68090592189839], [-1.242663886104114, 48.68091287730176], [-1.242707656770425, 48.68091794786353], [-1.242751834534412, 48.68092111187035], [-1.242796230215084, 48.68092235577296], [-1.242840653698236, 48.68092167424477], [-1.242884914750619, 48.68091907020415], [-1.242928823834548, 48.68091455480241], [-1.242972192919731, 48.68090814737559], [-1.243014836288408, 48.68089987536212], [-1.243056571331089, 48.68088977418474], [-1.243097219327698, 48.68087788709954], [-1.24313660621407, 48.68086426500998], [-1.243174563326563, 48.68084896624927], [-1.243210928124596, 48.68083205633063], [-1.243245544886753, 48.68081360766649], [-1.24327826537783, 48.68079369925844], [-1.243308941607646, 48.68077242219226], [-1.243589580465858, 48.68056456194125], [-1.243618100485184, 48.68054199270226], [-1.24364432667978, 48.68051823966611], [-1.24366815068415, 48.68049340163224], [-1.243689470482456, 48.68046758496224], [-1.243708194782707, 48.68044090020855], [-1.243724243408075, 48.68041346164064], [-1.243737547639432, 48.68038538675587], [-1.243748050510245, 48.68035679577614], [-1.243755707050267, 48.68032781113317], [-1.243760484477721, 48.68029855694417], [-1.243762362339826, 48.68026915848047], [-1.243762273371574, 48.68026661690132], [-1.243768516252946, 48.68025930763273], [-1.244400332810818, 48.67948668911869], [-1.244409341009065, 48.67947528651195], [-1.244428064557697, 48.67944860163864], [-1.244444112473313, 48.67942116296786], [-1.244457416040041, 48.67939308799748], [-1.244467918294228, 48.6793644969495], [-1.244475574268003, 48.67933551225626], [-1.244480351182227, 48.67930625803506], [-1.244482022074771, 48.6792844597129], [-1.244515111585682, 48.67845601613568], [-1.244550065820589, 48.67844579310498], [-1.24458945040786, 48.67843217051377], [-1.244627405241836, 48.67841687126918], [-1.244663767791927, 48.67839996088652], [-1.24469838234635, 48.67838151178032], [-1.244731100679053, 48.67836160295394], [-1.244761782684809, 48.67834031966181], [-1.244790296978695, 48.67831775304387], [-1.244816521459122, 48.67829399973563], [-1.244840343830218, 48.6782691614538], [-1.244861662083301, 48.67824334456137], [-1.244880384933051, 48.67821665961181], [-1.24489643220852, 48.67818922087513], [-1.244909735196751, 48.6781611458495], [-1.244920236936249, 48.67813255475745], [-1.244927892461722, 48.67810357003123], [-1.244932668995611, 48.67807431578845], [-1.244934546089271, 48.67804491730051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1.243219578099792, 48.6859187777448], [-1.243218548562397, 48.68588936090333], [-1.243214615510573, 48.68586005162968], [-1.243207795791383, 48.68583097543035], [-1.243198118612705, 48.6858022568135], [-1.243185625418286, 48.68577401875609], [-1.243170369710349, 48.68574638217675], [-1.243152416819955, 48.68571946541848], [-1.243131843627445, 48.68569338374182], [-1.243108738233587, 48.68566824883111], [-1.243083199581354, 48.68564416831633], [-1.243055337032966, 48.68562124531255], [-1.243025269901181, 48.68559957797767], [-1.24299312693861, 48.68557925909313], [-1.24295904578611, 48.68556037566567], [-1.242923172383281, 48.6855430085554], [-1.242885660344346, 48.6855272321294], [-1.242846670299174, 48.68551311394322], [-1.242806369206451, 48.6855007144517], [-1.242764929638374, 48.68549008674998], [-1.24272252904182, 48.68548127634649], [-1.242687267698694, 48.68547544881101], [-1.242267425868173, 48.68541391417829], [-1.242259507166998, 48.68541278630602], [-1.242215732631882, 48.68540771557486], [-1.242171550958462, 48.68540455136253], [-1.242127151334524, 48.68540330721842], [-1.242082723880948, 48.68540398846992], [-1.242038458837897, 48.68540659219991], [-1.241994545750051, 48.68541110725908], [-1.241951172655156, 48.68541751431376], [-1.241908525278865, 48.68542578592879], [-1.241866786239421, 48.68543588668454], [-1.241826134265893, 48.68544777332929], [-1.241786743432878, 48.68546139496384], [-1.241748782415049, 48.68547669325947], [-1.241712413764977, 48.68549360270815], [-1.241677793217169, 48.6855120509026], [-1.241645069020816, 48.68553195884653], [-1.241614381305827, 48.68555324129258], [-1.241585861481664, 48.68557580710775], [-1.241559631675577, 48.6855995596636], [-1.241535804209197, 48.68562439724946], [-1.241524986590796, 48.68563749434271], [-1.241644546652168, 48.68535428145905], [-1.241644763614356, 48.68535376633652], [-1.241655268713746, 48.68532517555944], [-1.241662927217198, 48.68529619106752], [-1.241667706334819, 48.68526693697703], [-1.241669585606497, 48.68523753855907], [-1.241668556990125, 48.68520812170211], [-1.241664624895416, 48.68517881237371], [-1.241657806165215, 48.68514973608062], [-1.241648130003223, 48.68512101733144], [-1.241642225427855, 48.6851076701785], [-1.241915908717166, 48.68490498822995], [-1.241944431950601, 48.68488241941493], [-1.241970661200633, 48.68485866676972], [-1.241994488089175, 48.68483382909205], [-1.242015810587982, 48.68480801274203], [-1.242034537393528, 48.68478132827072], [-1.242050588318258, 48.68475388994639], [-1.242063894633128, 48.68472581526532], [-1.242074399362814, 48.68469722444857], [-1.242082057529015, 48.68466823992715], [-1.242086836343019, 48.68463898581781], [-1.242088715346092, 48.68460958739148], [-1.242087686497286, 48.68458017053685], [-1.242083754207293, 48.68455086122134], [-1.242076935319858, 48.68452178495176], [-1.242067259039281, 48.68449306623656], [-1.242054766805554, 48.68446482805296], [-1.242039512116662, 48.68443719132034], [-1.242021560299409, 48.68441027438226], [-1.242000988229481, 48.68438419249997], [-1.24197788400287, 48.6843590573588], [-1.241952346557531, 48.68433497658966], [-1.24192448525047, 48.68431205330871], [-1.241894419389249, 48.68429038567502], [-1.241862277720942, 48.68427006647138], [-1.241828197880892, 48.68425118270587], [-1.241792325803084, 48.68423381523996], [-1.241754815096043, 48.68421803844237], [-1.241715826383965, 48.68420391987014], [-1.241675526619839, 48.68419151997991], [-1.241634088370147, 48.68418089186832], [-1.241611653643651, 48.68417622980259], [-1.241840057862589, 48.68400707737588], [-1.241868580620584, 48.68398450857813], [-1.241894809437922, 48.68396075594858], [-1.241918635938335, 48.68393591828494], [-1.241939958095195, 48.68391010194722], [-1.241958684606497, 48.68388341748643], [-1.241974735285942, 48.68385597917077], [-1.241988041405508, 48.6838279044965], [-1.24199854599067, 48.68379931368474], [-1.242006204063806, 48.68377032916635], [-1.242010982836603, 48.68374107505811], [-1.242012861850468, 48.68371167663094], [-1.242011833064451, 48.68368225977355], [-1.242007900888926, 48.6836529504534], [-1.242006161389382, 48.68364553291259], [-1.242141143355307, 48.68354556556547], [-1.24216966571624, 48.68352299669198], [-1.242195894150504, 48.68349924399269], [-1.242219720283411, 48.68347440626558], [-1.242241042089891, 48.68344858987092], [-1.242259768269438, 48.68342190535999], [-1.242275818637153, 48.68339446700121], [-1.242289124466391, 48.68336639229098], [-1.242299628783887, 48.68333780145056], [-1.242307286613118, 48.68330881691107], [-1.242312065166791, 48.68327956278919], [-1.24231394398735, 48.68325016435606], [-1.242312915034567, 48.68322074750031], [-1.242308982719573, 48.68319143818946], [-1.242302163886315, 48.68316236193017], [-1.242292487738732, 48.68313364323087], [-1.242279995716276, 48.68310540506886], [-1.242264741316113, 48.68307776836327], [-1.242246789863708, 48.68305085145758], [-1.242226218233269, 48.68302476961295], [-1.242215683189332, 48.68301330828354], [-1.242423258688441, 48.68285957529984], [-1.242451780533487, 48.68283700635504], [-1.242478008476524, 48.68281325358993], [-1.242501834144882, 48.68278841580286], [-1.242523155515531, 48.68276259935436], [-1.242541881289763, 48.68273591479587], [-1.242557931284436, 48.68270847639617], [-1.242571236774586, 48.68268040165172], [-1.242581740788245, 48.68265181078393], [-1.242589398350329, 48.68262282622402], [-1.242594176674625, 48.68259357208886], [-1.242596055304537, 48.6825641736495], [-1.242595026200715, 48.68253475679471], [-1.24259109377491, 48.68250544749196], [-1.242584274871488, 48.68247637124791], [-1.242574598694808, 48.6824476525709], [-1.242562106684342, 48.68241941443812], [-1.242546852337256, 48.68239177776857], [-1.242528900978777, 48.68236486090563], [-1.24250832948269, 48.68233877911024], [-1.242485225942489, 48.68231364406726], [-1.242459689293214, 48.68228956340731], [-1.242431828888471, 48.68226664024594], [-1.242401764031906, 48.68224497274191], [-1.242369623466337, 48.68222465367724], [-1.242335544822391, 48.68220577005949], [-1.242299674028915, 48.68218840274961], [-1.242262164688921, 48.68217262611546], [-1.242223177420787, 48.68215850771354], [-1.24218287917125, 48.6821461079996], [-1.242141442500375, 48.6821354800697], [-1.242099044842571, 48.68212666943337], [-1.242063785924805, 48.68212084170458], [-1.241643972874622, 48.6820593047727], [-1.241636054715873, 48.68205817685707], [-1.24159228316483, 48.68205310588655], [-1.24154810447902, 48.68204994143317], [-1.24150370783344, 48.68204869704734], [-1.241459283336159, 48.68204937805739], [-1.241415021214711, 48.68205198154737], [-1.241371111001346, 48.68205649636892], [-1.241327740721379, 48.68206290318948], [-1.241285096088494, 48.68207117457477], [-1.241243359709121, 48.68208127510623], [-1.241202710301002, 48.68209316153303], [-1.241163321927699, 48.68210678295695], [-1.241125363253395, 48.68212208105017], [-1.24108899682063, 48.68213899030557], [-1.241054378354356, 48.68215743831664], [-1.241021656094894, 48.6821773460878], [-1.240990970163838, 48.68219862837257], [-1.240962451963037, 48.68222119403864], [-1.240936223612785, 48.6822449464581], [-1.24091239742848, 48.68226978392087], [-1.240891075439625, 48.68229560007076], [-1.240872348953124, 48.6823222843605], [-1.240856298161708, 48.68234972252508], [-1.240842991801314, 48.68237779707117], [-1.240832486856001, 48.68240638778029], [-1.24082482831386, 48.68243537222333], [-1.240820048974936, 48.68246462628516], [-1.240818169310072, 48.68249402469557], [-1.240819197373266, 48.68252344156639], [-1.240823128767377, 48.68255275092985], [-1.240829946662465, 48.6825818272785], [-1.240839621868282, 48.68261054610245], [-1.240852112958644, 48.6826387844225], [-1.240854686782378, 48.68264386562812], [-1.240924047025767, 48.68277813582048], [-1.24092058261297, 48.68277914883599], [-1.240881193625718, 48.68279277016226], [-1.240843234347557, 48.68280806816124], [-1.240806867323605, 48.68282497732622], [-1.240772248281392, 48.68284342525114], [-1.240739525463657, 48.68286333294072], [-1.240708838994371, 48.68288461514884], [-1.240680320277763, 48.68290718074352], [-1.240654091436284, 48.68293093309715], [-1.24063026478743, 48.68295577049997], [-1.240608942362704, 48.68298158659603], [-1.240590215470887, 48.68300827083824], [-1.240574164306429, 48.6830357089619], [-1.240560857606907, 48.68306378347377], [-1.240550352357737, 48.68309237415547], [-1.24054269354843, 48.68312135857809], [-1.240537913980089, 48.68315061262656], [-1.240536034124578, 48.68318001103087], [-1.240537062036713, 48.68320942790261], [-1.240540993319972, 48.68323873727418], [-1.240547699315651, 48.68326733671395], [-1.240542141356118, 48.68326957658968], [-1.240505773896994, 48.68328648565857], [-1.240471154426444, 48.68330493349185], [-1.240438431189044, 48.68332484109481], [-1.240407744310565, 48.68334612322155], [-1.240379225196955, 48.68336868874052], [-1.240352995972422, 48.68339244102442], [-1.240329168956003, 48.68341727836377], [-1.240307846180917, 48.68344309440289], [-1.240289118957345, 48.68346977859497], [-1.240273067481157, 48.68349721667546], [-1.240259760491307, 48.68352529115141], [-1.24024925497443, 48.68355388180449], [-1.240241595921199, 48.68358286620597], [-1.240236816133753, 48.6836121202408], [-1.240234936084896, 48.68364151863908], [-1.240235963830265, 48.6836709355125], [-1.240239894974016, 48.68370024489334], [-1.24024671268743, 48.68372932127408], [-1.240256387780876, 48.68375804014464], [-1.240268878828712, 48.68378627852572], [-1.240271452652246, 48.68379135974395], [-1.240410007775161, 48.6840595798357], [-1.240404632655152, 48.68406037379048], [-1.240361986175804, 48.68406864483102], [-1.240320247952387, 48.68407874502493], [-1.240279596710674, 48.6840906311226], [-1.240240206522203, 48.68410425222712], [-1.24020224605861, 48.68411955001244], [-1.24016587787019, 48.68413645897235], [-1.240131257689427, 48.68415490670182], [-1.240098533764178, 48.68417481420634], [-1.24006784622293, 48.6841960962408], [-1.240039326474427, 48.68421866167368], [-1.240013096645838, 48.6842424138782], [-1.239989269058615, 48.68426725114533], [-1.239976957171765, 48.68428166320464], [-1.239692885818504, 48.68462895889504], [-1.239632015134651, 48.68465701311774], [-1.239630993618099, 48.68465644706258], [-1.239595122010255, 48.68463907890984], [-1.239557611690405, 48.68462330139381], [-1.239518623281164, 48.6846091820749], [-1.239478323734145, 48.6845967814126], [-1.239436885614929, 48.68458615250732], [-1.239394486364318, 48.68457734087247], [-1.239351307537844, 48.68457038423979], [-1.239307534029726, 48.68456531239796], [-1.239263353279827, 48.68456214706481], [-1.239218954471957, 48.68456090179441], [-1.239174527723577, 48.684561581919], [-1.239130263271733, 48.68456418452637], [-1.239086350658627, 48.68456869847195], [-1.239042977919946, 48.68457510442696], [-1.239000330779847, 48.68458337496065], [-1.23895859185543, 48.68459347465845], [-1.238917939875648, 48.68460536027278], [-1.238878548914695, 48.684618980909], [-1.238840587648005, 48.68463427824284], [-1.238804218629188, 48.68465118677014], [-1.238769597594289, 48.68466963408766], [-1.238736872794599, 48.68468954120281], [-1.238706192238963, 48.68471081703906], [-1.238425510039201, 48.68491866526829], [-1.238417186554359, 48.68492525040573], [-1.237639148791203, 48.68482564305124], [-1.237605349430793, 48.68482189892747], [-1.237561168562529, 48.68481873293844], [-1.237516769570246, 48.68481748700888], [-1.237472342572066, 48.68481816647388], [-1.237428077806133, 48.68482076842402], [-1.237384164816069, 48.68482528171756], [-1.237340791639079, 48.68483168702848], [-1.237298144001218, 48.68483995692888], [-1.237256404521765, 48.68485005600678], [-1.237243648350905, 48.68485378534642], [-1.237233694379578, 48.68484896558083], [-1.23719618464424, 48.68483318729254], [-1.237157196735499, 48.6848190671708], [-1.237119495136776, 48.68480740182307], [-1.23502955450538, 48.68421167478038], [-1.235026957032823, 48.68421093858871], [-1.23498552017302, 48.6842003080742], [-1.234943122028085, 48.6841914947929], [-1.234899944149273, 48.68418453648365], [-1.234856171426366, 48.68417946294214], [-1.234811991295972, 48.68417629589352], [-1.234808291795027, 48.68417611826649], [-1.23425881494001, 48.68415073313425], [-1.234186520180831, 48.68406791929154], [-1.234166853636458, 48.68404676249908], [-1.234141320091799, 48.68402267998964], [-1.23411346252001, 48.68399975480997], [-1.234083400212767, 48.68397808512763], [-1.234051261901574, 48.68395776373383], [-1.234017185207768, 48.68393887764601], [-1.233981316051862, 48.68392150773599], [-1.233943808029494, 48.68390572838248], [-1.233904821753726, 48.68389160715373], [-1.233870878879715, 48.68388102073224], [-1.232575244079188, 48.6835055124789], [-1.232568889460737, 48.68350369619243], [-1.232527453703871, 48.68349306478895], [-1.232485056586474, 48.68348425059821], [-1.232441879655304, 48.68347729136278], [-1.232398107796406, 48.68347221688259], [-1.232353928442471, 48.6834690488866], [-1.232309530771452, 48.68346780094045], [-1.232265104895813, 48.68346847838771], [-1.232220841048985, 48.68347107832769], [-1.232176928770552, 48.68347558962726], [-1.232133556094681, 48.68348199296896], [-1.232090908745369, 48.6834902609332], [-1.232049169340537, 48.68350035811641], [-1.232008516611214, 48.68351224128186], [-1.231969124634853, 48.6835258595453], [-1.231931162091164, 48.68354115459265], [-1.231894791539274, 48.68355806092958], [-1.231860168721761, 48.68357650616215], [-1.231827441897571, 48.68359641130677], [-1.231796751207841, 48.68361769112811], [-1.231768228074825, 48.6836402545044], [-1.231741994639881, 48.68366400481765], [-1.231718163240267, 48.68368884036673], [-1.231696835927751, 48.68371465480363], [-1.231680845795273, 48.68373713182951], [-1.2315657331969, 48.6839112663349], [-1.230975957043825, 48.68421435980282], [-1.230949551169598, 48.68422864761228], [-1.230916823560355, 48.68424855249586], [-1.230886132086853, 48.68426983207236], [-1.23085760817506, 48.68429239522103], [-1.230831373969672, 48.68431614532463], [-1.230807541810925, 48.6843409806832], [-1.230786213754065, 48.68436679494941], [-1.230767481131871, 48.68439347758403], [-1.230751424163596, 48.68442091432915], [-1.230738111611316, 48.68444898769766], [-1.230727600485806, 48.68447757747604], [-1.230719935801639, 48.68450656123915], [-1.230715150385155, 48.68453581487471], [-1.230713264732941, 48.68456521311447], [-1.230714286925072, 48.68459463007087], [-1.230718212589206, 48.68462393977588], [-1.230725024920085, 48.68465301672045], [-1.230734694751221, 48.68468173639225], [-1.230747180679392, 48.68470997580846], [-1.230755886434449, 48.6847264327031], [-1.231471030500555, 48.68599864612484], [-1.231848562816744, 48.68698338565324], [-1.231849151231022, 48.68698490924069], [-1.231861638357534, 48.6870131485304], [-1.231876888232117, 48.68704078661146], [-1.231894835556144, 48.68706770513215], [-1.231915403480068, 48.68709378882199], [-1.23193850393178, 48.68711892598532], [-1.231964037993865, 48.68714300897948], [-1.231991896327345, 48.68716593467569], [-1.232021959639524, 48.68718760490103], [-1.232054099195261, 48.68720792685863], [-1.232088177367805, 48.68722681352494], [-1.232124048228227, 48.68724418402274], [-1.232152691648902, 48.68725643765121], [-1.233737282913006, 48.68789755088939], [-1.233746149658883, 48.68790107708287], [-1.233785138999959, 48.68791519836111], [-1.233825439802894, 48.68792760102125], [-1.233866879489995, 48.68793823195183], [-1.233889218960429, 48.68794312699608], [-1.2353537229601, 48.68824548430882], [-1.236200922295525, 48.68959870231987], [-1.236216327853634, 48.68962149760413], [-1.236236899065228, 48.6896475805134], [-1.236260002851932, 48.68967271680093], [-1.236285540282003, 48.6896967988277], [-1.236313402002054, 48.68971972346925], [-1.236343468704921, 48.68974139255705], [-1.236375611640994, 48.68976171329906], [-1.236409693168774, 48.68978059867713], [-1.236445567345244, 48.68979796781938], [-1.236474211744936, 48.68981021974684], [-1.236984238317231, 48.69001654098786], [-1.236993107194624, 48.69002006754857], [-1.237032099091655, 48.6900341877203], [-1.23707240239483, 48.69004658923706], [-1.237113844515845, 48.69005721899229], [-1.237156247989337, 48.69006603146677], [-1.237199431233198, 48.6900729889231], [-1.237243209325269, 48.69007806156756], [-1.237287394796531, 48.69008122767783], [-1.237331798432959, 48.69008247369567], [-1.237376230086256, 48.69008179428539], [-1.2374204994882, 48.69007919235634], [-1.237464417065335, 48.69007467905077], [-1.237507794751018, 48.69006827369573], [-1.237550446790658, 48.69006000372082], [-1.237592190537518, 48.69004990454005], [-1.237632847234547, 48.6900380194009], [-1.237672242780072, 48.69002439919854], [-1.237710208473402, 48.69000910225806], [-1.237746581737222, 48.68999219408496], [-1.237781206813848, 48.68997374708415], [-1.237813935432564, 48.68995384025009], [-1.237844627443596, 48.68993255882874], [-1.237873151419537, 48.68990999395202], [-1.237899385217212, 48.68988624224765], [-1.237923216500978, 48.68986140542603], [-1.237944543223766, 48.68983558984346], [-1.237963274064065, 48.68980890604781], [-1.23797198165895, 48.68979468992837], [-1.237992349874044, 48.68978737681825], [-1.238030315290895, 48.68977207977153], [-1.238066688275499, 48.68975517149655], [-1.238101313071389, 48.68973672439871], [-1.238134041408949, 48.68971681747293], [-1.238164733139706, 48.68969553596549], [-1.23819325683743, 48.6896729710087], [-1.238219490360144, 48.68964921923065], [-1.238243321373327, 48.68962438234202], [-1.238264647831127, 48.68959856669943], [-1.238283378413152, 48.68957188285098], [-1.23829943291536, 48.68954444506222], [-1.238302283653305, 48.68953894197132], [-1.239633076693232, 48.68691462357536], [-1.23964353449006, 48.68689205230523], [-1.239654041049243, 48.68686346171506], [-1.239661700941064, 48.6868344773603], [-1.239664105687466, 48.6868219543653], [-1.239681829358437, 48.6867180148527], [-1.239705832653528, 48.68673131527865], [-1.239741705792767, 48.68674868339397], [-1.239779217756483, 48.68676446084707], [-1.239818207910708, 48.68677858007498], [-1.239858509290821, 48.68679098061569], [-1.239899949316832, 48.68680160936673], [-1.23994235053229, 48.68681042081315], [-1.2399855313648, 48.68681737722199], [-1.240029306902555, 48.68682244880403], [-1.240073489687426, 48.6868256138415], [-1.240117890516879, 48.68682685878072], [-1.240162319254667, 48.68682617829068], [-1.240206585645041, 48.68682357528537], [-1.240250500127451, 48.6868190609115], [-1.240293874648526, 48.68681265450086], [-1.240336523467223, 48.68680438348743], [-1.240378263950532, 48.68679428328975], [-1.240418917355435, 48.68678239715964], [-1.240458309594366, 48.68676877599655], [-1.24049627198076, 48.68675347812966], [-1.240512379791365, 48.68674627885909], [-1.24098807961178, 48.68652704142327], [-1.241008341591614, 48.68651733154844], [-1.241042963077512, 48.68649888355759], [-1.241075688141851, 48.68647897578704], [-1.241106376650125, 48.68645769348676], [-1.241134897189915, 48.68643512779241], [-1.241161127632713, 48.68641137533528], [-1.241184955657306, 48.68638653782886], [-1.241206279230533, 48.68636072163257], [-1.241225007044313, 48.68633403729671], [-1.241241058906752, 48.68630659908912], [-1.24125414911463, 48.68627903962725], [-1.24144259384547, 48.68583266366214], [-1.241441572583335, 48.68584863847769], [-1.241442601079963, 48.6858780553352], [-1.241446533099953, 48.6859073646696], [-1.241453351810689, 48.68593644097353], [-1.241463028018364, 48.68596515973729], [-1.241475520292559, 48.685993397982], [-1.241478094351085, 48.68599847917226], [-1.24161726750057, 48.68626786979683], [-1.241629948423502, 48.68629042539506], [-1.241647900702565, 48.68631734239041], [-1.241668473380346, 48.68634342433206], [-1.241691578364452, 48.6863685595317], [-1.241717116718044, 48.68639264035504], [-1.241744979083739, 48.68641556368267], [-1.241775046151734, 48.68643723135189], [-1.241807189170541, 48.68645755057656], [-1.24184127049864, 48.68647643434506], [-1.241877144193815, 48.6864938017925], [-1.241914656637566, 48.68650957854732], [-1.24195364719389, 48.68652369704933], [-1.241993948896465, 48.68653609683966], [-1.242035389163883, 48.6865467248191], [-1.242077790538654, 48.68655553547599], [-1.242120971447722, 48.68656249108072], [-1.242164746978942, 48.68656756184757], [-1.242208929674205, 48.68657072606221], [-1.242253330331355, 48.68657197017451], [-1.242297758814948, 48.68657128885702], [-1.242342024870249, 48.68656868502712], [-1.242385938938151, 48.68656416983534], [-1.242429312967099, 48.6865577626167], [-1.24247196121811, 48.68654949080878], [-1.242513701060772, 48.68653938983353], [-1.242554353754424, 48.68652750294605], [-1.242593745214917, 48.68651388104896], [-1.242631706758866, 48.68649858247476], [-1.242668075826803, 48.68648167273578], [-1.242702696678968, 48.68646322424369], [-1.242735421062751, 48.6864433159994], [-1.242766100970205, 48.68642203908784], [-1.24304677361593, 48.68621418025731], [-1.243075297084517, 48.68619161116327], [-1.24310152648331, 48.68616785826179], [-1.243125353433643, 48.68614302035165], [-1.24314667590699, 48.68611720379397], [-1.243165402599906, 48.68609051914071], [-1.243181453325415, 48.6860630806609], [-1.243194759355253, 48.68603500585147], [-1.243205263715275, 48.68600641493407], [-1.243212921428858, 48.68597743034016], [-1.243217699709169, 48.68594817618665], [-1.243219578099792, 48.6859187777448] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1.242942178306576, 48.60986610219051], [-1.242941150486507, 48.60983668519591], [-1.242937223538061, 48.60980737576263], [-1.242930414281722, 48.60977829939786], [-1.242920751880803, 48.60974958061056], [-1.242908277715862, 48.60972134237837], [-1.242893045207187, 48.60969370562057], [-1.242875119586899, 48.60966678868117], [-1.242854577618513, 48.60964070682134], [-1.242831507268782, 48.6096155717261], [-1.242806007330901, 48.60959149102642], [-1.242778187001201, 48.60956856783788], [-1.242748165411767, 48.60954690031954], [-1.242716071119983, 48.60952658125334], [-1.242682041558274, 48.60950769764695], [-1.242646222445678, 48.6094903303613], [-1.242608767163422, 48.60947455376403], [-1.24256983609879, 48.60946043541146], [-1.242529595957731, 48.60944803575919], [-1.242495663890275, 48.60943916897769], [-1.242045175849744, 48.60933063821547], [-1.242037731042833, 48.60932887711164], [-1.241995394719986, 48.60932006639413], [-1.241952280082646, 48.60931311070586], [-1.241908571750032, 48.60930803983158], [-1.241864456882873, 48.60930487548472], [-1.241820124382962, 48.60930363121534], [-1.241775764083768, 48.60930431235134], [-1.241731565937845, 48.60930691597618], [-1.241687719203461, 48.60931143094087], [-1.241644411634211, 48.60931783791229], [-1.241601828675212, 48.60932610945541], [-1.241560152668746, 48.6093362101513], [-1.24151956207422, 48.60934809674809], [-1.24148023070334, 48.60936171834694], [-1.241442326976003, 48.60937701661938], [-1.241406013199597, 48.60939392605739], [-1.241371444873456, 48.60941237425373], [-1.24133877002353, 48.60943228221197], [-1.241308128568077, 48.60945356468499], [-1.241279651718539, 48.60947613053953], [-1.24125346141839, 48.60949988314678], [-1.241229669819739, 48.60952472079616], [-1.241208378804228, 48.60955053713047], [-1.241189679545867, 48.60957722160162], [-1.241173652121179, 48.60960465994387], [-1.241160365165703, 48.60963273466321], [-1.241149875580343, 48.60966132554038], [-1.241142228287824, 48.60969031014547], [-1.241137456039587, 48.60971956436265], [-1.241135579276222, 48.60974896292122], [-1.241136606039337, 48.60977837993217], [-1.241140531937284, 48.60980768942729], [-1.241147340163686, 48.60983676589844], [-1.241153455566371, 48.60985592862144], [-1.241332068757348, 48.61036103342558], [-1.241335614830084, 48.61037058963361], [-1.241348088273861, 48.61039882803615], [-1.241363320147604, 48.61042646499831], [-1.241381245230082, 48.61045338217331], [-1.241401786766834, 48.61047946429642], [-1.241424856798519, 48.61050459967855], [-1.241450356538258, 48.61052868068462], [-1.241478176793918, 48.61055160419455], [-1.24150819843599, 48.6105732720447], [-1.24154029290753, 48.61059359144834], [-1.241574322774994, 48.61061247539296], [-1.241610142316267, 48.61062984301297], [-1.241647598144986, 48.61064561993594], [-1.241686529867532, 48.61065973860122], [-1.241726770769502, 48.61067213854893], [-1.24176814852988, 48.6106827666795], [-1.241810485958943, 48.61069157748035], [-1.241853601757195, 48.61069853322142], [-1.241897311291587, 48.6107036041164], [-1.241941427386544, 48.61070676845031], [-1.241985761125084, 48.61070801267264], [-1.242030122658371, 48.61070733145532], [-1.242074322018403, 48.61070472771545], [-1.242118169931643, 48.61070021260301], [-1.242161478629831, 48.61069380545284], [-1.242204062653798, 48.61068553370215], [-1.242245739648134, 48.61067543277266], [-1.24228633114134, 48.61066354591928], [-1.242325663311301, 48.6106499240445], [-1.242363567728626, 48.61063462548064], [-1.242399882078393, 48.61061771574003], [-1.242434450855194, 48.61059926723443], [-1.242467126029361, 48.61057935896467], [-1.242497767680078, 48.61055807618281], [-1.242526244595523, 48.61053551002671], [-1.242552434834041, 48.61051175712953], [-1.242576226246521, 48.61048691920671], [-1.242597516956616, 48.61046110261935], [-1.242609549700457, 48.61044446541254], [-1.242881417715258, 48.61004789184448], [-1.242888083705058, 48.61003784433545], [-1.242904110333223, 48.61001040575394], [-1.242917396415917, 48.60998233083278], [-1.242927885064327, 48.60995373979417], [-1.242935531368776, 48.60992475507022], [-1.242940302591593, 48.60989550077839], [-1.242942178306576, 48.60986610219051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1.222279238062185, 48.63595069112793], [-1.222278221789939, 48.63592127399477], [-1.222240508168133, 48.63547231053839], [-1.222236591277202, 48.635443000441], [-1.222229790514269, 48.63541392289059], [-1.222220135006016, 48.63538520240117], [-1.222215060914149, 48.63537286779603], [-1.221989149801972, 48.63485293554022], [-1.22198175513907, 48.63483702968675], [-1.221966526521763, 48.63480939018706], [-1.221948603149177, 48.63478247001221], [-1.221928061775235, 48.63475638443735], [-1.221904990364473, 48.63473124516356], [-1.221879487714281, 48.63470715983955], [-1.221851663032763, 48.6346842316008], [-1.221821635470526, 48.63466255862788], [-1.221789533610715, 48.63464223372615], [-1.221755494918171, 48.63462334392822], [-1.221719665150738, 48.63460597012152], [-1.221682197735727, 48.63459018670178], [-1.221643253111981, 48.63457606125441], [-1.221602998043663, 48.63456365426537], [-1.221561604905905, 48.63455301886201], [-1.221519250946725, 48.63454420058562], [-1.221476117528149, 48.63453723719652], [-1.221432389349531, 48.63453215851208], [-1.22138825365681, 48.63452898627956], [-1.22134389944089, 48.63452773408262], [-1.221299516628225, 48.63452840728311], [-1.221255295267751, 48.63453100299845], [-1.221211424717179, 48.6345355101136], [-1.221168092832079, 48.63454190932896], [-1.221125485161687, 48.63455017324279], [-1.22108378415404, 48.63456026646873], [-1.221081556502777, 48.63456086412968], [-1.219859408487987, 48.63489041897382], [-1.21982101983543, 48.63490170022128], [-1.219781662617405, 48.63491531434391], [-1.219743733044842, 48.63493060540812], [-1.219707393535781, 48.63494750793669], [-1.219672799699785, 48.63496594955197], [-1.219640099671999, 48.63498585128588], [-1.219609433478375, 48.63500712791773], [-1.219580932436648, 48.63502968833942], [-1.219554718593452, 48.63505343594538], [-1.219530904202153, 48.63507826904636], [-1.219509591241577, 48.63510408130469], [-1.219490870979936, 48.63513076218975], [-1.219474823583604, 48.63515819745125], [-1.21946151777359, 48.63518626960809], [-1.219451010531834, 48.63521485845222], [-1.219443346856259, 48.63524384156246], [-1.219438559568853, 48.63527309482927], [-1.219436669174252, 48.635302492986], [-1.219437683772817, 48.63533191014552], [-1.21944159902458, 48.63536122033878], [-1.219448398169227, 48.63539029805479], [-1.219458052096225, 48.63541901877787], [-1.219470519470938, 48.63544725952058], [-1.219485746910207, 48.63547489935107], [-1.219486647247292, 48.63547637366471], [-1.219830961995305, 48.63603733202068], [-1.219847984323792, 48.63606277821404], [-1.21986852515255, 48.63608886415967], [-1.219891596168448, 48.63611400384153], [-1.21991709858011, 48.63613808960599], [-1.219944923183951, 48.63616101831264], [-1.219974950832059, 48.63618269177547], [-1.22000705294169, 48.63620301718381], [-1.220041092046584, 48.63622190749942], [-1.220076922385001, 48.63623928182943], [-1.220114390524552, 48.63625506577262], [-1.220153336018661, 48.63626919173834], [-1.220193592094034, 48.63628159923553], [-1.220234986364566, 48.63629223513209], [-1.220277341570089, 48.63630105388246], [-1.220320476334929, 48.63630801772221], [-1.220345153205835, 48.63631112409529], [-1.221147914155289, 48.63640200371971], [-1.221166966960003, 48.6364039763214], [-1.22121110428346, 48.6364071486388], [-1.221255460152837, 48.63640840088703], [-1.221299844624435, 48.63640772770368], [-1.221638541946144, 48.63639523194597], [-1.221682764925243, 48.63639263608297], [-1.221726637052853, 48.63638812878783], [-1.221769970456899, 48.63638172936188], [-1.221812579572434, 48.63637346520932], [-1.221854281936636, 48.63636337171916], [-1.221894898969334, 48.63635149211466], [-1.221934256739057, 48.63633787726717], [-1.221972186706744, 48.63632258547889], [-1.22200852644812, 48.63630568223324], [-1.222043120349023, 48.63628723991401], [-1.222075820272173, 48.63626733749574], [-1.222106486190777, 48.63624606020525], [-1.222134986789079, 48.63622349915694], [-1.222161200024061, 48.63619975096221], [-1.222185013648094, 48.63617491731615], [-1.222206325689705, 48.63614910456174], [-1.222225044890315, 48.63612242323463], [-1.22224109109456, 48.63609498758955], [-1.222254395593982, 48.63606691511141], [-1.222264901420911, 48.63603832601164], [-1.222272563592108, 48.63600934271416], [-1.222277349301977, 48.63598008933029], [-1.222279238062185, 48.63595069112793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1.221182559687433, 48.68673306181222], [-1.221181543030294, 48.68670364477601], [-1.221177622764622, 48.68667433474954], [-1.221170815682804, 48.68664525724248], [-1.221161150938459, 48.68661653676872], [-1.221148669922239, 48.68658829631307], [-1.221133426084127, 48.68656065680443], [-1.221115484704365, 48.68653373659841], [-1.221094922614074, 48.68650765097032], [-1.22107182786644, 48.68648251162126], [-1.221046299358792, 48.68645842620046], [-1.221018446410005, 48.6864354978438], [-1.220988388291691, 48.68641382473213], [-1.220956253717849, 48.68639349967177], [-1.220922180293427, 48.68637460969579], [-1.220886313924972, 48.68635723569236], [-1.220848808196569, 48.68634145205807], [-1.220809823711029, 48.68632732637933], [-1.220769527403298, 48.68631491914309], [-1.22072809182503, 48.68630428347758], [-1.220685694406034, 48.68629546492549], [-1.220650435048101, 48.68628963061322], [-1.220430605836327, 48.68625736748525], [-1.220279800044912, 48.68615371956964], [-1.220275637258177, 48.68615088356881], [-1.22024350314067, 48.68613055830829], [-1.220209430162351, 48.68611166812003], [-1.220173564227869, 48.68609429389326], [-1.22013605891945, 48.68607851002549], [-1.220097074838147, 48.68606438410414], [-1.220056778917147, 48.68605197661718], [-1.220015343706444, 48.68604134069392], [-1.219972946634271, 48.68603252187796], [-1.219929769247226, 48.6860255579321], [-1.219885996432932, 48.6860204786758], [-1.219841815628477, 48.68601730585903], [-1.219797416017949, 48.6860160530678], [-1.219752987722067, 48.68601672566654], [-1.219708720984671, 48.68601932077528], [-1.219664805357696, 48.68602382728152], [-1.219621428889719, 48.68603022588836], [-1.219578777320862, 48.68603848919657], [-1.219537033287232, 48.68604858182246], [-1.219496375539564, 48.68606046054877], [-1.219456978176872, 48.68607407451016], [-1.219427395945847, 48.68608579196574], [-1.21846851065178, 48.68648782165304], [-1.218460124472649, 48.68649139502836], [-1.21842374725569, 48.68650829708763], [-1.218389117463237, 48.68652673824751], [-1.218356383384209, 48.68654663954188], [-1.218325685190502, 48.68656791575183], [-1.218297154336823, 48.68659047577125], [-1.218270912997441, 48.68661422299611], [-1.21824707354343, 48.68663905573889], [-1.218228108342261, 48.68666179236556], [-1.21677548687307, 48.68852866562606], [-1.21677311641508, 48.68853174089351], [-1.216754374801918, 48.68855842122932], [-1.216738308854166, 48.68858585600245], [-1.216724987372309, 48.68861392773407], [-1.216714467405151, 48.68864251621785], [-1.216706794005495, 48.68867149903408], [-1.216702000036614, 48.68870075207468], [-1.2167001060321, 48.68873015007375], [-1.216701120107424, 48.68875956714492], [-1.216705037925274, 48.68878887731957], [-1.216711842713927, 48.68881795508672], [-1.216721505339167, 48.68884667593046], [-1.216733984428629, 48.68887491686298], [-1.216749226549434, 48.68890255695143], [-1.21676716643617, 48.68892947783552], [-1.216787727271025, 48.68895556423472], [-1.216810821012324, 48.68898070444172], [-1.216836348771371, 48.68900479080075], [-1.216864201236185, 48.68902772016863], [-1.216894259139272, 48.68904939435695], [-1.216926393768489, 48.68906972055144], [-1.216937108399852, 48.68907566095718], [-1.216926099138609, 48.68908712792237], [-1.216904761938802, 48.68911293959614], [-1.216886020178938, 48.68913961995223], [-1.216869954117137, 48.68916705474258], [-1.216856632554804, 48.68919512648827], [-1.216846112540964, 48.68922371498272], [-1.216838439128358, 48.68925269780642], [-1.216833645180659, 48.68928195085113], [-1.216831751231262, 48.68931134885105], [-1.216832765395375, 48.68934076591967], [-1.216836683335287, 48.68937007608848], [-1.216843488278776, 48.68939915384648], [-1.216853151090966, 48.68942787467783], [-1.216865630398694, 48.68945611559468], [-1.21688087276818, 48.68948375566436], [-1.216898812932874, 48.68951067652661], [-1.216919374073804, 48.68953676290099], [-1.216942468147997, 48.68956190308029], [-1.216967996265317, 48.68958598940886], [-1.216995849112246, 48.68960891874377], [-1.217025907419669, 48.68963059289653], [-1.217058046877564, 48.68965092166173], [-1.217371912175276, 48.6898368237466], [-1.217405977804673, 48.68985570955552], [-1.217441845466534, 48.68987308464285], [-1.217479352760384, 48.68988886938716], [-1.217518339072323, 48.68990299619433], [-1.217558637454115, 48.68991540456965], [-1.217600075338678, 48.68992604137749], [-1.217642475278777, 48.68993486106807], [-1.21768565570721, 48.68994182587323], [-1.21772943171421, 48.68994690596787], [-1.217773615839488, 48.68995007959767], [-1.217818018874797, 48.68995133317224], [-1.217862450674516, 48.68995066132349], [-1.217906720969666, 48.68994806692835], [-1.217950640183032, 48.68994356109693], [-1.217994020240978, 48.68993716312417], [-1.21803667537872, 48.68992890040802], [-1.218078422936291, 48.68991880833156], [-1.218119084140275, 48.68990693011176], [-1.218158484869694, 48.68989331661407], [-1.218196456401692, 48.68987802613515], [-1.218232836133979, 48.68986112415253], [-1.218267468281109, 48.68984268304469], [-1.218300204542051, 48.68982278178093], [-1.218330904734439, 48.68980150558333], [-1.218359437395693, 48.68977894556136], [-1.218385680345526, 48.6897551983221], [-1.21840952120905, 48.68973036555666], [-1.218430857898205, 48.68970455360417], [-1.218449599048677, 48.6896778729968], [-1.218465664411517, 48.68965043798626], [-1.218471684858657, 48.68963775063093], [-1.218510551688272, 48.689628354722], [-1.218551212555046, 48.68961647634869], [-1.218590612939741, 48.68960286270227], [-1.21862858412086, 48.68958757207983], [-1.218664963497591, 48.68957066995967], [-1.218699595286048, 48.6895522287209], [-1.218732331186718, 48.68953232733332], [-1.218763031018735, 48.68951105101949], [-1.218791563321156, 48.68948849088952], [-1.218817805915173, 48.68946474355079], [-1.218841646427458, 48.68943991069494], [-1.218862982771349, 48.68941409866143], [-1.218881723584271, 48.68938741798276], [-1.218897788618314, 48.68935998291103], [-1.218911109084324, 48.6893319109287], [-1.218916946077193, 48.68931604686479], [-1.219311158533372, 48.68923336622034], [-1.219318005637715, 48.68923190365355], [-1.219359752359175, 48.68922181110999], [-1.219400412696472, 48.68920993243511], [-1.219439812532386, 48.6891963184965], [-1.219477783148018, 48.68918102759226], [-1.219514161944892, 48.68916412520218], [-1.219548793141763, 48.68914568370633], [-1.219581528441334, 48.68912578207578], [-1.219612227665576, 48.68910450553378], [-1.219640759356166, 48.68908194519178], [-1.219667001336575, 48.68905819765796], [-1.219690841236449, 48.68903336462465], [-1.219712176971708, 48.68900755243239], [-1.219713682744634, 48.68900556795596], [-1.220712602831782, 48.68768089509464], [-1.220729836324375, 48.68765619859995], [-1.220745899796347, 48.6876287632656], [-1.22075921877143, 48.68760069106458], [-1.220769736220002, 48.68757210220734], [-1.220777407109106, 48.68754311911673], [-1.220782198595733, 48.68751386590316], [-1.220784090166893, 48.68748446783383], [-1.22078307372774, 48.68745505079586], [-1.220779153635849, 48.68742574075746], [-1.220772346682768, 48.6873966632286], [-1.220762682021617, 48.68736794272287], [-1.22075839661199, 48.6873574474196], [-1.220711630349567, 48.68724817404269], [-1.220728854589481, 48.68723623594146], [-1.221009622900662, 48.68702843107955], [-1.221038156724945, 48.68700586747024], [-1.221064396961369, 48.68698211961268], [-1.221088235186183, 48.68695728628485], [-1.2211095693226, 48.68693147382821], [-1.221128308017256, 48.68690479277707], [-1.221144371031735, 48.68687735738523], [-1.221157689585135, 48.68684928513626], [-1.221168206649774, 48.68682069624085], [-1.221175877194494, 48.68679171312187], [-1.221180668377624, 48.68676245988991], [-1.221182559687433, 48.68673306181222] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1.21879783804034, 48.64128252187832], [-1.218796823696011, 48.64125310472453], [-1.218792908361255, 48.64122379452031], [-1.218786108807215, 48.6411947167763], [-1.218776454155397, 48.64116599600733], [-1.218763985753266, 48.64113775519944], [-1.218748756996431, 48.64111011528308], [-1.218730833100983, 48.64108319461575], [-1.218710290823004, 48.64105710847442], [-1.218687218130647, 48.64103196856267], [-1.218661713827058, 48.64100788253198], [-1.218633887127334, 48.64098495352085], [-1.218603857190737, 48.6409632797131], [-1.218571752610622, 48.64094295391782], [-1.218537710863381, 48.64092406317128], [-1.218503475968442, 48.64090741355324], [-1.217443378989882, 48.64042492200069], [-1.217441780772084, 48.64042419679766], [-1.217404310366246, 48.64040841198442], [-1.217365362439902, 48.64039428508777], [-1.217325103771283, 48.64038187659993], [-1.217283706751031, 48.64037123965452], [-1.217281004788358, 48.64037061620907], [-1.216414269225117, 48.64017198018648], [-1.216217115448213, 48.64002086115919], [-1.216188363269235, 48.64000016774037], [-1.216156260279528, 48.63997984126682], [-1.216122220090941, 48.63996094980135], [-1.216086388467692, 48.63994357423843], [-1.216048918845067, 48.6399277889813], [-1.216009971671361, 48.63991366162338], [-1.215969713721647, 48.63990125265876], [-1.21592831738341, 48.63989061522323], [-1.215922030522498, 48.63988917754185], [-1.214687675800543, 48.639611375806], [-1.214651605576695, 48.63960399274212], [-1.214608468769749, 48.63959702676884], [-1.214596643146968, 48.6395954593164], [-1.210752597923495, 48.63910937871067], [-1.210720692241418, 48.63910586378783], [-1.210676553212327, 48.63910268742866], [-1.210632195231378, 48.63910143108395], [-1.210587808241175, 48.6391021001335], [-1.210543582308539, 48.63910469171236], [-1.210499706810764, 48.63910919472324], [-1.210456369624584, 48.63911558988421], [-1.210413756321918, 48.63912384981074], [-1.210372049374962, 48.63913393913369], [-1.210331427375737, 48.63914581464985], [-1.210292663219972, 48.63915920185052], [-1.209894014237107, 48.63930788621498], [-1.209865354202142, 48.63928973643623], [-1.209831316842611, 48.63927084310053], [-1.209795487883671, 48.63925346556902], [-1.209758020748857, 48.63923767825349], [-1.20971907587593, 48.63922354875604], [-1.209678820030153, 48.63921113758004], [-1.209637425589938, 48.63920049787065], [-1.209595069808895, 48.63919167518758], [-1.209559837064154, 48.63918583631539], [-1.209140422350035, 48.63912418360262], [-1.209132519361811, 48.63912305456823], [-1.209088788444124, 48.63911797117281], [-1.209044649507458, 48.6391147941849], [-1.209000291556606, 48.63911353720818], [-1.208955904534028, 48.63911420562538], [-1.208911678506688, 48.63911679657412], [-1.208867802852318, 48.63912129896006], [-1.208824465448293, 48.63912769350351], [-1.208781851867449, 48.63913595282298], [-1.208740144583262, 48.63914604155167], [-1.208699522188974, 48.63915791648918], [-1.20866015863254, 48.63917152678639], [-1.208622222471627, 48.63918681416336], [-1.208585876152513, 48.6392037131586], [-1.208551275313918, 48.63922215140968], [-1.208518568120944, 48.63924204996273], [-1.208487894630257, 48.63926332361086], [-1.208459386190808, 48.63928588125872], [-1.208433164881004, 48.63930962631257], [-1.208409342985908, 48.63933445709416], [-1.208388022516778, 48.63936026727571], [-1.208369294773841, 48.63938694633547], [-1.208353239955566, 48.63941438003087], [-1.208339926814697, 48.63944245088787], [-1.208329412364586, 48.63947103870366], [-1.208321741633975, 48.63950002106149], [-1.208316947475165, 48.63952927385516], [-1.208315050422131, 48.63955867182003], [-1.208316058603769, 48.63958808906966], [-1.20831996770761, 48.63961739963479], [-1.208326760999599, 48.63964647800275], [-1.208336409394402, 48.639675199655], [-1.208348871580944, 48.63970344160031], [-1.208351439211093, 48.63970852216476], [-1.208490307210632, 48.6399779572966], [-1.208502962327906, 48.64000051801766], [-1.208520880364921, 48.64002744028703], [-1.208541416939142, 48.64005352825706], [-1.208558660622863, 48.64007232293123], [-1.208559399263631, 48.64009387211319], [-1.208563308548547, 48.64012318266905], [-1.208570102049489, 48.64015226102162], [-1.208579750680163, 48.64018098265245], [-1.208592213128616, 48.64020922457033], [-1.208607436032814, 48.64023686583829], [-1.208625354209796, 48.640263788091], [-1.208645890934657, 48.64028987604183], [-1.208668958269019, 48.64031501797713], [-1.208694457437196, 48.64033910623352], [-1.20872227924963, 48.64036203765997], [-1.20875230457006, 48.64038371405875], [-1.208784404826013, 48.64040404260676], [-1.208818442559045, 48.64042293625218], [-1.208854272013349, 48.64044031408785], [-1.208858278153548, 48.64044200213752], [-1.208853203406526, 48.64045580004309], [-1.208845532827534, 48.64048478243414], [-1.208840738879415, 48.64051403524788], [-1.208838842095326, 48.64054343321953], [-1.208839850602863, 48.64057285046269], [-1.208843760088458, 48.64060216100808], [-1.208850553816179, 48.64063123934307], [-1.208860202698852, 48.64065996094939], [-1.208872665423344, 48.6406882028359], [-1.208887888626462, 48.64071584406573], [-1.208905807124208, 48.64074276627368], [-1.208926344190016, 48.64076885417352], [-1.20894941188411, 48.64079399605145], [-1.208974911429346, 48.64081808424469], [-1.209002733634386, 48.64084101560231], [-1.20903275936161, 48.64086269192696], [-1.209064860036468, 48.64088302039571], [-1.209098898210708, 48.64090191396294], [-1.209133130143356, 48.64091856646128], [-1.209218664951033, 48.64095750612646], [-1.208616099063287, 48.64155942702978], [-1.208597315157216, 48.64157929629792], [-1.20857599383319, 48.64160510651065], [-1.208575263238005, 48.64160614725854], [-1.208323207739792, 48.64185969598036], [-1.208305628721431, 48.64187835719244], [-1.208284307121066, 48.64190416735043], [-1.208265578376171, 48.6419308463888], [-1.208249522689491, 48.64195828006521], [-1.208236208817706, 48.64198635090543], [-1.208225693776888, 48.64201493870695], [-1.208218022598775, 48.64204392105303], [-1.208213228137107, 48.64207317383751], [-1.208211330927678, 48.64210257179579], [-1.208212339099524, 48.64213198904145], [-1.208216248340714, 48.64216129960524], [-1.208223041916177, 48.6421903779745], [-1.208232690739717, 48.64221909963079], [-1.208245153498062, 48.64224734158265], [-1.208260376828318, 48.64227498289306], [-1.208278295545449, 48.64230190519636], [-1.208298832922348, 48.64232799320603], [-1.208321901017742, 48.64235313520788], [-1.208347401052745, 48.64237722353828], [-1.208356844144334, 48.64238500652766], [-1.208364130284565, 48.64239426185644], [-1.208379137233968, 48.64241103235032], [-1.208080646606893, 48.64253418174281], [-1.208047615048484, 48.64254058321864], [-1.208005904794534, 48.64255067167779], [-1.207965279477943, 48.64256254635218], [-1.207925913058878, 48.64257615639404], [-1.207887974107558, 48.64259144352444], [-1.207851625082108, 48.64260834228295], [-1.207817021632902, 48.64262678030812], [-1.207784311935971, 48.64264667864719], [-1.207753636059092, 48.64266795209395], [-1.20772512536113, 48.64269050955402], [-1.207698901930143, 48.64271425443456], [-1.207675078060506, 48.64273908505788], [-1.207653755771811, 48.64276489509702], [-1.20763502637212, 48.6427915740308], [-1.207618970066935, 48.64281900761724], [-1.207605655615514, 48.64284707838259], [-1.207595140036466, 48.64287566612465], [-1.207587468363869, 48.64290464842685], [-1.20758267345354, 48.64293390118326], [-1.207580775843151, 48.64296329912942], [-1.207581783663558, 48.64299271637898], [-1.20759369501918, 48.64313499019508], [-1.207591014837524, 48.64313579965944], [-1.207578416070754, 48.64313970857167], [-1.207539049095394, 48.64315331848007], [-1.207501109591276, 48.64316860548174], [-1.207464760018844, 48.64318550411687], [-1.207430156030889, 48.64320394202451], [-1.20739744580566, 48.64322384025234], [-1.207366769413274, 48.64324511359471], [-1.207338258214772, 48.64326767095761], [-1.207312034300352, 48.6432914157487], [-1.207288209966406, 48.6433162462906], [-1.207266887234646, 48.64334205625673], [-1.207248157414911, 48.64336873512628], [-1.207240396605775, 48.64338199479096], [-1.206627273138858, 48.64292806062919], [-1.206697515967212, 48.64272285473483], [-1.207265927219519, 48.64199219523461], [-1.207266495955257, 48.6419918492552], [-1.207297171625861, 48.64197057593785], [-1.207325682107836, 48.64194801858326], [-1.207351905315481, 48.64192427378698], [-1.207375728958759, 48.64189944322949], [-1.207397051023293, 48.64187363324065], [-1.207415780207477, 48.64184695434413], [-1.207431836313222, 48.64181952078451], [-1.207445150589683, 48.64179145003742], [-1.207455666027324, 48.64176286230712], [-1.207462969833504, 48.64173526939704], [-1.207476661741191, 48.6417118752274], [-1.207489975964156, 48.64168380447487], [-1.207500491353735, 48.64165521674033], [-1.207508162886024, 48.64162623444157], [-1.207512957715038, 48.64159698168573], [-1.207514855313516, 48.64156758373808], [-1.207513847560795, 48.64153816648521], [-1.207509938777258, 48.64150885589621], [-1.207503145705993, 48.64147977748333], [-1.207493497440746, 48.64145105576425], [-1.207481035301545, 48.64142281372914], [-1.20746581265738, 48.64139517231362], [-1.207447894697964, 48.64136824988162], [-1.207427358154098, 48.64134216171775], [-1.207404290969296, 48.64131701953415], [-1.207378791923182, 48.64129293099209], [-1.20735097020833, 48.64126999924083], [-1.20732094496262, 48.64124832247585], [-1.207288844759324, 48.64122799351894], [-1.207254807056168, 48.64120909942005], [-1.207230506936552, 48.641197054937], [-1.20670248359636, 48.64094733962969], [-1.205963238487293, 48.64059772289944], [-1.206172162977541, 48.64047365792687], [-1.206194306087667, 48.64045990476034], [-1.206224981277595, 48.64043863172809], [-1.20625349137206, 48.64041607463809], [-1.206279714287339, 48.64039233008481], [-1.206303537734395, 48.64036749974794], [-1.206324859699728, 48.64034168995603], [-1.206343588882053, 48.64031501123216], [-1.206359645083641, 48.64028757782003], [-1.206372959552908, 48.64025950719472], [-1.206383475279498, 48.64023091956006], [-1.206391147238086, 48.6402019373334], [-1.206395942580829, 48.64017268462159], [-1.206397840778268, 48.64014328668974], [-1.206396833707202, 48.64011386942423], [-1.206392925685056, 48.64008455879447], [-1.2063861334517, 48.64005548031265], [-1.206376486097265, 48.64002675849685], [-1.206364024937821, 48.63999851633756], [-1.20634880333836, 48.63997087477113], [-1.20633088648392, 48.63994395216186], [-1.206310351100546, 48.63991786379527], [-1.206287285127075, 48.63989272138439], [-1.206261787337635, 48.63986863259147], [-1.206233966919506, 48.6398457005668], [-1.206203943005071, 48.63982402350706], [-1.206171844161847, 48.63980369423526], [-1.206137807841765, 48.63978479980268], [-1.206101979792458, 48.63976742111652], [-1.206064513433942, 48.63975163259339], [-1.206025569200504, 48.63973750184075], [-1.205985313854687, 48.63972508936714], [-1.205943919772725, 48.63971444832328], [-1.205901564206751, 48.63970562427483], [-1.205858428525664, 48.6396986550067], [-1.205825920987482, 48.63969468931273], [-1.205824054542184, 48.63969449264046], [-1.205850702321667, 48.63967340892189], [-1.205876925039864, 48.63964966445973], [-1.205900748334041, 48.63962483420536], [-1.205922070191241, 48.63959902448719], [-1.205940799310776, 48.63957234582791], [-1.205956855494919, 48.63954491247092], [-1.205970169992503, 48.6395168418911], [-1.205980685792694, 48.63948825429198], [-1.205988357870067, 48.63945927209091], [-1.205993153376119, 48.63943001939455], [-1.205995051780993, 48.63940062146794], [-1.205994044960186, 48.63937120419752], [-1.205990137230406, 48.63934189355254], [-1.205983345330104, 48.63931281504544], [-1.205973698348011, 48.63928409319435], [-1.205961237598698, 48.63925585098989], [-1.205946016445121, 48.6392282093685], [-1.205928100070677, 48.63920128669501], [-1.205907565199393, 48.63917519825496], [-1.205884499767569, 48.6391500557618], [-1.205859002547354, 48.63912596687807], [-1.205831182723469, 48.63910303475443], [-1.205801159425761, 48.63908135758808], [-1.205769061219089, 48.63906102820243], [-1.205455559376882, 48.63887508943533], [-1.205421523953882, 48.6388561947888], [-1.205385696813388, 48.63883881587753], [-1.205348231371139, 48.63882302711919], [-1.205309288057666, 48.63880889612215], [-1.205269033631513, 48.63879648339609], [-1.205227640465059, 48.63878584209281], [-1.205185285806458, 48.63877701777894], [-1.205142151020715, 48.63877004824062], [-1.20509842081308, 48.6387649633217], [-1.205054282438105, 48.63876178479599], [-1.205009924898244, 48.63876052627405], [-1.20496553813414, 48.63876119314493], [-1.204921312211695, 48.63876378255313], [-1.204877436508165, 48.63876828341062], [-1.204834098901082, 48.63877467644461], [-1.204791484964263, 48.63878293427982], [-1.204749777172702, 48.63879302155576], [-1.204709154121699, 48.6388048950784], [-1.204669789761967, 48.63881850400464], [-1.204631852654852, 48.63883379006033], [-1.204601398535425, 48.63884794803217], [-1.204406521584849, 48.63877252379015], [-1.2043705643988, 48.63875955488], [-1.204330310243711, 48.63874714182394], [-1.204288917316525, 48.63873650018145], [-1.20424656286412, 48.63872767552049], [-1.204246497255122, 48.63872766340127], [-1.203415770652774, 48.63857423839049], [-1.203372701894434, 48.6385672803055], [-1.203328972041875, 48.638562194711], [-1.203284833956608, 48.63855901550342], [-1.203240476639789, 48.63855775629628], [-1.20319609003112, 48.63855842248155], [-1.203151864195866, 48.63856101120658], [-1.203107988510881, 48.63856551138638], [-1.203064650853638, 48.63857190375093], [-1.203022036798154, 48.63858016092791], [-1.202980328819823, 48.6385902475598], [-1.202939705515083, 48.63860212045499], [-1.202900340835407, 48.6386157287733], [-1.202862403343599, 48.63863101424323], [-1.202826055491491, 48.63864791141141], [-1.202791452924519, 48.63866634792329], [-1.202758743814858, 48.6386862448324], [-1.202728068227827, 48.63870751693889], [-1.202699557520992, 48.63873007315394], [-1.202673333782451, 48.63875381689012], [-1.202649509307938, 48.63877864647463], [-1.202628186119663, 48.638804455585], [-1.202609455529464, 48.63883113370395], [-1.20259339774794, 48.63885856659303], [-1.202580081540703, 48.63888663678145], [-1.202569563933937, 48.63891522406951], [-1.202561889970273, 48.6389442060426], [-1.202557092515439, 48.63897345859614], [-1.20255519211796, 48.63900285646659], [-1.202556196920621, 48.63903227376792], [-1.20256010262582, 48.63906158453057], [-1.202566892513752, 48.63909066324106], [-1.202576537513891, 48.63911938537945], [-1.202580813817202, 48.63912987857811], [-1.202672765446013, 48.63934513871723], [-1.202181497268835, 48.63936318037452], [-1.202137270673969, 48.6393657687077], [-1.202093394196417, 48.63937026849864], [-1.202050055717112, 48.63937666047899], [-1.202007440813466, 48.63938491727815], [-1.201965731964632, 48.63939500354002], [-1.201925107770683, 48.63940687607477], [-1.20188574218693, 48.63942048404376], [-1.201847803780054, 48.63943576917675], [-1.201811455005803, 48.63945266602217], [-1.201781641766186, 48.63946839981883], [-1.200272618645986, 48.64031172257154], [-1.200267828232, 48.64031442491597], [-1.200235117052875, 48.64033432110239], [-1.200204439393982, 48.64035559253072], [-1.200175926621758, 48.6403781481152], [-1.200149700833257, 48.64040189127117], [-1.200125874332865, 48.64042672032806], [-1.200104549151484, 48.64045252896585], [-1.200085816609626, 48.64047920666929], [-1.200069756925963, 48.64050663920166], [-1.200056438874522, 48.64053470909371], [-1.200045919489359, 48.64056329614692], [-1.200038243820438, 48.64059227794783], [-1.200033444741104, 48.64062153039255], [-1.200031542806774, 48.64065092821795], [-1.200032546166729, 48.64068034553825], [-1.200036450529642, 48.64070965638381], [-1.200043239181323, 48.64073873524077], [-1.200052883056721, 48.64076745758855], [-1.200065340863807, 48.64079570043289], [-1.20008055926049, 48.6408233428327], [-1.200098473083335, 48.64085026641798], [-1.200119005626101, 48.64087635589647], [-1.200142068967918, 48.64090149954772], [-1.200149761612699, 48.64090912804412], [-1.200145216420196, 48.6409160357755], [-1.200129156629579, 48.64094346831542], [-1.200115838495524, 48.64097153821363], [-1.200105319052767, 48.64100012527143], [-1.200097643351452, 48.64102910707549], [-1.200092844265104, 48.6410583595219], [-1.200090942348819, 48.64108775734746], [-1.20009194575224, 48.64111717466636], [-1.200095850183658, 48.64114648550908], [-1.200102638928744, 48.64117556436168], [-1.200104709771781, 48.6411825445093], [-1.200186121508773, 48.64144593198417], [-1.199907072492359, 48.6417947804558], [-1.19990108994662, 48.6418024358247], [-1.199882356794231, 48.64182911349253], [-1.199866296568821, 48.64185654599392], [-1.199852978046416, 48.64188461585993], [-1.199842458263372, 48.6419132028919], [-1.19983478227129, 48.64194218467655], [-1.199829982944913, 48.64197143711023], [-1.199828080840639, 48.64200083492965], [-1.199829084108548, 48.64203025224914], [-1.199832988457672, 48.64205956309901], [-1.199837449502805, 48.64207999072288], [-1.199367156312914, 48.64234932663294], [-1.199335910209849, 48.64236838497992], [-1.199305230930292, 48.64238965616461], [-1.199276716602153, 48.64241221152236], [-1.19925048932902, 48.64243595446915], [-1.199226661421513, 48.64246078333585], [-1.199205334916651, 48.64248659180277], [-1.199186601140461, 48.64251326935562], [-1.199170540317249, 48.64254070175818], [-1.19915722122554, 48.64256877154201], [-1.199146700904086, 48.64259735850886], [-1.199139024406828, 48.64262634024563], [-1.199134224610727, 48.64265559264881], [-1.199132322073919, 48.64268499045539], [-1.199133324948742, 48.6427144077796], [-1.199137228945628, 48.64274371865194], [-1.199144017352045, 48.64277279755827], [-1.199153661103942, 48.64280151997795], [-1.199166118909769, 48.64282976291629], [-1.199181337427835, 48.64285740543197], [-1.199199251493686, 48.64288432915419], [-1.199219784400221, 48.64291041879044], [-1.19924284822519, 48.64293556261934], [-1.199268344208095, 48.64295965296969], [-1.199268907174309, 48.64296011707448], [-1.198688200206557, 48.64389224452903], [-1.198675105887308, 48.64391498939471], [-1.198661786155291, 48.6439430591184], [-1.198651265264952, 48.64397164603715], [-1.19864982948082, 48.64397631104529], [-1.198456675804427, 48.6446212982268], [-1.197510638180748, 48.64481970114973], [-1.197503796479562, 48.64482116242062], [-1.197462082220715, 48.64483124703914], [-1.197421452573908, 48.64484311797241], [-1.197382081518192, 48.64485672438871], [-1.19734413764331, 48.64487200802468], [-1.197307783428552, 48.64488890343487], [-1.197273174546472, 48.64490733827217], [-1.197240459196602, 48.64492723359727], [-1.197236618449302, 48.6449297474518], [-1.196651477775068, 48.64531578971412], [-1.196624636372328, 48.64533454634202], [-1.196596119173106, 48.645357101028], [-1.196569889099413, 48.64538084335659], [-1.19654605847402, 48.64540567166073], [-1.196524729345496, 48.64543147962361], [-1.19650599305112, 48.64545815673281], [-1.19648992982599, 48.64548558875426], [-1.196476608458961, 48.64551365822081], [-1.196466085998258, 48.64554224493593], [-1.196458407507435, 48.64557122648745], [-1.196453605871486, 48.64560047877257], [-1.19645170165692, 48.64562987652887], [-1.19645270302279, 48.64565929387079], [-1.196456605686342, 48.6456886048287], [-1.196463392940621, 48.64571768388829], [-1.196473035726551, 48.64574640652796], [-1.196485492756698, 48.64577464975228], [-1.19650071069265, 48.64580229261868], [-1.196518624372509, 48.6458292167548], [-1.196539157090775, 48.64585530686639], [-1.196562220926076, 48.6458804512301], [-1.196587717117814, 48.64590454217235], [-1.196615536489141, 48.64592747653047], [-1.196645559914347, 48.6459491560945], [-1.196677658828853, 48.64596948802737], [-1.196711695780031, 48.64598838526301], [-1.196747525015689, 48.646005766879], [-1.196776136083284, 48.64601802927857], [-1.197297813780185, 48.64622949554524], [-1.197529906850527, 48.64658013581086], [-1.197539720773742, 48.64659429059588], [-1.197560254333834, 48.64662038052306], [-1.197583319030287, 48.6466455246799], [-1.197608816098783, 48.64666961539368], [-1.197636636358739, 48.64669254950273], [-1.197666660680508, 48.64671422879805], [-1.197698760496033, 48.6467345604437], [-1.19773279834843, 48.64675345737511], [-1.19776862848169, 48.64677083867076], [-1.197806097464187, 48.64678662989989], [-1.197845044845727, 48.64680076344038], [-1.197885303844921, 48.64681317876891], [-1.197926702063175, 48.64682382271976], [-1.197969062223394, 48.64683264971276], [-1.198012202928682, 48.64683962194855], [-1.198055939439175, 48.64684470957], [-1.198100084463871, 48.64684789079068], [-1.198128662708422, 48.64684892407222], [-1.200775460819465, 48.64690752879214], [-1.200967153086425, 48.64730883353518], [-1.200969357636548, 48.64731336515477], [-1.200984578501936, 48.64734100742265], [-1.201002495129617, 48.64736793085486], [-1.2010230308014, 48.64739402016005], [-1.201046097583405, 48.64741916361841], [-1.201071596702321, 48.64744325356025], [-1.201099418968792, 48.64746618682716], [-1.201129445244737, 48.64748786521382], [-1.201161546953349, 48.6475081958882], [-1.201195586630006, 48.64752709178973], [-1.201231418510869, 48.64754447200156], [-1.201260030271449, 48.64755673276315], [-1.201377893804143, 48.64760450249246], [-1.201679890492959, 48.64783605367328], [-1.201708654234668, 48.64785676073027], [-1.201740756412784, 48.64787709124187], [-1.201774796556627, 48.64789598697085], [-1.201810628900379, 48.64791336700107], [-1.201848100002601, 48.64792915690697], [-1.201887049404324, 48.64794328907225], [-1.201927310315449, 48.64795570297939], [-1.201968710329247, 48.64796634546884], [-1.202011072160669, 48.64797517096661], [-1.202054214405985, 48.64798214167978], [-1.202097952318577, 48.64798722775777], [-1.202116854173618, 48.64798882647138], [-1.204180345702706, 48.64814385959504], [-1.2044165753862, 48.64832496958789], [-1.204803722026346, 48.64866999680659], [-1.204481075290038, 48.6490195655302], [-1.202962131178909, 48.64893730927727], [-1.20255767002494, 48.64884181928064], [-1.202554508702176, 48.64884107873793], [-1.202512146045993, 48.6488322534416], [-1.202469003008211, 48.64882528290126], [-1.202425264329432, 48.64882019696523], [-1.2023811173004, 48.64881701741156], [-1.202336750960658, 48.6488157578553], [-1.202292355288479, 48.64881642368989], [-1.202248120387957, 48.64881901206429], [-1.202204235674773, 48.64882351189483], [-1.202183017942922, 48.64882639423348], [-1.199840723701697, 48.64917045550408], [-1.197931096880525, 48.64905447232341], [-1.197920401136654, 48.64905387909299], [-1.19787603469977, 48.6490526178094], [-1.197831638759566, 48.64905328191544], [-1.197787403421293, 48.64905586856749], [-1.197743518102534, 48.64906036668933], [-1.197700170721949, 48.64906675701984], [-1.197657546895241, 48.64907501219534], [-1.197643471793217, 48.64907818637146], [-1.195818623638871, 48.64950453909431], [-1.195790980500313, 48.64951144914924], [-1.195750346678886, 48.64952331948615], [-1.195710971508002, 48.64953692532389], [-1.19567302359499, 48.64955220840153], [-1.195636665436486, 48.64956910327611], [-1.195602052721911, 48.64958753760273], [-1.195569333667186, 48.64960743244439], [-1.195538648379935, 48.64962870261009], [-1.19551012825923, 48.64965125701928], [-1.195483895433858, 48.64967499909231], [-1.195460062238081, 48.64969982716338], [-1.19543873073156, 48.6497256349166], [-1.195419992261784, 48.64975231184055], [-1.195403927073104, 48.64977974370177], [-1.195390603962829, 48.64980781303395], [-1.195380079986679, 48.64983639964108], [-1.19537240021464, 48.64986538111133], [-1.195367597537265, 48.64989463334252], [-1.195365692525436, 48.64992403107221], [-1.195366693341706, 48.64995344841518], [-1.195370595705558, 48.64998275940161], [-1.195377382911436, 48.6500118385171], [-1.19537945358339, 48.65001881913666], [-1.195543731719104, 48.65055036962161], [-1.195551304187197, 48.65057211171322], [-1.195563761894882, 48.65060035502858], [-1.195578980784271, 48.6506279980084], [-1.19559689568933, 48.6506549222799], [-1.195617429899363, 48.65068101254821], [-1.195640495486563, 48.65070615708925], [-1.195665993682857, 48.65073024822882], [-1.195693815302825, 48.6507531828033], [-1.195723841211125, 48.6507748626018], [-1.195755942832586, 48.65079519478627], [-1.195789982702868, 48.65081409228967], [-1.195825815057352, 48.65083147418823], [-1.195863286454597, 48.65084726604841], [-1.195902236434299, 48.6508614002455], [-1.195942498203977, 48.65087381625329], [-1.195983899353166, 48.65088446090325], [-1.196026262591943, 48.65089328861221], [-1.19606940651056, 48.65090026157765], [-1.196113146355267, 48.65090534993939], [-1.19615729482077, 48.65090853190784], [-1.196201662851539, 48.65090979385683], [-1.196246060451816, 48.65090913038251], [-1.196290297499101, 48.6509065443259], [-1.196334184558567, 48.65090204676126], [-1.196373313498496, 48.65089636624095], [-1.199923668249827, 48.65030761774598], [-1.201387968990568, 48.6514550636347], [-1.201336738892105, 48.65182551808347], [-1.201335844077642, 48.65183260492838], [-1.201333942480602, 48.6518620027534], [-1.201334946825889, 48.6518914200402], [-1.201338852817959, 48.65192073081936], [-1.201345643735667, 48.65194980957737], [-1.201347713608101, 48.65195678456507], [-1.201465293965871, 48.65233709485797], [-1.201472870970095, 48.65235884207851], [-1.201485332445367, 48.65238708474648], [-1.20150055512952, 48.65241472693622], [-1.201518473840755, 48.65244165027849], [-1.201539011851647, 48.65246773948221], [-1.201562081218204, 48.65249288282801], [-1.201587583156405, 48.65251697264672], [-1.201615408464583, 48.65253990578039], [-1.201645437991687, 48.65256158402427], [-1.201677543147022, 48.65258191454714], [-1.201711586451237, 48.65260081028882], [-1.201745825335925, 48.65261746563576], [-1.202291152880066, 48.65286571599044], [-1.202308299856545, 48.65307074382167], [-1.202236901303215, 48.65404579446977], [-1.201977421459384, 48.65514501584705], [-1.201976005275354, 48.65515130608822], [-1.201972520726204, 48.65517054020788], [-1.201687925181314, 48.65709002482909], [-1.201679543149645, 48.65708210768367], [-1.201651715299241, 48.65705917457278], [-1.201621683084047, 48.65703749633725], [-1.201589575107109, 48.65701716580507], [-1.201555528859528, 48.65699827003297], [-1.201519690131383, 48.65698088993377], [-1.201482212388474, 48.65696509993029], [-1.201443256113768, 48.65695096763613], [-1.201402988121427, 48.65693855356657], [-1.201361580841842, 48.6569279108793], [-1.20131921158376, 48.65691908514676], [-1.201276061774315, 48.65691211416105], [-1.201232316183445, 48.65690702777242], [-1.20118816213151, 48.65690384776089], [-1.201143788687991, 48.65690258774335], [-1.201099385861715, 48.65690325311532], [-1.201055143787331, 48.65690584102764], [-1.201011251911237, 48.65691034039871], [-1.200967898180272, 48.65691673196211], [-1.200925268237236, 48.65692498834885], [-1.200883544625551, 48.65693507420481], [-1.200842906008599, 48.65694694634171], [-1.200803526403462, 48.65696055392265], [-1.200765574436813, 48.65697583867923], [-1.200729212622493, 48.65699273516117], [-1.200694596665692, 48.65701117101681], [-1.200661874795979, 48.65703106730259], [-1.200631187133208, 48.65705233882122], [-1.200602665086763, 48.65707489448647], [-1.200576430793265, 48.6570986377133], [-1.200552596593631, 48.65712346683097], [-1.200531264551699, 48.65714927551905], [-1.200512526017254, 48.65717595326214], [-1.20049646123493, 48.65720338582332], [-1.200491989264416, 48.65721211752388], [-1.200428302139023, 48.65734078980312], [-1.200355496750065, 48.65736819157045], [-1.200342942851365, 48.65735633356103], [-1.200315115458694, 48.65733340012604], [-1.20028508365585, 48.65731172154059], [-1.200252976044161, 48.65729139063432], [-1.200218930113086, 48.65727249446541], [-1.200183091651468, 48.65725511394853], [-1.200145614123807, 48.6572393235082], [-1.20010665801231, 48.65722519075994], [-1.200066390130301, 48.6572127762209], [-1.20002498290781, 48.65720213305083], [-1.199982613653245, 48.65719330682425], [-1.19993946379382, 48.65718633533538], [-1.199895718099613, 48.65718124843659], [-1.199851563891463, 48.65717806791003], [-1.19980719023951, 48.657176807375], [-1.199762787153442, 48.65717747222897], [-1.199718544769066, 48.65718005962519], [-1.1996746525341, 48.65718455848419], [-1.199631298396899, 48.65719094954179], [-1.199588668002005, 48.65719920543113], [-1.199546943894836, 48.65720929080019], [-1.199506304740814, 48.65722116246288], [-1.199466924559338, 48.65723476958415], [-1.199428971979559, 48.65725005389773], [-1.199392609517977, 48.6572669499552], [-1.199357992882519, 48.65728538540672], [-1.199325270305631, 48.65730528131049], [-1.199294581910246, 48.65732655247076], [-1.199266059108846, 48.6573491078028], [-1.199239824041347, 48.65737285072319], [-1.199215989051905, 48.65739767956238], [-1.199194656207774, 48.65742348800109], [-1.199175916862179, 48.65745016552511], [-1.199159851263227, 48.65747759789841], [-1.199155379036259, 48.65748632954661], [-1.19915446010213, 48.6574881860283], [-1.198939708489117, 48.65749606350164], [-1.198895465782159, 48.65749865058], [-1.198851573195494, 48.65750314912362], [-1.198808218679097, 48.65750953986967], [-1.198765587879047, 48.65751779545261], [-1.198723863342501, 48.65752788052176], [-1.198683223736801, 48.6575397518922], [-1.198643843083183, 48.65755335873038], [-1.198605890012856, 48.65756864277101], [-1.19856952704442, 48.65758553856693], [-1.198534909887958, 48.65760397376938], [-1.198502186778196, 48.65762386943761], [-1.198471497840326, 48.65764514037695], [-1.198442974489125, 48.65766769550366], [-1.19841673886685, 48.65769143823508], [-1.198392903320094, 48.65771626690248], [-1.198371569918488, 48.65774207518739], [-1.198280776196747, 48.65774540507388], [-1.19794192930812, 48.65775783174409], [-1.19792351372578, 48.65775890842436], [-1.197915896727049, 48.6577591195022], [-1.193825147356105, 48.65801389570889], [-1.193806936750741, 48.65801519399365], [-1.19376304325826, 48.65801969058806], [-1.193719687650097, 48.65802607940858], [-1.193677055577005, 48.65803433309815], [-1.193635329591678, 48.65804441631401], [-1.193594688367452, 48.65805628587942], [-1.193555305932879, 48.65806989096825], [-1.193517350926461, 48.6580851733229], [-1.193480985875191, 48.65810206750344], [-1.193479564590401, 48.65810277678742], [-1.192714011347982, 48.65848585932943], [-1.192680812732985, 48.65850358348762], [-1.192648086722123, 48.65852347748282], [-1.192617394759452, 48.65854474685297], [-1.192588868272739, 48.65856730052094], [-1.192562629417611, 48.65859104191049], [-1.192538790554527, 48.65861586935849], [-1.19251745376727, 48.65864167655188], [-1.192498710425951, 48.6586683529815], [-1.192482640795844, 48.65869578441619], [-1.192469313693203, 48.65872385339129], [-1.192458786190893, 48.65875243971236], [-1.19245110337397, 48.65878142096896], [-1.192446298145995, 48.65881067305955], [-1.192444391088863, 48.65884007072253], [-1.192445390373798, 48.6588694880728], [-1.192449291726938, 48.65889879914063], [-1.192456078446984, 48.65892787841113], [-1.192465721477098, 48.65895660136203], [-1.192478179528869, 48.65898484499642], [-1.192493399259464, 48.65901248837001], [-1.192511315499336, 48.65903941310826], [-1.192531851531951, 48.65906550391432], [-1.192554919421829, 48.65909064906192], [-1.192580420390985, 48.65911474087406], [-1.192608245242128, 48.65913767618444], [-1.192638274826068, 48.65915935677895], [-1.192670380551846, 48.6591796898161], [-1.192704424937656, 48.65919858822514], [-1.192728732792625, 48.65921063696486], [-1.193320064342711, 48.65949029692213], [-1.193439451738441, 48.66206929760822], [-1.191819427648424, 48.66268381605439], [-1.191785405001185, 48.66269761623243], [-1.191749036032728, 48.66271450985781], [-1.191714412845391, 48.66273294299299], [-1.191681683700017, 48.66275283670611], [-1.191650988747397, 48.66277410581106], [-1.19162245942803, 48.66279665923172], [-1.191596217910051, 48.66282040039271], [-1.191572376564953, 48.66284522763233], [-1.191551037487308, 48.66287103463796], [-1.191535036382188, 48.6628935055811], [-1.191471111854836, 48.66299010723821], [-1.190940216975358, 48.66306562575037], [-1.190913768716315, 48.66306975638396], [-1.190871131906992, 48.66307800902661], [-1.190829401174283, 48.6630880912171], [-1.190788755211687, 48.66309995978304], [-1.190785735647788, 48.66310092692999], [-1.189898054429017, 48.66338703495394], [-1.188527655816409, 48.66367421275393], [-1.188520812030811, 48.66367567333106], [-1.188479080330835, 48.66368575466523], [-1.18843843333059, 48.66369762239707], [-1.188399045083066, 48.66371122570831], [-1.188361084251928, 48.66372650634894], [-1.188324713389026, 48.66374339888627], [-1.18829008823826, 48.6637618309855], [-1.188287630894931, 48.66376323595797], [-1.187718021202018, 48.66409048111974], [-1.187687746969197, 48.66410896873011], [-1.187657049499611, 48.66413023676311], [-1.187628517619772, 48.66415278918728], [-1.187602273508468, 48.66417652943146], [-1.187578429548641, 48.66420135583763], [-1.187557087845896, 48.66422716209699], [-1.187538339791507, 48.66425383770464], [-1.187522265670573, 48.66428126843266], [-1.18750893431899, 48.6643093368197], [-1.187498402827711, 48.66433792267355], [-1.187490716298578, 48.66436690358589], [-1.187485907651458, 48.66439615545674], [-1.187483997482675, 48.6644255530254], [-1.187484993976862, 48.66445497040709], [-1.187488892872008, 48.66448428163198], [-1.187495677477406, 48.66451336118463], [-1.18750531874533, 48.6645420845414], [-1.187517775394782, 48.66457032870374], [-1.187532994089047, 48.66459797272504], [-1.187550909662971, 48.66462489822803], [-1.18757144540288, 48.66465098991256], [-1.187594513374572, 48.66467613604857], [-1.187620014799644, 48.66470022895496], [-1.187647840478885, 48.66472316546058], [-1.187677871259607, 48.66474484734623], [-1.187709978545717, 48.66476518176497], [-1.187744024848674, 48.66478408164012], [-1.187779864376299, 48.66480146603784], [-1.187815245967416, 48.66481643573157], [-1.1902231785281, 48.66576703806393], [-1.19022527629622, 48.66576786280209], [-1.190264236248204, 48.66578199890094], [-1.1903045085719, 48.66579441687687], [-1.190345920811897, 48.6658050635529], [-1.190388295630791, 48.66581389333719], [-1.190431451568974, 48.66582086841827], [-1.190475203821395, 48.66582595892703], [-1.190519365029585, 48.66582914306451], [-1.190563746083477, 48.66583040719551], [-1.190608156931516, 48.66582974590654], [-1.19065240739449, 48.66582716202946], [-1.190696307980097, 48.66582266662909], [-1.190739670694476, 48.66581627895606], [-1.190782309847125, 48.66580802636389], [-1.190824042846601, 48.66579794419255], [-1.190864690983637, 48.66578607561563], [-1.190867712063803, 48.66578510802958], [-1.191675921144684, 48.66552461757441], [-1.192226839989707, 48.66558549994], [-1.192243062610994, 48.66558715939062], [-1.192287223721422, 48.665590342847], [-1.192331604608967, 48.66559160629335], [-1.192376015222834, 48.66559094431931], [-1.192420265384848, 48.66558835975962], [-1.192464165603928, 48.66558386368203], [-1.192507527887792, 48.66557747533997], [-1.192550166547814, 48.66556922209], [-1.192591898994613, 48.66555913927471], [-1.192632546519259, 48.66554727007137], [-1.192671935059648, 48.66553366530694], [-1.192709895944943, 48.66551838324044], [-1.192746266618516, 48.66550148931358], [-1.192780891333691, 48.66548305587033], [-1.192813621821272, 48.66546316184714], [-1.192844317923572, 48.66544189243499], [-1.192872848195576, 48.66541933871446], [-1.192899090467172, 48.66539559726557], [-1.192917603022301, 48.6653766398196], [-1.193241117466815, 48.66502636705992], [-1.193948618895897, 48.6647261038928], [-1.193953766540348, 48.66472389742243], [-1.193990136221395, 48.66470700309989], [-1.194024759933692, 48.66468856927982], [-1.194057489411959, 48.66466867490027], [-1.194088184503188, 48.66464740515367], [-1.19411671376668, 48.66462485112218], [-1.194134894968644, 48.66460875458085], [-1.194306237698808, 48.66444976834827], [-1.19448052446115, 48.66439954238128], [-1.196120989519804, 48.6656126053287], [-1.196141747783353, 48.665627280773], [-1.196173859055274, 48.66564761281908], [-1.196207909136609, 48.66566651017852], [-1.196243752219011, 48.66568389192815], [-1.196281234814998, 48.66569968363514], [-1.196320196416443, 48.66571381767536], [-1.196360470181026, 48.66572623352319], [-1.196401883646923, 48.66573687801104], [-1.196444259471572, 48.66574570555621], [-1.19648741619105, 48.66575267835687], [-1.196531168997048, 48.66575776655377], [-1.1965753305287, 48.66576094835784], [-1.196619711674478, 48.66576221014363], [-1.196664122382489, 48.66576154650797], [-1.19670837247414, 48.66575896029264], [-1.196747499281115, 48.66575504642617], [-1.199755814701626, 48.66539439044286], [-1.199760587810035, 48.66539380646402], [-1.199803949002871, 48.66538741536122], [-1.199846586304001, 48.66537915939659], [-1.199888317129796, 48.66536907392437], [-1.19991312560537, 48.66536207895145], [-1.201832957295612, 48.6647906509407], [-1.201848794101439, 48.6647857738572], [-1.201888179552839, 48.66477216592431], [-1.201926137062235, 48.66475688080445], [-1.201962504088525, 48.66473998395202], [-1.201968125574582, 48.66473715553244], [-1.203130315132872, 48.66414605591847], [-1.203159313757574, 48.66413044781481], [-1.203192039258623, 48.66411055082595], [-1.203222730145335, 48.66408927863215], [-1.203251254995137, 48.66406672232602], [-1.20327639546838, 48.6640440386127], [-1.203797169100218, 48.66354193895945], [-1.203798265270772, 48.66354087884037], [-1.203822100909315, 48.6635160490589], [-1.203843433963079, 48.66349023976991], [-1.203862173083334, 48.66346356149417], [-1.203878238029468, 48.66343612847335], [-1.20388041006442, 48.66343196082209], [-1.204787489268508, 48.66166335048834], [-1.205715649697823, 48.66080991829035], [-1.205725479979232, 48.66080063465137], [-1.205742788189677, 48.66078296771654], [-1.206311010477659, 48.66017209218758], [-1.20632222116158, 48.66017615824559], [-1.206362492960476, 48.66018857058354], [-1.206403903982907, 48.66019921146133], [-1.206446276896764, 48.6602080353117], [-1.206489430250535, 48.66021500434876], [-1.206533179250418, 48.66022008872928], [-1.206577336551753, 48.6602232666805], [-1.2066217130612, 48.6602245245936], [-1.206666118746689, 48.66022385708191], [-1.206710363451129, 48.6602212670038], [-1.206754257706839, 48.66021676545078], [-1.206797613547117, 48.66021037169967], [-1.206840245310836, 48.66020211313011], [-1.20688197043811, 48.66019202510765], [-1.206922610251644, 48.66018015083173], [-1.206961990722029, 48.660166541151], [-1.206999943213138, 48.66015125434569], [-1.207036305204217, 48.6601343558777], [-1.207070920985878, 48.66011591811043], [-1.207103642326994, 48.66009601999883], [-1.20713432910935, 48.66007474675151], [-1.207162849927557, 48.66005218946527], [-1.207189082652149, 48.6600284447356], [-1.207212914951943, 48.66000361424274], [-1.20723424477563, 48.65997780431611], [-1.207252980788272, 48.65995112547917], [-1.207269042762882, 48.65992369197619], [-1.207282361923097, 48.6598956212827], [-1.207291488124591, 48.65987133669223], [-1.207630206736929, 48.65884948558358], [-1.209796757221486, 48.65707634558959], [-1.209803517113472, 48.65707072157717], [-1.209829747036246, 48.65704697623799], [-1.209853576619573, 48.65702214519074], [-1.209874903823676, 48.65699633476714], [-1.209884798624954, 48.65698281364236], [-1.210610226044988, 48.65594779625716], [-1.211139224288138, 48.65535309246679], [-1.211365747426565, 48.65524871325008], [-1.21138599770442, 48.65523901080859], [-1.211420608522311, 48.65522057172113], [-1.211453324957772, 48.65520067236077], [-1.211484006913628, 48.65517939794135], [-1.211512523005096, 48.65515683956478], [-1.211538751122934, 48.65513309383132], [-1.211562578955661, 48.65510826242535], [-1.211583904471214, 48.6550824516803], [-1.21160263635314, 48.65505577212304], [-1.211618694391858, 48.65502833800103], [-1.211632009828292, 48.65500026679235], [-1.211633708925115, 48.65499615176141], [-1.212262279399705, 48.65344489577172], [-1.212271095544559, 48.65342042266268], [-1.212278766122412, 48.65339144006739], [-1.212283559298348, 48.65336218713507], [-1.212285454552502, 48.65333278913168], [-1.212284443773861, 48.65330337194412], [-1.212280531296039, 48.65327406154113], [-1.212273733877851, 48.65324498343425], [-1.212264080631689, 48.65321626213971], [-1.212251612898903, 48.65318802064592], [-1.212242593916821, 48.65317098500754], [-1.211874160129702, 48.65251736855066], [-1.212016685551027, 48.65214199774288], [-1.212022799785766, 48.65212440980748], [-1.212030470309022, 48.65209542722626], [-1.212035263505862, 48.65206617430173], [-1.212037158856338, 48.65203677629983], [-1.212036148249041, 48.65200735910743], [-1.212032236016702, 48.65197804869337], [-1.212025438917099, 48.65194897056913], [-1.212015786061524, 48.65192024925118], [-1.21200331878931, 48.65189200772786], [-1.211988090491727, 48.65186436693277], [-1.21197016638235, 48.65183744522706], [-1.21194962321866, 48.65181135789221], [-1.211926548972346, 48.65178621663694], [-1.211901042453429, 48.65176212911843], [-1.211891479309493, 48.65175389845536], [-1.211450454561052, 48.65138325663013], [-1.21159618993502, 48.65099944731832], [-1.211602305736685, 48.65098185529896], [-1.211609976328907, 48.65095287274088], [-1.211614769661518, 48.65092361983171], [-1.211616665214532, 48.65089422183443], [-1.211615654876119, 48.65086480463599], [-1.211611742977674, 48.65083549420531], [-1.211604946275653, 48.65080641605387], [-1.211595293879331, 48.65077769469821], [-1.211582827126501, 48.65074945312693], [-1.211567599405776, 48.65072181227383], [-1.211549675928694, 48.65069489050019], [-1.211529133449696, 48.65066880308793], [-1.211506059937675, 48.65064366174603], [-1.211480554199373, 48.65061957413201], [-1.211452725455984, 48.65059664339127], [-1.211422692875661, 48.65057496771497], [-1.211390585062673, 48.65055463992016], [-1.211356539507738, 48.65053574705172], [-1.211320701997898, 48.65051837001041], [-1.211283225993678, 48.65050258320554], [-1.211244271970631, 48.65048845423723], [-1.211204006733246, 48.65047604360644], [-1.211162602700204, 48.65046540445619], [-1.211120237166123, 48.65045658234374], [-1.21107709154259, 48.65044961504572], [-1.211033350581297, 48.65044453239658], [-1.210989201582839, 48.65044135616023], [-1.210944833595136, 48.65044009993758], [-1.210900436603533, 48.65044076910778], [-1.210856200717818, 48.65044336080536], [-1.210812315357832, 48.65044786393263], [-1.210768968442495, 48.65045425920702], [-1.210758941563048, 48.6504560227441], [-1.209826515186359, 48.650625079771], [-1.209943670716256, 48.65027152737947], [-1.210991686897613, 48.64994126166868], [-1.210994271296069, 48.6499404427828], [-1.211033642648267, 48.64992683169316], [-1.211071586176107, 48.64991154352855], [-1.21110793939724, 48.6498946437566], [-1.211142546639792, 48.64987620474632], [-1.211155385259839, 48.64986870468563], [-1.212587986423617, 48.64901026809634], [-1.212607860180757, 48.64899786861949], [-1.21263853786493, 48.64897659388184], [-1.212667049922345, 48.64895403520843], [-1.212693274261005, 48.64893028920055], [-1.212717098585698, 48.64890545754394], [-1.212738420879229, 48.64887964657298], [-1.212757149838892, 48.64885296681574], [-1.212773205267959, 48.64882553252022], [-1.212775376066539, 48.64882136443966], [-1.213361903653158, 48.6476770003389], [-1.213373045472506, 48.64765309700595], [-1.213383558766481, 48.64762450874271], [-1.213391227819614, 48.64759552606149], [-1.213396019796469, 48.64756627307111], [-1.213397914182017, 48.6475368750377], [-1.213396902869384, 48.64750745784829], [-1.21339299019416, 48.64747814747178], [-1.213386192916119, 48.64744906941936], [-1.213376540147015, 48.64742034820722], [-1.21336407322618, 48.6473921068234], [-1.213348845543045, 48.64736446620077], [-1.213330922308908, 48.64733754469966], [-1.213310380277193, 48.64731145760082], [-1.213287307414872, 48.64728631661193], [-1.213261802525911, 48.64726222938899], [-1.21325552685297, 48.64725678369738], [-1.213247581391701, 48.64724999688243], [-1.213249846442468, 48.64724986412166], [-1.21329372879432, 48.64724536005979], [-1.213337072623566, 48.6472389638288], [-1.213379692320578, 48.64723070281916], [-1.213421405377206, 48.64722061240654], [-1.213462033167538, 48.64720873580087], [-1.213501401713961, 48.64719512386078], [-1.213539342431349, 48.64717983487602], [-1.213575692849305, 48.64716293431795], [-1.213610297308003, 48.64714449455887], [-1.213643007624958, 48.6471245945623], [-1.213673683728835, 48.64710331954479], [-1.213702194260291, 48.64708076061099], [-1.213728417133744, 48.6470570143631], [-1.213752240060295, 48.6470321824881], [-1.213773561028686, 48.64700637132126], [-1.213792288742006, 48.64697969139139], [-1.213808343008562, 48.64695225694736], [-1.213815735747803, 48.64693746802404], [-1.214054854053039, 48.6464298163696], [-1.214326395840975, 48.6461216089379], [-1.214344502086637, 48.64612054748482], [-1.214388383355356, 48.64611604300328], [-1.214431726072371, 48.64610964635766], [-1.214474344632852, 48.64610138494019], [-1.214516056533486, 48.64609129412824], [-1.214556683153314, 48.64607941713349], [-1.214596050519761, 48.64606580481622], [-1.214633990052696, 48.64605051546779], [-1.214670339286879, 48.64603361456112], [-1.214704942567459, 48.64601517446999], [-1.214737651717088, 48.64599527415939], [-1.214768326669367, 48.6459739988472], [-1.214796836069887, 48.64595143963921], [-1.214823057837944, 48.64592769313904], [-1.214846879689355, 48.64590286103456], [-1.214868199617458, 48.64587704966203], [-1.214886926329819, 48.64585036955123], [-1.214902979639001, 48.64582293495172], [-1.21491629080605, 48.64579486334392], [-1.214926802834777, 48.64576627493548], [-1.214934470715408, 48.6457372921474], [-1.214939261617862, 48.64570803908882], [-1.214941155031588, 48.64567864102624], [-1.214940142853866, 48.64564922384682], [-1.214934533827863, 48.64558234794652], [-1.21608855596933, 48.64451046700448], [-1.216096604261003, 48.64450282510422], [-1.216120424809057, 48.64447799273257], [-1.216141743479886, 48.6444521811206], [-1.216160468986312, 48.64442550079909], [-1.216176521146393, 48.64439806601852], [-1.216189831225771, 48.64436999426], [-1.216200342232956, 48.6443414057321], [-1.216208009162787, 48.64431242285604], [-1.216212799189003, 48.64428316974143], [-1.216214691804887, 48.64425377165502], [-1.216213678911138, 48.64422435448405], [-1.216209764850142, 48.64419504419737], [-1.21620296638759, 48.64416596630571], [-1.216193312640288, 48.64413724532468], [-1.216180844951826, 48.64410900424112], [-1.216165616714795, 48.64408136398676], [-1.216147693143008, 48.64405444292051], [-1.216127150991249, 48.6440283563211], [-1.216104078227029, 48.64400321589396], [-1.216078573653896, 48.64397912929285], [-1.216050746488044, 48.64395619965877], [-1.216020715890755, 48.64393452517805], [-1.215988610458143, 48.64391419866281], [-1.215954567670374, 48.64389530715234], [-1.215930262437288, 48.64388326369759], [-1.215929283172299, 48.64388280193768], [-1.215834190058156, 48.64383784320634], [-1.216117057299206, 48.64357510073584], [-1.216118027156761, 48.64357442801256], [-1.216146534592233, 48.64355186846513], [-1.216171652714615, 48.64352918795458], [-1.216305029598572, 48.64340049993934], [-1.216398241796333, 48.6433139178729], [-1.216517568817817, 48.643243037912], [-1.216695951506857, 48.64314082867317], [-1.216727177646171, 48.64312177353738], [-1.216757850005004, 48.64310049768843], [-1.21678635688502, 48.64307793798103], [-1.216811477736399, 48.64305525418967], [-1.217309766484882, 48.64257445667995], [-1.217974084411511, 48.64219381126623], [-1.21797555610198, 48.64219296921928], [-1.21800678887237, 48.64217390931894], [-1.218037460112278, 48.64215263312606], [-1.218065965881383, 48.64213007309889], [-1.218092184114628, 48.64210632584445], [-1.21809350369801, 48.64210503990541], [-1.218681089811415, 48.64153029209299], [-1.218703588124328, 48.64150674512521], [-1.218724904210804, 48.64148093302752], [-1.21874362724143, 48.64145425227854], [-1.218759677044856, 48.64142681713071], [-1.218772984896837, 48.64139874506656], [-1.218783493815372, 48.64137015629605], [-1.218791158804315, 48.64134117324149], [-1.218795947045639, 48.64131192001317], [-1.21879783804034, 48.64128252187832] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1.209472227028408, 48.66063366537245], [-1.209471217748588, 48.66060424817509], [-1.209467306342509, 48.66057493769101], [-1.209460509564029, 48.66054585943221], [-1.209450856523202, 48.66051713791536], [-1.20943838856016, 48.66048889612993], [-1.209423159069052, 48.6604612550105], [-1.209405233268848, 48.66043433291971], [-1.209384687923962, 48.66040824514073], [-1.209361611015538, 48.66038310338397], [-1.209336101364926, 48.660359015309], [-1.209308268209985, 48.66033608406293], [-1.209278230737796, 48.66031440783912], [-1.209246117573708, 48.66029407945715], [-1.209212066231002, 48.6602751859643], [-1.209176222521842, 48.66025780826409], [-1.209138739933189, 48.66024202076845], [-1.209099778968814, 48.66022789108068], [-1.209059506462884, 48.66021547970463], [-1.209018094865193, 48.66020483978661], [-1.208975721502914, 48.66019601688716], [-1.208932567820826, 48.6601890487863], [-1.208888818605396, 48.66018396532174], [-1.20884466119253, 48.66018078826136], [-1.208800284666076, 48.66017953120894], [-1.208755879048094, 48.66018019954776], [-1.20871163448512, 48.66018279041548], [-1.208667740434286, 48.66018729271837], [-1.208624384851682, 48.66019368717697], [-1.208581753388103, 48.66020194641027], [-1.208540028593463, 48.6602120350517], [-1.208533828789973, 48.66021371189937], [-1.207131861581128, 48.66059824345537], [-1.207097421379617, 48.66060844103555], [-1.20705804059984, 48.66062205076235], [-1.2070200877711, 48.66063733758642], [-1.207003981663812, 48.66064453302487], [-1.206669557837221, 48.66079859409124], [-1.206649301457727, 48.66080829705572], [-1.206614685044931, 48.66082673469474], [-1.20658196303495, 48.66084663266569], [-1.206551275547918, 48.66086790576394], [-1.20652275399278, 48.66089046289665], [-1.206496520503939, 48.66091420747232], [-1.206472687418874, 48.66093903781454], [-1.206451356796685, 48.6609648475977], [-1.206432619981146, 48.66099152630166], [-1.206416557209233, 48.66101895968531], [-1.206403454568401, 48.66104651502528], [-1.205923587389628, 48.66218171732532], [-1.205923370079598, 48.66218223257492], [-1.205912849501269, 48.66221082012457], [-1.205905173909547, 48.66223980227558], [-1.205900376177116, 48.66226905492268], [-1.205898476853717, 48.66229845280189], [-1.205899484077522, 48.6623278700271], [-1.205903393540615, 48.6623571806292], [-1.205910188506985, 48.66238625909528], [-1.205919839884502, 48.66241498090649], [-1.205932306348962, 48.66244322307082], [-1.205947534521565, 48.6624708646502], [-1.20596545919659, 48.6624977872779], [-1.205986003621371, 48.66252387566602], [-1.206009079824519, 48.66254901809863], [-1.206034588992417, 48.6625731069105], [-1.206062421892662, 48.66259603894797], [-1.20609245934161, 48.66261771601107], [-1.206124572714691, 48.66263804527338], [-1.206158624497224, 48.66265693968038], [-1.206194468873572, 48.66267431832163], [-1.206231952350814, 48.66269010677753], [-1.206270914416967, 48.66270423743786], [-1.206311188227693, 48.66271664979168], [-1.206352601321048, 48.66272729068596], [-1.206394976355929, 48.66273611455376], [-1.206433462071344, 48.66274242456987], [-1.207418186983236, 48.66288379218516], [-1.207422856810021, 48.6628844511841], [-1.207466608226551, 48.66288953520722], [-1.207510767930864, 48.66289271279818], [-1.207555146819288, 48.66289397034956], [-1.207599554849541, 48.66289330247628], [-1.207643801854521, 48.66289071203827], [-1.207687698356694, 48.66288621012857], [-1.207731056379686, 48.66287981602552], [-1.207773690253138, 48.66287155711034], [-1.207815417408109, 48.66286146874987], [-1.207856059158394, 48.66284959414518], [-1.207895441466549, 48.66283598414632], [-1.207933395688514, 48.66282069703474], [-1.207969759296099, 48.66280379827375], [-1.208004376573084, 48.66278536022802], [-1.208037099281787, 48.6627654618538], [-1.208067787298095, 48.66274418836046], [-1.208096309211666, 48.66272163084625], [-1.208122542887877, 48.66269788590742], [-1.208146375991848, 48.66267305522512], [-1.20815869366427, 48.66265864417345], [-1.208376974834349, 48.66239192544576], [-1.20876415012068, 48.66212639898349], [-1.208781762845319, 48.66211385008661], [-1.208810284081012, 48.66209129239361], [-1.208836517091376, 48.66206754729033], [-1.208860349544128, 48.66204271645842], [-1.208881679387139, 48.66201690622891], [-1.208900415285492, 48.66199022712654], [-1.20891647701256, 48.66196279339657], [-1.208927965796305, 48.66193899063353], [-1.20944551286019, 48.66075415450932], [-1.209447342770234, 48.66074988638299], [-1.209457861033794, 48.66072129850588], [-1.209465534346459, 48.66069231611383], [-1.209470329854609, 48.66066306331418], [-1.209472227028408, 48.66063366537245] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1.193835816222695, 48.65057907599584], [-1.193834816289299, 48.65054965864081], [-1.193830914776366, 48.65052034760318], [-1.193829638160913, 48.65051377834664], [-1.193609884164992, 48.64944513418621], [-1.193604374615356, 48.64942262422446], [-1.193594732762739, 48.64939390135042], [-1.193582276459391, 48.64936565781867], [-1.193567059049199, 48.64933801457127], [-1.193549145699595, 48.64931108997994], [-1.193528613121577, 48.64928499933858], [-1.193505549241711, 48.64925985436994], [-1.193480052825433, 48.64923576274721], [-1.193452233054066, 48.64921282763271], [-1.193422209057298, 48.64919114723664], [-1.193390109402743, 48.64917081439612], [-1.19335607154605, 48.64915191617756], [-1.193320241241507, 48.6491345335047], [-1.193282771918403, 48.64911874081099], [-1.193243824024113, 48.64910460572173], [-1.193203564336649, 48.64909218876411], [-1.193162165250949, 48.64908154310819], [-1.19311980404063, 48.6490727143392], [-1.193076662098371, 48.64906574026216], [-1.19303292416046, 48.64906065074059], [-1.192988777514441, 48.64905746756783], [-1.192966488681122, 48.6490565919969], [-1.189498749058369, 48.64895821794163], [-1.189476671645311, 48.64895782965103], [-1.189432275678168, 48.64895849050232], [-1.189388039991635, 48.64896107391137], [-1.18934415400471, 48.6489655688159], [-1.189300805639073, 48.64897195596855], [-1.189258180514523, 48.64898020801915], [-1.189216461153877, 48.6489902896323], [-1.189175826202273, 48.64900215763786], [-1.189136449661086, 48.64901576121654], [-1.189106880823807, 48.64902747144124], [-1.18722744104562, 48.64981533685799], [-1.187219060101061, 48.64981890739618], [-1.187182698910583, 48.64983579958754], [-1.187148082914633, 48.64985423135969], [-1.187115360342921, 48.64987412378664], [-1.187084671318379, 48.6498953916876], [-1.187056147256127, 48.64991794399181], [-1.187029910301498, 48.64994168412856], [-1.18700607280678, 48.64996651044044], [-1.186984736849899, 48.64999231661896], [-1.186965993797409, 48.65001899215957], [-1.186949923913265, 48.65004642283475], [-1.18693659601496, 48.65007449118323], [-1.186926067178638, 48.65010307701301], [-1.186918382495088, 48.65013205791598], [-1.186913574875925, 48.65016130979201], [-1.186911664913197, 48.65019070738046], [-1.186912660790678, 48.65022012479652], [-1.186916558248974, 48.65024943607021], [-1.186917834285171, 48.65025600701116], [-1.18697259624204, 48.65052247793741], [-1.186733262865383, 48.65084762543689], [-1.186718950109602, 48.65086839199936], [-1.186702879819284, 48.65089582263828], [-1.186689551558069, 48.65092389095639], [-1.186683599623584, 48.65093903868794], [-1.186668667814614, 48.65097994778673], [-1.186664861473392, 48.65098068455525], [-1.186623139933769, 48.65099076522272], [-1.186582502754268, 48.65100263230683], [-1.186543123945734, 48.65101623499234], [-1.186505172131482, 48.65103151503179], [-1.186468809824677, 48.65104840699523], [-1.186434192732664, 48.65106683855019], [-1.186401469089768, 48.65108673077158], [-1.18637077902354, 48.65110799847954], [-1.186342253953594, 48.65113055060411], [-1.186316016029541, 48.65115429057546], [-1.186292177607804, 48.65117911673674], [-1.186270840770307, 48.6512049227802], [-1.186252096887361, 48.65123159820183], [-1.186236026226539, 48.6512590287746], [-1.18622269760855, 48.65128709703764], [-1.186212168112695, 48.65131568279952], [-1.186204482832542, 48.6513446636522], [-1.186199674682344, 48.65137391549587], [-1.186197764256347, 48.65140331306996], [-1.18619867194715, 48.65143013612602], [-1.186196697951802, 48.65143150405623], [-1.186168172620346, 48.65145405613703], [-1.186141934445373, 48.65147779606789], [-1.186123425106691, 48.65149675172897], [-1.18548485702374, 48.6521881692393], [-1.185479527553675, 48.65219403967279], [-1.185458189868716, 48.65221984556318], [-1.185439445176677, 48.65224652084996], [-1.185423373748309, 48.65227395130683], [-1.185410044407917, 48.65230201947345], [-1.185399514237842, 48.6523306051586], [-1.185391828334328, 48.65235958595477], [-1.185387019614466, 48.65238883776225], [-1.185385108674979, 48.6524182353208], [-1.185386103703738, 48.65244765274566], [-1.185390000445068, 48.6524769640668], [-1.185396782217432, 48.65250604376827], [-1.185406419985176, 48.65253476732597], [-1.185410695453155, 48.65254526491832], [-1.185635314224218, 48.65307139329811], [-1.18564349141828, 48.65308914010341], [-1.185658705608608, 48.65311678439598], [-1.185676616089746, 48.65314371021388], [-1.185697146169882, 48.65316980225537], [-1.185720207938976, 48.65319494878905], [-1.185745702645242, 48.65321904213202], [-1.185773521118287, 48.65324197911138], [-1.185803544236019, 48.6532636615057], [-1.185835643435618, 48.65328399646606], [-1.185869681262795, 48.65330289691341], [-1.185905511961662, 48.65332028191131], [-1.185942982098176, 48.65333607701309], [-1.185981931217186, 48.65335021458009], [-1.18602219252989, 48.65336263407172], [-1.18606359362776, 48.65337328230446], [-1.186105957221393, 48.65338211367981], [-1.186149101899183, 48.65338909037958], [-1.186192842904261, 48.65339418252761], [-1.186236992926359, 48.65339736831804], [-1.186281362903232, 48.65339863410839], [-1.186325762830847, 48.65339797447825], [-1.186370002576753, 48.65339539225233], [-1.186413892694493, 48.65339089848849], [-1.186457245235071, 48.65338451243001], [-1.186473089522193, 48.65338167945284], [-1.187032106025161, 48.65327690469804], [-1.187419546841431, 48.65331974767945], [-1.187435764768992, 48.65332140774797], [-1.187479914805918, 48.6533245930595], [-1.187524284749877, 48.65332585836852], [-1.187568684596956, 48.65332519825675], [-1.187612924215025, 48.65332261555095], [-1.187656814158205, 48.65331812131092], [-1.187700166478238, 48.65331173478218], [-1.187742795529148, 48.65330348331359], [-1.187784518762576, 48.6532934022401], [-1.187825157509364, 48.65328153473148], [-1.187864537744696, 48.65326793160741], [-1.187902490833428, 48.6532526511201], [-1.187909216244356, 48.65324952687111], [-1.187988945709786, 48.65326568144791], [-1.188005032512536, 48.65326879752022], [-1.188048177356413, 48.65327577350493], [-1.188091918455196, 48.65328086492811], [-1.188136068498098, 48.65328404998677], [-1.188180438422812, 48.65328531504174], [-1.188224838225467, 48.6532846546757], [-1.188269077774171, 48.65328207171653], [-1.188312967623366, 48.6532775772252], [-1.188356319825155, 48.65327119044817], [-1.188398948734037, 48.65326293873549], [-1.188440671802418, 48.65325285742295], [-1.188481310361536, 48.6532409896816], [-1.188520690387656, 48.65322738633203], [-1.188550261921357, 48.65321567622387], [-1.190481776837007, 48.65240600341343], [-1.190490157890118, 48.65240243267529], [-1.19051582888243, 48.65239075274894], [-1.193554134844552, 48.65093921310398], [-1.193564825163922, 48.65093399950827], [-1.193599439551518, 48.65091556579884], [-1.19363216023638, 48.65089567152148], [-1.193662847102708, 48.6508744018682], [-1.193691368745216, 48.65085184792078], [-1.1937176030304, 48.65082810626018], [-1.193741437620821, 48.65080327855337], [-1.19376277045518, 48.6507774711181], [-1.193781510185747, 48.6507507944671], [-1.193797576569351, 48.65072336283517], [-1.193810900811061, 48.65069529368996], [-1.193821425858694, 48.65066670722867], [-1.19382910664668, 48.65063772586393], [-1.193833910289723, 48.65060847369876], [-1.193835816222695, 48.65057907599584] ] ] } } ] } ================================================ FILE: packages/turf-dissolve/test/out/issue-1237.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-83.49609375, 42.64052548480924], [-83.49540710449219, 42.64052548480924], [-83.49540710449219, 42.64103059165476], [-83.49609375, 42.64103059165476], [-83.49609375, 42.64052548480924] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-83.49609375, 42.64456622475866], [-83.49540710449219, 42.64456622475866], [-83.49540710449219, 42.645576368740564], [-83.49609375, 42.645576368740564], [-83.49609375, 42.64456622475866] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-83.49609375, 42.66880515319917], [-83.49540710449219, 42.66880515319917], [-83.49540710449219, 42.66931003040664], [-83.49609375, 42.66931003040664], [-83.49609375, 42.66880515319917] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-83.49540710449219, 42.66830027189085], [-83.49403381347656, 42.66830027189085], [-83.49403381347656, 42.66880515319917], [-83.49540710449219, 42.66880515319917], [-83.49540710449219, 42.66830027189085] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-83.42674255371094, 42.681930627802714], [-83.42605590820312, 42.681930627802714], [-83.42605590820312, 42.68243539838622], [-83.42674255371094, 42.68243539838622], [-83.42674255371094, 42.681930627802714] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-83.42262268066406, 42.681930627802714], [-83.42124938964844, 42.681930627802714], [-83.42124938964844, 42.68243539838622], [-83.42262268066406, 42.68243539838622], [-83.42262268066406, 42.681930627802714] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-83.41850280761719, 42.681930627802714], [-83.41781616210938, 42.681930627802714], [-83.41781616210938, 42.68243539838622], [-83.41850280761719, 42.68243539838622], [-83.41850280761719, 42.681930627802714] ] ] } } ] } ================================================ FILE: packages/turf-dissolve/test/out/polysByProperty.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "combine": "yes" }, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 1], [0.4450683930362929, 0.10986321392741416], [0.23620605468749623, 0.10986321392741416], [0.23620605468749623, -0.8901516807502449], [1.2362060546874962, -0.8901516807502449], [1.2362060546874962, 0], [2, 0], [2, 1], [0, 1] ], [ [0.7659179283564485, 0.10986321392741416], [1, 0.5], [1, 0.10986321392741416], [0.7659179283564485, 0.10986321392741416] ] ] } }, { "type": "Feature", "properties": { "combine": "no" }, "geometry": { "type": "Polygon", "coordinates": [ [ [0.851440429687502, -1.647722051796948], [1.516113281250002, -1.647722051796948], [1.516113281250002, -1], [2, -1], [2, 0], [1.516113281250002, 0], [1.516113281250002, 1.4500404973607692], [0.851440429687502, 1.4500404973607692], [0.851440429687502, -1.647722051796948] ] ] } }, { "type": "Feature", "properties": { "combine": "undefined" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.252685546875, 1.252341676699629], [0.28564453125, 1.252341676699629], [0.28564453125, 1.653212936926045], [-0.252685546875, 1.653212936926045], [-0.252685546875, 1.252341676699629] ] ] } } ] } ================================================ FILE: packages/turf-dissolve/test/out/polysWithoutProperty.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.252685546875, 1.252341676699629], [0.28564453125, 1.252341676699629], [0.28564453125, 1.653212936926045], [-0.252685546875, 1.653212936926045], [-0.252685546875, 1.252341676699629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 1], [0.4450683930362929, 0.10986321392741416], [0.23620605468749623, 0.10986321392741416], [0.23620605468749623, -0.8901516807502449], [0.851440429687502, -0.8901516807502449], [0.851440429687502, -1.647722051796948], [1.516113281250002, -1.647722051796948], [1.516113281250002, -1], [2, -1], [2, 1], [1.516113281250002, 1], [1.516113281250002, 1.4500404973607692], [0.851440429687502, 1.4500404973607692], [0.851440429687502, 1], [0, 1] ], [ [0.7659179283564485, 0.10986321392741416], [0.851440429687502, 0.25240071614583665], [0.851440429687502, 0.10986321392741416], [0.7659179283564485, 0.10986321392741416] ] ] } } ] } ================================================ FILE: packages/turf-dissolve/test/out/simplified-issue.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.822, 45.354], [-75.818, 45.347], [-75.809, 45.345], [-75.80038028169014, 45.34691549295775], [-75.799, 45.3445], [-75.801, 45.341], [-75.797, 45.335], [-75.788, 45.332], [-75.779, 45.335], [-75.77871428571429, 45.33542857142857], [-75.777, 45.336], [-75.77558064516128, 45.33812903225807], [-75.775, 45.338], [-75.76714084507043, 45.33974647887324], [-75.765, 45.336], [-75.76398591549295, 45.33577464788733], [-75.765, 45.334], [-75.761, 45.328], [-75.752, 45.325], [-75.743, 45.328], [-75.739, 45.334], [-75.743, 45.341], [-75.74469565217392, 45.3413768115942], [-75.744, 45.343], [-75.747, 45.349], [-75.756, 45.352], [-75.76363636363637, 45.34945454545455], [-75.766, 45.353], [-75.775, 45.356], [-75.7802, 45.35426666666667], [-75.7835, 45.355], [-75.779, 45.356], [-75.77629577464789, 45.360732394366195], [-75.773, 45.36], [-75.764, 45.362], [-75.76067605633803, 45.36781690140845], [-75.757, 45.367], [-75.75475, 45.3675], [-75.74901408450704, 45.36622535211268], [-75.752, 45.361], [-75.74823076923077, 45.355346153846156], [-75.749, 45.354], [-75.745, 45.348], [-75.743, 45.344], [-75.74175, 45.343583333333335], [-75.742, 45.343], [-75.739, 45.337], [-75.735625, 45.335875], [-75.736, 45.335], [-75.73371428571429, 45.33042857142857], [-75.734, 45.33], [-75.73261538461539, 45.327576923076926], [-75.733, 45.327], [-75.729, 45.321], [-75.72, 45.318], [-75.711, 45.321], [-75.70751612903226, 45.32622580645161], [-75.702, 45.325], [-75.698, 45.32588888888889], [-75.694, 45.325], [-75.685, 45.327], [-75.681, 45.334], [-75.68227272727273, 45.33590909090909], [-75.682, 45.336], [-75.68016666666666, 45.33875], [-75.679, 45.337], [-75.67, 45.334], [-75.661, 45.337], [-75.657, 45.343], [-75.65966666666667, 45.347], [-75.657, 45.351], [-75.655, 45.348], [-75.646, 45.345], [-75.6448, 45.3454], [-75.643, 45.345], [-75.6425, 45.34511111111111], [-75.642, 45.345], [-75.63677419354839, 45.346161290322584], [-75.634, 45.342], [-75.625, 45.339], [-75.616, 45.342], [-75.612, 45.348], [-75.616, 45.354], [-75.6195, 45.35516666666667], [-75.611, 45.358], [-75.607, 45.364], [-75.611, 45.371], [-75.61274193548387, 45.37138709677419], [-75.611, 45.374], [-75.615, 45.38], [-75.6165, 45.3805], [-75.61390909090909, 45.38136363636364], [-75.611, 45.377], [-75.60909090909091, 45.376363636363635], [-75.61, 45.375], [-75.606, 45.368], [-75.597, 45.366], [-75.588, 45.368], [-75.584, 45.375], [-75.588, 45.381], [-75.58990909090909, 45.38163636363636], [-75.589, 45.383], [-75.593, 45.389], [-75.602, 45.392], [-75.60671428571429, 45.39042857142857], [-75.609, 45.395], [-75.60906122448979, 45.39514285714286], [-75.608, 45.397], [-75.61018181818181, 45.40027272727273], [-75.608, 45.401], [-75.60495652173913, 45.405565217391306], [-75.603, 45.406], [-75.6025294117647, 45.40682352941177], [-75.596, 45.409], [-75.59527272727273, 45.41009090909091], [-75.595, 45.41], [-75.586, 45.413], [-75.582, 45.419], [-75.586, 45.425], [-75.58666666666667, 45.425222222222224], [-75.587, 45.426], [-75.593, 45.42733333333333], [-75.595, 45.428], [-75.5954, 45.42786666666667], [-75.596, 45.428], [-75.605, 45.426], [-75.6052, 45.42593333333333], [-75.6064, 45.4262], [-75.604, 45.427], [-75.60371428571429, 45.42742857142857], [-75.596, 45.43], [-75.592, 45.436], [-75.59374647887324, 45.439056338028166], [-75.5886, 45.4402], [-75.588, 45.44], [-75.579, 45.443], [-75.575, 45.449], [-75.579, 45.456], [-75.588, 45.458], [-75.5934, 45.4568], [-75.594, 45.457], [-75.5945, 45.456833333333336], [-75.595, 45.457], [-75.604, 45.454], [-75.608, 45.448], [-75.60624, 45.44492], [-75.608, 45.44433333333333], [-75.614, 45.443], [-75.61433333333333, 45.44222222222222], [-75.615, 45.442], [-75.61525, 45.4415], [-75.61965217391304, 45.44052173913043], [-75.616, 45.446], [-75.62, 45.453], [-75.629, 45.455], [-75.638, 45.453], [-75.6388, 45.4516], [-75.64, 45.452], [-75.64084, 45.45172], [-75.641, 45.452], [-75.65, 45.454], [-75.659, 45.452], [-75.66030434782608, 45.44895652173913], [-75.661, 45.45], [-75.67, 45.452], [-75.679, 45.45], [-75.68091304347826, 45.44713043478261], [-75.686, 45.446], [-75.689, 45.439], [-75.68857142857142, 45.43814285714286], [-75.689, 45.438], [-75.6898, 45.4364], [-75.694, 45.435], [-75.698, 45.429], [-75.69683636363636, 45.42696363636364], [-75.697, 45.427], [-75.706, 45.425], [-75.7095294117647, 45.41882352941177], [-75.715, 45.417], [-75.719, 45.411], [-75.71669230769231, 45.407538461538465], [-75.717, 45.407], [-75.7159090909091, 45.40536363636364], [-75.717, 45.405], [-75.721, 45.412], [-75.73, 45.414], [-75.739, 45.412], [-75.7424909090909, 45.40589090909091], [-75.751, 45.404], [-75.75136363636364, 45.403363636363636], [-75.753, 45.403], [-75.75370588235295, 45.40176470588235], [-75.759, 45.4], [-75.762, 45.399], [-75.766, 45.393], [-75.762, 45.386], [-75.758, 45.38511111111111], [-75.763, 45.384], [-75.76321818181817, 45.38361818181818], [-75.766, 45.383], [-75.76952, 45.37684], [-75.773, 45.378], [-75.7745, 45.3775], [-75.782, 45.38], [-75.791, 45.377], [-75.79265217391304, 45.37452173913044], [-75.795, 45.374], [-75.799, 45.367], [-75.79866666666666, 45.3665], [-75.801, 45.363], [-75.797, 45.356], [-75.7925, 45.355], [-75.79612903225807, 45.354193548387094], [-75.8, 45.36], [-75.809, 45.363], [-75.818, 45.36], [-75.822, 45.354] ], [ [-75.74034375, 45.38853125], [-75.74033333333334, 45.388555555555556], [-75.738, 45.38933333333333], [-75.735, 45.39], [-75.73493548387097, 45.39009677419355], [-75.73378947368421, 45.389842105263156], [-75.74034375, 45.38853125] ], [ [-75.73710909090909, 45.371309090909094], [-75.73617073170732, 45.372951219512196], [-75.733, 45.372], [-75.724, 45.375], [-75.721, 45.381], [-75.724, 45.388], [-75.72925, 45.38916666666667], [-75.721, 45.391], [-75.71904081632653, 45.39557142857143], [-75.717, 45.392], [-75.708, 45.39], [-75.699, 45.392], [-75.69674545454545, 45.395945454545455], [-75.692, 45.397], [-75.68938181818181, 45.40158181818182], [-75.683, 45.403], [-75.68, 45.41], [-75.683, 45.416], [-75.68385714285715, 45.41628571428571], [-75.6845, 45.41725], [-75.684, 45.418], [-75.68516363636364, 45.42003636363636], [-75.685, 45.42], [-75.676, 45.422], [-75.67510526315789, 45.42408771929824], [-75.6722, 45.424733333333336], [-75.67, 45.424], [-75.669, 45.42433333333334], [-75.668, 45.424], [-75.65972, 45.42676], [-75.657, 45.422], [-75.648, 45.42], [-75.64683870967743, 45.420258064516126], [-75.646, 45.419], [-75.645, 45.41866666666667], [-75.65, 45.417], [-75.654, 45.411], [-75.65, 45.405], [-75.641, 45.402], [-75.63854545454545, 45.40281818181818], [-75.636, 45.399], [-75.63327272727273, 45.39809090909091], [-75.634, 45.397], [-75.63342857142857, 45.396], [-75.634, 45.395], [-75.63181818181818, 45.39172727272727], [-75.64, 45.389], [-75.649, 45.387], [-75.652, 45.38], [-75.649, 45.374], [-75.64, 45.371], [-75.6359090909091, 45.37236363636364], [-75.63335294117647, 45.368529411764705], [-75.641, 45.367], [-75.64273913043478, 45.36294202898551], [-75.643, 45.363], [-75.6448, 45.3626], [-75.646, 45.363], [-75.655, 45.36], [-75.659, 45.354], [-75.661, 45.357], [-75.67, 45.36], [-75.679, 45.357], [-75.683, 45.351], [-75.68033333333334, 45.347], [-75.68061538461538, 45.346576923076924], [-75.682, 45.349], [-75.691, 45.351], [-75.69373913043478, 45.35039130434782], [-75.692, 45.353], [-75.696, 45.36], [-75.69884210526315, 45.36063157894737], [-75.692, 45.362], [-75.689, 45.369], [-75.692, 45.375], [-75.69424137931034, 45.375672413793104], [-75.695, 45.377], [-75.704, 45.379], [-75.713, 45.377], [-75.717, 45.37], [-75.713, 45.364], [-75.71166666666667, 45.36355555555556], [-75.711, 45.362], [-75.708, 45.361333333333334], [-75.714, 45.36], [-75.717, 45.353], [-75.714, 45.347], [-75.71244, 45.34648], [-75.71342253521127, 45.344760563380284], [-75.71867272727273, 45.34592727272727], [-75.721, 45.35], [-75.72315384615385, 45.35376923076923], [-75.723, 45.354], [-75.7233076923077, 45.35453846153846], [-75.723, 45.355], [-75.72466666666666, 45.3575], [-75.723, 45.36], [-75.721, 45.363], [-75.725, 45.37], [-75.734, 45.372], [-75.73710909090909, 45.371309090909094] ], [ [-75.6342, 45.43593333333333], [-75.631, 45.437], [-75.63071428571429, 45.43757142857143], [-75.629, 45.437], [-75.62233333333333, 45.43922222222222], [-75.62482608695652, 45.43340579710145], [-75.629, 45.434333333333335], [-75.62976470588235, 45.434588235294115], [-75.63, 45.435], [-75.6342, 45.43593333333333] ] ] } } ] } ================================================ FILE: packages/turf-dissolve/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { polygon, point, featureCollection } from "@turf/helpers"; import { dissolve } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const SKIP = []; const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("turf-dissolve", (t) => { for (const { filename, name, geojson } of fixtures) { if (-1 !== SKIP.indexOf(filename)) { continue; } const propertyName = geojson.propertyName; const results = dissolve(geojson, { propertyName }); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEquals(results, loadJsonFileSync(directories.out + filename), name); } t.end(); }); test("dissolve -- throw", (t) => { const poly = polygon([ [ [-61, 27], [-59, 27], [-59, 29], [-61, 29], [-61, 27], ], ]); const pt = point([-62, 29]); t.throws( () => dissolve(null), /No featureCollection passed/, "missing featureCollection" ); t.throws( () => dissolve(poly), /Invalid input to dissolve, FeatureCollection required/, "invalid featureCollection" ); t.throws( () => dissolve(featureCollection([poly, pt])), /Invalid input to dissolve: must be a Polygon, given Point/, "invalid collection type" ); t.end(); }); test("dissolve -- properties", (t) => { var features = featureCollection([ polygon( [ [ [0, 0], [0, 1], [1, 1], [1, 0], [0, 0], ], ], { combine: "yes" } ), polygon( [ [ [0, -1], [0, 0], [1, 0], [1, -1], [0, -1], ], ], { combine: "yes" } ), polygon( [ [ [1, -1], [1, 0], [2, 0], [2, -1], [1, -1], ], ], { combine: "no" } ), ]); var results = dissolve(features, { propertyName: "combine" }); t.equals(results.features[0].properties.combine, "yes"); t.equals(results.features[1].properties.combine, "no"); t.end(); }); test("dissolve - unable to complete output ring - issue 2420", (t) => { // Test example copied from https://github.com/Turfjs/turf/issues/2420 const poly1 = polygon([ [ [54.674471560746106, -2.669669459403366], [54.66827243056676, -2.590808846502601], [54.61818656347785, -2.5731465650016876], [54.59479733372542, -2.5582148982951005], [54.52907798654607, -2.5983186383573154], [54.533564730328536, -2.68329182348515], [54.58040270977906, -2.713147336590615], [54.60545643615633, -2.7220126907386035], [54.674471560746106, -2.669669459403366], ], ]); const poly2 = polygon([ [ [54.59029423717366, -2.4733591205361], [54.59479733372542, -2.5582148982951005], [54.61818656347788, -2.573146565001703], [54.66827243056676, -2.590808846502601], [54.73723247700517, -2.538498282632361], [54.730995571183335, -2.4597687064449976], [54.655899262660675, -2.433377660227877], [54.59029423717366, -2.4733591205361], ], ]); // This used to fail with "Unable to complete output ring ..." t.doesNotThrow( () => dissolve(featureCollection([poly1, poly2])), "does not throw" ); t.end(); }); ================================================ FILE: packages/turf-dissolve/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-distance/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-distance/README.md ================================================ # @turf/distance ## distance Calculates the distance between two [coordinates][1] in degrees, radians, miles, or kilometers. This uses the [Haversine formula][2] to account for global curvature. ### Parameters * `from` **[Coord][1]** origin coordinate * `to` **[Coord][1]** destination coordinate * `options` **[Object][3]** Optional parameters (optional, default `{}`) * `options.units` **Units** Supports all valid Turf [Units][4]. (optional, default `'kilometers'`) ### Examples ```javascript var from = turf.point([-75.343, 39.984]); var to = turf.point([-75.534, 39.123]); var options = {units: 'miles'}; var distance = turf.distance(from, to, options); //addToMap var addToMap = [from, to]; from.properties.distance = distance; to.properties.distance = distance; ``` Returns **[number][5]** distance between the two coordinates [1]: https://tools.ietf.org/html/rfc7946#section-3.1.1 [2]: http://en.wikipedia.org/wiki/Haversine_formula [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [4]: https://turfjs.org/docs/api/types/Units [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/distance ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-distance/bench.ts ================================================ import Benchmark from "benchmark"; import { distance } from "./index.js"; var pt1 = [-75.4, 39.4]; var pt2 = [-75.534, 39.123]; var suite = new Benchmark.Suite("turf-distance"); suite .add("turf-distance", () => distance(pt1, pt2)) .on("cycle", (e) => console.log(String(e.target))) .run(); ================================================ FILE: packages/turf-distance/index.ts ================================================ import { getCoord } from "@turf/invariant"; import { radiansToLength, degreesToRadians, Coord, Units } from "@turf/helpers"; //http://en.wikipedia.org/wiki/Haversine_formula //http://www.movable-type.co.uk/scripts/latlong.html /** * Calculates the distance between two {@link Coord|coordinates} in degrees, radians, miles, or kilometers. * This uses the [Haversine formula](http://en.wikipedia.org/wiki/Haversine_formula) to account for global curvature. * * @function * @param {Coord} from origin coordinate * @param {Coord} to destination coordinate * @param {Object} [options={}] Optional parameters * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @returns {number} distance between the two coordinates * @example * var from = turf.point([-75.343, 39.984]); * var to = turf.point([-75.534, 39.123]); * var options = {units: 'miles'}; * * var distance = turf.distance(from, to, options); * * //addToMap * var addToMap = [from, to]; * from.properties.distance = distance; * to.properties.distance = distance; */ function distance( from: Coord, to: Coord, options: { units?: Units; } = {} ) { var coordinates1 = getCoord(from); var coordinates2 = getCoord(to); var dLat = degreesToRadians(coordinates2[1] - coordinates1[1]); var dLon = degreesToRadians(coordinates2[0] - coordinates1[0]); var lat1 = degreesToRadians(coordinates1[1]); var lat2 = degreesToRadians(coordinates2[1]); var a = Math.pow(Math.sin(dLat / 2), 2) + Math.pow(Math.sin(dLon / 2), 2) * Math.cos(lat1) * Math.cos(lat2); return radiansToLength( 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a)), options.units ); } export { distance }; export default distance; ================================================ FILE: packages/turf-distance/package.json ================================================ { "name": "@turf/distance", "version": "7.3.4", "description": "Measures the straight-line distance between two points, like cities or landmarks.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "distance", "miles", "km" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-distance/test/in/points.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.343, 39.984] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.534, 39.123] } } ] } ================================================ FILE: packages/turf-distance/test/out/points.json ================================================ { "miles": 60.35329997171415, "nauticalmiles": 52.44558379572265, "kilometers": 97.12922118967835, "radians": 0.015245501024842149, "degrees": 0.8735028652858263 } ================================================ FILE: packages/turf-distance/test.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { point } from "@turf/helpers"; import { distance } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("distance", (t) => { fixtures.forEach((fixture) => { const name = fixture.name; const geojson = fixture.geojson; const pt1 = geojson.features[0]; const pt2 = geojson.features[1]; const distances = { miles: distance(pt1, pt2, { units: "miles" }), nauticalmiles: distance(pt1, pt2, { units: "nauticalmiles" }), kilometers: distance(pt1, pt2, { units: "kilometers" }), radians: distance(pt1, pt2, { units: "radians" }), degrees: distance(pt1, pt2, { units: "degrees" }), }; if (process.env.REGEN) writeJsonFileSync(directories.out + name + ".json", distances); t.deepEqual( distances, loadJsonFileSync(directories.out + name + ".json"), name ); }); t.end(); }); // https://github.com/Turfjs/turf/issues/758 test("distance -- Issue #758", (t) => { t.equal( Math.round(distance(point([-180, -90]), point([180, -90]))), 0, "should be 0" ); t.end(); }); test("distance -- throws", (t) => { t.throws( () => distance(point([0, 0]), point([10, 10]), { units: "foo" }), /units is invalid/ ); t.end(); }); ================================================ FILE: packages/turf-distance/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-distance-weight/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-distance-weight/README.md ================================================ # @turf/distance-weight ## pNormDistance calcualte the Minkowski p-norm distance between two features. ### Parameters * `feature1` **[Feature][1]<[Point][2]>** point feature * `feature2` **[Feature][1]<[Point][2]>** point feature * `p` p-norm 1=\** FeatureCollection. * `options` **[Object][5]?** option object. * `options.threshold` **[number][3]** If the distance between neighbor and target features is greater than threshold, the weight of that neighbor is 0. (optional, default `10000`) * `options.p` **[number][3]** Minkowski p-norm distance parameter. 1: Manhattan distance. 2: Euclidean distance. 1=\>** distance weight matrix. [1]: https://tools.ietf.org/html/rfc7946#section-3.2 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [4]: https://tools.ietf.org/html/rfc7946#section-3.3 [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean [7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/distance-weight ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-distance-weight/bench.ts ================================================ import Benchmark from "benchmark"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { distanceWeight } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); /** * Benchmark Results * * point: 1.919ms * point x 22,881 ops/sec ±0.68% (97 runs sampled) */ const suite = new Benchmark.Suite("turf-distance-weight"); const columbusPath = path.join(__dirname, "test", "in", "point.json"); const columbusJson = loadJsonFileSync(columbusPath); const { name } = path.parse(columbusPath); console.time(name); distanceWeight(columbusJson); console.timeEnd(name); suite.add(name, () => distanceWeight(columbusJson)); suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-distance-weight/index.ts ================================================ import { Feature, FeatureCollection, Point } from "geojson"; import { centroid } from "@turf/centroid"; import { getCoord } from "@turf/invariant"; import { featureEach } from "@turf/meta"; /** * calcualte the Minkowski p-norm distance between two features. * * @function * @param feature1 point feature * @param feature2 point feature * @param p p-norm 1=, feature2: Feature, p = 2 ): number { const coordinate1 = getCoord(feature1); const coordinate2 = getCoord(feature2); const xDiff = coordinate1[0] - coordinate2[0]; const yDiff = coordinate1[1] - coordinate2[1]; if (p === 1) { return Math.abs(xDiff) + Math.abs(yDiff); } return Math.pow(Math.pow(xDiff, p) + Math.pow(yDiff, p), 1 / p); } /** * * * @function * @param {FeatureCollection} fc FeatureCollection. * @param {Object} [options] option object. * @param {number} [options.threshold=10000] If the distance between neighbor and * target features is greater than threshold, the weight of that neighbor is 0. * @param {number} [options.p=2] Minkowski p-norm distance parameter. * 1: Manhattan distance. 2: Euclidean distance. 1=>} distance weight matrix. * @example * * var bbox = [-65, 40, -63, 42]; * var dataset = turf.randomPoint(100, { bbox: bbox }); * var result = turf.distanceWeight(dataset); */ function distanceWeight( fc: FeatureCollection, options?: { threshold?: number; p?: number; binary?: boolean; alpha?: number; standardization?: boolean; } ): number[][] { options = options || {}; const threshold = options.threshold || 10000; const p = options.p || 2; const binary = options.binary ?? false; const alpha = options.alpha || -1; const rowTransform = options.standardization ?? false; const features: Array> = []; featureEach(fc, (feature) => { features.push(centroid(feature)); }); // computing the distance between the features const weights: number[][] = []; for (let i = 0; i < features.length; i++) { weights[i] = []; } for (let i = 0; i < features.length; i++) { for (let j = i; j < features.length; j++) { if (i === j) { weights[i][j] = 0; } const dis = pNormDistance(features[i], features[j], p); weights[i][j] = dis; weights[j][i] = dis; } } // binary or distance decay for (let i = 0; i < features.length; i++) { for (let j = 0; j < features.length; j++) { const dis: number = weights[i][j]; if (dis === 0) { continue; } if (binary) { if (dis <= threshold) { weights[i][j] = 1.0; } else { weights[i][j] = 0.0; } } else { if (dis <= threshold) { weights[i][j] = Math.pow(dis, alpha); } else { weights[i][j] = 0.0; } } } } if (rowTransform) { for (let i = 0; i < features.length; i++) { const rowSum = weights[i].reduce((sum: number, currentVal: number) => { return sum + currentVal; }, 0); for (let j = 0; j < features.length; j++) { weights[i][j] = weights[i][j] / rowSum; } } } return weights; } export { pNormDistance, distanceWeight }; export default distanceWeight; ================================================ FILE: packages/turf-distance-weight/package.json ================================================ { "name": "@turf/distance-weight", "version": "7.3.4", "description": "Calculate the influence or weight of points over an area based on their distances.", "author": "Turf Authors", "contributors": [ "Haoming Zhuang <@zhuang-hao-ming>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "distance-weight" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/centroid": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-distance-weight/test/in/columbus.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "AREA": 0.309441, "PERIMETER": 2.440629, "COLUMBUS_": 2.0, "COLUMBUS_I": 5.0, "POLYID": 1.0, "NEIG": 5, "HOVAL": 80.467003, "INC": 19.531, "CRIME": 15.72598, "OPEN": 2.850747, "PLUMB": 0.217155, "DISCBD": 5.03, "X": 38.799999, "Y": 44.07, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1005.0 }, "bbox": [ 8.559700012207031, 13.995059967041016, 9.09996509552002, 14.742449760437012 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.624129295349121, 14.236980438232422], [8.559700012207031, 14.742449760437012], [8.809452056884766, 14.734430313110352], [8.808412551879883, 14.636520385742188], [8.919304847717285, 14.638500213623047], [9.087138175964355, 14.630490303039551], [9.09996509552002, 14.244830131530762], [9.015047073364258, 14.241840362548828], [9.008951187133789, 13.995059967041016], [8.818140029907227, 14.002050399780273], [8.653305053710938, 14.008090019226074], [8.642902374267578, 14.089710235595703], [8.63259220123291, 14.170590400695801], [8.625825881958008, 14.22367000579834], [8.624129295349121, 14.236980438232422] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.259329, "PERIMETER": 2.236939, "COLUMBUS_": 3.0, "COLUMBUS_I": 1.0, "POLYID": 2.0, "NEIG": 1, "HOVAL": 44.567001, "INC": 21.232, "CRIME": 18.801754, "OPEN": 5.29672, "PLUMB": 0.320581, "DISCBD": 4.27, "X": 35.619999, "Y": 42.380001, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1001.0 }, "bbox": [ 7.950088977813721, 13.727390289306641, 8.666550636291504, 14.263930320739746 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.252790451049805, 14.236940383911133], [8.282757759094238, 14.229940414428711], [8.330711364746094, 14.229940414428711], [8.383658409118652, 14.228930473327637], [8.444600105285645, 14.228919982910156], [8.544504165649414, 14.23490047454834], [8.624129295349121, 14.236980438232422], [8.625825881958008, 14.22367000579834], [8.63259220123291, 14.170590400695801], [8.642902374267578, 14.089710235595703], [8.653305053710938, 14.008090019226074], [8.662188529968262, 13.909899711608887], [8.666550636291504, 13.861700057983398], [8.605281829833984, 13.839249610900879], [8.579310417175293, 13.841250419616699], [8.562577247619629, 13.84253978729248], [8.540358543395996, 13.842399597167969], [8.516386985778809, 13.841679573059082], [8.502935409545898, 13.838729858398438], [8.473407745361328, 13.832269668579102], [8.459499359130859, 13.82034969329834], [8.431432723999023, 13.793310165405273], [8.415447235107422, 13.790309906005859], [8.387155532836914, 13.788969993591309], [8.37348747253418, 13.78831958770752], [8.323546409606934, 13.786080360412598], [8.284571647644043, 13.784330368041992], [8.291547775268555, 13.74137020111084], [8.229602813720703, 13.727390289306641], [8.22661304473877, 13.744379997253418], [8.215643882751465, 13.794329643249512], [8.198686599731445, 13.858280181884766], [8.16972541809082, 13.883259773254395], [8.12777042388916, 13.89225959777832], [8.093802452087402, 13.891260147094727], [8.063838005065918, 13.90526008605957], [8.044872283935547, 13.943220138549805], [8.037888526916504, 13.96720027923584], [7.999115943908691, 14.024570465087891], [7.99936580657959, 14.034970283508301], [8.003013610839844, 14.187020301818848], [7.950088977813721, 14.243969917297363], [8.111939430236816, 14.263930320739746], [8.147891998291016, 14.232959747314453], [8.181855201721191, 14.225959777832031], [8.20982837677002, 14.226949691772461], [8.252790451049805, 14.236940383911133] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.192468, "PERIMETER": 2.187547, "COLUMBUS_": 4.0, "COLUMBUS_I": 6.0, "POLYID": 3.0, "NEIG": 6, "HOVAL": 26.35, "INC": 15.956, "CRIME": 30.626781, "OPEN": 4.534649, "PLUMB": 0.374404, "DISCBD": 3.89, "X": 39.82, "Y": 41.18, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1006.0 }, "bbox": [ 8.653305053710938, 13.544429779052734, 9.351485252380371, 14.008090019226074 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.653305053710938, 14.008090019226074], [8.818140029907227, 14.002050399780273], [9.008951187133789, 13.995059967041016], [9.008928298950195, 13.9381103515625], [9.34359073638916, 13.913080215454102], [9.351485252380371, 13.675290107727051], [9.298501014709473, 13.589380264282227], [9.273821830749512, 13.588560104370117], [9.244555473327637, 13.59138011932373], [9.24254322052002, 13.558409690856934], [9.196581840515137, 13.544429779052734], [9.190605163574219, 13.586389541625977], [9.166626930236816, 13.581399917602539], [9.161684036254883, 13.708290100097656], [8.909939765930176, 13.715530395507812], [8.677577018737793, 13.722209930419922], [8.666550636291504, 13.861700057983398], [8.662188529968262, 13.909899711608887], [8.653305053710938, 14.008090019226074] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.083841, "PERIMETER": 1.427635, "COLUMBUS_": 5.0, "COLUMBUS_I": 2.0, "POLYID": 4.0, "NEIG": 2, "HOVAL": 33.200001, "INC": 4.477, "CRIME": 32.38776, "OPEN": 0.394427, "PLUMB": 1.186944, "DISCBD": 3.7, "X": 36.5, "Y": 40.52, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1002.0 }, "bbox": [ 8.19859504699707, 13.586509704589844, 8.685274124145508, 13.861700057983398 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.459499359130859, 13.82034969329834], [8.473407745361328, 13.832269668579102], [8.502935409545898, 13.838729858398438], [8.516386985778809, 13.841679573059082], [8.540358543395996, 13.842399597167969], [8.562577247619629, 13.84253978729248], [8.579310417175293, 13.841250419616699], [8.605281829833984, 13.839249610900879], [8.666550636291504, 13.861700057983398], [8.677577018737793, 13.722209930419922], [8.685274124145508, 13.639519691467285], [8.628178596496582, 13.639459609985352], [8.588301658630371, 13.641819953918457], [8.571109771728516, 13.641269683837891], [8.547515869140625, 13.643819808959961], [8.537267684936523, 13.644430160522461], [8.505298614501953, 13.644430160522461], [8.459343910217285, 13.644430160522461], [8.450570106506348, 13.60453987121582], [8.439335823059082, 13.605520248413086], [8.380410194396973, 13.616470336914062], [8.385412216186523, 13.63444995880127], [8.316472053527832, 13.616479873657227], [8.294443130493164, 13.604570388793945], [8.279500007629395, 13.596500396728516], [8.247527122497559, 13.586509704589844], [8.201574325561523, 13.591509819030762], [8.201583862304688, 13.614489555358887], [8.19859504699707, 13.635479927062988], [8.233589172363281, 13.703410148620605], [8.229602813720703, 13.727390289306641], [8.291547775268555, 13.74137020111084], [8.284571647644043, 13.784330368041992], [8.323546409606934, 13.786080360412598], [8.37348747253418, 13.78831958770752], [8.387155532836914, 13.788969993591309], [8.415447235107422, 13.790309906005859], [8.431432723999023, 13.793310165405273], [8.459499359130859, 13.82034969329834] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.488888, "PERIMETER": 2.997133, "COLUMBUS_": 6.0, "COLUMBUS_I": 7.0, "POLYID": 5.0, "NEIG": 7, "HOVAL": 23.225, "INC": 11.252, "CRIME": 50.73151, "OPEN": 0.405664, "PLUMB": 0.624596, "DISCBD": 2.83, "X": 40.009998, "Y": 38.0, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1007.0 }, "bbox": [ 8.677577018737793, 12.861089706420898, 9.401384353637695, 13.722209930419922 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.685274124145508, 13.639519691467285], [8.677577018737793, 13.722209930419922], [8.909939765930176, 13.715530395507812], [9.161684036254883, 13.708290100097656], [9.166626930236816, 13.581399917602539], [9.190605163574219, 13.586389541625977], [9.196581840515137, 13.544429779052734], [9.24254322052002, 13.558409690856934], [9.244555473327637, 13.59138011932373], [9.273821830749512, 13.588560104370117], [9.298501014709473, 13.589380264282227], [9.310471534729004, 13.54541015625], [9.401384353637695, 13.550399780273438], [9.333296775817871, 13.272419929504395], [9.23626708984375, 12.876279830932617], [9.233386993408203, 12.86400032043457], [8.943572998046875, 12.86221981048584], [8.757728576660156, 12.861089706420898], [8.733969688415527, 13.116339683532715], [8.685274124145508, 13.639519691467285] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.283079, "PERIMETER": 2.335634, "COLUMBUS_": 7.0, "COLUMBUS_I": 8.0, "POLYID": 6.0, "NEIG": 8, "HOVAL": 28.75, "INC": 16.028999, "CRIME": 26.066658, "OPEN": 0.563075, "PLUMB": 0.25413, "DISCBD": 3.78, "X": 43.75, "Y": 39.279999, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1008.0 }, "bbox": [ 9.333296775817871, 13.272419929504395, 10.180600166320801, 13.698240280151367 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.401384353637695, 13.550399780273438], [9.43441104888916, 13.694270133972168], [9.605246543884277, 13.698240280151367], [9.651198387145996, 13.692239761352539], [9.687166213989258, 13.697230339050293], [9.686145782470703, 13.645279884338379], [9.845992088317871, 13.652250289916992], [10.050789833068848, 13.650230407714844], [10.103719711303711, 13.603260040283203], [10.175629615783691, 13.565290451049805], [10.180600166320801, 13.482359886169434], [10.167599678039551, 13.471369743347168], [10.153610229492188, 13.454389572143555], [10.1356201171875, 13.439399719238281], [10.119629859924316, 13.429409980773926], [10.121600151062012, 13.344490051269531], [10.096619606018066, 13.342490196228027], [10.085630416870117, 13.333499908447266], [10.05265998840332, 13.33650016784668], [10.027669906616211, 13.298540115356445], [9.772106170654297, 13.292110443115234], [9.677009582519531, 13.296589851379395], [9.67100715637207, 13.27361011505127], [9.333296775817871, 13.272419929504395], [9.401384353637695, 13.550399780273438] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.257084, "PERIMETER": 2.554577, "COLUMBUS_": 8.0, "COLUMBUS_I": 4.0, "POLYID": 7.0, "NEIG": 4, "HOVAL": 75.0, "INC": 8.438, "CRIME": 0.178269, "OPEN": 0.0, "PLUMB": 2.402402, "DISCBD": 2.74, "X": 33.360001, "Y": 38.41, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1004.0 }, "bbox": [ 7.801973819732666, 12.942020416259766, 8.456572532653809, 13.644510269165039 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.037740707397461, 13.60752010345459], [8.062715530395508, 13.604519844055176], [8.072694778442383, 13.580539703369141], [8.115653038024902, 13.579540252685547], [8.130637168884277, 13.576539993286133], [8.197451591491699, 13.575770378112793], [8.189590454101562, 13.545760154724121], [8.179450035095215, 13.529829978942871], [8.164705276489258, 13.511059761047363], [8.14012622833252, 13.479769706726074], [8.128536224365234, 13.470100402832031], [8.121718406677246, 13.461039543151855], [8.109848022460938, 13.432640075683594], [8.10498046875, 13.420989990234375], [8.181536674499512, 13.415909767150879], [8.293397903442383, 13.408490180969238], [8.380322456359863, 13.404660224914551], [8.456572532653809, 13.104069709777832], [8.425149917602539, 13.09391975402832], [8.412152290344238, 13.068949699401855], [8.351269721984863, 13.066499710083008], [8.288271903991699, 13.063969612121582], [8.28026294708252, 13.026000022888184], [8.232307434082031, 13.020009994506836], [8.220302581787109, 12.979049682617188], [8.154367446899414, 12.978059768676758], [8.145203590393066, 12.942020416259766], [8.104400634765625, 12.943050384521484], [8.062442779541016, 12.944100379943848], [8.052460670471191, 12.963089942932129], [8.052496910095215, 13.052009582519531], [8.048531532287598, 13.129940032958984], [8.032543182373047, 13.117950439453125], [8.01356029510498, 13.114959716796875], [7.989583969116211, 13.115960121154785], [7.962619781494141, 13.137940406799316], [7.923679828643799, 13.191900253295898], [7.898725986480713, 13.243860244750977], [7.88774299621582, 13.25784969329834], [7.871758937835693, 13.25885009765625], [7.868794918060303, 13.338780403137207], [7.866809844970703, 13.371749877929688], [7.851837158203125, 13.400730133056641], [7.844857215881348, 13.432700157165527], [7.84089183807373, 13.50862979888916], [7.824925899505615, 13.552599906921387], [7.803965091705322, 13.596559524536133], [7.801973819732666, 13.61553955078125], [7.90187406539917, 13.608539581298828], [7.90288782119751, 13.644510269165039], [7.9967942237854, 13.639499664306641], [7.998781204223633, 13.614520072937012], [8.037740707397461, 13.60752010345459] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.204954, "PERIMETER": 2.139524, "COLUMBUS_": 9.0, "COLUMBUS_I": 3.0, "POLYID": 8.0, "NEIG": 3, "HOVAL": 37.125, "INC": 11.337, "CRIME": 38.425858, "OPEN": 3.483478, "PLUMB": 2.739726, "DISCBD": 2.89, "X": 36.709999, "Y": 38.709999, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1003.0 }, "bbox": [8.10498046875, 13.104069709777832, 8.733969688415527, 13.644430160522461], "geometry": { "type": "Polygon", "coordinates": [ [ [8.247527122497559, 13.586509704589844], [8.279500007629395, 13.596500396728516], [8.294443130493164, 13.604570388793945], [8.316472053527832, 13.616479873657227], [8.385412216186523, 13.63444995880127], [8.380410194396973, 13.616470336914062], [8.439335823059082, 13.605520248413086], [8.450570106506348, 13.60453987121582], [8.459343910217285, 13.644430160522461], [8.505298614501953, 13.644430160522461], [8.537267684936523, 13.644430160522461], [8.547515869140625, 13.643819808959961], [8.571109771728516, 13.641269683837891], [8.588301658630371, 13.641819953918457], [8.628178596496582, 13.639459609985352], [8.685274124145508, 13.639519691467285], [8.733969688415527, 13.116339683532715], [8.651877403259277, 13.113670349121094], [8.596989631652832, 13.111889839172363], [8.585997581481934, 13.106889724731445], [8.517032623291016, 13.105389595031738], [8.456572532653809, 13.104069709777832], [8.380322456359863, 13.404660224914551], [8.293397903442383, 13.408490180969238], [8.181536674499512, 13.415909767150879], [8.10498046875, 13.420989990234375], [8.109848022460938, 13.432640075683594], [8.121718406677246, 13.461039543151855], [8.128536224365234, 13.470100402832031], [8.14012622833252, 13.479769706726074], [8.164705276489258, 13.511059761047363], [8.179450035095215, 13.529829978942871], [8.189590454101562, 13.545760154724121], [8.197451591491699, 13.575770378112793], [8.201574325561523, 13.591509819030762], [8.247527122497559, 13.586509704589844] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.500755, "PERIMETER": 3.169707, "COLUMBUS_": 10.0, "COLUMBUS_I": 18.0, "POLYID": 9.0, "NEIG": 18, "HOVAL": 52.599998, "INC": 17.586, "CRIME": 30.515917, "OPEN": 0.527488, "PLUMB": 0.890736, "DISCBD": 3.17, "X": 43.439999, "Y": 35.919998, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1018.0 }, "bbox": [ 9.124277114868164, 12.595190048217773, 10.095430374145508, 13.298540115356445 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.333296775817871, 13.272419929504395], [9.67100715637207, 13.27361011505127], [9.677009582519531, 13.296589851379395], [9.772106170654297, 13.292110443115234], [10.027669906616211, 13.298540115356445], [9.950613975524902, 12.983830451965332], [10.004560470581055, 12.976829528808594], [10.082509994506836, 13.033769607543945], [10.083649635314941, 13.019869804382324], [10.086819648742676, 12.981430053710938], [10.089170455932617, 12.952810287475586], [10.091629981994629, 12.923040390014648], [10.093509674072266, 12.900219917297363], [10.095430374145508, 12.876899719238281], [10.015439987182617, 12.72404956817627], [9.763668060302734, 12.673130035400391], [9.723674774169922, 12.595199584960938], [9.555828094482422, 12.595190048217773], [9.471497535705566, 12.595709800720215], [9.386005401611328, 12.596240043640137], [9.383021354675293, 12.627209663391113], [9.258048057556152, 12.630610466003418], [9.124277114868164, 12.63424015045166], [9.146787643432617, 12.658740043640137], [9.166311264038086, 12.679980278015137], [9.187246322631836, 12.709170341491699], [9.206208229064941, 12.75883960723877], [9.213532447814941, 12.778030395507812], [9.220885276794434, 12.805720329284668], [9.233386993408203, 12.86400032043457], [9.23626708984375, 12.876279830932617], [9.333296775817871, 13.272419929504395] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.246689, "PERIMETER": 2.087235, "COLUMBUS_": 11.0, "COLUMBUS_I": 10.0, "POLYID": 10.0, "NEIG": 10, "HOVAL": 96.400002, "INC": 13.598, "CRIME": 34.000835, "OPEN": 1.548348, "PLUMB": 0.557724, "DISCBD": 4.33, "X": 47.610001, "Y": 36.419998, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1010.0 }, "bbox": [ 10.015439987182617, 12.72404956817627, 10.649680137634277, 13.272509574890137 ], "geometry": { "type": "Polygon", "coordinates": [ [ [10.082509994506836, 13.033769607543945], [10.092499732971191, 13.052749633789062], [10.126489639282227, 13.090709686279297], [10.182459831237793, 13.157649993896484], [10.267419815063477, 13.254549980163574], [10.289389610290527, 13.247550010681152], [10.316360473632812, 13.244549751281738], [10.33234977722168, 13.23954963684082], [10.368260383605957, 13.246430397033691], [10.394289970397949, 13.246540069580078], [10.417269706726074, 13.247540473937988], [10.450240135192871, 13.251529693603516], [10.4752197265625, 13.261520385742188], [10.4752197265625, 13.272509574890137], [10.534159660339355, 13.271499633789062], [10.566129684448242, 13.271499633789062], [10.603090286254883, 13.265500068664551], [10.632060050964355, 13.263489723205566], [10.639049530029297, 13.244509696960449], [10.640040397644043, 13.21953010559082], [10.649020195007324, 13.199549674987793], [10.646010398864746, 13.176569938659668], [10.64700984954834, 13.157589912414551], [10.645999908447266, 13.144599914550781], [10.637999534606934, 13.129610061645508], [10.63899040222168, 13.104630470275879], [10.631979942321777, 13.070659637451172], [10.626979827880859, 13.051679611206055], [10.627969741821289, 13.026700019836426], [10.631959915161133, 13.008720397949219], [10.633950233459473, 12.983739852905273], [10.62893009185791, 12.945779800415039], [10.639909744262695, 12.918800354003906], [10.637900352478027, 12.890819549560547], [10.645890235900879, 12.865839958190918], [10.647870063781738, 12.842860221862793], [10.649680137634277, 12.830180168151855], [10.501099586486816, 12.805319786071777], [10.356599807739258, 12.781140327453613], [10.178409576416016, 12.751319885253906], [10.015439987182617, 12.72404956817627], [10.095430374145508, 12.876899719238281], [10.093509674072266, 12.900219917297363], [10.091629981994629, 12.923040390014648], [10.089170455932617, 12.952810287475586], [10.086819648742676, 12.981430053710938], [10.083649635314941, 13.019869804382324], [10.082509994506836, 13.033769607543945] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.041012, "PERIMETER": 0.919488, "COLUMBUS_": 12.0, "COLUMBUS_I": 38.0, "POLYID": 11.0, "NEIG": 38, "HOVAL": 19.700001, "INC": 7.467, "CRIME": 62.275448, "OPEN": 0.0, "PLUMB": 1.479915, "DISCBD": 1.9, "X": 37.849998, "Y": 36.299999, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1038.0 }, "bbox": [ 8.572946548461914, 12.810150146484375, 8.757728576660156, 13.116339683532715 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.585997581481934, 13.106889724731445], [8.596989631652832, 13.111889839172363], [8.651877403259277, 13.113670349121094], [8.733969688415527, 13.116339683532715], [8.757728576660156, 12.861089706420898], [8.700782775878906, 12.857099533081055], [8.693771362304688, 12.811140060424805], [8.632829666137695, 12.810150146484375], [8.629888534545898, 12.945030212402344], [8.572946548461914, 12.950030326843262], [8.585997581481934, 13.106889724731445] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.035769, "PERIMETER": 0.902125, "COLUMBUS_": 13.0, "COLUMBUS_I": 37.0, "POLYID": 12.0, "NEIG": 37, "HOVAL": 19.9, "INC": 10.048, "CRIME": 56.705669, "OPEN": 3.157895, "PLUMB": 2.635046, "DISCBD": 1.91, "X": 37.130001, "Y": 36.119999, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1037.0 }, "bbox": [ 8.456572532653809, 12.809200286865234, 8.632829666137695, 13.106889724731445 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.456572532653809, 13.104069709777832], [8.517032623291016, 13.105389595031738], [8.585997581481934, 13.106889724731445], [8.572946548461914, 12.950030326843262], [8.629888534545898, 12.945030212402344], [8.632829666137695, 12.810150146484375], [8.582889556884766, 12.809769630432129], [8.50916576385498, 12.809200286865234], [8.487373352050781, 12.930660247802734], [8.456572532653809, 13.104069709777832] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.034377, "PERIMETER": 0.93659, "COLUMBUS_": 14.0, "COLUMBUS_I": 39.0, "POLYID": 13.0, "NEIG": 39, "HOVAL": 41.700001, "INC": 9.549, "CRIME": 46.716129, "OPEN": 0.0, "PLUMB": 6.328423, "DISCBD": 2.09, "X": 35.950001, "Y": 36.400002, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1039.0 }, "bbox": [ 8.145203590393066, 12.930660247802734, 8.487373352050781, 13.104069709777832 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.145203590393066, 12.942020416259766], [8.154367446899414, 12.978059768676758], [8.220302581787109, 12.979049682617188], [8.232307434082031, 13.020009994506836], [8.28026294708252, 13.026000022888184], [8.288271903991699, 13.063969612121582], [8.351269721984863, 13.066499710083008], [8.412152290344238, 13.068949699401855], [8.425149917602539, 13.09391975402832], [8.456572532653809, 13.104069709777832], [8.487373352050781, 12.930660247802734], [8.456042289733887, 12.931710243225098], [8.402054786682129, 12.933529853820801], [8.337125778198242, 12.935720443725586], [8.245318412780762, 12.938819885253906], [8.145203590393066, 12.942020416259766] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.060884, "PERIMETER": 1.128424, "COLUMBUS_": 15.0, "COLUMBUS_I": 40.0, "POLYID": 14.0, "NEIG": 40, "HOVAL": 42.900002, "INC": 9.963, "CRIME": 57.066132, "OPEN": 0.477104, "PLUMB": 5.110962, "DISCBD": 1.83, "X": 35.720001, "Y": 35.599998, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1040.0 }, "bbox": [ 8.062442779541016, 12.787229537963867, 8.512937545776367, 12.944100379943848 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.062442779541016, 12.944100379943848], [8.104400634765625, 12.943050384521484], [8.145203590393066, 12.942020416259766], [8.245318412780762, 12.938819885253906], [8.337125778198242, 12.935720443725586], [8.402054786682129, 12.933529853820801], [8.456042289733887, 12.931710243225098], [8.487373352050781, 12.930660247802734], [8.50916576385498, 12.809200286865234], [8.512937545776367, 12.788180351257324], [8.478970527648926, 12.788189888000488], [8.431012153625488, 12.788060188293457], [8.259181022644043, 12.787599563598633], [8.122319221496582, 12.787229537963867], [8.062442779541016, 12.944100379943848] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.106653, "PERIMETER": 1.437606, "COLUMBUS_": 16.0, "COLUMBUS_I": 9.0, "POLYID": 15.0, "NEIG": 9, "HOVAL": 18.0, "INC": 9.873, "CRIME": 48.585487, "OPEN": 0.174325, "PLUMB": 1.311475, "DISCBD": 1.7, "X": 39.610001, "Y": 34.91, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1009.0 }, "bbox": [ 8.757728576660156, 12.532369613647461, 9.233386993408203, 12.86400032043457 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.757728576660156, 12.861089706420898], [8.943572998046875, 12.86221981048584], [9.233386993408203, 12.86400032043457], [9.220885276794434, 12.805720329284668], [9.213532447814941, 12.778030395507812], [9.206208229064941, 12.75883960723877], [9.187246322631836, 12.709170341491699], [9.166311264038086, 12.679980278015137], [9.146787643432617, 12.658740043640137], [9.124277114868164, 12.63424015045166], [8.913296699523926, 12.609800338745117], [8.855527877807617, 12.606300354003906], [8.785566329956055, 12.532369613647461], [8.777865409851074, 12.628029823303223], [8.757728576660156, 12.861089706420898] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.093154, "PERIMETER": 1.340061, "COLUMBUS_": 17.0, "COLUMBUS_I": 36.0, "POLYID": 16.0, "NEIG": 36, "HOVAL": 18.799999, "INC": 7.625, "CRIME": 54.838711, "OPEN": 0.533737, "PLUMB": 4.6875, "DISCBD": 1.1, "X": 37.599998, "Y": 34.080002, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1036.0 }, "bbox": [ 8.50916576385498, 12.361550331115723, 8.785566329956055, 12.861089706420898 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.632829666137695, 12.810150146484375], [8.693771362304688, 12.811140060424805], [8.700782775878906, 12.857099533081055], [8.757728576660156, 12.861089706420898], [8.777865409851074, 12.628029823303223], [8.785566329956055, 12.532369613647461], [8.75838565826416, 12.49685001373291], [8.726524353027344, 12.455209732055664], [8.709477424621582, 12.427309989929199], [8.694606781005859, 12.417490005493164], [8.657632827758789, 12.391510009765625], [8.605761528015137, 12.367939949035645], [8.589687347412109, 12.361550331115723], [8.512937545776367, 12.788180351257324], [8.50916576385498, 12.809200286865234], [8.582889556884766, 12.809769630432129], [8.632829666137695, 12.810150146484375] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.102087, "PERIMETER": 1.382359, "COLUMBUS_": 18.0, "COLUMBUS_I": 11.0, "POLYID": 17.0, "NEIG": 11, "HOVAL": 41.75, "INC": 9.798, "CRIME": 36.868774, "OPEN": 0.448232, "PLUMB": 1.619745, "DISCBD": 4.47, "X": 48.580002, "Y": 34.459999, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1011.0 }, "bbox": [ 10.356060028076172, 12.44025993347168, 10.709790229797363, 12.838859558105469 ], "geometry": { "type": "Polygon", "coordinates": [ [ [10.356599807739258, 12.781140327453613], [10.501099586486816, 12.805319786071777], [10.649680137634277, 12.830180168151855], [10.70281982421875, 12.838859558105469], [10.709790229797363, 12.774909973144531], [10.664819717407227, 12.762929916381836], [10.6697998046875, 12.703980445861816], [10.667770385742188, 12.648030281066895], [10.666970252990723, 12.595029830932617], [10.667340278625488, 12.580109596252441], [10.669699668884277, 12.483180046081543], [10.421750068664551, 12.44025993347168], [10.420989990234375, 12.578129768371582], [10.356060028076172, 12.598119735717773], [10.356389999389648, 12.712010383605957], [10.356599807739258, 12.781140327453613] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.055494, "PERIMETER": 1.183352, "COLUMBUS_": 19.0, "COLUMBUS_I": 42.0, "POLYID": 18.0, "NEIG": 42, "HOVAL": 60.0, "INC": 13.185, "CRIME": 43.962486, "OPEN": 24.998068, "PLUMB": 13.849287, "DISCBD": 1.58, "X": 36.150002, "Y": 33.919998, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1042.0 }, "bbox": [ 8.358473777770996, 12.355310440063477, 8.589687347412109, 12.788189888000488 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.431012153625488, 12.788060188293457], [8.478970527648926, 12.788189888000488], [8.512937545776367, 12.788180351257324], [8.589687347412109, 12.361550331115723], [8.565507888793945, 12.355330467224121], [8.554715156555176, 12.355330467224121], [8.523073196411133, 12.355310440063477], [8.502638816833496, 12.357080459594727], [8.481381416320801, 12.362910270690918], [8.438838958740234, 12.373559951782227], [8.406447410583496, 12.396730422973633], [8.391569137573242, 12.407380104064941], [8.369997024536133, 12.428179740905762], [8.358473777770996, 12.445659637451172], [8.423884391784668, 12.448490142822266], [8.431012153625488, 12.788060188293457] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.061342, "PERIMETER": 1.249247, "COLUMBUS_": 20.0, "COLUMBUS_I": 41.0, "POLYID": 19.0, "NEIG": 41, "HOVAL": 30.6, "INC": 11.618, "CRIME": 54.521965, "OPEN": 0.111111, "PLUMB": 2.622951, "DISCBD": 1.53, "X": 35.759998, "Y": 34.66, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1041.0 }, "bbox": [ 8.122319221496582, 12.445659637451172, 8.431012153625488, 12.788060188293457 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.122319221496582, 12.787229537963867], [8.259181022644043, 12.787599563598633], [8.431012153625488, 12.788060188293457], [8.423884391784668, 12.448490142822266], [8.358473777770996, 12.445659637451172], [8.350508689880371, 12.481929779052734], [8.347976684570312, 12.493459701538086], [8.3489990234375, 12.547419548034668], [8.33201789855957, 12.547419548034668], [8.30504322052002, 12.550419807434082], [8.301017761230469, 12.593090057373047], [8.299444198608398, 12.609780311584473], [8.296090126037598, 12.645339965820312], [8.223162651062012, 12.645339965820312], [8.148235321044922, 12.645350456237793], [8.13826847076416, 12.703310012817383], [8.138282775878906, 12.737279891967773], [8.122319221496582, 12.787229537963867] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.444629, "PERIMETER": 3.174601, "COLUMBUS_": 21.0, "COLUMBUS_I": 17.0, "POLYID": 20.0, "NEIG": 17, "HOVAL": 81.266998, "INC": 31.07, "CRIME": 0.223797, "OPEN": 5.318607, "PLUMB": 0.167224, "DISCBD": 3.57, "X": 46.73, "Y": 31.91, "NSA": 0.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1017.0 }, "bbox": [ 9.841083526611328, 11.741860389709473, 10.425640106201172, 12.781140327453613 ], "geometry": { "type": "Polygon", "coordinates": [ [ [10.015439987182617, 12.72404956817627], [10.178409576416016, 12.751319885253906], [10.356599807739258, 12.781140327453613], [10.356389999389648, 12.712010383605957], [10.356060028076172, 12.598119735717773], [10.420989990234375, 12.578129768371582], [10.421750068664551, 12.44025993347168], [10.424249649047852, 11.990639686584473], [10.425640106201172, 11.741860389709473], [10.252799987792969, 11.742819786071777], [10.05659008026123, 11.74390983581543], [10.049909591674805, 11.76294994354248], [10.049750328063965, 11.778960227966309], [10.049289703369141, 11.822830200195312], [10.048910140991211, 11.858799934387207], [10.042079925537109, 11.912759780883789], [10.02422046661377, 11.962309837341309], [10.007160186767578, 12.009679794311523], [9.991960525512695, 12.031510353088379], [9.956293106079102, 12.08275032043457], [9.914779663085938, 12.142390251159668], [9.899951934814453, 12.163689613342285], [9.892878532409668, 12.173850059509277], [9.884350776672363, 12.191530227661133], [10.001230239868164, 12.170539855957031], [9.96633243560791, 12.341389656066895], [9.841083526611328, 12.314740180969238], [9.935688018798828, 12.501870155334473], [9.941193580627441, 12.512129783630371], [9.933468818664551, 12.599410057067871], [10.015439987182617, 12.72404956817627] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.699258, "PERIMETER": 5.07749, "COLUMBUS_": 22.0, "COLUMBUS_I": 43.0, "POLYID": 21.0, "NEIG": 43, "HOVAL": 19.975, "INC": 10.655, "CRIME": 40.074074, "OPEN": 1.643756, "PLUMB": 1.559576, "DISCBD": 1.41, "X": 34.080002, "Y": 30.42, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1043.0 }, "bbox": [ 7.06132984161377, 11.527389526367188, 8.563572883605957, 12.725419998168945 ], "geometry": { "type": "Polygon", "coordinates": [ [ [7.842434883117676, 12.405599594116211], [8.131139755249023, 12.373600006103516], [8.136807441711426, 12.348549842834473], [8.141800880432129, 12.326470375061035], [8.148349761962891, 12.298720359802246], [8.157790184020996, 12.281220436096191], [8.174397468566895, 12.250430107116699], [8.190520286560059, 12.237640380859375], [8.225326538085938, 12.206859588623047], [8.25028133392334, 12.194430351257324], [8.310224533081055, 12.156929969787598], [8.32612133026123, 12.153280258178711], [8.358863830566406, 12.145950317382812], [8.408769607543945, 12.134770393371582], [8.43419361114502, 12.139209747314453], [8.471713066101074, 12.145750045776367], [8.495033264160156, 12.13776969909668], [8.505514144897461, 12.128210067749023], [8.519205093383789, 12.115229606628418], [8.538623809814453, 12.088789939880371], [8.544462203979492, 12.073599815368652], [8.563572883605957, 12.023850440979004], [8.525978088378906, 11.924659729003906], [8.517660140991211, 11.91471004486084], [8.471677780151367, 11.863730430603027], [8.455998420715332, 11.847610473632812], [8.412508010864258, 11.807350158691406], [8.404298782348633, 11.800470352172852], [8.386432647705078, 11.785490036010742], [8.373654365539551, 11.774089813232422], [8.282732009887695, 11.74413013458252], [8.256792068481445, 11.828060150146484], [8.103923797607422, 11.785120010375977], [8.120859146118164, 11.670220375061035], [7.733179092407227, 11.527389526367188], [7.688279151916504, 11.66327953338623], [7.717282772064209, 11.741209983825684], [7.580474853515625, 11.882100105285645], [7.637434005737305, 11.917059898376465], [7.616511821746826, 12.057939529418945], [7.40372896194458, 12.080949783325195], [7.404763221740723, 12.164870262145996], [7.323862075805664, 12.21183967590332], [7.19602108001709, 12.295780181884766], [7.135107040405273, 12.359729766845703], [7.108152866363525, 12.406700134277344], [7.092213153839111, 12.51261043548584], [7.06132984161377, 12.725419998168945], [7.143249988555908, 12.724410057067871], [7.155218124389648, 12.674460411071777], [7.173169136047363, 12.598520278930664], [7.206113815307617, 12.544560432434082], [7.27003812789917, 12.510580062866211], [7.341958045959473, 12.486599922180176], [7.429862976074219, 12.46660041809082], [7.459833145141602, 12.463600158691406], [7.481781005859375, 12.389659881591797], [7.498770236968994, 12.403650283813477], [7.516755104064941, 12.409640312194824], [7.548725128173828, 12.412630081176758], [7.559714794158936, 12.414629936218262], [7.55869197845459, 12.356679916381836], [7.569672107696533, 12.334699630737305], [7.616611003875732, 12.29872989654541], [7.669570922851562, 12.327690124511719], [7.721512794494629, 12.307709693908691], [7.708548069000244, 12.36266040802002], [7.639626979827881, 12.389639854431152], [7.646636009216309, 12.430609703063965], [7.842434883117676, 12.405599594116211] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.192891, "PERIMETER": 1.992717, "COLUMBUS_": 23.0, "COLUMBUS_I": 19.0, "POLYID": 22.0, "NEIG": 19, "HOVAL": 30.450001, "INC": 11.709, "CRIME": 33.705048, "OPEN": 4.539754, "PLUMB": 1.785714, "DISCBD": 2.45, "X": 43.369999, "Y": 33.459999, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1019.0 }, "bbox": [ 9.357977867126465, 12.226559638977051, 10.015439987182617, 12.72404956817627 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.386005401611328, 12.596240043640137], [9.471497535705566, 12.595709800720215], [9.555828094482422, 12.595190048217773], [9.723674774169922, 12.595199584960938], [9.763668060302734, 12.673130035400391], [10.015439987182617, 12.72404956817627], [9.933468818664551, 12.599410057067871], [9.941193580627441, 12.512129783630371], [9.935688018798828, 12.501870155334473], [9.841083526611328, 12.314740180969238], [9.656930923461914, 12.274029731750488], [9.468775749206543, 12.234550476074219], [9.394844055175781, 12.226559638977051], [9.386472702026367, 12.34727954864502], [9.385739326477051, 12.361639976501465], [9.380951881408691, 12.45536994934082], [9.357977867126465, 12.462360382080078], [9.35901927947998, 12.56527042388916], [9.386005401611328, 12.596240043640137] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.24712, "PERIMETER": 2.147528, "COLUMBUS_": 24.0, "COLUMBUS_I": 12.0, "POLYID": 23.0, "NEIG": 12, "HOVAL": 47.733002, "INC": 21.155001, "CRIME": 20.048504, "OPEN": 0.532632, "PLUMB": 0.216763, "DISCBD": 4.78, "X": 49.610001, "Y": 32.650002, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1012.0 }, "bbox": [ 10.421750068664551, 11.990639686584473, 10.888489723205566, 12.652009963989258 ], "geometry": { "type": "Polygon", "coordinates": [ [ [10.667770385742188, 12.648030281066895], [10.776670455932617, 12.652009963989258], [10.88755989074707, 12.644009590148926], [10.888489723205566, 12.49213981628418], [10.884440422058105, 12.349269866943359], [10.884380340576172, 12.19340991973877], [10.876319885253906, 12.037540435791016], [10.640899658203125, 12.013119697570801], [10.424249649047852, 11.990639686584473], [10.421750068664551, 12.44025993347168], [10.669699668884277, 12.483180046081543], [10.667340278625488, 12.580109596252441], [10.666970252990723, 12.595029830932617], [10.667770385742188, 12.648030281066895] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.192226, "PERIMETER": 2.240392, "COLUMBUS_": 25.0, "COLUMBUS_I": 35.0, "POLYID": 24.0, "NEIG": 35, "HOVAL": 53.200001, "INC": 14.236, "CRIME": 38.297871, "OPEN": 0.62622, "PLUMB": 18.811075, "DISCBD": 0.42, "X": 36.599998, "Y": 32.09, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1035.0 }, "bbox": [ 8.131139755249023, 12.088789939880371, 8.790392875671387, 12.645350456237793 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.148235321044922, 12.645350456237793], [8.223162651062012, 12.645339965820312], [8.296090126037598, 12.645339965820312], [8.299444198608398, 12.609780311584473], [8.301017761230469, 12.593090057373047], [8.30504322052002, 12.550419807434082], [8.33201789855957, 12.547419548034668], [8.3489990234375, 12.547419548034668], [8.347976684570312, 12.493459701538086], [8.350508689880371, 12.481929779052734], [8.358473777770996, 12.445659637451172], [8.369997024536133, 12.428179740905762], [8.391569137573242, 12.407380104064941], [8.406447410583496, 12.396730422973633], [8.438838958740234, 12.373559951782227], [8.481381416320801, 12.362910270690918], [8.502638816833496, 12.357080459594727], [8.523073196411133, 12.355310440063477], [8.554715156555176, 12.355330467224121], [8.565507888793945, 12.355330467224121], [8.589687347412109, 12.361550331115723], [8.605761528015137, 12.367939949035645], [8.657632827758789, 12.391510009765625], [8.694606781005859, 12.417490005493164], [8.709477424621582, 12.427309989929199], [8.708919525146484, 12.39048957824707], [8.708315849304199, 12.350500106811523], [8.707547187805176, 12.302590370178223], [8.767485618591309, 12.29557991027832], [8.758467674255371, 12.230640411376953], [8.784432411193848, 12.206660270690918], [8.790392875671387, 12.125729560852051], [8.643799781799316, 12.102089881896973], [8.538623809814453, 12.088789939880371], [8.519205093383789, 12.115229606628418], [8.505514144897461, 12.128210067749023], [8.495033264160156, 12.13776969909668], [8.471713066101074, 12.145750045776367], [8.43419361114502, 12.139209747314453], [8.408769607543945, 12.134770393371582], [8.358863830566406, 12.145950317382812], [8.32612133026123, 12.153280258178711], [8.310224533081055, 12.156929969787598], [8.25028133392334, 12.194430351257324], [8.225326538085938, 12.206859588623047], [8.190520286560059, 12.237640380859375], [8.174397468566895, 12.250430107116699], [8.157790184020996, 12.281220436096191], [8.148349761962891, 12.298720359802246], [8.141800880432129, 12.326470375061035], [8.136807441711426, 12.348549842834473], [8.131139755249023, 12.373600006103516], [8.137151718139648, 12.416560173034668], [8.14915943145752, 12.462510108947754], [8.160175323486328, 12.528459548950195], [8.155200958251953, 12.579409599304199], [8.147226333618164, 12.619379997253418], [8.148235321044922, 12.645350456237793] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.17168, "PERIMETER": 1.666489, "COLUMBUS_": 26.0, "COLUMBUS_I": 32.0, "POLYID": 25.0, "NEIG": 32, "HOVAL": 17.9, "INC": 8.461, "CRIME": 61.299175, "OPEN": 0.0, "PLUMB": 6.529851, "DISCBD": 0.83, "X": 39.360001, "Y": 32.880001, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1032.0 }, "bbox": [ 8.707547187805176, 12.125729560852051, 9.131059646606445, 12.63424015045166 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.785566329956055, 12.532369613647461], [8.855527877807617, 12.606300354003906], [8.913296699523926, 12.609800338745117], [9.124277114868164, 12.63424015045166], [9.124981880187988, 12.587260246276855], [9.127169609069824, 12.441459655761719], [9.129522323608398, 12.284629821777344], [9.131059646606445, 12.182160377502441], [9.116094589233398, 12.17965030670166], [8.95518970489502, 12.153010368347168], [8.790392875671387, 12.125729560852051], [8.784432411193848, 12.206660270690918], [8.758467674255371, 12.230640411376953], [8.767485618591309, 12.29557991027832], [8.707547187805176, 12.302590370178223], [8.708315849304199, 12.350500106811523], [8.708919525146484, 12.39048957824707], [8.709477424621582, 12.427309989929199], [8.726524353027344, 12.455209732055664], [8.75838565826416, 12.49685001373291], [8.785566329956055, 12.532369613647461] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.107298, "PERIMETER": 1.406823, "COLUMBUS_": 27.0, "COLUMBUS_I": 20.0, "POLYID": 26.0, "NEIG": 20, "HOVAL": 20.299999, "INC": 8.085, "CRIME": 40.969742, "OPEN": 1.238288, "PLUMB": 2.534275, "DISCBD": 1.5, "X": 41.130001, "Y": 33.139999, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1020.0 }, "bbox": [ 9.124277114868164, 12.182160377502441, 9.394844055175781, 12.63424015045166 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.124277114868164, 12.63424015045166], [9.258048057556152, 12.630610466003418], [9.383021354675293, 12.627209663391113], [9.386005401611328, 12.596240043640137], [9.35901927947998, 12.56527042388916], [9.357977867126465, 12.462360382080078], [9.380951881408691, 12.45536994934082], [9.385739326477051, 12.361639976501465], [9.386472702026367, 12.34727954864502], [9.394844055175781, 12.226559638977051], [9.258297920227051, 12.203579902648926], [9.131059646606445, 12.182160377502441], [9.129522323608398, 12.284629821777344], [9.127169609069824, 12.441459655761719], [9.124981880187988, 12.587260246276855], [9.124277114868164, 12.63424015045166] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.137802, "PERIMETER": 1.780751, "COLUMBUS_": 28.0, "COLUMBUS_I": 21.0, "POLYID": 27.0, "NEIG": 21, "HOVAL": 34.099998, "INC": 10.822, "CRIME": 52.79443, "OPEN": 19.368099, "PLUMB": 1.483516, "DISCBD": 2.24, "X": 43.950001, "Y": 31.610001, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1021.0 }, "bbox": [ 9.468775749206543, 12.002750396728516, 10.007160186767578, 12.341389656066895 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.468775749206543, 12.234550476074219], [9.656930923461914, 12.274029731750488], [9.841083526611328, 12.314740180969238], [9.96633243560791, 12.341389656066895], [10.001230239868164, 12.170539855957031], [9.884350776672363, 12.191530227661133], [9.892878532409668, 12.173850059509277], [9.899951934814453, 12.163689613342285], [9.914779663085938, 12.142390251159668], [9.956293106079102, 12.08275032043457], [9.991960525512695, 12.031510353088379], [10.007160186767578, 12.009679794311523], [9.755396842956543, 12.004929542541504], [9.480667114257812, 12.002750396728516], [9.481962203979492, 12.065779685974121], [9.478416442871094, 12.161820411682129], [9.468775749206543, 12.234550476074219] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.174773, "PERIMETER": 1.637148, "COLUMBUS_": 29.0, "COLUMBUS_I": 31.0, "POLYID": 28.0, "NEIG": 31, "HOVAL": 22.85, "INC": 7.856, "CRIME": 56.919785, "OPEN": 0.509305, "PLUMB": 3.001072, "DISCBD": 1.41, "X": 41.310001, "Y": 30.9, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1031.0 }, "bbox": [ 9.084967613220215, 11.734999656677246, 9.492551803588867, 12.234550476074219 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.394844055175781, 12.226559638977051], [9.468775749206543, 12.234550476074219], [9.478416442871094, 12.161820411682129], [9.481962203979492, 12.065779685974121], [9.480667114257812, 12.002750396728516], [9.482346534729004, 11.975689888000488], [9.488198280334473, 11.881449699401855], [9.489535331726074, 11.859919548034668], [9.492551803588867, 11.751970291137695], [9.343691825866699, 11.734999656677246], [9.200423240661621, 11.767109870910645], [9.084967613220215, 11.792989730834961], [9.090069770812988, 11.873970031738281], [9.093652725219727, 11.930830001831055], [9.098085403442383, 12.025779724121094], [9.100104331970215, 12.063579559326172], [9.103628158569336, 12.128439903259277], [9.115089416503906, 12.158659934997559], [9.131059646606445, 12.182160377502441], [9.258297920227051, 12.203579902648926], [9.394844055175781, 12.226559638977051] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.085972, "PERIMETER": 1.312158, "COLUMBUS_": 30.0, "COLUMBUS_I": 33.0, "POLYID": 29.0, "NEIG": 33, "HOVAL": 32.5, "INC": 8.681, "CRIME": 60.750446, "OPEN": 0.0, "PLUMB": 2.645051, "DISCBD": 0.81, "X": 39.720001, "Y": 30.639999, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1033.0 }, "bbox": [ 8.790384292602539, 11.792989730834961, 9.131059646606445, 12.182160377502441 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.116094589233398, 12.17965030670166], [9.131059646606445, 12.182160377502441], [9.115089416503906, 12.158659934997559], [9.103628158569336, 12.128439903259277], [9.100104331970215, 12.063579559326172], [9.098085403442383, 12.025779724121094], [9.093652725219727, 11.930830001831055], [9.090069770812988, 11.873970031738281], [9.084967613220215, 11.792989730834961], [8.898137092590332, 11.80247974395752], [8.868269920349121, 12.013819694519043], [8.811333656311035, 12.030810356140137], [8.813672065734863, 12.06682014465332], [8.81535530090332, 12.09276008605957], [8.790384292602539, 12.10575008392334], [8.790392875671387, 12.125729560852051], [8.95518970489502, 12.153010368347168], [9.116094589233398, 12.17965030670166] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.104355, "PERIMETER": 1.524931, "COLUMBUS_": 31.0, "COLUMBUS_I": 34.0, "POLYID": 30.0, "NEIG": 34, "HOVAL": 22.5, "INC": 13.906, "CRIME": 68.892044, "OPEN": 1.63878, "PLUMB": 15.600624, "DISCBD": 0.37, "X": 38.290001, "Y": 30.35, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1034.0 }, "bbox": [ 8.386432647705078, 11.785490036010742, 8.898137092590332, 12.125729560852051 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.643799781799316, 12.102089881896973], [8.790392875671387, 12.125729560852051], [8.790384292602539, 12.10575008392334], [8.81535530090332, 12.09276008605957], [8.813672065734863, 12.06682014465332], [8.811333656311035, 12.030810356140137], [8.868269920349121, 12.013819694519043], [8.898137092590332, 11.80247974395752], [8.829165458679199, 11.80486011505127], [8.713337898254395, 11.810020446777344], [8.618428230285645, 11.80504035949707], [8.508537292480469, 11.809040069580078], [8.386432647705078, 11.785490036010742], [8.404298782348633, 11.800470352172852], [8.412508010864258, 11.807350158691406], [8.455998420715332, 11.847610473632812], [8.471677780151367, 11.863730430603027], [8.517660140991211, 11.91471004486084], [8.525978088378906, 11.924659729003906], [8.563572883605957, 12.023850440979004], [8.544462203979492, 12.073599815368652], [8.538623809814453, 12.088789939880371], [8.643799781799316, 12.102089881896973] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.117409, "PERIMETER": 1.716047, "COLUMBUS_": 32.0, "COLUMBUS_I": 45.0, "POLYID": 31.0, "NEIG": 45, "HOVAL": 31.799999, "INC": 16.940001, "CRIME": 17.677214, "OPEN": 3.936443, "PLUMB": 0.85389, "DISCBD": 3.78, "X": 27.940001, "Y": 29.85, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1045.0 }, "bbox": [ 6.456532001495361, 11.781330108642578, 7.185831069946289, 12.078980445861816 ], "geometry": { "type": "Polygon", "coordinates": [ [ [6.763313770294189, 11.981120109558105], [6.942171096801758, 12.0560302734375], [7.004114151000977, 12.067009925842285], [7.078045845031738, 12.076990127563477], [7.125000953674316, 12.078980445861816], [7.185831069946289, 11.848239898681641], [7.013006210327148, 11.82621955871582], [6.741261005401611, 11.799280166625977], [6.456532001495361, 11.781330108642578], [6.674379825592041, 11.931170463562012], [6.763313770294189, 11.981120109558105] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.18558, "PERIMETER": 2.108951, "COLUMBUS_": 33.0, "COLUMBUS_I": 13.0, "POLYID": 32.0, "NEIG": 13, "HOVAL": 40.299999, "INC": 18.941999, "CRIME": 19.145592, "OPEN": 2.221022, "PLUMB": 0.255102, "DISCBD": 4.76, "X": 50.110001, "Y": 29.91, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1013.0 }, "bbox": [ 10.424249649047852, 11.633870124816895, 11.204830169677734, 12.037540435791016 ], "geometry": { "type": "Polygon", "coordinates": [ [ [10.424249649047852, 11.990639686584473], [10.640899658203125, 12.013119697570801], [10.876319885253906, 12.037540435791016], [10.886269569396973, 11.946619987487793], [10.915240287780762, 11.941619873046875], [10.932220458984375, 11.938619613647461], [10.963190078735352, 11.940620422363281], [10.983169555664062, 11.936619758605957], [10.995160102844238, 11.937620162963867], [11.045080184936523, 11.853679656982422], [11.112970352172852, 11.761759757995605], [11.204830169677734, 11.638850212097168], [11.126910209655762, 11.633870124816895], [11.073969841003418, 11.65785026550293], [10.974069595336914, 11.661860466003418], [10.952119827270508, 11.727809906005859], [10.878219604492188, 11.723259925842285], [10.806260108947754, 11.718830108642578], [10.783359527587891, 11.719550132751465], [10.766209602355957, 11.720080375671387], [10.677379608154297, 11.72284984588623], [10.656399726867676, 11.72284984588623], [10.613459587097168, 11.723299980163574], [10.560500144958496, 11.723859786987305], [10.531530380249023, 11.743849754333496], [10.425640106201172, 11.741860389709473], [10.424249649047852, 11.990639686584473] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.087472, "PERIMETER": 1.507971, "COLUMBUS_": 34.0, "COLUMBUS_I": 22.0, "POLYID": 33.0, "NEIG": 22, "HOVAL": 23.6, "INC": 9.918, "CRIME": 41.968163, "OPEN": 0.0, "PLUMB": 1.023891, "DISCBD": 2.28, "X": 44.099998, "Y": 30.4, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1022.0 }, "bbox": [ 9.480667114257812, 11.76294994354248, 10.049909591674805, 12.009679794311523 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.480667114257812, 12.002750396728516], [9.755396842956543, 12.004929542541504], [10.007160186767578, 12.009679794311523], [10.02422046661377, 11.962309837341309], [10.042079925537109, 11.912759780883789], [10.048910140991211, 11.858799934387207], [10.049289703369141, 11.822830200195312], [10.049750328063965, 11.778960227966309], [10.049909591674805, 11.76294994354248], [10.026479721069336, 11.787699699401855], [9.986115455627441, 11.802860260009766], [9.973393440246582, 11.809060096740723], [9.925159454345703, 11.823849678039551], [9.877091407775879, 11.844180107116699], [9.859211921691895, 11.851739883422852], [9.831770896911621, 11.858819961547852], [9.800299644470215, 11.866829872131348], [9.639468193054199, 11.863249778747559], [9.489535331726074, 11.859919548034668], [9.488198280334473, 11.881449699401855], [9.482346534729004, 11.975689888000488], [9.480667114257812, 12.002750396728516] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.226594, "PERIMETER": 2.519132, "COLUMBUS_": 35.0, "COLUMBUS_I": 44.0, "POLYID": 34.0, "NEIG": 44, "HOVAL": 28.450001, "INC": 14.948, "CRIME": 23.974028, "OPEN": 3.029087, "PLUMB": 0.386803, "DISCBD": 3.06, "X": 30.32, "Y": 28.26, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1044.0 }, "bbox": [ 6.966993808746338, 11.329950332641602, 7.733179092407227, 11.872119903564453 ], "geometry": { "type": "Polygon", "coordinates": [ [ [7.185831069946289, 11.848239898681641], [7.317720890045166, 11.856149673461914], [7.508541107177734, 11.872119903564453], [7.484549999237061, 11.838150024414062], [7.463559150695801, 11.80918025970459], [7.469532012939453, 11.757220268249512], [7.493495941162109, 11.728249549865723], [7.492452144622803, 11.619339942932129], [7.688279151916504, 11.66327953338623], [7.733179092407227, 11.527389526367188], [7.710183143615723, 11.482439994812012], [7.674202919006348, 11.446470260620117], [7.624241828918457, 11.421500205993652], [7.562289237976074, 11.388540267944336], [7.468363761901855, 11.349579811096191], [7.398374080657959, 11.329950332641602], [7.375504970550537, 11.471489906311035], [7.315611839294434, 11.586389541625977], [7.123810768127441, 11.530790328979492], [6.9848952293396, 11.490519523620605], [6.971885204315186, 11.633569717407227], [6.966993808746338, 11.687350273132324], [7.019946098327637, 11.695340156555176], [7.013006210327148, 11.82621955871582], [7.185831069946289, 11.848239898681641] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.175453, "PERIMETER": 1.974937, "COLUMBUS_": 36.0, "COLUMBUS_I": 23.0, "POLYID": 35.0, "NEIG": 23, "HOVAL": 27.0, "INC": 12.814, "CRIME": 39.175053, "OPEN": 4.220401, "PLUMB": 0.633675, "DISCBD": 2.37, "X": 43.700001, "Y": 29.18, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1023.0 }, "bbox": [ 9.341614723205566, 11.531109809875488, 10.05659008026123, 11.866829872131348 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.489535331726074, 11.859919548034668], [9.639468193054199, 11.863249778747559], [9.800299644470215, 11.866829872131348], [9.831770896911621, 11.858819961547852], [9.859211921691895, 11.851739883422852], [9.877091407775879, 11.844180107116699], [9.925159454345703, 11.823849678039551], [9.973393440246582, 11.809060096740723], [9.986115455627441, 11.802860260009766], [10.026479721069336, 11.787699699401855], [10.049909591674805, 11.76294994354248], [10.05659008026123, 11.74390983581543], [9.917131423950195, 11.737930297851562], [9.918045997619629, 11.531109809875488], [9.500506401062012, 11.542019844055176], [9.341614723205566, 11.546170234680176], [9.343691825866699, 11.734999656677246], [9.492551803588867, 11.751970291137695], [9.489535331726074, 11.859919548034668] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.17813, "PERIMETER": 1.790058, "COLUMBUS_": 37.0, "COLUMBUS_I": 46.0, "POLYID": 36.0, "NEIG": 46, "HOVAL": 36.299999, "INC": 18.739, "CRIME": 14.305556, "OPEN": 6.773331, "PLUMB": 0.332349, "DISCBD": 4.23, "X": 27.27, "Y": 28.209999, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1046.0 }, "bbox": [ 6.456532001495361, 11.439629554748535, 7.019946098327637, 11.82621955871582 ], "geometry": { "type": "Polygon", "coordinates": [ [ [6.741261005401611, 11.799280166625977], [7.013006210327148, 11.82621955871582], [7.019946098327637, 11.695340156555176], [6.966993808746338, 11.687350273132324], [6.971885204315186, 11.633569717407227], [6.9848952293396, 11.490519523620605], [6.891400814056396, 11.479410171508789], [6.77780818939209, 11.465909957885742], [6.758334159851074, 11.462329864501953], [6.678176879882812, 11.447600364685059], [6.61027717590332, 11.444780349731445], [6.558311939239502, 11.44219970703125], [6.481366157531738, 11.439629554748535], [6.456532001495361, 11.781330108642578], [6.741261005401611, 11.799280166625977] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.121154, "PERIMETER": 1.402252, "COLUMBUS_": 38.0, "COLUMBUS_I": 30.0, "POLYID": 37.0, "NEIG": 30, "HOVAL": 43.299999, "INC": 17.017, "CRIME": 42.445076, "OPEN": 4.839273, "PLUMB": 1.230329, "DISCBD": 1.08, "X": 38.32, "Y": 28.82, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1030.0 }, "bbox": [ 8.713337898254395, 11.434320449829102, 9.095859527587891, 11.810020446777344 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.713337898254395, 11.810020446777344], [8.829165458679199, 11.80486011505127], [8.898137092590332, 11.80247974395752], [9.084967613220215, 11.792989730834961], [9.085843086242676, 11.639080047607422], [9.095859527587891, 11.559189796447754], [9.082836151123047, 11.456330299377441], [9.000834465026855, 11.458020210266113], [8.935976028442383, 11.460300445556641], [8.922977447509766, 11.434320449829102], [8.77213191986084, 11.450329780578613], [8.713337898254395, 11.810020446777344] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.053881, "PERIMETER": 0.934509, "COLUMBUS_": 39.0, "COLUMBUS_I": 24.0, "POLYID": 38.0, "NEIG": 24, "HOVAL": 22.700001, "INC": 11.107, "CRIME": 53.710938, "OPEN": 0.0, "PLUMB": 0.8, "DISCBD": 1.58, "X": 41.040001, "Y": 28.780001, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1024.0 }, "bbox": [ 9.084967613220215, 11.546170234680176, 9.343691825866699, 11.792989730834961 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.084967613220215, 11.792989730834961], [9.200423240661621, 11.767109870910645], [9.343691825866699, 11.734999656677246], [9.341614723205566, 11.546170234680176], [9.20775318145752, 11.55325984954834], [9.095859527587891, 11.559189796447754], [9.085843086242676, 11.639080047607422], [9.084967613220215, 11.792989730834961] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.174823, "PERIMETER": 2.335402, "COLUMBUS_": 40.0, "COLUMBUS_I": 47.0, "POLYID": 39.0, "NEIG": 47, "HOVAL": 39.599998, "INC": 18.476999, "CRIME": 19.100863, "OPEN": 0.0, "PLUMB": 0.314663, "DISCBD": 5.53, "X": 24.25, "Y": 26.690001, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1047.0 }, "bbox": [ 5.87490701675415, 11.057000160217285, 6.481366157531738, 11.781330108642578 ], "geometry": { "type": "Polygon", "coordinates": [ [ [6.181705951690674, 11.553569793701172], [6.394561767578125, 11.710399627685547], [6.456532001495361, 11.781330108642578], [6.481366157531738, 11.439629554748535], [6.33650016784668, 11.420660018920898], [6.335865020751953, 11.39568042755127], [6.335484027862549, 11.38070011138916], [6.356451034545898, 11.349720001220703], [6.359416007995605, 11.27379035949707], [6.316442012786865, 11.232830047607422], [6.167585849761963, 11.230850219726562], [6.179293155670166, 11.18159008026123], [6.180611133575439, 11.167719841003418], [6.212475776672363, 11.122119903564453], [6.220479965209961, 11.099960327148438], [6.220462799072266, 11.057000160217285], [6.088609218597412, 11.097979545593262], [6.088623046875, 11.132949829101562], [6.084632873535156, 11.148940086364746], [6.085638046264648, 11.160920143127441], [6.035704135894775, 11.202890396118164], [5.984754085540771, 11.203900337219238], [5.948803901672363, 11.239870071411133], [5.96979284286499, 11.263850212097168], [5.970815181732178, 11.31779956817627], [5.87490701675415, 11.313819885253906], [6.181705951690674, 11.553569793701172] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.302908, "PERIMETER": 2.285487, "COLUMBUS_": 41.0, "COLUMBUS_I": 16.0, "POLYID": 40.0, "NEIG": 16, "HOVAL": 61.950001, "INC": 29.833, "CRIME": 16.241299, "OPEN": 6.45131, "PLUMB": 0.132743, "DISCBD": 4.4, "X": 48.439999, "Y": 27.93, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1016.0 }, "bbox": [ 10.05659008026123, 11.213310241699219, 10.808690071105957, 11.74390983581543 ], "geometry": { "type": "Polygon", "coordinates": [ [ [10.05659008026123, 11.74390983581543], [10.252799987792969, 11.742819786071777], [10.425640106201172, 11.741860389709473], [10.531530380249023, 11.743849754333496], [10.560500144958496, 11.723859786987305], [10.613459587097168, 11.723299980163574], [10.656399726867676, 11.72284984588623], [10.677379608154297, 11.72284984588623], [10.766209602355957, 11.720080375671387], [10.783359527587891, 11.719550132751465], [10.806260108947754, 11.718830108642578], [10.802240371704102, 11.674869537353516], [10.803219795227051, 11.661589622497559], [10.806090354919434, 11.620909690856934], [10.808199882507324, 11.590950012207031], [10.808690071105957, 11.57466983795166], [10.804929733276367, 11.558989524841309], [10.799189567565918, 11.534999847412109], [10.802140235900879, 11.434080123901367], [10.802060127258301, 11.232259750366211], [10.73412036895752, 11.228269577026367], [10.687170028686523, 11.2222900390625], [10.613240242004395, 11.216300010681152], [10.595250129699707, 11.213310241699219], [10.555290222167969, 11.22029972076416], [10.480369567871094, 11.221309661865234], [10.421429634094238, 11.23231029510498], [10.364489555358887, 11.254300117492676], [10.343520164489746, 11.272279739379883], [10.329560279846191, 11.328240394592285], [10.320590019226074, 11.369199752807617], [10.279640197753906, 11.403180122375488], [10.226710319519043, 11.45613956451416], [10.168800354003906, 11.523090362548828], [10.109880447387695, 11.590029716491699], [10.070949554443359, 11.671970367431641], [10.05659008026123, 11.74390983581543] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.137024, "PERIMETER": 1.525097, "COLUMBUS_": 42.0, "COLUMBUS_I": 14.0, "POLYID": 41.0, "NEIG": 14, "HOVAL": 42.099998, "INC": 22.207001, "CRIME": 18.905146, "OPEN": 0.293317, "PLUMB": 0.247036, "DISCBD": 5.33, "X": 51.240002, "Y": 27.799999, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1014.0 }, "bbox": [ 10.799189567565918, 11.232259750366211, 11.141839981079102, 11.727809906005859 ], "geometry": { "type": "Polygon", "coordinates": [ [ [10.806260108947754, 11.718830108642578], [10.878219604492188, 11.723259925842285], [10.952119827270508, 11.727809906005859], [10.974069595336914, 11.661860466003418], [11.073969841003418, 11.65785026550293], [11.126910209655762, 11.633870124816895], [11.126890182495117, 11.59589958190918], [11.138870239257812, 11.569919586181641], [11.139849662780762, 11.530960083007812], [11.141839981079102, 11.505979537963867], [11.12285041809082, 11.492989540100098], [11.122790336608887, 11.336130142211914], [11.122209548950195, 11.315879821777344], [11.098469734191895, 11.303170204162598], [11.078960418701172, 11.295280456542969], [11.06859016418457, 11.2918701171875], [11.014869689941406, 11.274200439453125], [10.963910102844238, 11.265210151672363], [10.919949531555176, 11.254229545593262], [10.901860237121582, 11.252129554748535], [10.877499580383301, 11.246870040893555], [10.840740203857422, 11.238940238952637], [10.818880081176758, 11.235170364379883], [10.802060127258301, 11.232259750366211], [10.802140235900879, 11.434080123901367], [10.799189567565918, 11.534999847412109], [10.804929733276367, 11.558989524841309], [10.808690071105957, 11.57466983795166], [10.808199882507324, 11.590950012207031], [10.806090354919434, 11.620909690856934], [10.803219795227051, 11.661589622497559], [10.802240371704102, 11.674869537353516], [10.806260108947754, 11.718830108642578] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.266541, "PERIMETER": 2.176543, "COLUMBUS_": 43.0, "COLUMBUS_I": 49.0, "POLYID": 42.0, "NEIG": 49, "HOVAL": 44.333, "INC": 25.872999, "CRIME": 16.49189, "OPEN": 1.792993, "PLUMB": 0.134439, "DISCBD": 3.87, "X": 29.02, "Y": 26.58, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1049.0 }, "bbox": [ 6.75403881072998, 10.997920036315918, 7.404403209686279, 11.586389541625977 ], "geometry": { "type": "Polygon", "coordinates": [ [ [6.758334159851074, 11.462329864501953], [6.77780818939209, 11.465909957885742], [6.891400814056396, 11.479410171508789], [6.9848952293396, 11.490519523620605], [7.123810768127441, 11.530790328979492], [7.315611839294434, 11.586389541625977], [7.375504970550537, 11.471489906311035], [7.398374080657959, 11.329950332641602], [7.404403209686279, 11.29263973236084], [7.38238000869751, 11.18474006652832], [7.359377861022949, 11.124790191650391], [7.327386856079102, 11.071849822998047], [7.275406837463379, 10.997920036315918], [6.82789421081543, 11.116869926452637], [6.879881858825684, 11.211779594421387], [6.81195592880249, 11.22877025604248], [6.83095121383667, 11.262740135192871], [6.771010875701904, 11.265749931335449], [6.75403881072998, 11.292719841003418], [6.78602123260498, 11.325690269470215], [6.778051853179932, 11.380640029907227], [6.758076190948486, 11.392629623413086], [6.758334159851074, 11.462329864501953] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.060241, "PERIMETER": 0.967793, "COLUMBUS_": 44.0, "COLUMBUS_I": 29.0, "POLYID": 43.0, "NEIG": 29, "HOVAL": 25.700001, "INC": 13.38, "CRIME": 36.663612, "OPEN": 0.0, "PLUMB": 0.589226, "DISCBD": 1.95, "X": 41.09, "Y": 27.49, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1029.0 }, "bbox": [ 9.082836151123047, 11.308409690856934, 9.341614723205566, 11.559189796447754 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.095859527587891, 11.559189796447754], [9.20775318145752, 11.55325984954834], [9.341614723205566, 11.546170234680176], [9.338521957397461, 11.312379837036133], [9.207670211791992, 11.31017017364502], [9.10374927520752, 11.308409690856934], [9.082836151123047, 11.456330299377441], [9.095859527587891, 11.559189796447754] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.173337, "PERIMETER": 1.868044, "COLUMBUS_": 45.0, "COLUMBUS_I": 25.0, "POLYID": 44.0, "NEIG": 25, "HOVAL": 33.5, "INC": 16.961, "CRIME": 25.962263, "OPEN": 1.463993, "PLUMB": 0.329761, "DISCBD": 2.67, "X": 43.23, "Y": 27.309999, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1025.0 }, "bbox": [ 9.335508346557617, 11.211409568786621, 9.963891983032227, 11.546170234680176 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.341614723205566, 11.546170234680176], [9.500506401062012, 11.542019844055176], [9.918045997619629, 11.531109809875488], [9.963891983032227, 11.268340110778809], [9.778072357177734, 11.265359878540039], [9.776052474975586, 11.211409568786621], [9.656153678894043, 11.212479591369629], [9.548275947570801, 11.21343994140625], [9.546306610107422, 11.285369873046875], [9.391454696655273, 11.275400161743164], [9.335508346557617, 11.27241039276123], [9.338521957397461, 11.312379837036133], [9.341614723205566, 11.546170234680176] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.256431, "PERIMETER": 2.193039, "COLUMBUS_": 46.0, "COLUMBUS_I": 28.0, "POLYID": 45.0, "NEIG": 28, "HOVAL": 27.733, "INC": 14.135, "CRIME": 29.028488, "OPEN": 1.006118, "PLUMB": 2.3912, "DISCBD": 2.13, "X": 39.32, "Y": 25.85, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1028.0 }, "bbox": [ 8.622117042541504, 10.821869850158691, 9.178548812866211, 11.460300445556641 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.000834465026855, 11.458020210266113], [9.082836151123047, 11.456330299377441], [9.10374927520752, 11.308409690856934], [9.111679077148438, 11.157540321350098], [9.107674598693848, 11.135560035705566], [9.098838806152344, 11.115389823913574], [9.093674659729004, 11.10359001159668], [9.171592712402344, 11.09158992767334], [9.174186706542969, 11.060310363769531], [9.175572395324707, 11.048629760742188], [9.178548812866211, 10.999670028686523], [9.146570205688477, 10.976699829101562], [9.135557174682617, 10.917750358581543], [9.100429534912109, 10.899089813232422], [9.095559120178223, 10.828829765319824], [8.850795745849609, 10.821869850158691], [8.815848350524902, 10.867839813232422], [8.789886474609375, 10.899809837341309], [8.765927314758301, 10.938779830932617], [8.752955436706543, 10.978750228881836], [8.747973442077637, 11.010720252990723], [8.753978729248047, 11.035699844360352], [8.750991821289062, 11.060669898986816], [8.622117042541504, 11.059690475463867], [8.631120681762695, 11.089659690856934], [8.634133338928223, 11.126629829406738], [8.63216495513916, 11.199569702148438], [8.665151596069336, 11.246520042419434], [8.683139801025391, 11.257510185241699], [8.69713020324707, 11.267499923706055], [8.67520809173584, 11.405380249023438], [8.77213191986084, 11.450329780578613], [8.922977447509766, 11.434320449829102], [8.935976028442383, 11.460300445556641], [9.000834465026855, 11.458020210266113] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.124728, "PERIMETER": 1.841029, "COLUMBUS_": 47.0, "COLUMBUS_I": 48.0, "POLYID": 46.0, "NEIG": 48, "HOVAL": 76.099998, "INC": 18.323999, "CRIME": 16.530533, "OPEN": 9.683953, "PLUMB": 0.424628, "DISCBD": 5.27, "X": 25.469999, "Y": 25.709999, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1048.0 }, "bbox": [ 6.167585849761963, 10.978030204772949, 6.678176879882812, 11.447600364685059 ], "geometry": { "type": "Polygon", "coordinates": [ [ [6.481366157531738, 11.439629554748535], [6.558311939239502, 11.44219970703125], [6.61027717590332, 11.444780349731445], [6.678176879882812, 11.447600364685059], [6.649185180664062, 11.399640083312988], [6.647164821624756, 11.344690322875977], [6.639161109924316, 11.315719604492188], [6.522275924682617, 11.318730354309082], [6.520257949829102, 11.269769668579102], [6.516248226165771, 11.236800193786621], [6.542212009429932, 11.209819793701172], [6.549192905426025, 11.180850028991699], [6.55515718460083, 11.10791015625], [6.534173011779785, 11.096920013427734], [6.537120819091797, 10.978030204772949], [6.220462799072266, 11.057000160217285], [6.220479965209961, 11.099960327148438], [6.212475776672363, 11.122119903564453], [6.180611133575439, 11.167719841003418], [6.179293155670166, 11.18159008026123], [6.167585849761963, 11.230850219726562], [6.316442012786865, 11.232830047607422], [6.359416007995605, 11.27379035949707], [6.356451034545898, 11.349720001220703], [6.335484027862549, 11.38070011138916], [6.335865020751953, 11.39568042755127], [6.33650016784668, 11.420660018920898], [6.481366157531738, 11.439629554748535] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.245249, "PERIMETER": 2.079986, "COLUMBUS_": 48.0, "COLUMBUS_I": 15.0, "POLYID": 47.0, "NEIG": 15, "HOVAL": 42.5, "INC": 18.950001, "CRIME": 27.822861, "OPEN": 0.0, "PLUMB": 0.268817, "DISCBD": 5.57, "X": 50.889999, "Y": 25.24, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1015.0 }, "bbox": [ 10.588159561157227, 10.788629531860352, 11.287420272827148, 11.315879821777344 ], "geometry": { "type": "Polygon", "coordinates": [ [ [11.098469734191895, 11.303170204162598], [11.122209548950195, 11.315879821777344], [11.120759963989258, 11.265190124511719], [11.119729995727539, 11.199250221252441], [11.123700141906738, 11.127309799194336], [11.144650459289551, 11.056369781494141], [11.181599617004395, 11.025400161743164], [11.221540451049805, 10.978429794311523], [11.256489753723145, 10.922479629516602], [11.275449752807617, 10.888500213623047], [11.287420272827148, 10.84253978729248], [11.286399841308594, 10.790590286254883], [11.013669967651367, 10.788629531860352], [10.963720321655273, 10.799619674682617], [10.88379955291748, 10.807620048522949], [10.781900405883789, 10.812629699707031], [10.708979606628418, 10.819640159606934], [10.694000244140625, 10.833629608154297], [10.649069786071777, 10.890580177307129], [10.616109848022461, 10.925559997558594], [10.588159561157227, 10.978509902954102], [10.592169761657715, 10.994500160217285], [10.691129684448242, 11.140359878540039], [10.687170028686523, 11.2222900390625], [10.73412036895752, 11.228269577026367], [10.802060127258301, 11.232259750366211], [10.818880081176758, 11.235170364379883], [10.840740203857422, 11.238940238952637], [10.877499580383301, 11.246870040893555], [10.901860237121582, 11.252129554748535], [10.919949531555176, 11.254229545593262], [10.963910102844238, 11.265210151672363], [11.014869689941406, 11.274200439453125], [11.06859016418457, 11.2918701171875], [11.078960418701172, 11.295280456542969], [11.098469734191895, 11.303170204162598] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.069762, "PERIMETER": 1.102032, "COLUMBUS_": 49.0, "COLUMBUS_I": 27.0, "POLYID": 48.0, "NEIG": 27, "HOVAL": 26.799999, "INC": 11.813, "CRIME": 26.645266, "OPEN": 4.884389, "PLUMB": 1.034807, "DISCBD": 2.33, "X": 41.209999, "Y": 25.9, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1027.0 }, "bbox": [ 9.093674659729004, 11.048029899597168, 9.3948974609375, 11.312379837036133 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.207670211791992, 11.31017017364502], [9.338521957397461, 11.312379837036133], [9.335508346557617, 11.27241039276123], [9.391454696655273, 11.275400161743164], [9.393032073974609, 11.262740135192871], [9.393250465393066, 11.251399993896484], [9.3948974609375, 11.165470123291016], [9.39454460144043, 11.139530181884766], [9.393360137939453, 11.052599906921387], [9.282283782958984, 11.048029899597168], [9.175572395324707, 11.048629760742188], [9.174186706542969, 11.060310363769531], [9.171592712402344, 11.09158992767334], [9.093674659729004, 11.10359001159668], [9.098838806152344, 11.115389823913574], [9.107674598693848, 11.135560035705566], [9.111679077148438, 11.157540321350098], [9.10374927520752, 11.308409690856934], [9.207670211791992, 11.31017017364502] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.205964, "PERIMETER": 2.199169, "COLUMBUS_": 50.0, "COLUMBUS_I": 26.0, "POLYID": 49.0, "NEIG": 26, "HOVAL": 35.799999, "INC": 18.796, "CRIME": 22.541491, "OPEN": 0.259826, "PLUMB": 0.901442, "DISCBD": 3.03, "X": 42.669998, "Y": 24.959999, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1026.0 }, "bbox": [ 9.095559120178223, 10.828829765319824, 9.78189754486084, 11.285369873046875 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.391454696655273, 11.275400161743164], [9.546306610107422, 11.285369873046875], [9.548275947570801, 11.21343994140625], [9.656153678894043, 11.212479591369629], [9.776052474975586, 11.211409568786621], [9.779011726379395, 11.118490219116211], [9.774969100952148, 11.007590293884277], [9.775935173034668, 10.92866039276123], [9.78189754486084, 10.853730201721191], [9.095559120178223, 10.828829765319824], [9.100429534912109, 10.899089813232422], [9.135557174682617, 10.917750358581543], [9.146570205688477, 10.976699829101562], [9.178548812866211, 10.999670028686523], [9.175572395324707, 11.048629760742188], [9.282283782958984, 11.048029899597168], [9.393360137939453, 11.052599906921387], [9.39454460144043, 11.139530181884766], [9.3948974609375, 11.165470123291016], [9.393250465393066, 11.251399993896484], [9.393032073974609, 11.262740135192871], [9.391454696655273, 11.275400161743164] ] ] } } ] } ================================================ FILE: packages/turf-distance-weight/test/in/point.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "OBJECTID": 1, "AREA": 0.309441, "PERIMETER": 2.440629, "COLUMBUS_": 2.0, "COLUMBUS_I": 5.0, "POLYID": 1.0, "NEIG": 5, "HOVAL": 80.467003, "INC": 19.531, "CRIME": 15.72598, "OPEN": 2.850747, "PLUMB": 0.217155, "DISCBD": 5.03, "X": 38.799999, "Y": 44.07, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1005.0, "ORIG_FID": 0 }, "geometry": { "type": "Point", "coordinates": [8.827218469203906, 14.369076018912065] } }, { "type": "Feature", "properties": { "OBJECTID": 2, "AREA": 0.259329, "PERIMETER": 2.236939, "COLUMBUS_": 3.0, "COLUMBUS_I": 1.0, "POLYID": 2.0, "NEIG": 1, "HOVAL": 44.567001, "INC": 21.232, "CRIME": 18.801754, "OPEN": 5.29672, "PLUMB": 0.320581, "DISCBD": 4.27, "X": 35.619999, "Y": 42.380001, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1001.0, "ORIG_FID": 1 }, "geometry": { "type": "Point", "coordinates": [8.332658372724923, 14.03162400632397] } }, { "type": "Feature", "properties": { "OBJECTID": 3, "AREA": 0.192468, "PERIMETER": 2.187547, "COLUMBUS_": 4.0, "COLUMBUS_I": 6.0, "POLYID": 3.0, "NEIG": 6, "HOVAL": 26.35, "INC": 15.956, "CRIME": 30.626781, "OPEN": 4.534649, "PLUMB": 0.374404, "DISCBD": 3.89, "X": 39.82, "Y": 41.18, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1006.0, "ORIG_FID": 2 }, "geometry": { "type": "Point", "coordinates": [9.012265409371699, 13.81971907996915] } }, { "type": "Feature", "properties": { "OBJECTID": 4, "AREA": 0.083841, "PERIMETER": 1.427635, "COLUMBUS_": 5.0, "COLUMBUS_I": 2.0, "POLYID": 4.0, "NEIG": 2, "HOVAL": 33.200001, "INC": 4.477, "CRIME": 32.38776, "OPEN": 0.394427, "PLUMB": 1.186944, "DISCBD": 3.7, "X": 36.5, "Y": 40.52, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1002.0, "ORIG_FID": 3 }, "geometry": { "type": "Point", "coordinates": [8.460800893307432, 13.71696217022814] } }, { "type": "Feature", "properties": { "OBJECTID": 5, "AREA": 0.488888, "PERIMETER": 2.997133, "COLUMBUS_": 6.0, "COLUMBUS_I": 7.0, "POLYID": 5.0, "NEIG": 7, "HOVAL": 23.225, "INC": 11.252, "CRIME": 50.73151, "OPEN": 0.405664, "PLUMB": 0.624596, "DISCBD": 2.83, "X": 40.009998, "Y": 38.0, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1007.0, "ORIG_FID": 4 }, "geometry": { "type": "Point", "coordinates": [9.007982127497687, 13.296366430537295] } }, { "type": "Feature", "properties": { "OBJECTID": 6, "AREA": 0.283079, "PERIMETER": 2.335634, "COLUMBUS_": 7.0, "COLUMBUS_I": 8.0, "POLYID": 6.0, "NEIG": 8, "HOVAL": 28.75, "INC": 16.028999, "CRIME": 26.066658, "OPEN": 0.563075, "PLUMB": 0.25413, "DISCBD": 3.78, "X": 43.75, "Y": 39.279999, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1008.0, "ORIG_FID": 5 }, "geometry": { "type": "Point", "coordinates": [9.739925828001205, 13.474632743210716] } }, { "type": "Feature", "properties": { "OBJECTID": 7, "AREA": 0.257084, "PERIMETER": 2.554577, "COLUMBUS_": 8.0, "COLUMBUS_I": 4.0, "POLYID": 7.0, "NEIG": 4, "HOVAL": 75.0, "INC": 8.438, "CRIME": 0.178269, "OPEN": 0.0, "PLUMB": 2.402402, "DISCBD": 2.74, "X": 33.360001, "Y": 38.41, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1004.0, "ORIG_FID": 6 }, "geometry": { "type": "Point", "coordinates": [8.118750060628727, 13.29570386705354] } }, { "type": "Feature", "properties": { "OBJECTID": 8, "AREA": 0.204954, "PERIMETER": 2.139524, "COLUMBUS_": 9.0, "COLUMBUS_I": 3.0, "POLYID": 8.0, "NEIG": 3, "HOVAL": 37.125, "INC": 11.337, "CRIME": 38.425858, "OPEN": 3.483478, "PLUMB": 2.739726, "DISCBD": 2.89, "X": 36.709999, "Y": 38.709999, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1003.0, "ORIG_FID": 7 }, "geometry": { "type": "Point", "coordinates": [8.49648817195755, 13.402612361972411] } }, { "type": "Feature", "properties": { "OBJECTID": 9, "AREA": 0.500755, "PERIMETER": 3.169707, "COLUMBUS_": 10.0, "COLUMBUS_I": 18.0, "POLYID": 9.0, "NEIG": 18, "HOVAL": 52.599998, "INC": 17.586, "CRIME": 30.515917, "OPEN": 0.527488, "PLUMB": 0.890736, "DISCBD": 3.17, "X": 43.439999, "Y": 35.919998, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1018.0, "ORIG_FID": 8 }, "geometry": { "type": "Point", "coordinates": [9.630793442508985, 12.942724931765365] } }, { "type": "Feature", "properties": { "OBJECTID": 10, "AREA": 0.246689, "PERIMETER": 2.087235, "COLUMBUS_": 11.0, "COLUMBUS_I": 10.0, "POLYID": 10.0, "NEIG": 10, "HOVAL": 96.400002, "INC": 13.598, "CRIME": 34.000835, "OPEN": 1.548348, "PLUMB": 0.557724, "DISCBD": 4.33, "X": 47.610001, "Y": 36.419998, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1010.0, "ORIG_FID": 9 }, "geometry": { "type": "Point", "coordinates": [10.366382709801059, 13.001889360253092] } }, { "type": "Feature", "properties": { "OBJECTID": 11, "AREA": 0.041012, "PERIMETER": 0.919488, "COLUMBUS_": 12.0, "COLUMBUS_I": 38.0, "POLYID": 11.0, "NEIG": 38, "HOVAL": 19.700001, "INC": 7.467, "CRIME": 62.275448, "OPEN": 0.0, "PLUMB": 1.479915, "DISCBD": 1.9, "X": 37.849998, "Y": 36.299999, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1038.0, "ORIG_FID": 10 }, "geometry": { "type": "Point", "coordinates": [8.669735412857047, 12.98012156123324] } }, { "type": "Feature", "properties": { "OBJECTID": 12, "AREA": 0.035769, "PERIMETER": 0.902125, "COLUMBUS_": 13.0, "COLUMBUS_I": 37.0, "POLYID": 12.0, "NEIG": 37, "HOVAL": 19.9, "INC": 10.048, "CRIME": 56.705669, "OPEN": 3.157895, "PLUMB": 2.635046, "DISCBD": 1.91, "X": 37.130001, "Y": 36.119999, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1037.0, "ORIG_FID": 11 }, "geometry": { "type": "Point", "coordinates": [8.544995589641779, 12.953125683982199] } }, { "type": "Feature", "properties": { "OBJECTID": 13, "AREA": 0.034377, "PERIMETER": 0.93659, "COLUMBUS_": 14.0, "COLUMBUS_I": 39.0, "POLYID": 13.0, "NEIG": 39, "HOVAL": 41.700001, "INC": 9.549, "CRIME": 46.716129, "OPEN": 0.0, "PLUMB": 6.328423, "DISCBD": 2.09, "X": 35.950001, "Y": 36.400002, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1039.0, "ORIG_FID": 12 }, "geometry": { "type": "Point", "coordinates": [8.349223482851055, 12.996094141102329] } }, { "type": "Feature", "properties": { "OBJECTID": 14, "AREA": 0.060884, "PERIMETER": 1.128424, "COLUMBUS_": 15.0, "COLUMBUS_I": 40.0, "POLYID": 14.0, "NEIG": 40, "HOVAL": 42.900002, "INC": 9.963, "CRIME": 57.066132, "OPEN": 0.477104, "PLUMB": 5.110962, "DISCBD": 1.83, "X": 35.720001, "Y": 35.599998, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1040.0, "ORIG_FID": 13 }, "geometry": { "type": "Point", "coordinates": [8.292701516920957, 12.863707688216895] } }, { "type": "Feature", "properties": { "OBJECTID": 15, "AREA": 0.106653, "PERIMETER": 1.437606, "COLUMBUS_": 16.0, "COLUMBUS_I": 9.0, "POLYID": 15.0, "NEIG": 9, "HOVAL": 18.0, "INC": 9.873, "CRIME": 48.585487, "OPEN": 0.174325, "PLUMB": 1.311475, "DISCBD": 1.7, "X": 39.610001, "Y": 34.91, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1009.0, "ORIG_FID": 14 }, "geometry": { "type": "Point", "coordinates": [8.973462206070096, 12.741586740380374] } }, { "type": "Feature", "properties": { "OBJECTID": 16, "AREA": 0.093154, "PERIMETER": 1.340061, "COLUMBUS_": 17.0, "COLUMBUS_I": 36.0, "POLYID": 16.0, "NEIG": 36, "HOVAL": 18.799999, "INC": 7.625, "CRIME": 54.838711, "OPEN": 0.533737, "PLUMB": 4.6875, "DISCBD": 1.1, "X": 37.599998, "Y": 34.080002, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1036.0, "ORIG_FID": 15 }, "geometry": { "type": "Point", "coordinates": [8.655866335560422, 12.627315808754123] } }, { "type": "Feature", "properties": { "OBJECTID": 17, "AREA": 0.102087, "PERIMETER": 1.382359, "COLUMBUS_": 18.0, "COLUMBUS_I": 11.0, "POLYID": 17.0, "NEIG": 11, "HOVAL": 41.75, "INC": 9.798, "CRIME": 36.868774, "OPEN": 0.448232, "PLUMB": 1.619745, "DISCBD": 4.47, "X": 48.580002, "Y": 34.459999, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1011.0, "ORIG_FID": 16 }, "geometry": { "type": "Point", "coordinates": [10.528621192777081, 12.647475597059021] } }, { "type": "Feature", "properties": { "OBJECTID": 18, "AREA": 0.055494, "PERIMETER": 1.183352, "COLUMBUS_": 19.0, "COLUMBUS_I": 42.0, "POLYID": 18.0, "NEIG": 42, "HOVAL": 60.0, "INC": 13.185, "CRIME": 43.962486, "OPEN": 24.998068, "PLUMB": 13.849287, "DISCBD": 1.58, "X": 36.150002, "Y": 33.919998, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1042.0, "ORIG_FID": 17 }, "geometry": { "type": "Point", "coordinates": [8.487918125725194, 12.545342471590065] } }, { "type": "Feature", "properties": { "OBJECTID": 19, "AREA": 0.061342, "PERIMETER": 1.249247, "COLUMBUS_": 20.0, "COLUMBUS_I": 41.0, "POLYID": 19.0, "NEIG": 41, "HOVAL": 30.6, "INC": 11.618, "CRIME": 54.521965, "OPEN": 0.111111, "PLUMB": 2.622951, "DISCBD": 1.53, "X": 35.759998, "Y": 34.66, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1041.0, "ORIG_FID": 18 }, "geometry": { "type": "Point", "coordinates": [8.276665687561035, 12.716493200126546] } }, { "type": "Feature", "properties": { "OBJECTID": 20, "AREA": 0.444629, "PERIMETER": 3.174601, "COLUMBUS_": 21.0, "COLUMBUS_I": 17.0, "POLYID": 20.0, "NEIG": 17, "HOVAL": 81.266998, "INC": 31.07, "CRIME": 0.223797, "OPEN": 5.318607, "PLUMB": 0.167224, "DISCBD": 3.57, "X": 46.73, "Y": 31.91, "NSA": 0.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1017.0, "ORIG_FID": 19 }, "geometry": { "type": "Point", "coordinates": [10.190581526179411, 12.256899149288646] } }, { "type": "Feature", "properties": { "OBJECTID": 21, "AREA": 0.699258, "PERIMETER": 5.07749, "COLUMBUS_": 22.0, "COLUMBUS_I": 43.0, "POLYID": 21.0, "NEIG": 43, "HOVAL": 19.975, "INC": 10.655, "CRIME": 40.074074, "OPEN": 1.643756, "PLUMB": 1.559576, "DISCBD": 1.41, "X": 34.080002, "Y": 30.42, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1043.0, "ORIG_FID": 20 }, "geometry": { "type": "Point", "coordinates": [7.847423618980445, 12.084997322022751] } }, { "type": "Feature", "properties": { "OBJECTID": 22, "AREA": 0.192891, "PERIMETER": 1.992717, "COLUMBUS_": 23.0, "COLUMBUS_I": 19.0, "POLYID": 22.0, "NEIG": 19, "HOVAL": 30.450001, "INC": 11.709, "CRIME": 33.705048, "OPEN": 4.539754, "PLUMB": 1.785714, "DISCBD": 2.45, "X": 43.369999, "Y": 33.459999, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1019.0, "ORIG_FID": 21 }, "geometry": { "type": "Point", "coordinates": [9.655244367498366, 12.462765864102987] } }, { "type": "Feature", "properties": { "OBJECTID": 23, "AREA": 0.24712, "PERIMETER": 2.147528, "COLUMBUS_": 24.0, "COLUMBUS_I": 12.0, "POLYID": 23.0, "NEIG": 12, "HOVAL": 47.733002, "INC": 21.155001, "CRIME": 20.048504, "OPEN": 0.532632, "PLUMB": 0.216763, "DISCBD": 4.78, "X": 49.610001, "Y": 32.650002, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1012.0, "ORIG_FID": 22 }, "geometry": { "type": "Point", "coordinates": [10.655119895935059, 12.247625542087841] } }, { "type": "Feature", "properties": { "OBJECTID": 24, "AREA": 0.192226, "PERIMETER": 2.240392, "COLUMBUS_": 25.0, "COLUMBUS_I": 35.0, "POLYID": 24.0, "NEIG": 35, "HOVAL": 53.200001, "INC": 14.236, "CRIME": 38.297871, "OPEN": 0.62622, "PLUMB": 18.811075, "DISCBD": 0.42, "X": 36.599998, "Y": 32.09, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1035.0, "ORIG_FID": 23 }, "geometry": { "type": "Point", "coordinates": [8.460766315460205, 12.25595634881094] } }, { "type": "Feature", "properties": { "OBJECTID": 25, "AREA": 0.17168, "PERIMETER": 1.666489, "COLUMBUS_": 26.0, "COLUMBUS_I": 32.0, "POLYID": 25.0, "NEIG": 32, "HOVAL": 17.9, "INC": 8.461, "CRIME": 61.299175, "OPEN": 0.0, "PLUMB": 6.529851, "DISCBD": 0.83, "X": 39.360001, "Y": 32.880001, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1032.0, "ORIG_FID": 24 }, "geometry": { "type": "Point", "coordinates": [8.938751825549428, 12.380509826386749] } }, { "type": "Feature", "properties": { "OBJECTID": 26, "AREA": 0.107298, "PERIMETER": 1.406823, "COLUMBUS_": 27.0, "COLUMBUS_I": 20.0, "POLYID": 26.0, "NEIG": 20, "HOVAL": 20.299999, "INC": 8.085, "CRIME": 40.969742, "OPEN": 1.238288, "PLUMB": 2.534275, "DISCBD": 1.5, "X": 41.130001, "Y": 33.139999, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1020.0, "ORIG_FID": 25 }, "geometry": { "type": "Point", "coordinates": [9.250921130765516, 12.413783516339139] } }, { "type": "Feature", "properties": { "OBJECTID": 27, "AREA": 0.137802, "PERIMETER": 1.780751, "COLUMBUS_": 28.0, "COLUMBUS_I": 21.0, "POLYID": 27.0, "NEIG": 21, "HOVAL": 34.099998, "INC": 10.822, "CRIME": 52.79443, "OPEN": 19.368099, "PLUMB": 1.483516, "DISCBD": 2.24, "X": 43.950001, "Y": 31.610001, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1021.0, "ORIG_FID": 26 }, "geometry": { "type": "Point", "coordinates": [9.737004148455057, 12.149692840219398] } }, { "type": "Feature", "properties": { "OBJECTID": 28, "AREA": 0.174773, "PERIMETER": 1.637148, "COLUMBUS_": 29.0, "COLUMBUS_I": 31.0, "POLYID": 28.0, "NEIG": 31, "HOVAL": 22.85, "INC": 7.856, "CRIME": 56.919785, "OPEN": 0.509305, "PLUMB": 3.001072, "DISCBD": 1.41, "X": 41.310001, "Y": 30.9, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1031.0, "ORIG_FID": 27 }, "geometry": { "type": "Point", "coordinates": [9.297975780128178, 11.977787924704431] } }, { "type": "Feature", "properties": { "OBJECTID": 29, "AREA": 0.085972, "PERIMETER": 1.312158, "COLUMBUS_": 30.0, "COLUMBUS_I": 33.0, "POLYID": 29.0, "NEIG": 33, "HOVAL": 32.5, "INC": 8.681, "CRIME": 60.750446, "OPEN": 0.0, "PLUMB": 2.645051, "DISCBD": 0.81, "X": 39.720001, "Y": 30.639999, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1033.0, "ORIG_FID": 28 }, "geometry": { "type": "Point", "coordinates": [8.977861502440565, 11.994012072407752] } }, { "type": "Feature", "properties": { "OBJECTID": 30, "AREA": 0.104355, "PERIMETER": 1.524931, "COLUMBUS_": 31.0, "COLUMBUS_I": 34.0, "POLYID": 30.0, "NEIG": 34, "HOVAL": 22.5, "INC": 13.906, "CRIME": 68.892044, "OPEN": 1.63878, "PLUMB": 15.600624, "DISCBD": 0.37, "X": 38.290001, "Y": 30.35, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1034.0, "ORIG_FID": 29 }, "geometry": { "type": "Point", "coordinates": [8.688719493192551, 11.938718355531325] } }, { "type": "Feature", "properties": { "OBJECTID": 31, "AREA": 0.117409, "PERIMETER": 1.716047, "COLUMBUS_": 32.0, "COLUMBUS_I": 45.0, "POLYID": 31.0, "NEIG": 45, "HOVAL": 31.799999, "INC": 16.940001, "CRIME": 17.677214, "OPEN": 3.936443, "PLUMB": 0.85389, "DISCBD": 3.78, "X": 27.940001, "Y": 29.85, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1045.0, "ORIG_FID": 30 }, "geometry": { "type": "Point", "coordinates": [6.892482325993742, 11.914150957988443] } }, { "type": "Feature", "properties": { "OBJECTID": 32, "AREA": 0.18558, "PERIMETER": 2.108951, "COLUMBUS_": 33.0, "COLUMBUS_I": 13.0, "POLYID": 32.0, "NEIG": 13, "HOVAL": 40.299999, "INC": 18.941999, "CRIME": 19.145592, "OPEN": 2.221022, "PLUMB": 0.255102, "DISCBD": 4.76, "X": 50.110001, "Y": 29.91, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1013.0, "ORIG_FID": 31 }, "geometry": { "type": "Point", "coordinates": [10.76378352110245, 11.844431047650394] } }, { "type": "Feature", "properties": { "OBJECTID": 33, "AREA": 0.087472, "PERIMETER": 1.507971, "COLUMBUS_": 34.0, "COLUMBUS_I": 22.0, "POLYID": 33.0, "NEIG": 22, "HOVAL": 23.6, "INC": 9.918, "CRIME": 41.968163, "OPEN": 0.0, "PLUMB": 1.023891, "DISCBD": 2.28, "X": 44.099998, "Y": 30.4, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1022.0, "ORIG_FID": 32 }, "geometry": { "type": "Point", "coordinates": [9.765288352966309, 11.935583349396865] } }, { "type": "Feature", "properties": { "OBJECTID": 34, "AREA": 0.226594, "PERIMETER": 2.519132, "COLUMBUS_": 35.0, "COLUMBUS_I": 44.0, "POLYID": 34.0, "NEIG": 44, "HOVAL": 28.450001, "INC": 14.948, "CRIME": 23.974028, "OPEN": 3.029087, "PLUMB": 0.386803, "DISCBD": 3.06, "X": 30.32, "Y": 28.26, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1044.0, "ORIG_FID": 33 }, "geometry": { "type": "Point", "coordinates": [7.15854012966156, 11.692810153517712] } }, { "type": "Feature", "properties": { "OBJECTID": 35, "AREA": 0.175453, "PERIMETER": 1.974937, "COLUMBUS_": 36.0, "COLUMBUS_I": 23.0, "POLYID": 35.0, "NEIG": 23, "HOVAL": 27.0, "INC": 12.814, "CRIME": 39.175053, "OPEN": 4.220401, "PLUMB": 0.633675, "DISCBD": 2.37, "X": 43.700001, "Y": 29.18, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1023.0, "ORIG_FID": 34 }, "geometry": { "type": "Point", "coordinates": [9.668248963690392, 11.692541207168869] } }, { "type": "Feature", "properties": { "OBJECTID": 36, "AREA": 0.17813, "PERIMETER": 1.790058, "COLUMBUS_": 37.0, "COLUMBUS_I": 46.0, "POLYID": 36.0, "NEIG": 46, "HOVAL": 36.299999, "INC": 18.739, "CRIME": 14.305556, "OPEN": 6.773331, "PLUMB": 0.332349, "DISCBD": 4.23, "X": 27.27, "Y": 28.209999, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1046.0, "ORIG_FID": 35 }, "geometry": { "type": "Point", "coordinates": [6.728837547719331, 11.634364976122034] } }, { "type": "Feature", "properties": { "OBJECTID": 37, "AREA": 0.121154, "PERIMETER": 1.402252, "COLUMBUS_": 38.0, "COLUMBUS_I": 30.0, "POLYID": 37.0, "NEIG": 30, "HOVAL": 43.299999, "INC": 17.017, "CRIME": 42.445076, "OPEN": 4.839273, "PLUMB": 1.230329, "DISCBD": 1.08, "X": 38.32, "Y": 28.82, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1030.0, "ORIG_FID": 36 }, "geometry": { "type": "Point", "coordinates": [8.912362855719715, 11.630310543083501] } }, { "type": "Feature", "properties": { "OBJECTID": 38, "AREA": 0.053881, "PERIMETER": 0.934509, "COLUMBUS_": 39.0, "COLUMBUS_I": 24.0, "POLYID": 38.0, "NEIG": 24, "HOVAL": 22.700001, "INC": 11.107, "CRIME": 53.710938, "OPEN": 0.0, "PLUMB": 0.8, "DISCBD": 1.58, "X": 41.040001, "Y": 28.780001, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1024.0, "ORIG_FID": 37 }, "geometry": { "type": "Point", "coordinates": [9.210527335403754, 11.659838850006437] } }, { "type": "Feature", "properties": { "OBJECTID": 39, "AREA": 0.174823, "PERIMETER": 2.335402, "COLUMBUS_": 40.0, "COLUMBUS_I": 47.0, "POLYID": 39.0, "NEIG": 47, "HOVAL": 39.599998, "INC": 18.476999, "CRIME": 19.100863, "OPEN": 0.0, "PLUMB": 0.314663, "DISCBD": 5.53, "X": 24.25, "Y": 26.690001, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1047.0, "ORIG_FID": 38 }, "geometry": { "type": "Point", "coordinates": [6.221942933898137, 11.402513578924118] } }, { "type": "Feature", "properties": { "OBJECTID": 40, "AREA": 0.302908, "PERIMETER": 2.285487, "COLUMBUS_": 41.0, "COLUMBUS_I": 16.0, "POLYID": 40.0, "NEIG": 16, "HOVAL": 61.950001, "INC": 29.833, "CRIME": 16.241299, "OPEN": 6.45131, "PLUMB": 0.132743, "DISCBD": 4.4, "X": 48.439999, "Y": 27.93, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1016.0, "ORIG_FID": 39 }, "geometry": { "type": "Point", "coordinates": [10.492492572016712, 11.507197282569432] } }, { "type": "Feature", "properties": { "OBJECTID": 41, "AREA": 0.137024, "PERIMETER": 1.525097, "COLUMBUS_": 42.0, "COLUMBUS_I": 14.0, "POLYID": 41.0, "NEIG": 14, "HOVAL": 42.099998, "INC": 22.207001, "CRIME": 18.905146, "OPEN": 0.293317, "PLUMB": 0.247036, "DISCBD": 5.33, "X": 51.240002, "Y": 27.799999, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1014.0, "ORIG_FID": 40 }, "geometry": { "type": "Point", "coordinates": [10.953587436376452, 11.479245868637376] } }, { "type": "Feature", "properties": { "OBJECTID": 42, "AREA": 0.266541, "PERIMETER": 2.176543, "COLUMBUS_": 43.0, "COLUMBUS_I": 49.0, "POLYID": 42.0, "NEIG": 49, "HOVAL": 44.333, "INC": 25.872999, "CRIME": 16.49189, "OPEN": 1.792993, "PLUMB": 0.134439, "DISCBD": 3.87, "X": 29.02, "Y": 26.58, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1049.0, "ORIG_FID": 41 }, "geometry": { "type": "Point", "coordinates": [7.110050905390898, 11.295438892865233] } }, { "type": "Feature", "properties": { "OBJECTID": 43, "AREA": 0.060241, "PERIMETER": 0.967793, "COLUMBUS_": 44.0, "COLUMBUS_I": 29.0, "POLYID": 43.0, "NEIG": 29, "HOVAL": 25.700001, "INC": 13.38, "CRIME": 36.663612, "OPEN": 0.0, "PLUMB": 0.589226, "DISCBD": 1.95, "X": 41.09, "Y": 27.49, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1029.0, "ORIG_FID": 42 }, "geometry": { "type": "Point", "coordinates": [9.214330280393483, 11.432771789368283] } }, { "type": "Feature", "properties": { "OBJECTID": 44, "AREA": 0.173337, "PERIMETER": 1.868044, "COLUMBUS_": 45.0, "COLUMBUS_I": 25.0, "POLYID": 44.0, "NEIG": 25, "HOVAL": 33.5, "INC": 16.961, "CRIME": 25.962263, "OPEN": 1.463993, "PLUMB": 0.329761, "DISCBD": 2.67, "X": 43.23, "Y": 27.309999, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1025.0, "ORIG_FID": 43 }, "geometry": { "type": "Point", "coordinates": [9.641904437882928, 11.391036212262494] } }, { "type": "Feature", "properties": { "OBJECTID": 45, "AREA": 0.256431, "PERIMETER": 2.193039, "COLUMBUS_": 46.0, "COLUMBUS_I": 28.0, "POLYID": 45.0, "NEIG": 28, "HOVAL": 27.733, "INC": 14.135, "CRIME": 29.028488, "OPEN": 1.006118, "PLUMB": 2.3912, "DISCBD": 2.13, "X": 39.32, "Y": 25.85, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1028.0, "ORIG_FID": 44 }, "geometry": { "type": "Point", "coordinates": [8.910340473827834, 11.148639078569651] } }, { "type": "Feature", "properties": { "OBJECTID": 46, "AREA": 0.124728, "PERIMETER": 1.841029, "COLUMBUS_": 47.0, "COLUMBUS_I": 48.0, "POLYID": 46.0, "NEIG": 48, "HOVAL": 76.099998, "INC": 18.323999, "CRIME": 16.530533, "OPEN": 9.683953, "PLUMB": 0.424628, "DISCBD": 5.27, "X": 25.469999, "Y": 25.709999, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1048.0, "ORIG_FID": 45 }, "geometry": { "type": "Point", "coordinates": [6.423385031583335, 11.219238093398321] } }, { "type": "Feature", "properties": { "OBJECTID": 47, "AREA": 0.245249, "PERIMETER": 2.079986, "COLUMBUS_": 48.0, "COLUMBUS_I": 15.0, "POLYID": 47.0, "NEIG": 15, "HOVAL": 42.5, "INC": 18.950001, "CRIME": 27.822861, "OPEN": 0.0, "PLUMB": 0.268817, "DISCBD": 5.57, "X": 50.889999, "Y": 25.24, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1015.0, "ORIG_FID": 46 }, "geometry": { "type": "Point", "coordinates": [10.935302271773978, 11.010030663664558] } }, { "type": "Feature", "properties": { "OBJECTID": 48, "AREA": 0.069762, "PERIMETER": 1.102032, "COLUMBUS_": 49.0, "COLUMBUS_I": 27.0, "POLYID": 48.0, "NEIG": 27, "HOVAL": 26.799999, "INC": 11.813, "CRIME": 26.645266, "OPEN": 4.884389, "PLUMB": 1.034807, "DISCBD": 2.33, "X": 41.209999, "Y": 25.9, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1027.0, "ORIG_FID": 47 }, "geometry": { "type": "Point", "coordinates": [9.251957402833794, 11.181253873699426] } }, { "type": "Feature", "properties": { "OBJECTID": 49, "AREA": 0.205964, "PERIMETER": 2.199169, "COLUMBUS_": 50.0, "COLUMBUS_I": 26.0, "POLYID": 49.0, "NEIG": 26, "HOVAL": 35.799999, "INC": 18.796, "CRIME": 22.541491, "OPEN": 0.259826, "PLUMB": 0.901442, "DISCBD": 3.03, "X": 42.669998, "Y": 24.959999, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1026.0, "ORIG_FID": 48 }, "geometry": { "type": "Point", "coordinates": [9.610312938690186, 11.030196383904508] } } ] } ================================================ FILE: packages/turf-distance-weight/test.ts ================================================ import { point } from "@turf/helpers"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { distanceWeight, pNormDistance } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); test("pNormDistance function", (t) => { t.equal(pNormDistance(point([2, 0]), point([0, 0]), 2), 2, "2-norm is ok"); t.equal(pNormDistance(point([1, 1]), point([0, 0]), 1), 2, "1-norm is ok"); t.end(); }); test("turf-distance-weight", (t) => { const columbusPath = path.join(__dirname, "test", "in", "point.json"); const columbusJson = loadJsonFileSync(columbusPath); let result = distanceWeight(columbusJson, { threshold: 1, binary: false, p: 1, alpha: 1, standardization: false, }); t.equal(result[0][1], 0.8320121090670778, "base arguments"); // test threshold result = distanceWeight(columbusJson, { threshold: 2, binary: false, p: 1, alpha: 1, }); t.equal(result[0][1], 0.8320121090670778, "change threshold"); // test binary result = distanceWeight(columbusJson, { threshold: 1, binary: true, p: 1, alpha: 1, }); t.equal(result[0][1], 1, "change binary"); // test p result = distanceWeight(columbusJson, { threshold: 1, binary: false, p: 2, alpha: 1, }); t.equal(result[0][1], 0.5987182558007202, "change p"); // test alpha result = distanceWeight(columbusJson, { threshold: 1, binary: false, p: 1, alpha: -1, }); t.equal(result[0][1], 1.201905584188293, "change alpha"); result = distanceWeight(columbusJson, { threshold: 1, binary: false, p: 1, alpha: 1, standardization: true, }); t.equal(result[0][1], 0.5311565480348293, "standardization 1"); result = distanceWeight(columbusJson, { threshold: 1, binary: true, p: 1, alpha: 1, standardization: true, }); t.equal(result[0][1], 0.5, "standardization 2"); // test default result = distanceWeight(columbusJson); t.equal(result[0][1], 1.6702346893742355, "default arguments"); t.end(); }); ================================================ FILE: packages/turf-distance-weight/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-ellipse/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-ellipse/README.md ================================================ # @turf/ellipse ## ellipse Takes a [Point][1] and calculates the ellipse polygon given two semi-axes expressed in variable units and steps for precision. ### Parameters * `center` **[Coord][2]** center point * `xSemiAxis` **[number][3]** semi (major) axis of the ellipse along the x-axis * `ySemiAxis` **[number][3]** semi (minor) axis of the ellipse along the y-axis * `options` **[Object][4]** Optional parameters (optional, default `{}`) * `options.angle` **[number][3]** angle of rotation in decimal degrees, positive clockwise (optional, default `0`) * `options.pivot` **[Coord][2]** point around which any rotation will be performed (optional, default `center`) * `options.steps` **[number][3]** number of steps (optional, default `64`) * `options.units` **Units** unit of measurement for axes. Supports all valid Turf [Units][5] (optional, default `'kilometers'`) * `options.properties` **[Object][4]** properties (optional, default `{}`) ### Examples ```javascript var center = [-75, 40]; var xSemiAxis = 5; var ySemiAxis = 2; var ellipse = turf.ellipse(center, xSemiAxis, ySemiAxis); //addToMap var addToMap = [turf.point(center), ellipse] ``` Returns **[Feature][6]<[Polygon][7]>** ellipse polygon [1]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.1 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [5]: https://turfjs.org/docs/api/types/Units [6]: https://tools.ietf.org/html/rfc7946#section-3.2 [7]: https://tools.ietf.org/html/rfc7946#section-3.1.6 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/ellipse ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-ellipse/bench.ts ================================================ import Benchmark from "benchmark"; import { ellipse } from "./index.js"; /** * Benchmark Results * * turf-ellipse - 8 steps x 1,691,641 ops/sec ±1.88% (84 runs sampled) * turf-ellipse - 64 steps x 179,814 ops/sec ±2.23% (85 runs sampled) * turf-ellipse - 256 steps x 45,268 ops/sec ±2.33% (87 runs sampled) * */ const suite = new Benchmark.Suite("turf-ellipse"); const center = [-73.9975, 40.730833]; const xSemiAxis = 50; const ySemiAxis = 10; suite .add("turf-ellipse - 8 steps", () => ellipse(center, xSemiAxis, ySemiAxis, { steps: 8 }) ) .add("turf-ellipse - 64 steps", () => ellipse(center, xSemiAxis, ySemiAxis, { steps: 64 }) ) .add("turf-ellipse - 256 steps", () => ellipse(center, xSemiAxis, ySemiAxis, { steps: 256 }) ) .on("cycle", (e) => console.log(String(e.target))) .run(); ================================================ FILE: packages/turf-ellipse/index.ts ================================================ import { polygon, isObject, isNumber, Coord, Units, point, radiansToDegrees, } from "@turf/helpers"; import { destination } from "@turf/destination"; import { transformRotate } from "@turf/transform-rotate"; import { getCoord } from "@turf/invariant"; import { GeoJsonProperties, Feature, Polygon, Position } from "geojson"; /** * Takes a {@link Point} and calculates the ellipse polygon given two semi-axes expressed in variable units and steps for precision. * * @param {Coord} center center point * @param {number} xSemiAxis semi (major) axis of the ellipse along the x-axis * @param {number} ySemiAxis semi (minor) axis of the ellipse along the y-axis * @param {Object} [options={}] Optional parameters * @param {number} [options.angle=0] angle of rotation in decimal degrees, positive clockwise * @param {Coord} [options.pivot=center] point around which any rotation will be performed * @param {number} [options.steps=64] number of steps * @param {Units} [options.units='kilometers'] unit of measurement for axes. Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @param {Object} [options.properties={}] properties * @returns {Feature} ellipse polygon * @example * var center = [-75, 40]; * var xSemiAxis = 5; * var ySemiAxis = 2; * var ellipse = turf.ellipse(center, xSemiAxis, ySemiAxis); * * //addToMap * var addToMap = [turf.point(center), ellipse] */ function ellipse( center: Coord, xSemiAxis: number, ySemiAxis: number, options: { steps?: number; units?: Units; angle?: number; pivot?: Coord; properties?: GeoJsonProperties; } ): Feature { // Optional params options = options || {}; let steps = options.steps || 64; const units = options.units || "kilometers"; let angle = options.angle || 0; const pivot = options.pivot || center; const properties = options.properties || {}; // validation if (!center) throw new Error("center is required"); if (!xSemiAxis) throw new Error("xSemiAxis is required"); if (!ySemiAxis) throw new Error("ySemiAxis is required"); if (!isObject(options)) throw new Error("options must be an object"); if (!isNumber(steps)) throw new Error("steps must be a number"); if (!isNumber(angle)) throw new Error("angle must be a number"); const centerCoords = getCoord( transformRotate(point(getCoord(center)), angle, { pivot }) ); angle = -90 + angle; // Divide steps by 4 for one quadrant steps = Math.ceil(steps / 4); let quadrantParameters = []; let parameters = []; const a = xSemiAxis; const b = ySemiAxis; // Gradient x intersect const c = b; // Gradient of line const m = (a - b) / (Math.PI / 2); // Area under line const A = ((a + b) * Math.PI) / 4; // Weighting function const v = 0.5; const k = steps; let w = 0; let x = 0; for (let i = 0; i < steps; i++) { x += w; if (m === 0) { // It's a circle, so use simplified c*w - A/k == 0 w = A / k / c; } else { // Otherwise, use full (v*m)*w^2 + (m*x+c)*w - A/k == 0 // Solve as quadratic ax^2 + bx + c = 0 w = (-(m * x + c) + Math.sqrt(Math.pow(m * x + c, 2) - 4 * (v * m) * -(A / k))) / (2 * (v * m)); } if (x != 0) { // easier to add it later to avoid having twice the same point quadrantParameters.push(x); } } //NE parameters.push(0); for (let i = 0; i < quadrantParameters.length; i++) { parameters.push(quadrantParameters[i]); } //NW parameters.push(Math.PI / 2); for (let i = 0; i < quadrantParameters.length; i++) { parameters.push( Math.PI - quadrantParameters[quadrantParameters.length - i - 1] ); } //SW parameters.push(Math.PI); for (let i = 0; i < quadrantParameters.length; i++) { parameters.push(Math.PI + quadrantParameters[i]); } //SE parameters.push((3 * Math.PI) / 2); for (let i = 0; i < quadrantParameters.length; i++) { parameters.push( 2 * Math.PI - quadrantParameters[quadrantParameters.length - i - 1] ); } parameters.push(0); // We can now construct the ellipse const coords: Position[] = []; for (const param of parameters) { const theta = Math.atan2(b * Math.sin(param), a * Math.cos(param)); const r = Math.sqrt( (Math.pow(a, 2) * Math.pow(b, 2)) / (Math.pow(a * Math.sin(theta), 2) + Math.pow(b * Math.cos(theta), 2)) ); coords.push( destination(centerCoords, r, angle + radiansToDegrees(theta), { units: units, }).geometry.coordinates ); } return polygon([coords], properties); } export { ellipse }; export default ellipse; ================================================ FILE: packages/turf-ellipse/package.json ================================================ { "name": "@turf/ellipse", "version": "7.3.4", "description": "Takes a Point and calculates the ellipse polygon given two semi-axes expressed in variable units and steps for precision.", "author": "Turf Authors", "contributors": [ "Moacir P. de Sá Pereira <@muziejus>", "Pavel Rozvora <@prozvora>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "ellipse" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@placemarkio/check-geojson": "^0.1.12", "@turf/area": "workspace:*", "@turf/bbox-polygon": "workspace:*", "@turf/circle": "workspace:*", "@turf/intersect": "workspace:*", "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/destination": "workspace:*", "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/transform-rotate": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-ellipse/test/in/anti-meridian-degrees.json ================================================ { "type": "Feature", "properties": { "units": "degrees", "xSemiAxis": 50, "ySemiAxis": 10 }, "geometry": { "type": "Point", "coordinates": [-180, -17] } } ================================================ FILE: packages/turf-ellipse/test/in/anti-meridian.json ================================================ { "type": "Feature", "properties": { "xSemiAxis": 50, "ySemiAxis": 10 }, "geometry": { "type": "Point", "coordinates": [-180, -17] } } ================================================ FILE: packages/turf-ellipse/test/in/northern-latitudes-degrees.json ================================================ { "type": "Feature", "properties": { "units": "degrees", "xSemiAxis": 5, "ySemiAxis": 1 }, "geometry": { "type": "Point", "coordinates": [-94, 74] } } ================================================ FILE: packages/turf-ellipse/test/in/northern-latitudes.json ================================================ { "type": "Feature", "properties": { "xSemiAxis": 50, "ySemiAxis": 10, "steps": 128 }, "geometry": { "type": "Point", "coordinates": [-94, 74] } } ================================================ FILE: packages/turf-ellipse/test/in/rotation-degrees.json ================================================ { "type": "Feature", "properties": { "units": "degrees", "xSemiAxis": 0.125, "ySemiAxis": 0.025, "angle": 30 }, "geometry": { "type": "Point", "coordinates": [-73.9975, 40.730833] } } ================================================ FILE: packages/turf-ellipse/test/in/rotation.json ================================================ { "type": "Feature", "properties": { "xSemiAxis": 5, "ySemiAxis": 1, "angle": 30 }, "geometry": { "type": "Point", "coordinates": [-73.9975, 40.730833] } } ================================================ FILE: packages/turf-ellipse/test/in/simple-degrees.json ================================================ { "type": "Feature", "properties": { "units": "degrees", "xSemiAxis": 5, "ySemiAxis": 1 }, "geometry": { "type": "Point", "coordinates": [-73.9975, 40.730833] } } ================================================ FILE: packages/turf-ellipse/test/in/simple-with-elevation.json ================================================ { "type": "Feature", "properties": { "xSemiAxis": 5, "ySemiAxis": 1 }, "geometry": { "type": "Point", "coordinates": [-73.9975, 40.730833, 120] } } ================================================ FILE: packages/turf-ellipse/test/in/simple.json ================================================ { "type": "Feature", "properties": { "xSemiAxis": 5, "ySemiAxis": 1 }, "geometry": { "type": "Point", "coordinates": [-73.9975, 40.730833] } } ================================================ FILE: packages/turf-ellipse/test/out/anti-meridian-degrees.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "units": "degrees", "xSemiAxis": 50, "ySemiAxis": 10 }, "geometry": { "type": "Point", "coordinates": [-180, -17] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#F00", "fill": "#F00", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-180, 33], [-185.122556, 32.759336], [-190.154864, 32.043494], [-195.015087, 30.870189], [-199.636266, 29.266686], [-203.969686, 27.267013], [-207.985062, 24.909007], [-211.66833, 22.231692], [-215.01814, 19.273248], [-218.042031, 16.069658], [-220.752936, 12.653961], [-223.166311, 9.055964], [-225.297939, 5.302282], [-227.162325, 1.416582], [-228.771529, -2.580054], [-230.13428, -6.668708], [-231.255224, -10.832176], [-232.134166, -15.054488], [-232.765193, -19.320412], [-233.135518, -23.6149], [-233.223906, -27.92245], [-232.998485, -32.22632], [-232.413665, -36.507505], [-231.405877, -40.743336], [-229.887782, -44.905495], [-227.740782, -48.957147], [-224.806435, -52.848766], [-220.879642, -56.512237], [-215.712322, -59.853159], [-209.048076, -62.742919], [-200.722424, -65.016396], [-190.848503, -66.488112], [-180, -67], [-169.151497, -66.488112], [-159.277576, -65.016396], [-150.951924, -62.742919], [-144.287678, -59.853159], [-139.120358, -56.512237], [-135.193565, -52.848766], [-132.259218, -48.957147], [-130.112218, -44.905495], [-128.594123, -40.743336], [-127.586335, -36.507505], [-127.001515, -32.22632], [-126.776094, -27.92245], [-126.864482, -23.6149], [-127.234807, -19.320412], [-127.865834, -15.054488], [-128.744776, -10.832176], [-129.86572, -6.668708], [-131.228471, -2.580054], [-132.837675, 1.416582], [-134.702061, 5.302282], [-136.833689, 9.055964], [-139.247064, 12.653961], [-141.957969, 16.069658], [-144.98186, 19.273248], [-148.33167, 22.231692], [-152.014938, 24.909007], [-156.030314, 27.267013], [-160.363734, 29.266686], [-164.984913, 30.870189], [-169.845136, 32.043494], [-174.877444, 32.759336], [-180, 33] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#00F", "fill": "#00F", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-231.255224, -10.832176], [-229.537115, -9.171208], [-226.785333, -8.318289], [-223.616357, -7.809288], [-220.237616, -7.490076], [-216.750783, -7.287067], [-213.215132, -7.158857], [-209.668909, -7.079876], [-206.138464, -7.033411], [-202.642783, -7.008151], [-199.195982, -6.996301], [-195.808785, -6.992459], [-192.489461, -6.992913], [-189.24444, -6.99517], [-186.078735, -6.997636], [-182.996251, -6.999388], [-180, -7], [-177.003749, -6.999388], [-173.921265, -6.997636], [-170.75556, -6.99517], [-167.510539, -6.992913], [-164.191215, -6.992459], [-160.804018, -6.996301], [-157.357217, -7.008151], [-153.861536, -7.033411], [-150.331091, -7.079876], [-146.784868, -7.158857], [-143.249217, -7.287067], [-139.762384, -7.490076], [-136.383643, -7.809288], [-133.214667, -8.318289], [-130.462885, -9.171208], [-128.744776, -10.832176], [-129.549848, -13.068509], [-131.704315, -15.006667], [-134.457899, -16.764622], [-137.558403, -18.370546], [-140.881596, -19.832788], [-144.353404, -21.153602], [-147.923695, -22.333485], [-151.555203, -23.372894], [-155.218208, -24.273002], [-158.887798, -25.036029], [-162.542409, -25.665364], [-166.163061, -26.16555], [-169.732965, -26.542201], [-173.237347, -26.80186], [-176.663352, -26.951832], [-180, -27], [-183.336648, -26.951832], [-186.762653, -26.80186], [-190.267035, -26.542201], [-193.836939, -26.16555], [-197.457591, -25.665364], [-201.112202, -25.036029], [-204.781792, -24.273002], [-208.444797, -23.372894], [-212.076305, -22.333485], [-215.646596, -21.153602], [-219.118404, -19.832788], [-222.441597, -18.370546], [-225.542101, -16.764622], [-228.295685, -15.006667], [-230.450152, -13.068509], [-231.255224, -10.832176] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#0F0", "fill": "#0F0", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-180, 33], [-177.649663, 31.703957], [-176.075902, 29.197049], [-174.899856, 26.193732], [-173.977415, 22.936144], [-173.23134, 19.54281], [-172.614036, 16.082418], [-172.093927, 12.598902], [-171.649083, 9.122233], [-171.263795, 5.673775], [-170.926553, 2.269246], [-170.628782, -1.079531], [-170.364019, -4.363529], [-170.127356, -7.575789], [-169.915059, -10.710919], [-169.724292, -13.764747], [-169.55293, -16.734064], [-169.394938, -19.704191], [-169.246345, -22.760568], [-169.109071, -25.900205], [-168.985952, -29.119223], [-168.881153, -32.41262], [-168.800816, -35.773947], [-168.754065, -39.194852], [-168.754629, -42.664405], [-168.823498, -46.168062], [-168.993438, -49.685982], [-169.316859, -53.190124], [-169.880034, -56.638822], [-170.829705, -59.965537], [-172.425015, -63.051999], [-175.146105, -65.648285], [-180, -67], [-184.853895, -65.648285], [-187.574985, -63.051999], [-189.170295, -59.965537], [-190.119966, -56.638822], [-190.683141, -53.190124], [-191.006562, -49.685982], [-191.176502, -46.168062], [-191.245371, -42.664405], [-191.245935, -39.194852], [-191.199184, -35.773947], [-191.118847, -32.41262], [-191.014048, -29.119223], [-190.890929, -25.900205], [-190.753655, -22.760568], [-190.605062, -19.704191], [-190.44707, -16.734064], [-190.275708, -13.764747], [-190.084941, -10.710919], [-189.872644, -7.575789], [-189.635981, -4.363529], [-189.371218, -1.079531], [-189.073447, 2.269246], [-188.736205, 5.673775], [-188.350917, 9.122233], [-187.906073, 12.598902], [-187.385964, 16.082418], [-186.76866, 19.54281], [-186.022585, 22.936144], [-185.100144, 26.193732], [-183.924098, 29.197049], [-182.350337, 31.703957], [-180, 33] ] ] } } ] } ================================================ FILE: packages/turf-ellipse/test/out/anti-meridian.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "xSemiAxis": 50, "ySemiAxis": 10 }, "geometry": { "type": "Point", "coordinates": [-180, -17] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#F00", "fill": "#F00", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-180, -16.55034], [-180.045979, -16.5525], [-180.091519, -16.55896], [-180.136183, -16.569657], [-180.179545, -16.58449], [-180.221189, -16.603316], [-180.260716, -16.625956], [-180.297747, -16.652193], [-180.331926, -16.681775], [-180.362924, -16.714418], [-180.390443, -16.749812], [-180.414217, -16.787614], [-180.434016, -16.827464], [-180.449646, -16.868978], [-180.460955, -16.911758], [-180.467831, -16.955392], [-180.470205, -16.999461], [-180.468051, -17.04354], [-180.461387, -17.087204], [-180.450273, -17.130034], [-180.434813, -17.171615], [-180.415155, -17.211547], [-180.391486, -17.249443], [-180.364031, -17.284937], [-180.333054, -17.317686], [-180.298853, -17.347373], [-180.261758, -17.373711], [-180.222127, -17.396444], [-180.180343, -17.415352], [-180.13681, -17.430252], [-180.091951, -17.440999], [-180.046199, -17.44749], [-180, -17.44966], [-179.953801, -17.44749], [-179.908049, -17.440999], [-179.86319, -17.430252], [-179.819657, -17.415352], [-179.777873, -17.396444], [-179.738242, -17.373711], [-179.701147, -17.347373], [-179.666946, -17.317686], [-179.635969, -17.284937], [-179.608514, -17.249443], [-179.584845, -17.211547], [-179.565187, -17.171615], [-179.549727, -17.130034], [-179.538613, -17.087204], [-179.531949, -17.04354], [-179.529795, -16.999461], [-179.532169, -16.955392], [-179.539045, -16.911758], [-179.550354, -16.868978], [-179.565984, -16.827464], [-179.585783, -16.787614], [-179.609557, -16.749812], [-179.637076, -16.714418], [-179.668074, -16.681775], [-179.702253, -16.652193], [-179.739284, -16.625956], [-179.778811, -16.603316], [-179.820455, -16.58449], [-179.863817, -16.569657], [-179.908481, -16.55896], [-179.954021, -16.5525], [-180, -16.55034] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#00F", "fill": "#00F", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.470205, -16.999461], [-180.457964, -16.979142], [-180.434333, -16.965124], [-180.406011, -16.954269], [-180.375269, -16.945497], [-180.343224, -16.938267], [-180.310525, -16.932253], [-180.277591, -16.927239], [-180.244707, -16.923072], [-180.21208, -16.919634], [-180.17986, -16.916835], [-180.148164, -16.9146], [-180.117078, -16.91287], [-180.086671, -16.911592], [-180.056997, -16.910724], [-180.028096, -16.910227], [-180, -16.910068], [-179.971904, -16.910227], [-179.943003, -16.910724], [-179.913329, -16.911592], [-179.882922, -16.91287], [-179.851836, -16.9146], [-179.82014, -16.916835], [-179.78792, -16.919634], [-179.755293, -16.923072], [-179.722409, -16.927239], [-179.689475, -16.932253], [-179.656776, -16.938267], [-179.624731, -16.945497], [-179.593989, -16.954269], [-179.565667, -16.965124], [-179.542036, -16.979142], [-179.529795, -16.999461], [-179.541936, -17.019834], [-179.565507, -17.033955], [-179.593793, -17.044926], [-179.624514, -17.053815], [-179.656551, -17.061158], [-179.689251, -17.067276], [-179.722194, -17.072384], [-179.755092, -17.076635], [-179.787739, -17.080146], [-179.81998, -17.083007], [-179.851701, -17.085293], [-179.882813, -17.087063], [-179.913247, -17.088371], [-179.942949, -17.08926], [-179.971877, -17.089769], [-180, -17.089932], [-180.028123, -17.089769], [-180.057051, -17.08926], [-180.086753, -17.088371], [-180.117187, -17.087063], [-180.148299, -17.085293], [-180.18002, -17.083007], [-180.212261, -17.080146], [-180.244908, -17.076635], [-180.277806, -17.072384], [-180.310749, -17.067276], [-180.343449, -17.061158], [-180.375486, -17.053815], [-180.406207, -17.044926], [-180.434493, -17.033955], [-180.458064, -17.019834], [-180.470205, -16.999461] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#0F0", "fill": "#0F0", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-180, -16.55034], [-179.978774, -16.561997], [-179.964091, -16.584565], [-179.952697, -16.61163], [-179.943474, -16.641017], [-179.935858, -16.671656], [-179.929514, -16.702924], [-179.924218, -16.734422], [-179.91981, -16.765874], [-179.916167, -16.797083], [-179.913197, -16.827904], [-179.910821, -16.858226], [-179.908978, -16.887966], [-179.907613, -16.917056], [-179.90668, -16.945447], [-179.90614, -16.973098], [-179.905959, -16.999978], [-179.906114, -17.026859], [-179.906626, -17.054511], [-179.907531, -17.082902], [-179.908869, -17.111994], [-179.910686, -17.141735], [-179.913037, -17.172059], [-179.915986, -17.202882], [-179.919609, -17.234095], [-179.924003, -17.26555], [-179.92929, -17.297052], [-179.935633, -17.328324], [-179.943257, -17.358968], [-179.952501, -17.388359], [-179.963931, -17.415429], [-179.978674, -17.438], [-180, -17.44966], [-180.021326, -17.438], [-180.036069, -17.415429], [-180.047499, -17.388359], [-180.056743, -17.358968], [-180.064367, -17.328324], [-180.07071, -17.297052], [-180.075997, -17.26555], [-180.080391, -17.234095], [-180.084014, -17.202882], [-180.086963, -17.172059], [-180.089314, -17.141735], [-180.091131, -17.111994], [-180.092469, -17.082902], [-180.093374, -17.054511], [-180.093886, -17.026859], [-180.094041, -16.999978], [-180.09386, -16.973098], [-180.09332, -16.945447], [-180.092387, -16.917056], [-180.091022, -16.887966], [-180.089179, -16.858226], [-180.086803, -16.827904], [-180.083833, -16.797083], [-180.08019, -16.765874], [-180.075782, -16.734422], [-180.070486, -16.702924], [-180.064142, -16.671656], [-180.056526, -16.641017], [-180.047303, -16.61163], [-180.035909, -16.584565], [-180.021226, -16.561997], [-180, -16.55034] ] ] } } ] } ================================================ FILE: packages/turf-ellipse/test/out/northern-latitudes-degrees.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "units": "degrees", "xSemiAxis": 5, "ySemiAxis": 1 }, "geometry": { "type": "Point", "coordinates": [-94, 74] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#F00", "fill": "#F00", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-94, 79], [-96.55809, 78.965318], [-99.049871, 78.862243], [-101.414398, 78.693594], [-103.60042, 78.46379], [-105.568992, 78.178486], [-107.294206, 77.844169], [-108.762366, 77.467777], [-109.970133, 77.056367], [-110.922237, 76.616871], [-111.629174, 76.15592], [-112.105192, 75.679744], [-112.366654, 75.194117], [-112.430825, 74.704344], [-112.315011, 74.215272], [-112.035994, 73.731307], [-111.609696, 73.256451], [-111.051001, 72.794332], [-110.373684, 72.348231], [-109.59042, 71.92112], [-108.712834, 71.51568], [-107.751577, 71.134329], [-106.71642, 70.779237], [-105.616343, 70.452347], [-104.459636, 70.155384], [-103.253983, 69.889871], [-102.006554, 69.657131], [-100.72408, 69.458303], [-99.412931, 69.294338], [-98.079181, 69.166013], [-96.728676, 69.073925], [-95.367094, 69.018503], [-94, 69], [-92.632906, 69.018503], [-91.271324, 69.073925], [-89.920819, 69.166013], [-88.587069, 69.294338], [-87.27592, 69.458303], [-85.993446, 69.657131], [-84.746017, 69.889871], [-83.540364, 70.155384], [-82.383657, 70.452347], [-81.28358, 70.779237], [-80.248423, 71.134329], [-79.287166, 71.51568], [-78.40958, 71.92112], [-77.626316, 72.348231], [-76.948999, 72.794332], [-76.390304, 73.256451], [-75.964006, 73.731307], [-75.684989, 74.215272], [-75.569175, 74.704344], [-75.633346, 75.194117], [-75.894808, 75.679744], [-76.370826, 76.15592], [-77.077763, 76.616871], [-78.029867, 77.056367], [-79.237634, 77.467777], [-80.705794, 77.844169], [-82.431008, 78.178486], [-84.39958, 78.46379], [-86.585602, 78.693594], [-88.950129, 78.862243], [-91.44191, 78.965318], [-94, 79] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#00F", "fill": "#00F", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-111.609696, 73.256451], [-111.404311, 73.510243], [-110.70689, 73.730954], [-109.783251, 73.928702], [-108.725348, 74.106339], [-107.580194, 74.2652], [-106.376848, 74.406176], [-105.135467, 74.53002], [-103.871136, 74.637455], [-102.595732, 74.729222], [-101.318919, 74.806086], [-100.04873, 74.86884], [-98.79192, 74.918302], [-97.554199, 74.955305], [-96.340385, 74.980693], [-95.154529, 74.995312], [-94, 75], [-92.845471, 74.995312], [-91.659615, 74.980693], [-90.445801, 74.955305], [-89.20808, 74.918302], [-87.95127, 74.86884], [-86.681081, 74.806086], [-85.404268, 74.729222], [-84.128864, 74.637455], [-82.864533, 74.53002], [-81.623152, 74.406176], [-80.419806, 74.2652], [-79.274652, 74.106339], [-78.216749, 73.928702], [-77.29311, 73.730954], [-76.595689, 73.510243], [-76.390304, 73.256451], [-77.042091, 73.076913], [-78.015528, 72.994911], [-79.115088, 72.954647], [-80.276835, 72.936876], [-81.469995, 72.932154], [-82.676747, 72.935073], [-83.885546, 72.942272], [-85.088332, 72.951565], [-86.279178, 72.9615], [-87.45357, 72.971111], [-88.607982, 72.979764], [-89.73962, 72.987065], [-90.846251, 72.992792], [-91.92609, 72.996848], [-92.977713, 72.999229], [-94, 73], [-95.022287, 72.999229], [-96.07391, 72.996848], [-97.153749, 72.992792], [-98.26038, 72.987065], [-99.392018, 72.979764], [-100.54643, 72.971111], [-101.720822, 72.9615], [-102.911668, 72.951565], [-104.114454, 72.942272], [-105.323253, 72.935073], [-106.530005, 72.932154], [-107.723165, 72.936876], [-108.884912, 72.954647], [-109.984472, 72.994911], [-110.957909, 73.076913], [-111.609696, 73.256451] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#0F0", "fill": "#0F0", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-94, 79], [-92.829533, 78.868122], [-92.063446, 78.613133], [-91.514439, 78.307836], [-91.1101, 77.976934], [-90.810522, 77.632522], [-90.590161, 77.281607], [-90.431305, 76.928659], [-90.321068, 76.576722], [-90.249767, 76.227955], [-90.209956, 75.883941], [-90.195813, 75.545863], [-90.202719, 75.21462], [-90.226974, 74.890901], [-90.265581, 74.575235], [-90.316097, 74.26803], [-90.376515, 73.969595], [-90.447416, 73.671357], [-90.530789, 73.364764], [-90.627066, 73.050162], [-90.736781, 72.727995], [-90.860599, 72.398831], [-90.999361, 72.063398], [-91.154149, 71.722628], [-91.326376, 71.377739], [-91.517927, 71.030336], [-91.731383, 70.682588], [-91.970405, 70.337519], [-92.240431, 69.999537], [-92.550102, 69.675491], [-92.914615, 69.377145], [-93.365745, 69.128445], [-94, 69], [-94.634255, 69.128445], [-95.085385, 69.377145], [-95.449898, 69.675491], [-95.759569, 69.999537], [-96.029595, 70.337519], [-96.268617, 70.682588], [-96.482073, 71.030336], [-96.673624, 71.377739], [-96.845851, 71.722628], [-97.000639, 72.063398], [-97.139401, 72.398831], [-97.263219, 72.727995], [-97.372934, 73.050162], [-97.469211, 73.364764], [-97.552584, 73.671357], [-97.623485, 73.969595], [-97.683903, 74.26803], [-97.734419, 74.575235], [-97.773026, 74.890901], [-97.797281, 75.21462], [-97.804187, 75.545863], [-97.790044, 75.883941], [-97.750233, 76.227955], [-97.678932, 76.576722], [-97.568695, 76.928659], [-97.409839, 77.281607], [-97.189478, 77.632522], [-96.8899, 77.976934], [-96.485561, 78.307836], [-95.936554, 78.613133], [-95.170467, 78.868122], [-94, 79] ] ] } } ] } ================================================ FILE: packages/turf-ellipse/test/out/northern-latitudes.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "xSemiAxis": 50, "ySemiAxis": 10, "steps": 128 }, "geometry": { "type": "Point", "coordinates": [-94, 74] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#F00", "fill": "#F00", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-94, 74.44966], [-94.082298, 74.449103], [-94.16438, 74.447434], [-94.246033, 74.444657], [-94.327042, 74.440779], [-94.407197, 74.435811], [-94.48629, 74.429765], [-94.564115, 74.422658], [-94.640472, 74.414507], [-94.715164, 74.405334], [-94.788, 74.395163], [-94.858795, 74.38402], [-94.927372, 74.371934], [-94.993557, 74.358937], [-95.057187, 74.345061], [-95.118104, 74.330342], [-95.176161, 74.314819], [-95.231218, 74.29853], [-95.283143, 74.281518], [-95.331815, 74.263825], [-95.377123, 74.245497], [-95.418962, 74.226579], [-95.45724, 74.207119], [-95.491875, 74.187166], [-95.522794, 74.166769], [-95.549933, 74.14598], [-95.573241, 74.124849], [-95.592674, 74.10343], [-95.608201, 74.081774], [-95.619798, 74.059934], [-95.627454, 74.037964], [-95.631166, 74.015918], [-95.63094, 73.993848], [-95.626793, 73.971807], [-95.61875, 73.949849], [-95.606847, 73.928026], [-95.591127, 73.90639], [-95.571641, 73.884992], [-95.548451, 73.863882], [-95.521625, 73.843111], [-95.491239, 73.822727], [-95.457378, 73.802777], [-95.420132, 73.783309], [-95.379599, 73.764366], [-95.335884, 73.745994], [-95.289098, 73.728234], [-95.239358, 73.711126], [-95.186787, 73.694711], [-95.131512, 73.679026], [-95.073666, 73.664105], [-95.013388, 73.649984], [-94.95082, 73.636694], [-94.886109, 73.624265], [-94.819404, 73.612726], [-94.750859, 73.602101], [-94.680632, 73.592415], [-94.608882, 73.58369], [-94.535773, 73.575945], [-94.461468, 73.569197], [-94.386135, 73.563462], [-94.309943, 73.558752], [-94.233062, 73.555078], [-94.155663, 73.552448], [-94.077918, 73.550867], [-94, 73.55034], [-93.922082, 73.550867], [-93.844337, 73.552448], [-93.766938, 73.555078], [-93.690057, 73.558752], [-93.613865, 73.563462], [-93.538532, 73.569197], [-93.464227, 73.575945], [-93.391118, 73.58369], [-93.319368, 73.592415], [-93.249141, 73.602101], [-93.180596, 73.612726], [-93.113891, 73.624265], [-93.04918, 73.636694], [-92.986612, 73.649984], [-92.926334, 73.664105], [-92.868488, 73.679026], [-92.813213, 73.694711], [-92.760642, 73.711126], [-92.710902, 73.728234], [-92.664116, 73.745994], [-92.620401, 73.764366], [-92.579868, 73.783309], [-92.542622, 73.802777], [-92.508761, 73.822727], [-92.478375, 73.843111], [-92.451549, 73.863882], [-92.428359, 73.884992], [-92.408873, 73.90639], [-92.393153, 73.928026], [-92.38125, 73.949849], [-92.373207, 73.971807], [-92.36906, 73.993848], [-92.368834, 74.015918], [-92.372546, 74.037964], [-92.380202, 74.059934], [-92.391799, 74.081774], [-92.407326, 74.10343], [-92.426759, 74.124849], [-92.450067, 74.14598], [-92.477206, 74.166769], [-92.508125, 74.187166], [-92.54276, 74.207119], [-92.581038, 74.226579], [-92.622877, 74.245497], [-92.668185, 74.263825], [-92.716857, 74.281518], [-92.768782, 74.29853], [-92.823839, 74.314819], [-92.881896, 74.330342], [-92.942813, 74.345061], [-93.006443, 74.358937], [-93.072628, 74.371934], [-93.141205, 74.38402], [-93.212, 74.395163], [-93.284836, 74.405334], [-93.359528, 74.414507], [-93.435885, 74.422658], [-93.51371, 74.429765], [-93.592803, 74.435811], [-93.672958, 74.440779], [-93.753967, 74.444657], [-93.83562, 74.447434], [-93.917702, 74.449103], [-94, 74.44966] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#00F", "fill": "#00F", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.63094, 73.993848], [-95.618974, 74.005314], [-95.590643, 74.014501], [-95.553238, 74.022313], [-95.510009, 74.029153], [-95.462755, 74.035244], [-95.412603, 74.040726], [-95.360317, 74.045697], [-95.306446, 74.050225], [-95.2514, 74.054363], [-95.195495, 74.058153], [-95.138982, 74.061628], [-95.082063, 74.064815], [-95.024904, 74.067738], [-94.967645, 74.070417], [-94.910401, 74.072868], [-94.853272, 74.075106], [-94.796343, 74.077145], [-94.739687, 74.078997], [-94.683367, 74.080672], [-94.62744, 74.082181], [-94.571954, 74.083531], [-94.516951, 74.084732], [-94.462469, 74.08579], [-94.408542, 74.086713], [-94.3552, 74.087507], [-94.302467, 74.088179], [-94.250367, 74.088734], [-94.198921, 74.089177], [-94.148146, 74.089514], [-94.098058, 74.089749], [-94.048672, 74.089887], [-94, 74.089932], [-93.951328, 74.089887], [-93.901942, 74.089749], [-93.851854, 74.089514], [-93.801079, 74.089177], [-93.749633, 74.088734], [-93.697533, 74.088179], [-93.6448, 74.087507], [-93.591458, 74.086713], [-93.537531, 74.08579], [-93.483049, 74.084732], [-93.428046, 74.083531], [-93.37256, 74.082181], [-93.316633, 74.080672], [-93.260313, 74.078997], [-93.203657, 74.077145], [-93.146728, 74.075106], [-93.089599, 74.072868], [-93.032355, 74.070417], [-92.975096, 74.067738], [-92.917937, 74.064815], [-92.861018, 74.061628], [-92.804505, 74.058153], [-92.7486, 74.054363], [-92.693554, 74.050225], [-92.639683, 74.045697], [-92.587397, 74.040726], [-92.537245, 74.035244], [-92.489991, 74.029153], [-92.446762, 74.022313], [-92.409357, 74.014501], [-92.381026, 74.005314], [-92.36906, 73.993848], [-92.383264, 73.982578], [-92.41329, 73.973824], [-92.452023, 73.966565], [-92.496301, 73.960344], [-92.544379, 73.954908], [-92.595167, 73.950095], [-92.647929, 73.945796], [-92.702136, 73.941933], [-92.757398, 73.938445], [-92.813412, 73.935286], [-92.86994, 73.932419], [-92.926792, 73.929814], [-92.98381, 73.927445], [-93.040864, 73.925291], [-93.097847, 73.923334], [-93.154665, 73.921558], [-93.21124, 73.91995], [-93.267504, 73.918497], [-93.323399, 73.91719], [-93.378874, 73.916017], [-93.433884, 73.914972], [-93.488392, 73.914045], [-93.542363, 73.913231], [-93.595766, 73.912523], [-93.648577, 73.911915], [-93.70077, 73.911402], [-93.752327, 73.910979], [-93.803229, 73.910642], [-93.853461, 73.910386], [-93.903008, 73.910207], [-93.951857, 73.910102], [-94, 73.910068], [-94.048143, 73.910102], [-94.096992, 73.910207], [-94.146539, 73.910386], [-94.196771, 73.910642], [-94.247673, 73.910979], [-94.29923, 73.911402], [-94.351423, 73.911915], [-94.404234, 73.912523], [-94.457637, 73.913231], [-94.511608, 73.914045], [-94.566116, 73.914972], [-94.621126, 73.916017], [-94.676601, 73.91719], [-94.732496, 73.918497], [-94.78876, 73.91995], [-94.845335, 73.921558], [-94.902153, 73.923334], [-94.959136, 73.925291], [-95.01619, 73.927445], [-95.073208, 73.929814], [-95.13006, 73.932419], [-95.186588, 73.935286], [-95.242602, 73.938445], [-95.297864, 73.941933], [-95.352071, 73.945796], [-95.404833, 73.950095], [-95.455621, 73.954908], [-95.503699, 73.960344], [-95.547977, 73.966565], [-95.58671, 73.973824], [-95.616736, 73.982578], [-95.63094, 73.993848] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#0F0", "fill": "#0F0", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-94, 74.44966], [-93.95759, 74.446047], [-93.924163, 74.437989], [-93.896135, 74.427476], [-93.871901, 74.415395], [-93.850567, 74.402234], [-93.831566, 74.3883], [-93.814511, 74.373801], [-93.799121, 74.358884], [-93.785183, 74.343661], [-93.772529, 74.328217], [-93.761024, 74.312619], [-93.750558, 74.296922], [-93.741037, 74.281171], [-93.732384, 74.265401], [-93.724528, 74.249645], [-93.717412, 74.233928], [-93.710983, 74.218274], [-93.705195, 74.202701], [-93.700005, 74.187227], [-93.695378, 74.171865], [-93.691278, 74.156629], [-93.687675, 74.141531], [-93.684541, 74.126578], [-93.68185, 74.111782], [-93.679578, 74.097148], [-93.677703, 74.082684], [-93.676204, 74.068396], [-93.675063, 74.054289], [-93.674262, 74.040367], [-93.673784, 74.026635], [-93.673612, 74.013096], [-93.673734, 73.999754], [-93.674142, 73.986412], [-93.674849, 73.972874], [-93.675868, 73.959145], [-93.677213, 73.945226], [-93.678898, 73.931123], [-93.68094, 73.91684], [-93.683354, 73.902383], [-93.686158, 73.887756], [-93.689373, 73.872968], [-93.693018, 73.858026], [-93.697116, 73.842938], [-93.701692, 73.827715], [-93.706773, 73.812367], [-93.712388, 73.796907], [-93.718569, 73.78135], [-93.725353, 73.765713], [-93.73278, 73.750015], [-93.740897, 73.734278], [-93.749757, 73.71853], [-93.759418, 73.7028], [-93.769952, 73.687126], [-93.781443, 73.671553], [-93.793988, 73.656134], [-93.807712, 73.640937], [-93.822766, 73.626047], [-93.839345, 73.611574], [-93.85771, 73.597668], [-93.878219, 73.584533], [-93.901403, 73.572476], [-93.928101, 73.561986], [-93.959832, 73.553946], [-94, 73.55034], [-94.040168, 73.553946], [-94.071899, 73.561986], [-94.098597, 73.572476], [-94.121781, 73.584533], [-94.14229, 73.597668], [-94.160655, 73.611574], [-94.177234, 73.626047], [-94.192288, 73.640937], [-94.206012, 73.656134], [-94.218557, 73.671553], [-94.230048, 73.687126], [-94.240582, 73.7028], [-94.250243, 73.71853], [-94.259103, 73.734278], [-94.26722, 73.750015], [-94.274647, 73.765713], [-94.281431, 73.78135], [-94.287612, 73.796907], [-94.293227, 73.812367], [-94.298308, 73.827715], [-94.302884, 73.842938], [-94.306982, 73.858026], [-94.310627, 73.872968], [-94.313842, 73.887756], [-94.316646, 73.902383], [-94.31906, 73.91684], [-94.321102, 73.931123], [-94.322787, 73.945226], [-94.324132, 73.959145], [-94.325151, 73.972874], [-94.325858, 73.986412], [-94.326266, 73.999754], [-94.326388, 74.013096], [-94.326216, 74.026635], [-94.325738, 74.040367], [-94.324937, 74.054289], [-94.323796, 74.068396], [-94.322297, 74.082684], [-94.320422, 74.097148], [-94.31815, 74.111782], [-94.315459, 74.126578], [-94.312325, 74.141531], [-94.308722, 74.156629], [-94.304622, 74.171865], [-94.299995, 74.187227], [-94.294805, 74.202701], [-94.289017, 74.218274], [-94.282588, 74.233928], [-94.275472, 74.249645], [-94.267616, 74.265401], [-94.258963, 74.281171], [-94.249442, 74.296922], [-94.238976, 74.312619], [-94.227471, 74.328217], [-94.214817, 74.343661], [-94.200879, 74.358884], [-94.185489, 74.373801], [-94.168434, 74.3883], [-94.149433, 74.402234], [-94.128099, 74.415395], [-94.103865, 74.427476], [-94.075837, 74.437989], [-94.04241, 74.446047], [-94, 74.44966] ] ] } } ] } ================================================ FILE: packages/turf-ellipse/test/out/rotation-degrees.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "units": "degrees", "xSemiAxis": 0.125, "ySemiAxis": 0.025, "angle": 30 }, "geometry": { "type": "Point", "coordinates": [-73.9975, 40.730833] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#F00", "fill": "#F00", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.9975, 40.855833], [-74.013699, 40.85523], [-74.029741, 40.853427], [-74.04547, 40.850441], [-74.060735, 40.846301], [-74.075388, 40.841047], [-74.089287, 40.83473], [-74.102298, 40.827412], [-74.114296, 40.819163], [-74.125164, 40.810062], [-74.134798, 40.800198], [-74.143106, 40.789666], [-74.150008, 40.778568], [-74.155438, 40.767011], [-74.159344, 40.755106], [-74.161691, 40.742969], [-74.162455, 40.730716], [-74.16163, 40.718465], [-74.159226, 40.706334], [-74.155266, 40.69444], [-74.149789, 40.682897], [-74.142848, 40.671817], [-74.134512, 40.661306], [-74.12486, 40.651464], [-74.113986, 40.642386], [-74.101995, 40.63416], [-74.089001, 40.626863], [-74.075131, 40.620567], [-74.060516, 40.615331], [-74.045298, 40.611206], [-74.029622, 40.60823], [-74.013638, 40.606434], [-73.9975, 40.605833], [-73.981362, 40.606434], [-73.965378, 40.60823], [-73.949702, 40.611206], [-73.934484, 40.615331], [-73.919869, 40.620567], [-73.905999, 40.626863], [-73.893005, 40.63416], [-73.881014, 40.642386], [-73.87014, 40.651464], [-73.860488, 40.661306], [-73.852152, 40.671817], [-73.845211, 40.682897], [-73.839734, 40.69444], [-73.835774, 40.706334], [-73.83337, 40.718465], [-73.832545, 40.730716], [-73.833309, 40.742969], [-73.835656, 40.755106], [-73.839562, 40.767011], [-73.844992, 40.778568], [-73.851894, 40.789666], [-73.860202, 40.800198], [-73.869836, 40.810062], [-73.880704, 40.819163], [-73.892702, 40.827412], [-73.905713, 40.83473], [-73.919612, 40.841047], [-73.934265, 40.846301], [-73.94953, 40.850441], [-73.965259, 40.853427], [-73.981301, 40.85523], [-73.9975, 40.855833] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#00F", "fill": "#00F", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.140489, 40.793245], [-74.133053, 40.796531], [-74.123293, 40.796793], [-74.11268, 40.795669], [-74.10171, 40.79372], [-74.090624, 40.791225], [-74.079564, 40.788347], [-74.068615, 40.785194], [-74.057839, 40.781842], [-74.047275, 40.778345], [-74.036954, 40.774747], [-74.026898, 40.771079], [-74.017122, 40.767369], [-74.007637, 40.763638], [-73.998451, 40.759903], [-73.989571, 40.756181], [-73.980999, 40.752482], [-73.972487, 40.748706], [-73.963795, 40.744739], [-73.954937, 40.740579], [-73.945934, 40.73622], [-73.93681, 40.731661], [-73.927596, 40.726897], [-73.91833, 40.721925], [-73.909059, 40.716744], [-73.899849, 40.711352], [-73.890781, 40.705747], [-73.881973, 40.699932], [-73.87359, 40.69391], [-73.865889, 40.687691], [-73.859309, 40.681293], [-73.854737, 40.674764], [-73.854779, 40.668245], [-73.862215, 40.664976], [-73.871956, 40.664737], [-73.882545, 40.665883], [-73.893487, 40.667852], [-73.904545, 40.670366], [-73.915578, 40.673261], [-73.926501, 40.676428], [-73.937254, 40.679793], [-73.947796, 40.683299], [-73.958098, 40.686906], [-73.968137, 40.69058], [-73.9779, 40.694294], [-73.987373, 40.698027], [-73.99655, 40.701763], [-74.005423, 40.705485], [-74.01399, 40.709181], [-74.022499, 40.712955], [-74.031191, 40.716917], [-74.040051, 40.721072], [-74.049058, 40.725423], [-74.058188, 40.729973], [-74.067412, 40.734727], [-74.076692, 40.739687], [-74.085978, 40.744854], [-74.095208, 40.750232], [-74.104299, 40.755821], [-74.113135, 40.761619], [-74.121548, 40.767623], [-74.129281, 40.773826], [-74.135896, 40.780208], [-74.140503, 40.786726], [-74.140489, 40.793245] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#0F0", "fill": "#0F0", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.914888, 40.839057], [-73.910563, 40.833419], [-73.910242, 40.82603], [-73.911752, 40.817997], [-73.914351, 40.809697], [-73.917671, 40.80131], [-73.921493, 40.792941], [-73.925676, 40.784657], [-73.93012, 40.776502], [-73.934751, 40.768508], [-73.939515, 40.760697], [-73.944367, 40.753085], [-73.949273, 40.745684], [-73.954204, 40.738503], [-73.959137, 40.731547], [-73.964053, 40.724822], [-73.968934, 40.718329], [-73.973917, 40.711882], [-73.979149, 40.705295], [-73.984635, 40.698583], [-73.99038, 40.69176], [-73.996387, 40.684844], [-74.002662, 40.677858], [-74.009209, 40.67083], [-74.016029, 40.663799], [-74.023126, 40.65681], [-74.0305, 40.649928], [-74.038149, 40.643241], [-74.046069, 40.636874], [-74.054249, 40.631022], [-74.062663, 40.626018], [-74.071255, 40.622535], [-74.079844, 40.622551], [-74.084169, 40.628182], [-74.084508, 40.635571], [-74.083023, 40.643605], [-74.080452, 40.65191], [-74.07716, 40.660302], [-74.073365, 40.668675], [-74.069208, 40.676965], [-74.064788, 40.685125], [-74.060178, 40.693124], [-74.055433, 40.70094], [-74.050597, 40.708557], [-74.045705, 40.715962], [-74.040786, 40.723147], [-74.035862, 40.730106], [-74.030953, 40.736834], [-74.026076, 40.743329], [-74.021096, 40.74978], [-74.015865, 40.756368], [-74.010377, 40.763081], [-74.004629, 40.769906], [-73.998614, 40.776822], [-73.992329, 40.783808], [-73.98577, 40.790834], [-73.978934, 40.797865], [-73.971817, 40.80485], [-73.96442, 40.811729], [-73.956744, 40.818411], [-73.948793, 40.824772], [-73.940581, 40.830616], [-73.932131, 40.835611], [-73.923504, 40.839084], [-73.914888, 40.839057] ] ] } } ] } ================================================ FILE: packages/turf-ellipse/test/out/rotation.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "xSemiAxis": 5, "ySemiAxis": 1, "angle": 30 }, "geometry": { "type": "Point", "coordinates": [-73.9975, 40.730833] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#F00", "fill": "#F00", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.9975, 40.775799], [-74.00332, 40.775582], [-74.009084, 40.774934], [-74.014736, 40.773862], [-74.020222, 40.772374], [-74.025489, 40.770486], [-74.030485, 40.768216], [-74.035164, 40.765586], [-74.039479, 40.762621], [-74.043389, 40.75935], [-74.046857, 40.755804], [-74.049849, 40.752018], [-74.052336, 40.748028], [-74.054295, 40.743872], [-74.055706, 40.739591], [-74.056557, 40.735225], [-74.056839, 40.730818], [-74.056549, 40.726411], [-74.055691, 40.722046], [-74.054273, 40.717766], [-74.052308, 40.713612], [-74.049816, 40.709624], [-74.04682, 40.705841], [-74.04335, 40.702298], [-74.039439, 40.69903], [-74.035125, 40.696068], [-74.030448, 40.69344], [-74.025456, 40.691173], [-74.020194, 40.689288], [-74.014714, 40.687802], [-74.009069, 40.68673], [-74.003312, 40.686083], [-73.9975, 40.685867], [-73.991688, 40.686083], [-73.985931, 40.68673], [-73.980286, 40.687802], [-73.974806, 40.689288], [-73.969544, 40.691173], [-73.964552, 40.69344], [-73.959875, 40.696068], [-73.955561, 40.69903], [-73.95165, 40.702298], [-73.94818, 40.705841], [-73.945184, 40.709624], [-73.942692, 40.713612], [-73.940727, 40.717766], [-73.939309, 40.722046], [-73.938451, 40.726411], [-73.938161, 40.730818], [-73.938443, 40.735225], [-73.939294, 40.739591], [-73.940705, 40.743872], [-73.942664, 40.748028], [-73.945151, 40.752018], [-73.948143, 40.755804], [-73.951611, 40.75935], [-73.955521, 40.762621], [-73.959836, 40.765586], [-73.964515, 40.768216], [-73.969511, 40.770486], [-73.974778, 40.772374], [-73.980264, 40.773862], [-73.985916, 40.774934], [-73.99168, 40.775582], [-73.9975, 40.775799] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#00F", "fill": "#00F", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.048906, 40.753305], [-74.046231, 40.754485], [-74.042723, 40.754576], [-74.038908, 40.754169], [-74.034964, 40.753466], [-74.03098, 40.752566], [-74.027004, 40.751529], [-74.023069, 40.750393], [-74.019195, 40.749186], [-74.015397, 40.747927], [-74.011687, 40.746631], [-74.008071, 40.745311], [-74.004556, 40.743976], [-74.001145, 40.742634], [-73.997842, 40.74129], [-73.994648, 40.739951], [-73.991565, 40.738621], [-73.988504, 40.737263], [-73.985377, 40.735837], [-73.98219, 40.734341], [-73.978951, 40.732774], [-73.975668, 40.731134], [-73.972353, 40.729422], [-73.969018, 40.727635], [-73.965681, 40.725773], [-73.962365, 40.723834], [-73.959101, 40.72182], [-73.955929, 40.71973], [-73.95291, 40.717566], [-73.950136, 40.715331], [-73.947765, 40.713031], [-73.946117, 40.710684], [-73.946128, 40.708339], [-73.948803, 40.707161], [-73.95231, 40.707072], [-73.956122, 40.707482], [-73.960061, 40.708188], [-73.964042, 40.70909], [-73.968014, 40.710129], [-73.971946, 40.711267], [-73.975817, 40.712476], [-73.979612, 40.713736], [-73.98332, 40.715033], [-73.986933, 40.716354], [-73.990447, 40.717689], [-73.993856, 40.719032], [-73.997158, 40.720376], [-74.000351, 40.721715], [-74.003433, 40.723045], [-74.006494, 40.724402], [-74.009621, 40.725828], [-74.012808, 40.727323], [-74.016048, 40.728889], [-74.019331, 40.730527], [-74.022648, 40.732239], [-74.025985, 40.734024], [-74.029324, 40.735885], [-74.032642, 40.737821], [-74.035909, 40.739833], [-74.039085, 40.741921], [-74.042108, 40.744083], [-74.044886, 40.746316], [-74.047261, 40.748613], [-74.048915, 40.75096], [-74.048906, 40.753305] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#0F0", "fill": "#0F0", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.967813, 40.769771], [-73.966257, 40.767744], [-73.96614, 40.765085], [-73.96668, 40.762196], [-73.967612, 40.759209], [-73.968803, 40.756192], [-73.970174, 40.753181], [-73.971676, 40.7502], [-73.973272, 40.747266], [-73.974936, 40.74439], [-73.976647, 40.741579], [-73.978391, 40.73884], [-73.980154, 40.736178], [-73.981926, 40.733594], [-73.9837, 40.731091], [-73.985467, 40.728672], [-73.987223, 40.726336], [-73.989015, 40.724016], [-73.990897, 40.721647], [-73.992871, 40.719232], [-73.994938, 40.716777], [-73.9971, 40.714289], [-73.999358, 40.711776], [-74.001714, 40.709248], [-74.00417, 40.706719], [-74.006725, 40.704205], [-74.00938, 40.70173], [-74.012135, 40.699325], [-74.014987, 40.697036], [-74.017934, 40.694931], [-74.020965, 40.693132], [-74.024059, 40.691881], [-74.027152, 40.691887], [-74.028708, 40.693914], [-74.028828, 40.696572], [-74.028291, 40.699462], [-74.027363, 40.702449], [-74.026176, 40.705467], [-74.024807, 40.708479], [-74.023309, 40.71146], [-74.021716, 40.714395], [-74.020055, 40.717272], [-74.018346, 40.720083], [-74.016605, 40.722822], [-74.014843, 40.725486], [-74.013072, 40.72807], [-74.0113, 40.730573], [-74.009533, 40.732993], [-74.007778, 40.735329], [-74.005987, 40.737649], [-74.004105, 40.740019], [-74.002131, 40.742434], [-74.000063, 40.744889], [-73.997901, 40.747377], [-73.995641, 40.74989], [-73.993283, 40.752417], [-73.990825, 40.754946], [-73.988268, 40.75746], [-73.98561, 40.759934], [-73.982851, 40.762339], [-73.979995, 40.764628], [-73.977044, 40.766731], [-73.974009, 40.768529], [-73.970909, 40.769779], [-73.967813, 40.769771] ] ] } } ] } ================================================ FILE: packages/turf-ellipse/test/out/simple-degrees.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "units": "degrees", "xSemiAxis": 5, "ySemiAxis": 1 }, "geometry": { "type": "Point", "coordinates": [-73.9975, 40.730833] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#F00", "fill": "#F00", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.9975, 45.730833], [-74.698398, 45.704735], [-75.390706, 45.626764], [-76.066017, 45.497886], [-76.716273, 45.319684], [-77.333929, 45.094327], [-77.912074, 44.824524], [-78.444546, 44.513469], [-78.926002, 44.164781], [-79.351961, 43.782438], [-79.718829, 43.370713], [-80.023884, 42.934104], [-80.265253, 42.477272], [-80.441865, 42.004981], [-80.553401, 41.522038], [-80.600227, 41.033248], [-80.583334, 40.543359], [-80.504269, 40.057027], [-80.365071, 39.578777], [-80.168217, 39.112966], [-79.916559, 38.663761], [-79.61328, 38.235109], [-79.261849, 37.830717], [-78.865975, 37.454029], [-78.42958, 37.108214], [-77.956762, 36.796144], [-77.451771, 36.520386], [-76.918984, 36.283188], [-76.36288, 36.086469], [-75.788026, 35.931812], [-75.199053, 35.820454], [-74.60064, 35.753283], [-73.9975, 35.730833], [-73.39436, 35.753283], [-72.795947, 35.820454], [-72.206974, 35.931812], [-71.63212, 36.086469], [-71.076016, 36.283188], [-70.543229, 36.520386], [-70.038238, 36.796144], [-69.56542, 37.108214], [-69.129025, 37.454029], [-68.733151, 37.830717], [-68.38172, 38.235109], [-68.078441, 38.663761], [-67.826783, 39.112966], [-67.629929, 39.578777], [-67.490731, 40.057027], [-67.411666, 40.543359], [-67.394773, 41.033248], [-67.441599, 41.522038], [-67.553135, 42.004981], [-67.729747, 42.477272], [-67.971116, 42.934104], [-68.276171, 43.370713], [-68.643039, 43.782438], [-69.068998, 44.164781], [-69.550454, 44.513469], [-70.082926, 44.824524], [-70.661071, 45.094327], [-71.278727, 45.319684], [-71.928983, 45.497886], [-72.604294, 45.626764], [-73.296602, 45.704735], [-73.9975, 45.730833] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#00F", "fill": "#00F", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-80.583334, 40.543359], [-80.434982, 40.778295], [-80.118789, 40.952109], [-79.731663, 41.0934], [-79.306767, 41.211904], [-78.860567, 41.312527], [-78.402775, 41.398261], [-77.939728, 41.471161], [-77.475834, 41.532755], [-77.014306, 41.584252], [-76.557557, 41.626646], [-76.10744, 41.660784], [-75.6654, 41.687402], [-75.232575, 41.707154], [-74.809867, 41.720628], [-74.397988, 41.728358], [-73.9975, 41.730833], [-73.597012, 41.728358], [-73.185133, 41.720628], [-72.762425, 41.707154], [-72.3296, 41.687402], [-71.88756, 41.660784], [-71.437443, 41.626646], [-70.980694, 41.584252], [-70.519166, 41.532755], [-70.055272, 41.471161], [-69.592225, 41.398261], [-69.134433, 41.312527], [-68.688233, 41.211904], [-68.263337, 41.0934], [-67.876211, 40.952109], [-67.560018, 40.778295], [-67.411666, 40.543359], [-67.603386, 40.327569], [-67.945847, 40.189403], [-68.349157, 40.088399], [-68.783101, 40.010585], [-69.232966, 39.948999], [-69.690255, 39.899533], [-70.149548, 39.859515], [-70.607154, 39.827093], [-71.060448, 39.800922], [-71.507502, 39.779994], [-71.946867, 39.763537], [-72.377441, 39.750943], [-72.798375, 39.74173], [-73.209014, 39.73551], [-73.608852, 39.731964], [-73.9975, 39.730833], [-74.386148, 39.731964], [-74.785986, 39.73551], [-75.196625, 39.74173], [-75.617559, 39.750943], [-76.048133, 39.763537], [-76.487498, 39.779994], [-76.934552, 39.800922], [-77.387846, 39.827093], [-77.845452, 39.859515], [-78.304745, 39.899533], [-78.762034, 39.948999], [-79.211899, 40.010585], [-79.645843, 40.088399], [-80.049153, 40.189403], [-80.391614, 40.327569], [-80.583334, 40.543359] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#0F0", "fill": "#0F0", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.9975, 45.730833], [-73.674533, 45.600765], [-73.453563, 45.349008], [-73.284769, 45.04715], [-73.150635, 44.719483], [-73.042184, 44.377943], [-72.953933, 44.029476], [-72.882164, 43.678549], [-72.824183, 43.328221], [-72.777941, 42.980686], [-72.741824, 42.637559], [-72.714527, 42.300063], [-72.694972, 41.969133], [-72.682254, 41.645492], [-72.675606, 41.329702], [-72.674366, 41.022199], [-72.677961, 40.723319], [-72.686198, 40.424493], [-72.699476, 40.117156], [-72.718202, 39.801652], [-72.742835, 39.478429], [-72.773905, 39.148055], [-72.812033, 38.81126], [-72.857956, 38.468986], [-72.912575, 38.122458], [-72.977017, 37.773294], [-73.052734, 37.423681], [-73.141681, 37.076667], [-73.246627, 36.736695], [-73.371792, 36.410667], [-73.524324, 36.110436], [-73.718686, 35.860124], [-73.9975, 35.730833], [-74.276314, 35.860124], [-74.470676, 36.110436], [-74.623208, 36.410667], [-74.748373, 36.736695], [-74.853319, 37.076667], [-74.942266, 37.423681], [-75.017983, 37.773294], [-75.082425, 38.122458], [-75.137044, 38.468986], [-75.182967, 38.81126], [-75.221095, 39.148055], [-75.252165, 39.478429], [-75.276798, 39.801652], [-75.295524, 40.117156], [-75.308802, 40.424493], [-75.317039, 40.723319], [-75.320634, 41.022199], [-75.319394, 41.329702], [-75.312746, 41.645492], [-75.300028, 41.969133], [-75.280473, 42.300063], [-75.253176, 42.637559], [-75.217059, 42.980686], [-75.170817, 43.328221], [-75.112836, 43.678549], [-75.041067, 44.029476], [-74.952816, 44.377943], [-74.844365, 44.719483], [-74.710231, 45.04715], [-74.541437, 45.349008], [-74.320467, 45.600765], [-73.9975, 45.730833] ] ] } } ] } ================================================ FILE: packages/turf-ellipse/test/out/simple-with-elevation.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "xSemiAxis": 5, "ySemiAxis": 1 }, "geometry": { "type": "Point", "coordinates": [-73.9975, 40.730833, 120] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#F00", "fill": "#F00", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.9975, 40.775799, 120], [-74.00332, 40.775582, 120], [-74.009084, 40.774934, 120], [-74.014736, 40.773862, 120], [-74.020222, 40.772374, 120], [-74.025489, 40.770486, 120], [-74.030485, 40.768216, 120], [-74.035164, 40.765586, 120], [-74.039479, 40.762621, 120], [-74.043389, 40.75935, 120], [-74.046857, 40.755804, 120], [-74.049849, 40.752018, 120], [-74.052336, 40.748028, 120], [-74.054295, 40.743872, 120], [-74.055706, 40.739591, 120], [-74.056557, 40.735225, 120], [-74.056839, 40.730818, 120], [-74.056549, 40.726411, 120], [-74.055691, 40.722046, 120], [-74.054273, 40.717766, 120], [-74.052308, 40.713612, 120], [-74.049816, 40.709624, 120], [-74.04682, 40.705841, 120], [-74.04335, 40.702298, 120], [-74.039439, 40.69903, 120], [-74.035125, 40.696068, 120], [-74.030448, 40.69344, 120], [-74.025456, 40.691173, 120], [-74.020194, 40.689288, 120], [-74.014714, 40.687802, 120], [-74.009069, 40.68673, 120], [-74.003312, 40.686083, 120], [-73.9975, 40.685867, 120], [-73.991688, 40.686083, 120], [-73.985931, 40.68673, 120], [-73.980286, 40.687802, 120], [-73.974806, 40.689288, 120], [-73.969544, 40.691173, 120], [-73.964552, 40.69344, 120], [-73.959875, 40.696068, 120], [-73.955561, 40.69903, 120], [-73.95165, 40.702298, 120], [-73.94818, 40.705841, 120], [-73.945184, 40.709624, 120], [-73.942692, 40.713612, 120], [-73.940727, 40.717766, 120], [-73.939309, 40.722046, 120], [-73.938451, 40.726411, 120], [-73.938161, 40.730818, 120], [-73.938443, 40.735225, 120], [-73.939294, 40.739591, 120], [-73.940705, 40.743872, 120], [-73.942664, 40.748028, 120], [-73.945151, 40.752018, 120], [-73.948143, 40.755804, 120], [-73.951611, 40.75935, 120], [-73.955521, 40.762621, 120], [-73.959836, 40.765586, 120], [-73.964515, 40.768216, 120], [-73.969511, 40.770486, 120], [-73.974778, 40.772374, 120], [-73.980264, 40.773862, 120], [-73.985916, 40.774934, 120], [-73.99168, 40.775582, 120], [-73.9975, 40.775799, 120] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#00F", "fill": "#00F", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.056839, 40.730818, 120], [-74.055302, 40.732853, 120], [-74.052325, 40.734262, 120], [-74.048754, 40.735355, 120], [-74.044876, 40.736239, 120], [-74.040832, 40.73697, 120], [-74.036706, 40.737578, 120], [-74.032549, 40.738085, 120], [-74.028398, 40.738507, 120], [-74.024279, 40.738856, 120], [-74.020211, 40.739139, 120], [-74.016209, 40.739366, 120], [-74.012284, 40.739542, 120], [-74.008444, 40.739671, 120], [-74.004697, 40.73976, 120], [-74.001048, 40.73981, 120], [-73.9975, 40.739826, 120], [-73.993952, 40.73981, 120], [-73.990303, 40.73976, 120], [-73.986556, 40.739671, 120], [-73.982716, 40.739542, 120], [-73.978791, 40.739366, 120], [-73.974789, 40.739139, 120], [-73.970721, 40.738856, 120], [-73.966602, 40.738507, 120], [-73.962451, 40.738085, 120], [-73.958294, 40.737578, 120], [-73.954168, 40.73697, 120], [-73.950124, 40.736239, 120], [-73.946246, 40.735355, 120], [-73.942675, 40.734262, 120], [-73.939698, 40.732853, 120], [-73.938161, 40.730818, 120], [-73.939701, 40.728784, 120], [-73.942681, 40.727378, 120], [-73.946253, 40.726289, 120], [-73.950132, 40.725407, 120], [-73.954176, 40.72468, 120], [-73.958302, 40.724075, 120], [-73.962459, 40.72357, 120], [-73.966609, 40.723151, 120], [-73.970728, 40.722804, 120], [-73.974795, 40.722522, 120], [-73.978796, 40.722297, 120], [-73.98272, 40.722122, 120], [-73.986559, 40.721994, 120], [-73.990305, 40.721906, 120], [-73.993953, 40.721856, 120], [-73.9975, 40.72184, 120], [-74.001047, 40.721856, 120], [-74.004695, 40.721906, 120], [-74.008441, 40.721994, 120], [-74.01228, 40.722122, 120], [-74.016204, 40.722297, 120], [-74.020205, 40.722522, 120], [-74.024272, 40.722804, 120], [-74.028391, 40.723151, 120], [-74.032541, 40.72357, 120], [-74.036698, 40.724075, 120], [-74.040824, 40.72468, 120], [-74.044868, 40.725407, 120], [-74.048747, 40.726289, 120], [-74.052319, 40.727378, 120], [-74.055299, 40.728784, 120], [-74.056839, 40.730818, 120] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#0F0", "fill": "#0F0", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.9975, 40.775799, 120], [-73.994813, 40.774633, 120], [-73.992956, 40.772376, 120], [-73.991515, 40.769669, 120], [-73.990349, 40.76673, 120], [-73.989387, 40.763666, 120], [-73.988587, 40.760539, 120], [-73.987919, 40.757389, 120], [-73.987364, 40.754244, 120], [-73.986906, 40.751122, 120], [-73.986533, 40.74804, 120], [-73.986235, 40.745008, 120], [-73.986004, 40.742034, 120], [-73.985834, 40.739125, 120], [-73.985719, 40.736286, 120], [-73.985653, 40.73352, 120], [-73.985632, 40.730832, 120], [-73.985654, 40.728144, 120], [-73.985721, 40.725379, 120], [-73.985837, 40.72254, 120], [-73.986008, 40.719631, 120], [-73.98624, 40.716657, 120], [-73.986538, 40.713625, 120], [-73.986912, 40.710543, 120], [-73.987371, 40.707422, 120], [-73.987927, 40.704276, 120], [-73.988595, 40.701126, 120], [-73.989395, 40.697999, 120], [-73.990357, 40.694935, 120], [-73.991522, 40.691996, 120], [-73.992961, 40.68929, 120], [-73.994817, 40.687033, 120], [-73.9975, 40.685867, 120], [-74.000183, 40.687033, 120], [-74.002039, 40.68929, 120], [-74.003478, 40.691996, 120], [-74.004643, 40.694935, 120], [-74.005605, 40.697999, 120], [-74.006405, 40.701126, 120], [-74.007073, 40.704276, 120], [-74.007629, 40.707422, 120], [-74.008088, 40.710543, 120], [-74.008462, 40.713625, 120], [-74.00876, 40.716657, 120], [-74.008992, 40.719631, 120], [-74.009163, 40.72254, 120], [-74.009279, 40.725379, 120], [-74.009346, 40.728144, 120], [-74.009368, 40.730832, 120], [-74.009347, 40.73352, 120], [-74.009281, 40.736286, 120], [-74.009166, 40.739125, 120], [-74.008996, 40.742034, 120], [-74.008765, 40.745008, 120], [-74.008467, 40.74804, 120], [-74.008094, 40.751122, 120], [-74.007636, 40.754244, 120], [-74.007081, 40.757389, 120], [-74.006413, 40.760539, 120], [-74.005613, 40.763666, 120], [-74.004651, 40.76673, 120], [-74.003485, 40.769669, 120], [-74.002044, 40.772376, 120], [-74.000187, 40.774633, 120], [-73.9975, 40.775799, 120] ] ] } } ] } ================================================ FILE: packages/turf-ellipse/test/out/simple.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "xSemiAxis": 5, "ySemiAxis": 1 }, "geometry": { "type": "Point", "coordinates": [-73.9975, 40.730833] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#F00", "fill": "#F00", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.9975, 40.775799], [-74.00332, 40.775582], [-74.009084, 40.774934], [-74.014736, 40.773862], [-74.020222, 40.772374], [-74.025489, 40.770486], [-74.030485, 40.768216], [-74.035164, 40.765586], [-74.039479, 40.762621], [-74.043389, 40.75935], [-74.046857, 40.755804], [-74.049849, 40.752018], [-74.052336, 40.748028], [-74.054295, 40.743872], [-74.055706, 40.739591], [-74.056557, 40.735225], [-74.056839, 40.730818], [-74.056549, 40.726411], [-74.055691, 40.722046], [-74.054273, 40.717766], [-74.052308, 40.713612], [-74.049816, 40.709624], [-74.04682, 40.705841], [-74.04335, 40.702298], [-74.039439, 40.69903], [-74.035125, 40.696068], [-74.030448, 40.69344], [-74.025456, 40.691173], [-74.020194, 40.689288], [-74.014714, 40.687802], [-74.009069, 40.68673], [-74.003312, 40.686083], [-73.9975, 40.685867], [-73.991688, 40.686083], [-73.985931, 40.68673], [-73.980286, 40.687802], [-73.974806, 40.689288], [-73.969544, 40.691173], [-73.964552, 40.69344], [-73.959875, 40.696068], [-73.955561, 40.69903], [-73.95165, 40.702298], [-73.94818, 40.705841], [-73.945184, 40.709624], [-73.942692, 40.713612], [-73.940727, 40.717766], [-73.939309, 40.722046], [-73.938451, 40.726411], [-73.938161, 40.730818], [-73.938443, 40.735225], [-73.939294, 40.739591], [-73.940705, 40.743872], [-73.942664, 40.748028], [-73.945151, 40.752018], [-73.948143, 40.755804], [-73.951611, 40.75935], [-73.955521, 40.762621], [-73.959836, 40.765586], [-73.964515, 40.768216], [-73.969511, 40.770486], [-73.974778, 40.772374], [-73.980264, 40.773862], [-73.985916, 40.774934], [-73.99168, 40.775582], [-73.9975, 40.775799] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#00F", "fill": "#00F", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.056839, 40.730818], [-74.055302, 40.732853], [-74.052325, 40.734262], [-74.048754, 40.735355], [-74.044876, 40.736239], [-74.040832, 40.73697], [-74.036706, 40.737578], [-74.032549, 40.738085], [-74.028398, 40.738507], [-74.024279, 40.738856], [-74.020211, 40.739139], [-74.016209, 40.739366], [-74.012284, 40.739542], [-74.008444, 40.739671], [-74.004697, 40.73976], [-74.001048, 40.73981], [-73.9975, 40.739826], [-73.993952, 40.73981], [-73.990303, 40.73976], [-73.986556, 40.739671], [-73.982716, 40.739542], [-73.978791, 40.739366], [-73.974789, 40.739139], [-73.970721, 40.738856], [-73.966602, 40.738507], [-73.962451, 40.738085], [-73.958294, 40.737578], [-73.954168, 40.73697], [-73.950124, 40.736239], [-73.946246, 40.735355], [-73.942675, 40.734262], [-73.939698, 40.732853], [-73.938161, 40.730818], [-73.939701, 40.728784], [-73.942681, 40.727378], [-73.946253, 40.726289], [-73.950132, 40.725407], [-73.954176, 40.72468], [-73.958302, 40.724075], [-73.962459, 40.72357], [-73.966609, 40.723151], [-73.970728, 40.722804], [-73.974795, 40.722522], [-73.978796, 40.722297], [-73.98272, 40.722122], [-73.986559, 40.721994], [-73.990305, 40.721906], [-73.993953, 40.721856], [-73.9975, 40.72184], [-74.001047, 40.721856], [-74.004695, 40.721906], [-74.008441, 40.721994], [-74.01228, 40.722122], [-74.016204, 40.722297], [-74.020205, 40.722522], [-74.024272, 40.722804], [-74.028391, 40.723151], [-74.032541, 40.72357], [-74.036698, 40.724075], [-74.040824, 40.72468], [-74.044868, 40.725407], [-74.048747, 40.726289], [-74.052319, 40.727378], [-74.055299, 40.728784], [-74.056839, 40.730818] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 6, "stroke": "#0F0", "fill": "#0F0", "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.9975, 40.775799], [-73.994813, 40.774633], [-73.992956, 40.772376], [-73.991515, 40.769669], [-73.990349, 40.76673], [-73.989387, 40.763666], [-73.988587, 40.760539], [-73.987919, 40.757389], [-73.987364, 40.754244], [-73.986906, 40.751122], [-73.986533, 40.74804], [-73.986235, 40.745008], [-73.986004, 40.742034], [-73.985834, 40.739125], [-73.985719, 40.736286], [-73.985653, 40.73352], [-73.985632, 40.730832], [-73.985654, 40.728144], [-73.985721, 40.725379], [-73.985837, 40.72254], [-73.986008, 40.719631], [-73.98624, 40.716657], [-73.986538, 40.713625], [-73.986912, 40.710543], [-73.987371, 40.707422], [-73.987927, 40.704276], [-73.988595, 40.701126], [-73.989395, 40.697999], [-73.990357, 40.694935], [-73.991522, 40.691996], [-73.992961, 40.68929], [-73.994817, 40.687033], [-73.9975, 40.685867], [-74.000183, 40.687033], [-74.002039, 40.68929], [-74.003478, 40.691996], [-74.004643, 40.694935], [-74.005605, 40.697999], [-74.006405, 40.701126], [-74.007073, 40.704276], [-74.007629, 40.707422], [-74.008088, 40.710543], [-74.008462, 40.713625], [-74.00876, 40.716657], [-74.008992, 40.719631], [-74.009163, 40.72254], [-74.009279, 40.725379], [-74.009346, 40.728144], [-74.009368, 40.730832], [-74.009347, 40.73352], [-74.009281, 40.736286], [-74.009166, 40.739125], [-74.008996, 40.742034], [-74.008765, 40.745008], [-74.008467, 40.74804], [-74.008094, 40.751122], [-74.007636, 40.754244], [-74.007081, 40.757389], [-74.006413, 40.760539], [-74.005613, 40.763666], [-74.004651, 40.76673], [-74.003485, 40.769669], [-74.002044, 40.772376], [-74.000187, 40.774633], [-73.9975, 40.775799] ] ] } } ] } ================================================ FILE: packages/turf-ellipse/test.ts ================================================ import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { circle } from "@turf/circle"; import { truncate } from "@turf/truncate"; import { check } from "@placemarkio/check-geojson"; import { featureCollection } from "@turf/helpers"; import { intersect } from "@turf/intersect"; import { area } from "@turf/area"; import { ellipse } from "./index.js"; import fs from "fs"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("turf-ellipse", (t) => { fixtures.forEach((fixture) => { console.log(fixture.filename); const filename = fixture.filename; const name = fixture.name; const geojson = fixture.geojson; const center = geojson.geometry.coordinates; let { xSemiAxis, ySemiAxis, steps, angle, units, accuracy } = geojson.properties; angle = angle || 0; const options = { steps: steps, angle: angle, units: units, accuracy: accuracy, }; const maxAxis = Math.max(xSemiAxis, ySemiAxis); const results = featureCollection([ geojson, truncate(colorize(circle(center, maxAxis, options), "#F00")), truncate( colorize(ellipse(center, xSemiAxis, ySemiAxis, options), "#00F") ), truncate( colorize( ellipse(center, xSemiAxis, ySemiAxis, { steps, angle: angle + 90, units, accuracy: accuracy, }), "#0F0" ) ), ]); // Save to file const out = path.join(directories.out, filename); if (process.env.REGEN) writeJsonFileSync(out, results); t.deepEqual(results, loadJsonFileSync(out), name); }); t.end(); }); test("turf-ellipse -- circle consistency", (t) => { const ellipseGeom = truncate(ellipse([0, 60], 2000, 2000, { steps: 300 })); const circleGeom = truncate(circle([0, 60], 2000, { steps: 300 })); const intersectionGeom = intersect( featureCollection([ellipseGeom, circleGeom]) ); const areaIntersection = intersectionGeom != null ? area(intersectionGeom.geometry) : 0; const areaCircle = circleGeom != null ? area(circleGeom.geometry) : 0; t.true( Math.abs(areaIntersection - areaCircle) / areaCircle < 0.00001, "both areas are equal" ); t.end(); }); test("turf-ellipse -- rotation consistency", (t) => { const ellipseGeom = ellipse([0, 60], 2000, 2000, { angle: 0 }); const ellipseTurnedGeom = ellipse([0, 60], 2000, 2000, { angle: 90 }); const intersectionGeom = intersect( featureCollection([ellipseGeom, ellipseTurnedGeom]) ); const areaIntersection = intersectionGeom != null ? area(intersectionGeom.geometry) : 0; const areaEllipse = ellipseGeom != null ? area(ellipseGeom.geometry) : 0; t.true( Math.abs(areaIntersection - areaEllipse) / areaEllipse < 0.00001, "both areas are equal" ); t.end(); }); test("turf-ellipse -- with coordinates", (t) => { t.assert(ellipse([-100, 75], 5, 1)); t.end(); }); test("turf-ellipse -- validate geojson", (t) => { const E = ellipse([0, 0], 10, 20); try { check(JSON.stringify(E)); t.pass(); } catch (e) { t.fail(e.message); } t.end(); }); function colorize(feature, color) { color = color || "#F00"; feature.properties["stroke-width"] = 6; feature.properties.stroke = color; feature.properties.fill = color; feature.properties["fill-opacity"] = 0; return feature; } ================================================ FILE: packages/turf-ellipse/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-envelope/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-envelope/README.md ================================================ # @turf/envelope ## envelope Takes any number of features and returns a rectangular [Polygon][1] that encompasses all vertices. ### Parameters * `geojson` **[GeoJSON][2]** input features ### Examples ```javascript var features = turf.featureCollection([ turf.point([-75.343, 39.984], {"name": "Location A"}), turf.point([-75.833, 39.284], {"name": "Location B"}), turf.point([-75.534, 39.123], {"name": "Location C"}) ]); var enveloped = turf.envelope(features); //addToMap var addToMap = [features, enveloped]; ``` Returns **[Feature][3]<[Polygon][1]>** a rectangular Polygon feature that encompasses all vertices [1]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [2]: https://tools.ietf.org/html/rfc7946#section-3 [3]: https://tools.ietf.org/html/rfc7946#section-3.2 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/envelope ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-envelope/bench.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { envelope } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const fixture = loadJsonFileSync( path.join(__dirname, "test", "in", "feature-collection.geojson") ); var suite = new Benchmark.Suite("turf-envelope"); suite .add("turf-envelope", function () { envelope(fixture); }) .on("cycle", function (event) { console.log(String(event.target)); }) .run(); ================================================ FILE: packages/turf-envelope/index.ts ================================================ import type { Feature, Polygon } from "geojson"; import type { AllGeoJSON } from "@turf/helpers"; import { bbox } from "@turf/bbox"; import { bboxPolygon } from "@turf/bbox-polygon"; /** * Takes any number of features and returns a rectangular {@link Polygon} that encompasses all vertices. * * @function * @param {GeoJSON} geojson input features * @returns {Feature} a rectangular Polygon feature that encompasses all vertices * @example * var features = turf.featureCollection([ * turf.point([-75.343, 39.984], {"name": "Location A"}), * turf.point([-75.833, 39.284], {"name": "Location B"}), * turf.point([-75.534, 39.123], {"name": "Location C"}) * ]); * * var enveloped = turf.envelope(features); * * //addToMap * var addToMap = [features, enveloped]; */ function envelope(geojson: AllGeoJSON): Feature { return bboxPolygon(bbox(geojson)); } export { envelope }; export default envelope; ================================================ FILE: packages/turf-envelope/package.json ================================================ { "name": "@turf/envelope", "version": "7.3.4", "description": "Takes any number of features and returns a rectangular Polygon that encompasses all vertices.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "geojson", "envelope", "polygon", "extent" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/bbox": "workspace:*", "@turf/bbox-polygon": "workspace:*", "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-envelope/test/in/feature-collection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [102.0, 0.5] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [102.0, -10.0], [103.0, 1.0], [104.0, 0.0], [130.0, 4.0] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [20.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0] ] ] }, "properties": {} } ] } ================================================ FILE: packages/turf-envelope/test.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { loadJsonFileSync } from "load-json-file"; import { envelope } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); // Fixtures const fc = loadJsonFileSync( path.join(__dirname, "test", "in", "feature-collection.geojson") ); test("envelope", (t) => { const enveloped = envelope(fc); t.ok( enveloped, "should return a polygon that represents the bbox around a feature or feature collection" ); t.equal(enveloped.geometry.type, "Polygon"); t.deepEqual( enveloped.geometry.coordinates, [ [ [20, -10], [130, -10], [130, 4], [20, 4], [20, -10], ], ], "positions are correct" ); t.end(); }); ================================================ FILE: packages/turf-envelope/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-explode/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-explode/README.md ================================================ # @turf/explode ## explode Takes a feature or set of features and returns all positions as [points][1]. ### Parameters * `geojson` **[GeoJSON][2]** input features ### Examples ```javascript var polygon = turf.polygon([[[-81, 41], [-88, 36], [-84, 31], [-80, 33], [-77, 39], [-81, 41]]]); var explode = turf.explode(polygon); //addToMap var addToMap = [polygon, explode] ``` * Throws **[Error][3]** if it encounters an unknown geometry type Returns **[FeatureCollection][4]\** points representing the exploded input features [1]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [2]: https://tools.ietf.org/html/rfc7946#section-3 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error [4]: https://tools.ietf.org/html/rfc7946#section-3.3 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/explode ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-explode/bench.ts ================================================ import Benchmark from "benchmark"; import { polygon } from "@turf/helpers"; import { explode } from "./index.js"; var poly = polygon([ [ [0, 0], [0, 10], [10, 10], [10, 0], [0, 0], ], ]); var suite = new Benchmark.Suite("turf-explode"); suite .add("turf-explode", () => { explode(poly); }) .on("cycle", (event) => { console.log(String(event.target)); }) .run(); ================================================ FILE: packages/turf-explode/index.ts ================================================ import { coordEach, featureEach } from "@turf/meta"; import { point, featureCollection } from "@turf/helpers"; import type { AllGeoJSON } from "@turf/helpers"; import type { Feature, FeatureCollection, Point } from "geojson"; /** * Takes a feature or set of features and returns all positions as {@link Point|points}. * * @function * @param {GeoJSON} geojson input features * @returns {FeatureCollection} points representing the exploded input features * @throws {Error} if it encounters an unknown geometry type * @example * var polygon = turf.polygon([[[-81, 41], [-88, 36], [-84, 31], [-80, 33], [-77, 39], [-81, 41]]]); * * var explode = turf.explode(polygon); * * //addToMap * var addToMap = [polygon, explode] */ function explode(geojson: AllGeoJSON): FeatureCollection { const points: Feature[] = []; if (geojson.type === "FeatureCollection") { featureEach(geojson, function (feature) { coordEach(feature, function (coord) { points.push(point(coord, feature.properties)); }); }); } else if (geojson.type === "Feature") { coordEach(geojson, function (coord) { points.push(point(coord, geojson.properties)); }); } else { // No properties to copy. coordEach(geojson, function (coord) { points.push(point(coord)); }); } return featureCollection(points); } export { explode }; export default explode; ================================================ FILE: packages/turf-explode/package.json ================================================ { "name": "@turf/explode", "version": "7.3.4", "description": "Takes a feature or set of features and returns all positions as points.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "geojson", "geospatial", "coordinates" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-explode/test/in/geometrycollection-0-0.json ================================================ { "type": "GeometryCollection", "geometries": [ { "type": "Point", "coordinates": [100, 0] }, { "type": "LineString", "coordinates": [ [101, 0], [102, 1] ] } ] } ================================================ FILE: packages/turf-explode/test/in/geometrycollection-xyz-0-6.json ================================================ { "type": "GeometryCollection", "geometries": [ { "type": "Point", "coordinates": [100, 0, 3] }, { "type": "LineString", "coordinates": [ [101, 0, 5], [102, 1, 8] ] } ] } ================================================ FILE: packages/turf-explode/test/in/multilinestring-0-5.json ================================================ { "type": "MultiLineString", "coordinates": [ [ [100, 0], [101, 1] ], [ [102, 2], [103, 3] ] ] } ================================================ FILE: packages/turf-explode/test/in/multilinestring-xyz-0-11.json ================================================ { "type": "MultiLineString", "coordinates": [ [ [100, 0, 5.2], [101, 1, 8.1] ], [ [102, 2, 2.3], [103, 3, 7.4] ] ] } ================================================ FILE: packages/turf-explode/test/in/multipoint-0-3.json ================================================ { "type": "MultiPoint", "coordinates": [ [100, 0], [101, 1] ] } ================================================ FILE: packages/turf-explode/test/in/multipoint-xyz-0-9.json ================================================ { "type": "MultiPoint", "coordinates": [ [100, 0, 1], [101, 1, 2] ] } ================================================ FILE: packages/turf-explode/test/in/multipolygon-0-4.json ================================================ { "type": "MultiPolygon", "coordinates": [ [ [ [102, 2], [103, 2], [103, 3], [102, 3], [102, 2] ] ], [ [ [100, 0], [101, 0], [101, 1], [100, 1], [100, 0] ], [ [100.2, 0.2], [100.8, 0.2], [100.8, 0.8], [100.2, 0.8], [100.2, 0.2] ] ] ] } ================================================ FILE: packages/turf-explode/test/in/multipolygon-xyz-0-10.json ================================================ { "type": "MultiPolygon", "coordinates": [ [ [ [102, 2, 1], [103, 2, 1], [103, 3, 1], [102, 3, 1], [102, 2, 1] ] ], [ [ [100, 0, 2], [101, 0, 2], [101, 1, 2], [100, 1, 2], [100, 0, 2] ], [ [100.2, 0.2, 3], [100.8, 0.2, 3], [100.8, 0.8, 3], [100.2, 0.8, 3], [100.2, 0.2, 3] ] ] ] } ================================================ FILE: packages/turf-explode/test/in/one-1-0.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [102, 0.5] }, "properties": { "prop0": "value0" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [102, 0], [103, 1], [104, 0], [105, 1] ] }, "properties": { "prop0": "value0", "prop1": 0 } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [100, 0], [101, 0], [101, 1], [100, 1], [100, 0] ] ] }, "properties": { "prop0": "value0", "prop1": { "this": "that" } } } ] } ================================================ FILE: packages/turf-explode/test/in/one-2-0.json ================================================ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [100, 0], [101, 0], [101, 1], [100, 1], [100, 0] ] ] }, "properties": { "prop0": "value0", "prop1": { "this": "that" } } } ================================================ FILE: packages/turf-explode/test/in/point-0-2.json ================================================ { "type": "Point", "coordinates": [100, 0] } ================================================ FILE: packages/turf-explode/test/in/point-xyz-0-8.json ================================================ { "type": "Point", "coordinates": [100, 0, 1] } ================================================ FILE: packages/turf-explode/test/in/polygon-0-1.json ================================================ { "type": "Polygon", "coordinates": [ [ [100, 0], [101, 0], [101, 1], [100, 1], [100, 0] ] ] } ================================================ FILE: packages/turf-explode/test/in/polygon-with-properties.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.24218749999999, 37.996162679728116], [-88.24218749999999, 53.330872983017066], [-64.3359375, 53.330872983017066], [-64.3359375, 37.996162679728116], [-88.24218749999999, 37.996162679728116] ] ] } } ] } ================================================ FILE: packages/turf-explode/test/in/polygon-xyz-0-7.json ================================================ { "type": "Polygon", "coordinates": [ [ [100, 0, 1], [101, 0], [101, 1, 1], [100, 1, 1], [100, 0, 1] ] ] } ================================================ FILE: packages/turf-explode/test/out/geometrycollection-0-0.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [101, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [102, 1] } } ] } ================================================ FILE: packages/turf-explode/test/out/geometrycollection-xyz-0-6.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100, 0, 3] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [101, 0, 5] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [102, 1, 8] } } ] } ================================================ FILE: packages/turf-explode/test/out/multilinestring-0-5.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [101, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [102, 2] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [103, 3] } } ] } ================================================ FILE: packages/turf-explode/test/out/multilinestring-xyz-0-11.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100, 0, 5.2] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [101, 1, 8.1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [102, 2, 2.3] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [103, 3, 7.4] } } ] } ================================================ FILE: packages/turf-explode/test/out/multipoint-0-3.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [101, 1] } } ] } ================================================ FILE: packages/turf-explode/test/out/multipoint-xyz-0-9.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100, 0, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [101, 1, 2] } } ] } ================================================ FILE: packages/turf-explode/test/out/multipolygon-0-4.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [102, 2] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [103, 2] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [103, 3] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [102, 3] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [102, 2] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [101, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [101, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100.2, 0.2] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100.8, 0.2] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100.8, 0.8] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100.2, 0.8] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100.2, 0.2] } } ] } ================================================ FILE: packages/turf-explode/test/out/multipolygon-xyz-0-10.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [102, 2, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [103, 2, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [103, 3, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [102, 3, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [102, 2, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100, 0, 2] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [101, 0, 2] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [101, 1, 2] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100, 1, 2] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100, 0, 2] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100.2, 0.2, 3] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100.8, 0.2, 3] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100.8, 0.8, 3] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100.2, 0.8, 3] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100.2, 0.2, 3] } } ] } ================================================ FILE: packages/turf-explode/test/out/one-1-0.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "prop0": "value0" }, "geometry": { "type": "Point", "coordinates": [102, 0.5] } }, { "type": "Feature", "properties": { "prop0": "value0", "prop1": 0 }, "geometry": { "type": "Point", "coordinates": [102, 0] } }, { "type": "Feature", "properties": { "prop0": "value0", "prop1": 0 }, "geometry": { "type": "Point", "coordinates": [103, 1] } }, { "type": "Feature", "properties": { "prop0": "value0", "prop1": 0 }, "geometry": { "type": "Point", "coordinates": [104, 0] } }, { "type": "Feature", "properties": { "prop0": "value0", "prop1": 0 }, "geometry": { "type": "Point", "coordinates": [105, 1] } }, { "type": "Feature", "properties": { "prop0": "value0", "prop1": { "this": "that" } }, "geometry": { "type": "Point", "coordinates": [100, 0] } }, { "type": "Feature", "properties": { "prop0": "value0", "prop1": { "this": "that" } }, "geometry": { "type": "Point", "coordinates": [101, 0] } }, { "type": "Feature", "properties": { "prop0": "value0", "prop1": { "this": "that" } }, "geometry": { "type": "Point", "coordinates": [101, 1] } }, { "type": "Feature", "properties": { "prop0": "value0", "prop1": { "this": "that" } }, "geometry": { "type": "Point", "coordinates": [100, 1] } }, { "type": "Feature", "properties": { "prop0": "value0", "prop1": { "this": "that" } }, "geometry": { "type": "Point", "coordinates": [100, 0] } } ] } ================================================ FILE: packages/turf-explode/test/out/one-2-0.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "prop0": "value0", "prop1": { "this": "that" } }, "geometry": { "type": "Point", "coordinates": [100, 0] } }, { "type": "Feature", "properties": { "prop0": "value0", "prop1": { "this": "that" } }, "geometry": { "type": "Point", "coordinates": [101, 0] } }, { "type": "Feature", "properties": { "prop0": "value0", "prop1": { "this": "that" } }, "geometry": { "type": "Point", "coordinates": [101, 1] } }, { "type": "Feature", "properties": { "prop0": "value0", "prop1": { "this": "that" } }, "geometry": { "type": "Point", "coordinates": [100, 1] } }, { "type": "Feature", "properties": { "prop0": "value0", "prop1": { "this": "that" } }, "geometry": { "type": "Point", "coordinates": [100, 0] } } ] } ================================================ FILE: packages/turf-explode/test/out/point-0-2.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100, 0] } } ] } ================================================ FILE: packages/turf-explode/test/out/point-xyz-0-8.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100, 0, 1] } } ] } ================================================ FILE: packages/turf-explode/test/out/polygon-0-1.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [101, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [101, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100, 0] } } ] } ================================================ FILE: packages/turf-explode/test/out/polygon-with-properties.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "Point", "coordinates": [-88.24218749999999, 37.996162679728116] } }, { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "Point", "coordinates": [-88.24218749999999, 53.330872983017066] } }, { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "Point", "coordinates": [-64.3359375, 53.330872983017066] } }, { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "Point", "coordinates": [-64.3359375, 37.996162679728116] } }, { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "Point", "coordinates": [-88.24218749999999, 37.996162679728116] } } ] } ================================================ FILE: packages/turf-explode/test/out/polygon-xyz-0-7.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100, 0, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [101, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [101, 1, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100, 1, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100, 0, 1] } } ] } ================================================ FILE: packages/turf-explode/test.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import tape from "tape"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { explode } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; tape("explode - fixtures", (t) => { fs.readdirSync(directories.in).forEach((filename) => { const name = filename.replace(".json", ""); const features = loadJsonFileSync(directories.in + filename); const exploded = explode(features); if (process.env.REGEN) { writeJsonFileSync(directories.out + filename, exploded); } t.deepEqual(exploded, loadJsonFileSync(directories.out + filename), name); }); t.end(); }); tape("explode - preserve properties", (t) => { const filename = "polygon-with-properties.json"; const features = loadJsonFileSync(directories.in + filename); const exploded = explode(features); if (process.env.REGEN) { writeJsonFileSync(directories.out + filename, exploded); } t.deepEqual( exploded, loadJsonFileSync(directories.out + filename), "properties" ); t.end(); }); ================================================ FILE: packages/turf-explode/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-flatten/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-flatten/README.md ================================================ # @turf/flatten ## flatten Flattens any [GeoJSON][1] to a [FeatureCollection][2] inspired by [geojson-flatten][3]. ### Parameters * `geojson` **[GeoJSON][1]** any valid GeoJSON Object ### Examples ```javascript var multiGeometry = turf.multiPolygon([ [[[102.0, 2.0], [103.0, 2.0], [103.0, 3.0], [102.0, 3.0], [102.0, 2.0]]], [[[100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0]], [[100.2, 0.2], [100.8, 0.2], [100.8, 0.8], [100.2, 0.8], [100.2, 0.2]]] ]); var flatten = turf.flatten(multiGeometry); //addToMap var addToMap = [flatten] ``` Returns **[FeatureCollection][2]\** all Multi-Geometries are flattened into single Features [1]: https://tools.ietf.org/html/rfc7946#section-3 [2]: https://tools.ietf.org/html/rfc7946#section-3.3 [3]: https://github.com/tmcw/geojson-flatten --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/flatten ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-flatten/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { flatten } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); // Define fixtures const directory = path.join(__dirname, "test", "in") + path.sep; let fixtures = fs.readdirSync(directory).map((filename) => { return { name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); // fixtures = fixtures.filter(({name}) => (name === 'Polygon')); /** * Benchmark Results * * FeatureCollection x 678,568 ops/sec ±2.21% (86 runs sampled) * GeometryCollection x 627,806 ops/sec ±1.28% (87 runs sampled) * GeometryObject x 3,209,419 ops/sec ±1.18% (82 runs sampled) * MultiLineString x 3,743,664 ops/sec ±1.87% (85 runs sampled) * MultiPoint x 3,428,413 ops/sec ±5.65% (78 runs sampled) * MultiPolygon x 3,114,204 ops/sec ±4.52% (82 runs sampled) * Polygon x 22,219,812 ops/sec ±0.82% (88 runs sampled) */ const suite = new Benchmark.Suite("turf-flatten"); for (const { geojson, name } of fixtures) { suite.add(name, () => flatten(geojson)); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-flatten/index.ts ================================================ import { flattenEach } from "@turf/meta"; import { featureCollection } from "@turf/helpers"; import type { AllGeoJSON } from "@turf/helpers"; import type { Feature, Point, MultiPoint, LineString, MultiLineString, FeatureCollection, Polygon, MultiPolygon, } from "geojson"; /** * Flattens any {@link GeoJSON} to a {@link FeatureCollection} inspired by [geojson-flatten](https://github.com/tmcw/geojson-flatten). * * @function * @param {GeoJSON} geojson any valid GeoJSON Object * @returns {FeatureCollection} all Multi-Geometries are flattened into single Features * @example * var multiGeometry = turf.multiPolygon([ * [[[102.0, 2.0], [103.0, 2.0], [103.0, 3.0], [102.0, 3.0], [102.0, 2.0]]], * [[[100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0]], * [[100.2, 0.2], [100.8, 0.2], [100.8, 0.8], [100.2, 0.8], [100.2, 0.2]]] * ]); * * var flatten = turf.flatten(multiGeometry); * * //addToMap * var addToMap = [flatten] */ function flatten( geojson: Feature | FeatureCollection | T ): FeatureCollection; function flatten( geojson: Feature | FeatureCollection | T ): FeatureCollection; function flatten( geojson: Feature | FeatureCollection | T ): FeatureCollection; function flatten(geojson: AllGeoJSON): FeatureCollection; function flatten(geojson: AllGeoJSON): FeatureCollection { if (!geojson) throw new Error("geojson is required"); var results: Feature[] = []; flattenEach(geojson, function (feature) { results.push(feature); }); return featureCollection(results); } export { flatten }; export default flatten; ================================================ FILE: packages/turf-flatten/package.json ================================================ { "name": "@turf/flatten", "version": "7.3.4", "description": "Flattens any GeoJSON to a FeatureCollection", "author": "Turf Authors", "contributors": [ "Tom MacWright <@tmcw>", "Denis Carriere <@DenisCarriere>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "geojson", "geography", "gis", "featurecollection" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-flatten/test/in/FeatureCollection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "MultiPoint", "coordinates": [ [100, 0], [101, 1] ] } }, { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [102, 2], [103, 2], [103, 3], [102, 3], [102, 2] ] ], [ [ [100, 0], [101, 0], [101, 1], [100, 1], [100, 0] ], [ [100.2, 0.2], [100.8, 0.2], [100.8, 0.8], [100.2, 0.8], [100.2, 0.2] ] ] ] } }, { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [100, 0], [101, 1] ], [ [102, 2], [103, 3] ] ] } } ] } ================================================ FILE: packages/turf-flatten/test/in/GeometryCollection.geojson ================================================ { "type": "GeometryCollection", "geometries": [ { "type": "MultiLineString", "coordinates": [ [ [100, 0], [101, 1] ], [ [102, 2], [103, 3] ] ] }, { "type": "MultiPoint", "coordinates": [ [100, 0], [101, 1] ] }, { "type": "MultiPolygon", "coordinates": [ [ [ [102, 2], [103, 2], [103, 3], [102, 3], [102, 2] ] ], [ [ [100, 0], [101, 0], [101, 1], [100, 1], [100, 0] ], [ [100.2, 0.2], [100.8, 0.2], [100.8, 0.8], [100.2, 0.8], [100.2, 0.2] ] ] ] } ] } ================================================ FILE: packages/turf-flatten/test/in/GeometryObject.geojson ================================================ { "type": "MultiPolygon", "coordinates": [ [ [ [102, 2], [103, 2], [103, 3], [102, 3], [102, 2] ] ], [ [ [100, 0], [101, 0], [101, 1], [100, 1], [100, 0] ], [ [100.2, 0.2], [100.8, 0.2], [100.8, 0.8], [100.2, 0.8], [100.2, 0.2] ] ] ] } ================================================ FILE: packages/turf-flatten/test/in/MultiLineString.geojson ================================================ { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [100, 0], [101, 1] ], [ [102, 2], [103, 3] ] ] } } ================================================ FILE: packages/turf-flatten/test/in/MultiPoint.geojson ================================================ { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "MultiPoint", "coordinates": [ [100, 0], [101, 1] ] } } ================================================ FILE: packages/turf-flatten/test/in/MultiPolygon.geojson ================================================ { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [102, 2], [103, 2], [103, 3], [102, 3], [102, 2] ] ], [ [ [100, 0], [101, 0], [101, 1], [100, 1], [100, 0] ], [ [100.2, 0.2], [100.8, 0.2], [100.8, 0.8], [100.2, 0.8], [100.2, 0.2] ] ] ] } } ================================================ FILE: packages/turf-flatten/test/in/Polygon.geojson ================================================ { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [102, 2], [103, 2], [103, 3], [102, 3], [102, 2] ] ] } } ================================================ FILE: packages/turf-flatten/test/out/FeatureCollection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "Point", "coordinates": [100, 0] } }, { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "Point", "coordinates": [101, 1] } }, { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [102, 2], [103, 2], [103, 3], [102, 3], [102, 2] ] ] } }, { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [100, 0], [101, 0], [101, 1], [100, 1], [100, 0] ], [ [100.2, 0.2], [100.8, 0.2], [100.8, 0.8], [100.2, 0.8], [100.2, 0.2] ] ] } }, { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "LineString", "coordinates": [ [100, 0], [101, 1] ] } }, { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "LineString", "coordinates": [ [102, 2], [103, 3] ] } } ] } ================================================ FILE: packages/turf-flatten/test/out/GeometryCollection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [100, 0], [101, 1] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [102, 2], [103, 3] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [100, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [101, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [102, 2], [103, 2], [103, 3], [102, 3], [102, 2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [100, 0], [101, 0], [101, 1], [100, 1], [100, 0] ], [ [100.2, 0.2], [100.8, 0.2], [100.8, 0.8], [100.2, 0.8], [100.2, 0.2] ] ] } } ] } ================================================ FILE: packages/turf-flatten/test/out/GeometryObject.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [102, 2], [103, 2], [103, 3], [102, 3], [102, 2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [100, 0], [101, 0], [101, 1], [100, 1], [100, 0] ], [ [100.2, 0.2], [100.8, 0.2], [100.8, 0.8], [100.2, 0.8], [100.2, 0.2] ] ] } } ] } ================================================ FILE: packages/turf-flatten/test/out/MultiLineString.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "LineString", "coordinates": [ [100, 0], [101, 1] ] } }, { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "LineString", "coordinates": [ [102, 2], [103, 3] ] } } ] } ================================================ FILE: packages/turf-flatten/test/out/MultiPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "Point", "coordinates": [100, 0] } }, { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "Point", "coordinates": [101, 1] } } ] } ================================================ FILE: packages/turf-flatten/test/out/MultiPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [102, 2], [103, 2], [103, 3], [102, 3], [102, 2] ] ] } }, { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [100, 0], [101, 0], [101, 1], [100, 1], [100, 0] ], [ [100.2, 0.2], [100.8, 0.2], [100.8, 0.8], [100.2, 0.8], [100.2, 0.2] ] ] } } ] } ================================================ FILE: packages/turf-flatten/test/out/Polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [102, 2], [103, 2], [103, 3], [102, 3], [102, 2] ] ] } } ] } ================================================ FILE: packages/turf-flatten/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { flatten } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; let fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename: filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); // fixtures = fixtures.filter(({name}) => (name === 'FeatureCollection')); test("flatten", (t) => { fixtures.forEach((fixture) => { const filename = fixture.filename; const name = fixture.name; const geojson = fixture.geojson; const flattened = flatten(geojson); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, flattened); t.deepEqual(flattened, loadJsonFileSync(directories.out + filename), name); t.equal( flattened.type, "FeatureCollection", name + ": feature outputs a featurecollection" ); switch (geojson.geometry ? geojson.geometry.type : geojson.type) { case "Point": case "LineString": case "Polygon": break; default: t.true( flattened.features.length > 1, name + ": featureCollection has multiple features with feature input" ); } }); t.end(); }); ================================================ FILE: packages/turf-flatten/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-flatten/types.ts ================================================ import { FeatureCollection, Point, LineString } from "geojson"; import { multiPoint, multiLineString, geometryCollection, // Typescript types } from "@turf/helpers"; import { flatten } from "./index.js"; const multiPt = multiPoint([ [0, 0], [10, 10], ]); const multiLine = multiLineString([ [ [20, 20], [30, 30], ], [ [0, 0], [10, 10], ], ]); let points: FeatureCollection = flatten(multiPt); let lines: FeatureCollection = flatten(multiLine); points = flatten(multiPt.geometry); lines = flatten(multiLine.geometry); flatten(geometryCollection([multiPt.geometry, multiLine.geometry])); ================================================ FILE: packages/turf-flip/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-flip/README.md ================================================ # @turf/flip ## flip Takes input features and flips all of their coordinates from `[x, y]` to `[y, x]`. ### Parameters * `geojson` **[GeoJSON][1]** input features * `options` **[Object][2]** Optional parameters (optional, default `{}`) * `options.mutate` **[boolean][3]** allows GeoJSON input to be mutated (significant performance increase if true) (optional, default `false`) ### Examples ```javascript var serbia = turf.point([20.566406, 43.421008]); var saudiArabia = turf.flip(serbia); //addToMap var addToMap = [serbia, saudiArabia]; ``` Returns **[GeoJSON][1]** a feature or set of features of the same type as `input` with flipped coordinates [1]: https://tools.ietf.org/html/rfc7946#section-3 [2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/flip ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-flip/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { flip } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); /** * Benchmark Results * * feature-collection-points x 7,937,394 ops/sec ±1.43% (89 runs sampled) * linestring x 6,496,534 ops/sec ±1.75% (86 runs sampled) * point-with-elevation x 10,779,300 ops/sec ±2.08% (84 runs sampled) * polygon x 4,454,602 ops/sec ±3.45% (86 runs sampled) */ const suite = new Benchmark.Suite("turf-flip"); for (const { name, geojson } of fixtures) { suite.add(name, () => flip(geojson)); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-flip/index.ts ================================================ import { coordEach } from "@turf/meta"; import { isObject, AllGeoJSON } from "@turf/helpers"; import { clone } from "@turf/clone"; /** * Takes input features and flips all of their coordinates from `[x, y]` to `[y, x]`. * * @function * @param {GeoJSON} geojson input features * @param {Object} [options={}] Optional parameters * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance increase if true) * @returns {GeoJSON} a feature or set of features of the same type as `input` with flipped coordinates * @example * var serbia = turf.point([20.566406, 43.421008]); * * var saudiArabia = turf.flip(serbia); * * //addToMap * var addToMap = [serbia, saudiArabia]; */ function flip( geojson: T, options?: { mutate?: boolean; } ): T { // Optional parameters options = options || {}; if (!isObject(options)) throw new Error("options is invalid"); const mutate = options.mutate ?? false; if (!geojson) throw new Error("geojson is required"); // ensure that we don't modify features in-place and changes to the // output do not change the previous feature, including changes to nested // properties. if (mutate === false || mutate === undefined) geojson = clone(geojson); coordEach(geojson, function (coord) { var x = coord[0]; var y = coord[1]; coord[0] = y; coord[1] = x; }); return geojson; } export { flip }; export default flip; ================================================ FILE: packages/turf-flip/package.json ================================================ { "name": "@turf/flip", "version": "7.3.4", "description": "Takes input features and flips all of their coordinates.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "geojson", "coordinate", "flip" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/clone": "workspace:*", "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-flip/test/in/feature-collection-points.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-41.40625, 38.54816542304656] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.4609375, 13.923403897723347] } } ] } ================================================ FILE: packages/turf-flip/test/in/linestring.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [13.359375, 50.51342652633956], [13.359375, 40.97989806962013], [35.15625, 30.751277776257812], [58.00781249999999, 30.751277776257812], [63.984375, 18.312810846425442] ] } } ================================================ FILE: packages/turf-flip/test/in/point-with-elevation.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [77.34374999999999, 43.58039085560784, 3000] } } ================================================ FILE: packages/turf-flip/test/in/polygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [2.8125, 41.50857729743935], [-2.109375, 32.24997445586331], [7.3828125, 18.979025953255267], [22.148437499999996, 20.96143961409684], [24.960937499999996, 33.7243396617476], [21.09375, 41.50857729743935], [14.0625, 46.558860303117164], [2.8125, 41.50857729743935] ] ] } } ================================================ FILE: packages/turf-flip/test/out/feature-collection-points.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [38.54816542304656, -41.40625] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [13.923403897723347, 2.4609375] } } ] } ================================================ FILE: packages/turf-flip/test/out/linestring.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [50.51342652633956, 13.359375], [40.97989806962013, 13.359375], [30.751277776257812, 35.15625], [30.751277776257812, 58.00781249999999], [18.312810846425442, 63.984375] ] } } ================================================ FILE: packages/turf-flip/test/out/point-with-elevation.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [43.58039085560784, 77.34374999999999, 3000] } } ================================================ FILE: packages/turf-flip/test/out/polygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [41.50857729743935, 2.8125], [32.24997445586331, -2.109375], [18.979025953255267, 7.3828125], [20.96143961409684, 22.148437499999996], [33.7243396617476, 24.960937499999996], [41.50857729743935, 21.09375], [46.558860303117164, 14.0625], [41.50857729743935, 2.8125] ] ] } } ================================================ FILE: packages/turf-flip/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { point } from "@turf/helpers"; import { flip } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("turf-flip", (t) => { fixtures.forEach((fixture) => { const name = fixture.name; const filename = fixture.filename; const geojson = fixture.geojson; const results = flip(geojson); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEqual(loadJsonFileSync(directories.out + filename), results, name); }); t.end(); }); test("turf-flip - handle input mutation", (t) => { const geojson = point([120, 40]); flip(geojson); t.deepEqual(geojson, point([120, 40]), "does not mutate input"); flip(geojson, { mutate: true }); t.deepEqual(geojson, point([40, 120]), "does mutate input"); t.end(); }); ================================================ FILE: packages/turf-flip/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-flip/types.ts ================================================ import { featureCollection, point, lineString, geometryCollection, } from "@turf/helpers"; import { flip } from "./index.js"; const pt = point([120.1234567, 40.1234567]); const ptGeom = pt.geometry; const line = lineString([ [20, 80], [50, 40], ]); const lineGeom = line.geometry; const points = featureCollection([pt]); const lines = featureCollection([line]); const geomCollection = geometryCollection([ptGeom, lineGeom]); flip(pt); flip(ptGeom); flip(line); flip(lineGeom); flip(lines); flip(points); flip(geomCollection, { mutate: true }); ================================================ FILE: packages/turf-geojson-rbush/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-geojson-rbush/README.md ================================================ # @turf/geojson-rbush ## rbush ### insert [insert][1] #### Parameters * `feature` **[Feature][2]** insert single GeoJSON Feature #### Examples ```javascript var poly = turf.polygon([[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]]); tree.insert(poly) ``` Returns **RBush** GeoJSON RBush ### load [load][3] #### Parameters * `features` **([FeatureCollection][4] | [Array][5]<[Feature][2]>)** load entire GeoJSON FeatureCollection #### Examples ```javascript var polys = turf.polygons([ [[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]], [[[-93, 32], [-83, 32], [-83, 39], [-93, 39], [-93, 32]]] ]); tree.load(polys); ``` Returns **RBush** GeoJSON RBush ### remove [remove][6] #### Parameters * `feature` **[Feature][2]** remove single GeoJSON Feature * `equals` **[Function][7]** Pass a custom equals function to compare by value for removal. #### Examples ```javascript var poly = turf.polygon([[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]]); tree.remove(poly); ``` Returns **RBush** GeoJSON RBush ### clear [clear][6] #### Examples ```javascript tree.clear() ``` Returns **RBush** GeoJSON Rbush ### search [search][8] #### Parameters * `geojson` **([BBox][9] | [FeatureCollection][4] | [Feature][2])** search with GeoJSON #### Examples ```javascript var poly = turf.polygon([[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]]); tree.search(poly); ``` Returns **[FeatureCollection][4]** all features that intersects with the given GeoJSON. ### collides [collides][10] #### Parameters * `geojson` **([BBox][9] | [FeatureCollection][4] | [Feature][2])** collides with GeoJSON #### Examples ```javascript var poly = turf.polygon([[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]]); tree.collides(poly); ``` Returns **[boolean][11]** true if there are any items intersecting the given GeoJSON, otherwise false. ### all [all][8] #### Examples ```javascript tree.all() ``` Returns **[FeatureCollection][4]** all the features in RBush ### toJSON [toJSON][12] #### Examples ```javascript var exported = tree.toJSON() ``` Returns **any** export data as JSON object ### fromJSON [fromJSON][12] #### Parameters * `json` **any** import previously exported data #### Examples ```javascript var exported = { "children": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [110, 50] }, "properties": {}, "bbox": [110, 50, 110, 50] } ], "height": 1, "leaf": true, "minX": 110, "minY": 50, "maxX": 110, "maxY": 50 } tree.fromJSON(exported) ``` Returns **RBush** GeoJSON RBush ## rbush GeoJSON implementation of [RBush][13] spatial index. ### Parameters * `maxEntries` **[number][14]** defines the maximum number of entries in a tree node. 9 (used by default) is a reasonable choice for most applications. Higher value means faster insertion and slower search, and vice versa. (optional, default `9`) ### Examples ```javascript var geojsonRbush = require('geojson-rbush').default; var tree = geojsonRbush(); ``` Returns **RBush** GeoJSON RBush ### insert [insert][1] #### Parameters * `feature` **[Feature][2]** insert single GeoJSON Feature #### Examples ```javascript var poly = turf.polygon([[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]]); tree.insert(poly) ``` Returns **RBush** GeoJSON RBush ### load [load][3] #### Parameters * `features` **([FeatureCollection][4] | [Array][5]<[Feature][2]>)** load entire GeoJSON FeatureCollection #### Examples ```javascript var polys = turf.polygons([ [[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]], [[[-93, 32], [-83, 32], [-83, 39], [-93, 39], [-93, 32]]] ]); tree.load(polys); ``` Returns **RBush** GeoJSON RBush ### remove [remove][6] #### Parameters * `feature` **[Feature][2]** remove single GeoJSON Feature * `equals` **[Function][7]** Pass a custom equals function to compare by value for removal. #### Examples ```javascript var poly = turf.polygon([[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]]); tree.remove(poly); ``` Returns **RBush** GeoJSON RBush ### clear [clear][6] #### Examples ```javascript tree.clear() ``` Returns **RBush** GeoJSON Rbush ### search [search][8] #### Parameters * `geojson` **([BBox][9] | [FeatureCollection][4] | [Feature][2])** search with GeoJSON #### Examples ```javascript var poly = turf.polygon([[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]]); tree.search(poly); ``` Returns **[FeatureCollection][4]** all features that intersects with the given GeoJSON. ### collides [collides][10] #### Parameters * `geojson` **([BBox][9] | [FeatureCollection][4] | [Feature][2])** collides with GeoJSON #### Examples ```javascript var poly = turf.polygon([[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]]); tree.collides(poly); ``` Returns **[boolean][11]** true if there are any items intersecting the given GeoJSON, otherwise false. ### all [all][8] #### Examples ```javascript tree.all() ``` Returns **[FeatureCollection][4]** all the features in RBush ### toJSON [toJSON][12] #### Examples ```javascript var exported = tree.toJSON() ``` Returns **any** export data as JSON object ### fromJSON [fromJSON][12] #### Parameters * `json` **any** import previously exported data #### Examples ```javascript var exported = { "children": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [110, 50] }, "properties": {}, "bbox": [110, 50, 110, 50] } ], "height": 1, "leaf": true, "minX": 110, "minY": 50, "maxX": 110, "maxY": 50 } tree.fromJSON(exported) ``` Returns **RBush** GeoJSON RBush [1]: https://github.com/mourner/rbush#data-format [2]: https://tools.ietf.org/html/rfc7946#section-3.2 [3]: https://github.com/mourner/rbush#bulk-inserting-data [4]: https://tools.ietf.org/html/rfc7946#section-3.3 [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array [6]: https://github.com/mourner/rbush#removing-data [7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/function [8]: https://github.com/mourner/rbush#search [9]: https://tools.ietf.org/html/rfc7946#section-5 [10]: https://github.com/mourner/rbush#collisions [11]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean [12]: https://github.com/mourner/rbush#export-and-import [13]: https://github.com/mourner/rbush#rbush [14]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/geojson-rbush ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-geojson-rbush/bench.ts ================================================ import Benchmark from "benchmark"; import { randomPoint, randomPolygon } from "@turf/random"; import { geojsonRbush } from "./index.js"; // Fixtures const points = randomPoint(3); const point = points.features[0]; const polygons = randomPolygon(3); const polygon = polygons.features[0]; // Load trees before (used to benchmark search) const pointsTree = geojsonRbush(); pointsTree.load(points); const polygonsTree = geojsonRbush(); polygonsTree.load(polygons); /** * Benchmark Results * * rbush.points x 313,979 ops/sec ±10.60% (67 runs sampled) * rbush.polygons x 428,333 ops/sec ±1.69% (70 runs sampled) * search.points x 5,986,675 ops/sec ±7.95% (77 runs sampled) * search.polygons x 6,481,248 ops/sec ±0.93% (90 runs sampled) */ new Benchmark.Suite("geojson-rbush") .add("rbush.points", () => { const tree = geojsonRbush(); tree.load(points); }) .add("rbush.polygons", () => { const tree = geojsonRbush(); tree.load(polygons); }) .add("search.points", () => pointsTree.search(point)) .add("search.polygons", () => polygonsTree.search(polygon)) .on("cycle", (e: any) => console.log(String(e.target))) .on("complete", () => {}) .run(); ================================================ FILE: packages/turf-geojson-rbush/index.ts ================================================ import rbush from "rbush"; import { featureCollection } from "@turf/helpers"; import { featureEach } from "@turf/meta"; import { bbox as turfBBox } from "@turf/bbox"; import { BBox, Feature, FeatureCollection, GeoJsonProperties, Geometry, } from "geojson"; /** * @module rbush */ /** * Converts GeoJSON to {minX, minY, maxX, maxY} schema * * @memberof rbush * @private * @param {BBox|FeatureCollection|Feature} geojson feature(s) to retrieve BBox from * @returns {Object} converted to {minX, minY, maxX, maxY} */ function toBBox(geojson: BBox | FeatureCollection | Feature) { var bbox; if ((geojson as any).bbox) bbox = (geojson as any).bbox; else if (Array.isArray(geojson) && geojson.length === 4) bbox = geojson; else if (Array.isArray(geojson) && geojson.length === 6) bbox = [geojson[0], geojson[1], geojson[3], geojson[4]]; else if (geojson.type === "Feature") bbox = turfBBox(geojson); else if (geojson.type === "FeatureCollection") bbox = turfBBox(geojson); else throw new Error("invalid geojson"); return { minX: bbox[0], minY: bbox[1], maxX: bbox[2], maxY: bbox[3], }; } class RBush { private tree: rbush>; constructor(maxEntries = 9) { this.tree = new rbush>(maxEntries); // When we load features into the underlying rbush instance, it has to be able to correctly // handle GeoJSON bbox values while inserting into the data structure. The rest of the API // can just be a passthrough wrapping class. this.tree.toBBox = toBBox; } /** * [insert](https://github.com/mourner/rbush#data-format) * * @memberof rbush * @param {Feature} feature insert single GeoJSON Feature * @returns {RBush} GeoJSON RBush * @example * var poly = turf.polygon([[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]]); * tree.insert(poly) */ insert(feature: Feature): RBush { if (feature.type !== "Feature") throw new Error("invalid feature"); feature.bbox = feature.bbox ? feature.bbox : turfBBox(feature); this.tree.insert(feature); return this; } /** * [load](https://github.com/mourner/rbush#bulk-inserting-data) * * @memberof rbush * @param {FeatureCollection|Array} features load entire GeoJSON FeatureCollection * @returns {RBush} GeoJSON RBush * @example * var polys = turf.polygons([ * [[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]], * [[[-93, 32], [-83, 32], [-83, 39], [-93, 39], [-93, 32]]] * ]); * tree.load(polys); */ load(features: FeatureCollection | Feature[]): RBush { var load: Feature[] = []; // Load an Array of Features if (Array.isArray(features)) { features.forEach(function (feature) { if (feature.type !== "Feature") throw new Error("invalid features"); feature.bbox = feature.bbox ? feature.bbox : turfBBox(feature); load.push(feature); }); } else { // Load a FeatureCollection featureEach(features, function (feature) { if (feature.type !== "Feature") throw new Error("invalid features"); feature.bbox = feature.bbox ? feature.bbox : turfBBox(feature); load.push(feature); }); } this.tree.load(load); return this; } /** * [remove](https://github.com/mourner/rbush#removing-data) * * @memberof rbush * @param {Feature} feature remove single GeoJSON Feature * @param {Function} equals Pass a custom equals function to compare by value for removal. * @returns {RBush} GeoJSON RBush * @example * var poly = turf.polygon([[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]]); * * tree.remove(poly); */ remove( feature: Feature, equals?: (a: Feature, b: Feature) => boolean ) { if (feature.type !== "Feature") throw new Error("invalid feature"); feature.bbox = feature.bbox ? feature.bbox : turfBBox(feature); this.tree.remove(feature, equals); return this; } /** * [clear](https://github.com/mourner/rbush#removing-data) * * @memberof rbush * @returns {RBush} GeoJSON Rbush * @example * tree.clear() */ clear() { this.tree.clear(); return this; } /** * [search](https://github.com/mourner/rbush#search) * * @memberof rbush * @param {BBox|FeatureCollection|Feature} geojson search with GeoJSON * @returns {FeatureCollection} all features that intersects with the given GeoJSON. * @example * var poly = turf.polygon([[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]]); * * tree.search(poly); */ search(geojson: Feature | FeatureCollection | BBox): FeatureCollection { var features = this.tree.search(toBBox(geojson)); return featureCollection(features); } /** * [collides](https://github.com/mourner/rbush#collisions) * * @memberof rbush * @param {BBox|FeatureCollection|Feature} geojson collides with GeoJSON * @returns {boolean} true if there are any items intersecting the given GeoJSON, otherwise false. * @example * var poly = turf.polygon([[[-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41]]]); * * tree.collides(poly); */ collides(geojson: Feature | FeatureCollection | BBox): boolean { return this.tree.collides(toBBox(geojson)); } /** * [all](https://github.com/mourner/rbush#search) * * @memberof rbush * @returns {FeatureCollection} all the features in RBush * @example * tree.all() */ all() { const features = this.tree.all(); return featureCollection(features); } /** * [toJSON](https://github.com/mourner/rbush#export-and-import) * * @memberof rbush * @returns {any} export data as JSON object * @example * var exported = tree.toJSON() */ toJSON() { return this.tree.toJSON(); } /** * [fromJSON](https://github.com/mourner/rbush#export-and-import) * * @memberof rbush * @param {any} json import previously exported data * @returns {RBush} GeoJSON RBush * @example * var exported = { * "children": [ * { * "type": "Feature", * "geometry": { * "type": "Point", * "coordinates": [110, 50] * }, * "properties": {}, * "bbox": [110, 50, 110, 50] * } * ], * "height": 1, * "leaf": true, * "minX": 110, * "minY": 50, * "maxX": 110, * "maxY": 50 * } * tree.fromJSON(exported) */ fromJSON(json: any): RBush { this.tree.fromJSON(json); return this; } } /** * GeoJSON implementation of [RBush](https://github.com/mourner/rbush#rbush) spatial index. * * @function rbush * @param {number} [maxEntries=9] defines the maximum number of entries in a tree node. 9 (used by default) is a * reasonable choice for most applications. Higher value means faster insertion and slower search, and vice versa. * @returns {RBush} GeoJSON RBush * @example * var geojsonRbush = require('geojson-rbush').default; * var tree = geojsonRbush(); */ function geojsonRbush< G extends Geometry, P extends GeoJsonProperties = GeoJsonProperties, >(maxEntries?: number) { return new RBush(maxEntries); } export { geojsonRbush }; export default geojsonRbush; ================================================ FILE: packages/turf-geojson-rbush/package.json ================================================ { "name": "@turf/geojson-rbush", "version": "7.3.4", "description": "GeoJSON implementation of RBush", "author": "Turf Authors", "contributors": [ "Vladimir Agafonkin <@mourner>", "Denis Carriere <@DenisCarriere>", "Jordan Rousseau <@jvrousseau>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "geojson", "index", "tree", "spatial", "rbush" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/bbox-polygon": "workspace:*", "@turf/random": "workspace:*", "@types/benchmark": "^2.1.5", "@types/rbush": "^3.0.4", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/bbox": "workspace:*", "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "rbush": "^3.0.1", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-geojson-rbush/test/in/linestrings.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-121.9921875, 41.77131167976407], [-112.1484375, 49.15296965617042], [-95.2734375, 49.15296965617042] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-101.953125, 34.016241889667015], [-88.9453125, 40.17887331434696], [-78.046875, 50.064191736659104] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-108.6328125, 42.032974332441405], [-102.65625, 39.36827914916014], [-95.97656249999999, 39.36827914916014] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-71.71875, 39.842286020743394], [-69.169921875, 35.96022296929667], [-66.796875, 31.952162238024975] ] } } ] } ================================================ FILE: packages/turf-geojson-rbush/test/in/points.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-86.8359375, 42.8115217450979] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-67.5, 48.69096039092549] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-106.171875, 46.800059446787316] } } ] } ================================================ FILE: packages/turf-geojson-rbush/test/in/polygons.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93, 32], [-83, 32], [-83, 39], [-93, 39], [-93, 32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-97.646484375, 43.197167282501276], [-88.681640625, 43.197167282501276], [-88.681640625, 48.28319289548349], [-97.646484375, 48.28319289548349], [-97.646484375, 43.197167282501276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.8671875, 36.87962060502676], [-75.89355468749999, 36.87962060502676], [-75.89355468749999, 45.1510532655634], [-93.8671875, 45.1510532655634], [-93.8671875, 36.87962060502676] ] ] } } ] } ================================================ FILE: packages/turf-geojson-rbush/test/out/all.linestrings.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-121.9921875, 41.77131167976407], [-112.1484375, 49.15296965617042], [-95.2734375, 49.15296965617042] ] }, "bbox": [-121.9921875, 41.77131167976407, -95.2734375, 49.15296965617042] }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-101.953125, 34.016241889667015], [-88.9453125, 40.17887331434696], [-78.046875, 50.064191736659104] ] }, "bbox": [-101.953125, 34.016241889667015, -78.046875, 50.064191736659104] }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-108.6328125, 42.032974332441405], [-102.65625, 39.36827914916014], [-95.97656249999999, 39.36827914916014] ] }, "bbox": [-108.6328125, 39.36827914916014, -95.97656249999999, 42.032974332441405] }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-71.71875, 39.842286020743394], [-69.169921875, 35.96022296929667], [-66.796875, 31.952162238024975] ] }, "bbox": [-71.71875, 31.952162238024975, -66.796875, 39.842286020743394] } ] } ================================================ FILE: packages/turf-geojson-rbush/test/out/all.points.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-86.8359375, 42.8115217450979] }, "bbox": [-86.8359375, 42.8115217450979, -86.8359375, 42.8115217450979] }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-67.5, 48.69096039092549] }, "bbox": [-67.5, 48.69096039092549, -67.5, 48.69096039092549] }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-106.171875, 46.800059446787316] }, "bbox": [-106.171875, 46.800059446787316, -106.171875, 46.800059446787316] } ] } ================================================ FILE: packages/turf-geojson-rbush/test/out/all.polygons.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41] ] ] }, "bbox": [-78, 41, -67, 48] }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93, 32], [-83, 32], [-83, 39], [-93, 39], [-93, 32] ] ] }, "bbox": [-93, 32, -83, 39] }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-97.646484375, 43.197167282501276], [-88.681640625, 43.197167282501276], [-88.681640625, 48.28319289548349], [-97.646484375, 48.28319289548349], [-97.646484375, 43.197167282501276] ] ] }, "bbox": [-97.646484375, 43.197167282501276, -88.681640625, 48.28319289548349] }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.8671875, 36.87962060502676], [-75.89355468749999, 36.87962060502676], [-75.89355468749999, 45.1510532655634], [-93.8671875, 45.1510532655634], [-93.8671875, 36.87962060502676] ] ] }, "bbox": [-93.8671875, 36.87962060502676, -75.89355468749999, 45.1510532655634] } ] } ================================================ FILE: packages/turf-geojson-rbush/test/out/search.linestrings.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-121.9921875, 41.77131167976407], [-112.1484375, 49.15296965617042], [-95.2734375, 49.15296965617042] ] }, "bbox": [-121.9921875, 41.77131167976407, -95.2734375, 49.15296965617042] }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-101.953125, 34.016241889667015], [-88.9453125, 40.17887331434696], [-78.046875, 50.064191736659104] ] }, "bbox": [-101.953125, 34.016241889667015, -78.046875, 50.064191736659104] }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-108.6328125, 42.032974332441405], [-102.65625, 39.36827914916014], [-95.97656249999999, 39.36827914916014] ] }, "bbox": [-108.6328125, 39.36827914916014, -95.97656249999999, 42.032974332441405] } ] } ================================================ FILE: packages/turf-geojson-rbush/test/out/search.points.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-86.8359375, 42.8115217450979] }, "bbox": [-86.8359375, 42.8115217450979, -86.8359375, 42.8115217450979] } ] } ================================================ FILE: packages/turf-geojson-rbush/test/out/search.polygons.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41] ] ] }, "bbox": [-78, 41, -67, 48] }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.8671875, 36.87962060502676], [-75.89355468749999, 36.87962060502676], [-75.89355468749999, 45.1510532655634], [-93.8671875, 45.1510532655634], [-93.8671875, 36.87962060502676] ] ] }, "bbox": [-93.8671875, 36.87962060502676, -75.89355468749999, 45.1510532655634] } ] } ================================================ FILE: packages/turf-geojson-rbush/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { bboxPolygon } from "@turf/bbox-polygon"; import { featureCollection, polygons } from "@turf/helpers"; import { geojsonRbush } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("geojson-rbush", (t) => { for (const fixture of fixtures) { const name = fixture.name; const filename = fixture.filename; const geojson = fixture.geojson; const tree = geojsonRbush(); tree.load(geojson as any); // Retrive all features inside the RBush index const all = tree.all(); // Search using the first item in the FeatureCollection const search = tree.search((geojson as any).features[0]); if (process.env.REGEN) { writeJsonFileSync(directories.out + "all." + filename, all); writeJsonFileSync(directories.out + "search." + filename, search); } t.deepEqual( all, loadJsonFileSync(directories.out + "all." + filename), "all." + name ); t.deepEqual( search, loadJsonFileSync(directories.out + "search." + filename), "search." + name ); } t.end(); }); test("geojson-rbush -- bbox", (t) => { const tree = geojsonRbush(); tree.insert(bboxPolygon([-150, -60, 150, 60])); t.equal(tree.collides([-140, -50, 140, 50]), true); t.equal(tree.search([-140, -50, 140, 50]).features.length, 1); t.equal(tree.search(bboxPolygon([-150, -60, 150, 60])).features.length, 1); t.equal( tree.search(featureCollection([bboxPolygon([-150, -60, 150, 60])])).features .length, 1 ); t.equal(tree.collides([-180, -80, -170, -60]), false); // Errors t.throws(() => tree.search("foo" as any)); t.end(); }); test("geojson-rbush -- fromJSON", (t) => { const tree = geojsonRbush(); const poly = bboxPolygon([-150, -60, 150, 60]); tree.insert(poly); const newTree = geojsonRbush(); newTree.fromJSON(tree.toJSON()); t.equal(newTree.all().features.length, 1); newTree.remove(poly); t.equal(newTree.all().features.length, 0); t.end(); }); test("geojson-rbush -- Array of Features -- Issue #5", (t) => { // https://github.com/DenisCarriere/geojson-rbush/issues/5 const tree = geojsonRbush(); const polys = polygons([ [ [ [-78, 41], [-67, 41], [-67, 48], [-78, 48], [-78, 41], ], ], [ [ [-93, 32], [-83, 32], [-83, 39], [-93, 39], [-93, 32], ], ], ]); // Load Feature Collection tree.load(polys); t.equal(tree.all().features.length, 2); // Load Array of Features tree.load(polys.features); t.equal(tree.all().features.length, 4); t.end(); }); ================================================ FILE: packages/turf-geojson-rbush/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-geojson-rbush/types.ts ================================================ import { point, polygon, featureCollection } from "@turf/helpers"; import { BBox, Point, Polygon } from "geojson"; import { geojsonRbush as rbush } from "./index.js"; // Fixtures const bbox: BBox = [-180, -90, 180, 90]; const pt = point([0, 0]); const points = featureCollection([pt, pt]); const poly = polygon([ [ [0, 0], [1, 1], [1, 1], [0, 0], ], ]); const polygons = featureCollection([poly, poly]); // Initialize GeoJSON RBush Tree const tree = rbush(); // Load Tree with a FeatureCollection tree.load(points); tree.load(polygons); // Insert by Feature tree.insert(pt); tree.insert(poly); // Find All (returns FeatureCollection) const all = tree.all(); // Search by Feature (returns FeatureCollection) const search = tree.search(poly); // Collides by Feature (returns FeatureCollection) const collides = tree.collides(poly); // Remove by Feature tree.remove(pt); tree.remove(poly); // BBox support tree.search(bbox); tree.collides(bbox); ================================================ FILE: packages/turf-great-circle/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-great-circle/README.md ================================================ # @turf/great-circle ## greatCircle Calculate great circles routes as [LineString][1] or [MultiLineString][2]. If the `start` and `end` points span the antimeridian, the resulting feature will be split into a `MultiLineString`. If the `start` and `end` positions are the same then a `LineString` will be returned with duplicate coordinates the length of the `npoints` option. ### Parameters * `start` **[Coord][3]** source point feature * `end` **[Coord][3]** destination point feature * `options` **[Object][4]** Optional parameters (optional, default `{}`) * `options.properties` **[Object][4]** line feature properties (optional, default `{}`) * `options.npoints` **[number][5]** number of points (optional, default `100`) * `options.offset` **[number][5]** offset controls the likelyhood that lines will be split which cross the dateline. The higher the number the more likely. (optional, default `10`) ### Examples ```javascript var start = turf.point([-122, 48]); var end = turf.point([-77, 39]); var greatCircle = turf.greatCircle(start, end, {properties: {name: 'Seattle to DC'}}); //addToMap var addToMap = [start, end, greatCircle] ``` Returns **[Feature][6]<([LineString][1] | [MultiLineString][2])>** great circle line feature [1]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.5 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.1 [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [6]: https://tools.ietf.org/html/rfc7946#section-3.2 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/great-circle ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-great-circle/bench.ts ================================================ import Benchmark from "benchmark"; import { point } from "@turf/helpers"; import { greatCircle } from "./index.js"; const point1 = point([-75, 45]); const point2 = point([30, 45]); const suite = new Benchmark.Suite("turf-great-circle"); suite .add("greatCircle", () => { greatCircle(point1, point2); }) .on("cycle", (e: any) => console.log(String(e.target))) .run(); ================================================ FILE: packages/turf-great-circle/index.ts ================================================ import type { Feature, GeoJsonProperties, LineString, MultiLineString, Point, Position, } from "geojson"; import { lineString } from "@turf/helpers"; import { getCoord } from "@turf/invariant"; import { GreatCircle } from "arc"; /** * Calculate great circles routes as {@link LineString} or {@link MultiLineString}. * If the `start` and `end` points span the antimeridian, the resulting feature will * be split into a `MultiLineString`. If the `start` and `end` positions are the same * then a `LineString` will be returned with duplicate coordinates the length of the `npoints` option. * * @name greatCircle * @param {Coord} start source point feature * @param {Coord} end destination point feature * @param {Object} [options={}] Optional parameters * @param {Object} [options.properties={}] line feature properties * @param {number} [options.npoints=100] number of points * @param {number} [options.offset=10] offset controls the likelyhood that lines will * be split which cross the dateline. The higher the number the more likely. * @returns {Feature} great circle line feature * @example * var start = turf.point([-122, 48]); * var end = turf.point([-77, 39]); * * var greatCircle = turf.greatCircle(start, end, {properties: {name: 'Seattle to DC'}}); * * //addToMap * var addToMap = [start, end, greatCircle] */ function greatCircle( start: Feature | Point | Position, end: Feature | Point | Position, options: { properties?: GeoJsonProperties; npoints?: number; offset?: number; } = {} ): Feature { // Optional parameters if (typeof options !== "object") throw new Error("options is invalid"); const { properties = {}, npoints = 100, offset = 10 } = options; const startCoord = getCoord(start); const endCoord = getCoord(end); if (startCoord[0] === endCoord[0] && startCoord[1] === endCoord[1]) { const arr = Array(npoints).fill([startCoord[0], startCoord[1]]); return lineString(arr, properties); } const generator = new GreatCircle( { x: startCoord[0], y: startCoord[1] }, { x: endCoord[0], y: endCoord[1] }, properties || {} ); const line = generator.Arc(npoints, { offset: offset }); return line.json() as Feature< LineString | MultiLineString, GeoJsonProperties >; } export { greatCircle }; export default greatCircle; ================================================ FILE: packages/turf-great-circle/package.json ================================================ { "name": "@turf/great-circle", "version": "7.3.4", "description": "Calculate great circles routes as LineString or MultiLineString.", "author": "Turf Authors", "contributors": [ "Dane Springmeyer <@springmeyer>", "Stepan Kuzmin <@stepankuzmin>", "Denis Carriere <@DenisCarriere>", "Thomas Hervey <@thomas-hervey>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "arc", "line", "great", "circle" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", "arc": "^0.2.0", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-great-circle/test/in/basic.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122, 48] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [28.125, 43.32517767999296] } } ] } ================================================ FILE: packages/turf-great-circle/test/out/basic.geojson ================================================ { "type": "FeatureCollection", "features": [ { "geometry": { "type": "LineString", "coordinates": [ [-122, 48], [-121.526078, 48.798446], [-121.036843, 49.594886], [-120.531386, 50.389196], [-120.00873, 51.181242], [-119.467827, 51.970877], [-118.907551, 52.757946], [-118.326688, 53.542278], [-117.723935, 54.323689], [-117.097886, 55.10198], [-116.447022, 55.876934], [-115.769709, 56.648315], [-115.064179, 57.415865], [-114.328521, 58.179305], [-113.56067, 58.938327], [-112.758394, 59.692598], [-111.919276, 60.441748], [-111.0407, 61.185378], [-110.119838, 61.923043], [-109.153629, 62.65426], [-108.138765, 63.378492], [-107.071672, 64.095153], [-105.948495, 64.803592], [-104.765084, 65.503093], [-103.516979, 66.192866], [-102.199407, 66.872037], [-100.807275, 67.539642], [-99.335183, 68.194617], [-97.777438, 68.835785], [-96.128094, 69.461851], [-94.381008, 70.071389], [-92.529923, 70.662834], [-90.568586, 71.234472], [-88.490913, 71.784437], [-86.291189, 72.310705], [-83.964338, 72.811097], [-81.506236, 73.283287], [-78.914093, 73.724819], [-76.18687, 74.133131], [-73.325735, 74.505596], [-70.334509, 74.839569], [-67.220071, 75.132455], [-63.992654, 75.381783], [-60.665988, 75.585292], [-57.257219, 75.741019], [-53.786573, 75.847386], [-50.276753, 75.903276], [-46.752103, 75.908087], [-43.237605, 75.861768], [-39.757801, 75.764817], [-36.335775, 75.618259], [-32.992271, 75.423591], [-29.745047, 75.182709], [-26.60849, 74.897826], [-23.593485, 74.57138], [-20.707522, 74.205948], [-17.954968, 73.804171], [-15.337456, 73.368685], [-12.854329, 72.902065], [-10.50309, 72.406792], [-8.279837, 71.885217], [-6.179646, 71.339546], [-4.196901, 70.771834], [-2.32557, 70.183976], [-0.559417, 69.577714], [1.107823, 68.954642], [2.682322, 68.316209], [4.17007, 67.663737], [5.576808, 66.998421], [6.907995, 66.321347], [8.168781, 65.633497], [9.364001, 64.935761], [10.498173, 64.228946], [11.575503, 63.513779], [12.599903, 62.790923], [13.574995, 62.060976], [14.504139, 61.324484], [15.39044, 60.581941], [16.236768, 59.833796], [17.045778, 59.080459], [17.819923, 58.322303], [18.561469, 57.559669], [19.272511, 56.792869], [19.954988, 56.022188], [20.610694, 55.247887], [21.241288, 54.470206], [21.848309, 53.689365], [22.433183, 52.905568], [22.997233, 52.119], [23.541689, 51.329835], [24.067692, 50.538231], [24.576305, 49.744336], [25.068517, 48.948286], [25.54525, 48.150208], [26.007365, 47.350219], [26.455663, 46.548428], [26.890896, 45.744937], [27.313765, 44.939841], [27.724928, 44.133227], [28.125, 43.325178] ] }, "type": "Feature", "properties": {} }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122, 48] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [28.125, 43.32517767999296] } } ] } ================================================ FILE: packages/turf-great-circle/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import type { FeatureCollection, LineString, Feature, Geometry, Point, } from "geojson"; import { truncate } from "@turf/truncate"; import { featureCollection, point, lineString } from "@turf/helpers"; import { greatCircle } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync( path.join(directories.in, filename) ) as FeatureCollection, }; }); // Function to get the start and end points from the fixture function getStartEndPoints(fixture: (typeof fixtures)[0]) { const geojson = fixture.geojson; const start = geojson.features[0] as Feature; const end = geojson.features[1] as Feature; return { start, end }; } test("turf-great-circle", (t) => { fixtures.forEach((fixture) => { const name = fixture.name; const filename = fixture.filename; const { start, end } = getStartEndPoints(fixture); const line = truncate(greatCircle(start, end)); const results = featureCollection([line, start, end]); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEquals(results, loadJsonFileSync(directories.out + filename), name); }); t.end(); }); test("turf-great-circle with same input and output", (t) => { const start = point([0, 0]); const end = point([0, 0]); const line = greatCircle(start, end, { npoints: 4, }); t.deepEquals( lineString([ [0, 0], [0, 0], [0, 0], [0, 0], ]), line as Feature ); t.end(); }); test("turf-great-circle accepts Feature inputs", (t) => { const { start, end } = getStartEndPoints(fixtures[0]); t.doesNotThrow( () => greatCircle(start, end), "accepts Feature inputs" ); t.end(); }); test("turf-great-circle accepts Point geometry inputs", (t) => { const { start, end } = getStartEndPoints(fixtures[0]); t.doesNotThrow( () => greatCircle(start.geometry, end.geometry), "accepts Point geometry inputs" ); t.end(); }); test("turf-great-circle accepts Position inputs", (t) => { const { start, end } = getStartEndPoints(fixtures[0]); t.doesNotThrow( () => greatCircle(start.geometry.coordinates, end.geometry.coordinates), "accepts Position inputs" ); t.end(); }); test("turf-great-circle applies custom properties", (t) => { const { start, end } = getStartEndPoints(fixtures[0]); const withProperties = greatCircle(start, end, { properties: { name: "Test Route" }, }); t.equal( withProperties.properties?.name, "Test Route", "applies custom properties" ); t.end(); }); test("turf-great-circle respects npoints option", (t) => { const { start, end } = getStartEndPoints(fixtures[0]); const withCustomPoints = greatCircle(start, end, { npoints: 5 }); t.equal( (withCustomPoints.geometry as LineString).coordinates.length, 5, "respects npoints option" ); t.end(); }); test("turf-great-circle respects offset and npoints options", (t) => { const { start, end } = getStartEndPoints(fixtures[0]); const withOffset = greatCircle(start, end, { offset: 100, npoints: 10 }); t.equal( (withOffset.geometry as LineString).coordinates.length, 10, "respects offset and npoints options" ); t.end(); }); test("turf-great-circle with antipodal start and end", (t) => { const start = point([0, 90]); const end = point([0, -90]); t.throws(() => { greatCircle(start, end, { npoints: 4, }); }, "it appears 0,90 and 0,-90 are 'antipodal', e.g diametrically opposite, thus there is no single route but rather infinite"); t.end(); }); ================================================ FILE: packages/turf-great-circle/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-great-circle/types.ts ================================================ import { point } from "@turf/helpers"; import { greatCircle } from "./index.js"; const pt1 = point([0, 0]); const pt2 = point([60, 0]); greatCircle(pt1, pt2); greatCircle(pt1.geometry, pt2.geometry); greatCircle(pt1.geometry.coordinates, pt2.geometry.coordinates); greatCircle(pt1, pt2, { properties: { name: "Seattle to DC" } }); greatCircle(pt1, pt2, { npoints: 10 }); greatCircle(pt1, pt2, { offset: 100, npoints: 10 }); ================================================ FILE: packages/turf-helpers/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-helpers/README.md ================================================ # @turf/helpers ## helpers ## Units Linear measurement units. ⚠️ Warning. Be aware of the implications of using radian or degree units to measure distance. The distance represented by a degree of longitude *varies* depending on latitude. See [https://www.thoughtco.com/degree-of-latitude-and-longitude-distance-4070616][1] for an illustration of this behaviour. Type: (`"meters"` | `"metres"` | `"millimeters"` | `"millimetres"` | `"centimeters"` | `"centimetres"` | `"kilometers"` | `"kilometres"` | `"miles"` | `"nauticalmiles"` | `"inches"` | `"yards"` | `"feet"` | `"radians"` | `"degrees"`) ## AreaUnits Area measurement units. Type: (Exclude<[Units][2], (`"radians"` | `"degrees"`)> | `"acres"` | `"hectares"`) ## Grid Grid types. Type: (`"point"` | `"square"` | `"hex"` | `"triangle"`) ## Corners Shorthand corner identifiers. Type: (`"sw"` | `"se"` | `"nw"` | `"ne"` | `"center"` | `"centroid"`) ## Lines Geometries made up of lines i.e. lines and polygons. Type: ([LineString][3] | [MultiLineString][4] | [Polygon][5] | [MultiPolygon][6]) ## AllGeoJSON Convenience type for all possible GeoJSON. Type: ([Feature][7] | [FeatureCollection][8] | [Geometry][9] | [GeometryCollection][10]) ## earthRadius The Earth radius in meters. Used by Turf modules that model the Earth as a sphere. The [mean radius][11] was selected because it is [recommended ][12] by the Haversine formula (used by turf/distance) to reduce error. Type: [number][13] ## factors Unit of measurement factors based on earthRadius. Keys are the name of the unit, values are the number of that unit in a single radian Type: Record<[Units][2], [number][13]> ## areaFactors Area of measurement factors based on 1 square meter. Type: Record<[AreaUnits][14], [number][13]> ## feature Wraps a GeoJSON [Geometry][9] in a GeoJSON [Feature][7]. ### Parameters * `geom` **(G | null)** * `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) * `options` **[Object][15]** Optional Parameters (optional, default `{}`) * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature * `options.id` **Id?** Identifier associated with the Feature * `geometry` **[GeometryObject][9]** input geometry ### Examples ```javascript var geometry = { "type": "Point", "coordinates": [110, 50] }; var feature = turf.feature(geometry); //=feature ``` Returns **[Feature][7]<[GeometryObject][9], [GeoJsonProperties][7]>** a GeoJSON Feature ## geometry Creates a GeoJSON [Geometry][9] from a Geometry string type & coordinates. For GeometryCollection type use `helpers.geometryCollection` ### Parameters * `type` **(`"Point"` | `"LineString"` | `"Polygon"` | `"MultiPoint"` | `"MultiLineString"` | `"MultiPolygon"`)** Geometry Type * `coordinates` **[Array][17]\** Coordinates * `_options` **Record<[string][18], never>** (optional, default `{}`) * `options` **[Object][15]** Optional Parameters (optional, default `{}`) ### Examples ```javascript var type = "Point"; var coordinates = [110, 50]; var geometry = turf.geometry(type, coordinates); // => geometry ``` Returns **[Geometry][9]** a GeoJSON Geometry ## point Creates a [Point][19] [Feature][7] from a Position. ### Parameters * `coordinates` **[Position][20]** longitude, latitude position (each in decimal degrees) * `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) * `options` **[Object][15]** Optional Parameters (optional, default `{}`) * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature * `options.id` **Id?** Identifier associated with the Feature ### Examples ```javascript var point = turf.point([-75.343, 39.984]); //=point ``` Returns **[Feature][7]<[Point][19], [GeoJsonProperties][7]>** a Point feature ## points Creates a [Point][19] [FeatureCollection][8] from an Array of Point coordinates. ### Parameters * `coordinates` **[Array][17]<[Position][20]>** an array of Points * `properties` **[GeoJsonProperties][7]** Translate these properties to each Feature (optional, default `{}`) * `options` **[Object][15]** Optional Parameters (optional, default `{}`) * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the FeatureCollection * `options.id` **Id?** Identifier associated with the FeatureCollection ### Examples ```javascript var points = turf.points([ [-75, 39], [-80, 45], [-78, 50] ]); //=points ``` Returns **[FeatureCollection][8]<[Point][19]>** Point Feature ## polygon Creates a [Polygon][5] [Feature][7] from an Array of LinearRings. ### Parameters * `coordinates` **[Array][17]<[Array][17]<[Position][20]>>** * `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) * `options` **[Object][15]** Optional Parameters (optional, default `{}`) * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature * `options.id` **Id?** Identifier associated with the Feature ### Examples ```javascript var polygon = turf.polygon([[[-5, 52], [-4, 56], [-2, 51], [-7, 54], [-5, 52]]], { name: 'poly1' }); //=polygon ``` Returns **[Feature][7]<[Polygon][5], [GeoJsonProperties][7]>** Polygon Feature ## polygons Creates a [Polygon][5] [FeatureCollection][8] from an Array of Polygon coordinates. ### Parameters * `coordinates` **[Array][17]<[Array][17]<[Array][17]<[Position][20]>>>** * `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) * `options` **[Object][15]** Optional Parameters (optional, default `{}`) * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature * `options.id` **Id?** Identifier associated with the FeatureCollection ### Examples ```javascript var polygons = turf.polygons([ [[[-5, 52], [-4, 56], [-2, 51], [-7, 54], [-5, 52]]], [[[-15, 42], [-14, 46], [-12, 41], [-17, 44], [-15, 42]]], ]); //=polygons ``` Returns **[FeatureCollection][8]<[Polygon][5], [GeoJsonProperties][7]>** Polygon FeatureCollection ## lineString Creates a [LineString][3] [Feature][7] from an Array of Positions. ### Parameters * `coordinates` **[Array][17]<[Position][20]>** an array of Positions * `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) * `options` **[Object][15]** Optional Parameters (optional, default `{}`) * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature * `options.id` **Id?** Identifier associated with the Feature ### Examples ```javascript var linestring1 = turf.lineString([[-24, 63], [-23, 60], [-25, 65], [-20, 69]], {name: 'line 1'}); var linestring2 = turf.lineString([[-14, 43], [-13, 40], [-15, 45], [-10, 49]], {name: 'line 2'}); //=linestring1 //=linestring2 ``` Returns **[Feature][7]<[LineString][3], [GeoJsonProperties][7]>** LineString Feature ## lineStrings Creates a [LineString][3] [FeatureCollection][8] from an Array of LineString coordinates. ### Parameters * `coordinates` **[Array][17]<[Array][17]<[Position][20]>>** * `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) * `options` **[Object][15]** Optional Parameters (optional, default `{}`) * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the FeatureCollection * `options.id` **Id?** Identifier associated with the FeatureCollection ### Examples ```javascript var linestrings = turf.lineStrings([ [[-24, 63], [-23, 60], [-25, 65], [-20, 69]], [[-14, 43], [-13, 40], [-15, 45], [-10, 49]] ]); //=linestrings ``` Returns **[FeatureCollection][8]<[LineString][3], [GeoJsonProperties][7]>** LineString FeatureCollection ## featureCollection Takes one or more [Features][7] and creates a [FeatureCollection][8]. ### Parameters * `features` **[Array][17]<[Feature][7]<[GeometryObject][9], [GeoJsonProperties][7]>>** input features * `options` **[Object][15]** Optional Parameters (optional, default `{}`) * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature * `options.id` **Id?** Identifier associated with the Feature ### Examples ```javascript var locationA = turf.point([-75.343, 39.984], {name: 'Location A'}); var locationB = turf.point([-75.833, 39.284], {name: 'Location B'}); var locationC = turf.point([-75.534, 39.123], {name: 'Location C'}); var collection = turf.featureCollection([ locationA, locationB, locationC ]); //=collection ``` Returns **[FeatureCollection][8]<[GeometryObject][9], [GeoJsonProperties][7]>** FeatureCollection of Features ## multiLineString Creates a [Feature][7]<[MultiLineString][4]> based on a coordinate array. Properties can be added optionally. ### Parameters * `coordinates` **[Array][17]<[Array][17]<[Position][20]>>** * `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) * `options` **[Object][15]** Optional Parameters (optional, default `{}`) * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature * `options.id` **Id?** Identifier associated with the Feature ### Examples ```javascript var multiLine = turf.multiLineString([[[0,0],[10,10]]]); //=multiLine ``` * Throws **[Error][21]** if no coordinates are passed Returns **[Feature][7]<[MultiLineString][4], [GeoJsonProperties][7]>** a MultiLineString feature ## multiPoint Creates a [Feature][7]<[MultiPoint][22]> based on a coordinate array. Properties can be added optionally. ### Parameters * `coordinates` **[Array][17]<[Position][20]>** an array of Positions * `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) * `options` **[Object][15]** Optional Parameters (optional, default `{}`) * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature * `options.id` **Id?** Identifier associated with the Feature ### Examples ```javascript var multiPt = turf.multiPoint([[0,0],[10,10]]); //=multiPt ``` * Throws **[Error][21]** if no coordinates are passed Returns **[Feature][7]<[MultiPoint][22], [GeoJsonProperties][7]>** a MultiPoint feature ## multiPolygon Creates a [Feature][7]<[MultiPolygon][6]> based on a coordinate array. Properties can be added optionally. ### Parameters * `coordinates` **[Array][17]<[Array][17]<[Array][17]<[Position][20]>>>** * `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) * `options` **[Object][15]** Optional Parameters (optional, default `{}`) * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature * `options.id` **Id?** Identifier associated with the Feature ### Examples ```javascript var multiPoly = turf.multiPolygon([[[[0,0],[0,10],[10,10],[10,0],[0,0]]]]); //=multiPoly ``` * Throws **[Error][21]** if no coordinates are passed Returns **[Feature][7]<[MultiPolygon][6], [GeoJsonProperties][7]>** a multipolygon feature ## geometryCollection Creates a Feature based on a coordinate array. Properties can be added optionally. ### Parameters * `geometries` **[Array][17]<([Point][19] | [LineString][3] | [Polygon][5] | [MultiPoint][22] | [MultiLineString][4] | [MultiPolygon][6])>** an array of GeoJSON Geometries * `properties` **[GeoJsonProperties][7]** an Object of key-value pairs to add as properties (optional, default `{}`) * `options` **[Object][15]** Optional Parameters (optional, default `{}`) * `options.bbox` **[BBox][16]?** Bounding Box Array \[west, south, east, north] associated with the Feature * `options.id` **Id?** Identifier associated with the Feature ### Examples ```javascript var pt = turf.geometry("Point", [100, 0]); var line = turf.geometry("LineString", [[101, 0], [102, 1]]); var collection = turf.geometryCollection([pt, line]); // => collection ``` Returns **[Feature][7]<[GeometryCollection][10], [GeoJsonProperties][7]>** a GeoJSON GeometryCollection Feature ## round Round number to precision ### Parameters * `num` **[number][13]** Number * `precision` **[number][13]** Precision (optional, default `0`) ### Examples ```javascript turf.round(120.4321) //=120 turf.round(120.4321, 2) //=120.43 ``` Returns **[number][13]** rounded number ## radiansToLength Convert a distance measurement (assuming a spherical Earth) from radians to a more friendly unit. Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, centimeters, feet ### Parameters * `radians` **[number][13]** in radians across the sphere * `units` **[Units][2]** can be degrees, radians, miles, inches, yards, metres, meters, kilometres, kilometers. (optional, default `"kilometers"`) Returns **[number][13]** distance ## lengthToRadians Convert a distance measurement (assuming a spherical Earth) from a real-world unit into radians Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, centimeters, feet ### Parameters * `distance` **[number][13]** in real units * `units` **[Units][2]** can be degrees, radians, miles, inches, yards, metres, meters, kilometres, kilometers. (optional, default `"kilometers"`) Returns **[number][13]** radians ## lengthToDegrees Convert a distance measurement (assuming a spherical Earth) from a real-world unit into degrees Valid units: miles, nauticalmiles, inches, yards, meters, metres, centimeters, kilometres, feet ### Parameters * `distance` **[number][13]** in real units * `units` **[Units][2]** can be degrees, radians, miles, inches, yards, metres, meters, kilometres, kilometers. (optional, default `"kilometers"`) Returns **[number][13]** degrees ## bearingToAzimuth Converts any bearing angle from the north line direction (positive clockwise) and returns an angle between 0-360 degrees (positive clockwise), 0 being the north line ### Parameters * `bearing` **[number][13]** angle, between -180 and +180 degrees Returns **[number][13]** angle between 0 and 360 degrees ## azimuthToBearing Converts any azimuth angle from the north line direction (positive clockwise) and returns an angle between -180 and +180 degrees (positive clockwise), 0 being the north line ### Parameters * `angle` **[number][13]** between 0 and 360 degrees Returns **[number][13]** bearing between -180 and +180 degrees ## radiansToDegrees Converts an angle in radians to degrees ### Parameters * `radians` **[number][13]** angle in radians Returns **[number][13]** degrees between 0 and 360 degrees ## degreesToRadians Converts an angle in degrees to radians ### Parameters * `degrees` **[number][13]** angle between 0 and 360 degrees Returns **[number][13]** angle in radians ## convertLength Converts a length from one unit to another. ### Parameters * `length` **[number][13]** Length to be converted * `originalUnit` **[Units][2]** Input length unit (optional, default `"kilometers"`) * `finalUnit` **[Units][2]** Returned length unit (optional, default `"kilometers"`) Returns **[number][13]** The converted length ## convertArea Converts an area from one unit to another. ### Parameters * `area` **[number][13]** Area to be converted * `originalUnit` **[AreaUnits][14]** Input area unit (optional, default `"meters"`) * `finalUnit` **[AreaUnits][14]** Returned area unit (optional, default `"kilometers"`) Returns **[number][13]** The converted length ## isNumber isNumber ### Parameters * `num` **any** Number to validate ### Examples ```javascript turf.isNumber(123) //=true turf.isNumber('foo') //=false ``` Returns **[boolean][23]** true/false ## isObject isObject ### Parameters * `input` **any** variable to validate ### Examples ```javascript turf.isObject({elevation: 10}) //=true turf.isObject('foo') //=false ``` Returns **[boolean][23]** true/false, including false for Arrays and Functions [1]: https://www.thoughtco.com/degree-of-latitude-and-longitude-distance-4070616 [2]: #units [3]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [4]: https://tools.ietf.org/html/rfc7946#section-3.1.5 [5]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [6]: https://tools.ietf.org/html/rfc7946#section-3.1.7 [7]: https://tools.ietf.org/html/rfc7946#section-3.2 [8]: https://tools.ietf.org/html/rfc7946#section-3.3 [9]: https://tools.ietf.org/html/rfc7946#section-3.1 [10]: https://tools.ietf.org/html/rfc7946#section-3.1.8 [11]: https://en.wikipedia.org/wiki/Earth_radius#Arithmetic_mean_radius [12]: https://rosettacode.org/wiki/Haversine_formula#:~:text=This%20value%20is%20recommended [13]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [14]: #areaunits [15]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [16]: https://tools.ietf.org/html/rfc7946#section-5 [17]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array [18]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String [19]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [20]: https://developer.mozilla.org/docs/Web/API/Position [21]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error [22]: https://tools.ietf.org/html/rfc7946#section-3.1.3 [23]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/helpers ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-helpers/README_UNITS.md ================================================ # @turf/helpers ## Units * meters * metres * millimeters * millimetres * centimeters * centimetres * kilometers * kilometres * miles * nauticalmiles * inches * yards * feet * radians * degrees ## AreaUnits * meters * metres * millimeters * millimetres * centimeters * centimetres * kilometers * kilometres * miles * nauticalmiles * inches * yards * feet * acres * hectares ================================================ FILE: packages/turf-helpers/bench.ts ================================================ import Benchmark from "benchmark"; import { point, lineString, polygon, multiPoint, multiLineString, multiPolygon, featureCollection, geometryCollection, round, } from "./index.js"; /** * Benchmark Results * * round x 54,405,175 ops/sec ±2.03% (89 runs sampled) * point x 25,384,060 ops/sec ±2.29% (85 runs sampled) * lineString x 16,548,474 ops/sec ±1.84% (86 runs sampled) * polygon x 12,348,826 ops/sec ±2.02% (85 runs sampled) * multiPoint x 17,150,485 ops/sec ±1.76% (86 runs sampled) * multiLineString x 11,328,369 ops/sec ±2.82% (79 runs sampled) * multiPolygon x 1,284,305 ops/sec ±1.22% (89 runs sampled) * featureCollection x 10,847,952 ops/sec ±1.95% (82 runs sampled) * geometryCollection x 14,392,524 ops/sec ±2.06% (89 runs sampled) */ const suite = new Benchmark.Suite("turf-helpers"); suite .add("point + properties", () => point([5, 10], { foo: "bar" })) .add("point", () => point([5, 10])) .add("round", () => round(120.123)) .add("lineString", () => lineString([ [5, 10], [20, 40], ]) ) .add("polygon", () => polygon([ [ [5, 10], [20, 40], [40, 0], [5, 10], ], ]) ) .add("multiPoint", () => multiPoint([ [0, 0], [10, 10], ]) ) .add("multiLineString", () => multiLineString([ [ [0, 0], [10, 10], ], [ [5, 0], [15, 8], ], ]) ) .add("multiPolygon", () => multiPolygon([ [ [ [94, 57], [78, 49], [94, 43], [94, 57], ], ], [ [ [93, 19], [63, 7], [79, 0], [93, 19], ], ], ]) ) .add("featureCollection", () => featureCollection([point([5, 10]), point([5, 10])]) ) .add("geometryCollection", () => geometryCollection([ { type: "Point", coordinates: [100, 0] }, { type: "Point", coordinates: [100, 0] }, ]) ) .on("cycle", (e) => console.log(String(e.target))) .run(); ================================================ FILE: packages/turf-helpers/index.ts ================================================ import { BBox, Feature, FeatureCollection, Geometry, GeometryCollection, GeometryObject, LineString, MultiLineString, MultiPoint, MultiPolygon, Point, Polygon, Position, GeoJsonProperties, } from "geojson"; import { Id } from "./lib/geojson.js"; export * from "./lib/geojson.js"; /** * @module helpers */ // TurfJS Combined Types export type Coord = Feature | Point | Position; /** * Linear measurement units. * * ⚠️ Warning. Be aware of the implications of using radian or degree units to * measure distance. The distance represented by a degree of longitude *varies* * depending on latitude. * * See https://www.thoughtco.com/degree-of-latitude-and-longitude-distance-4070616 * for an illustration of this behaviour. * * @typedef */ export type Units = | "meters" | "metres" | "millimeters" | "millimetres" | "centimeters" | "centimetres" | "kilometers" | "kilometres" | "miles" | "nauticalmiles" | "inches" | "yards" | "feet" | "radians" | "degrees"; /** * Area measurement units. * * @typedef */ export type AreaUnits = | Exclude | "acres" | "hectares"; /** * Grid types. * * @typedef */ export type Grid = "point" | "square" | "hex" | "triangle"; /** * Shorthand corner identifiers. * * @typedef */ export type Corners = "sw" | "se" | "nw" | "ne" | "center" | "centroid"; /** * Geometries made up of lines i.e. lines and polygons. * * @typedef */ export type Lines = LineString | MultiLineString | Polygon | MultiPolygon; /** * Convenience type for all possible GeoJSON. * * @typedef */ export type AllGeoJSON = | Feature | FeatureCollection | Geometry | GeometryCollection; /** * The Earth radius in meters. Used by Turf modules that model the Earth as a sphere. The {@link https://en.wikipedia.org/wiki/Earth_radius#Arithmetic_mean_radius mean radius} was selected because it is {@link https://rosettacode.org/wiki/Haversine_formula#:~:text=This%20value%20is%20recommended recommended } by the Haversine formula (used by turf/distance) to reduce error. * * @constant */ export const earthRadius = 6371008.8; /** * Unit of measurement factors based on earthRadius. * * Keys are the name of the unit, values are the number of that unit in a single radian * * @constant */ export const factors: Record = { centimeters: earthRadius * 100, centimetres: earthRadius * 100, degrees: 360 / (2 * Math.PI), feet: earthRadius * 3.28084, inches: earthRadius * 39.37, kilometers: earthRadius / 1000, kilometres: earthRadius / 1000, meters: earthRadius, metres: earthRadius, miles: earthRadius / 1609.344, millimeters: earthRadius * 1000, millimetres: earthRadius * 1000, nauticalmiles: earthRadius / 1852, radians: 1, yards: earthRadius * 1.0936, }; /** * Area of measurement factors based on 1 square meter. * * @constant */ export const areaFactors: Record = { acres: 0.000247105, centimeters: 10000, centimetres: 10000, feet: 10.763910417, hectares: 0.0001, inches: 1550.003100006, kilometers: 0.000001, kilometres: 0.000001, meters: 1, metres: 1, miles: 3.86e-7, nauticalmiles: 2.9155334959812285e-7, millimeters: 1000000, millimetres: 1000000, yards: 1.195990046, }; /** * Wraps a GeoJSON {@link Geometry} in a GeoJSON {@link Feature}. * * @function * @param {GeometryObject} geometry input geometry * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties * @param {Object} [options={}] Optional Parameters * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature * @param {Id} [options.id] Identifier associated with the Feature * @returns {Feature} a GeoJSON Feature * @example * var geometry = { * "type": "Point", * "coordinates": [110, 50] * }; * * var feature = turf.feature(geometry); * * //=feature */ export function feature< G extends GeometryObject = Geometry, P extends GeoJsonProperties = GeoJsonProperties, >( geom: G | null, properties?: P, options: { bbox?: BBox; id?: Id } = {} ): Feature { const feat: any = { type: "Feature" }; if (options.id === 0 || options.id) { feat.id = options.id; } if (options.bbox) { feat.bbox = options.bbox; } feat.properties = properties || {}; feat.geometry = geom; return feat; } /** * Creates a GeoJSON {@link Geometry} from a Geometry string type & coordinates. * For GeometryCollection type use `helpers.geometryCollection` * * @function * @param {("Point" | "LineString" | "Polygon" | "MultiPoint" | "MultiLineString" | "MultiPolygon")} type Geometry Type * @param {Array} coordinates Coordinates * @param {Object} [options={}] Optional Parameters * @returns {Geometry} a GeoJSON Geometry * @example * var type = "Point"; * var coordinates = [110, 50]; * var geometry = turf.geometry(type, coordinates); * // => geometry */ export function geometry< T extends | "Point" | "LineString" | "Polygon" | "MultiPoint" | "MultiLineString" | "MultiPolygon", >( type: T, coordinates: any[], _options: Record = {} ): Extract { switch (type) { case "Point": return point(coordinates).geometry as Extract; case "LineString": return lineString(coordinates).geometry as Extract; case "Polygon": return polygon(coordinates).geometry as Extract; case "MultiPoint": return multiPoint(coordinates).geometry as Extract; case "MultiLineString": return multiLineString(coordinates).geometry as Extract< Geometry, { type: T } >; case "MultiPolygon": return multiPolygon(coordinates).geometry as Extract< Geometry, { type: T } >; default: throw new Error(type + " is invalid"); } } /** * Creates a {@link Point} {@link Feature} from a Position. * * @function * @param {Position} coordinates longitude, latitude position (each in decimal degrees) * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties * @param {Object} [options={}] Optional Parameters * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature * @param {Id} [options.id] Identifier associated with the Feature * @returns {Feature} a Point feature * @example * var point = turf.point([-75.343, 39.984]); * * //=point */ export function point

( coordinates: Position, properties?: P, options: { bbox?: BBox; id?: Id } = {} ): Feature { if (!coordinates) { throw new Error("coordinates is required"); } if (!Array.isArray(coordinates)) { throw new Error("coordinates must be an Array"); } if (coordinates.length < 2) { throw new Error("coordinates must be at least 2 numbers long"); } if (!isNumber(coordinates[0]) || !isNumber(coordinates[1])) { throw new Error("coordinates must contain numbers"); } const geom: Point = { type: "Point", coordinates, }; return feature(geom, properties, options); } /** * Creates a {@link Point} {@link FeatureCollection} from an Array of Point coordinates. * * @function * @param {Position[]} coordinates an array of Points * @param {GeoJsonProperties} [properties={}] Translate these properties to each Feature * @param {Object} [options={}] Optional Parameters * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] * associated with the FeatureCollection * @param {Id} [options.id] Identifier associated with the FeatureCollection * @returns {FeatureCollection} Point Feature * @example * var points = turf.points([ * [-75, 39], * [-80, 45], * [-78, 50] * ]); * * //=points */ export function points

( coordinates: Position[], properties?: P, options: { bbox?: BBox; id?: Id } = {} ): FeatureCollection { return featureCollection( coordinates.map((coords) => { return point(coords, properties); }), options ); } /** * Creates a {@link Polygon} {@link Feature} from an Array of LinearRings. * * @function * @param {Position[][]} coordinates an array of LinearRings * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties * @param {Object} [options={}] Optional Parameters * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature * @param {Id} [options.id] Identifier associated with the Feature * @returns {Feature} Polygon Feature * @example * var polygon = turf.polygon([[[-5, 52], [-4, 56], [-2, 51], [-7, 54], [-5, 52]]], { name: 'poly1' }); * * //=polygon */ export function polygon

( coordinates: Position[][], properties?: P, options: { bbox?: BBox; id?: Id } = {} ): Feature { for (const ring of coordinates) { if (ring.length < 4) { throw new Error( "Each LinearRing of a Polygon must have 4 or more Positions." ); } if (ring[ring.length - 1].length !== ring[0].length) { throw new Error("First and last Position are not equivalent."); } for (let j = 0; j < ring[ring.length - 1].length; j++) { // Check if first point of Polygon contains two numbers if (ring[ring.length - 1][j] !== ring[0][j]) { throw new Error("First and last Position are not equivalent."); } } } const geom: Polygon = { type: "Polygon", coordinates, }; return feature(geom, properties, options); } /** * Creates a {@link Polygon} {@link FeatureCollection} from an Array of Polygon coordinates. * * @function * @param {Position[][][]} coordinates an array of Polygon coordinates * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties * @param {Object} [options={}] Optional Parameters * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature * @param {Id} [options.id] Identifier associated with the FeatureCollection * @returns {FeatureCollection} Polygon FeatureCollection * @example * var polygons = turf.polygons([ * [[[-5, 52], [-4, 56], [-2, 51], [-7, 54], [-5, 52]]], * [[[-15, 42], [-14, 46], [-12, 41], [-17, 44], [-15, 42]]], * ]); * * //=polygons */ export function polygons

( coordinates: Position[][][], properties?: P, options: { bbox?: BBox; id?: Id } = {} ): FeatureCollection { return featureCollection( coordinates.map((coords) => { return polygon(coords, properties); }), options ); } /** * Creates a {@link LineString} {@link Feature} from an Array of Positions. * * @function * @param {Position[]} coordinates an array of Positions * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties * @param {Object} [options={}] Optional Parameters * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature * @param {Id} [options.id] Identifier associated with the Feature * @returns {Feature} LineString Feature * @example * var linestring1 = turf.lineString([[-24, 63], [-23, 60], [-25, 65], [-20, 69]], {name: 'line 1'}); * var linestring2 = turf.lineString([[-14, 43], [-13, 40], [-15, 45], [-10, 49]], {name: 'line 2'}); * * //=linestring1 * //=linestring2 */ export function lineString

( coordinates: Position[], properties?: P, options: { bbox?: BBox; id?: Id } = {} ): Feature { if (coordinates.length < 2) { throw new Error("coordinates must be an array of two or more positions"); } const geom: LineString = { type: "LineString", coordinates, }; return feature(geom, properties, options); } /** * Creates a {@link LineString} {@link FeatureCollection} from an Array of LineString coordinates. * * @function * @param {Position[][]} coordinates an array of LinearRings * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties * @param {Object} [options={}] Optional Parameters * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] * associated with the FeatureCollection * @param {Id} [options.id] Identifier associated with the FeatureCollection * @returns {FeatureCollection} LineString FeatureCollection * @example * var linestrings = turf.lineStrings([ * [[-24, 63], [-23, 60], [-25, 65], [-20, 69]], * [[-14, 43], [-13, 40], [-15, 45], [-10, 49]] * ]); * * //=linestrings */ export function lineStrings

( coordinates: Position[][], properties?: P, options: { bbox?: BBox; id?: Id } = {} ): FeatureCollection { return featureCollection( coordinates.map((coords) => { return lineString(coords, properties); }), options ); } /** * Takes one or more {@link Feature|Features} and creates a {@link FeatureCollection}. * * @function * @param {Array>} features input features * @param {Object} [options={}] Optional Parameters * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature * @param {Id} [options.id] Identifier associated with the Feature * @returns {FeatureCollection} FeatureCollection of Features * @example * var locationA = turf.point([-75.343, 39.984], {name: 'Location A'}); * var locationB = turf.point([-75.833, 39.284], {name: 'Location B'}); * var locationC = turf.point([-75.534, 39.123], {name: 'Location C'}); * * var collection = turf.featureCollection([ * locationA, * locationB, * locationC * ]); * * //=collection */ export function featureCollection< G extends GeometryObject = Geometry, P extends GeoJsonProperties = GeoJsonProperties, >( features: Array>, options: { bbox?: BBox; id?: Id } = {} ): FeatureCollection { const fc: any = { type: "FeatureCollection" }; if (options.id) { fc.id = options.id; } if (options.bbox) { fc.bbox = options.bbox; } fc.features = features; return fc; } /** * Creates a {@link Feature}<{@link MultiLineString}> based on a * coordinate array. Properties can be added optionally. * * @function * @param {Position[][]} coordinates an array of LineStrings * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties * @param {Object} [options={}] Optional Parameters * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature * @param {Id} [options.id] Identifier associated with the Feature * @returns {Feature} a MultiLineString feature * @throws {Error} if no coordinates are passed * @example * var multiLine = turf.multiLineString([[[0,0],[10,10]]]); * * //=multiLine */ export function multiLineString< P extends GeoJsonProperties = GeoJsonProperties, >( coordinates: Position[][], properties?: P, options: { bbox?: BBox; id?: Id } = {} ): Feature { const geom: MultiLineString = { type: "MultiLineString", coordinates, }; return feature(geom, properties, options); } /** * Creates a {@link Feature}<{@link MultiPoint}> based on a * coordinate array. Properties can be added optionally. * * @function * @param {Position[]} coordinates an array of Positions * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties * @param {Object} [options={}] Optional Parameters * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature * @param {Id} [options.id] Identifier associated with the Feature * @returns {Feature} a MultiPoint feature * @throws {Error} if no coordinates are passed * @example * var multiPt = turf.multiPoint([[0,0],[10,10]]); * * //=multiPt */ export function multiPoint

( coordinates: Position[], properties?: P, options: { bbox?: BBox; id?: Id } = {} ): Feature { const geom: MultiPoint = { type: "MultiPoint", coordinates, }; return feature(geom, properties, options); } /** * Creates a {@link Feature}<{@link MultiPolygon}> based on a * coordinate array. Properties can be added optionally. * * @function * @param {Position[][][]} coordinates an array of Polygons * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties * @param {Object} [options={}] Optional Parameters * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature * @param {Id} [options.id] Identifier associated with the Feature * @returns {Feature} a multipolygon feature * @throws {Error} if no coordinates are passed * @example * var multiPoly = turf.multiPolygon([[[[0,0],[0,10],[10,10],[10,0],[0,0]]]]); * * //=multiPoly * */ export function multiPolygon

( coordinates: Position[][][], properties?: P, options: { bbox?: BBox; id?: Id } = {} ): Feature { const geom: MultiPolygon = { type: "MultiPolygon", coordinates, }; return feature(geom, properties, options); } /** * Creates a Feature based on a * coordinate array. Properties can be added optionally. * * @function * @param {Array} geometries an array of GeoJSON Geometries * @param {GeoJsonProperties} [properties={}] an Object of key-value pairs to add as properties * @param {Object} [options={}] Optional Parameters * @param {BBox} [options.bbox] Bounding Box Array [west, south, east, north] associated with the Feature * @param {Id} [options.id] Identifier associated with the Feature * @returns {Feature} a GeoJSON GeometryCollection Feature * @example * var pt = turf.geometry("Point", [100, 0]); * var line = turf.geometry("LineString", [[101, 0], [102, 1]]); * var collection = turf.geometryCollection([pt, line]); * * // => collection */ export function geometryCollection< G extends | Point | LineString | Polygon | MultiPoint | MultiLineString | MultiPolygon, P extends GeoJsonProperties = GeoJsonProperties, >( geometries: Array, properties?: P, options: { bbox?: BBox; id?: Id } = {} ): Feature, P> { const geom: GeometryCollection = { type: "GeometryCollection", geometries, }; return feature(geom, properties, options); } /** * Round number to precision * * @function * @param {number} num Number * @param {number} [precision=0] Precision * @returns {number} rounded number * @example * turf.round(120.4321) * //=120 * * turf.round(120.4321, 2) * //=120.43 */ export function round(num: number, precision = 0): number { if (precision && !(precision >= 0)) { throw new Error("precision must be a positive number"); } const multiplier = Math.pow(10, precision || 0); return Math.round(num * multiplier) / multiplier; } /** * Convert a distance measurement (assuming a spherical Earth) from radians to a more friendly unit. * Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, centimeters, feet * * @function * @param {number} radians in radians across the sphere * @param {Units} [units="kilometers"] can be degrees, radians, miles, inches, yards, metres, * meters, kilometres, kilometers. * @returns {number} distance */ export function radiansToLength( radians: number, units: Units = "kilometers" ): number { const factor = factors[units]; if (!factor) { throw new Error(units + " units is invalid"); } return radians * factor; } /** * Convert a distance measurement (assuming a spherical Earth) from a real-world unit into radians * Valid units: miles, nauticalmiles, inches, yards, meters, metres, kilometers, centimeters, feet * * @function * @param {number} distance in real units * @param {Units} [units="kilometers"] can be degrees, radians, miles, inches, yards, metres, * meters, kilometres, kilometers. * @returns {number} radians */ export function lengthToRadians( distance: number, units: Units = "kilometers" ): number { const factor = factors[units]; if (!factor) { throw new Error(units + " units is invalid"); } return distance / factor; } /** * Convert a distance measurement (assuming a spherical Earth) from a real-world unit into degrees * Valid units: miles, nauticalmiles, inches, yards, meters, metres, centimeters, kilometres, feet * * @function * @param {number} distance in real units * @param {Units} [units="kilometers"] can be degrees, radians, miles, inches, yards, metres, * meters, kilometres, kilometers. * @returns {number} degrees */ export function lengthToDegrees(distance: number, units?: Units): number { return radiansToDegrees(lengthToRadians(distance, units)); } /** * Converts any bearing angle from the north line direction (positive clockwise) * and returns an angle between 0-360 degrees (positive clockwise), 0 being the north line * * @function * @param {number} bearing angle, between -180 and +180 degrees * @returns {number} angle between 0 and 360 degrees */ export function bearingToAzimuth(bearing: number): number { let angle = bearing % 360; if (angle < 0) { angle += 360; } return angle; } /** * Converts any azimuth angle from the north line direction (positive clockwise) * and returns an angle between -180 and +180 degrees (positive clockwise), 0 being the north line * * @function * @param {number} angle between 0 and 360 degrees * @returns {number} bearing between -180 and +180 degrees */ export function azimuthToBearing(angle: number): number { // Ignore full revolutions (multiples of 360) angle = angle % 360; if (angle > 180) { return angle - 360; } else if (angle < -180) { return angle + 360; } return angle; } /** * Converts an angle in radians to degrees * * @function * @param {number} radians angle in radians * @returns {number} degrees between 0 and 360 degrees */ export function radiansToDegrees(radians: number): number { // % (2 * Math.PI) radians in case someone passes value > 2π const normalisedRadians = radians % (2 * Math.PI); return (normalisedRadians * 180) / Math.PI; } /** * Converts an angle in degrees to radians * * @function * @param {number} degrees angle between 0 and 360 degrees * @returns {number} angle in radians */ export function degreesToRadians(degrees: number): number { // % 360 degrees in case someone passes value > 360 const normalisedDegrees = degrees % 360; return (normalisedDegrees * Math.PI) / 180; } /** * Converts a length from one unit to another. * * @function * @param {number} length Length to be converted * @param {Units} [originalUnit="kilometers"] Input length unit * @param {Units} [finalUnit="kilometers"] Returned length unit * @returns {number} The converted length */ export function convertLength( length: number, originalUnit: Units = "kilometers", finalUnit: Units = "kilometers" ): number { if (!(length >= 0)) { throw new Error("length must be a positive number"); } return radiansToLength(lengthToRadians(length, originalUnit), finalUnit); } /** * Converts an area from one unit to another. * * @function * @param {number} area Area to be converted * @param {AreaUnits} [originalUnit="meters"] Input area unit * @param {AreaUnits} [finalUnit="kilometers"] Returned area unit * @returns {number} The converted length */ export function convertArea( area: number, originalUnit: AreaUnits = "meters", finalUnit: AreaUnits = "kilometers" ): number { if (!(area >= 0)) { throw new Error("area must be a positive number"); } const startFactor = areaFactors[originalUnit]; if (!startFactor) { throw new Error("invalid original units"); } const finalFactor = areaFactors[finalUnit]; if (!finalFactor) { throw new Error("invalid final units"); } return (area / startFactor) * finalFactor; } /** * isNumber * * @function * @param {any} num Number to validate * @returns {boolean} true/false * @example * turf.isNumber(123) * //=true * turf.isNumber('foo') * //=false */ export function isNumber(num: any): boolean { return !isNaN(num) && num !== null && !Array.isArray(num); } /** * isObject * * @function * @param {any} input variable to validate * @returns {boolean} true/false, including false for Arrays and Functions * @example * turf.isObject({elevation: 10}) * //=true * turf.isObject('foo') * //=false */ export function isObject(input: any): boolean { return input !== null && typeof input === "object" && !Array.isArray(input); } /** * Validate BBox * * @private * @param {any} bbox BBox to validate * @returns {void} * @throws {Error} if BBox is not valid * @example * validateBBox([-180, -40, 110, 50]) * //=OK * validateBBox([-180, -40]) * //=Error * validateBBox('Foo') * //=Error * validateBBox(5) * //=Error * validateBBox(null) * //=Error * validateBBox(undefined) * //=Error */ export function validateBBox(bbox: any): void { if (!bbox) { throw new Error("bbox is required"); } if (!Array.isArray(bbox)) { throw new Error("bbox must be an Array"); } if (bbox.length !== 4 && bbox.length !== 6) { throw new Error("bbox must be an Array of 4 or 6 numbers"); } bbox.forEach((num) => { if (!isNumber(num)) { throw new Error("bbox must only contain numbers"); } }); } /** * Validate Id * * @private * @param {any} id Id to validate * @returns {void} * @throws {Error} if Id is not valid * @example * validateId([-180, -40, 110, 50]) * //=Error * validateId([-180, -40]) * //=Error * validateId('Foo') * //=OK * validateId(5) * //=OK * validateId(null) * //=Error * validateId(undefined) * //=Error */ export function validateId(id: any): void { if (!id) { throw new Error("id is required"); } if (["string", "number"].indexOf(typeof id) === -1) { throw new Error("id must be a number or a string"); } } ================================================ FILE: packages/turf-helpers/lib/geojson.ts ================================================ /** * Id * * https://tools.ietf.org/html/rfc7946#section-3.2 * If a Feature has a commonly used identifier, that identifier SHOULD be included as a member of * the Feature object with the name "id", and the value of this member is either a JSON string or number. * * Should be contributed to @types/geojson */ export type Id = string | number; ================================================ FILE: packages/turf-helpers/package.json ================================================ { "name": "@turf/helpers", "version": "7.3.4", "description": "Provides helper functions to create GeoJSON features, like points, lines, or areas on a map.", "author": "Turf Authors", "contributors": [ "Tom MacWright <@tmcw>", "Stefano Borghi <@stebogit>", "Denis Carriere <@DenisCarriere>", "William Nordmann <@wnordmann>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "geo", "point", "turf", "geojson" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-helpers/test.ts ================================================ import test from "tape"; import { point, polygon, lineString, feature, featureCollection, geometryCollection, multiLineString, multiPoint, multiPolygon, radiansToLength, lengthToRadians, lengthToDegrees, radiansToDegrees, degreesToRadians, bearingToAzimuth, azimuthToBearing, convertLength, convertArea, round, isObject, isNumber, earthRadius, } from "./index.js"; import * as turf from "./index.js"; test("point", (t) => { const ptArray = point([5, 10], { name: "test point" }); t.ok(ptArray); t.equal(ptArray.geometry.coordinates[0], 5); t.equal(ptArray.geometry.coordinates[1], 10); t.equal(ptArray.properties.name, "test point"); // t.throws(() => { // point('hey', 'invalid'); // }, 'numbers required'); const noProps = point([0, 0]); t.deepEqual(noProps.properties, {}, "no props becomes {}"); t.throws(() => { point("hello"); }, "Issue #1941 - point rejects invalid coordinate arg"); t.end(); }); test("polygon", (t) => { const poly = polygon( [ [ [5, 10], [20, 40], [40, 0], [5, 10], ], ], { name: "test polygon" } ); t.ok(poly); t.equal(poly.geometry.coordinates[0][0][0], 5); t.equal(poly.geometry.coordinates[0][1][0], 20); t.equal(poly.geometry.coordinates[0][2][0], 40); t.equal(poly.properties.name, "test polygon"); t.equal(poly.geometry.type, "Polygon"); t.throws( () => { t.equal( polygon([ [ [20.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0], ], ]).message ); }, /First and last Position are not equivalent/, "invalid ring - not wrapped" ); t.throws( () => { t.equal( polygon([ [ [1, 2, 3], [4, 5], [6, 7], [1, 2], ], ]).message ); }, /First and last Position are not equivalent/, "invalid ring - z coordinate" ); t.throws( () => { t.equal( polygon([ [ [1, 2], [4, 5], [6, 7], [1, 2, 3], ], ]).message ); }, /First and last Position are not equivalent/, "invalid ring - z coordinate #2" ); t.throws( () => { t.equal( polygon([ [ [20.0, 0.0], [101.0, 0.0], ], ]).message ); }, /Each LinearRing of a Polygon must have 4 or more Positions/, "invalid ring - too few positions" ); const noProperties = polygon([ [ [5, 10], [20, 40], [40, 0], [5, 10], ], ]); t.deepEqual(noProperties.properties, {}); t.end(); }); test("lineString", (t) => { const line = lineString( [ [5, 10], [20, 40], ], { name: "test line" } ); t.ok(line, "creates a linestring"); t.equal(line.geometry.coordinates[0][0], 5); t.equal(line.geometry.coordinates[1][0], 20); t.equal(line.properties.name, "test line"); t.deepEqual( lineString([ [5, 10], [20, 40], ]).properties, {}, "no properties case" ); t.throws(() => lineString(), "error on no coordinates"); t.throws( () => lineString([[5, 10]]), "coordinates must be an array of two or more positions" ); t.throws(() => lineString([["xyz", 10]]), "coordinates must contain numbers"); t.throws(() => lineString([[5, "xyz"]]), "coordinates must contain numbers"); t.end(); }); test("featureCollection", (t) => { const p1 = point([0, 0], { name: "first point" }); const p2 = point([0, 10]); const p3 = point([10, 10]); const p4 = point([10, 0]); const fc = featureCollection([p1, p2, p3, p4]); t.ok(fc); t.equal(fc.features.length, 4); t.equal(fc.features[0].properties.name, "first point"); t.equal(fc.type, "FeatureCollection"); t.equal(fc.features[1].geometry.type, "Point"); t.equal(fc.features[1].geometry.coordinates[0], 0); t.equal(fc.features[1].geometry.coordinates[1], 10); // t.throws(() => featureCollection(fc), /features must be an Array/); // t.throws(() => featureCollection(p1), /features must be an Array/); t.end(); }); test("multilinestring", (t) => { t.deepEqual( multiLineString([ [ [0, 0], [10, 10], ], [ [5, 0], [15, 8], ], ]), { type: "Feature", properties: {}, geometry: { type: "MultiLineString", coordinates: [ [ [0, 0], [10, 10], ], [ [5, 0], [15, 8], ], ], }, }, "takes coordinates" ); t.deepEqual( multiLineString( [ [ [0, 0], [10, 10], ], [ [5, 0], [15, 8], ], ], { test: 23 } ), { type: "Feature", properties: { test: 23, }, geometry: { type: "MultiLineString", coordinates: [ [ [0, 0], [10, 10], ], [ [5, 0], [15, 8], ], ], }, }, "takes properties" ); // t.throws(() => { // multiLineString(); // }, 'throws error with no coordinates'); t.end(); }); test("multiPoint", (t) => { t.deepEqual( multiPoint([ [0, 0], [10, 10], ]), { type: "Feature", properties: {}, geometry: { type: "MultiPoint", coordinates: [ [0, 0], [10, 10], ], }, }, "takes coordinates" ); t.deepEqual( multiPoint( [ [0, 0], [10, 10], ], { test: 23 } ), { type: "Feature", properties: { test: 23, }, geometry: { type: "MultiPoint", coordinates: [ [0, 0], [10, 10], ], }, }, "takes properties" ); // t.throws(() => { // multiPoint(); // }, 'throws error with no coordinates'); t.end(); }); test("multipolygon", (t) => { t.deepEqual( multiPolygon([ [ [ [94, 57], [78, 49], [94, 43], [94, 57], ], ], [ [ [93, 19], [63, 7], [79, 0], [93, 19], ], ], ]), { type: "Feature", properties: {}, geometry: { type: "MultiPolygon", coordinates: [ [ [ [94, 57], [78, 49], [94, 43], [94, 57], ], ], [ [ [93, 19], [63, 7], [79, 0], [93, 19], ], ], ], }, }, "takes coordinates" ); t.deepEqual( multiPolygon( [ [ [ [94, 57], [78, 49], [94, 43], [94, 57], ], ], [ [ [93, 19], [63, 7], [79, 0], [93, 19], ], ], ], { test: 23 } ), { type: "Feature", properties: { test: 23, }, geometry: { type: "MultiPolygon", coordinates: [ [ [ [94, 57], [78, 49], [94, 43], [94, 57], ], ], [ [ [93, 19], [63, 7], [79, 0], [93, 19], ], ], ], }, }, "takes properties" ); // t.throws(() => { // multiPolygon(); // }, 'throws error with no coordinates'); t.end(); }); test("geometrycollection", (t) => { const pt = { type: "Point", coordinates: [100, 0], }; const line = { type: "LineString", coordinates: [ [101, 0], [102, 1], ], }; const gc = geometryCollection([pt, line]); t.deepEqual( gc, { type: "Feature", properties: {}, geometry: { type: "GeometryCollection", geometries: [ { type: "Point", coordinates: [100, 0], }, { type: "LineString", coordinates: [ [101, 0], [102, 1], ], }, ], }, }, "creates a GeometryCollection" ); const gcWithProps = geometryCollection([pt, line], { a: 23 }); t.deepEqual( gcWithProps, { type: "Feature", properties: { a: 23 }, geometry: { type: "GeometryCollection", geometries: [ { type: "Point", coordinates: [100, 0], }, { type: "LineString", coordinates: [ [101, 0], [102, 1], ], }, ], }, }, "creates a GeometryCollection with properties" ); t.end(); }); test("radiansToLength", (t) => { t.equal(radiansToLength(1, "radians"), 1); t.equal(radiansToLength(1, "kilometers"), earthRadius / 1000); t.equal(radiansToLength(1, "miles"), earthRadius / 1609.344); // t.throws(() => radiansToLength(1, 'foo'), 'invalid units'); t.end(); }); test("lengthToRadians", (t) => { t.equal(lengthToRadians(1, "radians"), 1); t.equal(lengthToRadians(earthRadius / 1000, "kilometers"), 1); t.equal(lengthToRadians(earthRadius / 1609.344, "miles"), 1); // t.throws(() => lengthToRadians(1, 'foo'), 'invalid units'); t.end(); }); test("lengthToDegrees", (t) => { t.equal(lengthToDegrees(1, "radians"), 57.29577951308232); t.equal(lengthToDegrees(100, "kilometers"), 0.899320363724538); t.equal(lengthToDegrees(10, "miles"), 0.1447315831437903); // t.throws(() => lengthToRadians(1, 'foo'), 'invalid units'); t.end(); }); test("radiansToDegrees", (t) => { t.equal( round(radiansToDegrees(Math.PI / 3), 6), 60, "radiance conversion PI/3" ); t.equal(radiansToDegrees(3.5 * Math.PI), 270, "radiance conversion 3.5PI"); t.equal(radiansToDegrees(-Math.PI), -180, "radiance conversion -PI"); t.end(); }); test("degreesToRadians", (t) => { t.equal(degreesToRadians(60), Math.PI / 3, "degrees conversion 60"); t.equal(degreesToRadians(270), 1.5 * Math.PI, "degrees conversion 270"); t.equal(degreesToRadians(-180), -Math.PI, "degrees conversion -180"); t.end(); }); test("bearingToAzimuth", (t) => { t.equal(bearingToAzimuth(40), 40); t.equal(bearingToAzimuth(-105), 255); t.equal(bearingToAzimuth(410), 50); t.equal(bearingToAzimuth(-200), 160); t.equal(bearingToAzimuth(-395), 325); t.end(); }); test("azimuthToBearing", (t) => { t.equal(azimuthToBearing(0), 0); t.equal(azimuthToBearing(360), 0); t.equal(azimuthToBearing(180), 180); t.equal(azimuthToBearing(40), 40); t.equal(azimuthToBearing(40 + 360), 40); t.equal(azimuthToBearing(-35), -35); t.equal(azimuthToBearing(-35 - 360), -35); t.equal(azimuthToBearing(255), -105); t.equal(azimuthToBearing(255 + 360), -105); t.equal(azimuthToBearing(-200), 160); t.equal(azimuthToBearing(-200 - 360), 160); t.end(); }); test("round", (t) => { t.equal(round(125.123), 125); t.equal(round(123.123, 1), 123.1); t.equal(round(123.5), 124); t.throws(() => round(34.5, "precision"), "invalid precision"); t.throws(() => round(34.5, -5), "invalid precision"); t.end(); }); test("convertLength", (t) => { t.equal(convertLength(1000, "meters"), 1); t.equal(convertLength(1000, "meters", "kilometers"), 1); t.equal(convertLength(1, "kilometers", "miles"), 0.621371192237334); t.equal(convertLength(1, "miles", "kilometers"), 1.609344); t.equal(convertLength(1, "nauticalmiles"), 1.852); t.equal(convertLength(1, "meters", "centimeters"), 100.00000000000001); t.equal(convertLength(1, "meters", "yards"), 1.0936); t.equal(convertLength(1, "yards", "meters"), 0.91441111923921); // t.throws(() => convertLength(1, 'foo'), 'invalid units'); t.equal( convertLength(Math.PI, "radians", "degrees"), 180, "PI Radians is 180 degrees" ); t.equal( convertLength(180, "degrees", "radians"), Math.PI, "180 Degrees is PI Radians" ); t.end(); }); test("convertArea", (t) => { t.equal(convertArea(1000), 0.001); t.equal(convertArea(1, "kilometres", "miles"), 0.386); t.equal(convertArea(1, "miles", "kilometers"), 2.5906735751295336); t.equal(convertArea(1, "meters", "centimetres"), 10000); t.equal(convertArea(100, "metres", "acres"), 0.0247105); t.equal(convertArea(100, undefined, "yards"), 119.59900459999999); t.equal(convertArea(100, "metres", "feet"), 1076.3910417); t.equal(convertArea(100000, "feet", undefined), 0.009290303999749462); t.equal(convertArea(1, "meters", "hectares"), 0.0001); // t.throws(() => convertLength(1, 'foo'), 'invalid original units'); // t.throws(() => convertLength(1, 'meters', 'foo'), 'invalid final units'); t.end(); }); // https://github.com/Turfjs/turf/issues/853 // https://github.com/Turfjs/turf/pull/866#discussion_r129873661 test("null geometries", (t) => { t.equal(feature(null).geometry, null, "feature"); t.equal( featureCollection([feature(null)]).features[0].geometry, null, "featureCollection" ); t.equal( geometryCollection([feature(null).geometry]).geometry.geometries[0], null, "geometryCollection" ); t.equal( geometryCollection([]).geometry.geometries.length, 0, "geometryCollection -- empty" ); t.end(); }); test("turf-helpers -- Handle Id & BBox properties", (t) => { const id = 12345; const bbox = [10, 30, 10, 30]; const pt = point([10, 30], {}, { bbox, id }); const ptId0 = point([10, 30], {}, { bbox, id: 0 }); const fc = featureCollection([pt], { bbox, id }); t.equal(pt.id, id, "feature id"); t.equal(ptId0.id, 0, "feature id = 0"); // issue #1180 t.equal(pt.bbox, bbox, "feature bbox"); t.equal(fc.id, id, "featureCollection id"); t.equal(fc.bbox, bbox, "featureCollection bbox"); // t.throws(() => point([10, 30], {}, {bbox: [0], id}), 'throws invalid bbox'); // t.throws(() => point([10, 30], {}, {bbox, id: {invalid: 'id'}}), 'throws invalid id'); // t.throws(() => featureCollection([pt], {bbox: [0], id}), 'throws invalid bbox'); // t.throws(() => featureCollection([pt], {bbox: [0], id: {invalid: 'id'}}), 'throws invalid id'); t.end(); }); test("turf-helpers -- isNumber", (t) => { // t.throws(() => point(['foo', 'bar']), /coordinates must contain numbers/, 'coordinates must contain numbers'); // t.throws(() => lineString([['foo', 'bar'], ['hello', 'world']]), /coordinates must contain numbers/, 'coordinates must contain numbers'); // t.throws(() => polygon([[['foo', 'bar'], ['hello', 'world'], ['world', 'hello'], ['foo', 'bar']]]), /coordinates must contain numbers/, 'coordinates must contain numbers'); // true t.true(isNumber(123)); t.true(isNumber(1.23)); t.true(isNumber(-1.23)); t.true(isNumber(-123)); t.true(isNumber("123")); t.true(isNumber(+"123")); t.true(isNumber("1e10000")); t.true(isNumber(1e100)); t.true(isNumber(Infinity)); t.true(isNumber(-Infinity)); // false t.false(isNumber(+"ciao")); t.false(isNumber("foo")); t.false(isNumber("10px")); t.false(isNumber(NaN)); t.false(isNumber(undefined)); t.false(isNumber(null)); t.false(isNumber({ a: 1 })); t.false(isNumber({})); t.false(isNumber([1, 2, 3])); t.false(isNumber([])); t.false(isNumber(isNumber)); t.end(); }); test("turf-helpers -- isObject", (t) => { // true t.true(isObject({ a: 1 })); t.true(isObject({})); t.true(point([0, 1])); t.true(isObject(new Object())); // false t.false(isObject(123)); t.false(isObject(Infinity)); t.false(isObject(-123)); t.false(isObject("foo")); t.false(isObject(NaN)); t.false(isObject(undefined)); t.false(isObject(null)); t.false(isObject([1, 2, 3])); t.false(isObject([])); t.false(isObject(isNumber)); t.false( isObject(function () { /*noop*/ }) ); t.end(); }); test("turf-helpers -- points", (t) => { const points = turf.points( [ [-75, 39], [-80, 45], [-78, 50], ], { foo: "bar" }, { id: "hello" } ); t.equal(points.features.length, 3); t.equal(points.id, "hello"); t.equal(points.features[0].properties.foo, "bar"); t.end(); }); test("turf-helpers -- lineStrings", (t) => { var linestrings = turf.lineStrings( [ [ [-24, 63], [-23, 60], [-25, 65], [-20, 69], ], [ [-14, 43], [-13, 40], [-15, 45], [-10, 49], ], ], { foo: "bar" }, { id: "hello" } ); t.equal(linestrings.features.length, 2); t.equal(linestrings.id, "hello"); t.equal(linestrings.features[0].properties.foo, "bar"); t.end(); }); test("turf-helpers -- polygons", (t) => { var polygons = turf.polygons( [ [ [ [-5, 52], [-4, 56], [-2, 51], [-7, 54], [-5, 52], ], ], [ [ [-15, 42], [-14, 46], [-12, 41], [-17, 44], [-15, 42], ], ], ], { foo: "bar" }, { id: "hello" } ); t.equal(polygons.features.length, 2); t.equal(polygons.id, "hello"); t.equal(polygons.features[0].properties.foo, "bar"); t.end(); }); test("turf-helpers -- Issue #1284 - Prevent mutating Properties", (t) => { // https://github.com/Turfjs/turf/issues/1284 const coord = [110, 45]; const properties = { foo: "bar" }; // Create initial Feature const pt = feature(coord, properties); t.deepEqual(pt.properties, { foo: "bar" }); t.deepEqual(properties, { foo: "bar" }); // Mutate Original Properties properties.foo = "barbar"; // Initial Point's Properties ~should~ be mutated // https://github.com/Turfjs/turf/commit/39c6c9ec29986cc540960b3e2680e9e0a65168a1#r28018260 t.deepEqual(pt.properties, { foo: "barbar" }); t.deepEqual(properties, { foo: "barbar" }); // Include this test case if initial point should ~not~ have it's properties mutated t.skip(pt.properties, { foo: "bar" }); // Create Mutated Point const ptMutate = feature(coord, properties); t.deepEqual(ptMutate.properties, { foo: "barbar" }); t.deepEqual(properties, { foo: "barbar" }); // New Features should contain empty properties {} t.deepEqual(feature(coord).properties, {}); t.end(); }); ================================================ FILE: packages/turf-helpers/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-helpers/types.ts ================================================ import { BBox, GeometryCollection, LineString, Polygon, Point } from "geojson"; import { feature, featureCollection, geometry, geometryCollection, isNumber, isObject, lengthToDegrees, lengthToRadians, lineString, multiLineString, multiPoint, multiPolygon, // Typescript types point, polygon, radiansToLength, } from "./index.js"; // Fixtures const bbox: BBox = [-180, -90, 180, 90]; const properties = { foo: "bar" }; const pt = point([0, 1]); const line = lineString([ [0, 1], [2, 3], ]); const poly = polygon([ [ [0, 1], [0, 0], [2, 3], [0, 1], ], ]); const feat = feature({ coordinates: [1, 0], type: "Point" }); const multiPt = multiPoint([ [0, 1], [2, 3], [0, 1], ]); const multiLine = multiLineString([ [ [0, 1], [2, 3], [0, 1], ], ]); const multiPoly = multiPolygon([ [ [ [0, 1], [0, 0], [2, 3], [0, 1], ], ], ]); // radiansToLength & lengthToRadians radiansToLength(5); lengthToRadians(10); lengthToDegrees(45); // default import & import * as point([0, 1]); lineString([ [0, 1], [2, 3], ]); polygon([ [ [0, 1], [0, 0], [2, 3], [0, 1], ], ]); feature({ coordinates: [1, 0], type: "Point" }); feature(null); multiPoint([ [0, 1], [2, 3], [0, 1], ]); multiLineString([ [ [0, 1], [2, 3], [0, 1], ], ]); multiPolygon([ [ [ [0, 1], [0, 0], [2, 3], [0, 1], ], ], ]); // Mixed collection is defiend as FeatureCollection const mixed = featureCollection([pt, poly]); mixed.features.push(pt); mixed.features.push(line); mixed.features.push(poly); // Blank collection is defined as FeatureCollection const blank = featureCollection([]); blank.features.push(pt); blank.features.push(line); blank.features.push(poly); // Collection with only Points const points = featureCollection([]); points.features.push(pt); // points.features.push(line) // Argument of type 'Feature' is not assignable to parameter of type 'Feature'. // Collection with only LineStrings const lines = featureCollection([line]); lines.features.push(line); // lines.features.push(pt) // Argument of type 'Feature' is not assignable to parameter of type 'Feature'. // Collection with only Polygons const polygons = featureCollection([]); polygons.features.push(poly); // bbox & id point(pt.geometry.coordinates, properties, { bbox, id: 1 }); lineString(line.geometry.coordinates, properties, { bbox, id: 1 }); polygon(poly.geometry.coordinates, properties, { bbox, id: 1 }); multiPoint(multiPt.geometry.coordinates, properties, { bbox, id: 1 }); multiLineString(multiLine.geometry.coordinates, properties, { bbox, id: 1 }); multiPolygon(multiPoly.geometry.coordinates, properties, { bbox, id: 1 }); geometryCollection([pt.geometry], properties, { bbox, id: 1 }); // properties point(pt.geometry.coordinates, { foo: "bar" }); point(pt.geometry.coordinates, { 1: 2 }); point(pt.geometry.coordinates, { 1: { foo: "bar" } }); // isNumber -- true isNumber(123); isNumber(1.23); isNumber(-1.23); isNumber(-123); isNumber("123"); isNumber(+"123"); isNumber("1e10000"); isNumber(1e100); isNumber(Infinity); isNumber(-Infinity); // isNumber -- false isNumber(+"ciao"); isNumber("foo"); isNumber("10px"); isNumber(NaN); isNumber(undefined); isNumber(null); isNumber({ a: 1 }); isNumber({}); isNumber([1, 2, 3]); isNumber([]); isNumber(isNumber); // isObject -- true isObject({ a: 1 }); isObject({}); isObject(point([0, 1])); // isObject -- false isObject(123); isObject(Infinity); isObject(-123); isObject("foo"); isObject(NaN); isObject(undefined); isObject(null); isObject([1, 2, 3]); isObject([]); isObject(isNumber); // Geometry const ptGeom = geometry("Point", pt.geometry.coordinates); const lineGeom = geometry("LineString", line.geometry.coordinates); const polyGeom = geometry("Polygon", poly.geometry.coordinates); const multiPtGeom = geometry("MultiPoint", multiPt.geometry.coordinates); const multiLineGeom = geometry( "MultiLineString", multiLine.geometry.coordinates ); const multiPolyGeom = geometry("MultiPolygon", multiPoly.geometry.coordinates); // Custom Properties const customPt = point([10, 50], { foo: "bar" }); // Handle GeometryCollection & Feature.GeometryCollection const geomCollection = geometryCollection([pt.geometry, line.geometry]); const p1 = geomCollection.geometry.geometries[0]; const l1 = geomCollection.geometry.geometries[0]; const mixedGeomCollection = featureCollection([ pt, geomCollection, ]); const fc = featureCollection([pt, line]); const featureGeomCollection = feature(geomCollection.geometry); ================================================ FILE: packages/turf-hex-grid/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-hex-grid/README.md ================================================ # @turf/hex-grid ## hexGrid Takes a bounding box and the diameter of the cell and returns a [FeatureCollection][1] of flat-topped hexagons or triangles ([Polygon][2] features) aligned in an "odd-q" vertical grid as described in [Hexagonal Grids][3]. ### Parameters * `bbox` **[BBox][4]** extent in \[minX, minY, maxX, maxY] order * `cellSide` **[number][5]** length of the side of the the hexagons or triangles, in units. It will also coincide with the radius of the circumcircle of the hexagons. * `options` **[Object][6]** Optional parameters (optional, default `{}`) * `options.units` **Units** used in calculating cell size. Supports all valid Turf [Units][7]. (optional, default `'kilometers'`) * `options.properties` **[Object][6]** passed to each hexagon or triangle of the grid (optional, default `{}`) * `options.mask` **[Feature][8]<([Polygon][2] | [MultiPolygon][9])>?** if passed a Polygon or MultiPolygon, the grid Points will be created only inside it * `options.triangles` **[boolean][10]** whether to return as triangles instead of hexagons (optional, default `false`) ### Examples ```javascript var bbox = [-96,31,-84,40]; var cellSide = 50; var options = {units: 'miles'}; var hexgrid = turf.hexGrid(bbox, cellSide, options); //addToMap var addToMap = [hexgrid]; ``` Returns **[FeatureCollection][1]<[Polygon][2]>** a hexagonal grid [1]: https://tools.ietf.org/html/rfc7946#section-3.3 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [3]: http://www.redblobgames.com/grids/hexagons/ [4]: https://tools.ietf.org/html/rfc7946#section-5 [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [7]: https://turfjs.org/docs/api/types/Units [8]: https://tools.ietf.org/html/rfc7946#section-3.2 [9]: https://tools.ietf.org/html/rfc7946#section-3.1.7 [10]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/hex-grid ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-hex-grid/bench.ts ================================================ import Benchmark from "benchmark"; import { hexGrid as grid } from "./index.js"; // prettier-ignore var bbox = [ -96.6357421875, 31.12819929911196, -84.9462890625, 40.58058466412764, ]; /** * Benchmark Results * * turf-hex-grid -- 10 cells x 67,086 ops/sec ±12.27% (80 runs sampled) * turf-hex-grid -- 1570 cells x 571 ops/sec ±1.52% (83 runs sampled) * turf-hex-grid -- 163778 cells x 1.13 ops/sec ±11.65% (7 runs sampled) */ var lowres = grid(bbox, 100, { units: "miles" }).features.length; var midres = grid(bbox, 10, { units: "miles" }).features.length; var highres = grid(bbox, 1, { units: "miles" }).features.length; var suite = new Benchmark.Suite("turf-hex-grid"); suite .add("turf-hex-grid -- " + lowres + " cells", function () { grid(bbox, 100, { units: "miles" }); }) .add("turf-hex-grid -- " + midres + " cells", function () { grid(bbox, 10, { units: "miles" }); }) .add("turf-hex-grid -- " + highres + " cells", function () { grid(bbox, 1, { units: "miles" }); }) .on("cycle", function (event) { console.log(String(event.target)); }) .run(); ================================================ FILE: packages/turf-hex-grid/index.ts ================================================ import { distance } from "@turf/distance"; import { intersect } from "@turf/intersect"; import { Feature, FeatureCollection, GeoJsonProperties, Polygon, BBox, MultiPolygon, } from "geojson"; import { polygon, featureCollection, Units } from "@turf/helpers"; /** * Takes a bounding box and the diameter of the cell and returns a {@link FeatureCollection} of flat-topped * hexagons or triangles ({@link Polygon} features) aligned in an "odd-q" vertical grid as * described in [Hexagonal Grids](http://www.redblobgames.com/grids/hexagons/). * * @function * @param {BBox} bbox extent in [minX, minY, maxX, maxY] order * @param {number} cellSide length of the side of the the hexagons or triangles, in units. It will also coincide with the * radius of the circumcircle of the hexagons. * @param {Object} [options={}] Optional parameters * @param {Units} [options.units='kilometers'] used in calculating cell size. Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @param {Object} [options.properties={}] passed to each hexagon or triangle of the grid * @param {Feature} [options.mask] if passed a Polygon or MultiPolygon, the grid Points will be created only inside it * @param {boolean} [options.triangles=false] whether to return as triangles instead of hexagons * @returns {FeatureCollection} a hexagonal grid * @example * var bbox = [-96,31,-84,40]; * var cellSide = 50; * var options = {units: 'miles'}; * * var hexgrid = turf.hexGrid(bbox, cellSide, options); * * //addToMap * var addToMap = [hexgrid]; */ function hexGrid

( bbox: BBox, cellSide: number, options: { units?: Units; triangles?: boolean; properties?: P; mask?: Feature; } = {} ): FeatureCollection { // Issue => https://github.com/Turfjs/turf/issues/1284 const clonedProperties = JSON.stringify(options.properties || {}); const [west, south, east, north] = bbox; const centerY = (south + north) / 2; const centerX = (west + east) / 2; // https://github.com/Turfjs/turf/issues/758 const xFraction = (cellSide * 2) / distance([west, centerY], [east, centerY], options); const cellWidth = xFraction * (east - west); const yFraction = (cellSide * 2) / distance([centerX, south], [centerX, north], options); const cellHeight = yFraction * (north - south); const radius = cellWidth / 2; const hex_width = radius * 2; const hex_height = (Math.sqrt(3) / 2) * cellHeight; const box_width = east - west; const box_height = north - south; const x_interval = (3 / 4) * hex_width; const y_interval = hex_height; // adjust box_width so all hexagons will be inside the bbox const x_span = (box_width - hex_width) / (hex_width - radius / 2); const x_count = Math.floor(x_span); const x_adjust = (x_count * x_interval - radius / 2 - box_width) / 2 - radius / 2 + x_interval / 2; // adjust box_height so all hexagons will be inside the bbox const y_count = Math.floor((box_height - hex_height) / hex_height); let y_adjust = (box_height - y_count * hex_height) / 2; const hasOffsetY = y_count * hex_height - box_height > hex_height / 2; if (hasOffsetY) { y_adjust -= hex_height / 4; } // Precompute cosines and sines of angles used in hexagon creation for performance gain const cosines = []; const sines = []; for (let i = 0; i < 6; i++) { const angle = ((2 * Math.PI) / 6) * i; cosines.push(Math.cos(angle)); sines.push(Math.sin(angle)); } const results = []; for (let x = 0; x <= x_count; x++) { for (let y = 0; y <= y_count; y++) { const isOdd = x % 2 === 1; if (y === 0 && isOdd) continue; if (y === 0 && hasOffsetY) continue; const center_x = x * x_interval + west - x_adjust; let center_y = y * y_interval + south + y_adjust; if (isOdd) { center_y -= hex_height / 2; } if (options.triangles === true) { hexTriangles( [center_x, center_y], cellWidth / 2, cellHeight / 2, JSON.parse(clonedProperties), cosines, sines ).forEach(function (triangle) { if (options.mask) { if (intersect(featureCollection([options.mask, triangle]))) results.push(triangle); } else { results.push(triangle); } }); } else { const hex = hexagon( [center_x, center_y], cellWidth / 2, cellHeight / 2, JSON.parse(clonedProperties), cosines, sines ); if (options.mask) { if (intersect(featureCollection([options.mask, hex]))) results.push(hex); } else { results.push(hex); } } } } return featureCollection(results) as FeatureCollection; } /** * Creates hexagon * * @private * @param {Array} center of the hexagon * @param {number} rx half hexagon width * @param {number} ry half hexagon height * @param {Object} properties passed to each hexagon * @param {Array} cosines precomputed * @param {Array} sines precomputed * @returns {Feature} hexagon */ function hexagon( center: number[], rx: number, ry: number, properties: GeoJsonProperties, cosines: number[], sines: number[] ) { const vertices = []; for (let i = 0; i < 6; i++) { const x = center[0] + rx * cosines[i]; const y = center[1] + ry * sines[i]; vertices.push([x, y]); } //first and last vertex must be the same vertices.push(vertices[0].slice()); return polygon([vertices], properties); } /** * Creates triangles composing an hexagon * * @private * @param {Array} center of the hexagon * @param {number} rx half triangle width * @param {number} ry half triangle height * @param {Object} properties passed to each triangle * @param {Array} cosines precomputed * @param {Array} sines precomputed * @returns {Array>} triangles */ function hexTriangles( center: number[], rx: number, ry: number, properties: GeoJsonProperties, cosines: number[], sines: number[] ) { const triangles = []; for (let i = 0; i < 6; i++) { const vertices = []; vertices.push(center); vertices.push([center[0] + rx * cosines[i], center[1] + ry * sines[i]]); vertices.push([ center[0] + rx * cosines[(i + 1) % 6], center[1] + ry * sines[(i + 1) % 6], ]); vertices.push(center); triangles.push(polygon([vertices], properties)); } return triangles; } export { hexGrid }; export default hexGrid; ================================================ FILE: packages/turf-hex-grid/package.json ================================================ { "name": "@turf/hex-grid", "version": "7.3.4", "description": "Creates a honeycomb-like grid of hexagons within a bounding box.", "author": "Turf Authors", "contributors": [ "James Seppi <@jseppi>", "Morgan Herlocker <@morganherlocker>", "Tom MacWright <@tmcw>", "Jan Vaillant <@jvail>", "Lyzi Diamond <@lyzidiamond>", "Denis Carriere <@DenisCarriere>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "grid", "hexgrid", "hexbin", "points", "geojson" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/bbox-polygon": "workspace:*", "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", "@turf/intersect": "workspace:*", "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-hex-grid/test/in/bbox1-triangles.json ================================================ { "bbox": [-96.6357421875, 31.12819929911196, -84.9462890625, 40.58058466412764], "cellSide": 25, "units": "miles", "triangles": true } ================================================ FILE: packages/turf-hex-grid/test/in/bbox1.json ================================================ { "bbox": [-96.6357421875, 31.12819929911196, -84.9462890625, 40.58058466412764], "cellSide": 25, "units": "miles" } ================================================ FILE: packages/turf-hex-grid/test/in/big-bbox.json ================================================ { "bbox": [-220.78125, -80.64703474739618, -29.53125, 78.34941069014629], "cellSide": 500, "units": "miles" } ================================================ FILE: packages/turf-hex-grid/test/in/fiji-10-miles.json ================================================ { "bbox": [ -180.3460693359375, -17.16703442146408, -179.5770263671875, -16.48349760264812 ], "cellSide": 10, "units": "miles" } ================================================ FILE: packages/turf-hex-grid/test/in/london-20-miles.json ================================================ { "bbox": [-0.6207275390625, 51.23784668914442, 0.439453125, 51.767839887322154], "cellSide": 20, "units": "miles" } ================================================ FILE: packages/turf-hex-grid/test/in/piedemont-mask.json ================================================ { "bbox": [6.3775634765625, 44.05601169578525, 9.437255859375, 46.50595444552049], "cellSide": 12.5, "units": "miles", "mask": { "type": "Feature", "properties": { "stroke": "#00F", "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] ] ] } } } ================================================ FILE: packages/turf-hex-grid/test/in/properties.json ================================================ { "bbox": [2.131519317626953, 41.37835427979543, 2.2264480590820312, 41.44388449101261], "properties": { "marker-color": "#0ff" }, "cellSide": 1, "mask": { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [2.223186492919922, 41.416856461155575], [2.1716880798339844, 41.44182560856202], [2.1636199951171875, 41.41608406639095], [2.1334075927734375, 41.407200866420744], [2.1845626831054683, 41.37977115211044], [2.223186492919922, 41.416856461155575] ] ] ] } } } ================================================ FILE: packages/turf-hex-grid/test/in/resolute.json ================================================ { "bbox": [-95.877685546875, 74.46849062193377, -94.031982421875, 74.90226611990785], "cellSide": 12.5, "units": "miles" } ================================================ FILE: packages/turf-hex-grid/test/out/bbox1-triangles.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 31.467449], [-95.704593, 31.467449], [-95.927937, 31.780802], [-96.151282, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 31.467449], [-95.927937, 31.780802], [-96.374626, 31.780802], [-96.151282, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 31.467449], [-96.374626, 31.780802], [-96.59797, 31.467449], [-96.151282, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 31.467449], [-96.59797, 31.467449], [-96.374626, 31.154096], [-96.151282, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 31.467449], [-96.374626, 31.154096], [-95.927937, 31.154096], [-96.151282, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 31.467449], [-95.927937, 31.154096], [-95.704593, 31.467449], [-96.151282, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 32.094155], [-95.704593, 32.094155], [-95.927937, 32.407508], [-96.151282, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 32.094155], [-95.927937, 32.407508], [-96.374626, 32.407508], [-96.151282, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 32.094155], [-96.374626, 32.407508], [-96.59797, 32.094155], [-96.151282, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 32.094155], [-96.59797, 32.094155], [-96.374626, 31.780802], [-96.151282, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 32.094155], [-96.374626, 31.780802], [-95.927937, 31.780802], [-96.151282, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 32.094155], [-95.927937, 31.780802], [-95.704593, 32.094155], [-96.151282, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 32.720861], [-95.704593, 32.720861], [-95.927937, 33.034214], [-96.151282, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 32.720861], [-95.927937, 33.034214], [-96.374626, 33.034214], [-96.151282, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 32.720861], [-96.374626, 33.034214], [-96.59797, 32.720861], [-96.151282, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 32.720861], [-96.59797, 32.720861], [-96.374626, 32.407508], [-96.151282, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 32.720861], [-96.374626, 32.407508], [-95.927937, 32.407508], [-96.151282, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 32.720861], [-95.927937, 32.407508], [-95.704593, 32.720861], [-96.151282, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 33.347567], [-95.704593, 33.347567], [-95.927937, 33.66092], [-96.151282, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 33.347567], [-95.927937, 33.66092], [-96.374626, 33.66092], [-96.151282, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 33.347567], [-96.374626, 33.66092], [-96.59797, 33.347567], [-96.151282, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 33.347567], [-96.59797, 33.347567], [-96.374626, 33.034214], [-96.151282, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 33.347567], [-96.374626, 33.034214], [-95.927937, 33.034214], [-96.151282, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 33.347567], [-95.927937, 33.034214], [-95.704593, 33.347567], [-96.151282, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 33.974274], [-95.704593, 33.974274], [-95.927937, 34.287627], [-96.151282, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 33.974274], [-95.927937, 34.287627], [-96.374626, 34.287627], [-96.151282, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 33.974274], [-96.374626, 34.287627], [-96.59797, 33.974274], [-96.151282, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 33.974274], [-96.59797, 33.974274], [-96.374626, 33.66092], [-96.151282, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 33.974274], [-96.374626, 33.66092], [-95.927937, 33.66092], [-96.151282, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 33.974274], [-95.927937, 33.66092], [-95.704593, 33.974274], [-96.151282, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 34.60098], [-95.704593, 34.60098], [-95.927937, 34.914333], [-96.151282, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 34.60098], [-95.927937, 34.914333], [-96.374626, 34.914333], [-96.151282, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 34.60098], [-96.374626, 34.914333], [-96.59797, 34.60098], [-96.151282, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 34.60098], [-96.59797, 34.60098], [-96.374626, 34.287627], [-96.151282, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 34.60098], [-96.374626, 34.287627], [-95.927937, 34.287627], [-96.151282, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 34.60098], [-95.927937, 34.287627], [-95.704593, 34.60098], [-96.151282, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 35.227686], [-95.704593, 35.227686], [-95.927937, 35.541039], [-96.151282, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 35.227686], [-95.927937, 35.541039], [-96.374626, 35.541039], [-96.151282, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 35.227686], [-96.374626, 35.541039], [-96.59797, 35.227686], [-96.151282, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 35.227686], [-96.59797, 35.227686], [-96.374626, 34.914333], [-96.151282, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 35.227686], [-96.374626, 34.914333], [-95.927937, 34.914333], [-96.151282, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 35.227686], [-95.927937, 34.914333], [-95.704593, 35.227686], [-96.151282, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 35.854392], [-95.704593, 35.854392], [-95.927937, 36.167745], [-96.151282, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 35.854392], [-95.927937, 36.167745], [-96.374626, 36.167745], [-96.151282, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 35.854392], [-96.374626, 36.167745], [-96.59797, 35.854392], [-96.151282, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 35.854392], [-96.59797, 35.854392], [-96.374626, 35.541039], [-96.151282, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 35.854392], [-96.374626, 35.541039], [-95.927937, 35.541039], [-96.151282, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 35.854392], [-95.927937, 35.541039], [-95.704593, 35.854392], [-96.151282, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 36.481098], [-95.704593, 36.481098], [-95.927937, 36.794451], [-96.151282, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 36.481098], [-95.927937, 36.794451], [-96.374626, 36.794451], [-96.151282, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 36.481098], [-96.374626, 36.794451], [-96.59797, 36.481098], [-96.151282, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 36.481098], [-96.59797, 36.481098], [-96.374626, 36.167745], [-96.151282, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 36.481098], [-96.374626, 36.167745], [-95.927937, 36.167745], [-96.151282, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 36.481098], [-95.927937, 36.167745], [-95.704593, 36.481098], [-96.151282, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 37.107804], [-95.704593, 37.107804], [-95.927937, 37.421157], [-96.151282, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 37.107804], [-95.927937, 37.421157], [-96.374626, 37.421157], [-96.151282, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 37.107804], [-96.374626, 37.421157], [-96.59797, 37.107804], [-96.151282, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 37.107804], [-96.59797, 37.107804], [-96.374626, 36.794451], [-96.151282, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 37.107804], [-96.374626, 36.794451], [-95.927937, 36.794451], [-96.151282, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 37.107804], [-95.927937, 36.794451], [-95.704593, 37.107804], [-96.151282, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 37.73451], [-95.704593, 37.73451], [-95.927937, 38.047863], [-96.151282, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 37.73451], [-95.927937, 38.047863], [-96.374626, 38.047863], [-96.151282, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 37.73451], [-96.374626, 38.047863], [-96.59797, 37.73451], [-96.151282, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 37.73451], [-96.59797, 37.73451], [-96.374626, 37.421157], [-96.151282, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 37.73451], [-96.374626, 37.421157], [-95.927937, 37.421157], [-96.151282, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 37.73451], [-95.927937, 37.421157], [-95.704593, 37.73451], [-96.151282, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 38.361217], [-95.704593, 38.361217], [-95.927937, 38.67457], [-96.151282, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 38.361217], [-95.927937, 38.67457], [-96.374626, 38.67457], [-96.151282, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 38.361217], [-96.374626, 38.67457], [-96.59797, 38.361217], [-96.151282, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 38.361217], [-96.59797, 38.361217], [-96.374626, 38.047863], [-96.151282, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 38.361217], [-96.374626, 38.047863], [-95.927937, 38.047863], [-96.151282, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 38.361217], [-95.927937, 38.047863], [-95.704593, 38.361217], [-96.151282, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 38.987923], [-95.704593, 38.987923], [-95.927937, 39.301276], [-96.151282, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 38.987923], [-95.927937, 39.301276], [-96.374626, 39.301276], [-96.151282, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 38.987923], [-96.374626, 39.301276], [-96.59797, 38.987923], [-96.151282, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 38.987923], [-96.59797, 38.987923], [-96.374626, 38.67457], [-96.151282, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 38.987923], [-96.374626, 38.67457], [-95.927937, 38.67457], [-96.151282, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 38.987923], [-95.927937, 38.67457], [-95.704593, 38.987923], [-96.151282, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 39.614629], [-95.704593, 39.614629], [-95.927937, 39.927982], [-96.151282, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 39.614629], [-95.927937, 39.927982], [-96.374626, 39.927982], [-96.151282, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 39.614629], [-96.374626, 39.927982], [-96.59797, 39.614629], [-96.151282, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 39.614629], [-96.59797, 39.614629], [-96.374626, 39.301276], [-96.151282, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 39.614629], [-96.374626, 39.301276], [-95.927937, 39.301276], [-96.151282, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 39.614629], [-95.927937, 39.301276], [-95.704593, 39.614629], [-96.151282, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 40.241335], [-95.704593, 40.241335], [-95.927937, 40.554688], [-96.151282, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 40.241335], [-95.927937, 40.554688], [-96.374626, 40.554688], [-96.151282, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 40.241335], [-96.374626, 40.554688], [-96.59797, 40.241335], [-96.151282, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 40.241335], [-96.59797, 40.241335], [-96.374626, 39.927982], [-96.151282, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 40.241335], [-96.374626, 39.927982], [-95.927937, 39.927982], [-96.151282, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.151282, 40.241335], [-95.927937, 39.927982], [-95.704593, 40.241335], [-96.151282, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 31.780802], [-95.034559, 31.780802], [-95.257904, 32.094155], [-95.481248, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 31.780802], [-95.257904, 32.094155], [-95.704593, 32.094155], [-95.481248, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 31.780802], [-95.704593, 32.094155], [-95.927937, 31.780802], [-95.481248, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 31.780802], [-95.927937, 31.780802], [-95.704593, 31.467449], [-95.481248, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 31.780802], [-95.704593, 31.467449], [-95.257904, 31.467449], [-95.481248, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 31.780802], [-95.257904, 31.467449], [-95.034559, 31.780802], [-95.481248, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 32.407508], [-95.034559, 32.407508], [-95.257904, 32.720861], [-95.481248, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 32.407508], [-95.257904, 32.720861], [-95.704593, 32.720861], [-95.481248, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 32.407508], [-95.704593, 32.720861], [-95.927937, 32.407508], [-95.481248, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 32.407508], [-95.927937, 32.407508], [-95.704593, 32.094155], [-95.481248, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 32.407508], [-95.704593, 32.094155], [-95.257904, 32.094155], [-95.481248, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 32.407508], [-95.257904, 32.094155], [-95.034559, 32.407508], [-95.481248, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 33.034214], [-95.034559, 33.034214], [-95.257904, 33.347567], [-95.481248, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 33.034214], [-95.257904, 33.347567], [-95.704593, 33.347567], [-95.481248, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 33.034214], [-95.704593, 33.347567], [-95.927937, 33.034214], [-95.481248, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 33.034214], [-95.927937, 33.034214], [-95.704593, 32.720861], [-95.481248, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 33.034214], [-95.704593, 32.720861], [-95.257904, 32.720861], [-95.481248, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 33.034214], [-95.257904, 32.720861], [-95.034559, 33.034214], [-95.481248, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 33.66092], [-95.034559, 33.66092], [-95.257904, 33.974274], [-95.481248, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 33.66092], [-95.257904, 33.974274], [-95.704593, 33.974274], [-95.481248, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 33.66092], [-95.704593, 33.974274], [-95.927937, 33.66092], [-95.481248, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 33.66092], [-95.927937, 33.66092], [-95.704593, 33.347567], [-95.481248, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 33.66092], [-95.704593, 33.347567], [-95.257904, 33.347567], [-95.481248, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 33.66092], [-95.257904, 33.347567], [-95.034559, 33.66092], [-95.481248, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 34.287627], [-95.034559, 34.287627], [-95.257904, 34.60098], [-95.481248, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 34.287627], [-95.257904, 34.60098], [-95.704593, 34.60098], [-95.481248, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 34.287627], [-95.704593, 34.60098], [-95.927937, 34.287627], [-95.481248, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 34.287627], [-95.927937, 34.287627], [-95.704593, 33.974274], [-95.481248, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 34.287627], [-95.704593, 33.974274], [-95.257904, 33.974274], [-95.481248, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 34.287627], [-95.257904, 33.974274], [-95.034559, 34.287627], [-95.481248, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 34.914333], [-95.034559, 34.914333], [-95.257904, 35.227686], [-95.481248, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 34.914333], [-95.257904, 35.227686], [-95.704593, 35.227686], [-95.481248, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 34.914333], [-95.704593, 35.227686], [-95.927937, 34.914333], [-95.481248, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 34.914333], [-95.927937, 34.914333], [-95.704593, 34.60098], [-95.481248, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 34.914333], [-95.704593, 34.60098], [-95.257904, 34.60098], [-95.481248, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 34.914333], [-95.257904, 34.60098], [-95.034559, 34.914333], [-95.481248, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 35.541039], [-95.034559, 35.541039], [-95.257904, 35.854392], [-95.481248, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 35.541039], [-95.257904, 35.854392], [-95.704593, 35.854392], [-95.481248, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 35.541039], [-95.704593, 35.854392], [-95.927937, 35.541039], [-95.481248, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 35.541039], [-95.927937, 35.541039], [-95.704593, 35.227686], [-95.481248, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 35.541039], [-95.704593, 35.227686], [-95.257904, 35.227686], [-95.481248, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 35.541039], [-95.257904, 35.227686], [-95.034559, 35.541039], [-95.481248, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 36.167745], [-95.034559, 36.167745], [-95.257904, 36.481098], [-95.481248, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 36.167745], [-95.257904, 36.481098], [-95.704593, 36.481098], [-95.481248, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 36.167745], [-95.704593, 36.481098], [-95.927937, 36.167745], [-95.481248, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 36.167745], [-95.927937, 36.167745], [-95.704593, 35.854392], [-95.481248, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 36.167745], [-95.704593, 35.854392], [-95.257904, 35.854392], [-95.481248, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 36.167745], [-95.257904, 35.854392], [-95.034559, 36.167745], [-95.481248, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 36.794451], [-95.034559, 36.794451], [-95.257904, 37.107804], [-95.481248, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 36.794451], [-95.257904, 37.107804], [-95.704593, 37.107804], [-95.481248, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 36.794451], [-95.704593, 37.107804], [-95.927937, 36.794451], [-95.481248, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 36.794451], [-95.927937, 36.794451], [-95.704593, 36.481098], [-95.481248, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 36.794451], [-95.704593, 36.481098], [-95.257904, 36.481098], [-95.481248, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 36.794451], [-95.257904, 36.481098], [-95.034559, 36.794451], [-95.481248, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 37.421157], [-95.034559, 37.421157], [-95.257904, 37.73451], [-95.481248, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 37.421157], [-95.257904, 37.73451], [-95.704593, 37.73451], [-95.481248, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 37.421157], [-95.704593, 37.73451], [-95.927937, 37.421157], [-95.481248, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 37.421157], [-95.927937, 37.421157], [-95.704593, 37.107804], [-95.481248, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 37.421157], [-95.704593, 37.107804], [-95.257904, 37.107804], [-95.481248, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 37.421157], [-95.257904, 37.107804], [-95.034559, 37.421157], [-95.481248, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 38.047863], [-95.034559, 38.047863], [-95.257904, 38.361217], [-95.481248, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 38.047863], [-95.257904, 38.361217], [-95.704593, 38.361217], [-95.481248, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 38.047863], [-95.704593, 38.361217], [-95.927937, 38.047863], [-95.481248, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 38.047863], [-95.927937, 38.047863], [-95.704593, 37.73451], [-95.481248, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 38.047863], [-95.704593, 37.73451], [-95.257904, 37.73451], [-95.481248, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 38.047863], [-95.257904, 37.73451], [-95.034559, 38.047863], [-95.481248, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 38.67457], [-95.034559, 38.67457], [-95.257904, 38.987923], [-95.481248, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 38.67457], [-95.257904, 38.987923], [-95.704593, 38.987923], [-95.481248, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 38.67457], [-95.704593, 38.987923], [-95.927937, 38.67457], [-95.481248, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 38.67457], [-95.927937, 38.67457], [-95.704593, 38.361217], [-95.481248, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 38.67457], [-95.704593, 38.361217], [-95.257904, 38.361217], [-95.481248, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 38.67457], [-95.257904, 38.361217], [-95.034559, 38.67457], [-95.481248, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 39.301276], [-95.034559, 39.301276], [-95.257904, 39.614629], [-95.481248, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 39.301276], [-95.257904, 39.614629], [-95.704593, 39.614629], [-95.481248, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 39.301276], [-95.704593, 39.614629], [-95.927937, 39.301276], [-95.481248, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 39.301276], [-95.927937, 39.301276], [-95.704593, 38.987923], [-95.481248, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 39.301276], [-95.704593, 38.987923], [-95.257904, 38.987923], [-95.481248, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 39.301276], [-95.257904, 38.987923], [-95.034559, 39.301276], [-95.481248, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 39.927982], [-95.034559, 39.927982], [-95.257904, 40.241335], [-95.481248, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 39.927982], [-95.257904, 40.241335], [-95.704593, 40.241335], [-95.481248, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 39.927982], [-95.704593, 40.241335], [-95.927937, 39.927982], [-95.481248, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 39.927982], [-95.927937, 39.927982], [-95.704593, 39.614629], [-95.481248, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 39.927982], [-95.704593, 39.614629], [-95.257904, 39.614629], [-95.481248, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.481248, 39.927982], [-95.257904, 39.614629], [-95.034559, 39.927982], [-95.481248, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 31.467449], [-94.364526, 31.467449], [-94.587871, 31.780802], [-94.811215, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 31.467449], [-94.587871, 31.780802], [-95.034559, 31.780802], [-94.811215, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 31.467449], [-95.034559, 31.780802], [-95.257904, 31.467449], [-94.811215, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 31.467449], [-95.257904, 31.467449], [-95.034559, 31.154096], [-94.811215, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 31.467449], [-95.034559, 31.154096], [-94.587871, 31.154096], [-94.811215, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 31.467449], [-94.587871, 31.154096], [-94.364526, 31.467449], [-94.811215, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 32.094155], [-94.364526, 32.094155], [-94.587871, 32.407508], [-94.811215, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 32.094155], [-94.587871, 32.407508], [-95.034559, 32.407508], [-94.811215, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 32.094155], [-95.034559, 32.407508], [-95.257904, 32.094155], [-94.811215, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 32.094155], [-95.257904, 32.094155], [-95.034559, 31.780802], [-94.811215, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 32.094155], [-95.034559, 31.780802], [-94.587871, 31.780802], [-94.811215, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 32.094155], [-94.587871, 31.780802], [-94.364526, 32.094155], [-94.811215, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 32.720861], [-94.364526, 32.720861], [-94.587871, 33.034214], [-94.811215, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 32.720861], [-94.587871, 33.034214], [-95.034559, 33.034214], [-94.811215, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 32.720861], [-95.034559, 33.034214], [-95.257904, 32.720861], [-94.811215, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 32.720861], [-95.257904, 32.720861], [-95.034559, 32.407508], [-94.811215, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 32.720861], [-95.034559, 32.407508], [-94.587871, 32.407508], [-94.811215, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 32.720861], [-94.587871, 32.407508], [-94.364526, 32.720861], [-94.811215, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 33.347567], [-94.364526, 33.347567], [-94.587871, 33.66092], [-94.811215, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 33.347567], [-94.587871, 33.66092], [-95.034559, 33.66092], [-94.811215, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 33.347567], [-95.034559, 33.66092], [-95.257904, 33.347567], [-94.811215, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 33.347567], [-95.257904, 33.347567], [-95.034559, 33.034214], [-94.811215, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 33.347567], [-95.034559, 33.034214], [-94.587871, 33.034214], [-94.811215, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 33.347567], [-94.587871, 33.034214], [-94.364526, 33.347567], [-94.811215, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 33.974274], [-94.364526, 33.974274], [-94.587871, 34.287627], [-94.811215, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 33.974274], [-94.587871, 34.287627], [-95.034559, 34.287627], [-94.811215, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 33.974274], [-95.034559, 34.287627], [-95.257904, 33.974274], [-94.811215, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 33.974274], [-95.257904, 33.974274], [-95.034559, 33.66092], [-94.811215, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 33.974274], [-95.034559, 33.66092], [-94.587871, 33.66092], [-94.811215, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 33.974274], [-94.587871, 33.66092], [-94.364526, 33.974274], [-94.811215, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 34.60098], [-94.364526, 34.60098], [-94.587871, 34.914333], [-94.811215, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 34.60098], [-94.587871, 34.914333], [-95.034559, 34.914333], [-94.811215, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 34.60098], [-95.034559, 34.914333], [-95.257904, 34.60098], [-94.811215, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 34.60098], [-95.257904, 34.60098], [-95.034559, 34.287627], [-94.811215, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 34.60098], [-95.034559, 34.287627], [-94.587871, 34.287627], [-94.811215, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 34.60098], [-94.587871, 34.287627], [-94.364526, 34.60098], [-94.811215, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 35.227686], [-94.364526, 35.227686], [-94.587871, 35.541039], [-94.811215, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 35.227686], [-94.587871, 35.541039], [-95.034559, 35.541039], [-94.811215, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 35.227686], [-95.034559, 35.541039], [-95.257904, 35.227686], [-94.811215, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 35.227686], [-95.257904, 35.227686], [-95.034559, 34.914333], [-94.811215, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 35.227686], [-95.034559, 34.914333], [-94.587871, 34.914333], [-94.811215, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 35.227686], [-94.587871, 34.914333], [-94.364526, 35.227686], [-94.811215, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 35.854392], [-94.364526, 35.854392], [-94.587871, 36.167745], [-94.811215, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 35.854392], [-94.587871, 36.167745], [-95.034559, 36.167745], [-94.811215, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 35.854392], [-95.034559, 36.167745], [-95.257904, 35.854392], [-94.811215, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 35.854392], [-95.257904, 35.854392], [-95.034559, 35.541039], [-94.811215, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 35.854392], [-95.034559, 35.541039], [-94.587871, 35.541039], [-94.811215, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 35.854392], [-94.587871, 35.541039], [-94.364526, 35.854392], [-94.811215, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 36.481098], [-94.364526, 36.481098], [-94.587871, 36.794451], [-94.811215, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 36.481098], [-94.587871, 36.794451], [-95.034559, 36.794451], [-94.811215, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 36.481098], [-95.034559, 36.794451], [-95.257904, 36.481098], [-94.811215, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 36.481098], [-95.257904, 36.481098], [-95.034559, 36.167745], [-94.811215, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 36.481098], [-95.034559, 36.167745], [-94.587871, 36.167745], [-94.811215, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 36.481098], [-94.587871, 36.167745], [-94.364526, 36.481098], [-94.811215, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 37.107804], [-94.364526, 37.107804], [-94.587871, 37.421157], [-94.811215, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 37.107804], [-94.587871, 37.421157], [-95.034559, 37.421157], [-94.811215, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 37.107804], [-95.034559, 37.421157], [-95.257904, 37.107804], [-94.811215, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 37.107804], [-95.257904, 37.107804], [-95.034559, 36.794451], [-94.811215, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 37.107804], [-95.034559, 36.794451], [-94.587871, 36.794451], [-94.811215, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 37.107804], [-94.587871, 36.794451], [-94.364526, 37.107804], [-94.811215, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 37.73451], [-94.364526, 37.73451], [-94.587871, 38.047863], [-94.811215, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 37.73451], [-94.587871, 38.047863], [-95.034559, 38.047863], [-94.811215, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 37.73451], [-95.034559, 38.047863], [-95.257904, 37.73451], [-94.811215, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 37.73451], [-95.257904, 37.73451], [-95.034559, 37.421157], [-94.811215, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 37.73451], [-95.034559, 37.421157], [-94.587871, 37.421157], [-94.811215, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 37.73451], [-94.587871, 37.421157], [-94.364526, 37.73451], [-94.811215, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 38.361217], [-94.364526, 38.361217], [-94.587871, 38.67457], [-94.811215, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 38.361217], [-94.587871, 38.67457], [-95.034559, 38.67457], [-94.811215, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 38.361217], [-95.034559, 38.67457], [-95.257904, 38.361217], [-94.811215, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 38.361217], [-95.257904, 38.361217], [-95.034559, 38.047863], [-94.811215, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 38.361217], [-95.034559, 38.047863], [-94.587871, 38.047863], [-94.811215, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 38.361217], [-94.587871, 38.047863], [-94.364526, 38.361217], [-94.811215, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 38.987923], [-94.364526, 38.987923], [-94.587871, 39.301276], [-94.811215, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 38.987923], [-94.587871, 39.301276], [-95.034559, 39.301276], [-94.811215, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 38.987923], [-95.034559, 39.301276], [-95.257904, 38.987923], [-94.811215, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 38.987923], [-95.257904, 38.987923], [-95.034559, 38.67457], [-94.811215, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 38.987923], [-95.034559, 38.67457], [-94.587871, 38.67457], [-94.811215, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 38.987923], [-94.587871, 38.67457], [-94.364526, 38.987923], [-94.811215, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 39.614629], [-94.364526, 39.614629], [-94.587871, 39.927982], [-94.811215, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 39.614629], [-94.587871, 39.927982], [-95.034559, 39.927982], [-94.811215, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 39.614629], [-95.034559, 39.927982], [-95.257904, 39.614629], [-94.811215, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 39.614629], [-95.257904, 39.614629], [-95.034559, 39.301276], [-94.811215, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 39.614629], [-95.034559, 39.301276], [-94.587871, 39.301276], [-94.811215, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 39.614629], [-94.587871, 39.301276], [-94.364526, 39.614629], [-94.811215, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 40.241335], [-94.364526, 40.241335], [-94.587871, 40.554688], [-94.811215, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 40.241335], [-94.587871, 40.554688], [-95.034559, 40.554688], [-94.811215, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 40.241335], [-95.034559, 40.554688], [-95.257904, 40.241335], [-94.811215, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 40.241335], [-95.257904, 40.241335], [-95.034559, 39.927982], [-94.811215, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 40.241335], [-95.034559, 39.927982], [-94.587871, 39.927982], [-94.811215, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.811215, 40.241335], [-94.587871, 39.927982], [-94.364526, 40.241335], [-94.811215, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 31.780802], [-93.694493, 31.780802], [-93.917837, 32.094155], [-94.141182, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 31.780802], [-93.917837, 32.094155], [-94.364526, 32.094155], [-94.141182, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 31.780802], [-94.364526, 32.094155], [-94.587871, 31.780802], [-94.141182, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 31.780802], [-94.587871, 31.780802], [-94.364526, 31.467449], [-94.141182, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 31.780802], [-94.364526, 31.467449], [-93.917837, 31.467449], [-94.141182, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 31.780802], [-93.917837, 31.467449], [-93.694493, 31.780802], [-94.141182, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 32.407508], [-93.694493, 32.407508], [-93.917837, 32.720861], [-94.141182, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 32.407508], [-93.917837, 32.720861], [-94.364526, 32.720861], [-94.141182, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 32.407508], [-94.364526, 32.720861], [-94.587871, 32.407508], [-94.141182, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 32.407508], [-94.587871, 32.407508], [-94.364526, 32.094155], [-94.141182, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 32.407508], [-94.364526, 32.094155], [-93.917837, 32.094155], [-94.141182, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 32.407508], [-93.917837, 32.094155], [-93.694493, 32.407508], [-94.141182, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 33.034214], [-93.694493, 33.034214], [-93.917837, 33.347567], [-94.141182, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 33.034214], [-93.917837, 33.347567], [-94.364526, 33.347567], [-94.141182, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 33.034214], [-94.364526, 33.347567], [-94.587871, 33.034214], [-94.141182, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 33.034214], [-94.587871, 33.034214], [-94.364526, 32.720861], [-94.141182, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 33.034214], [-94.364526, 32.720861], [-93.917837, 32.720861], [-94.141182, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 33.034214], [-93.917837, 32.720861], [-93.694493, 33.034214], [-94.141182, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 33.66092], [-93.694493, 33.66092], [-93.917837, 33.974274], [-94.141182, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 33.66092], [-93.917837, 33.974274], [-94.364526, 33.974274], [-94.141182, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 33.66092], [-94.364526, 33.974274], [-94.587871, 33.66092], [-94.141182, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 33.66092], [-94.587871, 33.66092], [-94.364526, 33.347567], [-94.141182, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 33.66092], [-94.364526, 33.347567], [-93.917837, 33.347567], [-94.141182, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 33.66092], [-93.917837, 33.347567], [-93.694493, 33.66092], [-94.141182, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 34.287627], [-93.694493, 34.287627], [-93.917837, 34.60098], [-94.141182, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 34.287627], [-93.917837, 34.60098], [-94.364526, 34.60098], [-94.141182, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 34.287627], [-94.364526, 34.60098], [-94.587871, 34.287627], [-94.141182, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 34.287627], [-94.587871, 34.287627], [-94.364526, 33.974274], [-94.141182, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 34.287627], [-94.364526, 33.974274], [-93.917837, 33.974274], [-94.141182, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 34.287627], [-93.917837, 33.974274], [-93.694493, 34.287627], [-94.141182, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 34.914333], [-93.694493, 34.914333], [-93.917837, 35.227686], [-94.141182, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 34.914333], [-93.917837, 35.227686], [-94.364526, 35.227686], [-94.141182, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 34.914333], [-94.364526, 35.227686], [-94.587871, 34.914333], [-94.141182, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 34.914333], [-94.587871, 34.914333], [-94.364526, 34.60098], [-94.141182, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 34.914333], [-94.364526, 34.60098], [-93.917837, 34.60098], [-94.141182, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 34.914333], [-93.917837, 34.60098], [-93.694493, 34.914333], [-94.141182, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 35.541039], [-93.694493, 35.541039], [-93.917837, 35.854392], [-94.141182, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 35.541039], [-93.917837, 35.854392], [-94.364526, 35.854392], [-94.141182, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 35.541039], [-94.364526, 35.854392], [-94.587871, 35.541039], [-94.141182, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 35.541039], [-94.587871, 35.541039], [-94.364526, 35.227686], [-94.141182, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 35.541039], [-94.364526, 35.227686], [-93.917837, 35.227686], [-94.141182, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 35.541039], [-93.917837, 35.227686], [-93.694493, 35.541039], [-94.141182, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 36.167745], [-93.694493, 36.167745], [-93.917837, 36.481098], [-94.141182, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 36.167745], [-93.917837, 36.481098], [-94.364526, 36.481098], [-94.141182, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 36.167745], [-94.364526, 36.481098], [-94.587871, 36.167745], [-94.141182, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 36.167745], [-94.587871, 36.167745], [-94.364526, 35.854392], [-94.141182, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 36.167745], [-94.364526, 35.854392], [-93.917837, 35.854392], [-94.141182, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 36.167745], [-93.917837, 35.854392], [-93.694493, 36.167745], [-94.141182, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 36.794451], [-93.694493, 36.794451], [-93.917837, 37.107804], [-94.141182, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 36.794451], [-93.917837, 37.107804], [-94.364526, 37.107804], [-94.141182, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 36.794451], [-94.364526, 37.107804], [-94.587871, 36.794451], [-94.141182, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 36.794451], [-94.587871, 36.794451], [-94.364526, 36.481098], [-94.141182, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 36.794451], [-94.364526, 36.481098], [-93.917837, 36.481098], [-94.141182, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 36.794451], [-93.917837, 36.481098], [-93.694493, 36.794451], [-94.141182, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 37.421157], [-93.694493, 37.421157], [-93.917837, 37.73451], [-94.141182, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 37.421157], [-93.917837, 37.73451], [-94.364526, 37.73451], [-94.141182, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 37.421157], [-94.364526, 37.73451], [-94.587871, 37.421157], [-94.141182, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 37.421157], [-94.587871, 37.421157], [-94.364526, 37.107804], [-94.141182, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 37.421157], [-94.364526, 37.107804], [-93.917837, 37.107804], [-94.141182, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 37.421157], [-93.917837, 37.107804], [-93.694493, 37.421157], [-94.141182, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 38.047863], [-93.694493, 38.047863], [-93.917837, 38.361217], [-94.141182, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 38.047863], [-93.917837, 38.361217], [-94.364526, 38.361217], [-94.141182, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 38.047863], [-94.364526, 38.361217], [-94.587871, 38.047863], [-94.141182, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 38.047863], [-94.587871, 38.047863], [-94.364526, 37.73451], [-94.141182, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 38.047863], [-94.364526, 37.73451], [-93.917837, 37.73451], [-94.141182, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 38.047863], [-93.917837, 37.73451], [-93.694493, 38.047863], [-94.141182, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 38.67457], [-93.694493, 38.67457], [-93.917837, 38.987923], [-94.141182, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 38.67457], [-93.917837, 38.987923], [-94.364526, 38.987923], [-94.141182, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 38.67457], [-94.364526, 38.987923], [-94.587871, 38.67457], [-94.141182, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 38.67457], [-94.587871, 38.67457], [-94.364526, 38.361217], [-94.141182, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 38.67457], [-94.364526, 38.361217], [-93.917837, 38.361217], [-94.141182, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 38.67457], [-93.917837, 38.361217], [-93.694493, 38.67457], [-94.141182, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 39.301276], [-93.694493, 39.301276], [-93.917837, 39.614629], [-94.141182, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 39.301276], [-93.917837, 39.614629], [-94.364526, 39.614629], [-94.141182, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 39.301276], [-94.364526, 39.614629], [-94.587871, 39.301276], [-94.141182, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 39.301276], [-94.587871, 39.301276], [-94.364526, 38.987923], [-94.141182, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 39.301276], [-94.364526, 38.987923], [-93.917837, 38.987923], [-94.141182, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 39.301276], [-93.917837, 38.987923], [-93.694493, 39.301276], [-94.141182, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 39.927982], [-93.694493, 39.927982], [-93.917837, 40.241335], [-94.141182, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 39.927982], [-93.917837, 40.241335], [-94.364526, 40.241335], [-94.141182, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 39.927982], [-94.364526, 40.241335], [-94.587871, 39.927982], [-94.141182, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 39.927982], [-94.587871, 39.927982], [-94.364526, 39.614629], [-94.141182, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 39.927982], [-94.364526, 39.614629], [-93.917837, 39.614629], [-94.141182, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.141182, 39.927982], [-93.917837, 39.614629], [-93.694493, 39.927982], [-94.141182, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 31.467449], [-93.02446, 31.467449], [-93.247804, 31.780802], [-93.471149, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 31.467449], [-93.247804, 31.780802], [-93.694493, 31.780802], [-93.471149, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 31.467449], [-93.694493, 31.780802], [-93.917837, 31.467449], [-93.471149, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 31.467449], [-93.917837, 31.467449], [-93.694493, 31.154096], [-93.471149, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 31.467449], [-93.694493, 31.154096], [-93.247804, 31.154096], [-93.471149, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 31.467449], [-93.247804, 31.154096], [-93.02446, 31.467449], [-93.471149, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 32.094155], [-93.02446, 32.094155], [-93.247804, 32.407508], [-93.471149, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 32.094155], [-93.247804, 32.407508], [-93.694493, 32.407508], [-93.471149, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 32.094155], [-93.694493, 32.407508], [-93.917837, 32.094155], [-93.471149, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 32.094155], [-93.917837, 32.094155], [-93.694493, 31.780802], [-93.471149, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 32.094155], [-93.694493, 31.780802], [-93.247804, 31.780802], [-93.471149, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 32.094155], [-93.247804, 31.780802], [-93.02446, 32.094155], [-93.471149, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 32.720861], [-93.02446, 32.720861], [-93.247804, 33.034214], [-93.471149, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 32.720861], [-93.247804, 33.034214], [-93.694493, 33.034214], [-93.471149, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 32.720861], [-93.694493, 33.034214], [-93.917837, 32.720861], [-93.471149, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 32.720861], [-93.917837, 32.720861], [-93.694493, 32.407508], [-93.471149, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 32.720861], [-93.694493, 32.407508], [-93.247804, 32.407508], [-93.471149, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 32.720861], [-93.247804, 32.407508], [-93.02446, 32.720861], [-93.471149, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 33.347567], [-93.02446, 33.347567], [-93.247804, 33.66092], [-93.471149, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 33.347567], [-93.247804, 33.66092], [-93.694493, 33.66092], [-93.471149, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 33.347567], [-93.694493, 33.66092], [-93.917837, 33.347567], [-93.471149, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 33.347567], [-93.917837, 33.347567], [-93.694493, 33.034214], [-93.471149, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 33.347567], [-93.694493, 33.034214], [-93.247804, 33.034214], [-93.471149, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 33.347567], [-93.247804, 33.034214], [-93.02446, 33.347567], [-93.471149, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 33.974274], [-93.02446, 33.974274], [-93.247804, 34.287627], [-93.471149, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 33.974274], [-93.247804, 34.287627], [-93.694493, 34.287627], [-93.471149, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 33.974274], [-93.694493, 34.287627], [-93.917837, 33.974274], [-93.471149, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 33.974274], [-93.917837, 33.974274], [-93.694493, 33.66092], [-93.471149, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 33.974274], [-93.694493, 33.66092], [-93.247804, 33.66092], [-93.471149, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 33.974274], [-93.247804, 33.66092], [-93.02446, 33.974274], [-93.471149, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 34.60098], [-93.02446, 34.60098], [-93.247804, 34.914333], [-93.471149, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 34.60098], [-93.247804, 34.914333], [-93.694493, 34.914333], [-93.471149, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 34.60098], [-93.694493, 34.914333], [-93.917837, 34.60098], [-93.471149, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 34.60098], [-93.917837, 34.60098], [-93.694493, 34.287627], [-93.471149, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 34.60098], [-93.694493, 34.287627], [-93.247804, 34.287627], [-93.471149, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 34.60098], [-93.247804, 34.287627], [-93.02446, 34.60098], [-93.471149, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 35.227686], [-93.02446, 35.227686], [-93.247804, 35.541039], [-93.471149, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 35.227686], [-93.247804, 35.541039], [-93.694493, 35.541039], [-93.471149, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 35.227686], [-93.694493, 35.541039], [-93.917837, 35.227686], [-93.471149, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 35.227686], [-93.917837, 35.227686], [-93.694493, 34.914333], [-93.471149, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 35.227686], [-93.694493, 34.914333], [-93.247804, 34.914333], [-93.471149, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 35.227686], [-93.247804, 34.914333], [-93.02446, 35.227686], [-93.471149, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 35.854392], [-93.02446, 35.854392], [-93.247804, 36.167745], [-93.471149, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 35.854392], [-93.247804, 36.167745], [-93.694493, 36.167745], [-93.471149, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 35.854392], [-93.694493, 36.167745], [-93.917837, 35.854392], [-93.471149, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 35.854392], [-93.917837, 35.854392], [-93.694493, 35.541039], [-93.471149, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 35.854392], [-93.694493, 35.541039], [-93.247804, 35.541039], [-93.471149, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 35.854392], [-93.247804, 35.541039], [-93.02446, 35.854392], [-93.471149, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 36.481098], [-93.02446, 36.481098], [-93.247804, 36.794451], [-93.471149, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 36.481098], [-93.247804, 36.794451], [-93.694493, 36.794451], [-93.471149, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 36.481098], [-93.694493, 36.794451], [-93.917837, 36.481098], [-93.471149, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 36.481098], [-93.917837, 36.481098], [-93.694493, 36.167745], [-93.471149, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 36.481098], [-93.694493, 36.167745], [-93.247804, 36.167745], [-93.471149, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 36.481098], [-93.247804, 36.167745], [-93.02446, 36.481098], [-93.471149, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 37.107804], [-93.02446, 37.107804], [-93.247804, 37.421157], [-93.471149, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 37.107804], [-93.247804, 37.421157], [-93.694493, 37.421157], [-93.471149, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 37.107804], [-93.694493, 37.421157], [-93.917837, 37.107804], [-93.471149, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 37.107804], [-93.917837, 37.107804], [-93.694493, 36.794451], [-93.471149, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 37.107804], [-93.694493, 36.794451], [-93.247804, 36.794451], [-93.471149, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 37.107804], [-93.247804, 36.794451], [-93.02446, 37.107804], [-93.471149, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 37.73451], [-93.02446, 37.73451], [-93.247804, 38.047863], [-93.471149, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 37.73451], [-93.247804, 38.047863], [-93.694493, 38.047863], [-93.471149, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 37.73451], [-93.694493, 38.047863], [-93.917837, 37.73451], [-93.471149, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 37.73451], [-93.917837, 37.73451], [-93.694493, 37.421157], [-93.471149, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 37.73451], [-93.694493, 37.421157], [-93.247804, 37.421157], [-93.471149, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 37.73451], [-93.247804, 37.421157], [-93.02446, 37.73451], [-93.471149, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 38.361217], [-93.02446, 38.361217], [-93.247804, 38.67457], [-93.471149, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 38.361217], [-93.247804, 38.67457], [-93.694493, 38.67457], [-93.471149, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 38.361217], [-93.694493, 38.67457], [-93.917837, 38.361217], [-93.471149, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 38.361217], [-93.917837, 38.361217], [-93.694493, 38.047863], [-93.471149, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 38.361217], [-93.694493, 38.047863], [-93.247804, 38.047863], [-93.471149, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 38.361217], [-93.247804, 38.047863], [-93.02446, 38.361217], [-93.471149, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 38.987923], [-93.02446, 38.987923], [-93.247804, 39.301276], [-93.471149, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 38.987923], [-93.247804, 39.301276], [-93.694493, 39.301276], [-93.471149, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 38.987923], [-93.694493, 39.301276], [-93.917837, 38.987923], [-93.471149, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 38.987923], [-93.917837, 38.987923], [-93.694493, 38.67457], [-93.471149, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 38.987923], [-93.694493, 38.67457], [-93.247804, 38.67457], [-93.471149, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 38.987923], [-93.247804, 38.67457], [-93.02446, 38.987923], [-93.471149, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 39.614629], [-93.02446, 39.614629], [-93.247804, 39.927982], [-93.471149, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 39.614629], [-93.247804, 39.927982], [-93.694493, 39.927982], [-93.471149, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 39.614629], [-93.694493, 39.927982], [-93.917837, 39.614629], [-93.471149, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 39.614629], [-93.917837, 39.614629], [-93.694493, 39.301276], [-93.471149, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 39.614629], [-93.694493, 39.301276], [-93.247804, 39.301276], [-93.471149, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 39.614629], [-93.247804, 39.301276], [-93.02446, 39.614629], [-93.471149, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 40.241335], [-93.02446, 40.241335], [-93.247804, 40.554688], [-93.471149, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 40.241335], [-93.247804, 40.554688], [-93.694493, 40.554688], [-93.471149, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 40.241335], [-93.694493, 40.554688], [-93.917837, 40.241335], [-93.471149, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 40.241335], [-93.917837, 40.241335], [-93.694493, 39.927982], [-93.471149, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 40.241335], [-93.694493, 39.927982], [-93.247804, 39.927982], [-93.471149, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.471149, 40.241335], [-93.247804, 39.927982], [-93.02446, 40.241335], [-93.471149, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 31.780802], [-92.354427, 31.780802], [-92.577771, 32.094155], [-92.801115, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 31.780802], [-92.577771, 32.094155], [-93.02446, 32.094155], [-92.801115, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 31.780802], [-93.02446, 32.094155], [-93.247804, 31.780802], [-92.801115, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 31.780802], [-93.247804, 31.780802], [-93.02446, 31.467449], [-92.801115, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 31.780802], [-93.02446, 31.467449], [-92.577771, 31.467449], [-92.801115, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 31.780802], [-92.577771, 31.467449], [-92.354427, 31.780802], [-92.801115, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 32.407508], [-92.354427, 32.407508], [-92.577771, 32.720861], [-92.801115, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 32.407508], [-92.577771, 32.720861], [-93.02446, 32.720861], [-92.801115, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 32.407508], [-93.02446, 32.720861], [-93.247804, 32.407508], [-92.801115, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 32.407508], [-93.247804, 32.407508], [-93.02446, 32.094155], [-92.801115, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 32.407508], [-93.02446, 32.094155], [-92.577771, 32.094155], [-92.801115, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 32.407508], [-92.577771, 32.094155], [-92.354427, 32.407508], [-92.801115, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 33.034214], [-92.354427, 33.034214], [-92.577771, 33.347567], [-92.801115, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 33.034214], [-92.577771, 33.347567], [-93.02446, 33.347567], [-92.801115, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 33.034214], [-93.02446, 33.347567], [-93.247804, 33.034214], [-92.801115, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 33.034214], [-93.247804, 33.034214], [-93.02446, 32.720861], [-92.801115, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 33.034214], [-93.02446, 32.720861], [-92.577771, 32.720861], [-92.801115, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 33.034214], [-92.577771, 32.720861], [-92.354427, 33.034214], [-92.801115, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 33.66092], [-92.354427, 33.66092], [-92.577771, 33.974274], [-92.801115, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 33.66092], [-92.577771, 33.974274], [-93.02446, 33.974274], [-92.801115, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 33.66092], [-93.02446, 33.974274], [-93.247804, 33.66092], [-92.801115, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 33.66092], [-93.247804, 33.66092], [-93.02446, 33.347567], [-92.801115, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 33.66092], [-93.02446, 33.347567], [-92.577771, 33.347567], [-92.801115, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 33.66092], [-92.577771, 33.347567], [-92.354427, 33.66092], [-92.801115, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 34.287627], [-92.354427, 34.287627], [-92.577771, 34.60098], [-92.801115, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 34.287627], [-92.577771, 34.60098], [-93.02446, 34.60098], [-92.801115, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 34.287627], [-93.02446, 34.60098], [-93.247804, 34.287627], [-92.801115, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 34.287627], [-93.247804, 34.287627], [-93.02446, 33.974274], [-92.801115, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 34.287627], [-93.02446, 33.974274], [-92.577771, 33.974274], [-92.801115, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 34.287627], [-92.577771, 33.974274], [-92.354427, 34.287627], [-92.801115, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 34.914333], [-92.354427, 34.914333], [-92.577771, 35.227686], [-92.801115, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 34.914333], [-92.577771, 35.227686], [-93.02446, 35.227686], [-92.801115, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 34.914333], [-93.02446, 35.227686], [-93.247804, 34.914333], [-92.801115, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 34.914333], [-93.247804, 34.914333], [-93.02446, 34.60098], [-92.801115, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 34.914333], [-93.02446, 34.60098], [-92.577771, 34.60098], [-92.801115, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 34.914333], [-92.577771, 34.60098], [-92.354427, 34.914333], [-92.801115, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 35.541039], [-92.354427, 35.541039], [-92.577771, 35.854392], [-92.801115, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 35.541039], [-92.577771, 35.854392], [-93.02446, 35.854392], [-92.801115, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 35.541039], [-93.02446, 35.854392], [-93.247804, 35.541039], [-92.801115, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 35.541039], [-93.247804, 35.541039], [-93.02446, 35.227686], [-92.801115, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 35.541039], [-93.02446, 35.227686], [-92.577771, 35.227686], [-92.801115, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 35.541039], [-92.577771, 35.227686], [-92.354427, 35.541039], [-92.801115, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 36.167745], [-92.354427, 36.167745], [-92.577771, 36.481098], [-92.801115, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 36.167745], [-92.577771, 36.481098], [-93.02446, 36.481098], [-92.801115, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 36.167745], [-93.02446, 36.481098], [-93.247804, 36.167745], [-92.801115, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 36.167745], [-93.247804, 36.167745], [-93.02446, 35.854392], [-92.801115, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 36.167745], [-93.02446, 35.854392], [-92.577771, 35.854392], [-92.801115, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 36.167745], [-92.577771, 35.854392], [-92.354427, 36.167745], [-92.801115, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 36.794451], [-92.354427, 36.794451], [-92.577771, 37.107804], [-92.801115, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 36.794451], [-92.577771, 37.107804], [-93.02446, 37.107804], [-92.801115, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 36.794451], [-93.02446, 37.107804], [-93.247804, 36.794451], [-92.801115, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 36.794451], [-93.247804, 36.794451], [-93.02446, 36.481098], [-92.801115, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 36.794451], [-93.02446, 36.481098], [-92.577771, 36.481098], [-92.801115, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 36.794451], [-92.577771, 36.481098], [-92.354427, 36.794451], [-92.801115, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 37.421157], [-92.354427, 37.421157], [-92.577771, 37.73451], [-92.801115, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 37.421157], [-92.577771, 37.73451], [-93.02446, 37.73451], [-92.801115, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 37.421157], [-93.02446, 37.73451], [-93.247804, 37.421157], [-92.801115, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 37.421157], [-93.247804, 37.421157], [-93.02446, 37.107804], [-92.801115, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 37.421157], [-93.02446, 37.107804], [-92.577771, 37.107804], [-92.801115, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 37.421157], [-92.577771, 37.107804], [-92.354427, 37.421157], [-92.801115, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 38.047863], [-92.354427, 38.047863], [-92.577771, 38.361217], [-92.801115, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 38.047863], [-92.577771, 38.361217], [-93.02446, 38.361217], [-92.801115, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 38.047863], [-93.02446, 38.361217], [-93.247804, 38.047863], [-92.801115, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 38.047863], [-93.247804, 38.047863], [-93.02446, 37.73451], [-92.801115, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 38.047863], [-93.02446, 37.73451], [-92.577771, 37.73451], [-92.801115, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 38.047863], [-92.577771, 37.73451], [-92.354427, 38.047863], [-92.801115, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 38.67457], [-92.354427, 38.67457], [-92.577771, 38.987923], [-92.801115, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 38.67457], [-92.577771, 38.987923], [-93.02446, 38.987923], [-92.801115, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 38.67457], [-93.02446, 38.987923], [-93.247804, 38.67457], [-92.801115, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 38.67457], [-93.247804, 38.67457], [-93.02446, 38.361217], [-92.801115, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 38.67457], [-93.02446, 38.361217], [-92.577771, 38.361217], [-92.801115, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 38.67457], [-92.577771, 38.361217], [-92.354427, 38.67457], [-92.801115, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 39.301276], [-92.354427, 39.301276], [-92.577771, 39.614629], [-92.801115, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 39.301276], [-92.577771, 39.614629], [-93.02446, 39.614629], [-92.801115, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 39.301276], [-93.02446, 39.614629], [-93.247804, 39.301276], [-92.801115, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 39.301276], [-93.247804, 39.301276], [-93.02446, 38.987923], [-92.801115, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 39.301276], [-93.02446, 38.987923], [-92.577771, 38.987923], [-92.801115, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 39.301276], [-92.577771, 38.987923], [-92.354427, 39.301276], [-92.801115, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 39.927982], [-92.354427, 39.927982], [-92.577771, 40.241335], [-92.801115, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 39.927982], [-92.577771, 40.241335], [-93.02446, 40.241335], [-92.801115, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 39.927982], [-93.02446, 40.241335], [-93.247804, 39.927982], [-92.801115, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 39.927982], [-93.247804, 39.927982], [-93.02446, 39.614629], [-92.801115, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 39.927982], [-93.02446, 39.614629], [-92.577771, 39.614629], [-92.801115, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.801115, 39.927982], [-92.577771, 39.614629], [-92.354427, 39.927982], [-92.801115, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 31.467449], [-91.684393, 31.467449], [-91.907738, 31.780802], [-92.131082, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 31.467449], [-91.907738, 31.780802], [-92.354427, 31.780802], [-92.131082, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 31.467449], [-92.354427, 31.780802], [-92.577771, 31.467449], [-92.131082, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 31.467449], [-92.577771, 31.467449], [-92.354427, 31.154096], [-92.131082, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 31.467449], [-92.354427, 31.154096], [-91.907738, 31.154096], [-92.131082, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 31.467449], [-91.907738, 31.154096], [-91.684393, 31.467449], [-92.131082, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 32.094155], [-91.684393, 32.094155], [-91.907738, 32.407508], [-92.131082, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 32.094155], [-91.907738, 32.407508], [-92.354427, 32.407508], [-92.131082, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 32.094155], [-92.354427, 32.407508], [-92.577771, 32.094155], [-92.131082, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 32.094155], [-92.577771, 32.094155], [-92.354427, 31.780802], [-92.131082, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 32.094155], [-92.354427, 31.780802], [-91.907738, 31.780802], [-92.131082, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 32.094155], [-91.907738, 31.780802], [-91.684393, 32.094155], [-92.131082, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 32.720861], [-91.684393, 32.720861], [-91.907738, 33.034214], [-92.131082, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 32.720861], [-91.907738, 33.034214], [-92.354427, 33.034214], [-92.131082, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 32.720861], [-92.354427, 33.034214], [-92.577771, 32.720861], [-92.131082, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 32.720861], [-92.577771, 32.720861], [-92.354427, 32.407508], [-92.131082, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 32.720861], [-92.354427, 32.407508], [-91.907738, 32.407508], [-92.131082, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 32.720861], [-91.907738, 32.407508], [-91.684393, 32.720861], [-92.131082, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 33.347567], [-91.684393, 33.347567], [-91.907738, 33.66092], [-92.131082, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 33.347567], [-91.907738, 33.66092], [-92.354427, 33.66092], [-92.131082, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 33.347567], [-92.354427, 33.66092], [-92.577771, 33.347567], [-92.131082, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 33.347567], [-92.577771, 33.347567], [-92.354427, 33.034214], [-92.131082, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 33.347567], [-92.354427, 33.034214], [-91.907738, 33.034214], [-92.131082, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 33.347567], [-91.907738, 33.034214], [-91.684393, 33.347567], [-92.131082, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 33.974274], [-91.684393, 33.974274], [-91.907738, 34.287627], [-92.131082, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 33.974274], [-91.907738, 34.287627], [-92.354427, 34.287627], [-92.131082, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 33.974274], [-92.354427, 34.287627], [-92.577771, 33.974274], [-92.131082, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 33.974274], [-92.577771, 33.974274], [-92.354427, 33.66092], [-92.131082, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 33.974274], [-92.354427, 33.66092], [-91.907738, 33.66092], [-92.131082, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 33.974274], [-91.907738, 33.66092], [-91.684393, 33.974274], [-92.131082, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 34.60098], [-91.684393, 34.60098], [-91.907738, 34.914333], [-92.131082, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 34.60098], [-91.907738, 34.914333], [-92.354427, 34.914333], [-92.131082, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 34.60098], [-92.354427, 34.914333], [-92.577771, 34.60098], [-92.131082, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 34.60098], [-92.577771, 34.60098], [-92.354427, 34.287627], [-92.131082, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 34.60098], [-92.354427, 34.287627], [-91.907738, 34.287627], [-92.131082, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 34.60098], [-91.907738, 34.287627], [-91.684393, 34.60098], [-92.131082, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 35.227686], [-91.684393, 35.227686], [-91.907738, 35.541039], [-92.131082, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 35.227686], [-91.907738, 35.541039], [-92.354427, 35.541039], [-92.131082, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 35.227686], [-92.354427, 35.541039], [-92.577771, 35.227686], [-92.131082, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 35.227686], [-92.577771, 35.227686], [-92.354427, 34.914333], [-92.131082, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 35.227686], [-92.354427, 34.914333], [-91.907738, 34.914333], [-92.131082, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 35.227686], [-91.907738, 34.914333], [-91.684393, 35.227686], [-92.131082, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 35.854392], [-91.684393, 35.854392], [-91.907738, 36.167745], [-92.131082, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 35.854392], [-91.907738, 36.167745], [-92.354427, 36.167745], [-92.131082, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 35.854392], [-92.354427, 36.167745], [-92.577771, 35.854392], [-92.131082, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 35.854392], [-92.577771, 35.854392], [-92.354427, 35.541039], [-92.131082, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 35.854392], [-92.354427, 35.541039], [-91.907738, 35.541039], [-92.131082, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 35.854392], [-91.907738, 35.541039], [-91.684393, 35.854392], [-92.131082, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 36.481098], [-91.684393, 36.481098], [-91.907738, 36.794451], [-92.131082, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 36.481098], [-91.907738, 36.794451], [-92.354427, 36.794451], [-92.131082, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 36.481098], [-92.354427, 36.794451], [-92.577771, 36.481098], [-92.131082, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 36.481098], [-92.577771, 36.481098], [-92.354427, 36.167745], [-92.131082, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 36.481098], [-92.354427, 36.167745], [-91.907738, 36.167745], [-92.131082, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 36.481098], [-91.907738, 36.167745], [-91.684393, 36.481098], [-92.131082, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 37.107804], [-91.684393, 37.107804], [-91.907738, 37.421157], [-92.131082, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 37.107804], [-91.907738, 37.421157], [-92.354427, 37.421157], [-92.131082, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 37.107804], [-92.354427, 37.421157], [-92.577771, 37.107804], [-92.131082, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 37.107804], [-92.577771, 37.107804], [-92.354427, 36.794451], [-92.131082, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 37.107804], [-92.354427, 36.794451], [-91.907738, 36.794451], [-92.131082, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 37.107804], [-91.907738, 36.794451], [-91.684393, 37.107804], [-92.131082, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 37.73451], [-91.684393, 37.73451], [-91.907738, 38.047863], [-92.131082, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 37.73451], [-91.907738, 38.047863], [-92.354427, 38.047863], [-92.131082, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 37.73451], [-92.354427, 38.047863], [-92.577771, 37.73451], [-92.131082, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 37.73451], [-92.577771, 37.73451], [-92.354427, 37.421157], [-92.131082, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 37.73451], [-92.354427, 37.421157], [-91.907738, 37.421157], [-92.131082, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 37.73451], [-91.907738, 37.421157], [-91.684393, 37.73451], [-92.131082, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 38.361217], [-91.684393, 38.361217], [-91.907738, 38.67457], [-92.131082, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 38.361217], [-91.907738, 38.67457], [-92.354427, 38.67457], [-92.131082, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 38.361217], [-92.354427, 38.67457], [-92.577771, 38.361217], [-92.131082, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 38.361217], [-92.577771, 38.361217], [-92.354427, 38.047863], [-92.131082, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 38.361217], [-92.354427, 38.047863], [-91.907738, 38.047863], [-92.131082, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 38.361217], [-91.907738, 38.047863], [-91.684393, 38.361217], [-92.131082, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 38.987923], [-91.684393, 38.987923], [-91.907738, 39.301276], [-92.131082, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 38.987923], [-91.907738, 39.301276], [-92.354427, 39.301276], [-92.131082, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 38.987923], [-92.354427, 39.301276], [-92.577771, 38.987923], [-92.131082, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 38.987923], [-92.577771, 38.987923], [-92.354427, 38.67457], [-92.131082, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 38.987923], [-92.354427, 38.67457], [-91.907738, 38.67457], [-92.131082, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 38.987923], [-91.907738, 38.67457], [-91.684393, 38.987923], [-92.131082, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 39.614629], [-91.684393, 39.614629], [-91.907738, 39.927982], [-92.131082, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 39.614629], [-91.907738, 39.927982], [-92.354427, 39.927982], [-92.131082, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 39.614629], [-92.354427, 39.927982], [-92.577771, 39.614629], [-92.131082, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 39.614629], [-92.577771, 39.614629], [-92.354427, 39.301276], [-92.131082, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 39.614629], [-92.354427, 39.301276], [-91.907738, 39.301276], [-92.131082, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 39.614629], [-91.907738, 39.301276], [-91.684393, 39.614629], [-92.131082, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 40.241335], [-91.684393, 40.241335], [-91.907738, 40.554688], [-92.131082, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 40.241335], [-91.907738, 40.554688], [-92.354427, 40.554688], [-92.131082, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 40.241335], [-92.354427, 40.554688], [-92.577771, 40.241335], [-92.131082, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 40.241335], [-92.577771, 40.241335], [-92.354427, 39.927982], [-92.131082, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 40.241335], [-92.354427, 39.927982], [-91.907738, 39.927982], [-92.131082, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.131082, 40.241335], [-91.907738, 39.927982], [-91.684393, 40.241335], [-92.131082, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 31.780802], [-91.01436, 31.780802], [-91.237704, 32.094155], [-91.461049, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 31.780802], [-91.237704, 32.094155], [-91.684393, 32.094155], [-91.461049, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 31.780802], [-91.684393, 32.094155], [-91.907738, 31.780802], [-91.461049, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 31.780802], [-91.907738, 31.780802], [-91.684393, 31.467449], [-91.461049, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 31.780802], [-91.684393, 31.467449], [-91.237704, 31.467449], [-91.461049, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 31.780802], [-91.237704, 31.467449], [-91.01436, 31.780802], [-91.461049, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 32.407508], [-91.01436, 32.407508], [-91.237704, 32.720861], [-91.461049, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 32.407508], [-91.237704, 32.720861], [-91.684393, 32.720861], [-91.461049, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 32.407508], [-91.684393, 32.720861], [-91.907738, 32.407508], [-91.461049, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 32.407508], [-91.907738, 32.407508], [-91.684393, 32.094155], [-91.461049, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 32.407508], [-91.684393, 32.094155], [-91.237704, 32.094155], [-91.461049, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 32.407508], [-91.237704, 32.094155], [-91.01436, 32.407508], [-91.461049, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 33.034214], [-91.01436, 33.034214], [-91.237704, 33.347567], [-91.461049, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 33.034214], [-91.237704, 33.347567], [-91.684393, 33.347567], [-91.461049, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 33.034214], [-91.684393, 33.347567], [-91.907738, 33.034214], [-91.461049, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 33.034214], [-91.907738, 33.034214], [-91.684393, 32.720861], [-91.461049, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 33.034214], [-91.684393, 32.720861], [-91.237704, 32.720861], [-91.461049, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 33.034214], [-91.237704, 32.720861], [-91.01436, 33.034214], [-91.461049, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 33.66092], [-91.01436, 33.66092], [-91.237704, 33.974274], [-91.461049, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 33.66092], [-91.237704, 33.974274], [-91.684393, 33.974274], [-91.461049, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 33.66092], [-91.684393, 33.974274], [-91.907738, 33.66092], [-91.461049, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 33.66092], [-91.907738, 33.66092], [-91.684393, 33.347567], [-91.461049, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 33.66092], [-91.684393, 33.347567], [-91.237704, 33.347567], [-91.461049, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 33.66092], [-91.237704, 33.347567], [-91.01436, 33.66092], [-91.461049, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 34.287627], [-91.01436, 34.287627], [-91.237704, 34.60098], [-91.461049, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 34.287627], [-91.237704, 34.60098], [-91.684393, 34.60098], [-91.461049, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 34.287627], [-91.684393, 34.60098], [-91.907738, 34.287627], [-91.461049, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 34.287627], [-91.907738, 34.287627], [-91.684393, 33.974274], [-91.461049, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 34.287627], [-91.684393, 33.974274], [-91.237704, 33.974274], [-91.461049, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 34.287627], [-91.237704, 33.974274], [-91.01436, 34.287627], [-91.461049, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 34.914333], [-91.01436, 34.914333], [-91.237704, 35.227686], [-91.461049, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 34.914333], [-91.237704, 35.227686], [-91.684393, 35.227686], [-91.461049, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 34.914333], [-91.684393, 35.227686], [-91.907738, 34.914333], [-91.461049, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 34.914333], [-91.907738, 34.914333], [-91.684393, 34.60098], [-91.461049, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 34.914333], [-91.684393, 34.60098], [-91.237704, 34.60098], [-91.461049, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 34.914333], [-91.237704, 34.60098], [-91.01436, 34.914333], [-91.461049, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 35.541039], [-91.01436, 35.541039], [-91.237704, 35.854392], [-91.461049, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 35.541039], [-91.237704, 35.854392], [-91.684393, 35.854392], [-91.461049, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 35.541039], [-91.684393, 35.854392], [-91.907738, 35.541039], [-91.461049, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 35.541039], [-91.907738, 35.541039], [-91.684393, 35.227686], [-91.461049, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 35.541039], [-91.684393, 35.227686], [-91.237704, 35.227686], [-91.461049, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 35.541039], [-91.237704, 35.227686], [-91.01436, 35.541039], [-91.461049, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 36.167745], [-91.01436, 36.167745], [-91.237704, 36.481098], [-91.461049, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 36.167745], [-91.237704, 36.481098], [-91.684393, 36.481098], [-91.461049, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 36.167745], [-91.684393, 36.481098], [-91.907738, 36.167745], [-91.461049, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 36.167745], [-91.907738, 36.167745], [-91.684393, 35.854392], [-91.461049, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 36.167745], [-91.684393, 35.854392], [-91.237704, 35.854392], [-91.461049, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 36.167745], [-91.237704, 35.854392], [-91.01436, 36.167745], [-91.461049, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 36.794451], [-91.01436, 36.794451], [-91.237704, 37.107804], [-91.461049, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 36.794451], [-91.237704, 37.107804], [-91.684393, 37.107804], [-91.461049, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 36.794451], [-91.684393, 37.107804], [-91.907738, 36.794451], [-91.461049, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 36.794451], [-91.907738, 36.794451], [-91.684393, 36.481098], [-91.461049, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 36.794451], [-91.684393, 36.481098], [-91.237704, 36.481098], [-91.461049, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 36.794451], [-91.237704, 36.481098], [-91.01436, 36.794451], [-91.461049, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 37.421157], [-91.01436, 37.421157], [-91.237704, 37.73451], [-91.461049, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 37.421157], [-91.237704, 37.73451], [-91.684393, 37.73451], [-91.461049, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 37.421157], [-91.684393, 37.73451], [-91.907738, 37.421157], [-91.461049, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 37.421157], [-91.907738, 37.421157], [-91.684393, 37.107804], [-91.461049, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 37.421157], [-91.684393, 37.107804], [-91.237704, 37.107804], [-91.461049, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 37.421157], [-91.237704, 37.107804], [-91.01436, 37.421157], [-91.461049, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 38.047863], [-91.01436, 38.047863], [-91.237704, 38.361217], [-91.461049, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 38.047863], [-91.237704, 38.361217], [-91.684393, 38.361217], [-91.461049, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 38.047863], [-91.684393, 38.361217], [-91.907738, 38.047863], [-91.461049, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 38.047863], [-91.907738, 38.047863], [-91.684393, 37.73451], [-91.461049, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 38.047863], [-91.684393, 37.73451], [-91.237704, 37.73451], [-91.461049, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 38.047863], [-91.237704, 37.73451], [-91.01436, 38.047863], [-91.461049, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 38.67457], [-91.01436, 38.67457], [-91.237704, 38.987923], [-91.461049, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 38.67457], [-91.237704, 38.987923], [-91.684393, 38.987923], [-91.461049, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 38.67457], [-91.684393, 38.987923], [-91.907738, 38.67457], [-91.461049, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 38.67457], [-91.907738, 38.67457], [-91.684393, 38.361217], [-91.461049, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 38.67457], [-91.684393, 38.361217], [-91.237704, 38.361217], [-91.461049, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 38.67457], [-91.237704, 38.361217], [-91.01436, 38.67457], [-91.461049, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 39.301276], [-91.01436, 39.301276], [-91.237704, 39.614629], [-91.461049, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 39.301276], [-91.237704, 39.614629], [-91.684393, 39.614629], [-91.461049, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 39.301276], [-91.684393, 39.614629], [-91.907738, 39.301276], [-91.461049, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 39.301276], [-91.907738, 39.301276], [-91.684393, 38.987923], [-91.461049, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 39.301276], [-91.684393, 38.987923], [-91.237704, 38.987923], [-91.461049, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 39.301276], [-91.237704, 38.987923], [-91.01436, 39.301276], [-91.461049, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 39.927982], [-91.01436, 39.927982], [-91.237704, 40.241335], [-91.461049, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 39.927982], [-91.237704, 40.241335], [-91.684393, 40.241335], [-91.461049, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 39.927982], [-91.684393, 40.241335], [-91.907738, 39.927982], [-91.461049, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 39.927982], [-91.907738, 39.927982], [-91.684393, 39.614629], [-91.461049, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 39.927982], [-91.684393, 39.614629], [-91.237704, 39.614629], [-91.461049, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.461049, 39.927982], [-91.237704, 39.614629], [-91.01436, 39.927982], [-91.461049, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 31.467449], [-90.344327, 31.467449], [-90.567671, 31.780802], [-90.791016, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 31.467449], [-90.567671, 31.780802], [-91.01436, 31.780802], [-90.791016, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 31.467449], [-91.01436, 31.780802], [-91.237704, 31.467449], [-90.791016, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 31.467449], [-91.237704, 31.467449], [-91.01436, 31.154096], [-90.791016, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 31.467449], [-91.01436, 31.154096], [-90.567671, 31.154096], [-90.791016, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 31.467449], [-90.567671, 31.154096], [-90.344327, 31.467449], [-90.791016, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 32.094155], [-90.344327, 32.094155], [-90.567671, 32.407508], [-90.791016, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 32.094155], [-90.567671, 32.407508], [-91.01436, 32.407508], [-90.791016, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 32.094155], [-91.01436, 32.407508], [-91.237704, 32.094155], [-90.791016, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 32.094155], [-91.237704, 32.094155], [-91.01436, 31.780802], [-90.791016, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 32.094155], [-91.01436, 31.780802], [-90.567671, 31.780802], [-90.791016, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 32.094155], [-90.567671, 31.780802], [-90.344327, 32.094155], [-90.791016, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 32.720861], [-90.344327, 32.720861], [-90.567671, 33.034214], [-90.791016, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 32.720861], [-90.567671, 33.034214], [-91.01436, 33.034214], [-90.791016, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 32.720861], [-91.01436, 33.034214], [-91.237704, 32.720861], [-90.791016, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 32.720861], [-91.237704, 32.720861], [-91.01436, 32.407508], [-90.791016, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 32.720861], [-91.01436, 32.407508], [-90.567671, 32.407508], [-90.791016, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 32.720861], [-90.567671, 32.407508], [-90.344327, 32.720861], [-90.791016, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 33.347567], [-90.344327, 33.347567], [-90.567671, 33.66092], [-90.791016, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 33.347567], [-90.567671, 33.66092], [-91.01436, 33.66092], [-90.791016, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 33.347567], [-91.01436, 33.66092], [-91.237704, 33.347567], [-90.791016, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 33.347567], [-91.237704, 33.347567], [-91.01436, 33.034214], [-90.791016, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 33.347567], [-91.01436, 33.034214], [-90.567671, 33.034214], [-90.791016, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 33.347567], [-90.567671, 33.034214], [-90.344327, 33.347567], [-90.791016, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 33.974274], [-90.344327, 33.974274], [-90.567671, 34.287627], [-90.791016, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 33.974274], [-90.567671, 34.287627], [-91.01436, 34.287627], [-90.791016, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 33.974274], [-91.01436, 34.287627], [-91.237704, 33.974274], [-90.791016, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 33.974274], [-91.237704, 33.974274], [-91.01436, 33.66092], [-90.791016, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 33.974274], [-91.01436, 33.66092], [-90.567671, 33.66092], [-90.791016, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 33.974274], [-90.567671, 33.66092], [-90.344327, 33.974274], [-90.791016, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 34.60098], [-90.344327, 34.60098], [-90.567671, 34.914333], [-90.791016, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 34.60098], [-90.567671, 34.914333], [-91.01436, 34.914333], [-90.791016, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 34.60098], [-91.01436, 34.914333], [-91.237704, 34.60098], [-90.791016, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 34.60098], [-91.237704, 34.60098], [-91.01436, 34.287627], [-90.791016, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 34.60098], [-91.01436, 34.287627], [-90.567671, 34.287627], [-90.791016, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 34.60098], [-90.567671, 34.287627], [-90.344327, 34.60098], [-90.791016, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 35.227686], [-90.344327, 35.227686], [-90.567671, 35.541039], [-90.791016, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 35.227686], [-90.567671, 35.541039], [-91.01436, 35.541039], [-90.791016, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 35.227686], [-91.01436, 35.541039], [-91.237704, 35.227686], [-90.791016, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 35.227686], [-91.237704, 35.227686], [-91.01436, 34.914333], [-90.791016, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 35.227686], [-91.01436, 34.914333], [-90.567671, 34.914333], [-90.791016, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 35.227686], [-90.567671, 34.914333], [-90.344327, 35.227686], [-90.791016, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 35.854392], [-90.344327, 35.854392], [-90.567671, 36.167745], [-90.791016, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 35.854392], [-90.567671, 36.167745], [-91.01436, 36.167745], [-90.791016, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 35.854392], [-91.01436, 36.167745], [-91.237704, 35.854392], [-90.791016, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 35.854392], [-91.237704, 35.854392], [-91.01436, 35.541039], [-90.791016, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 35.854392], [-91.01436, 35.541039], [-90.567671, 35.541039], [-90.791016, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 35.854392], [-90.567671, 35.541039], [-90.344327, 35.854392], [-90.791016, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 36.481098], [-90.344327, 36.481098], [-90.567671, 36.794451], [-90.791016, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 36.481098], [-90.567671, 36.794451], [-91.01436, 36.794451], [-90.791016, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 36.481098], [-91.01436, 36.794451], [-91.237704, 36.481098], [-90.791016, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 36.481098], [-91.237704, 36.481098], [-91.01436, 36.167745], [-90.791016, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 36.481098], [-91.01436, 36.167745], [-90.567671, 36.167745], [-90.791016, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 36.481098], [-90.567671, 36.167745], [-90.344327, 36.481098], [-90.791016, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 37.107804], [-90.344327, 37.107804], [-90.567671, 37.421157], [-90.791016, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 37.107804], [-90.567671, 37.421157], [-91.01436, 37.421157], [-90.791016, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 37.107804], [-91.01436, 37.421157], [-91.237704, 37.107804], [-90.791016, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 37.107804], [-91.237704, 37.107804], [-91.01436, 36.794451], [-90.791016, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 37.107804], [-91.01436, 36.794451], [-90.567671, 36.794451], [-90.791016, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 37.107804], [-90.567671, 36.794451], [-90.344327, 37.107804], [-90.791016, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 37.73451], [-90.344327, 37.73451], [-90.567671, 38.047863], [-90.791016, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 37.73451], [-90.567671, 38.047863], [-91.01436, 38.047863], [-90.791016, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 37.73451], [-91.01436, 38.047863], [-91.237704, 37.73451], [-90.791016, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 37.73451], [-91.237704, 37.73451], [-91.01436, 37.421157], [-90.791016, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 37.73451], [-91.01436, 37.421157], [-90.567671, 37.421157], [-90.791016, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 37.73451], [-90.567671, 37.421157], [-90.344327, 37.73451], [-90.791016, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 38.361217], [-90.344327, 38.361217], [-90.567671, 38.67457], [-90.791016, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 38.361217], [-90.567671, 38.67457], [-91.01436, 38.67457], [-90.791016, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 38.361217], [-91.01436, 38.67457], [-91.237704, 38.361217], [-90.791016, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 38.361217], [-91.237704, 38.361217], [-91.01436, 38.047863], [-90.791016, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 38.361217], [-91.01436, 38.047863], [-90.567671, 38.047863], [-90.791016, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 38.361217], [-90.567671, 38.047863], [-90.344327, 38.361217], [-90.791016, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 38.987923], [-90.344327, 38.987923], [-90.567671, 39.301276], [-90.791016, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 38.987923], [-90.567671, 39.301276], [-91.01436, 39.301276], [-90.791016, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 38.987923], [-91.01436, 39.301276], [-91.237704, 38.987923], [-90.791016, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 38.987923], [-91.237704, 38.987923], [-91.01436, 38.67457], [-90.791016, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 38.987923], [-91.01436, 38.67457], [-90.567671, 38.67457], [-90.791016, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 38.987923], [-90.567671, 38.67457], [-90.344327, 38.987923], [-90.791016, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 39.614629], [-90.344327, 39.614629], [-90.567671, 39.927982], [-90.791016, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 39.614629], [-90.567671, 39.927982], [-91.01436, 39.927982], [-90.791016, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 39.614629], [-91.01436, 39.927982], [-91.237704, 39.614629], [-90.791016, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 39.614629], [-91.237704, 39.614629], [-91.01436, 39.301276], [-90.791016, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 39.614629], [-91.01436, 39.301276], [-90.567671, 39.301276], [-90.791016, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 39.614629], [-90.567671, 39.301276], [-90.344327, 39.614629], [-90.791016, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 40.241335], [-90.344327, 40.241335], [-90.567671, 40.554688], [-90.791016, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 40.241335], [-90.567671, 40.554688], [-91.01436, 40.554688], [-90.791016, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 40.241335], [-91.01436, 40.554688], [-91.237704, 40.241335], [-90.791016, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 40.241335], [-91.237704, 40.241335], [-91.01436, 39.927982], [-90.791016, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 40.241335], [-91.01436, 39.927982], [-90.567671, 39.927982], [-90.791016, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.791016, 40.241335], [-90.567671, 39.927982], [-90.344327, 40.241335], [-90.791016, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 31.780802], [-89.674294, 31.780802], [-89.897638, 32.094155], [-90.120982, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 31.780802], [-89.897638, 32.094155], [-90.344327, 32.094155], [-90.120982, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 31.780802], [-90.344327, 32.094155], [-90.567671, 31.780802], [-90.120982, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 31.780802], [-90.567671, 31.780802], [-90.344327, 31.467449], [-90.120982, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 31.780802], [-90.344327, 31.467449], [-89.897638, 31.467449], [-90.120982, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 31.780802], [-89.897638, 31.467449], [-89.674294, 31.780802], [-90.120982, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 32.407508], [-89.674294, 32.407508], [-89.897638, 32.720861], [-90.120982, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 32.407508], [-89.897638, 32.720861], [-90.344327, 32.720861], [-90.120982, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 32.407508], [-90.344327, 32.720861], [-90.567671, 32.407508], [-90.120982, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 32.407508], [-90.567671, 32.407508], [-90.344327, 32.094155], [-90.120982, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 32.407508], [-90.344327, 32.094155], [-89.897638, 32.094155], [-90.120982, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 32.407508], [-89.897638, 32.094155], [-89.674294, 32.407508], [-90.120982, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 33.034214], [-89.674294, 33.034214], [-89.897638, 33.347567], [-90.120982, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 33.034214], [-89.897638, 33.347567], [-90.344327, 33.347567], [-90.120982, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 33.034214], [-90.344327, 33.347567], [-90.567671, 33.034214], [-90.120982, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 33.034214], [-90.567671, 33.034214], [-90.344327, 32.720861], [-90.120982, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 33.034214], [-90.344327, 32.720861], [-89.897638, 32.720861], [-90.120982, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 33.034214], [-89.897638, 32.720861], [-89.674294, 33.034214], [-90.120982, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 33.66092], [-89.674294, 33.66092], [-89.897638, 33.974274], [-90.120982, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 33.66092], [-89.897638, 33.974274], [-90.344327, 33.974274], [-90.120982, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 33.66092], [-90.344327, 33.974274], [-90.567671, 33.66092], [-90.120982, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 33.66092], [-90.567671, 33.66092], [-90.344327, 33.347567], [-90.120982, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 33.66092], [-90.344327, 33.347567], [-89.897638, 33.347567], [-90.120982, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 33.66092], [-89.897638, 33.347567], [-89.674294, 33.66092], [-90.120982, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 34.287627], [-89.674294, 34.287627], [-89.897638, 34.60098], [-90.120982, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 34.287627], [-89.897638, 34.60098], [-90.344327, 34.60098], [-90.120982, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 34.287627], [-90.344327, 34.60098], [-90.567671, 34.287627], [-90.120982, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 34.287627], [-90.567671, 34.287627], [-90.344327, 33.974274], [-90.120982, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 34.287627], [-90.344327, 33.974274], [-89.897638, 33.974274], [-90.120982, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 34.287627], [-89.897638, 33.974274], [-89.674294, 34.287627], [-90.120982, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 34.914333], [-89.674294, 34.914333], [-89.897638, 35.227686], [-90.120982, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 34.914333], [-89.897638, 35.227686], [-90.344327, 35.227686], [-90.120982, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 34.914333], [-90.344327, 35.227686], [-90.567671, 34.914333], [-90.120982, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 34.914333], [-90.567671, 34.914333], [-90.344327, 34.60098], [-90.120982, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 34.914333], [-90.344327, 34.60098], [-89.897638, 34.60098], [-90.120982, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 34.914333], [-89.897638, 34.60098], [-89.674294, 34.914333], [-90.120982, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 35.541039], [-89.674294, 35.541039], [-89.897638, 35.854392], [-90.120982, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 35.541039], [-89.897638, 35.854392], [-90.344327, 35.854392], [-90.120982, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 35.541039], [-90.344327, 35.854392], [-90.567671, 35.541039], [-90.120982, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 35.541039], [-90.567671, 35.541039], [-90.344327, 35.227686], [-90.120982, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 35.541039], [-90.344327, 35.227686], [-89.897638, 35.227686], [-90.120982, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 35.541039], [-89.897638, 35.227686], [-89.674294, 35.541039], [-90.120982, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 36.167745], [-89.674294, 36.167745], [-89.897638, 36.481098], [-90.120982, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 36.167745], [-89.897638, 36.481098], [-90.344327, 36.481098], [-90.120982, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 36.167745], [-90.344327, 36.481098], [-90.567671, 36.167745], [-90.120982, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 36.167745], [-90.567671, 36.167745], [-90.344327, 35.854392], [-90.120982, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 36.167745], [-90.344327, 35.854392], [-89.897638, 35.854392], [-90.120982, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 36.167745], [-89.897638, 35.854392], [-89.674294, 36.167745], [-90.120982, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 36.794451], [-89.674294, 36.794451], [-89.897638, 37.107804], [-90.120982, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 36.794451], [-89.897638, 37.107804], [-90.344327, 37.107804], [-90.120982, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 36.794451], [-90.344327, 37.107804], [-90.567671, 36.794451], [-90.120982, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 36.794451], [-90.567671, 36.794451], [-90.344327, 36.481098], [-90.120982, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 36.794451], [-90.344327, 36.481098], [-89.897638, 36.481098], [-90.120982, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 36.794451], [-89.897638, 36.481098], [-89.674294, 36.794451], [-90.120982, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 37.421157], [-89.674294, 37.421157], [-89.897638, 37.73451], [-90.120982, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 37.421157], [-89.897638, 37.73451], [-90.344327, 37.73451], [-90.120982, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 37.421157], [-90.344327, 37.73451], [-90.567671, 37.421157], [-90.120982, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 37.421157], [-90.567671, 37.421157], [-90.344327, 37.107804], [-90.120982, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 37.421157], [-90.344327, 37.107804], [-89.897638, 37.107804], [-90.120982, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 37.421157], [-89.897638, 37.107804], [-89.674294, 37.421157], [-90.120982, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 38.047863], [-89.674294, 38.047863], [-89.897638, 38.361217], [-90.120982, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 38.047863], [-89.897638, 38.361217], [-90.344327, 38.361217], [-90.120982, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 38.047863], [-90.344327, 38.361217], [-90.567671, 38.047863], [-90.120982, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 38.047863], [-90.567671, 38.047863], [-90.344327, 37.73451], [-90.120982, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 38.047863], [-90.344327, 37.73451], [-89.897638, 37.73451], [-90.120982, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 38.047863], [-89.897638, 37.73451], [-89.674294, 38.047863], [-90.120982, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 38.67457], [-89.674294, 38.67457], [-89.897638, 38.987923], [-90.120982, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 38.67457], [-89.897638, 38.987923], [-90.344327, 38.987923], [-90.120982, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 38.67457], [-90.344327, 38.987923], [-90.567671, 38.67457], [-90.120982, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 38.67457], [-90.567671, 38.67457], [-90.344327, 38.361217], [-90.120982, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 38.67457], [-90.344327, 38.361217], [-89.897638, 38.361217], [-90.120982, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 38.67457], [-89.897638, 38.361217], [-89.674294, 38.67457], [-90.120982, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 39.301276], [-89.674294, 39.301276], [-89.897638, 39.614629], [-90.120982, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 39.301276], [-89.897638, 39.614629], [-90.344327, 39.614629], [-90.120982, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 39.301276], [-90.344327, 39.614629], [-90.567671, 39.301276], [-90.120982, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 39.301276], [-90.567671, 39.301276], [-90.344327, 38.987923], [-90.120982, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 39.301276], [-90.344327, 38.987923], [-89.897638, 38.987923], [-90.120982, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 39.301276], [-89.897638, 38.987923], [-89.674294, 39.301276], [-90.120982, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 39.927982], [-89.674294, 39.927982], [-89.897638, 40.241335], [-90.120982, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 39.927982], [-89.897638, 40.241335], [-90.344327, 40.241335], [-90.120982, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 39.927982], [-90.344327, 40.241335], [-90.567671, 39.927982], [-90.120982, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 39.927982], [-90.567671, 39.927982], [-90.344327, 39.614629], [-90.120982, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 39.927982], [-90.344327, 39.614629], [-89.897638, 39.614629], [-90.120982, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.120982, 39.927982], [-89.897638, 39.614629], [-89.674294, 39.927982], [-90.120982, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 31.467449], [-89.00426, 31.467449], [-89.227605, 31.780802], [-89.450949, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 31.467449], [-89.227605, 31.780802], [-89.674294, 31.780802], [-89.450949, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 31.467449], [-89.674294, 31.780802], [-89.897638, 31.467449], [-89.450949, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 31.467449], [-89.897638, 31.467449], [-89.674294, 31.154096], [-89.450949, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 31.467449], [-89.674294, 31.154096], [-89.227605, 31.154096], [-89.450949, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 31.467449], [-89.227605, 31.154096], [-89.00426, 31.467449], [-89.450949, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 32.094155], [-89.00426, 32.094155], [-89.227605, 32.407508], [-89.450949, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 32.094155], [-89.227605, 32.407508], [-89.674294, 32.407508], [-89.450949, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 32.094155], [-89.674294, 32.407508], [-89.897638, 32.094155], [-89.450949, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 32.094155], [-89.897638, 32.094155], [-89.674294, 31.780802], [-89.450949, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 32.094155], [-89.674294, 31.780802], [-89.227605, 31.780802], [-89.450949, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 32.094155], [-89.227605, 31.780802], [-89.00426, 32.094155], [-89.450949, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 32.720861], [-89.00426, 32.720861], [-89.227605, 33.034214], [-89.450949, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 32.720861], [-89.227605, 33.034214], [-89.674294, 33.034214], [-89.450949, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 32.720861], [-89.674294, 33.034214], [-89.897638, 32.720861], [-89.450949, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 32.720861], [-89.897638, 32.720861], [-89.674294, 32.407508], [-89.450949, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 32.720861], [-89.674294, 32.407508], [-89.227605, 32.407508], [-89.450949, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 32.720861], [-89.227605, 32.407508], [-89.00426, 32.720861], [-89.450949, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 33.347567], [-89.00426, 33.347567], [-89.227605, 33.66092], [-89.450949, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 33.347567], [-89.227605, 33.66092], [-89.674294, 33.66092], [-89.450949, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 33.347567], [-89.674294, 33.66092], [-89.897638, 33.347567], [-89.450949, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 33.347567], [-89.897638, 33.347567], [-89.674294, 33.034214], [-89.450949, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 33.347567], [-89.674294, 33.034214], [-89.227605, 33.034214], [-89.450949, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 33.347567], [-89.227605, 33.034214], [-89.00426, 33.347567], [-89.450949, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 33.974274], [-89.00426, 33.974274], [-89.227605, 34.287627], [-89.450949, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 33.974274], [-89.227605, 34.287627], [-89.674294, 34.287627], [-89.450949, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 33.974274], [-89.674294, 34.287627], [-89.897638, 33.974274], [-89.450949, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 33.974274], [-89.897638, 33.974274], [-89.674294, 33.66092], [-89.450949, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 33.974274], [-89.674294, 33.66092], [-89.227605, 33.66092], [-89.450949, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 33.974274], [-89.227605, 33.66092], [-89.00426, 33.974274], [-89.450949, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 34.60098], [-89.00426, 34.60098], [-89.227605, 34.914333], [-89.450949, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 34.60098], [-89.227605, 34.914333], [-89.674294, 34.914333], [-89.450949, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 34.60098], [-89.674294, 34.914333], [-89.897638, 34.60098], [-89.450949, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 34.60098], [-89.897638, 34.60098], [-89.674294, 34.287627], [-89.450949, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 34.60098], [-89.674294, 34.287627], [-89.227605, 34.287627], [-89.450949, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 34.60098], [-89.227605, 34.287627], [-89.00426, 34.60098], [-89.450949, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 35.227686], [-89.00426, 35.227686], [-89.227605, 35.541039], [-89.450949, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 35.227686], [-89.227605, 35.541039], [-89.674294, 35.541039], [-89.450949, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 35.227686], [-89.674294, 35.541039], [-89.897638, 35.227686], [-89.450949, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 35.227686], [-89.897638, 35.227686], [-89.674294, 34.914333], [-89.450949, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 35.227686], [-89.674294, 34.914333], [-89.227605, 34.914333], [-89.450949, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 35.227686], [-89.227605, 34.914333], [-89.00426, 35.227686], [-89.450949, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 35.854392], [-89.00426, 35.854392], [-89.227605, 36.167745], [-89.450949, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 35.854392], [-89.227605, 36.167745], [-89.674294, 36.167745], [-89.450949, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 35.854392], [-89.674294, 36.167745], [-89.897638, 35.854392], [-89.450949, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 35.854392], [-89.897638, 35.854392], [-89.674294, 35.541039], [-89.450949, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 35.854392], [-89.674294, 35.541039], [-89.227605, 35.541039], [-89.450949, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 35.854392], [-89.227605, 35.541039], [-89.00426, 35.854392], [-89.450949, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 36.481098], [-89.00426, 36.481098], [-89.227605, 36.794451], [-89.450949, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 36.481098], [-89.227605, 36.794451], [-89.674294, 36.794451], [-89.450949, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 36.481098], [-89.674294, 36.794451], [-89.897638, 36.481098], [-89.450949, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 36.481098], [-89.897638, 36.481098], [-89.674294, 36.167745], [-89.450949, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 36.481098], [-89.674294, 36.167745], [-89.227605, 36.167745], [-89.450949, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 36.481098], [-89.227605, 36.167745], [-89.00426, 36.481098], [-89.450949, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 37.107804], [-89.00426, 37.107804], [-89.227605, 37.421157], [-89.450949, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 37.107804], [-89.227605, 37.421157], [-89.674294, 37.421157], [-89.450949, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 37.107804], [-89.674294, 37.421157], [-89.897638, 37.107804], [-89.450949, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 37.107804], [-89.897638, 37.107804], [-89.674294, 36.794451], [-89.450949, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 37.107804], [-89.674294, 36.794451], [-89.227605, 36.794451], [-89.450949, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 37.107804], [-89.227605, 36.794451], [-89.00426, 37.107804], [-89.450949, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 37.73451], [-89.00426, 37.73451], [-89.227605, 38.047863], [-89.450949, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 37.73451], [-89.227605, 38.047863], [-89.674294, 38.047863], [-89.450949, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 37.73451], [-89.674294, 38.047863], [-89.897638, 37.73451], [-89.450949, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 37.73451], [-89.897638, 37.73451], [-89.674294, 37.421157], [-89.450949, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 37.73451], [-89.674294, 37.421157], [-89.227605, 37.421157], [-89.450949, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 37.73451], [-89.227605, 37.421157], [-89.00426, 37.73451], [-89.450949, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 38.361217], [-89.00426, 38.361217], [-89.227605, 38.67457], [-89.450949, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 38.361217], [-89.227605, 38.67457], [-89.674294, 38.67457], [-89.450949, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 38.361217], [-89.674294, 38.67457], [-89.897638, 38.361217], [-89.450949, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 38.361217], [-89.897638, 38.361217], [-89.674294, 38.047863], [-89.450949, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 38.361217], [-89.674294, 38.047863], [-89.227605, 38.047863], [-89.450949, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 38.361217], [-89.227605, 38.047863], [-89.00426, 38.361217], [-89.450949, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 38.987923], [-89.00426, 38.987923], [-89.227605, 39.301276], [-89.450949, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 38.987923], [-89.227605, 39.301276], [-89.674294, 39.301276], [-89.450949, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 38.987923], [-89.674294, 39.301276], [-89.897638, 38.987923], [-89.450949, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 38.987923], [-89.897638, 38.987923], [-89.674294, 38.67457], [-89.450949, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 38.987923], [-89.674294, 38.67457], [-89.227605, 38.67457], [-89.450949, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 38.987923], [-89.227605, 38.67457], [-89.00426, 38.987923], [-89.450949, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 39.614629], [-89.00426, 39.614629], [-89.227605, 39.927982], [-89.450949, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 39.614629], [-89.227605, 39.927982], [-89.674294, 39.927982], [-89.450949, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 39.614629], [-89.674294, 39.927982], [-89.897638, 39.614629], [-89.450949, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 39.614629], [-89.897638, 39.614629], [-89.674294, 39.301276], [-89.450949, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 39.614629], [-89.674294, 39.301276], [-89.227605, 39.301276], [-89.450949, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 39.614629], [-89.227605, 39.301276], [-89.00426, 39.614629], [-89.450949, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 40.241335], [-89.00426, 40.241335], [-89.227605, 40.554688], [-89.450949, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 40.241335], [-89.227605, 40.554688], [-89.674294, 40.554688], [-89.450949, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 40.241335], [-89.674294, 40.554688], [-89.897638, 40.241335], [-89.450949, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 40.241335], [-89.897638, 40.241335], [-89.674294, 39.927982], [-89.450949, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 40.241335], [-89.674294, 39.927982], [-89.227605, 39.927982], [-89.450949, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.450949, 40.241335], [-89.227605, 39.927982], [-89.00426, 40.241335], [-89.450949, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 31.780802], [-88.334227, 31.780802], [-88.557572, 32.094155], [-88.780916, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 31.780802], [-88.557572, 32.094155], [-89.00426, 32.094155], [-88.780916, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 31.780802], [-89.00426, 32.094155], [-89.227605, 31.780802], [-88.780916, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 31.780802], [-89.227605, 31.780802], [-89.00426, 31.467449], [-88.780916, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 31.780802], [-89.00426, 31.467449], [-88.557572, 31.467449], [-88.780916, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 31.780802], [-88.557572, 31.467449], [-88.334227, 31.780802], [-88.780916, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 32.407508], [-88.334227, 32.407508], [-88.557572, 32.720861], [-88.780916, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 32.407508], [-88.557572, 32.720861], [-89.00426, 32.720861], [-88.780916, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 32.407508], [-89.00426, 32.720861], [-89.227605, 32.407508], [-88.780916, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 32.407508], [-89.227605, 32.407508], [-89.00426, 32.094155], [-88.780916, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 32.407508], [-89.00426, 32.094155], [-88.557572, 32.094155], [-88.780916, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 32.407508], [-88.557572, 32.094155], [-88.334227, 32.407508], [-88.780916, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 33.034214], [-88.334227, 33.034214], [-88.557572, 33.347567], [-88.780916, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 33.034214], [-88.557572, 33.347567], [-89.00426, 33.347567], [-88.780916, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 33.034214], [-89.00426, 33.347567], [-89.227605, 33.034214], [-88.780916, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 33.034214], [-89.227605, 33.034214], [-89.00426, 32.720861], [-88.780916, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 33.034214], [-89.00426, 32.720861], [-88.557572, 32.720861], [-88.780916, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 33.034214], [-88.557572, 32.720861], [-88.334227, 33.034214], [-88.780916, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 33.66092], [-88.334227, 33.66092], [-88.557572, 33.974274], [-88.780916, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 33.66092], [-88.557572, 33.974274], [-89.00426, 33.974274], [-88.780916, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 33.66092], [-89.00426, 33.974274], [-89.227605, 33.66092], [-88.780916, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 33.66092], [-89.227605, 33.66092], [-89.00426, 33.347567], [-88.780916, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 33.66092], [-89.00426, 33.347567], [-88.557572, 33.347567], [-88.780916, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 33.66092], [-88.557572, 33.347567], [-88.334227, 33.66092], [-88.780916, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 34.287627], [-88.334227, 34.287627], [-88.557572, 34.60098], [-88.780916, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 34.287627], [-88.557572, 34.60098], [-89.00426, 34.60098], [-88.780916, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 34.287627], [-89.00426, 34.60098], [-89.227605, 34.287627], [-88.780916, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 34.287627], [-89.227605, 34.287627], [-89.00426, 33.974274], [-88.780916, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 34.287627], [-89.00426, 33.974274], [-88.557572, 33.974274], [-88.780916, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 34.287627], [-88.557572, 33.974274], [-88.334227, 34.287627], [-88.780916, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 34.914333], [-88.334227, 34.914333], [-88.557572, 35.227686], [-88.780916, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 34.914333], [-88.557572, 35.227686], [-89.00426, 35.227686], [-88.780916, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 34.914333], [-89.00426, 35.227686], [-89.227605, 34.914333], [-88.780916, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 34.914333], [-89.227605, 34.914333], [-89.00426, 34.60098], [-88.780916, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 34.914333], [-89.00426, 34.60098], [-88.557572, 34.60098], [-88.780916, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 34.914333], [-88.557572, 34.60098], [-88.334227, 34.914333], [-88.780916, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 35.541039], [-88.334227, 35.541039], [-88.557572, 35.854392], [-88.780916, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 35.541039], [-88.557572, 35.854392], [-89.00426, 35.854392], [-88.780916, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 35.541039], [-89.00426, 35.854392], [-89.227605, 35.541039], [-88.780916, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 35.541039], [-89.227605, 35.541039], [-89.00426, 35.227686], [-88.780916, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 35.541039], [-89.00426, 35.227686], [-88.557572, 35.227686], [-88.780916, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 35.541039], [-88.557572, 35.227686], [-88.334227, 35.541039], [-88.780916, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 36.167745], [-88.334227, 36.167745], [-88.557572, 36.481098], [-88.780916, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 36.167745], [-88.557572, 36.481098], [-89.00426, 36.481098], [-88.780916, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 36.167745], [-89.00426, 36.481098], [-89.227605, 36.167745], [-88.780916, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 36.167745], [-89.227605, 36.167745], [-89.00426, 35.854392], [-88.780916, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 36.167745], [-89.00426, 35.854392], [-88.557572, 35.854392], [-88.780916, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 36.167745], [-88.557572, 35.854392], [-88.334227, 36.167745], [-88.780916, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 36.794451], [-88.334227, 36.794451], [-88.557572, 37.107804], [-88.780916, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 36.794451], [-88.557572, 37.107804], [-89.00426, 37.107804], [-88.780916, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 36.794451], [-89.00426, 37.107804], [-89.227605, 36.794451], [-88.780916, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 36.794451], [-89.227605, 36.794451], [-89.00426, 36.481098], [-88.780916, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 36.794451], [-89.00426, 36.481098], [-88.557572, 36.481098], [-88.780916, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 36.794451], [-88.557572, 36.481098], [-88.334227, 36.794451], [-88.780916, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 37.421157], [-88.334227, 37.421157], [-88.557572, 37.73451], [-88.780916, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 37.421157], [-88.557572, 37.73451], [-89.00426, 37.73451], [-88.780916, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 37.421157], [-89.00426, 37.73451], [-89.227605, 37.421157], [-88.780916, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 37.421157], [-89.227605, 37.421157], [-89.00426, 37.107804], [-88.780916, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 37.421157], [-89.00426, 37.107804], [-88.557572, 37.107804], [-88.780916, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 37.421157], [-88.557572, 37.107804], [-88.334227, 37.421157], [-88.780916, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 38.047863], [-88.334227, 38.047863], [-88.557572, 38.361217], [-88.780916, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 38.047863], [-88.557572, 38.361217], [-89.00426, 38.361217], [-88.780916, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 38.047863], [-89.00426, 38.361217], [-89.227605, 38.047863], [-88.780916, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 38.047863], [-89.227605, 38.047863], [-89.00426, 37.73451], [-88.780916, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 38.047863], [-89.00426, 37.73451], [-88.557572, 37.73451], [-88.780916, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 38.047863], [-88.557572, 37.73451], [-88.334227, 38.047863], [-88.780916, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 38.67457], [-88.334227, 38.67457], [-88.557572, 38.987923], [-88.780916, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 38.67457], [-88.557572, 38.987923], [-89.00426, 38.987923], [-88.780916, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 38.67457], [-89.00426, 38.987923], [-89.227605, 38.67457], [-88.780916, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 38.67457], [-89.227605, 38.67457], [-89.00426, 38.361217], [-88.780916, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 38.67457], [-89.00426, 38.361217], [-88.557572, 38.361217], [-88.780916, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 38.67457], [-88.557572, 38.361217], [-88.334227, 38.67457], [-88.780916, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 39.301276], [-88.334227, 39.301276], [-88.557572, 39.614629], [-88.780916, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 39.301276], [-88.557572, 39.614629], [-89.00426, 39.614629], [-88.780916, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 39.301276], [-89.00426, 39.614629], [-89.227605, 39.301276], [-88.780916, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 39.301276], [-89.227605, 39.301276], [-89.00426, 38.987923], [-88.780916, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 39.301276], [-89.00426, 38.987923], [-88.557572, 38.987923], [-88.780916, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 39.301276], [-88.557572, 38.987923], [-88.334227, 39.301276], [-88.780916, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 39.927982], [-88.334227, 39.927982], [-88.557572, 40.241335], [-88.780916, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 39.927982], [-88.557572, 40.241335], [-89.00426, 40.241335], [-88.780916, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 39.927982], [-89.00426, 40.241335], [-89.227605, 39.927982], [-88.780916, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 39.927982], [-89.227605, 39.927982], [-89.00426, 39.614629], [-88.780916, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 39.927982], [-89.00426, 39.614629], [-88.557572, 39.614629], [-88.780916, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.780916, 39.927982], [-88.557572, 39.614629], [-88.334227, 39.927982], [-88.780916, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 31.467449], [-87.664194, 31.467449], [-87.887538, 31.780802], [-88.110883, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 31.467449], [-87.887538, 31.780802], [-88.334227, 31.780802], [-88.110883, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 31.467449], [-88.334227, 31.780802], [-88.557572, 31.467449], [-88.110883, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 31.467449], [-88.557572, 31.467449], [-88.334227, 31.154096], [-88.110883, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 31.467449], [-88.334227, 31.154096], [-87.887538, 31.154096], [-88.110883, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 31.467449], [-87.887538, 31.154096], [-87.664194, 31.467449], [-88.110883, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 32.094155], [-87.664194, 32.094155], [-87.887538, 32.407508], [-88.110883, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 32.094155], [-87.887538, 32.407508], [-88.334227, 32.407508], [-88.110883, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 32.094155], [-88.334227, 32.407508], [-88.557572, 32.094155], [-88.110883, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 32.094155], [-88.557572, 32.094155], [-88.334227, 31.780802], [-88.110883, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 32.094155], [-88.334227, 31.780802], [-87.887538, 31.780802], [-88.110883, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 32.094155], [-87.887538, 31.780802], [-87.664194, 32.094155], [-88.110883, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 32.720861], [-87.664194, 32.720861], [-87.887538, 33.034214], [-88.110883, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 32.720861], [-87.887538, 33.034214], [-88.334227, 33.034214], [-88.110883, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 32.720861], [-88.334227, 33.034214], [-88.557572, 32.720861], [-88.110883, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 32.720861], [-88.557572, 32.720861], [-88.334227, 32.407508], [-88.110883, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 32.720861], [-88.334227, 32.407508], [-87.887538, 32.407508], [-88.110883, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 32.720861], [-87.887538, 32.407508], [-87.664194, 32.720861], [-88.110883, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 33.347567], [-87.664194, 33.347567], [-87.887538, 33.66092], [-88.110883, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 33.347567], [-87.887538, 33.66092], [-88.334227, 33.66092], [-88.110883, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 33.347567], [-88.334227, 33.66092], [-88.557572, 33.347567], [-88.110883, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 33.347567], [-88.557572, 33.347567], [-88.334227, 33.034214], [-88.110883, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 33.347567], [-88.334227, 33.034214], [-87.887538, 33.034214], [-88.110883, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 33.347567], [-87.887538, 33.034214], [-87.664194, 33.347567], [-88.110883, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 33.974274], [-87.664194, 33.974274], [-87.887538, 34.287627], [-88.110883, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 33.974274], [-87.887538, 34.287627], [-88.334227, 34.287627], [-88.110883, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 33.974274], [-88.334227, 34.287627], [-88.557572, 33.974274], [-88.110883, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 33.974274], [-88.557572, 33.974274], [-88.334227, 33.66092], [-88.110883, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 33.974274], [-88.334227, 33.66092], [-87.887538, 33.66092], [-88.110883, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 33.974274], [-87.887538, 33.66092], [-87.664194, 33.974274], [-88.110883, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 34.60098], [-87.664194, 34.60098], [-87.887538, 34.914333], [-88.110883, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 34.60098], [-87.887538, 34.914333], [-88.334227, 34.914333], [-88.110883, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 34.60098], [-88.334227, 34.914333], [-88.557572, 34.60098], [-88.110883, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 34.60098], [-88.557572, 34.60098], [-88.334227, 34.287627], [-88.110883, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 34.60098], [-88.334227, 34.287627], [-87.887538, 34.287627], [-88.110883, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 34.60098], [-87.887538, 34.287627], [-87.664194, 34.60098], [-88.110883, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 35.227686], [-87.664194, 35.227686], [-87.887538, 35.541039], [-88.110883, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 35.227686], [-87.887538, 35.541039], [-88.334227, 35.541039], [-88.110883, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 35.227686], [-88.334227, 35.541039], [-88.557572, 35.227686], [-88.110883, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 35.227686], [-88.557572, 35.227686], [-88.334227, 34.914333], [-88.110883, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 35.227686], [-88.334227, 34.914333], [-87.887538, 34.914333], [-88.110883, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 35.227686], [-87.887538, 34.914333], [-87.664194, 35.227686], [-88.110883, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 35.854392], [-87.664194, 35.854392], [-87.887538, 36.167745], [-88.110883, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 35.854392], [-87.887538, 36.167745], [-88.334227, 36.167745], [-88.110883, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 35.854392], [-88.334227, 36.167745], [-88.557572, 35.854392], [-88.110883, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 35.854392], [-88.557572, 35.854392], [-88.334227, 35.541039], [-88.110883, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 35.854392], [-88.334227, 35.541039], [-87.887538, 35.541039], [-88.110883, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 35.854392], [-87.887538, 35.541039], [-87.664194, 35.854392], [-88.110883, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 36.481098], [-87.664194, 36.481098], [-87.887538, 36.794451], [-88.110883, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 36.481098], [-87.887538, 36.794451], [-88.334227, 36.794451], [-88.110883, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 36.481098], [-88.334227, 36.794451], [-88.557572, 36.481098], [-88.110883, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 36.481098], [-88.557572, 36.481098], [-88.334227, 36.167745], [-88.110883, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 36.481098], [-88.334227, 36.167745], [-87.887538, 36.167745], [-88.110883, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 36.481098], [-87.887538, 36.167745], [-87.664194, 36.481098], [-88.110883, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 37.107804], [-87.664194, 37.107804], [-87.887538, 37.421157], [-88.110883, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 37.107804], [-87.887538, 37.421157], [-88.334227, 37.421157], [-88.110883, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 37.107804], [-88.334227, 37.421157], [-88.557572, 37.107804], [-88.110883, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 37.107804], [-88.557572, 37.107804], [-88.334227, 36.794451], [-88.110883, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 37.107804], [-88.334227, 36.794451], [-87.887538, 36.794451], [-88.110883, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 37.107804], [-87.887538, 36.794451], [-87.664194, 37.107804], [-88.110883, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 37.73451], [-87.664194, 37.73451], [-87.887538, 38.047863], [-88.110883, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 37.73451], [-87.887538, 38.047863], [-88.334227, 38.047863], [-88.110883, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 37.73451], [-88.334227, 38.047863], [-88.557572, 37.73451], [-88.110883, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 37.73451], [-88.557572, 37.73451], [-88.334227, 37.421157], [-88.110883, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 37.73451], [-88.334227, 37.421157], [-87.887538, 37.421157], [-88.110883, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 37.73451], [-87.887538, 37.421157], [-87.664194, 37.73451], [-88.110883, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 38.361217], [-87.664194, 38.361217], [-87.887538, 38.67457], [-88.110883, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 38.361217], [-87.887538, 38.67457], [-88.334227, 38.67457], [-88.110883, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 38.361217], [-88.334227, 38.67457], [-88.557572, 38.361217], [-88.110883, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 38.361217], [-88.557572, 38.361217], [-88.334227, 38.047863], [-88.110883, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 38.361217], [-88.334227, 38.047863], [-87.887538, 38.047863], [-88.110883, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 38.361217], [-87.887538, 38.047863], [-87.664194, 38.361217], [-88.110883, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 38.987923], [-87.664194, 38.987923], [-87.887538, 39.301276], [-88.110883, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 38.987923], [-87.887538, 39.301276], [-88.334227, 39.301276], [-88.110883, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 38.987923], [-88.334227, 39.301276], [-88.557572, 38.987923], [-88.110883, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 38.987923], [-88.557572, 38.987923], [-88.334227, 38.67457], [-88.110883, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 38.987923], [-88.334227, 38.67457], [-87.887538, 38.67457], [-88.110883, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 38.987923], [-87.887538, 38.67457], [-87.664194, 38.987923], [-88.110883, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 39.614629], [-87.664194, 39.614629], [-87.887538, 39.927982], [-88.110883, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 39.614629], [-87.887538, 39.927982], [-88.334227, 39.927982], [-88.110883, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 39.614629], [-88.334227, 39.927982], [-88.557572, 39.614629], [-88.110883, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 39.614629], [-88.557572, 39.614629], [-88.334227, 39.301276], [-88.110883, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 39.614629], [-88.334227, 39.301276], [-87.887538, 39.301276], [-88.110883, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 39.614629], [-87.887538, 39.301276], [-87.664194, 39.614629], [-88.110883, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 40.241335], [-87.664194, 40.241335], [-87.887538, 40.554688], [-88.110883, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 40.241335], [-87.887538, 40.554688], [-88.334227, 40.554688], [-88.110883, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 40.241335], [-88.334227, 40.554688], [-88.557572, 40.241335], [-88.110883, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 40.241335], [-88.557572, 40.241335], [-88.334227, 39.927982], [-88.110883, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 40.241335], [-88.334227, 39.927982], [-87.887538, 39.927982], [-88.110883, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.110883, 40.241335], [-87.887538, 39.927982], [-87.664194, 40.241335], [-88.110883, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 31.780802], [-86.994161, 31.780802], [-87.217505, 32.094155], [-87.440849, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 31.780802], [-87.217505, 32.094155], [-87.664194, 32.094155], [-87.440849, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 31.780802], [-87.664194, 32.094155], [-87.887538, 31.780802], [-87.440849, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 31.780802], [-87.887538, 31.780802], [-87.664194, 31.467449], [-87.440849, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 31.780802], [-87.664194, 31.467449], [-87.217505, 31.467449], [-87.440849, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 31.780802], [-87.217505, 31.467449], [-86.994161, 31.780802], [-87.440849, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 32.407508], [-86.994161, 32.407508], [-87.217505, 32.720861], [-87.440849, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 32.407508], [-87.217505, 32.720861], [-87.664194, 32.720861], [-87.440849, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 32.407508], [-87.664194, 32.720861], [-87.887538, 32.407508], [-87.440849, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 32.407508], [-87.887538, 32.407508], [-87.664194, 32.094155], [-87.440849, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 32.407508], [-87.664194, 32.094155], [-87.217505, 32.094155], [-87.440849, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 32.407508], [-87.217505, 32.094155], [-86.994161, 32.407508], [-87.440849, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 33.034214], [-86.994161, 33.034214], [-87.217505, 33.347567], [-87.440849, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 33.034214], [-87.217505, 33.347567], [-87.664194, 33.347567], [-87.440849, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 33.034214], [-87.664194, 33.347567], [-87.887538, 33.034214], [-87.440849, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 33.034214], [-87.887538, 33.034214], [-87.664194, 32.720861], [-87.440849, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 33.034214], [-87.664194, 32.720861], [-87.217505, 32.720861], [-87.440849, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 33.034214], [-87.217505, 32.720861], [-86.994161, 33.034214], [-87.440849, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 33.66092], [-86.994161, 33.66092], [-87.217505, 33.974274], [-87.440849, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 33.66092], [-87.217505, 33.974274], [-87.664194, 33.974274], [-87.440849, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 33.66092], [-87.664194, 33.974274], [-87.887538, 33.66092], [-87.440849, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 33.66092], [-87.887538, 33.66092], [-87.664194, 33.347567], [-87.440849, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 33.66092], [-87.664194, 33.347567], [-87.217505, 33.347567], [-87.440849, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 33.66092], [-87.217505, 33.347567], [-86.994161, 33.66092], [-87.440849, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 34.287627], [-86.994161, 34.287627], [-87.217505, 34.60098], [-87.440849, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 34.287627], [-87.217505, 34.60098], [-87.664194, 34.60098], [-87.440849, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 34.287627], [-87.664194, 34.60098], [-87.887538, 34.287627], [-87.440849, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 34.287627], [-87.887538, 34.287627], [-87.664194, 33.974274], [-87.440849, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 34.287627], [-87.664194, 33.974274], [-87.217505, 33.974274], [-87.440849, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 34.287627], [-87.217505, 33.974274], [-86.994161, 34.287627], [-87.440849, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 34.914333], [-86.994161, 34.914333], [-87.217505, 35.227686], [-87.440849, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 34.914333], [-87.217505, 35.227686], [-87.664194, 35.227686], [-87.440849, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 34.914333], [-87.664194, 35.227686], [-87.887538, 34.914333], [-87.440849, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 34.914333], [-87.887538, 34.914333], [-87.664194, 34.60098], [-87.440849, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 34.914333], [-87.664194, 34.60098], [-87.217505, 34.60098], [-87.440849, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 34.914333], [-87.217505, 34.60098], [-86.994161, 34.914333], [-87.440849, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 35.541039], [-86.994161, 35.541039], [-87.217505, 35.854392], [-87.440849, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 35.541039], [-87.217505, 35.854392], [-87.664194, 35.854392], [-87.440849, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 35.541039], [-87.664194, 35.854392], [-87.887538, 35.541039], [-87.440849, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 35.541039], [-87.887538, 35.541039], [-87.664194, 35.227686], [-87.440849, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 35.541039], [-87.664194, 35.227686], [-87.217505, 35.227686], [-87.440849, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 35.541039], [-87.217505, 35.227686], [-86.994161, 35.541039], [-87.440849, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 36.167745], [-86.994161, 36.167745], [-87.217505, 36.481098], [-87.440849, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 36.167745], [-87.217505, 36.481098], [-87.664194, 36.481098], [-87.440849, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 36.167745], [-87.664194, 36.481098], [-87.887538, 36.167745], [-87.440849, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 36.167745], [-87.887538, 36.167745], [-87.664194, 35.854392], [-87.440849, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 36.167745], [-87.664194, 35.854392], [-87.217505, 35.854392], [-87.440849, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 36.167745], [-87.217505, 35.854392], [-86.994161, 36.167745], [-87.440849, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 36.794451], [-86.994161, 36.794451], [-87.217505, 37.107804], [-87.440849, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 36.794451], [-87.217505, 37.107804], [-87.664194, 37.107804], [-87.440849, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 36.794451], [-87.664194, 37.107804], [-87.887538, 36.794451], [-87.440849, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 36.794451], [-87.887538, 36.794451], [-87.664194, 36.481098], [-87.440849, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 36.794451], [-87.664194, 36.481098], [-87.217505, 36.481098], [-87.440849, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 36.794451], [-87.217505, 36.481098], [-86.994161, 36.794451], [-87.440849, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 37.421157], [-86.994161, 37.421157], [-87.217505, 37.73451], [-87.440849, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 37.421157], [-87.217505, 37.73451], [-87.664194, 37.73451], [-87.440849, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 37.421157], [-87.664194, 37.73451], [-87.887538, 37.421157], [-87.440849, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 37.421157], [-87.887538, 37.421157], [-87.664194, 37.107804], [-87.440849, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 37.421157], [-87.664194, 37.107804], [-87.217505, 37.107804], [-87.440849, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 37.421157], [-87.217505, 37.107804], [-86.994161, 37.421157], [-87.440849, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 38.047863], [-86.994161, 38.047863], [-87.217505, 38.361217], [-87.440849, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 38.047863], [-87.217505, 38.361217], [-87.664194, 38.361217], [-87.440849, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 38.047863], [-87.664194, 38.361217], [-87.887538, 38.047863], [-87.440849, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 38.047863], [-87.887538, 38.047863], [-87.664194, 37.73451], [-87.440849, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 38.047863], [-87.664194, 37.73451], [-87.217505, 37.73451], [-87.440849, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 38.047863], [-87.217505, 37.73451], [-86.994161, 38.047863], [-87.440849, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 38.67457], [-86.994161, 38.67457], [-87.217505, 38.987923], [-87.440849, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 38.67457], [-87.217505, 38.987923], [-87.664194, 38.987923], [-87.440849, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 38.67457], [-87.664194, 38.987923], [-87.887538, 38.67457], [-87.440849, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 38.67457], [-87.887538, 38.67457], [-87.664194, 38.361217], [-87.440849, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 38.67457], [-87.664194, 38.361217], [-87.217505, 38.361217], [-87.440849, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 38.67457], [-87.217505, 38.361217], [-86.994161, 38.67457], [-87.440849, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 39.301276], [-86.994161, 39.301276], [-87.217505, 39.614629], [-87.440849, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 39.301276], [-87.217505, 39.614629], [-87.664194, 39.614629], [-87.440849, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 39.301276], [-87.664194, 39.614629], [-87.887538, 39.301276], [-87.440849, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 39.301276], [-87.887538, 39.301276], [-87.664194, 38.987923], [-87.440849, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 39.301276], [-87.664194, 38.987923], [-87.217505, 38.987923], [-87.440849, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 39.301276], [-87.217505, 38.987923], [-86.994161, 39.301276], [-87.440849, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 39.927982], [-86.994161, 39.927982], [-87.217505, 40.241335], [-87.440849, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 39.927982], [-87.217505, 40.241335], [-87.664194, 40.241335], [-87.440849, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 39.927982], [-87.664194, 40.241335], [-87.887538, 39.927982], [-87.440849, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 39.927982], [-87.887538, 39.927982], [-87.664194, 39.614629], [-87.440849, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 39.927982], [-87.664194, 39.614629], [-87.217505, 39.614629], [-87.440849, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.440849, 39.927982], [-87.217505, 39.614629], [-86.994161, 39.927982], [-87.440849, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 31.467449], [-86.324127, 31.467449], [-86.547472, 31.780802], [-86.770816, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 31.467449], [-86.547472, 31.780802], [-86.994161, 31.780802], [-86.770816, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 31.467449], [-86.994161, 31.780802], [-87.217505, 31.467449], [-86.770816, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 31.467449], [-87.217505, 31.467449], [-86.994161, 31.154096], [-86.770816, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 31.467449], [-86.994161, 31.154096], [-86.547472, 31.154096], [-86.770816, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 31.467449], [-86.547472, 31.154096], [-86.324127, 31.467449], [-86.770816, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 32.094155], [-86.324127, 32.094155], [-86.547472, 32.407508], [-86.770816, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 32.094155], [-86.547472, 32.407508], [-86.994161, 32.407508], [-86.770816, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 32.094155], [-86.994161, 32.407508], [-87.217505, 32.094155], [-86.770816, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 32.094155], [-87.217505, 32.094155], [-86.994161, 31.780802], [-86.770816, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 32.094155], [-86.994161, 31.780802], [-86.547472, 31.780802], [-86.770816, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 32.094155], [-86.547472, 31.780802], [-86.324127, 32.094155], [-86.770816, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 32.720861], [-86.324127, 32.720861], [-86.547472, 33.034214], [-86.770816, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 32.720861], [-86.547472, 33.034214], [-86.994161, 33.034214], [-86.770816, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 32.720861], [-86.994161, 33.034214], [-87.217505, 32.720861], [-86.770816, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 32.720861], [-87.217505, 32.720861], [-86.994161, 32.407508], [-86.770816, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 32.720861], [-86.994161, 32.407508], [-86.547472, 32.407508], [-86.770816, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 32.720861], [-86.547472, 32.407508], [-86.324127, 32.720861], [-86.770816, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 33.347567], [-86.324127, 33.347567], [-86.547472, 33.66092], [-86.770816, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 33.347567], [-86.547472, 33.66092], [-86.994161, 33.66092], [-86.770816, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 33.347567], [-86.994161, 33.66092], [-87.217505, 33.347567], [-86.770816, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 33.347567], [-87.217505, 33.347567], [-86.994161, 33.034214], [-86.770816, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 33.347567], [-86.994161, 33.034214], [-86.547472, 33.034214], [-86.770816, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 33.347567], [-86.547472, 33.034214], [-86.324127, 33.347567], [-86.770816, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 33.974274], [-86.324127, 33.974274], [-86.547472, 34.287627], [-86.770816, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 33.974274], [-86.547472, 34.287627], [-86.994161, 34.287627], [-86.770816, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 33.974274], [-86.994161, 34.287627], [-87.217505, 33.974274], [-86.770816, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 33.974274], [-87.217505, 33.974274], [-86.994161, 33.66092], [-86.770816, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 33.974274], [-86.994161, 33.66092], [-86.547472, 33.66092], [-86.770816, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 33.974274], [-86.547472, 33.66092], [-86.324127, 33.974274], [-86.770816, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 34.60098], [-86.324127, 34.60098], [-86.547472, 34.914333], [-86.770816, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 34.60098], [-86.547472, 34.914333], [-86.994161, 34.914333], [-86.770816, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 34.60098], [-86.994161, 34.914333], [-87.217505, 34.60098], [-86.770816, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 34.60098], [-87.217505, 34.60098], [-86.994161, 34.287627], [-86.770816, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 34.60098], [-86.994161, 34.287627], [-86.547472, 34.287627], [-86.770816, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 34.60098], [-86.547472, 34.287627], [-86.324127, 34.60098], [-86.770816, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 35.227686], [-86.324127, 35.227686], [-86.547472, 35.541039], [-86.770816, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 35.227686], [-86.547472, 35.541039], [-86.994161, 35.541039], [-86.770816, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 35.227686], [-86.994161, 35.541039], [-87.217505, 35.227686], [-86.770816, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 35.227686], [-87.217505, 35.227686], [-86.994161, 34.914333], [-86.770816, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 35.227686], [-86.994161, 34.914333], [-86.547472, 34.914333], [-86.770816, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 35.227686], [-86.547472, 34.914333], [-86.324127, 35.227686], [-86.770816, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 35.854392], [-86.324127, 35.854392], [-86.547472, 36.167745], [-86.770816, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 35.854392], [-86.547472, 36.167745], [-86.994161, 36.167745], [-86.770816, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 35.854392], [-86.994161, 36.167745], [-87.217505, 35.854392], [-86.770816, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 35.854392], [-87.217505, 35.854392], [-86.994161, 35.541039], [-86.770816, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 35.854392], [-86.994161, 35.541039], [-86.547472, 35.541039], [-86.770816, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 35.854392], [-86.547472, 35.541039], [-86.324127, 35.854392], [-86.770816, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 36.481098], [-86.324127, 36.481098], [-86.547472, 36.794451], [-86.770816, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 36.481098], [-86.547472, 36.794451], [-86.994161, 36.794451], [-86.770816, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 36.481098], [-86.994161, 36.794451], [-87.217505, 36.481098], [-86.770816, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 36.481098], [-87.217505, 36.481098], [-86.994161, 36.167745], [-86.770816, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 36.481098], [-86.994161, 36.167745], [-86.547472, 36.167745], [-86.770816, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 36.481098], [-86.547472, 36.167745], [-86.324127, 36.481098], [-86.770816, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 37.107804], [-86.324127, 37.107804], [-86.547472, 37.421157], [-86.770816, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 37.107804], [-86.547472, 37.421157], [-86.994161, 37.421157], [-86.770816, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 37.107804], [-86.994161, 37.421157], [-87.217505, 37.107804], [-86.770816, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 37.107804], [-87.217505, 37.107804], [-86.994161, 36.794451], [-86.770816, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 37.107804], [-86.994161, 36.794451], [-86.547472, 36.794451], [-86.770816, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 37.107804], [-86.547472, 36.794451], [-86.324127, 37.107804], [-86.770816, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 37.73451], [-86.324127, 37.73451], [-86.547472, 38.047863], [-86.770816, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 37.73451], [-86.547472, 38.047863], [-86.994161, 38.047863], [-86.770816, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 37.73451], [-86.994161, 38.047863], [-87.217505, 37.73451], [-86.770816, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 37.73451], [-87.217505, 37.73451], [-86.994161, 37.421157], [-86.770816, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 37.73451], [-86.994161, 37.421157], [-86.547472, 37.421157], [-86.770816, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 37.73451], [-86.547472, 37.421157], [-86.324127, 37.73451], [-86.770816, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 38.361217], [-86.324127, 38.361217], [-86.547472, 38.67457], [-86.770816, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 38.361217], [-86.547472, 38.67457], [-86.994161, 38.67457], [-86.770816, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 38.361217], [-86.994161, 38.67457], [-87.217505, 38.361217], [-86.770816, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 38.361217], [-87.217505, 38.361217], [-86.994161, 38.047863], [-86.770816, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 38.361217], [-86.994161, 38.047863], [-86.547472, 38.047863], [-86.770816, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 38.361217], [-86.547472, 38.047863], [-86.324127, 38.361217], [-86.770816, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 38.987923], [-86.324127, 38.987923], [-86.547472, 39.301276], [-86.770816, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 38.987923], [-86.547472, 39.301276], [-86.994161, 39.301276], [-86.770816, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 38.987923], [-86.994161, 39.301276], [-87.217505, 38.987923], [-86.770816, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 38.987923], [-87.217505, 38.987923], [-86.994161, 38.67457], [-86.770816, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 38.987923], [-86.994161, 38.67457], [-86.547472, 38.67457], [-86.770816, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 38.987923], [-86.547472, 38.67457], [-86.324127, 38.987923], [-86.770816, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 39.614629], [-86.324127, 39.614629], [-86.547472, 39.927982], [-86.770816, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 39.614629], [-86.547472, 39.927982], [-86.994161, 39.927982], [-86.770816, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 39.614629], [-86.994161, 39.927982], [-87.217505, 39.614629], [-86.770816, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 39.614629], [-87.217505, 39.614629], [-86.994161, 39.301276], [-86.770816, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 39.614629], [-86.994161, 39.301276], [-86.547472, 39.301276], [-86.770816, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 39.614629], [-86.547472, 39.301276], [-86.324127, 39.614629], [-86.770816, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 40.241335], [-86.324127, 40.241335], [-86.547472, 40.554688], [-86.770816, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 40.241335], [-86.547472, 40.554688], [-86.994161, 40.554688], [-86.770816, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 40.241335], [-86.994161, 40.554688], [-87.217505, 40.241335], [-86.770816, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 40.241335], [-87.217505, 40.241335], [-86.994161, 39.927982], [-86.770816, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 40.241335], [-86.994161, 39.927982], [-86.547472, 39.927982], [-86.770816, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.770816, 40.241335], [-86.547472, 39.927982], [-86.324127, 40.241335], [-86.770816, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 31.780802], [-85.654094, 31.780802], [-85.877439, 32.094155], [-86.100783, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 31.780802], [-85.877439, 32.094155], [-86.324127, 32.094155], [-86.100783, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 31.780802], [-86.324127, 32.094155], [-86.547472, 31.780802], [-86.100783, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 31.780802], [-86.547472, 31.780802], [-86.324127, 31.467449], [-86.100783, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 31.780802], [-86.324127, 31.467449], [-85.877439, 31.467449], [-86.100783, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 31.780802], [-85.877439, 31.467449], [-85.654094, 31.780802], [-86.100783, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 32.407508], [-85.654094, 32.407508], [-85.877439, 32.720861], [-86.100783, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 32.407508], [-85.877439, 32.720861], [-86.324127, 32.720861], [-86.100783, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 32.407508], [-86.324127, 32.720861], [-86.547472, 32.407508], [-86.100783, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 32.407508], [-86.547472, 32.407508], [-86.324127, 32.094155], [-86.100783, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 32.407508], [-86.324127, 32.094155], [-85.877439, 32.094155], [-86.100783, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 32.407508], [-85.877439, 32.094155], [-85.654094, 32.407508], [-86.100783, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 33.034214], [-85.654094, 33.034214], [-85.877439, 33.347567], [-86.100783, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 33.034214], [-85.877439, 33.347567], [-86.324127, 33.347567], [-86.100783, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 33.034214], [-86.324127, 33.347567], [-86.547472, 33.034214], [-86.100783, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 33.034214], [-86.547472, 33.034214], [-86.324127, 32.720861], [-86.100783, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 33.034214], [-86.324127, 32.720861], [-85.877439, 32.720861], [-86.100783, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 33.034214], [-85.877439, 32.720861], [-85.654094, 33.034214], [-86.100783, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 33.66092], [-85.654094, 33.66092], [-85.877439, 33.974274], [-86.100783, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 33.66092], [-85.877439, 33.974274], [-86.324127, 33.974274], [-86.100783, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 33.66092], [-86.324127, 33.974274], [-86.547472, 33.66092], [-86.100783, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 33.66092], [-86.547472, 33.66092], [-86.324127, 33.347567], [-86.100783, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 33.66092], [-86.324127, 33.347567], [-85.877439, 33.347567], [-86.100783, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 33.66092], [-85.877439, 33.347567], [-85.654094, 33.66092], [-86.100783, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 34.287627], [-85.654094, 34.287627], [-85.877439, 34.60098], [-86.100783, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 34.287627], [-85.877439, 34.60098], [-86.324127, 34.60098], [-86.100783, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 34.287627], [-86.324127, 34.60098], [-86.547472, 34.287627], [-86.100783, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 34.287627], [-86.547472, 34.287627], [-86.324127, 33.974274], [-86.100783, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 34.287627], [-86.324127, 33.974274], [-85.877439, 33.974274], [-86.100783, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 34.287627], [-85.877439, 33.974274], [-85.654094, 34.287627], [-86.100783, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 34.914333], [-85.654094, 34.914333], [-85.877439, 35.227686], [-86.100783, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 34.914333], [-85.877439, 35.227686], [-86.324127, 35.227686], [-86.100783, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 34.914333], [-86.324127, 35.227686], [-86.547472, 34.914333], [-86.100783, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 34.914333], [-86.547472, 34.914333], [-86.324127, 34.60098], [-86.100783, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 34.914333], [-86.324127, 34.60098], [-85.877439, 34.60098], [-86.100783, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 34.914333], [-85.877439, 34.60098], [-85.654094, 34.914333], [-86.100783, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 35.541039], [-85.654094, 35.541039], [-85.877439, 35.854392], [-86.100783, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 35.541039], [-85.877439, 35.854392], [-86.324127, 35.854392], [-86.100783, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 35.541039], [-86.324127, 35.854392], [-86.547472, 35.541039], [-86.100783, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 35.541039], [-86.547472, 35.541039], [-86.324127, 35.227686], [-86.100783, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 35.541039], [-86.324127, 35.227686], [-85.877439, 35.227686], [-86.100783, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 35.541039], [-85.877439, 35.227686], [-85.654094, 35.541039], [-86.100783, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 36.167745], [-85.654094, 36.167745], [-85.877439, 36.481098], [-86.100783, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 36.167745], [-85.877439, 36.481098], [-86.324127, 36.481098], [-86.100783, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 36.167745], [-86.324127, 36.481098], [-86.547472, 36.167745], [-86.100783, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 36.167745], [-86.547472, 36.167745], [-86.324127, 35.854392], [-86.100783, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 36.167745], [-86.324127, 35.854392], [-85.877439, 35.854392], [-86.100783, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 36.167745], [-85.877439, 35.854392], [-85.654094, 36.167745], [-86.100783, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 36.794451], [-85.654094, 36.794451], [-85.877439, 37.107804], [-86.100783, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 36.794451], [-85.877439, 37.107804], [-86.324127, 37.107804], [-86.100783, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 36.794451], [-86.324127, 37.107804], [-86.547472, 36.794451], [-86.100783, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 36.794451], [-86.547472, 36.794451], [-86.324127, 36.481098], [-86.100783, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 36.794451], [-86.324127, 36.481098], [-85.877439, 36.481098], [-86.100783, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 36.794451], [-85.877439, 36.481098], [-85.654094, 36.794451], [-86.100783, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 37.421157], [-85.654094, 37.421157], [-85.877439, 37.73451], [-86.100783, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 37.421157], [-85.877439, 37.73451], [-86.324127, 37.73451], [-86.100783, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 37.421157], [-86.324127, 37.73451], [-86.547472, 37.421157], [-86.100783, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 37.421157], [-86.547472, 37.421157], [-86.324127, 37.107804], [-86.100783, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 37.421157], [-86.324127, 37.107804], [-85.877439, 37.107804], [-86.100783, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 37.421157], [-85.877439, 37.107804], [-85.654094, 37.421157], [-86.100783, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 38.047863], [-85.654094, 38.047863], [-85.877439, 38.361217], [-86.100783, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 38.047863], [-85.877439, 38.361217], [-86.324127, 38.361217], [-86.100783, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 38.047863], [-86.324127, 38.361217], [-86.547472, 38.047863], [-86.100783, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 38.047863], [-86.547472, 38.047863], [-86.324127, 37.73451], [-86.100783, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 38.047863], [-86.324127, 37.73451], [-85.877439, 37.73451], [-86.100783, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 38.047863], [-85.877439, 37.73451], [-85.654094, 38.047863], [-86.100783, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 38.67457], [-85.654094, 38.67457], [-85.877439, 38.987923], [-86.100783, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 38.67457], [-85.877439, 38.987923], [-86.324127, 38.987923], [-86.100783, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 38.67457], [-86.324127, 38.987923], [-86.547472, 38.67457], [-86.100783, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 38.67457], [-86.547472, 38.67457], [-86.324127, 38.361217], [-86.100783, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 38.67457], [-86.324127, 38.361217], [-85.877439, 38.361217], [-86.100783, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 38.67457], [-85.877439, 38.361217], [-85.654094, 38.67457], [-86.100783, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 39.301276], [-85.654094, 39.301276], [-85.877439, 39.614629], [-86.100783, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 39.301276], [-85.877439, 39.614629], [-86.324127, 39.614629], [-86.100783, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 39.301276], [-86.324127, 39.614629], [-86.547472, 39.301276], [-86.100783, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 39.301276], [-86.547472, 39.301276], [-86.324127, 38.987923], [-86.100783, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 39.301276], [-86.324127, 38.987923], [-85.877439, 38.987923], [-86.100783, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 39.301276], [-85.877439, 38.987923], [-85.654094, 39.301276], [-86.100783, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 39.927982], [-85.654094, 39.927982], [-85.877439, 40.241335], [-86.100783, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 39.927982], [-85.877439, 40.241335], [-86.324127, 40.241335], [-86.100783, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 39.927982], [-86.324127, 40.241335], [-86.547472, 39.927982], [-86.100783, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 39.927982], [-86.547472, 39.927982], [-86.324127, 39.614629], [-86.100783, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 39.927982], [-86.324127, 39.614629], [-85.877439, 39.614629], [-86.100783, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.100783, 39.927982], [-85.877439, 39.614629], [-85.654094, 39.927982], [-86.100783, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 31.467449], [-84.984061, 31.467449], [-85.207405, 31.780802], [-85.43075, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 31.467449], [-85.207405, 31.780802], [-85.654094, 31.780802], [-85.43075, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 31.467449], [-85.654094, 31.780802], [-85.877439, 31.467449], [-85.43075, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 31.467449], [-85.877439, 31.467449], [-85.654094, 31.154096], [-85.43075, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 31.467449], [-85.654094, 31.154096], [-85.207405, 31.154096], [-85.43075, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 31.467449], [-85.207405, 31.154096], [-84.984061, 31.467449], [-85.43075, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 32.094155], [-84.984061, 32.094155], [-85.207405, 32.407508], [-85.43075, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 32.094155], [-85.207405, 32.407508], [-85.654094, 32.407508], [-85.43075, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 32.094155], [-85.654094, 32.407508], [-85.877439, 32.094155], [-85.43075, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 32.094155], [-85.877439, 32.094155], [-85.654094, 31.780802], [-85.43075, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 32.094155], [-85.654094, 31.780802], [-85.207405, 31.780802], [-85.43075, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 32.094155], [-85.207405, 31.780802], [-84.984061, 32.094155], [-85.43075, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 32.720861], [-84.984061, 32.720861], [-85.207405, 33.034214], [-85.43075, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 32.720861], [-85.207405, 33.034214], [-85.654094, 33.034214], [-85.43075, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 32.720861], [-85.654094, 33.034214], [-85.877439, 32.720861], [-85.43075, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 32.720861], [-85.877439, 32.720861], [-85.654094, 32.407508], [-85.43075, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 32.720861], [-85.654094, 32.407508], [-85.207405, 32.407508], [-85.43075, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 32.720861], [-85.207405, 32.407508], [-84.984061, 32.720861], [-85.43075, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 33.347567], [-84.984061, 33.347567], [-85.207405, 33.66092], [-85.43075, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 33.347567], [-85.207405, 33.66092], [-85.654094, 33.66092], [-85.43075, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 33.347567], [-85.654094, 33.66092], [-85.877439, 33.347567], [-85.43075, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 33.347567], [-85.877439, 33.347567], [-85.654094, 33.034214], [-85.43075, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 33.347567], [-85.654094, 33.034214], [-85.207405, 33.034214], [-85.43075, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 33.347567], [-85.207405, 33.034214], [-84.984061, 33.347567], [-85.43075, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 33.974274], [-84.984061, 33.974274], [-85.207405, 34.287627], [-85.43075, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 33.974274], [-85.207405, 34.287627], [-85.654094, 34.287627], [-85.43075, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 33.974274], [-85.654094, 34.287627], [-85.877439, 33.974274], [-85.43075, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 33.974274], [-85.877439, 33.974274], [-85.654094, 33.66092], [-85.43075, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 33.974274], [-85.654094, 33.66092], [-85.207405, 33.66092], [-85.43075, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 33.974274], [-85.207405, 33.66092], [-84.984061, 33.974274], [-85.43075, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 34.60098], [-84.984061, 34.60098], [-85.207405, 34.914333], [-85.43075, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 34.60098], [-85.207405, 34.914333], [-85.654094, 34.914333], [-85.43075, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 34.60098], [-85.654094, 34.914333], [-85.877439, 34.60098], [-85.43075, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 34.60098], [-85.877439, 34.60098], [-85.654094, 34.287627], [-85.43075, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 34.60098], [-85.654094, 34.287627], [-85.207405, 34.287627], [-85.43075, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 34.60098], [-85.207405, 34.287627], [-84.984061, 34.60098], [-85.43075, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 35.227686], [-84.984061, 35.227686], [-85.207405, 35.541039], [-85.43075, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 35.227686], [-85.207405, 35.541039], [-85.654094, 35.541039], [-85.43075, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 35.227686], [-85.654094, 35.541039], [-85.877439, 35.227686], [-85.43075, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 35.227686], [-85.877439, 35.227686], [-85.654094, 34.914333], [-85.43075, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 35.227686], [-85.654094, 34.914333], [-85.207405, 34.914333], [-85.43075, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 35.227686], [-85.207405, 34.914333], [-84.984061, 35.227686], [-85.43075, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 35.854392], [-84.984061, 35.854392], [-85.207405, 36.167745], [-85.43075, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 35.854392], [-85.207405, 36.167745], [-85.654094, 36.167745], [-85.43075, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 35.854392], [-85.654094, 36.167745], [-85.877439, 35.854392], [-85.43075, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 35.854392], [-85.877439, 35.854392], [-85.654094, 35.541039], [-85.43075, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 35.854392], [-85.654094, 35.541039], [-85.207405, 35.541039], [-85.43075, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 35.854392], [-85.207405, 35.541039], [-84.984061, 35.854392], [-85.43075, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 36.481098], [-84.984061, 36.481098], [-85.207405, 36.794451], [-85.43075, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 36.481098], [-85.207405, 36.794451], [-85.654094, 36.794451], [-85.43075, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 36.481098], [-85.654094, 36.794451], [-85.877439, 36.481098], [-85.43075, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 36.481098], [-85.877439, 36.481098], [-85.654094, 36.167745], [-85.43075, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 36.481098], [-85.654094, 36.167745], [-85.207405, 36.167745], [-85.43075, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 36.481098], [-85.207405, 36.167745], [-84.984061, 36.481098], [-85.43075, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 37.107804], [-84.984061, 37.107804], [-85.207405, 37.421157], [-85.43075, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 37.107804], [-85.207405, 37.421157], [-85.654094, 37.421157], [-85.43075, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 37.107804], [-85.654094, 37.421157], [-85.877439, 37.107804], [-85.43075, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 37.107804], [-85.877439, 37.107804], [-85.654094, 36.794451], [-85.43075, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 37.107804], [-85.654094, 36.794451], [-85.207405, 36.794451], [-85.43075, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 37.107804], [-85.207405, 36.794451], [-84.984061, 37.107804], [-85.43075, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 37.73451], [-84.984061, 37.73451], [-85.207405, 38.047863], [-85.43075, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 37.73451], [-85.207405, 38.047863], [-85.654094, 38.047863], [-85.43075, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 37.73451], [-85.654094, 38.047863], [-85.877439, 37.73451], [-85.43075, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 37.73451], [-85.877439, 37.73451], [-85.654094, 37.421157], [-85.43075, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 37.73451], [-85.654094, 37.421157], [-85.207405, 37.421157], [-85.43075, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 37.73451], [-85.207405, 37.421157], [-84.984061, 37.73451], [-85.43075, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 38.361217], [-84.984061, 38.361217], [-85.207405, 38.67457], [-85.43075, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 38.361217], [-85.207405, 38.67457], [-85.654094, 38.67457], [-85.43075, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 38.361217], [-85.654094, 38.67457], [-85.877439, 38.361217], [-85.43075, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 38.361217], [-85.877439, 38.361217], [-85.654094, 38.047863], [-85.43075, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 38.361217], [-85.654094, 38.047863], [-85.207405, 38.047863], [-85.43075, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 38.361217], [-85.207405, 38.047863], [-84.984061, 38.361217], [-85.43075, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 38.987923], [-84.984061, 38.987923], [-85.207405, 39.301276], [-85.43075, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 38.987923], [-85.207405, 39.301276], [-85.654094, 39.301276], [-85.43075, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 38.987923], [-85.654094, 39.301276], [-85.877439, 38.987923], [-85.43075, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 38.987923], [-85.877439, 38.987923], [-85.654094, 38.67457], [-85.43075, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 38.987923], [-85.654094, 38.67457], [-85.207405, 38.67457], [-85.43075, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 38.987923], [-85.207405, 38.67457], [-84.984061, 38.987923], [-85.43075, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 39.614629], [-84.984061, 39.614629], [-85.207405, 39.927982], [-85.43075, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 39.614629], [-85.207405, 39.927982], [-85.654094, 39.927982], [-85.43075, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 39.614629], [-85.654094, 39.927982], [-85.877439, 39.614629], [-85.43075, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 39.614629], [-85.877439, 39.614629], [-85.654094, 39.301276], [-85.43075, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 39.614629], [-85.654094, 39.301276], [-85.207405, 39.301276], [-85.43075, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 39.614629], [-85.207405, 39.301276], [-84.984061, 39.614629], [-85.43075, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 40.241335], [-84.984061, 40.241335], [-85.207405, 40.554688], [-85.43075, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 40.241335], [-85.207405, 40.554688], [-85.654094, 40.554688], [-85.43075, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 40.241335], [-85.654094, 40.554688], [-85.877439, 40.241335], [-85.43075, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 40.241335], [-85.877439, 40.241335], [-85.654094, 39.927982], [-85.43075, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 40.241335], [-85.654094, 39.927982], [-85.207405, 39.927982], [-85.43075, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.43075, 40.241335], [-85.207405, 39.927982], [-84.984061, 40.241335], [-85.43075, 40.241335] ] ] } }, { "type": "Feature", "bbox": [-96.6357421875, 31.12819929911196, -84.9462890625, 40.58058466412764], "properties": { "stroke": "#F00", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.6357421875, 31.12819929911196], [-84.9462890625, 31.12819929911196], [-84.9462890625, 40.58058466412764], [-96.6357421875, 40.58058466412764], [-96.6357421875, 31.12819929911196] ] ] } } ] } ================================================ FILE: packages/turf-hex-grid/test/out/bbox1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.704593, 31.467449], [-95.927937, 31.780802], [-96.374626, 31.780802], [-96.59797, 31.467449], [-96.374626, 31.154096], [-95.927937, 31.154096], [-95.704593, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.704593, 32.094155], [-95.927937, 32.407508], [-96.374626, 32.407508], [-96.59797, 32.094155], [-96.374626, 31.780802], [-95.927937, 31.780802], [-95.704593, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.704593, 32.720861], [-95.927937, 33.034214], [-96.374626, 33.034214], [-96.59797, 32.720861], [-96.374626, 32.407508], [-95.927937, 32.407508], [-95.704593, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.704593, 33.347567], [-95.927937, 33.66092], [-96.374626, 33.66092], [-96.59797, 33.347567], [-96.374626, 33.034214], [-95.927937, 33.034214], [-95.704593, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.704593, 33.974274], [-95.927937, 34.287627], [-96.374626, 34.287627], [-96.59797, 33.974274], [-96.374626, 33.66092], [-95.927937, 33.66092], [-95.704593, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.704593, 34.60098], [-95.927937, 34.914333], [-96.374626, 34.914333], [-96.59797, 34.60098], [-96.374626, 34.287627], [-95.927937, 34.287627], [-95.704593, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.704593, 35.227686], [-95.927937, 35.541039], [-96.374626, 35.541039], [-96.59797, 35.227686], [-96.374626, 34.914333], [-95.927937, 34.914333], [-95.704593, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.704593, 35.854392], [-95.927937, 36.167745], [-96.374626, 36.167745], [-96.59797, 35.854392], [-96.374626, 35.541039], [-95.927937, 35.541039], [-95.704593, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.704593, 36.481098], [-95.927937, 36.794451], [-96.374626, 36.794451], [-96.59797, 36.481098], [-96.374626, 36.167745], [-95.927937, 36.167745], [-95.704593, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.704593, 37.107804], [-95.927937, 37.421157], [-96.374626, 37.421157], [-96.59797, 37.107804], [-96.374626, 36.794451], [-95.927937, 36.794451], [-95.704593, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.704593, 37.73451], [-95.927937, 38.047863], [-96.374626, 38.047863], [-96.59797, 37.73451], [-96.374626, 37.421157], [-95.927937, 37.421157], [-95.704593, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.704593, 38.361217], [-95.927937, 38.67457], [-96.374626, 38.67457], [-96.59797, 38.361217], [-96.374626, 38.047863], [-95.927937, 38.047863], [-95.704593, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.704593, 38.987923], [-95.927937, 39.301276], [-96.374626, 39.301276], [-96.59797, 38.987923], [-96.374626, 38.67457], [-95.927937, 38.67457], [-95.704593, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.704593, 39.614629], [-95.927937, 39.927982], [-96.374626, 39.927982], [-96.59797, 39.614629], [-96.374626, 39.301276], [-95.927937, 39.301276], [-95.704593, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.704593, 40.241335], [-95.927937, 40.554688], [-96.374626, 40.554688], [-96.59797, 40.241335], [-96.374626, 39.927982], [-95.927937, 39.927982], [-95.704593, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.034559, 31.780802], [-95.257904, 32.094155], [-95.704593, 32.094155], [-95.927937, 31.780802], [-95.704593, 31.467449], [-95.257904, 31.467449], [-95.034559, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.034559, 32.407508], [-95.257904, 32.720861], [-95.704593, 32.720861], [-95.927937, 32.407508], [-95.704593, 32.094155], [-95.257904, 32.094155], [-95.034559, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.034559, 33.034214], [-95.257904, 33.347567], [-95.704593, 33.347567], [-95.927937, 33.034214], [-95.704593, 32.720861], [-95.257904, 32.720861], [-95.034559, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.034559, 33.66092], [-95.257904, 33.974274], [-95.704593, 33.974274], [-95.927937, 33.66092], [-95.704593, 33.347567], [-95.257904, 33.347567], [-95.034559, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.034559, 34.287627], [-95.257904, 34.60098], [-95.704593, 34.60098], [-95.927937, 34.287627], [-95.704593, 33.974274], [-95.257904, 33.974274], [-95.034559, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.034559, 34.914333], [-95.257904, 35.227686], [-95.704593, 35.227686], [-95.927937, 34.914333], [-95.704593, 34.60098], [-95.257904, 34.60098], [-95.034559, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.034559, 35.541039], [-95.257904, 35.854392], [-95.704593, 35.854392], [-95.927937, 35.541039], [-95.704593, 35.227686], [-95.257904, 35.227686], [-95.034559, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.034559, 36.167745], [-95.257904, 36.481098], [-95.704593, 36.481098], [-95.927937, 36.167745], [-95.704593, 35.854392], [-95.257904, 35.854392], [-95.034559, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.034559, 36.794451], [-95.257904, 37.107804], [-95.704593, 37.107804], [-95.927937, 36.794451], [-95.704593, 36.481098], [-95.257904, 36.481098], [-95.034559, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.034559, 37.421157], [-95.257904, 37.73451], [-95.704593, 37.73451], [-95.927937, 37.421157], [-95.704593, 37.107804], [-95.257904, 37.107804], [-95.034559, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.034559, 38.047863], [-95.257904, 38.361217], [-95.704593, 38.361217], [-95.927937, 38.047863], [-95.704593, 37.73451], [-95.257904, 37.73451], [-95.034559, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.034559, 38.67457], [-95.257904, 38.987923], [-95.704593, 38.987923], [-95.927937, 38.67457], [-95.704593, 38.361217], [-95.257904, 38.361217], [-95.034559, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.034559, 39.301276], [-95.257904, 39.614629], [-95.704593, 39.614629], [-95.927937, 39.301276], [-95.704593, 38.987923], [-95.257904, 38.987923], [-95.034559, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.034559, 39.927982], [-95.257904, 40.241335], [-95.704593, 40.241335], [-95.927937, 39.927982], [-95.704593, 39.614629], [-95.257904, 39.614629], [-95.034559, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.364526, 31.467449], [-94.587871, 31.780802], [-95.034559, 31.780802], [-95.257904, 31.467449], [-95.034559, 31.154096], [-94.587871, 31.154096], [-94.364526, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.364526, 32.094155], [-94.587871, 32.407508], [-95.034559, 32.407508], [-95.257904, 32.094155], [-95.034559, 31.780802], [-94.587871, 31.780802], [-94.364526, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.364526, 32.720861], [-94.587871, 33.034214], [-95.034559, 33.034214], [-95.257904, 32.720861], [-95.034559, 32.407508], [-94.587871, 32.407508], [-94.364526, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.364526, 33.347567], [-94.587871, 33.66092], [-95.034559, 33.66092], [-95.257904, 33.347567], [-95.034559, 33.034214], [-94.587871, 33.034214], [-94.364526, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.364526, 33.974274], [-94.587871, 34.287627], [-95.034559, 34.287627], [-95.257904, 33.974274], [-95.034559, 33.66092], [-94.587871, 33.66092], [-94.364526, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.364526, 34.60098], [-94.587871, 34.914333], [-95.034559, 34.914333], [-95.257904, 34.60098], [-95.034559, 34.287627], [-94.587871, 34.287627], [-94.364526, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.364526, 35.227686], [-94.587871, 35.541039], [-95.034559, 35.541039], [-95.257904, 35.227686], [-95.034559, 34.914333], [-94.587871, 34.914333], [-94.364526, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.364526, 35.854392], [-94.587871, 36.167745], [-95.034559, 36.167745], [-95.257904, 35.854392], [-95.034559, 35.541039], [-94.587871, 35.541039], [-94.364526, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.364526, 36.481098], [-94.587871, 36.794451], [-95.034559, 36.794451], [-95.257904, 36.481098], [-95.034559, 36.167745], [-94.587871, 36.167745], [-94.364526, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.364526, 37.107804], [-94.587871, 37.421157], [-95.034559, 37.421157], [-95.257904, 37.107804], [-95.034559, 36.794451], [-94.587871, 36.794451], [-94.364526, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.364526, 37.73451], [-94.587871, 38.047863], [-95.034559, 38.047863], [-95.257904, 37.73451], [-95.034559, 37.421157], [-94.587871, 37.421157], [-94.364526, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.364526, 38.361217], [-94.587871, 38.67457], [-95.034559, 38.67457], [-95.257904, 38.361217], [-95.034559, 38.047863], [-94.587871, 38.047863], [-94.364526, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.364526, 38.987923], [-94.587871, 39.301276], [-95.034559, 39.301276], [-95.257904, 38.987923], [-95.034559, 38.67457], [-94.587871, 38.67457], [-94.364526, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.364526, 39.614629], [-94.587871, 39.927982], [-95.034559, 39.927982], [-95.257904, 39.614629], [-95.034559, 39.301276], [-94.587871, 39.301276], [-94.364526, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.364526, 40.241335], [-94.587871, 40.554688], [-95.034559, 40.554688], [-95.257904, 40.241335], [-95.034559, 39.927982], [-94.587871, 39.927982], [-94.364526, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.694493, 31.780802], [-93.917837, 32.094155], [-94.364526, 32.094155], [-94.587871, 31.780802], [-94.364526, 31.467449], [-93.917837, 31.467449], [-93.694493, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.694493, 32.407508], [-93.917837, 32.720861], [-94.364526, 32.720861], [-94.587871, 32.407508], [-94.364526, 32.094155], [-93.917837, 32.094155], [-93.694493, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.694493, 33.034214], [-93.917837, 33.347567], [-94.364526, 33.347567], [-94.587871, 33.034214], [-94.364526, 32.720861], [-93.917837, 32.720861], [-93.694493, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.694493, 33.66092], [-93.917837, 33.974274], [-94.364526, 33.974274], [-94.587871, 33.66092], [-94.364526, 33.347567], [-93.917837, 33.347567], [-93.694493, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.694493, 34.287627], [-93.917837, 34.60098], [-94.364526, 34.60098], [-94.587871, 34.287627], [-94.364526, 33.974274], [-93.917837, 33.974274], [-93.694493, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.694493, 34.914333], [-93.917837, 35.227686], [-94.364526, 35.227686], [-94.587871, 34.914333], [-94.364526, 34.60098], [-93.917837, 34.60098], [-93.694493, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.694493, 35.541039], [-93.917837, 35.854392], [-94.364526, 35.854392], [-94.587871, 35.541039], [-94.364526, 35.227686], [-93.917837, 35.227686], [-93.694493, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.694493, 36.167745], [-93.917837, 36.481098], [-94.364526, 36.481098], [-94.587871, 36.167745], [-94.364526, 35.854392], [-93.917837, 35.854392], [-93.694493, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.694493, 36.794451], [-93.917837, 37.107804], [-94.364526, 37.107804], [-94.587871, 36.794451], [-94.364526, 36.481098], [-93.917837, 36.481098], [-93.694493, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.694493, 37.421157], [-93.917837, 37.73451], [-94.364526, 37.73451], [-94.587871, 37.421157], [-94.364526, 37.107804], [-93.917837, 37.107804], [-93.694493, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.694493, 38.047863], [-93.917837, 38.361217], [-94.364526, 38.361217], [-94.587871, 38.047863], [-94.364526, 37.73451], [-93.917837, 37.73451], [-93.694493, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.694493, 38.67457], [-93.917837, 38.987923], [-94.364526, 38.987923], [-94.587871, 38.67457], [-94.364526, 38.361217], [-93.917837, 38.361217], [-93.694493, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.694493, 39.301276], [-93.917837, 39.614629], [-94.364526, 39.614629], [-94.587871, 39.301276], [-94.364526, 38.987923], [-93.917837, 38.987923], [-93.694493, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.694493, 39.927982], [-93.917837, 40.241335], [-94.364526, 40.241335], [-94.587871, 39.927982], [-94.364526, 39.614629], [-93.917837, 39.614629], [-93.694493, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.02446, 31.467449], [-93.247804, 31.780802], [-93.694493, 31.780802], [-93.917837, 31.467449], [-93.694493, 31.154096], [-93.247804, 31.154096], [-93.02446, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.02446, 32.094155], [-93.247804, 32.407508], [-93.694493, 32.407508], [-93.917837, 32.094155], [-93.694493, 31.780802], [-93.247804, 31.780802], [-93.02446, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.02446, 32.720861], [-93.247804, 33.034214], [-93.694493, 33.034214], [-93.917837, 32.720861], [-93.694493, 32.407508], [-93.247804, 32.407508], [-93.02446, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.02446, 33.347567], [-93.247804, 33.66092], [-93.694493, 33.66092], [-93.917837, 33.347567], [-93.694493, 33.034214], [-93.247804, 33.034214], [-93.02446, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.02446, 33.974274], [-93.247804, 34.287627], [-93.694493, 34.287627], [-93.917837, 33.974274], [-93.694493, 33.66092], [-93.247804, 33.66092], [-93.02446, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.02446, 34.60098], [-93.247804, 34.914333], [-93.694493, 34.914333], [-93.917837, 34.60098], [-93.694493, 34.287627], [-93.247804, 34.287627], [-93.02446, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.02446, 35.227686], [-93.247804, 35.541039], [-93.694493, 35.541039], [-93.917837, 35.227686], [-93.694493, 34.914333], [-93.247804, 34.914333], [-93.02446, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.02446, 35.854392], [-93.247804, 36.167745], [-93.694493, 36.167745], [-93.917837, 35.854392], [-93.694493, 35.541039], [-93.247804, 35.541039], [-93.02446, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.02446, 36.481098], [-93.247804, 36.794451], [-93.694493, 36.794451], [-93.917837, 36.481098], [-93.694493, 36.167745], [-93.247804, 36.167745], [-93.02446, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.02446, 37.107804], [-93.247804, 37.421157], [-93.694493, 37.421157], [-93.917837, 37.107804], [-93.694493, 36.794451], [-93.247804, 36.794451], [-93.02446, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.02446, 37.73451], [-93.247804, 38.047863], [-93.694493, 38.047863], [-93.917837, 37.73451], [-93.694493, 37.421157], [-93.247804, 37.421157], [-93.02446, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.02446, 38.361217], [-93.247804, 38.67457], [-93.694493, 38.67457], [-93.917837, 38.361217], [-93.694493, 38.047863], [-93.247804, 38.047863], [-93.02446, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.02446, 38.987923], [-93.247804, 39.301276], [-93.694493, 39.301276], [-93.917837, 38.987923], [-93.694493, 38.67457], [-93.247804, 38.67457], [-93.02446, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.02446, 39.614629], [-93.247804, 39.927982], [-93.694493, 39.927982], [-93.917837, 39.614629], [-93.694493, 39.301276], [-93.247804, 39.301276], [-93.02446, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.02446, 40.241335], [-93.247804, 40.554688], [-93.694493, 40.554688], [-93.917837, 40.241335], [-93.694493, 39.927982], [-93.247804, 39.927982], [-93.02446, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.354427, 31.780802], [-92.577771, 32.094155], [-93.02446, 32.094155], [-93.247804, 31.780802], [-93.02446, 31.467449], [-92.577771, 31.467449], [-92.354427, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.354427, 32.407508], [-92.577771, 32.720861], [-93.02446, 32.720861], [-93.247804, 32.407508], [-93.02446, 32.094155], [-92.577771, 32.094155], [-92.354427, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.354427, 33.034214], [-92.577771, 33.347567], [-93.02446, 33.347567], [-93.247804, 33.034214], [-93.02446, 32.720861], [-92.577771, 32.720861], [-92.354427, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.354427, 33.66092], [-92.577771, 33.974274], [-93.02446, 33.974274], [-93.247804, 33.66092], [-93.02446, 33.347567], [-92.577771, 33.347567], [-92.354427, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.354427, 34.287627], [-92.577771, 34.60098], [-93.02446, 34.60098], [-93.247804, 34.287627], [-93.02446, 33.974274], [-92.577771, 33.974274], [-92.354427, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.354427, 34.914333], [-92.577771, 35.227686], [-93.02446, 35.227686], [-93.247804, 34.914333], [-93.02446, 34.60098], [-92.577771, 34.60098], [-92.354427, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.354427, 35.541039], [-92.577771, 35.854392], [-93.02446, 35.854392], [-93.247804, 35.541039], [-93.02446, 35.227686], [-92.577771, 35.227686], [-92.354427, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.354427, 36.167745], [-92.577771, 36.481098], [-93.02446, 36.481098], [-93.247804, 36.167745], [-93.02446, 35.854392], [-92.577771, 35.854392], [-92.354427, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.354427, 36.794451], [-92.577771, 37.107804], [-93.02446, 37.107804], [-93.247804, 36.794451], [-93.02446, 36.481098], [-92.577771, 36.481098], [-92.354427, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.354427, 37.421157], [-92.577771, 37.73451], [-93.02446, 37.73451], [-93.247804, 37.421157], [-93.02446, 37.107804], [-92.577771, 37.107804], [-92.354427, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.354427, 38.047863], [-92.577771, 38.361217], [-93.02446, 38.361217], [-93.247804, 38.047863], [-93.02446, 37.73451], [-92.577771, 37.73451], [-92.354427, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.354427, 38.67457], [-92.577771, 38.987923], [-93.02446, 38.987923], [-93.247804, 38.67457], [-93.02446, 38.361217], [-92.577771, 38.361217], [-92.354427, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.354427, 39.301276], [-92.577771, 39.614629], [-93.02446, 39.614629], [-93.247804, 39.301276], [-93.02446, 38.987923], [-92.577771, 38.987923], [-92.354427, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.354427, 39.927982], [-92.577771, 40.241335], [-93.02446, 40.241335], [-93.247804, 39.927982], [-93.02446, 39.614629], [-92.577771, 39.614629], [-92.354427, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.684393, 31.467449], [-91.907738, 31.780802], [-92.354427, 31.780802], [-92.577771, 31.467449], [-92.354427, 31.154096], [-91.907738, 31.154096], [-91.684393, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.684393, 32.094155], [-91.907738, 32.407508], [-92.354427, 32.407508], [-92.577771, 32.094155], [-92.354427, 31.780802], [-91.907738, 31.780802], [-91.684393, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.684393, 32.720861], [-91.907738, 33.034214], [-92.354427, 33.034214], [-92.577771, 32.720861], [-92.354427, 32.407508], [-91.907738, 32.407508], [-91.684393, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.684393, 33.347567], [-91.907738, 33.66092], [-92.354427, 33.66092], [-92.577771, 33.347567], [-92.354427, 33.034214], [-91.907738, 33.034214], [-91.684393, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.684393, 33.974274], [-91.907738, 34.287627], [-92.354427, 34.287627], [-92.577771, 33.974274], [-92.354427, 33.66092], [-91.907738, 33.66092], [-91.684393, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.684393, 34.60098], [-91.907738, 34.914333], [-92.354427, 34.914333], [-92.577771, 34.60098], [-92.354427, 34.287627], [-91.907738, 34.287627], [-91.684393, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.684393, 35.227686], [-91.907738, 35.541039], [-92.354427, 35.541039], [-92.577771, 35.227686], [-92.354427, 34.914333], [-91.907738, 34.914333], [-91.684393, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.684393, 35.854392], [-91.907738, 36.167745], [-92.354427, 36.167745], [-92.577771, 35.854392], [-92.354427, 35.541039], [-91.907738, 35.541039], [-91.684393, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.684393, 36.481098], [-91.907738, 36.794451], [-92.354427, 36.794451], [-92.577771, 36.481098], [-92.354427, 36.167745], [-91.907738, 36.167745], [-91.684393, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.684393, 37.107804], [-91.907738, 37.421157], [-92.354427, 37.421157], [-92.577771, 37.107804], [-92.354427, 36.794451], [-91.907738, 36.794451], [-91.684393, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.684393, 37.73451], [-91.907738, 38.047863], [-92.354427, 38.047863], [-92.577771, 37.73451], [-92.354427, 37.421157], [-91.907738, 37.421157], [-91.684393, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.684393, 38.361217], [-91.907738, 38.67457], [-92.354427, 38.67457], [-92.577771, 38.361217], [-92.354427, 38.047863], [-91.907738, 38.047863], [-91.684393, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.684393, 38.987923], [-91.907738, 39.301276], [-92.354427, 39.301276], [-92.577771, 38.987923], [-92.354427, 38.67457], [-91.907738, 38.67457], [-91.684393, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.684393, 39.614629], [-91.907738, 39.927982], [-92.354427, 39.927982], [-92.577771, 39.614629], [-92.354427, 39.301276], [-91.907738, 39.301276], [-91.684393, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.684393, 40.241335], [-91.907738, 40.554688], [-92.354427, 40.554688], [-92.577771, 40.241335], [-92.354427, 39.927982], [-91.907738, 39.927982], [-91.684393, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.01436, 31.780802], [-91.237704, 32.094155], [-91.684393, 32.094155], [-91.907738, 31.780802], [-91.684393, 31.467449], [-91.237704, 31.467449], [-91.01436, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.01436, 32.407508], [-91.237704, 32.720861], [-91.684393, 32.720861], [-91.907738, 32.407508], [-91.684393, 32.094155], [-91.237704, 32.094155], [-91.01436, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.01436, 33.034214], [-91.237704, 33.347567], [-91.684393, 33.347567], [-91.907738, 33.034214], [-91.684393, 32.720861], [-91.237704, 32.720861], [-91.01436, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.01436, 33.66092], [-91.237704, 33.974274], [-91.684393, 33.974274], [-91.907738, 33.66092], [-91.684393, 33.347567], [-91.237704, 33.347567], [-91.01436, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.01436, 34.287627], [-91.237704, 34.60098], [-91.684393, 34.60098], [-91.907738, 34.287627], [-91.684393, 33.974274], [-91.237704, 33.974274], [-91.01436, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.01436, 34.914333], [-91.237704, 35.227686], [-91.684393, 35.227686], [-91.907738, 34.914333], [-91.684393, 34.60098], [-91.237704, 34.60098], [-91.01436, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.01436, 35.541039], [-91.237704, 35.854392], [-91.684393, 35.854392], [-91.907738, 35.541039], [-91.684393, 35.227686], [-91.237704, 35.227686], [-91.01436, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.01436, 36.167745], [-91.237704, 36.481098], [-91.684393, 36.481098], [-91.907738, 36.167745], [-91.684393, 35.854392], [-91.237704, 35.854392], [-91.01436, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.01436, 36.794451], [-91.237704, 37.107804], [-91.684393, 37.107804], [-91.907738, 36.794451], [-91.684393, 36.481098], [-91.237704, 36.481098], [-91.01436, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.01436, 37.421157], [-91.237704, 37.73451], [-91.684393, 37.73451], [-91.907738, 37.421157], [-91.684393, 37.107804], [-91.237704, 37.107804], [-91.01436, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.01436, 38.047863], [-91.237704, 38.361217], [-91.684393, 38.361217], [-91.907738, 38.047863], [-91.684393, 37.73451], [-91.237704, 37.73451], [-91.01436, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.01436, 38.67457], [-91.237704, 38.987923], [-91.684393, 38.987923], [-91.907738, 38.67457], [-91.684393, 38.361217], [-91.237704, 38.361217], [-91.01436, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.01436, 39.301276], [-91.237704, 39.614629], [-91.684393, 39.614629], [-91.907738, 39.301276], [-91.684393, 38.987923], [-91.237704, 38.987923], [-91.01436, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.01436, 39.927982], [-91.237704, 40.241335], [-91.684393, 40.241335], [-91.907738, 39.927982], [-91.684393, 39.614629], [-91.237704, 39.614629], [-91.01436, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.344327, 31.467449], [-90.567671, 31.780802], [-91.01436, 31.780802], [-91.237704, 31.467449], [-91.01436, 31.154096], [-90.567671, 31.154096], [-90.344327, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.344327, 32.094155], [-90.567671, 32.407508], [-91.01436, 32.407508], [-91.237704, 32.094155], [-91.01436, 31.780802], [-90.567671, 31.780802], [-90.344327, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.344327, 32.720861], [-90.567671, 33.034214], [-91.01436, 33.034214], [-91.237704, 32.720861], [-91.01436, 32.407508], [-90.567671, 32.407508], [-90.344327, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.344327, 33.347567], [-90.567671, 33.66092], [-91.01436, 33.66092], [-91.237704, 33.347567], [-91.01436, 33.034214], [-90.567671, 33.034214], [-90.344327, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.344327, 33.974274], [-90.567671, 34.287627], [-91.01436, 34.287627], [-91.237704, 33.974274], [-91.01436, 33.66092], [-90.567671, 33.66092], [-90.344327, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.344327, 34.60098], [-90.567671, 34.914333], [-91.01436, 34.914333], [-91.237704, 34.60098], [-91.01436, 34.287627], [-90.567671, 34.287627], [-90.344327, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.344327, 35.227686], [-90.567671, 35.541039], [-91.01436, 35.541039], [-91.237704, 35.227686], [-91.01436, 34.914333], [-90.567671, 34.914333], [-90.344327, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.344327, 35.854392], [-90.567671, 36.167745], [-91.01436, 36.167745], [-91.237704, 35.854392], [-91.01436, 35.541039], [-90.567671, 35.541039], [-90.344327, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.344327, 36.481098], [-90.567671, 36.794451], [-91.01436, 36.794451], [-91.237704, 36.481098], [-91.01436, 36.167745], [-90.567671, 36.167745], [-90.344327, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.344327, 37.107804], [-90.567671, 37.421157], [-91.01436, 37.421157], [-91.237704, 37.107804], [-91.01436, 36.794451], [-90.567671, 36.794451], [-90.344327, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.344327, 37.73451], [-90.567671, 38.047863], [-91.01436, 38.047863], [-91.237704, 37.73451], [-91.01436, 37.421157], [-90.567671, 37.421157], [-90.344327, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.344327, 38.361217], [-90.567671, 38.67457], [-91.01436, 38.67457], [-91.237704, 38.361217], [-91.01436, 38.047863], [-90.567671, 38.047863], [-90.344327, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.344327, 38.987923], [-90.567671, 39.301276], [-91.01436, 39.301276], [-91.237704, 38.987923], [-91.01436, 38.67457], [-90.567671, 38.67457], [-90.344327, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.344327, 39.614629], [-90.567671, 39.927982], [-91.01436, 39.927982], [-91.237704, 39.614629], [-91.01436, 39.301276], [-90.567671, 39.301276], [-90.344327, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90.344327, 40.241335], [-90.567671, 40.554688], [-91.01436, 40.554688], [-91.237704, 40.241335], [-91.01436, 39.927982], [-90.567671, 39.927982], [-90.344327, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.674294, 31.780802], [-89.897638, 32.094155], [-90.344327, 32.094155], [-90.567671, 31.780802], [-90.344327, 31.467449], [-89.897638, 31.467449], [-89.674294, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.674294, 32.407508], [-89.897638, 32.720861], [-90.344327, 32.720861], [-90.567671, 32.407508], [-90.344327, 32.094155], [-89.897638, 32.094155], [-89.674294, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.674294, 33.034214], [-89.897638, 33.347567], [-90.344327, 33.347567], [-90.567671, 33.034214], [-90.344327, 32.720861], [-89.897638, 32.720861], [-89.674294, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.674294, 33.66092], [-89.897638, 33.974274], [-90.344327, 33.974274], [-90.567671, 33.66092], [-90.344327, 33.347567], [-89.897638, 33.347567], [-89.674294, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.674294, 34.287627], [-89.897638, 34.60098], [-90.344327, 34.60098], [-90.567671, 34.287627], [-90.344327, 33.974274], [-89.897638, 33.974274], [-89.674294, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.674294, 34.914333], [-89.897638, 35.227686], [-90.344327, 35.227686], [-90.567671, 34.914333], [-90.344327, 34.60098], [-89.897638, 34.60098], [-89.674294, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.674294, 35.541039], [-89.897638, 35.854392], [-90.344327, 35.854392], [-90.567671, 35.541039], [-90.344327, 35.227686], [-89.897638, 35.227686], [-89.674294, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.674294, 36.167745], [-89.897638, 36.481098], [-90.344327, 36.481098], [-90.567671, 36.167745], [-90.344327, 35.854392], [-89.897638, 35.854392], [-89.674294, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.674294, 36.794451], [-89.897638, 37.107804], [-90.344327, 37.107804], [-90.567671, 36.794451], [-90.344327, 36.481098], [-89.897638, 36.481098], [-89.674294, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.674294, 37.421157], [-89.897638, 37.73451], [-90.344327, 37.73451], [-90.567671, 37.421157], [-90.344327, 37.107804], [-89.897638, 37.107804], [-89.674294, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.674294, 38.047863], [-89.897638, 38.361217], [-90.344327, 38.361217], [-90.567671, 38.047863], [-90.344327, 37.73451], [-89.897638, 37.73451], [-89.674294, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.674294, 38.67457], [-89.897638, 38.987923], [-90.344327, 38.987923], [-90.567671, 38.67457], [-90.344327, 38.361217], [-89.897638, 38.361217], [-89.674294, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.674294, 39.301276], [-89.897638, 39.614629], [-90.344327, 39.614629], [-90.567671, 39.301276], [-90.344327, 38.987923], [-89.897638, 38.987923], [-89.674294, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.674294, 39.927982], [-89.897638, 40.241335], [-90.344327, 40.241335], [-90.567671, 39.927982], [-90.344327, 39.614629], [-89.897638, 39.614629], [-89.674294, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.00426, 31.467449], [-89.227605, 31.780802], [-89.674294, 31.780802], [-89.897638, 31.467449], [-89.674294, 31.154096], [-89.227605, 31.154096], [-89.00426, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.00426, 32.094155], [-89.227605, 32.407508], [-89.674294, 32.407508], [-89.897638, 32.094155], [-89.674294, 31.780802], [-89.227605, 31.780802], [-89.00426, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.00426, 32.720861], [-89.227605, 33.034214], [-89.674294, 33.034214], [-89.897638, 32.720861], [-89.674294, 32.407508], [-89.227605, 32.407508], [-89.00426, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.00426, 33.347567], [-89.227605, 33.66092], [-89.674294, 33.66092], [-89.897638, 33.347567], [-89.674294, 33.034214], [-89.227605, 33.034214], [-89.00426, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.00426, 33.974274], [-89.227605, 34.287627], [-89.674294, 34.287627], [-89.897638, 33.974274], [-89.674294, 33.66092], [-89.227605, 33.66092], [-89.00426, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.00426, 34.60098], [-89.227605, 34.914333], [-89.674294, 34.914333], [-89.897638, 34.60098], [-89.674294, 34.287627], [-89.227605, 34.287627], [-89.00426, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.00426, 35.227686], [-89.227605, 35.541039], [-89.674294, 35.541039], [-89.897638, 35.227686], [-89.674294, 34.914333], [-89.227605, 34.914333], [-89.00426, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.00426, 35.854392], [-89.227605, 36.167745], [-89.674294, 36.167745], [-89.897638, 35.854392], [-89.674294, 35.541039], [-89.227605, 35.541039], [-89.00426, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.00426, 36.481098], [-89.227605, 36.794451], [-89.674294, 36.794451], [-89.897638, 36.481098], [-89.674294, 36.167745], [-89.227605, 36.167745], [-89.00426, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.00426, 37.107804], [-89.227605, 37.421157], [-89.674294, 37.421157], [-89.897638, 37.107804], [-89.674294, 36.794451], [-89.227605, 36.794451], [-89.00426, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.00426, 37.73451], [-89.227605, 38.047863], [-89.674294, 38.047863], [-89.897638, 37.73451], [-89.674294, 37.421157], [-89.227605, 37.421157], [-89.00426, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.00426, 38.361217], [-89.227605, 38.67457], [-89.674294, 38.67457], [-89.897638, 38.361217], [-89.674294, 38.047863], [-89.227605, 38.047863], [-89.00426, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.00426, 38.987923], [-89.227605, 39.301276], [-89.674294, 39.301276], [-89.897638, 38.987923], [-89.674294, 38.67457], [-89.227605, 38.67457], [-89.00426, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.00426, 39.614629], [-89.227605, 39.927982], [-89.674294, 39.927982], [-89.897638, 39.614629], [-89.674294, 39.301276], [-89.227605, 39.301276], [-89.00426, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-89.00426, 40.241335], [-89.227605, 40.554688], [-89.674294, 40.554688], [-89.897638, 40.241335], [-89.674294, 39.927982], [-89.227605, 39.927982], [-89.00426, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.334227, 31.780802], [-88.557572, 32.094155], [-89.00426, 32.094155], [-89.227605, 31.780802], [-89.00426, 31.467449], [-88.557572, 31.467449], [-88.334227, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.334227, 32.407508], [-88.557572, 32.720861], [-89.00426, 32.720861], [-89.227605, 32.407508], [-89.00426, 32.094155], [-88.557572, 32.094155], [-88.334227, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.334227, 33.034214], [-88.557572, 33.347567], [-89.00426, 33.347567], [-89.227605, 33.034214], [-89.00426, 32.720861], [-88.557572, 32.720861], [-88.334227, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.334227, 33.66092], [-88.557572, 33.974274], [-89.00426, 33.974274], [-89.227605, 33.66092], [-89.00426, 33.347567], [-88.557572, 33.347567], [-88.334227, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.334227, 34.287627], [-88.557572, 34.60098], [-89.00426, 34.60098], [-89.227605, 34.287627], [-89.00426, 33.974274], [-88.557572, 33.974274], [-88.334227, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.334227, 34.914333], [-88.557572, 35.227686], [-89.00426, 35.227686], [-89.227605, 34.914333], [-89.00426, 34.60098], [-88.557572, 34.60098], [-88.334227, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.334227, 35.541039], [-88.557572, 35.854392], [-89.00426, 35.854392], [-89.227605, 35.541039], [-89.00426, 35.227686], [-88.557572, 35.227686], [-88.334227, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.334227, 36.167745], [-88.557572, 36.481098], [-89.00426, 36.481098], [-89.227605, 36.167745], [-89.00426, 35.854392], [-88.557572, 35.854392], [-88.334227, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.334227, 36.794451], [-88.557572, 37.107804], [-89.00426, 37.107804], [-89.227605, 36.794451], [-89.00426, 36.481098], [-88.557572, 36.481098], [-88.334227, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.334227, 37.421157], [-88.557572, 37.73451], [-89.00426, 37.73451], [-89.227605, 37.421157], [-89.00426, 37.107804], [-88.557572, 37.107804], [-88.334227, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.334227, 38.047863], [-88.557572, 38.361217], [-89.00426, 38.361217], [-89.227605, 38.047863], [-89.00426, 37.73451], [-88.557572, 37.73451], [-88.334227, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.334227, 38.67457], [-88.557572, 38.987923], [-89.00426, 38.987923], [-89.227605, 38.67457], [-89.00426, 38.361217], [-88.557572, 38.361217], [-88.334227, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.334227, 39.301276], [-88.557572, 39.614629], [-89.00426, 39.614629], [-89.227605, 39.301276], [-89.00426, 38.987923], [-88.557572, 38.987923], [-88.334227, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.334227, 39.927982], [-88.557572, 40.241335], [-89.00426, 40.241335], [-89.227605, 39.927982], [-89.00426, 39.614629], [-88.557572, 39.614629], [-88.334227, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.664194, 31.467449], [-87.887538, 31.780802], [-88.334227, 31.780802], [-88.557572, 31.467449], [-88.334227, 31.154096], [-87.887538, 31.154096], [-87.664194, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.664194, 32.094155], [-87.887538, 32.407508], [-88.334227, 32.407508], [-88.557572, 32.094155], [-88.334227, 31.780802], [-87.887538, 31.780802], [-87.664194, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.664194, 32.720861], [-87.887538, 33.034214], [-88.334227, 33.034214], [-88.557572, 32.720861], [-88.334227, 32.407508], [-87.887538, 32.407508], [-87.664194, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.664194, 33.347567], [-87.887538, 33.66092], [-88.334227, 33.66092], [-88.557572, 33.347567], [-88.334227, 33.034214], [-87.887538, 33.034214], [-87.664194, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.664194, 33.974274], [-87.887538, 34.287627], [-88.334227, 34.287627], [-88.557572, 33.974274], [-88.334227, 33.66092], [-87.887538, 33.66092], [-87.664194, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.664194, 34.60098], [-87.887538, 34.914333], [-88.334227, 34.914333], [-88.557572, 34.60098], [-88.334227, 34.287627], [-87.887538, 34.287627], [-87.664194, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.664194, 35.227686], [-87.887538, 35.541039], [-88.334227, 35.541039], [-88.557572, 35.227686], [-88.334227, 34.914333], [-87.887538, 34.914333], [-87.664194, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.664194, 35.854392], [-87.887538, 36.167745], [-88.334227, 36.167745], [-88.557572, 35.854392], [-88.334227, 35.541039], [-87.887538, 35.541039], [-87.664194, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.664194, 36.481098], [-87.887538, 36.794451], [-88.334227, 36.794451], [-88.557572, 36.481098], [-88.334227, 36.167745], [-87.887538, 36.167745], [-87.664194, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.664194, 37.107804], [-87.887538, 37.421157], [-88.334227, 37.421157], [-88.557572, 37.107804], [-88.334227, 36.794451], [-87.887538, 36.794451], [-87.664194, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.664194, 37.73451], [-87.887538, 38.047863], [-88.334227, 38.047863], [-88.557572, 37.73451], [-88.334227, 37.421157], [-87.887538, 37.421157], [-87.664194, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.664194, 38.361217], [-87.887538, 38.67457], [-88.334227, 38.67457], [-88.557572, 38.361217], [-88.334227, 38.047863], [-87.887538, 38.047863], [-87.664194, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.664194, 38.987923], [-87.887538, 39.301276], [-88.334227, 39.301276], [-88.557572, 38.987923], [-88.334227, 38.67457], [-87.887538, 38.67457], [-87.664194, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.664194, 39.614629], [-87.887538, 39.927982], [-88.334227, 39.927982], [-88.557572, 39.614629], [-88.334227, 39.301276], [-87.887538, 39.301276], [-87.664194, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.664194, 40.241335], [-87.887538, 40.554688], [-88.334227, 40.554688], [-88.557572, 40.241335], [-88.334227, 39.927982], [-87.887538, 39.927982], [-87.664194, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.994161, 31.780802], [-87.217505, 32.094155], [-87.664194, 32.094155], [-87.887538, 31.780802], [-87.664194, 31.467449], [-87.217505, 31.467449], [-86.994161, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.994161, 32.407508], [-87.217505, 32.720861], [-87.664194, 32.720861], [-87.887538, 32.407508], [-87.664194, 32.094155], [-87.217505, 32.094155], [-86.994161, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.994161, 33.034214], [-87.217505, 33.347567], [-87.664194, 33.347567], [-87.887538, 33.034214], [-87.664194, 32.720861], [-87.217505, 32.720861], [-86.994161, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.994161, 33.66092], [-87.217505, 33.974274], [-87.664194, 33.974274], [-87.887538, 33.66092], [-87.664194, 33.347567], [-87.217505, 33.347567], [-86.994161, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.994161, 34.287627], [-87.217505, 34.60098], [-87.664194, 34.60098], [-87.887538, 34.287627], [-87.664194, 33.974274], [-87.217505, 33.974274], [-86.994161, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.994161, 34.914333], [-87.217505, 35.227686], [-87.664194, 35.227686], [-87.887538, 34.914333], [-87.664194, 34.60098], [-87.217505, 34.60098], [-86.994161, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.994161, 35.541039], [-87.217505, 35.854392], [-87.664194, 35.854392], [-87.887538, 35.541039], [-87.664194, 35.227686], [-87.217505, 35.227686], [-86.994161, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.994161, 36.167745], [-87.217505, 36.481098], [-87.664194, 36.481098], [-87.887538, 36.167745], [-87.664194, 35.854392], [-87.217505, 35.854392], [-86.994161, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.994161, 36.794451], [-87.217505, 37.107804], [-87.664194, 37.107804], [-87.887538, 36.794451], [-87.664194, 36.481098], [-87.217505, 36.481098], [-86.994161, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.994161, 37.421157], [-87.217505, 37.73451], [-87.664194, 37.73451], [-87.887538, 37.421157], [-87.664194, 37.107804], [-87.217505, 37.107804], [-86.994161, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.994161, 38.047863], [-87.217505, 38.361217], [-87.664194, 38.361217], [-87.887538, 38.047863], [-87.664194, 37.73451], [-87.217505, 37.73451], [-86.994161, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.994161, 38.67457], [-87.217505, 38.987923], [-87.664194, 38.987923], [-87.887538, 38.67457], [-87.664194, 38.361217], [-87.217505, 38.361217], [-86.994161, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.994161, 39.301276], [-87.217505, 39.614629], [-87.664194, 39.614629], [-87.887538, 39.301276], [-87.664194, 38.987923], [-87.217505, 38.987923], [-86.994161, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.994161, 39.927982], [-87.217505, 40.241335], [-87.664194, 40.241335], [-87.887538, 39.927982], [-87.664194, 39.614629], [-87.217505, 39.614629], [-86.994161, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.324127, 31.467449], [-86.547472, 31.780802], [-86.994161, 31.780802], [-87.217505, 31.467449], [-86.994161, 31.154096], [-86.547472, 31.154096], [-86.324127, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.324127, 32.094155], [-86.547472, 32.407508], [-86.994161, 32.407508], [-87.217505, 32.094155], [-86.994161, 31.780802], [-86.547472, 31.780802], [-86.324127, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.324127, 32.720861], [-86.547472, 33.034214], [-86.994161, 33.034214], [-87.217505, 32.720861], [-86.994161, 32.407508], [-86.547472, 32.407508], [-86.324127, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.324127, 33.347567], [-86.547472, 33.66092], [-86.994161, 33.66092], [-87.217505, 33.347567], [-86.994161, 33.034214], [-86.547472, 33.034214], [-86.324127, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.324127, 33.974274], [-86.547472, 34.287627], [-86.994161, 34.287627], [-87.217505, 33.974274], [-86.994161, 33.66092], [-86.547472, 33.66092], [-86.324127, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.324127, 34.60098], [-86.547472, 34.914333], [-86.994161, 34.914333], [-87.217505, 34.60098], [-86.994161, 34.287627], [-86.547472, 34.287627], [-86.324127, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.324127, 35.227686], [-86.547472, 35.541039], [-86.994161, 35.541039], [-87.217505, 35.227686], [-86.994161, 34.914333], [-86.547472, 34.914333], [-86.324127, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.324127, 35.854392], [-86.547472, 36.167745], [-86.994161, 36.167745], [-87.217505, 35.854392], [-86.994161, 35.541039], [-86.547472, 35.541039], [-86.324127, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.324127, 36.481098], [-86.547472, 36.794451], [-86.994161, 36.794451], [-87.217505, 36.481098], [-86.994161, 36.167745], [-86.547472, 36.167745], [-86.324127, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.324127, 37.107804], [-86.547472, 37.421157], [-86.994161, 37.421157], [-87.217505, 37.107804], [-86.994161, 36.794451], [-86.547472, 36.794451], [-86.324127, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.324127, 37.73451], [-86.547472, 38.047863], [-86.994161, 38.047863], [-87.217505, 37.73451], [-86.994161, 37.421157], [-86.547472, 37.421157], [-86.324127, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.324127, 38.361217], [-86.547472, 38.67457], [-86.994161, 38.67457], [-87.217505, 38.361217], [-86.994161, 38.047863], [-86.547472, 38.047863], [-86.324127, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.324127, 38.987923], [-86.547472, 39.301276], [-86.994161, 39.301276], [-87.217505, 38.987923], [-86.994161, 38.67457], [-86.547472, 38.67457], [-86.324127, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.324127, 39.614629], [-86.547472, 39.927982], [-86.994161, 39.927982], [-87.217505, 39.614629], [-86.994161, 39.301276], [-86.547472, 39.301276], [-86.324127, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-86.324127, 40.241335], [-86.547472, 40.554688], [-86.994161, 40.554688], [-87.217505, 40.241335], [-86.994161, 39.927982], [-86.547472, 39.927982], [-86.324127, 40.241335] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.654094, 31.780802], [-85.877439, 32.094155], [-86.324127, 32.094155], [-86.547472, 31.780802], [-86.324127, 31.467449], [-85.877439, 31.467449], [-85.654094, 31.780802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.654094, 32.407508], [-85.877439, 32.720861], [-86.324127, 32.720861], [-86.547472, 32.407508], [-86.324127, 32.094155], [-85.877439, 32.094155], [-85.654094, 32.407508] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.654094, 33.034214], [-85.877439, 33.347567], [-86.324127, 33.347567], [-86.547472, 33.034214], [-86.324127, 32.720861], [-85.877439, 32.720861], [-85.654094, 33.034214] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.654094, 33.66092], [-85.877439, 33.974274], [-86.324127, 33.974274], [-86.547472, 33.66092], [-86.324127, 33.347567], [-85.877439, 33.347567], [-85.654094, 33.66092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.654094, 34.287627], [-85.877439, 34.60098], [-86.324127, 34.60098], [-86.547472, 34.287627], [-86.324127, 33.974274], [-85.877439, 33.974274], [-85.654094, 34.287627] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.654094, 34.914333], [-85.877439, 35.227686], [-86.324127, 35.227686], [-86.547472, 34.914333], [-86.324127, 34.60098], [-85.877439, 34.60098], [-85.654094, 34.914333] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.654094, 35.541039], [-85.877439, 35.854392], [-86.324127, 35.854392], [-86.547472, 35.541039], [-86.324127, 35.227686], [-85.877439, 35.227686], [-85.654094, 35.541039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.654094, 36.167745], [-85.877439, 36.481098], [-86.324127, 36.481098], [-86.547472, 36.167745], [-86.324127, 35.854392], [-85.877439, 35.854392], [-85.654094, 36.167745] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.654094, 36.794451], [-85.877439, 37.107804], [-86.324127, 37.107804], [-86.547472, 36.794451], [-86.324127, 36.481098], [-85.877439, 36.481098], [-85.654094, 36.794451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.654094, 37.421157], [-85.877439, 37.73451], [-86.324127, 37.73451], [-86.547472, 37.421157], [-86.324127, 37.107804], [-85.877439, 37.107804], [-85.654094, 37.421157] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.654094, 38.047863], [-85.877439, 38.361217], [-86.324127, 38.361217], [-86.547472, 38.047863], [-86.324127, 37.73451], [-85.877439, 37.73451], [-85.654094, 38.047863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.654094, 38.67457], [-85.877439, 38.987923], [-86.324127, 38.987923], [-86.547472, 38.67457], [-86.324127, 38.361217], [-85.877439, 38.361217], [-85.654094, 38.67457] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.654094, 39.301276], [-85.877439, 39.614629], [-86.324127, 39.614629], [-86.547472, 39.301276], [-86.324127, 38.987923], [-85.877439, 38.987923], [-85.654094, 39.301276] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.654094, 39.927982], [-85.877439, 40.241335], [-86.324127, 40.241335], [-86.547472, 39.927982], [-86.324127, 39.614629], [-85.877439, 39.614629], [-85.654094, 39.927982] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-84.984061, 31.467449], [-85.207405, 31.780802], [-85.654094, 31.780802], [-85.877439, 31.467449], [-85.654094, 31.154096], [-85.207405, 31.154096], [-84.984061, 31.467449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-84.984061, 32.094155], [-85.207405, 32.407508], [-85.654094, 32.407508], [-85.877439, 32.094155], [-85.654094, 31.780802], [-85.207405, 31.780802], [-84.984061, 32.094155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-84.984061, 32.720861], [-85.207405, 33.034214], [-85.654094, 33.034214], [-85.877439, 32.720861], [-85.654094, 32.407508], [-85.207405, 32.407508], [-84.984061, 32.720861] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-84.984061, 33.347567], [-85.207405, 33.66092], [-85.654094, 33.66092], [-85.877439, 33.347567], [-85.654094, 33.034214], [-85.207405, 33.034214], [-84.984061, 33.347567] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-84.984061, 33.974274], [-85.207405, 34.287627], [-85.654094, 34.287627], [-85.877439, 33.974274], [-85.654094, 33.66092], [-85.207405, 33.66092], [-84.984061, 33.974274] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-84.984061, 34.60098], [-85.207405, 34.914333], [-85.654094, 34.914333], [-85.877439, 34.60098], [-85.654094, 34.287627], [-85.207405, 34.287627], [-84.984061, 34.60098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-84.984061, 35.227686], [-85.207405, 35.541039], [-85.654094, 35.541039], [-85.877439, 35.227686], [-85.654094, 34.914333], [-85.207405, 34.914333], [-84.984061, 35.227686] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-84.984061, 35.854392], [-85.207405, 36.167745], [-85.654094, 36.167745], [-85.877439, 35.854392], [-85.654094, 35.541039], [-85.207405, 35.541039], [-84.984061, 35.854392] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-84.984061, 36.481098], [-85.207405, 36.794451], [-85.654094, 36.794451], [-85.877439, 36.481098], [-85.654094, 36.167745], [-85.207405, 36.167745], [-84.984061, 36.481098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-84.984061, 37.107804], [-85.207405, 37.421157], [-85.654094, 37.421157], [-85.877439, 37.107804], [-85.654094, 36.794451], [-85.207405, 36.794451], [-84.984061, 37.107804] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-84.984061, 37.73451], [-85.207405, 38.047863], [-85.654094, 38.047863], [-85.877439, 37.73451], [-85.654094, 37.421157], [-85.207405, 37.421157], [-84.984061, 37.73451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-84.984061, 38.361217], [-85.207405, 38.67457], [-85.654094, 38.67457], [-85.877439, 38.361217], [-85.654094, 38.047863], [-85.207405, 38.047863], [-84.984061, 38.361217] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-84.984061, 38.987923], [-85.207405, 39.301276], [-85.654094, 39.301276], [-85.877439, 38.987923], [-85.654094, 38.67457], [-85.207405, 38.67457], [-84.984061, 38.987923] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-84.984061, 39.614629], [-85.207405, 39.927982], [-85.654094, 39.927982], [-85.877439, 39.614629], [-85.654094, 39.301276], [-85.207405, 39.301276], [-84.984061, 39.614629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-84.984061, 40.241335], [-85.207405, 40.554688], [-85.654094, 40.554688], [-85.877439, 40.241335], [-85.654094, 39.927982], [-85.207405, 39.927982], [-84.984061, 40.241335] ] ] } }, { "type": "Feature", "bbox": [-96.6357421875, 31.12819929911196, -84.9462890625, 40.58058466412764], "properties": { "stroke": "#F00", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.6357421875, 31.12819929911196], [-84.9462890625, 31.12819929911196], [-84.9462890625, 40.58058466412764], [-96.6357421875, 40.58058466412764], [-96.6357421875, 31.12819929911196] ] ] } } ] } ================================================ FILE: packages/turf-hex-grid/test/out/big-bbox.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-203.177114, -70.086487], [-207.283475, -63.819426], [-215.496198, -63.819426], [-219.602559, -70.086487], [-215.496198, -76.353549], [-207.283475, -76.353549], [-203.177114, -70.086487] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-203.177114, -57.552365], [-207.283475, -51.285303], [-215.496198, -51.285303], [-219.602559, -57.552365], [-215.496198, -63.819426], [-207.283475, -63.819426], [-203.177114, -57.552365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-203.177114, -45.018242], [-207.283475, -38.75118], [-215.496198, -38.75118], [-219.602559, -45.018242], [-215.496198, -51.285303], [-207.283475, -51.285303], [-203.177114, -45.018242] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-203.177114, -32.484119], [-207.283475, -26.217058], [-215.496198, -26.217058], [-219.602559, -32.484119], [-215.496198, -38.75118], [-207.283475, -38.75118], [-203.177114, -32.484119] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-203.177114, -19.949996], [-207.283475, -13.682935], [-215.496198, -13.682935], [-219.602559, -19.949996], [-215.496198, -26.217058], [-207.283475, -26.217058], [-203.177114, -19.949996] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-203.177114, -7.415873], [-207.283475, -1.148812], [-215.496198, -1.148812], [-219.602559, -7.415873], [-215.496198, -13.682935], [-207.283475, -13.682935], [-203.177114, -7.415873] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-203.177114, 5.118249], [-207.283475, 11.385311], [-215.496198, 11.385311], [-219.602559, 5.118249], [-215.496198, -1.148812], [-207.283475, -1.148812], [-203.177114, 5.118249] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-203.177114, 17.652372], [-207.283475, 23.919434], [-215.496198, 23.919434], [-219.602559, 17.652372], [-215.496198, 11.385311], [-207.283475, 11.385311], [-203.177114, 17.652372] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-203.177114, 30.186495], [-207.283475, 36.453556], [-215.496198, 36.453556], [-219.602559, 30.186495], [-215.496198, 23.919434], [-207.283475, 23.919434], [-203.177114, 30.186495] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-203.177114, 42.720618], [-207.283475, 48.987679], [-215.496198, 48.987679], [-219.602559, 42.720618], [-215.496198, 36.453556], [-207.283475, 36.453556], [-203.177114, 42.720618] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-203.177114, 55.25474], [-207.283475, 61.521802], [-215.496198, 61.521802], [-219.602559, 55.25474], [-215.496198, 48.987679], [-207.283475, 48.987679], [-203.177114, 55.25474] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-203.177114, 67.788863], [-207.283475, 74.055925], [-215.496198, 74.055925], [-219.602559, 67.788863], [-215.496198, 61.521802], [-207.283475, 61.521802], [-203.177114, 67.788863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.85803, -63.819426], [-194.964391, -57.552365], [-203.177114, -57.552365], [-207.283475, -63.819426], [-203.177114, -70.086487], [-194.964391, -70.086487], [-190.85803, -63.819426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.85803, -51.285303], [-194.964391, -45.018242], [-203.177114, -45.018242], [-207.283475, -51.285303], [-203.177114, -57.552365], [-194.964391, -57.552365], [-190.85803, -51.285303] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.85803, -38.75118], [-194.964391, -32.484119], [-203.177114, -32.484119], [-207.283475, -38.75118], [-203.177114, -45.018242], [-194.964391, -45.018242], [-190.85803, -38.75118] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.85803, -26.217058], [-194.964391, -19.949996], [-203.177114, -19.949996], [-207.283475, -26.217058], [-203.177114, -32.484119], [-194.964391, -32.484119], [-190.85803, -26.217058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.85803, -13.682935], [-194.964391, -7.415873], [-203.177114, -7.415873], [-207.283475, -13.682935], [-203.177114, -19.949996], [-194.964391, -19.949996], [-190.85803, -13.682935] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.85803, -1.148812], [-194.964391, 5.118249], [-203.177114, 5.118249], [-207.283475, -1.148812], [-203.177114, -7.415873], [-194.964391, -7.415873], [-190.85803, -1.148812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.85803, 11.385311], [-194.964391, 17.652372], [-203.177114, 17.652372], [-207.283475, 11.385311], [-203.177114, 5.118249], [-194.964391, 5.118249], [-190.85803, 11.385311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.85803, 23.919434], [-194.964391, 30.186495], [-203.177114, 30.186495], [-207.283475, 23.919434], [-203.177114, 17.652372], [-194.964391, 17.652372], [-190.85803, 23.919434] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.85803, 36.453556], [-194.964391, 42.720618], [-203.177114, 42.720618], [-207.283475, 36.453556], [-203.177114, 30.186495], [-194.964391, 30.186495], [-190.85803, 36.453556] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.85803, 48.987679], [-194.964391, 55.25474], [-203.177114, 55.25474], [-207.283475, 48.987679], [-203.177114, 42.720618], [-194.964391, 42.720618], [-190.85803, 48.987679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.85803, 61.521802], [-194.964391, 67.788863], [-203.177114, 67.788863], [-207.283475, 61.521802], [-203.177114, 55.25474], [-194.964391, 55.25474], [-190.85803, 61.521802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-178.538946, -70.086487], [-182.645308, -63.819426], [-190.85803, -63.819426], [-194.964391, -70.086487], [-190.85803, -76.353549], [-182.645308, -76.353549], [-178.538946, -70.086487] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-178.538946, -57.552365], [-182.645308, -51.285303], [-190.85803, -51.285303], [-194.964391, -57.552365], [-190.85803, -63.819426], [-182.645308, -63.819426], [-178.538946, -57.552365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-178.538946, -45.018242], [-182.645308, -38.75118], [-190.85803, -38.75118], [-194.964391, -45.018242], [-190.85803, -51.285303], [-182.645308, -51.285303], [-178.538946, -45.018242] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-178.538946, -32.484119], [-182.645308, -26.217058], [-190.85803, -26.217058], [-194.964391, -32.484119], [-190.85803, -38.75118], [-182.645308, -38.75118], [-178.538946, -32.484119] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-178.538946, -19.949996], [-182.645308, -13.682935], [-190.85803, -13.682935], [-194.964391, -19.949996], [-190.85803, -26.217058], [-182.645308, -26.217058], [-178.538946, -19.949996] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-178.538946, -7.415873], [-182.645308, -1.148812], [-190.85803, -1.148812], [-194.964391, -7.415873], [-190.85803, -13.682935], [-182.645308, -13.682935], [-178.538946, -7.415873] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-178.538946, 5.118249], [-182.645308, 11.385311], [-190.85803, 11.385311], [-194.964391, 5.118249], [-190.85803, -1.148812], [-182.645308, -1.148812], [-178.538946, 5.118249] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-178.538946, 17.652372], [-182.645308, 23.919434], [-190.85803, 23.919434], [-194.964391, 17.652372], [-190.85803, 11.385311], [-182.645308, 11.385311], [-178.538946, 17.652372] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-178.538946, 30.186495], [-182.645308, 36.453556], [-190.85803, 36.453556], [-194.964391, 30.186495], [-190.85803, 23.919434], [-182.645308, 23.919434], [-178.538946, 30.186495] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-178.538946, 42.720618], [-182.645308, 48.987679], [-190.85803, 48.987679], [-194.964391, 42.720618], [-190.85803, 36.453556], [-182.645308, 36.453556], [-178.538946, 42.720618] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-178.538946, 55.25474], [-182.645308, 61.521802], [-190.85803, 61.521802], [-194.964391, 55.25474], [-190.85803, 48.987679], [-182.645308, 48.987679], [-178.538946, 55.25474] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-178.538946, 67.788863], [-182.645308, 74.055925], [-190.85803, 74.055925], [-194.964391, 67.788863], [-190.85803, 61.521802], [-182.645308, 61.521802], [-178.538946, 67.788863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-166.219863, -63.819426], [-170.326224, -57.552365], [-178.538946, -57.552365], [-182.645308, -63.819426], [-178.538946, -70.086487], [-170.326224, -70.086487], [-166.219863, -63.819426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-166.219863, -51.285303], [-170.326224, -45.018242], [-178.538946, -45.018242], [-182.645308, -51.285303], [-178.538946, -57.552365], [-170.326224, -57.552365], [-166.219863, -51.285303] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-166.219863, -38.75118], [-170.326224, -32.484119], [-178.538946, -32.484119], [-182.645308, -38.75118], [-178.538946, -45.018242], [-170.326224, -45.018242], [-166.219863, -38.75118] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-166.219863, -26.217058], [-170.326224, -19.949996], [-178.538946, -19.949996], [-182.645308, -26.217058], [-178.538946, -32.484119], [-170.326224, -32.484119], [-166.219863, -26.217058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-166.219863, -13.682935], [-170.326224, -7.415873], [-178.538946, -7.415873], [-182.645308, -13.682935], [-178.538946, -19.949996], [-170.326224, -19.949996], [-166.219863, -13.682935] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-166.219863, -1.148812], [-170.326224, 5.118249], [-178.538946, 5.118249], [-182.645308, -1.148812], [-178.538946, -7.415873], [-170.326224, -7.415873], [-166.219863, -1.148812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-166.219863, 11.385311], [-170.326224, 17.652372], [-178.538946, 17.652372], [-182.645308, 11.385311], [-178.538946, 5.118249], [-170.326224, 5.118249], [-166.219863, 11.385311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-166.219863, 23.919434], [-170.326224, 30.186495], [-178.538946, 30.186495], [-182.645308, 23.919434], [-178.538946, 17.652372], [-170.326224, 17.652372], [-166.219863, 23.919434] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-166.219863, 36.453556], [-170.326224, 42.720618], [-178.538946, 42.720618], [-182.645308, 36.453556], [-178.538946, 30.186495], [-170.326224, 30.186495], [-166.219863, 36.453556] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-166.219863, 48.987679], [-170.326224, 55.25474], [-178.538946, 55.25474], [-182.645308, 48.987679], [-178.538946, 42.720618], [-170.326224, 42.720618], [-166.219863, 48.987679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-166.219863, 61.521802], [-170.326224, 67.788863], [-178.538946, 67.788863], [-182.645308, 61.521802], [-178.538946, 55.25474], [-170.326224, 55.25474], [-166.219863, 61.521802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-153.900779, -70.086487], [-158.00714, -63.819426], [-166.219863, -63.819426], [-170.326224, -70.086487], [-166.219863, -76.353549], [-158.00714, -76.353549], [-153.900779, -70.086487] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-153.900779, -57.552365], [-158.00714, -51.285303], [-166.219863, -51.285303], [-170.326224, -57.552365], [-166.219863, -63.819426], [-158.00714, -63.819426], [-153.900779, -57.552365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-153.900779, -45.018242], [-158.00714, -38.75118], [-166.219863, -38.75118], [-170.326224, -45.018242], [-166.219863, -51.285303], [-158.00714, -51.285303], [-153.900779, -45.018242] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-153.900779, -32.484119], [-158.00714, -26.217058], [-166.219863, -26.217058], [-170.326224, -32.484119], [-166.219863, -38.75118], [-158.00714, -38.75118], [-153.900779, -32.484119] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-153.900779, -19.949996], [-158.00714, -13.682935], [-166.219863, -13.682935], [-170.326224, -19.949996], [-166.219863, -26.217058], [-158.00714, -26.217058], [-153.900779, -19.949996] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-153.900779, -7.415873], [-158.00714, -1.148812], [-166.219863, -1.148812], [-170.326224, -7.415873], [-166.219863, -13.682935], [-158.00714, -13.682935], [-153.900779, -7.415873] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-153.900779, 5.118249], [-158.00714, 11.385311], [-166.219863, 11.385311], [-170.326224, 5.118249], [-166.219863, -1.148812], [-158.00714, -1.148812], [-153.900779, 5.118249] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-153.900779, 17.652372], [-158.00714, 23.919434], [-166.219863, 23.919434], [-170.326224, 17.652372], [-166.219863, 11.385311], [-158.00714, 11.385311], [-153.900779, 17.652372] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-153.900779, 30.186495], [-158.00714, 36.453556], [-166.219863, 36.453556], [-170.326224, 30.186495], [-166.219863, 23.919434], [-158.00714, 23.919434], [-153.900779, 30.186495] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-153.900779, 42.720618], [-158.00714, 48.987679], [-166.219863, 48.987679], [-170.326224, 42.720618], [-166.219863, 36.453556], [-158.00714, 36.453556], [-153.900779, 42.720618] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-153.900779, 55.25474], [-158.00714, 61.521802], [-166.219863, 61.521802], [-170.326224, 55.25474], [-166.219863, 48.987679], [-158.00714, 48.987679], [-153.900779, 55.25474] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-153.900779, 67.788863], [-158.00714, 74.055925], [-166.219863, 74.055925], [-170.326224, 67.788863], [-166.219863, 61.521802], [-158.00714, 61.521802], [-153.900779, 67.788863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-141.581695, -63.819426], [-145.688056, -57.552365], [-153.900779, -57.552365], [-158.00714, -63.819426], [-153.900779, -70.086487], [-145.688056, -70.086487], [-141.581695, -63.819426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-141.581695, -51.285303], [-145.688056, -45.018242], [-153.900779, -45.018242], [-158.00714, -51.285303], [-153.900779, -57.552365], [-145.688056, -57.552365], [-141.581695, -51.285303] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-141.581695, -38.75118], [-145.688056, -32.484119], [-153.900779, -32.484119], [-158.00714, -38.75118], [-153.900779, -45.018242], [-145.688056, -45.018242], [-141.581695, -38.75118] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-141.581695, -26.217058], [-145.688056, -19.949996], [-153.900779, -19.949996], [-158.00714, -26.217058], [-153.900779, -32.484119], [-145.688056, -32.484119], [-141.581695, -26.217058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-141.581695, -13.682935], [-145.688056, -7.415873], [-153.900779, -7.415873], [-158.00714, -13.682935], [-153.900779, -19.949996], [-145.688056, -19.949996], [-141.581695, -13.682935] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-141.581695, -1.148812], [-145.688056, 5.118249], [-153.900779, 5.118249], [-158.00714, -1.148812], [-153.900779, -7.415873], [-145.688056, -7.415873], [-141.581695, -1.148812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-141.581695, 11.385311], [-145.688056, 17.652372], [-153.900779, 17.652372], [-158.00714, 11.385311], [-153.900779, 5.118249], [-145.688056, 5.118249], [-141.581695, 11.385311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-141.581695, 23.919434], [-145.688056, 30.186495], [-153.900779, 30.186495], [-158.00714, 23.919434], [-153.900779, 17.652372], [-145.688056, 17.652372], [-141.581695, 23.919434] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-141.581695, 36.453556], [-145.688056, 42.720618], [-153.900779, 42.720618], [-158.00714, 36.453556], [-153.900779, 30.186495], [-145.688056, 30.186495], [-141.581695, 36.453556] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-141.581695, 48.987679], [-145.688056, 55.25474], [-153.900779, 55.25474], [-158.00714, 48.987679], [-153.900779, 42.720618], [-145.688056, 42.720618], [-141.581695, 48.987679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-141.581695, 61.521802], [-145.688056, 67.788863], [-153.900779, 67.788863], [-158.00714, 61.521802], [-153.900779, 55.25474], [-145.688056, 55.25474], [-141.581695, 61.521802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-129.262611, -70.086487], [-133.368973, -63.819426], [-141.581695, -63.819426], [-145.688056, -70.086487], [-141.581695, -76.353549], [-133.368973, -76.353549], [-129.262611, -70.086487] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-129.262611, -57.552365], [-133.368973, -51.285303], [-141.581695, -51.285303], [-145.688056, -57.552365], [-141.581695, -63.819426], [-133.368973, -63.819426], [-129.262611, -57.552365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-129.262611, -45.018242], [-133.368973, -38.75118], [-141.581695, -38.75118], [-145.688056, -45.018242], [-141.581695, -51.285303], [-133.368973, -51.285303], [-129.262611, -45.018242] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-129.262611, -32.484119], [-133.368973, -26.217058], [-141.581695, -26.217058], [-145.688056, -32.484119], [-141.581695, -38.75118], [-133.368973, -38.75118], [-129.262611, -32.484119] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-129.262611, -19.949996], [-133.368973, -13.682935], [-141.581695, -13.682935], [-145.688056, -19.949996], [-141.581695, -26.217058], [-133.368973, -26.217058], [-129.262611, -19.949996] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-129.262611, -7.415873], [-133.368973, -1.148812], [-141.581695, -1.148812], [-145.688056, -7.415873], [-141.581695, -13.682935], [-133.368973, -13.682935], [-129.262611, -7.415873] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-129.262611, 5.118249], [-133.368973, 11.385311], [-141.581695, 11.385311], [-145.688056, 5.118249], [-141.581695, -1.148812], [-133.368973, -1.148812], [-129.262611, 5.118249] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-129.262611, 17.652372], [-133.368973, 23.919434], [-141.581695, 23.919434], [-145.688056, 17.652372], [-141.581695, 11.385311], [-133.368973, 11.385311], [-129.262611, 17.652372] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-129.262611, 30.186495], [-133.368973, 36.453556], [-141.581695, 36.453556], [-145.688056, 30.186495], [-141.581695, 23.919434], [-133.368973, 23.919434], [-129.262611, 30.186495] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-129.262611, 42.720618], [-133.368973, 48.987679], [-141.581695, 48.987679], [-145.688056, 42.720618], [-141.581695, 36.453556], [-133.368973, 36.453556], [-129.262611, 42.720618] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-129.262611, 55.25474], [-133.368973, 61.521802], [-141.581695, 61.521802], [-145.688056, 55.25474], [-141.581695, 48.987679], [-133.368973, 48.987679], [-129.262611, 55.25474] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-129.262611, 67.788863], [-133.368973, 74.055925], [-141.581695, 74.055925], [-145.688056, 67.788863], [-141.581695, 61.521802], [-133.368973, 61.521802], [-129.262611, 67.788863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-116.943527, -63.819426], [-121.049889, -57.552365], [-129.262611, -57.552365], [-133.368973, -63.819426], [-129.262611, -70.086487], [-121.049889, -70.086487], [-116.943527, -63.819426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-116.943527, -51.285303], [-121.049889, -45.018242], [-129.262611, -45.018242], [-133.368973, -51.285303], [-129.262611, -57.552365], [-121.049889, -57.552365], [-116.943527, -51.285303] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-116.943527, -38.75118], [-121.049889, -32.484119], [-129.262611, -32.484119], [-133.368973, -38.75118], [-129.262611, -45.018242], [-121.049889, -45.018242], [-116.943527, -38.75118] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-116.943527, -26.217058], [-121.049889, -19.949996], [-129.262611, -19.949996], [-133.368973, -26.217058], [-129.262611, -32.484119], [-121.049889, -32.484119], [-116.943527, -26.217058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-116.943527, -13.682935], [-121.049889, -7.415873], [-129.262611, -7.415873], [-133.368973, -13.682935], [-129.262611, -19.949996], [-121.049889, -19.949996], [-116.943527, -13.682935] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-116.943527, -1.148812], [-121.049889, 5.118249], [-129.262611, 5.118249], [-133.368973, -1.148812], [-129.262611, -7.415873], [-121.049889, -7.415873], [-116.943527, -1.148812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-116.943527, 11.385311], [-121.049889, 17.652372], [-129.262611, 17.652372], [-133.368973, 11.385311], [-129.262611, 5.118249], [-121.049889, 5.118249], [-116.943527, 11.385311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-116.943527, 23.919434], [-121.049889, 30.186495], [-129.262611, 30.186495], [-133.368973, 23.919434], [-129.262611, 17.652372], [-121.049889, 17.652372], [-116.943527, 23.919434] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-116.943527, 36.453556], [-121.049889, 42.720618], [-129.262611, 42.720618], [-133.368973, 36.453556], [-129.262611, 30.186495], [-121.049889, 30.186495], [-116.943527, 36.453556] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-116.943527, 48.987679], [-121.049889, 55.25474], [-129.262611, 55.25474], [-133.368973, 48.987679], [-129.262611, 42.720618], [-121.049889, 42.720618], [-116.943527, 48.987679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-116.943527, 61.521802], [-121.049889, 67.788863], [-129.262611, 67.788863], [-133.368973, 61.521802], [-129.262611, 55.25474], [-121.049889, 55.25474], [-116.943527, 61.521802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-104.624444, -70.086487], [-108.730805, -63.819426], [-116.943527, -63.819426], [-121.049889, -70.086487], [-116.943527, -76.353549], [-108.730805, -76.353549], [-104.624444, -70.086487] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-104.624444, -57.552365], [-108.730805, -51.285303], [-116.943527, -51.285303], [-121.049889, -57.552365], [-116.943527, -63.819426], [-108.730805, -63.819426], [-104.624444, -57.552365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-104.624444, -45.018242], [-108.730805, -38.75118], [-116.943527, -38.75118], [-121.049889, -45.018242], [-116.943527, -51.285303], [-108.730805, -51.285303], [-104.624444, -45.018242] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-104.624444, -32.484119], [-108.730805, -26.217058], [-116.943527, -26.217058], [-121.049889, -32.484119], [-116.943527, -38.75118], [-108.730805, -38.75118], [-104.624444, -32.484119] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-104.624444, -19.949996], [-108.730805, -13.682935], [-116.943527, -13.682935], [-121.049889, -19.949996], [-116.943527, -26.217058], [-108.730805, -26.217058], [-104.624444, -19.949996] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-104.624444, -7.415873], [-108.730805, -1.148812], [-116.943527, -1.148812], [-121.049889, -7.415873], [-116.943527, -13.682935], [-108.730805, -13.682935], [-104.624444, -7.415873] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-104.624444, 5.118249], [-108.730805, 11.385311], [-116.943527, 11.385311], [-121.049889, 5.118249], [-116.943527, -1.148812], [-108.730805, -1.148812], [-104.624444, 5.118249] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-104.624444, 17.652372], [-108.730805, 23.919434], [-116.943527, 23.919434], [-121.049889, 17.652372], [-116.943527, 11.385311], [-108.730805, 11.385311], [-104.624444, 17.652372] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-104.624444, 30.186495], [-108.730805, 36.453556], [-116.943527, 36.453556], [-121.049889, 30.186495], [-116.943527, 23.919434], [-108.730805, 23.919434], [-104.624444, 30.186495] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-104.624444, 42.720618], [-108.730805, 48.987679], [-116.943527, 48.987679], [-121.049889, 42.720618], [-116.943527, 36.453556], [-108.730805, 36.453556], [-104.624444, 42.720618] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-104.624444, 55.25474], [-108.730805, 61.521802], [-116.943527, 61.521802], [-121.049889, 55.25474], [-116.943527, 48.987679], [-108.730805, 48.987679], [-104.624444, 55.25474] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-104.624444, 67.788863], [-108.730805, 74.055925], [-116.943527, 74.055925], [-121.049889, 67.788863], [-116.943527, 61.521802], [-108.730805, 61.521802], [-104.624444, 67.788863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.30536, -63.819426], [-96.411721, -57.552365], [-104.624444, -57.552365], [-108.730805, -63.819426], [-104.624444, -70.086487], [-96.411721, -70.086487], [-92.30536, -63.819426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.30536, -51.285303], [-96.411721, -45.018242], [-104.624444, -45.018242], [-108.730805, -51.285303], [-104.624444, -57.552365], [-96.411721, -57.552365], [-92.30536, -51.285303] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.30536, -38.75118], [-96.411721, -32.484119], [-104.624444, -32.484119], [-108.730805, -38.75118], [-104.624444, -45.018242], [-96.411721, -45.018242], [-92.30536, -38.75118] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.30536, -26.217058], [-96.411721, -19.949996], [-104.624444, -19.949996], [-108.730805, -26.217058], [-104.624444, -32.484119], [-96.411721, -32.484119], [-92.30536, -26.217058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.30536, -13.682935], [-96.411721, -7.415873], [-104.624444, -7.415873], [-108.730805, -13.682935], [-104.624444, -19.949996], [-96.411721, -19.949996], [-92.30536, -13.682935] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.30536, -1.148812], [-96.411721, 5.118249], [-104.624444, 5.118249], [-108.730805, -1.148812], [-104.624444, -7.415873], [-96.411721, -7.415873], [-92.30536, -1.148812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.30536, 11.385311], [-96.411721, 17.652372], [-104.624444, 17.652372], [-108.730805, 11.385311], [-104.624444, 5.118249], [-96.411721, 5.118249], [-92.30536, 11.385311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.30536, 23.919434], [-96.411721, 30.186495], [-104.624444, 30.186495], [-108.730805, 23.919434], [-104.624444, 17.652372], [-96.411721, 17.652372], [-92.30536, 23.919434] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.30536, 36.453556], [-96.411721, 42.720618], [-104.624444, 42.720618], [-108.730805, 36.453556], [-104.624444, 30.186495], [-96.411721, 30.186495], [-92.30536, 36.453556] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.30536, 48.987679], [-96.411721, 55.25474], [-104.624444, 55.25474], [-108.730805, 48.987679], [-104.624444, 42.720618], [-96.411721, 42.720618], [-92.30536, 48.987679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-92.30536, 61.521802], [-96.411721, 67.788863], [-104.624444, 67.788863], [-108.730805, 61.521802], [-104.624444, 55.25474], [-96.411721, 55.25474], [-92.30536, 61.521802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.986276, -70.086487], [-84.092637, -63.819426], [-92.30536, -63.819426], [-96.411721, -70.086487], [-92.30536, -76.353549], [-84.092637, -76.353549], [-79.986276, -70.086487] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.986276, -57.552365], [-84.092637, -51.285303], [-92.30536, -51.285303], [-96.411721, -57.552365], [-92.30536, -63.819426], [-84.092637, -63.819426], [-79.986276, -57.552365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.986276, -45.018242], [-84.092637, -38.75118], [-92.30536, -38.75118], [-96.411721, -45.018242], [-92.30536, -51.285303], [-84.092637, -51.285303], [-79.986276, -45.018242] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.986276, -32.484119], [-84.092637, -26.217058], [-92.30536, -26.217058], [-96.411721, -32.484119], [-92.30536, -38.75118], [-84.092637, -38.75118], [-79.986276, -32.484119] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.986276, -19.949996], [-84.092637, -13.682935], [-92.30536, -13.682935], [-96.411721, -19.949996], [-92.30536, -26.217058], [-84.092637, -26.217058], [-79.986276, -19.949996] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.986276, -7.415873], [-84.092637, -1.148812], [-92.30536, -1.148812], [-96.411721, -7.415873], [-92.30536, -13.682935], [-84.092637, -13.682935], [-79.986276, -7.415873] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.986276, 5.118249], [-84.092637, 11.385311], [-92.30536, 11.385311], [-96.411721, 5.118249], [-92.30536, -1.148812], [-84.092637, -1.148812], [-79.986276, 5.118249] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.986276, 17.652372], [-84.092637, 23.919434], [-92.30536, 23.919434], [-96.411721, 17.652372], [-92.30536, 11.385311], [-84.092637, 11.385311], [-79.986276, 17.652372] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.986276, 30.186495], [-84.092637, 36.453556], [-92.30536, 36.453556], [-96.411721, 30.186495], [-92.30536, 23.919434], [-84.092637, 23.919434], [-79.986276, 30.186495] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.986276, 42.720618], [-84.092637, 48.987679], [-92.30536, 48.987679], [-96.411721, 42.720618], [-92.30536, 36.453556], [-84.092637, 36.453556], [-79.986276, 42.720618] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.986276, 55.25474], [-84.092637, 61.521802], [-92.30536, 61.521802], [-96.411721, 55.25474], [-92.30536, 48.987679], [-84.092637, 48.987679], [-79.986276, 55.25474] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.986276, 67.788863], [-84.092637, 74.055925], [-92.30536, 74.055925], [-96.411721, 67.788863], [-92.30536, 61.521802], [-84.092637, 61.521802], [-79.986276, 67.788863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.667192, -63.819426], [-71.773554, -57.552365], [-79.986276, -57.552365], [-84.092637, -63.819426], [-79.986276, -70.086487], [-71.773554, -70.086487], [-67.667192, -63.819426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.667192, -51.285303], [-71.773554, -45.018242], [-79.986276, -45.018242], [-84.092637, -51.285303], [-79.986276, -57.552365], [-71.773554, -57.552365], [-67.667192, -51.285303] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.667192, -38.75118], [-71.773554, -32.484119], [-79.986276, -32.484119], [-84.092637, -38.75118], [-79.986276, -45.018242], [-71.773554, -45.018242], [-67.667192, -38.75118] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.667192, -26.217058], [-71.773554, -19.949996], [-79.986276, -19.949996], [-84.092637, -26.217058], [-79.986276, -32.484119], [-71.773554, -32.484119], [-67.667192, -26.217058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.667192, -13.682935], [-71.773554, -7.415873], [-79.986276, -7.415873], [-84.092637, -13.682935], [-79.986276, -19.949996], [-71.773554, -19.949996], [-67.667192, -13.682935] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.667192, -1.148812], [-71.773554, 5.118249], [-79.986276, 5.118249], [-84.092637, -1.148812], [-79.986276, -7.415873], [-71.773554, -7.415873], [-67.667192, -1.148812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.667192, 11.385311], [-71.773554, 17.652372], [-79.986276, 17.652372], [-84.092637, 11.385311], [-79.986276, 5.118249], [-71.773554, 5.118249], [-67.667192, 11.385311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.667192, 23.919434], [-71.773554, 30.186495], [-79.986276, 30.186495], [-84.092637, 23.919434], [-79.986276, 17.652372], [-71.773554, 17.652372], [-67.667192, 23.919434] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.667192, 36.453556], [-71.773554, 42.720618], [-79.986276, 42.720618], [-84.092637, 36.453556], [-79.986276, 30.186495], [-71.773554, 30.186495], [-67.667192, 36.453556] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.667192, 48.987679], [-71.773554, 55.25474], [-79.986276, 55.25474], [-84.092637, 48.987679], [-79.986276, 42.720618], [-71.773554, 42.720618], [-67.667192, 48.987679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.667192, 61.521802], [-71.773554, 67.788863], [-79.986276, 67.788863], [-84.092637, 61.521802], [-79.986276, 55.25474], [-71.773554, 55.25474], [-67.667192, 61.521802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-55.348109, -70.086487], [-59.45447, -63.819426], [-67.667192, -63.819426], [-71.773554, -70.086487], [-67.667192, -76.353549], [-59.45447, -76.353549], [-55.348109, -70.086487] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-55.348109, -57.552365], [-59.45447, -51.285303], [-67.667192, -51.285303], [-71.773554, -57.552365], [-67.667192, -63.819426], [-59.45447, -63.819426], [-55.348109, -57.552365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-55.348109, -45.018242], [-59.45447, -38.75118], [-67.667192, -38.75118], [-71.773554, -45.018242], [-67.667192, -51.285303], [-59.45447, -51.285303], [-55.348109, -45.018242] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-55.348109, -32.484119], [-59.45447, -26.217058], [-67.667192, -26.217058], [-71.773554, -32.484119], [-67.667192, -38.75118], [-59.45447, -38.75118], [-55.348109, -32.484119] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-55.348109, -19.949996], [-59.45447, -13.682935], [-67.667192, -13.682935], [-71.773554, -19.949996], [-67.667192, -26.217058], [-59.45447, -26.217058], [-55.348109, -19.949996] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-55.348109, -7.415873], [-59.45447, -1.148812], [-67.667192, -1.148812], [-71.773554, -7.415873], [-67.667192, -13.682935], [-59.45447, -13.682935], [-55.348109, -7.415873] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-55.348109, 5.118249], [-59.45447, 11.385311], [-67.667192, 11.385311], [-71.773554, 5.118249], [-67.667192, -1.148812], [-59.45447, -1.148812], [-55.348109, 5.118249] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-55.348109, 17.652372], [-59.45447, 23.919434], [-67.667192, 23.919434], [-71.773554, 17.652372], [-67.667192, 11.385311], [-59.45447, 11.385311], [-55.348109, 17.652372] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-55.348109, 30.186495], [-59.45447, 36.453556], [-67.667192, 36.453556], [-71.773554, 30.186495], [-67.667192, 23.919434], [-59.45447, 23.919434], [-55.348109, 30.186495] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-55.348109, 42.720618], [-59.45447, 48.987679], [-67.667192, 48.987679], [-71.773554, 42.720618], [-67.667192, 36.453556], [-59.45447, 36.453556], [-55.348109, 42.720618] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-55.348109, 55.25474], [-59.45447, 61.521802], [-67.667192, 61.521802], [-71.773554, 55.25474], [-67.667192, 48.987679], [-59.45447, 48.987679], [-55.348109, 55.25474] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-55.348109, 67.788863], [-59.45447, 74.055925], [-67.667192, 74.055925], [-71.773554, 67.788863], [-67.667192, 61.521802], [-59.45447, 61.521802], [-55.348109, 67.788863] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-43.029025, -63.819426], [-47.135386, -57.552365], [-55.348109, -57.552365], [-59.45447, -63.819426], [-55.348109, -70.086487], [-47.135386, -70.086487], [-43.029025, -63.819426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-43.029025, -51.285303], [-47.135386, -45.018242], [-55.348109, -45.018242], [-59.45447, -51.285303], [-55.348109, -57.552365], [-47.135386, -57.552365], [-43.029025, -51.285303] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-43.029025, -38.75118], [-47.135386, -32.484119], [-55.348109, -32.484119], [-59.45447, -38.75118], [-55.348109, -45.018242], [-47.135386, -45.018242], [-43.029025, -38.75118] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-43.029025, -26.217058], [-47.135386, -19.949996], [-55.348109, -19.949996], [-59.45447, -26.217058], [-55.348109, -32.484119], [-47.135386, -32.484119], [-43.029025, -26.217058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-43.029025, -13.682935], [-47.135386, -7.415873], [-55.348109, -7.415873], [-59.45447, -13.682935], [-55.348109, -19.949996], [-47.135386, -19.949996], [-43.029025, -13.682935] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-43.029025, -1.148812], [-47.135386, 5.118249], [-55.348109, 5.118249], [-59.45447, -1.148812], [-55.348109, -7.415873], [-47.135386, -7.415873], [-43.029025, -1.148812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-43.029025, 11.385311], [-47.135386, 17.652372], [-55.348109, 17.652372], [-59.45447, 11.385311], [-55.348109, 5.118249], [-47.135386, 5.118249], [-43.029025, 11.385311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-43.029025, 23.919434], [-47.135386, 30.186495], [-55.348109, 30.186495], [-59.45447, 23.919434], [-55.348109, 17.652372], [-47.135386, 17.652372], [-43.029025, 23.919434] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-43.029025, 36.453556], [-47.135386, 42.720618], [-55.348109, 42.720618], [-59.45447, 36.453556], [-55.348109, 30.186495], [-47.135386, 30.186495], [-43.029025, 36.453556] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-43.029025, 48.987679], [-47.135386, 55.25474], [-55.348109, 55.25474], [-59.45447, 48.987679], [-55.348109, 42.720618], [-47.135386, 42.720618], [-43.029025, 48.987679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-43.029025, 61.521802], [-47.135386, 67.788863], [-55.348109, 67.788863], [-59.45447, 61.521802], [-55.348109, 55.25474], [-47.135386, 55.25474], [-43.029025, 61.521802] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30.709941, -70.086487], [-34.816302, -63.819426], [-43.029025, -63.819426], [-47.135386, -70.086487], [-43.029025, -76.353549], [-34.816302, -76.353549], [-30.709941, -70.086487] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30.709941, -57.552365], [-34.816302, -51.285303], [-43.029025, -51.285303], [-47.135386, -57.552365], [-43.029025, -63.819426], [-34.816302, -63.819426], [-30.709941, -57.552365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30.709941, -45.018242], [-34.816302, -38.75118], [-43.029025, -38.75118], [-47.135386, -45.018242], [-43.029025, -51.285303], [-34.816302, -51.285303], [-30.709941, -45.018242] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30.709941, -32.484119], [-34.816302, -26.217058], [-43.029025, -26.217058], [-47.135386, -32.484119], [-43.029025, -38.75118], [-34.816302, -38.75118], [-30.709941, -32.484119] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30.709941, -19.949996], [-34.816302, -13.682935], [-43.029025, -13.682935], [-47.135386, -19.949996], [-43.029025, -26.217058], [-34.816302, -26.217058], [-30.709941, -19.949996] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30.709941, -7.415873], [-34.816302, -1.148812], [-43.029025, -1.148812], [-47.135386, -7.415873], [-43.029025, -13.682935], [-34.816302, -13.682935], [-30.709941, -7.415873] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30.709941, 5.118249], [-34.816302, 11.385311], [-43.029025, 11.385311], [-47.135386, 5.118249], [-43.029025, -1.148812], [-34.816302, -1.148812], [-30.709941, 5.118249] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30.709941, 17.652372], [-34.816302, 23.919434], [-43.029025, 23.919434], [-47.135386, 17.652372], [-43.029025, 11.385311], [-34.816302, 11.385311], [-30.709941, 17.652372] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30.709941, 30.186495], [-34.816302, 36.453556], [-43.029025, 36.453556], [-47.135386, 30.186495], [-43.029025, 23.919434], [-34.816302, 23.919434], [-30.709941, 30.186495] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30.709941, 42.720618], [-34.816302, 48.987679], [-43.029025, 48.987679], [-47.135386, 42.720618], [-43.029025, 36.453556], [-34.816302, 36.453556], [-30.709941, 42.720618] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30.709941, 55.25474], [-34.816302, 61.521802], [-43.029025, 61.521802], [-47.135386, 55.25474], [-43.029025, 48.987679], [-34.816302, 48.987679], [-30.709941, 55.25474] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30.709941, 67.788863], [-34.816302, 74.055925], [-43.029025, 74.055925], [-47.135386, 67.788863], [-43.029025, 61.521802], [-34.816302, 61.521802], [-30.709941, 67.788863] ] ] } }, { "type": "Feature", "bbox": [-220.78125, -80.64703474739618, -29.53125, 78.34941069014629], "properties": { "stroke": "#F00", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -80.64703474739618], [-29.53125, -80.64703474739618], [-29.53125, 78.34941069014629], [-220.78125, 78.34941069014629], [-220.78125, -80.64703474739618] ] ] } } ] } ================================================ FILE: packages/turf-hex-grid/test/out/fiji-10-miles.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.03715, -16.950607], [-180.112752, -16.825266], [-180.263957, -16.825266], [-180.339559, -16.950607], [-180.263957, -17.075948], [-180.112752, -17.075948], [-180.03715, -16.950607] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.03715, -16.699925], [-180.112752, -16.574584], [-180.263957, -16.574584], [-180.339559, -16.699925], [-180.263957, -16.825266], [-180.112752, -16.825266], [-180.03715, -16.699925] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.810343, -16.825266], [-179.885946, -16.699925], [-180.03715, -16.699925], [-180.112752, -16.825266], [-180.03715, -16.950607], [-179.885946, -16.950607], [-179.810343, -16.825266] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.583537, -16.950607], [-179.659139, -16.825266], [-179.810343, -16.825266], [-179.885946, -16.950607], [-179.810343, -17.075948], [-179.659139, -17.075948], [-179.583537, -16.950607] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.583537, -16.699925], [-179.659139, -16.574584], [-179.810343, -16.574584], [-179.885946, -16.699925], [-179.810343, -16.825266], [-179.659139, -16.825266], [-179.583537, -16.699925] ] ] } }, { "type": "Feature", "bbox": [ -180.3460693359375, -17.16703442146408, -179.5770263671875, -16.48349760264812 ], "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] ] ] } } ] } ================================================ FILE: packages/turf-hex-grid/test/out/london-20-miles.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.374386, 51.502843], [0.141874, 51.753526], [-0.323149, 51.753526], [-0.55566, 51.502843], [-0.323149, 51.252161], [0.141874, 51.252161], [0.374386, 51.502843] ] ] } }, { "type": "Feature", "bbox": [-0.6207275390625, 51.23784668914442, 0.439453125, 51.767839887322154], "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] ] ] } } ] } ================================================ FILE: packages/turf-hex-grid/test/out/piedemont-mask.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.007451, 44.340924], [6.878885, 44.4976], [6.621754, 44.4976], [6.493188, 44.340924], [6.621754, 44.184247], [6.878885, 44.184247], [7.007451, 44.340924] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.007451, 44.654277], [6.878885, 44.810953], [6.621754, 44.810953], [6.493188, 44.654277], [6.621754, 44.4976], [6.878885, 44.4976], [7.007451, 44.654277] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.007451, 44.96763], [6.878885, 45.124307], [6.621754, 45.124307], [6.493188, 44.96763], [6.621754, 44.810953], [6.878885, 44.810953], [7.007451, 44.96763] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.007451, 45.280983], [6.878885, 45.43766], [6.621754, 45.43766], [6.493188, 45.280983], [6.621754, 45.124307], [6.878885, 45.124307], [7.007451, 45.280983] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.393147, 44.4976], [7.264582, 44.654277], [7.007451, 44.654277], [6.878885, 44.4976], [7.007451, 44.340924], [7.264582, 44.340924], [7.393147, 44.4976] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.393147, 44.810953], [7.264582, 44.96763], [7.007451, 44.96763], [6.878885, 44.810953], [7.007451, 44.654277], [7.264582, 44.654277], [7.393147, 44.810953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.393147, 45.124307], [7.264582, 45.280983], [7.007451, 45.280983], [6.878885, 45.124307], [7.007451, 44.96763], [7.264582, 44.96763], [7.393147, 45.124307] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.393147, 45.43766], [7.264582, 45.594336], [7.007451, 45.594336], [6.878885, 45.43766], [7.007451, 45.280983], [7.264582, 45.280983], [7.393147, 45.43766] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.778844, 44.340924], [7.650279, 44.4976], [7.393147, 44.4976], [7.264582, 44.340924], [7.393147, 44.184247], [7.650279, 44.184247], [7.778844, 44.340924] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.778844, 44.654277], [7.650279, 44.810953], [7.393147, 44.810953], [7.264582, 44.654277], [7.393147, 44.4976], [7.650279, 44.4976], [7.778844, 44.654277] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.778844, 44.96763], [7.650279, 45.124307], [7.393147, 45.124307], [7.264582, 44.96763], [7.393147, 44.810953], [7.650279, 44.810953], [7.778844, 44.96763] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.778844, 45.280983], [7.650279, 45.43766], [7.393147, 45.43766], [7.264582, 45.280983], [7.393147, 45.124307], [7.650279, 45.124307], [7.778844, 45.280983] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.778844, 45.594336], [7.650279, 45.751013], [7.393147, 45.751013], [7.264582, 45.594336], [7.393147, 45.43766], [7.650279, 45.43766], [7.778844, 45.594336] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.164541, 44.4976], [8.035975, 44.654277], [7.778844, 44.654277], [7.650279, 44.4976], [7.778844, 44.340924], [8.035975, 44.340924], [8.164541, 44.4976] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.164541, 44.810953], [8.035975, 44.96763], [7.778844, 44.96763], [7.650279, 44.810953], [7.778844, 44.654277], [8.035975, 44.654277], [8.164541, 44.810953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.164541, 45.124307], [8.035975, 45.280983], [7.778844, 45.280983], [7.650279, 45.124307], [7.778844, 44.96763], [8.035975, 44.96763], [8.164541, 45.124307] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.164541, 45.43766], [8.035975, 45.594336], [7.778844, 45.594336], [7.650279, 45.43766], [7.778844, 45.280983], [8.035975, 45.280983], [8.164541, 45.43766] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.164541, 45.751013], [8.035975, 45.907689], [7.778844, 45.907689], [7.650279, 45.751013], [7.778844, 45.594336], [8.035975, 45.594336], [8.164541, 45.751013] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.164541, 46.064366], [8.035975, 46.221042], [7.778844, 46.221042], [7.650279, 46.064366], [7.778844, 45.907689], [8.035975, 45.907689], [8.164541, 46.064366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.550238, 44.340924], [8.421672, 44.4976], [8.164541, 44.4976], [8.035975, 44.340924], [8.164541, 44.184247], [8.421672, 44.184247], [8.550238, 44.340924] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.550238, 44.654277], [8.421672, 44.810953], [8.164541, 44.810953], [8.035975, 44.654277], [8.164541, 44.4976], [8.421672, 44.4976], [8.550238, 44.654277] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.550238, 44.96763], [8.421672, 45.124307], [8.164541, 45.124307], [8.035975, 44.96763], [8.164541, 44.810953], [8.421672, 44.810953], [8.550238, 44.96763] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.550238, 45.280983], [8.421672, 45.43766], [8.164541, 45.43766], [8.035975, 45.280983], [8.164541, 45.124307], [8.421672, 45.124307], [8.550238, 45.280983] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.550238, 45.594336], [8.421672, 45.751013], [8.164541, 45.751013], [8.035975, 45.594336], [8.164541, 45.43766], [8.421672, 45.43766], [8.550238, 45.594336] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.550238, 45.907689], [8.421672, 46.064366], [8.164541, 46.064366], [8.035975, 45.907689], [8.164541, 45.751013], [8.421672, 45.751013], [8.550238, 45.907689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.550238, 46.221042], [8.421672, 46.377719], [8.164541, 46.377719], [8.035975, 46.221042], [8.164541, 46.064366], [8.421672, 46.064366], [8.550238, 46.221042] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.935934, 44.4976], [8.807369, 44.654277], [8.550238, 44.654277], [8.421672, 44.4976], [8.550238, 44.340924], [8.807369, 44.340924], [8.935934, 44.4976] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.935934, 44.810953], [8.807369, 44.96763], [8.550238, 44.96763], [8.421672, 44.810953], [8.550238, 44.654277], [8.807369, 44.654277], [8.935934, 44.810953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.935934, 45.124307], [8.807369, 45.280983], [8.550238, 45.280983], [8.421672, 45.124307], [8.550238, 44.96763], [8.807369, 44.96763], [8.935934, 45.124307] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.935934, 45.43766], [8.807369, 45.594336], [8.550238, 45.594336], [8.421672, 45.43766], [8.550238, 45.280983], [8.807369, 45.280983], [8.935934, 45.43766] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.935934, 45.751013], [8.807369, 45.907689], [8.550238, 45.907689], [8.421672, 45.751013], [8.550238, 45.594336], [8.807369, 45.594336], [8.935934, 45.751013] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.935934, 46.064366], [8.807369, 46.221042], [8.550238, 46.221042], [8.421672, 46.064366], [8.550238, 45.907689], [8.807369, 45.907689], [8.935934, 46.064366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [9.321631, 44.654277], [9.193065, 44.810953], [8.935934, 44.810953], [8.807369, 44.654277], [8.935934, 44.4976], [9.193065, 44.4976], [9.321631, 44.654277] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [9.321631, 44.96763], [9.193065, 45.124307], [8.935934, 45.124307], [8.807369, 44.96763], [8.935934, 44.810953], [9.193065, 44.810953], [9.321631, 44.96763] ] ] } }, { "type": "Feature", "bbox": [6.3775634765625, 44.05601169578525, 9.437255859375, 46.50595444552049], "properties": { "stroke": "#F00", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [6.3775634765625, 44.05601169578525], [9.437255859375, 44.05601169578525], [9.437255859375, 46.50595444552049], [6.3775634765625, 46.50595444552049], [6.3775634765625, 44.05601169578525] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "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] ] ] } } ] } ================================================ FILE: packages/turf-hex-grid/test/out/properties.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.163995, 41.387754], [2.157999, 41.395543], [2.146008, 41.395543], [2.140012, 41.387754], [2.146008, 41.379966], [2.157999, 41.379966], [2.163995, 41.387754] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.163995, 41.403331], [2.157999, 41.411119], [2.146008, 41.411119], [2.140012, 41.403331], [2.146008, 41.395543], [2.157999, 41.395543], [2.163995, 41.403331] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.163995, 41.418908], [2.157999, 41.426696], [2.146008, 41.426696], [2.140012, 41.418908], [2.146008, 41.411119], [2.157999, 41.411119], [2.163995, 41.418908] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.181981, 41.395543], [2.175986, 41.403331], [2.163995, 41.403331], [2.157999, 41.395543], [2.163995, 41.387754], [2.175986, 41.387754], [2.181981, 41.395543] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.181981, 41.411119], [2.175986, 41.418908], [2.163995, 41.418908], [2.157999, 41.411119], [2.163995, 41.403331], [2.175986, 41.403331], [2.181981, 41.411119] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.181981, 41.426696], [2.175986, 41.434484], [2.163995, 41.434484], [2.157999, 41.426696], [2.163995, 41.418908], [2.175986, 41.418908], [2.181981, 41.426696] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.199968, 41.387754], [2.193973, 41.395543], [2.181981, 41.395543], [2.175986, 41.387754], [2.181981, 41.379966], [2.193973, 41.379966], [2.199968, 41.387754] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.199968, 41.403331], [2.193973, 41.411119], [2.181981, 41.411119], [2.175986, 41.403331], [2.181981, 41.395543], [2.193973, 41.395543], [2.199968, 41.403331] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.199968, 41.418908], [2.193973, 41.426696], [2.181981, 41.426696], [2.175986, 41.418908], [2.181981, 41.411119], [2.193973, 41.411119], [2.199968, 41.418908] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.199968, 41.434484], [2.193973, 41.442273], [2.181981, 41.442273], [2.175986, 41.434484], [2.181981, 41.426696], [2.193973, 41.426696], [2.199968, 41.434484] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.217955, 41.395543], [2.21196, 41.403331], [2.199968, 41.403331], [2.193973, 41.395543], [2.199968, 41.387754], [2.21196, 41.387754], [2.217955, 41.395543] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.217955, 41.411119], [2.21196, 41.418908], [2.199968, 41.418908], [2.193973, 41.411119], [2.199968, 41.403331], [2.21196, 41.403331], [2.217955, 41.411119] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.217955, 41.426696], [2.21196, 41.434484], [2.199968, 41.434484], [2.193973, 41.426696], [2.199968, 41.418908], [2.21196, 41.418908], [2.217955, 41.426696] ] ] } }, { "type": "Feature", "bbox": [ 2.131519317626953, 41.37835427979543, 2.2264480590820312, 41.44388449101261 ], "properties": { "stroke": "#F00", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.131519317626953, 41.37835427979543], [2.2264480590820312, 41.37835427979543], [2.2264480590820312, 41.44388449101261], [2.131519317626953, 41.44388449101261], [2.131519317626953, 41.37835427979543] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [2.223186492919922, 41.416856461155575], [2.1716880798339844, 41.44182560856202], [2.1636199951171875, 41.41608406639095], [2.1334075927734375, 41.407200866420744], [2.1845626831054683, 41.37977115211044], [2.223186492919922, 41.416856461155575] ] ] ] } } ] } ================================================ FILE: packages/turf-hex-grid/test/out/resolute.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.269834, 74.685378], [-94.612334, 74.842055], [-95.297334, 74.842055], [-95.639834, 74.685378], [-95.297334, 74.528702], [-94.612334, 74.528702], [-94.269834, 74.685378] ] ] } }, { "type": "Feature", "bbox": [-95.877685546875, 74.46849062193377, -94.031982421875, 74.90226611990785], "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] ] ] } } ] } ================================================ FILE: packages/turf-hex-grid/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { truncate } from "@turf/truncate"; import { bboxPolygon as bboxPoly } from "@turf/bbox-polygon"; import { hexGrid } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, json: loadJsonFileSync(directories.in + filename), }; }); test("hex-grid", (t) => { fixtures.forEach(({ name, json }) => { const { bbox, cellSide } = json; const options = json; const result = truncate(hexGrid(bbox, cellSide, options)); const poly = bboxPoly(bbox); t.assert(poly.bbox); poly.properties = { stroke: "#F00", "stroke-width": 6, "fill-opacity": 0, }; result.features.push(poly); if (options.mask) { options.mask.properties = { stroke: "#00F", "stroke-width": 6, "fill-opacity": 0, }; result.features.push(options.mask); } if (process.env.REGEN) writeJsonFileSync(directories.out + name + ".geojson", result); t.deepEqual( result, loadJsonFileSync(directories.out + name + ".geojson"), name ); }); t.end(); }); test("grid tiles count", (t) => { const bbox1 = loadJsonFileSync(directories.in + "bbox1.json").bbox; t.equal(hexGrid(bbox1, 50, { units: "miles" }).features.length, 52); t.equal( hexGrid(bbox1, 50, { units: "miles", triangles: true }).features.length, 312 ); t.end(); }); test("Property mutation", (t) => { const bbox1 = loadJsonFileSync(directories.in + "bbox1.json").bbox; const grid = hexGrid(bbox1, 50, { units: "miles", properties: { foo: "bar" }, }); t.equal(grid.features[0].properties.foo, "bar"); t.equal(grid.features[1].properties.foo, "bar"); grid.features[0].properties.foo = "baz"; t.equal(grid.features[0].properties.foo, "baz"); t.equal(grid.features[1].properties.foo, "bar"); t.end(); }); test("longitude (13141439571036224) - issue #758", (t) => { const bbox = [-179, -90, 179, 90]; const grid = hexGrid(bbox, 250, { units: "kilometers" }); const coords = []; grid.features.forEach((feature) => feature.geometry.coordinates[0].forEach((coord) => coords.push(coord)) ); for (const coord of coords) { const lng = coord[0]; const lat = coord[1]; if (lng > 1000 || lng < -1000) { t.fail(`longitude is +- 1000 [${lng},${lat}]`); break; } } t.end(); }); ================================================ FILE: packages/turf-hex-grid/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-hex-grid/types.ts ================================================ import { BBox } from "geojson"; import { hexGrid } from "./index.js"; // prettier-ignore const bbox: BBox = [ -96.6357421875, 31.12819929911196, -84.9462890625, 40.58058466412764, ]; hexGrid(bbox, 50); hexGrid(bbox, 50, { units: "miles" }); hexGrid(bbox, 50, { units: "miles", triangles: true }); // Access Custom Properties const foo = hexGrid(bbox, 50, { units: "miles", triangles: true, properties: { foo: "bar" }, }); foo.features[0].properties.foo; // foo.features[0].properties.bar // => [ts] Property 'bar' does not exist on type '{ foo: string; }'. ================================================ FILE: packages/turf-interpolate/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-interpolate/README.md ================================================ # @turf/interpolate ## interpolate Takes a set of points and estimates their 'property' values on a grid using the [Inverse Distance Weighting (IDW) method][1]. ### Parameters * `points` **[FeatureCollection][2]<[Point][3]>** with known value * `cellSize` **[number][4]** the distance across each grid point * `options` **[Object][5]** Optional parameters (optional, default `{}`) * `options.gridType` **[string][6]** defines the output format based on a Grid Type (options: 'square' | 'point' | 'hex' | 'triangle') (optional, default `'square'`) * `options.property` **[string][6]** the property name in `points` from which z-values will be pulled, zValue fallbacks to 3rd coordinate if no property exists. (optional, default `'elevation'`) * `options.units` **Units** used in calculating cellSize. Supports all valid Turf [Units][7]. (optional, default `'kilometers'`) * `options.weight` **[number][4]** exponent regulating the distance-decay weighting (optional, default `1`) * `options.bbox` **[BBox][8]** Bounding Box Array \[west, south, east, north] associated with the FeatureCollection. (optional, default `bbox(points)`) ### Examples ```javascript var points = turf.randomPoint(30, {bbox: [50, 30, 70, 50]}); // add a random property to each point turf.featureEach(points, function(point) { point.properties.solRad = Math.random() * 50; }); var options = {gridType: 'points', property: 'solRad', units: 'miles'}; var grid = turf.interpolate(points, 100, options); //addToMap var addToMap = [grid]; ``` Returns **[FeatureCollection][2]<([Point][3] | [Polygon][9])>** grid of points or polygons with interpolated 'property' [1]: https://en.wikipedia.org/wiki/Inverse_distance_weighting [2]: https://tools.ietf.org/html/rfc7946#section-3.3 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String [7]: https://turfjs.org/docs/api/types/Units [8]: https://tools.ietf.org/html/rfc7946#section-5 [9]: https://tools.ietf.org/html/rfc7946#section-3.1.6 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/interpolate ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-interpolate/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { interpolate } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); // Define Fixtures const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); /** * Benchmark Results * * data-1km: 15.042ms * data-500m: 14.286ms * data-weight-2: 0.408ms * hex-zValue: 1.778ms * points-random: 20.676ms * points1-weight-3: 5.569ms * points1: 4.254ms * triangle-zValue: 3.519ms * data-1km x 1,585 ops/sec ±2.77% (80 runs sampled) * data-500m x 351 ops/sec ±2.59% (76 runs sampled) * data-weight-2 x 3,730 ops/sec ±1.55% (82 runs sampled) * hex-zValue x 2,854 ops/sec ±4.45% (72 runs sampled) * points-random x 265 ops/sec ±1.67% (75 runs sampled) * points1-weight-3 x 381 ops/sec ±2.06% (76 runs sampled) * points1 x 356 ops/sec ±1.83% (70 runs sampled) * triangle-zValue x 570 ops/sec ±1.69% (81 runs sampled) */ const suite = new Benchmark.Suite("turf-interpolate"); for (const { name, geojson } of fixtures) { const options = geojson.properties; const cellSize = options.cellSize; console.time(name); interpolate(geojson, cellSize, options); console.timeEnd(name); suite.add(name, () => interpolate(geojson, cellSize, options)); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-interpolate/index.ts ================================================ import { bbox } from "@turf/bbox"; import { hexGrid } from "@turf/hex-grid"; import { pointGrid } from "@turf/point-grid"; import { distance } from "@turf/distance"; import { centroid } from "@turf/centroid"; import { squareGrid } from "@turf/square-grid"; import { triangleGrid } from "@turf/triangle-grid"; import { clone } from "@turf/clone"; import { featureCollection, Grid, Units, validateBBox } from "@turf/helpers"; import { featureEach } from "@turf/meta"; import { collectionOf } from "@turf/invariant"; import { BBox, Feature, FeatureCollection, Point, Polygon } from "geojson"; /** * Takes a set of points and estimates their 'property' values on a grid using the [Inverse Distance Weighting (IDW) method](https://en.wikipedia.org/wiki/Inverse_distance_weighting). * * @function * @param {FeatureCollection} points with known value * @param {number} cellSize the distance across each grid point * @param {Object} [options={}] Optional parameters * @param {string} [options.gridType='square'] defines the output format based on a Grid Type (options: 'square' | 'point' | 'hex' | 'triangle') * @param {string} [options.property='elevation'] the property name in `points` from which z-values will be pulled, zValue fallbacks to 3rd coordinate if no property exists. * @param {Units} [options.units='kilometers'] used in calculating cellSize. Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @param {number} [options.weight=1] exponent regulating the distance-decay weighting * @param {BBox} [options.bbox=bbox(points)] Bounding Box Array [west, south, east, north] associated with the FeatureCollection. * @returns {FeatureCollection} grid of points or polygons with interpolated 'property' * @example * var points = turf.randomPoint(30, {bbox: [50, 30, 70, 50]}); * * // add a random property to each point * turf.featureEach(points, function(point) { * point.properties.solRad = Math.random() * 50; * }); * var options = {gridType: 'points', property: 'solRad', units: 'miles'}; * var grid = turf.interpolate(points, 100, options); * * //addToMap * var addToMap = [grid]; */ function interpolate( points: FeatureCollection, cellSize: number, options?: { gridType?: T; property?: string; units?: Units; weight?: number; bbox?: BBox; } ): FeatureCollection { // Optional parameters options = options || {}; // Validation pre-options parsing if (typeof options !== "object") { throw new Error("options is invalid"); } if (!points) { throw new Error("points is required"); } collectionOf(points, "Point", "input must contain Points"); if (!cellSize) { throw new Error("cellSize is required"); } var gridType = options.gridType ?? "square"; var property = options.property ?? "elevation"; var weight = options.weight ?? 1; var box = options.bbox ?? bbox(points); // validation post options-parsing if (weight !== undefined && typeof weight !== "number") { throw new Error("weight must be a number"); } validateBBox(box); var grid; switch (gridType) { case "point": case "points": grid = pointGrid(box, cellSize, options); break; case "square": case "squares": grid = squareGrid(box, cellSize, options); break; case "hex": case "hexes": grid = hexGrid(box, cellSize, options); break; case "triangle": case "triangles": grid = triangleGrid(box, cellSize, options); break; default: throw new Error("invalid gridType"); } var results: Feature[] = []; featureEach(grid, function (gridFeature) { var zw = 0; var sw = 0; // calculate the distance from each input point to the grid points featureEach(points, function (point) { var gridPoint = gridType === "point" ? (gridFeature as Feature) : centroid(gridFeature); var d = distance(gridPoint, point, options); var zValue; // property has priority for zValue, fallbacks to 3rd coordinate from geometry if (property !== undefined) { zValue = point.properties?.[property]; } if (zValue === undefined) { zValue = point.geometry.coordinates[2]; } if (zValue === undefined) { throw new Error("zValue is missing"); } if (d === 0) { zw = zValue; } var w = 1.0 / Math.pow(d, weight); sw += w; zw += w * zValue; }); // write interpolated value for each grid point var newFeature = clone(gridFeature); newFeature.properties ??= {}; newFeature.properties[property] = zw / sw; results.push(newFeature); }); return featureCollection(results) as FeatureCollection< T extends "point" ? Point : Polygon >; } export { interpolate }; export default interpolate; ================================================ FILE: packages/turf-interpolate/package.json ================================================ { "name": "@turf/interpolate", "version": "7.3.4", "description": "Creates an interpolated grid of points using the Inverse Distance Weighting method.", "author": "Turf Authors", "contributors": [ "Stefano Borghi <@stebogit>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "idw", "interpolate" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "chromatism": "^3.0.0", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/bbox": "workspace:*", "@turf/centroid": "workspace:*", "@turf/clone": "workspace:*", "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", "@turf/hex-grid": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@turf/point-grid": "workspace:*", "@turf/square-grid": "workspace:*", "@turf/triangle-grid": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-interpolate/test/in/data-1km-bbox.geojson ================================================ { "type": "FeatureCollection", "properties": { "property": "value", "gridType": "square", "weight": 0.5, "cellSize": 1, "bbox": [9.416249084472656, 45.3391764115696, 9.031605529785156, 45.63689620055365] }, "features": [ { "type": "Feature", "properties": { "value": 4 }, "geometry": { "type": "Point", "coordinates": [9.155731201171875, 45.47216977418841] } }, { "type": "Feature", "properties": { "value": 99 }, "geometry": { "type": "Point", "coordinates": [9.195213317871094, 45.53689620055365] } }, { "type": "Feature", "properties": { "value": 10 }, "geometry": { "type": "Point", "coordinates": [9.175300598144531, 45.49912810913339] } }, { "type": "Feature", "properties": { "value": 6 }, "geometry": { "type": "Point", "coordinates": [9.231605529785156, 45.49190839157102] } }, { "type": "Feature", "properties": { "value": 7 }, "geometry": { "type": "Point", "coordinates": [9.116249084472656, 45.4391764115696] } } ] } ================================================ FILE: packages/turf-interpolate/test/in/data-1km.geojson ================================================ { "type": "FeatureCollection", "properties": { "property": "value", "gridType": "square", "weight": 0.5, "cellSize": 1 }, "features": [ { "type": "Feature", "properties": { "value": 4 }, "geometry": { "type": "Point", "coordinates": [9.155731201171875, 45.47216977418841] } }, { "type": "Feature", "properties": { "value": 99 }, "geometry": { "type": "Point", "coordinates": [9.195213317871094, 45.53689620055365] } }, { "type": "Feature", "properties": { "value": 10 }, "geometry": { "type": "Point", "coordinates": [9.175300598144531, 45.49912810913339] } }, { "type": "Feature", "properties": { "value": 6 }, "geometry": { "type": "Point", "coordinates": [9.231605529785156, 45.49190839157102] } }, { "type": "Feature", "properties": { "value": 7 }, "geometry": { "type": "Point", "coordinates": [9.116249084472656, 45.4391764115696] } } ] } ================================================ FILE: packages/turf-interpolate/test/in/data-500m-bbox.geojson ================================================ { "type": "FeatureCollection", "properties": { "property": "value", "weight": 0.5, "gridType": "square", "cellSize": 0.5, "units": "kilometers", "bbox": [9.416249084472656, 45.3391764115696, 9.031605529785156, 45.63689620055365] }, "features": [ { "type": "Feature", "properties": { "value": 4 }, "geometry": { "type": "Point", "coordinates": [9.155731201171875, 45.47216977418841] } }, { "type": "Feature", "properties": { "value": 99 }, "geometry": { "type": "Point", "coordinates": [9.195213317871094, 45.53689620055365] } }, { "type": "Feature", "properties": { "value": 10 }, "geometry": { "type": "Point", "coordinates": [9.175300598144531, 45.49912810913339] } }, { "type": "Feature", "properties": { "value": 6 }, "geometry": { "type": "Point", "coordinates": [9.231605529785156, 45.49190839157102] } }, { "type": "Feature", "properties": { "value": 7 }, "geometry": { "type": "Point", "coordinates": [9.116249084472656, 45.4391764115696] } } ] } ================================================ FILE: packages/turf-interpolate/test/in/data-500m.geojson ================================================ { "type": "FeatureCollection", "properties": { "property": "value", "weight": 0.5, "gridType": "square", "cellSize": 0.5, "units": "kilometers" }, "features": [ { "type": "Feature", "properties": { "value": 4 }, "geometry": { "type": "Point", "coordinates": [9.155731201171875, 45.47216977418841] } }, { "type": "Feature", "properties": { "value": 99 }, "geometry": { "type": "Point", "coordinates": [9.195213317871094, 45.53689620055365] } }, { "type": "Feature", "properties": { "value": 10 }, "geometry": { "type": "Point", "coordinates": [9.175300598144531, 45.49912810913339] } }, { "type": "Feature", "properties": { "value": 6 }, "geometry": { "type": "Point", "coordinates": [9.231605529785156, 45.49190839157102] } }, { "type": "Feature", "properties": { "value": 7 }, "geometry": { "type": "Point", "coordinates": [9.116249084472656, 45.4391764115696] } } ] } ================================================ FILE: packages/turf-interpolate/test/in/data-weight-2.geojson ================================================ { "type": "FeatureCollection", "properties": { "property": "value", "weight": 2, "gridType": "square", "cellSize": 1, "units": "miles" }, "features": [ { "type": "Feature", "properties": { "value": 4 }, "geometry": { "type": "Point", "coordinates": [9.155731201171875, 45.47216977418841] } }, { "type": "Feature", "properties": { "value": 99 }, "geometry": { "type": "Point", "coordinates": [9.195213317871094, 45.53689620055365] } }, { "type": "Feature", "properties": { "value": 10 }, "geometry": { "type": "Point", "coordinates": [9.175300598144531, 45.49912810913339] } }, { "type": "Feature", "properties": { "value": 6 }, "geometry": { "type": "Point", "coordinates": [9.231605529785156, 45.49190839157102] } }, { "type": "Feature", "properties": { "value": 7 }, "geometry": { "type": "Point", "coordinates": [9.116249084472656, 45.4391764115696] } } ] } ================================================ FILE: packages/turf-interpolate/test/in/hex-zValue-bbox.geojson ================================================ { "type": "FeatureCollection", "properties": { "weight": 2, "gridType": "hex", "cellSize": 0.5, "units": "miles", "bbox": [-6.357258206107161, 53.39023949422162, -6.186614219650437, 53.31219701461626] }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-6.3288116455078125, 53.355879304922276, 2] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-6.2615203857421875, 53.38087096356977, 5] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-6.248474121093749, 53.31979992850456, 14] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-6.2697601318359375, 53.352190769802725, 9] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-6.2505340576171875, 53.3648943803576, 11] } } ] } ================================================ FILE: packages/turf-interpolate/test/in/hex-zValue.geojson ================================================ { "type": "FeatureCollection", "properties": { "weight": 2, "gridType": "hex", "cellSize": 0.5, "units": "miles" }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-6.3288116455078125, 53.355879304922276, 2] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-6.2615203857421875, 53.38087096356977, 5] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-6.248474121093749, 53.31979992850456, 14] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-6.2697601318359375, 53.352190769802725, 9] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-6.2505340576171875, 53.3648943803576, 11] } } ] } ================================================ FILE: packages/turf-interpolate/test/in/points-random.geojson ================================================ { "type": "FeatureCollection", "properties": { "cellSize": 5, "gridType": "point" }, "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.833, 39.284] }, "properties": { "name": "Location B", "category": "House", "elevation": 25 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.6, 39.984] }, "properties": { "name": "Location A", "category": "Store", "elevation": 50 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.221, 39.125] }, "properties": { "name": "Location C", "category": "Office", "elevation": 70 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.358, 39.987] }, "properties": { "name": "Location A", "category": "Store", "elevation": 10 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.9221, 39.27] }, "properties": { "name": "Location B", "category": "House", "elevation": 90 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.534, 39.123] }, "properties": { "name": "Location C", "category": "Office", "elevation": 150 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.21, 39.12] }, "properties": { "name": "Location A", "category": "Store", "elevation": 50 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.22, 39.33] }, "properties": { "name": "Location B", "category": "House", "elevation": 190 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.44, 39.55] }, "properties": { "name": "Location C", "category": "Office", "elevation": 220 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.77, 39.66] }, "properties": { "name": "Location A", "category": "Store", "elevation": 175 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.44, 39.11] }, "properties": { "name": "Location B", "category": "House", "elevation": 155 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.05, 39.92] }, "properties": { "name": "Location C", "category": "Office", "elevation": 40 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.88, 39.98] }, "properties": { "name": "Location A", "category": "Store", "elevation": 152 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.55, 39.55] }, "properties": { "name": "Location B", "category": "House", "elevation": 143 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.33, 39.44] }, "properties": { "name": "Location C", "category": "Office", "elevation": 76 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.56, 39.24] }, "properties": { "name": "Location C", "category": "Office", "elevation": 18 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.56, 39.36] }, "properties": { "name": "Location C", "category": "Office", "elevation": 200 } } ] } ================================================ FILE: packages/turf-interpolate/test/in/points1-weight-3.geojson ================================================ { "type": "FeatureCollection", "properties": { "cellSize": 1, "property": "pressure", "gridType": "point", "weight": 3, "units": "miles" }, "features": [ { "type": "Feature", "properties": { "pressure": 10 }, "geometry": { "type": "Point", "coordinates": [-89.58526611328125, -0.6687775379129342] } }, { "type": "Feature", "properties": { "pressure": 7 }, "geometry": { "type": "Point", "coordinates": [-89.51385498046874, -0.7429296202184131] } }, { "type": "Feature", "properties": { "pressure": 3 }, "geometry": { "type": "Point", "coordinates": [-89.41635131835938, -0.8486628140085705] } }, { "type": "Feature", "properties": { "pressure": 5 }, "geometry": { "type": "Point", "coordinates": [-89.25018310546875, -1.0065705335484296] } } ] } ================================================ FILE: packages/turf-interpolate/test/in/points1.geojson ================================================ { "type": "FeatureCollection", "properties": { "cellSize": 1, "property": "pressure", "gridType": "point", "weight": 0.5, "units": "miles" }, "features": [ { "type": "Feature", "properties": { "pressure": 10 }, "geometry": { "type": "Point", "coordinates": [-89.58526611328125, -0.6687775379129342] } }, { "type": "Feature", "properties": { "pressure": 7 }, "geometry": { "type": "Point", "coordinates": [-89.51385498046874, -0.7429296202184131] } }, { "type": "Feature", "properties": { "pressure": 3 }, "geometry": { "type": "Point", "coordinates": [-89.41635131835938, -0.8486628140085705] } }, { "type": "Feature", "properties": { "pressure": 5 }, "geometry": { "type": "Point", "coordinates": [-89.25018310546875, -1.0065705335484296] } } ] } ================================================ FILE: packages/turf-interpolate/test/in/triangle-zValue.geojson ================================================ { "type": "FeatureCollection", "properties": { "weight": 4, "cellSize": 0.3, "gridType": "triangle" }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-6.3288116455078125, 53.355879304922276, 2] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-6.2615203857421875, 53.38087096356977, 5] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-6.248474121093749, 53.31979992850456, 14] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-6.2697601318359375, 53.352190769802725, 9] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-6.2505340576171875, 53.3648943803576, 11] } } ] } ================================================ FILE: packages/turf-interpolate/test/out/data-1km-bbox.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.339648], [9.03507, 45.348642], [9.044063, 45.348642], [9.044063, 45.339648], [9.03507, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.348642], [9.03507, 45.357635], [9.044063, 45.357635], [9.044063, 45.348642], [9.03507, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.357635], [9.03507, 45.366628], [9.044063, 45.366628], [9.044063, 45.357635], [9.03507, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.366628], [9.03507, 45.375621], [9.044063, 45.375621], [9.044063, 45.366628], [9.03507, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.375621], [9.03507, 45.384614], [9.044063, 45.384614], [9.044063, 45.375621], [9.03507, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.384614], [9.03507, 45.393608], [9.044063, 45.393608], [9.044063, 45.384614], [9.03507, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.393608], [9.03507, 45.402601], [9.044063, 45.402601], [9.044063, 45.393608], [9.03507, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.402601], [9.03507, 45.411594], [9.044063, 45.411594], [9.044063, 45.402601], [9.03507, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.411594], [9.03507, 45.420587], [9.044063, 45.420587], [9.044063, 45.411594], [9.03507, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.420587], [9.03507, 45.42958], [9.044063, 45.42958], [9.044063, 45.420587], [9.03507, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.42958], [9.03507, 45.438574], [9.044063, 45.438574], [9.044063, 45.42958], [9.03507, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.438574], [9.03507, 45.447567], [9.044063, 45.447567], [9.044063, 45.438574], [9.03507, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.447567], [9.03507, 45.45656], [9.044063, 45.45656], [9.044063, 45.447567], [9.03507, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.45656], [9.03507, 45.465553], [9.044063, 45.465553], [9.044063, 45.45656], [9.03507, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.465553], [9.03507, 45.474547], [9.044063, 45.474547], [9.044063, 45.465553], [9.03507, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.474547], [9.03507, 45.48354], [9.044063, 45.48354], [9.044063, 45.474547], [9.03507, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.48354], [9.03507, 45.492533], [9.044063, 45.492533], [9.044063, 45.48354], [9.03507, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.492533], [9.03507, 45.501526], [9.044063, 45.501526], [9.044063, 45.492533], [9.03507, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.501526], [9.03507, 45.510519], [9.044063, 45.510519], [9.044063, 45.501526], [9.03507, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.510519], [9.03507, 45.519513], [9.044063, 45.519513], [9.044063, 45.510519], [9.03507, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.519513], [9.03507, 45.528506], [9.044063, 45.528506], [9.044063, 45.519513], [9.03507, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.528506], [9.03507, 45.537499], [9.044063, 45.537499], [9.044063, 45.528506], [9.03507, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.537499], [9.03507, 45.546492], [9.044063, 45.546492], [9.044063, 45.537499], [9.03507, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.546492], [9.03507, 45.555485], [9.044063, 45.555485], [9.044063, 45.546492], [9.03507, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.555485], [9.03507, 45.564479], [9.044063, 45.564479], [9.044063, 45.555485], [9.03507, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.564479], [9.03507, 45.573472], [9.044063, 45.573472], [9.044063, 45.564479], [9.03507, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.573472], [9.03507, 45.582465], [9.044063, 45.582465], [9.044063, 45.573472], [9.03507, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.582465], [9.03507, 45.591458], [9.044063, 45.591458], [9.044063, 45.582465], [9.03507, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.591458], [9.03507, 45.600451], [9.044063, 45.600451], [9.044063, 45.591458], [9.03507, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.600451], [9.03507, 45.609445], [9.044063, 45.609445], [9.044063, 45.600451], [9.03507, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.609445], [9.03507, 45.618438], [9.044063, 45.618438], [9.044063, 45.609445], [9.03507, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.618438], [9.03507, 45.627431], [9.044063, 45.627431], [9.044063, 45.618438], [9.03507, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.03507, 45.627431], [9.03507, 45.636424], [9.044063, 45.636424], [9.044063, 45.627431], [9.03507, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.339648], [9.044063, 45.348642], [9.053056, 45.348642], [9.053056, 45.339648], [9.044063, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.348642], [9.044063, 45.357635], [9.053056, 45.357635], [9.053056, 45.348642], [9.044063, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.357635], [9.044063, 45.366628], [9.053056, 45.366628], [9.053056, 45.357635], [9.044063, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.366628], [9.044063, 45.375621], [9.053056, 45.375621], [9.053056, 45.366628], [9.044063, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.375621], [9.044063, 45.384614], [9.053056, 45.384614], [9.053056, 45.375621], [9.044063, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.384614], [9.044063, 45.393608], [9.053056, 45.393608], [9.053056, 45.384614], [9.044063, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.393608], [9.044063, 45.402601], [9.053056, 45.402601], [9.053056, 45.393608], [9.044063, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.402601], [9.044063, 45.411594], [9.053056, 45.411594], [9.053056, 45.402601], [9.044063, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.411594], [9.044063, 45.420587], [9.053056, 45.420587], [9.053056, 45.411594], [9.044063, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.420587], [9.044063, 45.42958], [9.053056, 45.42958], [9.053056, 45.420587], [9.044063, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.42958], [9.044063, 45.438574], [9.053056, 45.438574], [9.053056, 45.42958], [9.044063, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.438574], [9.044063, 45.447567], [9.053056, 45.447567], [9.053056, 45.438574], [9.044063, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.447567], [9.044063, 45.45656], [9.053056, 45.45656], [9.053056, 45.447567], [9.044063, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.45656], [9.044063, 45.465553], [9.053056, 45.465553], [9.053056, 45.45656], [9.044063, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.465553], [9.044063, 45.474547], [9.053056, 45.474547], [9.053056, 45.465553], [9.044063, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.474547], [9.044063, 45.48354], [9.053056, 45.48354], [9.053056, 45.474547], [9.044063, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.48354], [9.044063, 45.492533], [9.053056, 45.492533], [9.053056, 45.48354], [9.044063, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.492533], [9.044063, 45.501526], [9.053056, 45.501526], [9.053056, 45.492533], [9.044063, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.501526], [9.044063, 45.510519], [9.053056, 45.510519], [9.053056, 45.501526], [9.044063, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.510519], [9.044063, 45.519513], [9.053056, 45.519513], [9.053056, 45.510519], [9.044063, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.519513], [9.044063, 45.528506], [9.053056, 45.528506], [9.053056, 45.519513], [9.044063, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.528506], [9.044063, 45.537499], [9.053056, 45.537499], [9.053056, 45.528506], [9.044063, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.537499], [9.044063, 45.546492], [9.053056, 45.546492], [9.053056, 45.537499], [9.044063, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.546492], [9.044063, 45.555485], [9.053056, 45.555485], [9.053056, 45.546492], [9.044063, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.555485], [9.044063, 45.564479], [9.053056, 45.564479], [9.053056, 45.555485], [9.044063, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.564479], [9.044063, 45.573472], [9.053056, 45.573472], [9.053056, 45.564479], [9.044063, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.573472], [9.044063, 45.582465], [9.053056, 45.582465], [9.053056, 45.573472], [9.044063, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.582465], [9.044063, 45.591458], [9.053056, 45.591458], [9.053056, 45.582465], [9.044063, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.591458], [9.044063, 45.600451], [9.053056, 45.600451], [9.053056, 45.591458], [9.044063, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.600451], [9.044063, 45.609445], [9.053056, 45.609445], [9.053056, 45.600451], [9.044063, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.609445], [9.044063, 45.618438], [9.053056, 45.618438], [9.053056, 45.609445], [9.044063, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.618438], [9.044063, 45.627431], [9.053056, 45.627431], [9.053056, 45.618438], [9.044063, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.044063, 45.627431], [9.044063, 45.636424], [9.053056, 45.636424], [9.053056, 45.627431], [9.044063, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.339648], [9.053056, 45.348642], [9.06205, 45.348642], [9.06205, 45.339648], [9.053056, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.348642], [9.053056, 45.357635], [9.06205, 45.357635], [9.06205, 45.348642], [9.053056, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.357635], [9.053056, 45.366628], [9.06205, 45.366628], [9.06205, 45.357635], [9.053056, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.366628], [9.053056, 45.375621], [9.06205, 45.375621], [9.06205, 45.366628], [9.053056, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.375621], [9.053056, 45.384614], [9.06205, 45.384614], [9.06205, 45.375621], [9.053056, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.384614], [9.053056, 45.393608], [9.06205, 45.393608], [9.06205, 45.384614], [9.053056, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.393608], [9.053056, 45.402601], [9.06205, 45.402601], [9.06205, 45.393608], [9.053056, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.402601], [9.053056, 45.411594], [9.06205, 45.411594], [9.06205, 45.402601], [9.053056, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.411594], [9.053056, 45.420587], [9.06205, 45.420587], [9.06205, 45.411594], [9.053056, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.420587], [9.053056, 45.42958], [9.06205, 45.42958], [9.06205, 45.420587], [9.053056, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.42958], [9.053056, 45.438574], [9.06205, 45.438574], [9.06205, 45.42958], [9.053056, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.438574], [9.053056, 45.447567], [9.06205, 45.447567], [9.06205, 45.438574], [9.053056, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.447567], [9.053056, 45.45656], [9.06205, 45.45656], [9.06205, 45.447567], [9.053056, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.45656], [9.053056, 45.465553], [9.06205, 45.465553], [9.06205, 45.45656], [9.053056, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.465553], [9.053056, 45.474547], [9.06205, 45.474547], [9.06205, 45.465553], [9.053056, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.474547], [9.053056, 45.48354], [9.06205, 45.48354], [9.06205, 45.474547], [9.053056, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.48354], [9.053056, 45.492533], [9.06205, 45.492533], [9.06205, 45.48354], [9.053056, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.492533], [9.053056, 45.501526], [9.06205, 45.501526], [9.06205, 45.492533], [9.053056, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.501526], [9.053056, 45.510519], [9.06205, 45.510519], [9.06205, 45.501526], [9.053056, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.510519], [9.053056, 45.519513], [9.06205, 45.519513], [9.06205, 45.510519], [9.053056, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.519513], [9.053056, 45.528506], [9.06205, 45.528506], [9.06205, 45.519513], [9.053056, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.528506], [9.053056, 45.537499], [9.06205, 45.537499], [9.06205, 45.528506], [9.053056, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.537499], [9.053056, 45.546492], [9.06205, 45.546492], [9.06205, 45.537499], [9.053056, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.546492], [9.053056, 45.555485], [9.06205, 45.555485], [9.06205, 45.546492], [9.053056, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.555485], [9.053056, 45.564479], [9.06205, 45.564479], [9.06205, 45.555485], [9.053056, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.564479], [9.053056, 45.573472], [9.06205, 45.573472], [9.06205, 45.564479], [9.053056, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.573472], [9.053056, 45.582465], [9.06205, 45.582465], [9.06205, 45.573472], [9.053056, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.582465], [9.053056, 45.591458], [9.06205, 45.591458], [9.06205, 45.582465], [9.053056, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.591458], [9.053056, 45.600451], [9.06205, 45.600451], [9.06205, 45.591458], [9.053056, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.600451], [9.053056, 45.609445], [9.06205, 45.609445], [9.06205, 45.600451], [9.053056, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.609445], [9.053056, 45.618438], [9.06205, 45.618438], [9.06205, 45.609445], [9.053056, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.618438], [9.053056, 45.627431], [9.06205, 45.627431], [9.06205, 45.618438], [9.053056, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.053056, 45.627431], [9.053056, 45.636424], [9.06205, 45.636424], [9.06205, 45.627431], [9.053056, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.339648], [9.06205, 45.348642], [9.071043, 45.348642], [9.071043, 45.339648], [9.06205, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.348642], [9.06205, 45.357635], [9.071043, 45.357635], [9.071043, 45.348642], [9.06205, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.357635], [9.06205, 45.366628], [9.071043, 45.366628], [9.071043, 45.357635], [9.06205, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.366628], [9.06205, 45.375621], [9.071043, 45.375621], [9.071043, 45.366628], [9.06205, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.375621], [9.06205, 45.384614], [9.071043, 45.384614], [9.071043, 45.375621], [9.06205, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.384614], [9.06205, 45.393608], [9.071043, 45.393608], [9.071043, 45.384614], [9.06205, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.393608], [9.06205, 45.402601], [9.071043, 45.402601], [9.071043, 45.393608], [9.06205, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.402601], [9.06205, 45.411594], [9.071043, 45.411594], [9.071043, 45.402601], [9.06205, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.411594], [9.06205, 45.420587], [9.071043, 45.420587], [9.071043, 45.411594], [9.06205, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.420587], [9.06205, 45.42958], [9.071043, 45.42958], [9.071043, 45.420587], [9.06205, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.42958], [9.06205, 45.438574], [9.071043, 45.438574], [9.071043, 45.42958], [9.06205, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.438574], [9.06205, 45.447567], [9.071043, 45.447567], [9.071043, 45.438574], [9.06205, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.447567], [9.06205, 45.45656], [9.071043, 45.45656], [9.071043, 45.447567], [9.06205, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.45656], [9.06205, 45.465553], [9.071043, 45.465553], [9.071043, 45.45656], [9.06205, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.465553], [9.06205, 45.474547], [9.071043, 45.474547], [9.071043, 45.465553], [9.06205, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.474547], [9.06205, 45.48354], [9.071043, 45.48354], [9.071043, 45.474547], [9.06205, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.48354], [9.06205, 45.492533], [9.071043, 45.492533], [9.071043, 45.48354], [9.06205, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.492533], [9.06205, 45.501526], [9.071043, 45.501526], [9.071043, 45.492533], [9.06205, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.501526], [9.06205, 45.510519], [9.071043, 45.510519], [9.071043, 45.501526], [9.06205, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.510519], [9.06205, 45.519513], [9.071043, 45.519513], [9.071043, 45.510519], [9.06205, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.519513], [9.06205, 45.528506], [9.071043, 45.528506], [9.071043, 45.519513], [9.06205, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.528506], [9.06205, 45.537499], [9.071043, 45.537499], [9.071043, 45.528506], [9.06205, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.537499], [9.06205, 45.546492], [9.071043, 45.546492], [9.071043, 45.537499], [9.06205, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.546492], [9.06205, 45.555485], [9.071043, 45.555485], [9.071043, 45.546492], [9.06205, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.555485], [9.06205, 45.564479], [9.071043, 45.564479], [9.071043, 45.555485], [9.06205, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.564479], [9.06205, 45.573472], [9.071043, 45.573472], [9.071043, 45.564479], [9.06205, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.573472], [9.06205, 45.582465], [9.071043, 45.582465], [9.071043, 45.573472], [9.06205, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.582465], [9.06205, 45.591458], [9.071043, 45.591458], [9.071043, 45.582465], [9.06205, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.591458], [9.06205, 45.600451], [9.071043, 45.600451], [9.071043, 45.591458], [9.06205, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.600451], [9.06205, 45.609445], [9.071043, 45.609445], [9.071043, 45.600451], [9.06205, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.609445], [9.06205, 45.618438], [9.071043, 45.618438], [9.071043, 45.609445], [9.06205, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.618438], [9.06205, 45.627431], [9.071043, 45.627431], [9.071043, 45.618438], [9.06205, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.06205, 45.627431], [9.06205, 45.636424], [9.071043, 45.636424], [9.071043, 45.627431], [9.06205, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.339648], [9.071043, 45.348642], [9.080036, 45.348642], [9.080036, 45.339648], [9.071043, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.348642], [9.071043, 45.357635], [9.080036, 45.357635], [9.080036, 45.348642], [9.071043, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.357635], [9.071043, 45.366628], [9.080036, 45.366628], [9.080036, 45.357635], [9.071043, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.366628], [9.071043, 45.375621], [9.080036, 45.375621], [9.080036, 45.366628], [9.071043, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.375621], [9.071043, 45.384614], [9.080036, 45.384614], [9.080036, 45.375621], [9.071043, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.384614], [9.071043, 45.393608], [9.080036, 45.393608], [9.080036, 45.384614], [9.071043, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.393608], [9.071043, 45.402601], [9.080036, 45.402601], [9.080036, 45.393608], [9.071043, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.402601], [9.071043, 45.411594], [9.080036, 45.411594], [9.080036, 45.402601], [9.071043, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.411594], [9.071043, 45.420587], [9.080036, 45.420587], [9.080036, 45.411594], [9.071043, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.420587], [9.071043, 45.42958], [9.080036, 45.42958], [9.080036, 45.420587], [9.071043, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.42958], [9.071043, 45.438574], [9.080036, 45.438574], [9.080036, 45.42958], [9.071043, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.438574], [9.071043, 45.447567], [9.080036, 45.447567], [9.080036, 45.438574], [9.071043, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.447567], [9.071043, 45.45656], [9.080036, 45.45656], [9.080036, 45.447567], [9.071043, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.45656], [9.071043, 45.465553], [9.080036, 45.465553], [9.080036, 45.45656], [9.071043, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.465553], [9.071043, 45.474547], [9.080036, 45.474547], [9.080036, 45.465553], [9.071043, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.474547], [9.071043, 45.48354], [9.080036, 45.48354], [9.080036, 45.474547], [9.071043, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.48354], [9.071043, 45.492533], [9.080036, 45.492533], [9.080036, 45.48354], [9.071043, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.492533], [9.071043, 45.501526], [9.080036, 45.501526], [9.080036, 45.492533], [9.071043, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.501526], [9.071043, 45.510519], [9.080036, 45.510519], [9.080036, 45.501526], [9.071043, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.510519], [9.071043, 45.519513], [9.080036, 45.519513], [9.080036, 45.510519], [9.071043, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.519513], [9.071043, 45.528506], [9.080036, 45.528506], [9.080036, 45.519513], [9.071043, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.528506], [9.071043, 45.537499], [9.080036, 45.537499], [9.080036, 45.528506], [9.071043, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.537499], [9.071043, 45.546492], [9.080036, 45.546492], [9.080036, 45.537499], [9.071043, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.546492], [9.071043, 45.555485], [9.080036, 45.555485], [9.080036, 45.546492], [9.071043, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.555485], [9.071043, 45.564479], [9.080036, 45.564479], [9.080036, 45.555485], [9.071043, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.564479], [9.071043, 45.573472], [9.080036, 45.573472], [9.080036, 45.564479], [9.071043, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.573472], [9.071043, 45.582465], [9.080036, 45.582465], [9.080036, 45.573472], [9.071043, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.582465], [9.071043, 45.591458], [9.080036, 45.591458], [9.080036, 45.582465], [9.071043, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.591458], [9.071043, 45.600451], [9.080036, 45.600451], [9.080036, 45.591458], [9.071043, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.600451], [9.071043, 45.609445], [9.080036, 45.609445], [9.080036, 45.600451], [9.071043, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.609445], [9.071043, 45.618438], [9.080036, 45.618438], [9.080036, 45.609445], [9.071043, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.618438], [9.071043, 45.627431], [9.080036, 45.627431], [9.080036, 45.618438], [9.071043, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.071043, 45.627431], [9.071043, 45.636424], [9.080036, 45.636424], [9.080036, 45.627431], [9.071043, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.339648], [9.080036, 45.348642], [9.089029, 45.348642], [9.089029, 45.339648], [9.080036, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.348642], [9.080036, 45.357635], [9.089029, 45.357635], [9.089029, 45.348642], [9.080036, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.357635], [9.080036, 45.366628], [9.089029, 45.366628], [9.089029, 45.357635], [9.080036, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.366628], [9.080036, 45.375621], [9.089029, 45.375621], [9.089029, 45.366628], [9.080036, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.375621], [9.080036, 45.384614], [9.089029, 45.384614], [9.089029, 45.375621], [9.080036, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.384614], [9.080036, 45.393608], [9.089029, 45.393608], [9.089029, 45.384614], [9.080036, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.393608], [9.080036, 45.402601], [9.089029, 45.402601], [9.089029, 45.393608], [9.080036, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.402601], [9.080036, 45.411594], [9.089029, 45.411594], [9.089029, 45.402601], [9.080036, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.411594], [9.080036, 45.420587], [9.089029, 45.420587], [9.089029, 45.411594], [9.080036, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.420587], [9.080036, 45.42958], [9.089029, 45.42958], [9.089029, 45.420587], [9.080036, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.42958], [9.080036, 45.438574], [9.089029, 45.438574], [9.089029, 45.42958], [9.080036, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.438574], [9.080036, 45.447567], [9.089029, 45.447567], [9.089029, 45.438574], [9.080036, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.447567], [9.080036, 45.45656], [9.089029, 45.45656], [9.089029, 45.447567], [9.080036, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.45656], [9.080036, 45.465553], [9.089029, 45.465553], [9.089029, 45.45656], [9.080036, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.465553], [9.080036, 45.474547], [9.089029, 45.474547], [9.089029, 45.465553], [9.080036, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.474547], [9.080036, 45.48354], [9.089029, 45.48354], [9.089029, 45.474547], [9.080036, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.48354], [9.080036, 45.492533], [9.089029, 45.492533], [9.089029, 45.48354], [9.080036, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.492533], [9.080036, 45.501526], [9.089029, 45.501526], [9.089029, 45.492533], [9.080036, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.501526], [9.080036, 45.510519], [9.089029, 45.510519], [9.089029, 45.501526], [9.080036, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.510519], [9.080036, 45.519513], [9.089029, 45.519513], [9.089029, 45.510519], [9.080036, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.519513], [9.080036, 45.528506], [9.089029, 45.528506], [9.089029, 45.519513], [9.080036, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.528506], [9.080036, 45.537499], [9.089029, 45.537499], [9.089029, 45.528506], [9.080036, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.537499], [9.080036, 45.546492], [9.089029, 45.546492], [9.089029, 45.537499], [9.080036, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.546492], [9.080036, 45.555485], [9.089029, 45.555485], [9.089029, 45.546492], [9.080036, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.555485], [9.080036, 45.564479], [9.089029, 45.564479], [9.089029, 45.555485], [9.080036, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.564479], [9.080036, 45.573472], [9.089029, 45.573472], [9.089029, 45.564479], [9.080036, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.573472], [9.080036, 45.582465], [9.089029, 45.582465], [9.089029, 45.573472], [9.080036, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.582465], [9.080036, 45.591458], [9.089029, 45.591458], [9.089029, 45.582465], [9.080036, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.591458], [9.080036, 45.600451], [9.089029, 45.600451], [9.089029, 45.591458], [9.080036, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.600451], [9.080036, 45.609445], [9.089029, 45.609445], [9.089029, 45.600451], [9.080036, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.609445], [9.080036, 45.618438], [9.089029, 45.618438], [9.089029, 45.609445], [9.080036, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.618438], [9.080036, 45.627431], [9.089029, 45.627431], [9.089029, 45.618438], [9.080036, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.080036, 45.627431], [9.080036, 45.636424], [9.089029, 45.636424], [9.089029, 45.627431], [9.080036, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.339648], [9.089029, 45.348642], [9.098022, 45.348642], [9.098022, 45.339648], [9.089029, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.348642], [9.089029, 45.357635], [9.098022, 45.357635], [9.098022, 45.348642], [9.089029, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.357635], [9.089029, 45.366628], [9.098022, 45.366628], [9.098022, 45.357635], [9.089029, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.366628], [9.089029, 45.375621], [9.098022, 45.375621], [9.098022, 45.366628], [9.089029, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.375621], [9.089029, 45.384614], [9.098022, 45.384614], [9.098022, 45.375621], [9.089029, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.384614], [9.089029, 45.393608], [9.098022, 45.393608], [9.098022, 45.384614], [9.089029, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.393608], [9.089029, 45.402601], [9.098022, 45.402601], [9.098022, 45.393608], [9.089029, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.402601], [9.089029, 45.411594], [9.098022, 45.411594], [9.098022, 45.402601], [9.089029, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.411594], [9.089029, 45.420587], [9.098022, 45.420587], [9.098022, 45.411594], [9.089029, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.420587], [9.089029, 45.42958], [9.098022, 45.42958], [9.098022, 45.420587], [9.089029, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.42958], [9.089029, 45.438574], [9.098022, 45.438574], [9.098022, 45.42958], [9.089029, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.438574], [9.089029, 45.447567], [9.098022, 45.447567], [9.098022, 45.438574], [9.089029, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.447567], [9.089029, 45.45656], [9.098022, 45.45656], [9.098022, 45.447567], [9.089029, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.45656], [9.089029, 45.465553], [9.098022, 45.465553], [9.098022, 45.45656], [9.089029, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.465553], [9.089029, 45.474547], [9.098022, 45.474547], [9.098022, 45.465553], [9.089029, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.474547], [9.089029, 45.48354], [9.098022, 45.48354], [9.098022, 45.474547], [9.089029, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.48354], [9.089029, 45.492533], [9.098022, 45.492533], [9.098022, 45.48354], [9.089029, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.492533], [9.089029, 45.501526], [9.098022, 45.501526], [9.098022, 45.492533], [9.089029, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.501526], [9.089029, 45.510519], [9.098022, 45.510519], [9.098022, 45.501526], [9.089029, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.510519], [9.089029, 45.519513], [9.098022, 45.519513], [9.098022, 45.510519], [9.089029, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.519513], [9.089029, 45.528506], [9.098022, 45.528506], [9.098022, 45.519513], [9.089029, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.528506], [9.089029, 45.537499], [9.098022, 45.537499], [9.098022, 45.528506], [9.089029, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.537499], [9.089029, 45.546492], [9.098022, 45.546492], [9.098022, 45.537499], [9.089029, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.546492], [9.089029, 45.555485], [9.098022, 45.555485], [9.098022, 45.546492], [9.089029, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.555485], [9.089029, 45.564479], [9.098022, 45.564479], [9.098022, 45.555485], [9.089029, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.564479], [9.089029, 45.573472], [9.098022, 45.573472], [9.098022, 45.564479], [9.089029, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.573472], [9.089029, 45.582465], [9.098022, 45.582465], [9.098022, 45.573472], [9.089029, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.582465], [9.089029, 45.591458], [9.098022, 45.591458], [9.098022, 45.582465], [9.089029, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.591458], [9.089029, 45.600451], [9.098022, 45.600451], [9.098022, 45.591458], [9.089029, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.600451], [9.089029, 45.609445], [9.098022, 45.609445], [9.098022, 45.600451], [9.089029, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.609445], [9.089029, 45.618438], [9.098022, 45.618438], [9.098022, 45.609445], [9.089029, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.618438], [9.089029, 45.627431], [9.098022, 45.627431], [9.098022, 45.618438], [9.089029, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.089029, 45.627431], [9.089029, 45.636424], [9.098022, 45.636424], [9.098022, 45.627431], [9.089029, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.339648], [9.098022, 45.348642], [9.107016, 45.348642], [9.107016, 45.339648], [9.098022, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.348642], [9.098022, 45.357635], [9.107016, 45.357635], [9.107016, 45.348642], [9.098022, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.357635], [9.098022, 45.366628], [9.107016, 45.366628], [9.107016, 45.357635], [9.098022, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.366628], [9.098022, 45.375621], [9.107016, 45.375621], [9.107016, 45.366628], [9.098022, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.375621], [9.098022, 45.384614], [9.107016, 45.384614], [9.107016, 45.375621], [9.098022, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.384614], [9.098022, 45.393608], [9.107016, 45.393608], [9.107016, 45.384614], [9.098022, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.393608], [9.098022, 45.402601], [9.107016, 45.402601], [9.107016, 45.393608], [9.098022, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.402601], [9.098022, 45.411594], [9.107016, 45.411594], [9.107016, 45.402601], [9.098022, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.411594], [9.098022, 45.420587], [9.107016, 45.420587], [9.107016, 45.411594], [9.098022, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.420587], [9.098022, 45.42958], [9.107016, 45.42958], [9.107016, 45.420587], [9.098022, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.42958], [9.098022, 45.438574], [9.107016, 45.438574], [9.107016, 45.42958], [9.098022, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.438574], [9.098022, 45.447567], [9.107016, 45.447567], [9.107016, 45.438574], [9.098022, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.447567], [9.098022, 45.45656], [9.107016, 45.45656], [9.107016, 45.447567], [9.098022, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.45656], [9.098022, 45.465553], [9.107016, 45.465553], [9.107016, 45.45656], [9.098022, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.465553], [9.098022, 45.474547], [9.107016, 45.474547], [9.107016, 45.465553], [9.098022, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.474547], [9.098022, 45.48354], [9.107016, 45.48354], [9.107016, 45.474547], [9.098022, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.48354], [9.098022, 45.492533], [9.107016, 45.492533], [9.107016, 45.48354], [9.098022, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.492533], [9.098022, 45.501526], [9.107016, 45.501526], [9.107016, 45.492533], [9.098022, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.501526], [9.098022, 45.510519], [9.107016, 45.510519], [9.107016, 45.501526], [9.098022, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.510519], [9.098022, 45.519513], [9.107016, 45.519513], [9.107016, 45.510519], [9.098022, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.519513], [9.098022, 45.528506], [9.107016, 45.528506], [9.107016, 45.519513], [9.098022, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.528506], [9.098022, 45.537499], [9.107016, 45.537499], [9.107016, 45.528506], [9.098022, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.537499], [9.098022, 45.546492], [9.107016, 45.546492], [9.107016, 45.537499], [9.098022, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.546492], [9.098022, 45.555485], [9.107016, 45.555485], [9.107016, 45.546492], [9.098022, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.555485], [9.098022, 45.564479], [9.107016, 45.564479], [9.107016, 45.555485], [9.098022, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.564479], [9.098022, 45.573472], [9.107016, 45.573472], [9.107016, 45.564479], [9.098022, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.573472], [9.098022, 45.582465], [9.107016, 45.582465], [9.107016, 45.573472], [9.098022, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.582465], [9.098022, 45.591458], [9.107016, 45.591458], [9.107016, 45.582465], [9.098022, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.591458], [9.098022, 45.600451], [9.107016, 45.600451], [9.107016, 45.591458], [9.098022, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.600451], [9.098022, 45.609445], [9.107016, 45.609445], [9.107016, 45.600451], [9.098022, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.609445], [9.098022, 45.618438], [9.107016, 45.618438], [9.107016, 45.609445], [9.098022, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.618438], [9.098022, 45.627431], [9.107016, 45.627431], [9.107016, 45.618438], [9.098022, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.098022, 45.627431], [9.098022, 45.636424], [9.107016, 45.636424], [9.107016, 45.627431], [9.098022, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.339648], [9.107016, 45.348642], [9.116009, 45.348642], [9.116009, 45.339648], [9.107016, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.348642], [9.107016, 45.357635], [9.116009, 45.357635], [9.116009, 45.348642], [9.107016, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.357635], [9.107016, 45.366628], [9.116009, 45.366628], [9.116009, 45.357635], [9.107016, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.366628], [9.107016, 45.375621], [9.116009, 45.375621], [9.116009, 45.366628], [9.107016, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.375621], [9.107016, 45.384614], [9.116009, 45.384614], [9.116009, 45.375621], [9.107016, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.384614], [9.107016, 45.393608], [9.116009, 45.393608], [9.116009, 45.384614], [9.107016, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.393608], [9.107016, 45.402601], [9.116009, 45.402601], [9.116009, 45.393608], [9.107016, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.402601], [9.107016, 45.411594], [9.116009, 45.411594], [9.116009, 45.402601], [9.107016, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.411594], [9.107016, 45.420587], [9.116009, 45.420587], [9.116009, 45.411594], [9.107016, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.420587], [9.107016, 45.42958], [9.116009, 45.42958], [9.116009, 45.420587], [9.107016, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.42958], [9.107016, 45.438574], [9.116009, 45.438574], [9.116009, 45.42958], [9.107016, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 16, "stroke": "#e5f3ff", "fill": "#e5f3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.438574], [9.107016, 45.447567], [9.116009, 45.447567], [9.116009, 45.438574], [9.107016, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.447567], [9.107016, 45.45656], [9.116009, 45.45656], [9.116009, 45.447567], [9.107016, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.45656], [9.107016, 45.465553], [9.116009, 45.465553], [9.116009, 45.45656], [9.107016, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.465553], [9.107016, 45.474547], [9.116009, 45.474547], [9.116009, 45.465553], [9.107016, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.474547], [9.107016, 45.48354], [9.116009, 45.48354], [9.116009, 45.474547], [9.107016, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.48354], [9.107016, 45.492533], [9.116009, 45.492533], [9.116009, 45.48354], [9.107016, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.492533], [9.107016, 45.501526], [9.116009, 45.501526], [9.116009, 45.492533], [9.107016, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.501526], [9.107016, 45.510519], [9.116009, 45.510519], [9.116009, 45.501526], [9.107016, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.510519], [9.107016, 45.519513], [9.116009, 45.519513], [9.116009, 45.510519], [9.107016, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.519513], [9.107016, 45.528506], [9.116009, 45.528506], [9.116009, 45.519513], [9.107016, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.528506], [9.107016, 45.537499], [9.116009, 45.537499], [9.116009, 45.528506], [9.107016, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.537499], [9.107016, 45.546492], [9.116009, 45.546492], [9.116009, 45.537499], [9.107016, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.546492], [9.107016, 45.555485], [9.116009, 45.555485], [9.116009, 45.546492], [9.107016, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.555485], [9.107016, 45.564479], [9.116009, 45.564479], [9.116009, 45.555485], [9.107016, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.564479], [9.107016, 45.573472], [9.116009, 45.573472], [9.116009, 45.564479], [9.107016, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.573472], [9.107016, 45.582465], [9.116009, 45.582465], [9.116009, 45.573472], [9.107016, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.582465], [9.107016, 45.591458], [9.116009, 45.591458], [9.116009, 45.582465], [9.107016, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.591458], [9.107016, 45.600451], [9.116009, 45.600451], [9.116009, 45.591458], [9.107016, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.600451], [9.107016, 45.609445], [9.116009, 45.609445], [9.116009, 45.600451], [9.107016, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.609445], [9.107016, 45.618438], [9.116009, 45.618438], [9.116009, 45.609445], [9.107016, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.618438], [9.107016, 45.627431], [9.116009, 45.627431], [9.116009, 45.618438], [9.107016, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.107016, 45.627431], [9.107016, 45.636424], [9.116009, 45.636424], [9.116009, 45.627431], [9.107016, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.339648], [9.116009, 45.348642], [9.125002, 45.348642], [9.125002, 45.339648], [9.116009, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.348642], [9.116009, 45.357635], [9.125002, 45.357635], [9.125002, 45.348642], [9.116009, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.357635], [9.116009, 45.366628], [9.125002, 45.366628], [9.125002, 45.357635], [9.116009, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.366628], [9.116009, 45.375621], [9.125002, 45.375621], [9.125002, 45.366628], [9.116009, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.375621], [9.116009, 45.384614], [9.125002, 45.384614], [9.125002, 45.375621], [9.116009, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.384614], [9.116009, 45.393608], [9.125002, 45.393608], [9.125002, 45.384614], [9.116009, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.393608], [9.116009, 45.402601], [9.125002, 45.402601], [9.125002, 45.393608], [9.116009, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.402601], [9.116009, 45.411594], [9.125002, 45.411594], [9.125002, 45.402601], [9.116009, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.411594], [9.116009, 45.420587], [9.125002, 45.420587], [9.125002, 45.411594], [9.116009, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.420587], [9.116009, 45.42958], [9.125002, 45.42958], [9.125002, 45.420587], [9.116009, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.42958], [9.116009, 45.438574], [9.125002, 45.438574], [9.125002, 45.42958], [9.116009, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 16, "stroke": "#e5f3ff", "fill": "#e5f3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.438574], [9.116009, 45.447567], [9.125002, 45.447567], [9.125002, 45.438574], [9.116009, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.447567], [9.116009, 45.45656], [9.125002, 45.45656], [9.125002, 45.447567], [9.116009, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.45656], [9.116009, 45.465553], [9.125002, 45.465553], [9.125002, 45.45656], [9.116009, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.465553], [9.116009, 45.474547], [9.125002, 45.474547], [9.125002, 45.465553], [9.116009, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.474547], [9.116009, 45.48354], [9.125002, 45.48354], [9.125002, 45.474547], [9.116009, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.48354], [9.116009, 45.492533], [9.125002, 45.492533], [9.125002, 45.48354], [9.116009, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.492533], [9.116009, 45.501526], [9.125002, 45.501526], [9.125002, 45.492533], [9.116009, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.501526], [9.116009, 45.510519], [9.125002, 45.510519], [9.125002, 45.501526], [9.116009, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.510519], [9.116009, 45.519513], [9.125002, 45.519513], [9.125002, 45.510519], [9.116009, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.519513], [9.116009, 45.528506], [9.125002, 45.528506], [9.125002, 45.519513], [9.116009, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.528506], [9.116009, 45.537499], [9.125002, 45.537499], [9.125002, 45.528506], [9.116009, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.537499], [9.116009, 45.546492], [9.125002, 45.546492], [9.125002, 45.537499], [9.116009, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.546492], [9.116009, 45.555485], [9.125002, 45.555485], [9.125002, 45.546492], [9.116009, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.555485], [9.116009, 45.564479], [9.125002, 45.564479], [9.125002, 45.555485], [9.116009, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.564479], [9.116009, 45.573472], [9.125002, 45.573472], [9.125002, 45.564479], [9.116009, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.573472], [9.116009, 45.582465], [9.125002, 45.582465], [9.125002, 45.573472], [9.116009, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.582465], [9.116009, 45.591458], [9.125002, 45.591458], [9.125002, 45.582465], [9.116009, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.591458], [9.116009, 45.600451], [9.125002, 45.600451], [9.125002, 45.591458], [9.116009, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.600451], [9.116009, 45.609445], [9.125002, 45.609445], [9.125002, 45.600451], [9.116009, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.609445], [9.116009, 45.618438], [9.125002, 45.618438], [9.125002, 45.609445], [9.116009, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.618438], [9.116009, 45.627431], [9.125002, 45.627431], [9.125002, 45.618438], [9.116009, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.116009, 45.627431], [9.116009, 45.636424], [9.125002, 45.636424], [9.125002, 45.627431], [9.116009, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.339648], [9.125002, 45.348642], [9.133995, 45.348642], [9.133995, 45.339648], [9.125002, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.348642], [9.125002, 45.357635], [9.133995, 45.357635], [9.133995, 45.348642], [9.125002, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.357635], [9.125002, 45.366628], [9.133995, 45.366628], [9.133995, 45.357635], [9.125002, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.366628], [9.125002, 45.375621], [9.133995, 45.375621], [9.133995, 45.366628], [9.125002, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.375621], [9.125002, 45.384614], [9.133995, 45.384614], [9.133995, 45.375621], [9.125002, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.384614], [9.125002, 45.393608], [9.133995, 45.393608], [9.133995, 45.384614], [9.125002, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.393608], [9.125002, 45.402601], [9.133995, 45.402601], [9.133995, 45.393608], [9.125002, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.402601], [9.125002, 45.411594], [9.133995, 45.411594], [9.133995, 45.402601], [9.125002, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.411594], [9.125002, 45.420587], [9.133995, 45.420587], [9.133995, 45.411594], [9.125002, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.420587], [9.125002, 45.42958], [9.133995, 45.42958], [9.133995, 45.420587], [9.125002, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.42958], [9.125002, 45.438574], [9.133995, 45.438574], [9.133995, 45.42958], [9.125002, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.438574], [9.125002, 45.447567], [9.133995, 45.447567], [9.133995, 45.438574], [9.125002, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.447567], [9.125002, 45.45656], [9.133995, 45.45656], [9.133995, 45.447567], [9.125002, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.45656], [9.125002, 45.465553], [9.133995, 45.465553], [9.133995, 45.45656], [9.125002, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.465553], [9.125002, 45.474547], [9.133995, 45.474547], [9.133995, 45.465553], [9.125002, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.474547], [9.125002, 45.48354], [9.133995, 45.48354], [9.133995, 45.474547], [9.125002, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.48354], [9.125002, 45.492533], [9.133995, 45.492533], [9.133995, 45.48354], [9.125002, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.492533], [9.125002, 45.501526], [9.133995, 45.501526], [9.133995, 45.492533], [9.125002, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.501526], [9.125002, 45.510519], [9.133995, 45.510519], [9.133995, 45.501526], [9.125002, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.510519], [9.125002, 45.519513], [9.133995, 45.519513], [9.133995, 45.510519], [9.125002, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.519513], [9.125002, 45.528506], [9.133995, 45.528506], [9.133995, 45.519513], [9.125002, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.528506], [9.125002, 45.537499], [9.133995, 45.537499], [9.133995, 45.528506], [9.125002, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.537499], [9.125002, 45.546492], [9.133995, 45.546492], [9.133995, 45.537499], [9.125002, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.546492], [9.125002, 45.555485], [9.133995, 45.555485], [9.133995, 45.546492], [9.125002, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.555485], [9.125002, 45.564479], [9.133995, 45.564479], [9.133995, 45.555485], [9.125002, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.564479], [9.125002, 45.573472], [9.133995, 45.573472], [9.133995, 45.564479], [9.125002, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.573472], [9.125002, 45.582465], [9.133995, 45.582465], [9.133995, 45.573472], [9.125002, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.582465], [9.125002, 45.591458], [9.133995, 45.591458], [9.133995, 45.582465], [9.125002, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.591458], [9.125002, 45.600451], [9.133995, 45.600451], [9.133995, 45.591458], [9.125002, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.600451], [9.125002, 45.609445], [9.133995, 45.609445], [9.133995, 45.600451], [9.125002, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.609445], [9.125002, 45.618438], [9.133995, 45.618438], [9.133995, 45.609445], [9.125002, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.618438], [9.125002, 45.627431], [9.133995, 45.627431], [9.133995, 45.618438], [9.125002, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.125002, 45.627431], [9.125002, 45.636424], [9.133995, 45.636424], [9.133995, 45.627431], [9.125002, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.339648], [9.133995, 45.348642], [9.142988, 45.348642], [9.142988, 45.339648], [9.133995, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.348642], [9.133995, 45.357635], [9.142988, 45.357635], [9.142988, 45.348642], [9.133995, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.357635], [9.133995, 45.366628], [9.142988, 45.366628], [9.142988, 45.357635], [9.133995, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.366628], [9.133995, 45.375621], [9.142988, 45.375621], [9.142988, 45.366628], [9.133995, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.375621], [9.133995, 45.384614], [9.142988, 45.384614], [9.142988, 45.375621], [9.133995, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.384614], [9.133995, 45.393608], [9.142988, 45.393608], [9.142988, 45.384614], [9.133995, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.393608], [9.133995, 45.402601], [9.142988, 45.402601], [9.142988, 45.393608], [9.133995, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.402601], [9.133995, 45.411594], [9.142988, 45.411594], [9.142988, 45.402601], [9.133995, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.411594], [9.133995, 45.420587], [9.142988, 45.420587], [9.142988, 45.411594], [9.133995, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.420587], [9.133995, 45.42958], [9.142988, 45.42958], [9.142988, 45.420587], [9.133995, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.42958], [9.133995, 45.438574], [9.142988, 45.438574], [9.142988, 45.42958], [9.133995, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.438574], [9.133995, 45.447567], [9.142988, 45.447567], [9.142988, 45.438574], [9.133995, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.447567], [9.133995, 45.45656], [9.142988, 45.45656], [9.142988, 45.447567], [9.133995, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.45656], [9.133995, 45.465553], [9.142988, 45.465553], [9.142988, 45.45656], [9.133995, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.465553], [9.133995, 45.474547], [9.142988, 45.474547], [9.142988, 45.465553], [9.133995, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.474547], [9.133995, 45.48354], [9.142988, 45.48354], [9.142988, 45.474547], [9.133995, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.48354], [9.133995, 45.492533], [9.142988, 45.492533], [9.142988, 45.48354], [9.133995, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.492533], [9.133995, 45.501526], [9.142988, 45.501526], [9.142988, 45.492533], [9.133995, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.501526], [9.133995, 45.510519], [9.142988, 45.510519], [9.142988, 45.501526], [9.133995, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.510519], [9.133995, 45.519513], [9.142988, 45.519513], [9.142988, 45.510519], [9.133995, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.519513], [9.133995, 45.528506], [9.142988, 45.528506], [9.142988, 45.519513], [9.133995, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.528506], [9.133995, 45.537499], [9.142988, 45.537499], [9.142988, 45.528506], [9.133995, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.537499], [9.133995, 45.546492], [9.142988, 45.546492], [9.142988, 45.537499], [9.133995, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.546492], [9.133995, 45.555485], [9.142988, 45.555485], [9.142988, 45.546492], [9.133995, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.555485], [9.133995, 45.564479], [9.142988, 45.564479], [9.142988, 45.555485], [9.133995, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.564479], [9.133995, 45.573472], [9.142988, 45.573472], [9.142988, 45.564479], [9.133995, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.573472], [9.133995, 45.582465], [9.142988, 45.582465], [9.142988, 45.573472], [9.133995, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.582465], [9.133995, 45.591458], [9.142988, 45.591458], [9.142988, 45.582465], [9.133995, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.591458], [9.133995, 45.600451], [9.142988, 45.600451], [9.142988, 45.591458], [9.133995, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.600451], [9.133995, 45.609445], [9.142988, 45.609445], [9.142988, 45.600451], [9.133995, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.609445], [9.133995, 45.618438], [9.142988, 45.618438], [9.142988, 45.609445], [9.133995, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.618438], [9.133995, 45.627431], [9.142988, 45.627431], [9.142988, 45.618438], [9.133995, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.133995, 45.627431], [9.133995, 45.636424], [9.142988, 45.636424], [9.142988, 45.627431], [9.133995, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.339648], [9.142988, 45.348642], [9.151982, 45.348642], [9.151982, 45.339648], [9.142988, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.348642], [9.142988, 45.357635], [9.151982, 45.357635], [9.151982, 45.348642], [9.142988, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.357635], [9.142988, 45.366628], [9.151982, 45.366628], [9.151982, 45.357635], [9.142988, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.366628], [9.142988, 45.375621], [9.151982, 45.375621], [9.151982, 45.366628], [9.142988, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.375621], [9.142988, 45.384614], [9.151982, 45.384614], [9.151982, 45.375621], [9.142988, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.384614], [9.142988, 45.393608], [9.151982, 45.393608], [9.151982, 45.384614], [9.142988, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.393608], [9.142988, 45.402601], [9.151982, 45.402601], [9.151982, 45.393608], [9.142988, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.402601], [9.142988, 45.411594], [9.151982, 45.411594], [9.151982, 45.402601], [9.142988, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.411594], [9.142988, 45.420587], [9.151982, 45.420587], [9.151982, 45.411594], [9.142988, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.420587], [9.142988, 45.42958], [9.151982, 45.42958], [9.151982, 45.420587], [9.142988, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.42958], [9.142988, 45.438574], [9.151982, 45.438574], [9.151982, 45.42958], [9.142988, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.438574], [9.142988, 45.447567], [9.151982, 45.447567], [9.151982, 45.438574], [9.142988, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.447567], [9.142988, 45.45656], [9.151982, 45.45656], [9.151982, 45.447567], [9.142988, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.45656], [9.142988, 45.465553], [9.151982, 45.465553], [9.151982, 45.45656], [9.142988, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.465553], [9.142988, 45.474547], [9.151982, 45.474547], [9.151982, 45.465553], [9.142988, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.474547], [9.142988, 45.48354], [9.151982, 45.48354], [9.151982, 45.474547], [9.142988, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.48354], [9.142988, 45.492533], [9.151982, 45.492533], [9.151982, 45.48354], [9.142988, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.492533], [9.142988, 45.501526], [9.151982, 45.501526], [9.151982, 45.492533], [9.142988, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.501526], [9.142988, 45.510519], [9.151982, 45.510519], [9.151982, 45.501526], [9.142988, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.510519], [9.142988, 45.519513], [9.151982, 45.519513], [9.151982, 45.510519], [9.142988, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.519513], [9.142988, 45.528506], [9.151982, 45.528506], [9.151982, 45.519513], [9.142988, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.528506], [9.142988, 45.537499], [9.151982, 45.537499], [9.151982, 45.528506], [9.142988, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.537499], [9.142988, 45.546492], [9.151982, 45.546492], [9.151982, 45.537499], [9.142988, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.546492], [9.142988, 45.555485], [9.151982, 45.555485], [9.151982, 45.546492], [9.142988, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.555485], [9.142988, 45.564479], [9.151982, 45.564479], [9.151982, 45.555485], [9.142988, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.564479], [9.142988, 45.573472], [9.151982, 45.573472], [9.151982, 45.564479], [9.142988, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.573472], [9.142988, 45.582465], [9.151982, 45.582465], [9.151982, 45.573472], [9.142988, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.582465], [9.142988, 45.591458], [9.151982, 45.591458], [9.151982, 45.582465], [9.142988, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.591458], [9.142988, 45.600451], [9.151982, 45.600451], [9.151982, 45.591458], [9.142988, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.600451], [9.142988, 45.609445], [9.151982, 45.609445], [9.151982, 45.600451], [9.142988, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.609445], [9.142988, 45.618438], [9.151982, 45.618438], [9.151982, 45.609445], [9.142988, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.618438], [9.142988, 45.627431], [9.151982, 45.627431], [9.151982, 45.618438], [9.142988, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.142988, 45.627431], [9.142988, 45.636424], [9.151982, 45.636424], [9.151982, 45.627431], [9.142988, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.339648], [9.151982, 45.348642], [9.160975, 45.348642], [9.160975, 45.339648], [9.151982, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.348642], [9.151982, 45.357635], [9.160975, 45.357635], [9.160975, 45.348642], [9.151982, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.357635], [9.151982, 45.366628], [9.160975, 45.366628], [9.160975, 45.357635], [9.151982, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.366628], [9.151982, 45.375621], [9.160975, 45.375621], [9.160975, 45.366628], [9.151982, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.375621], [9.151982, 45.384614], [9.160975, 45.384614], [9.160975, 45.375621], [9.151982, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.384614], [9.151982, 45.393608], [9.160975, 45.393608], [9.160975, 45.384614], [9.151982, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.393608], [9.151982, 45.402601], [9.160975, 45.402601], [9.160975, 45.393608], [9.151982, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.402601], [9.151982, 45.411594], [9.160975, 45.411594], [9.160975, 45.402601], [9.151982, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.411594], [9.151982, 45.420587], [9.160975, 45.420587], [9.160975, 45.411594], [9.151982, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.420587], [9.151982, 45.42958], [9.160975, 45.42958], [9.160975, 45.420587], [9.151982, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.42958], [9.151982, 45.438574], [9.160975, 45.438574], [9.160975, 45.42958], [9.151982, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.438574], [9.151982, 45.447567], [9.160975, 45.447567], [9.160975, 45.438574], [9.151982, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.447567], [9.151982, 45.45656], [9.160975, 45.45656], [9.160975, 45.447567], [9.151982, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.45656], [9.151982, 45.465553], [9.160975, 45.465553], [9.160975, 45.45656], [9.151982, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 14, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.465553], [9.151982, 45.474547], [9.160975, 45.474547], [9.160975, 45.465553], [9.151982, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.474547], [9.151982, 45.48354], [9.160975, 45.48354], [9.160975, 45.474547], [9.151982, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.48354], [9.151982, 45.492533], [9.160975, 45.492533], [9.160975, 45.48354], [9.151982, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.492533], [9.151982, 45.501526], [9.160975, 45.501526], [9.160975, 45.492533], [9.151982, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.501526], [9.151982, 45.510519], [9.160975, 45.510519], [9.160975, 45.501526], [9.151982, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.510519], [9.151982, 45.519513], [9.160975, 45.519513], [9.160975, 45.510519], [9.151982, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.519513], [9.151982, 45.528506], [9.160975, 45.528506], [9.160975, 45.519513], [9.151982, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.528506], [9.151982, 45.537499], [9.160975, 45.537499], [9.160975, 45.528506], [9.151982, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.537499], [9.151982, 45.546492], [9.160975, 45.546492], [9.160975, 45.537499], [9.151982, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.546492], [9.151982, 45.555485], [9.160975, 45.555485], [9.160975, 45.546492], [9.151982, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.555485], [9.151982, 45.564479], [9.160975, 45.564479], [9.160975, 45.555485], [9.151982, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.564479], [9.151982, 45.573472], [9.160975, 45.573472], [9.160975, 45.564479], [9.151982, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.573472], [9.151982, 45.582465], [9.160975, 45.582465], [9.160975, 45.573472], [9.151982, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.582465], [9.151982, 45.591458], [9.160975, 45.591458], [9.160975, 45.582465], [9.151982, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.591458], [9.151982, 45.600451], [9.160975, 45.600451], [9.160975, 45.591458], [9.151982, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.600451], [9.151982, 45.609445], [9.160975, 45.609445], [9.160975, 45.600451], [9.151982, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.609445], [9.151982, 45.618438], [9.160975, 45.618438], [9.160975, 45.609445], [9.151982, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.618438], [9.151982, 45.627431], [9.160975, 45.627431], [9.160975, 45.618438], [9.151982, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.151982, 45.627431], [9.151982, 45.636424], [9.160975, 45.636424], [9.160975, 45.627431], [9.151982, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.339648], [9.160975, 45.348642], [9.169968, 45.348642], [9.169968, 45.339648], [9.160975, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.348642], [9.160975, 45.357635], [9.169968, 45.357635], [9.169968, 45.348642], [9.160975, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.357635], [9.160975, 45.366628], [9.169968, 45.366628], [9.169968, 45.357635], [9.160975, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.366628], [9.160975, 45.375621], [9.169968, 45.375621], [9.169968, 45.366628], [9.160975, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.375621], [9.160975, 45.384614], [9.169968, 45.384614], [9.169968, 45.375621], [9.160975, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.384614], [9.160975, 45.393608], [9.169968, 45.393608], [9.169968, 45.384614], [9.160975, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.393608], [9.160975, 45.402601], [9.169968, 45.402601], [9.169968, 45.393608], [9.160975, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.402601], [9.160975, 45.411594], [9.169968, 45.411594], [9.169968, 45.402601], [9.160975, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.411594], [9.160975, 45.420587], [9.169968, 45.420587], [9.169968, 45.411594], [9.160975, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.420587], [9.160975, 45.42958], [9.169968, 45.42958], [9.169968, 45.420587], [9.160975, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.42958], [9.160975, 45.438574], [9.169968, 45.438574], [9.169968, 45.42958], [9.160975, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.438574], [9.160975, 45.447567], [9.169968, 45.447567], [9.169968, 45.438574], [9.160975, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.447567], [9.160975, 45.45656], [9.169968, 45.45656], [9.169968, 45.447567], [9.160975, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.45656], [9.160975, 45.465553], [9.169968, 45.465553], [9.169968, 45.45656], [9.160975, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.465553], [9.160975, 45.474547], [9.169968, 45.474547], [9.169968, 45.465553], [9.160975, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.474547], [9.160975, 45.48354], [9.169968, 45.48354], [9.169968, 45.474547], [9.160975, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.48354], [9.160975, 45.492533], [9.169968, 45.492533], [9.169968, 45.48354], [9.160975, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.492533], [9.160975, 45.501526], [9.169968, 45.501526], [9.169968, 45.492533], [9.160975, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.501526], [9.160975, 45.510519], [9.169968, 45.510519], [9.169968, 45.501526], [9.160975, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.510519], [9.160975, 45.519513], [9.169968, 45.519513], [9.169968, 45.510519], [9.160975, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.519513], [9.160975, 45.528506], [9.169968, 45.528506], [9.169968, 45.519513], [9.160975, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#007aeb", "fill": "#007aeb", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.528506], [9.160975, 45.537499], [9.169968, 45.537499], [9.169968, 45.528506], [9.160975, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0072db", "fill": "#0072db", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.537499], [9.160975, 45.546492], [9.169968, 45.546492], [9.169968, 45.537499], [9.160975, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0072db", "fill": "#0072db", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.546492], [9.160975, 45.555485], [9.169968, 45.555485], [9.169968, 45.546492], [9.160975, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#007aeb", "fill": "#007aeb", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.555485], [9.160975, 45.564479], [9.169968, 45.564479], [9.169968, 45.555485], [9.160975, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.564479], [9.160975, 45.573472], [9.169968, 45.573472], [9.169968, 45.564479], [9.160975, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.573472], [9.160975, 45.582465], [9.169968, 45.582465], [9.169968, 45.573472], [9.160975, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.582465], [9.160975, 45.591458], [9.169968, 45.591458], [9.169968, 45.582465], [9.160975, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.591458], [9.160975, 45.600451], [9.169968, 45.600451], [9.169968, 45.591458], [9.160975, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.600451], [9.160975, 45.609445], [9.169968, 45.609445], [9.169968, 45.600451], [9.160975, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.609445], [9.160975, 45.618438], [9.169968, 45.618438], [9.169968, 45.609445], [9.160975, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.618438], [9.160975, 45.627431], [9.169968, 45.627431], [9.169968, 45.618438], [9.160975, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.160975, 45.627431], [9.160975, 45.636424], [9.169968, 45.636424], [9.169968, 45.627431], [9.160975, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.339648], [9.169968, 45.348642], [9.178961, 45.348642], [9.178961, 45.339648], [9.169968, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.348642], [9.169968, 45.357635], [9.178961, 45.357635], [9.178961, 45.348642], [9.169968, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.357635], [9.169968, 45.366628], [9.178961, 45.366628], [9.178961, 45.357635], [9.169968, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.366628], [9.169968, 45.375621], [9.178961, 45.375621], [9.178961, 45.366628], [9.169968, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.375621], [9.169968, 45.384614], [9.178961, 45.384614], [9.178961, 45.375621], [9.169968, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.384614], [9.169968, 45.393608], [9.178961, 45.393608], [9.178961, 45.384614], [9.169968, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.393608], [9.169968, 45.402601], [9.178961, 45.402601], [9.178961, 45.393608], [9.169968, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.402601], [9.169968, 45.411594], [9.178961, 45.411594], [9.178961, 45.402601], [9.169968, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.411594], [9.169968, 45.420587], [9.178961, 45.420587], [9.178961, 45.411594], [9.169968, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.420587], [9.169968, 45.42958], [9.178961, 45.42958], [9.178961, 45.420587], [9.169968, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.42958], [9.169968, 45.438574], [9.178961, 45.438574], [9.178961, 45.42958], [9.169968, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.438574], [9.169968, 45.447567], [9.178961, 45.447567], [9.178961, 45.438574], [9.169968, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.447567], [9.169968, 45.45656], [9.178961, 45.45656], [9.178961, 45.447567], [9.169968, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.45656], [9.169968, 45.465553], [9.178961, 45.465553], [9.178961, 45.45656], [9.169968, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.465553], [9.169968, 45.474547], [9.178961, 45.474547], [9.178961, 45.465553], [9.169968, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.474547], [9.169968, 45.48354], [9.178961, 45.48354], [9.178961, 45.474547], [9.169968, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.48354], [9.169968, 45.492533], [9.178961, 45.492533], [9.178961, 45.48354], [9.169968, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.492533], [9.169968, 45.501526], [9.178961, 45.501526], [9.178961, 45.492533], [9.169968, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.501526], [9.169968, 45.510519], [9.178961, 45.510519], [9.178961, 45.501526], [9.169968, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.510519], [9.169968, 45.519513], [9.178961, 45.519513], [9.178961, 45.510519], [9.169968, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.519513], [9.169968, 45.528506], [9.178961, 45.528506], [9.178961, 45.519513], [9.169968, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#0065c2", "fill": "#0065c2", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.528506], [9.169968, 45.537499], [9.178961, 45.537499], [9.178961, 45.528506], [9.169968, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 38, "stroke": "#005db3", "fill": "#005db3", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.537499], [9.169968, 45.546492], [9.178961, 45.546492], [9.178961, 45.537499], [9.169968, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#0065c2", "fill": "#0065c2", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.546492], [9.169968, 45.555485], [9.178961, 45.555485], [9.178961, 45.546492], [9.169968, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0072db", "fill": "#0072db", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.555485], [9.169968, 45.564479], [9.178961, 45.564479], [9.178961, 45.555485], [9.169968, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#007aeb", "fill": "#007aeb", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.564479], [9.169968, 45.573472], [9.178961, 45.573472], [9.178961, 45.564479], [9.169968, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.573472], [9.169968, 45.582465], [9.178961, 45.582465], [9.178961, 45.573472], [9.169968, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.582465], [9.169968, 45.591458], [9.178961, 45.591458], [9.178961, 45.582465], [9.169968, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.591458], [9.169968, 45.600451], [9.178961, 45.600451], [9.178961, 45.591458], [9.169968, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.600451], [9.169968, 45.609445], [9.178961, 45.609445], [9.178961, 45.600451], [9.169968, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.609445], [9.169968, 45.618438], [9.178961, 45.618438], [9.178961, 45.609445], [9.169968, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.618438], [9.169968, 45.627431], [9.178961, 45.627431], [9.178961, 45.618438], [9.169968, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.169968, 45.627431], [9.169968, 45.636424], [9.178961, 45.636424], [9.178961, 45.627431], [9.169968, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.339648], [9.178961, 45.348642], [9.187954, 45.348642], [9.187954, 45.339648], [9.178961, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.348642], [9.178961, 45.357635], [9.187954, 45.357635], [9.187954, 45.348642], [9.178961, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.357635], [9.178961, 45.366628], [9.187954, 45.366628], [9.187954, 45.357635], [9.178961, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.366628], [9.178961, 45.375621], [9.187954, 45.375621], [9.187954, 45.366628], [9.178961, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.375621], [9.178961, 45.384614], [9.187954, 45.384614], [9.187954, 45.375621], [9.178961, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.384614], [9.178961, 45.393608], [9.187954, 45.393608], [9.187954, 45.384614], [9.178961, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.393608], [9.178961, 45.402601], [9.187954, 45.402601], [9.187954, 45.393608], [9.178961, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.402601], [9.178961, 45.411594], [9.187954, 45.411594], [9.187954, 45.402601], [9.178961, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.411594], [9.178961, 45.420587], [9.187954, 45.420587], [9.187954, 45.411594], [9.178961, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.420587], [9.178961, 45.42958], [9.187954, 45.42958], [9.187954, 45.420587], [9.178961, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.42958], [9.178961, 45.438574], [9.187954, 45.438574], [9.187954, 45.42958], [9.178961, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.438574], [9.178961, 45.447567], [9.187954, 45.447567], [9.187954, 45.438574], [9.178961, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.447567], [9.178961, 45.45656], [9.187954, 45.45656], [9.187954, 45.447567], [9.178961, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.45656], [9.178961, 45.465553], [9.187954, 45.465553], [9.187954, 45.45656], [9.178961, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.465553], [9.178961, 45.474547], [9.187954, 45.474547], [9.187954, 45.465553], [9.178961, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.474547], [9.178961, 45.48354], [9.187954, 45.48354], [9.187954, 45.474547], [9.178961, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.48354], [9.178961, 45.492533], [9.187954, 45.492533], [9.187954, 45.48354], [9.178961, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.492533], [9.178961, 45.501526], [9.187954, 45.501526], [9.187954, 45.492533], [9.178961, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.501526], [9.178961, 45.510519], [9.187954, 45.510519], [9.187954, 45.501526], [9.178961, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.510519], [9.178961, 45.519513], [9.187954, 45.519513], [9.187954, 45.510519], [9.178961, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0072db", "fill": "#0072db", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.519513], [9.178961, 45.528506], [9.187954, 45.528506], [9.187954, 45.519513], [9.178961, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 42, "stroke": "#00407a", "fill": "#00407a", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.528506], [9.178961, 45.537499], [9.187954, 45.537499], [9.187954, 45.528506], [9.178961, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 43, "stroke": "#003b70", "fill": "#003b70", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.537499], [9.178961, 45.546492], [9.187954, 45.546492], [9.187954, 45.537499], [9.178961, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 39, "stroke": "#0055a3", "fill": "#0055a3", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.546492], [9.178961, 45.555485], [9.187954, 45.555485], [9.187954, 45.546492], [9.178961, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#006dd1", "fill": "#006dd1", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.555485], [9.178961, 45.564479], [9.187954, 45.564479], [9.187954, 45.555485], [9.178961, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#007aeb", "fill": "#007aeb", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.564479], [9.178961, 45.573472], [9.187954, 45.573472], [9.187954, 45.564479], [9.178961, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.573472], [9.178961, 45.582465], [9.187954, 45.582465], [9.187954, 45.573472], [9.178961, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.582465], [9.178961, 45.591458], [9.187954, 45.591458], [9.187954, 45.582465], [9.178961, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.591458], [9.178961, 45.600451], [9.187954, 45.600451], [9.187954, 45.591458], [9.178961, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.600451], [9.178961, 45.609445], [9.187954, 45.609445], [9.187954, 45.600451], [9.178961, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.609445], [9.178961, 45.618438], [9.187954, 45.618438], [9.187954, 45.609445], [9.178961, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.618438], [9.178961, 45.627431], [9.187954, 45.627431], [9.187954, 45.618438], [9.178961, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.178961, 45.627431], [9.178961, 45.636424], [9.187954, 45.636424], [9.187954, 45.627431], [9.178961, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.339648], [9.187954, 45.348642], [9.196948, 45.348642], [9.196948, 45.339648], [9.187954, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.348642], [9.187954, 45.357635], [9.196948, 45.357635], [9.196948, 45.348642], [9.187954, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.357635], [9.187954, 45.366628], [9.196948, 45.366628], [9.196948, 45.357635], [9.187954, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.366628], [9.187954, 45.375621], [9.196948, 45.375621], [9.196948, 45.366628], [9.187954, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.375621], [9.187954, 45.384614], [9.196948, 45.384614], [9.196948, 45.375621], [9.187954, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.384614], [9.187954, 45.393608], [9.196948, 45.393608], [9.196948, 45.384614], [9.187954, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.393608], [9.187954, 45.402601], [9.196948, 45.402601], [9.196948, 45.393608], [9.187954, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.402601], [9.187954, 45.411594], [9.196948, 45.411594], [9.196948, 45.402601], [9.187954, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.411594], [9.187954, 45.420587], [9.196948, 45.420587], [9.196948, 45.411594], [9.187954, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.420587], [9.187954, 45.42958], [9.196948, 45.42958], [9.196948, 45.420587], [9.187954, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.42958], [9.187954, 45.438574], [9.196948, 45.438574], [9.196948, 45.42958], [9.187954, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.438574], [9.187954, 45.447567], [9.196948, 45.447567], [9.196948, 45.438574], [9.187954, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.447567], [9.187954, 45.45656], [9.196948, 45.45656], [9.196948, 45.447567], [9.187954, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.45656], [9.187954, 45.465553], [9.196948, 45.465553], [9.196948, 45.45656], [9.187954, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.465553], [9.187954, 45.474547], [9.196948, 45.474547], [9.196948, 45.465553], [9.187954, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.474547], [9.187954, 45.48354], [9.196948, 45.48354], [9.196948, 45.474547], [9.187954, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.48354], [9.187954, 45.492533], [9.196948, 45.492533], [9.196948, 45.48354], [9.187954, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.492533], [9.187954, 45.501526], [9.196948, 45.501526], [9.196948, 45.492533], [9.187954, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.501526], [9.187954, 45.510519], [9.196948, 45.510519], [9.196948, 45.501526], [9.187954, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.510519], [9.187954, 45.519513], [9.196948, 45.519513], [9.196948, 45.510519], [9.187954, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#0065c2", "fill": "#0065c2", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.519513], [9.187954, 45.528506], [9.196948, 45.528506], [9.196948, 45.519513], [9.187954, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 51, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.528506], [9.187954, 45.537499], [9.196948, 45.537499], [9.196948, 45.528506], [9.187954, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 50, "stroke": "#00080f", "fill": "#00080f", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.537499], [9.187954, 45.546492], [9.196948, 45.546492], [9.196948, 45.537499], [9.187954, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 41, "stroke": "#00488a", "fill": "#00488a", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.546492], [9.187954, 45.555485], [9.196948, 45.555485], [9.196948, 45.546492], [9.187954, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#0065c2", "fill": "#0065c2", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.555485], [9.187954, 45.564479], [9.196948, 45.564479], [9.196948, 45.555485], [9.187954, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#007aeb", "fill": "#007aeb", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.564479], [9.187954, 45.573472], [9.196948, 45.573472], [9.196948, 45.564479], [9.187954, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.573472], [9.187954, 45.582465], [9.196948, 45.582465], [9.196948, 45.573472], [9.187954, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.582465], [9.187954, 45.591458], [9.196948, 45.591458], [9.196948, 45.582465], [9.187954, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.591458], [9.187954, 45.600451], [9.196948, 45.600451], [9.196948, 45.591458], [9.187954, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.600451], [9.187954, 45.609445], [9.196948, 45.609445], [9.196948, 45.600451], [9.187954, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.609445], [9.187954, 45.618438], [9.196948, 45.618438], [9.196948, 45.609445], [9.187954, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.618438], [9.187954, 45.627431], [9.196948, 45.627431], [9.196948, 45.618438], [9.187954, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.187954, 45.627431], [9.187954, 45.636424], [9.196948, 45.636424], [9.196948, 45.627431], [9.187954, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.339648], [9.196948, 45.348642], [9.205941, 45.348642], [9.205941, 45.339648], [9.196948, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.348642], [9.196948, 45.357635], [9.205941, 45.357635], [9.205941, 45.348642], [9.196948, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.357635], [9.196948, 45.366628], [9.205941, 45.366628], [9.205941, 45.357635], [9.196948, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.366628], [9.196948, 45.375621], [9.205941, 45.375621], [9.205941, 45.366628], [9.196948, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.375621], [9.196948, 45.384614], [9.205941, 45.384614], [9.205941, 45.375621], [9.196948, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.384614], [9.196948, 45.393608], [9.205941, 45.393608], [9.205941, 45.384614], [9.196948, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.393608], [9.196948, 45.402601], [9.205941, 45.402601], [9.205941, 45.393608], [9.196948, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.402601], [9.196948, 45.411594], [9.205941, 45.411594], [9.205941, 45.402601], [9.196948, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.411594], [9.196948, 45.420587], [9.205941, 45.420587], [9.205941, 45.411594], [9.196948, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.420587], [9.196948, 45.42958], [9.205941, 45.42958], [9.205941, 45.420587], [9.196948, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.42958], [9.196948, 45.438574], [9.205941, 45.438574], [9.205941, 45.42958], [9.196948, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.438574], [9.196948, 45.447567], [9.205941, 45.447567], [9.205941, 45.438574], [9.196948, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.447567], [9.196948, 45.45656], [9.205941, 45.45656], [9.205941, 45.447567], [9.196948, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.45656], [9.196948, 45.465553], [9.205941, 45.465553], [9.205941, 45.45656], [9.196948, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.465553], [9.196948, 45.474547], [9.205941, 45.474547], [9.205941, 45.465553], [9.196948, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.474547], [9.196948, 45.48354], [9.205941, 45.48354], [9.205941, 45.474547], [9.196948, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.48354], [9.196948, 45.492533], [9.205941, 45.492533], [9.205941, 45.48354], [9.196948, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.492533], [9.196948, 45.501526], [9.205941, 45.501526], [9.205941, 45.492533], [9.196948, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.501526], [9.196948, 45.510519], [9.205941, 45.510519], [9.205941, 45.501526], [9.196948, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.510519], [9.196948, 45.519513], [9.205941, 45.519513], [9.205941, 45.510519], [9.196948, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#0065c2", "fill": "#0065c2", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.519513], [9.196948, 45.528506], [9.205941, 45.528506], [9.205941, 45.519513], [9.196948, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 48, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.528506], [9.196948, 45.537499], [9.205941, 45.537499], [9.205941, 45.528506], [9.196948, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 48, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.537499], [9.196948, 45.546492], [9.205941, 45.546492], [9.205941, 45.537499], [9.196948, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 40, "stroke": "#005099", "fill": "#005099", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.546492], [9.196948, 45.555485], [9.205941, 45.555485], [9.205941, 45.546492], [9.196948, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#0065c2", "fill": "#0065c2", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.555485], [9.196948, 45.564479], [9.205941, 45.564479], [9.205941, 45.555485], [9.196948, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#007aeb", "fill": "#007aeb", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.564479], [9.196948, 45.573472], [9.205941, 45.573472], [9.205941, 45.564479], [9.196948, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.573472], [9.196948, 45.582465], [9.205941, 45.582465], [9.205941, 45.573472], [9.196948, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.582465], [9.196948, 45.591458], [9.205941, 45.591458], [9.205941, 45.582465], [9.196948, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.591458], [9.196948, 45.600451], [9.205941, 45.600451], [9.205941, 45.591458], [9.196948, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.600451], [9.196948, 45.609445], [9.205941, 45.609445], [9.205941, 45.600451], [9.196948, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.609445], [9.196948, 45.618438], [9.205941, 45.618438], [9.205941, 45.609445], [9.196948, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.618438], [9.196948, 45.627431], [9.205941, 45.627431], [9.205941, 45.618438], [9.196948, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.196948, 45.627431], [9.196948, 45.636424], [9.205941, 45.636424], [9.205941, 45.627431], [9.196948, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.339648], [9.205941, 45.348642], [9.214934, 45.348642], [9.214934, 45.339648], [9.205941, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.348642], [9.205941, 45.357635], [9.214934, 45.357635], [9.214934, 45.348642], [9.205941, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.357635], [9.205941, 45.366628], [9.214934, 45.366628], [9.214934, 45.357635], [9.205941, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.366628], [9.205941, 45.375621], [9.214934, 45.375621], [9.214934, 45.366628], [9.205941, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.375621], [9.205941, 45.384614], [9.214934, 45.384614], [9.214934, 45.375621], [9.205941, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.384614], [9.205941, 45.393608], [9.214934, 45.393608], [9.214934, 45.384614], [9.205941, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.393608], [9.205941, 45.402601], [9.214934, 45.402601], [9.214934, 45.393608], [9.205941, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.402601], [9.205941, 45.411594], [9.214934, 45.411594], [9.214934, 45.402601], [9.205941, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.411594], [9.205941, 45.420587], [9.214934, 45.420587], [9.214934, 45.411594], [9.205941, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.420587], [9.205941, 45.42958], [9.214934, 45.42958], [9.214934, 45.420587], [9.205941, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.42958], [9.205941, 45.438574], [9.214934, 45.438574], [9.214934, 45.42958], [9.205941, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.438574], [9.205941, 45.447567], [9.214934, 45.447567], [9.214934, 45.438574], [9.205941, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.447567], [9.205941, 45.45656], [9.214934, 45.45656], [9.214934, 45.447567], [9.205941, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.45656], [9.205941, 45.465553], [9.214934, 45.465553], [9.214934, 45.45656], [9.205941, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.465553], [9.205941, 45.474547], [9.214934, 45.474547], [9.214934, 45.465553], [9.205941, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.474547], [9.205941, 45.48354], [9.214934, 45.48354], [9.214934, 45.474547], [9.205941, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.48354], [9.205941, 45.492533], [9.214934, 45.492533], [9.214934, 45.48354], [9.205941, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.492533], [9.205941, 45.501526], [9.214934, 45.501526], [9.214934, 45.492533], [9.205941, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.501526], [9.205941, 45.510519], [9.214934, 45.510519], [9.214934, 45.501526], [9.205941, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.510519], [9.205941, 45.519513], [9.214934, 45.519513], [9.214934, 45.510519], [9.205941, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0072db", "fill": "#0072db", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.519513], [9.205941, 45.528506], [9.214934, 45.528506], [9.214934, 45.519513], [9.205941, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 40, "stroke": "#005099", "fill": "#005099", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.528506], [9.205941, 45.537499], [9.214934, 45.537499], [9.214934, 45.528506], [9.205941, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 42, "stroke": "#00407a", "fill": "#00407a", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.537499], [9.205941, 45.546492], [9.214934, 45.546492], [9.214934, 45.537499], [9.205941, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 39, "stroke": "#0055a3", "fill": "#0055a3", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.546492], [9.205941, 45.555485], [9.214934, 45.555485], [9.214934, 45.546492], [9.205941, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#006dd1", "fill": "#006dd1", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.555485], [9.205941, 45.564479], [9.214934, 45.564479], [9.214934, 45.555485], [9.205941, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#007aeb", "fill": "#007aeb", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.564479], [9.205941, 45.573472], [9.214934, 45.573472], [9.214934, 45.564479], [9.205941, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.573472], [9.205941, 45.582465], [9.214934, 45.582465], [9.214934, 45.573472], [9.205941, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.582465], [9.205941, 45.591458], [9.214934, 45.591458], [9.214934, 45.582465], [9.205941, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.591458], [9.205941, 45.600451], [9.214934, 45.600451], [9.214934, 45.591458], [9.205941, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.600451], [9.205941, 45.609445], [9.214934, 45.609445], [9.214934, 45.600451], [9.205941, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.609445], [9.205941, 45.618438], [9.214934, 45.618438], [9.214934, 45.609445], [9.205941, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.618438], [9.205941, 45.627431], [9.214934, 45.627431], [9.214934, 45.618438], [9.205941, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.205941, 45.627431], [9.205941, 45.636424], [9.214934, 45.636424], [9.214934, 45.627431], [9.205941, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.339648], [9.214934, 45.348642], [9.223927, 45.348642], [9.223927, 45.339648], [9.214934, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.348642], [9.214934, 45.357635], [9.223927, 45.357635], [9.223927, 45.348642], [9.214934, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.357635], [9.214934, 45.366628], [9.223927, 45.366628], [9.223927, 45.357635], [9.214934, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.366628], [9.214934, 45.375621], [9.223927, 45.375621], [9.223927, 45.366628], [9.214934, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.375621], [9.214934, 45.384614], [9.223927, 45.384614], [9.223927, 45.375621], [9.214934, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.384614], [9.214934, 45.393608], [9.223927, 45.393608], [9.223927, 45.384614], [9.214934, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.393608], [9.214934, 45.402601], [9.223927, 45.402601], [9.223927, 45.393608], [9.214934, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.402601], [9.214934, 45.411594], [9.223927, 45.411594], [9.223927, 45.402601], [9.214934, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.411594], [9.214934, 45.420587], [9.223927, 45.420587], [9.223927, 45.411594], [9.214934, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.420587], [9.214934, 45.42958], [9.223927, 45.42958], [9.223927, 45.420587], [9.214934, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.42958], [9.214934, 45.438574], [9.223927, 45.438574], [9.223927, 45.42958], [9.214934, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.438574], [9.214934, 45.447567], [9.223927, 45.447567], [9.223927, 45.438574], [9.214934, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.447567], [9.214934, 45.45656], [9.223927, 45.45656], [9.223927, 45.447567], [9.214934, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.45656], [9.214934, 45.465553], [9.223927, 45.465553], [9.223927, 45.45656], [9.214934, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.465553], [9.214934, 45.474547], [9.223927, 45.474547], [9.223927, 45.465553], [9.214934, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.474547], [9.214934, 45.48354], [9.223927, 45.48354], [9.223927, 45.474547], [9.214934, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.48354], [9.214934, 45.492533], [9.223927, 45.492533], [9.223927, 45.48354], [9.214934, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.492533], [9.214934, 45.501526], [9.223927, 45.501526], [9.223927, 45.492533], [9.214934, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.501526], [9.214934, 45.510519], [9.223927, 45.510519], [9.223927, 45.501526], [9.214934, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.510519], [9.214934, 45.519513], [9.223927, 45.519513], [9.223927, 45.510519], [9.214934, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.519513], [9.214934, 45.528506], [9.223927, 45.528506], [9.223927, 45.519513], [9.214934, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#006dd1", "fill": "#006dd1", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.528506], [9.214934, 45.537499], [9.223927, 45.537499], [9.223927, 45.528506], [9.214934, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 38, "stroke": "#005db3", "fill": "#005db3", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.537499], [9.214934, 45.546492], [9.223927, 45.546492], [9.223927, 45.537499], [9.214934, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#006dd1", "fill": "#006dd1", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.546492], [9.214934, 45.555485], [9.223927, 45.555485], [9.223927, 45.546492], [9.214934, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0072db", "fill": "#0072db", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.555485], [9.214934, 45.564479], [9.223927, 45.564479], [9.223927, 45.555485], [9.214934, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#007aeb", "fill": "#007aeb", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.564479], [9.214934, 45.573472], [9.223927, 45.573472], [9.223927, 45.564479], [9.214934, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.573472], [9.214934, 45.582465], [9.223927, 45.582465], [9.223927, 45.573472], [9.214934, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.582465], [9.214934, 45.591458], [9.223927, 45.591458], [9.223927, 45.582465], [9.214934, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.591458], [9.214934, 45.600451], [9.223927, 45.600451], [9.223927, 45.591458], [9.214934, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.600451], [9.214934, 45.609445], [9.223927, 45.609445], [9.223927, 45.600451], [9.214934, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.609445], [9.214934, 45.618438], [9.223927, 45.618438], [9.223927, 45.609445], [9.214934, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.618438], [9.214934, 45.627431], [9.223927, 45.627431], [9.223927, 45.618438], [9.214934, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.214934, 45.627431], [9.214934, 45.636424], [9.223927, 45.636424], [9.223927, 45.627431], [9.214934, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.339648], [9.223927, 45.348642], [9.232921, 45.348642], [9.232921, 45.339648], [9.223927, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.348642], [9.223927, 45.357635], [9.232921, 45.357635], [9.232921, 45.348642], [9.223927, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.357635], [9.223927, 45.366628], [9.232921, 45.366628], [9.232921, 45.357635], [9.223927, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.366628], [9.223927, 45.375621], [9.232921, 45.375621], [9.232921, 45.366628], [9.223927, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.375621], [9.223927, 45.384614], [9.232921, 45.384614], [9.232921, 45.375621], [9.223927, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.384614], [9.223927, 45.393608], [9.232921, 45.393608], [9.232921, 45.384614], [9.223927, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.393608], [9.223927, 45.402601], [9.232921, 45.402601], [9.232921, 45.393608], [9.223927, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.402601], [9.223927, 45.411594], [9.232921, 45.411594], [9.232921, 45.402601], [9.223927, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.411594], [9.223927, 45.420587], [9.232921, 45.420587], [9.232921, 45.411594], [9.223927, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.420587], [9.223927, 45.42958], [9.232921, 45.42958], [9.232921, 45.420587], [9.223927, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.42958], [9.223927, 45.438574], [9.232921, 45.438574], [9.232921, 45.42958], [9.223927, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.438574], [9.223927, 45.447567], [9.232921, 45.447567], [9.232921, 45.438574], [9.223927, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.447567], [9.223927, 45.45656], [9.232921, 45.45656], [9.232921, 45.447567], [9.223927, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.45656], [9.223927, 45.465553], [9.232921, 45.465553], [9.232921, 45.45656], [9.223927, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.465553], [9.223927, 45.474547], [9.232921, 45.474547], [9.232921, 45.465553], [9.223927, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.474547], [9.223927, 45.48354], [9.232921, 45.48354], [9.232921, 45.474547], [9.223927, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.48354], [9.223927, 45.492533], [9.232921, 45.492533], [9.232921, 45.48354], [9.223927, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.492533], [9.223927, 45.501526], [9.232921, 45.501526], [9.232921, 45.492533], [9.223927, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.501526], [9.223927, 45.510519], [9.232921, 45.510519], [9.232921, 45.501526], [9.223927, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.510519], [9.223927, 45.519513], [9.232921, 45.519513], [9.232921, 45.510519], [9.223927, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.519513], [9.223927, 45.528506], [9.232921, 45.528506], [9.232921, 45.519513], [9.223927, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#007aeb", "fill": "#007aeb", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.528506], [9.223927, 45.537499], [9.232921, 45.537499], [9.232921, 45.528506], [9.223927, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0072db", "fill": "#0072db", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.537499], [9.223927, 45.546492], [9.232921, 45.546492], [9.232921, 45.537499], [9.223927, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0072db", "fill": "#0072db", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.546492], [9.223927, 45.555485], [9.232921, 45.555485], [9.232921, 45.546492], [9.223927, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#007aeb", "fill": "#007aeb", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.555485], [9.223927, 45.564479], [9.232921, 45.564479], [9.232921, 45.555485], [9.223927, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.564479], [9.223927, 45.573472], [9.232921, 45.573472], [9.232921, 45.564479], [9.223927, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.573472], [9.223927, 45.582465], [9.232921, 45.582465], [9.232921, 45.573472], [9.223927, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.582465], [9.223927, 45.591458], [9.232921, 45.591458], [9.232921, 45.582465], [9.223927, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.591458], [9.223927, 45.600451], [9.232921, 45.600451], [9.232921, 45.591458], [9.223927, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.600451], [9.223927, 45.609445], [9.232921, 45.609445], [9.232921, 45.600451], [9.223927, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.609445], [9.223927, 45.618438], [9.232921, 45.618438], [9.232921, 45.609445], [9.223927, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.618438], [9.223927, 45.627431], [9.232921, 45.627431], [9.232921, 45.618438], [9.223927, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.223927, 45.627431], [9.223927, 45.636424], [9.232921, 45.636424], [9.232921, 45.627431], [9.223927, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.339648], [9.232921, 45.348642], [9.241914, 45.348642], [9.241914, 45.339648], [9.232921, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.348642], [9.232921, 45.357635], [9.241914, 45.357635], [9.241914, 45.348642], [9.232921, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.357635], [9.232921, 45.366628], [9.241914, 45.366628], [9.241914, 45.357635], [9.232921, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.366628], [9.232921, 45.375621], [9.241914, 45.375621], [9.241914, 45.366628], [9.232921, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.375621], [9.232921, 45.384614], [9.241914, 45.384614], [9.241914, 45.375621], [9.232921, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.384614], [9.232921, 45.393608], [9.241914, 45.393608], [9.241914, 45.384614], [9.232921, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.393608], [9.232921, 45.402601], [9.241914, 45.402601], [9.241914, 45.393608], [9.232921, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.402601], [9.232921, 45.411594], [9.241914, 45.411594], [9.241914, 45.402601], [9.232921, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.411594], [9.232921, 45.420587], [9.241914, 45.420587], [9.241914, 45.411594], [9.232921, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.420587], [9.232921, 45.42958], [9.241914, 45.42958], [9.241914, 45.420587], [9.232921, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.42958], [9.232921, 45.438574], [9.241914, 45.438574], [9.241914, 45.42958], [9.232921, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.438574], [9.232921, 45.447567], [9.241914, 45.447567], [9.241914, 45.438574], [9.232921, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.447567], [9.232921, 45.45656], [9.241914, 45.45656], [9.241914, 45.447567], [9.232921, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.45656], [9.232921, 45.465553], [9.241914, 45.465553], [9.241914, 45.45656], [9.232921, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.465553], [9.232921, 45.474547], [9.241914, 45.474547], [9.241914, 45.465553], [9.232921, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.474547], [9.232921, 45.48354], [9.241914, 45.48354], [9.241914, 45.474547], [9.232921, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.48354], [9.232921, 45.492533], [9.241914, 45.492533], [9.241914, 45.48354], [9.232921, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.492533], [9.232921, 45.501526], [9.241914, 45.501526], [9.241914, 45.492533], [9.232921, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.501526], [9.232921, 45.510519], [9.241914, 45.510519], [9.241914, 45.501526], [9.232921, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.510519], [9.232921, 45.519513], [9.241914, 45.519513], [9.241914, 45.510519], [9.232921, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.519513], [9.232921, 45.528506], [9.241914, 45.528506], [9.241914, 45.519513], [9.232921, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.528506], [9.232921, 45.537499], [9.241914, 45.537499], [9.241914, 45.528506], [9.232921, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.537499], [9.232921, 45.546492], [9.241914, 45.546492], [9.241914, 45.537499], [9.232921, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.546492], [9.232921, 45.555485], [9.241914, 45.555485], [9.241914, 45.546492], [9.232921, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.555485], [9.232921, 45.564479], [9.241914, 45.564479], [9.241914, 45.555485], [9.232921, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.564479], [9.232921, 45.573472], [9.241914, 45.573472], [9.241914, 45.564479], [9.232921, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.573472], [9.232921, 45.582465], [9.241914, 45.582465], [9.241914, 45.573472], [9.232921, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.582465], [9.232921, 45.591458], [9.241914, 45.591458], [9.241914, 45.582465], [9.232921, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.591458], [9.232921, 45.600451], [9.241914, 45.600451], [9.241914, 45.591458], [9.232921, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.600451], [9.232921, 45.609445], [9.241914, 45.609445], [9.241914, 45.600451], [9.232921, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.609445], [9.232921, 45.618438], [9.241914, 45.618438], [9.241914, 45.609445], [9.232921, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.618438], [9.232921, 45.627431], [9.241914, 45.627431], [9.241914, 45.618438], [9.232921, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.232921, 45.627431], [9.232921, 45.636424], [9.241914, 45.636424], [9.241914, 45.627431], [9.232921, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.339648], [9.241914, 45.348642], [9.250907, 45.348642], [9.250907, 45.339648], [9.241914, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.348642], [9.241914, 45.357635], [9.250907, 45.357635], [9.250907, 45.348642], [9.241914, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.357635], [9.241914, 45.366628], [9.250907, 45.366628], [9.250907, 45.357635], [9.241914, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.366628], [9.241914, 45.375621], [9.250907, 45.375621], [9.250907, 45.366628], [9.241914, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.375621], [9.241914, 45.384614], [9.250907, 45.384614], [9.250907, 45.375621], [9.241914, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.384614], [9.241914, 45.393608], [9.250907, 45.393608], [9.250907, 45.384614], [9.241914, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.393608], [9.241914, 45.402601], [9.250907, 45.402601], [9.250907, 45.393608], [9.241914, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.402601], [9.241914, 45.411594], [9.250907, 45.411594], [9.250907, 45.402601], [9.241914, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.411594], [9.241914, 45.420587], [9.250907, 45.420587], [9.250907, 45.411594], [9.241914, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.420587], [9.241914, 45.42958], [9.250907, 45.42958], [9.250907, 45.420587], [9.241914, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.42958], [9.241914, 45.438574], [9.250907, 45.438574], [9.250907, 45.42958], [9.241914, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.438574], [9.241914, 45.447567], [9.250907, 45.447567], [9.250907, 45.438574], [9.241914, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.447567], [9.241914, 45.45656], [9.250907, 45.45656], [9.250907, 45.447567], [9.241914, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.45656], [9.241914, 45.465553], [9.250907, 45.465553], [9.250907, 45.45656], [9.241914, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.465553], [9.241914, 45.474547], [9.250907, 45.474547], [9.250907, 45.465553], [9.241914, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.474547], [9.241914, 45.48354], [9.250907, 45.48354], [9.250907, 45.474547], [9.241914, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.48354], [9.241914, 45.492533], [9.250907, 45.492533], [9.250907, 45.48354], [9.241914, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.492533], [9.241914, 45.501526], [9.250907, 45.501526], [9.250907, 45.492533], [9.241914, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.501526], [9.241914, 45.510519], [9.250907, 45.510519], [9.250907, 45.501526], [9.241914, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.510519], [9.241914, 45.519513], [9.250907, 45.519513], [9.250907, 45.510519], [9.241914, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.519513], [9.241914, 45.528506], [9.250907, 45.528506], [9.250907, 45.519513], [9.241914, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.528506], [9.241914, 45.537499], [9.250907, 45.537499], [9.250907, 45.528506], [9.241914, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.537499], [9.241914, 45.546492], [9.250907, 45.546492], [9.250907, 45.537499], [9.241914, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.546492], [9.241914, 45.555485], [9.250907, 45.555485], [9.250907, 45.546492], [9.241914, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.555485], [9.241914, 45.564479], [9.250907, 45.564479], [9.250907, 45.555485], [9.241914, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.564479], [9.241914, 45.573472], [9.250907, 45.573472], [9.250907, 45.564479], [9.241914, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.573472], [9.241914, 45.582465], [9.250907, 45.582465], [9.250907, 45.573472], [9.241914, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.582465], [9.241914, 45.591458], [9.250907, 45.591458], [9.250907, 45.582465], [9.241914, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.591458], [9.241914, 45.600451], [9.250907, 45.600451], [9.250907, 45.591458], [9.241914, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.600451], [9.241914, 45.609445], [9.250907, 45.609445], [9.250907, 45.600451], [9.241914, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.609445], [9.241914, 45.618438], [9.250907, 45.618438], [9.250907, 45.609445], [9.241914, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.618438], [9.241914, 45.627431], [9.250907, 45.627431], [9.250907, 45.618438], [9.241914, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.241914, 45.627431], [9.241914, 45.636424], [9.250907, 45.636424], [9.250907, 45.627431], [9.241914, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.339648], [9.250907, 45.348642], [9.2599, 45.348642], [9.2599, 45.339648], [9.250907, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.348642], [9.250907, 45.357635], [9.2599, 45.357635], [9.2599, 45.348642], [9.250907, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.357635], [9.250907, 45.366628], [9.2599, 45.366628], [9.2599, 45.357635], [9.250907, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.366628], [9.250907, 45.375621], [9.2599, 45.375621], [9.2599, 45.366628], [9.250907, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.375621], [9.250907, 45.384614], [9.2599, 45.384614], [9.2599, 45.375621], [9.250907, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.384614], [9.250907, 45.393608], [9.2599, 45.393608], [9.2599, 45.384614], [9.250907, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.393608], [9.250907, 45.402601], [9.2599, 45.402601], [9.2599, 45.393608], [9.250907, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.402601], [9.250907, 45.411594], [9.2599, 45.411594], [9.2599, 45.402601], [9.250907, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.411594], [9.250907, 45.420587], [9.2599, 45.420587], [9.2599, 45.411594], [9.250907, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.420587], [9.250907, 45.42958], [9.2599, 45.42958], [9.2599, 45.420587], [9.250907, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.42958], [9.250907, 45.438574], [9.2599, 45.438574], [9.2599, 45.42958], [9.250907, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.438574], [9.250907, 45.447567], [9.2599, 45.447567], [9.2599, 45.438574], [9.250907, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.447567], [9.250907, 45.45656], [9.2599, 45.45656], [9.2599, 45.447567], [9.250907, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.45656], [9.250907, 45.465553], [9.2599, 45.465553], [9.2599, 45.45656], [9.250907, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.465553], [9.250907, 45.474547], [9.2599, 45.474547], [9.2599, 45.465553], [9.250907, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.474547], [9.250907, 45.48354], [9.2599, 45.48354], [9.2599, 45.474547], [9.250907, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.48354], [9.250907, 45.492533], [9.2599, 45.492533], [9.2599, 45.48354], [9.250907, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.492533], [9.250907, 45.501526], [9.2599, 45.501526], [9.2599, 45.492533], [9.250907, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.501526], [9.250907, 45.510519], [9.2599, 45.510519], [9.2599, 45.501526], [9.250907, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.510519], [9.250907, 45.519513], [9.2599, 45.519513], [9.2599, 45.510519], [9.250907, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.519513], [9.250907, 45.528506], [9.2599, 45.528506], [9.2599, 45.519513], [9.250907, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.528506], [9.250907, 45.537499], [9.2599, 45.537499], [9.2599, 45.528506], [9.250907, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.537499], [9.250907, 45.546492], [9.2599, 45.546492], [9.2599, 45.537499], [9.250907, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.546492], [9.250907, 45.555485], [9.2599, 45.555485], [9.2599, 45.546492], [9.250907, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.555485], [9.250907, 45.564479], [9.2599, 45.564479], [9.2599, 45.555485], [9.250907, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.564479], [9.250907, 45.573472], [9.2599, 45.573472], [9.2599, 45.564479], [9.250907, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.573472], [9.250907, 45.582465], [9.2599, 45.582465], [9.2599, 45.573472], [9.250907, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.582465], [9.250907, 45.591458], [9.2599, 45.591458], [9.2599, 45.582465], [9.250907, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.591458], [9.250907, 45.600451], [9.2599, 45.600451], [9.2599, 45.591458], [9.250907, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.600451], [9.250907, 45.609445], [9.2599, 45.609445], [9.2599, 45.600451], [9.250907, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.609445], [9.250907, 45.618438], [9.2599, 45.618438], [9.2599, 45.609445], [9.250907, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.618438], [9.250907, 45.627431], [9.2599, 45.627431], [9.2599, 45.618438], [9.250907, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.250907, 45.627431], [9.250907, 45.636424], [9.2599, 45.636424], [9.2599, 45.627431], [9.250907, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.339648], [9.2599, 45.348642], [9.268893, 45.348642], [9.268893, 45.339648], [9.2599, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.348642], [9.2599, 45.357635], [9.268893, 45.357635], [9.268893, 45.348642], [9.2599, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.357635], [9.2599, 45.366628], [9.268893, 45.366628], [9.268893, 45.357635], [9.2599, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.366628], [9.2599, 45.375621], [9.268893, 45.375621], [9.268893, 45.366628], [9.2599, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.375621], [9.2599, 45.384614], [9.268893, 45.384614], [9.268893, 45.375621], [9.2599, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.384614], [9.2599, 45.393608], [9.268893, 45.393608], [9.268893, 45.384614], [9.2599, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.393608], [9.2599, 45.402601], [9.268893, 45.402601], [9.268893, 45.393608], [9.2599, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.402601], [9.2599, 45.411594], [9.268893, 45.411594], [9.268893, 45.402601], [9.2599, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.411594], [9.2599, 45.420587], [9.268893, 45.420587], [9.268893, 45.411594], [9.2599, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.420587], [9.2599, 45.42958], [9.268893, 45.42958], [9.268893, 45.420587], [9.2599, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.42958], [9.2599, 45.438574], [9.268893, 45.438574], [9.268893, 45.42958], [9.2599, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.438574], [9.2599, 45.447567], [9.268893, 45.447567], [9.268893, 45.438574], [9.2599, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.447567], [9.2599, 45.45656], [9.268893, 45.45656], [9.268893, 45.447567], [9.2599, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.45656], [9.2599, 45.465553], [9.268893, 45.465553], [9.268893, 45.45656], [9.2599, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.465553], [9.2599, 45.474547], [9.268893, 45.474547], [9.268893, 45.465553], [9.2599, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.474547], [9.2599, 45.48354], [9.268893, 45.48354], [9.268893, 45.474547], [9.2599, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.48354], [9.2599, 45.492533], [9.268893, 45.492533], [9.268893, 45.48354], [9.2599, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.492533], [9.2599, 45.501526], [9.268893, 45.501526], [9.268893, 45.492533], [9.2599, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.501526], [9.2599, 45.510519], [9.268893, 45.510519], [9.268893, 45.501526], [9.2599, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.510519], [9.2599, 45.519513], [9.268893, 45.519513], [9.268893, 45.510519], [9.2599, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.519513], [9.2599, 45.528506], [9.268893, 45.528506], [9.268893, 45.519513], [9.2599, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.528506], [9.2599, 45.537499], [9.268893, 45.537499], [9.268893, 45.528506], [9.2599, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.537499], [9.2599, 45.546492], [9.268893, 45.546492], [9.268893, 45.537499], [9.2599, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.546492], [9.2599, 45.555485], [9.268893, 45.555485], [9.268893, 45.546492], [9.2599, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.555485], [9.2599, 45.564479], [9.268893, 45.564479], [9.268893, 45.555485], [9.2599, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.564479], [9.2599, 45.573472], [9.268893, 45.573472], [9.268893, 45.564479], [9.2599, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.573472], [9.2599, 45.582465], [9.268893, 45.582465], [9.268893, 45.573472], [9.2599, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.582465], [9.2599, 45.591458], [9.268893, 45.591458], [9.268893, 45.582465], [9.2599, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.591458], [9.2599, 45.600451], [9.268893, 45.600451], [9.268893, 45.591458], [9.2599, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.600451], [9.2599, 45.609445], [9.268893, 45.609445], [9.268893, 45.600451], [9.2599, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.609445], [9.2599, 45.618438], [9.268893, 45.618438], [9.268893, 45.609445], [9.2599, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.618438], [9.2599, 45.627431], [9.268893, 45.627431], [9.268893, 45.618438], [9.2599, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2599, 45.627431], [9.2599, 45.636424], [9.268893, 45.636424], [9.268893, 45.627431], [9.2599, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.339648], [9.268893, 45.348642], [9.277887, 45.348642], [9.277887, 45.339648], [9.268893, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.348642], [9.268893, 45.357635], [9.277887, 45.357635], [9.277887, 45.348642], [9.268893, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.357635], [9.268893, 45.366628], [9.277887, 45.366628], [9.277887, 45.357635], [9.268893, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.366628], [9.268893, 45.375621], [9.277887, 45.375621], [9.277887, 45.366628], [9.268893, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.375621], [9.268893, 45.384614], [9.277887, 45.384614], [9.277887, 45.375621], [9.268893, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.384614], [9.268893, 45.393608], [9.277887, 45.393608], [9.277887, 45.384614], [9.268893, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.393608], [9.268893, 45.402601], [9.277887, 45.402601], [9.277887, 45.393608], [9.268893, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.402601], [9.268893, 45.411594], [9.277887, 45.411594], [9.277887, 45.402601], [9.268893, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.411594], [9.268893, 45.420587], [9.277887, 45.420587], [9.277887, 45.411594], [9.268893, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.420587], [9.268893, 45.42958], [9.277887, 45.42958], [9.277887, 45.420587], [9.268893, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.42958], [9.268893, 45.438574], [9.277887, 45.438574], [9.277887, 45.42958], [9.268893, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.438574], [9.268893, 45.447567], [9.277887, 45.447567], [9.277887, 45.438574], [9.268893, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.447567], [9.268893, 45.45656], [9.277887, 45.45656], [9.277887, 45.447567], [9.268893, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.45656], [9.268893, 45.465553], [9.277887, 45.465553], [9.277887, 45.45656], [9.268893, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.465553], [9.268893, 45.474547], [9.277887, 45.474547], [9.277887, 45.465553], [9.268893, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.474547], [9.268893, 45.48354], [9.277887, 45.48354], [9.277887, 45.474547], [9.268893, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.48354], [9.268893, 45.492533], [9.277887, 45.492533], [9.277887, 45.48354], [9.268893, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.492533], [9.268893, 45.501526], [9.277887, 45.501526], [9.277887, 45.492533], [9.268893, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.501526], [9.268893, 45.510519], [9.277887, 45.510519], [9.277887, 45.501526], [9.268893, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.510519], [9.268893, 45.519513], [9.277887, 45.519513], [9.277887, 45.510519], [9.268893, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.519513], [9.268893, 45.528506], [9.277887, 45.528506], [9.277887, 45.519513], [9.268893, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.528506], [9.268893, 45.537499], [9.277887, 45.537499], [9.277887, 45.528506], [9.268893, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.537499], [9.268893, 45.546492], [9.277887, 45.546492], [9.277887, 45.537499], [9.268893, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.546492], [9.268893, 45.555485], [9.277887, 45.555485], [9.277887, 45.546492], [9.268893, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.555485], [9.268893, 45.564479], [9.277887, 45.564479], [9.277887, 45.555485], [9.268893, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.564479], [9.268893, 45.573472], [9.277887, 45.573472], [9.277887, 45.564479], [9.268893, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.573472], [9.268893, 45.582465], [9.277887, 45.582465], [9.277887, 45.573472], [9.268893, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.582465], [9.268893, 45.591458], [9.277887, 45.591458], [9.277887, 45.582465], [9.268893, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.591458], [9.268893, 45.600451], [9.277887, 45.600451], [9.277887, 45.591458], [9.268893, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.600451], [9.268893, 45.609445], [9.277887, 45.609445], [9.277887, 45.600451], [9.268893, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.609445], [9.268893, 45.618438], [9.277887, 45.618438], [9.277887, 45.609445], [9.268893, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.618438], [9.268893, 45.627431], [9.277887, 45.627431], [9.277887, 45.618438], [9.268893, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.268893, 45.627431], [9.268893, 45.636424], [9.277887, 45.636424], [9.277887, 45.627431], [9.268893, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.339648], [9.277887, 45.348642], [9.28688, 45.348642], [9.28688, 45.339648], [9.277887, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.348642], [9.277887, 45.357635], [9.28688, 45.357635], [9.28688, 45.348642], [9.277887, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.357635], [9.277887, 45.366628], [9.28688, 45.366628], [9.28688, 45.357635], [9.277887, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.366628], [9.277887, 45.375621], [9.28688, 45.375621], [9.28688, 45.366628], [9.277887, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.375621], [9.277887, 45.384614], [9.28688, 45.384614], [9.28688, 45.375621], [9.277887, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.384614], [9.277887, 45.393608], [9.28688, 45.393608], [9.28688, 45.384614], [9.277887, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.393608], [9.277887, 45.402601], [9.28688, 45.402601], [9.28688, 45.393608], [9.277887, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.402601], [9.277887, 45.411594], [9.28688, 45.411594], [9.28688, 45.402601], [9.277887, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.411594], [9.277887, 45.420587], [9.28688, 45.420587], [9.28688, 45.411594], [9.277887, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.420587], [9.277887, 45.42958], [9.28688, 45.42958], [9.28688, 45.420587], [9.277887, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.42958], [9.277887, 45.438574], [9.28688, 45.438574], [9.28688, 45.42958], [9.277887, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.438574], [9.277887, 45.447567], [9.28688, 45.447567], [9.28688, 45.438574], [9.277887, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.447567], [9.277887, 45.45656], [9.28688, 45.45656], [9.28688, 45.447567], [9.277887, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.45656], [9.277887, 45.465553], [9.28688, 45.465553], [9.28688, 45.45656], [9.277887, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.465553], [9.277887, 45.474547], [9.28688, 45.474547], [9.28688, 45.465553], [9.277887, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.474547], [9.277887, 45.48354], [9.28688, 45.48354], [9.28688, 45.474547], [9.277887, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.48354], [9.277887, 45.492533], [9.28688, 45.492533], [9.28688, 45.48354], [9.277887, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.492533], [9.277887, 45.501526], [9.28688, 45.501526], [9.28688, 45.492533], [9.277887, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.501526], [9.277887, 45.510519], [9.28688, 45.510519], [9.28688, 45.501526], [9.277887, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.510519], [9.277887, 45.519513], [9.28688, 45.519513], [9.28688, 45.510519], [9.277887, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.519513], [9.277887, 45.528506], [9.28688, 45.528506], [9.28688, 45.519513], [9.277887, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.528506], [9.277887, 45.537499], [9.28688, 45.537499], [9.28688, 45.528506], [9.277887, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.537499], [9.277887, 45.546492], [9.28688, 45.546492], [9.28688, 45.537499], [9.277887, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.546492], [9.277887, 45.555485], [9.28688, 45.555485], [9.28688, 45.546492], [9.277887, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.555485], [9.277887, 45.564479], [9.28688, 45.564479], [9.28688, 45.555485], [9.277887, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.564479], [9.277887, 45.573472], [9.28688, 45.573472], [9.28688, 45.564479], [9.277887, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.573472], [9.277887, 45.582465], [9.28688, 45.582465], [9.28688, 45.573472], [9.277887, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.582465], [9.277887, 45.591458], [9.28688, 45.591458], [9.28688, 45.582465], [9.277887, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.591458], [9.277887, 45.600451], [9.28688, 45.600451], [9.28688, 45.591458], [9.277887, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.600451], [9.277887, 45.609445], [9.28688, 45.609445], [9.28688, 45.600451], [9.277887, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.609445], [9.277887, 45.618438], [9.28688, 45.618438], [9.28688, 45.609445], [9.277887, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.618438], [9.277887, 45.627431], [9.28688, 45.627431], [9.28688, 45.618438], [9.277887, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.277887, 45.627431], [9.277887, 45.636424], [9.28688, 45.636424], [9.28688, 45.627431], [9.277887, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.339648], [9.28688, 45.348642], [9.295873, 45.348642], [9.295873, 45.339648], [9.28688, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.348642], [9.28688, 45.357635], [9.295873, 45.357635], [9.295873, 45.348642], [9.28688, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.357635], [9.28688, 45.366628], [9.295873, 45.366628], [9.295873, 45.357635], [9.28688, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.366628], [9.28688, 45.375621], [9.295873, 45.375621], [9.295873, 45.366628], [9.28688, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.375621], [9.28688, 45.384614], [9.295873, 45.384614], [9.295873, 45.375621], [9.28688, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.384614], [9.28688, 45.393608], [9.295873, 45.393608], [9.295873, 45.384614], [9.28688, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.393608], [9.28688, 45.402601], [9.295873, 45.402601], [9.295873, 45.393608], [9.28688, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.402601], [9.28688, 45.411594], [9.295873, 45.411594], [9.295873, 45.402601], [9.28688, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.411594], [9.28688, 45.420587], [9.295873, 45.420587], [9.295873, 45.411594], [9.28688, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.420587], [9.28688, 45.42958], [9.295873, 45.42958], [9.295873, 45.420587], [9.28688, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.42958], [9.28688, 45.438574], [9.295873, 45.438574], [9.295873, 45.42958], [9.28688, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.438574], [9.28688, 45.447567], [9.295873, 45.447567], [9.295873, 45.438574], [9.28688, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.447567], [9.28688, 45.45656], [9.295873, 45.45656], [9.295873, 45.447567], [9.28688, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.45656], [9.28688, 45.465553], [9.295873, 45.465553], [9.295873, 45.45656], [9.28688, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.465553], [9.28688, 45.474547], [9.295873, 45.474547], [9.295873, 45.465553], [9.28688, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.474547], [9.28688, 45.48354], [9.295873, 45.48354], [9.295873, 45.474547], [9.28688, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.48354], [9.28688, 45.492533], [9.295873, 45.492533], [9.295873, 45.48354], [9.28688, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.492533], [9.28688, 45.501526], [9.295873, 45.501526], [9.295873, 45.492533], [9.28688, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.501526], [9.28688, 45.510519], [9.295873, 45.510519], [9.295873, 45.501526], [9.28688, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.510519], [9.28688, 45.519513], [9.295873, 45.519513], [9.295873, 45.510519], [9.28688, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.519513], [9.28688, 45.528506], [9.295873, 45.528506], [9.295873, 45.519513], [9.28688, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.528506], [9.28688, 45.537499], [9.295873, 45.537499], [9.295873, 45.528506], [9.28688, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.537499], [9.28688, 45.546492], [9.295873, 45.546492], [9.295873, 45.537499], [9.28688, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.546492], [9.28688, 45.555485], [9.295873, 45.555485], [9.295873, 45.546492], [9.28688, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.555485], [9.28688, 45.564479], [9.295873, 45.564479], [9.295873, 45.555485], [9.28688, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.564479], [9.28688, 45.573472], [9.295873, 45.573472], [9.295873, 45.564479], [9.28688, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.573472], [9.28688, 45.582465], [9.295873, 45.582465], [9.295873, 45.573472], [9.28688, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.582465], [9.28688, 45.591458], [9.295873, 45.591458], [9.295873, 45.582465], [9.28688, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.591458], [9.28688, 45.600451], [9.295873, 45.600451], [9.295873, 45.591458], [9.28688, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.600451], [9.28688, 45.609445], [9.295873, 45.609445], [9.295873, 45.600451], [9.28688, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.609445], [9.28688, 45.618438], [9.295873, 45.618438], [9.295873, 45.609445], [9.28688, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.618438], [9.28688, 45.627431], [9.295873, 45.627431], [9.295873, 45.618438], [9.28688, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.28688, 45.627431], [9.28688, 45.636424], [9.295873, 45.636424], [9.295873, 45.627431], [9.28688, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.339648], [9.295873, 45.348642], [9.304866, 45.348642], [9.304866, 45.339648], [9.295873, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.348642], [9.295873, 45.357635], [9.304866, 45.357635], [9.304866, 45.348642], [9.295873, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.357635], [9.295873, 45.366628], [9.304866, 45.366628], [9.304866, 45.357635], [9.295873, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.366628], [9.295873, 45.375621], [9.304866, 45.375621], [9.304866, 45.366628], [9.295873, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.375621], [9.295873, 45.384614], [9.304866, 45.384614], [9.304866, 45.375621], [9.295873, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.384614], [9.295873, 45.393608], [9.304866, 45.393608], [9.304866, 45.384614], [9.295873, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.393608], [9.295873, 45.402601], [9.304866, 45.402601], [9.304866, 45.393608], [9.295873, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.402601], [9.295873, 45.411594], [9.304866, 45.411594], [9.304866, 45.402601], [9.295873, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.411594], [9.295873, 45.420587], [9.304866, 45.420587], [9.304866, 45.411594], [9.295873, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.420587], [9.295873, 45.42958], [9.304866, 45.42958], [9.304866, 45.420587], [9.295873, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.42958], [9.295873, 45.438574], [9.304866, 45.438574], [9.304866, 45.42958], [9.295873, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.438574], [9.295873, 45.447567], [9.304866, 45.447567], [9.304866, 45.438574], [9.295873, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.447567], [9.295873, 45.45656], [9.304866, 45.45656], [9.304866, 45.447567], [9.295873, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.45656], [9.295873, 45.465553], [9.304866, 45.465553], [9.304866, 45.45656], [9.295873, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.465553], [9.295873, 45.474547], [9.304866, 45.474547], [9.304866, 45.465553], [9.295873, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.474547], [9.295873, 45.48354], [9.304866, 45.48354], [9.304866, 45.474547], [9.295873, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.48354], [9.295873, 45.492533], [9.304866, 45.492533], [9.304866, 45.48354], [9.295873, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.492533], [9.295873, 45.501526], [9.304866, 45.501526], [9.304866, 45.492533], [9.295873, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.501526], [9.295873, 45.510519], [9.304866, 45.510519], [9.304866, 45.501526], [9.295873, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.510519], [9.295873, 45.519513], [9.304866, 45.519513], [9.304866, 45.510519], [9.295873, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.519513], [9.295873, 45.528506], [9.304866, 45.528506], [9.304866, 45.519513], [9.295873, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.528506], [9.295873, 45.537499], [9.304866, 45.537499], [9.304866, 45.528506], [9.295873, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.537499], [9.295873, 45.546492], [9.304866, 45.546492], [9.304866, 45.537499], [9.295873, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.546492], [9.295873, 45.555485], [9.304866, 45.555485], [9.304866, 45.546492], [9.295873, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.555485], [9.295873, 45.564479], [9.304866, 45.564479], [9.304866, 45.555485], [9.295873, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.564479], [9.295873, 45.573472], [9.304866, 45.573472], [9.304866, 45.564479], [9.295873, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.573472], [9.295873, 45.582465], [9.304866, 45.582465], [9.304866, 45.573472], [9.295873, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.582465], [9.295873, 45.591458], [9.304866, 45.591458], [9.304866, 45.582465], [9.295873, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.591458], [9.295873, 45.600451], [9.304866, 45.600451], [9.304866, 45.591458], [9.295873, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.600451], [9.295873, 45.609445], [9.304866, 45.609445], [9.304866, 45.600451], [9.295873, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.609445], [9.295873, 45.618438], [9.304866, 45.618438], [9.304866, 45.609445], [9.295873, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.618438], [9.295873, 45.627431], [9.304866, 45.627431], [9.304866, 45.618438], [9.295873, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.295873, 45.627431], [9.295873, 45.636424], [9.304866, 45.636424], [9.304866, 45.627431], [9.295873, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.339648], [9.304866, 45.348642], [9.313859, 45.348642], [9.313859, 45.339648], [9.304866, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.348642], [9.304866, 45.357635], [9.313859, 45.357635], [9.313859, 45.348642], [9.304866, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.357635], [9.304866, 45.366628], [9.313859, 45.366628], [9.313859, 45.357635], [9.304866, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.366628], [9.304866, 45.375621], [9.313859, 45.375621], [9.313859, 45.366628], [9.304866, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.375621], [9.304866, 45.384614], [9.313859, 45.384614], [9.313859, 45.375621], [9.304866, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.384614], [9.304866, 45.393608], [9.313859, 45.393608], [9.313859, 45.384614], [9.304866, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.393608], [9.304866, 45.402601], [9.313859, 45.402601], [9.313859, 45.393608], [9.304866, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.402601], [9.304866, 45.411594], [9.313859, 45.411594], [9.313859, 45.402601], [9.304866, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.411594], [9.304866, 45.420587], [9.313859, 45.420587], [9.313859, 45.411594], [9.304866, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.420587], [9.304866, 45.42958], [9.313859, 45.42958], [9.313859, 45.420587], [9.304866, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.42958], [9.304866, 45.438574], [9.313859, 45.438574], [9.313859, 45.42958], [9.304866, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.438574], [9.304866, 45.447567], [9.313859, 45.447567], [9.313859, 45.438574], [9.304866, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.447567], [9.304866, 45.45656], [9.313859, 45.45656], [9.313859, 45.447567], [9.304866, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.45656], [9.304866, 45.465553], [9.313859, 45.465553], [9.313859, 45.45656], [9.304866, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.465553], [9.304866, 45.474547], [9.313859, 45.474547], [9.313859, 45.465553], [9.304866, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.474547], [9.304866, 45.48354], [9.313859, 45.48354], [9.313859, 45.474547], [9.304866, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.48354], [9.304866, 45.492533], [9.313859, 45.492533], [9.313859, 45.48354], [9.304866, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.492533], [9.304866, 45.501526], [9.313859, 45.501526], [9.313859, 45.492533], [9.304866, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.501526], [9.304866, 45.510519], [9.313859, 45.510519], [9.313859, 45.501526], [9.304866, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.510519], [9.304866, 45.519513], [9.313859, 45.519513], [9.313859, 45.510519], [9.304866, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.519513], [9.304866, 45.528506], [9.313859, 45.528506], [9.313859, 45.519513], [9.304866, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.528506], [9.304866, 45.537499], [9.313859, 45.537499], [9.313859, 45.528506], [9.304866, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.537499], [9.304866, 45.546492], [9.313859, 45.546492], [9.313859, 45.537499], [9.304866, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.546492], [9.304866, 45.555485], [9.313859, 45.555485], [9.313859, 45.546492], [9.304866, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.555485], [9.304866, 45.564479], [9.313859, 45.564479], [9.313859, 45.555485], [9.304866, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.564479], [9.304866, 45.573472], [9.313859, 45.573472], [9.313859, 45.564479], [9.304866, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.573472], [9.304866, 45.582465], [9.313859, 45.582465], [9.313859, 45.573472], [9.304866, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.582465], [9.304866, 45.591458], [9.313859, 45.591458], [9.313859, 45.582465], [9.304866, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.591458], [9.304866, 45.600451], [9.313859, 45.600451], [9.313859, 45.591458], [9.304866, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.600451], [9.304866, 45.609445], [9.313859, 45.609445], [9.313859, 45.600451], [9.304866, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.609445], [9.304866, 45.618438], [9.313859, 45.618438], [9.313859, 45.609445], [9.304866, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.618438], [9.304866, 45.627431], [9.313859, 45.627431], [9.313859, 45.618438], [9.304866, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.304866, 45.627431], [9.304866, 45.636424], [9.313859, 45.636424], [9.313859, 45.627431], [9.304866, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.339648], [9.313859, 45.348642], [9.322853, 45.348642], [9.322853, 45.339648], [9.313859, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.348642], [9.313859, 45.357635], [9.322853, 45.357635], [9.322853, 45.348642], [9.313859, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.357635], [9.313859, 45.366628], [9.322853, 45.366628], [9.322853, 45.357635], [9.313859, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.366628], [9.313859, 45.375621], [9.322853, 45.375621], [9.322853, 45.366628], [9.313859, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.375621], [9.313859, 45.384614], [9.322853, 45.384614], [9.322853, 45.375621], [9.313859, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.384614], [9.313859, 45.393608], [9.322853, 45.393608], [9.322853, 45.384614], [9.313859, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.393608], [9.313859, 45.402601], [9.322853, 45.402601], [9.322853, 45.393608], [9.313859, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.402601], [9.313859, 45.411594], [9.322853, 45.411594], [9.322853, 45.402601], [9.313859, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.411594], [9.313859, 45.420587], [9.322853, 45.420587], [9.322853, 45.411594], [9.313859, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.420587], [9.313859, 45.42958], [9.322853, 45.42958], [9.322853, 45.420587], [9.313859, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.42958], [9.313859, 45.438574], [9.322853, 45.438574], [9.322853, 45.42958], [9.313859, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.438574], [9.313859, 45.447567], [9.322853, 45.447567], [9.322853, 45.438574], [9.313859, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.447567], [9.313859, 45.45656], [9.322853, 45.45656], [9.322853, 45.447567], [9.313859, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.45656], [9.313859, 45.465553], [9.322853, 45.465553], [9.322853, 45.45656], [9.313859, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.465553], [9.313859, 45.474547], [9.322853, 45.474547], [9.322853, 45.465553], [9.313859, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.474547], [9.313859, 45.48354], [9.322853, 45.48354], [9.322853, 45.474547], [9.313859, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.48354], [9.313859, 45.492533], [9.322853, 45.492533], [9.322853, 45.48354], [9.313859, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.492533], [9.313859, 45.501526], [9.322853, 45.501526], [9.322853, 45.492533], [9.313859, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.501526], [9.313859, 45.510519], [9.322853, 45.510519], [9.322853, 45.501526], [9.313859, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.510519], [9.313859, 45.519513], [9.322853, 45.519513], [9.322853, 45.510519], [9.313859, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.519513], [9.313859, 45.528506], [9.322853, 45.528506], [9.322853, 45.519513], [9.313859, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.528506], [9.313859, 45.537499], [9.322853, 45.537499], [9.322853, 45.528506], [9.313859, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.537499], [9.313859, 45.546492], [9.322853, 45.546492], [9.322853, 45.537499], [9.313859, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.546492], [9.313859, 45.555485], [9.322853, 45.555485], [9.322853, 45.546492], [9.313859, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.555485], [9.313859, 45.564479], [9.322853, 45.564479], [9.322853, 45.555485], [9.313859, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.564479], [9.313859, 45.573472], [9.322853, 45.573472], [9.322853, 45.564479], [9.313859, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.573472], [9.313859, 45.582465], [9.322853, 45.582465], [9.322853, 45.573472], [9.313859, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.582465], [9.313859, 45.591458], [9.322853, 45.591458], [9.322853, 45.582465], [9.313859, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.591458], [9.313859, 45.600451], [9.322853, 45.600451], [9.322853, 45.591458], [9.313859, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.600451], [9.313859, 45.609445], [9.322853, 45.609445], [9.322853, 45.600451], [9.313859, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.609445], [9.313859, 45.618438], [9.322853, 45.618438], [9.322853, 45.609445], [9.313859, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.618438], [9.313859, 45.627431], [9.322853, 45.627431], [9.322853, 45.618438], [9.313859, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.313859, 45.627431], [9.313859, 45.636424], [9.322853, 45.636424], [9.322853, 45.627431], [9.313859, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.339648], [9.322853, 45.348642], [9.331846, 45.348642], [9.331846, 45.339648], [9.322853, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.348642], [9.322853, 45.357635], [9.331846, 45.357635], [9.331846, 45.348642], [9.322853, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.357635], [9.322853, 45.366628], [9.331846, 45.366628], [9.331846, 45.357635], [9.322853, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.366628], [9.322853, 45.375621], [9.331846, 45.375621], [9.331846, 45.366628], [9.322853, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.375621], [9.322853, 45.384614], [9.331846, 45.384614], [9.331846, 45.375621], [9.322853, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.384614], [9.322853, 45.393608], [9.331846, 45.393608], [9.331846, 45.384614], [9.322853, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.393608], [9.322853, 45.402601], [9.331846, 45.402601], [9.331846, 45.393608], [9.322853, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.402601], [9.322853, 45.411594], [9.331846, 45.411594], [9.331846, 45.402601], [9.322853, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.411594], [9.322853, 45.420587], [9.331846, 45.420587], [9.331846, 45.411594], [9.322853, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.420587], [9.322853, 45.42958], [9.331846, 45.42958], [9.331846, 45.420587], [9.322853, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.42958], [9.322853, 45.438574], [9.331846, 45.438574], [9.331846, 45.42958], [9.322853, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.438574], [9.322853, 45.447567], [9.331846, 45.447567], [9.331846, 45.438574], [9.322853, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.447567], [9.322853, 45.45656], [9.331846, 45.45656], [9.331846, 45.447567], [9.322853, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.45656], [9.322853, 45.465553], [9.331846, 45.465553], [9.331846, 45.45656], [9.322853, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.465553], [9.322853, 45.474547], [9.331846, 45.474547], [9.331846, 45.465553], [9.322853, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.474547], [9.322853, 45.48354], [9.331846, 45.48354], [9.331846, 45.474547], [9.322853, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.48354], [9.322853, 45.492533], [9.331846, 45.492533], [9.331846, 45.48354], [9.322853, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.492533], [9.322853, 45.501526], [9.331846, 45.501526], [9.331846, 45.492533], [9.322853, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.501526], [9.322853, 45.510519], [9.331846, 45.510519], [9.331846, 45.501526], [9.322853, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.510519], [9.322853, 45.519513], [9.331846, 45.519513], [9.331846, 45.510519], [9.322853, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.519513], [9.322853, 45.528506], [9.331846, 45.528506], [9.331846, 45.519513], [9.322853, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.528506], [9.322853, 45.537499], [9.331846, 45.537499], [9.331846, 45.528506], [9.322853, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.537499], [9.322853, 45.546492], [9.331846, 45.546492], [9.331846, 45.537499], [9.322853, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.546492], [9.322853, 45.555485], [9.331846, 45.555485], [9.331846, 45.546492], [9.322853, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.555485], [9.322853, 45.564479], [9.331846, 45.564479], [9.331846, 45.555485], [9.322853, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.564479], [9.322853, 45.573472], [9.331846, 45.573472], [9.331846, 45.564479], [9.322853, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.573472], [9.322853, 45.582465], [9.331846, 45.582465], [9.331846, 45.573472], [9.322853, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.582465], [9.322853, 45.591458], [9.331846, 45.591458], [9.331846, 45.582465], [9.322853, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.591458], [9.322853, 45.600451], [9.331846, 45.600451], [9.331846, 45.591458], [9.322853, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.600451], [9.322853, 45.609445], [9.331846, 45.609445], [9.331846, 45.600451], [9.322853, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.609445], [9.322853, 45.618438], [9.331846, 45.618438], [9.331846, 45.609445], [9.322853, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.618438], [9.322853, 45.627431], [9.331846, 45.627431], [9.331846, 45.618438], [9.322853, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.322853, 45.627431], [9.322853, 45.636424], [9.331846, 45.636424], [9.331846, 45.627431], [9.322853, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.339648], [9.331846, 45.348642], [9.340839, 45.348642], [9.340839, 45.339648], [9.331846, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.348642], [9.331846, 45.357635], [9.340839, 45.357635], [9.340839, 45.348642], [9.331846, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.357635], [9.331846, 45.366628], [9.340839, 45.366628], [9.340839, 45.357635], [9.331846, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.366628], [9.331846, 45.375621], [9.340839, 45.375621], [9.340839, 45.366628], [9.331846, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.375621], [9.331846, 45.384614], [9.340839, 45.384614], [9.340839, 45.375621], [9.331846, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.384614], [9.331846, 45.393608], [9.340839, 45.393608], [9.340839, 45.384614], [9.331846, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.393608], [9.331846, 45.402601], [9.340839, 45.402601], [9.340839, 45.393608], [9.331846, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.402601], [9.331846, 45.411594], [9.340839, 45.411594], [9.340839, 45.402601], [9.331846, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.411594], [9.331846, 45.420587], [9.340839, 45.420587], [9.340839, 45.411594], [9.331846, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.420587], [9.331846, 45.42958], [9.340839, 45.42958], [9.340839, 45.420587], [9.331846, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.42958], [9.331846, 45.438574], [9.340839, 45.438574], [9.340839, 45.42958], [9.331846, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.438574], [9.331846, 45.447567], [9.340839, 45.447567], [9.340839, 45.438574], [9.331846, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.447567], [9.331846, 45.45656], [9.340839, 45.45656], [9.340839, 45.447567], [9.331846, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.45656], [9.331846, 45.465553], [9.340839, 45.465553], [9.340839, 45.45656], [9.331846, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.465553], [9.331846, 45.474547], [9.340839, 45.474547], [9.340839, 45.465553], [9.331846, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.474547], [9.331846, 45.48354], [9.340839, 45.48354], [9.340839, 45.474547], [9.331846, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.48354], [9.331846, 45.492533], [9.340839, 45.492533], [9.340839, 45.48354], [9.331846, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.492533], [9.331846, 45.501526], [9.340839, 45.501526], [9.340839, 45.492533], [9.331846, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.501526], [9.331846, 45.510519], [9.340839, 45.510519], [9.340839, 45.501526], [9.331846, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.510519], [9.331846, 45.519513], [9.340839, 45.519513], [9.340839, 45.510519], [9.331846, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.519513], [9.331846, 45.528506], [9.340839, 45.528506], [9.340839, 45.519513], [9.331846, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.528506], [9.331846, 45.537499], [9.340839, 45.537499], [9.340839, 45.528506], [9.331846, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.537499], [9.331846, 45.546492], [9.340839, 45.546492], [9.340839, 45.537499], [9.331846, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.546492], [9.331846, 45.555485], [9.340839, 45.555485], [9.340839, 45.546492], [9.331846, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.555485], [9.331846, 45.564479], [9.340839, 45.564479], [9.340839, 45.555485], [9.331846, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.564479], [9.331846, 45.573472], [9.340839, 45.573472], [9.340839, 45.564479], [9.331846, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.573472], [9.331846, 45.582465], [9.340839, 45.582465], [9.340839, 45.573472], [9.331846, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.582465], [9.331846, 45.591458], [9.340839, 45.591458], [9.340839, 45.582465], [9.331846, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.591458], [9.331846, 45.600451], [9.340839, 45.600451], [9.340839, 45.591458], [9.331846, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.600451], [9.331846, 45.609445], [9.340839, 45.609445], [9.340839, 45.600451], [9.331846, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.609445], [9.331846, 45.618438], [9.340839, 45.618438], [9.340839, 45.609445], [9.331846, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.618438], [9.331846, 45.627431], [9.340839, 45.627431], [9.340839, 45.618438], [9.331846, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.331846, 45.627431], [9.331846, 45.636424], [9.340839, 45.636424], [9.340839, 45.627431], [9.331846, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.339648], [9.340839, 45.348642], [9.349832, 45.348642], [9.349832, 45.339648], [9.340839, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.348642], [9.340839, 45.357635], [9.349832, 45.357635], [9.349832, 45.348642], [9.340839, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.357635], [9.340839, 45.366628], [9.349832, 45.366628], [9.349832, 45.357635], [9.340839, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.366628], [9.340839, 45.375621], [9.349832, 45.375621], [9.349832, 45.366628], [9.340839, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.375621], [9.340839, 45.384614], [9.349832, 45.384614], [9.349832, 45.375621], [9.340839, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.384614], [9.340839, 45.393608], [9.349832, 45.393608], [9.349832, 45.384614], [9.340839, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.393608], [9.340839, 45.402601], [9.349832, 45.402601], [9.349832, 45.393608], [9.340839, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.402601], [9.340839, 45.411594], [9.349832, 45.411594], [9.349832, 45.402601], [9.340839, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.411594], [9.340839, 45.420587], [9.349832, 45.420587], [9.349832, 45.411594], [9.340839, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.420587], [9.340839, 45.42958], [9.349832, 45.42958], [9.349832, 45.420587], [9.340839, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.42958], [9.340839, 45.438574], [9.349832, 45.438574], [9.349832, 45.42958], [9.340839, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.438574], [9.340839, 45.447567], [9.349832, 45.447567], [9.349832, 45.438574], [9.340839, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.447567], [9.340839, 45.45656], [9.349832, 45.45656], [9.349832, 45.447567], [9.340839, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.45656], [9.340839, 45.465553], [9.349832, 45.465553], [9.349832, 45.45656], [9.340839, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.465553], [9.340839, 45.474547], [9.349832, 45.474547], [9.349832, 45.465553], [9.340839, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.474547], [9.340839, 45.48354], [9.349832, 45.48354], [9.349832, 45.474547], [9.340839, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.48354], [9.340839, 45.492533], [9.349832, 45.492533], [9.349832, 45.48354], [9.340839, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.492533], [9.340839, 45.501526], [9.349832, 45.501526], [9.349832, 45.492533], [9.340839, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.501526], [9.340839, 45.510519], [9.349832, 45.510519], [9.349832, 45.501526], [9.340839, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.510519], [9.340839, 45.519513], [9.349832, 45.519513], [9.349832, 45.510519], [9.340839, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.519513], [9.340839, 45.528506], [9.349832, 45.528506], [9.349832, 45.519513], [9.340839, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.528506], [9.340839, 45.537499], [9.349832, 45.537499], [9.349832, 45.528506], [9.340839, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.537499], [9.340839, 45.546492], [9.349832, 45.546492], [9.349832, 45.537499], [9.340839, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.546492], [9.340839, 45.555485], [9.349832, 45.555485], [9.349832, 45.546492], [9.340839, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.555485], [9.340839, 45.564479], [9.349832, 45.564479], [9.349832, 45.555485], [9.340839, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.564479], [9.340839, 45.573472], [9.349832, 45.573472], [9.349832, 45.564479], [9.340839, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.573472], [9.340839, 45.582465], [9.349832, 45.582465], [9.349832, 45.573472], [9.340839, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.582465], [9.340839, 45.591458], [9.349832, 45.591458], [9.349832, 45.582465], [9.340839, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.591458], [9.340839, 45.600451], [9.349832, 45.600451], [9.349832, 45.591458], [9.340839, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.600451], [9.340839, 45.609445], [9.349832, 45.609445], [9.349832, 45.600451], [9.340839, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.609445], [9.340839, 45.618438], [9.349832, 45.618438], [9.349832, 45.609445], [9.340839, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.618438], [9.340839, 45.627431], [9.349832, 45.627431], [9.349832, 45.618438], [9.340839, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.340839, 45.627431], [9.340839, 45.636424], [9.349832, 45.636424], [9.349832, 45.627431], [9.340839, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.339648], [9.349832, 45.348642], [9.358825, 45.348642], [9.358825, 45.339648], [9.349832, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.348642], [9.349832, 45.357635], [9.358825, 45.357635], [9.358825, 45.348642], [9.349832, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.357635], [9.349832, 45.366628], [9.358825, 45.366628], [9.358825, 45.357635], [9.349832, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.366628], [9.349832, 45.375621], [9.358825, 45.375621], [9.358825, 45.366628], [9.349832, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.375621], [9.349832, 45.384614], [9.358825, 45.384614], [9.358825, 45.375621], [9.349832, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.384614], [9.349832, 45.393608], [9.358825, 45.393608], [9.358825, 45.384614], [9.349832, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.393608], [9.349832, 45.402601], [9.358825, 45.402601], [9.358825, 45.393608], [9.349832, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.402601], [9.349832, 45.411594], [9.358825, 45.411594], [9.358825, 45.402601], [9.349832, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.411594], [9.349832, 45.420587], [9.358825, 45.420587], [9.358825, 45.411594], [9.349832, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.420587], [9.349832, 45.42958], [9.358825, 45.42958], [9.358825, 45.420587], [9.349832, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.42958], [9.349832, 45.438574], [9.358825, 45.438574], [9.358825, 45.42958], [9.349832, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.438574], [9.349832, 45.447567], [9.358825, 45.447567], [9.358825, 45.438574], [9.349832, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.447567], [9.349832, 45.45656], [9.358825, 45.45656], [9.358825, 45.447567], [9.349832, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.45656], [9.349832, 45.465553], [9.358825, 45.465553], [9.358825, 45.45656], [9.349832, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.465553], [9.349832, 45.474547], [9.358825, 45.474547], [9.358825, 45.465553], [9.349832, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.474547], [9.349832, 45.48354], [9.358825, 45.48354], [9.358825, 45.474547], [9.349832, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.48354], [9.349832, 45.492533], [9.358825, 45.492533], [9.358825, 45.48354], [9.349832, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.492533], [9.349832, 45.501526], [9.358825, 45.501526], [9.358825, 45.492533], [9.349832, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.501526], [9.349832, 45.510519], [9.358825, 45.510519], [9.358825, 45.501526], [9.349832, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.510519], [9.349832, 45.519513], [9.358825, 45.519513], [9.358825, 45.510519], [9.349832, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.519513], [9.349832, 45.528506], [9.358825, 45.528506], [9.358825, 45.519513], [9.349832, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.528506], [9.349832, 45.537499], [9.358825, 45.537499], [9.358825, 45.528506], [9.349832, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.537499], [9.349832, 45.546492], [9.358825, 45.546492], [9.358825, 45.537499], [9.349832, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.546492], [9.349832, 45.555485], [9.358825, 45.555485], [9.358825, 45.546492], [9.349832, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.555485], [9.349832, 45.564479], [9.358825, 45.564479], [9.358825, 45.555485], [9.349832, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.564479], [9.349832, 45.573472], [9.358825, 45.573472], [9.358825, 45.564479], [9.349832, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.573472], [9.349832, 45.582465], [9.358825, 45.582465], [9.358825, 45.573472], [9.349832, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.582465], [9.349832, 45.591458], [9.358825, 45.591458], [9.358825, 45.582465], [9.349832, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.591458], [9.349832, 45.600451], [9.358825, 45.600451], [9.358825, 45.591458], [9.349832, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.600451], [9.349832, 45.609445], [9.358825, 45.609445], [9.358825, 45.600451], [9.349832, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.609445], [9.349832, 45.618438], [9.358825, 45.618438], [9.358825, 45.609445], [9.349832, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.618438], [9.349832, 45.627431], [9.358825, 45.627431], [9.358825, 45.618438], [9.349832, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.349832, 45.627431], [9.349832, 45.636424], [9.358825, 45.636424], [9.358825, 45.627431], [9.349832, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.339648], [9.358825, 45.348642], [9.367819, 45.348642], [9.367819, 45.339648], [9.358825, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.348642], [9.358825, 45.357635], [9.367819, 45.357635], [9.367819, 45.348642], [9.358825, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.357635], [9.358825, 45.366628], [9.367819, 45.366628], [9.367819, 45.357635], [9.358825, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.366628], [9.358825, 45.375621], [9.367819, 45.375621], [9.367819, 45.366628], [9.358825, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.375621], [9.358825, 45.384614], [9.367819, 45.384614], [9.367819, 45.375621], [9.358825, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.384614], [9.358825, 45.393608], [9.367819, 45.393608], [9.367819, 45.384614], [9.358825, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.393608], [9.358825, 45.402601], [9.367819, 45.402601], [9.367819, 45.393608], [9.358825, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.402601], [9.358825, 45.411594], [9.367819, 45.411594], [9.367819, 45.402601], [9.358825, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.411594], [9.358825, 45.420587], [9.367819, 45.420587], [9.367819, 45.411594], [9.358825, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.420587], [9.358825, 45.42958], [9.367819, 45.42958], [9.367819, 45.420587], [9.358825, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.42958], [9.358825, 45.438574], [9.367819, 45.438574], [9.367819, 45.42958], [9.358825, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.438574], [9.358825, 45.447567], [9.367819, 45.447567], [9.367819, 45.438574], [9.358825, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.447567], [9.358825, 45.45656], [9.367819, 45.45656], [9.367819, 45.447567], [9.358825, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.45656], [9.358825, 45.465553], [9.367819, 45.465553], [9.367819, 45.45656], [9.358825, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.465553], [9.358825, 45.474547], [9.367819, 45.474547], [9.367819, 45.465553], [9.358825, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.474547], [9.358825, 45.48354], [9.367819, 45.48354], [9.367819, 45.474547], [9.358825, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.48354], [9.358825, 45.492533], [9.367819, 45.492533], [9.367819, 45.48354], [9.358825, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.492533], [9.358825, 45.501526], [9.367819, 45.501526], [9.367819, 45.492533], [9.358825, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.501526], [9.358825, 45.510519], [9.367819, 45.510519], [9.367819, 45.501526], [9.358825, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.510519], [9.358825, 45.519513], [9.367819, 45.519513], [9.367819, 45.510519], [9.358825, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.519513], [9.358825, 45.528506], [9.367819, 45.528506], [9.367819, 45.519513], [9.358825, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.528506], [9.358825, 45.537499], [9.367819, 45.537499], [9.367819, 45.528506], [9.358825, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.537499], [9.358825, 45.546492], [9.367819, 45.546492], [9.367819, 45.537499], [9.358825, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.546492], [9.358825, 45.555485], [9.367819, 45.555485], [9.367819, 45.546492], [9.358825, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.555485], [9.358825, 45.564479], [9.367819, 45.564479], [9.367819, 45.555485], [9.358825, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.564479], [9.358825, 45.573472], [9.367819, 45.573472], [9.367819, 45.564479], [9.358825, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.573472], [9.358825, 45.582465], [9.367819, 45.582465], [9.367819, 45.573472], [9.358825, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.582465], [9.358825, 45.591458], [9.367819, 45.591458], [9.367819, 45.582465], [9.358825, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.591458], [9.358825, 45.600451], [9.367819, 45.600451], [9.367819, 45.591458], [9.358825, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.600451], [9.358825, 45.609445], [9.367819, 45.609445], [9.367819, 45.600451], [9.358825, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.609445], [9.358825, 45.618438], [9.367819, 45.618438], [9.367819, 45.609445], [9.358825, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.618438], [9.358825, 45.627431], [9.367819, 45.627431], [9.367819, 45.618438], [9.358825, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.358825, 45.627431], [9.358825, 45.636424], [9.367819, 45.636424], [9.367819, 45.627431], [9.358825, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.339648], [9.367819, 45.348642], [9.376812, 45.348642], [9.376812, 45.339648], [9.367819, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.348642], [9.367819, 45.357635], [9.376812, 45.357635], [9.376812, 45.348642], [9.367819, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.357635], [9.367819, 45.366628], [9.376812, 45.366628], [9.376812, 45.357635], [9.367819, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.366628], [9.367819, 45.375621], [9.376812, 45.375621], [9.376812, 45.366628], [9.367819, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.375621], [9.367819, 45.384614], [9.376812, 45.384614], [9.376812, 45.375621], [9.367819, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.384614], [9.367819, 45.393608], [9.376812, 45.393608], [9.376812, 45.384614], [9.367819, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.393608], [9.367819, 45.402601], [9.376812, 45.402601], [9.376812, 45.393608], [9.367819, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.402601], [9.367819, 45.411594], [9.376812, 45.411594], [9.376812, 45.402601], [9.367819, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.411594], [9.367819, 45.420587], [9.376812, 45.420587], [9.376812, 45.411594], [9.367819, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.420587], [9.367819, 45.42958], [9.376812, 45.42958], [9.376812, 45.420587], [9.367819, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.42958], [9.367819, 45.438574], [9.376812, 45.438574], [9.376812, 45.42958], [9.367819, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.438574], [9.367819, 45.447567], [9.376812, 45.447567], [9.376812, 45.438574], [9.367819, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.447567], [9.367819, 45.45656], [9.376812, 45.45656], [9.376812, 45.447567], [9.367819, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.45656], [9.367819, 45.465553], [9.376812, 45.465553], [9.376812, 45.45656], [9.367819, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.465553], [9.367819, 45.474547], [9.376812, 45.474547], [9.376812, 45.465553], [9.367819, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.474547], [9.367819, 45.48354], [9.376812, 45.48354], [9.376812, 45.474547], [9.367819, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.48354], [9.367819, 45.492533], [9.376812, 45.492533], [9.376812, 45.48354], [9.367819, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.492533], [9.367819, 45.501526], [9.376812, 45.501526], [9.376812, 45.492533], [9.367819, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.501526], [9.367819, 45.510519], [9.376812, 45.510519], [9.376812, 45.501526], [9.367819, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.510519], [9.367819, 45.519513], [9.376812, 45.519513], [9.376812, 45.510519], [9.367819, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.519513], [9.367819, 45.528506], [9.376812, 45.528506], [9.376812, 45.519513], [9.367819, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.528506], [9.367819, 45.537499], [9.376812, 45.537499], [9.376812, 45.528506], [9.367819, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.537499], [9.367819, 45.546492], [9.376812, 45.546492], [9.376812, 45.537499], [9.367819, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.546492], [9.367819, 45.555485], [9.376812, 45.555485], [9.376812, 45.546492], [9.367819, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.555485], [9.367819, 45.564479], [9.376812, 45.564479], [9.376812, 45.555485], [9.367819, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.564479], [9.367819, 45.573472], [9.376812, 45.573472], [9.376812, 45.564479], [9.367819, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.573472], [9.367819, 45.582465], [9.376812, 45.582465], [9.376812, 45.573472], [9.367819, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.582465], [9.367819, 45.591458], [9.376812, 45.591458], [9.376812, 45.582465], [9.367819, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.591458], [9.367819, 45.600451], [9.376812, 45.600451], [9.376812, 45.591458], [9.367819, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.600451], [9.367819, 45.609445], [9.376812, 45.609445], [9.376812, 45.600451], [9.367819, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.609445], [9.367819, 45.618438], [9.376812, 45.618438], [9.376812, 45.609445], [9.367819, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.618438], [9.367819, 45.627431], [9.376812, 45.627431], [9.376812, 45.618438], [9.367819, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.367819, 45.627431], [9.367819, 45.636424], [9.376812, 45.636424], [9.376812, 45.627431], [9.367819, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.339648], [9.376812, 45.348642], [9.385805, 45.348642], [9.385805, 45.339648], [9.376812, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.348642], [9.376812, 45.357635], [9.385805, 45.357635], [9.385805, 45.348642], [9.376812, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.357635], [9.376812, 45.366628], [9.385805, 45.366628], [9.385805, 45.357635], [9.376812, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.366628], [9.376812, 45.375621], [9.385805, 45.375621], [9.385805, 45.366628], [9.376812, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.375621], [9.376812, 45.384614], [9.385805, 45.384614], [9.385805, 45.375621], [9.376812, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.384614], [9.376812, 45.393608], [9.385805, 45.393608], [9.385805, 45.384614], [9.376812, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.393608], [9.376812, 45.402601], [9.385805, 45.402601], [9.385805, 45.393608], [9.376812, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.402601], [9.376812, 45.411594], [9.385805, 45.411594], [9.385805, 45.402601], [9.376812, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.411594], [9.376812, 45.420587], [9.385805, 45.420587], [9.385805, 45.411594], [9.376812, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.420587], [9.376812, 45.42958], [9.385805, 45.42958], [9.385805, 45.420587], [9.376812, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.42958], [9.376812, 45.438574], [9.385805, 45.438574], [9.385805, 45.42958], [9.376812, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.438574], [9.376812, 45.447567], [9.385805, 45.447567], [9.385805, 45.438574], [9.376812, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.447567], [9.376812, 45.45656], [9.385805, 45.45656], [9.385805, 45.447567], [9.376812, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.45656], [9.376812, 45.465553], [9.385805, 45.465553], [9.385805, 45.45656], [9.376812, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.465553], [9.376812, 45.474547], [9.385805, 45.474547], [9.385805, 45.465553], [9.376812, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.474547], [9.376812, 45.48354], [9.385805, 45.48354], [9.385805, 45.474547], [9.376812, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.48354], [9.376812, 45.492533], [9.385805, 45.492533], [9.385805, 45.48354], [9.376812, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.492533], [9.376812, 45.501526], [9.385805, 45.501526], [9.385805, 45.492533], [9.376812, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.501526], [9.376812, 45.510519], [9.385805, 45.510519], [9.385805, 45.501526], [9.376812, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.510519], [9.376812, 45.519513], [9.385805, 45.519513], [9.385805, 45.510519], [9.376812, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.519513], [9.376812, 45.528506], [9.385805, 45.528506], [9.385805, 45.519513], [9.376812, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.528506], [9.376812, 45.537499], [9.385805, 45.537499], [9.385805, 45.528506], [9.376812, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.537499], [9.376812, 45.546492], [9.385805, 45.546492], [9.385805, 45.537499], [9.376812, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.546492], [9.376812, 45.555485], [9.385805, 45.555485], [9.385805, 45.546492], [9.376812, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.555485], [9.376812, 45.564479], [9.385805, 45.564479], [9.385805, 45.555485], [9.376812, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.564479], [9.376812, 45.573472], [9.385805, 45.573472], [9.385805, 45.564479], [9.376812, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.573472], [9.376812, 45.582465], [9.385805, 45.582465], [9.385805, 45.573472], [9.376812, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.582465], [9.376812, 45.591458], [9.385805, 45.591458], [9.385805, 45.582465], [9.376812, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.591458], [9.376812, 45.600451], [9.385805, 45.600451], [9.385805, 45.591458], [9.376812, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.600451], [9.376812, 45.609445], [9.385805, 45.609445], [9.385805, 45.600451], [9.376812, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.609445], [9.376812, 45.618438], [9.385805, 45.618438], [9.385805, 45.609445], [9.376812, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.618438], [9.376812, 45.627431], [9.385805, 45.627431], [9.385805, 45.618438], [9.376812, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.376812, 45.627431], [9.376812, 45.636424], [9.385805, 45.636424], [9.385805, 45.627431], [9.376812, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.339648], [9.385805, 45.348642], [9.394798, 45.348642], [9.394798, 45.339648], [9.385805, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.348642], [9.385805, 45.357635], [9.394798, 45.357635], [9.394798, 45.348642], [9.385805, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.357635], [9.385805, 45.366628], [9.394798, 45.366628], [9.394798, 45.357635], [9.385805, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.366628], [9.385805, 45.375621], [9.394798, 45.375621], [9.394798, 45.366628], [9.385805, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.375621], [9.385805, 45.384614], [9.394798, 45.384614], [9.394798, 45.375621], [9.385805, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.384614], [9.385805, 45.393608], [9.394798, 45.393608], [9.394798, 45.384614], [9.385805, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.393608], [9.385805, 45.402601], [9.394798, 45.402601], [9.394798, 45.393608], [9.385805, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.402601], [9.385805, 45.411594], [9.394798, 45.411594], [9.394798, 45.402601], [9.385805, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.411594], [9.385805, 45.420587], [9.394798, 45.420587], [9.394798, 45.411594], [9.385805, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.420587], [9.385805, 45.42958], [9.394798, 45.42958], [9.394798, 45.420587], [9.385805, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.42958], [9.385805, 45.438574], [9.394798, 45.438574], [9.394798, 45.42958], [9.385805, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.438574], [9.385805, 45.447567], [9.394798, 45.447567], [9.394798, 45.438574], [9.385805, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.447567], [9.385805, 45.45656], [9.394798, 45.45656], [9.394798, 45.447567], [9.385805, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.45656], [9.385805, 45.465553], [9.394798, 45.465553], [9.394798, 45.45656], [9.385805, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.465553], [9.385805, 45.474547], [9.394798, 45.474547], [9.394798, 45.465553], [9.385805, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.474547], [9.385805, 45.48354], [9.394798, 45.48354], [9.394798, 45.474547], [9.385805, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.48354], [9.385805, 45.492533], [9.394798, 45.492533], [9.394798, 45.48354], [9.385805, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.492533], [9.385805, 45.501526], [9.394798, 45.501526], [9.394798, 45.492533], [9.385805, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.501526], [9.385805, 45.510519], [9.394798, 45.510519], [9.394798, 45.501526], [9.385805, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.510519], [9.385805, 45.519513], [9.394798, 45.519513], [9.394798, 45.510519], [9.385805, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.519513], [9.385805, 45.528506], [9.394798, 45.528506], [9.394798, 45.519513], [9.385805, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.528506], [9.385805, 45.537499], [9.394798, 45.537499], [9.394798, 45.528506], [9.385805, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.537499], [9.385805, 45.546492], [9.394798, 45.546492], [9.394798, 45.537499], [9.385805, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.546492], [9.385805, 45.555485], [9.394798, 45.555485], [9.394798, 45.546492], [9.385805, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.555485], [9.385805, 45.564479], [9.394798, 45.564479], [9.394798, 45.555485], [9.385805, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.564479], [9.385805, 45.573472], [9.394798, 45.573472], [9.394798, 45.564479], [9.385805, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.573472], [9.385805, 45.582465], [9.394798, 45.582465], [9.394798, 45.573472], [9.385805, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.582465], [9.385805, 45.591458], [9.394798, 45.591458], [9.394798, 45.582465], [9.385805, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.591458], [9.385805, 45.600451], [9.394798, 45.600451], [9.394798, 45.591458], [9.385805, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.600451], [9.385805, 45.609445], [9.394798, 45.609445], [9.394798, 45.600451], [9.385805, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.609445], [9.385805, 45.618438], [9.394798, 45.618438], [9.394798, 45.609445], [9.385805, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.618438], [9.385805, 45.627431], [9.394798, 45.627431], [9.394798, 45.618438], [9.385805, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.385805, 45.627431], [9.385805, 45.636424], [9.394798, 45.636424], [9.394798, 45.627431], [9.385805, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.339648], [9.394798, 45.348642], [9.403791, 45.348642], [9.403791, 45.339648], [9.394798, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.348642], [9.394798, 45.357635], [9.403791, 45.357635], [9.403791, 45.348642], [9.394798, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.357635], [9.394798, 45.366628], [9.403791, 45.366628], [9.403791, 45.357635], [9.394798, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.366628], [9.394798, 45.375621], [9.403791, 45.375621], [9.403791, 45.366628], [9.394798, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.375621], [9.394798, 45.384614], [9.403791, 45.384614], [9.403791, 45.375621], [9.394798, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.384614], [9.394798, 45.393608], [9.403791, 45.393608], [9.403791, 45.384614], [9.394798, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.393608], [9.394798, 45.402601], [9.403791, 45.402601], [9.403791, 45.393608], [9.394798, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.402601], [9.394798, 45.411594], [9.403791, 45.411594], [9.403791, 45.402601], [9.394798, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.411594], [9.394798, 45.420587], [9.403791, 45.420587], [9.403791, 45.411594], [9.394798, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.420587], [9.394798, 45.42958], [9.403791, 45.42958], [9.403791, 45.420587], [9.394798, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.42958], [9.394798, 45.438574], [9.403791, 45.438574], [9.403791, 45.42958], [9.394798, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.438574], [9.394798, 45.447567], [9.403791, 45.447567], [9.403791, 45.438574], [9.394798, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.447567], [9.394798, 45.45656], [9.403791, 45.45656], [9.403791, 45.447567], [9.394798, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.45656], [9.394798, 45.465553], [9.403791, 45.465553], [9.403791, 45.45656], [9.394798, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.465553], [9.394798, 45.474547], [9.403791, 45.474547], [9.403791, 45.465553], [9.394798, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.474547], [9.394798, 45.48354], [9.403791, 45.48354], [9.403791, 45.474547], [9.394798, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.48354], [9.394798, 45.492533], [9.403791, 45.492533], [9.403791, 45.48354], [9.394798, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.492533], [9.394798, 45.501526], [9.403791, 45.501526], [9.403791, 45.492533], [9.394798, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.501526], [9.394798, 45.510519], [9.403791, 45.510519], [9.403791, 45.501526], [9.394798, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.510519], [9.394798, 45.519513], [9.403791, 45.519513], [9.403791, 45.510519], [9.394798, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.519513], [9.394798, 45.528506], [9.403791, 45.528506], [9.403791, 45.519513], [9.394798, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.528506], [9.394798, 45.537499], [9.403791, 45.537499], [9.403791, 45.528506], [9.394798, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.537499], [9.394798, 45.546492], [9.403791, 45.546492], [9.403791, 45.537499], [9.394798, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.546492], [9.394798, 45.555485], [9.403791, 45.555485], [9.403791, 45.546492], [9.394798, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.555485], [9.394798, 45.564479], [9.403791, 45.564479], [9.403791, 45.555485], [9.394798, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.564479], [9.394798, 45.573472], [9.403791, 45.573472], [9.403791, 45.564479], [9.394798, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.573472], [9.394798, 45.582465], [9.403791, 45.582465], [9.403791, 45.573472], [9.394798, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.582465], [9.394798, 45.591458], [9.403791, 45.591458], [9.403791, 45.582465], [9.394798, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.591458], [9.394798, 45.600451], [9.403791, 45.600451], [9.403791, 45.591458], [9.394798, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.600451], [9.394798, 45.609445], [9.403791, 45.609445], [9.403791, 45.600451], [9.394798, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.609445], [9.394798, 45.618438], [9.403791, 45.618438], [9.403791, 45.609445], [9.394798, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.618438], [9.394798, 45.627431], [9.403791, 45.627431], [9.403791, 45.618438], [9.394798, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.394798, 45.627431], [9.394798, 45.636424], [9.403791, 45.636424], [9.403791, 45.627431], [9.394798, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.339648], [9.403791, 45.348642], [9.412785, 45.348642], [9.412785, 45.339648], [9.403791, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.348642], [9.403791, 45.357635], [9.412785, 45.357635], [9.412785, 45.348642], [9.403791, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.357635], [9.403791, 45.366628], [9.412785, 45.366628], [9.412785, 45.357635], [9.403791, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.366628], [9.403791, 45.375621], [9.412785, 45.375621], [9.412785, 45.366628], [9.403791, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.375621], [9.403791, 45.384614], [9.412785, 45.384614], [9.412785, 45.375621], [9.403791, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.384614], [9.403791, 45.393608], [9.412785, 45.393608], [9.412785, 45.384614], [9.403791, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.393608], [9.403791, 45.402601], [9.412785, 45.402601], [9.412785, 45.393608], [9.403791, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.402601], [9.403791, 45.411594], [9.412785, 45.411594], [9.412785, 45.402601], [9.403791, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.411594], [9.403791, 45.420587], [9.412785, 45.420587], [9.412785, 45.411594], [9.403791, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.420587], [9.403791, 45.42958], [9.412785, 45.42958], [9.412785, 45.420587], [9.403791, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.42958], [9.403791, 45.438574], [9.412785, 45.438574], [9.412785, 45.42958], [9.403791, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.438574], [9.403791, 45.447567], [9.412785, 45.447567], [9.412785, 45.438574], [9.403791, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.447567], [9.403791, 45.45656], [9.412785, 45.45656], [9.412785, 45.447567], [9.403791, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.45656], [9.403791, 45.465553], [9.412785, 45.465553], [9.412785, 45.45656], [9.403791, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.465553], [9.403791, 45.474547], [9.412785, 45.474547], [9.412785, 45.465553], [9.403791, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.474547], [9.403791, 45.48354], [9.412785, 45.48354], [9.412785, 45.474547], [9.403791, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.48354], [9.403791, 45.492533], [9.412785, 45.492533], [9.412785, 45.48354], [9.403791, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.492533], [9.403791, 45.501526], [9.412785, 45.501526], [9.412785, 45.492533], [9.403791, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.501526], [9.403791, 45.510519], [9.412785, 45.510519], [9.412785, 45.501526], [9.403791, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.510519], [9.403791, 45.519513], [9.412785, 45.519513], [9.412785, 45.510519], [9.403791, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.519513], [9.403791, 45.528506], [9.412785, 45.528506], [9.412785, 45.519513], [9.403791, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.528506], [9.403791, 45.537499], [9.412785, 45.537499], [9.412785, 45.528506], [9.403791, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.537499], [9.403791, 45.546492], [9.412785, 45.546492], [9.412785, 45.537499], [9.403791, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.546492], [9.403791, 45.555485], [9.412785, 45.555485], [9.412785, 45.546492], [9.403791, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.555485], [9.403791, 45.564479], [9.412785, 45.564479], [9.412785, 45.555485], [9.403791, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.564479], [9.403791, 45.573472], [9.412785, 45.573472], [9.412785, 45.564479], [9.403791, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.573472], [9.403791, 45.582465], [9.412785, 45.582465], [9.412785, 45.573472], [9.403791, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.582465], [9.403791, 45.591458], [9.412785, 45.591458], [9.412785, 45.582465], [9.403791, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.591458], [9.403791, 45.600451], [9.412785, 45.600451], [9.412785, 45.591458], [9.403791, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.600451], [9.403791, 45.609445], [9.412785, 45.609445], [9.412785, 45.600451], [9.403791, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.609445], [9.403791, 45.618438], [9.412785, 45.618438], [9.412785, 45.609445], [9.403791, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.618438], [9.403791, 45.627431], [9.412785, 45.627431], [9.412785, 45.618438], [9.403791, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.403791, 45.627431], [9.403791, 45.636424], [9.412785, 45.636424], [9.412785, 45.627431], [9.403791, 45.627431] ] ] } } ] } ================================================ FILE: packages/turf-interpolate/test/out/data-1km.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "value": 18, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.119968, 45.44307], [9.119968, 45.452063], [9.128961, 45.452063], [9.128961, 45.44307], [9.119968, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.119968, 45.452063], [9.119968, 45.461057], [9.128961, 45.461057], [9.128961, 45.452063], [9.119968, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#b3daff", "fill": "#b3daff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.119968, 45.461057], [9.119968, 45.47005], [9.128961, 45.47005], [9.128961, 45.461057], [9.119968, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#b3daff", "fill": "#b3daff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.119968, 45.47005], [9.119968, 45.479043], [9.128961, 45.479043], [9.128961, 45.47005], [9.119968, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.119968, 45.479043], [9.119968, 45.488036], [9.128961, 45.488036], [9.128961, 45.479043], [9.119968, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8ac7ff", "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.119968, 45.488036], [9.119968, 45.49703], [9.128961, 45.49703], [9.128961, 45.488036], [9.119968, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.119968, 45.49703], [9.119968, 45.506023], [9.128961, 45.506023], [9.128961, 45.49703], [9.119968, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.119968, 45.506023], [9.119968, 45.515016], [9.128961, 45.515016], [9.128961, 45.506023], [9.119968, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.119968, 45.515016], [9.119968, 45.524009], [9.128961, 45.524009], [9.128961, 45.515016], [9.119968, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.119968, 45.524009], [9.119968, 45.533002], [9.128961, 45.533002], [9.128961, 45.524009], [9.119968, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.128961, 45.44307], [9.128961, 45.452063], [9.137954, 45.452063], [9.137954, 45.44307], [9.128961, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.128961, 45.452063], [9.128961, 45.461057], [9.137954, 45.461057], [9.137954, 45.452063], [9.128961, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.128961, 45.461057], [9.128961, 45.47005], [9.137954, 45.47005], [9.137954, 45.461057], [9.128961, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#b3daff", "fill": "#b3daff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.128961, 45.47005], [9.128961, 45.479043], [9.137954, 45.479043], [9.137954, 45.47005], [9.128961, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.128961, 45.479043], [9.128961, 45.488036], [9.137954, 45.488036], [9.137954, 45.479043], [9.128961, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8ac7ff", "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.128961, 45.488036], [9.128961, 45.49703], [9.137954, 45.49703], [9.137954, 45.488036], [9.128961, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.128961, 45.49703], [9.128961, 45.506023], [9.137954, 45.506023], [9.137954, 45.49703], [9.128961, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.128961, 45.506023], [9.128961, 45.515016], [9.137954, 45.515016], [9.137954, 45.506023], [9.128961, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.128961, 45.515016], [9.128961, 45.524009], [9.137954, 45.524009], [9.137954, 45.515016], [9.128961, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.128961, 45.524009], [9.128961, 45.533002], [9.137954, 45.533002], [9.137954, 45.524009], [9.128961, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.137954, 45.44307], [9.137954, 45.452063], [9.146948, 45.452063], [9.146948, 45.44307], [9.137954, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.137954, 45.452063], [9.137954, 45.461057], [9.146948, 45.461057], [9.146948, 45.452063], [9.137954, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.137954, 45.461057], [9.137954, 45.47005], [9.146948, 45.47005], [9.146948, 45.461057], [9.137954, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.137954, 45.47005], [9.137954, 45.479043], [9.146948, 45.479043], [9.146948, 45.47005], [9.137954, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#b3daff", "fill": "#b3daff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.137954, 45.479043], [9.137954, 45.488036], [9.146948, 45.488036], [9.146948, 45.479043], [9.137954, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8ac7ff", "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.137954, 45.488036], [9.137954, 45.49703], [9.146948, 45.49703], [9.146948, 45.488036], [9.137954, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.137954, 45.49703], [9.137954, 45.506023], [9.146948, 45.506023], [9.146948, 45.49703], [9.137954, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.137954, 45.506023], [9.137954, 45.515016], [9.146948, 45.515016], [9.146948, 45.506023], [9.137954, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.137954, 45.515016], [9.137954, 45.524009], [9.146948, 45.524009], [9.146948, 45.515016], [9.137954, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.137954, 45.524009], [9.137954, 45.533002], [9.146948, 45.533002], [9.146948, 45.524009], [9.137954, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.146948, 45.44307], [9.146948, 45.452063], [9.155941, 45.452063], [9.155941, 45.44307], [9.146948, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.146948, 45.452063], [9.146948, 45.461057], [9.155941, 45.461057], [9.155941, 45.452063], [9.146948, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#ebf5ff", "fill": "#ebf5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.146948, 45.461057], [9.146948, 45.47005], [9.155941, 45.47005], [9.155941, 45.461057], [9.146948, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 16, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.146948, 45.47005], [9.146948, 45.479043], [9.155941, 45.479043], [9.155941, 45.47005], [9.146948, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#b3daff", "fill": "#b3daff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.146948, 45.479043], [9.146948, 45.488036], [9.155941, 45.488036], [9.155941, 45.479043], [9.146948, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8ac7ff", "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.146948, 45.488036], [9.146948, 45.49703], [9.155941, 45.49703], [9.155941, 45.488036], [9.146948, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.146948, 45.49703], [9.146948, 45.506023], [9.155941, 45.506023], [9.155941, 45.49703], [9.146948, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.146948, 45.506023], [9.146948, 45.515016], [9.155941, 45.515016], [9.155941, 45.506023], [9.146948, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.146948, 45.515016], [9.146948, 45.524009], [9.155941, 45.524009], [9.155941, 45.515016], [9.146948, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#007aeb", "fill": "#007aeb", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.146948, 45.524009], [9.146948, 45.533002], [9.155941, 45.533002], [9.155941, 45.524009], [9.146948, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.155941, 45.44307], [9.155941, 45.452063], [9.164934, 45.452063], [9.164934, 45.44307], [9.155941, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.155941, 45.452063], [9.155941, 45.461057], [9.164934, 45.461057], [9.164934, 45.452063], [9.155941, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#ebf5ff", "fill": "#ebf5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.155941, 45.461057], [9.155941, 45.47005], [9.164934, 45.47005], [9.164934, 45.461057], [9.155941, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 16, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.155941, 45.47005], [9.155941, 45.479043], [9.164934, 45.479043], [9.164934, 45.47005], [9.155941, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#b3daff", "fill": "#b3daff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.155941, 45.479043], [9.155941, 45.488036], [9.164934, 45.488036], [9.164934, 45.479043], [9.155941, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.155941, 45.488036], [9.155941, 45.49703], [9.164934, 45.49703], [9.164934, 45.488036], [9.155941, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.155941, 45.49703], [9.155941, 45.506023], [9.164934, 45.506023], [9.164934, 45.49703], [9.155941, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.155941, 45.506023], [9.155941, 45.515016], [9.164934, 45.515016], [9.164934, 45.506023], [9.155941, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.155941, 45.515016], [9.155941, 45.524009], [9.164934, 45.524009], [9.164934, 45.515016], [9.155941, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0065c2", "fill": "#0065c2", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.155941, 45.524009], [9.155941, 45.533002], [9.164934, 45.533002], [9.164934, 45.524009], [9.155941, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#b3daff", "fill": "#b3daff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.164934, 45.44307], [9.164934, 45.452063], [9.173927, 45.452063], [9.173927, 45.44307], [9.164934, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.164934, 45.452063], [9.164934, 45.461057], [9.173927, 45.461057], [9.173927, 45.452063], [9.164934, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.164934, 45.461057], [9.164934, 45.47005], [9.173927, 45.47005], [9.173927, 45.461057], [9.164934, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.164934, 45.47005], [9.164934, 45.479043], [9.173927, 45.479043], [9.173927, 45.47005], [9.164934, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#b3daff", "fill": "#b3daff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.164934, 45.479043], [9.164934, 45.488036], [9.173927, 45.488036], [9.173927, 45.479043], [9.164934, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.164934, 45.488036], [9.164934, 45.49703], [9.173927, 45.49703], [9.173927, 45.488036], [9.164934, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.164934, 45.49703], [9.164934, 45.506023], [9.173927, 45.506023], [9.173927, 45.49703], [9.164934, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.164934, 45.506023], [9.164934, 45.515016], [9.173927, 45.515016], [9.173927, 45.506023], [9.164934, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#007aeb", "fill": "#007aeb", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.164934, 45.515016], [9.164934, 45.524009], [9.173927, 45.524009], [9.173927, 45.515016], [9.164934, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#00529e", "fill": "#00529e", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.164934, 45.524009], [9.164934, 45.533002], [9.173927, 45.533002], [9.173927, 45.524009], [9.164934, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#b3daff", "fill": "#b3daff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.173927, 45.44307], [9.173927, 45.452063], [9.182921, 45.452063], [9.182921, 45.44307], [9.173927, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#b3daff", "fill": "#b3daff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.173927, 45.452063], [9.173927, 45.461057], [9.182921, 45.461057], [9.182921, 45.452063], [9.173927, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#b3daff", "fill": "#b3daff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.173927, 45.461057], [9.173927, 45.47005], [9.182921, 45.47005], [9.182921, 45.461057], [9.173927, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#b3daff", "fill": "#b3daff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.173927, 45.47005], [9.173927, 45.479043], [9.182921, 45.479043], [9.182921, 45.47005], [9.173927, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.173927, 45.479043], [9.173927, 45.488036], [9.182921, 45.488036], [9.182921, 45.479043], [9.173927, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.173927, 45.488036], [9.173927, 45.49703], [9.182921, 45.49703], [9.182921, 45.488036], [9.173927, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.173927, 45.49703], [9.173927, 45.506023], [9.182921, 45.506023], [9.182921, 45.49703], [9.173927, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.173927, 45.506023], [9.173927, 45.515016], [9.182921, 45.515016], [9.182921, 45.506023], [9.173927, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.173927, 45.515016], [9.173927, 45.524009], [9.182921, 45.524009], [9.182921, 45.515016], [9.173927, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#003361", "fill": "#003361", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.173927, 45.524009], [9.173927, 45.533002], [9.182921, 45.533002], [9.182921, 45.524009], [9.173927, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.182921, 45.44307], [9.182921, 45.452063], [9.191914, 45.452063], [9.191914, 45.44307], [9.182921, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.182921, 45.452063], [9.182921, 45.461057], [9.191914, 45.461057], [9.191914, 45.452063], [9.182921, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#b3daff", "fill": "#b3daff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.182921, 45.461057], [9.182921, 45.47005], [9.191914, 45.47005], [9.191914, 45.461057], [9.182921, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.182921, 45.47005], [9.182921, 45.479043], [9.191914, 45.479043], [9.191914, 45.47005], [9.182921, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.182921, 45.479043], [9.182921, 45.488036], [9.191914, 45.488036], [9.191914, 45.479043], [9.182921, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8ac7ff", "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.182921, 45.488036], [9.182921, 45.49703], [9.191914, 45.49703], [9.191914, 45.488036], [9.182921, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.182921, 45.49703], [9.182921, 45.506023], [9.191914, 45.506023], [9.191914, 45.49703], [9.182921, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.182921, 45.506023], [9.182921, 45.515016], [9.191914, 45.515016], [9.191914, 45.506023], [9.182921, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#005db3", "fill": "#005db3", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.182921, 45.515016], [9.182921, 45.524009], [9.191914, 45.524009], [9.191914, 45.515016], [9.182921, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 40, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.182921, 45.524009], [9.182921, 45.533002], [9.191914, 45.533002], [9.191914, 45.524009], [9.182921, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.191914, 45.44307], [9.191914, 45.452063], [9.200907, 45.452063], [9.200907, 45.44307], [9.191914, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.191914, 45.452063], [9.191914, 45.461057], [9.200907, 45.461057], [9.200907, 45.452063], [9.191914, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.191914, 45.461057], [9.191914, 45.47005], [9.200907, 45.47005], [9.200907, 45.461057], [9.191914, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.191914, 45.47005], [9.191914, 45.479043], [9.200907, 45.479043], [9.200907, 45.47005], [9.191914, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8ac7ff", "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.191914, 45.479043], [9.191914, 45.488036], [9.200907, 45.488036], [9.200907, 45.479043], [9.191914, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.191914, 45.488036], [9.191914, 45.49703], [9.200907, 45.49703], [9.200907, 45.488036], [9.191914, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.191914, 45.49703], [9.191914, 45.506023], [9.200907, 45.506023], [9.200907, 45.49703], [9.191914, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.191914, 45.506023], [9.191914, 45.515016], [9.200907, 45.515016], [9.200907, 45.506023], [9.191914, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#005db3", "fill": "#005db3", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.191914, 45.515016], [9.191914, 45.524009], [9.200907, 45.524009], [9.200907, 45.515016], [9.191914, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 42, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.191914, 45.524009], [9.191914, 45.533002], [9.200907, 45.533002], [9.200907, 45.524009], [9.191914, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.200907, 45.44307], [9.200907, 45.452063], [9.2099, 45.452063], [9.2099, 45.44307], [9.200907, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.200907, 45.452063], [9.200907, 45.461057], [9.2099, 45.461057], [9.2099, 45.452063], [9.200907, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.200907, 45.461057], [9.200907, 45.47005], [9.2099, 45.47005], [9.2099, 45.461057], [9.200907, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8ac7ff", "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.200907, 45.47005], [9.200907, 45.479043], [9.2099, 45.479043], [9.2099, 45.47005], [9.200907, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8ac7ff", "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.200907, 45.479043], [9.200907, 45.488036], [9.2099, 45.488036], [9.2099, 45.479043], [9.200907, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.200907, 45.488036], [9.200907, 45.49703], [9.2099, 45.49703], [9.2099, 45.488036], [9.200907, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.200907, 45.49703], [9.200907, 45.506023], [9.2099, 45.506023], [9.2099, 45.49703], [9.200907, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.200907, 45.506023], [9.200907, 45.515016], [9.2099, 45.515016], [9.2099, 45.506023], [9.200907, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#005db3", "fill": "#005db3", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.200907, 45.515016], [9.200907, 45.524009], [9.2099, 45.524009], [9.2099, 45.515016], [9.200907, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 40, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.200907, 45.524009], [9.200907, 45.533002], [9.2099, 45.533002], [9.2099, 45.524009], [9.200907, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8ac7ff", "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2099, 45.44307], [9.2099, 45.452063], [9.218893, 45.452063], [9.218893, 45.44307], [9.2099, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8ac7ff", "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2099, 45.452063], [9.2099, 45.461057], [9.218893, 45.461057], [9.218893, 45.452063], [9.2099, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8ac7ff", "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2099, 45.461057], [9.2099, 45.47005], [9.218893, 45.47005], [9.218893, 45.461057], [9.2099, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8ac7ff", "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2099, 45.47005], [9.2099, 45.479043], [9.218893, 45.479043], [9.218893, 45.47005], [9.2099, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8ac7ff", "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2099, 45.479043], [9.2099, 45.488036], [9.218893, 45.488036], [9.218893, 45.479043], [9.2099, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8ac7ff", "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2099, 45.488036], [9.2099, 45.49703], [9.218893, 45.49703], [9.218893, 45.488036], [9.2099, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2099, 45.49703], [9.2099, 45.506023], [9.218893, 45.506023], [9.218893, 45.49703], [9.2099, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#148fff", "fill": "#148fff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2099, 45.506023], [9.2099, 45.515016], [9.218893, 45.515016], [9.218893, 45.506023], [9.2099, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0065c2", "fill": "#0065c2", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2099, 45.515016], [9.2099, 45.524009], [9.218893, 45.524009], [9.218893, 45.515016], [9.2099, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#003d75", "fill": "#003d75", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.2099, 45.524009], [9.2099, 45.533002], [9.218893, 45.533002], [9.218893, 45.524009], [9.2099, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8ac7ff", "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.218893, 45.44307], [9.218893, 45.452063], [9.227887, 45.452063], [9.227887, 45.44307], [9.218893, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8ac7ff", "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.218893, 45.452063], [9.218893, 45.461057], [9.227887, 45.461057], [9.227887, 45.452063], [9.218893, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8ac7ff", "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.218893, 45.461057], [9.218893, 45.47005], [9.227887, 45.47005], [9.227887, 45.461057], [9.218893, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8ac7ff", "fill": "#8ac7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.218893, 45.47005], [9.218893, 45.479043], [9.227887, 45.479043], [9.227887, 45.47005], [9.218893, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.218893, 45.479043], [9.218893, 45.488036], [9.227887, 45.488036], [9.227887, 45.479043], [9.218893, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#b3daff", "fill": "#b3daff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.218893, 45.488036], [9.218893, 45.49703], [9.227887, 45.49703], [9.227887, 45.488036], [9.218893, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.218893, 45.49703], [9.218893, 45.506023], [9.227887, 45.506023], [9.227887, 45.49703], [9.218893, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.218893, 45.506023], [9.218893, 45.515016], [9.227887, 45.515016], [9.227887, 45.506023], [9.218893, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#007aeb", "fill": "#007aeb", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.218893, 45.515016], [9.218893, 45.524009], [9.227887, 45.524009], [9.227887, 45.515016], [9.218893, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#00529e", "fill": "#00529e", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.218893, 45.524009], [9.218893, 45.533002], [9.227887, 45.533002], [9.227887, 45.524009], [9.218893, 45.524009] ] ] } } ] } ================================================ FILE: packages/turf-interpolate/test/out/data-500m-bbox.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.339648], [9.032822, 45.344145], [9.037318, 45.344145], [9.037318, 45.339648], [9.032822, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.344145], [9.032822, 45.348642], [9.037318, 45.348642], [9.037318, 45.344145], [9.032822, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.348642], [9.032822, 45.353138], [9.037318, 45.353138], [9.037318, 45.348642], [9.032822, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.353138], [9.032822, 45.357635], [9.037318, 45.357635], [9.037318, 45.353138], [9.032822, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.357635], [9.032822, 45.362131], [9.037318, 45.362131], [9.037318, 45.357635], [9.032822, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.362131], [9.032822, 45.366628], [9.037318, 45.366628], [9.037318, 45.362131], [9.032822, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.366628], [9.032822, 45.371125], [9.037318, 45.371125], [9.037318, 45.366628], [9.032822, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.371125], [9.032822, 45.375621], [9.037318, 45.375621], [9.037318, 45.371125], [9.032822, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.375621], [9.032822, 45.380118], [9.037318, 45.380118], [9.037318, 45.375621], [9.032822, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.380118], [9.032822, 45.384614], [9.037318, 45.384614], [9.037318, 45.380118], [9.032822, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.384614], [9.032822, 45.389111], [9.037318, 45.389111], [9.037318, 45.384614], [9.032822, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.389111], [9.032822, 45.393608], [9.037318, 45.393608], [9.037318, 45.389111], [9.032822, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.393608], [9.032822, 45.398104], [9.037318, 45.398104], [9.037318, 45.393608], [9.032822, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.398104], [9.032822, 45.402601], [9.037318, 45.402601], [9.037318, 45.398104], [9.032822, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.402601], [9.032822, 45.407097], [9.037318, 45.407097], [9.037318, 45.402601], [9.032822, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.407097], [9.032822, 45.411594], [9.037318, 45.411594], [9.037318, 45.407097], [9.032822, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.411594], [9.032822, 45.416091], [9.037318, 45.416091], [9.037318, 45.411594], [9.032822, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.416091], [9.032822, 45.420587], [9.037318, 45.420587], [9.037318, 45.416091], [9.032822, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.420587], [9.032822, 45.425084], [9.037318, 45.425084], [9.037318, 45.420587], [9.032822, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.425084], [9.032822, 45.42958], [9.037318, 45.42958], [9.037318, 45.425084], [9.032822, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.42958], [9.032822, 45.434077], [9.037318, 45.434077], [9.037318, 45.42958], [9.032822, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.434077], [9.032822, 45.438574], [9.037318, 45.438574], [9.037318, 45.434077], [9.032822, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.438574], [9.032822, 45.44307], [9.037318, 45.44307], [9.037318, 45.438574], [9.032822, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.44307], [9.032822, 45.447567], [9.037318, 45.447567], [9.037318, 45.44307], [9.032822, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.447567], [9.032822, 45.452063], [9.037318, 45.452063], [9.037318, 45.447567], [9.032822, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.452063], [9.032822, 45.45656], [9.037318, 45.45656], [9.037318, 45.452063], [9.032822, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.45656], [9.032822, 45.461057], [9.037318, 45.461057], [9.037318, 45.45656], [9.032822, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.461057], [9.032822, 45.465553], [9.037318, 45.465553], [9.037318, 45.461057], [9.032822, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.465553], [9.032822, 45.47005], [9.037318, 45.47005], [9.037318, 45.465553], [9.032822, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.47005], [9.032822, 45.474547], [9.037318, 45.474547], [9.037318, 45.47005], [9.032822, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.474547], [9.032822, 45.479043], [9.037318, 45.479043], [9.037318, 45.474547], [9.032822, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.479043], [9.032822, 45.48354], [9.037318, 45.48354], [9.037318, 45.479043], [9.032822, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.48354], [9.032822, 45.488036], [9.037318, 45.488036], [9.037318, 45.48354], [9.032822, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.488036], [9.032822, 45.492533], [9.037318, 45.492533], [9.037318, 45.488036], [9.032822, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.492533], [9.032822, 45.49703], [9.037318, 45.49703], [9.037318, 45.492533], [9.032822, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.49703], [9.032822, 45.501526], [9.037318, 45.501526], [9.037318, 45.49703], [9.032822, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.501526], [9.032822, 45.506023], [9.037318, 45.506023], [9.037318, 45.501526], [9.032822, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.506023], [9.032822, 45.510519], [9.037318, 45.510519], [9.037318, 45.506023], [9.032822, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.510519], [9.032822, 45.515016], [9.037318, 45.515016], [9.037318, 45.510519], [9.032822, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.515016], [9.032822, 45.519513], [9.037318, 45.519513], [9.037318, 45.515016], [9.032822, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.519513], [9.032822, 45.524009], [9.037318, 45.524009], [9.037318, 45.519513], [9.032822, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.524009], [9.032822, 45.528506], [9.037318, 45.528506], [9.037318, 45.524009], [9.032822, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.528506], [9.032822, 45.533002], [9.037318, 45.533002], [9.037318, 45.528506], [9.032822, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.533002], [9.032822, 45.537499], [9.037318, 45.537499], [9.037318, 45.533002], [9.032822, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.537499], [9.032822, 45.541996], [9.037318, 45.541996], [9.037318, 45.537499], [9.032822, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.541996], [9.032822, 45.546492], [9.037318, 45.546492], [9.037318, 45.541996], [9.032822, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.546492], [9.032822, 45.550989], [9.037318, 45.550989], [9.037318, 45.546492], [9.032822, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.550989], [9.032822, 45.555485], [9.037318, 45.555485], [9.037318, 45.550989], [9.032822, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.555485], [9.032822, 45.559982], [9.037318, 45.559982], [9.037318, 45.555485], [9.032822, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.559982], [9.032822, 45.564479], [9.037318, 45.564479], [9.037318, 45.559982], [9.032822, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.564479], [9.032822, 45.568975], [9.037318, 45.568975], [9.037318, 45.564479], [9.032822, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.568975], [9.032822, 45.573472], [9.037318, 45.573472], [9.037318, 45.568975], [9.032822, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.573472], [9.032822, 45.577968], [9.037318, 45.577968], [9.037318, 45.573472], [9.032822, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.577968], [9.032822, 45.582465], [9.037318, 45.582465], [9.037318, 45.577968], [9.032822, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.582465], [9.032822, 45.586962], [9.037318, 45.586962], [9.037318, 45.582465], [9.032822, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.586962], [9.032822, 45.591458], [9.037318, 45.591458], [9.037318, 45.586962], [9.032822, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.591458], [9.032822, 45.595955], [9.037318, 45.595955], [9.037318, 45.591458], [9.032822, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.595955], [9.032822, 45.600451], [9.037318, 45.600451], [9.037318, 45.595955], [9.032822, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.600451], [9.032822, 45.604948], [9.037318, 45.604948], [9.037318, 45.600451], [9.032822, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.604948], [9.032822, 45.609445], [9.037318, 45.609445], [9.037318, 45.604948], [9.032822, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.609445], [9.032822, 45.613941], [9.037318, 45.613941], [9.037318, 45.609445], [9.032822, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.613941], [9.032822, 45.618438], [9.037318, 45.618438], [9.037318, 45.613941], [9.032822, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.618438], [9.032822, 45.622934], [9.037318, 45.622934], [9.037318, 45.618438], [9.032822, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.622934], [9.032822, 45.627431], [9.037318, 45.627431], [9.037318, 45.622934], [9.032822, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.627431], [9.032822, 45.631928], [9.037318, 45.631928], [9.037318, 45.627431], [9.032822, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.032822, 45.631928], [9.032822, 45.636424], [9.037318, 45.636424], [9.037318, 45.631928], [9.032822, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.339648], [9.037318, 45.344145], [9.041815, 45.344145], [9.041815, 45.339648], [9.037318, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.344145], [9.037318, 45.348642], [9.041815, 45.348642], [9.041815, 45.344145], [9.037318, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.348642], [9.037318, 45.353138], [9.041815, 45.353138], [9.041815, 45.348642], [9.037318, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.353138], [9.037318, 45.357635], [9.041815, 45.357635], [9.041815, 45.353138], [9.037318, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.357635], [9.037318, 45.362131], [9.041815, 45.362131], [9.041815, 45.357635], [9.037318, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.362131], [9.037318, 45.366628], [9.041815, 45.366628], [9.041815, 45.362131], [9.037318, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.366628], [9.037318, 45.371125], [9.041815, 45.371125], [9.041815, 45.366628], [9.037318, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.371125], [9.037318, 45.375621], [9.041815, 45.375621], [9.041815, 45.371125], [9.037318, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.375621], [9.037318, 45.380118], [9.041815, 45.380118], [9.041815, 45.375621], [9.037318, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.380118], [9.037318, 45.384614], [9.041815, 45.384614], [9.041815, 45.380118], [9.037318, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.384614], [9.037318, 45.389111], [9.041815, 45.389111], [9.041815, 45.384614], [9.037318, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.389111], [9.037318, 45.393608], [9.041815, 45.393608], [9.041815, 45.389111], [9.037318, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.393608], [9.037318, 45.398104], [9.041815, 45.398104], [9.041815, 45.393608], [9.037318, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.398104], [9.037318, 45.402601], [9.041815, 45.402601], [9.041815, 45.398104], [9.037318, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.402601], [9.037318, 45.407097], [9.041815, 45.407097], [9.041815, 45.402601], [9.037318, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.407097], [9.037318, 45.411594], [9.041815, 45.411594], [9.041815, 45.407097], [9.037318, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.411594], [9.037318, 45.416091], [9.041815, 45.416091], [9.041815, 45.411594], [9.037318, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.416091], [9.037318, 45.420587], [9.041815, 45.420587], [9.041815, 45.416091], [9.037318, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.420587], [9.037318, 45.425084], [9.041815, 45.425084], [9.041815, 45.420587], [9.037318, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.425084], [9.037318, 45.42958], [9.041815, 45.42958], [9.041815, 45.425084], [9.037318, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.42958], [9.037318, 45.434077], [9.041815, 45.434077], [9.041815, 45.42958], [9.037318, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.434077], [9.037318, 45.438574], [9.041815, 45.438574], [9.041815, 45.434077], [9.037318, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.438574], [9.037318, 45.44307], [9.041815, 45.44307], [9.041815, 45.438574], [9.037318, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.44307], [9.037318, 45.447567], [9.041815, 45.447567], [9.041815, 45.44307], [9.037318, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.447567], [9.037318, 45.452063], [9.041815, 45.452063], [9.041815, 45.447567], [9.037318, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.452063], [9.037318, 45.45656], [9.041815, 45.45656], [9.041815, 45.452063], [9.037318, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.45656], [9.037318, 45.461057], [9.041815, 45.461057], [9.041815, 45.45656], [9.037318, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.461057], [9.037318, 45.465553], [9.041815, 45.465553], [9.041815, 45.461057], [9.037318, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.465553], [9.037318, 45.47005], [9.041815, 45.47005], [9.041815, 45.465553], [9.037318, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.47005], [9.037318, 45.474547], [9.041815, 45.474547], [9.041815, 45.47005], [9.037318, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.474547], [9.037318, 45.479043], [9.041815, 45.479043], [9.041815, 45.474547], [9.037318, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.479043], [9.037318, 45.48354], [9.041815, 45.48354], [9.041815, 45.479043], [9.037318, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.48354], [9.037318, 45.488036], [9.041815, 45.488036], [9.041815, 45.48354], [9.037318, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.488036], [9.037318, 45.492533], [9.041815, 45.492533], [9.041815, 45.488036], [9.037318, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.492533], [9.037318, 45.49703], [9.041815, 45.49703], [9.041815, 45.492533], [9.037318, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.49703], [9.037318, 45.501526], [9.041815, 45.501526], [9.041815, 45.49703], [9.037318, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.501526], [9.037318, 45.506023], [9.041815, 45.506023], [9.041815, 45.501526], [9.037318, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.506023], [9.037318, 45.510519], [9.041815, 45.510519], [9.041815, 45.506023], [9.037318, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.510519], [9.037318, 45.515016], [9.041815, 45.515016], [9.041815, 45.510519], [9.037318, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.515016], [9.037318, 45.519513], [9.041815, 45.519513], [9.041815, 45.515016], [9.037318, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.519513], [9.037318, 45.524009], [9.041815, 45.524009], [9.041815, 45.519513], [9.037318, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.524009], [9.037318, 45.528506], [9.041815, 45.528506], [9.041815, 45.524009], [9.037318, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.528506], [9.037318, 45.533002], [9.041815, 45.533002], [9.041815, 45.528506], [9.037318, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.533002], [9.037318, 45.537499], [9.041815, 45.537499], [9.041815, 45.533002], [9.037318, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.537499], [9.037318, 45.541996], [9.041815, 45.541996], [9.041815, 45.537499], [9.037318, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.541996], [9.037318, 45.546492], [9.041815, 45.546492], [9.041815, 45.541996], [9.037318, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.546492], [9.037318, 45.550989], [9.041815, 45.550989], [9.041815, 45.546492], [9.037318, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.550989], [9.037318, 45.555485], [9.041815, 45.555485], [9.041815, 45.550989], [9.037318, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.555485], [9.037318, 45.559982], [9.041815, 45.559982], [9.041815, 45.555485], [9.037318, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.559982], [9.037318, 45.564479], [9.041815, 45.564479], [9.041815, 45.559982], [9.037318, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.564479], [9.037318, 45.568975], [9.041815, 45.568975], [9.041815, 45.564479], [9.037318, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.568975], [9.037318, 45.573472], [9.041815, 45.573472], [9.041815, 45.568975], [9.037318, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.573472], [9.037318, 45.577968], [9.041815, 45.577968], [9.041815, 45.573472], [9.037318, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.577968], [9.037318, 45.582465], [9.041815, 45.582465], [9.041815, 45.577968], [9.037318, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.582465], [9.037318, 45.586962], [9.041815, 45.586962], [9.041815, 45.582465], [9.037318, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.586962], [9.037318, 45.591458], [9.041815, 45.591458], [9.041815, 45.586962], [9.037318, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.591458], [9.037318, 45.595955], [9.041815, 45.595955], [9.041815, 45.591458], [9.037318, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.595955], [9.037318, 45.600451], [9.041815, 45.600451], [9.041815, 45.595955], [9.037318, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.600451], [9.037318, 45.604948], [9.041815, 45.604948], [9.041815, 45.600451], [9.037318, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.604948], [9.037318, 45.609445], [9.041815, 45.609445], [9.041815, 45.604948], [9.037318, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.609445], [9.037318, 45.613941], [9.041815, 45.613941], [9.041815, 45.609445], [9.037318, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.613941], [9.037318, 45.618438], [9.041815, 45.618438], [9.041815, 45.613941], [9.037318, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.618438], [9.037318, 45.622934], [9.041815, 45.622934], [9.041815, 45.618438], [9.037318, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.622934], [9.037318, 45.627431], [9.041815, 45.627431], [9.041815, 45.622934], [9.037318, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.627431], [9.037318, 45.631928], [9.041815, 45.631928], [9.041815, 45.627431], [9.037318, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.037318, 45.631928], [9.037318, 45.636424], [9.041815, 45.636424], [9.041815, 45.631928], [9.037318, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.339648], [9.041815, 45.344145], [9.046312, 45.344145], [9.046312, 45.339648], [9.041815, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.344145], [9.041815, 45.348642], [9.046312, 45.348642], [9.046312, 45.344145], [9.041815, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.348642], [9.041815, 45.353138], [9.046312, 45.353138], [9.046312, 45.348642], [9.041815, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.353138], [9.041815, 45.357635], [9.046312, 45.357635], [9.046312, 45.353138], [9.041815, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.357635], [9.041815, 45.362131], [9.046312, 45.362131], [9.046312, 45.357635], [9.041815, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.362131], [9.041815, 45.366628], [9.046312, 45.366628], [9.046312, 45.362131], [9.041815, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.366628], [9.041815, 45.371125], [9.046312, 45.371125], [9.046312, 45.366628], [9.041815, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.371125], [9.041815, 45.375621], [9.046312, 45.375621], [9.046312, 45.371125], [9.041815, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.375621], [9.041815, 45.380118], [9.046312, 45.380118], [9.046312, 45.375621], [9.041815, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.380118], [9.041815, 45.384614], [9.046312, 45.384614], [9.046312, 45.380118], [9.041815, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.384614], [9.041815, 45.389111], [9.046312, 45.389111], [9.046312, 45.384614], [9.041815, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.389111], [9.041815, 45.393608], [9.046312, 45.393608], [9.046312, 45.389111], [9.041815, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.393608], [9.041815, 45.398104], [9.046312, 45.398104], [9.046312, 45.393608], [9.041815, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.398104], [9.041815, 45.402601], [9.046312, 45.402601], [9.046312, 45.398104], [9.041815, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.402601], [9.041815, 45.407097], [9.046312, 45.407097], [9.046312, 45.402601], [9.041815, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.407097], [9.041815, 45.411594], [9.046312, 45.411594], [9.046312, 45.407097], [9.041815, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.411594], [9.041815, 45.416091], [9.046312, 45.416091], [9.046312, 45.411594], [9.041815, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.416091], [9.041815, 45.420587], [9.046312, 45.420587], [9.046312, 45.416091], [9.041815, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.420587], [9.041815, 45.425084], [9.046312, 45.425084], [9.046312, 45.420587], [9.041815, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.425084], [9.041815, 45.42958], [9.046312, 45.42958], [9.046312, 45.425084], [9.041815, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.42958], [9.041815, 45.434077], [9.046312, 45.434077], [9.046312, 45.42958], [9.041815, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.434077], [9.041815, 45.438574], [9.046312, 45.438574], [9.046312, 45.434077], [9.041815, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.438574], [9.041815, 45.44307], [9.046312, 45.44307], [9.046312, 45.438574], [9.041815, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.44307], [9.041815, 45.447567], [9.046312, 45.447567], [9.046312, 45.44307], [9.041815, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.447567], [9.041815, 45.452063], [9.046312, 45.452063], [9.046312, 45.447567], [9.041815, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.452063], [9.041815, 45.45656], [9.046312, 45.45656], [9.046312, 45.452063], [9.041815, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.45656], [9.041815, 45.461057], [9.046312, 45.461057], [9.046312, 45.45656], [9.041815, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.461057], [9.041815, 45.465553], [9.046312, 45.465553], [9.046312, 45.461057], [9.041815, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.465553], [9.041815, 45.47005], [9.046312, 45.47005], [9.046312, 45.465553], [9.041815, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.47005], [9.041815, 45.474547], [9.046312, 45.474547], [9.046312, 45.47005], [9.041815, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.474547], [9.041815, 45.479043], [9.046312, 45.479043], [9.046312, 45.474547], [9.041815, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.479043], [9.041815, 45.48354], [9.046312, 45.48354], [9.046312, 45.479043], [9.041815, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.48354], [9.041815, 45.488036], [9.046312, 45.488036], [9.046312, 45.48354], [9.041815, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.488036], [9.041815, 45.492533], [9.046312, 45.492533], [9.046312, 45.488036], [9.041815, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.492533], [9.041815, 45.49703], [9.046312, 45.49703], [9.046312, 45.492533], [9.041815, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.49703], [9.041815, 45.501526], [9.046312, 45.501526], [9.046312, 45.49703], [9.041815, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.501526], [9.041815, 45.506023], [9.046312, 45.506023], [9.046312, 45.501526], [9.041815, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.506023], [9.041815, 45.510519], [9.046312, 45.510519], [9.046312, 45.506023], [9.041815, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.510519], [9.041815, 45.515016], [9.046312, 45.515016], [9.046312, 45.510519], [9.041815, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.515016], [9.041815, 45.519513], [9.046312, 45.519513], [9.046312, 45.515016], [9.041815, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.519513], [9.041815, 45.524009], [9.046312, 45.524009], [9.046312, 45.519513], [9.041815, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.524009], [9.041815, 45.528506], [9.046312, 45.528506], [9.046312, 45.524009], [9.041815, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.528506], [9.041815, 45.533002], [9.046312, 45.533002], [9.046312, 45.528506], [9.041815, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.533002], [9.041815, 45.537499], [9.046312, 45.537499], [9.046312, 45.533002], [9.041815, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.537499], [9.041815, 45.541996], [9.046312, 45.541996], [9.046312, 45.537499], [9.041815, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.541996], [9.041815, 45.546492], [9.046312, 45.546492], [9.046312, 45.541996], [9.041815, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.546492], [9.041815, 45.550989], [9.046312, 45.550989], [9.046312, 45.546492], [9.041815, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.550989], [9.041815, 45.555485], [9.046312, 45.555485], [9.046312, 45.550989], [9.041815, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.555485], [9.041815, 45.559982], [9.046312, 45.559982], [9.046312, 45.555485], [9.041815, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.559982], [9.041815, 45.564479], [9.046312, 45.564479], [9.046312, 45.559982], [9.041815, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.564479], [9.041815, 45.568975], [9.046312, 45.568975], [9.046312, 45.564479], [9.041815, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.568975], [9.041815, 45.573472], [9.046312, 45.573472], [9.046312, 45.568975], [9.041815, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.573472], [9.041815, 45.577968], [9.046312, 45.577968], [9.046312, 45.573472], [9.041815, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.577968], [9.041815, 45.582465], [9.046312, 45.582465], [9.046312, 45.577968], [9.041815, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.582465], [9.041815, 45.586962], [9.046312, 45.586962], [9.046312, 45.582465], [9.041815, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.586962], [9.041815, 45.591458], [9.046312, 45.591458], [9.046312, 45.586962], [9.041815, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.591458], [9.041815, 45.595955], [9.046312, 45.595955], [9.046312, 45.591458], [9.041815, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.595955], [9.041815, 45.600451], [9.046312, 45.600451], [9.046312, 45.595955], [9.041815, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.600451], [9.041815, 45.604948], [9.046312, 45.604948], [9.046312, 45.600451], [9.041815, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.604948], [9.041815, 45.609445], [9.046312, 45.609445], [9.046312, 45.604948], [9.041815, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.609445], [9.041815, 45.613941], [9.046312, 45.613941], [9.046312, 45.609445], [9.041815, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.613941], [9.041815, 45.618438], [9.046312, 45.618438], [9.046312, 45.613941], [9.041815, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.618438], [9.041815, 45.622934], [9.046312, 45.622934], [9.046312, 45.618438], [9.041815, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.622934], [9.041815, 45.627431], [9.046312, 45.627431], [9.046312, 45.622934], [9.041815, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.627431], [9.041815, 45.631928], [9.046312, 45.631928], [9.046312, 45.627431], [9.041815, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.041815, 45.631928], [9.041815, 45.636424], [9.046312, 45.636424], [9.046312, 45.631928], [9.041815, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.339648], [9.046312, 45.344145], [9.050808, 45.344145], [9.050808, 45.339648], [9.046312, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.344145], [9.046312, 45.348642], [9.050808, 45.348642], [9.050808, 45.344145], [9.046312, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.348642], [9.046312, 45.353138], [9.050808, 45.353138], [9.050808, 45.348642], [9.046312, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.353138], [9.046312, 45.357635], [9.050808, 45.357635], [9.050808, 45.353138], [9.046312, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.357635], [9.046312, 45.362131], [9.050808, 45.362131], [9.050808, 45.357635], [9.046312, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.362131], [9.046312, 45.366628], [9.050808, 45.366628], [9.050808, 45.362131], [9.046312, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.366628], [9.046312, 45.371125], [9.050808, 45.371125], [9.050808, 45.366628], [9.046312, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.371125], [9.046312, 45.375621], [9.050808, 45.375621], [9.050808, 45.371125], [9.046312, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.375621], [9.046312, 45.380118], [9.050808, 45.380118], [9.050808, 45.375621], [9.046312, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.380118], [9.046312, 45.384614], [9.050808, 45.384614], [9.050808, 45.380118], [9.046312, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.384614], [9.046312, 45.389111], [9.050808, 45.389111], [9.050808, 45.384614], [9.046312, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.389111], [9.046312, 45.393608], [9.050808, 45.393608], [9.050808, 45.389111], [9.046312, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.393608], [9.046312, 45.398104], [9.050808, 45.398104], [9.050808, 45.393608], [9.046312, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.398104], [9.046312, 45.402601], [9.050808, 45.402601], [9.050808, 45.398104], [9.046312, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.402601], [9.046312, 45.407097], [9.050808, 45.407097], [9.050808, 45.402601], [9.046312, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.407097], [9.046312, 45.411594], [9.050808, 45.411594], [9.050808, 45.407097], [9.046312, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.411594], [9.046312, 45.416091], [9.050808, 45.416091], [9.050808, 45.411594], [9.046312, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.416091], [9.046312, 45.420587], [9.050808, 45.420587], [9.050808, 45.416091], [9.046312, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.420587], [9.046312, 45.425084], [9.050808, 45.425084], [9.050808, 45.420587], [9.046312, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.425084], [9.046312, 45.42958], [9.050808, 45.42958], [9.050808, 45.425084], [9.046312, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.42958], [9.046312, 45.434077], [9.050808, 45.434077], [9.050808, 45.42958], [9.046312, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.434077], [9.046312, 45.438574], [9.050808, 45.438574], [9.050808, 45.434077], [9.046312, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.438574], [9.046312, 45.44307], [9.050808, 45.44307], [9.050808, 45.438574], [9.046312, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.44307], [9.046312, 45.447567], [9.050808, 45.447567], [9.050808, 45.44307], [9.046312, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.447567], [9.046312, 45.452063], [9.050808, 45.452063], [9.050808, 45.447567], [9.046312, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.452063], [9.046312, 45.45656], [9.050808, 45.45656], [9.050808, 45.452063], [9.046312, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.45656], [9.046312, 45.461057], [9.050808, 45.461057], [9.050808, 45.45656], [9.046312, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.461057], [9.046312, 45.465553], [9.050808, 45.465553], [9.050808, 45.461057], [9.046312, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.465553], [9.046312, 45.47005], [9.050808, 45.47005], [9.050808, 45.465553], [9.046312, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.47005], [9.046312, 45.474547], [9.050808, 45.474547], [9.050808, 45.47005], [9.046312, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.474547], [9.046312, 45.479043], [9.050808, 45.479043], [9.050808, 45.474547], [9.046312, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.479043], [9.046312, 45.48354], [9.050808, 45.48354], [9.050808, 45.479043], [9.046312, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.48354], [9.046312, 45.488036], [9.050808, 45.488036], [9.050808, 45.48354], [9.046312, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.488036], [9.046312, 45.492533], [9.050808, 45.492533], [9.050808, 45.488036], [9.046312, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.492533], [9.046312, 45.49703], [9.050808, 45.49703], [9.050808, 45.492533], [9.046312, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.49703], [9.046312, 45.501526], [9.050808, 45.501526], [9.050808, 45.49703], [9.046312, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.501526], [9.046312, 45.506023], [9.050808, 45.506023], [9.050808, 45.501526], [9.046312, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.506023], [9.046312, 45.510519], [9.050808, 45.510519], [9.050808, 45.506023], [9.046312, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.510519], [9.046312, 45.515016], [9.050808, 45.515016], [9.050808, 45.510519], [9.046312, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.515016], [9.046312, 45.519513], [9.050808, 45.519513], [9.050808, 45.515016], [9.046312, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.519513], [9.046312, 45.524009], [9.050808, 45.524009], [9.050808, 45.519513], [9.046312, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.524009], [9.046312, 45.528506], [9.050808, 45.528506], [9.050808, 45.524009], [9.046312, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.528506], [9.046312, 45.533002], [9.050808, 45.533002], [9.050808, 45.528506], [9.046312, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.533002], [9.046312, 45.537499], [9.050808, 45.537499], [9.050808, 45.533002], [9.046312, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.537499], [9.046312, 45.541996], [9.050808, 45.541996], [9.050808, 45.537499], [9.046312, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.541996], [9.046312, 45.546492], [9.050808, 45.546492], [9.050808, 45.541996], [9.046312, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.546492], [9.046312, 45.550989], [9.050808, 45.550989], [9.050808, 45.546492], [9.046312, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.550989], [9.046312, 45.555485], [9.050808, 45.555485], [9.050808, 45.550989], [9.046312, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.555485], [9.046312, 45.559982], [9.050808, 45.559982], [9.050808, 45.555485], [9.046312, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.559982], [9.046312, 45.564479], [9.050808, 45.564479], [9.050808, 45.559982], [9.046312, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.564479], [9.046312, 45.568975], [9.050808, 45.568975], [9.050808, 45.564479], [9.046312, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.568975], [9.046312, 45.573472], [9.050808, 45.573472], [9.050808, 45.568975], [9.046312, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.573472], [9.046312, 45.577968], [9.050808, 45.577968], [9.050808, 45.573472], [9.046312, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.577968], [9.046312, 45.582465], [9.050808, 45.582465], [9.050808, 45.577968], [9.046312, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.582465], [9.046312, 45.586962], [9.050808, 45.586962], [9.050808, 45.582465], [9.046312, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.586962], [9.046312, 45.591458], [9.050808, 45.591458], [9.050808, 45.586962], [9.046312, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.591458], [9.046312, 45.595955], [9.050808, 45.595955], [9.050808, 45.591458], [9.046312, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.595955], [9.046312, 45.600451], [9.050808, 45.600451], [9.050808, 45.595955], [9.046312, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.600451], [9.046312, 45.604948], [9.050808, 45.604948], [9.050808, 45.600451], [9.046312, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.604948], [9.046312, 45.609445], [9.050808, 45.609445], [9.050808, 45.604948], [9.046312, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.609445], [9.046312, 45.613941], [9.050808, 45.613941], [9.050808, 45.609445], [9.046312, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.613941], [9.046312, 45.618438], [9.050808, 45.618438], [9.050808, 45.613941], [9.046312, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.618438], [9.046312, 45.622934], [9.050808, 45.622934], [9.050808, 45.618438], [9.046312, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.622934], [9.046312, 45.627431], [9.050808, 45.627431], [9.050808, 45.622934], [9.046312, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.627431], [9.046312, 45.631928], [9.050808, 45.631928], [9.050808, 45.627431], [9.046312, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.046312, 45.631928], [9.046312, 45.636424], [9.050808, 45.636424], [9.050808, 45.631928], [9.046312, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.339648], [9.050808, 45.344145], [9.055305, 45.344145], [9.055305, 45.339648], [9.050808, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.344145], [9.050808, 45.348642], [9.055305, 45.348642], [9.055305, 45.344145], [9.050808, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.348642], [9.050808, 45.353138], [9.055305, 45.353138], [9.055305, 45.348642], [9.050808, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.353138], [9.050808, 45.357635], [9.055305, 45.357635], [9.055305, 45.353138], [9.050808, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.357635], [9.050808, 45.362131], [9.055305, 45.362131], [9.055305, 45.357635], [9.050808, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.362131], [9.050808, 45.366628], [9.055305, 45.366628], [9.055305, 45.362131], [9.050808, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.366628], [9.050808, 45.371125], [9.055305, 45.371125], [9.055305, 45.366628], [9.050808, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.371125], [9.050808, 45.375621], [9.055305, 45.375621], [9.055305, 45.371125], [9.050808, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.375621], [9.050808, 45.380118], [9.055305, 45.380118], [9.055305, 45.375621], [9.050808, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.380118], [9.050808, 45.384614], [9.055305, 45.384614], [9.055305, 45.380118], [9.050808, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.384614], [9.050808, 45.389111], [9.055305, 45.389111], [9.055305, 45.384614], [9.050808, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.389111], [9.050808, 45.393608], [9.055305, 45.393608], [9.055305, 45.389111], [9.050808, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.393608], [9.050808, 45.398104], [9.055305, 45.398104], [9.055305, 45.393608], [9.050808, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.398104], [9.050808, 45.402601], [9.055305, 45.402601], [9.055305, 45.398104], [9.050808, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.402601], [9.050808, 45.407097], [9.055305, 45.407097], [9.055305, 45.402601], [9.050808, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.407097], [9.050808, 45.411594], [9.055305, 45.411594], [9.055305, 45.407097], [9.050808, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.411594], [9.050808, 45.416091], [9.055305, 45.416091], [9.055305, 45.411594], [9.050808, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.416091], [9.050808, 45.420587], [9.055305, 45.420587], [9.055305, 45.416091], [9.050808, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.420587], [9.050808, 45.425084], [9.055305, 45.425084], [9.055305, 45.420587], [9.050808, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.425084], [9.050808, 45.42958], [9.055305, 45.42958], [9.055305, 45.425084], [9.050808, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.42958], [9.050808, 45.434077], [9.055305, 45.434077], [9.055305, 45.42958], [9.050808, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.434077], [9.050808, 45.438574], [9.055305, 45.438574], [9.055305, 45.434077], [9.050808, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.438574], [9.050808, 45.44307], [9.055305, 45.44307], [9.055305, 45.438574], [9.050808, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.44307], [9.050808, 45.447567], [9.055305, 45.447567], [9.055305, 45.44307], [9.050808, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.447567], [9.050808, 45.452063], [9.055305, 45.452063], [9.055305, 45.447567], [9.050808, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.452063], [9.050808, 45.45656], [9.055305, 45.45656], [9.055305, 45.452063], [9.050808, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.45656], [9.050808, 45.461057], [9.055305, 45.461057], [9.055305, 45.45656], [9.050808, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.461057], [9.050808, 45.465553], [9.055305, 45.465553], [9.055305, 45.461057], [9.050808, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.465553], [9.050808, 45.47005], [9.055305, 45.47005], [9.055305, 45.465553], [9.050808, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.47005], [9.050808, 45.474547], [9.055305, 45.474547], [9.055305, 45.47005], [9.050808, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.474547], [9.050808, 45.479043], [9.055305, 45.479043], [9.055305, 45.474547], [9.050808, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.479043], [9.050808, 45.48354], [9.055305, 45.48354], [9.055305, 45.479043], [9.050808, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.48354], [9.050808, 45.488036], [9.055305, 45.488036], [9.055305, 45.48354], [9.050808, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.488036], [9.050808, 45.492533], [9.055305, 45.492533], [9.055305, 45.488036], [9.050808, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.492533], [9.050808, 45.49703], [9.055305, 45.49703], [9.055305, 45.492533], [9.050808, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.49703], [9.050808, 45.501526], [9.055305, 45.501526], [9.055305, 45.49703], [9.050808, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.501526], [9.050808, 45.506023], [9.055305, 45.506023], [9.055305, 45.501526], [9.050808, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.506023], [9.050808, 45.510519], [9.055305, 45.510519], [9.055305, 45.506023], [9.050808, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.510519], [9.050808, 45.515016], [9.055305, 45.515016], [9.055305, 45.510519], [9.050808, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.515016], [9.050808, 45.519513], [9.055305, 45.519513], [9.055305, 45.515016], [9.050808, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.519513], [9.050808, 45.524009], [9.055305, 45.524009], [9.055305, 45.519513], [9.050808, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.524009], [9.050808, 45.528506], [9.055305, 45.528506], [9.055305, 45.524009], [9.050808, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.528506], [9.050808, 45.533002], [9.055305, 45.533002], [9.055305, 45.528506], [9.050808, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.533002], [9.050808, 45.537499], [9.055305, 45.537499], [9.055305, 45.533002], [9.050808, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.537499], [9.050808, 45.541996], [9.055305, 45.541996], [9.055305, 45.537499], [9.050808, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.541996], [9.050808, 45.546492], [9.055305, 45.546492], [9.055305, 45.541996], [9.050808, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.546492], [9.050808, 45.550989], [9.055305, 45.550989], [9.055305, 45.546492], [9.050808, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.550989], [9.050808, 45.555485], [9.055305, 45.555485], [9.055305, 45.550989], [9.050808, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.555485], [9.050808, 45.559982], [9.055305, 45.559982], [9.055305, 45.555485], [9.050808, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.559982], [9.050808, 45.564479], [9.055305, 45.564479], [9.055305, 45.559982], [9.050808, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.564479], [9.050808, 45.568975], [9.055305, 45.568975], [9.055305, 45.564479], [9.050808, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.568975], [9.050808, 45.573472], [9.055305, 45.573472], [9.055305, 45.568975], [9.050808, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.573472], [9.050808, 45.577968], [9.055305, 45.577968], [9.055305, 45.573472], [9.050808, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.577968], [9.050808, 45.582465], [9.055305, 45.582465], [9.055305, 45.577968], [9.050808, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.582465], [9.050808, 45.586962], [9.055305, 45.586962], [9.055305, 45.582465], [9.050808, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.586962], [9.050808, 45.591458], [9.055305, 45.591458], [9.055305, 45.586962], [9.050808, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.591458], [9.050808, 45.595955], [9.055305, 45.595955], [9.055305, 45.591458], [9.050808, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.595955], [9.050808, 45.600451], [9.055305, 45.600451], [9.055305, 45.595955], [9.050808, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.600451], [9.050808, 45.604948], [9.055305, 45.604948], [9.055305, 45.600451], [9.050808, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.604948], [9.050808, 45.609445], [9.055305, 45.609445], [9.055305, 45.604948], [9.050808, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.609445], [9.050808, 45.613941], [9.055305, 45.613941], [9.055305, 45.609445], [9.050808, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.613941], [9.050808, 45.618438], [9.055305, 45.618438], [9.055305, 45.613941], [9.050808, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.618438], [9.050808, 45.622934], [9.055305, 45.622934], [9.055305, 45.618438], [9.050808, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.622934], [9.050808, 45.627431], [9.055305, 45.627431], [9.055305, 45.622934], [9.050808, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.627431], [9.050808, 45.631928], [9.055305, 45.631928], [9.055305, 45.627431], [9.050808, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.050808, 45.631928], [9.050808, 45.636424], [9.055305, 45.636424], [9.055305, 45.631928], [9.050808, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.339648], [9.055305, 45.344145], [9.059801, 45.344145], [9.059801, 45.339648], [9.055305, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.344145], [9.055305, 45.348642], [9.059801, 45.348642], [9.059801, 45.344145], [9.055305, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.348642], [9.055305, 45.353138], [9.059801, 45.353138], [9.059801, 45.348642], [9.055305, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.353138], [9.055305, 45.357635], [9.059801, 45.357635], [9.059801, 45.353138], [9.055305, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.357635], [9.055305, 45.362131], [9.059801, 45.362131], [9.059801, 45.357635], [9.055305, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.362131], [9.055305, 45.366628], [9.059801, 45.366628], [9.059801, 45.362131], [9.055305, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.366628], [9.055305, 45.371125], [9.059801, 45.371125], [9.059801, 45.366628], [9.055305, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.371125], [9.055305, 45.375621], [9.059801, 45.375621], [9.059801, 45.371125], [9.055305, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.375621], [9.055305, 45.380118], [9.059801, 45.380118], [9.059801, 45.375621], [9.055305, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.380118], [9.055305, 45.384614], [9.059801, 45.384614], [9.059801, 45.380118], [9.055305, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.384614], [9.055305, 45.389111], [9.059801, 45.389111], [9.059801, 45.384614], [9.055305, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.389111], [9.055305, 45.393608], [9.059801, 45.393608], [9.059801, 45.389111], [9.055305, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.393608], [9.055305, 45.398104], [9.059801, 45.398104], [9.059801, 45.393608], [9.055305, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.398104], [9.055305, 45.402601], [9.059801, 45.402601], [9.059801, 45.398104], [9.055305, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.402601], [9.055305, 45.407097], [9.059801, 45.407097], [9.059801, 45.402601], [9.055305, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.407097], [9.055305, 45.411594], [9.059801, 45.411594], [9.059801, 45.407097], [9.055305, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.411594], [9.055305, 45.416091], [9.059801, 45.416091], [9.059801, 45.411594], [9.055305, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.416091], [9.055305, 45.420587], [9.059801, 45.420587], [9.059801, 45.416091], [9.055305, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.420587], [9.055305, 45.425084], [9.059801, 45.425084], [9.059801, 45.420587], [9.055305, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.425084], [9.055305, 45.42958], [9.059801, 45.42958], [9.059801, 45.425084], [9.055305, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.42958], [9.055305, 45.434077], [9.059801, 45.434077], [9.059801, 45.42958], [9.055305, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.434077], [9.055305, 45.438574], [9.059801, 45.438574], [9.059801, 45.434077], [9.055305, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.438574], [9.055305, 45.44307], [9.059801, 45.44307], [9.059801, 45.438574], [9.055305, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.44307], [9.055305, 45.447567], [9.059801, 45.447567], [9.059801, 45.44307], [9.055305, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.447567], [9.055305, 45.452063], [9.059801, 45.452063], [9.059801, 45.447567], [9.055305, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.452063], [9.055305, 45.45656], [9.059801, 45.45656], [9.059801, 45.452063], [9.055305, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.45656], [9.055305, 45.461057], [9.059801, 45.461057], [9.059801, 45.45656], [9.055305, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.461057], [9.055305, 45.465553], [9.059801, 45.465553], [9.059801, 45.461057], [9.055305, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.465553], [9.055305, 45.47005], [9.059801, 45.47005], [9.059801, 45.465553], [9.055305, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.47005], [9.055305, 45.474547], [9.059801, 45.474547], [9.059801, 45.47005], [9.055305, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.474547], [9.055305, 45.479043], [9.059801, 45.479043], [9.059801, 45.474547], [9.055305, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.479043], [9.055305, 45.48354], [9.059801, 45.48354], [9.059801, 45.479043], [9.055305, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.48354], [9.055305, 45.488036], [9.059801, 45.488036], [9.059801, 45.48354], [9.055305, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.488036], [9.055305, 45.492533], [9.059801, 45.492533], [9.059801, 45.488036], [9.055305, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.492533], [9.055305, 45.49703], [9.059801, 45.49703], [9.059801, 45.492533], [9.055305, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.49703], [9.055305, 45.501526], [9.059801, 45.501526], [9.059801, 45.49703], [9.055305, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.501526], [9.055305, 45.506023], [9.059801, 45.506023], [9.059801, 45.501526], [9.055305, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.506023], [9.055305, 45.510519], [9.059801, 45.510519], [9.059801, 45.506023], [9.055305, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.510519], [9.055305, 45.515016], [9.059801, 45.515016], [9.059801, 45.510519], [9.055305, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.515016], [9.055305, 45.519513], [9.059801, 45.519513], [9.059801, 45.515016], [9.055305, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.519513], [9.055305, 45.524009], [9.059801, 45.524009], [9.059801, 45.519513], [9.055305, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.524009], [9.055305, 45.528506], [9.059801, 45.528506], [9.059801, 45.524009], [9.055305, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.528506], [9.055305, 45.533002], [9.059801, 45.533002], [9.059801, 45.528506], [9.055305, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.533002], [9.055305, 45.537499], [9.059801, 45.537499], [9.059801, 45.533002], [9.055305, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.537499], [9.055305, 45.541996], [9.059801, 45.541996], [9.059801, 45.537499], [9.055305, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.541996], [9.055305, 45.546492], [9.059801, 45.546492], [9.059801, 45.541996], [9.055305, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.546492], [9.055305, 45.550989], [9.059801, 45.550989], [9.059801, 45.546492], [9.055305, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.550989], [9.055305, 45.555485], [9.059801, 45.555485], [9.059801, 45.550989], [9.055305, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.555485], [9.055305, 45.559982], [9.059801, 45.559982], [9.059801, 45.555485], [9.055305, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.559982], [9.055305, 45.564479], [9.059801, 45.564479], [9.059801, 45.559982], [9.055305, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.564479], [9.055305, 45.568975], [9.059801, 45.568975], [9.059801, 45.564479], [9.055305, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.568975], [9.055305, 45.573472], [9.059801, 45.573472], [9.059801, 45.568975], [9.055305, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.573472], [9.055305, 45.577968], [9.059801, 45.577968], [9.059801, 45.573472], [9.055305, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.577968], [9.055305, 45.582465], [9.059801, 45.582465], [9.059801, 45.577968], [9.055305, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.582465], [9.055305, 45.586962], [9.059801, 45.586962], [9.059801, 45.582465], [9.055305, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.586962], [9.055305, 45.591458], [9.059801, 45.591458], [9.059801, 45.586962], [9.055305, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.591458], [9.055305, 45.595955], [9.059801, 45.595955], [9.059801, 45.591458], [9.055305, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.595955], [9.055305, 45.600451], [9.059801, 45.600451], [9.059801, 45.595955], [9.055305, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.600451], [9.055305, 45.604948], [9.059801, 45.604948], [9.059801, 45.600451], [9.055305, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.604948], [9.055305, 45.609445], [9.059801, 45.609445], [9.059801, 45.604948], [9.055305, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.609445], [9.055305, 45.613941], [9.059801, 45.613941], [9.059801, 45.609445], [9.055305, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.613941], [9.055305, 45.618438], [9.059801, 45.618438], [9.059801, 45.613941], [9.055305, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.618438], [9.055305, 45.622934], [9.059801, 45.622934], [9.059801, 45.618438], [9.055305, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.622934], [9.055305, 45.627431], [9.059801, 45.627431], [9.059801, 45.622934], [9.055305, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.627431], [9.055305, 45.631928], [9.059801, 45.631928], [9.059801, 45.627431], [9.055305, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.055305, 45.631928], [9.055305, 45.636424], [9.059801, 45.636424], [9.059801, 45.631928], [9.055305, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.339648], [9.059801, 45.344145], [9.064298, 45.344145], [9.064298, 45.339648], [9.059801, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.344145], [9.059801, 45.348642], [9.064298, 45.348642], [9.064298, 45.344145], [9.059801, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.348642], [9.059801, 45.353138], [9.064298, 45.353138], [9.064298, 45.348642], [9.059801, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.353138], [9.059801, 45.357635], [9.064298, 45.357635], [9.064298, 45.353138], [9.059801, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.357635], [9.059801, 45.362131], [9.064298, 45.362131], [9.064298, 45.357635], [9.059801, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.362131], [9.059801, 45.366628], [9.064298, 45.366628], [9.064298, 45.362131], [9.059801, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.366628], [9.059801, 45.371125], [9.064298, 45.371125], [9.064298, 45.366628], [9.059801, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.371125], [9.059801, 45.375621], [9.064298, 45.375621], [9.064298, 45.371125], [9.059801, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.375621], [9.059801, 45.380118], [9.064298, 45.380118], [9.064298, 45.375621], [9.059801, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.380118], [9.059801, 45.384614], [9.064298, 45.384614], [9.064298, 45.380118], [9.059801, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.384614], [9.059801, 45.389111], [9.064298, 45.389111], [9.064298, 45.384614], [9.059801, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.389111], [9.059801, 45.393608], [9.064298, 45.393608], [9.064298, 45.389111], [9.059801, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.393608], [9.059801, 45.398104], [9.064298, 45.398104], [9.064298, 45.393608], [9.059801, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.398104], [9.059801, 45.402601], [9.064298, 45.402601], [9.064298, 45.398104], [9.059801, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.402601], [9.059801, 45.407097], [9.064298, 45.407097], [9.064298, 45.402601], [9.059801, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.407097], [9.059801, 45.411594], [9.064298, 45.411594], [9.064298, 45.407097], [9.059801, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.411594], [9.059801, 45.416091], [9.064298, 45.416091], [9.064298, 45.411594], [9.059801, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.416091], [9.059801, 45.420587], [9.064298, 45.420587], [9.064298, 45.416091], [9.059801, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.420587], [9.059801, 45.425084], [9.064298, 45.425084], [9.064298, 45.420587], [9.059801, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.425084], [9.059801, 45.42958], [9.064298, 45.42958], [9.064298, 45.425084], [9.059801, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.42958], [9.059801, 45.434077], [9.064298, 45.434077], [9.064298, 45.42958], [9.059801, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.434077], [9.059801, 45.438574], [9.064298, 45.438574], [9.064298, 45.434077], [9.059801, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.438574], [9.059801, 45.44307], [9.064298, 45.44307], [9.064298, 45.438574], [9.059801, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.44307], [9.059801, 45.447567], [9.064298, 45.447567], [9.064298, 45.44307], [9.059801, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.447567], [9.059801, 45.452063], [9.064298, 45.452063], [9.064298, 45.447567], [9.059801, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.452063], [9.059801, 45.45656], [9.064298, 45.45656], [9.064298, 45.452063], [9.059801, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.45656], [9.059801, 45.461057], [9.064298, 45.461057], [9.064298, 45.45656], [9.059801, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.461057], [9.059801, 45.465553], [9.064298, 45.465553], [9.064298, 45.461057], [9.059801, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.465553], [9.059801, 45.47005], [9.064298, 45.47005], [9.064298, 45.465553], [9.059801, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.47005], [9.059801, 45.474547], [9.064298, 45.474547], [9.064298, 45.47005], [9.059801, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.474547], [9.059801, 45.479043], [9.064298, 45.479043], [9.064298, 45.474547], [9.059801, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.479043], [9.059801, 45.48354], [9.064298, 45.48354], [9.064298, 45.479043], [9.059801, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.48354], [9.059801, 45.488036], [9.064298, 45.488036], [9.064298, 45.48354], [9.059801, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.488036], [9.059801, 45.492533], [9.064298, 45.492533], [9.064298, 45.488036], [9.059801, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.492533], [9.059801, 45.49703], [9.064298, 45.49703], [9.064298, 45.492533], [9.059801, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.49703], [9.059801, 45.501526], [9.064298, 45.501526], [9.064298, 45.49703], [9.059801, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.501526], [9.059801, 45.506023], [9.064298, 45.506023], [9.064298, 45.501526], [9.059801, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.506023], [9.059801, 45.510519], [9.064298, 45.510519], [9.064298, 45.506023], [9.059801, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.510519], [9.059801, 45.515016], [9.064298, 45.515016], [9.064298, 45.510519], [9.059801, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.515016], [9.059801, 45.519513], [9.064298, 45.519513], [9.064298, 45.515016], [9.059801, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.519513], [9.059801, 45.524009], [9.064298, 45.524009], [9.064298, 45.519513], [9.059801, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.524009], [9.059801, 45.528506], [9.064298, 45.528506], [9.064298, 45.524009], [9.059801, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.528506], [9.059801, 45.533002], [9.064298, 45.533002], [9.064298, 45.528506], [9.059801, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.533002], [9.059801, 45.537499], [9.064298, 45.537499], [9.064298, 45.533002], [9.059801, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.537499], [9.059801, 45.541996], [9.064298, 45.541996], [9.064298, 45.537499], [9.059801, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.541996], [9.059801, 45.546492], [9.064298, 45.546492], [9.064298, 45.541996], [9.059801, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.546492], [9.059801, 45.550989], [9.064298, 45.550989], [9.064298, 45.546492], [9.059801, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.550989], [9.059801, 45.555485], [9.064298, 45.555485], [9.064298, 45.550989], [9.059801, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.555485], [9.059801, 45.559982], [9.064298, 45.559982], [9.064298, 45.555485], [9.059801, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.559982], [9.059801, 45.564479], [9.064298, 45.564479], [9.064298, 45.559982], [9.059801, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.564479], [9.059801, 45.568975], [9.064298, 45.568975], [9.064298, 45.564479], [9.059801, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.568975], [9.059801, 45.573472], [9.064298, 45.573472], [9.064298, 45.568975], [9.059801, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.573472], [9.059801, 45.577968], [9.064298, 45.577968], [9.064298, 45.573472], [9.059801, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.577968], [9.059801, 45.582465], [9.064298, 45.582465], [9.064298, 45.577968], [9.059801, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.582465], [9.059801, 45.586962], [9.064298, 45.586962], [9.064298, 45.582465], [9.059801, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.586962], [9.059801, 45.591458], [9.064298, 45.591458], [9.064298, 45.586962], [9.059801, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.591458], [9.059801, 45.595955], [9.064298, 45.595955], [9.064298, 45.591458], [9.059801, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.595955], [9.059801, 45.600451], [9.064298, 45.600451], [9.064298, 45.595955], [9.059801, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.600451], [9.059801, 45.604948], [9.064298, 45.604948], [9.064298, 45.600451], [9.059801, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.604948], [9.059801, 45.609445], [9.064298, 45.609445], [9.064298, 45.604948], [9.059801, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.609445], [9.059801, 45.613941], [9.064298, 45.613941], [9.064298, 45.609445], [9.059801, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.613941], [9.059801, 45.618438], [9.064298, 45.618438], [9.064298, 45.613941], [9.059801, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.618438], [9.059801, 45.622934], [9.064298, 45.622934], [9.064298, 45.618438], [9.059801, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.622934], [9.059801, 45.627431], [9.064298, 45.627431], [9.064298, 45.622934], [9.059801, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.627431], [9.059801, 45.631928], [9.064298, 45.631928], [9.064298, 45.627431], [9.059801, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.059801, 45.631928], [9.059801, 45.636424], [9.064298, 45.636424], [9.064298, 45.631928], [9.059801, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.339648], [9.064298, 45.344145], [9.068795, 45.344145], [9.068795, 45.339648], [9.064298, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.344145], [9.064298, 45.348642], [9.068795, 45.348642], [9.068795, 45.344145], [9.064298, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.348642], [9.064298, 45.353138], [9.068795, 45.353138], [9.068795, 45.348642], [9.064298, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.353138], [9.064298, 45.357635], [9.068795, 45.357635], [9.068795, 45.353138], [9.064298, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.357635], [9.064298, 45.362131], [9.068795, 45.362131], [9.068795, 45.357635], [9.064298, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.362131], [9.064298, 45.366628], [9.068795, 45.366628], [9.068795, 45.362131], [9.064298, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.366628], [9.064298, 45.371125], [9.068795, 45.371125], [9.068795, 45.366628], [9.064298, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.371125], [9.064298, 45.375621], [9.068795, 45.375621], [9.068795, 45.371125], [9.064298, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.375621], [9.064298, 45.380118], [9.068795, 45.380118], [9.068795, 45.375621], [9.064298, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.380118], [9.064298, 45.384614], [9.068795, 45.384614], [9.068795, 45.380118], [9.064298, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.384614], [9.064298, 45.389111], [9.068795, 45.389111], [9.068795, 45.384614], [9.064298, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.389111], [9.064298, 45.393608], [9.068795, 45.393608], [9.068795, 45.389111], [9.064298, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.393608], [9.064298, 45.398104], [9.068795, 45.398104], [9.068795, 45.393608], [9.064298, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.398104], [9.064298, 45.402601], [9.068795, 45.402601], [9.068795, 45.398104], [9.064298, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.402601], [9.064298, 45.407097], [9.068795, 45.407097], [9.068795, 45.402601], [9.064298, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.407097], [9.064298, 45.411594], [9.068795, 45.411594], [9.068795, 45.407097], [9.064298, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.411594], [9.064298, 45.416091], [9.068795, 45.416091], [9.068795, 45.411594], [9.064298, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.416091], [9.064298, 45.420587], [9.068795, 45.420587], [9.068795, 45.416091], [9.064298, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.420587], [9.064298, 45.425084], [9.068795, 45.425084], [9.068795, 45.420587], [9.064298, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.425084], [9.064298, 45.42958], [9.068795, 45.42958], [9.068795, 45.425084], [9.064298, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.42958], [9.064298, 45.434077], [9.068795, 45.434077], [9.068795, 45.42958], [9.064298, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.434077], [9.064298, 45.438574], [9.068795, 45.438574], [9.068795, 45.434077], [9.064298, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.438574], [9.064298, 45.44307], [9.068795, 45.44307], [9.068795, 45.438574], [9.064298, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.44307], [9.064298, 45.447567], [9.068795, 45.447567], [9.068795, 45.44307], [9.064298, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.447567], [9.064298, 45.452063], [9.068795, 45.452063], [9.068795, 45.447567], [9.064298, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.452063], [9.064298, 45.45656], [9.068795, 45.45656], [9.068795, 45.452063], [9.064298, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.45656], [9.064298, 45.461057], [9.068795, 45.461057], [9.068795, 45.45656], [9.064298, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.461057], [9.064298, 45.465553], [9.068795, 45.465553], [9.068795, 45.461057], [9.064298, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.465553], [9.064298, 45.47005], [9.068795, 45.47005], [9.068795, 45.465553], [9.064298, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.47005], [9.064298, 45.474547], [9.068795, 45.474547], [9.068795, 45.47005], [9.064298, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.474547], [9.064298, 45.479043], [9.068795, 45.479043], [9.068795, 45.474547], [9.064298, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.479043], [9.064298, 45.48354], [9.068795, 45.48354], [9.068795, 45.479043], [9.064298, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.48354], [9.064298, 45.488036], [9.068795, 45.488036], [9.068795, 45.48354], [9.064298, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.488036], [9.064298, 45.492533], [9.068795, 45.492533], [9.068795, 45.488036], [9.064298, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.492533], [9.064298, 45.49703], [9.068795, 45.49703], [9.068795, 45.492533], [9.064298, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.49703], [9.064298, 45.501526], [9.068795, 45.501526], [9.068795, 45.49703], [9.064298, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.501526], [9.064298, 45.506023], [9.068795, 45.506023], [9.068795, 45.501526], [9.064298, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.506023], [9.064298, 45.510519], [9.068795, 45.510519], [9.068795, 45.506023], [9.064298, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.510519], [9.064298, 45.515016], [9.068795, 45.515016], [9.068795, 45.510519], [9.064298, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.515016], [9.064298, 45.519513], [9.068795, 45.519513], [9.068795, 45.515016], [9.064298, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.519513], [9.064298, 45.524009], [9.068795, 45.524009], [9.068795, 45.519513], [9.064298, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.524009], [9.064298, 45.528506], [9.068795, 45.528506], [9.068795, 45.524009], [9.064298, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.528506], [9.064298, 45.533002], [9.068795, 45.533002], [9.068795, 45.528506], [9.064298, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.533002], [9.064298, 45.537499], [9.068795, 45.537499], [9.068795, 45.533002], [9.064298, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.537499], [9.064298, 45.541996], [9.068795, 45.541996], [9.068795, 45.537499], [9.064298, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.541996], [9.064298, 45.546492], [9.068795, 45.546492], [9.068795, 45.541996], [9.064298, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.546492], [9.064298, 45.550989], [9.068795, 45.550989], [9.068795, 45.546492], [9.064298, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.550989], [9.064298, 45.555485], [9.068795, 45.555485], [9.068795, 45.550989], [9.064298, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.555485], [9.064298, 45.559982], [9.068795, 45.559982], [9.068795, 45.555485], [9.064298, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.559982], [9.064298, 45.564479], [9.068795, 45.564479], [9.068795, 45.559982], [9.064298, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.564479], [9.064298, 45.568975], [9.068795, 45.568975], [9.068795, 45.564479], [9.064298, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.568975], [9.064298, 45.573472], [9.068795, 45.573472], [9.068795, 45.568975], [9.064298, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.573472], [9.064298, 45.577968], [9.068795, 45.577968], [9.068795, 45.573472], [9.064298, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.577968], [9.064298, 45.582465], [9.068795, 45.582465], [9.068795, 45.577968], [9.064298, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.582465], [9.064298, 45.586962], [9.068795, 45.586962], [9.068795, 45.582465], [9.064298, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.586962], [9.064298, 45.591458], [9.068795, 45.591458], [9.068795, 45.586962], [9.064298, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.591458], [9.064298, 45.595955], [9.068795, 45.595955], [9.068795, 45.591458], [9.064298, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.595955], [9.064298, 45.600451], [9.068795, 45.600451], [9.068795, 45.595955], [9.064298, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.600451], [9.064298, 45.604948], [9.068795, 45.604948], [9.068795, 45.600451], [9.064298, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.604948], [9.064298, 45.609445], [9.068795, 45.609445], [9.068795, 45.604948], [9.064298, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.609445], [9.064298, 45.613941], [9.068795, 45.613941], [9.068795, 45.609445], [9.064298, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.613941], [9.064298, 45.618438], [9.068795, 45.618438], [9.068795, 45.613941], [9.064298, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.618438], [9.064298, 45.622934], [9.068795, 45.622934], [9.068795, 45.618438], [9.064298, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.622934], [9.064298, 45.627431], [9.068795, 45.627431], [9.068795, 45.622934], [9.064298, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.627431], [9.064298, 45.631928], [9.068795, 45.631928], [9.068795, 45.627431], [9.064298, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.064298, 45.631928], [9.064298, 45.636424], [9.068795, 45.636424], [9.068795, 45.631928], [9.064298, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.339648], [9.068795, 45.344145], [9.073291, 45.344145], [9.073291, 45.339648], [9.068795, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.344145], [9.068795, 45.348642], [9.073291, 45.348642], [9.073291, 45.344145], [9.068795, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.348642], [9.068795, 45.353138], [9.073291, 45.353138], [9.073291, 45.348642], [9.068795, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.353138], [9.068795, 45.357635], [9.073291, 45.357635], [9.073291, 45.353138], [9.068795, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.357635], [9.068795, 45.362131], [9.073291, 45.362131], [9.073291, 45.357635], [9.068795, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.362131], [9.068795, 45.366628], [9.073291, 45.366628], [9.073291, 45.362131], [9.068795, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.366628], [9.068795, 45.371125], [9.073291, 45.371125], [9.073291, 45.366628], [9.068795, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.371125], [9.068795, 45.375621], [9.073291, 45.375621], [9.073291, 45.371125], [9.068795, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.375621], [9.068795, 45.380118], [9.073291, 45.380118], [9.073291, 45.375621], [9.068795, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.380118], [9.068795, 45.384614], [9.073291, 45.384614], [9.073291, 45.380118], [9.068795, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.384614], [9.068795, 45.389111], [9.073291, 45.389111], [9.073291, 45.384614], [9.068795, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.389111], [9.068795, 45.393608], [9.073291, 45.393608], [9.073291, 45.389111], [9.068795, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.393608], [9.068795, 45.398104], [9.073291, 45.398104], [9.073291, 45.393608], [9.068795, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.398104], [9.068795, 45.402601], [9.073291, 45.402601], [9.073291, 45.398104], [9.068795, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.402601], [9.068795, 45.407097], [9.073291, 45.407097], [9.073291, 45.402601], [9.068795, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.407097], [9.068795, 45.411594], [9.073291, 45.411594], [9.073291, 45.407097], [9.068795, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.411594], [9.068795, 45.416091], [9.073291, 45.416091], [9.073291, 45.411594], [9.068795, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.416091], [9.068795, 45.420587], [9.073291, 45.420587], [9.073291, 45.416091], [9.068795, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.420587], [9.068795, 45.425084], [9.073291, 45.425084], [9.073291, 45.420587], [9.068795, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.425084], [9.068795, 45.42958], [9.073291, 45.42958], [9.073291, 45.425084], [9.068795, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.42958], [9.068795, 45.434077], [9.073291, 45.434077], [9.073291, 45.42958], [9.068795, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.434077], [9.068795, 45.438574], [9.073291, 45.438574], [9.073291, 45.434077], [9.068795, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.438574], [9.068795, 45.44307], [9.073291, 45.44307], [9.073291, 45.438574], [9.068795, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.44307], [9.068795, 45.447567], [9.073291, 45.447567], [9.073291, 45.44307], [9.068795, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.447567], [9.068795, 45.452063], [9.073291, 45.452063], [9.073291, 45.447567], [9.068795, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.452063], [9.068795, 45.45656], [9.073291, 45.45656], [9.073291, 45.452063], [9.068795, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.45656], [9.068795, 45.461057], [9.073291, 45.461057], [9.073291, 45.45656], [9.068795, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.461057], [9.068795, 45.465553], [9.073291, 45.465553], [9.073291, 45.461057], [9.068795, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.465553], [9.068795, 45.47005], [9.073291, 45.47005], [9.073291, 45.465553], [9.068795, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.47005], [9.068795, 45.474547], [9.073291, 45.474547], [9.073291, 45.47005], [9.068795, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.474547], [9.068795, 45.479043], [9.073291, 45.479043], [9.073291, 45.474547], [9.068795, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.479043], [9.068795, 45.48354], [9.073291, 45.48354], [9.073291, 45.479043], [9.068795, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.48354], [9.068795, 45.488036], [9.073291, 45.488036], [9.073291, 45.48354], [9.068795, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.488036], [9.068795, 45.492533], [9.073291, 45.492533], [9.073291, 45.488036], [9.068795, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.492533], [9.068795, 45.49703], [9.073291, 45.49703], [9.073291, 45.492533], [9.068795, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.49703], [9.068795, 45.501526], [9.073291, 45.501526], [9.073291, 45.49703], [9.068795, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.501526], [9.068795, 45.506023], [9.073291, 45.506023], [9.073291, 45.501526], [9.068795, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.506023], [9.068795, 45.510519], [9.073291, 45.510519], [9.073291, 45.506023], [9.068795, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.510519], [9.068795, 45.515016], [9.073291, 45.515016], [9.073291, 45.510519], [9.068795, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.515016], [9.068795, 45.519513], [9.073291, 45.519513], [9.073291, 45.515016], [9.068795, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.519513], [9.068795, 45.524009], [9.073291, 45.524009], [9.073291, 45.519513], [9.068795, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.524009], [9.068795, 45.528506], [9.073291, 45.528506], [9.073291, 45.524009], [9.068795, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.528506], [9.068795, 45.533002], [9.073291, 45.533002], [9.073291, 45.528506], [9.068795, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.533002], [9.068795, 45.537499], [9.073291, 45.537499], [9.073291, 45.533002], [9.068795, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.537499], [9.068795, 45.541996], [9.073291, 45.541996], [9.073291, 45.537499], [9.068795, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.541996], [9.068795, 45.546492], [9.073291, 45.546492], [9.073291, 45.541996], [9.068795, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.546492], [9.068795, 45.550989], [9.073291, 45.550989], [9.073291, 45.546492], [9.068795, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.550989], [9.068795, 45.555485], [9.073291, 45.555485], [9.073291, 45.550989], [9.068795, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.555485], [9.068795, 45.559982], [9.073291, 45.559982], [9.073291, 45.555485], [9.068795, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.559982], [9.068795, 45.564479], [9.073291, 45.564479], [9.073291, 45.559982], [9.068795, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.564479], [9.068795, 45.568975], [9.073291, 45.568975], [9.073291, 45.564479], [9.068795, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.568975], [9.068795, 45.573472], [9.073291, 45.573472], [9.073291, 45.568975], [9.068795, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.573472], [9.068795, 45.577968], [9.073291, 45.577968], [9.073291, 45.573472], [9.068795, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.577968], [9.068795, 45.582465], [9.073291, 45.582465], [9.073291, 45.577968], [9.068795, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.582465], [9.068795, 45.586962], [9.073291, 45.586962], [9.073291, 45.582465], [9.068795, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.586962], [9.068795, 45.591458], [9.073291, 45.591458], [9.073291, 45.586962], [9.068795, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.591458], [9.068795, 45.595955], [9.073291, 45.595955], [9.073291, 45.591458], [9.068795, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.595955], [9.068795, 45.600451], [9.073291, 45.600451], [9.073291, 45.595955], [9.068795, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.600451], [9.068795, 45.604948], [9.073291, 45.604948], [9.073291, 45.600451], [9.068795, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.604948], [9.068795, 45.609445], [9.073291, 45.609445], [9.073291, 45.604948], [9.068795, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.609445], [9.068795, 45.613941], [9.073291, 45.613941], [9.073291, 45.609445], [9.068795, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.613941], [9.068795, 45.618438], [9.073291, 45.618438], [9.073291, 45.613941], [9.068795, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.618438], [9.068795, 45.622934], [9.073291, 45.622934], [9.073291, 45.618438], [9.068795, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.622934], [9.068795, 45.627431], [9.073291, 45.627431], [9.073291, 45.622934], [9.068795, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.627431], [9.068795, 45.631928], [9.073291, 45.631928], [9.073291, 45.627431], [9.068795, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.068795, 45.631928], [9.068795, 45.636424], [9.073291, 45.636424], [9.073291, 45.631928], [9.068795, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.339648], [9.073291, 45.344145], [9.077788, 45.344145], [9.077788, 45.339648], [9.073291, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.344145], [9.073291, 45.348642], [9.077788, 45.348642], [9.077788, 45.344145], [9.073291, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.348642], [9.073291, 45.353138], [9.077788, 45.353138], [9.077788, 45.348642], [9.073291, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.353138], [9.073291, 45.357635], [9.077788, 45.357635], [9.077788, 45.353138], [9.073291, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.357635], [9.073291, 45.362131], [9.077788, 45.362131], [9.077788, 45.357635], [9.073291, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.362131], [9.073291, 45.366628], [9.077788, 45.366628], [9.077788, 45.362131], [9.073291, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.366628], [9.073291, 45.371125], [9.077788, 45.371125], [9.077788, 45.366628], [9.073291, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.371125], [9.073291, 45.375621], [9.077788, 45.375621], [9.077788, 45.371125], [9.073291, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.375621], [9.073291, 45.380118], [9.077788, 45.380118], [9.077788, 45.375621], [9.073291, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.380118], [9.073291, 45.384614], [9.077788, 45.384614], [9.077788, 45.380118], [9.073291, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.384614], [9.073291, 45.389111], [9.077788, 45.389111], [9.077788, 45.384614], [9.073291, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.389111], [9.073291, 45.393608], [9.077788, 45.393608], [9.077788, 45.389111], [9.073291, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.393608], [9.073291, 45.398104], [9.077788, 45.398104], [9.077788, 45.393608], [9.073291, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.398104], [9.073291, 45.402601], [9.077788, 45.402601], [9.077788, 45.398104], [9.073291, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.402601], [9.073291, 45.407097], [9.077788, 45.407097], [9.077788, 45.402601], [9.073291, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.407097], [9.073291, 45.411594], [9.077788, 45.411594], [9.077788, 45.407097], [9.073291, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.411594], [9.073291, 45.416091], [9.077788, 45.416091], [9.077788, 45.411594], [9.073291, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.416091], [9.073291, 45.420587], [9.077788, 45.420587], [9.077788, 45.416091], [9.073291, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.420587], [9.073291, 45.425084], [9.077788, 45.425084], [9.077788, 45.420587], [9.073291, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.425084], [9.073291, 45.42958], [9.077788, 45.42958], [9.077788, 45.425084], [9.073291, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.42958], [9.073291, 45.434077], [9.077788, 45.434077], [9.077788, 45.42958], [9.073291, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.434077], [9.073291, 45.438574], [9.077788, 45.438574], [9.077788, 45.434077], [9.073291, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.438574], [9.073291, 45.44307], [9.077788, 45.44307], [9.077788, 45.438574], [9.073291, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.44307], [9.073291, 45.447567], [9.077788, 45.447567], [9.077788, 45.44307], [9.073291, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.447567], [9.073291, 45.452063], [9.077788, 45.452063], [9.077788, 45.447567], [9.073291, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.452063], [9.073291, 45.45656], [9.077788, 45.45656], [9.077788, 45.452063], [9.073291, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.45656], [9.073291, 45.461057], [9.077788, 45.461057], [9.077788, 45.45656], [9.073291, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.461057], [9.073291, 45.465553], [9.077788, 45.465553], [9.077788, 45.461057], [9.073291, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.465553], [9.073291, 45.47005], [9.077788, 45.47005], [9.077788, 45.465553], [9.073291, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.47005], [9.073291, 45.474547], [9.077788, 45.474547], [9.077788, 45.47005], [9.073291, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.474547], [9.073291, 45.479043], [9.077788, 45.479043], [9.077788, 45.474547], [9.073291, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.479043], [9.073291, 45.48354], [9.077788, 45.48354], [9.077788, 45.479043], [9.073291, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.48354], [9.073291, 45.488036], [9.077788, 45.488036], [9.077788, 45.48354], [9.073291, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.488036], [9.073291, 45.492533], [9.077788, 45.492533], [9.077788, 45.488036], [9.073291, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.492533], [9.073291, 45.49703], [9.077788, 45.49703], [9.077788, 45.492533], [9.073291, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.49703], [9.073291, 45.501526], [9.077788, 45.501526], [9.077788, 45.49703], [9.073291, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.501526], [9.073291, 45.506023], [9.077788, 45.506023], [9.077788, 45.501526], [9.073291, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.506023], [9.073291, 45.510519], [9.077788, 45.510519], [9.077788, 45.506023], [9.073291, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.510519], [9.073291, 45.515016], [9.077788, 45.515016], [9.077788, 45.510519], [9.073291, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.515016], [9.073291, 45.519513], [9.077788, 45.519513], [9.077788, 45.515016], [9.073291, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.519513], [9.073291, 45.524009], [9.077788, 45.524009], [9.077788, 45.519513], [9.073291, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.524009], [9.073291, 45.528506], [9.077788, 45.528506], [9.077788, 45.524009], [9.073291, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.528506], [9.073291, 45.533002], [9.077788, 45.533002], [9.077788, 45.528506], [9.073291, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.533002], [9.073291, 45.537499], [9.077788, 45.537499], [9.077788, 45.533002], [9.073291, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.537499], [9.073291, 45.541996], [9.077788, 45.541996], [9.077788, 45.537499], [9.073291, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.541996], [9.073291, 45.546492], [9.077788, 45.546492], [9.077788, 45.541996], [9.073291, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.546492], [9.073291, 45.550989], [9.077788, 45.550989], [9.077788, 45.546492], [9.073291, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.550989], [9.073291, 45.555485], [9.077788, 45.555485], [9.077788, 45.550989], [9.073291, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.555485], [9.073291, 45.559982], [9.077788, 45.559982], [9.077788, 45.555485], [9.073291, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.559982], [9.073291, 45.564479], [9.077788, 45.564479], [9.077788, 45.559982], [9.073291, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.564479], [9.073291, 45.568975], [9.077788, 45.568975], [9.077788, 45.564479], [9.073291, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.568975], [9.073291, 45.573472], [9.077788, 45.573472], [9.077788, 45.568975], [9.073291, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.573472], [9.073291, 45.577968], [9.077788, 45.577968], [9.077788, 45.573472], [9.073291, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.577968], [9.073291, 45.582465], [9.077788, 45.582465], [9.077788, 45.577968], [9.073291, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.582465], [9.073291, 45.586962], [9.077788, 45.586962], [9.077788, 45.582465], [9.073291, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.586962], [9.073291, 45.591458], [9.077788, 45.591458], [9.077788, 45.586962], [9.073291, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.591458], [9.073291, 45.595955], [9.077788, 45.595955], [9.077788, 45.591458], [9.073291, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.595955], [9.073291, 45.600451], [9.077788, 45.600451], [9.077788, 45.595955], [9.073291, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.600451], [9.073291, 45.604948], [9.077788, 45.604948], [9.077788, 45.600451], [9.073291, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.604948], [9.073291, 45.609445], [9.077788, 45.609445], [9.077788, 45.604948], [9.073291, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.609445], [9.073291, 45.613941], [9.077788, 45.613941], [9.077788, 45.609445], [9.073291, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.613941], [9.073291, 45.618438], [9.077788, 45.618438], [9.077788, 45.613941], [9.073291, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.618438], [9.073291, 45.622934], [9.077788, 45.622934], [9.077788, 45.618438], [9.073291, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.622934], [9.073291, 45.627431], [9.077788, 45.627431], [9.077788, 45.622934], [9.073291, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.627431], [9.073291, 45.631928], [9.077788, 45.631928], [9.077788, 45.627431], [9.073291, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.073291, 45.631928], [9.073291, 45.636424], [9.077788, 45.636424], [9.077788, 45.631928], [9.073291, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.339648], [9.077788, 45.344145], [9.082284, 45.344145], [9.082284, 45.339648], [9.077788, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.344145], [9.077788, 45.348642], [9.082284, 45.348642], [9.082284, 45.344145], [9.077788, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.348642], [9.077788, 45.353138], [9.082284, 45.353138], [9.082284, 45.348642], [9.077788, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.353138], [9.077788, 45.357635], [9.082284, 45.357635], [9.082284, 45.353138], [9.077788, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.357635], [9.077788, 45.362131], [9.082284, 45.362131], [9.082284, 45.357635], [9.077788, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.362131], [9.077788, 45.366628], [9.082284, 45.366628], [9.082284, 45.362131], [9.077788, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.366628], [9.077788, 45.371125], [9.082284, 45.371125], [9.082284, 45.366628], [9.077788, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.371125], [9.077788, 45.375621], [9.082284, 45.375621], [9.082284, 45.371125], [9.077788, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.375621], [9.077788, 45.380118], [9.082284, 45.380118], [9.082284, 45.375621], [9.077788, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.380118], [9.077788, 45.384614], [9.082284, 45.384614], [9.082284, 45.380118], [9.077788, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.384614], [9.077788, 45.389111], [9.082284, 45.389111], [9.082284, 45.384614], [9.077788, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.389111], [9.077788, 45.393608], [9.082284, 45.393608], [9.082284, 45.389111], [9.077788, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.393608], [9.077788, 45.398104], [9.082284, 45.398104], [9.082284, 45.393608], [9.077788, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.398104], [9.077788, 45.402601], [9.082284, 45.402601], [9.082284, 45.398104], [9.077788, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.402601], [9.077788, 45.407097], [9.082284, 45.407097], [9.082284, 45.402601], [9.077788, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.407097], [9.077788, 45.411594], [9.082284, 45.411594], [9.082284, 45.407097], [9.077788, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.411594], [9.077788, 45.416091], [9.082284, 45.416091], [9.082284, 45.411594], [9.077788, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.416091], [9.077788, 45.420587], [9.082284, 45.420587], [9.082284, 45.416091], [9.077788, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.420587], [9.077788, 45.425084], [9.082284, 45.425084], [9.082284, 45.420587], [9.077788, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.425084], [9.077788, 45.42958], [9.082284, 45.42958], [9.082284, 45.425084], [9.077788, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.42958], [9.077788, 45.434077], [9.082284, 45.434077], [9.082284, 45.42958], [9.077788, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.434077], [9.077788, 45.438574], [9.082284, 45.438574], [9.082284, 45.434077], [9.077788, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.438574], [9.077788, 45.44307], [9.082284, 45.44307], [9.082284, 45.438574], [9.077788, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.44307], [9.077788, 45.447567], [9.082284, 45.447567], [9.082284, 45.44307], [9.077788, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.447567], [9.077788, 45.452063], [9.082284, 45.452063], [9.082284, 45.447567], [9.077788, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.452063], [9.077788, 45.45656], [9.082284, 45.45656], [9.082284, 45.452063], [9.077788, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.45656], [9.077788, 45.461057], [9.082284, 45.461057], [9.082284, 45.45656], [9.077788, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.461057], [9.077788, 45.465553], [9.082284, 45.465553], [9.082284, 45.461057], [9.077788, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.465553], [9.077788, 45.47005], [9.082284, 45.47005], [9.082284, 45.465553], [9.077788, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.47005], [9.077788, 45.474547], [9.082284, 45.474547], [9.082284, 45.47005], [9.077788, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.474547], [9.077788, 45.479043], [9.082284, 45.479043], [9.082284, 45.474547], [9.077788, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.479043], [9.077788, 45.48354], [9.082284, 45.48354], [9.082284, 45.479043], [9.077788, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.48354], [9.077788, 45.488036], [9.082284, 45.488036], [9.082284, 45.48354], [9.077788, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.488036], [9.077788, 45.492533], [9.082284, 45.492533], [9.082284, 45.488036], [9.077788, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.492533], [9.077788, 45.49703], [9.082284, 45.49703], [9.082284, 45.492533], [9.077788, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.49703], [9.077788, 45.501526], [9.082284, 45.501526], [9.082284, 45.49703], [9.077788, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.501526], [9.077788, 45.506023], [9.082284, 45.506023], [9.082284, 45.501526], [9.077788, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.506023], [9.077788, 45.510519], [9.082284, 45.510519], [9.082284, 45.506023], [9.077788, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.510519], [9.077788, 45.515016], [9.082284, 45.515016], [9.082284, 45.510519], [9.077788, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.515016], [9.077788, 45.519513], [9.082284, 45.519513], [9.082284, 45.515016], [9.077788, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.519513], [9.077788, 45.524009], [9.082284, 45.524009], [9.082284, 45.519513], [9.077788, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.524009], [9.077788, 45.528506], [9.082284, 45.528506], [9.082284, 45.524009], [9.077788, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.528506], [9.077788, 45.533002], [9.082284, 45.533002], [9.082284, 45.528506], [9.077788, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.533002], [9.077788, 45.537499], [9.082284, 45.537499], [9.082284, 45.533002], [9.077788, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.537499], [9.077788, 45.541996], [9.082284, 45.541996], [9.082284, 45.537499], [9.077788, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.541996], [9.077788, 45.546492], [9.082284, 45.546492], [9.082284, 45.541996], [9.077788, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.546492], [9.077788, 45.550989], [9.082284, 45.550989], [9.082284, 45.546492], [9.077788, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.550989], [9.077788, 45.555485], [9.082284, 45.555485], [9.082284, 45.550989], [9.077788, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.555485], [9.077788, 45.559982], [9.082284, 45.559982], [9.082284, 45.555485], [9.077788, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.559982], [9.077788, 45.564479], [9.082284, 45.564479], [9.082284, 45.559982], [9.077788, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.564479], [9.077788, 45.568975], [9.082284, 45.568975], [9.082284, 45.564479], [9.077788, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.568975], [9.077788, 45.573472], [9.082284, 45.573472], [9.082284, 45.568975], [9.077788, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.573472], [9.077788, 45.577968], [9.082284, 45.577968], [9.082284, 45.573472], [9.077788, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.577968], [9.077788, 45.582465], [9.082284, 45.582465], [9.082284, 45.577968], [9.077788, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.582465], [9.077788, 45.586962], [9.082284, 45.586962], [9.082284, 45.582465], [9.077788, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.586962], [9.077788, 45.591458], [9.082284, 45.591458], [9.082284, 45.586962], [9.077788, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.591458], [9.077788, 45.595955], [9.082284, 45.595955], [9.082284, 45.591458], [9.077788, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.595955], [9.077788, 45.600451], [9.082284, 45.600451], [9.082284, 45.595955], [9.077788, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.600451], [9.077788, 45.604948], [9.082284, 45.604948], [9.082284, 45.600451], [9.077788, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.604948], [9.077788, 45.609445], [9.082284, 45.609445], [9.082284, 45.604948], [9.077788, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.609445], [9.077788, 45.613941], [9.082284, 45.613941], [9.082284, 45.609445], [9.077788, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.613941], [9.077788, 45.618438], [9.082284, 45.618438], [9.082284, 45.613941], [9.077788, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.618438], [9.077788, 45.622934], [9.082284, 45.622934], [9.082284, 45.618438], [9.077788, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.622934], [9.077788, 45.627431], [9.082284, 45.627431], [9.082284, 45.622934], [9.077788, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.627431], [9.077788, 45.631928], [9.082284, 45.631928], [9.082284, 45.627431], [9.077788, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.077788, 45.631928], [9.077788, 45.636424], [9.082284, 45.636424], [9.082284, 45.631928], [9.077788, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.339648], [9.082284, 45.344145], [9.086781, 45.344145], [9.086781, 45.339648], [9.082284, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.344145], [9.082284, 45.348642], [9.086781, 45.348642], [9.086781, 45.344145], [9.082284, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.348642], [9.082284, 45.353138], [9.086781, 45.353138], [9.086781, 45.348642], [9.082284, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.353138], [9.082284, 45.357635], [9.086781, 45.357635], [9.086781, 45.353138], [9.082284, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.357635], [9.082284, 45.362131], [9.086781, 45.362131], [9.086781, 45.357635], [9.082284, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.362131], [9.082284, 45.366628], [9.086781, 45.366628], [9.086781, 45.362131], [9.082284, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.366628], [9.082284, 45.371125], [9.086781, 45.371125], [9.086781, 45.366628], [9.082284, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.371125], [9.082284, 45.375621], [9.086781, 45.375621], [9.086781, 45.371125], [9.082284, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.375621], [9.082284, 45.380118], [9.086781, 45.380118], [9.086781, 45.375621], [9.082284, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.380118], [9.082284, 45.384614], [9.086781, 45.384614], [9.086781, 45.380118], [9.082284, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.384614], [9.082284, 45.389111], [9.086781, 45.389111], [9.086781, 45.384614], [9.082284, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.389111], [9.082284, 45.393608], [9.086781, 45.393608], [9.086781, 45.389111], [9.082284, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.393608], [9.082284, 45.398104], [9.086781, 45.398104], [9.086781, 45.393608], [9.082284, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.398104], [9.082284, 45.402601], [9.086781, 45.402601], [9.086781, 45.398104], [9.082284, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.402601], [9.082284, 45.407097], [9.086781, 45.407097], [9.086781, 45.402601], [9.082284, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.407097], [9.082284, 45.411594], [9.086781, 45.411594], [9.086781, 45.407097], [9.082284, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.411594], [9.082284, 45.416091], [9.086781, 45.416091], [9.086781, 45.411594], [9.082284, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.416091], [9.082284, 45.420587], [9.086781, 45.420587], [9.086781, 45.416091], [9.082284, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.420587], [9.082284, 45.425084], [9.086781, 45.425084], [9.086781, 45.420587], [9.082284, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.425084], [9.082284, 45.42958], [9.086781, 45.42958], [9.086781, 45.425084], [9.082284, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.42958], [9.082284, 45.434077], [9.086781, 45.434077], [9.086781, 45.42958], [9.082284, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.434077], [9.082284, 45.438574], [9.086781, 45.438574], [9.086781, 45.434077], [9.082284, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.438574], [9.082284, 45.44307], [9.086781, 45.44307], [9.086781, 45.438574], [9.082284, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.44307], [9.082284, 45.447567], [9.086781, 45.447567], [9.086781, 45.44307], [9.082284, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.447567], [9.082284, 45.452063], [9.086781, 45.452063], [9.086781, 45.447567], [9.082284, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.452063], [9.082284, 45.45656], [9.086781, 45.45656], [9.086781, 45.452063], [9.082284, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.45656], [9.082284, 45.461057], [9.086781, 45.461057], [9.086781, 45.45656], [9.082284, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.461057], [9.082284, 45.465553], [9.086781, 45.465553], [9.086781, 45.461057], [9.082284, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.465553], [9.082284, 45.47005], [9.086781, 45.47005], [9.086781, 45.465553], [9.082284, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.47005], [9.082284, 45.474547], [9.086781, 45.474547], [9.086781, 45.47005], [9.082284, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.474547], [9.082284, 45.479043], [9.086781, 45.479043], [9.086781, 45.474547], [9.082284, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.479043], [9.082284, 45.48354], [9.086781, 45.48354], [9.086781, 45.479043], [9.082284, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.48354], [9.082284, 45.488036], [9.086781, 45.488036], [9.086781, 45.48354], [9.082284, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.488036], [9.082284, 45.492533], [9.086781, 45.492533], [9.086781, 45.488036], [9.082284, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.492533], [9.082284, 45.49703], [9.086781, 45.49703], [9.086781, 45.492533], [9.082284, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.49703], [9.082284, 45.501526], [9.086781, 45.501526], [9.086781, 45.49703], [9.082284, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.501526], [9.082284, 45.506023], [9.086781, 45.506023], [9.086781, 45.501526], [9.082284, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.506023], [9.082284, 45.510519], [9.086781, 45.510519], [9.086781, 45.506023], [9.082284, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.510519], [9.082284, 45.515016], [9.086781, 45.515016], [9.086781, 45.510519], [9.082284, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.515016], [9.082284, 45.519513], [9.086781, 45.519513], [9.086781, 45.515016], [9.082284, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.519513], [9.082284, 45.524009], [9.086781, 45.524009], [9.086781, 45.519513], [9.082284, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.524009], [9.082284, 45.528506], [9.086781, 45.528506], [9.086781, 45.524009], [9.082284, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.528506], [9.082284, 45.533002], [9.086781, 45.533002], [9.086781, 45.528506], [9.082284, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.533002], [9.082284, 45.537499], [9.086781, 45.537499], [9.086781, 45.533002], [9.082284, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.537499], [9.082284, 45.541996], [9.086781, 45.541996], [9.086781, 45.537499], [9.082284, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.541996], [9.082284, 45.546492], [9.086781, 45.546492], [9.086781, 45.541996], [9.082284, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.546492], [9.082284, 45.550989], [9.086781, 45.550989], [9.086781, 45.546492], [9.082284, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.550989], [9.082284, 45.555485], [9.086781, 45.555485], [9.086781, 45.550989], [9.082284, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.555485], [9.082284, 45.559982], [9.086781, 45.559982], [9.086781, 45.555485], [9.082284, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.559982], [9.082284, 45.564479], [9.086781, 45.564479], [9.086781, 45.559982], [9.082284, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.564479], [9.082284, 45.568975], [9.086781, 45.568975], [9.086781, 45.564479], [9.082284, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.568975], [9.082284, 45.573472], [9.086781, 45.573472], [9.086781, 45.568975], [9.082284, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.573472], [9.082284, 45.577968], [9.086781, 45.577968], [9.086781, 45.573472], [9.082284, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.577968], [9.082284, 45.582465], [9.086781, 45.582465], [9.086781, 45.577968], [9.082284, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.582465], [9.082284, 45.586962], [9.086781, 45.586962], [9.086781, 45.582465], [9.082284, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.586962], [9.082284, 45.591458], [9.086781, 45.591458], [9.086781, 45.586962], [9.082284, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.591458], [9.082284, 45.595955], [9.086781, 45.595955], [9.086781, 45.591458], [9.082284, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.595955], [9.082284, 45.600451], [9.086781, 45.600451], [9.086781, 45.595955], [9.082284, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.600451], [9.082284, 45.604948], [9.086781, 45.604948], [9.086781, 45.600451], [9.082284, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.604948], [9.082284, 45.609445], [9.086781, 45.609445], [9.086781, 45.604948], [9.082284, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.609445], [9.082284, 45.613941], [9.086781, 45.613941], [9.086781, 45.609445], [9.082284, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.613941], [9.082284, 45.618438], [9.086781, 45.618438], [9.086781, 45.613941], [9.082284, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.618438], [9.082284, 45.622934], [9.086781, 45.622934], [9.086781, 45.618438], [9.082284, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.622934], [9.082284, 45.627431], [9.086781, 45.627431], [9.086781, 45.622934], [9.082284, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.627431], [9.082284, 45.631928], [9.086781, 45.631928], [9.086781, 45.627431], [9.082284, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.082284, 45.631928], [9.082284, 45.636424], [9.086781, 45.636424], [9.086781, 45.631928], [9.082284, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.339648], [9.086781, 45.344145], [9.091278, 45.344145], [9.091278, 45.339648], [9.086781, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.344145], [9.086781, 45.348642], [9.091278, 45.348642], [9.091278, 45.344145], [9.086781, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.348642], [9.086781, 45.353138], [9.091278, 45.353138], [9.091278, 45.348642], [9.086781, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.353138], [9.086781, 45.357635], [9.091278, 45.357635], [9.091278, 45.353138], [9.086781, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.357635], [9.086781, 45.362131], [9.091278, 45.362131], [9.091278, 45.357635], [9.086781, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.362131], [9.086781, 45.366628], [9.091278, 45.366628], [9.091278, 45.362131], [9.086781, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.366628], [9.086781, 45.371125], [9.091278, 45.371125], [9.091278, 45.366628], [9.086781, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.371125], [9.086781, 45.375621], [9.091278, 45.375621], [9.091278, 45.371125], [9.086781, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.375621], [9.086781, 45.380118], [9.091278, 45.380118], [9.091278, 45.375621], [9.086781, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.380118], [9.086781, 45.384614], [9.091278, 45.384614], [9.091278, 45.380118], [9.086781, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.384614], [9.086781, 45.389111], [9.091278, 45.389111], [9.091278, 45.384614], [9.086781, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.389111], [9.086781, 45.393608], [9.091278, 45.393608], [9.091278, 45.389111], [9.086781, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.393608], [9.086781, 45.398104], [9.091278, 45.398104], [9.091278, 45.393608], [9.086781, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.398104], [9.086781, 45.402601], [9.091278, 45.402601], [9.091278, 45.398104], [9.086781, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.402601], [9.086781, 45.407097], [9.091278, 45.407097], [9.091278, 45.402601], [9.086781, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.407097], [9.086781, 45.411594], [9.091278, 45.411594], [9.091278, 45.407097], [9.086781, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.411594], [9.086781, 45.416091], [9.091278, 45.416091], [9.091278, 45.411594], [9.086781, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.416091], [9.086781, 45.420587], [9.091278, 45.420587], [9.091278, 45.416091], [9.086781, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.420587], [9.086781, 45.425084], [9.091278, 45.425084], [9.091278, 45.420587], [9.086781, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.425084], [9.086781, 45.42958], [9.091278, 45.42958], [9.091278, 45.425084], [9.086781, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.42958], [9.086781, 45.434077], [9.091278, 45.434077], [9.091278, 45.42958], [9.086781, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.434077], [9.086781, 45.438574], [9.091278, 45.438574], [9.091278, 45.434077], [9.086781, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.438574], [9.086781, 45.44307], [9.091278, 45.44307], [9.091278, 45.438574], [9.086781, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.44307], [9.086781, 45.447567], [9.091278, 45.447567], [9.091278, 45.44307], [9.086781, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.447567], [9.086781, 45.452063], [9.091278, 45.452063], [9.091278, 45.447567], [9.086781, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.452063], [9.086781, 45.45656], [9.091278, 45.45656], [9.091278, 45.452063], [9.086781, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.45656], [9.086781, 45.461057], [9.091278, 45.461057], [9.091278, 45.45656], [9.086781, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.461057], [9.086781, 45.465553], [9.091278, 45.465553], [9.091278, 45.461057], [9.086781, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.465553], [9.086781, 45.47005], [9.091278, 45.47005], [9.091278, 45.465553], [9.086781, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.47005], [9.086781, 45.474547], [9.091278, 45.474547], [9.091278, 45.47005], [9.086781, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.474547], [9.086781, 45.479043], [9.091278, 45.479043], [9.091278, 45.474547], [9.086781, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.479043], [9.086781, 45.48354], [9.091278, 45.48354], [9.091278, 45.479043], [9.086781, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.48354], [9.086781, 45.488036], [9.091278, 45.488036], [9.091278, 45.48354], [9.086781, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.488036], [9.086781, 45.492533], [9.091278, 45.492533], [9.091278, 45.488036], [9.086781, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.492533], [9.086781, 45.49703], [9.091278, 45.49703], [9.091278, 45.492533], [9.086781, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.49703], [9.086781, 45.501526], [9.091278, 45.501526], [9.091278, 45.49703], [9.086781, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.501526], [9.086781, 45.506023], [9.091278, 45.506023], [9.091278, 45.501526], [9.086781, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.506023], [9.086781, 45.510519], [9.091278, 45.510519], [9.091278, 45.506023], [9.086781, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.510519], [9.086781, 45.515016], [9.091278, 45.515016], [9.091278, 45.510519], [9.086781, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.515016], [9.086781, 45.519513], [9.091278, 45.519513], [9.091278, 45.515016], [9.086781, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.519513], [9.086781, 45.524009], [9.091278, 45.524009], [9.091278, 45.519513], [9.086781, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.524009], [9.086781, 45.528506], [9.091278, 45.528506], [9.091278, 45.524009], [9.086781, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.528506], [9.086781, 45.533002], [9.091278, 45.533002], [9.091278, 45.528506], [9.086781, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.533002], [9.086781, 45.537499], [9.091278, 45.537499], [9.091278, 45.533002], [9.086781, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.537499], [9.086781, 45.541996], [9.091278, 45.541996], [9.091278, 45.537499], [9.086781, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.541996], [9.086781, 45.546492], [9.091278, 45.546492], [9.091278, 45.541996], [9.086781, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.546492], [9.086781, 45.550989], [9.091278, 45.550989], [9.091278, 45.546492], [9.086781, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.550989], [9.086781, 45.555485], [9.091278, 45.555485], [9.091278, 45.550989], [9.086781, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.555485], [9.086781, 45.559982], [9.091278, 45.559982], [9.091278, 45.555485], [9.086781, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.559982], [9.086781, 45.564479], [9.091278, 45.564479], [9.091278, 45.559982], [9.086781, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.564479], [9.086781, 45.568975], [9.091278, 45.568975], [9.091278, 45.564479], [9.086781, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.568975], [9.086781, 45.573472], [9.091278, 45.573472], [9.091278, 45.568975], [9.086781, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.573472], [9.086781, 45.577968], [9.091278, 45.577968], [9.091278, 45.573472], [9.086781, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.577968], [9.086781, 45.582465], [9.091278, 45.582465], [9.091278, 45.577968], [9.086781, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.582465], [9.086781, 45.586962], [9.091278, 45.586962], [9.091278, 45.582465], [9.086781, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.586962], [9.086781, 45.591458], [9.091278, 45.591458], [9.091278, 45.586962], [9.086781, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.591458], [9.086781, 45.595955], [9.091278, 45.595955], [9.091278, 45.591458], [9.086781, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.595955], [9.086781, 45.600451], [9.091278, 45.600451], [9.091278, 45.595955], [9.086781, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.600451], [9.086781, 45.604948], [9.091278, 45.604948], [9.091278, 45.600451], [9.086781, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.604948], [9.086781, 45.609445], [9.091278, 45.609445], [9.091278, 45.604948], [9.086781, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.609445], [9.086781, 45.613941], [9.091278, 45.613941], [9.091278, 45.609445], [9.086781, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.613941], [9.086781, 45.618438], [9.091278, 45.618438], [9.091278, 45.613941], [9.086781, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.618438], [9.086781, 45.622934], [9.091278, 45.622934], [9.091278, 45.618438], [9.086781, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.622934], [9.086781, 45.627431], [9.091278, 45.627431], [9.091278, 45.622934], [9.086781, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.627431], [9.086781, 45.631928], [9.091278, 45.631928], [9.091278, 45.627431], [9.086781, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.086781, 45.631928], [9.086781, 45.636424], [9.091278, 45.636424], [9.091278, 45.631928], [9.086781, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.339648], [9.091278, 45.344145], [9.095774, 45.344145], [9.095774, 45.339648], [9.091278, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.344145], [9.091278, 45.348642], [9.095774, 45.348642], [9.095774, 45.344145], [9.091278, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.348642], [9.091278, 45.353138], [9.095774, 45.353138], [9.095774, 45.348642], [9.091278, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.353138], [9.091278, 45.357635], [9.095774, 45.357635], [9.095774, 45.353138], [9.091278, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.357635], [9.091278, 45.362131], [9.095774, 45.362131], [9.095774, 45.357635], [9.091278, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.362131], [9.091278, 45.366628], [9.095774, 45.366628], [9.095774, 45.362131], [9.091278, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.366628], [9.091278, 45.371125], [9.095774, 45.371125], [9.095774, 45.366628], [9.091278, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.371125], [9.091278, 45.375621], [9.095774, 45.375621], [9.095774, 45.371125], [9.091278, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.375621], [9.091278, 45.380118], [9.095774, 45.380118], [9.095774, 45.375621], [9.091278, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.380118], [9.091278, 45.384614], [9.095774, 45.384614], [9.095774, 45.380118], [9.091278, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.384614], [9.091278, 45.389111], [9.095774, 45.389111], [9.095774, 45.384614], [9.091278, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.389111], [9.091278, 45.393608], [9.095774, 45.393608], [9.095774, 45.389111], [9.091278, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.393608], [9.091278, 45.398104], [9.095774, 45.398104], [9.095774, 45.393608], [9.091278, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.398104], [9.091278, 45.402601], [9.095774, 45.402601], [9.095774, 45.398104], [9.091278, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.402601], [9.091278, 45.407097], [9.095774, 45.407097], [9.095774, 45.402601], [9.091278, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.407097], [9.091278, 45.411594], [9.095774, 45.411594], [9.095774, 45.407097], [9.091278, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.411594], [9.091278, 45.416091], [9.095774, 45.416091], [9.095774, 45.411594], [9.091278, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.416091], [9.091278, 45.420587], [9.095774, 45.420587], [9.095774, 45.416091], [9.091278, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.420587], [9.091278, 45.425084], [9.095774, 45.425084], [9.095774, 45.420587], [9.091278, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.425084], [9.091278, 45.42958], [9.095774, 45.42958], [9.095774, 45.425084], [9.091278, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.42958], [9.091278, 45.434077], [9.095774, 45.434077], [9.095774, 45.42958], [9.091278, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.434077], [9.091278, 45.438574], [9.095774, 45.438574], [9.095774, 45.434077], [9.091278, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.438574], [9.091278, 45.44307], [9.095774, 45.44307], [9.095774, 45.438574], [9.091278, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.44307], [9.091278, 45.447567], [9.095774, 45.447567], [9.095774, 45.44307], [9.091278, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.447567], [9.091278, 45.452063], [9.095774, 45.452063], [9.095774, 45.447567], [9.091278, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.452063], [9.091278, 45.45656], [9.095774, 45.45656], [9.095774, 45.452063], [9.091278, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.45656], [9.091278, 45.461057], [9.095774, 45.461057], [9.095774, 45.45656], [9.091278, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.461057], [9.091278, 45.465553], [9.095774, 45.465553], [9.095774, 45.461057], [9.091278, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.465553], [9.091278, 45.47005], [9.095774, 45.47005], [9.095774, 45.465553], [9.091278, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.47005], [9.091278, 45.474547], [9.095774, 45.474547], [9.095774, 45.47005], [9.091278, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.474547], [9.091278, 45.479043], [9.095774, 45.479043], [9.095774, 45.474547], [9.091278, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.479043], [9.091278, 45.48354], [9.095774, 45.48354], [9.095774, 45.479043], [9.091278, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.48354], [9.091278, 45.488036], [9.095774, 45.488036], [9.095774, 45.48354], [9.091278, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.488036], [9.091278, 45.492533], [9.095774, 45.492533], [9.095774, 45.488036], [9.091278, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.492533], [9.091278, 45.49703], [9.095774, 45.49703], [9.095774, 45.492533], [9.091278, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.49703], [9.091278, 45.501526], [9.095774, 45.501526], [9.095774, 45.49703], [9.091278, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.501526], [9.091278, 45.506023], [9.095774, 45.506023], [9.095774, 45.501526], [9.091278, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.506023], [9.091278, 45.510519], [9.095774, 45.510519], [9.095774, 45.506023], [9.091278, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.510519], [9.091278, 45.515016], [9.095774, 45.515016], [9.095774, 45.510519], [9.091278, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.515016], [9.091278, 45.519513], [9.095774, 45.519513], [9.095774, 45.515016], [9.091278, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.519513], [9.091278, 45.524009], [9.095774, 45.524009], [9.095774, 45.519513], [9.091278, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.524009], [9.091278, 45.528506], [9.095774, 45.528506], [9.095774, 45.524009], [9.091278, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.528506], [9.091278, 45.533002], [9.095774, 45.533002], [9.095774, 45.528506], [9.091278, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.533002], [9.091278, 45.537499], [9.095774, 45.537499], [9.095774, 45.533002], [9.091278, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.537499], [9.091278, 45.541996], [9.095774, 45.541996], [9.095774, 45.537499], [9.091278, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.541996], [9.091278, 45.546492], [9.095774, 45.546492], [9.095774, 45.541996], [9.091278, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.546492], [9.091278, 45.550989], [9.095774, 45.550989], [9.095774, 45.546492], [9.091278, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.550989], [9.091278, 45.555485], [9.095774, 45.555485], [9.095774, 45.550989], [9.091278, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.555485], [9.091278, 45.559982], [9.095774, 45.559982], [9.095774, 45.555485], [9.091278, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.559982], [9.091278, 45.564479], [9.095774, 45.564479], [9.095774, 45.559982], [9.091278, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.564479], [9.091278, 45.568975], [9.095774, 45.568975], [9.095774, 45.564479], [9.091278, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.568975], [9.091278, 45.573472], [9.095774, 45.573472], [9.095774, 45.568975], [9.091278, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.573472], [9.091278, 45.577968], [9.095774, 45.577968], [9.095774, 45.573472], [9.091278, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.577968], [9.091278, 45.582465], [9.095774, 45.582465], [9.095774, 45.577968], [9.091278, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.582465], [9.091278, 45.586962], [9.095774, 45.586962], [9.095774, 45.582465], [9.091278, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.586962], [9.091278, 45.591458], [9.095774, 45.591458], [9.095774, 45.586962], [9.091278, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.591458], [9.091278, 45.595955], [9.095774, 45.595955], [9.095774, 45.591458], [9.091278, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.595955], [9.091278, 45.600451], [9.095774, 45.600451], [9.095774, 45.595955], [9.091278, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.600451], [9.091278, 45.604948], [9.095774, 45.604948], [9.095774, 45.600451], [9.091278, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.604948], [9.091278, 45.609445], [9.095774, 45.609445], [9.095774, 45.604948], [9.091278, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.609445], [9.091278, 45.613941], [9.095774, 45.613941], [9.095774, 45.609445], [9.091278, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.613941], [9.091278, 45.618438], [9.095774, 45.618438], [9.095774, 45.613941], [9.091278, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.618438], [9.091278, 45.622934], [9.095774, 45.622934], [9.095774, 45.618438], [9.091278, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.622934], [9.091278, 45.627431], [9.095774, 45.627431], [9.095774, 45.622934], [9.091278, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.627431], [9.091278, 45.631928], [9.095774, 45.631928], [9.095774, 45.627431], [9.091278, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.091278, 45.631928], [9.091278, 45.636424], [9.095774, 45.636424], [9.095774, 45.631928], [9.091278, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.339648], [9.095774, 45.344145], [9.100271, 45.344145], [9.100271, 45.339648], [9.095774, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.344145], [9.095774, 45.348642], [9.100271, 45.348642], [9.100271, 45.344145], [9.095774, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.348642], [9.095774, 45.353138], [9.100271, 45.353138], [9.100271, 45.348642], [9.095774, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.353138], [9.095774, 45.357635], [9.100271, 45.357635], [9.100271, 45.353138], [9.095774, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.357635], [9.095774, 45.362131], [9.100271, 45.362131], [9.100271, 45.357635], [9.095774, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.362131], [9.095774, 45.366628], [9.100271, 45.366628], [9.100271, 45.362131], [9.095774, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.366628], [9.095774, 45.371125], [9.100271, 45.371125], [9.100271, 45.366628], [9.095774, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.371125], [9.095774, 45.375621], [9.100271, 45.375621], [9.100271, 45.371125], [9.095774, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.375621], [9.095774, 45.380118], [9.100271, 45.380118], [9.100271, 45.375621], [9.095774, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.380118], [9.095774, 45.384614], [9.100271, 45.384614], [9.100271, 45.380118], [9.095774, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.384614], [9.095774, 45.389111], [9.100271, 45.389111], [9.100271, 45.384614], [9.095774, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.389111], [9.095774, 45.393608], [9.100271, 45.393608], [9.100271, 45.389111], [9.095774, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.393608], [9.095774, 45.398104], [9.100271, 45.398104], [9.100271, 45.393608], [9.095774, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.398104], [9.095774, 45.402601], [9.100271, 45.402601], [9.100271, 45.398104], [9.095774, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.402601], [9.095774, 45.407097], [9.100271, 45.407097], [9.100271, 45.402601], [9.095774, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.407097], [9.095774, 45.411594], [9.100271, 45.411594], [9.100271, 45.407097], [9.095774, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.411594], [9.095774, 45.416091], [9.100271, 45.416091], [9.100271, 45.411594], [9.095774, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.416091], [9.095774, 45.420587], [9.100271, 45.420587], [9.100271, 45.416091], [9.095774, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.420587], [9.095774, 45.425084], [9.100271, 45.425084], [9.100271, 45.420587], [9.095774, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.425084], [9.095774, 45.42958], [9.100271, 45.42958], [9.100271, 45.425084], [9.095774, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.42958], [9.095774, 45.434077], [9.100271, 45.434077], [9.100271, 45.42958], [9.095774, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.434077], [9.095774, 45.438574], [9.100271, 45.438574], [9.100271, 45.434077], [9.095774, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.438574], [9.095774, 45.44307], [9.100271, 45.44307], [9.100271, 45.438574], [9.095774, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.44307], [9.095774, 45.447567], [9.100271, 45.447567], [9.100271, 45.44307], [9.095774, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.447567], [9.095774, 45.452063], [9.100271, 45.452063], [9.100271, 45.447567], [9.095774, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.452063], [9.095774, 45.45656], [9.100271, 45.45656], [9.100271, 45.452063], [9.095774, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.45656], [9.095774, 45.461057], [9.100271, 45.461057], [9.100271, 45.45656], [9.095774, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.461057], [9.095774, 45.465553], [9.100271, 45.465553], [9.100271, 45.461057], [9.095774, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.465553], [9.095774, 45.47005], [9.100271, 45.47005], [9.100271, 45.465553], [9.095774, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.47005], [9.095774, 45.474547], [9.100271, 45.474547], [9.100271, 45.47005], [9.095774, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.474547], [9.095774, 45.479043], [9.100271, 45.479043], [9.100271, 45.474547], [9.095774, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.479043], [9.095774, 45.48354], [9.100271, 45.48354], [9.100271, 45.479043], [9.095774, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.48354], [9.095774, 45.488036], [9.100271, 45.488036], [9.100271, 45.48354], [9.095774, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.488036], [9.095774, 45.492533], [9.100271, 45.492533], [9.100271, 45.488036], [9.095774, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.492533], [9.095774, 45.49703], [9.100271, 45.49703], [9.100271, 45.492533], [9.095774, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.49703], [9.095774, 45.501526], [9.100271, 45.501526], [9.100271, 45.49703], [9.095774, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.501526], [9.095774, 45.506023], [9.100271, 45.506023], [9.100271, 45.501526], [9.095774, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.506023], [9.095774, 45.510519], [9.100271, 45.510519], [9.100271, 45.506023], [9.095774, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.510519], [9.095774, 45.515016], [9.100271, 45.515016], [9.100271, 45.510519], [9.095774, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.515016], [9.095774, 45.519513], [9.100271, 45.519513], [9.100271, 45.515016], [9.095774, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.519513], [9.095774, 45.524009], [9.100271, 45.524009], [9.100271, 45.519513], [9.095774, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.524009], [9.095774, 45.528506], [9.100271, 45.528506], [9.100271, 45.524009], [9.095774, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.528506], [9.095774, 45.533002], [9.100271, 45.533002], [9.100271, 45.528506], [9.095774, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.533002], [9.095774, 45.537499], [9.100271, 45.537499], [9.100271, 45.533002], [9.095774, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.537499], [9.095774, 45.541996], [9.100271, 45.541996], [9.100271, 45.537499], [9.095774, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.541996], [9.095774, 45.546492], [9.100271, 45.546492], [9.100271, 45.541996], [9.095774, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.546492], [9.095774, 45.550989], [9.100271, 45.550989], [9.100271, 45.546492], [9.095774, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.550989], [9.095774, 45.555485], [9.100271, 45.555485], [9.100271, 45.550989], [9.095774, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.555485], [9.095774, 45.559982], [9.100271, 45.559982], [9.100271, 45.555485], [9.095774, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.559982], [9.095774, 45.564479], [9.100271, 45.564479], [9.100271, 45.559982], [9.095774, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.564479], [9.095774, 45.568975], [9.100271, 45.568975], [9.100271, 45.564479], [9.095774, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.568975], [9.095774, 45.573472], [9.100271, 45.573472], [9.100271, 45.568975], [9.095774, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.573472], [9.095774, 45.577968], [9.100271, 45.577968], [9.100271, 45.573472], [9.095774, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.577968], [9.095774, 45.582465], [9.100271, 45.582465], [9.100271, 45.577968], [9.095774, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.582465], [9.095774, 45.586962], [9.100271, 45.586962], [9.100271, 45.582465], [9.095774, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.586962], [9.095774, 45.591458], [9.100271, 45.591458], [9.100271, 45.586962], [9.095774, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.591458], [9.095774, 45.595955], [9.100271, 45.595955], [9.100271, 45.591458], [9.095774, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.595955], [9.095774, 45.600451], [9.100271, 45.600451], [9.100271, 45.595955], [9.095774, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.600451], [9.095774, 45.604948], [9.100271, 45.604948], [9.100271, 45.600451], [9.095774, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.604948], [9.095774, 45.609445], [9.100271, 45.609445], [9.100271, 45.604948], [9.095774, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.609445], [9.095774, 45.613941], [9.100271, 45.613941], [9.100271, 45.609445], [9.095774, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.613941], [9.095774, 45.618438], [9.100271, 45.618438], [9.100271, 45.613941], [9.095774, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.618438], [9.095774, 45.622934], [9.100271, 45.622934], [9.100271, 45.618438], [9.095774, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.622934], [9.095774, 45.627431], [9.100271, 45.627431], [9.100271, 45.622934], [9.095774, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.627431], [9.095774, 45.631928], [9.100271, 45.631928], [9.100271, 45.627431], [9.095774, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.095774, 45.631928], [9.095774, 45.636424], [9.100271, 45.636424], [9.100271, 45.631928], [9.095774, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.339648], [9.100271, 45.344145], [9.104767, 45.344145], [9.104767, 45.339648], [9.100271, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.344145], [9.100271, 45.348642], [9.104767, 45.348642], [9.104767, 45.344145], [9.100271, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.348642], [9.100271, 45.353138], [9.104767, 45.353138], [9.104767, 45.348642], [9.100271, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.353138], [9.100271, 45.357635], [9.104767, 45.357635], [9.104767, 45.353138], [9.100271, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.357635], [9.100271, 45.362131], [9.104767, 45.362131], [9.104767, 45.357635], [9.100271, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.362131], [9.100271, 45.366628], [9.104767, 45.366628], [9.104767, 45.362131], [9.100271, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.366628], [9.100271, 45.371125], [9.104767, 45.371125], [9.104767, 45.366628], [9.100271, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.371125], [9.100271, 45.375621], [9.104767, 45.375621], [9.104767, 45.371125], [9.100271, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.375621], [9.100271, 45.380118], [9.104767, 45.380118], [9.104767, 45.375621], [9.100271, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.380118], [9.100271, 45.384614], [9.104767, 45.384614], [9.104767, 45.380118], [9.100271, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.384614], [9.100271, 45.389111], [9.104767, 45.389111], [9.104767, 45.384614], [9.100271, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.389111], [9.100271, 45.393608], [9.104767, 45.393608], [9.104767, 45.389111], [9.100271, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.393608], [9.100271, 45.398104], [9.104767, 45.398104], [9.104767, 45.393608], [9.100271, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.398104], [9.100271, 45.402601], [9.104767, 45.402601], [9.104767, 45.398104], [9.100271, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.402601], [9.100271, 45.407097], [9.104767, 45.407097], [9.104767, 45.402601], [9.100271, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.407097], [9.100271, 45.411594], [9.104767, 45.411594], [9.104767, 45.407097], [9.100271, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.411594], [9.100271, 45.416091], [9.104767, 45.416091], [9.104767, 45.411594], [9.100271, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.416091], [9.100271, 45.420587], [9.104767, 45.420587], [9.104767, 45.416091], [9.100271, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.420587], [9.100271, 45.425084], [9.104767, 45.425084], [9.104767, 45.420587], [9.100271, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.425084], [9.100271, 45.42958], [9.104767, 45.42958], [9.104767, 45.425084], [9.100271, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.42958], [9.100271, 45.434077], [9.104767, 45.434077], [9.104767, 45.42958], [9.100271, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.434077], [9.100271, 45.438574], [9.104767, 45.438574], [9.104767, 45.434077], [9.100271, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.438574], [9.100271, 45.44307], [9.104767, 45.44307], [9.104767, 45.438574], [9.100271, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.44307], [9.100271, 45.447567], [9.104767, 45.447567], [9.104767, 45.44307], [9.100271, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.447567], [9.100271, 45.452063], [9.104767, 45.452063], [9.104767, 45.447567], [9.100271, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.452063], [9.100271, 45.45656], [9.104767, 45.45656], [9.104767, 45.452063], [9.100271, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.45656], [9.100271, 45.461057], [9.104767, 45.461057], [9.104767, 45.45656], [9.100271, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.461057], [9.100271, 45.465553], [9.104767, 45.465553], [9.104767, 45.461057], [9.100271, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.465553], [9.100271, 45.47005], [9.104767, 45.47005], [9.104767, 45.465553], [9.100271, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.47005], [9.100271, 45.474547], [9.104767, 45.474547], [9.104767, 45.47005], [9.100271, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.474547], [9.100271, 45.479043], [9.104767, 45.479043], [9.104767, 45.474547], [9.100271, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.479043], [9.100271, 45.48354], [9.104767, 45.48354], [9.104767, 45.479043], [9.100271, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.48354], [9.100271, 45.488036], [9.104767, 45.488036], [9.104767, 45.48354], [9.100271, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.488036], [9.100271, 45.492533], [9.104767, 45.492533], [9.104767, 45.488036], [9.100271, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.492533], [9.100271, 45.49703], [9.104767, 45.49703], [9.104767, 45.492533], [9.100271, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.49703], [9.100271, 45.501526], [9.104767, 45.501526], [9.104767, 45.49703], [9.100271, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.501526], [9.100271, 45.506023], [9.104767, 45.506023], [9.104767, 45.501526], [9.100271, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.506023], [9.100271, 45.510519], [9.104767, 45.510519], [9.104767, 45.506023], [9.100271, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.510519], [9.100271, 45.515016], [9.104767, 45.515016], [9.104767, 45.510519], [9.100271, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.515016], [9.100271, 45.519513], [9.104767, 45.519513], [9.104767, 45.515016], [9.100271, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.519513], [9.100271, 45.524009], [9.104767, 45.524009], [9.104767, 45.519513], [9.100271, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.524009], [9.100271, 45.528506], [9.104767, 45.528506], [9.104767, 45.524009], [9.100271, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.528506], [9.100271, 45.533002], [9.104767, 45.533002], [9.104767, 45.528506], [9.100271, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.533002], [9.100271, 45.537499], [9.104767, 45.537499], [9.104767, 45.533002], [9.100271, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.537499], [9.100271, 45.541996], [9.104767, 45.541996], [9.104767, 45.537499], [9.100271, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.541996], [9.100271, 45.546492], [9.104767, 45.546492], [9.104767, 45.541996], [9.100271, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.546492], [9.100271, 45.550989], [9.104767, 45.550989], [9.104767, 45.546492], [9.100271, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.550989], [9.100271, 45.555485], [9.104767, 45.555485], [9.104767, 45.550989], [9.100271, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.555485], [9.100271, 45.559982], [9.104767, 45.559982], [9.104767, 45.555485], [9.100271, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.559982], [9.100271, 45.564479], [9.104767, 45.564479], [9.104767, 45.559982], [9.100271, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.564479], [9.100271, 45.568975], [9.104767, 45.568975], [9.104767, 45.564479], [9.100271, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.568975], [9.100271, 45.573472], [9.104767, 45.573472], [9.104767, 45.568975], [9.100271, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.573472], [9.100271, 45.577968], [9.104767, 45.577968], [9.104767, 45.573472], [9.100271, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.577968], [9.100271, 45.582465], [9.104767, 45.582465], [9.104767, 45.577968], [9.100271, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.582465], [9.100271, 45.586962], [9.104767, 45.586962], [9.104767, 45.582465], [9.100271, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.586962], [9.100271, 45.591458], [9.104767, 45.591458], [9.104767, 45.586962], [9.100271, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.591458], [9.100271, 45.595955], [9.104767, 45.595955], [9.104767, 45.591458], [9.100271, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.595955], [9.100271, 45.600451], [9.104767, 45.600451], [9.104767, 45.595955], [9.100271, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.600451], [9.100271, 45.604948], [9.104767, 45.604948], [9.104767, 45.600451], [9.100271, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.604948], [9.100271, 45.609445], [9.104767, 45.609445], [9.104767, 45.604948], [9.100271, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.609445], [9.100271, 45.613941], [9.104767, 45.613941], [9.104767, 45.609445], [9.100271, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.613941], [9.100271, 45.618438], [9.104767, 45.618438], [9.104767, 45.613941], [9.100271, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.618438], [9.100271, 45.622934], [9.104767, 45.622934], [9.104767, 45.618438], [9.100271, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.622934], [9.100271, 45.627431], [9.104767, 45.627431], [9.104767, 45.622934], [9.100271, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.627431], [9.100271, 45.631928], [9.104767, 45.631928], [9.104767, 45.627431], [9.100271, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.100271, 45.631928], [9.100271, 45.636424], [9.104767, 45.636424], [9.104767, 45.631928], [9.100271, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.339648], [9.104767, 45.344145], [9.109264, 45.344145], [9.109264, 45.339648], [9.104767, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.344145], [9.104767, 45.348642], [9.109264, 45.348642], [9.109264, 45.344145], [9.104767, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.348642], [9.104767, 45.353138], [9.109264, 45.353138], [9.109264, 45.348642], [9.104767, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.353138], [9.104767, 45.357635], [9.109264, 45.357635], [9.109264, 45.353138], [9.104767, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.357635], [9.104767, 45.362131], [9.109264, 45.362131], [9.109264, 45.357635], [9.104767, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.362131], [9.104767, 45.366628], [9.109264, 45.366628], [9.109264, 45.362131], [9.104767, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.366628], [9.104767, 45.371125], [9.109264, 45.371125], [9.109264, 45.366628], [9.104767, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.371125], [9.104767, 45.375621], [9.109264, 45.375621], [9.109264, 45.371125], [9.104767, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.375621], [9.104767, 45.380118], [9.109264, 45.380118], [9.109264, 45.375621], [9.104767, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.380118], [9.104767, 45.384614], [9.109264, 45.384614], [9.109264, 45.380118], [9.104767, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.384614], [9.104767, 45.389111], [9.109264, 45.389111], [9.109264, 45.384614], [9.104767, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.389111], [9.104767, 45.393608], [9.109264, 45.393608], [9.109264, 45.389111], [9.104767, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.393608], [9.104767, 45.398104], [9.109264, 45.398104], [9.109264, 45.393608], [9.104767, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.398104], [9.104767, 45.402601], [9.109264, 45.402601], [9.109264, 45.398104], [9.104767, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.402601], [9.104767, 45.407097], [9.109264, 45.407097], [9.109264, 45.402601], [9.104767, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.407097], [9.104767, 45.411594], [9.109264, 45.411594], [9.109264, 45.407097], [9.104767, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.411594], [9.104767, 45.416091], [9.109264, 45.416091], [9.109264, 45.411594], [9.104767, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.416091], [9.104767, 45.420587], [9.109264, 45.420587], [9.109264, 45.416091], [9.104767, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.420587], [9.104767, 45.425084], [9.109264, 45.425084], [9.109264, 45.420587], [9.104767, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.425084], [9.104767, 45.42958], [9.109264, 45.42958], [9.109264, 45.425084], [9.104767, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.42958], [9.104767, 45.434077], [9.109264, 45.434077], [9.109264, 45.42958], [9.104767, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.434077], [9.104767, 45.438574], [9.109264, 45.438574], [9.109264, 45.434077], [9.104767, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.438574], [9.104767, 45.44307], [9.109264, 45.44307], [9.109264, 45.438574], [9.104767, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.44307], [9.104767, 45.447567], [9.109264, 45.447567], [9.109264, 45.44307], [9.104767, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.447567], [9.104767, 45.452063], [9.109264, 45.452063], [9.109264, 45.447567], [9.104767, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.452063], [9.104767, 45.45656], [9.109264, 45.45656], [9.109264, 45.452063], [9.104767, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.45656], [9.104767, 45.461057], [9.109264, 45.461057], [9.109264, 45.45656], [9.104767, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.461057], [9.104767, 45.465553], [9.109264, 45.465553], [9.109264, 45.461057], [9.104767, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.465553], [9.104767, 45.47005], [9.109264, 45.47005], [9.109264, 45.465553], [9.104767, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.47005], [9.104767, 45.474547], [9.109264, 45.474547], [9.109264, 45.47005], [9.104767, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.474547], [9.104767, 45.479043], [9.109264, 45.479043], [9.109264, 45.474547], [9.104767, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.479043], [9.104767, 45.48354], [9.109264, 45.48354], [9.109264, 45.479043], [9.104767, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.48354], [9.104767, 45.488036], [9.109264, 45.488036], [9.109264, 45.48354], [9.104767, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.488036], [9.104767, 45.492533], [9.109264, 45.492533], [9.109264, 45.488036], [9.104767, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.492533], [9.104767, 45.49703], [9.109264, 45.49703], [9.109264, 45.492533], [9.104767, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.49703], [9.104767, 45.501526], [9.109264, 45.501526], [9.109264, 45.49703], [9.104767, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.501526], [9.104767, 45.506023], [9.109264, 45.506023], [9.109264, 45.501526], [9.104767, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.506023], [9.104767, 45.510519], [9.109264, 45.510519], [9.109264, 45.506023], [9.104767, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.510519], [9.104767, 45.515016], [9.109264, 45.515016], [9.109264, 45.510519], [9.104767, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.515016], [9.104767, 45.519513], [9.109264, 45.519513], [9.109264, 45.515016], [9.104767, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.519513], [9.104767, 45.524009], [9.109264, 45.524009], [9.109264, 45.519513], [9.104767, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.524009], [9.104767, 45.528506], [9.109264, 45.528506], [9.109264, 45.524009], [9.104767, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.528506], [9.104767, 45.533002], [9.109264, 45.533002], [9.109264, 45.528506], [9.104767, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.533002], [9.104767, 45.537499], [9.109264, 45.537499], [9.109264, 45.533002], [9.104767, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.537499], [9.104767, 45.541996], [9.109264, 45.541996], [9.109264, 45.537499], [9.104767, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.541996], [9.104767, 45.546492], [9.109264, 45.546492], [9.109264, 45.541996], [9.104767, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.546492], [9.104767, 45.550989], [9.109264, 45.550989], [9.109264, 45.546492], [9.104767, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.550989], [9.104767, 45.555485], [9.109264, 45.555485], [9.109264, 45.550989], [9.104767, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.555485], [9.104767, 45.559982], [9.109264, 45.559982], [9.109264, 45.555485], [9.104767, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.559982], [9.104767, 45.564479], [9.109264, 45.564479], [9.109264, 45.559982], [9.104767, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.564479], [9.104767, 45.568975], [9.109264, 45.568975], [9.109264, 45.564479], [9.104767, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.568975], [9.104767, 45.573472], [9.109264, 45.573472], [9.109264, 45.568975], [9.104767, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.573472], [9.104767, 45.577968], [9.109264, 45.577968], [9.109264, 45.573472], [9.104767, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.577968], [9.104767, 45.582465], [9.109264, 45.582465], [9.109264, 45.577968], [9.104767, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.582465], [9.104767, 45.586962], [9.109264, 45.586962], [9.109264, 45.582465], [9.104767, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.586962], [9.104767, 45.591458], [9.109264, 45.591458], [9.109264, 45.586962], [9.104767, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.591458], [9.104767, 45.595955], [9.109264, 45.595955], [9.109264, 45.591458], [9.104767, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.595955], [9.104767, 45.600451], [9.109264, 45.600451], [9.109264, 45.595955], [9.104767, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.600451], [9.104767, 45.604948], [9.109264, 45.604948], [9.109264, 45.600451], [9.104767, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.604948], [9.104767, 45.609445], [9.109264, 45.609445], [9.109264, 45.604948], [9.104767, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.609445], [9.104767, 45.613941], [9.109264, 45.613941], [9.109264, 45.609445], [9.104767, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.613941], [9.104767, 45.618438], [9.109264, 45.618438], [9.109264, 45.613941], [9.104767, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.618438], [9.104767, 45.622934], [9.109264, 45.622934], [9.109264, 45.618438], [9.104767, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.622934], [9.104767, 45.627431], [9.109264, 45.627431], [9.109264, 45.622934], [9.104767, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.627431], [9.104767, 45.631928], [9.109264, 45.631928], [9.109264, 45.627431], [9.104767, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.104767, 45.631928], [9.104767, 45.636424], [9.109264, 45.636424], [9.109264, 45.631928], [9.104767, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.339648], [9.109264, 45.344145], [9.113761, 45.344145], [9.113761, 45.339648], [9.109264, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.344145], [9.109264, 45.348642], [9.113761, 45.348642], [9.113761, 45.344145], [9.109264, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.348642], [9.109264, 45.353138], [9.113761, 45.353138], [9.113761, 45.348642], [9.109264, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.353138], [9.109264, 45.357635], [9.113761, 45.357635], [9.113761, 45.353138], [9.109264, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.357635], [9.109264, 45.362131], [9.113761, 45.362131], [9.113761, 45.357635], [9.109264, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.362131], [9.109264, 45.366628], [9.113761, 45.366628], [9.113761, 45.362131], [9.109264, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.366628], [9.109264, 45.371125], [9.113761, 45.371125], [9.113761, 45.366628], [9.109264, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.371125], [9.109264, 45.375621], [9.113761, 45.375621], [9.113761, 45.371125], [9.109264, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.375621], [9.109264, 45.380118], [9.113761, 45.380118], [9.113761, 45.375621], [9.109264, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.380118], [9.109264, 45.384614], [9.113761, 45.384614], [9.113761, 45.380118], [9.109264, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.384614], [9.109264, 45.389111], [9.113761, 45.389111], [9.113761, 45.384614], [9.109264, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.389111], [9.109264, 45.393608], [9.113761, 45.393608], [9.113761, 45.389111], [9.109264, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.393608], [9.109264, 45.398104], [9.113761, 45.398104], [9.113761, 45.393608], [9.109264, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.398104], [9.109264, 45.402601], [9.113761, 45.402601], [9.113761, 45.398104], [9.109264, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.402601], [9.109264, 45.407097], [9.113761, 45.407097], [9.113761, 45.402601], [9.109264, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.407097], [9.109264, 45.411594], [9.113761, 45.411594], [9.113761, 45.407097], [9.109264, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.411594], [9.109264, 45.416091], [9.113761, 45.416091], [9.113761, 45.411594], [9.109264, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.416091], [9.109264, 45.420587], [9.113761, 45.420587], [9.113761, 45.416091], [9.109264, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.420587], [9.109264, 45.425084], [9.113761, 45.425084], [9.113761, 45.420587], [9.109264, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.425084], [9.109264, 45.42958], [9.113761, 45.42958], [9.113761, 45.425084], [9.109264, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.42958], [9.109264, 45.434077], [9.113761, 45.434077], [9.113761, 45.42958], [9.109264, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 16, "stroke": "#cce7ff", "fill": "#cce7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.434077], [9.109264, 45.438574], [9.113761, 45.438574], [9.113761, 45.434077], [9.109264, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 16, "stroke": "#cce7ff", "fill": "#cce7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.438574], [9.109264, 45.44307], [9.113761, 45.44307], [9.113761, 45.438574], [9.109264, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.44307], [9.109264, 45.447567], [9.113761, 45.447567], [9.113761, 45.44307], [9.109264, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.447567], [9.109264, 45.452063], [9.113761, 45.452063], [9.113761, 45.447567], [9.109264, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.452063], [9.109264, 45.45656], [9.113761, 45.45656], [9.113761, 45.452063], [9.109264, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.45656], [9.109264, 45.461057], [9.113761, 45.461057], [9.113761, 45.45656], [9.109264, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.461057], [9.109264, 45.465553], [9.113761, 45.465553], [9.113761, 45.461057], [9.109264, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.465553], [9.109264, 45.47005], [9.113761, 45.47005], [9.113761, 45.465553], [9.109264, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.47005], [9.109264, 45.474547], [9.113761, 45.474547], [9.113761, 45.47005], [9.109264, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.474547], [9.109264, 45.479043], [9.113761, 45.479043], [9.113761, 45.474547], [9.109264, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.479043], [9.109264, 45.48354], [9.113761, 45.48354], [9.113761, 45.479043], [9.109264, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.48354], [9.109264, 45.488036], [9.113761, 45.488036], [9.113761, 45.48354], [9.109264, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.488036], [9.109264, 45.492533], [9.113761, 45.492533], [9.113761, 45.488036], [9.109264, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.492533], [9.109264, 45.49703], [9.113761, 45.49703], [9.113761, 45.492533], [9.109264, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.49703], [9.109264, 45.501526], [9.113761, 45.501526], [9.113761, 45.49703], [9.109264, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.501526], [9.109264, 45.506023], [9.113761, 45.506023], [9.113761, 45.501526], [9.109264, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.506023], [9.109264, 45.510519], [9.113761, 45.510519], [9.113761, 45.506023], [9.109264, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.510519], [9.109264, 45.515016], [9.113761, 45.515016], [9.113761, 45.510519], [9.109264, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.515016], [9.109264, 45.519513], [9.113761, 45.519513], [9.113761, 45.515016], [9.109264, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.519513], [9.109264, 45.524009], [9.113761, 45.524009], [9.113761, 45.519513], [9.109264, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.524009], [9.109264, 45.528506], [9.113761, 45.528506], [9.113761, 45.524009], [9.109264, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.528506], [9.109264, 45.533002], [9.113761, 45.533002], [9.113761, 45.528506], [9.109264, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.533002], [9.109264, 45.537499], [9.113761, 45.537499], [9.113761, 45.533002], [9.109264, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.537499], [9.109264, 45.541996], [9.113761, 45.541996], [9.113761, 45.537499], [9.109264, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.541996], [9.109264, 45.546492], [9.113761, 45.546492], [9.113761, 45.541996], [9.109264, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.546492], [9.109264, 45.550989], [9.113761, 45.550989], [9.113761, 45.546492], [9.109264, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.550989], [9.109264, 45.555485], [9.113761, 45.555485], [9.113761, 45.550989], [9.109264, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.555485], [9.109264, 45.559982], [9.113761, 45.559982], [9.113761, 45.555485], [9.109264, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.559982], [9.109264, 45.564479], [9.113761, 45.564479], [9.113761, 45.559982], [9.109264, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.564479], [9.109264, 45.568975], [9.113761, 45.568975], [9.113761, 45.564479], [9.109264, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.568975], [9.109264, 45.573472], [9.113761, 45.573472], [9.113761, 45.568975], [9.109264, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.573472], [9.109264, 45.577968], [9.113761, 45.577968], [9.113761, 45.573472], [9.109264, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.577968], [9.109264, 45.582465], [9.113761, 45.582465], [9.113761, 45.577968], [9.109264, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.582465], [9.109264, 45.586962], [9.113761, 45.586962], [9.113761, 45.582465], [9.109264, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.586962], [9.109264, 45.591458], [9.113761, 45.591458], [9.113761, 45.586962], [9.109264, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.591458], [9.109264, 45.595955], [9.113761, 45.595955], [9.113761, 45.591458], [9.109264, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.595955], [9.109264, 45.600451], [9.113761, 45.600451], [9.113761, 45.595955], [9.109264, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.600451], [9.109264, 45.604948], [9.113761, 45.604948], [9.113761, 45.600451], [9.109264, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.604948], [9.109264, 45.609445], [9.113761, 45.609445], [9.113761, 45.604948], [9.109264, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.609445], [9.109264, 45.613941], [9.113761, 45.613941], [9.113761, 45.609445], [9.109264, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.613941], [9.109264, 45.618438], [9.113761, 45.618438], [9.113761, 45.613941], [9.109264, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.618438], [9.109264, 45.622934], [9.113761, 45.622934], [9.113761, 45.618438], [9.109264, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.622934], [9.109264, 45.627431], [9.113761, 45.627431], [9.113761, 45.622934], [9.109264, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.627431], [9.109264, 45.631928], [9.113761, 45.631928], [9.113761, 45.627431], [9.109264, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.109264, 45.631928], [9.109264, 45.636424], [9.113761, 45.636424], [9.113761, 45.631928], [9.109264, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.339648], [9.113761, 45.344145], [9.118257, 45.344145], [9.118257, 45.339648], [9.113761, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.344145], [9.113761, 45.348642], [9.118257, 45.348642], [9.118257, 45.344145], [9.113761, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.348642], [9.113761, 45.353138], [9.118257, 45.353138], [9.118257, 45.348642], [9.113761, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.353138], [9.113761, 45.357635], [9.118257, 45.357635], [9.118257, 45.353138], [9.113761, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.357635], [9.113761, 45.362131], [9.118257, 45.362131], [9.118257, 45.357635], [9.113761, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.362131], [9.113761, 45.366628], [9.118257, 45.366628], [9.118257, 45.362131], [9.113761, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.366628], [9.113761, 45.371125], [9.118257, 45.371125], [9.118257, 45.366628], [9.113761, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.371125], [9.113761, 45.375621], [9.118257, 45.375621], [9.118257, 45.371125], [9.113761, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.375621], [9.113761, 45.380118], [9.118257, 45.380118], [9.118257, 45.375621], [9.113761, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.380118], [9.113761, 45.384614], [9.118257, 45.384614], [9.118257, 45.380118], [9.113761, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.384614], [9.113761, 45.389111], [9.118257, 45.389111], [9.118257, 45.384614], [9.113761, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.389111], [9.113761, 45.393608], [9.118257, 45.393608], [9.118257, 45.389111], [9.113761, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.393608], [9.113761, 45.398104], [9.118257, 45.398104], [9.118257, 45.393608], [9.113761, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.398104], [9.113761, 45.402601], [9.118257, 45.402601], [9.118257, 45.398104], [9.113761, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.402601], [9.113761, 45.407097], [9.118257, 45.407097], [9.118257, 45.402601], [9.113761, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.407097], [9.113761, 45.411594], [9.118257, 45.411594], [9.118257, 45.407097], [9.113761, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.411594], [9.113761, 45.416091], [9.118257, 45.416091], [9.118257, 45.411594], [9.113761, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.416091], [9.113761, 45.420587], [9.118257, 45.420587], [9.118257, 45.416091], [9.113761, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.420587], [9.113761, 45.425084], [9.118257, 45.425084], [9.118257, 45.420587], [9.113761, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.425084], [9.113761, 45.42958], [9.118257, 45.42958], [9.118257, 45.425084], [9.113761, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.42958], [9.113761, 45.434077], [9.118257, 45.434077], [9.118257, 45.42958], [9.113761, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 15, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.434077], [9.113761, 45.438574], [9.118257, 45.438574], [9.118257, 45.434077], [9.113761, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 14, "stroke": "#e0f0ff", "fill": "#e0f0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.438574], [9.113761, 45.44307], [9.118257, 45.44307], [9.118257, 45.438574], [9.113761, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.44307], [9.113761, 45.447567], [9.118257, 45.447567], [9.118257, 45.44307], [9.113761, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.447567], [9.113761, 45.452063], [9.118257, 45.452063], [9.118257, 45.447567], [9.113761, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.452063], [9.113761, 45.45656], [9.118257, 45.45656], [9.118257, 45.452063], [9.113761, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.45656], [9.113761, 45.461057], [9.118257, 45.461057], [9.118257, 45.45656], [9.113761, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.461057], [9.113761, 45.465553], [9.118257, 45.465553], [9.118257, 45.461057], [9.113761, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.465553], [9.113761, 45.47005], [9.118257, 45.47005], [9.118257, 45.465553], [9.113761, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.47005], [9.113761, 45.474547], [9.118257, 45.474547], [9.118257, 45.47005], [9.113761, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.474547], [9.113761, 45.479043], [9.118257, 45.479043], [9.118257, 45.474547], [9.113761, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.479043], [9.113761, 45.48354], [9.118257, 45.48354], [9.118257, 45.479043], [9.113761, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.48354], [9.113761, 45.488036], [9.118257, 45.488036], [9.118257, 45.48354], [9.113761, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.488036], [9.113761, 45.492533], [9.118257, 45.492533], [9.118257, 45.488036], [9.113761, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.492533], [9.113761, 45.49703], [9.118257, 45.49703], [9.118257, 45.492533], [9.113761, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.49703], [9.113761, 45.501526], [9.118257, 45.501526], [9.118257, 45.49703], [9.113761, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.501526], [9.113761, 45.506023], [9.118257, 45.506023], [9.118257, 45.501526], [9.113761, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.506023], [9.113761, 45.510519], [9.118257, 45.510519], [9.118257, 45.506023], [9.113761, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.510519], [9.113761, 45.515016], [9.118257, 45.515016], [9.118257, 45.510519], [9.113761, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.515016], [9.113761, 45.519513], [9.118257, 45.519513], [9.118257, 45.515016], [9.113761, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.519513], [9.113761, 45.524009], [9.118257, 45.524009], [9.118257, 45.519513], [9.113761, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.524009], [9.113761, 45.528506], [9.118257, 45.528506], [9.118257, 45.524009], [9.113761, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.528506], [9.113761, 45.533002], [9.118257, 45.533002], [9.118257, 45.528506], [9.113761, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.533002], [9.113761, 45.537499], [9.118257, 45.537499], [9.118257, 45.533002], [9.113761, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.537499], [9.113761, 45.541996], [9.118257, 45.541996], [9.118257, 45.537499], [9.113761, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.541996], [9.113761, 45.546492], [9.118257, 45.546492], [9.118257, 45.541996], [9.113761, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.546492], [9.113761, 45.550989], [9.118257, 45.550989], [9.118257, 45.546492], [9.113761, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.550989], [9.113761, 45.555485], [9.118257, 45.555485], [9.118257, 45.550989], [9.113761, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.555485], [9.113761, 45.559982], [9.118257, 45.559982], [9.118257, 45.555485], [9.113761, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.559982], [9.113761, 45.564479], [9.118257, 45.564479], [9.118257, 45.559982], [9.113761, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.564479], [9.113761, 45.568975], [9.118257, 45.568975], [9.118257, 45.564479], [9.113761, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.568975], [9.113761, 45.573472], [9.118257, 45.573472], [9.118257, 45.568975], [9.113761, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.573472], [9.113761, 45.577968], [9.118257, 45.577968], [9.118257, 45.573472], [9.113761, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.577968], [9.113761, 45.582465], [9.118257, 45.582465], [9.118257, 45.577968], [9.113761, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.582465], [9.113761, 45.586962], [9.118257, 45.586962], [9.118257, 45.582465], [9.113761, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.586962], [9.113761, 45.591458], [9.118257, 45.591458], [9.118257, 45.586962], [9.113761, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.591458], [9.113761, 45.595955], [9.118257, 45.595955], [9.118257, 45.591458], [9.113761, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.595955], [9.113761, 45.600451], [9.118257, 45.600451], [9.118257, 45.595955], [9.113761, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.600451], [9.113761, 45.604948], [9.118257, 45.604948], [9.118257, 45.600451], [9.113761, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.604948], [9.113761, 45.609445], [9.118257, 45.609445], [9.118257, 45.604948], [9.113761, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.609445], [9.113761, 45.613941], [9.118257, 45.613941], [9.118257, 45.609445], [9.113761, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.613941], [9.113761, 45.618438], [9.118257, 45.618438], [9.118257, 45.613941], [9.113761, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.618438], [9.113761, 45.622934], [9.118257, 45.622934], [9.118257, 45.618438], [9.113761, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.622934], [9.113761, 45.627431], [9.118257, 45.627431], [9.118257, 45.622934], [9.113761, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.627431], [9.113761, 45.631928], [9.118257, 45.631928], [9.118257, 45.627431], [9.113761, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.113761, 45.631928], [9.113761, 45.636424], [9.118257, 45.636424], [9.118257, 45.631928], [9.113761, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.339648], [9.118257, 45.344145], [9.122754, 45.344145], [9.122754, 45.339648], [9.118257, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.344145], [9.118257, 45.348642], [9.122754, 45.348642], [9.122754, 45.344145], [9.118257, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.348642], [9.118257, 45.353138], [9.122754, 45.353138], [9.122754, 45.348642], [9.118257, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.353138], [9.118257, 45.357635], [9.122754, 45.357635], [9.122754, 45.353138], [9.118257, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.357635], [9.118257, 45.362131], [9.122754, 45.362131], [9.122754, 45.357635], [9.118257, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.362131], [9.118257, 45.366628], [9.122754, 45.366628], [9.122754, 45.362131], [9.118257, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.366628], [9.118257, 45.371125], [9.122754, 45.371125], [9.122754, 45.366628], [9.118257, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.371125], [9.118257, 45.375621], [9.122754, 45.375621], [9.122754, 45.371125], [9.118257, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.375621], [9.118257, 45.380118], [9.122754, 45.380118], [9.122754, 45.375621], [9.118257, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.380118], [9.118257, 45.384614], [9.122754, 45.384614], [9.122754, 45.380118], [9.118257, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.384614], [9.118257, 45.389111], [9.122754, 45.389111], [9.122754, 45.384614], [9.118257, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.389111], [9.118257, 45.393608], [9.122754, 45.393608], [9.122754, 45.389111], [9.118257, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.393608], [9.118257, 45.398104], [9.122754, 45.398104], [9.122754, 45.393608], [9.118257, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.398104], [9.118257, 45.402601], [9.122754, 45.402601], [9.122754, 45.398104], [9.118257, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.402601], [9.118257, 45.407097], [9.122754, 45.407097], [9.122754, 45.402601], [9.118257, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.407097], [9.118257, 45.411594], [9.122754, 45.411594], [9.122754, 45.407097], [9.118257, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.411594], [9.118257, 45.416091], [9.122754, 45.416091], [9.122754, 45.411594], [9.118257, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.416091], [9.118257, 45.420587], [9.122754, 45.420587], [9.122754, 45.416091], [9.118257, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.420587], [9.118257, 45.425084], [9.122754, 45.425084], [9.122754, 45.420587], [9.118257, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.425084], [9.118257, 45.42958], [9.122754, 45.42958], [9.122754, 45.425084], [9.118257, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.42958], [9.118257, 45.434077], [9.122754, 45.434077], [9.122754, 45.42958], [9.118257, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 16, "stroke": "#cce7ff", "fill": "#cce7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.434077], [9.118257, 45.438574], [9.122754, 45.438574], [9.122754, 45.434077], [9.118257, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 15, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.438574], [9.118257, 45.44307], [9.122754, 45.44307], [9.122754, 45.438574], [9.118257, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.44307], [9.118257, 45.447567], [9.122754, 45.447567], [9.122754, 45.44307], [9.118257, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.447567], [9.118257, 45.452063], [9.122754, 45.452063], [9.122754, 45.447567], [9.118257, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.452063], [9.118257, 45.45656], [9.122754, 45.45656], [9.122754, 45.452063], [9.118257, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.45656], [9.118257, 45.461057], [9.122754, 45.461057], [9.122754, 45.45656], [9.118257, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.461057], [9.118257, 45.465553], [9.122754, 45.465553], [9.122754, 45.461057], [9.118257, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.465553], [9.118257, 45.47005], [9.122754, 45.47005], [9.122754, 45.465553], [9.118257, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.47005], [9.118257, 45.474547], [9.122754, 45.474547], [9.122754, 45.47005], [9.118257, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.474547], [9.118257, 45.479043], [9.122754, 45.479043], [9.122754, 45.474547], [9.118257, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.479043], [9.118257, 45.48354], [9.122754, 45.48354], [9.122754, 45.479043], [9.118257, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.48354], [9.118257, 45.488036], [9.122754, 45.488036], [9.122754, 45.48354], [9.118257, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.488036], [9.118257, 45.492533], [9.122754, 45.492533], [9.122754, 45.488036], [9.118257, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.492533], [9.118257, 45.49703], [9.122754, 45.49703], [9.122754, 45.492533], [9.118257, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.49703], [9.118257, 45.501526], [9.122754, 45.501526], [9.122754, 45.49703], [9.118257, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.501526], [9.118257, 45.506023], [9.122754, 45.506023], [9.122754, 45.501526], [9.118257, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.506023], [9.118257, 45.510519], [9.122754, 45.510519], [9.122754, 45.506023], [9.118257, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.510519], [9.118257, 45.515016], [9.122754, 45.515016], [9.122754, 45.510519], [9.118257, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.515016], [9.118257, 45.519513], [9.122754, 45.519513], [9.122754, 45.515016], [9.118257, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.519513], [9.118257, 45.524009], [9.122754, 45.524009], [9.122754, 45.519513], [9.118257, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.524009], [9.118257, 45.528506], [9.122754, 45.528506], [9.122754, 45.524009], [9.118257, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.528506], [9.118257, 45.533002], [9.122754, 45.533002], [9.122754, 45.528506], [9.118257, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.533002], [9.118257, 45.537499], [9.122754, 45.537499], [9.122754, 45.533002], [9.118257, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.537499], [9.118257, 45.541996], [9.122754, 45.541996], [9.122754, 45.537499], [9.118257, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.541996], [9.118257, 45.546492], [9.122754, 45.546492], [9.122754, 45.541996], [9.118257, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.546492], [9.118257, 45.550989], [9.122754, 45.550989], [9.122754, 45.546492], [9.118257, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.550989], [9.118257, 45.555485], [9.122754, 45.555485], [9.122754, 45.550989], [9.118257, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.555485], [9.118257, 45.559982], [9.122754, 45.559982], [9.122754, 45.555485], [9.118257, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.559982], [9.118257, 45.564479], [9.122754, 45.564479], [9.122754, 45.559982], [9.118257, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.564479], [9.118257, 45.568975], [9.122754, 45.568975], [9.122754, 45.564479], [9.118257, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.568975], [9.118257, 45.573472], [9.122754, 45.573472], [9.122754, 45.568975], [9.118257, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.573472], [9.118257, 45.577968], [9.122754, 45.577968], [9.122754, 45.573472], [9.118257, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.577968], [9.118257, 45.582465], [9.122754, 45.582465], [9.122754, 45.577968], [9.118257, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.582465], [9.118257, 45.586962], [9.122754, 45.586962], [9.122754, 45.582465], [9.118257, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.586962], [9.118257, 45.591458], [9.122754, 45.591458], [9.122754, 45.586962], [9.118257, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.591458], [9.118257, 45.595955], [9.122754, 45.595955], [9.122754, 45.591458], [9.118257, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.595955], [9.118257, 45.600451], [9.122754, 45.600451], [9.122754, 45.595955], [9.118257, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.600451], [9.118257, 45.604948], [9.122754, 45.604948], [9.122754, 45.600451], [9.118257, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.604948], [9.118257, 45.609445], [9.122754, 45.609445], [9.122754, 45.604948], [9.118257, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.609445], [9.118257, 45.613941], [9.122754, 45.613941], [9.122754, 45.609445], [9.118257, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.613941], [9.118257, 45.618438], [9.122754, 45.618438], [9.122754, 45.613941], [9.118257, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.618438], [9.118257, 45.622934], [9.122754, 45.622934], [9.122754, 45.618438], [9.118257, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.622934], [9.118257, 45.627431], [9.122754, 45.627431], [9.122754, 45.622934], [9.118257, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.627431], [9.118257, 45.631928], [9.122754, 45.631928], [9.122754, 45.627431], [9.118257, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.118257, 45.631928], [9.118257, 45.636424], [9.122754, 45.636424], [9.122754, 45.631928], [9.118257, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.339648], [9.122754, 45.344145], [9.12725, 45.344145], [9.12725, 45.339648], [9.122754, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.344145], [9.122754, 45.348642], [9.12725, 45.348642], [9.12725, 45.344145], [9.122754, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.348642], [9.122754, 45.353138], [9.12725, 45.353138], [9.12725, 45.348642], [9.122754, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.353138], [9.122754, 45.357635], [9.12725, 45.357635], [9.12725, 45.353138], [9.122754, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.357635], [9.122754, 45.362131], [9.12725, 45.362131], [9.12725, 45.357635], [9.122754, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.362131], [9.122754, 45.366628], [9.12725, 45.366628], [9.12725, 45.362131], [9.122754, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.366628], [9.122754, 45.371125], [9.12725, 45.371125], [9.12725, 45.366628], [9.122754, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.371125], [9.122754, 45.375621], [9.12725, 45.375621], [9.12725, 45.371125], [9.122754, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.375621], [9.122754, 45.380118], [9.12725, 45.380118], [9.12725, 45.375621], [9.122754, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.380118], [9.122754, 45.384614], [9.12725, 45.384614], [9.12725, 45.380118], [9.122754, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.384614], [9.122754, 45.389111], [9.12725, 45.389111], [9.12725, 45.384614], [9.122754, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.389111], [9.122754, 45.393608], [9.12725, 45.393608], [9.12725, 45.389111], [9.122754, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.393608], [9.122754, 45.398104], [9.12725, 45.398104], [9.12725, 45.393608], [9.122754, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.398104], [9.122754, 45.402601], [9.12725, 45.402601], [9.12725, 45.398104], [9.122754, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.402601], [9.122754, 45.407097], [9.12725, 45.407097], [9.12725, 45.402601], [9.122754, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.407097], [9.122754, 45.411594], [9.12725, 45.411594], [9.12725, 45.407097], [9.122754, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.411594], [9.122754, 45.416091], [9.12725, 45.416091], [9.12725, 45.411594], [9.122754, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.416091], [9.122754, 45.420587], [9.12725, 45.420587], [9.12725, 45.416091], [9.122754, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.420587], [9.122754, 45.425084], [9.12725, 45.425084], [9.12725, 45.420587], [9.122754, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.425084], [9.122754, 45.42958], [9.12725, 45.42958], [9.12725, 45.425084], [9.122754, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.42958], [9.122754, 45.434077], [9.12725, 45.434077], [9.12725, 45.42958], [9.122754, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.434077], [9.122754, 45.438574], [9.12725, 45.438574], [9.12725, 45.434077], [9.122754, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.438574], [9.122754, 45.44307], [9.12725, 45.44307], [9.12725, 45.438574], [9.122754, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.44307], [9.122754, 45.447567], [9.12725, 45.447567], [9.12725, 45.44307], [9.122754, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.447567], [9.122754, 45.452063], [9.12725, 45.452063], [9.12725, 45.447567], [9.122754, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.452063], [9.122754, 45.45656], [9.12725, 45.45656], [9.12725, 45.452063], [9.122754, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.45656], [9.122754, 45.461057], [9.12725, 45.461057], [9.12725, 45.45656], [9.122754, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.461057], [9.122754, 45.465553], [9.12725, 45.465553], [9.12725, 45.461057], [9.122754, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.465553], [9.122754, 45.47005], [9.12725, 45.47005], [9.12725, 45.465553], [9.122754, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.47005], [9.122754, 45.474547], [9.12725, 45.474547], [9.12725, 45.47005], [9.122754, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.474547], [9.122754, 45.479043], [9.12725, 45.479043], [9.12725, 45.474547], [9.122754, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.479043], [9.122754, 45.48354], [9.12725, 45.48354], [9.12725, 45.479043], [9.122754, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.48354], [9.122754, 45.488036], [9.12725, 45.488036], [9.12725, 45.48354], [9.122754, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.488036], [9.122754, 45.492533], [9.12725, 45.492533], [9.12725, 45.488036], [9.122754, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.492533], [9.122754, 45.49703], [9.12725, 45.49703], [9.12725, 45.492533], [9.122754, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.49703], [9.122754, 45.501526], [9.12725, 45.501526], [9.12725, 45.49703], [9.122754, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.501526], [9.122754, 45.506023], [9.12725, 45.506023], [9.12725, 45.501526], [9.122754, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.506023], [9.122754, 45.510519], [9.12725, 45.510519], [9.12725, 45.506023], [9.122754, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.510519], [9.122754, 45.515016], [9.12725, 45.515016], [9.12725, 45.510519], [9.122754, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.515016], [9.122754, 45.519513], [9.12725, 45.519513], [9.12725, 45.515016], [9.122754, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.519513], [9.122754, 45.524009], [9.12725, 45.524009], [9.12725, 45.519513], [9.122754, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.524009], [9.122754, 45.528506], [9.12725, 45.528506], [9.12725, 45.524009], [9.122754, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.528506], [9.122754, 45.533002], [9.12725, 45.533002], [9.12725, 45.528506], [9.122754, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.533002], [9.122754, 45.537499], [9.12725, 45.537499], [9.12725, 45.533002], [9.122754, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.537499], [9.122754, 45.541996], [9.12725, 45.541996], [9.12725, 45.537499], [9.122754, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.541996], [9.122754, 45.546492], [9.12725, 45.546492], [9.12725, 45.541996], [9.122754, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.546492], [9.122754, 45.550989], [9.12725, 45.550989], [9.12725, 45.546492], [9.122754, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.550989], [9.122754, 45.555485], [9.12725, 45.555485], [9.12725, 45.550989], [9.122754, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.555485], [9.122754, 45.559982], [9.12725, 45.559982], [9.12725, 45.555485], [9.122754, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.559982], [9.122754, 45.564479], [9.12725, 45.564479], [9.12725, 45.559982], [9.122754, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.564479], [9.122754, 45.568975], [9.12725, 45.568975], [9.12725, 45.564479], [9.122754, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.568975], [9.122754, 45.573472], [9.12725, 45.573472], [9.12725, 45.568975], [9.122754, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.573472], [9.122754, 45.577968], [9.12725, 45.577968], [9.12725, 45.573472], [9.122754, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.577968], [9.122754, 45.582465], [9.12725, 45.582465], [9.12725, 45.577968], [9.122754, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.582465], [9.122754, 45.586962], [9.12725, 45.586962], [9.12725, 45.582465], [9.122754, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.586962], [9.122754, 45.591458], [9.12725, 45.591458], [9.12725, 45.586962], [9.122754, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.591458], [9.122754, 45.595955], [9.12725, 45.595955], [9.12725, 45.591458], [9.122754, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.595955], [9.122754, 45.600451], [9.12725, 45.600451], [9.12725, 45.595955], [9.122754, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.600451], [9.122754, 45.604948], [9.12725, 45.604948], [9.12725, 45.600451], [9.122754, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.604948], [9.122754, 45.609445], [9.12725, 45.609445], [9.12725, 45.604948], [9.122754, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.609445], [9.122754, 45.613941], [9.12725, 45.613941], [9.12725, 45.609445], [9.122754, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.613941], [9.122754, 45.618438], [9.12725, 45.618438], [9.12725, 45.613941], [9.122754, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.618438], [9.122754, 45.622934], [9.12725, 45.622934], [9.12725, 45.618438], [9.122754, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.622934], [9.122754, 45.627431], [9.12725, 45.627431], [9.12725, 45.622934], [9.122754, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.627431], [9.122754, 45.631928], [9.12725, 45.631928], [9.12725, 45.627431], [9.122754, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122754, 45.631928], [9.122754, 45.636424], [9.12725, 45.636424], [9.12725, 45.631928], [9.122754, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.339648], [9.12725, 45.344145], [9.131747, 45.344145], [9.131747, 45.339648], [9.12725, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.344145], [9.12725, 45.348642], [9.131747, 45.348642], [9.131747, 45.344145], [9.12725, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.348642], [9.12725, 45.353138], [9.131747, 45.353138], [9.131747, 45.348642], [9.12725, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.353138], [9.12725, 45.357635], [9.131747, 45.357635], [9.131747, 45.353138], [9.12725, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.357635], [9.12725, 45.362131], [9.131747, 45.362131], [9.131747, 45.357635], [9.12725, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.362131], [9.12725, 45.366628], [9.131747, 45.366628], [9.131747, 45.362131], [9.12725, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.366628], [9.12725, 45.371125], [9.131747, 45.371125], [9.131747, 45.366628], [9.12725, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.371125], [9.12725, 45.375621], [9.131747, 45.375621], [9.131747, 45.371125], [9.12725, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.375621], [9.12725, 45.380118], [9.131747, 45.380118], [9.131747, 45.375621], [9.12725, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.380118], [9.12725, 45.384614], [9.131747, 45.384614], [9.131747, 45.380118], [9.12725, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.384614], [9.12725, 45.389111], [9.131747, 45.389111], [9.131747, 45.384614], [9.12725, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.389111], [9.12725, 45.393608], [9.131747, 45.393608], [9.131747, 45.389111], [9.12725, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.393608], [9.12725, 45.398104], [9.131747, 45.398104], [9.131747, 45.393608], [9.12725, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.398104], [9.12725, 45.402601], [9.131747, 45.402601], [9.131747, 45.398104], [9.12725, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.402601], [9.12725, 45.407097], [9.131747, 45.407097], [9.131747, 45.402601], [9.12725, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.407097], [9.12725, 45.411594], [9.131747, 45.411594], [9.131747, 45.407097], [9.12725, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.411594], [9.12725, 45.416091], [9.131747, 45.416091], [9.131747, 45.411594], [9.12725, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.416091], [9.12725, 45.420587], [9.131747, 45.420587], [9.131747, 45.416091], [9.12725, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.420587], [9.12725, 45.425084], [9.131747, 45.425084], [9.131747, 45.420587], [9.12725, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.425084], [9.12725, 45.42958], [9.131747, 45.42958], [9.131747, 45.425084], [9.12725, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.42958], [9.12725, 45.434077], [9.131747, 45.434077], [9.131747, 45.42958], [9.12725, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.434077], [9.12725, 45.438574], [9.131747, 45.438574], [9.131747, 45.434077], [9.12725, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.438574], [9.12725, 45.44307], [9.131747, 45.44307], [9.131747, 45.438574], [9.12725, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.44307], [9.12725, 45.447567], [9.131747, 45.447567], [9.131747, 45.44307], [9.12725, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.447567], [9.12725, 45.452063], [9.131747, 45.452063], [9.131747, 45.447567], [9.12725, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.452063], [9.12725, 45.45656], [9.131747, 45.45656], [9.131747, 45.452063], [9.12725, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.45656], [9.12725, 45.461057], [9.131747, 45.461057], [9.131747, 45.45656], [9.12725, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.461057], [9.12725, 45.465553], [9.131747, 45.465553], [9.131747, 45.461057], [9.12725, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.465553], [9.12725, 45.47005], [9.131747, 45.47005], [9.131747, 45.465553], [9.12725, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.47005], [9.12725, 45.474547], [9.131747, 45.474547], [9.131747, 45.47005], [9.12725, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.474547], [9.12725, 45.479043], [9.131747, 45.479043], [9.131747, 45.474547], [9.12725, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.479043], [9.12725, 45.48354], [9.131747, 45.48354], [9.131747, 45.479043], [9.12725, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.48354], [9.12725, 45.488036], [9.131747, 45.488036], [9.131747, 45.48354], [9.12725, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.488036], [9.12725, 45.492533], [9.131747, 45.492533], [9.131747, 45.488036], [9.12725, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.492533], [9.12725, 45.49703], [9.131747, 45.49703], [9.131747, 45.492533], [9.12725, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.49703], [9.12725, 45.501526], [9.131747, 45.501526], [9.131747, 45.49703], [9.12725, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.501526], [9.12725, 45.506023], [9.131747, 45.506023], [9.131747, 45.501526], [9.12725, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.506023], [9.12725, 45.510519], [9.131747, 45.510519], [9.131747, 45.506023], [9.12725, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.510519], [9.12725, 45.515016], [9.131747, 45.515016], [9.131747, 45.510519], [9.12725, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.515016], [9.12725, 45.519513], [9.131747, 45.519513], [9.131747, 45.515016], [9.12725, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.519513], [9.12725, 45.524009], [9.131747, 45.524009], [9.131747, 45.519513], [9.12725, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.524009], [9.12725, 45.528506], [9.131747, 45.528506], [9.131747, 45.524009], [9.12725, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.528506], [9.12725, 45.533002], [9.131747, 45.533002], [9.131747, 45.528506], [9.12725, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.533002], [9.12725, 45.537499], [9.131747, 45.537499], [9.131747, 45.533002], [9.12725, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.537499], [9.12725, 45.541996], [9.131747, 45.541996], [9.131747, 45.537499], [9.12725, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.541996], [9.12725, 45.546492], [9.131747, 45.546492], [9.131747, 45.541996], [9.12725, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.546492], [9.12725, 45.550989], [9.131747, 45.550989], [9.131747, 45.546492], [9.12725, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.550989], [9.12725, 45.555485], [9.131747, 45.555485], [9.131747, 45.550989], [9.12725, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.555485], [9.12725, 45.559982], [9.131747, 45.559982], [9.131747, 45.555485], [9.12725, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.559982], [9.12725, 45.564479], [9.131747, 45.564479], [9.131747, 45.559982], [9.12725, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.564479], [9.12725, 45.568975], [9.131747, 45.568975], [9.131747, 45.564479], [9.12725, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.568975], [9.12725, 45.573472], [9.131747, 45.573472], [9.131747, 45.568975], [9.12725, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.573472], [9.12725, 45.577968], [9.131747, 45.577968], [9.131747, 45.573472], [9.12725, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.577968], [9.12725, 45.582465], [9.131747, 45.582465], [9.131747, 45.577968], [9.12725, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.582465], [9.12725, 45.586962], [9.131747, 45.586962], [9.131747, 45.582465], [9.12725, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.586962], [9.12725, 45.591458], [9.131747, 45.591458], [9.131747, 45.586962], [9.12725, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.591458], [9.12725, 45.595955], [9.131747, 45.595955], [9.131747, 45.591458], [9.12725, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.595955], [9.12725, 45.600451], [9.131747, 45.600451], [9.131747, 45.595955], [9.12725, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.600451], [9.12725, 45.604948], [9.131747, 45.604948], [9.131747, 45.600451], [9.12725, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.604948], [9.12725, 45.609445], [9.131747, 45.609445], [9.131747, 45.604948], [9.12725, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.609445], [9.12725, 45.613941], [9.131747, 45.613941], [9.131747, 45.609445], [9.12725, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.613941], [9.12725, 45.618438], [9.131747, 45.618438], [9.131747, 45.613941], [9.12725, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.618438], [9.12725, 45.622934], [9.131747, 45.622934], [9.131747, 45.618438], [9.12725, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.622934], [9.12725, 45.627431], [9.131747, 45.627431], [9.131747, 45.622934], [9.12725, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.627431], [9.12725, 45.631928], [9.131747, 45.631928], [9.131747, 45.627431], [9.12725, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.12725, 45.631928], [9.12725, 45.636424], [9.131747, 45.636424], [9.131747, 45.631928], [9.12725, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.339648], [9.131747, 45.344145], [9.136244, 45.344145], [9.136244, 45.339648], [9.131747, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.344145], [9.131747, 45.348642], [9.136244, 45.348642], [9.136244, 45.344145], [9.131747, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.348642], [9.131747, 45.353138], [9.136244, 45.353138], [9.136244, 45.348642], [9.131747, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.353138], [9.131747, 45.357635], [9.136244, 45.357635], [9.136244, 45.353138], [9.131747, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.357635], [9.131747, 45.362131], [9.136244, 45.362131], [9.136244, 45.357635], [9.131747, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.362131], [9.131747, 45.366628], [9.136244, 45.366628], [9.136244, 45.362131], [9.131747, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.366628], [9.131747, 45.371125], [9.136244, 45.371125], [9.136244, 45.366628], [9.131747, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.371125], [9.131747, 45.375621], [9.136244, 45.375621], [9.136244, 45.371125], [9.131747, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.375621], [9.131747, 45.380118], [9.136244, 45.380118], [9.136244, 45.375621], [9.131747, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.380118], [9.131747, 45.384614], [9.136244, 45.384614], [9.136244, 45.380118], [9.131747, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.384614], [9.131747, 45.389111], [9.136244, 45.389111], [9.136244, 45.384614], [9.131747, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.389111], [9.131747, 45.393608], [9.136244, 45.393608], [9.136244, 45.389111], [9.131747, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.393608], [9.131747, 45.398104], [9.136244, 45.398104], [9.136244, 45.393608], [9.131747, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.398104], [9.131747, 45.402601], [9.136244, 45.402601], [9.136244, 45.398104], [9.131747, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.402601], [9.131747, 45.407097], [9.136244, 45.407097], [9.136244, 45.402601], [9.131747, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.407097], [9.131747, 45.411594], [9.136244, 45.411594], [9.136244, 45.407097], [9.131747, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.411594], [9.131747, 45.416091], [9.136244, 45.416091], [9.136244, 45.411594], [9.131747, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.416091], [9.131747, 45.420587], [9.136244, 45.420587], [9.136244, 45.416091], [9.131747, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.420587], [9.131747, 45.425084], [9.136244, 45.425084], [9.136244, 45.420587], [9.131747, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.425084], [9.131747, 45.42958], [9.136244, 45.42958], [9.136244, 45.425084], [9.131747, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.42958], [9.131747, 45.434077], [9.136244, 45.434077], [9.136244, 45.42958], [9.131747, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.434077], [9.131747, 45.438574], [9.136244, 45.438574], [9.136244, 45.434077], [9.131747, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.438574], [9.131747, 45.44307], [9.136244, 45.44307], [9.136244, 45.438574], [9.131747, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.44307], [9.131747, 45.447567], [9.136244, 45.447567], [9.136244, 45.44307], [9.131747, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.447567], [9.131747, 45.452063], [9.136244, 45.452063], [9.136244, 45.447567], [9.131747, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.452063], [9.131747, 45.45656], [9.136244, 45.45656], [9.136244, 45.452063], [9.131747, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.45656], [9.131747, 45.461057], [9.136244, 45.461057], [9.136244, 45.45656], [9.131747, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.461057], [9.131747, 45.465553], [9.136244, 45.465553], [9.136244, 45.461057], [9.131747, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.465553], [9.131747, 45.47005], [9.136244, 45.47005], [9.136244, 45.465553], [9.131747, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.47005], [9.131747, 45.474547], [9.136244, 45.474547], [9.136244, 45.47005], [9.131747, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.474547], [9.131747, 45.479043], [9.136244, 45.479043], [9.136244, 45.474547], [9.131747, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.479043], [9.131747, 45.48354], [9.136244, 45.48354], [9.136244, 45.479043], [9.131747, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.48354], [9.131747, 45.488036], [9.136244, 45.488036], [9.136244, 45.48354], [9.131747, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.488036], [9.131747, 45.492533], [9.136244, 45.492533], [9.136244, 45.488036], [9.131747, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.492533], [9.131747, 45.49703], [9.136244, 45.49703], [9.136244, 45.492533], [9.131747, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.49703], [9.131747, 45.501526], [9.136244, 45.501526], [9.136244, 45.49703], [9.131747, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.501526], [9.131747, 45.506023], [9.136244, 45.506023], [9.136244, 45.501526], [9.131747, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.506023], [9.131747, 45.510519], [9.136244, 45.510519], [9.136244, 45.506023], [9.131747, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.510519], [9.131747, 45.515016], [9.136244, 45.515016], [9.136244, 45.510519], [9.131747, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.515016], [9.131747, 45.519513], [9.136244, 45.519513], [9.136244, 45.515016], [9.131747, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.519513], [9.131747, 45.524009], [9.136244, 45.524009], [9.136244, 45.519513], [9.131747, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.524009], [9.131747, 45.528506], [9.136244, 45.528506], [9.136244, 45.524009], [9.131747, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.528506], [9.131747, 45.533002], [9.136244, 45.533002], [9.136244, 45.528506], [9.131747, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.533002], [9.131747, 45.537499], [9.136244, 45.537499], [9.136244, 45.533002], [9.131747, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.537499], [9.131747, 45.541996], [9.136244, 45.541996], [9.136244, 45.537499], [9.131747, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.541996], [9.131747, 45.546492], [9.136244, 45.546492], [9.136244, 45.541996], [9.131747, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.546492], [9.131747, 45.550989], [9.136244, 45.550989], [9.136244, 45.546492], [9.131747, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.550989], [9.131747, 45.555485], [9.136244, 45.555485], [9.136244, 45.550989], [9.131747, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.555485], [9.131747, 45.559982], [9.136244, 45.559982], [9.136244, 45.555485], [9.131747, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.559982], [9.131747, 45.564479], [9.136244, 45.564479], [9.136244, 45.559982], [9.131747, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.564479], [9.131747, 45.568975], [9.136244, 45.568975], [9.136244, 45.564479], [9.131747, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.568975], [9.131747, 45.573472], [9.136244, 45.573472], [9.136244, 45.568975], [9.131747, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.573472], [9.131747, 45.577968], [9.136244, 45.577968], [9.136244, 45.573472], [9.131747, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.577968], [9.131747, 45.582465], [9.136244, 45.582465], [9.136244, 45.577968], [9.131747, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.582465], [9.131747, 45.586962], [9.136244, 45.586962], [9.136244, 45.582465], [9.131747, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.586962], [9.131747, 45.591458], [9.136244, 45.591458], [9.136244, 45.586962], [9.131747, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.591458], [9.131747, 45.595955], [9.136244, 45.595955], [9.136244, 45.591458], [9.131747, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.595955], [9.131747, 45.600451], [9.136244, 45.600451], [9.136244, 45.595955], [9.131747, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.600451], [9.131747, 45.604948], [9.136244, 45.604948], [9.136244, 45.600451], [9.131747, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.604948], [9.131747, 45.609445], [9.136244, 45.609445], [9.136244, 45.604948], [9.131747, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.609445], [9.131747, 45.613941], [9.136244, 45.613941], [9.136244, 45.609445], [9.131747, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.613941], [9.131747, 45.618438], [9.136244, 45.618438], [9.136244, 45.613941], [9.131747, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.618438], [9.131747, 45.622934], [9.136244, 45.622934], [9.136244, 45.618438], [9.131747, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.622934], [9.131747, 45.627431], [9.136244, 45.627431], [9.136244, 45.622934], [9.131747, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.627431], [9.131747, 45.631928], [9.136244, 45.631928], [9.136244, 45.627431], [9.131747, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.131747, 45.631928], [9.131747, 45.636424], [9.136244, 45.636424], [9.136244, 45.631928], [9.131747, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.339648], [9.136244, 45.344145], [9.14074, 45.344145], [9.14074, 45.339648], [9.136244, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.344145], [9.136244, 45.348642], [9.14074, 45.348642], [9.14074, 45.344145], [9.136244, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.348642], [9.136244, 45.353138], [9.14074, 45.353138], [9.14074, 45.348642], [9.136244, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.353138], [9.136244, 45.357635], [9.14074, 45.357635], [9.14074, 45.353138], [9.136244, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.357635], [9.136244, 45.362131], [9.14074, 45.362131], [9.14074, 45.357635], [9.136244, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.362131], [9.136244, 45.366628], [9.14074, 45.366628], [9.14074, 45.362131], [9.136244, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.366628], [9.136244, 45.371125], [9.14074, 45.371125], [9.14074, 45.366628], [9.136244, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.371125], [9.136244, 45.375621], [9.14074, 45.375621], [9.14074, 45.371125], [9.136244, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.375621], [9.136244, 45.380118], [9.14074, 45.380118], [9.14074, 45.375621], [9.136244, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.380118], [9.136244, 45.384614], [9.14074, 45.384614], [9.14074, 45.380118], [9.136244, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.384614], [9.136244, 45.389111], [9.14074, 45.389111], [9.14074, 45.384614], [9.136244, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.389111], [9.136244, 45.393608], [9.14074, 45.393608], [9.14074, 45.389111], [9.136244, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.393608], [9.136244, 45.398104], [9.14074, 45.398104], [9.14074, 45.393608], [9.136244, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.398104], [9.136244, 45.402601], [9.14074, 45.402601], [9.14074, 45.398104], [9.136244, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.402601], [9.136244, 45.407097], [9.14074, 45.407097], [9.14074, 45.402601], [9.136244, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.407097], [9.136244, 45.411594], [9.14074, 45.411594], [9.14074, 45.407097], [9.136244, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.411594], [9.136244, 45.416091], [9.14074, 45.416091], [9.14074, 45.411594], [9.136244, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.416091], [9.136244, 45.420587], [9.14074, 45.420587], [9.14074, 45.416091], [9.136244, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.420587], [9.136244, 45.425084], [9.14074, 45.425084], [9.14074, 45.420587], [9.136244, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.425084], [9.136244, 45.42958], [9.14074, 45.42958], [9.14074, 45.425084], [9.136244, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.42958], [9.136244, 45.434077], [9.14074, 45.434077], [9.14074, 45.42958], [9.136244, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.434077], [9.136244, 45.438574], [9.14074, 45.438574], [9.14074, 45.434077], [9.136244, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.438574], [9.136244, 45.44307], [9.14074, 45.44307], [9.14074, 45.438574], [9.136244, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.44307], [9.136244, 45.447567], [9.14074, 45.447567], [9.14074, 45.44307], [9.136244, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.447567], [9.136244, 45.452063], [9.14074, 45.452063], [9.14074, 45.447567], [9.136244, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.452063], [9.136244, 45.45656], [9.14074, 45.45656], [9.14074, 45.452063], [9.136244, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.45656], [9.136244, 45.461057], [9.14074, 45.461057], [9.14074, 45.45656], [9.136244, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.461057], [9.136244, 45.465553], [9.14074, 45.465553], [9.14074, 45.461057], [9.136244, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.465553], [9.136244, 45.47005], [9.14074, 45.47005], [9.14074, 45.465553], [9.136244, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.47005], [9.136244, 45.474547], [9.14074, 45.474547], [9.14074, 45.47005], [9.136244, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.474547], [9.136244, 45.479043], [9.14074, 45.479043], [9.14074, 45.474547], [9.136244, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.479043], [9.136244, 45.48354], [9.14074, 45.48354], [9.14074, 45.479043], [9.136244, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.48354], [9.136244, 45.488036], [9.14074, 45.488036], [9.14074, 45.48354], [9.136244, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.488036], [9.136244, 45.492533], [9.14074, 45.492533], [9.14074, 45.488036], [9.136244, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.492533], [9.136244, 45.49703], [9.14074, 45.49703], [9.14074, 45.492533], [9.136244, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.49703], [9.136244, 45.501526], [9.14074, 45.501526], [9.14074, 45.49703], [9.136244, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.501526], [9.136244, 45.506023], [9.14074, 45.506023], [9.14074, 45.501526], [9.136244, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.506023], [9.136244, 45.510519], [9.14074, 45.510519], [9.14074, 45.506023], [9.136244, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.510519], [9.136244, 45.515016], [9.14074, 45.515016], [9.14074, 45.510519], [9.136244, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.515016], [9.136244, 45.519513], [9.14074, 45.519513], [9.14074, 45.515016], [9.136244, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.519513], [9.136244, 45.524009], [9.14074, 45.524009], [9.14074, 45.519513], [9.136244, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.524009], [9.136244, 45.528506], [9.14074, 45.528506], [9.14074, 45.524009], [9.136244, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.528506], [9.136244, 45.533002], [9.14074, 45.533002], [9.14074, 45.528506], [9.136244, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.533002], [9.136244, 45.537499], [9.14074, 45.537499], [9.14074, 45.533002], [9.136244, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.537499], [9.136244, 45.541996], [9.14074, 45.541996], [9.14074, 45.537499], [9.136244, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.541996], [9.136244, 45.546492], [9.14074, 45.546492], [9.14074, 45.541996], [9.136244, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.546492], [9.136244, 45.550989], [9.14074, 45.550989], [9.14074, 45.546492], [9.136244, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.550989], [9.136244, 45.555485], [9.14074, 45.555485], [9.14074, 45.550989], [9.136244, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.555485], [9.136244, 45.559982], [9.14074, 45.559982], [9.14074, 45.555485], [9.136244, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.559982], [9.136244, 45.564479], [9.14074, 45.564479], [9.14074, 45.559982], [9.136244, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.564479], [9.136244, 45.568975], [9.14074, 45.568975], [9.14074, 45.564479], [9.136244, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.568975], [9.136244, 45.573472], [9.14074, 45.573472], [9.14074, 45.568975], [9.136244, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.573472], [9.136244, 45.577968], [9.14074, 45.577968], [9.14074, 45.573472], [9.136244, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.577968], [9.136244, 45.582465], [9.14074, 45.582465], [9.14074, 45.577968], [9.136244, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.582465], [9.136244, 45.586962], [9.14074, 45.586962], [9.14074, 45.582465], [9.136244, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.586962], [9.136244, 45.591458], [9.14074, 45.591458], [9.14074, 45.586962], [9.136244, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.591458], [9.136244, 45.595955], [9.14074, 45.595955], [9.14074, 45.591458], [9.136244, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.595955], [9.136244, 45.600451], [9.14074, 45.600451], [9.14074, 45.595955], [9.136244, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.600451], [9.136244, 45.604948], [9.14074, 45.604948], [9.14074, 45.600451], [9.136244, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.604948], [9.136244, 45.609445], [9.14074, 45.609445], [9.14074, 45.604948], [9.136244, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.609445], [9.136244, 45.613941], [9.14074, 45.613941], [9.14074, 45.609445], [9.136244, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.613941], [9.136244, 45.618438], [9.14074, 45.618438], [9.14074, 45.613941], [9.136244, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.618438], [9.136244, 45.622934], [9.14074, 45.622934], [9.14074, 45.618438], [9.136244, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.622934], [9.136244, 45.627431], [9.14074, 45.627431], [9.14074, 45.622934], [9.136244, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.627431], [9.136244, 45.631928], [9.14074, 45.631928], [9.14074, 45.627431], [9.136244, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.136244, 45.631928], [9.136244, 45.636424], [9.14074, 45.636424], [9.14074, 45.631928], [9.136244, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.339648], [9.14074, 45.344145], [9.145237, 45.344145], [9.145237, 45.339648], [9.14074, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.344145], [9.14074, 45.348642], [9.145237, 45.348642], [9.145237, 45.344145], [9.14074, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.348642], [9.14074, 45.353138], [9.145237, 45.353138], [9.145237, 45.348642], [9.14074, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.353138], [9.14074, 45.357635], [9.145237, 45.357635], [9.145237, 45.353138], [9.14074, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.357635], [9.14074, 45.362131], [9.145237, 45.362131], [9.145237, 45.357635], [9.14074, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.362131], [9.14074, 45.366628], [9.145237, 45.366628], [9.145237, 45.362131], [9.14074, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.366628], [9.14074, 45.371125], [9.145237, 45.371125], [9.145237, 45.366628], [9.14074, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.371125], [9.14074, 45.375621], [9.145237, 45.375621], [9.145237, 45.371125], [9.14074, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.375621], [9.14074, 45.380118], [9.145237, 45.380118], [9.145237, 45.375621], [9.14074, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.380118], [9.14074, 45.384614], [9.145237, 45.384614], [9.145237, 45.380118], [9.14074, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.384614], [9.14074, 45.389111], [9.145237, 45.389111], [9.145237, 45.384614], [9.14074, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.389111], [9.14074, 45.393608], [9.145237, 45.393608], [9.145237, 45.389111], [9.14074, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.393608], [9.14074, 45.398104], [9.145237, 45.398104], [9.145237, 45.393608], [9.14074, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.398104], [9.14074, 45.402601], [9.145237, 45.402601], [9.145237, 45.398104], [9.14074, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.402601], [9.14074, 45.407097], [9.145237, 45.407097], [9.145237, 45.402601], [9.14074, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.407097], [9.14074, 45.411594], [9.145237, 45.411594], [9.145237, 45.407097], [9.14074, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.411594], [9.14074, 45.416091], [9.145237, 45.416091], [9.145237, 45.411594], [9.14074, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.416091], [9.14074, 45.420587], [9.145237, 45.420587], [9.145237, 45.416091], [9.14074, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.420587], [9.14074, 45.425084], [9.145237, 45.425084], [9.145237, 45.420587], [9.14074, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.425084], [9.14074, 45.42958], [9.145237, 45.42958], [9.145237, 45.425084], [9.14074, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.42958], [9.14074, 45.434077], [9.145237, 45.434077], [9.145237, 45.42958], [9.14074, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.434077], [9.14074, 45.438574], [9.145237, 45.438574], [9.145237, 45.434077], [9.14074, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.438574], [9.14074, 45.44307], [9.145237, 45.44307], [9.145237, 45.438574], [9.14074, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.44307], [9.14074, 45.447567], [9.145237, 45.447567], [9.145237, 45.44307], [9.14074, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.447567], [9.14074, 45.452063], [9.145237, 45.452063], [9.145237, 45.447567], [9.14074, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.452063], [9.14074, 45.45656], [9.145237, 45.45656], [9.145237, 45.452063], [9.14074, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.45656], [9.14074, 45.461057], [9.145237, 45.461057], [9.145237, 45.45656], [9.14074, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.461057], [9.14074, 45.465553], [9.145237, 45.465553], [9.145237, 45.461057], [9.14074, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.465553], [9.14074, 45.47005], [9.145237, 45.47005], [9.145237, 45.465553], [9.14074, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.47005], [9.14074, 45.474547], [9.145237, 45.474547], [9.145237, 45.47005], [9.14074, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.474547], [9.14074, 45.479043], [9.145237, 45.479043], [9.145237, 45.474547], [9.14074, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.479043], [9.14074, 45.48354], [9.145237, 45.48354], [9.145237, 45.479043], [9.14074, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.48354], [9.14074, 45.488036], [9.145237, 45.488036], [9.145237, 45.48354], [9.14074, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.488036], [9.14074, 45.492533], [9.145237, 45.492533], [9.145237, 45.488036], [9.14074, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.492533], [9.14074, 45.49703], [9.145237, 45.49703], [9.145237, 45.492533], [9.14074, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.49703], [9.14074, 45.501526], [9.145237, 45.501526], [9.145237, 45.49703], [9.14074, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.501526], [9.14074, 45.506023], [9.145237, 45.506023], [9.145237, 45.501526], [9.14074, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.506023], [9.14074, 45.510519], [9.145237, 45.510519], [9.145237, 45.506023], [9.14074, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.510519], [9.14074, 45.515016], [9.145237, 45.515016], [9.145237, 45.510519], [9.14074, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.515016], [9.14074, 45.519513], [9.145237, 45.519513], [9.145237, 45.515016], [9.14074, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.519513], [9.14074, 45.524009], [9.145237, 45.524009], [9.145237, 45.519513], [9.14074, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.524009], [9.14074, 45.528506], [9.145237, 45.528506], [9.145237, 45.524009], [9.14074, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.528506], [9.14074, 45.533002], [9.145237, 45.533002], [9.145237, 45.528506], [9.14074, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.533002], [9.14074, 45.537499], [9.145237, 45.537499], [9.145237, 45.533002], [9.14074, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.537499], [9.14074, 45.541996], [9.145237, 45.541996], [9.145237, 45.537499], [9.14074, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.541996], [9.14074, 45.546492], [9.145237, 45.546492], [9.145237, 45.541996], [9.14074, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.546492], [9.14074, 45.550989], [9.145237, 45.550989], [9.145237, 45.546492], [9.14074, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.550989], [9.14074, 45.555485], [9.145237, 45.555485], [9.145237, 45.550989], [9.14074, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.555485], [9.14074, 45.559982], [9.145237, 45.559982], [9.145237, 45.555485], [9.14074, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.559982], [9.14074, 45.564479], [9.145237, 45.564479], [9.145237, 45.559982], [9.14074, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.564479], [9.14074, 45.568975], [9.145237, 45.568975], [9.145237, 45.564479], [9.14074, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.568975], [9.14074, 45.573472], [9.145237, 45.573472], [9.145237, 45.568975], [9.14074, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.573472], [9.14074, 45.577968], [9.145237, 45.577968], [9.145237, 45.573472], [9.14074, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.577968], [9.14074, 45.582465], [9.145237, 45.582465], [9.145237, 45.577968], [9.14074, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.582465], [9.14074, 45.586962], [9.145237, 45.586962], [9.145237, 45.582465], [9.14074, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.586962], [9.14074, 45.591458], [9.145237, 45.591458], [9.145237, 45.586962], [9.14074, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.591458], [9.14074, 45.595955], [9.145237, 45.595955], [9.145237, 45.591458], [9.14074, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.595955], [9.14074, 45.600451], [9.145237, 45.600451], [9.145237, 45.595955], [9.14074, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.600451], [9.14074, 45.604948], [9.145237, 45.604948], [9.145237, 45.600451], [9.14074, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.604948], [9.14074, 45.609445], [9.145237, 45.609445], [9.145237, 45.604948], [9.14074, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.609445], [9.14074, 45.613941], [9.145237, 45.613941], [9.145237, 45.609445], [9.14074, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.613941], [9.14074, 45.618438], [9.145237, 45.618438], [9.145237, 45.613941], [9.14074, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.618438], [9.14074, 45.622934], [9.145237, 45.622934], [9.145237, 45.618438], [9.14074, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.622934], [9.14074, 45.627431], [9.145237, 45.627431], [9.145237, 45.622934], [9.14074, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.627431], [9.14074, 45.631928], [9.145237, 45.631928], [9.145237, 45.627431], [9.14074, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.14074, 45.631928], [9.14074, 45.636424], [9.145237, 45.636424], [9.145237, 45.631928], [9.14074, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.339648], [9.145237, 45.344145], [9.149733, 45.344145], [9.149733, 45.339648], [9.145237, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.344145], [9.145237, 45.348642], [9.149733, 45.348642], [9.149733, 45.344145], [9.145237, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.348642], [9.145237, 45.353138], [9.149733, 45.353138], [9.149733, 45.348642], [9.145237, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.353138], [9.145237, 45.357635], [9.149733, 45.357635], [9.149733, 45.353138], [9.145237, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.357635], [9.145237, 45.362131], [9.149733, 45.362131], [9.149733, 45.357635], [9.145237, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.362131], [9.145237, 45.366628], [9.149733, 45.366628], [9.149733, 45.362131], [9.145237, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.366628], [9.145237, 45.371125], [9.149733, 45.371125], [9.149733, 45.366628], [9.145237, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.371125], [9.145237, 45.375621], [9.149733, 45.375621], [9.149733, 45.371125], [9.145237, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.375621], [9.145237, 45.380118], [9.149733, 45.380118], [9.149733, 45.375621], [9.145237, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.380118], [9.145237, 45.384614], [9.149733, 45.384614], [9.149733, 45.380118], [9.145237, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.384614], [9.145237, 45.389111], [9.149733, 45.389111], [9.149733, 45.384614], [9.145237, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.389111], [9.145237, 45.393608], [9.149733, 45.393608], [9.149733, 45.389111], [9.145237, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.393608], [9.145237, 45.398104], [9.149733, 45.398104], [9.149733, 45.393608], [9.145237, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.398104], [9.145237, 45.402601], [9.149733, 45.402601], [9.149733, 45.398104], [9.145237, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.402601], [9.145237, 45.407097], [9.149733, 45.407097], [9.149733, 45.402601], [9.145237, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.407097], [9.145237, 45.411594], [9.149733, 45.411594], [9.149733, 45.407097], [9.145237, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.411594], [9.145237, 45.416091], [9.149733, 45.416091], [9.149733, 45.411594], [9.145237, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.416091], [9.145237, 45.420587], [9.149733, 45.420587], [9.149733, 45.416091], [9.145237, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.420587], [9.145237, 45.425084], [9.149733, 45.425084], [9.149733, 45.420587], [9.145237, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.425084], [9.145237, 45.42958], [9.149733, 45.42958], [9.149733, 45.425084], [9.145237, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.42958], [9.145237, 45.434077], [9.149733, 45.434077], [9.149733, 45.42958], [9.145237, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.434077], [9.145237, 45.438574], [9.149733, 45.438574], [9.149733, 45.434077], [9.145237, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.438574], [9.145237, 45.44307], [9.149733, 45.44307], [9.149733, 45.438574], [9.145237, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.44307], [9.145237, 45.447567], [9.149733, 45.447567], [9.149733, 45.44307], [9.145237, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.447567], [9.145237, 45.452063], [9.149733, 45.452063], [9.149733, 45.447567], [9.145237, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.452063], [9.145237, 45.45656], [9.149733, 45.45656], [9.149733, 45.452063], [9.145237, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.45656], [9.145237, 45.461057], [9.149733, 45.461057], [9.149733, 45.45656], [9.145237, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.461057], [9.145237, 45.465553], [9.149733, 45.465553], [9.149733, 45.461057], [9.145237, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.465553], [9.145237, 45.47005], [9.149733, 45.47005], [9.149733, 45.465553], [9.145237, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.47005], [9.145237, 45.474547], [9.149733, 45.474547], [9.149733, 45.47005], [9.145237, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.474547], [9.145237, 45.479043], [9.149733, 45.479043], [9.149733, 45.474547], [9.145237, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.479043], [9.145237, 45.48354], [9.149733, 45.48354], [9.149733, 45.479043], [9.145237, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.48354], [9.145237, 45.488036], [9.149733, 45.488036], [9.149733, 45.48354], [9.145237, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.488036], [9.145237, 45.492533], [9.149733, 45.492533], [9.149733, 45.488036], [9.145237, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.492533], [9.145237, 45.49703], [9.149733, 45.49703], [9.149733, 45.492533], [9.145237, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.49703], [9.145237, 45.501526], [9.149733, 45.501526], [9.149733, 45.49703], [9.145237, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.501526], [9.145237, 45.506023], [9.149733, 45.506023], [9.149733, 45.501526], [9.145237, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.506023], [9.145237, 45.510519], [9.149733, 45.510519], [9.149733, 45.506023], [9.145237, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.510519], [9.145237, 45.515016], [9.149733, 45.515016], [9.149733, 45.510519], [9.145237, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.515016], [9.145237, 45.519513], [9.149733, 45.519513], [9.149733, 45.515016], [9.145237, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.519513], [9.145237, 45.524009], [9.149733, 45.524009], [9.149733, 45.519513], [9.145237, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.524009], [9.145237, 45.528506], [9.149733, 45.528506], [9.149733, 45.524009], [9.145237, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.528506], [9.145237, 45.533002], [9.149733, 45.533002], [9.149733, 45.528506], [9.145237, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.533002], [9.145237, 45.537499], [9.149733, 45.537499], [9.149733, 45.533002], [9.145237, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.537499], [9.145237, 45.541996], [9.149733, 45.541996], [9.149733, 45.537499], [9.145237, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.541996], [9.145237, 45.546492], [9.149733, 45.546492], [9.149733, 45.541996], [9.145237, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.546492], [9.145237, 45.550989], [9.149733, 45.550989], [9.149733, 45.546492], [9.145237, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.550989], [9.145237, 45.555485], [9.149733, 45.555485], [9.149733, 45.550989], [9.145237, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.555485], [9.145237, 45.559982], [9.149733, 45.559982], [9.149733, 45.555485], [9.145237, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.559982], [9.145237, 45.564479], [9.149733, 45.564479], [9.149733, 45.559982], [9.145237, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.564479], [9.145237, 45.568975], [9.149733, 45.568975], [9.149733, 45.564479], [9.145237, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.568975], [9.145237, 45.573472], [9.149733, 45.573472], [9.149733, 45.568975], [9.145237, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.573472], [9.145237, 45.577968], [9.149733, 45.577968], [9.149733, 45.573472], [9.145237, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.577968], [9.145237, 45.582465], [9.149733, 45.582465], [9.149733, 45.577968], [9.145237, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.582465], [9.145237, 45.586962], [9.149733, 45.586962], [9.149733, 45.582465], [9.145237, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.586962], [9.145237, 45.591458], [9.149733, 45.591458], [9.149733, 45.586962], [9.145237, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.591458], [9.145237, 45.595955], [9.149733, 45.595955], [9.149733, 45.591458], [9.145237, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.595955], [9.145237, 45.600451], [9.149733, 45.600451], [9.149733, 45.595955], [9.145237, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.600451], [9.145237, 45.604948], [9.149733, 45.604948], [9.149733, 45.600451], [9.145237, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.604948], [9.145237, 45.609445], [9.149733, 45.609445], [9.149733, 45.604948], [9.145237, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.609445], [9.145237, 45.613941], [9.149733, 45.613941], [9.149733, 45.609445], [9.145237, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.613941], [9.145237, 45.618438], [9.149733, 45.618438], [9.149733, 45.613941], [9.145237, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.618438], [9.145237, 45.622934], [9.149733, 45.622934], [9.149733, 45.618438], [9.145237, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.622934], [9.145237, 45.627431], [9.149733, 45.627431], [9.149733, 45.622934], [9.145237, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.627431], [9.145237, 45.631928], [9.149733, 45.631928], [9.149733, 45.627431], [9.145237, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.145237, 45.631928], [9.145237, 45.636424], [9.149733, 45.636424], [9.149733, 45.631928], [9.145237, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.339648], [9.149733, 45.344145], [9.15423, 45.344145], [9.15423, 45.339648], [9.149733, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.344145], [9.149733, 45.348642], [9.15423, 45.348642], [9.15423, 45.344145], [9.149733, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.348642], [9.149733, 45.353138], [9.15423, 45.353138], [9.15423, 45.348642], [9.149733, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.353138], [9.149733, 45.357635], [9.15423, 45.357635], [9.15423, 45.353138], [9.149733, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.357635], [9.149733, 45.362131], [9.15423, 45.362131], [9.15423, 45.357635], [9.149733, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.362131], [9.149733, 45.366628], [9.15423, 45.366628], [9.15423, 45.362131], [9.149733, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.366628], [9.149733, 45.371125], [9.15423, 45.371125], [9.15423, 45.366628], [9.149733, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.371125], [9.149733, 45.375621], [9.15423, 45.375621], [9.15423, 45.371125], [9.149733, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.375621], [9.149733, 45.380118], [9.15423, 45.380118], [9.15423, 45.375621], [9.149733, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.380118], [9.149733, 45.384614], [9.15423, 45.384614], [9.15423, 45.380118], [9.149733, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.384614], [9.149733, 45.389111], [9.15423, 45.389111], [9.15423, 45.384614], [9.149733, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.389111], [9.149733, 45.393608], [9.15423, 45.393608], [9.15423, 45.389111], [9.149733, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.393608], [9.149733, 45.398104], [9.15423, 45.398104], [9.15423, 45.393608], [9.149733, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.398104], [9.149733, 45.402601], [9.15423, 45.402601], [9.15423, 45.398104], [9.149733, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.402601], [9.149733, 45.407097], [9.15423, 45.407097], [9.15423, 45.402601], [9.149733, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.407097], [9.149733, 45.411594], [9.15423, 45.411594], [9.15423, 45.407097], [9.149733, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.411594], [9.149733, 45.416091], [9.15423, 45.416091], [9.15423, 45.411594], [9.149733, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.416091], [9.149733, 45.420587], [9.15423, 45.420587], [9.15423, 45.416091], [9.149733, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.420587], [9.149733, 45.425084], [9.15423, 45.425084], [9.15423, 45.420587], [9.149733, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.425084], [9.149733, 45.42958], [9.15423, 45.42958], [9.15423, 45.425084], [9.149733, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.42958], [9.149733, 45.434077], [9.15423, 45.434077], [9.15423, 45.42958], [9.149733, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.434077], [9.149733, 45.438574], [9.15423, 45.438574], [9.15423, 45.434077], [9.149733, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.438574], [9.149733, 45.44307], [9.15423, 45.44307], [9.15423, 45.438574], [9.149733, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.44307], [9.149733, 45.447567], [9.15423, 45.447567], [9.15423, 45.44307], [9.149733, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.447567], [9.149733, 45.452063], [9.15423, 45.452063], [9.15423, 45.447567], [9.149733, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.452063], [9.149733, 45.45656], [9.15423, 45.45656], [9.15423, 45.452063], [9.149733, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.45656], [9.149733, 45.461057], [9.15423, 45.461057], [9.15423, 45.45656], [9.149733, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.461057], [9.149733, 45.465553], [9.15423, 45.465553], [9.15423, 45.461057], [9.149733, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 16, "stroke": "#cce7ff", "fill": "#cce7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.465553], [9.149733, 45.47005], [9.15423, 45.47005], [9.15423, 45.465553], [9.149733, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 15, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.47005], [9.149733, 45.474547], [9.15423, 45.474547], [9.15423, 45.47005], [9.149733, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.474547], [9.149733, 45.479043], [9.15423, 45.479043], [9.15423, 45.474547], [9.149733, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.479043], [9.149733, 45.48354], [9.15423, 45.48354], [9.15423, 45.479043], [9.149733, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.48354], [9.149733, 45.488036], [9.15423, 45.488036], [9.15423, 45.48354], [9.149733, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.488036], [9.149733, 45.492533], [9.15423, 45.492533], [9.15423, 45.488036], [9.149733, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.492533], [9.149733, 45.49703], [9.15423, 45.49703], [9.15423, 45.492533], [9.149733, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.49703], [9.149733, 45.501526], [9.15423, 45.501526], [9.15423, 45.49703], [9.149733, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.501526], [9.149733, 45.506023], [9.15423, 45.506023], [9.15423, 45.501526], [9.149733, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.506023], [9.149733, 45.510519], [9.15423, 45.510519], [9.15423, 45.506023], [9.149733, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.510519], [9.149733, 45.515016], [9.15423, 45.515016], [9.15423, 45.510519], [9.149733, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.515016], [9.149733, 45.519513], [9.15423, 45.519513], [9.15423, 45.515016], [9.149733, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.519513], [9.149733, 45.524009], [9.15423, 45.524009], [9.15423, 45.519513], [9.149733, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.524009], [9.149733, 45.528506], [9.15423, 45.528506], [9.15423, 45.524009], [9.149733, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.528506], [9.149733, 45.533002], [9.15423, 45.533002], [9.15423, 45.528506], [9.149733, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.533002], [9.149733, 45.537499], [9.15423, 45.537499], [9.15423, 45.533002], [9.149733, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.537499], [9.149733, 45.541996], [9.15423, 45.541996], [9.15423, 45.537499], [9.149733, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.541996], [9.149733, 45.546492], [9.15423, 45.546492], [9.15423, 45.541996], [9.149733, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.546492], [9.149733, 45.550989], [9.15423, 45.550989], [9.15423, 45.546492], [9.149733, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.550989], [9.149733, 45.555485], [9.15423, 45.555485], [9.15423, 45.550989], [9.149733, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.555485], [9.149733, 45.559982], [9.15423, 45.559982], [9.15423, 45.555485], [9.149733, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.559982], [9.149733, 45.564479], [9.15423, 45.564479], [9.15423, 45.559982], [9.149733, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.564479], [9.149733, 45.568975], [9.15423, 45.568975], [9.15423, 45.564479], [9.149733, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.568975], [9.149733, 45.573472], [9.15423, 45.573472], [9.15423, 45.568975], [9.149733, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.573472], [9.149733, 45.577968], [9.15423, 45.577968], [9.15423, 45.573472], [9.149733, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.577968], [9.149733, 45.582465], [9.15423, 45.582465], [9.15423, 45.577968], [9.149733, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.582465], [9.149733, 45.586962], [9.15423, 45.586962], [9.15423, 45.582465], [9.149733, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.586962], [9.149733, 45.591458], [9.15423, 45.591458], [9.15423, 45.586962], [9.149733, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.591458], [9.149733, 45.595955], [9.15423, 45.595955], [9.15423, 45.591458], [9.149733, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.595955], [9.149733, 45.600451], [9.15423, 45.600451], [9.15423, 45.595955], [9.149733, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.600451], [9.149733, 45.604948], [9.15423, 45.604948], [9.15423, 45.600451], [9.149733, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.604948], [9.149733, 45.609445], [9.15423, 45.609445], [9.15423, 45.604948], [9.149733, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.609445], [9.149733, 45.613941], [9.15423, 45.613941], [9.15423, 45.609445], [9.149733, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.613941], [9.149733, 45.618438], [9.15423, 45.618438], [9.15423, 45.613941], [9.149733, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.618438], [9.149733, 45.622934], [9.15423, 45.622934], [9.15423, 45.618438], [9.149733, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.622934], [9.149733, 45.627431], [9.15423, 45.627431], [9.15423, 45.622934], [9.149733, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.627431], [9.149733, 45.631928], [9.15423, 45.631928], [9.15423, 45.627431], [9.149733, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149733, 45.631928], [9.149733, 45.636424], [9.15423, 45.636424], [9.15423, 45.631928], [9.149733, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.339648], [9.15423, 45.344145], [9.158727, 45.344145], [9.158727, 45.339648], [9.15423, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.344145], [9.15423, 45.348642], [9.158727, 45.348642], [9.158727, 45.344145], [9.15423, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.348642], [9.15423, 45.353138], [9.158727, 45.353138], [9.158727, 45.348642], [9.15423, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.353138], [9.15423, 45.357635], [9.158727, 45.357635], [9.158727, 45.353138], [9.15423, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.357635], [9.15423, 45.362131], [9.158727, 45.362131], [9.158727, 45.357635], [9.15423, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.362131], [9.15423, 45.366628], [9.158727, 45.366628], [9.158727, 45.362131], [9.15423, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.366628], [9.15423, 45.371125], [9.158727, 45.371125], [9.158727, 45.366628], [9.15423, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.371125], [9.15423, 45.375621], [9.158727, 45.375621], [9.158727, 45.371125], [9.15423, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.375621], [9.15423, 45.380118], [9.158727, 45.380118], [9.158727, 45.375621], [9.15423, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.380118], [9.15423, 45.384614], [9.158727, 45.384614], [9.158727, 45.380118], [9.15423, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.384614], [9.15423, 45.389111], [9.158727, 45.389111], [9.158727, 45.384614], [9.15423, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.389111], [9.15423, 45.393608], [9.158727, 45.393608], [9.158727, 45.389111], [9.15423, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.393608], [9.15423, 45.398104], [9.158727, 45.398104], [9.158727, 45.393608], [9.15423, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.398104], [9.15423, 45.402601], [9.158727, 45.402601], [9.158727, 45.398104], [9.15423, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.402601], [9.15423, 45.407097], [9.158727, 45.407097], [9.158727, 45.402601], [9.15423, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.407097], [9.15423, 45.411594], [9.158727, 45.411594], [9.158727, 45.407097], [9.15423, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.411594], [9.15423, 45.416091], [9.158727, 45.416091], [9.158727, 45.411594], [9.15423, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.416091], [9.15423, 45.420587], [9.158727, 45.420587], [9.158727, 45.416091], [9.15423, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.420587], [9.15423, 45.425084], [9.158727, 45.425084], [9.158727, 45.420587], [9.15423, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.425084], [9.15423, 45.42958], [9.158727, 45.42958], [9.158727, 45.425084], [9.15423, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.42958], [9.15423, 45.434077], [9.158727, 45.434077], [9.158727, 45.42958], [9.15423, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.434077], [9.15423, 45.438574], [9.158727, 45.438574], [9.158727, 45.434077], [9.15423, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.438574], [9.15423, 45.44307], [9.158727, 45.44307], [9.158727, 45.438574], [9.15423, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.44307], [9.15423, 45.447567], [9.158727, 45.447567], [9.158727, 45.44307], [9.15423, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.447567], [9.15423, 45.452063], [9.158727, 45.452063], [9.158727, 45.447567], [9.15423, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.452063], [9.15423, 45.45656], [9.158727, 45.45656], [9.158727, 45.452063], [9.15423, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.45656], [9.15423, 45.461057], [9.158727, 45.461057], [9.158727, 45.45656], [9.15423, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.461057], [9.15423, 45.465553], [9.158727, 45.465553], [9.158727, 45.461057], [9.15423, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 16, "stroke": "#cce7ff", "fill": "#cce7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.465553], [9.15423, 45.47005], [9.158727, 45.47005], [9.158727, 45.465553], [9.15423, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 11, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.47005], [9.15423, 45.474547], [9.158727, 45.474547], [9.158727, 45.47005], [9.15423, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.474547], [9.15423, 45.479043], [9.158727, 45.479043], [9.158727, 45.474547], [9.15423, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.479043], [9.15423, 45.48354], [9.158727, 45.48354], [9.158727, 45.479043], [9.15423, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.48354], [9.15423, 45.488036], [9.158727, 45.488036], [9.158727, 45.48354], [9.15423, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.488036], [9.15423, 45.492533], [9.158727, 45.492533], [9.158727, 45.488036], [9.15423, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.492533], [9.15423, 45.49703], [9.158727, 45.49703], [9.158727, 45.492533], [9.15423, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.49703], [9.15423, 45.501526], [9.158727, 45.501526], [9.158727, 45.49703], [9.15423, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.501526], [9.15423, 45.506023], [9.158727, 45.506023], [9.158727, 45.501526], [9.15423, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.506023], [9.15423, 45.510519], [9.158727, 45.510519], [9.158727, 45.506023], [9.15423, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.510519], [9.15423, 45.515016], [9.158727, 45.515016], [9.158727, 45.510519], [9.15423, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.515016], [9.15423, 45.519513], [9.158727, 45.519513], [9.158727, 45.515016], [9.15423, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.519513], [9.15423, 45.524009], [9.158727, 45.524009], [9.158727, 45.519513], [9.15423, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.524009], [9.15423, 45.528506], [9.158727, 45.528506], [9.158727, 45.524009], [9.15423, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.528506], [9.15423, 45.533002], [9.158727, 45.533002], [9.158727, 45.528506], [9.15423, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.533002], [9.15423, 45.537499], [9.158727, 45.537499], [9.158727, 45.533002], [9.15423, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.537499], [9.15423, 45.541996], [9.158727, 45.541996], [9.158727, 45.537499], [9.15423, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.541996], [9.15423, 45.546492], [9.158727, 45.546492], [9.158727, 45.541996], [9.15423, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.546492], [9.15423, 45.550989], [9.158727, 45.550989], [9.158727, 45.546492], [9.15423, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.550989], [9.15423, 45.555485], [9.158727, 45.555485], [9.158727, 45.550989], [9.15423, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.555485], [9.15423, 45.559982], [9.158727, 45.559982], [9.158727, 45.555485], [9.15423, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.559982], [9.15423, 45.564479], [9.158727, 45.564479], [9.158727, 45.559982], [9.15423, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.564479], [9.15423, 45.568975], [9.158727, 45.568975], [9.158727, 45.564479], [9.15423, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.568975], [9.15423, 45.573472], [9.158727, 45.573472], [9.158727, 45.568975], [9.15423, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.573472], [9.15423, 45.577968], [9.158727, 45.577968], [9.158727, 45.573472], [9.15423, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.577968], [9.15423, 45.582465], [9.158727, 45.582465], [9.158727, 45.577968], [9.15423, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.582465], [9.15423, 45.586962], [9.158727, 45.586962], [9.158727, 45.582465], [9.15423, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.586962], [9.15423, 45.591458], [9.158727, 45.591458], [9.158727, 45.586962], [9.15423, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.591458], [9.15423, 45.595955], [9.158727, 45.595955], [9.158727, 45.591458], [9.15423, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.595955], [9.15423, 45.600451], [9.158727, 45.600451], [9.158727, 45.595955], [9.15423, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.600451], [9.15423, 45.604948], [9.158727, 45.604948], [9.158727, 45.600451], [9.15423, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.604948], [9.15423, 45.609445], [9.158727, 45.609445], [9.158727, 45.604948], [9.15423, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.609445], [9.15423, 45.613941], [9.158727, 45.613941], [9.158727, 45.609445], [9.15423, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.613941], [9.15423, 45.618438], [9.158727, 45.618438], [9.158727, 45.613941], [9.15423, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.618438], [9.15423, 45.622934], [9.158727, 45.622934], [9.158727, 45.618438], [9.15423, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.622934], [9.15423, 45.627431], [9.158727, 45.627431], [9.158727, 45.622934], [9.15423, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.627431], [9.15423, 45.631928], [9.158727, 45.631928], [9.158727, 45.627431], [9.15423, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.15423, 45.631928], [9.15423, 45.636424], [9.158727, 45.636424], [9.158727, 45.631928], [9.15423, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.339648], [9.158727, 45.344145], [9.163223, 45.344145], [9.163223, 45.339648], [9.158727, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.344145], [9.158727, 45.348642], [9.163223, 45.348642], [9.163223, 45.344145], [9.158727, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.348642], [9.158727, 45.353138], [9.163223, 45.353138], [9.163223, 45.348642], [9.158727, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.353138], [9.158727, 45.357635], [9.163223, 45.357635], [9.163223, 45.353138], [9.158727, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.357635], [9.158727, 45.362131], [9.163223, 45.362131], [9.163223, 45.357635], [9.158727, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.362131], [9.158727, 45.366628], [9.163223, 45.366628], [9.163223, 45.362131], [9.158727, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.366628], [9.158727, 45.371125], [9.163223, 45.371125], [9.163223, 45.366628], [9.158727, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.371125], [9.158727, 45.375621], [9.163223, 45.375621], [9.163223, 45.371125], [9.158727, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.375621], [9.158727, 45.380118], [9.163223, 45.380118], [9.163223, 45.375621], [9.158727, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.380118], [9.158727, 45.384614], [9.163223, 45.384614], [9.163223, 45.380118], [9.158727, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.384614], [9.158727, 45.389111], [9.163223, 45.389111], [9.163223, 45.384614], [9.158727, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.389111], [9.158727, 45.393608], [9.163223, 45.393608], [9.163223, 45.389111], [9.158727, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.393608], [9.158727, 45.398104], [9.163223, 45.398104], [9.163223, 45.393608], [9.158727, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.398104], [9.158727, 45.402601], [9.163223, 45.402601], [9.163223, 45.398104], [9.158727, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.402601], [9.158727, 45.407097], [9.163223, 45.407097], [9.163223, 45.402601], [9.158727, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.407097], [9.158727, 45.411594], [9.163223, 45.411594], [9.163223, 45.407097], [9.158727, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.411594], [9.158727, 45.416091], [9.163223, 45.416091], [9.163223, 45.411594], [9.158727, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.416091], [9.158727, 45.420587], [9.163223, 45.420587], [9.163223, 45.416091], [9.158727, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.420587], [9.158727, 45.425084], [9.163223, 45.425084], [9.163223, 45.420587], [9.158727, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.425084], [9.158727, 45.42958], [9.163223, 45.42958], [9.163223, 45.425084], [9.158727, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.42958], [9.158727, 45.434077], [9.163223, 45.434077], [9.163223, 45.42958], [9.158727, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.434077], [9.158727, 45.438574], [9.163223, 45.438574], [9.163223, 45.434077], [9.158727, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.438574], [9.158727, 45.44307], [9.163223, 45.44307], [9.163223, 45.438574], [9.158727, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.44307], [9.158727, 45.447567], [9.163223, 45.447567], [9.163223, 45.44307], [9.158727, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.447567], [9.158727, 45.452063], [9.163223, 45.452063], [9.163223, 45.447567], [9.158727, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.452063], [9.158727, 45.45656], [9.163223, 45.45656], [9.163223, 45.452063], [9.158727, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.45656], [9.158727, 45.461057], [9.163223, 45.461057], [9.163223, 45.45656], [9.158727, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.461057], [9.158727, 45.465553], [9.163223, 45.465553], [9.163223, 45.461057], [9.158727, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.465553], [9.158727, 45.47005], [9.163223, 45.47005], [9.163223, 45.465553], [9.158727, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 16, "stroke": "#cce7ff", "fill": "#cce7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.47005], [9.158727, 45.474547], [9.163223, 45.474547], [9.163223, 45.47005], [9.158727, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.474547], [9.158727, 45.479043], [9.163223, 45.479043], [9.163223, 45.474547], [9.158727, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.479043], [9.158727, 45.48354], [9.163223, 45.48354], [9.163223, 45.479043], [9.158727, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.48354], [9.158727, 45.488036], [9.163223, 45.488036], [9.163223, 45.48354], [9.158727, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.488036], [9.158727, 45.492533], [9.163223, 45.492533], [9.163223, 45.488036], [9.158727, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.492533], [9.158727, 45.49703], [9.163223, 45.49703], [9.163223, 45.492533], [9.158727, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.49703], [9.158727, 45.501526], [9.163223, 45.501526], [9.163223, 45.49703], [9.158727, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.501526], [9.158727, 45.506023], [9.163223, 45.506023], [9.163223, 45.501526], [9.158727, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.506023], [9.158727, 45.510519], [9.163223, 45.510519], [9.163223, 45.506023], [9.158727, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.510519], [9.158727, 45.515016], [9.163223, 45.515016], [9.163223, 45.510519], [9.158727, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.515016], [9.158727, 45.519513], [9.163223, 45.519513], [9.163223, 45.515016], [9.158727, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.519513], [9.158727, 45.524009], [9.163223, 45.524009], [9.163223, 45.519513], [9.158727, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.524009], [9.158727, 45.528506], [9.163223, 45.528506], [9.163223, 45.524009], [9.158727, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.528506], [9.158727, 45.533002], [9.163223, 45.533002], [9.163223, 45.528506], [9.158727, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.533002], [9.158727, 45.537499], [9.163223, 45.537499], [9.163223, 45.533002], [9.158727, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.537499], [9.158727, 45.541996], [9.163223, 45.541996], [9.163223, 45.537499], [9.158727, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.541996], [9.158727, 45.546492], [9.163223, 45.546492], [9.163223, 45.541996], [9.158727, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.546492], [9.158727, 45.550989], [9.163223, 45.550989], [9.163223, 45.546492], [9.158727, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.550989], [9.158727, 45.555485], [9.163223, 45.555485], [9.163223, 45.550989], [9.158727, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.555485], [9.158727, 45.559982], [9.163223, 45.559982], [9.163223, 45.555485], [9.158727, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.559982], [9.158727, 45.564479], [9.163223, 45.564479], [9.163223, 45.559982], [9.158727, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.564479], [9.158727, 45.568975], [9.163223, 45.568975], [9.163223, 45.564479], [9.158727, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.568975], [9.158727, 45.573472], [9.163223, 45.573472], [9.163223, 45.568975], [9.158727, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.573472], [9.158727, 45.577968], [9.163223, 45.577968], [9.163223, 45.573472], [9.158727, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.577968], [9.158727, 45.582465], [9.163223, 45.582465], [9.163223, 45.577968], [9.158727, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.582465], [9.158727, 45.586962], [9.163223, 45.586962], [9.163223, 45.582465], [9.158727, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.586962], [9.158727, 45.591458], [9.163223, 45.591458], [9.163223, 45.586962], [9.158727, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.591458], [9.158727, 45.595955], [9.163223, 45.595955], [9.163223, 45.591458], [9.158727, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.595955], [9.158727, 45.600451], [9.163223, 45.600451], [9.163223, 45.595955], [9.158727, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.600451], [9.158727, 45.604948], [9.163223, 45.604948], [9.163223, 45.600451], [9.158727, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.604948], [9.158727, 45.609445], [9.163223, 45.609445], [9.163223, 45.604948], [9.158727, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.609445], [9.158727, 45.613941], [9.163223, 45.613941], [9.163223, 45.609445], [9.158727, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.613941], [9.158727, 45.618438], [9.163223, 45.618438], [9.163223, 45.613941], [9.158727, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.618438], [9.158727, 45.622934], [9.163223, 45.622934], [9.163223, 45.618438], [9.158727, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.622934], [9.158727, 45.627431], [9.163223, 45.627431], [9.163223, 45.622934], [9.158727, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.627431], [9.158727, 45.631928], [9.163223, 45.631928], [9.163223, 45.627431], [9.158727, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158727, 45.631928], [9.158727, 45.636424], [9.163223, 45.636424], [9.163223, 45.631928], [9.158727, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.339648], [9.163223, 45.344145], [9.16772, 45.344145], [9.16772, 45.339648], [9.163223, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.344145], [9.163223, 45.348642], [9.16772, 45.348642], [9.16772, 45.344145], [9.163223, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.348642], [9.163223, 45.353138], [9.16772, 45.353138], [9.16772, 45.348642], [9.163223, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.353138], [9.163223, 45.357635], [9.16772, 45.357635], [9.16772, 45.353138], [9.163223, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.357635], [9.163223, 45.362131], [9.16772, 45.362131], [9.16772, 45.357635], [9.163223, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.362131], [9.163223, 45.366628], [9.16772, 45.366628], [9.16772, 45.362131], [9.163223, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.366628], [9.163223, 45.371125], [9.16772, 45.371125], [9.16772, 45.366628], [9.163223, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.371125], [9.163223, 45.375621], [9.16772, 45.375621], [9.16772, 45.371125], [9.163223, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.375621], [9.163223, 45.380118], [9.16772, 45.380118], [9.16772, 45.375621], [9.163223, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.380118], [9.163223, 45.384614], [9.16772, 45.384614], [9.16772, 45.380118], [9.163223, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.384614], [9.163223, 45.389111], [9.16772, 45.389111], [9.16772, 45.384614], [9.163223, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.389111], [9.163223, 45.393608], [9.16772, 45.393608], [9.16772, 45.389111], [9.163223, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.393608], [9.163223, 45.398104], [9.16772, 45.398104], [9.16772, 45.393608], [9.163223, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.398104], [9.163223, 45.402601], [9.16772, 45.402601], [9.16772, 45.398104], [9.163223, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.402601], [9.163223, 45.407097], [9.16772, 45.407097], [9.16772, 45.402601], [9.163223, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.407097], [9.163223, 45.411594], [9.16772, 45.411594], [9.16772, 45.407097], [9.163223, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.411594], [9.163223, 45.416091], [9.16772, 45.416091], [9.16772, 45.411594], [9.163223, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.416091], [9.163223, 45.420587], [9.16772, 45.420587], [9.16772, 45.416091], [9.163223, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.420587], [9.163223, 45.425084], [9.16772, 45.425084], [9.16772, 45.420587], [9.163223, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.425084], [9.163223, 45.42958], [9.16772, 45.42958], [9.16772, 45.425084], [9.163223, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.42958], [9.163223, 45.434077], [9.16772, 45.434077], [9.16772, 45.42958], [9.163223, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.434077], [9.163223, 45.438574], [9.16772, 45.438574], [9.16772, 45.434077], [9.163223, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.438574], [9.163223, 45.44307], [9.16772, 45.44307], [9.16772, 45.438574], [9.163223, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.44307], [9.163223, 45.447567], [9.16772, 45.447567], [9.16772, 45.44307], [9.163223, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.447567], [9.163223, 45.452063], [9.16772, 45.452063], [9.16772, 45.447567], [9.163223, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.452063], [9.163223, 45.45656], [9.16772, 45.45656], [9.16772, 45.452063], [9.163223, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.45656], [9.163223, 45.461057], [9.16772, 45.461057], [9.16772, 45.45656], [9.163223, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.461057], [9.163223, 45.465553], [9.16772, 45.465553], [9.16772, 45.461057], [9.163223, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.465553], [9.163223, 45.47005], [9.16772, 45.47005], [9.16772, 45.465553], [9.163223, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.47005], [9.163223, 45.474547], [9.16772, 45.474547], [9.16772, 45.47005], [9.163223, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.474547], [9.163223, 45.479043], [9.16772, 45.479043], [9.16772, 45.474547], [9.163223, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.479043], [9.163223, 45.48354], [9.16772, 45.48354], [9.16772, 45.479043], [9.163223, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.48354], [9.163223, 45.488036], [9.16772, 45.488036], [9.16772, 45.48354], [9.163223, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.488036], [9.163223, 45.492533], [9.16772, 45.492533], [9.16772, 45.488036], [9.163223, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.492533], [9.163223, 45.49703], [9.16772, 45.49703], [9.16772, 45.492533], [9.163223, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.49703], [9.163223, 45.501526], [9.16772, 45.501526], [9.16772, 45.49703], [9.163223, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.501526], [9.163223, 45.506023], [9.16772, 45.506023], [9.16772, 45.501526], [9.163223, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.506023], [9.163223, 45.510519], [9.16772, 45.510519], [9.16772, 45.506023], [9.163223, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.510519], [9.163223, 45.515016], [9.16772, 45.515016], [9.16772, 45.510519], [9.163223, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.515016], [9.163223, 45.519513], [9.16772, 45.519513], [9.16772, 45.515016], [9.163223, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.519513], [9.163223, 45.524009], [9.16772, 45.524009], [9.16772, 45.519513], [9.163223, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.524009], [9.163223, 45.528506], [9.16772, 45.528506], [9.16772, 45.524009], [9.163223, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.528506], [9.163223, 45.533002], [9.16772, 45.533002], [9.16772, 45.528506], [9.163223, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.533002], [9.163223, 45.537499], [9.16772, 45.537499], [9.16772, 45.533002], [9.163223, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.537499], [9.163223, 45.541996], [9.16772, 45.541996], [9.16772, 45.537499], [9.163223, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.541996], [9.163223, 45.546492], [9.16772, 45.546492], [9.16772, 45.541996], [9.163223, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.546492], [9.163223, 45.550989], [9.16772, 45.550989], [9.16772, 45.546492], [9.163223, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.550989], [9.163223, 45.555485], [9.16772, 45.555485], [9.16772, 45.550989], [9.163223, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.555485], [9.163223, 45.559982], [9.16772, 45.559982], [9.16772, 45.555485], [9.163223, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.559982], [9.163223, 45.564479], [9.16772, 45.564479], [9.16772, 45.559982], [9.163223, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.564479], [9.163223, 45.568975], [9.16772, 45.568975], [9.16772, 45.564479], [9.163223, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.568975], [9.163223, 45.573472], [9.16772, 45.573472], [9.16772, 45.568975], [9.163223, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.573472], [9.163223, 45.577968], [9.16772, 45.577968], [9.16772, 45.573472], [9.163223, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.577968], [9.163223, 45.582465], [9.16772, 45.582465], [9.16772, 45.577968], [9.163223, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.582465], [9.163223, 45.586962], [9.16772, 45.586962], [9.16772, 45.582465], [9.163223, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.586962], [9.163223, 45.591458], [9.16772, 45.591458], [9.16772, 45.586962], [9.163223, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.591458], [9.163223, 45.595955], [9.16772, 45.595955], [9.16772, 45.591458], [9.163223, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.595955], [9.163223, 45.600451], [9.16772, 45.600451], [9.16772, 45.595955], [9.163223, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.600451], [9.163223, 45.604948], [9.16772, 45.604948], [9.16772, 45.600451], [9.163223, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.604948], [9.163223, 45.609445], [9.16772, 45.609445], [9.16772, 45.604948], [9.163223, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.609445], [9.163223, 45.613941], [9.16772, 45.613941], [9.16772, 45.609445], [9.163223, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.613941], [9.163223, 45.618438], [9.16772, 45.618438], [9.16772, 45.613941], [9.163223, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.618438], [9.163223, 45.622934], [9.16772, 45.622934], [9.16772, 45.618438], [9.163223, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.622934], [9.163223, 45.627431], [9.16772, 45.627431], [9.16772, 45.622934], [9.163223, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.627431], [9.163223, 45.631928], [9.16772, 45.631928], [9.16772, 45.627431], [9.163223, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.163223, 45.631928], [9.163223, 45.636424], [9.16772, 45.636424], [9.16772, 45.631928], [9.163223, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.339648], [9.16772, 45.344145], [9.172216, 45.344145], [9.172216, 45.339648], [9.16772, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.344145], [9.16772, 45.348642], [9.172216, 45.348642], [9.172216, 45.344145], [9.16772, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.348642], [9.16772, 45.353138], [9.172216, 45.353138], [9.172216, 45.348642], [9.16772, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.353138], [9.16772, 45.357635], [9.172216, 45.357635], [9.172216, 45.353138], [9.16772, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.357635], [9.16772, 45.362131], [9.172216, 45.362131], [9.172216, 45.357635], [9.16772, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.362131], [9.16772, 45.366628], [9.172216, 45.366628], [9.172216, 45.362131], [9.16772, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.366628], [9.16772, 45.371125], [9.172216, 45.371125], [9.172216, 45.366628], [9.16772, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.371125], [9.16772, 45.375621], [9.172216, 45.375621], [9.172216, 45.371125], [9.16772, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.375621], [9.16772, 45.380118], [9.172216, 45.380118], [9.172216, 45.375621], [9.16772, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.380118], [9.16772, 45.384614], [9.172216, 45.384614], [9.172216, 45.380118], [9.16772, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.384614], [9.16772, 45.389111], [9.172216, 45.389111], [9.172216, 45.384614], [9.16772, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.389111], [9.16772, 45.393608], [9.172216, 45.393608], [9.172216, 45.389111], [9.16772, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.393608], [9.16772, 45.398104], [9.172216, 45.398104], [9.172216, 45.393608], [9.16772, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.398104], [9.16772, 45.402601], [9.172216, 45.402601], [9.172216, 45.398104], [9.16772, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.402601], [9.16772, 45.407097], [9.172216, 45.407097], [9.172216, 45.402601], [9.16772, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.407097], [9.16772, 45.411594], [9.172216, 45.411594], [9.172216, 45.407097], [9.16772, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.411594], [9.16772, 45.416091], [9.172216, 45.416091], [9.172216, 45.411594], [9.16772, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.416091], [9.16772, 45.420587], [9.172216, 45.420587], [9.172216, 45.416091], [9.16772, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.420587], [9.16772, 45.425084], [9.172216, 45.425084], [9.172216, 45.420587], [9.16772, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.425084], [9.16772, 45.42958], [9.172216, 45.42958], [9.172216, 45.425084], [9.16772, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.42958], [9.16772, 45.434077], [9.172216, 45.434077], [9.172216, 45.42958], [9.16772, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.434077], [9.16772, 45.438574], [9.172216, 45.438574], [9.172216, 45.434077], [9.16772, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.438574], [9.16772, 45.44307], [9.172216, 45.44307], [9.172216, 45.438574], [9.16772, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.44307], [9.16772, 45.447567], [9.172216, 45.447567], [9.172216, 45.44307], [9.16772, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.447567], [9.16772, 45.452063], [9.172216, 45.452063], [9.172216, 45.447567], [9.16772, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.452063], [9.16772, 45.45656], [9.172216, 45.45656], [9.172216, 45.452063], [9.16772, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.45656], [9.16772, 45.461057], [9.172216, 45.461057], [9.172216, 45.45656], [9.16772, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.461057], [9.16772, 45.465553], [9.172216, 45.465553], [9.172216, 45.461057], [9.16772, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.465553], [9.16772, 45.47005], [9.172216, 45.47005], [9.172216, 45.465553], [9.16772, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.47005], [9.16772, 45.474547], [9.172216, 45.474547], [9.172216, 45.47005], [9.16772, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.474547], [9.16772, 45.479043], [9.172216, 45.479043], [9.172216, 45.474547], [9.16772, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.479043], [9.16772, 45.48354], [9.172216, 45.48354], [9.172216, 45.479043], [9.16772, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.48354], [9.16772, 45.488036], [9.172216, 45.488036], [9.172216, 45.48354], [9.16772, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.488036], [9.16772, 45.492533], [9.172216, 45.492533], [9.172216, 45.488036], [9.16772, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.492533], [9.16772, 45.49703], [9.172216, 45.49703], [9.172216, 45.492533], [9.16772, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.49703], [9.16772, 45.501526], [9.172216, 45.501526], [9.172216, 45.49703], [9.16772, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.501526], [9.16772, 45.506023], [9.172216, 45.506023], [9.172216, 45.501526], [9.16772, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.506023], [9.16772, 45.510519], [9.172216, 45.510519], [9.172216, 45.506023], [9.16772, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.510519], [9.16772, 45.515016], [9.172216, 45.515016], [9.172216, 45.510519], [9.16772, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.515016], [9.16772, 45.519513], [9.172216, 45.519513], [9.172216, 45.515016], [9.16772, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.519513], [9.16772, 45.524009], [9.172216, 45.524009], [9.172216, 45.519513], [9.16772, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.524009], [9.16772, 45.528506], [9.172216, 45.528506], [9.172216, 45.524009], [9.16772, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.528506], [9.16772, 45.533002], [9.172216, 45.533002], [9.172216, 45.528506], [9.16772, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.533002], [9.16772, 45.537499], [9.172216, 45.537499], [9.172216, 45.533002], [9.16772, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#007df0", "fill": "#007df0", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.537499], [9.16772, 45.541996], [9.172216, 45.541996], [9.172216, 45.537499], [9.16772, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#007df0", "fill": "#007df0", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.541996], [9.16772, 45.546492], [9.172216, 45.546492], [9.172216, 45.541996], [9.16772, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.546492], [9.16772, 45.550989], [9.172216, 45.550989], [9.172216, 45.546492], [9.16772, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.550989], [9.16772, 45.555485], [9.172216, 45.555485], [9.172216, 45.550989], [9.16772, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.555485], [9.16772, 45.559982], [9.172216, 45.559982], [9.172216, 45.555485], [9.16772, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.559982], [9.16772, 45.564479], [9.172216, 45.564479], [9.172216, 45.559982], [9.16772, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.564479], [9.16772, 45.568975], [9.172216, 45.568975], [9.172216, 45.564479], [9.16772, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.568975], [9.16772, 45.573472], [9.172216, 45.573472], [9.172216, 45.568975], [9.16772, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.573472], [9.16772, 45.577968], [9.172216, 45.577968], [9.172216, 45.573472], [9.16772, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.577968], [9.16772, 45.582465], [9.172216, 45.582465], [9.172216, 45.577968], [9.16772, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.582465], [9.16772, 45.586962], [9.172216, 45.586962], [9.172216, 45.582465], [9.16772, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.586962], [9.16772, 45.591458], [9.172216, 45.591458], [9.172216, 45.586962], [9.16772, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.591458], [9.16772, 45.595955], [9.172216, 45.595955], [9.172216, 45.591458], [9.16772, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.595955], [9.16772, 45.600451], [9.172216, 45.600451], [9.172216, 45.595955], [9.16772, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.600451], [9.16772, 45.604948], [9.172216, 45.604948], [9.172216, 45.600451], [9.16772, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.604948], [9.16772, 45.609445], [9.172216, 45.609445], [9.172216, 45.604948], [9.16772, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.609445], [9.16772, 45.613941], [9.172216, 45.613941], [9.172216, 45.609445], [9.16772, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.613941], [9.16772, 45.618438], [9.172216, 45.618438], [9.172216, 45.613941], [9.16772, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.618438], [9.16772, 45.622934], [9.172216, 45.622934], [9.172216, 45.618438], [9.16772, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.622934], [9.16772, 45.627431], [9.172216, 45.627431], [9.172216, 45.622934], [9.16772, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.627431], [9.16772, 45.631928], [9.172216, 45.631928], [9.172216, 45.627431], [9.16772, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.16772, 45.631928], [9.16772, 45.636424], [9.172216, 45.636424], [9.172216, 45.631928], [9.16772, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.339648], [9.172216, 45.344145], [9.176713, 45.344145], [9.176713, 45.339648], [9.172216, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.344145], [9.172216, 45.348642], [9.176713, 45.348642], [9.176713, 45.344145], [9.172216, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.348642], [9.172216, 45.353138], [9.176713, 45.353138], [9.176713, 45.348642], [9.172216, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.353138], [9.172216, 45.357635], [9.176713, 45.357635], [9.176713, 45.353138], [9.172216, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.357635], [9.172216, 45.362131], [9.176713, 45.362131], [9.176713, 45.357635], [9.172216, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.362131], [9.172216, 45.366628], [9.176713, 45.366628], [9.176713, 45.362131], [9.172216, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.366628], [9.172216, 45.371125], [9.176713, 45.371125], [9.176713, 45.366628], [9.172216, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.371125], [9.172216, 45.375621], [9.176713, 45.375621], [9.176713, 45.371125], [9.172216, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.375621], [9.172216, 45.380118], [9.176713, 45.380118], [9.176713, 45.375621], [9.172216, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.380118], [9.172216, 45.384614], [9.176713, 45.384614], [9.176713, 45.380118], [9.172216, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.384614], [9.172216, 45.389111], [9.176713, 45.389111], [9.176713, 45.384614], [9.172216, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.389111], [9.172216, 45.393608], [9.176713, 45.393608], [9.176713, 45.389111], [9.172216, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.393608], [9.172216, 45.398104], [9.176713, 45.398104], [9.176713, 45.393608], [9.172216, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.398104], [9.172216, 45.402601], [9.176713, 45.402601], [9.176713, 45.398104], [9.172216, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.402601], [9.172216, 45.407097], [9.176713, 45.407097], [9.176713, 45.402601], [9.172216, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.407097], [9.172216, 45.411594], [9.176713, 45.411594], [9.176713, 45.407097], [9.172216, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.411594], [9.172216, 45.416091], [9.176713, 45.416091], [9.176713, 45.411594], [9.172216, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.416091], [9.172216, 45.420587], [9.176713, 45.420587], [9.176713, 45.416091], [9.172216, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.420587], [9.172216, 45.425084], [9.176713, 45.425084], [9.176713, 45.420587], [9.172216, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.425084], [9.172216, 45.42958], [9.176713, 45.42958], [9.176713, 45.425084], [9.172216, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.42958], [9.172216, 45.434077], [9.176713, 45.434077], [9.176713, 45.42958], [9.172216, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.434077], [9.172216, 45.438574], [9.176713, 45.438574], [9.176713, 45.434077], [9.172216, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.438574], [9.172216, 45.44307], [9.176713, 45.44307], [9.176713, 45.438574], [9.172216, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.44307], [9.172216, 45.447567], [9.176713, 45.447567], [9.176713, 45.44307], [9.172216, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.447567], [9.172216, 45.452063], [9.176713, 45.452063], [9.176713, 45.447567], [9.172216, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.452063], [9.172216, 45.45656], [9.176713, 45.45656], [9.176713, 45.452063], [9.172216, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.45656], [9.172216, 45.461057], [9.176713, 45.461057], [9.176713, 45.45656], [9.172216, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.461057], [9.172216, 45.465553], [9.176713, 45.465553], [9.176713, 45.461057], [9.172216, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.465553], [9.172216, 45.47005], [9.176713, 45.47005], [9.176713, 45.465553], [9.172216, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.47005], [9.172216, 45.474547], [9.176713, 45.474547], [9.176713, 45.47005], [9.172216, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.474547], [9.172216, 45.479043], [9.176713, 45.479043], [9.176713, 45.474547], [9.172216, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.479043], [9.172216, 45.48354], [9.176713, 45.48354], [9.176713, 45.479043], [9.172216, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.48354], [9.172216, 45.488036], [9.176713, 45.488036], [9.176713, 45.48354], [9.172216, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.488036], [9.172216, 45.492533], [9.176713, 45.492533], [9.176713, 45.488036], [9.172216, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.492533], [9.172216, 45.49703], [9.176713, 45.49703], [9.176713, 45.492533], [9.172216, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 16, "stroke": "#cce7ff", "fill": "#cce7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.49703], [9.172216, 45.501526], [9.176713, 45.501526], [9.176713, 45.49703], [9.172216, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.501526], [9.172216, 45.506023], [9.176713, 45.506023], [9.176713, 45.501526], [9.172216, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.506023], [9.172216, 45.510519], [9.176713, 45.510519], [9.176713, 45.506023], [9.172216, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.510519], [9.172216, 45.515016], [9.176713, 45.515016], [9.176713, 45.510519], [9.172216, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.515016], [9.172216, 45.519513], [9.176713, 45.519513], [9.176713, 45.515016], [9.172216, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.519513], [9.172216, 45.524009], [9.176713, 45.524009], [9.176713, 45.519513], [9.172216, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.524009], [9.172216, 45.528506], [9.176713, 45.528506], [9.176713, 45.524009], [9.172216, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.528506], [9.172216, 45.533002], [9.176713, 45.533002], [9.176713, 45.528506], [9.172216, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 38, "stroke": "#0078e6", "fill": "#0078e6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.533002], [9.172216, 45.537499], [9.176713, 45.537499], [9.176713, 45.533002], [9.172216, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 38, "stroke": "#0078e6", "fill": "#0078e6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.537499], [9.172216, 45.541996], [9.176713, 45.541996], [9.176713, 45.537499], [9.172216, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 38, "stroke": "#0078e6", "fill": "#0078e6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.541996], [9.172216, 45.546492], [9.176713, 45.546492], [9.176713, 45.541996], [9.172216, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#007df0", "fill": "#007df0", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.546492], [9.172216, 45.550989], [9.176713, 45.550989], [9.176713, 45.546492], [9.172216, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.550989], [9.172216, 45.555485], [9.176713, 45.555485], [9.176713, 45.550989], [9.172216, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.555485], [9.172216, 45.559982], [9.176713, 45.559982], [9.176713, 45.555485], [9.172216, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.559982], [9.172216, 45.564479], [9.176713, 45.564479], [9.176713, 45.559982], [9.172216, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.564479], [9.172216, 45.568975], [9.176713, 45.568975], [9.176713, 45.564479], [9.172216, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.568975], [9.172216, 45.573472], [9.176713, 45.573472], [9.176713, 45.568975], [9.172216, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.573472], [9.172216, 45.577968], [9.176713, 45.577968], [9.176713, 45.573472], [9.172216, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.577968], [9.172216, 45.582465], [9.176713, 45.582465], [9.176713, 45.577968], [9.172216, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.582465], [9.172216, 45.586962], [9.176713, 45.586962], [9.176713, 45.582465], [9.172216, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.586962], [9.172216, 45.591458], [9.176713, 45.591458], [9.176713, 45.586962], [9.172216, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.591458], [9.172216, 45.595955], [9.176713, 45.595955], [9.176713, 45.591458], [9.172216, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.595955], [9.172216, 45.600451], [9.176713, 45.600451], [9.176713, 45.595955], [9.172216, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.600451], [9.172216, 45.604948], [9.176713, 45.604948], [9.176713, 45.600451], [9.172216, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.604948], [9.172216, 45.609445], [9.176713, 45.609445], [9.176713, 45.604948], [9.172216, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.609445], [9.172216, 45.613941], [9.176713, 45.613941], [9.176713, 45.609445], [9.172216, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.613941], [9.172216, 45.618438], [9.176713, 45.618438], [9.176713, 45.613941], [9.172216, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.618438], [9.172216, 45.622934], [9.176713, 45.622934], [9.176713, 45.618438], [9.172216, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.622934], [9.172216, 45.627431], [9.176713, 45.627431], [9.176713, 45.622934], [9.172216, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.627431], [9.172216, 45.631928], [9.176713, 45.631928], [9.176713, 45.627431], [9.172216, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.172216, 45.631928], [9.172216, 45.636424], [9.176713, 45.636424], [9.176713, 45.631928], [9.172216, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.339648], [9.176713, 45.344145], [9.18121, 45.344145], [9.18121, 45.339648], [9.176713, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.344145], [9.176713, 45.348642], [9.18121, 45.348642], [9.18121, 45.344145], [9.176713, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.348642], [9.176713, 45.353138], [9.18121, 45.353138], [9.18121, 45.348642], [9.176713, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.353138], [9.176713, 45.357635], [9.18121, 45.357635], [9.18121, 45.353138], [9.176713, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.357635], [9.176713, 45.362131], [9.18121, 45.362131], [9.18121, 45.357635], [9.176713, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.362131], [9.176713, 45.366628], [9.18121, 45.366628], [9.18121, 45.362131], [9.176713, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.366628], [9.176713, 45.371125], [9.18121, 45.371125], [9.18121, 45.366628], [9.176713, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.371125], [9.176713, 45.375621], [9.18121, 45.375621], [9.18121, 45.371125], [9.176713, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.375621], [9.176713, 45.380118], [9.18121, 45.380118], [9.18121, 45.375621], [9.176713, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.380118], [9.176713, 45.384614], [9.18121, 45.384614], [9.18121, 45.380118], [9.176713, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.384614], [9.176713, 45.389111], [9.18121, 45.389111], [9.18121, 45.384614], [9.176713, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.389111], [9.176713, 45.393608], [9.18121, 45.393608], [9.18121, 45.389111], [9.176713, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.393608], [9.176713, 45.398104], [9.18121, 45.398104], [9.18121, 45.393608], [9.176713, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.398104], [9.176713, 45.402601], [9.18121, 45.402601], [9.18121, 45.398104], [9.176713, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.402601], [9.176713, 45.407097], [9.18121, 45.407097], [9.18121, 45.402601], [9.176713, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.407097], [9.176713, 45.411594], [9.18121, 45.411594], [9.18121, 45.407097], [9.176713, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.411594], [9.176713, 45.416091], [9.18121, 45.416091], [9.18121, 45.411594], [9.176713, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.416091], [9.176713, 45.420587], [9.18121, 45.420587], [9.18121, 45.416091], [9.176713, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.420587], [9.176713, 45.425084], [9.18121, 45.425084], [9.18121, 45.420587], [9.176713, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.425084], [9.176713, 45.42958], [9.18121, 45.42958], [9.18121, 45.425084], [9.176713, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.42958], [9.176713, 45.434077], [9.18121, 45.434077], [9.18121, 45.42958], [9.176713, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.434077], [9.176713, 45.438574], [9.18121, 45.438574], [9.18121, 45.434077], [9.176713, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.438574], [9.176713, 45.44307], [9.18121, 45.44307], [9.18121, 45.438574], [9.176713, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.44307], [9.176713, 45.447567], [9.18121, 45.447567], [9.18121, 45.44307], [9.176713, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.447567], [9.176713, 45.452063], [9.18121, 45.452063], [9.18121, 45.447567], [9.176713, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.452063], [9.176713, 45.45656], [9.18121, 45.45656], [9.18121, 45.452063], [9.176713, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.45656], [9.176713, 45.461057], [9.18121, 45.461057], [9.18121, 45.45656], [9.176713, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.461057], [9.176713, 45.465553], [9.18121, 45.465553], [9.18121, 45.461057], [9.176713, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.465553], [9.176713, 45.47005], [9.18121, 45.47005], [9.18121, 45.465553], [9.176713, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.47005], [9.176713, 45.474547], [9.18121, 45.474547], [9.18121, 45.47005], [9.176713, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.474547], [9.176713, 45.479043], [9.18121, 45.479043], [9.18121, 45.474547], [9.176713, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.479043], [9.176713, 45.48354], [9.18121, 45.48354], [9.18121, 45.479043], [9.176713, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.48354], [9.176713, 45.488036], [9.18121, 45.488036], [9.18121, 45.48354], [9.176713, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.488036], [9.176713, 45.492533], [9.18121, 45.492533], [9.18121, 45.488036], [9.176713, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.492533], [9.176713, 45.49703], [9.18121, 45.49703], [9.18121, 45.492533], [9.176713, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.49703], [9.176713, 45.501526], [9.18121, 45.501526], [9.18121, 45.49703], [9.176713, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.501526], [9.176713, 45.506023], [9.18121, 45.506023], [9.18121, 45.501526], [9.176713, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.506023], [9.176713, 45.510519], [9.18121, 45.510519], [9.18121, 45.506023], [9.176713, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.510519], [9.176713, 45.515016], [9.18121, 45.515016], [9.18121, 45.510519], [9.176713, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.515016], [9.176713, 45.519513], [9.18121, 45.519513], [9.18121, 45.515016], [9.176713, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.519513], [9.176713, 45.524009], [9.18121, 45.524009], [9.18121, 45.519513], [9.176713, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.524009], [9.176713, 45.528506], [9.18121, 45.528506], [9.18121, 45.524009], [9.176713, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 38, "stroke": "#0078e6", "fill": "#0078e6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.528506], [9.176713, 45.533002], [9.18121, 45.533002], [9.18121, 45.528506], [9.176713, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 40, "stroke": "#006dd1", "fill": "#006dd1", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.533002], [9.176713, 45.537499], [9.18121, 45.537499], [9.18121, 45.533002], [9.176713, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 41, "stroke": "#0068c7", "fill": "#0068c7", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.537499], [9.176713, 45.541996], [9.18121, 45.541996], [9.18121, 45.537499], [9.176713, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 40, "stroke": "#006dd1", "fill": "#006dd1", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.541996], [9.176713, 45.546492], [9.18121, 45.546492], [9.18121, 45.541996], [9.176713, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 39, "stroke": "#0072db", "fill": "#0072db", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.546492], [9.176713, 45.550989], [9.18121, 45.550989], [9.18121, 45.546492], [9.176713, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#007df0", "fill": "#007df0", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.550989], [9.176713, 45.555485], [9.18121, 45.555485], [9.18121, 45.550989], [9.176713, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.555485], [9.176713, 45.559982], [9.18121, 45.559982], [9.18121, 45.555485], [9.176713, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.559982], [9.176713, 45.564479], [9.18121, 45.564479], [9.18121, 45.559982], [9.176713, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.564479], [9.176713, 45.568975], [9.18121, 45.568975], [9.18121, 45.564479], [9.176713, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.568975], [9.176713, 45.573472], [9.18121, 45.573472], [9.18121, 45.568975], [9.176713, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.573472], [9.176713, 45.577968], [9.18121, 45.577968], [9.18121, 45.573472], [9.176713, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.577968], [9.176713, 45.582465], [9.18121, 45.582465], [9.18121, 45.577968], [9.176713, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.582465], [9.176713, 45.586962], [9.18121, 45.586962], [9.18121, 45.582465], [9.176713, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.586962], [9.176713, 45.591458], [9.18121, 45.591458], [9.18121, 45.586962], [9.176713, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.591458], [9.176713, 45.595955], [9.18121, 45.595955], [9.18121, 45.591458], [9.176713, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.595955], [9.176713, 45.600451], [9.18121, 45.600451], [9.18121, 45.595955], [9.176713, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.600451], [9.176713, 45.604948], [9.18121, 45.604948], [9.18121, 45.600451], [9.176713, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.604948], [9.176713, 45.609445], [9.18121, 45.609445], [9.18121, 45.604948], [9.176713, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.609445], [9.176713, 45.613941], [9.18121, 45.613941], [9.18121, 45.609445], [9.176713, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.613941], [9.176713, 45.618438], [9.18121, 45.618438], [9.18121, 45.613941], [9.176713, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.618438], [9.176713, 45.622934], [9.18121, 45.622934], [9.18121, 45.618438], [9.176713, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.622934], [9.176713, 45.627431], [9.18121, 45.627431], [9.18121, 45.622934], [9.176713, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.627431], [9.176713, 45.631928], [9.18121, 45.631928], [9.18121, 45.627431], [9.176713, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176713, 45.631928], [9.176713, 45.636424], [9.18121, 45.636424], [9.18121, 45.631928], [9.176713, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.339648], [9.18121, 45.344145], [9.185706, 45.344145], [9.185706, 45.339648], [9.18121, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.344145], [9.18121, 45.348642], [9.185706, 45.348642], [9.185706, 45.344145], [9.18121, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.348642], [9.18121, 45.353138], [9.185706, 45.353138], [9.185706, 45.348642], [9.18121, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.353138], [9.18121, 45.357635], [9.185706, 45.357635], [9.185706, 45.353138], [9.18121, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.357635], [9.18121, 45.362131], [9.185706, 45.362131], [9.185706, 45.357635], [9.18121, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.362131], [9.18121, 45.366628], [9.185706, 45.366628], [9.185706, 45.362131], [9.18121, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.366628], [9.18121, 45.371125], [9.185706, 45.371125], [9.185706, 45.366628], [9.18121, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.371125], [9.18121, 45.375621], [9.185706, 45.375621], [9.185706, 45.371125], [9.18121, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.375621], [9.18121, 45.380118], [9.185706, 45.380118], [9.185706, 45.375621], [9.18121, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.380118], [9.18121, 45.384614], [9.185706, 45.384614], [9.185706, 45.380118], [9.18121, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.384614], [9.18121, 45.389111], [9.185706, 45.389111], [9.185706, 45.384614], [9.18121, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.389111], [9.18121, 45.393608], [9.185706, 45.393608], [9.185706, 45.389111], [9.18121, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.393608], [9.18121, 45.398104], [9.185706, 45.398104], [9.185706, 45.393608], [9.18121, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.398104], [9.18121, 45.402601], [9.185706, 45.402601], [9.185706, 45.398104], [9.18121, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.402601], [9.18121, 45.407097], [9.185706, 45.407097], [9.185706, 45.402601], [9.18121, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.407097], [9.18121, 45.411594], [9.185706, 45.411594], [9.185706, 45.407097], [9.18121, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.411594], [9.18121, 45.416091], [9.185706, 45.416091], [9.185706, 45.411594], [9.18121, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.416091], [9.18121, 45.420587], [9.185706, 45.420587], [9.185706, 45.416091], [9.18121, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.420587], [9.18121, 45.425084], [9.185706, 45.425084], [9.185706, 45.420587], [9.18121, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.425084], [9.18121, 45.42958], [9.185706, 45.42958], [9.185706, 45.425084], [9.18121, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.42958], [9.18121, 45.434077], [9.185706, 45.434077], [9.185706, 45.42958], [9.18121, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.434077], [9.18121, 45.438574], [9.185706, 45.438574], [9.185706, 45.434077], [9.18121, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.438574], [9.18121, 45.44307], [9.185706, 45.44307], [9.185706, 45.438574], [9.18121, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.44307], [9.18121, 45.447567], [9.185706, 45.447567], [9.185706, 45.44307], [9.18121, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.447567], [9.18121, 45.452063], [9.185706, 45.452063], [9.185706, 45.447567], [9.18121, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.452063], [9.18121, 45.45656], [9.185706, 45.45656], [9.185706, 45.452063], [9.18121, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.45656], [9.18121, 45.461057], [9.185706, 45.461057], [9.185706, 45.45656], [9.18121, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.461057], [9.18121, 45.465553], [9.185706, 45.465553], [9.185706, 45.461057], [9.18121, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.465553], [9.18121, 45.47005], [9.185706, 45.47005], [9.185706, 45.465553], [9.18121, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.47005], [9.18121, 45.474547], [9.185706, 45.474547], [9.185706, 45.47005], [9.18121, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.474547], [9.18121, 45.479043], [9.185706, 45.479043], [9.185706, 45.474547], [9.18121, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.479043], [9.18121, 45.48354], [9.185706, 45.48354], [9.185706, 45.479043], [9.18121, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.48354], [9.18121, 45.488036], [9.185706, 45.488036], [9.185706, 45.48354], [9.18121, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.488036], [9.18121, 45.492533], [9.185706, 45.492533], [9.185706, 45.488036], [9.18121, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.492533], [9.18121, 45.49703], [9.185706, 45.49703], [9.185706, 45.492533], [9.18121, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.49703], [9.18121, 45.501526], [9.185706, 45.501526], [9.185706, 45.49703], [9.18121, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.501526], [9.18121, 45.506023], [9.185706, 45.506023], [9.185706, 45.501526], [9.18121, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.506023], [9.18121, 45.510519], [9.185706, 45.510519], [9.185706, 45.506023], [9.18121, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.510519], [9.18121, 45.515016], [9.185706, 45.515016], [9.185706, 45.510519], [9.18121, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.515016], [9.18121, 45.519513], [9.185706, 45.519513], [9.185706, 45.515016], [9.18121, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.519513], [9.18121, 45.524009], [9.185706, 45.524009], [9.185706, 45.519513], [9.18121, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#007df0", "fill": "#007df0", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.524009], [9.18121, 45.528506], [9.185706, 45.528506], [9.185706, 45.524009], [9.18121, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 41, "stroke": "#0068c7", "fill": "#0068c7", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.528506], [9.18121, 45.533002], [9.185706, 45.533002], [9.185706, 45.528506], [9.18121, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 44, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.533002], [9.18121, 45.537499], [9.185706, 45.537499], [9.185706, 45.533002], [9.18121, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 44, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.537499], [9.18121, 45.541996], [9.185706, 45.541996], [9.185706, 45.537499], [9.18121, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 42, "stroke": "#0062bd", "fill": "#0062bd", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.541996], [9.18121, 45.546492], [9.185706, 45.546492], [9.185706, 45.541996], [9.18121, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 40, "stroke": "#006dd1", "fill": "#006dd1", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.546492], [9.18121, 45.550989], [9.185706, 45.550989], [9.185706, 45.546492], [9.18121, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 38, "stroke": "#0078e6", "fill": "#0078e6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.550989], [9.18121, 45.555485], [9.185706, 45.555485], [9.185706, 45.550989], [9.18121, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#007df0", "fill": "#007df0", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.555485], [9.18121, 45.559982], [9.185706, 45.559982], [9.185706, 45.555485], [9.18121, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.559982], [9.18121, 45.564479], [9.185706, 45.564479], [9.185706, 45.559982], [9.18121, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.564479], [9.18121, 45.568975], [9.185706, 45.568975], [9.185706, 45.564479], [9.18121, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.568975], [9.18121, 45.573472], [9.185706, 45.573472], [9.185706, 45.568975], [9.18121, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.573472], [9.18121, 45.577968], [9.185706, 45.577968], [9.185706, 45.573472], [9.18121, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.577968], [9.18121, 45.582465], [9.185706, 45.582465], [9.185706, 45.577968], [9.18121, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.582465], [9.18121, 45.586962], [9.185706, 45.586962], [9.185706, 45.582465], [9.18121, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.586962], [9.18121, 45.591458], [9.185706, 45.591458], [9.185706, 45.586962], [9.18121, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.591458], [9.18121, 45.595955], [9.185706, 45.595955], [9.185706, 45.591458], [9.18121, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.595955], [9.18121, 45.600451], [9.185706, 45.600451], [9.185706, 45.595955], [9.18121, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.600451], [9.18121, 45.604948], [9.185706, 45.604948], [9.185706, 45.600451], [9.18121, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.604948], [9.18121, 45.609445], [9.185706, 45.609445], [9.185706, 45.604948], [9.18121, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.609445], [9.18121, 45.613941], [9.185706, 45.613941], [9.185706, 45.609445], [9.18121, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.613941], [9.18121, 45.618438], [9.185706, 45.618438], [9.185706, 45.613941], [9.18121, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.618438], [9.18121, 45.622934], [9.185706, 45.622934], [9.185706, 45.618438], [9.18121, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.622934], [9.18121, 45.627431], [9.185706, 45.627431], [9.185706, 45.622934], [9.18121, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.627431], [9.18121, 45.631928], [9.185706, 45.631928], [9.185706, 45.627431], [9.18121, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.18121, 45.631928], [9.18121, 45.636424], [9.185706, 45.636424], [9.185706, 45.631928], [9.18121, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.339648], [9.185706, 45.344145], [9.190203, 45.344145], [9.190203, 45.339648], [9.185706, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.344145], [9.185706, 45.348642], [9.190203, 45.348642], [9.190203, 45.344145], [9.185706, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.348642], [9.185706, 45.353138], [9.190203, 45.353138], [9.190203, 45.348642], [9.185706, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.353138], [9.185706, 45.357635], [9.190203, 45.357635], [9.190203, 45.353138], [9.185706, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.357635], [9.185706, 45.362131], [9.190203, 45.362131], [9.190203, 45.357635], [9.185706, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.362131], [9.185706, 45.366628], [9.190203, 45.366628], [9.190203, 45.362131], [9.185706, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.366628], [9.185706, 45.371125], [9.190203, 45.371125], [9.190203, 45.366628], [9.185706, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.371125], [9.185706, 45.375621], [9.190203, 45.375621], [9.190203, 45.371125], [9.185706, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.375621], [9.185706, 45.380118], [9.190203, 45.380118], [9.190203, 45.375621], [9.185706, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.380118], [9.185706, 45.384614], [9.190203, 45.384614], [9.190203, 45.380118], [9.185706, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.384614], [9.185706, 45.389111], [9.190203, 45.389111], [9.190203, 45.384614], [9.185706, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.389111], [9.185706, 45.393608], [9.190203, 45.393608], [9.190203, 45.389111], [9.185706, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.393608], [9.185706, 45.398104], [9.190203, 45.398104], [9.190203, 45.393608], [9.185706, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.398104], [9.185706, 45.402601], [9.190203, 45.402601], [9.190203, 45.398104], [9.185706, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.402601], [9.185706, 45.407097], [9.190203, 45.407097], [9.190203, 45.402601], [9.185706, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.407097], [9.185706, 45.411594], [9.190203, 45.411594], [9.190203, 45.407097], [9.185706, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.411594], [9.185706, 45.416091], [9.190203, 45.416091], [9.190203, 45.411594], [9.185706, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.416091], [9.185706, 45.420587], [9.190203, 45.420587], [9.190203, 45.416091], [9.185706, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.420587], [9.185706, 45.425084], [9.190203, 45.425084], [9.190203, 45.420587], [9.185706, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.425084], [9.185706, 45.42958], [9.190203, 45.42958], [9.190203, 45.425084], [9.185706, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.42958], [9.185706, 45.434077], [9.190203, 45.434077], [9.190203, 45.42958], [9.185706, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.434077], [9.185706, 45.438574], [9.190203, 45.438574], [9.190203, 45.434077], [9.185706, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.438574], [9.185706, 45.44307], [9.190203, 45.44307], [9.190203, 45.438574], [9.185706, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.44307], [9.185706, 45.447567], [9.190203, 45.447567], [9.190203, 45.44307], [9.185706, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.447567], [9.185706, 45.452063], [9.190203, 45.452063], [9.190203, 45.447567], [9.185706, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.452063], [9.185706, 45.45656], [9.190203, 45.45656], [9.190203, 45.452063], [9.185706, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.45656], [9.185706, 45.461057], [9.190203, 45.461057], [9.190203, 45.45656], [9.185706, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.461057], [9.185706, 45.465553], [9.190203, 45.465553], [9.190203, 45.461057], [9.185706, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.465553], [9.185706, 45.47005], [9.190203, 45.47005], [9.190203, 45.465553], [9.185706, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.47005], [9.185706, 45.474547], [9.190203, 45.474547], [9.190203, 45.47005], [9.185706, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.474547], [9.185706, 45.479043], [9.190203, 45.479043], [9.190203, 45.474547], [9.185706, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.479043], [9.185706, 45.48354], [9.190203, 45.48354], [9.190203, 45.479043], [9.185706, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.48354], [9.185706, 45.488036], [9.190203, 45.488036], [9.190203, 45.48354], [9.185706, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.488036], [9.185706, 45.492533], [9.190203, 45.492533], [9.190203, 45.488036], [9.185706, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.492533], [9.185706, 45.49703], [9.190203, 45.49703], [9.190203, 45.492533], [9.185706, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.49703], [9.185706, 45.501526], [9.190203, 45.501526], [9.190203, 45.49703], [9.185706, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.501526], [9.185706, 45.506023], [9.190203, 45.506023], [9.190203, 45.501526], [9.185706, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.506023], [9.185706, 45.510519], [9.190203, 45.510519], [9.190203, 45.506023], [9.185706, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.510519], [9.185706, 45.515016], [9.190203, 45.515016], [9.190203, 45.510519], [9.185706, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.515016], [9.185706, 45.519513], [9.190203, 45.519513], [9.190203, 45.515016], [9.185706, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.519513], [9.185706, 45.524009], [9.190203, 45.524009], [9.190203, 45.519513], [9.185706, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 38, "stroke": "#0078e6", "fill": "#0078e6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.524009], [9.185706, 45.528506], [9.190203, 45.528506], [9.190203, 45.524009], [9.185706, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 43, "stroke": "#005db3", "fill": "#005db3", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.528506], [9.185706, 45.533002], [9.190203, 45.533002], [9.190203, 45.528506], [9.185706, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 49, "stroke": "#003b70", "fill": "#003b70", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.533002], [9.185706, 45.537499], [9.190203, 45.537499], [9.190203, 45.533002], [9.185706, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 49, "stroke": "#003b70", "fill": "#003b70", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.537499], [9.185706, 45.541996], [9.190203, 45.541996], [9.190203, 45.537499], [9.185706, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 45, "stroke": "#00529e", "fill": "#00529e", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.541996], [9.185706, 45.546492], [9.190203, 45.546492], [9.190203, 45.541996], [9.185706, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 41, "stroke": "#0068c7", "fill": "#0068c7", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.546492], [9.185706, 45.550989], [9.190203, 45.550989], [9.190203, 45.546492], [9.185706, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 39, "stroke": "#0072db", "fill": "#0072db", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.550989], [9.185706, 45.555485], [9.190203, 45.555485], [9.190203, 45.550989], [9.185706, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#007df0", "fill": "#007df0", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.555485], [9.185706, 45.559982], [9.190203, 45.559982], [9.190203, 45.555485], [9.185706, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.559982], [9.185706, 45.564479], [9.190203, 45.564479], [9.190203, 45.559982], [9.185706, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.564479], [9.185706, 45.568975], [9.190203, 45.568975], [9.190203, 45.564479], [9.185706, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.568975], [9.185706, 45.573472], [9.190203, 45.573472], [9.190203, 45.568975], [9.185706, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.573472], [9.185706, 45.577968], [9.190203, 45.577968], [9.190203, 45.573472], [9.185706, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.577968], [9.185706, 45.582465], [9.190203, 45.582465], [9.190203, 45.577968], [9.185706, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.582465], [9.185706, 45.586962], [9.190203, 45.586962], [9.190203, 45.582465], [9.185706, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.586962], [9.185706, 45.591458], [9.190203, 45.591458], [9.190203, 45.586962], [9.185706, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.591458], [9.185706, 45.595955], [9.190203, 45.595955], [9.190203, 45.591458], [9.185706, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.595955], [9.185706, 45.600451], [9.190203, 45.600451], [9.190203, 45.595955], [9.185706, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.600451], [9.185706, 45.604948], [9.190203, 45.604948], [9.190203, 45.600451], [9.185706, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.604948], [9.185706, 45.609445], [9.190203, 45.609445], [9.190203, 45.604948], [9.185706, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.609445], [9.185706, 45.613941], [9.190203, 45.613941], [9.190203, 45.609445], [9.185706, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.613941], [9.185706, 45.618438], [9.190203, 45.618438], [9.190203, 45.613941], [9.185706, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.618438], [9.185706, 45.622934], [9.190203, 45.622934], [9.190203, 45.618438], [9.185706, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.622934], [9.185706, 45.627431], [9.190203, 45.627431], [9.190203, 45.622934], [9.185706, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.627431], [9.185706, 45.631928], [9.190203, 45.631928], [9.190203, 45.627431], [9.185706, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185706, 45.631928], [9.185706, 45.636424], [9.190203, 45.636424], [9.190203, 45.631928], [9.185706, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.339648], [9.190203, 45.344145], [9.194699, 45.344145], [9.194699, 45.339648], [9.190203, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.344145], [9.190203, 45.348642], [9.194699, 45.348642], [9.194699, 45.344145], [9.190203, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.348642], [9.190203, 45.353138], [9.194699, 45.353138], [9.194699, 45.348642], [9.190203, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.353138], [9.190203, 45.357635], [9.194699, 45.357635], [9.194699, 45.353138], [9.190203, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.357635], [9.190203, 45.362131], [9.194699, 45.362131], [9.194699, 45.357635], [9.190203, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.362131], [9.190203, 45.366628], [9.194699, 45.366628], [9.194699, 45.362131], [9.190203, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.366628], [9.190203, 45.371125], [9.194699, 45.371125], [9.194699, 45.366628], [9.190203, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.371125], [9.190203, 45.375621], [9.194699, 45.375621], [9.194699, 45.371125], [9.190203, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.375621], [9.190203, 45.380118], [9.194699, 45.380118], [9.194699, 45.375621], [9.190203, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.380118], [9.190203, 45.384614], [9.194699, 45.384614], [9.194699, 45.380118], [9.190203, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.384614], [9.190203, 45.389111], [9.194699, 45.389111], [9.194699, 45.384614], [9.190203, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.389111], [9.190203, 45.393608], [9.194699, 45.393608], [9.194699, 45.389111], [9.190203, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.393608], [9.190203, 45.398104], [9.194699, 45.398104], [9.194699, 45.393608], [9.190203, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.398104], [9.190203, 45.402601], [9.194699, 45.402601], [9.194699, 45.398104], [9.190203, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.402601], [9.190203, 45.407097], [9.194699, 45.407097], [9.194699, 45.402601], [9.190203, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.407097], [9.190203, 45.411594], [9.194699, 45.411594], [9.194699, 45.407097], [9.190203, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.411594], [9.190203, 45.416091], [9.194699, 45.416091], [9.194699, 45.411594], [9.190203, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.416091], [9.190203, 45.420587], [9.194699, 45.420587], [9.194699, 45.416091], [9.190203, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.420587], [9.190203, 45.425084], [9.194699, 45.425084], [9.194699, 45.420587], [9.190203, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.425084], [9.190203, 45.42958], [9.194699, 45.42958], [9.194699, 45.425084], [9.190203, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.42958], [9.190203, 45.434077], [9.194699, 45.434077], [9.194699, 45.42958], [9.190203, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.434077], [9.190203, 45.438574], [9.194699, 45.438574], [9.194699, 45.434077], [9.190203, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.438574], [9.190203, 45.44307], [9.194699, 45.44307], [9.194699, 45.438574], [9.190203, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.44307], [9.190203, 45.447567], [9.194699, 45.447567], [9.194699, 45.44307], [9.190203, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.447567], [9.190203, 45.452063], [9.194699, 45.452063], [9.194699, 45.447567], [9.190203, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.452063], [9.190203, 45.45656], [9.194699, 45.45656], [9.194699, 45.452063], [9.190203, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.45656], [9.190203, 45.461057], [9.194699, 45.461057], [9.194699, 45.45656], [9.190203, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.461057], [9.190203, 45.465553], [9.194699, 45.465553], [9.194699, 45.461057], [9.190203, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.465553], [9.190203, 45.47005], [9.194699, 45.47005], [9.194699, 45.465553], [9.190203, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.47005], [9.190203, 45.474547], [9.194699, 45.474547], [9.194699, 45.47005], [9.190203, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.474547], [9.190203, 45.479043], [9.194699, 45.479043], [9.194699, 45.474547], [9.190203, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.479043], [9.190203, 45.48354], [9.194699, 45.48354], [9.194699, 45.479043], [9.190203, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.48354], [9.190203, 45.488036], [9.194699, 45.488036], [9.194699, 45.48354], [9.190203, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.488036], [9.190203, 45.492533], [9.194699, 45.492533], [9.194699, 45.488036], [9.190203, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.492533], [9.190203, 45.49703], [9.194699, 45.49703], [9.194699, 45.492533], [9.190203, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.49703], [9.190203, 45.501526], [9.194699, 45.501526], [9.194699, 45.49703], [9.190203, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.501526], [9.190203, 45.506023], [9.194699, 45.506023], [9.194699, 45.501526], [9.190203, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.506023], [9.190203, 45.510519], [9.194699, 45.510519], [9.194699, 45.506023], [9.190203, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.510519], [9.190203, 45.515016], [9.194699, 45.515016], [9.194699, 45.510519], [9.190203, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.515016], [9.190203, 45.519513], [9.194699, 45.519513], [9.194699, 45.515016], [9.190203, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.519513], [9.190203, 45.524009], [9.194699, 45.524009], [9.194699, 45.519513], [9.190203, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 39, "stroke": "#0072db", "fill": "#0072db", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.524009], [9.190203, 45.528506], [9.194699, 45.528506], [9.194699, 45.524009], [9.190203, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 46, "stroke": "#004d94", "fill": "#004d94", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.528506], [9.190203, 45.533002], [9.194699, 45.533002], [9.194699, 45.528506], [9.190203, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 57, "stroke": "#00101f", "fill": "#00101f", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.533002], [9.190203, 45.537499], [9.194699, 45.537499], [9.194699, 45.533002], [9.190203, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 55, "stroke": "#001b33", "fill": "#001b33", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.537499], [9.190203, 45.541996], [9.194699, 45.541996], [9.194699, 45.537499], [9.190203, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 46, "stroke": "#004d94", "fill": "#004d94", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.541996], [9.190203, 45.546492], [9.194699, 45.546492], [9.194699, 45.541996], [9.190203, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 42, "stroke": "#0062bd", "fill": "#0062bd", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.546492], [9.190203, 45.550989], [9.194699, 45.550989], [9.194699, 45.546492], [9.190203, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 39, "stroke": "#0072db", "fill": "#0072db", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.550989], [9.190203, 45.555485], [9.194699, 45.555485], [9.194699, 45.550989], [9.190203, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#007df0", "fill": "#007df0", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.555485], [9.190203, 45.559982], [9.194699, 45.559982], [9.194699, 45.555485], [9.190203, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.559982], [9.190203, 45.564479], [9.194699, 45.564479], [9.194699, 45.559982], [9.190203, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.564479], [9.190203, 45.568975], [9.194699, 45.568975], [9.194699, 45.564479], [9.190203, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.568975], [9.190203, 45.573472], [9.194699, 45.573472], [9.194699, 45.568975], [9.190203, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.573472], [9.190203, 45.577968], [9.194699, 45.577968], [9.194699, 45.573472], [9.190203, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.577968], [9.190203, 45.582465], [9.194699, 45.582465], [9.194699, 45.577968], [9.190203, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.582465], [9.190203, 45.586962], [9.194699, 45.586962], [9.194699, 45.582465], [9.190203, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.586962], [9.190203, 45.591458], [9.194699, 45.591458], [9.194699, 45.586962], [9.190203, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.591458], [9.190203, 45.595955], [9.194699, 45.595955], [9.194699, 45.591458], [9.190203, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.595955], [9.190203, 45.600451], [9.194699, 45.600451], [9.194699, 45.595955], [9.190203, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.600451], [9.190203, 45.604948], [9.194699, 45.604948], [9.194699, 45.600451], [9.190203, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.604948], [9.190203, 45.609445], [9.194699, 45.609445], [9.194699, 45.604948], [9.190203, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.609445], [9.190203, 45.613941], [9.194699, 45.613941], [9.194699, 45.609445], [9.190203, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.613941], [9.190203, 45.618438], [9.194699, 45.618438], [9.194699, 45.613941], [9.190203, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.618438], [9.190203, 45.622934], [9.194699, 45.622934], [9.194699, 45.618438], [9.190203, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.622934], [9.190203, 45.627431], [9.194699, 45.627431], [9.194699, 45.622934], [9.190203, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.627431], [9.190203, 45.631928], [9.194699, 45.631928], [9.194699, 45.627431], [9.190203, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.190203, 45.631928], [9.190203, 45.636424], [9.194699, 45.636424], [9.194699, 45.631928], [9.190203, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.339648], [9.194699, 45.344145], [9.199196, 45.344145], [9.199196, 45.339648], [9.194699, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.344145], [9.194699, 45.348642], [9.199196, 45.348642], [9.199196, 45.344145], [9.194699, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.348642], [9.194699, 45.353138], [9.199196, 45.353138], [9.199196, 45.348642], [9.194699, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.353138], [9.194699, 45.357635], [9.199196, 45.357635], [9.199196, 45.353138], [9.194699, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.357635], [9.194699, 45.362131], [9.199196, 45.362131], [9.199196, 45.357635], [9.194699, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.362131], [9.194699, 45.366628], [9.199196, 45.366628], [9.199196, 45.362131], [9.194699, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.366628], [9.194699, 45.371125], [9.199196, 45.371125], [9.199196, 45.366628], [9.194699, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.371125], [9.194699, 45.375621], [9.199196, 45.375621], [9.199196, 45.371125], [9.194699, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.375621], [9.194699, 45.380118], [9.199196, 45.380118], [9.199196, 45.375621], [9.194699, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.380118], [9.194699, 45.384614], [9.199196, 45.384614], [9.199196, 45.380118], [9.194699, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.384614], [9.194699, 45.389111], [9.199196, 45.389111], [9.199196, 45.384614], [9.194699, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.389111], [9.194699, 45.393608], [9.199196, 45.393608], [9.199196, 45.389111], [9.194699, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.393608], [9.194699, 45.398104], [9.199196, 45.398104], [9.199196, 45.393608], [9.194699, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.398104], [9.194699, 45.402601], [9.199196, 45.402601], [9.199196, 45.398104], [9.194699, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.402601], [9.194699, 45.407097], [9.199196, 45.407097], [9.199196, 45.402601], [9.194699, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.407097], [9.194699, 45.411594], [9.199196, 45.411594], [9.199196, 45.407097], [9.194699, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.411594], [9.194699, 45.416091], [9.199196, 45.416091], [9.199196, 45.411594], [9.194699, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.416091], [9.194699, 45.420587], [9.199196, 45.420587], [9.199196, 45.416091], [9.194699, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.420587], [9.194699, 45.425084], [9.199196, 45.425084], [9.199196, 45.420587], [9.194699, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.425084], [9.194699, 45.42958], [9.199196, 45.42958], [9.199196, 45.425084], [9.194699, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.42958], [9.194699, 45.434077], [9.199196, 45.434077], [9.199196, 45.42958], [9.194699, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.434077], [9.194699, 45.438574], [9.199196, 45.438574], [9.199196, 45.434077], [9.194699, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.438574], [9.194699, 45.44307], [9.199196, 45.44307], [9.199196, 45.438574], [9.194699, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.44307], [9.194699, 45.447567], [9.199196, 45.447567], [9.199196, 45.44307], [9.194699, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.447567], [9.194699, 45.452063], [9.199196, 45.452063], [9.199196, 45.447567], [9.194699, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.452063], [9.194699, 45.45656], [9.199196, 45.45656], [9.199196, 45.452063], [9.194699, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.45656], [9.194699, 45.461057], [9.199196, 45.461057], [9.199196, 45.45656], [9.194699, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.461057], [9.194699, 45.465553], [9.199196, 45.465553], [9.199196, 45.461057], [9.194699, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.465553], [9.194699, 45.47005], [9.199196, 45.47005], [9.199196, 45.465553], [9.194699, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.47005], [9.194699, 45.474547], [9.199196, 45.474547], [9.199196, 45.47005], [9.194699, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.474547], [9.194699, 45.479043], [9.199196, 45.479043], [9.199196, 45.474547], [9.194699, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.479043], [9.194699, 45.48354], [9.199196, 45.48354], [9.199196, 45.479043], [9.194699, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.48354], [9.194699, 45.488036], [9.199196, 45.488036], [9.199196, 45.48354], [9.194699, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.488036], [9.194699, 45.492533], [9.199196, 45.492533], [9.199196, 45.488036], [9.194699, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.492533], [9.194699, 45.49703], [9.199196, 45.49703], [9.199196, 45.492533], [9.194699, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.49703], [9.194699, 45.501526], [9.199196, 45.501526], [9.199196, 45.49703], [9.194699, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.501526], [9.194699, 45.506023], [9.199196, 45.506023], [9.199196, 45.501526], [9.194699, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.506023], [9.194699, 45.510519], [9.199196, 45.510519], [9.199196, 45.506023], [9.194699, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.510519], [9.194699, 45.515016], [9.199196, 45.515016], [9.199196, 45.510519], [9.194699, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.515016], [9.194699, 45.519513], [9.199196, 45.519513], [9.199196, 45.515016], [9.194699, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.519513], [9.194699, 45.524009], [9.199196, 45.524009], [9.199196, 45.519513], [9.194699, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 40, "stroke": "#006dd1", "fill": "#006dd1", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.524009], [9.194699, 45.528506], [9.199196, 45.528506], [9.199196, 45.524009], [9.194699, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 46, "stroke": "#004d94", "fill": "#004d94", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.528506], [9.194699, 45.533002], [9.199196, 45.533002], [9.199196, 45.528506], [9.194699, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 60, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.533002], [9.194699, 45.537499], [9.199196, 45.537499], [9.199196, 45.533002], [9.194699, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 56, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.537499], [9.194699, 45.541996], [9.199196, 45.541996], [9.199196, 45.537499], [9.194699, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 47, "stroke": "#00488a", "fill": "#00488a", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.541996], [9.194699, 45.546492], [9.199196, 45.546492], [9.199196, 45.541996], [9.194699, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 42, "stroke": "#0062bd", "fill": "#0062bd", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.546492], [9.194699, 45.550989], [9.199196, 45.550989], [9.199196, 45.546492], [9.194699, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 39, "stroke": "#0072db", "fill": "#0072db", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.550989], [9.194699, 45.555485], [9.199196, 45.555485], [9.199196, 45.550989], [9.194699, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#007df0", "fill": "#007df0", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.555485], [9.194699, 45.559982], [9.199196, 45.559982], [9.199196, 45.555485], [9.194699, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.559982], [9.194699, 45.564479], [9.199196, 45.564479], [9.199196, 45.559982], [9.194699, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.564479], [9.194699, 45.568975], [9.199196, 45.568975], [9.199196, 45.564479], [9.194699, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.568975], [9.194699, 45.573472], [9.199196, 45.573472], [9.199196, 45.568975], [9.194699, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.573472], [9.194699, 45.577968], [9.199196, 45.577968], [9.199196, 45.573472], [9.194699, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.577968], [9.194699, 45.582465], [9.199196, 45.582465], [9.199196, 45.577968], [9.194699, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.582465], [9.194699, 45.586962], [9.199196, 45.586962], [9.199196, 45.582465], [9.194699, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.586962], [9.194699, 45.591458], [9.199196, 45.591458], [9.199196, 45.586962], [9.194699, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.591458], [9.194699, 45.595955], [9.199196, 45.595955], [9.199196, 45.591458], [9.194699, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.595955], [9.194699, 45.600451], [9.199196, 45.600451], [9.199196, 45.595955], [9.194699, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.600451], [9.194699, 45.604948], [9.199196, 45.604948], [9.199196, 45.600451], [9.194699, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.604948], [9.194699, 45.609445], [9.199196, 45.609445], [9.199196, 45.604948], [9.194699, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.609445], [9.194699, 45.613941], [9.199196, 45.613941], [9.199196, 45.609445], [9.194699, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.613941], [9.194699, 45.618438], [9.199196, 45.618438], [9.199196, 45.613941], [9.194699, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.618438], [9.194699, 45.622934], [9.199196, 45.622934], [9.199196, 45.618438], [9.194699, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.622934], [9.194699, 45.627431], [9.199196, 45.627431], [9.199196, 45.622934], [9.194699, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.627431], [9.194699, 45.631928], [9.199196, 45.631928], [9.199196, 45.627431], [9.194699, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194699, 45.631928], [9.194699, 45.636424], [9.199196, 45.636424], [9.199196, 45.631928], [9.194699, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.339648], [9.199196, 45.344145], [9.203693, 45.344145], [9.203693, 45.339648], [9.199196, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.344145], [9.199196, 45.348642], [9.203693, 45.348642], [9.203693, 45.344145], [9.199196, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.348642], [9.199196, 45.353138], [9.203693, 45.353138], [9.203693, 45.348642], [9.199196, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.353138], [9.199196, 45.357635], [9.203693, 45.357635], [9.203693, 45.353138], [9.199196, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.357635], [9.199196, 45.362131], [9.203693, 45.362131], [9.203693, 45.357635], [9.199196, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.362131], [9.199196, 45.366628], [9.203693, 45.366628], [9.203693, 45.362131], [9.199196, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.366628], [9.199196, 45.371125], [9.203693, 45.371125], [9.203693, 45.366628], [9.199196, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.371125], [9.199196, 45.375621], [9.203693, 45.375621], [9.203693, 45.371125], [9.199196, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.375621], [9.199196, 45.380118], [9.203693, 45.380118], [9.203693, 45.375621], [9.199196, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.380118], [9.199196, 45.384614], [9.203693, 45.384614], [9.203693, 45.380118], [9.199196, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.384614], [9.199196, 45.389111], [9.203693, 45.389111], [9.203693, 45.384614], [9.199196, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.389111], [9.199196, 45.393608], [9.203693, 45.393608], [9.203693, 45.389111], [9.199196, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.393608], [9.199196, 45.398104], [9.203693, 45.398104], [9.203693, 45.393608], [9.199196, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.398104], [9.199196, 45.402601], [9.203693, 45.402601], [9.203693, 45.398104], [9.199196, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.402601], [9.199196, 45.407097], [9.203693, 45.407097], [9.203693, 45.402601], [9.199196, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.407097], [9.199196, 45.411594], [9.203693, 45.411594], [9.203693, 45.407097], [9.199196, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.411594], [9.199196, 45.416091], [9.203693, 45.416091], [9.203693, 45.411594], [9.199196, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.416091], [9.199196, 45.420587], [9.203693, 45.420587], [9.203693, 45.416091], [9.199196, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.420587], [9.199196, 45.425084], [9.203693, 45.425084], [9.203693, 45.420587], [9.199196, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.425084], [9.199196, 45.42958], [9.203693, 45.42958], [9.203693, 45.425084], [9.199196, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.42958], [9.199196, 45.434077], [9.203693, 45.434077], [9.203693, 45.42958], [9.199196, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.434077], [9.199196, 45.438574], [9.203693, 45.438574], [9.203693, 45.434077], [9.199196, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.438574], [9.199196, 45.44307], [9.203693, 45.44307], [9.203693, 45.438574], [9.199196, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.44307], [9.199196, 45.447567], [9.203693, 45.447567], [9.203693, 45.44307], [9.199196, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.447567], [9.199196, 45.452063], [9.203693, 45.452063], [9.203693, 45.447567], [9.199196, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.452063], [9.199196, 45.45656], [9.203693, 45.45656], [9.203693, 45.452063], [9.199196, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.45656], [9.199196, 45.461057], [9.203693, 45.461057], [9.203693, 45.45656], [9.199196, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.461057], [9.199196, 45.465553], [9.203693, 45.465553], [9.203693, 45.461057], [9.199196, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.465553], [9.199196, 45.47005], [9.203693, 45.47005], [9.203693, 45.465553], [9.199196, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.47005], [9.199196, 45.474547], [9.203693, 45.474547], [9.203693, 45.47005], [9.199196, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.474547], [9.199196, 45.479043], [9.203693, 45.479043], [9.203693, 45.474547], [9.199196, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.479043], [9.199196, 45.48354], [9.203693, 45.48354], [9.203693, 45.479043], [9.199196, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.48354], [9.199196, 45.488036], [9.203693, 45.488036], [9.203693, 45.48354], [9.199196, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.488036], [9.199196, 45.492533], [9.203693, 45.492533], [9.203693, 45.488036], [9.199196, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.492533], [9.199196, 45.49703], [9.203693, 45.49703], [9.203693, 45.492533], [9.199196, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.49703], [9.199196, 45.501526], [9.203693, 45.501526], [9.203693, 45.49703], [9.199196, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.501526], [9.199196, 45.506023], [9.203693, 45.506023], [9.203693, 45.501526], [9.199196, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.506023], [9.199196, 45.510519], [9.203693, 45.510519], [9.203693, 45.506023], [9.199196, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.510519], [9.199196, 45.515016], [9.203693, 45.515016], [9.203693, 45.510519], [9.199196, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.515016], [9.199196, 45.519513], [9.203693, 45.519513], [9.203693, 45.515016], [9.199196, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.519513], [9.199196, 45.524009], [9.203693, 45.524009], [9.203693, 45.519513], [9.199196, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 39, "stroke": "#0072db", "fill": "#0072db", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.524009], [9.199196, 45.528506], [9.203693, 45.528506], [9.203693, 45.524009], [9.199196, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 44, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.528506], [9.199196, 45.533002], [9.203693, 45.533002], [9.203693, 45.528506], [9.199196, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 51, "stroke": "#00305c", "fill": "#00305c", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.533002], [9.199196, 45.537499], [9.203693, 45.537499], [9.203693, 45.533002], [9.199196, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 50, "stroke": "#003566", "fill": "#003566", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.537499], [9.199196, 45.541996], [9.203693, 45.541996], [9.203693, 45.537499], [9.199196, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 45, "stroke": "#00529e", "fill": "#00529e", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.541996], [9.199196, 45.546492], [9.203693, 45.546492], [9.203693, 45.541996], [9.199196, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 42, "stroke": "#0062bd", "fill": "#0062bd", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.546492], [9.199196, 45.550989], [9.203693, 45.550989], [9.203693, 45.546492], [9.199196, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 39, "stroke": "#0072db", "fill": "#0072db", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.550989], [9.199196, 45.555485], [9.203693, 45.555485], [9.203693, 45.550989], [9.199196, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#007df0", "fill": "#007df0", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.555485], [9.199196, 45.559982], [9.203693, 45.559982], [9.203693, 45.555485], [9.199196, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.559982], [9.199196, 45.564479], [9.203693, 45.564479], [9.203693, 45.559982], [9.199196, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.564479], [9.199196, 45.568975], [9.203693, 45.568975], [9.203693, 45.564479], [9.199196, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.568975], [9.199196, 45.573472], [9.203693, 45.573472], [9.203693, 45.568975], [9.199196, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.573472], [9.199196, 45.577968], [9.203693, 45.577968], [9.203693, 45.573472], [9.199196, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.577968], [9.199196, 45.582465], [9.203693, 45.582465], [9.203693, 45.577968], [9.199196, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.582465], [9.199196, 45.586962], [9.203693, 45.586962], [9.203693, 45.582465], [9.199196, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.586962], [9.199196, 45.591458], [9.203693, 45.591458], [9.203693, 45.586962], [9.199196, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.591458], [9.199196, 45.595955], [9.203693, 45.595955], [9.203693, 45.591458], [9.199196, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.595955], [9.199196, 45.600451], [9.203693, 45.600451], [9.203693, 45.595955], [9.199196, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.600451], [9.199196, 45.604948], [9.203693, 45.604948], [9.203693, 45.600451], [9.199196, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.604948], [9.199196, 45.609445], [9.203693, 45.609445], [9.203693, 45.604948], [9.199196, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.609445], [9.199196, 45.613941], [9.203693, 45.613941], [9.203693, 45.609445], [9.199196, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.613941], [9.199196, 45.618438], [9.203693, 45.618438], [9.203693, 45.613941], [9.199196, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.618438], [9.199196, 45.622934], [9.203693, 45.622934], [9.203693, 45.618438], [9.199196, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.622934], [9.199196, 45.627431], [9.203693, 45.627431], [9.203693, 45.622934], [9.199196, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.627431], [9.199196, 45.631928], [9.203693, 45.631928], [9.203693, 45.627431], [9.199196, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.199196, 45.631928], [9.199196, 45.636424], [9.203693, 45.636424], [9.203693, 45.631928], [9.199196, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.339648], [9.203693, 45.344145], [9.208189, 45.344145], [9.208189, 45.339648], [9.203693, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.344145], [9.203693, 45.348642], [9.208189, 45.348642], [9.208189, 45.344145], [9.203693, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.348642], [9.203693, 45.353138], [9.208189, 45.353138], [9.208189, 45.348642], [9.203693, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.353138], [9.203693, 45.357635], [9.208189, 45.357635], [9.208189, 45.353138], [9.203693, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.357635], [9.203693, 45.362131], [9.208189, 45.362131], [9.208189, 45.357635], [9.203693, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.362131], [9.203693, 45.366628], [9.208189, 45.366628], [9.208189, 45.362131], [9.203693, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.366628], [9.203693, 45.371125], [9.208189, 45.371125], [9.208189, 45.366628], [9.203693, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.371125], [9.203693, 45.375621], [9.208189, 45.375621], [9.208189, 45.371125], [9.203693, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.375621], [9.203693, 45.380118], [9.208189, 45.380118], [9.208189, 45.375621], [9.203693, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.380118], [9.203693, 45.384614], [9.208189, 45.384614], [9.208189, 45.380118], [9.203693, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.384614], [9.203693, 45.389111], [9.208189, 45.389111], [9.208189, 45.384614], [9.203693, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.389111], [9.203693, 45.393608], [9.208189, 45.393608], [9.208189, 45.389111], [9.203693, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.393608], [9.203693, 45.398104], [9.208189, 45.398104], [9.208189, 45.393608], [9.203693, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.398104], [9.203693, 45.402601], [9.208189, 45.402601], [9.208189, 45.398104], [9.203693, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.402601], [9.203693, 45.407097], [9.208189, 45.407097], [9.208189, 45.402601], [9.203693, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.407097], [9.203693, 45.411594], [9.208189, 45.411594], [9.208189, 45.407097], [9.203693, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.411594], [9.203693, 45.416091], [9.208189, 45.416091], [9.208189, 45.411594], [9.203693, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.416091], [9.203693, 45.420587], [9.208189, 45.420587], [9.208189, 45.416091], [9.203693, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.420587], [9.203693, 45.425084], [9.208189, 45.425084], [9.208189, 45.420587], [9.203693, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.425084], [9.203693, 45.42958], [9.208189, 45.42958], [9.208189, 45.425084], [9.203693, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.42958], [9.203693, 45.434077], [9.208189, 45.434077], [9.208189, 45.42958], [9.203693, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.434077], [9.203693, 45.438574], [9.208189, 45.438574], [9.208189, 45.434077], [9.203693, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.438574], [9.203693, 45.44307], [9.208189, 45.44307], [9.208189, 45.438574], [9.203693, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.44307], [9.203693, 45.447567], [9.208189, 45.447567], [9.208189, 45.44307], [9.203693, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.447567], [9.203693, 45.452063], [9.208189, 45.452063], [9.208189, 45.447567], [9.203693, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.452063], [9.203693, 45.45656], [9.208189, 45.45656], [9.208189, 45.452063], [9.203693, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.45656], [9.203693, 45.461057], [9.208189, 45.461057], [9.208189, 45.45656], [9.203693, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.461057], [9.203693, 45.465553], [9.208189, 45.465553], [9.208189, 45.461057], [9.203693, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.465553], [9.203693, 45.47005], [9.208189, 45.47005], [9.208189, 45.465553], [9.203693, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.47005], [9.203693, 45.474547], [9.208189, 45.474547], [9.208189, 45.47005], [9.203693, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.474547], [9.203693, 45.479043], [9.208189, 45.479043], [9.208189, 45.474547], [9.203693, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.479043], [9.203693, 45.48354], [9.208189, 45.48354], [9.208189, 45.479043], [9.203693, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.48354], [9.203693, 45.488036], [9.208189, 45.488036], [9.208189, 45.48354], [9.203693, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.488036], [9.203693, 45.492533], [9.208189, 45.492533], [9.208189, 45.488036], [9.203693, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.492533], [9.203693, 45.49703], [9.208189, 45.49703], [9.208189, 45.492533], [9.203693, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.49703], [9.203693, 45.501526], [9.208189, 45.501526], [9.208189, 45.49703], [9.203693, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.501526], [9.203693, 45.506023], [9.208189, 45.506023], [9.208189, 45.501526], [9.203693, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.506023], [9.203693, 45.510519], [9.208189, 45.510519], [9.208189, 45.506023], [9.203693, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.510519], [9.203693, 45.515016], [9.208189, 45.515016], [9.208189, 45.510519], [9.203693, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.515016], [9.203693, 45.519513], [9.208189, 45.519513], [9.208189, 45.515016], [9.203693, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.519513], [9.203693, 45.524009], [9.208189, 45.524009], [9.208189, 45.519513], [9.203693, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 38, "stroke": "#0078e6", "fill": "#0078e6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.524009], [9.203693, 45.528506], [9.208189, 45.528506], [9.208189, 45.524009], [9.203693, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 42, "stroke": "#0062bd", "fill": "#0062bd", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.528506], [9.203693, 45.533002], [9.208189, 45.533002], [9.208189, 45.528506], [9.203693, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 45, "stroke": "#00529e", "fill": "#00529e", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.533002], [9.203693, 45.537499], [9.208189, 45.537499], [9.208189, 45.533002], [9.203693, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 45, "stroke": "#00529e", "fill": "#00529e", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.537499], [9.203693, 45.541996], [9.208189, 45.541996], [9.208189, 45.537499], [9.203693, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 43, "stroke": "#005db3", "fill": "#005db3", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.541996], [9.203693, 45.546492], [9.208189, 45.546492], [9.208189, 45.541996], [9.203693, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 41, "stroke": "#0068c7", "fill": "#0068c7", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.546492], [9.203693, 45.550989], [9.208189, 45.550989], [9.208189, 45.546492], [9.203693, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 39, "stroke": "#0072db", "fill": "#0072db", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.550989], [9.203693, 45.555485], [9.208189, 45.555485], [9.208189, 45.550989], [9.203693, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#007df0", "fill": "#007df0", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.555485], [9.203693, 45.559982], [9.208189, 45.559982], [9.208189, 45.555485], [9.203693, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.559982], [9.203693, 45.564479], [9.208189, 45.564479], [9.208189, 45.559982], [9.203693, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.564479], [9.203693, 45.568975], [9.208189, 45.568975], [9.208189, 45.564479], [9.203693, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.568975], [9.203693, 45.573472], [9.208189, 45.573472], [9.208189, 45.568975], [9.203693, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.573472], [9.203693, 45.577968], [9.208189, 45.577968], [9.208189, 45.573472], [9.203693, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.577968], [9.203693, 45.582465], [9.208189, 45.582465], [9.208189, 45.577968], [9.203693, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.582465], [9.203693, 45.586962], [9.208189, 45.586962], [9.208189, 45.582465], [9.203693, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.586962], [9.203693, 45.591458], [9.208189, 45.591458], [9.208189, 45.586962], [9.203693, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.591458], [9.203693, 45.595955], [9.208189, 45.595955], [9.208189, 45.591458], [9.203693, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.595955], [9.203693, 45.600451], [9.208189, 45.600451], [9.208189, 45.595955], [9.203693, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.600451], [9.203693, 45.604948], [9.208189, 45.604948], [9.208189, 45.600451], [9.203693, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.604948], [9.203693, 45.609445], [9.208189, 45.609445], [9.208189, 45.604948], [9.203693, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.609445], [9.203693, 45.613941], [9.208189, 45.613941], [9.208189, 45.609445], [9.203693, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.613941], [9.203693, 45.618438], [9.208189, 45.618438], [9.208189, 45.613941], [9.203693, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.618438], [9.203693, 45.622934], [9.208189, 45.622934], [9.208189, 45.618438], [9.203693, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.622934], [9.203693, 45.627431], [9.208189, 45.627431], [9.208189, 45.622934], [9.203693, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.627431], [9.203693, 45.631928], [9.208189, 45.631928], [9.208189, 45.627431], [9.203693, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203693, 45.631928], [9.203693, 45.636424], [9.208189, 45.636424], [9.208189, 45.631928], [9.203693, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.339648], [9.208189, 45.344145], [9.212686, 45.344145], [9.212686, 45.339648], [9.208189, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.344145], [9.208189, 45.348642], [9.212686, 45.348642], [9.212686, 45.344145], [9.208189, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.348642], [9.208189, 45.353138], [9.212686, 45.353138], [9.212686, 45.348642], [9.208189, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.353138], [9.208189, 45.357635], [9.212686, 45.357635], [9.212686, 45.353138], [9.208189, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.357635], [9.208189, 45.362131], [9.212686, 45.362131], [9.212686, 45.357635], [9.208189, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.362131], [9.208189, 45.366628], [9.212686, 45.366628], [9.212686, 45.362131], [9.208189, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.366628], [9.208189, 45.371125], [9.212686, 45.371125], [9.212686, 45.366628], [9.208189, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.371125], [9.208189, 45.375621], [9.212686, 45.375621], [9.212686, 45.371125], [9.208189, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.375621], [9.208189, 45.380118], [9.212686, 45.380118], [9.212686, 45.375621], [9.208189, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.380118], [9.208189, 45.384614], [9.212686, 45.384614], [9.212686, 45.380118], [9.208189, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.384614], [9.208189, 45.389111], [9.212686, 45.389111], [9.212686, 45.384614], [9.208189, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.389111], [9.208189, 45.393608], [9.212686, 45.393608], [9.212686, 45.389111], [9.208189, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.393608], [9.208189, 45.398104], [9.212686, 45.398104], [9.212686, 45.393608], [9.208189, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.398104], [9.208189, 45.402601], [9.212686, 45.402601], [9.212686, 45.398104], [9.208189, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.402601], [9.208189, 45.407097], [9.212686, 45.407097], [9.212686, 45.402601], [9.208189, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.407097], [9.208189, 45.411594], [9.212686, 45.411594], [9.212686, 45.407097], [9.208189, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.411594], [9.208189, 45.416091], [9.212686, 45.416091], [9.212686, 45.411594], [9.208189, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.416091], [9.208189, 45.420587], [9.212686, 45.420587], [9.212686, 45.416091], [9.208189, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.420587], [9.208189, 45.425084], [9.212686, 45.425084], [9.212686, 45.420587], [9.208189, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.425084], [9.208189, 45.42958], [9.212686, 45.42958], [9.212686, 45.425084], [9.208189, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.42958], [9.208189, 45.434077], [9.212686, 45.434077], [9.212686, 45.42958], [9.208189, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.434077], [9.208189, 45.438574], [9.212686, 45.438574], [9.212686, 45.434077], [9.208189, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.438574], [9.208189, 45.44307], [9.212686, 45.44307], [9.212686, 45.438574], [9.208189, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.44307], [9.208189, 45.447567], [9.212686, 45.447567], [9.212686, 45.44307], [9.208189, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.447567], [9.208189, 45.452063], [9.212686, 45.452063], [9.212686, 45.447567], [9.208189, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.452063], [9.208189, 45.45656], [9.212686, 45.45656], [9.212686, 45.452063], [9.208189, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.45656], [9.208189, 45.461057], [9.212686, 45.461057], [9.212686, 45.45656], [9.208189, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.461057], [9.208189, 45.465553], [9.212686, 45.465553], [9.212686, 45.461057], [9.208189, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.465553], [9.208189, 45.47005], [9.212686, 45.47005], [9.212686, 45.465553], [9.208189, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.47005], [9.208189, 45.474547], [9.212686, 45.474547], [9.212686, 45.47005], [9.208189, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.474547], [9.208189, 45.479043], [9.212686, 45.479043], [9.212686, 45.474547], [9.208189, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.479043], [9.208189, 45.48354], [9.212686, 45.48354], [9.212686, 45.479043], [9.208189, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.48354], [9.208189, 45.488036], [9.212686, 45.488036], [9.212686, 45.48354], [9.208189, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.488036], [9.208189, 45.492533], [9.212686, 45.492533], [9.212686, 45.488036], [9.208189, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.492533], [9.208189, 45.49703], [9.212686, 45.49703], [9.212686, 45.492533], [9.208189, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.49703], [9.208189, 45.501526], [9.212686, 45.501526], [9.212686, 45.49703], [9.208189, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.501526], [9.208189, 45.506023], [9.212686, 45.506023], [9.212686, 45.501526], [9.208189, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.506023], [9.208189, 45.510519], [9.212686, 45.510519], [9.212686, 45.506023], [9.208189, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.510519], [9.208189, 45.515016], [9.212686, 45.515016], [9.212686, 45.510519], [9.208189, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.515016], [9.208189, 45.519513], [9.212686, 45.519513], [9.212686, 45.515016], [9.208189, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.519513], [9.208189, 45.524009], [9.212686, 45.524009], [9.212686, 45.519513], [9.208189, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.524009], [9.208189, 45.528506], [9.212686, 45.528506], [9.212686, 45.524009], [9.208189, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 39, "stroke": "#0072db", "fill": "#0072db", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.528506], [9.208189, 45.533002], [9.212686, 45.533002], [9.212686, 45.528506], [9.208189, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 41, "stroke": "#0068c7", "fill": "#0068c7", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.533002], [9.208189, 45.537499], [9.212686, 45.537499], [9.212686, 45.533002], [9.208189, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 42, "stroke": "#0062bd", "fill": "#0062bd", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.537499], [9.208189, 45.541996], [9.212686, 45.541996], [9.212686, 45.537499], [9.208189, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 41, "stroke": "#0068c7", "fill": "#0068c7", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.541996], [9.208189, 45.546492], [9.212686, 45.546492], [9.212686, 45.541996], [9.208189, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 39, "stroke": "#0072db", "fill": "#0072db", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.546492], [9.208189, 45.550989], [9.212686, 45.550989], [9.212686, 45.546492], [9.208189, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 38, "stroke": "#0078e6", "fill": "#0078e6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.550989], [9.208189, 45.555485], [9.212686, 45.555485], [9.212686, 45.550989], [9.208189, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.555485], [9.208189, 45.559982], [9.212686, 45.559982], [9.212686, 45.555485], [9.208189, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.559982], [9.208189, 45.564479], [9.212686, 45.564479], [9.212686, 45.559982], [9.208189, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.564479], [9.208189, 45.568975], [9.212686, 45.568975], [9.212686, 45.564479], [9.208189, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.568975], [9.208189, 45.573472], [9.212686, 45.573472], [9.212686, 45.568975], [9.208189, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.573472], [9.208189, 45.577968], [9.212686, 45.577968], [9.212686, 45.573472], [9.208189, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.577968], [9.208189, 45.582465], [9.212686, 45.582465], [9.212686, 45.577968], [9.208189, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.582465], [9.208189, 45.586962], [9.212686, 45.586962], [9.212686, 45.582465], [9.208189, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.586962], [9.208189, 45.591458], [9.212686, 45.591458], [9.212686, 45.586962], [9.208189, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.591458], [9.208189, 45.595955], [9.212686, 45.595955], [9.212686, 45.591458], [9.208189, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.595955], [9.208189, 45.600451], [9.212686, 45.600451], [9.212686, 45.595955], [9.208189, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.600451], [9.208189, 45.604948], [9.212686, 45.604948], [9.212686, 45.600451], [9.208189, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.604948], [9.208189, 45.609445], [9.212686, 45.609445], [9.212686, 45.604948], [9.208189, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.609445], [9.208189, 45.613941], [9.212686, 45.613941], [9.212686, 45.609445], [9.208189, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.613941], [9.208189, 45.618438], [9.212686, 45.618438], [9.212686, 45.613941], [9.208189, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.618438], [9.208189, 45.622934], [9.212686, 45.622934], [9.212686, 45.618438], [9.208189, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.622934], [9.208189, 45.627431], [9.212686, 45.627431], [9.212686, 45.622934], [9.208189, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.627431], [9.208189, 45.631928], [9.212686, 45.631928], [9.212686, 45.627431], [9.208189, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.208189, 45.631928], [9.208189, 45.636424], [9.212686, 45.636424], [9.212686, 45.631928], [9.208189, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.339648], [9.212686, 45.344145], [9.217182, 45.344145], [9.217182, 45.339648], [9.212686, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.344145], [9.212686, 45.348642], [9.217182, 45.348642], [9.217182, 45.344145], [9.212686, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.348642], [9.212686, 45.353138], [9.217182, 45.353138], [9.217182, 45.348642], [9.212686, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.353138], [9.212686, 45.357635], [9.217182, 45.357635], [9.217182, 45.353138], [9.212686, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.357635], [9.212686, 45.362131], [9.217182, 45.362131], [9.217182, 45.357635], [9.212686, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.362131], [9.212686, 45.366628], [9.217182, 45.366628], [9.217182, 45.362131], [9.212686, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.366628], [9.212686, 45.371125], [9.217182, 45.371125], [9.217182, 45.366628], [9.212686, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.371125], [9.212686, 45.375621], [9.217182, 45.375621], [9.217182, 45.371125], [9.212686, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.375621], [9.212686, 45.380118], [9.217182, 45.380118], [9.217182, 45.375621], [9.212686, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.380118], [9.212686, 45.384614], [9.217182, 45.384614], [9.217182, 45.380118], [9.212686, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.384614], [9.212686, 45.389111], [9.217182, 45.389111], [9.217182, 45.384614], [9.212686, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.389111], [9.212686, 45.393608], [9.217182, 45.393608], [9.217182, 45.389111], [9.212686, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.393608], [9.212686, 45.398104], [9.217182, 45.398104], [9.217182, 45.393608], [9.212686, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.398104], [9.212686, 45.402601], [9.217182, 45.402601], [9.217182, 45.398104], [9.212686, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.402601], [9.212686, 45.407097], [9.217182, 45.407097], [9.217182, 45.402601], [9.212686, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.407097], [9.212686, 45.411594], [9.217182, 45.411594], [9.217182, 45.407097], [9.212686, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.411594], [9.212686, 45.416091], [9.217182, 45.416091], [9.217182, 45.411594], [9.212686, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.416091], [9.212686, 45.420587], [9.217182, 45.420587], [9.217182, 45.416091], [9.212686, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.420587], [9.212686, 45.425084], [9.217182, 45.425084], [9.217182, 45.420587], [9.212686, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.425084], [9.212686, 45.42958], [9.217182, 45.42958], [9.217182, 45.425084], [9.212686, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.42958], [9.212686, 45.434077], [9.217182, 45.434077], [9.217182, 45.42958], [9.212686, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.434077], [9.212686, 45.438574], [9.217182, 45.438574], [9.217182, 45.434077], [9.212686, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.438574], [9.212686, 45.44307], [9.217182, 45.44307], [9.217182, 45.438574], [9.212686, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.44307], [9.212686, 45.447567], [9.217182, 45.447567], [9.217182, 45.44307], [9.212686, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.447567], [9.212686, 45.452063], [9.217182, 45.452063], [9.217182, 45.447567], [9.212686, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.452063], [9.212686, 45.45656], [9.217182, 45.45656], [9.217182, 45.452063], [9.212686, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.45656], [9.212686, 45.461057], [9.217182, 45.461057], [9.217182, 45.45656], [9.212686, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.461057], [9.212686, 45.465553], [9.217182, 45.465553], [9.217182, 45.461057], [9.212686, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.465553], [9.212686, 45.47005], [9.217182, 45.47005], [9.217182, 45.465553], [9.212686, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.47005], [9.212686, 45.474547], [9.217182, 45.474547], [9.217182, 45.47005], [9.212686, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.474547], [9.212686, 45.479043], [9.217182, 45.479043], [9.217182, 45.474547], [9.212686, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.479043], [9.212686, 45.48354], [9.217182, 45.48354], [9.217182, 45.479043], [9.212686, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.48354], [9.212686, 45.488036], [9.217182, 45.488036], [9.217182, 45.48354], [9.212686, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.488036], [9.212686, 45.492533], [9.217182, 45.492533], [9.217182, 45.488036], [9.212686, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.492533], [9.212686, 45.49703], [9.217182, 45.49703], [9.217182, 45.492533], [9.212686, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.49703], [9.212686, 45.501526], [9.217182, 45.501526], [9.217182, 45.49703], [9.212686, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.501526], [9.212686, 45.506023], [9.217182, 45.506023], [9.217182, 45.501526], [9.212686, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.506023], [9.212686, 45.510519], [9.217182, 45.510519], [9.217182, 45.506023], [9.212686, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.510519], [9.212686, 45.515016], [9.217182, 45.515016], [9.217182, 45.510519], [9.212686, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.515016], [9.212686, 45.519513], [9.217182, 45.519513], [9.217182, 45.515016], [9.212686, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.519513], [9.212686, 45.524009], [9.217182, 45.524009], [9.217182, 45.519513], [9.212686, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.524009], [9.212686, 45.528506], [9.217182, 45.528506], [9.217182, 45.524009], [9.212686, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#007df0", "fill": "#007df0", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.528506], [9.212686, 45.533002], [9.217182, 45.533002], [9.217182, 45.528506], [9.212686, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 39, "stroke": "#0072db", "fill": "#0072db", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.533002], [9.212686, 45.537499], [9.217182, 45.537499], [9.217182, 45.533002], [9.212686, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 39, "stroke": "#0072db", "fill": "#0072db", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.537499], [9.212686, 45.541996], [9.217182, 45.541996], [9.217182, 45.537499], [9.212686, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 39, "stroke": "#0072db", "fill": "#0072db", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.541996], [9.212686, 45.546492], [9.217182, 45.546492], [9.217182, 45.541996], [9.212686, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 38, "stroke": "#0078e6", "fill": "#0078e6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.546492], [9.212686, 45.550989], [9.217182, 45.550989], [9.217182, 45.546492], [9.212686, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#007df0", "fill": "#007df0", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.550989], [9.212686, 45.555485], [9.217182, 45.555485], [9.217182, 45.550989], [9.212686, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.555485], [9.212686, 45.559982], [9.217182, 45.559982], [9.217182, 45.555485], [9.212686, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.559982], [9.212686, 45.564479], [9.217182, 45.564479], [9.217182, 45.559982], [9.212686, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.564479], [9.212686, 45.568975], [9.217182, 45.568975], [9.217182, 45.564479], [9.212686, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.568975], [9.212686, 45.573472], [9.217182, 45.573472], [9.217182, 45.568975], [9.212686, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.573472], [9.212686, 45.577968], [9.217182, 45.577968], [9.217182, 45.573472], [9.212686, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.577968], [9.212686, 45.582465], [9.217182, 45.582465], [9.217182, 45.577968], [9.212686, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.582465], [9.212686, 45.586962], [9.217182, 45.586962], [9.217182, 45.582465], [9.212686, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.586962], [9.212686, 45.591458], [9.217182, 45.591458], [9.217182, 45.586962], [9.212686, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.591458], [9.212686, 45.595955], [9.217182, 45.595955], [9.217182, 45.591458], [9.212686, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.595955], [9.212686, 45.600451], [9.217182, 45.600451], [9.217182, 45.595955], [9.212686, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.600451], [9.212686, 45.604948], [9.217182, 45.604948], [9.217182, 45.600451], [9.212686, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.604948], [9.212686, 45.609445], [9.217182, 45.609445], [9.217182, 45.604948], [9.212686, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.609445], [9.212686, 45.613941], [9.217182, 45.613941], [9.217182, 45.609445], [9.212686, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.613941], [9.212686, 45.618438], [9.217182, 45.618438], [9.217182, 45.613941], [9.212686, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.618438], [9.212686, 45.622934], [9.217182, 45.622934], [9.217182, 45.618438], [9.212686, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.622934], [9.212686, 45.627431], [9.217182, 45.627431], [9.217182, 45.622934], [9.212686, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.627431], [9.212686, 45.631928], [9.217182, 45.631928], [9.217182, 45.627431], [9.212686, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212686, 45.631928], [9.212686, 45.636424], [9.217182, 45.636424], [9.217182, 45.631928], [9.212686, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.339648], [9.217182, 45.344145], [9.221679, 45.344145], [9.221679, 45.339648], [9.217182, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.344145], [9.217182, 45.348642], [9.221679, 45.348642], [9.221679, 45.344145], [9.217182, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.348642], [9.217182, 45.353138], [9.221679, 45.353138], [9.221679, 45.348642], [9.217182, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.353138], [9.217182, 45.357635], [9.221679, 45.357635], [9.221679, 45.353138], [9.217182, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.357635], [9.217182, 45.362131], [9.221679, 45.362131], [9.221679, 45.357635], [9.217182, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.362131], [9.217182, 45.366628], [9.221679, 45.366628], [9.221679, 45.362131], [9.217182, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.366628], [9.217182, 45.371125], [9.221679, 45.371125], [9.221679, 45.366628], [9.217182, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.371125], [9.217182, 45.375621], [9.221679, 45.375621], [9.221679, 45.371125], [9.217182, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.375621], [9.217182, 45.380118], [9.221679, 45.380118], [9.221679, 45.375621], [9.217182, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.380118], [9.217182, 45.384614], [9.221679, 45.384614], [9.221679, 45.380118], [9.217182, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.384614], [9.217182, 45.389111], [9.221679, 45.389111], [9.221679, 45.384614], [9.217182, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.389111], [9.217182, 45.393608], [9.221679, 45.393608], [9.221679, 45.389111], [9.217182, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.393608], [9.217182, 45.398104], [9.221679, 45.398104], [9.221679, 45.393608], [9.217182, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.398104], [9.217182, 45.402601], [9.221679, 45.402601], [9.221679, 45.398104], [9.217182, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.402601], [9.217182, 45.407097], [9.221679, 45.407097], [9.221679, 45.402601], [9.217182, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.407097], [9.217182, 45.411594], [9.221679, 45.411594], [9.221679, 45.407097], [9.217182, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.411594], [9.217182, 45.416091], [9.221679, 45.416091], [9.221679, 45.411594], [9.217182, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.416091], [9.217182, 45.420587], [9.221679, 45.420587], [9.221679, 45.416091], [9.217182, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.420587], [9.217182, 45.425084], [9.221679, 45.425084], [9.221679, 45.420587], [9.217182, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.425084], [9.217182, 45.42958], [9.221679, 45.42958], [9.221679, 45.425084], [9.217182, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.42958], [9.217182, 45.434077], [9.221679, 45.434077], [9.221679, 45.42958], [9.217182, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.434077], [9.217182, 45.438574], [9.221679, 45.438574], [9.221679, 45.434077], [9.217182, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.438574], [9.217182, 45.44307], [9.221679, 45.44307], [9.221679, 45.438574], [9.217182, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.44307], [9.217182, 45.447567], [9.221679, 45.447567], [9.221679, 45.44307], [9.217182, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.447567], [9.217182, 45.452063], [9.221679, 45.452063], [9.221679, 45.447567], [9.217182, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.452063], [9.217182, 45.45656], [9.221679, 45.45656], [9.221679, 45.452063], [9.217182, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.45656], [9.217182, 45.461057], [9.221679, 45.461057], [9.221679, 45.45656], [9.217182, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.461057], [9.217182, 45.465553], [9.221679, 45.465553], [9.221679, 45.461057], [9.217182, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.465553], [9.217182, 45.47005], [9.221679, 45.47005], [9.221679, 45.465553], [9.217182, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.47005], [9.217182, 45.474547], [9.221679, 45.474547], [9.221679, 45.47005], [9.217182, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.474547], [9.217182, 45.479043], [9.221679, 45.479043], [9.221679, 45.474547], [9.217182, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.479043], [9.217182, 45.48354], [9.221679, 45.48354], [9.221679, 45.479043], [9.217182, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.48354], [9.217182, 45.488036], [9.221679, 45.488036], [9.221679, 45.48354], [9.217182, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.488036], [9.217182, 45.492533], [9.221679, 45.492533], [9.221679, 45.488036], [9.217182, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.492533], [9.217182, 45.49703], [9.221679, 45.49703], [9.221679, 45.492533], [9.217182, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.49703], [9.217182, 45.501526], [9.221679, 45.501526], [9.221679, 45.49703], [9.217182, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.501526], [9.217182, 45.506023], [9.221679, 45.506023], [9.221679, 45.501526], [9.217182, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.506023], [9.217182, 45.510519], [9.221679, 45.510519], [9.221679, 45.506023], [9.217182, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.510519], [9.217182, 45.515016], [9.221679, 45.515016], [9.221679, 45.510519], [9.217182, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.515016], [9.217182, 45.519513], [9.221679, 45.519513], [9.221679, 45.515016], [9.217182, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.519513], [9.217182, 45.524009], [9.221679, 45.524009], [9.221679, 45.519513], [9.217182, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.524009], [9.217182, 45.528506], [9.221679, 45.528506], [9.221679, 45.524009], [9.217182, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.528506], [9.217182, 45.533002], [9.221679, 45.533002], [9.221679, 45.528506], [9.217182, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#007df0", "fill": "#007df0", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.533002], [9.217182, 45.537499], [9.221679, 45.537499], [9.221679, 45.533002], [9.217182, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#007df0", "fill": "#007df0", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.537499], [9.217182, 45.541996], [9.221679, 45.541996], [9.221679, 45.537499], [9.217182, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#007df0", "fill": "#007df0", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.541996], [9.217182, 45.546492], [9.221679, 45.546492], [9.221679, 45.541996], [9.217182, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#007df0", "fill": "#007df0", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.546492], [9.217182, 45.550989], [9.221679, 45.550989], [9.221679, 45.546492], [9.217182, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.550989], [9.217182, 45.555485], [9.221679, 45.555485], [9.221679, 45.550989], [9.217182, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.555485], [9.217182, 45.559982], [9.221679, 45.559982], [9.221679, 45.555485], [9.217182, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.559982], [9.217182, 45.564479], [9.221679, 45.564479], [9.221679, 45.559982], [9.217182, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.564479], [9.217182, 45.568975], [9.221679, 45.568975], [9.221679, 45.564479], [9.217182, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.568975], [9.217182, 45.573472], [9.221679, 45.573472], [9.221679, 45.568975], [9.217182, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.573472], [9.217182, 45.577968], [9.221679, 45.577968], [9.221679, 45.573472], [9.217182, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.577968], [9.217182, 45.582465], [9.221679, 45.582465], [9.221679, 45.577968], [9.217182, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.582465], [9.217182, 45.586962], [9.221679, 45.586962], [9.221679, 45.582465], [9.217182, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.586962], [9.217182, 45.591458], [9.221679, 45.591458], [9.221679, 45.586962], [9.217182, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.591458], [9.217182, 45.595955], [9.221679, 45.595955], [9.221679, 45.591458], [9.217182, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.595955], [9.217182, 45.600451], [9.221679, 45.600451], [9.221679, 45.595955], [9.217182, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.600451], [9.217182, 45.604948], [9.221679, 45.604948], [9.221679, 45.600451], [9.217182, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.604948], [9.217182, 45.609445], [9.221679, 45.609445], [9.221679, 45.604948], [9.217182, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.609445], [9.217182, 45.613941], [9.221679, 45.613941], [9.221679, 45.609445], [9.217182, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.613941], [9.217182, 45.618438], [9.221679, 45.618438], [9.221679, 45.613941], [9.217182, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.618438], [9.217182, 45.622934], [9.221679, 45.622934], [9.221679, 45.618438], [9.217182, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.622934], [9.217182, 45.627431], [9.221679, 45.627431], [9.221679, 45.622934], [9.217182, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.627431], [9.217182, 45.631928], [9.221679, 45.631928], [9.221679, 45.627431], [9.217182, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.217182, 45.631928], [9.217182, 45.636424], [9.221679, 45.636424], [9.221679, 45.631928], [9.217182, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.339648], [9.221679, 45.344145], [9.226176, 45.344145], [9.226176, 45.339648], [9.221679, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.344145], [9.221679, 45.348642], [9.226176, 45.348642], [9.226176, 45.344145], [9.221679, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.348642], [9.221679, 45.353138], [9.226176, 45.353138], [9.226176, 45.348642], [9.221679, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.353138], [9.221679, 45.357635], [9.226176, 45.357635], [9.226176, 45.353138], [9.221679, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.357635], [9.221679, 45.362131], [9.226176, 45.362131], [9.226176, 45.357635], [9.221679, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.362131], [9.221679, 45.366628], [9.226176, 45.366628], [9.226176, 45.362131], [9.221679, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.366628], [9.221679, 45.371125], [9.226176, 45.371125], [9.226176, 45.366628], [9.221679, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.371125], [9.221679, 45.375621], [9.226176, 45.375621], [9.226176, 45.371125], [9.221679, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.375621], [9.221679, 45.380118], [9.226176, 45.380118], [9.226176, 45.375621], [9.221679, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.380118], [9.221679, 45.384614], [9.226176, 45.384614], [9.226176, 45.380118], [9.221679, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.384614], [9.221679, 45.389111], [9.226176, 45.389111], [9.226176, 45.384614], [9.221679, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.389111], [9.221679, 45.393608], [9.226176, 45.393608], [9.226176, 45.389111], [9.221679, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.393608], [9.221679, 45.398104], [9.226176, 45.398104], [9.226176, 45.393608], [9.221679, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.398104], [9.221679, 45.402601], [9.226176, 45.402601], [9.226176, 45.398104], [9.221679, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.402601], [9.221679, 45.407097], [9.226176, 45.407097], [9.226176, 45.402601], [9.221679, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.407097], [9.221679, 45.411594], [9.226176, 45.411594], [9.226176, 45.407097], [9.221679, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.411594], [9.221679, 45.416091], [9.226176, 45.416091], [9.226176, 45.411594], [9.221679, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.416091], [9.221679, 45.420587], [9.226176, 45.420587], [9.226176, 45.416091], [9.221679, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.420587], [9.221679, 45.425084], [9.226176, 45.425084], [9.226176, 45.420587], [9.221679, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.425084], [9.221679, 45.42958], [9.226176, 45.42958], [9.226176, 45.425084], [9.221679, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.42958], [9.221679, 45.434077], [9.226176, 45.434077], [9.226176, 45.42958], [9.221679, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.434077], [9.221679, 45.438574], [9.226176, 45.438574], [9.226176, 45.434077], [9.221679, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.438574], [9.221679, 45.44307], [9.226176, 45.44307], [9.226176, 45.438574], [9.221679, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.44307], [9.221679, 45.447567], [9.226176, 45.447567], [9.226176, 45.44307], [9.221679, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.447567], [9.221679, 45.452063], [9.226176, 45.452063], [9.226176, 45.447567], [9.221679, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.452063], [9.221679, 45.45656], [9.226176, 45.45656], [9.226176, 45.452063], [9.221679, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.45656], [9.221679, 45.461057], [9.226176, 45.461057], [9.226176, 45.45656], [9.221679, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.461057], [9.221679, 45.465553], [9.226176, 45.465553], [9.226176, 45.461057], [9.221679, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.465553], [9.221679, 45.47005], [9.226176, 45.47005], [9.226176, 45.465553], [9.221679, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.47005], [9.221679, 45.474547], [9.226176, 45.474547], [9.226176, 45.47005], [9.221679, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.474547], [9.221679, 45.479043], [9.226176, 45.479043], [9.226176, 45.474547], [9.221679, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.479043], [9.221679, 45.48354], [9.226176, 45.48354], [9.226176, 45.479043], [9.221679, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.48354], [9.221679, 45.488036], [9.226176, 45.488036], [9.226176, 45.48354], [9.221679, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.488036], [9.221679, 45.492533], [9.226176, 45.492533], [9.226176, 45.488036], [9.221679, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.492533], [9.221679, 45.49703], [9.226176, 45.49703], [9.226176, 45.492533], [9.221679, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.49703], [9.221679, 45.501526], [9.226176, 45.501526], [9.226176, 45.49703], [9.221679, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.501526], [9.221679, 45.506023], [9.226176, 45.506023], [9.226176, 45.501526], [9.221679, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.506023], [9.221679, 45.510519], [9.226176, 45.510519], [9.226176, 45.506023], [9.221679, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.510519], [9.221679, 45.515016], [9.226176, 45.515016], [9.226176, 45.510519], [9.221679, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.515016], [9.221679, 45.519513], [9.226176, 45.519513], [9.226176, 45.515016], [9.221679, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.519513], [9.221679, 45.524009], [9.226176, 45.524009], [9.226176, 45.519513], [9.221679, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.524009], [9.221679, 45.528506], [9.226176, 45.528506], [9.226176, 45.524009], [9.221679, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.528506], [9.221679, 45.533002], [9.226176, 45.533002], [9.226176, 45.528506], [9.221679, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.533002], [9.221679, 45.537499], [9.226176, 45.537499], [9.226176, 45.533002], [9.221679, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.537499], [9.221679, 45.541996], [9.226176, 45.541996], [9.226176, 45.537499], [9.221679, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.541996], [9.221679, 45.546492], [9.226176, 45.546492], [9.226176, 45.541996], [9.221679, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#0082fa", "fill": "#0082fa", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.546492], [9.221679, 45.550989], [9.226176, 45.550989], [9.226176, 45.546492], [9.221679, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.550989], [9.221679, 45.555485], [9.226176, 45.555485], [9.226176, 45.550989], [9.221679, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.555485], [9.221679, 45.559982], [9.226176, 45.559982], [9.226176, 45.555485], [9.221679, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.559982], [9.221679, 45.564479], [9.226176, 45.564479], [9.226176, 45.559982], [9.221679, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.564479], [9.221679, 45.568975], [9.226176, 45.568975], [9.226176, 45.564479], [9.221679, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.568975], [9.221679, 45.573472], [9.226176, 45.573472], [9.226176, 45.568975], [9.221679, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.573472], [9.221679, 45.577968], [9.226176, 45.577968], [9.226176, 45.573472], [9.221679, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.577968], [9.221679, 45.582465], [9.226176, 45.582465], [9.226176, 45.577968], [9.221679, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.582465], [9.221679, 45.586962], [9.226176, 45.586962], [9.226176, 45.582465], [9.221679, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.586962], [9.221679, 45.591458], [9.226176, 45.591458], [9.226176, 45.586962], [9.221679, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.591458], [9.221679, 45.595955], [9.226176, 45.595955], [9.226176, 45.591458], [9.221679, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.595955], [9.221679, 45.600451], [9.226176, 45.600451], [9.226176, 45.595955], [9.221679, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.600451], [9.221679, 45.604948], [9.226176, 45.604948], [9.226176, 45.600451], [9.221679, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.604948], [9.221679, 45.609445], [9.226176, 45.609445], [9.226176, 45.604948], [9.221679, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.609445], [9.221679, 45.613941], [9.226176, 45.613941], [9.226176, 45.609445], [9.221679, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.613941], [9.221679, 45.618438], [9.226176, 45.618438], [9.226176, 45.613941], [9.221679, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.618438], [9.221679, 45.622934], [9.226176, 45.622934], [9.226176, 45.618438], [9.221679, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.622934], [9.221679, 45.627431], [9.226176, 45.627431], [9.226176, 45.622934], [9.221679, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.627431], [9.221679, 45.631928], [9.226176, 45.631928], [9.226176, 45.627431], [9.221679, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221679, 45.631928], [9.221679, 45.636424], [9.226176, 45.636424], [9.226176, 45.631928], [9.221679, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.339648], [9.226176, 45.344145], [9.230672, 45.344145], [9.230672, 45.339648], [9.226176, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.344145], [9.226176, 45.348642], [9.230672, 45.348642], [9.230672, 45.344145], [9.226176, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.348642], [9.226176, 45.353138], [9.230672, 45.353138], [9.230672, 45.348642], [9.226176, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.353138], [9.226176, 45.357635], [9.230672, 45.357635], [9.230672, 45.353138], [9.226176, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.357635], [9.226176, 45.362131], [9.230672, 45.362131], [9.230672, 45.357635], [9.226176, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.362131], [9.226176, 45.366628], [9.230672, 45.366628], [9.230672, 45.362131], [9.226176, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.366628], [9.226176, 45.371125], [9.230672, 45.371125], [9.230672, 45.366628], [9.226176, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.371125], [9.226176, 45.375621], [9.230672, 45.375621], [9.230672, 45.371125], [9.226176, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.375621], [9.226176, 45.380118], [9.230672, 45.380118], [9.230672, 45.375621], [9.226176, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.380118], [9.226176, 45.384614], [9.230672, 45.384614], [9.230672, 45.380118], [9.226176, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.384614], [9.226176, 45.389111], [9.230672, 45.389111], [9.230672, 45.384614], [9.226176, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.389111], [9.226176, 45.393608], [9.230672, 45.393608], [9.230672, 45.389111], [9.226176, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.393608], [9.226176, 45.398104], [9.230672, 45.398104], [9.230672, 45.393608], [9.226176, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.398104], [9.226176, 45.402601], [9.230672, 45.402601], [9.230672, 45.398104], [9.226176, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.402601], [9.226176, 45.407097], [9.230672, 45.407097], [9.230672, 45.402601], [9.226176, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.407097], [9.226176, 45.411594], [9.230672, 45.411594], [9.230672, 45.407097], [9.226176, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.411594], [9.226176, 45.416091], [9.230672, 45.416091], [9.230672, 45.411594], [9.226176, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.416091], [9.226176, 45.420587], [9.230672, 45.420587], [9.230672, 45.416091], [9.226176, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.420587], [9.226176, 45.425084], [9.230672, 45.425084], [9.230672, 45.420587], [9.226176, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.425084], [9.226176, 45.42958], [9.230672, 45.42958], [9.230672, 45.425084], [9.226176, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.42958], [9.226176, 45.434077], [9.230672, 45.434077], [9.230672, 45.42958], [9.226176, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.434077], [9.226176, 45.438574], [9.230672, 45.438574], [9.230672, 45.434077], [9.226176, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.438574], [9.226176, 45.44307], [9.230672, 45.44307], [9.230672, 45.438574], [9.226176, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.44307], [9.226176, 45.447567], [9.230672, 45.447567], [9.230672, 45.44307], [9.226176, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.447567], [9.226176, 45.452063], [9.230672, 45.452063], [9.230672, 45.447567], [9.226176, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.452063], [9.226176, 45.45656], [9.230672, 45.45656], [9.230672, 45.452063], [9.226176, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.45656], [9.226176, 45.461057], [9.230672, 45.461057], [9.230672, 45.45656], [9.226176, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.461057], [9.226176, 45.465553], [9.230672, 45.465553], [9.230672, 45.461057], [9.226176, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.465553], [9.226176, 45.47005], [9.230672, 45.47005], [9.230672, 45.465553], [9.226176, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.47005], [9.226176, 45.474547], [9.230672, 45.474547], [9.230672, 45.47005], [9.226176, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.474547], [9.226176, 45.479043], [9.230672, 45.479043], [9.230672, 45.474547], [9.226176, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.479043], [9.226176, 45.48354], [9.230672, 45.48354], [9.230672, 45.479043], [9.226176, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.48354], [9.226176, 45.488036], [9.230672, 45.488036], [9.230672, 45.48354], [9.226176, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.488036], [9.226176, 45.492533], [9.230672, 45.492533], [9.230672, 45.488036], [9.226176, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.492533], [9.226176, 45.49703], [9.230672, 45.49703], [9.230672, 45.492533], [9.226176, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.49703], [9.226176, 45.501526], [9.230672, 45.501526], [9.230672, 45.49703], [9.226176, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.501526], [9.226176, 45.506023], [9.230672, 45.506023], [9.230672, 45.501526], [9.226176, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.506023], [9.226176, 45.510519], [9.230672, 45.510519], [9.230672, 45.506023], [9.226176, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.510519], [9.226176, 45.515016], [9.230672, 45.515016], [9.230672, 45.510519], [9.226176, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.515016], [9.226176, 45.519513], [9.230672, 45.519513], [9.230672, 45.515016], [9.226176, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.519513], [9.226176, 45.524009], [9.230672, 45.524009], [9.230672, 45.519513], [9.226176, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.524009], [9.226176, 45.528506], [9.230672, 45.528506], [9.230672, 45.524009], [9.226176, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.528506], [9.226176, 45.533002], [9.230672, 45.533002], [9.230672, 45.528506], [9.226176, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.533002], [9.226176, 45.537499], [9.230672, 45.537499], [9.230672, 45.533002], [9.226176, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.537499], [9.226176, 45.541996], [9.230672, 45.541996], [9.230672, 45.537499], [9.226176, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.541996], [9.226176, 45.546492], [9.230672, 45.546492], [9.230672, 45.541996], [9.226176, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0587ff", "fill": "#0587ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.546492], [9.226176, 45.550989], [9.230672, 45.550989], [9.230672, 45.546492], [9.226176, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.550989], [9.226176, 45.555485], [9.230672, 45.555485], [9.230672, 45.550989], [9.226176, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.555485], [9.226176, 45.559982], [9.230672, 45.559982], [9.230672, 45.555485], [9.226176, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.559982], [9.226176, 45.564479], [9.230672, 45.564479], [9.230672, 45.559982], [9.226176, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.564479], [9.226176, 45.568975], [9.230672, 45.568975], [9.230672, 45.564479], [9.226176, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.568975], [9.226176, 45.573472], [9.230672, 45.573472], [9.230672, 45.568975], [9.226176, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.573472], [9.226176, 45.577968], [9.230672, 45.577968], [9.230672, 45.573472], [9.226176, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.577968], [9.226176, 45.582465], [9.230672, 45.582465], [9.230672, 45.577968], [9.226176, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.582465], [9.226176, 45.586962], [9.230672, 45.586962], [9.230672, 45.582465], [9.226176, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.586962], [9.226176, 45.591458], [9.230672, 45.591458], [9.230672, 45.586962], [9.226176, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.591458], [9.226176, 45.595955], [9.230672, 45.595955], [9.230672, 45.591458], [9.226176, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.595955], [9.226176, 45.600451], [9.230672, 45.600451], [9.230672, 45.595955], [9.226176, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.600451], [9.226176, 45.604948], [9.230672, 45.604948], [9.230672, 45.600451], [9.226176, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.604948], [9.226176, 45.609445], [9.230672, 45.609445], [9.230672, 45.604948], [9.226176, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.609445], [9.226176, 45.613941], [9.230672, 45.613941], [9.230672, 45.609445], [9.226176, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.613941], [9.226176, 45.618438], [9.230672, 45.618438], [9.230672, 45.613941], [9.226176, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.618438], [9.226176, 45.622934], [9.230672, 45.622934], [9.230672, 45.618438], [9.226176, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.622934], [9.226176, 45.627431], [9.230672, 45.627431], [9.230672, 45.622934], [9.226176, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.627431], [9.226176, 45.631928], [9.230672, 45.631928], [9.230672, 45.627431], [9.226176, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.226176, 45.631928], [9.226176, 45.636424], [9.230672, 45.636424], [9.230672, 45.631928], [9.226176, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.339648], [9.230672, 45.344145], [9.235169, 45.344145], [9.235169, 45.339648], [9.230672, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.344145], [9.230672, 45.348642], [9.235169, 45.348642], [9.235169, 45.344145], [9.230672, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.348642], [9.230672, 45.353138], [9.235169, 45.353138], [9.235169, 45.348642], [9.230672, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.353138], [9.230672, 45.357635], [9.235169, 45.357635], [9.235169, 45.353138], [9.230672, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.357635], [9.230672, 45.362131], [9.235169, 45.362131], [9.235169, 45.357635], [9.230672, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.362131], [9.230672, 45.366628], [9.235169, 45.366628], [9.235169, 45.362131], [9.230672, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.366628], [9.230672, 45.371125], [9.235169, 45.371125], [9.235169, 45.366628], [9.230672, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.371125], [9.230672, 45.375621], [9.235169, 45.375621], [9.235169, 45.371125], [9.230672, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.375621], [9.230672, 45.380118], [9.235169, 45.380118], [9.235169, 45.375621], [9.230672, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.380118], [9.230672, 45.384614], [9.235169, 45.384614], [9.235169, 45.380118], [9.230672, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.384614], [9.230672, 45.389111], [9.235169, 45.389111], [9.235169, 45.384614], [9.230672, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.389111], [9.230672, 45.393608], [9.235169, 45.393608], [9.235169, 45.389111], [9.230672, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.393608], [9.230672, 45.398104], [9.235169, 45.398104], [9.235169, 45.393608], [9.230672, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.398104], [9.230672, 45.402601], [9.235169, 45.402601], [9.235169, 45.398104], [9.230672, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.402601], [9.230672, 45.407097], [9.235169, 45.407097], [9.235169, 45.402601], [9.230672, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.407097], [9.230672, 45.411594], [9.235169, 45.411594], [9.235169, 45.407097], [9.230672, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.411594], [9.230672, 45.416091], [9.235169, 45.416091], [9.235169, 45.411594], [9.230672, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.416091], [9.230672, 45.420587], [9.235169, 45.420587], [9.235169, 45.416091], [9.230672, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.420587], [9.230672, 45.425084], [9.235169, 45.425084], [9.235169, 45.420587], [9.230672, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.425084], [9.230672, 45.42958], [9.235169, 45.42958], [9.235169, 45.425084], [9.230672, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.42958], [9.230672, 45.434077], [9.235169, 45.434077], [9.235169, 45.42958], [9.230672, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.434077], [9.230672, 45.438574], [9.235169, 45.438574], [9.235169, 45.434077], [9.230672, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.438574], [9.230672, 45.44307], [9.235169, 45.44307], [9.235169, 45.438574], [9.230672, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.44307], [9.230672, 45.447567], [9.235169, 45.447567], [9.235169, 45.44307], [9.230672, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.447567], [9.230672, 45.452063], [9.235169, 45.452063], [9.235169, 45.447567], [9.230672, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.452063], [9.230672, 45.45656], [9.235169, 45.45656], [9.235169, 45.452063], [9.230672, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.45656], [9.230672, 45.461057], [9.235169, 45.461057], [9.235169, 45.45656], [9.230672, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.461057], [9.230672, 45.465553], [9.235169, 45.465553], [9.235169, 45.461057], [9.230672, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.465553], [9.230672, 45.47005], [9.235169, 45.47005], [9.235169, 45.465553], [9.230672, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.47005], [9.230672, 45.474547], [9.235169, 45.474547], [9.235169, 45.47005], [9.230672, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.474547], [9.230672, 45.479043], [9.235169, 45.479043], [9.235169, 45.474547], [9.230672, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.479043], [9.230672, 45.48354], [9.235169, 45.48354], [9.235169, 45.479043], [9.230672, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.48354], [9.230672, 45.488036], [9.235169, 45.488036], [9.235169, 45.48354], [9.230672, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 16, "stroke": "#cce7ff", "fill": "#cce7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.488036], [9.230672, 45.492533], [9.235169, 45.492533], [9.235169, 45.488036], [9.230672, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.492533], [9.230672, 45.49703], [9.235169, 45.49703], [9.235169, 45.492533], [9.230672, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.49703], [9.230672, 45.501526], [9.235169, 45.501526], [9.235169, 45.49703], [9.230672, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.501526], [9.230672, 45.506023], [9.235169, 45.506023], [9.235169, 45.501526], [9.230672, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.506023], [9.230672, 45.510519], [9.235169, 45.510519], [9.235169, 45.506023], [9.230672, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.510519], [9.230672, 45.515016], [9.235169, 45.515016], [9.235169, 45.510519], [9.230672, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.515016], [9.230672, 45.519513], [9.235169, 45.519513], [9.235169, 45.515016], [9.230672, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.519513], [9.230672, 45.524009], [9.235169, 45.524009], [9.235169, 45.519513], [9.230672, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.524009], [9.230672, 45.528506], [9.235169, 45.528506], [9.235169, 45.524009], [9.230672, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.528506], [9.230672, 45.533002], [9.235169, 45.533002], [9.235169, 45.528506], [9.230672, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.533002], [9.230672, 45.537499], [9.235169, 45.537499], [9.235169, 45.533002], [9.230672, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.537499], [9.230672, 45.541996], [9.235169, 45.541996], [9.235169, 45.537499], [9.230672, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.541996], [9.230672, 45.546492], [9.235169, 45.546492], [9.235169, 45.541996], [9.230672, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.546492], [9.230672, 45.550989], [9.235169, 45.550989], [9.235169, 45.546492], [9.230672, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.550989], [9.230672, 45.555485], [9.235169, 45.555485], [9.235169, 45.550989], [9.230672, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.555485], [9.230672, 45.559982], [9.235169, 45.559982], [9.235169, 45.555485], [9.230672, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.559982], [9.230672, 45.564479], [9.235169, 45.564479], [9.235169, 45.559982], [9.230672, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.564479], [9.230672, 45.568975], [9.235169, 45.568975], [9.235169, 45.564479], [9.230672, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.568975], [9.230672, 45.573472], [9.235169, 45.573472], [9.235169, 45.568975], [9.230672, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.573472], [9.230672, 45.577968], [9.235169, 45.577968], [9.235169, 45.573472], [9.230672, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.577968], [9.230672, 45.582465], [9.235169, 45.582465], [9.235169, 45.577968], [9.230672, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.582465], [9.230672, 45.586962], [9.235169, 45.586962], [9.235169, 45.582465], [9.230672, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.586962], [9.230672, 45.591458], [9.235169, 45.591458], [9.235169, 45.586962], [9.230672, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.591458], [9.230672, 45.595955], [9.235169, 45.595955], [9.235169, 45.591458], [9.230672, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.595955], [9.230672, 45.600451], [9.235169, 45.600451], [9.235169, 45.595955], [9.230672, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.600451], [9.230672, 45.604948], [9.235169, 45.604948], [9.235169, 45.600451], [9.230672, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.604948], [9.230672, 45.609445], [9.235169, 45.609445], [9.235169, 45.604948], [9.230672, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.609445], [9.230672, 45.613941], [9.235169, 45.613941], [9.235169, 45.609445], [9.230672, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.613941], [9.230672, 45.618438], [9.235169, 45.618438], [9.235169, 45.613941], [9.230672, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.618438], [9.230672, 45.622934], [9.235169, 45.622934], [9.235169, 45.618438], [9.230672, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.622934], [9.230672, 45.627431], [9.235169, 45.627431], [9.235169, 45.622934], [9.230672, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.627431], [9.230672, 45.631928], [9.235169, 45.631928], [9.235169, 45.627431], [9.230672, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.230672, 45.631928], [9.230672, 45.636424], [9.235169, 45.636424], [9.235169, 45.631928], [9.230672, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.339648], [9.235169, 45.344145], [9.239665, 45.344145], [9.239665, 45.339648], [9.235169, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.344145], [9.235169, 45.348642], [9.239665, 45.348642], [9.239665, 45.344145], [9.235169, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.348642], [9.235169, 45.353138], [9.239665, 45.353138], [9.239665, 45.348642], [9.235169, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.353138], [9.235169, 45.357635], [9.239665, 45.357635], [9.239665, 45.353138], [9.235169, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.357635], [9.235169, 45.362131], [9.239665, 45.362131], [9.239665, 45.357635], [9.235169, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.362131], [9.235169, 45.366628], [9.239665, 45.366628], [9.239665, 45.362131], [9.235169, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.366628], [9.235169, 45.371125], [9.239665, 45.371125], [9.239665, 45.366628], [9.235169, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.371125], [9.235169, 45.375621], [9.239665, 45.375621], [9.239665, 45.371125], [9.235169, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.375621], [9.235169, 45.380118], [9.239665, 45.380118], [9.239665, 45.375621], [9.235169, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.380118], [9.235169, 45.384614], [9.239665, 45.384614], [9.239665, 45.380118], [9.235169, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.384614], [9.235169, 45.389111], [9.239665, 45.389111], [9.239665, 45.384614], [9.235169, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.389111], [9.235169, 45.393608], [9.239665, 45.393608], [9.239665, 45.389111], [9.235169, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.393608], [9.235169, 45.398104], [9.239665, 45.398104], [9.239665, 45.393608], [9.235169, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.398104], [9.235169, 45.402601], [9.239665, 45.402601], [9.239665, 45.398104], [9.235169, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.402601], [9.235169, 45.407097], [9.239665, 45.407097], [9.239665, 45.402601], [9.235169, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.407097], [9.235169, 45.411594], [9.239665, 45.411594], [9.239665, 45.407097], [9.235169, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.411594], [9.235169, 45.416091], [9.239665, 45.416091], [9.239665, 45.411594], [9.235169, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.416091], [9.235169, 45.420587], [9.239665, 45.420587], [9.239665, 45.416091], [9.235169, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.420587], [9.235169, 45.425084], [9.239665, 45.425084], [9.239665, 45.420587], [9.235169, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.425084], [9.235169, 45.42958], [9.239665, 45.42958], [9.239665, 45.425084], [9.235169, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.42958], [9.235169, 45.434077], [9.239665, 45.434077], [9.239665, 45.42958], [9.235169, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.434077], [9.235169, 45.438574], [9.239665, 45.438574], [9.239665, 45.434077], [9.235169, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.438574], [9.235169, 45.44307], [9.239665, 45.44307], [9.239665, 45.438574], [9.235169, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.44307], [9.235169, 45.447567], [9.239665, 45.447567], [9.239665, 45.44307], [9.235169, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.447567], [9.235169, 45.452063], [9.239665, 45.452063], [9.239665, 45.447567], [9.235169, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.452063], [9.235169, 45.45656], [9.239665, 45.45656], [9.239665, 45.452063], [9.235169, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.45656], [9.235169, 45.461057], [9.239665, 45.461057], [9.239665, 45.45656], [9.235169, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.461057], [9.235169, 45.465553], [9.239665, 45.465553], [9.239665, 45.461057], [9.235169, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.465553], [9.235169, 45.47005], [9.239665, 45.47005], [9.239665, 45.465553], [9.235169, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.47005], [9.235169, 45.474547], [9.239665, 45.474547], [9.239665, 45.47005], [9.235169, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.474547], [9.235169, 45.479043], [9.239665, 45.479043], [9.239665, 45.474547], [9.235169, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.479043], [9.235169, 45.48354], [9.239665, 45.48354], [9.239665, 45.479043], [9.235169, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.48354], [9.235169, 45.488036], [9.239665, 45.488036], [9.239665, 45.48354], [9.235169, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.488036], [9.235169, 45.492533], [9.239665, 45.492533], [9.239665, 45.488036], [9.235169, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.492533], [9.235169, 45.49703], [9.239665, 45.49703], [9.239665, 45.492533], [9.235169, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.49703], [9.235169, 45.501526], [9.239665, 45.501526], [9.239665, 45.49703], [9.235169, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.501526], [9.235169, 45.506023], [9.239665, 45.506023], [9.239665, 45.501526], [9.235169, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.506023], [9.235169, 45.510519], [9.239665, 45.510519], [9.239665, 45.506023], [9.235169, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.510519], [9.235169, 45.515016], [9.239665, 45.515016], [9.239665, 45.510519], [9.235169, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.515016], [9.235169, 45.519513], [9.239665, 45.519513], [9.239665, 45.515016], [9.235169, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.519513], [9.235169, 45.524009], [9.239665, 45.524009], [9.239665, 45.519513], [9.235169, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.524009], [9.235169, 45.528506], [9.239665, 45.528506], [9.239665, 45.524009], [9.235169, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.528506], [9.235169, 45.533002], [9.239665, 45.533002], [9.239665, 45.528506], [9.235169, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.533002], [9.235169, 45.537499], [9.239665, 45.537499], [9.239665, 45.533002], [9.235169, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.537499], [9.235169, 45.541996], [9.239665, 45.541996], [9.239665, 45.537499], [9.235169, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.541996], [9.235169, 45.546492], [9.239665, 45.546492], [9.239665, 45.541996], [9.235169, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.546492], [9.235169, 45.550989], [9.239665, 45.550989], [9.239665, 45.546492], [9.235169, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.550989], [9.235169, 45.555485], [9.239665, 45.555485], [9.239665, 45.550989], [9.235169, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.555485], [9.235169, 45.559982], [9.239665, 45.559982], [9.239665, 45.555485], [9.235169, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.559982], [9.235169, 45.564479], [9.239665, 45.564479], [9.239665, 45.559982], [9.235169, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.564479], [9.235169, 45.568975], [9.239665, 45.568975], [9.239665, 45.564479], [9.235169, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.568975], [9.235169, 45.573472], [9.239665, 45.573472], [9.239665, 45.568975], [9.235169, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.573472], [9.235169, 45.577968], [9.239665, 45.577968], [9.239665, 45.573472], [9.235169, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.577968], [9.235169, 45.582465], [9.239665, 45.582465], [9.239665, 45.577968], [9.235169, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.582465], [9.235169, 45.586962], [9.239665, 45.586962], [9.239665, 45.582465], [9.235169, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.586962], [9.235169, 45.591458], [9.239665, 45.591458], [9.239665, 45.586962], [9.235169, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.591458], [9.235169, 45.595955], [9.239665, 45.595955], [9.239665, 45.591458], [9.235169, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.595955], [9.235169, 45.600451], [9.239665, 45.600451], [9.239665, 45.595955], [9.235169, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.600451], [9.235169, 45.604948], [9.239665, 45.604948], [9.239665, 45.600451], [9.235169, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.604948], [9.235169, 45.609445], [9.239665, 45.609445], [9.239665, 45.604948], [9.235169, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.609445], [9.235169, 45.613941], [9.239665, 45.613941], [9.239665, 45.609445], [9.235169, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.613941], [9.235169, 45.618438], [9.239665, 45.618438], [9.239665, 45.613941], [9.235169, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.618438], [9.235169, 45.622934], [9.239665, 45.622934], [9.239665, 45.618438], [9.235169, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.622934], [9.235169, 45.627431], [9.239665, 45.627431], [9.239665, 45.622934], [9.235169, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.627431], [9.235169, 45.631928], [9.239665, 45.631928], [9.239665, 45.627431], [9.235169, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.235169, 45.631928], [9.235169, 45.636424], [9.239665, 45.636424], [9.239665, 45.631928], [9.235169, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.339648], [9.239665, 45.344145], [9.244162, 45.344145], [9.244162, 45.339648], [9.239665, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.344145], [9.239665, 45.348642], [9.244162, 45.348642], [9.244162, 45.344145], [9.239665, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.348642], [9.239665, 45.353138], [9.244162, 45.353138], [9.244162, 45.348642], [9.239665, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.353138], [9.239665, 45.357635], [9.244162, 45.357635], [9.244162, 45.353138], [9.239665, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.357635], [9.239665, 45.362131], [9.244162, 45.362131], [9.244162, 45.357635], [9.239665, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.362131], [9.239665, 45.366628], [9.244162, 45.366628], [9.244162, 45.362131], [9.239665, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.366628], [9.239665, 45.371125], [9.244162, 45.371125], [9.244162, 45.366628], [9.239665, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.371125], [9.239665, 45.375621], [9.244162, 45.375621], [9.244162, 45.371125], [9.239665, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.375621], [9.239665, 45.380118], [9.244162, 45.380118], [9.244162, 45.375621], [9.239665, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.380118], [9.239665, 45.384614], [9.244162, 45.384614], [9.244162, 45.380118], [9.239665, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.384614], [9.239665, 45.389111], [9.244162, 45.389111], [9.244162, 45.384614], [9.239665, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.389111], [9.239665, 45.393608], [9.244162, 45.393608], [9.244162, 45.389111], [9.239665, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.393608], [9.239665, 45.398104], [9.244162, 45.398104], [9.244162, 45.393608], [9.239665, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.398104], [9.239665, 45.402601], [9.244162, 45.402601], [9.244162, 45.398104], [9.239665, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.402601], [9.239665, 45.407097], [9.244162, 45.407097], [9.244162, 45.402601], [9.239665, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.407097], [9.239665, 45.411594], [9.244162, 45.411594], [9.244162, 45.407097], [9.239665, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.411594], [9.239665, 45.416091], [9.244162, 45.416091], [9.244162, 45.411594], [9.239665, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.416091], [9.239665, 45.420587], [9.244162, 45.420587], [9.244162, 45.416091], [9.239665, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.420587], [9.239665, 45.425084], [9.244162, 45.425084], [9.244162, 45.420587], [9.239665, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.425084], [9.239665, 45.42958], [9.244162, 45.42958], [9.244162, 45.425084], [9.239665, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.42958], [9.239665, 45.434077], [9.244162, 45.434077], [9.244162, 45.42958], [9.239665, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.434077], [9.239665, 45.438574], [9.244162, 45.438574], [9.244162, 45.434077], [9.239665, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.438574], [9.239665, 45.44307], [9.244162, 45.44307], [9.244162, 45.438574], [9.239665, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.44307], [9.239665, 45.447567], [9.244162, 45.447567], [9.244162, 45.44307], [9.239665, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.447567], [9.239665, 45.452063], [9.244162, 45.452063], [9.244162, 45.447567], [9.239665, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.452063], [9.239665, 45.45656], [9.244162, 45.45656], [9.244162, 45.452063], [9.239665, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.45656], [9.239665, 45.461057], [9.244162, 45.461057], [9.244162, 45.45656], [9.239665, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.461057], [9.239665, 45.465553], [9.244162, 45.465553], [9.244162, 45.461057], [9.239665, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.465553], [9.239665, 45.47005], [9.244162, 45.47005], [9.244162, 45.465553], [9.239665, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.47005], [9.239665, 45.474547], [9.244162, 45.474547], [9.244162, 45.47005], [9.239665, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.474547], [9.239665, 45.479043], [9.244162, 45.479043], [9.244162, 45.474547], [9.239665, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.479043], [9.239665, 45.48354], [9.244162, 45.48354], [9.244162, 45.479043], [9.239665, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.48354], [9.239665, 45.488036], [9.244162, 45.488036], [9.244162, 45.48354], [9.239665, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.488036], [9.239665, 45.492533], [9.244162, 45.492533], [9.244162, 45.488036], [9.239665, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#99ceff", "fill": "#99ceff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.492533], [9.239665, 45.49703], [9.244162, 45.49703], [9.244162, 45.492533], [9.239665, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.49703], [9.239665, 45.501526], [9.244162, 45.501526], [9.244162, 45.49703], [9.239665, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.501526], [9.239665, 45.506023], [9.244162, 45.506023], [9.244162, 45.501526], [9.239665, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.506023], [9.239665, 45.510519], [9.244162, 45.510519], [9.244162, 45.506023], [9.239665, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.510519], [9.239665, 45.515016], [9.244162, 45.515016], [9.244162, 45.510519], [9.239665, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.515016], [9.239665, 45.519513], [9.244162, 45.519513], [9.244162, 45.515016], [9.239665, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.519513], [9.239665, 45.524009], [9.244162, 45.524009], [9.244162, 45.519513], [9.239665, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.524009], [9.239665, 45.528506], [9.244162, 45.528506], [9.244162, 45.524009], [9.239665, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.528506], [9.239665, 45.533002], [9.244162, 45.533002], [9.244162, 45.528506], [9.239665, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.533002], [9.239665, 45.537499], [9.244162, 45.537499], [9.244162, 45.533002], [9.239665, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.537499], [9.239665, 45.541996], [9.244162, 45.541996], [9.244162, 45.537499], [9.239665, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.541996], [9.239665, 45.546492], [9.244162, 45.546492], [9.244162, 45.541996], [9.239665, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.546492], [9.239665, 45.550989], [9.244162, 45.550989], [9.244162, 45.546492], [9.239665, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.550989], [9.239665, 45.555485], [9.244162, 45.555485], [9.244162, 45.550989], [9.239665, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.555485], [9.239665, 45.559982], [9.244162, 45.559982], [9.244162, 45.555485], [9.239665, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.559982], [9.239665, 45.564479], [9.244162, 45.564479], [9.244162, 45.559982], [9.239665, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.564479], [9.239665, 45.568975], [9.244162, 45.568975], [9.244162, 45.564479], [9.239665, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.568975], [9.239665, 45.573472], [9.244162, 45.573472], [9.244162, 45.568975], [9.239665, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.573472], [9.239665, 45.577968], [9.244162, 45.577968], [9.244162, 45.573472], [9.239665, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.577968], [9.239665, 45.582465], [9.244162, 45.582465], [9.244162, 45.577968], [9.239665, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.582465], [9.239665, 45.586962], [9.244162, 45.586962], [9.244162, 45.582465], [9.239665, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.586962], [9.239665, 45.591458], [9.244162, 45.591458], [9.244162, 45.586962], [9.239665, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.591458], [9.239665, 45.595955], [9.244162, 45.595955], [9.244162, 45.591458], [9.239665, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.595955], [9.239665, 45.600451], [9.244162, 45.600451], [9.244162, 45.595955], [9.239665, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.600451], [9.239665, 45.604948], [9.244162, 45.604948], [9.244162, 45.600451], [9.239665, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.604948], [9.239665, 45.609445], [9.244162, 45.609445], [9.244162, 45.604948], [9.239665, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.609445], [9.239665, 45.613941], [9.244162, 45.613941], [9.244162, 45.609445], [9.239665, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.613941], [9.239665, 45.618438], [9.244162, 45.618438], [9.244162, 45.613941], [9.239665, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.618438], [9.239665, 45.622934], [9.244162, 45.622934], [9.244162, 45.618438], [9.239665, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.622934], [9.239665, 45.627431], [9.244162, 45.627431], [9.244162, 45.622934], [9.239665, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.627431], [9.239665, 45.631928], [9.244162, 45.631928], [9.244162, 45.627431], [9.239665, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.239665, 45.631928], [9.239665, 45.636424], [9.244162, 45.636424], [9.244162, 45.631928], [9.239665, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.339648], [9.244162, 45.344145], [9.248659, 45.344145], [9.248659, 45.339648], [9.244162, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.344145], [9.244162, 45.348642], [9.248659, 45.348642], [9.248659, 45.344145], [9.244162, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.348642], [9.244162, 45.353138], [9.248659, 45.353138], [9.248659, 45.348642], [9.244162, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.353138], [9.244162, 45.357635], [9.248659, 45.357635], [9.248659, 45.353138], [9.244162, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.357635], [9.244162, 45.362131], [9.248659, 45.362131], [9.248659, 45.357635], [9.244162, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.362131], [9.244162, 45.366628], [9.248659, 45.366628], [9.248659, 45.362131], [9.244162, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.366628], [9.244162, 45.371125], [9.248659, 45.371125], [9.248659, 45.366628], [9.244162, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.371125], [9.244162, 45.375621], [9.248659, 45.375621], [9.248659, 45.371125], [9.244162, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.375621], [9.244162, 45.380118], [9.248659, 45.380118], [9.248659, 45.375621], [9.244162, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.380118], [9.244162, 45.384614], [9.248659, 45.384614], [9.248659, 45.380118], [9.244162, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.384614], [9.244162, 45.389111], [9.248659, 45.389111], [9.248659, 45.384614], [9.244162, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.389111], [9.244162, 45.393608], [9.248659, 45.393608], [9.248659, 45.389111], [9.244162, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.393608], [9.244162, 45.398104], [9.248659, 45.398104], [9.248659, 45.393608], [9.244162, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.398104], [9.244162, 45.402601], [9.248659, 45.402601], [9.248659, 45.398104], [9.244162, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.402601], [9.244162, 45.407097], [9.248659, 45.407097], [9.248659, 45.402601], [9.244162, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.407097], [9.244162, 45.411594], [9.248659, 45.411594], [9.248659, 45.407097], [9.244162, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.411594], [9.244162, 45.416091], [9.248659, 45.416091], [9.248659, 45.411594], [9.244162, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.416091], [9.244162, 45.420587], [9.248659, 45.420587], [9.248659, 45.416091], [9.244162, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.420587], [9.244162, 45.425084], [9.248659, 45.425084], [9.248659, 45.420587], [9.244162, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.425084], [9.244162, 45.42958], [9.248659, 45.42958], [9.248659, 45.425084], [9.244162, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.42958], [9.244162, 45.434077], [9.248659, 45.434077], [9.248659, 45.42958], [9.244162, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.434077], [9.244162, 45.438574], [9.248659, 45.438574], [9.248659, 45.434077], [9.244162, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.438574], [9.244162, 45.44307], [9.248659, 45.44307], [9.248659, 45.438574], [9.244162, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.44307], [9.244162, 45.447567], [9.248659, 45.447567], [9.248659, 45.44307], [9.244162, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.447567], [9.244162, 45.452063], [9.248659, 45.452063], [9.248659, 45.447567], [9.244162, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.452063], [9.244162, 45.45656], [9.248659, 45.45656], [9.248659, 45.452063], [9.244162, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.45656], [9.244162, 45.461057], [9.248659, 45.461057], [9.248659, 45.45656], [9.244162, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.461057], [9.244162, 45.465553], [9.248659, 45.465553], [9.248659, 45.461057], [9.244162, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.465553], [9.244162, 45.47005], [9.248659, 45.47005], [9.248659, 45.465553], [9.244162, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.47005], [9.244162, 45.474547], [9.248659, 45.474547], [9.248659, 45.47005], [9.244162, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.474547], [9.244162, 45.479043], [9.248659, 45.479043], [9.248659, 45.474547], [9.244162, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.479043], [9.244162, 45.48354], [9.248659, 45.48354], [9.248659, 45.479043], [9.244162, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.48354], [9.244162, 45.488036], [9.248659, 45.488036], [9.248659, 45.48354], [9.244162, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.488036], [9.244162, 45.492533], [9.248659, 45.492533], [9.248659, 45.488036], [9.244162, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.492533], [9.244162, 45.49703], [9.248659, 45.49703], [9.248659, 45.492533], [9.244162, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.49703], [9.244162, 45.501526], [9.248659, 45.501526], [9.248659, 45.49703], [9.244162, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.501526], [9.244162, 45.506023], [9.248659, 45.506023], [9.248659, 45.501526], [9.244162, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.506023], [9.244162, 45.510519], [9.248659, 45.510519], [9.248659, 45.506023], [9.244162, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.510519], [9.244162, 45.515016], [9.248659, 45.515016], [9.248659, 45.510519], [9.244162, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.515016], [9.244162, 45.519513], [9.248659, 45.519513], [9.248659, 45.515016], [9.244162, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.519513], [9.244162, 45.524009], [9.248659, 45.524009], [9.248659, 45.519513], [9.244162, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.524009], [9.244162, 45.528506], [9.248659, 45.528506], [9.248659, 45.524009], [9.244162, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.528506], [9.244162, 45.533002], [9.248659, 45.533002], [9.248659, 45.528506], [9.244162, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.533002], [9.244162, 45.537499], [9.248659, 45.537499], [9.248659, 45.533002], [9.244162, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.537499], [9.244162, 45.541996], [9.248659, 45.541996], [9.248659, 45.537499], [9.244162, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.541996], [9.244162, 45.546492], [9.248659, 45.546492], [9.248659, 45.541996], [9.244162, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.546492], [9.244162, 45.550989], [9.248659, 45.550989], [9.248659, 45.546492], [9.244162, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.550989], [9.244162, 45.555485], [9.248659, 45.555485], [9.248659, 45.550989], [9.244162, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.555485], [9.244162, 45.559982], [9.248659, 45.559982], [9.248659, 45.555485], [9.244162, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.559982], [9.244162, 45.564479], [9.248659, 45.564479], [9.248659, 45.559982], [9.244162, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#2496ff", "fill": "#2496ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.564479], [9.244162, 45.568975], [9.248659, 45.568975], [9.248659, 45.564479], [9.244162, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.568975], [9.244162, 45.573472], [9.248659, 45.573472], [9.248659, 45.568975], [9.244162, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.573472], [9.244162, 45.577968], [9.248659, 45.577968], [9.248659, 45.573472], [9.244162, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.577968], [9.244162, 45.582465], [9.248659, 45.582465], [9.248659, 45.577968], [9.244162, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.582465], [9.244162, 45.586962], [9.248659, 45.586962], [9.248659, 45.582465], [9.244162, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.586962], [9.244162, 45.591458], [9.248659, 45.591458], [9.248659, 45.586962], [9.244162, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.591458], [9.244162, 45.595955], [9.248659, 45.595955], [9.248659, 45.591458], [9.244162, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.595955], [9.244162, 45.600451], [9.248659, 45.600451], [9.248659, 45.595955], [9.244162, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.600451], [9.244162, 45.604948], [9.248659, 45.604948], [9.248659, 45.600451], [9.244162, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.604948], [9.244162, 45.609445], [9.248659, 45.609445], [9.248659, 45.604948], [9.244162, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.609445], [9.244162, 45.613941], [9.248659, 45.613941], [9.248659, 45.609445], [9.244162, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.613941], [9.244162, 45.618438], [9.248659, 45.618438], [9.248659, 45.613941], [9.244162, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.618438], [9.244162, 45.622934], [9.248659, 45.622934], [9.248659, 45.618438], [9.244162, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.622934], [9.244162, 45.627431], [9.248659, 45.627431], [9.248659, 45.622934], [9.244162, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.627431], [9.244162, 45.631928], [9.248659, 45.631928], [9.248659, 45.627431], [9.244162, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.244162, 45.631928], [9.244162, 45.636424], [9.248659, 45.636424], [9.248659, 45.631928], [9.244162, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.339648], [9.248659, 45.344145], [9.253155, 45.344145], [9.253155, 45.339648], [9.248659, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.344145], [9.248659, 45.348642], [9.253155, 45.348642], [9.253155, 45.344145], [9.248659, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.348642], [9.248659, 45.353138], [9.253155, 45.353138], [9.253155, 45.348642], [9.248659, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.353138], [9.248659, 45.357635], [9.253155, 45.357635], [9.253155, 45.353138], [9.248659, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.357635], [9.248659, 45.362131], [9.253155, 45.362131], [9.253155, 45.357635], [9.248659, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.362131], [9.248659, 45.366628], [9.253155, 45.366628], [9.253155, 45.362131], [9.248659, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.366628], [9.248659, 45.371125], [9.253155, 45.371125], [9.253155, 45.366628], [9.248659, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.371125], [9.248659, 45.375621], [9.253155, 45.375621], [9.253155, 45.371125], [9.248659, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.375621], [9.248659, 45.380118], [9.253155, 45.380118], [9.253155, 45.375621], [9.248659, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.380118], [9.248659, 45.384614], [9.253155, 45.384614], [9.253155, 45.380118], [9.248659, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.384614], [9.248659, 45.389111], [9.253155, 45.389111], [9.253155, 45.384614], [9.248659, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.389111], [9.248659, 45.393608], [9.253155, 45.393608], [9.253155, 45.389111], [9.248659, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.393608], [9.248659, 45.398104], [9.253155, 45.398104], [9.253155, 45.393608], [9.248659, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.398104], [9.248659, 45.402601], [9.253155, 45.402601], [9.253155, 45.398104], [9.248659, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.402601], [9.248659, 45.407097], [9.253155, 45.407097], [9.253155, 45.402601], [9.248659, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.407097], [9.248659, 45.411594], [9.253155, 45.411594], [9.253155, 45.407097], [9.248659, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.411594], [9.248659, 45.416091], [9.253155, 45.416091], [9.253155, 45.411594], [9.248659, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.416091], [9.248659, 45.420587], [9.253155, 45.420587], [9.253155, 45.416091], [9.248659, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.420587], [9.248659, 45.425084], [9.253155, 45.425084], [9.253155, 45.420587], [9.248659, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.425084], [9.248659, 45.42958], [9.253155, 45.42958], [9.253155, 45.425084], [9.248659, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.42958], [9.248659, 45.434077], [9.253155, 45.434077], [9.253155, 45.42958], [9.248659, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.434077], [9.248659, 45.438574], [9.253155, 45.438574], [9.253155, 45.434077], [9.248659, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.438574], [9.248659, 45.44307], [9.253155, 45.44307], [9.253155, 45.438574], [9.248659, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.44307], [9.248659, 45.447567], [9.253155, 45.447567], [9.253155, 45.44307], [9.248659, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.447567], [9.248659, 45.452063], [9.253155, 45.452063], [9.253155, 45.447567], [9.248659, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.452063], [9.248659, 45.45656], [9.253155, 45.45656], [9.253155, 45.452063], [9.248659, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.45656], [9.248659, 45.461057], [9.253155, 45.461057], [9.253155, 45.45656], [9.248659, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.461057], [9.248659, 45.465553], [9.253155, 45.465553], [9.253155, 45.461057], [9.248659, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.465553], [9.248659, 45.47005], [9.253155, 45.47005], [9.253155, 45.465553], [9.248659, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.47005], [9.248659, 45.474547], [9.253155, 45.474547], [9.253155, 45.47005], [9.248659, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.474547], [9.248659, 45.479043], [9.253155, 45.479043], [9.253155, 45.474547], [9.248659, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.479043], [9.248659, 45.48354], [9.253155, 45.48354], [9.253155, 45.479043], [9.248659, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.48354], [9.248659, 45.488036], [9.253155, 45.488036], [9.253155, 45.48354], [9.248659, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.488036], [9.248659, 45.492533], [9.253155, 45.492533], [9.253155, 45.488036], [9.248659, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.492533], [9.248659, 45.49703], [9.253155, 45.49703], [9.253155, 45.492533], [9.248659, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.49703], [9.248659, 45.501526], [9.253155, 45.501526], [9.253155, 45.49703], [9.248659, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.501526], [9.248659, 45.506023], [9.253155, 45.506023], [9.253155, 45.501526], [9.248659, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.506023], [9.248659, 45.510519], [9.253155, 45.510519], [9.253155, 45.506023], [9.248659, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.510519], [9.248659, 45.515016], [9.253155, 45.515016], [9.253155, 45.510519], [9.248659, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.515016], [9.248659, 45.519513], [9.253155, 45.519513], [9.253155, 45.515016], [9.248659, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.519513], [9.248659, 45.524009], [9.253155, 45.524009], [9.253155, 45.519513], [9.248659, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.524009], [9.248659, 45.528506], [9.253155, 45.528506], [9.253155, 45.524009], [9.248659, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.528506], [9.248659, 45.533002], [9.253155, 45.533002], [9.253155, 45.528506], [9.248659, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.533002], [9.248659, 45.537499], [9.253155, 45.537499], [9.253155, 45.533002], [9.248659, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.537499], [9.248659, 45.541996], [9.253155, 45.541996], [9.253155, 45.537499], [9.248659, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.541996], [9.248659, 45.546492], [9.253155, 45.546492], [9.253155, 45.541996], [9.248659, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.546492], [9.248659, 45.550989], [9.253155, 45.550989], [9.253155, 45.546492], [9.248659, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.550989], [9.248659, 45.555485], [9.253155, 45.555485], [9.253155, 45.550989], [9.248659, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.555485], [9.248659, 45.559982], [9.253155, 45.559982], [9.253155, 45.555485], [9.248659, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.559982], [9.248659, 45.564479], [9.253155, 45.564479], [9.253155, 45.559982], [9.248659, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.564479], [9.248659, 45.568975], [9.253155, 45.568975], [9.253155, 45.564479], [9.248659, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.568975], [9.248659, 45.573472], [9.253155, 45.573472], [9.253155, 45.568975], [9.248659, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.573472], [9.248659, 45.577968], [9.253155, 45.577968], [9.253155, 45.573472], [9.248659, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.577968], [9.248659, 45.582465], [9.253155, 45.582465], [9.253155, 45.577968], [9.248659, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.582465], [9.248659, 45.586962], [9.253155, 45.586962], [9.253155, 45.582465], [9.248659, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.586962], [9.248659, 45.591458], [9.253155, 45.591458], [9.253155, 45.586962], [9.248659, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.591458], [9.248659, 45.595955], [9.253155, 45.595955], [9.253155, 45.591458], [9.248659, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.595955], [9.248659, 45.600451], [9.253155, 45.600451], [9.253155, 45.595955], [9.248659, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.600451], [9.248659, 45.604948], [9.253155, 45.604948], [9.253155, 45.600451], [9.248659, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.604948], [9.248659, 45.609445], [9.253155, 45.609445], [9.253155, 45.604948], [9.248659, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.609445], [9.248659, 45.613941], [9.253155, 45.613941], [9.253155, 45.609445], [9.248659, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.613941], [9.248659, 45.618438], [9.253155, 45.618438], [9.253155, 45.613941], [9.248659, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.618438], [9.248659, 45.622934], [9.253155, 45.622934], [9.253155, 45.618438], [9.248659, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.622934], [9.248659, 45.627431], [9.253155, 45.627431], [9.253155, 45.622934], [9.248659, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.627431], [9.248659, 45.631928], [9.253155, 45.631928], [9.253155, 45.627431], [9.248659, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.248659, 45.631928], [9.248659, 45.636424], [9.253155, 45.636424], [9.253155, 45.631928], [9.248659, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.339648], [9.253155, 45.344145], [9.257652, 45.344145], [9.257652, 45.339648], [9.253155, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.344145], [9.253155, 45.348642], [9.257652, 45.348642], [9.257652, 45.344145], [9.253155, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.348642], [9.253155, 45.353138], [9.257652, 45.353138], [9.257652, 45.348642], [9.253155, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.353138], [9.253155, 45.357635], [9.257652, 45.357635], [9.257652, 45.353138], [9.253155, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.357635], [9.253155, 45.362131], [9.257652, 45.362131], [9.257652, 45.357635], [9.253155, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.362131], [9.253155, 45.366628], [9.257652, 45.366628], [9.257652, 45.362131], [9.253155, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.366628], [9.253155, 45.371125], [9.257652, 45.371125], [9.257652, 45.366628], [9.253155, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.371125], [9.253155, 45.375621], [9.257652, 45.375621], [9.257652, 45.371125], [9.253155, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.375621], [9.253155, 45.380118], [9.257652, 45.380118], [9.257652, 45.375621], [9.253155, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.380118], [9.253155, 45.384614], [9.257652, 45.384614], [9.257652, 45.380118], [9.253155, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.384614], [9.253155, 45.389111], [9.257652, 45.389111], [9.257652, 45.384614], [9.253155, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.389111], [9.253155, 45.393608], [9.257652, 45.393608], [9.257652, 45.389111], [9.253155, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.393608], [9.253155, 45.398104], [9.257652, 45.398104], [9.257652, 45.393608], [9.253155, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.398104], [9.253155, 45.402601], [9.257652, 45.402601], [9.257652, 45.398104], [9.253155, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.402601], [9.253155, 45.407097], [9.257652, 45.407097], [9.257652, 45.402601], [9.253155, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.407097], [9.253155, 45.411594], [9.257652, 45.411594], [9.257652, 45.407097], [9.253155, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.411594], [9.253155, 45.416091], [9.257652, 45.416091], [9.257652, 45.411594], [9.253155, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.416091], [9.253155, 45.420587], [9.257652, 45.420587], [9.257652, 45.416091], [9.253155, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.420587], [9.253155, 45.425084], [9.257652, 45.425084], [9.257652, 45.420587], [9.253155, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.425084], [9.253155, 45.42958], [9.257652, 45.42958], [9.257652, 45.425084], [9.253155, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.42958], [9.253155, 45.434077], [9.257652, 45.434077], [9.257652, 45.42958], [9.253155, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.434077], [9.253155, 45.438574], [9.257652, 45.438574], [9.257652, 45.434077], [9.253155, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.438574], [9.253155, 45.44307], [9.257652, 45.44307], [9.257652, 45.438574], [9.253155, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.44307], [9.253155, 45.447567], [9.257652, 45.447567], [9.257652, 45.44307], [9.253155, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.447567], [9.253155, 45.452063], [9.257652, 45.452063], [9.257652, 45.447567], [9.253155, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.452063], [9.253155, 45.45656], [9.257652, 45.45656], [9.257652, 45.452063], [9.253155, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.45656], [9.253155, 45.461057], [9.257652, 45.461057], [9.257652, 45.45656], [9.253155, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.461057], [9.253155, 45.465553], [9.257652, 45.465553], [9.257652, 45.461057], [9.253155, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.465553], [9.253155, 45.47005], [9.257652, 45.47005], [9.257652, 45.465553], [9.253155, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.47005], [9.253155, 45.474547], [9.257652, 45.474547], [9.257652, 45.47005], [9.253155, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.474547], [9.253155, 45.479043], [9.257652, 45.479043], [9.257652, 45.474547], [9.253155, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.479043], [9.253155, 45.48354], [9.257652, 45.48354], [9.257652, 45.479043], [9.253155, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.48354], [9.253155, 45.488036], [9.257652, 45.488036], [9.257652, 45.48354], [9.253155, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.488036], [9.253155, 45.492533], [9.257652, 45.492533], [9.257652, 45.488036], [9.253155, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.492533], [9.253155, 45.49703], [9.257652, 45.49703], [9.257652, 45.492533], [9.253155, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.49703], [9.253155, 45.501526], [9.257652, 45.501526], [9.257652, 45.49703], [9.253155, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.501526], [9.253155, 45.506023], [9.257652, 45.506023], [9.257652, 45.501526], [9.253155, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.506023], [9.253155, 45.510519], [9.257652, 45.510519], [9.257652, 45.506023], [9.253155, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.510519], [9.253155, 45.515016], [9.257652, 45.515016], [9.257652, 45.510519], [9.253155, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.515016], [9.253155, 45.519513], [9.257652, 45.519513], [9.257652, 45.515016], [9.253155, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.519513], [9.253155, 45.524009], [9.257652, 45.524009], [9.257652, 45.519513], [9.253155, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.524009], [9.253155, 45.528506], [9.257652, 45.528506], [9.257652, 45.524009], [9.253155, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.528506], [9.253155, 45.533002], [9.257652, 45.533002], [9.257652, 45.528506], [9.253155, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.533002], [9.253155, 45.537499], [9.257652, 45.537499], [9.257652, 45.533002], [9.253155, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.537499], [9.253155, 45.541996], [9.257652, 45.541996], [9.257652, 45.537499], [9.253155, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.541996], [9.253155, 45.546492], [9.257652, 45.546492], [9.257652, 45.541996], [9.253155, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.546492], [9.253155, 45.550989], [9.257652, 45.550989], [9.257652, 45.546492], [9.253155, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.550989], [9.253155, 45.555485], [9.257652, 45.555485], [9.257652, 45.550989], [9.253155, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.555485], [9.253155, 45.559982], [9.257652, 45.559982], [9.257652, 45.555485], [9.253155, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.559982], [9.253155, 45.564479], [9.257652, 45.564479], [9.257652, 45.559982], [9.253155, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.564479], [9.253155, 45.568975], [9.257652, 45.568975], [9.257652, 45.564479], [9.253155, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.568975], [9.253155, 45.573472], [9.257652, 45.573472], [9.257652, 45.568975], [9.253155, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.573472], [9.253155, 45.577968], [9.257652, 45.577968], [9.257652, 45.573472], [9.253155, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.577968], [9.253155, 45.582465], [9.257652, 45.582465], [9.257652, 45.577968], [9.253155, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.582465], [9.253155, 45.586962], [9.257652, 45.586962], [9.257652, 45.582465], [9.253155, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.586962], [9.253155, 45.591458], [9.257652, 45.591458], [9.257652, 45.586962], [9.253155, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.591458], [9.253155, 45.595955], [9.257652, 45.595955], [9.257652, 45.591458], [9.253155, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.595955], [9.253155, 45.600451], [9.257652, 45.600451], [9.257652, 45.595955], [9.253155, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.600451], [9.253155, 45.604948], [9.257652, 45.604948], [9.257652, 45.600451], [9.253155, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.604948], [9.253155, 45.609445], [9.257652, 45.609445], [9.257652, 45.604948], [9.253155, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.609445], [9.253155, 45.613941], [9.257652, 45.613941], [9.257652, 45.609445], [9.253155, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.613941], [9.253155, 45.618438], [9.257652, 45.618438], [9.257652, 45.613941], [9.253155, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.618438], [9.253155, 45.622934], [9.257652, 45.622934], [9.257652, 45.618438], [9.253155, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.622934], [9.253155, 45.627431], [9.257652, 45.627431], [9.257652, 45.622934], [9.253155, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.627431], [9.253155, 45.631928], [9.257652, 45.631928], [9.257652, 45.627431], [9.253155, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.253155, 45.631928], [9.253155, 45.636424], [9.257652, 45.636424], [9.257652, 45.631928], [9.253155, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.339648], [9.257652, 45.344145], [9.262148, 45.344145], [9.262148, 45.339648], [9.257652, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.344145], [9.257652, 45.348642], [9.262148, 45.348642], [9.262148, 45.344145], [9.257652, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.348642], [9.257652, 45.353138], [9.262148, 45.353138], [9.262148, 45.348642], [9.257652, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.353138], [9.257652, 45.357635], [9.262148, 45.357635], [9.262148, 45.353138], [9.257652, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.357635], [9.257652, 45.362131], [9.262148, 45.362131], [9.262148, 45.357635], [9.257652, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.362131], [9.257652, 45.366628], [9.262148, 45.366628], [9.262148, 45.362131], [9.257652, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.366628], [9.257652, 45.371125], [9.262148, 45.371125], [9.262148, 45.366628], [9.257652, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.371125], [9.257652, 45.375621], [9.262148, 45.375621], [9.262148, 45.371125], [9.257652, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.375621], [9.257652, 45.380118], [9.262148, 45.380118], [9.262148, 45.375621], [9.257652, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.380118], [9.257652, 45.384614], [9.262148, 45.384614], [9.262148, 45.380118], [9.257652, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.384614], [9.257652, 45.389111], [9.262148, 45.389111], [9.262148, 45.384614], [9.257652, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.389111], [9.257652, 45.393608], [9.262148, 45.393608], [9.262148, 45.389111], [9.257652, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.393608], [9.257652, 45.398104], [9.262148, 45.398104], [9.262148, 45.393608], [9.257652, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.398104], [9.257652, 45.402601], [9.262148, 45.402601], [9.262148, 45.398104], [9.257652, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.402601], [9.257652, 45.407097], [9.262148, 45.407097], [9.262148, 45.402601], [9.257652, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.407097], [9.257652, 45.411594], [9.262148, 45.411594], [9.262148, 45.407097], [9.257652, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.411594], [9.257652, 45.416091], [9.262148, 45.416091], [9.262148, 45.411594], [9.257652, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.416091], [9.257652, 45.420587], [9.262148, 45.420587], [9.262148, 45.416091], [9.257652, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.420587], [9.257652, 45.425084], [9.262148, 45.425084], [9.262148, 45.420587], [9.257652, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.425084], [9.257652, 45.42958], [9.262148, 45.42958], [9.262148, 45.425084], [9.257652, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.42958], [9.257652, 45.434077], [9.262148, 45.434077], [9.262148, 45.42958], [9.257652, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.434077], [9.257652, 45.438574], [9.262148, 45.438574], [9.262148, 45.434077], [9.257652, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.438574], [9.257652, 45.44307], [9.262148, 45.44307], [9.262148, 45.438574], [9.257652, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.44307], [9.257652, 45.447567], [9.262148, 45.447567], [9.262148, 45.44307], [9.257652, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.447567], [9.257652, 45.452063], [9.262148, 45.452063], [9.262148, 45.447567], [9.257652, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.452063], [9.257652, 45.45656], [9.262148, 45.45656], [9.262148, 45.452063], [9.257652, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.45656], [9.257652, 45.461057], [9.262148, 45.461057], [9.262148, 45.45656], [9.257652, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.461057], [9.257652, 45.465553], [9.262148, 45.465553], [9.262148, 45.461057], [9.257652, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.465553], [9.257652, 45.47005], [9.262148, 45.47005], [9.262148, 45.465553], [9.257652, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.47005], [9.257652, 45.474547], [9.262148, 45.474547], [9.262148, 45.47005], [9.257652, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.474547], [9.257652, 45.479043], [9.262148, 45.479043], [9.262148, 45.474547], [9.257652, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.479043], [9.257652, 45.48354], [9.262148, 45.48354], [9.262148, 45.479043], [9.257652, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.48354], [9.257652, 45.488036], [9.262148, 45.488036], [9.262148, 45.48354], [9.257652, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.488036], [9.257652, 45.492533], [9.262148, 45.492533], [9.262148, 45.488036], [9.257652, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.492533], [9.257652, 45.49703], [9.262148, 45.49703], [9.262148, 45.492533], [9.257652, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.49703], [9.257652, 45.501526], [9.262148, 45.501526], [9.262148, 45.49703], [9.257652, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.501526], [9.257652, 45.506023], [9.262148, 45.506023], [9.262148, 45.501526], [9.257652, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.506023], [9.257652, 45.510519], [9.262148, 45.510519], [9.262148, 45.506023], [9.257652, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.510519], [9.257652, 45.515016], [9.262148, 45.515016], [9.262148, 45.510519], [9.257652, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.515016], [9.257652, 45.519513], [9.262148, 45.519513], [9.262148, 45.515016], [9.257652, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.519513], [9.257652, 45.524009], [9.262148, 45.524009], [9.262148, 45.519513], [9.257652, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.524009], [9.257652, 45.528506], [9.262148, 45.528506], [9.262148, 45.524009], [9.257652, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.528506], [9.257652, 45.533002], [9.262148, 45.533002], [9.262148, 45.528506], [9.257652, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.533002], [9.257652, 45.537499], [9.262148, 45.537499], [9.262148, 45.533002], [9.257652, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.537499], [9.257652, 45.541996], [9.262148, 45.541996], [9.262148, 45.537499], [9.257652, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.541996], [9.257652, 45.546492], [9.262148, 45.546492], [9.262148, 45.541996], [9.257652, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.546492], [9.257652, 45.550989], [9.262148, 45.550989], [9.262148, 45.546492], [9.257652, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.550989], [9.257652, 45.555485], [9.262148, 45.555485], [9.262148, 45.550989], [9.257652, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.555485], [9.257652, 45.559982], [9.262148, 45.559982], [9.262148, 45.555485], [9.257652, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.559982], [9.257652, 45.564479], [9.262148, 45.564479], [9.262148, 45.559982], [9.257652, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.564479], [9.257652, 45.568975], [9.262148, 45.568975], [9.262148, 45.564479], [9.257652, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#2e9bff", "fill": "#2e9bff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.568975], [9.257652, 45.573472], [9.262148, 45.573472], [9.262148, 45.568975], [9.257652, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.573472], [9.257652, 45.577968], [9.262148, 45.577968], [9.262148, 45.573472], [9.257652, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.577968], [9.257652, 45.582465], [9.262148, 45.582465], [9.262148, 45.577968], [9.257652, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.582465], [9.257652, 45.586962], [9.262148, 45.586962], [9.262148, 45.582465], [9.257652, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.586962], [9.257652, 45.591458], [9.262148, 45.591458], [9.262148, 45.586962], [9.257652, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.591458], [9.257652, 45.595955], [9.262148, 45.595955], [9.262148, 45.591458], [9.257652, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.595955], [9.257652, 45.600451], [9.262148, 45.600451], [9.262148, 45.595955], [9.257652, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.600451], [9.257652, 45.604948], [9.262148, 45.604948], [9.262148, 45.600451], [9.257652, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.604948], [9.257652, 45.609445], [9.262148, 45.609445], [9.262148, 45.604948], [9.257652, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.609445], [9.257652, 45.613941], [9.262148, 45.613941], [9.262148, 45.609445], [9.257652, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.613941], [9.257652, 45.618438], [9.262148, 45.618438], [9.262148, 45.613941], [9.257652, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.618438], [9.257652, 45.622934], [9.262148, 45.622934], [9.262148, 45.618438], [9.257652, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.622934], [9.257652, 45.627431], [9.262148, 45.627431], [9.262148, 45.622934], [9.257652, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.627431], [9.257652, 45.631928], [9.262148, 45.631928], [9.262148, 45.627431], [9.257652, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.257652, 45.631928], [9.257652, 45.636424], [9.262148, 45.636424], [9.262148, 45.631928], [9.257652, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.339648], [9.262148, 45.344145], [9.266645, 45.344145], [9.266645, 45.339648], [9.262148, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.344145], [9.262148, 45.348642], [9.266645, 45.348642], [9.266645, 45.344145], [9.262148, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.348642], [9.262148, 45.353138], [9.266645, 45.353138], [9.266645, 45.348642], [9.262148, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.353138], [9.262148, 45.357635], [9.266645, 45.357635], [9.266645, 45.353138], [9.262148, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.357635], [9.262148, 45.362131], [9.266645, 45.362131], [9.266645, 45.357635], [9.262148, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.362131], [9.262148, 45.366628], [9.266645, 45.366628], [9.266645, 45.362131], [9.262148, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.366628], [9.262148, 45.371125], [9.266645, 45.371125], [9.266645, 45.366628], [9.262148, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.371125], [9.262148, 45.375621], [9.266645, 45.375621], [9.266645, 45.371125], [9.262148, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.375621], [9.262148, 45.380118], [9.266645, 45.380118], [9.266645, 45.375621], [9.262148, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.380118], [9.262148, 45.384614], [9.266645, 45.384614], [9.266645, 45.380118], [9.262148, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.384614], [9.262148, 45.389111], [9.266645, 45.389111], [9.266645, 45.384614], [9.262148, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.389111], [9.262148, 45.393608], [9.266645, 45.393608], [9.266645, 45.389111], [9.262148, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.393608], [9.262148, 45.398104], [9.266645, 45.398104], [9.266645, 45.393608], [9.262148, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.398104], [9.262148, 45.402601], [9.266645, 45.402601], [9.266645, 45.398104], [9.262148, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.402601], [9.262148, 45.407097], [9.266645, 45.407097], [9.266645, 45.402601], [9.262148, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.407097], [9.262148, 45.411594], [9.266645, 45.411594], [9.266645, 45.407097], [9.262148, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.411594], [9.262148, 45.416091], [9.266645, 45.416091], [9.266645, 45.411594], [9.262148, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.416091], [9.262148, 45.420587], [9.266645, 45.420587], [9.266645, 45.416091], [9.262148, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.420587], [9.262148, 45.425084], [9.266645, 45.425084], [9.266645, 45.420587], [9.262148, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.425084], [9.262148, 45.42958], [9.266645, 45.42958], [9.266645, 45.425084], [9.262148, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.42958], [9.262148, 45.434077], [9.266645, 45.434077], [9.266645, 45.42958], [9.262148, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.434077], [9.262148, 45.438574], [9.266645, 45.438574], [9.266645, 45.434077], [9.262148, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.438574], [9.262148, 45.44307], [9.266645, 45.44307], [9.266645, 45.438574], [9.262148, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.44307], [9.262148, 45.447567], [9.266645, 45.447567], [9.266645, 45.44307], [9.262148, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.447567], [9.262148, 45.452063], [9.266645, 45.452063], [9.266645, 45.447567], [9.262148, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.452063], [9.262148, 45.45656], [9.266645, 45.45656], [9.266645, 45.452063], [9.262148, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.45656], [9.262148, 45.461057], [9.266645, 45.461057], [9.266645, 45.45656], [9.262148, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.461057], [9.262148, 45.465553], [9.266645, 45.465553], [9.266645, 45.461057], [9.262148, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.465553], [9.262148, 45.47005], [9.266645, 45.47005], [9.266645, 45.465553], [9.262148, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.47005], [9.262148, 45.474547], [9.266645, 45.474547], [9.266645, 45.47005], [9.262148, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.474547], [9.262148, 45.479043], [9.266645, 45.479043], [9.266645, 45.474547], [9.262148, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.479043], [9.262148, 45.48354], [9.266645, 45.48354], [9.266645, 45.479043], [9.262148, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.48354], [9.262148, 45.488036], [9.266645, 45.488036], [9.266645, 45.48354], [9.262148, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.488036], [9.262148, 45.492533], [9.266645, 45.492533], [9.266645, 45.488036], [9.262148, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.492533], [9.262148, 45.49703], [9.266645, 45.49703], [9.266645, 45.492533], [9.262148, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.49703], [9.262148, 45.501526], [9.266645, 45.501526], [9.266645, 45.49703], [9.262148, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.501526], [9.262148, 45.506023], [9.266645, 45.506023], [9.266645, 45.501526], [9.262148, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.506023], [9.262148, 45.510519], [9.266645, 45.510519], [9.266645, 45.506023], [9.262148, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.510519], [9.262148, 45.515016], [9.266645, 45.515016], [9.266645, 45.510519], [9.262148, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.515016], [9.262148, 45.519513], [9.266645, 45.519513], [9.266645, 45.515016], [9.262148, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.519513], [9.262148, 45.524009], [9.266645, 45.524009], [9.266645, 45.519513], [9.262148, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.524009], [9.262148, 45.528506], [9.266645, 45.528506], [9.266645, 45.524009], [9.262148, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.528506], [9.262148, 45.533002], [9.266645, 45.533002], [9.266645, 45.528506], [9.262148, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.533002], [9.262148, 45.537499], [9.266645, 45.537499], [9.266645, 45.533002], [9.262148, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.537499], [9.262148, 45.541996], [9.266645, 45.541996], [9.266645, 45.537499], [9.262148, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.541996], [9.262148, 45.546492], [9.266645, 45.546492], [9.266645, 45.541996], [9.262148, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.546492], [9.262148, 45.550989], [9.266645, 45.550989], [9.266645, 45.546492], [9.262148, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.550989], [9.262148, 45.555485], [9.266645, 45.555485], [9.266645, 45.550989], [9.262148, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.555485], [9.262148, 45.559982], [9.266645, 45.559982], [9.266645, 45.555485], [9.262148, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.559982], [9.262148, 45.564479], [9.266645, 45.564479], [9.266645, 45.559982], [9.262148, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.564479], [9.262148, 45.568975], [9.266645, 45.568975], [9.266645, 45.564479], [9.262148, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.568975], [9.262148, 45.573472], [9.266645, 45.573472], [9.266645, 45.568975], [9.262148, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.573472], [9.262148, 45.577968], [9.266645, 45.577968], [9.266645, 45.573472], [9.262148, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.577968], [9.262148, 45.582465], [9.266645, 45.582465], [9.266645, 45.577968], [9.262148, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.582465], [9.262148, 45.586962], [9.266645, 45.586962], [9.266645, 45.582465], [9.262148, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.586962], [9.262148, 45.591458], [9.266645, 45.591458], [9.266645, 45.586962], [9.262148, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.591458], [9.262148, 45.595955], [9.266645, 45.595955], [9.266645, 45.591458], [9.262148, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.595955], [9.262148, 45.600451], [9.266645, 45.600451], [9.266645, 45.595955], [9.262148, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.600451], [9.262148, 45.604948], [9.266645, 45.604948], [9.266645, 45.600451], [9.262148, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.604948], [9.262148, 45.609445], [9.266645, 45.609445], [9.266645, 45.604948], [9.262148, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.609445], [9.262148, 45.613941], [9.266645, 45.613941], [9.266645, 45.609445], [9.262148, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.613941], [9.262148, 45.618438], [9.266645, 45.618438], [9.266645, 45.613941], [9.262148, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.618438], [9.262148, 45.622934], [9.266645, 45.622934], [9.266645, 45.618438], [9.262148, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.622934], [9.262148, 45.627431], [9.266645, 45.627431], [9.266645, 45.622934], [9.262148, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.627431], [9.262148, 45.631928], [9.266645, 45.631928], [9.266645, 45.627431], [9.262148, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.262148, 45.631928], [9.262148, 45.636424], [9.266645, 45.636424], [9.266645, 45.631928], [9.262148, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.339648], [9.266645, 45.344145], [9.271142, 45.344145], [9.271142, 45.339648], [9.266645, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.344145], [9.266645, 45.348642], [9.271142, 45.348642], [9.271142, 45.344145], [9.266645, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.348642], [9.266645, 45.353138], [9.271142, 45.353138], [9.271142, 45.348642], [9.266645, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.353138], [9.266645, 45.357635], [9.271142, 45.357635], [9.271142, 45.353138], [9.266645, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.357635], [9.266645, 45.362131], [9.271142, 45.362131], [9.271142, 45.357635], [9.266645, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.362131], [9.266645, 45.366628], [9.271142, 45.366628], [9.271142, 45.362131], [9.266645, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.366628], [9.266645, 45.371125], [9.271142, 45.371125], [9.271142, 45.366628], [9.266645, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.371125], [9.266645, 45.375621], [9.271142, 45.375621], [9.271142, 45.371125], [9.266645, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.375621], [9.266645, 45.380118], [9.271142, 45.380118], [9.271142, 45.375621], [9.266645, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.380118], [9.266645, 45.384614], [9.271142, 45.384614], [9.271142, 45.380118], [9.266645, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.384614], [9.266645, 45.389111], [9.271142, 45.389111], [9.271142, 45.384614], [9.266645, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.389111], [9.266645, 45.393608], [9.271142, 45.393608], [9.271142, 45.389111], [9.266645, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.393608], [9.266645, 45.398104], [9.271142, 45.398104], [9.271142, 45.393608], [9.266645, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.398104], [9.266645, 45.402601], [9.271142, 45.402601], [9.271142, 45.398104], [9.266645, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.402601], [9.266645, 45.407097], [9.271142, 45.407097], [9.271142, 45.402601], [9.266645, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.407097], [9.266645, 45.411594], [9.271142, 45.411594], [9.271142, 45.407097], [9.266645, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.411594], [9.266645, 45.416091], [9.271142, 45.416091], [9.271142, 45.411594], [9.266645, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.416091], [9.266645, 45.420587], [9.271142, 45.420587], [9.271142, 45.416091], [9.266645, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.420587], [9.266645, 45.425084], [9.271142, 45.425084], [9.271142, 45.420587], [9.266645, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.425084], [9.266645, 45.42958], [9.271142, 45.42958], [9.271142, 45.425084], [9.266645, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.42958], [9.266645, 45.434077], [9.271142, 45.434077], [9.271142, 45.42958], [9.266645, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.434077], [9.266645, 45.438574], [9.271142, 45.438574], [9.271142, 45.434077], [9.266645, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.438574], [9.266645, 45.44307], [9.271142, 45.44307], [9.271142, 45.438574], [9.266645, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.44307], [9.266645, 45.447567], [9.271142, 45.447567], [9.271142, 45.44307], [9.266645, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.447567], [9.266645, 45.452063], [9.271142, 45.452063], [9.271142, 45.447567], [9.266645, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.452063], [9.266645, 45.45656], [9.271142, 45.45656], [9.271142, 45.452063], [9.266645, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.45656], [9.266645, 45.461057], [9.271142, 45.461057], [9.271142, 45.45656], [9.266645, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.461057], [9.266645, 45.465553], [9.271142, 45.465553], [9.271142, 45.461057], [9.266645, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.465553], [9.266645, 45.47005], [9.271142, 45.47005], [9.271142, 45.465553], [9.266645, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.47005], [9.266645, 45.474547], [9.271142, 45.474547], [9.271142, 45.47005], [9.266645, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.474547], [9.266645, 45.479043], [9.271142, 45.479043], [9.271142, 45.474547], [9.266645, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.479043], [9.266645, 45.48354], [9.271142, 45.48354], [9.271142, 45.479043], [9.266645, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.48354], [9.266645, 45.488036], [9.271142, 45.488036], [9.271142, 45.48354], [9.266645, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.488036], [9.266645, 45.492533], [9.271142, 45.492533], [9.271142, 45.488036], [9.266645, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.492533], [9.266645, 45.49703], [9.271142, 45.49703], [9.271142, 45.492533], [9.266645, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.49703], [9.266645, 45.501526], [9.271142, 45.501526], [9.271142, 45.49703], [9.266645, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.501526], [9.266645, 45.506023], [9.271142, 45.506023], [9.271142, 45.501526], [9.266645, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.506023], [9.266645, 45.510519], [9.271142, 45.510519], [9.271142, 45.506023], [9.266645, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.510519], [9.266645, 45.515016], [9.271142, 45.515016], [9.271142, 45.510519], [9.266645, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.515016], [9.266645, 45.519513], [9.271142, 45.519513], [9.271142, 45.515016], [9.266645, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.519513], [9.266645, 45.524009], [9.271142, 45.524009], [9.271142, 45.519513], [9.266645, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.524009], [9.266645, 45.528506], [9.271142, 45.528506], [9.271142, 45.524009], [9.266645, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.528506], [9.266645, 45.533002], [9.271142, 45.533002], [9.271142, 45.528506], [9.266645, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.533002], [9.266645, 45.537499], [9.271142, 45.537499], [9.271142, 45.533002], [9.266645, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.537499], [9.266645, 45.541996], [9.271142, 45.541996], [9.271142, 45.537499], [9.266645, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.541996], [9.266645, 45.546492], [9.271142, 45.546492], [9.271142, 45.541996], [9.266645, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.546492], [9.266645, 45.550989], [9.271142, 45.550989], [9.271142, 45.546492], [9.266645, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.550989], [9.266645, 45.555485], [9.271142, 45.555485], [9.271142, 45.550989], [9.266645, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.555485], [9.266645, 45.559982], [9.271142, 45.559982], [9.271142, 45.555485], [9.266645, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.559982], [9.266645, 45.564479], [9.271142, 45.564479], [9.271142, 45.559982], [9.266645, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.564479], [9.266645, 45.568975], [9.271142, 45.568975], [9.271142, 45.564479], [9.266645, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.568975], [9.266645, 45.573472], [9.271142, 45.573472], [9.271142, 45.568975], [9.266645, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.573472], [9.266645, 45.577968], [9.271142, 45.577968], [9.271142, 45.573472], [9.266645, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.577968], [9.266645, 45.582465], [9.271142, 45.582465], [9.271142, 45.577968], [9.266645, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.582465], [9.266645, 45.586962], [9.271142, 45.586962], [9.271142, 45.582465], [9.266645, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.586962], [9.266645, 45.591458], [9.271142, 45.591458], [9.271142, 45.586962], [9.266645, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.591458], [9.266645, 45.595955], [9.271142, 45.595955], [9.271142, 45.591458], [9.266645, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.595955], [9.266645, 45.600451], [9.271142, 45.600451], [9.271142, 45.595955], [9.266645, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.600451], [9.266645, 45.604948], [9.271142, 45.604948], [9.271142, 45.600451], [9.266645, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.604948], [9.266645, 45.609445], [9.271142, 45.609445], [9.271142, 45.604948], [9.266645, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.609445], [9.266645, 45.613941], [9.271142, 45.613941], [9.271142, 45.609445], [9.266645, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.613941], [9.266645, 45.618438], [9.271142, 45.618438], [9.271142, 45.613941], [9.266645, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.618438], [9.266645, 45.622934], [9.271142, 45.622934], [9.271142, 45.618438], [9.266645, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.622934], [9.266645, 45.627431], [9.271142, 45.627431], [9.271142, 45.622934], [9.266645, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.627431], [9.266645, 45.631928], [9.271142, 45.631928], [9.271142, 45.627431], [9.266645, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.266645, 45.631928], [9.266645, 45.636424], [9.271142, 45.636424], [9.271142, 45.631928], [9.266645, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.339648], [9.271142, 45.344145], [9.275638, 45.344145], [9.275638, 45.339648], [9.271142, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.344145], [9.271142, 45.348642], [9.275638, 45.348642], [9.275638, 45.344145], [9.271142, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.348642], [9.271142, 45.353138], [9.275638, 45.353138], [9.275638, 45.348642], [9.271142, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.353138], [9.271142, 45.357635], [9.275638, 45.357635], [9.275638, 45.353138], [9.271142, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.357635], [9.271142, 45.362131], [9.275638, 45.362131], [9.275638, 45.357635], [9.271142, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.362131], [9.271142, 45.366628], [9.275638, 45.366628], [9.275638, 45.362131], [9.271142, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.366628], [9.271142, 45.371125], [9.275638, 45.371125], [9.275638, 45.366628], [9.271142, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.371125], [9.271142, 45.375621], [9.275638, 45.375621], [9.275638, 45.371125], [9.271142, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.375621], [9.271142, 45.380118], [9.275638, 45.380118], [9.275638, 45.375621], [9.271142, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.380118], [9.271142, 45.384614], [9.275638, 45.384614], [9.275638, 45.380118], [9.271142, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.384614], [9.271142, 45.389111], [9.275638, 45.389111], [9.275638, 45.384614], [9.271142, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.389111], [9.271142, 45.393608], [9.275638, 45.393608], [9.275638, 45.389111], [9.271142, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.393608], [9.271142, 45.398104], [9.275638, 45.398104], [9.275638, 45.393608], [9.271142, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.398104], [9.271142, 45.402601], [9.275638, 45.402601], [9.275638, 45.398104], [9.271142, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.402601], [9.271142, 45.407097], [9.275638, 45.407097], [9.275638, 45.402601], [9.271142, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.407097], [9.271142, 45.411594], [9.275638, 45.411594], [9.275638, 45.407097], [9.271142, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.411594], [9.271142, 45.416091], [9.275638, 45.416091], [9.275638, 45.411594], [9.271142, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.416091], [9.271142, 45.420587], [9.275638, 45.420587], [9.275638, 45.416091], [9.271142, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.420587], [9.271142, 45.425084], [9.275638, 45.425084], [9.275638, 45.420587], [9.271142, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.425084], [9.271142, 45.42958], [9.275638, 45.42958], [9.275638, 45.425084], [9.271142, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.42958], [9.271142, 45.434077], [9.275638, 45.434077], [9.275638, 45.42958], [9.271142, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.434077], [9.271142, 45.438574], [9.275638, 45.438574], [9.275638, 45.434077], [9.271142, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.438574], [9.271142, 45.44307], [9.275638, 45.44307], [9.275638, 45.438574], [9.271142, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.44307], [9.271142, 45.447567], [9.275638, 45.447567], [9.275638, 45.44307], [9.271142, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.447567], [9.271142, 45.452063], [9.275638, 45.452063], [9.275638, 45.447567], [9.271142, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.452063], [9.271142, 45.45656], [9.275638, 45.45656], [9.275638, 45.452063], [9.271142, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.45656], [9.271142, 45.461057], [9.275638, 45.461057], [9.275638, 45.45656], [9.271142, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.461057], [9.271142, 45.465553], [9.275638, 45.465553], [9.275638, 45.461057], [9.271142, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.465553], [9.271142, 45.47005], [9.275638, 45.47005], [9.275638, 45.465553], [9.271142, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.47005], [9.271142, 45.474547], [9.275638, 45.474547], [9.275638, 45.47005], [9.271142, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.474547], [9.271142, 45.479043], [9.275638, 45.479043], [9.275638, 45.474547], [9.271142, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.479043], [9.271142, 45.48354], [9.275638, 45.48354], [9.275638, 45.479043], [9.271142, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.48354], [9.271142, 45.488036], [9.275638, 45.488036], [9.275638, 45.48354], [9.271142, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.488036], [9.271142, 45.492533], [9.275638, 45.492533], [9.275638, 45.488036], [9.271142, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.492533], [9.271142, 45.49703], [9.275638, 45.49703], [9.275638, 45.492533], [9.271142, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.49703], [9.271142, 45.501526], [9.275638, 45.501526], [9.275638, 45.49703], [9.271142, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.501526], [9.271142, 45.506023], [9.275638, 45.506023], [9.275638, 45.501526], [9.271142, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.506023], [9.271142, 45.510519], [9.275638, 45.510519], [9.275638, 45.506023], [9.271142, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.510519], [9.271142, 45.515016], [9.275638, 45.515016], [9.275638, 45.510519], [9.271142, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.515016], [9.271142, 45.519513], [9.275638, 45.519513], [9.275638, 45.515016], [9.271142, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.519513], [9.271142, 45.524009], [9.275638, 45.524009], [9.275638, 45.519513], [9.271142, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.524009], [9.271142, 45.528506], [9.275638, 45.528506], [9.275638, 45.524009], [9.271142, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.528506], [9.271142, 45.533002], [9.275638, 45.533002], [9.275638, 45.528506], [9.271142, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.533002], [9.271142, 45.537499], [9.275638, 45.537499], [9.275638, 45.533002], [9.271142, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.537499], [9.271142, 45.541996], [9.275638, 45.541996], [9.275638, 45.537499], [9.271142, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.541996], [9.271142, 45.546492], [9.275638, 45.546492], [9.275638, 45.541996], [9.271142, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.546492], [9.271142, 45.550989], [9.275638, 45.550989], [9.275638, 45.546492], [9.271142, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.550989], [9.271142, 45.555485], [9.275638, 45.555485], [9.275638, 45.550989], [9.271142, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.555485], [9.271142, 45.559982], [9.275638, 45.559982], [9.275638, 45.555485], [9.271142, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.559982], [9.271142, 45.564479], [9.275638, 45.564479], [9.275638, 45.559982], [9.271142, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.564479], [9.271142, 45.568975], [9.275638, 45.568975], [9.275638, 45.564479], [9.271142, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.568975], [9.271142, 45.573472], [9.275638, 45.573472], [9.275638, 45.568975], [9.271142, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.573472], [9.271142, 45.577968], [9.275638, 45.577968], [9.275638, 45.573472], [9.271142, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.577968], [9.271142, 45.582465], [9.275638, 45.582465], [9.275638, 45.577968], [9.271142, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.582465], [9.271142, 45.586962], [9.275638, 45.586962], [9.275638, 45.582465], [9.271142, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.586962], [9.271142, 45.591458], [9.275638, 45.591458], [9.275638, 45.586962], [9.271142, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.591458], [9.271142, 45.595955], [9.275638, 45.595955], [9.275638, 45.591458], [9.271142, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.595955], [9.271142, 45.600451], [9.275638, 45.600451], [9.275638, 45.595955], [9.271142, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.600451], [9.271142, 45.604948], [9.275638, 45.604948], [9.275638, 45.600451], [9.271142, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.604948], [9.271142, 45.609445], [9.275638, 45.609445], [9.275638, 45.604948], [9.271142, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.609445], [9.271142, 45.613941], [9.275638, 45.613941], [9.275638, 45.609445], [9.271142, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.613941], [9.271142, 45.618438], [9.275638, 45.618438], [9.275638, 45.613941], [9.271142, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.618438], [9.271142, 45.622934], [9.275638, 45.622934], [9.275638, 45.618438], [9.271142, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.622934], [9.271142, 45.627431], [9.275638, 45.627431], [9.275638, 45.622934], [9.271142, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.627431], [9.271142, 45.631928], [9.275638, 45.631928], [9.275638, 45.627431], [9.271142, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.271142, 45.631928], [9.271142, 45.636424], [9.275638, 45.636424], [9.275638, 45.631928], [9.271142, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.339648], [9.275638, 45.344145], [9.280135, 45.344145], [9.280135, 45.339648], [9.275638, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.344145], [9.275638, 45.348642], [9.280135, 45.348642], [9.280135, 45.344145], [9.275638, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.348642], [9.275638, 45.353138], [9.280135, 45.353138], [9.280135, 45.348642], [9.275638, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.353138], [9.275638, 45.357635], [9.280135, 45.357635], [9.280135, 45.353138], [9.275638, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.357635], [9.275638, 45.362131], [9.280135, 45.362131], [9.280135, 45.357635], [9.275638, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.362131], [9.275638, 45.366628], [9.280135, 45.366628], [9.280135, 45.362131], [9.275638, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.366628], [9.275638, 45.371125], [9.280135, 45.371125], [9.280135, 45.366628], [9.275638, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.371125], [9.275638, 45.375621], [9.280135, 45.375621], [9.280135, 45.371125], [9.275638, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.375621], [9.275638, 45.380118], [9.280135, 45.380118], [9.280135, 45.375621], [9.275638, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.380118], [9.275638, 45.384614], [9.280135, 45.384614], [9.280135, 45.380118], [9.275638, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.384614], [9.275638, 45.389111], [9.280135, 45.389111], [9.280135, 45.384614], [9.275638, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.389111], [9.275638, 45.393608], [9.280135, 45.393608], [9.280135, 45.389111], [9.275638, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.393608], [9.275638, 45.398104], [9.280135, 45.398104], [9.280135, 45.393608], [9.275638, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.398104], [9.275638, 45.402601], [9.280135, 45.402601], [9.280135, 45.398104], [9.275638, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.402601], [9.275638, 45.407097], [9.280135, 45.407097], [9.280135, 45.402601], [9.275638, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.407097], [9.275638, 45.411594], [9.280135, 45.411594], [9.280135, 45.407097], [9.275638, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.411594], [9.275638, 45.416091], [9.280135, 45.416091], [9.280135, 45.411594], [9.275638, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.416091], [9.275638, 45.420587], [9.280135, 45.420587], [9.280135, 45.416091], [9.275638, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.420587], [9.275638, 45.425084], [9.280135, 45.425084], [9.280135, 45.420587], [9.275638, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.425084], [9.275638, 45.42958], [9.280135, 45.42958], [9.280135, 45.425084], [9.275638, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.42958], [9.275638, 45.434077], [9.280135, 45.434077], [9.280135, 45.42958], [9.275638, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.434077], [9.275638, 45.438574], [9.280135, 45.438574], [9.280135, 45.434077], [9.275638, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.438574], [9.275638, 45.44307], [9.280135, 45.44307], [9.280135, 45.438574], [9.275638, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.44307], [9.275638, 45.447567], [9.280135, 45.447567], [9.280135, 45.44307], [9.275638, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.447567], [9.275638, 45.452063], [9.280135, 45.452063], [9.280135, 45.447567], [9.275638, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.452063], [9.275638, 45.45656], [9.280135, 45.45656], [9.280135, 45.452063], [9.275638, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.45656], [9.275638, 45.461057], [9.280135, 45.461057], [9.280135, 45.45656], [9.275638, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.461057], [9.275638, 45.465553], [9.280135, 45.465553], [9.280135, 45.461057], [9.275638, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.465553], [9.275638, 45.47005], [9.280135, 45.47005], [9.280135, 45.465553], [9.275638, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.47005], [9.275638, 45.474547], [9.280135, 45.474547], [9.280135, 45.47005], [9.275638, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.474547], [9.275638, 45.479043], [9.280135, 45.479043], [9.280135, 45.474547], [9.275638, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.479043], [9.275638, 45.48354], [9.280135, 45.48354], [9.280135, 45.479043], [9.275638, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.48354], [9.275638, 45.488036], [9.280135, 45.488036], [9.280135, 45.48354], [9.275638, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.488036], [9.275638, 45.492533], [9.280135, 45.492533], [9.280135, 45.488036], [9.275638, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.492533], [9.275638, 45.49703], [9.280135, 45.49703], [9.280135, 45.492533], [9.275638, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.49703], [9.275638, 45.501526], [9.280135, 45.501526], [9.280135, 45.49703], [9.275638, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.501526], [9.275638, 45.506023], [9.280135, 45.506023], [9.280135, 45.501526], [9.275638, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.506023], [9.275638, 45.510519], [9.280135, 45.510519], [9.280135, 45.506023], [9.275638, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.510519], [9.275638, 45.515016], [9.280135, 45.515016], [9.280135, 45.510519], [9.275638, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.515016], [9.275638, 45.519513], [9.280135, 45.519513], [9.280135, 45.515016], [9.275638, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.519513], [9.275638, 45.524009], [9.280135, 45.524009], [9.280135, 45.519513], [9.275638, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.524009], [9.275638, 45.528506], [9.280135, 45.528506], [9.280135, 45.524009], [9.275638, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.528506], [9.275638, 45.533002], [9.280135, 45.533002], [9.280135, 45.528506], [9.275638, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.533002], [9.275638, 45.537499], [9.280135, 45.537499], [9.280135, 45.533002], [9.275638, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.537499], [9.275638, 45.541996], [9.280135, 45.541996], [9.280135, 45.537499], [9.275638, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.541996], [9.275638, 45.546492], [9.280135, 45.546492], [9.280135, 45.541996], [9.275638, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.546492], [9.275638, 45.550989], [9.280135, 45.550989], [9.280135, 45.546492], [9.275638, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.550989], [9.275638, 45.555485], [9.280135, 45.555485], [9.280135, 45.550989], [9.275638, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.555485], [9.275638, 45.559982], [9.280135, 45.559982], [9.280135, 45.555485], [9.275638, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.559982], [9.275638, 45.564479], [9.280135, 45.564479], [9.280135, 45.559982], [9.275638, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.564479], [9.275638, 45.568975], [9.280135, 45.568975], [9.280135, 45.564479], [9.275638, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.568975], [9.275638, 45.573472], [9.280135, 45.573472], [9.280135, 45.568975], [9.275638, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.573472], [9.275638, 45.577968], [9.280135, 45.577968], [9.280135, 45.573472], [9.275638, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.577968], [9.275638, 45.582465], [9.280135, 45.582465], [9.280135, 45.577968], [9.275638, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.582465], [9.275638, 45.586962], [9.280135, 45.586962], [9.280135, 45.582465], [9.275638, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.586962], [9.275638, 45.591458], [9.280135, 45.591458], [9.280135, 45.586962], [9.275638, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.591458], [9.275638, 45.595955], [9.280135, 45.595955], [9.280135, 45.591458], [9.275638, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.595955], [9.275638, 45.600451], [9.280135, 45.600451], [9.280135, 45.595955], [9.275638, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.600451], [9.275638, 45.604948], [9.280135, 45.604948], [9.280135, 45.600451], [9.275638, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.604948], [9.275638, 45.609445], [9.280135, 45.609445], [9.280135, 45.604948], [9.275638, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.609445], [9.275638, 45.613941], [9.280135, 45.613941], [9.280135, 45.609445], [9.275638, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.613941], [9.275638, 45.618438], [9.280135, 45.618438], [9.280135, 45.613941], [9.275638, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.618438], [9.275638, 45.622934], [9.280135, 45.622934], [9.280135, 45.618438], [9.275638, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.622934], [9.275638, 45.627431], [9.280135, 45.627431], [9.280135, 45.622934], [9.275638, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.627431], [9.275638, 45.631928], [9.280135, 45.631928], [9.280135, 45.627431], [9.275638, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.275638, 45.631928], [9.275638, 45.636424], [9.280135, 45.636424], [9.280135, 45.631928], [9.275638, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.339648], [9.280135, 45.344145], [9.284631, 45.344145], [9.284631, 45.339648], [9.280135, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.344145], [9.280135, 45.348642], [9.284631, 45.348642], [9.284631, 45.344145], [9.280135, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.348642], [9.280135, 45.353138], [9.284631, 45.353138], [9.284631, 45.348642], [9.280135, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.353138], [9.280135, 45.357635], [9.284631, 45.357635], [9.284631, 45.353138], [9.280135, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.357635], [9.280135, 45.362131], [9.284631, 45.362131], [9.284631, 45.357635], [9.280135, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.362131], [9.280135, 45.366628], [9.284631, 45.366628], [9.284631, 45.362131], [9.280135, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.366628], [9.280135, 45.371125], [9.284631, 45.371125], [9.284631, 45.366628], [9.280135, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.371125], [9.280135, 45.375621], [9.284631, 45.375621], [9.284631, 45.371125], [9.280135, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.375621], [9.280135, 45.380118], [9.284631, 45.380118], [9.284631, 45.375621], [9.280135, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.380118], [9.280135, 45.384614], [9.284631, 45.384614], [9.284631, 45.380118], [9.280135, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.384614], [9.280135, 45.389111], [9.284631, 45.389111], [9.284631, 45.384614], [9.280135, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.389111], [9.280135, 45.393608], [9.284631, 45.393608], [9.284631, 45.389111], [9.280135, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.393608], [9.280135, 45.398104], [9.284631, 45.398104], [9.284631, 45.393608], [9.280135, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.398104], [9.280135, 45.402601], [9.284631, 45.402601], [9.284631, 45.398104], [9.280135, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.402601], [9.280135, 45.407097], [9.284631, 45.407097], [9.284631, 45.402601], [9.280135, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.407097], [9.280135, 45.411594], [9.284631, 45.411594], [9.284631, 45.407097], [9.280135, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.411594], [9.280135, 45.416091], [9.284631, 45.416091], [9.284631, 45.411594], [9.280135, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.416091], [9.280135, 45.420587], [9.284631, 45.420587], [9.284631, 45.416091], [9.280135, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.420587], [9.280135, 45.425084], [9.284631, 45.425084], [9.284631, 45.420587], [9.280135, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.425084], [9.280135, 45.42958], [9.284631, 45.42958], [9.284631, 45.425084], [9.280135, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.42958], [9.280135, 45.434077], [9.284631, 45.434077], [9.284631, 45.42958], [9.280135, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.434077], [9.280135, 45.438574], [9.284631, 45.438574], [9.284631, 45.434077], [9.280135, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.438574], [9.280135, 45.44307], [9.284631, 45.44307], [9.284631, 45.438574], [9.280135, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.44307], [9.280135, 45.447567], [9.284631, 45.447567], [9.284631, 45.44307], [9.280135, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.447567], [9.280135, 45.452063], [9.284631, 45.452063], [9.284631, 45.447567], [9.280135, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.452063], [9.280135, 45.45656], [9.284631, 45.45656], [9.284631, 45.452063], [9.280135, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.45656], [9.280135, 45.461057], [9.284631, 45.461057], [9.284631, 45.45656], [9.280135, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.461057], [9.280135, 45.465553], [9.284631, 45.465553], [9.284631, 45.461057], [9.280135, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.465553], [9.280135, 45.47005], [9.284631, 45.47005], [9.284631, 45.465553], [9.280135, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.47005], [9.280135, 45.474547], [9.284631, 45.474547], [9.284631, 45.47005], [9.280135, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.474547], [9.280135, 45.479043], [9.284631, 45.479043], [9.284631, 45.474547], [9.280135, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.479043], [9.280135, 45.48354], [9.284631, 45.48354], [9.284631, 45.479043], [9.280135, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.48354], [9.280135, 45.488036], [9.284631, 45.488036], [9.284631, 45.48354], [9.280135, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.488036], [9.280135, 45.492533], [9.284631, 45.492533], [9.284631, 45.488036], [9.280135, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.492533], [9.280135, 45.49703], [9.284631, 45.49703], [9.284631, 45.492533], [9.280135, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.49703], [9.280135, 45.501526], [9.284631, 45.501526], [9.284631, 45.49703], [9.280135, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.501526], [9.280135, 45.506023], [9.284631, 45.506023], [9.284631, 45.501526], [9.280135, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.506023], [9.280135, 45.510519], [9.284631, 45.510519], [9.284631, 45.506023], [9.280135, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.510519], [9.280135, 45.515016], [9.284631, 45.515016], [9.284631, 45.510519], [9.280135, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.515016], [9.280135, 45.519513], [9.284631, 45.519513], [9.284631, 45.515016], [9.280135, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.519513], [9.280135, 45.524009], [9.284631, 45.524009], [9.284631, 45.519513], [9.280135, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.524009], [9.280135, 45.528506], [9.284631, 45.528506], [9.284631, 45.524009], [9.280135, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.528506], [9.280135, 45.533002], [9.284631, 45.533002], [9.284631, 45.528506], [9.280135, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.533002], [9.280135, 45.537499], [9.284631, 45.537499], [9.284631, 45.533002], [9.280135, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.537499], [9.280135, 45.541996], [9.284631, 45.541996], [9.284631, 45.537499], [9.280135, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.541996], [9.280135, 45.546492], [9.284631, 45.546492], [9.284631, 45.541996], [9.280135, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.546492], [9.280135, 45.550989], [9.284631, 45.550989], [9.284631, 45.546492], [9.280135, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.550989], [9.280135, 45.555485], [9.284631, 45.555485], [9.284631, 45.550989], [9.280135, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.555485], [9.280135, 45.559982], [9.284631, 45.559982], [9.284631, 45.555485], [9.280135, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.559982], [9.280135, 45.564479], [9.284631, 45.564479], [9.284631, 45.559982], [9.280135, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.564479], [9.280135, 45.568975], [9.284631, 45.568975], [9.284631, 45.564479], [9.280135, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.568975], [9.280135, 45.573472], [9.284631, 45.573472], [9.284631, 45.568975], [9.280135, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.573472], [9.280135, 45.577968], [9.284631, 45.577968], [9.284631, 45.573472], [9.280135, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.577968], [9.280135, 45.582465], [9.284631, 45.582465], [9.284631, 45.577968], [9.280135, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.582465], [9.280135, 45.586962], [9.284631, 45.586962], [9.284631, 45.582465], [9.280135, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.586962], [9.280135, 45.591458], [9.284631, 45.591458], [9.284631, 45.586962], [9.280135, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.591458], [9.280135, 45.595955], [9.284631, 45.595955], [9.284631, 45.591458], [9.280135, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.595955], [9.280135, 45.600451], [9.284631, 45.600451], [9.284631, 45.595955], [9.280135, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.600451], [9.280135, 45.604948], [9.284631, 45.604948], [9.284631, 45.600451], [9.280135, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.604948], [9.280135, 45.609445], [9.284631, 45.609445], [9.284631, 45.604948], [9.280135, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.609445], [9.280135, 45.613941], [9.284631, 45.613941], [9.284631, 45.609445], [9.280135, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.613941], [9.280135, 45.618438], [9.284631, 45.618438], [9.284631, 45.613941], [9.280135, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.618438], [9.280135, 45.622934], [9.284631, 45.622934], [9.284631, 45.618438], [9.280135, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.622934], [9.280135, 45.627431], [9.284631, 45.627431], [9.284631, 45.622934], [9.280135, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.627431], [9.280135, 45.631928], [9.284631, 45.631928], [9.284631, 45.627431], [9.280135, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.280135, 45.631928], [9.280135, 45.636424], [9.284631, 45.636424], [9.284631, 45.631928], [9.280135, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.339648], [9.284631, 45.344145], [9.289128, 45.344145], [9.289128, 45.339648], [9.284631, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.344145], [9.284631, 45.348642], [9.289128, 45.348642], [9.289128, 45.344145], [9.284631, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.348642], [9.284631, 45.353138], [9.289128, 45.353138], [9.289128, 45.348642], [9.284631, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.353138], [9.284631, 45.357635], [9.289128, 45.357635], [9.289128, 45.353138], [9.284631, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.357635], [9.284631, 45.362131], [9.289128, 45.362131], [9.289128, 45.357635], [9.284631, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.362131], [9.284631, 45.366628], [9.289128, 45.366628], [9.289128, 45.362131], [9.284631, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.366628], [9.284631, 45.371125], [9.289128, 45.371125], [9.289128, 45.366628], [9.284631, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.371125], [9.284631, 45.375621], [9.289128, 45.375621], [9.289128, 45.371125], [9.284631, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.375621], [9.284631, 45.380118], [9.289128, 45.380118], [9.289128, 45.375621], [9.284631, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.380118], [9.284631, 45.384614], [9.289128, 45.384614], [9.289128, 45.380118], [9.284631, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.384614], [9.284631, 45.389111], [9.289128, 45.389111], [9.289128, 45.384614], [9.284631, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.389111], [9.284631, 45.393608], [9.289128, 45.393608], [9.289128, 45.389111], [9.284631, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.393608], [9.284631, 45.398104], [9.289128, 45.398104], [9.289128, 45.393608], [9.284631, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.398104], [9.284631, 45.402601], [9.289128, 45.402601], [9.289128, 45.398104], [9.284631, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.402601], [9.284631, 45.407097], [9.289128, 45.407097], [9.289128, 45.402601], [9.284631, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.407097], [9.284631, 45.411594], [9.289128, 45.411594], [9.289128, 45.407097], [9.284631, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.411594], [9.284631, 45.416091], [9.289128, 45.416091], [9.289128, 45.411594], [9.284631, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.416091], [9.284631, 45.420587], [9.289128, 45.420587], [9.289128, 45.416091], [9.284631, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.420587], [9.284631, 45.425084], [9.289128, 45.425084], [9.289128, 45.420587], [9.284631, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.425084], [9.284631, 45.42958], [9.289128, 45.42958], [9.289128, 45.425084], [9.284631, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.42958], [9.284631, 45.434077], [9.289128, 45.434077], [9.289128, 45.42958], [9.284631, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.434077], [9.284631, 45.438574], [9.289128, 45.438574], [9.289128, 45.434077], [9.284631, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.438574], [9.284631, 45.44307], [9.289128, 45.44307], [9.289128, 45.438574], [9.284631, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.44307], [9.284631, 45.447567], [9.289128, 45.447567], [9.289128, 45.44307], [9.284631, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.447567], [9.284631, 45.452063], [9.289128, 45.452063], [9.289128, 45.447567], [9.284631, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.452063], [9.284631, 45.45656], [9.289128, 45.45656], [9.289128, 45.452063], [9.284631, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.45656], [9.284631, 45.461057], [9.289128, 45.461057], [9.289128, 45.45656], [9.284631, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.461057], [9.284631, 45.465553], [9.289128, 45.465553], [9.289128, 45.461057], [9.284631, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.465553], [9.284631, 45.47005], [9.289128, 45.47005], [9.289128, 45.465553], [9.284631, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.47005], [9.284631, 45.474547], [9.289128, 45.474547], [9.289128, 45.47005], [9.284631, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.474547], [9.284631, 45.479043], [9.289128, 45.479043], [9.289128, 45.474547], [9.284631, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.479043], [9.284631, 45.48354], [9.289128, 45.48354], [9.289128, 45.479043], [9.284631, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.48354], [9.284631, 45.488036], [9.289128, 45.488036], [9.289128, 45.48354], [9.284631, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.488036], [9.284631, 45.492533], [9.289128, 45.492533], [9.289128, 45.488036], [9.284631, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.492533], [9.284631, 45.49703], [9.289128, 45.49703], [9.289128, 45.492533], [9.284631, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.49703], [9.284631, 45.501526], [9.289128, 45.501526], [9.289128, 45.49703], [9.284631, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.501526], [9.284631, 45.506023], [9.289128, 45.506023], [9.289128, 45.501526], [9.284631, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.506023], [9.284631, 45.510519], [9.289128, 45.510519], [9.289128, 45.506023], [9.284631, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.510519], [9.284631, 45.515016], [9.289128, 45.515016], [9.289128, 45.510519], [9.284631, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.515016], [9.284631, 45.519513], [9.289128, 45.519513], [9.289128, 45.515016], [9.284631, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.519513], [9.284631, 45.524009], [9.289128, 45.524009], [9.289128, 45.519513], [9.284631, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.524009], [9.284631, 45.528506], [9.289128, 45.528506], [9.289128, 45.524009], [9.284631, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.528506], [9.284631, 45.533002], [9.289128, 45.533002], [9.289128, 45.528506], [9.284631, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.533002], [9.284631, 45.537499], [9.289128, 45.537499], [9.289128, 45.533002], [9.284631, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.537499], [9.284631, 45.541996], [9.289128, 45.541996], [9.289128, 45.537499], [9.284631, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.541996], [9.284631, 45.546492], [9.289128, 45.546492], [9.289128, 45.541996], [9.284631, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.546492], [9.284631, 45.550989], [9.289128, 45.550989], [9.289128, 45.546492], [9.284631, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.550989], [9.284631, 45.555485], [9.289128, 45.555485], [9.289128, 45.550989], [9.284631, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.555485], [9.284631, 45.559982], [9.289128, 45.559982], [9.289128, 45.555485], [9.284631, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.559982], [9.284631, 45.564479], [9.289128, 45.564479], [9.289128, 45.559982], [9.284631, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.564479], [9.284631, 45.568975], [9.289128, 45.568975], [9.289128, 45.564479], [9.284631, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.568975], [9.284631, 45.573472], [9.289128, 45.573472], [9.289128, 45.568975], [9.284631, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.573472], [9.284631, 45.577968], [9.289128, 45.577968], [9.289128, 45.573472], [9.284631, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.577968], [9.284631, 45.582465], [9.289128, 45.582465], [9.289128, 45.577968], [9.284631, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.582465], [9.284631, 45.586962], [9.289128, 45.586962], [9.289128, 45.582465], [9.284631, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.586962], [9.284631, 45.591458], [9.289128, 45.591458], [9.289128, 45.586962], [9.284631, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.591458], [9.284631, 45.595955], [9.289128, 45.595955], [9.289128, 45.591458], [9.284631, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.595955], [9.284631, 45.600451], [9.289128, 45.600451], [9.289128, 45.595955], [9.284631, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.600451], [9.284631, 45.604948], [9.289128, 45.604948], [9.289128, 45.600451], [9.284631, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.604948], [9.284631, 45.609445], [9.289128, 45.609445], [9.289128, 45.604948], [9.284631, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.609445], [9.284631, 45.613941], [9.289128, 45.613941], [9.289128, 45.609445], [9.284631, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.613941], [9.284631, 45.618438], [9.289128, 45.618438], [9.289128, 45.613941], [9.284631, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.618438], [9.284631, 45.622934], [9.289128, 45.622934], [9.289128, 45.618438], [9.284631, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.622934], [9.284631, 45.627431], [9.289128, 45.627431], [9.289128, 45.622934], [9.284631, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.627431], [9.284631, 45.631928], [9.289128, 45.631928], [9.289128, 45.627431], [9.284631, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.284631, 45.631928], [9.284631, 45.636424], [9.289128, 45.636424], [9.289128, 45.631928], [9.284631, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.339648], [9.289128, 45.344145], [9.293625, 45.344145], [9.293625, 45.339648], [9.289128, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.344145], [9.289128, 45.348642], [9.293625, 45.348642], [9.293625, 45.344145], [9.289128, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.348642], [9.289128, 45.353138], [9.293625, 45.353138], [9.293625, 45.348642], [9.289128, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.353138], [9.289128, 45.357635], [9.293625, 45.357635], [9.293625, 45.353138], [9.289128, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.357635], [9.289128, 45.362131], [9.293625, 45.362131], [9.293625, 45.357635], [9.289128, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.362131], [9.289128, 45.366628], [9.293625, 45.366628], [9.293625, 45.362131], [9.289128, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.366628], [9.289128, 45.371125], [9.293625, 45.371125], [9.293625, 45.366628], [9.289128, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.371125], [9.289128, 45.375621], [9.293625, 45.375621], [9.293625, 45.371125], [9.289128, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.375621], [9.289128, 45.380118], [9.293625, 45.380118], [9.293625, 45.375621], [9.289128, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.380118], [9.289128, 45.384614], [9.293625, 45.384614], [9.293625, 45.380118], [9.289128, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.384614], [9.289128, 45.389111], [9.293625, 45.389111], [9.293625, 45.384614], [9.289128, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.389111], [9.289128, 45.393608], [9.293625, 45.393608], [9.293625, 45.389111], [9.289128, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.393608], [9.289128, 45.398104], [9.293625, 45.398104], [9.293625, 45.393608], [9.289128, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.398104], [9.289128, 45.402601], [9.293625, 45.402601], [9.293625, 45.398104], [9.289128, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.402601], [9.289128, 45.407097], [9.293625, 45.407097], [9.293625, 45.402601], [9.289128, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.407097], [9.289128, 45.411594], [9.293625, 45.411594], [9.293625, 45.407097], [9.289128, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.411594], [9.289128, 45.416091], [9.293625, 45.416091], [9.293625, 45.411594], [9.289128, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.416091], [9.289128, 45.420587], [9.293625, 45.420587], [9.293625, 45.416091], [9.289128, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.420587], [9.289128, 45.425084], [9.293625, 45.425084], [9.293625, 45.420587], [9.289128, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.425084], [9.289128, 45.42958], [9.293625, 45.42958], [9.293625, 45.425084], [9.289128, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.42958], [9.289128, 45.434077], [9.293625, 45.434077], [9.293625, 45.42958], [9.289128, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.434077], [9.289128, 45.438574], [9.293625, 45.438574], [9.293625, 45.434077], [9.289128, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.438574], [9.289128, 45.44307], [9.293625, 45.44307], [9.293625, 45.438574], [9.289128, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.44307], [9.289128, 45.447567], [9.293625, 45.447567], [9.293625, 45.44307], [9.289128, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.447567], [9.289128, 45.452063], [9.293625, 45.452063], [9.293625, 45.447567], [9.289128, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.452063], [9.289128, 45.45656], [9.293625, 45.45656], [9.293625, 45.452063], [9.289128, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.45656], [9.289128, 45.461057], [9.293625, 45.461057], [9.293625, 45.45656], [9.289128, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.461057], [9.289128, 45.465553], [9.293625, 45.465553], [9.293625, 45.461057], [9.289128, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.465553], [9.289128, 45.47005], [9.293625, 45.47005], [9.293625, 45.465553], [9.289128, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.47005], [9.289128, 45.474547], [9.293625, 45.474547], [9.293625, 45.47005], [9.289128, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.474547], [9.289128, 45.479043], [9.293625, 45.479043], [9.293625, 45.474547], [9.289128, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.479043], [9.289128, 45.48354], [9.293625, 45.48354], [9.293625, 45.479043], [9.289128, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.48354], [9.289128, 45.488036], [9.293625, 45.488036], [9.293625, 45.48354], [9.289128, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.488036], [9.289128, 45.492533], [9.293625, 45.492533], [9.293625, 45.488036], [9.289128, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.492533], [9.289128, 45.49703], [9.293625, 45.49703], [9.293625, 45.492533], [9.289128, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.49703], [9.289128, 45.501526], [9.293625, 45.501526], [9.293625, 45.49703], [9.289128, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.501526], [9.289128, 45.506023], [9.293625, 45.506023], [9.293625, 45.501526], [9.289128, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.506023], [9.289128, 45.510519], [9.293625, 45.510519], [9.293625, 45.506023], [9.289128, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.510519], [9.289128, 45.515016], [9.293625, 45.515016], [9.293625, 45.510519], [9.289128, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.515016], [9.289128, 45.519513], [9.293625, 45.519513], [9.293625, 45.515016], [9.289128, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.519513], [9.289128, 45.524009], [9.293625, 45.524009], [9.293625, 45.519513], [9.289128, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.524009], [9.289128, 45.528506], [9.293625, 45.528506], [9.293625, 45.524009], [9.289128, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.528506], [9.289128, 45.533002], [9.293625, 45.533002], [9.293625, 45.528506], [9.289128, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.533002], [9.289128, 45.537499], [9.293625, 45.537499], [9.293625, 45.533002], [9.289128, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.537499], [9.289128, 45.541996], [9.293625, 45.541996], [9.293625, 45.537499], [9.289128, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.541996], [9.289128, 45.546492], [9.293625, 45.546492], [9.293625, 45.541996], [9.289128, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.546492], [9.289128, 45.550989], [9.293625, 45.550989], [9.293625, 45.546492], [9.289128, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.550989], [9.289128, 45.555485], [9.293625, 45.555485], [9.293625, 45.550989], [9.289128, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.555485], [9.289128, 45.559982], [9.293625, 45.559982], [9.293625, 45.555485], [9.289128, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.559982], [9.289128, 45.564479], [9.293625, 45.564479], [9.293625, 45.559982], [9.289128, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.564479], [9.289128, 45.568975], [9.293625, 45.568975], [9.293625, 45.564479], [9.289128, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.568975], [9.289128, 45.573472], [9.293625, 45.573472], [9.293625, 45.568975], [9.289128, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.573472], [9.289128, 45.577968], [9.293625, 45.577968], [9.293625, 45.573472], [9.289128, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.577968], [9.289128, 45.582465], [9.293625, 45.582465], [9.293625, 45.577968], [9.289128, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.582465], [9.289128, 45.586962], [9.293625, 45.586962], [9.293625, 45.582465], [9.289128, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.586962], [9.289128, 45.591458], [9.293625, 45.591458], [9.293625, 45.586962], [9.289128, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.591458], [9.289128, 45.595955], [9.293625, 45.595955], [9.293625, 45.591458], [9.289128, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.595955], [9.289128, 45.600451], [9.293625, 45.600451], [9.293625, 45.595955], [9.289128, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.600451], [9.289128, 45.604948], [9.293625, 45.604948], [9.293625, 45.600451], [9.289128, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.604948], [9.289128, 45.609445], [9.293625, 45.609445], [9.293625, 45.604948], [9.289128, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.609445], [9.289128, 45.613941], [9.293625, 45.613941], [9.293625, 45.609445], [9.289128, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.613941], [9.289128, 45.618438], [9.293625, 45.618438], [9.293625, 45.613941], [9.289128, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.618438], [9.289128, 45.622934], [9.293625, 45.622934], [9.293625, 45.618438], [9.289128, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.622934], [9.289128, 45.627431], [9.293625, 45.627431], [9.293625, 45.622934], [9.289128, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.627431], [9.289128, 45.631928], [9.293625, 45.631928], [9.293625, 45.627431], [9.289128, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.289128, 45.631928], [9.289128, 45.636424], [9.293625, 45.636424], [9.293625, 45.631928], [9.289128, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.339648], [9.293625, 45.344145], [9.298121, 45.344145], [9.298121, 45.339648], [9.293625, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.344145], [9.293625, 45.348642], [9.298121, 45.348642], [9.298121, 45.344145], [9.293625, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.348642], [9.293625, 45.353138], [9.298121, 45.353138], [9.298121, 45.348642], [9.293625, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.353138], [9.293625, 45.357635], [9.298121, 45.357635], [9.298121, 45.353138], [9.293625, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.357635], [9.293625, 45.362131], [9.298121, 45.362131], [9.298121, 45.357635], [9.293625, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.362131], [9.293625, 45.366628], [9.298121, 45.366628], [9.298121, 45.362131], [9.293625, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.366628], [9.293625, 45.371125], [9.298121, 45.371125], [9.298121, 45.366628], [9.293625, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.371125], [9.293625, 45.375621], [9.298121, 45.375621], [9.298121, 45.371125], [9.293625, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.375621], [9.293625, 45.380118], [9.298121, 45.380118], [9.298121, 45.375621], [9.293625, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.380118], [9.293625, 45.384614], [9.298121, 45.384614], [9.298121, 45.380118], [9.293625, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.384614], [9.293625, 45.389111], [9.298121, 45.389111], [9.298121, 45.384614], [9.293625, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.389111], [9.293625, 45.393608], [9.298121, 45.393608], [9.298121, 45.389111], [9.293625, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.393608], [9.293625, 45.398104], [9.298121, 45.398104], [9.298121, 45.393608], [9.293625, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.398104], [9.293625, 45.402601], [9.298121, 45.402601], [9.298121, 45.398104], [9.293625, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.402601], [9.293625, 45.407097], [9.298121, 45.407097], [9.298121, 45.402601], [9.293625, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.407097], [9.293625, 45.411594], [9.298121, 45.411594], [9.298121, 45.407097], [9.293625, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.411594], [9.293625, 45.416091], [9.298121, 45.416091], [9.298121, 45.411594], [9.293625, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.416091], [9.293625, 45.420587], [9.298121, 45.420587], [9.298121, 45.416091], [9.293625, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.420587], [9.293625, 45.425084], [9.298121, 45.425084], [9.298121, 45.420587], [9.293625, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.425084], [9.293625, 45.42958], [9.298121, 45.42958], [9.298121, 45.425084], [9.293625, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.42958], [9.293625, 45.434077], [9.298121, 45.434077], [9.298121, 45.42958], [9.293625, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.434077], [9.293625, 45.438574], [9.298121, 45.438574], [9.298121, 45.434077], [9.293625, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.438574], [9.293625, 45.44307], [9.298121, 45.44307], [9.298121, 45.438574], [9.293625, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.44307], [9.293625, 45.447567], [9.298121, 45.447567], [9.298121, 45.44307], [9.293625, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.447567], [9.293625, 45.452063], [9.298121, 45.452063], [9.298121, 45.447567], [9.293625, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.452063], [9.293625, 45.45656], [9.298121, 45.45656], [9.298121, 45.452063], [9.293625, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.45656], [9.293625, 45.461057], [9.298121, 45.461057], [9.298121, 45.45656], [9.293625, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.461057], [9.293625, 45.465553], [9.298121, 45.465553], [9.298121, 45.461057], [9.293625, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.465553], [9.293625, 45.47005], [9.298121, 45.47005], [9.298121, 45.465553], [9.293625, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.47005], [9.293625, 45.474547], [9.298121, 45.474547], [9.298121, 45.47005], [9.293625, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.474547], [9.293625, 45.479043], [9.298121, 45.479043], [9.298121, 45.474547], [9.293625, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.479043], [9.293625, 45.48354], [9.298121, 45.48354], [9.298121, 45.479043], [9.293625, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.48354], [9.293625, 45.488036], [9.298121, 45.488036], [9.298121, 45.48354], [9.293625, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.488036], [9.293625, 45.492533], [9.298121, 45.492533], [9.298121, 45.488036], [9.293625, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.492533], [9.293625, 45.49703], [9.298121, 45.49703], [9.298121, 45.492533], [9.293625, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.49703], [9.293625, 45.501526], [9.298121, 45.501526], [9.298121, 45.49703], [9.293625, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.501526], [9.293625, 45.506023], [9.298121, 45.506023], [9.298121, 45.501526], [9.293625, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.506023], [9.293625, 45.510519], [9.298121, 45.510519], [9.298121, 45.506023], [9.293625, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.510519], [9.293625, 45.515016], [9.298121, 45.515016], [9.298121, 45.510519], [9.293625, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.515016], [9.293625, 45.519513], [9.298121, 45.519513], [9.298121, 45.515016], [9.293625, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.519513], [9.293625, 45.524009], [9.298121, 45.524009], [9.298121, 45.519513], [9.293625, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.524009], [9.293625, 45.528506], [9.298121, 45.528506], [9.298121, 45.524009], [9.293625, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.528506], [9.293625, 45.533002], [9.298121, 45.533002], [9.298121, 45.528506], [9.293625, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.533002], [9.293625, 45.537499], [9.298121, 45.537499], [9.298121, 45.533002], [9.293625, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.537499], [9.293625, 45.541996], [9.298121, 45.541996], [9.298121, 45.537499], [9.293625, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.541996], [9.293625, 45.546492], [9.298121, 45.546492], [9.298121, 45.541996], [9.293625, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.546492], [9.293625, 45.550989], [9.298121, 45.550989], [9.298121, 45.546492], [9.293625, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.550989], [9.293625, 45.555485], [9.298121, 45.555485], [9.298121, 45.550989], [9.293625, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.555485], [9.293625, 45.559982], [9.298121, 45.559982], [9.298121, 45.555485], [9.293625, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.559982], [9.293625, 45.564479], [9.298121, 45.564479], [9.298121, 45.559982], [9.293625, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.564479], [9.293625, 45.568975], [9.298121, 45.568975], [9.298121, 45.564479], [9.293625, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.568975], [9.293625, 45.573472], [9.298121, 45.573472], [9.298121, 45.568975], [9.293625, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.573472], [9.293625, 45.577968], [9.298121, 45.577968], [9.298121, 45.573472], [9.293625, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.577968], [9.293625, 45.582465], [9.298121, 45.582465], [9.298121, 45.577968], [9.293625, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.582465], [9.293625, 45.586962], [9.298121, 45.586962], [9.298121, 45.582465], [9.293625, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.586962], [9.293625, 45.591458], [9.298121, 45.591458], [9.298121, 45.586962], [9.293625, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.591458], [9.293625, 45.595955], [9.298121, 45.595955], [9.298121, 45.591458], [9.293625, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.595955], [9.293625, 45.600451], [9.298121, 45.600451], [9.298121, 45.595955], [9.293625, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.600451], [9.293625, 45.604948], [9.298121, 45.604948], [9.298121, 45.600451], [9.293625, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.604948], [9.293625, 45.609445], [9.298121, 45.609445], [9.298121, 45.604948], [9.293625, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.609445], [9.293625, 45.613941], [9.298121, 45.613941], [9.298121, 45.609445], [9.293625, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.613941], [9.293625, 45.618438], [9.298121, 45.618438], [9.298121, 45.613941], [9.293625, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.618438], [9.293625, 45.622934], [9.298121, 45.622934], [9.298121, 45.618438], [9.293625, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.622934], [9.293625, 45.627431], [9.298121, 45.627431], [9.298121, 45.622934], [9.293625, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.627431], [9.293625, 45.631928], [9.298121, 45.631928], [9.298121, 45.627431], [9.293625, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.293625, 45.631928], [9.293625, 45.636424], [9.298121, 45.636424], [9.298121, 45.631928], [9.293625, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.339648], [9.298121, 45.344145], [9.302618, 45.344145], [9.302618, 45.339648], [9.298121, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.344145], [9.298121, 45.348642], [9.302618, 45.348642], [9.302618, 45.344145], [9.298121, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.348642], [9.298121, 45.353138], [9.302618, 45.353138], [9.302618, 45.348642], [9.298121, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.353138], [9.298121, 45.357635], [9.302618, 45.357635], [9.302618, 45.353138], [9.298121, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.357635], [9.298121, 45.362131], [9.302618, 45.362131], [9.302618, 45.357635], [9.298121, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.362131], [9.298121, 45.366628], [9.302618, 45.366628], [9.302618, 45.362131], [9.298121, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.366628], [9.298121, 45.371125], [9.302618, 45.371125], [9.302618, 45.366628], [9.298121, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.371125], [9.298121, 45.375621], [9.302618, 45.375621], [9.302618, 45.371125], [9.298121, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.375621], [9.298121, 45.380118], [9.302618, 45.380118], [9.302618, 45.375621], [9.298121, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.380118], [9.298121, 45.384614], [9.302618, 45.384614], [9.302618, 45.380118], [9.298121, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.384614], [9.298121, 45.389111], [9.302618, 45.389111], [9.302618, 45.384614], [9.298121, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.389111], [9.298121, 45.393608], [9.302618, 45.393608], [9.302618, 45.389111], [9.298121, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.393608], [9.298121, 45.398104], [9.302618, 45.398104], [9.302618, 45.393608], [9.298121, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.398104], [9.298121, 45.402601], [9.302618, 45.402601], [9.302618, 45.398104], [9.298121, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.402601], [9.298121, 45.407097], [9.302618, 45.407097], [9.302618, 45.402601], [9.298121, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.407097], [9.298121, 45.411594], [9.302618, 45.411594], [9.302618, 45.407097], [9.298121, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.411594], [9.298121, 45.416091], [9.302618, 45.416091], [9.302618, 45.411594], [9.298121, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.416091], [9.298121, 45.420587], [9.302618, 45.420587], [9.302618, 45.416091], [9.298121, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.420587], [9.298121, 45.425084], [9.302618, 45.425084], [9.302618, 45.420587], [9.298121, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.425084], [9.298121, 45.42958], [9.302618, 45.42958], [9.302618, 45.425084], [9.298121, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.42958], [9.298121, 45.434077], [9.302618, 45.434077], [9.302618, 45.42958], [9.298121, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.434077], [9.298121, 45.438574], [9.302618, 45.438574], [9.302618, 45.434077], [9.298121, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.438574], [9.298121, 45.44307], [9.302618, 45.44307], [9.302618, 45.438574], [9.298121, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.44307], [9.298121, 45.447567], [9.302618, 45.447567], [9.302618, 45.44307], [9.298121, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.447567], [9.298121, 45.452063], [9.302618, 45.452063], [9.302618, 45.447567], [9.298121, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.452063], [9.298121, 45.45656], [9.302618, 45.45656], [9.302618, 45.452063], [9.298121, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.45656], [9.298121, 45.461057], [9.302618, 45.461057], [9.302618, 45.45656], [9.298121, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.461057], [9.298121, 45.465553], [9.302618, 45.465553], [9.302618, 45.461057], [9.298121, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.465553], [9.298121, 45.47005], [9.302618, 45.47005], [9.302618, 45.465553], [9.298121, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.47005], [9.298121, 45.474547], [9.302618, 45.474547], [9.302618, 45.47005], [9.298121, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.474547], [9.298121, 45.479043], [9.302618, 45.479043], [9.302618, 45.474547], [9.298121, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.479043], [9.298121, 45.48354], [9.302618, 45.48354], [9.302618, 45.479043], [9.298121, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.48354], [9.298121, 45.488036], [9.302618, 45.488036], [9.302618, 45.48354], [9.298121, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.488036], [9.298121, 45.492533], [9.302618, 45.492533], [9.302618, 45.488036], [9.298121, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.492533], [9.298121, 45.49703], [9.302618, 45.49703], [9.302618, 45.492533], [9.298121, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.49703], [9.298121, 45.501526], [9.302618, 45.501526], [9.302618, 45.49703], [9.298121, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.501526], [9.298121, 45.506023], [9.302618, 45.506023], [9.302618, 45.501526], [9.298121, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.506023], [9.298121, 45.510519], [9.302618, 45.510519], [9.302618, 45.506023], [9.298121, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.510519], [9.298121, 45.515016], [9.302618, 45.515016], [9.302618, 45.510519], [9.298121, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.515016], [9.298121, 45.519513], [9.302618, 45.519513], [9.302618, 45.515016], [9.298121, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.519513], [9.298121, 45.524009], [9.302618, 45.524009], [9.302618, 45.519513], [9.298121, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.524009], [9.298121, 45.528506], [9.302618, 45.528506], [9.302618, 45.524009], [9.298121, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.528506], [9.298121, 45.533002], [9.302618, 45.533002], [9.302618, 45.528506], [9.298121, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.533002], [9.298121, 45.537499], [9.302618, 45.537499], [9.302618, 45.533002], [9.298121, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.537499], [9.298121, 45.541996], [9.302618, 45.541996], [9.302618, 45.537499], [9.298121, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.541996], [9.298121, 45.546492], [9.302618, 45.546492], [9.302618, 45.541996], [9.298121, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.546492], [9.298121, 45.550989], [9.302618, 45.550989], [9.302618, 45.546492], [9.298121, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.550989], [9.298121, 45.555485], [9.302618, 45.555485], [9.302618, 45.550989], [9.298121, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.555485], [9.298121, 45.559982], [9.302618, 45.559982], [9.302618, 45.555485], [9.298121, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.559982], [9.298121, 45.564479], [9.302618, 45.564479], [9.302618, 45.559982], [9.298121, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.564479], [9.298121, 45.568975], [9.302618, 45.568975], [9.302618, 45.564479], [9.298121, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.568975], [9.298121, 45.573472], [9.302618, 45.573472], [9.302618, 45.568975], [9.298121, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.573472], [9.298121, 45.577968], [9.302618, 45.577968], [9.302618, 45.573472], [9.298121, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.577968], [9.298121, 45.582465], [9.302618, 45.582465], [9.302618, 45.577968], [9.298121, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.582465], [9.298121, 45.586962], [9.302618, 45.586962], [9.302618, 45.582465], [9.298121, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.586962], [9.298121, 45.591458], [9.302618, 45.591458], [9.302618, 45.586962], [9.298121, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.591458], [9.298121, 45.595955], [9.302618, 45.595955], [9.302618, 45.591458], [9.298121, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.595955], [9.298121, 45.600451], [9.302618, 45.600451], [9.302618, 45.595955], [9.298121, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.600451], [9.298121, 45.604948], [9.302618, 45.604948], [9.302618, 45.600451], [9.298121, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.604948], [9.298121, 45.609445], [9.302618, 45.609445], [9.302618, 45.604948], [9.298121, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.609445], [9.298121, 45.613941], [9.302618, 45.613941], [9.302618, 45.609445], [9.298121, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.613941], [9.298121, 45.618438], [9.302618, 45.618438], [9.302618, 45.613941], [9.298121, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.618438], [9.298121, 45.622934], [9.302618, 45.622934], [9.302618, 45.618438], [9.298121, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.622934], [9.298121, 45.627431], [9.302618, 45.627431], [9.302618, 45.622934], [9.298121, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.627431], [9.298121, 45.631928], [9.302618, 45.631928], [9.302618, 45.627431], [9.298121, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.298121, 45.631928], [9.298121, 45.636424], [9.302618, 45.636424], [9.302618, 45.631928], [9.298121, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.339648], [9.302618, 45.344145], [9.307114, 45.344145], [9.307114, 45.339648], [9.302618, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.344145], [9.302618, 45.348642], [9.307114, 45.348642], [9.307114, 45.344145], [9.302618, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.348642], [9.302618, 45.353138], [9.307114, 45.353138], [9.307114, 45.348642], [9.302618, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.353138], [9.302618, 45.357635], [9.307114, 45.357635], [9.307114, 45.353138], [9.302618, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.357635], [9.302618, 45.362131], [9.307114, 45.362131], [9.307114, 45.357635], [9.302618, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.362131], [9.302618, 45.366628], [9.307114, 45.366628], [9.307114, 45.362131], [9.302618, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.366628], [9.302618, 45.371125], [9.307114, 45.371125], [9.307114, 45.366628], [9.302618, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.371125], [9.302618, 45.375621], [9.307114, 45.375621], [9.307114, 45.371125], [9.302618, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.375621], [9.302618, 45.380118], [9.307114, 45.380118], [9.307114, 45.375621], [9.302618, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.380118], [9.302618, 45.384614], [9.307114, 45.384614], [9.307114, 45.380118], [9.302618, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.384614], [9.302618, 45.389111], [9.307114, 45.389111], [9.307114, 45.384614], [9.302618, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.389111], [9.302618, 45.393608], [9.307114, 45.393608], [9.307114, 45.389111], [9.302618, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.393608], [9.302618, 45.398104], [9.307114, 45.398104], [9.307114, 45.393608], [9.302618, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.398104], [9.302618, 45.402601], [9.307114, 45.402601], [9.307114, 45.398104], [9.302618, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.402601], [9.302618, 45.407097], [9.307114, 45.407097], [9.307114, 45.402601], [9.302618, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.407097], [9.302618, 45.411594], [9.307114, 45.411594], [9.307114, 45.407097], [9.302618, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.411594], [9.302618, 45.416091], [9.307114, 45.416091], [9.307114, 45.411594], [9.302618, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.416091], [9.302618, 45.420587], [9.307114, 45.420587], [9.307114, 45.416091], [9.302618, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.420587], [9.302618, 45.425084], [9.307114, 45.425084], [9.307114, 45.420587], [9.302618, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.425084], [9.302618, 45.42958], [9.307114, 45.42958], [9.307114, 45.425084], [9.302618, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.42958], [9.302618, 45.434077], [9.307114, 45.434077], [9.307114, 45.42958], [9.302618, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.434077], [9.302618, 45.438574], [9.307114, 45.438574], [9.307114, 45.434077], [9.302618, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.438574], [9.302618, 45.44307], [9.307114, 45.44307], [9.307114, 45.438574], [9.302618, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.44307], [9.302618, 45.447567], [9.307114, 45.447567], [9.307114, 45.44307], [9.302618, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.447567], [9.302618, 45.452063], [9.307114, 45.452063], [9.307114, 45.447567], [9.302618, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.452063], [9.302618, 45.45656], [9.307114, 45.45656], [9.307114, 45.452063], [9.302618, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.45656], [9.302618, 45.461057], [9.307114, 45.461057], [9.307114, 45.45656], [9.302618, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.461057], [9.302618, 45.465553], [9.307114, 45.465553], [9.307114, 45.461057], [9.302618, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.465553], [9.302618, 45.47005], [9.307114, 45.47005], [9.307114, 45.465553], [9.302618, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.47005], [9.302618, 45.474547], [9.307114, 45.474547], [9.307114, 45.47005], [9.302618, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.474547], [9.302618, 45.479043], [9.307114, 45.479043], [9.307114, 45.474547], [9.302618, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.479043], [9.302618, 45.48354], [9.307114, 45.48354], [9.307114, 45.479043], [9.302618, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.48354], [9.302618, 45.488036], [9.307114, 45.488036], [9.307114, 45.48354], [9.302618, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.488036], [9.302618, 45.492533], [9.307114, 45.492533], [9.307114, 45.488036], [9.302618, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.492533], [9.302618, 45.49703], [9.307114, 45.49703], [9.307114, 45.492533], [9.302618, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.49703], [9.302618, 45.501526], [9.307114, 45.501526], [9.307114, 45.49703], [9.302618, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.501526], [9.302618, 45.506023], [9.307114, 45.506023], [9.307114, 45.501526], [9.302618, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.506023], [9.302618, 45.510519], [9.307114, 45.510519], [9.307114, 45.506023], [9.302618, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.510519], [9.302618, 45.515016], [9.307114, 45.515016], [9.307114, 45.510519], [9.302618, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.515016], [9.302618, 45.519513], [9.307114, 45.519513], [9.307114, 45.515016], [9.302618, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.519513], [9.302618, 45.524009], [9.307114, 45.524009], [9.307114, 45.519513], [9.302618, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.524009], [9.302618, 45.528506], [9.307114, 45.528506], [9.307114, 45.524009], [9.302618, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.528506], [9.302618, 45.533002], [9.307114, 45.533002], [9.307114, 45.528506], [9.302618, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.533002], [9.302618, 45.537499], [9.307114, 45.537499], [9.307114, 45.533002], [9.302618, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.537499], [9.302618, 45.541996], [9.307114, 45.541996], [9.307114, 45.537499], [9.302618, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.541996], [9.302618, 45.546492], [9.307114, 45.546492], [9.307114, 45.541996], [9.302618, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.546492], [9.302618, 45.550989], [9.307114, 45.550989], [9.307114, 45.546492], [9.302618, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.550989], [9.302618, 45.555485], [9.307114, 45.555485], [9.307114, 45.550989], [9.302618, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.555485], [9.302618, 45.559982], [9.307114, 45.559982], [9.307114, 45.555485], [9.302618, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.559982], [9.302618, 45.564479], [9.307114, 45.564479], [9.307114, 45.559982], [9.302618, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.564479], [9.302618, 45.568975], [9.307114, 45.568975], [9.307114, 45.564479], [9.302618, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.568975], [9.302618, 45.573472], [9.307114, 45.573472], [9.307114, 45.568975], [9.302618, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.573472], [9.302618, 45.577968], [9.307114, 45.577968], [9.307114, 45.573472], [9.302618, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.577968], [9.302618, 45.582465], [9.307114, 45.582465], [9.307114, 45.577968], [9.302618, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.582465], [9.302618, 45.586962], [9.307114, 45.586962], [9.307114, 45.582465], [9.302618, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.586962], [9.302618, 45.591458], [9.307114, 45.591458], [9.307114, 45.586962], [9.302618, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.591458], [9.302618, 45.595955], [9.307114, 45.595955], [9.307114, 45.591458], [9.302618, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.595955], [9.302618, 45.600451], [9.307114, 45.600451], [9.307114, 45.595955], [9.302618, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.600451], [9.302618, 45.604948], [9.307114, 45.604948], [9.307114, 45.600451], [9.302618, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.604948], [9.302618, 45.609445], [9.307114, 45.609445], [9.307114, 45.604948], [9.302618, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.609445], [9.302618, 45.613941], [9.307114, 45.613941], [9.307114, 45.609445], [9.302618, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.613941], [9.302618, 45.618438], [9.307114, 45.618438], [9.307114, 45.613941], [9.302618, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.618438], [9.302618, 45.622934], [9.307114, 45.622934], [9.307114, 45.618438], [9.302618, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.622934], [9.302618, 45.627431], [9.307114, 45.627431], [9.307114, 45.622934], [9.302618, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.627431], [9.302618, 45.631928], [9.307114, 45.631928], [9.307114, 45.627431], [9.302618, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.302618, 45.631928], [9.302618, 45.636424], [9.307114, 45.636424], [9.307114, 45.631928], [9.302618, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.339648], [9.307114, 45.344145], [9.311611, 45.344145], [9.311611, 45.339648], [9.307114, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.344145], [9.307114, 45.348642], [9.311611, 45.348642], [9.311611, 45.344145], [9.307114, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.348642], [9.307114, 45.353138], [9.311611, 45.353138], [9.311611, 45.348642], [9.307114, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.353138], [9.307114, 45.357635], [9.311611, 45.357635], [9.311611, 45.353138], [9.307114, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.357635], [9.307114, 45.362131], [9.311611, 45.362131], [9.311611, 45.357635], [9.307114, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.362131], [9.307114, 45.366628], [9.311611, 45.366628], [9.311611, 45.362131], [9.307114, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.366628], [9.307114, 45.371125], [9.311611, 45.371125], [9.311611, 45.366628], [9.307114, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.371125], [9.307114, 45.375621], [9.311611, 45.375621], [9.311611, 45.371125], [9.307114, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.375621], [9.307114, 45.380118], [9.311611, 45.380118], [9.311611, 45.375621], [9.307114, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.380118], [9.307114, 45.384614], [9.311611, 45.384614], [9.311611, 45.380118], [9.307114, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.384614], [9.307114, 45.389111], [9.311611, 45.389111], [9.311611, 45.384614], [9.307114, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.389111], [9.307114, 45.393608], [9.311611, 45.393608], [9.311611, 45.389111], [9.307114, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.393608], [9.307114, 45.398104], [9.311611, 45.398104], [9.311611, 45.393608], [9.307114, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.398104], [9.307114, 45.402601], [9.311611, 45.402601], [9.311611, 45.398104], [9.307114, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.402601], [9.307114, 45.407097], [9.311611, 45.407097], [9.311611, 45.402601], [9.307114, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.407097], [9.307114, 45.411594], [9.311611, 45.411594], [9.311611, 45.407097], [9.307114, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.411594], [9.307114, 45.416091], [9.311611, 45.416091], [9.311611, 45.411594], [9.307114, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.416091], [9.307114, 45.420587], [9.311611, 45.420587], [9.311611, 45.416091], [9.307114, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.420587], [9.307114, 45.425084], [9.311611, 45.425084], [9.311611, 45.420587], [9.307114, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.425084], [9.307114, 45.42958], [9.311611, 45.42958], [9.311611, 45.425084], [9.307114, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.42958], [9.307114, 45.434077], [9.311611, 45.434077], [9.311611, 45.42958], [9.307114, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.434077], [9.307114, 45.438574], [9.311611, 45.438574], [9.311611, 45.434077], [9.307114, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.438574], [9.307114, 45.44307], [9.311611, 45.44307], [9.311611, 45.438574], [9.307114, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.44307], [9.307114, 45.447567], [9.311611, 45.447567], [9.311611, 45.44307], [9.307114, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.447567], [9.307114, 45.452063], [9.311611, 45.452063], [9.311611, 45.447567], [9.307114, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.452063], [9.307114, 45.45656], [9.311611, 45.45656], [9.311611, 45.452063], [9.307114, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.45656], [9.307114, 45.461057], [9.311611, 45.461057], [9.311611, 45.45656], [9.307114, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.461057], [9.307114, 45.465553], [9.311611, 45.465553], [9.311611, 45.461057], [9.307114, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.465553], [9.307114, 45.47005], [9.311611, 45.47005], [9.311611, 45.465553], [9.307114, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.47005], [9.307114, 45.474547], [9.311611, 45.474547], [9.311611, 45.47005], [9.307114, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.474547], [9.307114, 45.479043], [9.311611, 45.479043], [9.311611, 45.474547], [9.307114, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.479043], [9.307114, 45.48354], [9.311611, 45.48354], [9.311611, 45.479043], [9.307114, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.48354], [9.307114, 45.488036], [9.311611, 45.488036], [9.311611, 45.48354], [9.307114, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.488036], [9.307114, 45.492533], [9.311611, 45.492533], [9.311611, 45.488036], [9.307114, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.492533], [9.307114, 45.49703], [9.311611, 45.49703], [9.311611, 45.492533], [9.307114, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.49703], [9.307114, 45.501526], [9.311611, 45.501526], [9.311611, 45.49703], [9.307114, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.501526], [9.307114, 45.506023], [9.311611, 45.506023], [9.311611, 45.501526], [9.307114, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.506023], [9.307114, 45.510519], [9.311611, 45.510519], [9.311611, 45.506023], [9.307114, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.510519], [9.307114, 45.515016], [9.311611, 45.515016], [9.311611, 45.510519], [9.307114, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.515016], [9.307114, 45.519513], [9.311611, 45.519513], [9.311611, 45.515016], [9.307114, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.519513], [9.307114, 45.524009], [9.311611, 45.524009], [9.311611, 45.519513], [9.307114, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.524009], [9.307114, 45.528506], [9.311611, 45.528506], [9.311611, 45.524009], [9.307114, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.528506], [9.307114, 45.533002], [9.311611, 45.533002], [9.311611, 45.528506], [9.307114, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.533002], [9.307114, 45.537499], [9.311611, 45.537499], [9.311611, 45.533002], [9.307114, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.537499], [9.307114, 45.541996], [9.311611, 45.541996], [9.311611, 45.537499], [9.307114, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.541996], [9.307114, 45.546492], [9.311611, 45.546492], [9.311611, 45.541996], [9.307114, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.546492], [9.307114, 45.550989], [9.311611, 45.550989], [9.311611, 45.546492], [9.307114, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.550989], [9.307114, 45.555485], [9.311611, 45.555485], [9.311611, 45.550989], [9.307114, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.555485], [9.307114, 45.559982], [9.311611, 45.559982], [9.311611, 45.555485], [9.307114, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.559982], [9.307114, 45.564479], [9.311611, 45.564479], [9.311611, 45.559982], [9.307114, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.564479], [9.307114, 45.568975], [9.311611, 45.568975], [9.311611, 45.564479], [9.307114, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.568975], [9.307114, 45.573472], [9.311611, 45.573472], [9.311611, 45.568975], [9.307114, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.573472], [9.307114, 45.577968], [9.311611, 45.577968], [9.311611, 45.573472], [9.307114, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.577968], [9.307114, 45.582465], [9.311611, 45.582465], [9.311611, 45.577968], [9.307114, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.582465], [9.307114, 45.586962], [9.311611, 45.586962], [9.311611, 45.582465], [9.307114, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.586962], [9.307114, 45.591458], [9.311611, 45.591458], [9.311611, 45.586962], [9.307114, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.591458], [9.307114, 45.595955], [9.311611, 45.595955], [9.311611, 45.591458], [9.307114, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.595955], [9.307114, 45.600451], [9.311611, 45.600451], [9.311611, 45.595955], [9.307114, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.600451], [9.307114, 45.604948], [9.311611, 45.604948], [9.311611, 45.600451], [9.307114, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.604948], [9.307114, 45.609445], [9.311611, 45.609445], [9.311611, 45.604948], [9.307114, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.609445], [9.307114, 45.613941], [9.311611, 45.613941], [9.311611, 45.609445], [9.307114, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.613941], [9.307114, 45.618438], [9.311611, 45.618438], [9.311611, 45.613941], [9.307114, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.618438], [9.307114, 45.622934], [9.311611, 45.622934], [9.311611, 45.618438], [9.307114, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.622934], [9.307114, 45.627431], [9.311611, 45.627431], [9.311611, 45.622934], [9.307114, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.627431], [9.307114, 45.631928], [9.311611, 45.631928], [9.311611, 45.627431], [9.307114, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.307114, 45.631928], [9.307114, 45.636424], [9.311611, 45.636424], [9.311611, 45.631928], [9.307114, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.339648], [9.311611, 45.344145], [9.316108, 45.344145], [9.316108, 45.339648], [9.311611, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.344145], [9.311611, 45.348642], [9.316108, 45.348642], [9.316108, 45.344145], [9.311611, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.348642], [9.311611, 45.353138], [9.316108, 45.353138], [9.316108, 45.348642], [9.311611, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.353138], [9.311611, 45.357635], [9.316108, 45.357635], [9.316108, 45.353138], [9.311611, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.357635], [9.311611, 45.362131], [9.316108, 45.362131], [9.316108, 45.357635], [9.311611, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.362131], [9.311611, 45.366628], [9.316108, 45.366628], [9.316108, 45.362131], [9.311611, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.366628], [9.311611, 45.371125], [9.316108, 45.371125], [9.316108, 45.366628], [9.311611, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.371125], [9.311611, 45.375621], [9.316108, 45.375621], [9.316108, 45.371125], [9.311611, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.375621], [9.311611, 45.380118], [9.316108, 45.380118], [9.316108, 45.375621], [9.311611, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.380118], [9.311611, 45.384614], [9.316108, 45.384614], [9.316108, 45.380118], [9.311611, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.384614], [9.311611, 45.389111], [9.316108, 45.389111], [9.316108, 45.384614], [9.311611, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.389111], [9.311611, 45.393608], [9.316108, 45.393608], [9.316108, 45.389111], [9.311611, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.393608], [9.311611, 45.398104], [9.316108, 45.398104], [9.316108, 45.393608], [9.311611, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.398104], [9.311611, 45.402601], [9.316108, 45.402601], [9.316108, 45.398104], [9.311611, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.402601], [9.311611, 45.407097], [9.316108, 45.407097], [9.316108, 45.402601], [9.311611, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.407097], [9.311611, 45.411594], [9.316108, 45.411594], [9.316108, 45.407097], [9.311611, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.411594], [9.311611, 45.416091], [9.316108, 45.416091], [9.316108, 45.411594], [9.311611, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.416091], [9.311611, 45.420587], [9.316108, 45.420587], [9.316108, 45.416091], [9.311611, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.420587], [9.311611, 45.425084], [9.316108, 45.425084], [9.316108, 45.420587], [9.311611, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.425084], [9.311611, 45.42958], [9.316108, 45.42958], [9.316108, 45.425084], [9.311611, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.42958], [9.311611, 45.434077], [9.316108, 45.434077], [9.316108, 45.42958], [9.311611, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.434077], [9.311611, 45.438574], [9.316108, 45.438574], [9.316108, 45.434077], [9.311611, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.438574], [9.311611, 45.44307], [9.316108, 45.44307], [9.316108, 45.438574], [9.311611, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.44307], [9.311611, 45.447567], [9.316108, 45.447567], [9.316108, 45.44307], [9.311611, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.447567], [9.311611, 45.452063], [9.316108, 45.452063], [9.316108, 45.447567], [9.311611, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.452063], [9.311611, 45.45656], [9.316108, 45.45656], [9.316108, 45.452063], [9.311611, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.45656], [9.311611, 45.461057], [9.316108, 45.461057], [9.316108, 45.45656], [9.311611, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.461057], [9.311611, 45.465553], [9.316108, 45.465553], [9.316108, 45.461057], [9.311611, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.465553], [9.311611, 45.47005], [9.316108, 45.47005], [9.316108, 45.465553], [9.311611, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.47005], [9.311611, 45.474547], [9.316108, 45.474547], [9.316108, 45.47005], [9.311611, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.474547], [9.311611, 45.479043], [9.316108, 45.479043], [9.316108, 45.474547], [9.311611, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.479043], [9.311611, 45.48354], [9.316108, 45.48354], [9.316108, 45.479043], [9.311611, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.48354], [9.311611, 45.488036], [9.316108, 45.488036], [9.316108, 45.48354], [9.311611, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.488036], [9.311611, 45.492533], [9.316108, 45.492533], [9.316108, 45.488036], [9.311611, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.492533], [9.311611, 45.49703], [9.316108, 45.49703], [9.316108, 45.492533], [9.311611, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.49703], [9.311611, 45.501526], [9.316108, 45.501526], [9.316108, 45.49703], [9.311611, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.501526], [9.311611, 45.506023], [9.316108, 45.506023], [9.316108, 45.501526], [9.311611, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.506023], [9.311611, 45.510519], [9.316108, 45.510519], [9.316108, 45.506023], [9.311611, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.510519], [9.311611, 45.515016], [9.316108, 45.515016], [9.316108, 45.510519], [9.311611, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.515016], [9.311611, 45.519513], [9.316108, 45.519513], [9.316108, 45.515016], [9.311611, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.519513], [9.311611, 45.524009], [9.316108, 45.524009], [9.316108, 45.519513], [9.311611, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.524009], [9.311611, 45.528506], [9.316108, 45.528506], [9.316108, 45.524009], [9.311611, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.528506], [9.311611, 45.533002], [9.316108, 45.533002], [9.316108, 45.528506], [9.311611, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.533002], [9.311611, 45.537499], [9.316108, 45.537499], [9.316108, 45.533002], [9.311611, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.537499], [9.311611, 45.541996], [9.316108, 45.541996], [9.316108, 45.537499], [9.311611, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.541996], [9.311611, 45.546492], [9.316108, 45.546492], [9.316108, 45.541996], [9.311611, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.546492], [9.311611, 45.550989], [9.316108, 45.550989], [9.316108, 45.546492], [9.311611, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.550989], [9.311611, 45.555485], [9.316108, 45.555485], [9.316108, 45.550989], [9.311611, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.555485], [9.311611, 45.559982], [9.316108, 45.559982], [9.316108, 45.555485], [9.311611, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.559982], [9.311611, 45.564479], [9.316108, 45.564479], [9.316108, 45.559982], [9.311611, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.564479], [9.311611, 45.568975], [9.316108, 45.568975], [9.316108, 45.564479], [9.311611, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.568975], [9.311611, 45.573472], [9.316108, 45.573472], [9.316108, 45.568975], [9.311611, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.573472], [9.311611, 45.577968], [9.316108, 45.577968], [9.316108, 45.573472], [9.311611, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.577968], [9.311611, 45.582465], [9.316108, 45.582465], [9.316108, 45.577968], [9.311611, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.582465], [9.311611, 45.586962], [9.316108, 45.586962], [9.316108, 45.582465], [9.311611, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.586962], [9.311611, 45.591458], [9.316108, 45.591458], [9.316108, 45.586962], [9.311611, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.591458], [9.311611, 45.595955], [9.316108, 45.595955], [9.316108, 45.591458], [9.311611, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.595955], [9.311611, 45.600451], [9.316108, 45.600451], [9.316108, 45.595955], [9.311611, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.600451], [9.311611, 45.604948], [9.316108, 45.604948], [9.316108, 45.600451], [9.311611, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.604948], [9.311611, 45.609445], [9.316108, 45.609445], [9.316108, 45.604948], [9.311611, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.609445], [9.311611, 45.613941], [9.316108, 45.613941], [9.316108, 45.609445], [9.311611, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.613941], [9.311611, 45.618438], [9.316108, 45.618438], [9.316108, 45.613941], [9.311611, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.618438], [9.311611, 45.622934], [9.316108, 45.622934], [9.316108, 45.618438], [9.311611, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.622934], [9.311611, 45.627431], [9.316108, 45.627431], [9.316108, 45.622934], [9.311611, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.627431], [9.311611, 45.631928], [9.316108, 45.631928], [9.316108, 45.627431], [9.311611, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.311611, 45.631928], [9.311611, 45.636424], [9.316108, 45.636424], [9.316108, 45.631928], [9.311611, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.339648], [9.316108, 45.344145], [9.320604, 45.344145], [9.320604, 45.339648], [9.316108, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.344145], [9.316108, 45.348642], [9.320604, 45.348642], [9.320604, 45.344145], [9.316108, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.348642], [9.316108, 45.353138], [9.320604, 45.353138], [9.320604, 45.348642], [9.316108, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.353138], [9.316108, 45.357635], [9.320604, 45.357635], [9.320604, 45.353138], [9.316108, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.357635], [9.316108, 45.362131], [9.320604, 45.362131], [9.320604, 45.357635], [9.316108, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.362131], [9.316108, 45.366628], [9.320604, 45.366628], [9.320604, 45.362131], [9.316108, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.366628], [9.316108, 45.371125], [9.320604, 45.371125], [9.320604, 45.366628], [9.316108, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.371125], [9.316108, 45.375621], [9.320604, 45.375621], [9.320604, 45.371125], [9.316108, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.375621], [9.316108, 45.380118], [9.320604, 45.380118], [9.320604, 45.375621], [9.316108, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.380118], [9.316108, 45.384614], [9.320604, 45.384614], [9.320604, 45.380118], [9.316108, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.384614], [9.316108, 45.389111], [9.320604, 45.389111], [9.320604, 45.384614], [9.316108, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.389111], [9.316108, 45.393608], [9.320604, 45.393608], [9.320604, 45.389111], [9.316108, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.393608], [9.316108, 45.398104], [9.320604, 45.398104], [9.320604, 45.393608], [9.316108, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.398104], [9.316108, 45.402601], [9.320604, 45.402601], [9.320604, 45.398104], [9.316108, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.402601], [9.316108, 45.407097], [9.320604, 45.407097], [9.320604, 45.402601], [9.316108, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.407097], [9.316108, 45.411594], [9.320604, 45.411594], [9.320604, 45.407097], [9.316108, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.411594], [9.316108, 45.416091], [9.320604, 45.416091], [9.320604, 45.411594], [9.316108, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.416091], [9.316108, 45.420587], [9.320604, 45.420587], [9.320604, 45.416091], [9.316108, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.420587], [9.316108, 45.425084], [9.320604, 45.425084], [9.320604, 45.420587], [9.316108, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.425084], [9.316108, 45.42958], [9.320604, 45.42958], [9.320604, 45.425084], [9.316108, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.42958], [9.316108, 45.434077], [9.320604, 45.434077], [9.320604, 45.42958], [9.316108, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.434077], [9.316108, 45.438574], [9.320604, 45.438574], [9.320604, 45.434077], [9.316108, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.438574], [9.316108, 45.44307], [9.320604, 45.44307], [9.320604, 45.438574], [9.316108, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.44307], [9.316108, 45.447567], [9.320604, 45.447567], [9.320604, 45.44307], [9.316108, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.447567], [9.316108, 45.452063], [9.320604, 45.452063], [9.320604, 45.447567], [9.316108, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.452063], [9.316108, 45.45656], [9.320604, 45.45656], [9.320604, 45.452063], [9.316108, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.45656], [9.316108, 45.461057], [9.320604, 45.461057], [9.320604, 45.45656], [9.316108, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.461057], [9.316108, 45.465553], [9.320604, 45.465553], [9.320604, 45.461057], [9.316108, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.465553], [9.316108, 45.47005], [9.320604, 45.47005], [9.320604, 45.465553], [9.316108, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.47005], [9.316108, 45.474547], [9.320604, 45.474547], [9.320604, 45.47005], [9.316108, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.474547], [9.316108, 45.479043], [9.320604, 45.479043], [9.320604, 45.474547], [9.316108, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.479043], [9.316108, 45.48354], [9.320604, 45.48354], [9.320604, 45.479043], [9.316108, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.48354], [9.316108, 45.488036], [9.320604, 45.488036], [9.320604, 45.48354], [9.316108, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.488036], [9.316108, 45.492533], [9.320604, 45.492533], [9.320604, 45.488036], [9.316108, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.492533], [9.316108, 45.49703], [9.320604, 45.49703], [9.320604, 45.492533], [9.316108, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.49703], [9.316108, 45.501526], [9.320604, 45.501526], [9.320604, 45.49703], [9.316108, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.501526], [9.316108, 45.506023], [9.320604, 45.506023], [9.320604, 45.501526], [9.316108, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.506023], [9.316108, 45.510519], [9.320604, 45.510519], [9.320604, 45.506023], [9.316108, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.510519], [9.316108, 45.515016], [9.320604, 45.515016], [9.320604, 45.510519], [9.316108, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.515016], [9.316108, 45.519513], [9.320604, 45.519513], [9.320604, 45.515016], [9.316108, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.519513], [9.316108, 45.524009], [9.320604, 45.524009], [9.320604, 45.519513], [9.316108, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.524009], [9.316108, 45.528506], [9.320604, 45.528506], [9.320604, 45.524009], [9.316108, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.528506], [9.316108, 45.533002], [9.320604, 45.533002], [9.320604, 45.528506], [9.316108, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.533002], [9.316108, 45.537499], [9.320604, 45.537499], [9.320604, 45.533002], [9.316108, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.537499], [9.316108, 45.541996], [9.320604, 45.541996], [9.320604, 45.537499], [9.316108, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.541996], [9.316108, 45.546492], [9.320604, 45.546492], [9.320604, 45.541996], [9.316108, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.546492], [9.316108, 45.550989], [9.320604, 45.550989], [9.320604, 45.546492], [9.316108, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.550989], [9.316108, 45.555485], [9.320604, 45.555485], [9.320604, 45.550989], [9.316108, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.555485], [9.316108, 45.559982], [9.320604, 45.559982], [9.320604, 45.555485], [9.316108, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.559982], [9.316108, 45.564479], [9.320604, 45.564479], [9.320604, 45.559982], [9.316108, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.564479], [9.316108, 45.568975], [9.320604, 45.568975], [9.320604, 45.564479], [9.316108, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.568975], [9.316108, 45.573472], [9.320604, 45.573472], [9.320604, 45.568975], [9.316108, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.573472], [9.316108, 45.577968], [9.320604, 45.577968], [9.320604, 45.573472], [9.316108, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.577968], [9.316108, 45.582465], [9.320604, 45.582465], [9.320604, 45.577968], [9.316108, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.582465], [9.316108, 45.586962], [9.320604, 45.586962], [9.320604, 45.582465], [9.316108, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.586962], [9.316108, 45.591458], [9.320604, 45.591458], [9.320604, 45.586962], [9.316108, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.591458], [9.316108, 45.595955], [9.320604, 45.595955], [9.320604, 45.591458], [9.316108, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.595955], [9.316108, 45.600451], [9.320604, 45.600451], [9.320604, 45.595955], [9.316108, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.600451], [9.316108, 45.604948], [9.320604, 45.604948], [9.320604, 45.600451], [9.316108, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.604948], [9.316108, 45.609445], [9.320604, 45.609445], [9.320604, 45.604948], [9.316108, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.609445], [9.316108, 45.613941], [9.320604, 45.613941], [9.320604, 45.609445], [9.316108, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.613941], [9.316108, 45.618438], [9.320604, 45.618438], [9.320604, 45.613941], [9.316108, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.618438], [9.316108, 45.622934], [9.320604, 45.622934], [9.320604, 45.618438], [9.316108, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.622934], [9.316108, 45.627431], [9.320604, 45.627431], [9.320604, 45.622934], [9.316108, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.627431], [9.316108, 45.631928], [9.320604, 45.631928], [9.320604, 45.627431], [9.316108, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.316108, 45.631928], [9.316108, 45.636424], [9.320604, 45.636424], [9.320604, 45.631928], [9.316108, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.339648], [9.320604, 45.344145], [9.325101, 45.344145], [9.325101, 45.339648], [9.320604, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.344145], [9.320604, 45.348642], [9.325101, 45.348642], [9.325101, 45.344145], [9.320604, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.348642], [9.320604, 45.353138], [9.325101, 45.353138], [9.325101, 45.348642], [9.320604, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.353138], [9.320604, 45.357635], [9.325101, 45.357635], [9.325101, 45.353138], [9.320604, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.357635], [9.320604, 45.362131], [9.325101, 45.362131], [9.325101, 45.357635], [9.320604, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.362131], [9.320604, 45.366628], [9.325101, 45.366628], [9.325101, 45.362131], [9.320604, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.366628], [9.320604, 45.371125], [9.325101, 45.371125], [9.325101, 45.366628], [9.320604, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.371125], [9.320604, 45.375621], [9.325101, 45.375621], [9.325101, 45.371125], [9.320604, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.375621], [9.320604, 45.380118], [9.325101, 45.380118], [9.325101, 45.375621], [9.320604, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.380118], [9.320604, 45.384614], [9.325101, 45.384614], [9.325101, 45.380118], [9.320604, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.384614], [9.320604, 45.389111], [9.325101, 45.389111], [9.325101, 45.384614], [9.320604, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.389111], [9.320604, 45.393608], [9.325101, 45.393608], [9.325101, 45.389111], [9.320604, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.393608], [9.320604, 45.398104], [9.325101, 45.398104], [9.325101, 45.393608], [9.320604, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.398104], [9.320604, 45.402601], [9.325101, 45.402601], [9.325101, 45.398104], [9.320604, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.402601], [9.320604, 45.407097], [9.325101, 45.407097], [9.325101, 45.402601], [9.320604, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.407097], [9.320604, 45.411594], [9.325101, 45.411594], [9.325101, 45.407097], [9.320604, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.411594], [9.320604, 45.416091], [9.325101, 45.416091], [9.325101, 45.411594], [9.320604, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.416091], [9.320604, 45.420587], [9.325101, 45.420587], [9.325101, 45.416091], [9.320604, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.420587], [9.320604, 45.425084], [9.325101, 45.425084], [9.325101, 45.420587], [9.320604, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.425084], [9.320604, 45.42958], [9.325101, 45.42958], [9.325101, 45.425084], [9.320604, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.42958], [9.320604, 45.434077], [9.325101, 45.434077], [9.325101, 45.42958], [9.320604, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.434077], [9.320604, 45.438574], [9.325101, 45.438574], [9.325101, 45.434077], [9.320604, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.438574], [9.320604, 45.44307], [9.325101, 45.44307], [9.325101, 45.438574], [9.320604, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.44307], [9.320604, 45.447567], [9.325101, 45.447567], [9.325101, 45.44307], [9.320604, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.447567], [9.320604, 45.452063], [9.325101, 45.452063], [9.325101, 45.447567], [9.320604, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.452063], [9.320604, 45.45656], [9.325101, 45.45656], [9.325101, 45.452063], [9.320604, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.45656], [9.320604, 45.461057], [9.325101, 45.461057], [9.325101, 45.45656], [9.320604, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.461057], [9.320604, 45.465553], [9.325101, 45.465553], [9.325101, 45.461057], [9.320604, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.465553], [9.320604, 45.47005], [9.325101, 45.47005], [9.325101, 45.465553], [9.320604, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.47005], [9.320604, 45.474547], [9.325101, 45.474547], [9.325101, 45.47005], [9.320604, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.474547], [9.320604, 45.479043], [9.325101, 45.479043], [9.325101, 45.474547], [9.320604, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.479043], [9.320604, 45.48354], [9.325101, 45.48354], [9.325101, 45.479043], [9.320604, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.48354], [9.320604, 45.488036], [9.325101, 45.488036], [9.325101, 45.48354], [9.320604, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.488036], [9.320604, 45.492533], [9.325101, 45.492533], [9.325101, 45.488036], [9.320604, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.492533], [9.320604, 45.49703], [9.325101, 45.49703], [9.325101, 45.492533], [9.320604, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.49703], [9.320604, 45.501526], [9.325101, 45.501526], [9.325101, 45.49703], [9.320604, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.501526], [9.320604, 45.506023], [9.325101, 45.506023], [9.325101, 45.501526], [9.320604, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.506023], [9.320604, 45.510519], [9.325101, 45.510519], [9.325101, 45.506023], [9.320604, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.510519], [9.320604, 45.515016], [9.325101, 45.515016], [9.325101, 45.510519], [9.320604, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.515016], [9.320604, 45.519513], [9.325101, 45.519513], [9.325101, 45.515016], [9.320604, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.519513], [9.320604, 45.524009], [9.325101, 45.524009], [9.325101, 45.519513], [9.320604, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.524009], [9.320604, 45.528506], [9.325101, 45.528506], [9.325101, 45.524009], [9.320604, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.528506], [9.320604, 45.533002], [9.325101, 45.533002], [9.325101, 45.528506], [9.320604, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.533002], [9.320604, 45.537499], [9.325101, 45.537499], [9.325101, 45.533002], [9.320604, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.537499], [9.320604, 45.541996], [9.325101, 45.541996], [9.325101, 45.537499], [9.320604, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.541996], [9.320604, 45.546492], [9.325101, 45.546492], [9.325101, 45.541996], [9.320604, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.546492], [9.320604, 45.550989], [9.325101, 45.550989], [9.325101, 45.546492], [9.320604, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.550989], [9.320604, 45.555485], [9.325101, 45.555485], [9.325101, 45.550989], [9.320604, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.555485], [9.320604, 45.559982], [9.325101, 45.559982], [9.325101, 45.555485], [9.320604, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.559982], [9.320604, 45.564479], [9.325101, 45.564479], [9.325101, 45.559982], [9.320604, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.564479], [9.320604, 45.568975], [9.325101, 45.568975], [9.325101, 45.564479], [9.320604, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.568975], [9.320604, 45.573472], [9.325101, 45.573472], [9.325101, 45.568975], [9.320604, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.573472], [9.320604, 45.577968], [9.325101, 45.577968], [9.325101, 45.573472], [9.320604, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.577968], [9.320604, 45.582465], [9.325101, 45.582465], [9.325101, 45.577968], [9.320604, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.582465], [9.320604, 45.586962], [9.325101, 45.586962], [9.325101, 45.582465], [9.320604, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.586962], [9.320604, 45.591458], [9.325101, 45.591458], [9.325101, 45.586962], [9.320604, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.591458], [9.320604, 45.595955], [9.325101, 45.595955], [9.325101, 45.591458], [9.320604, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.595955], [9.320604, 45.600451], [9.325101, 45.600451], [9.325101, 45.595955], [9.320604, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.600451], [9.320604, 45.604948], [9.325101, 45.604948], [9.325101, 45.600451], [9.320604, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.604948], [9.320604, 45.609445], [9.325101, 45.609445], [9.325101, 45.604948], [9.320604, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.609445], [9.320604, 45.613941], [9.325101, 45.613941], [9.325101, 45.609445], [9.320604, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.613941], [9.320604, 45.618438], [9.325101, 45.618438], [9.325101, 45.613941], [9.320604, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.618438], [9.320604, 45.622934], [9.325101, 45.622934], [9.325101, 45.618438], [9.320604, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.622934], [9.320604, 45.627431], [9.325101, 45.627431], [9.325101, 45.622934], [9.320604, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.627431], [9.320604, 45.631928], [9.325101, 45.631928], [9.325101, 45.627431], [9.320604, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.320604, 45.631928], [9.320604, 45.636424], [9.325101, 45.636424], [9.325101, 45.631928], [9.320604, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.339648], [9.325101, 45.344145], [9.329597, 45.344145], [9.329597, 45.339648], [9.325101, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.344145], [9.325101, 45.348642], [9.329597, 45.348642], [9.329597, 45.344145], [9.325101, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.348642], [9.325101, 45.353138], [9.329597, 45.353138], [9.329597, 45.348642], [9.325101, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.353138], [9.325101, 45.357635], [9.329597, 45.357635], [9.329597, 45.353138], [9.325101, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.357635], [9.325101, 45.362131], [9.329597, 45.362131], [9.329597, 45.357635], [9.325101, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.362131], [9.325101, 45.366628], [9.329597, 45.366628], [9.329597, 45.362131], [9.325101, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.366628], [9.325101, 45.371125], [9.329597, 45.371125], [9.329597, 45.366628], [9.325101, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.371125], [9.325101, 45.375621], [9.329597, 45.375621], [9.329597, 45.371125], [9.325101, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.375621], [9.325101, 45.380118], [9.329597, 45.380118], [9.329597, 45.375621], [9.325101, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.380118], [9.325101, 45.384614], [9.329597, 45.384614], [9.329597, 45.380118], [9.325101, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.384614], [9.325101, 45.389111], [9.329597, 45.389111], [9.329597, 45.384614], [9.325101, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.389111], [9.325101, 45.393608], [9.329597, 45.393608], [9.329597, 45.389111], [9.325101, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.393608], [9.325101, 45.398104], [9.329597, 45.398104], [9.329597, 45.393608], [9.325101, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.398104], [9.325101, 45.402601], [9.329597, 45.402601], [9.329597, 45.398104], [9.325101, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.402601], [9.325101, 45.407097], [9.329597, 45.407097], [9.329597, 45.402601], [9.325101, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.407097], [9.325101, 45.411594], [9.329597, 45.411594], [9.329597, 45.407097], [9.325101, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.411594], [9.325101, 45.416091], [9.329597, 45.416091], [9.329597, 45.411594], [9.325101, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.416091], [9.325101, 45.420587], [9.329597, 45.420587], [9.329597, 45.416091], [9.325101, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.420587], [9.325101, 45.425084], [9.329597, 45.425084], [9.329597, 45.420587], [9.325101, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.425084], [9.325101, 45.42958], [9.329597, 45.42958], [9.329597, 45.425084], [9.325101, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.42958], [9.325101, 45.434077], [9.329597, 45.434077], [9.329597, 45.42958], [9.325101, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.434077], [9.325101, 45.438574], [9.329597, 45.438574], [9.329597, 45.434077], [9.325101, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.438574], [9.325101, 45.44307], [9.329597, 45.44307], [9.329597, 45.438574], [9.325101, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.44307], [9.325101, 45.447567], [9.329597, 45.447567], [9.329597, 45.44307], [9.325101, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.447567], [9.325101, 45.452063], [9.329597, 45.452063], [9.329597, 45.447567], [9.325101, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.452063], [9.325101, 45.45656], [9.329597, 45.45656], [9.329597, 45.452063], [9.325101, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.45656], [9.325101, 45.461057], [9.329597, 45.461057], [9.329597, 45.45656], [9.325101, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.461057], [9.325101, 45.465553], [9.329597, 45.465553], [9.329597, 45.461057], [9.325101, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.465553], [9.325101, 45.47005], [9.329597, 45.47005], [9.329597, 45.465553], [9.325101, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.47005], [9.325101, 45.474547], [9.329597, 45.474547], [9.329597, 45.47005], [9.325101, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.474547], [9.325101, 45.479043], [9.329597, 45.479043], [9.329597, 45.474547], [9.325101, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.479043], [9.325101, 45.48354], [9.329597, 45.48354], [9.329597, 45.479043], [9.325101, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.48354], [9.325101, 45.488036], [9.329597, 45.488036], [9.329597, 45.48354], [9.325101, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.488036], [9.325101, 45.492533], [9.329597, 45.492533], [9.329597, 45.488036], [9.325101, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.492533], [9.325101, 45.49703], [9.329597, 45.49703], [9.329597, 45.492533], [9.325101, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.49703], [9.325101, 45.501526], [9.329597, 45.501526], [9.329597, 45.49703], [9.325101, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.501526], [9.325101, 45.506023], [9.329597, 45.506023], [9.329597, 45.501526], [9.325101, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.506023], [9.325101, 45.510519], [9.329597, 45.510519], [9.329597, 45.506023], [9.325101, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.510519], [9.325101, 45.515016], [9.329597, 45.515016], [9.329597, 45.510519], [9.325101, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.515016], [9.325101, 45.519513], [9.329597, 45.519513], [9.329597, 45.515016], [9.325101, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.519513], [9.325101, 45.524009], [9.329597, 45.524009], [9.329597, 45.519513], [9.325101, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.524009], [9.325101, 45.528506], [9.329597, 45.528506], [9.329597, 45.524009], [9.325101, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.528506], [9.325101, 45.533002], [9.329597, 45.533002], [9.329597, 45.528506], [9.325101, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.533002], [9.325101, 45.537499], [9.329597, 45.537499], [9.329597, 45.533002], [9.325101, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.537499], [9.325101, 45.541996], [9.329597, 45.541996], [9.329597, 45.537499], [9.325101, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.541996], [9.325101, 45.546492], [9.329597, 45.546492], [9.329597, 45.541996], [9.325101, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.546492], [9.325101, 45.550989], [9.329597, 45.550989], [9.329597, 45.546492], [9.325101, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.550989], [9.325101, 45.555485], [9.329597, 45.555485], [9.329597, 45.550989], [9.325101, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.555485], [9.325101, 45.559982], [9.329597, 45.559982], [9.329597, 45.555485], [9.325101, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.559982], [9.325101, 45.564479], [9.329597, 45.564479], [9.329597, 45.559982], [9.325101, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.564479], [9.325101, 45.568975], [9.329597, 45.568975], [9.329597, 45.564479], [9.325101, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.568975], [9.325101, 45.573472], [9.329597, 45.573472], [9.329597, 45.568975], [9.325101, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.573472], [9.325101, 45.577968], [9.329597, 45.577968], [9.329597, 45.573472], [9.325101, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.577968], [9.325101, 45.582465], [9.329597, 45.582465], [9.329597, 45.577968], [9.325101, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.582465], [9.325101, 45.586962], [9.329597, 45.586962], [9.329597, 45.582465], [9.325101, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.586962], [9.325101, 45.591458], [9.329597, 45.591458], [9.329597, 45.586962], [9.325101, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.591458], [9.325101, 45.595955], [9.329597, 45.595955], [9.329597, 45.591458], [9.325101, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.595955], [9.325101, 45.600451], [9.329597, 45.600451], [9.329597, 45.595955], [9.325101, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.600451], [9.325101, 45.604948], [9.329597, 45.604948], [9.329597, 45.600451], [9.325101, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.604948], [9.325101, 45.609445], [9.329597, 45.609445], [9.329597, 45.604948], [9.325101, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.609445], [9.325101, 45.613941], [9.329597, 45.613941], [9.329597, 45.609445], [9.325101, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.613941], [9.325101, 45.618438], [9.329597, 45.618438], [9.329597, 45.613941], [9.325101, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.618438], [9.325101, 45.622934], [9.329597, 45.622934], [9.329597, 45.618438], [9.325101, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.622934], [9.325101, 45.627431], [9.329597, 45.627431], [9.329597, 45.622934], [9.325101, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.627431], [9.325101, 45.631928], [9.329597, 45.631928], [9.329597, 45.627431], [9.325101, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.325101, 45.631928], [9.325101, 45.636424], [9.329597, 45.636424], [9.329597, 45.631928], [9.325101, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.339648], [9.329597, 45.344145], [9.334094, 45.344145], [9.334094, 45.339648], [9.329597, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.344145], [9.329597, 45.348642], [9.334094, 45.348642], [9.334094, 45.344145], [9.329597, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.348642], [9.329597, 45.353138], [9.334094, 45.353138], [9.334094, 45.348642], [9.329597, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.353138], [9.329597, 45.357635], [9.334094, 45.357635], [9.334094, 45.353138], [9.329597, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.357635], [9.329597, 45.362131], [9.334094, 45.362131], [9.334094, 45.357635], [9.329597, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.362131], [9.329597, 45.366628], [9.334094, 45.366628], [9.334094, 45.362131], [9.329597, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.366628], [9.329597, 45.371125], [9.334094, 45.371125], [9.334094, 45.366628], [9.329597, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.371125], [9.329597, 45.375621], [9.334094, 45.375621], [9.334094, 45.371125], [9.329597, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.375621], [9.329597, 45.380118], [9.334094, 45.380118], [9.334094, 45.375621], [9.329597, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.380118], [9.329597, 45.384614], [9.334094, 45.384614], [9.334094, 45.380118], [9.329597, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.384614], [9.329597, 45.389111], [9.334094, 45.389111], [9.334094, 45.384614], [9.329597, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.389111], [9.329597, 45.393608], [9.334094, 45.393608], [9.334094, 45.389111], [9.329597, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.393608], [9.329597, 45.398104], [9.334094, 45.398104], [9.334094, 45.393608], [9.329597, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.398104], [9.329597, 45.402601], [9.334094, 45.402601], [9.334094, 45.398104], [9.329597, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.402601], [9.329597, 45.407097], [9.334094, 45.407097], [9.334094, 45.402601], [9.329597, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.407097], [9.329597, 45.411594], [9.334094, 45.411594], [9.334094, 45.407097], [9.329597, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.411594], [9.329597, 45.416091], [9.334094, 45.416091], [9.334094, 45.411594], [9.329597, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.416091], [9.329597, 45.420587], [9.334094, 45.420587], [9.334094, 45.416091], [9.329597, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.420587], [9.329597, 45.425084], [9.334094, 45.425084], [9.334094, 45.420587], [9.329597, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.425084], [9.329597, 45.42958], [9.334094, 45.42958], [9.334094, 45.425084], [9.329597, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.42958], [9.329597, 45.434077], [9.334094, 45.434077], [9.334094, 45.42958], [9.329597, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.434077], [9.329597, 45.438574], [9.334094, 45.438574], [9.334094, 45.434077], [9.329597, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.438574], [9.329597, 45.44307], [9.334094, 45.44307], [9.334094, 45.438574], [9.329597, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.44307], [9.329597, 45.447567], [9.334094, 45.447567], [9.334094, 45.44307], [9.329597, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.447567], [9.329597, 45.452063], [9.334094, 45.452063], [9.334094, 45.447567], [9.329597, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.452063], [9.329597, 45.45656], [9.334094, 45.45656], [9.334094, 45.452063], [9.329597, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.45656], [9.329597, 45.461057], [9.334094, 45.461057], [9.334094, 45.45656], [9.329597, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.461057], [9.329597, 45.465553], [9.334094, 45.465553], [9.334094, 45.461057], [9.329597, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.465553], [9.329597, 45.47005], [9.334094, 45.47005], [9.334094, 45.465553], [9.329597, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.47005], [9.329597, 45.474547], [9.334094, 45.474547], [9.334094, 45.47005], [9.329597, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.474547], [9.329597, 45.479043], [9.334094, 45.479043], [9.334094, 45.474547], [9.329597, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.479043], [9.329597, 45.48354], [9.334094, 45.48354], [9.334094, 45.479043], [9.329597, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.48354], [9.329597, 45.488036], [9.334094, 45.488036], [9.334094, 45.48354], [9.329597, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.488036], [9.329597, 45.492533], [9.334094, 45.492533], [9.334094, 45.488036], [9.329597, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.492533], [9.329597, 45.49703], [9.334094, 45.49703], [9.334094, 45.492533], [9.329597, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.49703], [9.329597, 45.501526], [9.334094, 45.501526], [9.334094, 45.49703], [9.329597, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.501526], [9.329597, 45.506023], [9.334094, 45.506023], [9.334094, 45.501526], [9.329597, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.506023], [9.329597, 45.510519], [9.334094, 45.510519], [9.334094, 45.506023], [9.329597, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.510519], [9.329597, 45.515016], [9.334094, 45.515016], [9.334094, 45.510519], [9.329597, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.515016], [9.329597, 45.519513], [9.334094, 45.519513], [9.334094, 45.515016], [9.329597, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.519513], [9.329597, 45.524009], [9.334094, 45.524009], [9.334094, 45.519513], [9.329597, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.524009], [9.329597, 45.528506], [9.334094, 45.528506], [9.334094, 45.524009], [9.329597, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.528506], [9.329597, 45.533002], [9.334094, 45.533002], [9.334094, 45.528506], [9.329597, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.533002], [9.329597, 45.537499], [9.334094, 45.537499], [9.334094, 45.533002], [9.329597, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.537499], [9.329597, 45.541996], [9.334094, 45.541996], [9.334094, 45.537499], [9.329597, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.541996], [9.329597, 45.546492], [9.334094, 45.546492], [9.334094, 45.541996], [9.329597, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.546492], [9.329597, 45.550989], [9.334094, 45.550989], [9.334094, 45.546492], [9.329597, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.550989], [9.329597, 45.555485], [9.334094, 45.555485], [9.334094, 45.550989], [9.329597, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.555485], [9.329597, 45.559982], [9.334094, 45.559982], [9.334094, 45.555485], [9.329597, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.559982], [9.329597, 45.564479], [9.334094, 45.564479], [9.334094, 45.559982], [9.329597, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.564479], [9.329597, 45.568975], [9.334094, 45.568975], [9.334094, 45.564479], [9.329597, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.568975], [9.329597, 45.573472], [9.334094, 45.573472], [9.334094, 45.568975], [9.329597, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.573472], [9.329597, 45.577968], [9.334094, 45.577968], [9.334094, 45.573472], [9.329597, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.577968], [9.329597, 45.582465], [9.334094, 45.582465], [9.334094, 45.577968], [9.329597, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.582465], [9.329597, 45.586962], [9.334094, 45.586962], [9.334094, 45.582465], [9.329597, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.586962], [9.329597, 45.591458], [9.334094, 45.591458], [9.334094, 45.586962], [9.329597, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.591458], [9.329597, 45.595955], [9.334094, 45.595955], [9.334094, 45.591458], [9.329597, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.595955], [9.329597, 45.600451], [9.334094, 45.600451], [9.334094, 45.595955], [9.329597, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.600451], [9.329597, 45.604948], [9.334094, 45.604948], [9.334094, 45.600451], [9.329597, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.604948], [9.329597, 45.609445], [9.334094, 45.609445], [9.334094, 45.604948], [9.329597, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.609445], [9.329597, 45.613941], [9.334094, 45.613941], [9.334094, 45.609445], [9.329597, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.613941], [9.329597, 45.618438], [9.334094, 45.618438], [9.334094, 45.613941], [9.329597, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.618438], [9.329597, 45.622934], [9.334094, 45.622934], [9.334094, 45.618438], [9.329597, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.622934], [9.329597, 45.627431], [9.334094, 45.627431], [9.334094, 45.622934], [9.329597, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.627431], [9.329597, 45.631928], [9.334094, 45.631928], [9.334094, 45.627431], [9.329597, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.329597, 45.631928], [9.329597, 45.636424], [9.334094, 45.636424], [9.334094, 45.631928], [9.329597, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.339648], [9.334094, 45.344145], [9.338591, 45.344145], [9.338591, 45.339648], [9.334094, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.344145], [9.334094, 45.348642], [9.338591, 45.348642], [9.338591, 45.344145], [9.334094, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.348642], [9.334094, 45.353138], [9.338591, 45.353138], [9.338591, 45.348642], [9.334094, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.353138], [9.334094, 45.357635], [9.338591, 45.357635], [9.338591, 45.353138], [9.334094, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.357635], [9.334094, 45.362131], [9.338591, 45.362131], [9.338591, 45.357635], [9.334094, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.362131], [9.334094, 45.366628], [9.338591, 45.366628], [9.338591, 45.362131], [9.334094, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.366628], [9.334094, 45.371125], [9.338591, 45.371125], [9.338591, 45.366628], [9.334094, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.371125], [9.334094, 45.375621], [9.338591, 45.375621], [9.338591, 45.371125], [9.334094, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.375621], [9.334094, 45.380118], [9.338591, 45.380118], [9.338591, 45.375621], [9.334094, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.380118], [9.334094, 45.384614], [9.338591, 45.384614], [9.338591, 45.380118], [9.334094, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.384614], [9.334094, 45.389111], [9.338591, 45.389111], [9.338591, 45.384614], [9.334094, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.389111], [9.334094, 45.393608], [9.338591, 45.393608], [9.338591, 45.389111], [9.334094, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.393608], [9.334094, 45.398104], [9.338591, 45.398104], [9.338591, 45.393608], [9.334094, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.398104], [9.334094, 45.402601], [9.338591, 45.402601], [9.338591, 45.398104], [9.334094, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.402601], [9.334094, 45.407097], [9.338591, 45.407097], [9.338591, 45.402601], [9.334094, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.407097], [9.334094, 45.411594], [9.338591, 45.411594], [9.338591, 45.407097], [9.334094, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.411594], [9.334094, 45.416091], [9.338591, 45.416091], [9.338591, 45.411594], [9.334094, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.416091], [9.334094, 45.420587], [9.338591, 45.420587], [9.338591, 45.416091], [9.334094, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.420587], [9.334094, 45.425084], [9.338591, 45.425084], [9.338591, 45.420587], [9.334094, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.425084], [9.334094, 45.42958], [9.338591, 45.42958], [9.338591, 45.425084], [9.334094, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.42958], [9.334094, 45.434077], [9.338591, 45.434077], [9.338591, 45.42958], [9.334094, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.434077], [9.334094, 45.438574], [9.338591, 45.438574], [9.338591, 45.434077], [9.334094, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.438574], [9.334094, 45.44307], [9.338591, 45.44307], [9.338591, 45.438574], [9.334094, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.44307], [9.334094, 45.447567], [9.338591, 45.447567], [9.338591, 45.44307], [9.334094, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.447567], [9.334094, 45.452063], [9.338591, 45.452063], [9.338591, 45.447567], [9.334094, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.452063], [9.334094, 45.45656], [9.338591, 45.45656], [9.338591, 45.452063], [9.334094, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.45656], [9.334094, 45.461057], [9.338591, 45.461057], [9.338591, 45.45656], [9.334094, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.461057], [9.334094, 45.465553], [9.338591, 45.465553], [9.338591, 45.461057], [9.334094, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.465553], [9.334094, 45.47005], [9.338591, 45.47005], [9.338591, 45.465553], [9.334094, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.47005], [9.334094, 45.474547], [9.338591, 45.474547], [9.338591, 45.47005], [9.334094, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.474547], [9.334094, 45.479043], [9.338591, 45.479043], [9.338591, 45.474547], [9.334094, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.479043], [9.334094, 45.48354], [9.338591, 45.48354], [9.338591, 45.479043], [9.334094, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.48354], [9.334094, 45.488036], [9.338591, 45.488036], [9.338591, 45.48354], [9.334094, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.488036], [9.334094, 45.492533], [9.338591, 45.492533], [9.338591, 45.488036], [9.334094, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.492533], [9.334094, 45.49703], [9.338591, 45.49703], [9.338591, 45.492533], [9.334094, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.49703], [9.334094, 45.501526], [9.338591, 45.501526], [9.338591, 45.49703], [9.334094, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.501526], [9.334094, 45.506023], [9.338591, 45.506023], [9.338591, 45.501526], [9.334094, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.506023], [9.334094, 45.510519], [9.338591, 45.510519], [9.338591, 45.506023], [9.334094, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.510519], [9.334094, 45.515016], [9.338591, 45.515016], [9.338591, 45.510519], [9.334094, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.515016], [9.334094, 45.519513], [9.338591, 45.519513], [9.338591, 45.515016], [9.334094, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.519513], [9.334094, 45.524009], [9.338591, 45.524009], [9.338591, 45.519513], [9.334094, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.524009], [9.334094, 45.528506], [9.338591, 45.528506], [9.338591, 45.524009], [9.334094, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.528506], [9.334094, 45.533002], [9.338591, 45.533002], [9.338591, 45.528506], [9.334094, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.533002], [9.334094, 45.537499], [9.338591, 45.537499], [9.338591, 45.533002], [9.334094, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.537499], [9.334094, 45.541996], [9.338591, 45.541996], [9.338591, 45.537499], [9.334094, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.541996], [9.334094, 45.546492], [9.338591, 45.546492], [9.338591, 45.541996], [9.334094, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.546492], [9.334094, 45.550989], [9.338591, 45.550989], [9.338591, 45.546492], [9.334094, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.550989], [9.334094, 45.555485], [9.338591, 45.555485], [9.338591, 45.550989], [9.334094, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.555485], [9.334094, 45.559982], [9.338591, 45.559982], [9.338591, 45.555485], [9.334094, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.559982], [9.334094, 45.564479], [9.338591, 45.564479], [9.338591, 45.559982], [9.334094, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.564479], [9.334094, 45.568975], [9.338591, 45.568975], [9.338591, 45.564479], [9.334094, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.568975], [9.334094, 45.573472], [9.338591, 45.573472], [9.338591, 45.568975], [9.334094, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.573472], [9.334094, 45.577968], [9.338591, 45.577968], [9.338591, 45.573472], [9.334094, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.577968], [9.334094, 45.582465], [9.338591, 45.582465], [9.338591, 45.577968], [9.334094, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.582465], [9.334094, 45.586962], [9.338591, 45.586962], [9.338591, 45.582465], [9.334094, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.586962], [9.334094, 45.591458], [9.338591, 45.591458], [9.338591, 45.586962], [9.334094, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.591458], [9.334094, 45.595955], [9.338591, 45.595955], [9.338591, 45.591458], [9.334094, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.595955], [9.334094, 45.600451], [9.338591, 45.600451], [9.338591, 45.595955], [9.334094, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.600451], [9.334094, 45.604948], [9.338591, 45.604948], [9.338591, 45.600451], [9.334094, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.604948], [9.334094, 45.609445], [9.338591, 45.609445], [9.338591, 45.604948], [9.334094, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.609445], [9.334094, 45.613941], [9.338591, 45.613941], [9.338591, 45.609445], [9.334094, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.613941], [9.334094, 45.618438], [9.338591, 45.618438], [9.338591, 45.613941], [9.334094, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.618438], [9.334094, 45.622934], [9.338591, 45.622934], [9.338591, 45.618438], [9.334094, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.622934], [9.334094, 45.627431], [9.338591, 45.627431], [9.338591, 45.622934], [9.334094, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.627431], [9.334094, 45.631928], [9.338591, 45.631928], [9.338591, 45.627431], [9.334094, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.334094, 45.631928], [9.334094, 45.636424], [9.338591, 45.636424], [9.338591, 45.631928], [9.334094, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.339648], [9.338591, 45.344145], [9.343087, 45.344145], [9.343087, 45.339648], [9.338591, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.344145], [9.338591, 45.348642], [9.343087, 45.348642], [9.343087, 45.344145], [9.338591, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.348642], [9.338591, 45.353138], [9.343087, 45.353138], [9.343087, 45.348642], [9.338591, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.353138], [9.338591, 45.357635], [9.343087, 45.357635], [9.343087, 45.353138], [9.338591, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.357635], [9.338591, 45.362131], [9.343087, 45.362131], [9.343087, 45.357635], [9.338591, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.362131], [9.338591, 45.366628], [9.343087, 45.366628], [9.343087, 45.362131], [9.338591, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.366628], [9.338591, 45.371125], [9.343087, 45.371125], [9.343087, 45.366628], [9.338591, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.371125], [9.338591, 45.375621], [9.343087, 45.375621], [9.343087, 45.371125], [9.338591, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.375621], [9.338591, 45.380118], [9.343087, 45.380118], [9.343087, 45.375621], [9.338591, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.380118], [9.338591, 45.384614], [9.343087, 45.384614], [9.343087, 45.380118], [9.338591, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.384614], [9.338591, 45.389111], [9.343087, 45.389111], [9.343087, 45.384614], [9.338591, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.389111], [9.338591, 45.393608], [9.343087, 45.393608], [9.343087, 45.389111], [9.338591, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.393608], [9.338591, 45.398104], [9.343087, 45.398104], [9.343087, 45.393608], [9.338591, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.398104], [9.338591, 45.402601], [9.343087, 45.402601], [9.343087, 45.398104], [9.338591, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.402601], [9.338591, 45.407097], [9.343087, 45.407097], [9.343087, 45.402601], [9.338591, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.407097], [9.338591, 45.411594], [9.343087, 45.411594], [9.343087, 45.407097], [9.338591, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.411594], [9.338591, 45.416091], [9.343087, 45.416091], [9.343087, 45.411594], [9.338591, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.416091], [9.338591, 45.420587], [9.343087, 45.420587], [9.343087, 45.416091], [9.338591, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.420587], [9.338591, 45.425084], [9.343087, 45.425084], [9.343087, 45.420587], [9.338591, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.425084], [9.338591, 45.42958], [9.343087, 45.42958], [9.343087, 45.425084], [9.338591, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.42958], [9.338591, 45.434077], [9.343087, 45.434077], [9.343087, 45.42958], [9.338591, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.434077], [9.338591, 45.438574], [9.343087, 45.438574], [9.343087, 45.434077], [9.338591, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.438574], [9.338591, 45.44307], [9.343087, 45.44307], [9.343087, 45.438574], [9.338591, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.44307], [9.338591, 45.447567], [9.343087, 45.447567], [9.343087, 45.44307], [9.338591, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.447567], [9.338591, 45.452063], [9.343087, 45.452063], [9.343087, 45.447567], [9.338591, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.452063], [9.338591, 45.45656], [9.343087, 45.45656], [9.343087, 45.452063], [9.338591, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.45656], [9.338591, 45.461057], [9.343087, 45.461057], [9.343087, 45.45656], [9.338591, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.461057], [9.338591, 45.465553], [9.343087, 45.465553], [9.343087, 45.461057], [9.338591, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.465553], [9.338591, 45.47005], [9.343087, 45.47005], [9.343087, 45.465553], [9.338591, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.47005], [9.338591, 45.474547], [9.343087, 45.474547], [9.343087, 45.47005], [9.338591, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.474547], [9.338591, 45.479043], [9.343087, 45.479043], [9.343087, 45.474547], [9.338591, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.479043], [9.338591, 45.48354], [9.343087, 45.48354], [9.343087, 45.479043], [9.338591, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.48354], [9.338591, 45.488036], [9.343087, 45.488036], [9.343087, 45.48354], [9.338591, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.488036], [9.338591, 45.492533], [9.343087, 45.492533], [9.343087, 45.488036], [9.338591, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.492533], [9.338591, 45.49703], [9.343087, 45.49703], [9.343087, 45.492533], [9.338591, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.49703], [9.338591, 45.501526], [9.343087, 45.501526], [9.343087, 45.49703], [9.338591, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.501526], [9.338591, 45.506023], [9.343087, 45.506023], [9.343087, 45.501526], [9.338591, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.506023], [9.338591, 45.510519], [9.343087, 45.510519], [9.343087, 45.506023], [9.338591, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.510519], [9.338591, 45.515016], [9.343087, 45.515016], [9.343087, 45.510519], [9.338591, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.515016], [9.338591, 45.519513], [9.343087, 45.519513], [9.343087, 45.515016], [9.338591, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.519513], [9.338591, 45.524009], [9.343087, 45.524009], [9.343087, 45.519513], [9.338591, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.524009], [9.338591, 45.528506], [9.343087, 45.528506], [9.343087, 45.524009], [9.338591, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.528506], [9.338591, 45.533002], [9.343087, 45.533002], [9.343087, 45.528506], [9.338591, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.533002], [9.338591, 45.537499], [9.343087, 45.537499], [9.343087, 45.533002], [9.338591, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.537499], [9.338591, 45.541996], [9.343087, 45.541996], [9.343087, 45.537499], [9.338591, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.541996], [9.338591, 45.546492], [9.343087, 45.546492], [9.343087, 45.541996], [9.338591, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.546492], [9.338591, 45.550989], [9.343087, 45.550989], [9.343087, 45.546492], [9.338591, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.550989], [9.338591, 45.555485], [9.343087, 45.555485], [9.343087, 45.550989], [9.338591, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.555485], [9.338591, 45.559982], [9.343087, 45.559982], [9.343087, 45.555485], [9.338591, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.559982], [9.338591, 45.564479], [9.343087, 45.564479], [9.343087, 45.559982], [9.338591, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.564479], [9.338591, 45.568975], [9.343087, 45.568975], [9.343087, 45.564479], [9.338591, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.568975], [9.338591, 45.573472], [9.343087, 45.573472], [9.343087, 45.568975], [9.338591, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.573472], [9.338591, 45.577968], [9.343087, 45.577968], [9.343087, 45.573472], [9.338591, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.577968], [9.338591, 45.582465], [9.343087, 45.582465], [9.343087, 45.577968], [9.338591, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.582465], [9.338591, 45.586962], [9.343087, 45.586962], [9.343087, 45.582465], [9.338591, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.586962], [9.338591, 45.591458], [9.343087, 45.591458], [9.343087, 45.586962], [9.338591, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.591458], [9.338591, 45.595955], [9.343087, 45.595955], [9.343087, 45.591458], [9.338591, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.595955], [9.338591, 45.600451], [9.343087, 45.600451], [9.343087, 45.595955], [9.338591, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.600451], [9.338591, 45.604948], [9.343087, 45.604948], [9.343087, 45.600451], [9.338591, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.604948], [9.338591, 45.609445], [9.343087, 45.609445], [9.343087, 45.604948], [9.338591, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.609445], [9.338591, 45.613941], [9.343087, 45.613941], [9.343087, 45.609445], [9.338591, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.613941], [9.338591, 45.618438], [9.343087, 45.618438], [9.343087, 45.613941], [9.338591, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.618438], [9.338591, 45.622934], [9.343087, 45.622934], [9.343087, 45.618438], [9.338591, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.622934], [9.338591, 45.627431], [9.343087, 45.627431], [9.343087, 45.622934], [9.338591, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.627431], [9.338591, 45.631928], [9.343087, 45.631928], [9.343087, 45.627431], [9.338591, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.338591, 45.631928], [9.338591, 45.636424], [9.343087, 45.636424], [9.343087, 45.631928], [9.338591, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.339648], [9.343087, 45.344145], [9.347584, 45.344145], [9.347584, 45.339648], [9.343087, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.344145], [9.343087, 45.348642], [9.347584, 45.348642], [9.347584, 45.344145], [9.343087, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.348642], [9.343087, 45.353138], [9.347584, 45.353138], [9.347584, 45.348642], [9.343087, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.353138], [9.343087, 45.357635], [9.347584, 45.357635], [9.347584, 45.353138], [9.343087, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.357635], [9.343087, 45.362131], [9.347584, 45.362131], [9.347584, 45.357635], [9.343087, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.362131], [9.343087, 45.366628], [9.347584, 45.366628], [9.347584, 45.362131], [9.343087, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.366628], [9.343087, 45.371125], [9.347584, 45.371125], [9.347584, 45.366628], [9.343087, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.371125], [9.343087, 45.375621], [9.347584, 45.375621], [9.347584, 45.371125], [9.343087, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.375621], [9.343087, 45.380118], [9.347584, 45.380118], [9.347584, 45.375621], [9.343087, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.380118], [9.343087, 45.384614], [9.347584, 45.384614], [9.347584, 45.380118], [9.343087, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.384614], [9.343087, 45.389111], [9.347584, 45.389111], [9.347584, 45.384614], [9.343087, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.389111], [9.343087, 45.393608], [9.347584, 45.393608], [9.347584, 45.389111], [9.343087, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.393608], [9.343087, 45.398104], [9.347584, 45.398104], [9.347584, 45.393608], [9.343087, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.398104], [9.343087, 45.402601], [9.347584, 45.402601], [9.347584, 45.398104], [9.343087, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.402601], [9.343087, 45.407097], [9.347584, 45.407097], [9.347584, 45.402601], [9.343087, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.407097], [9.343087, 45.411594], [9.347584, 45.411594], [9.347584, 45.407097], [9.343087, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.411594], [9.343087, 45.416091], [9.347584, 45.416091], [9.347584, 45.411594], [9.343087, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.416091], [9.343087, 45.420587], [9.347584, 45.420587], [9.347584, 45.416091], [9.343087, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.420587], [9.343087, 45.425084], [9.347584, 45.425084], [9.347584, 45.420587], [9.343087, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.425084], [9.343087, 45.42958], [9.347584, 45.42958], [9.347584, 45.425084], [9.343087, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.42958], [9.343087, 45.434077], [9.347584, 45.434077], [9.347584, 45.42958], [9.343087, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.434077], [9.343087, 45.438574], [9.347584, 45.438574], [9.347584, 45.434077], [9.343087, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.438574], [9.343087, 45.44307], [9.347584, 45.44307], [9.347584, 45.438574], [9.343087, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.44307], [9.343087, 45.447567], [9.347584, 45.447567], [9.347584, 45.44307], [9.343087, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.447567], [9.343087, 45.452063], [9.347584, 45.452063], [9.347584, 45.447567], [9.343087, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.452063], [9.343087, 45.45656], [9.347584, 45.45656], [9.347584, 45.452063], [9.343087, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.45656], [9.343087, 45.461057], [9.347584, 45.461057], [9.347584, 45.45656], [9.343087, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.461057], [9.343087, 45.465553], [9.347584, 45.465553], [9.347584, 45.461057], [9.343087, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.465553], [9.343087, 45.47005], [9.347584, 45.47005], [9.347584, 45.465553], [9.343087, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.47005], [9.343087, 45.474547], [9.347584, 45.474547], [9.347584, 45.47005], [9.343087, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.474547], [9.343087, 45.479043], [9.347584, 45.479043], [9.347584, 45.474547], [9.343087, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.479043], [9.343087, 45.48354], [9.347584, 45.48354], [9.347584, 45.479043], [9.343087, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.48354], [9.343087, 45.488036], [9.347584, 45.488036], [9.347584, 45.48354], [9.343087, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.488036], [9.343087, 45.492533], [9.347584, 45.492533], [9.347584, 45.488036], [9.343087, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.492533], [9.343087, 45.49703], [9.347584, 45.49703], [9.347584, 45.492533], [9.343087, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.49703], [9.343087, 45.501526], [9.347584, 45.501526], [9.347584, 45.49703], [9.343087, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.501526], [9.343087, 45.506023], [9.347584, 45.506023], [9.347584, 45.501526], [9.343087, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.506023], [9.343087, 45.510519], [9.347584, 45.510519], [9.347584, 45.506023], [9.343087, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.510519], [9.343087, 45.515016], [9.347584, 45.515016], [9.347584, 45.510519], [9.343087, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.515016], [9.343087, 45.519513], [9.347584, 45.519513], [9.347584, 45.515016], [9.343087, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.519513], [9.343087, 45.524009], [9.347584, 45.524009], [9.347584, 45.519513], [9.343087, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.524009], [9.343087, 45.528506], [9.347584, 45.528506], [9.347584, 45.524009], [9.343087, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.528506], [9.343087, 45.533002], [9.347584, 45.533002], [9.347584, 45.528506], [9.343087, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.533002], [9.343087, 45.537499], [9.347584, 45.537499], [9.347584, 45.533002], [9.343087, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.537499], [9.343087, 45.541996], [9.347584, 45.541996], [9.347584, 45.537499], [9.343087, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.541996], [9.343087, 45.546492], [9.347584, 45.546492], [9.347584, 45.541996], [9.343087, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.546492], [9.343087, 45.550989], [9.347584, 45.550989], [9.347584, 45.546492], [9.343087, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.550989], [9.343087, 45.555485], [9.347584, 45.555485], [9.347584, 45.550989], [9.343087, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.555485], [9.343087, 45.559982], [9.347584, 45.559982], [9.347584, 45.555485], [9.343087, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.559982], [9.343087, 45.564479], [9.347584, 45.564479], [9.347584, 45.559982], [9.343087, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.564479], [9.343087, 45.568975], [9.347584, 45.568975], [9.347584, 45.564479], [9.343087, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.568975], [9.343087, 45.573472], [9.347584, 45.573472], [9.347584, 45.568975], [9.343087, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.573472], [9.343087, 45.577968], [9.347584, 45.577968], [9.347584, 45.573472], [9.343087, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.577968], [9.343087, 45.582465], [9.347584, 45.582465], [9.347584, 45.577968], [9.343087, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.582465], [9.343087, 45.586962], [9.347584, 45.586962], [9.347584, 45.582465], [9.343087, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.586962], [9.343087, 45.591458], [9.347584, 45.591458], [9.347584, 45.586962], [9.343087, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.591458], [9.343087, 45.595955], [9.347584, 45.595955], [9.347584, 45.591458], [9.343087, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.595955], [9.343087, 45.600451], [9.347584, 45.600451], [9.347584, 45.595955], [9.343087, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.600451], [9.343087, 45.604948], [9.347584, 45.604948], [9.347584, 45.600451], [9.343087, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.604948], [9.343087, 45.609445], [9.347584, 45.609445], [9.347584, 45.604948], [9.343087, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.609445], [9.343087, 45.613941], [9.347584, 45.613941], [9.347584, 45.609445], [9.343087, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.613941], [9.343087, 45.618438], [9.347584, 45.618438], [9.347584, 45.613941], [9.343087, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.618438], [9.343087, 45.622934], [9.347584, 45.622934], [9.347584, 45.618438], [9.343087, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.622934], [9.343087, 45.627431], [9.347584, 45.627431], [9.347584, 45.622934], [9.343087, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.627431], [9.343087, 45.631928], [9.347584, 45.631928], [9.347584, 45.627431], [9.343087, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.343087, 45.631928], [9.343087, 45.636424], [9.347584, 45.636424], [9.347584, 45.631928], [9.343087, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.339648], [9.347584, 45.344145], [9.35208, 45.344145], [9.35208, 45.339648], [9.347584, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.344145], [9.347584, 45.348642], [9.35208, 45.348642], [9.35208, 45.344145], [9.347584, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.348642], [9.347584, 45.353138], [9.35208, 45.353138], [9.35208, 45.348642], [9.347584, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.353138], [9.347584, 45.357635], [9.35208, 45.357635], [9.35208, 45.353138], [9.347584, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.357635], [9.347584, 45.362131], [9.35208, 45.362131], [9.35208, 45.357635], [9.347584, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.362131], [9.347584, 45.366628], [9.35208, 45.366628], [9.35208, 45.362131], [9.347584, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.366628], [9.347584, 45.371125], [9.35208, 45.371125], [9.35208, 45.366628], [9.347584, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.371125], [9.347584, 45.375621], [9.35208, 45.375621], [9.35208, 45.371125], [9.347584, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.375621], [9.347584, 45.380118], [9.35208, 45.380118], [9.35208, 45.375621], [9.347584, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.380118], [9.347584, 45.384614], [9.35208, 45.384614], [9.35208, 45.380118], [9.347584, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.384614], [9.347584, 45.389111], [9.35208, 45.389111], [9.35208, 45.384614], [9.347584, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.389111], [9.347584, 45.393608], [9.35208, 45.393608], [9.35208, 45.389111], [9.347584, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.393608], [9.347584, 45.398104], [9.35208, 45.398104], [9.35208, 45.393608], [9.347584, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.398104], [9.347584, 45.402601], [9.35208, 45.402601], [9.35208, 45.398104], [9.347584, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.402601], [9.347584, 45.407097], [9.35208, 45.407097], [9.35208, 45.402601], [9.347584, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.407097], [9.347584, 45.411594], [9.35208, 45.411594], [9.35208, 45.407097], [9.347584, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.411594], [9.347584, 45.416091], [9.35208, 45.416091], [9.35208, 45.411594], [9.347584, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.416091], [9.347584, 45.420587], [9.35208, 45.420587], [9.35208, 45.416091], [9.347584, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.420587], [9.347584, 45.425084], [9.35208, 45.425084], [9.35208, 45.420587], [9.347584, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.425084], [9.347584, 45.42958], [9.35208, 45.42958], [9.35208, 45.425084], [9.347584, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.42958], [9.347584, 45.434077], [9.35208, 45.434077], [9.35208, 45.42958], [9.347584, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.434077], [9.347584, 45.438574], [9.35208, 45.438574], [9.35208, 45.434077], [9.347584, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.438574], [9.347584, 45.44307], [9.35208, 45.44307], [9.35208, 45.438574], [9.347584, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.44307], [9.347584, 45.447567], [9.35208, 45.447567], [9.35208, 45.44307], [9.347584, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.447567], [9.347584, 45.452063], [9.35208, 45.452063], [9.35208, 45.447567], [9.347584, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.452063], [9.347584, 45.45656], [9.35208, 45.45656], [9.35208, 45.452063], [9.347584, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.45656], [9.347584, 45.461057], [9.35208, 45.461057], [9.35208, 45.45656], [9.347584, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.461057], [9.347584, 45.465553], [9.35208, 45.465553], [9.35208, 45.461057], [9.347584, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.465553], [9.347584, 45.47005], [9.35208, 45.47005], [9.35208, 45.465553], [9.347584, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.47005], [9.347584, 45.474547], [9.35208, 45.474547], [9.35208, 45.47005], [9.347584, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.474547], [9.347584, 45.479043], [9.35208, 45.479043], [9.35208, 45.474547], [9.347584, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.479043], [9.347584, 45.48354], [9.35208, 45.48354], [9.35208, 45.479043], [9.347584, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.48354], [9.347584, 45.488036], [9.35208, 45.488036], [9.35208, 45.48354], [9.347584, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.488036], [9.347584, 45.492533], [9.35208, 45.492533], [9.35208, 45.488036], [9.347584, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.492533], [9.347584, 45.49703], [9.35208, 45.49703], [9.35208, 45.492533], [9.347584, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.49703], [9.347584, 45.501526], [9.35208, 45.501526], [9.35208, 45.49703], [9.347584, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.501526], [9.347584, 45.506023], [9.35208, 45.506023], [9.35208, 45.501526], [9.347584, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.506023], [9.347584, 45.510519], [9.35208, 45.510519], [9.35208, 45.506023], [9.347584, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.510519], [9.347584, 45.515016], [9.35208, 45.515016], [9.35208, 45.510519], [9.347584, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.515016], [9.347584, 45.519513], [9.35208, 45.519513], [9.35208, 45.515016], [9.347584, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.519513], [9.347584, 45.524009], [9.35208, 45.524009], [9.35208, 45.519513], [9.347584, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.524009], [9.347584, 45.528506], [9.35208, 45.528506], [9.35208, 45.524009], [9.347584, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.528506], [9.347584, 45.533002], [9.35208, 45.533002], [9.35208, 45.528506], [9.347584, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.533002], [9.347584, 45.537499], [9.35208, 45.537499], [9.35208, 45.533002], [9.347584, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.537499], [9.347584, 45.541996], [9.35208, 45.541996], [9.35208, 45.537499], [9.347584, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.541996], [9.347584, 45.546492], [9.35208, 45.546492], [9.35208, 45.541996], [9.347584, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.546492], [9.347584, 45.550989], [9.35208, 45.550989], [9.35208, 45.546492], [9.347584, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.550989], [9.347584, 45.555485], [9.35208, 45.555485], [9.35208, 45.550989], [9.347584, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.555485], [9.347584, 45.559982], [9.35208, 45.559982], [9.35208, 45.555485], [9.347584, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.559982], [9.347584, 45.564479], [9.35208, 45.564479], [9.35208, 45.559982], [9.347584, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.564479], [9.347584, 45.568975], [9.35208, 45.568975], [9.35208, 45.564479], [9.347584, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.568975], [9.347584, 45.573472], [9.35208, 45.573472], [9.35208, 45.568975], [9.347584, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.573472], [9.347584, 45.577968], [9.35208, 45.577968], [9.35208, 45.573472], [9.347584, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.577968], [9.347584, 45.582465], [9.35208, 45.582465], [9.35208, 45.577968], [9.347584, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.582465], [9.347584, 45.586962], [9.35208, 45.586962], [9.35208, 45.582465], [9.347584, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.586962], [9.347584, 45.591458], [9.35208, 45.591458], [9.35208, 45.586962], [9.347584, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.591458], [9.347584, 45.595955], [9.35208, 45.595955], [9.35208, 45.591458], [9.347584, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.595955], [9.347584, 45.600451], [9.35208, 45.600451], [9.35208, 45.595955], [9.347584, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.600451], [9.347584, 45.604948], [9.35208, 45.604948], [9.35208, 45.600451], [9.347584, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.604948], [9.347584, 45.609445], [9.35208, 45.609445], [9.35208, 45.604948], [9.347584, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.609445], [9.347584, 45.613941], [9.35208, 45.613941], [9.35208, 45.609445], [9.347584, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.613941], [9.347584, 45.618438], [9.35208, 45.618438], [9.35208, 45.613941], [9.347584, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.618438], [9.347584, 45.622934], [9.35208, 45.622934], [9.35208, 45.618438], [9.347584, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.622934], [9.347584, 45.627431], [9.35208, 45.627431], [9.35208, 45.622934], [9.347584, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.627431], [9.347584, 45.631928], [9.35208, 45.631928], [9.35208, 45.627431], [9.347584, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.347584, 45.631928], [9.347584, 45.636424], [9.35208, 45.636424], [9.35208, 45.631928], [9.347584, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.339648], [9.35208, 45.344145], [9.356577, 45.344145], [9.356577, 45.339648], [9.35208, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.344145], [9.35208, 45.348642], [9.356577, 45.348642], [9.356577, 45.344145], [9.35208, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.348642], [9.35208, 45.353138], [9.356577, 45.353138], [9.356577, 45.348642], [9.35208, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.353138], [9.35208, 45.357635], [9.356577, 45.357635], [9.356577, 45.353138], [9.35208, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.357635], [9.35208, 45.362131], [9.356577, 45.362131], [9.356577, 45.357635], [9.35208, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.362131], [9.35208, 45.366628], [9.356577, 45.366628], [9.356577, 45.362131], [9.35208, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.366628], [9.35208, 45.371125], [9.356577, 45.371125], [9.356577, 45.366628], [9.35208, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.371125], [9.35208, 45.375621], [9.356577, 45.375621], [9.356577, 45.371125], [9.35208, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.375621], [9.35208, 45.380118], [9.356577, 45.380118], [9.356577, 45.375621], [9.35208, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.380118], [9.35208, 45.384614], [9.356577, 45.384614], [9.356577, 45.380118], [9.35208, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.384614], [9.35208, 45.389111], [9.356577, 45.389111], [9.356577, 45.384614], [9.35208, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.389111], [9.35208, 45.393608], [9.356577, 45.393608], [9.356577, 45.389111], [9.35208, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.393608], [9.35208, 45.398104], [9.356577, 45.398104], [9.356577, 45.393608], [9.35208, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.398104], [9.35208, 45.402601], [9.356577, 45.402601], [9.356577, 45.398104], [9.35208, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.402601], [9.35208, 45.407097], [9.356577, 45.407097], [9.356577, 45.402601], [9.35208, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.407097], [9.35208, 45.411594], [9.356577, 45.411594], [9.356577, 45.407097], [9.35208, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.411594], [9.35208, 45.416091], [9.356577, 45.416091], [9.356577, 45.411594], [9.35208, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.416091], [9.35208, 45.420587], [9.356577, 45.420587], [9.356577, 45.416091], [9.35208, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.420587], [9.35208, 45.425084], [9.356577, 45.425084], [9.356577, 45.420587], [9.35208, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.425084], [9.35208, 45.42958], [9.356577, 45.42958], [9.356577, 45.425084], [9.35208, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.42958], [9.35208, 45.434077], [9.356577, 45.434077], [9.356577, 45.42958], [9.35208, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.434077], [9.35208, 45.438574], [9.356577, 45.438574], [9.356577, 45.434077], [9.35208, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.438574], [9.35208, 45.44307], [9.356577, 45.44307], [9.356577, 45.438574], [9.35208, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.44307], [9.35208, 45.447567], [9.356577, 45.447567], [9.356577, 45.44307], [9.35208, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.447567], [9.35208, 45.452063], [9.356577, 45.452063], [9.356577, 45.447567], [9.35208, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.452063], [9.35208, 45.45656], [9.356577, 45.45656], [9.356577, 45.452063], [9.35208, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.45656], [9.35208, 45.461057], [9.356577, 45.461057], [9.356577, 45.45656], [9.35208, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.461057], [9.35208, 45.465553], [9.356577, 45.465553], [9.356577, 45.461057], [9.35208, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.465553], [9.35208, 45.47005], [9.356577, 45.47005], [9.356577, 45.465553], [9.35208, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.47005], [9.35208, 45.474547], [9.356577, 45.474547], [9.356577, 45.47005], [9.35208, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.474547], [9.35208, 45.479043], [9.356577, 45.479043], [9.356577, 45.474547], [9.35208, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.479043], [9.35208, 45.48354], [9.356577, 45.48354], [9.356577, 45.479043], [9.35208, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.48354], [9.35208, 45.488036], [9.356577, 45.488036], [9.356577, 45.48354], [9.35208, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.488036], [9.35208, 45.492533], [9.356577, 45.492533], [9.356577, 45.488036], [9.35208, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.492533], [9.35208, 45.49703], [9.356577, 45.49703], [9.356577, 45.492533], [9.35208, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.49703], [9.35208, 45.501526], [9.356577, 45.501526], [9.356577, 45.49703], [9.35208, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.501526], [9.35208, 45.506023], [9.356577, 45.506023], [9.356577, 45.501526], [9.35208, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.506023], [9.35208, 45.510519], [9.356577, 45.510519], [9.356577, 45.506023], [9.35208, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.510519], [9.35208, 45.515016], [9.356577, 45.515016], [9.356577, 45.510519], [9.35208, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.515016], [9.35208, 45.519513], [9.356577, 45.519513], [9.356577, 45.515016], [9.35208, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.519513], [9.35208, 45.524009], [9.356577, 45.524009], [9.356577, 45.519513], [9.35208, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.524009], [9.35208, 45.528506], [9.356577, 45.528506], [9.356577, 45.524009], [9.35208, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.528506], [9.35208, 45.533002], [9.356577, 45.533002], [9.356577, 45.528506], [9.35208, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.533002], [9.35208, 45.537499], [9.356577, 45.537499], [9.356577, 45.533002], [9.35208, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.537499], [9.35208, 45.541996], [9.356577, 45.541996], [9.356577, 45.537499], [9.35208, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.541996], [9.35208, 45.546492], [9.356577, 45.546492], [9.356577, 45.541996], [9.35208, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.546492], [9.35208, 45.550989], [9.356577, 45.550989], [9.356577, 45.546492], [9.35208, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.550989], [9.35208, 45.555485], [9.356577, 45.555485], [9.356577, 45.550989], [9.35208, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.555485], [9.35208, 45.559982], [9.356577, 45.559982], [9.356577, 45.555485], [9.35208, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.559982], [9.35208, 45.564479], [9.356577, 45.564479], [9.356577, 45.559982], [9.35208, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.564479], [9.35208, 45.568975], [9.356577, 45.568975], [9.356577, 45.564479], [9.35208, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.568975], [9.35208, 45.573472], [9.356577, 45.573472], [9.356577, 45.568975], [9.35208, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.573472], [9.35208, 45.577968], [9.356577, 45.577968], [9.356577, 45.573472], [9.35208, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.577968], [9.35208, 45.582465], [9.356577, 45.582465], [9.356577, 45.577968], [9.35208, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.582465], [9.35208, 45.586962], [9.356577, 45.586962], [9.356577, 45.582465], [9.35208, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.586962], [9.35208, 45.591458], [9.356577, 45.591458], [9.356577, 45.586962], [9.35208, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.591458], [9.35208, 45.595955], [9.356577, 45.595955], [9.356577, 45.591458], [9.35208, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.595955], [9.35208, 45.600451], [9.356577, 45.600451], [9.356577, 45.595955], [9.35208, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.600451], [9.35208, 45.604948], [9.356577, 45.604948], [9.356577, 45.600451], [9.35208, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.604948], [9.35208, 45.609445], [9.356577, 45.609445], [9.356577, 45.604948], [9.35208, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.609445], [9.35208, 45.613941], [9.356577, 45.613941], [9.356577, 45.609445], [9.35208, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.613941], [9.35208, 45.618438], [9.356577, 45.618438], [9.356577, 45.613941], [9.35208, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.618438], [9.35208, 45.622934], [9.356577, 45.622934], [9.356577, 45.618438], [9.35208, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.622934], [9.35208, 45.627431], [9.356577, 45.627431], [9.356577, 45.622934], [9.35208, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.627431], [9.35208, 45.631928], [9.356577, 45.631928], [9.356577, 45.627431], [9.35208, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.35208, 45.631928], [9.35208, 45.636424], [9.356577, 45.636424], [9.356577, 45.631928], [9.35208, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.339648], [9.356577, 45.344145], [9.361074, 45.344145], [9.361074, 45.339648], [9.356577, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.344145], [9.356577, 45.348642], [9.361074, 45.348642], [9.361074, 45.344145], [9.356577, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.348642], [9.356577, 45.353138], [9.361074, 45.353138], [9.361074, 45.348642], [9.356577, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.353138], [9.356577, 45.357635], [9.361074, 45.357635], [9.361074, 45.353138], [9.356577, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.357635], [9.356577, 45.362131], [9.361074, 45.362131], [9.361074, 45.357635], [9.356577, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.362131], [9.356577, 45.366628], [9.361074, 45.366628], [9.361074, 45.362131], [9.356577, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.366628], [9.356577, 45.371125], [9.361074, 45.371125], [9.361074, 45.366628], [9.356577, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.371125], [9.356577, 45.375621], [9.361074, 45.375621], [9.361074, 45.371125], [9.356577, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.375621], [9.356577, 45.380118], [9.361074, 45.380118], [9.361074, 45.375621], [9.356577, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.380118], [9.356577, 45.384614], [9.361074, 45.384614], [9.361074, 45.380118], [9.356577, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.384614], [9.356577, 45.389111], [9.361074, 45.389111], [9.361074, 45.384614], [9.356577, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.389111], [9.356577, 45.393608], [9.361074, 45.393608], [9.361074, 45.389111], [9.356577, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.393608], [9.356577, 45.398104], [9.361074, 45.398104], [9.361074, 45.393608], [9.356577, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.398104], [9.356577, 45.402601], [9.361074, 45.402601], [9.361074, 45.398104], [9.356577, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.402601], [9.356577, 45.407097], [9.361074, 45.407097], [9.361074, 45.402601], [9.356577, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.407097], [9.356577, 45.411594], [9.361074, 45.411594], [9.361074, 45.407097], [9.356577, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.411594], [9.356577, 45.416091], [9.361074, 45.416091], [9.361074, 45.411594], [9.356577, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.416091], [9.356577, 45.420587], [9.361074, 45.420587], [9.361074, 45.416091], [9.356577, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.420587], [9.356577, 45.425084], [9.361074, 45.425084], [9.361074, 45.420587], [9.356577, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.425084], [9.356577, 45.42958], [9.361074, 45.42958], [9.361074, 45.425084], [9.356577, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.42958], [9.356577, 45.434077], [9.361074, 45.434077], [9.361074, 45.42958], [9.356577, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.434077], [9.356577, 45.438574], [9.361074, 45.438574], [9.361074, 45.434077], [9.356577, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.438574], [9.356577, 45.44307], [9.361074, 45.44307], [9.361074, 45.438574], [9.356577, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.44307], [9.356577, 45.447567], [9.361074, 45.447567], [9.361074, 45.44307], [9.356577, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.447567], [9.356577, 45.452063], [9.361074, 45.452063], [9.361074, 45.447567], [9.356577, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.452063], [9.356577, 45.45656], [9.361074, 45.45656], [9.361074, 45.452063], [9.356577, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.45656], [9.356577, 45.461057], [9.361074, 45.461057], [9.361074, 45.45656], [9.356577, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.461057], [9.356577, 45.465553], [9.361074, 45.465553], [9.361074, 45.461057], [9.356577, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.465553], [9.356577, 45.47005], [9.361074, 45.47005], [9.361074, 45.465553], [9.356577, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.47005], [9.356577, 45.474547], [9.361074, 45.474547], [9.361074, 45.47005], [9.356577, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.474547], [9.356577, 45.479043], [9.361074, 45.479043], [9.361074, 45.474547], [9.356577, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.479043], [9.356577, 45.48354], [9.361074, 45.48354], [9.361074, 45.479043], [9.356577, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.48354], [9.356577, 45.488036], [9.361074, 45.488036], [9.361074, 45.48354], [9.356577, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.488036], [9.356577, 45.492533], [9.361074, 45.492533], [9.361074, 45.488036], [9.356577, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.492533], [9.356577, 45.49703], [9.361074, 45.49703], [9.361074, 45.492533], [9.356577, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.49703], [9.356577, 45.501526], [9.361074, 45.501526], [9.361074, 45.49703], [9.356577, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.501526], [9.356577, 45.506023], [9.361074, 45.506023], [9.361074, 45.501526], [9.356577, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.506023], [9.356577, 45.510519], [9.361074, 45.510519], [9.361074, 45.506023], [9.356577, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.510519], [9.356577, 45.515016], [9.361074, 45.515016], [9.361074, 45.510519], [9.356577, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.515016], [9.356577, 45.519513], [9.361074, 45.519513], [9.361074, 45.515016], [9.356577, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.519513], [9.356577, 45.524009], [9.361074, 45.524009], [9.361074, 45.519513], [9.356577, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.524009], [9.356577, 45.528506], [9.361074, 45.528506], [9.361074, 45.524009], [9.356577, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.528506], [9.356577, 45.533002], [9.361074, 45.533002], [9.361074, 45.528506], [9.356577, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.533002], [9.356577, 45.537499], [9.361074, 45.537499], [9.361074, 45.533002], [9.356577, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.537499], [9.356577, 45.541996], [9.361074, 45.541996], [9.361074, 45.537499], [9.356577, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.541996], [9.356577, 45.546492], [9.361074, 45.546492], [9.361074, 45.541996], [9.356577, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.546492], [9.356577, 45.550989], [9.361074, 45.550989], [9.361074, 45.546492], [9.356577, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.550989], [9.356577, 45.555485], [9.361074, 45.555485], [9.361074, 45.550989], [9.356577, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.555485], [9.356577, 45.559982], [9.361074, 45.559982], [9.361074, 45.555485], [9.356577, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.559982], [9.356577, 45.564479], [9.361074, 45.564479], [9.361074, 45.559982], [9.356577, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.564479], [9.356577, 45.568975], [9.361074, 45.568975], [9.361074, 45.564479], [9.356577, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.568975], [9.356577, 45.573472], [9.361074, 45.573472], [9.361074, 45.568975], [9.356577, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.573472], [9.356577, 45.577968], [9.361074, 45.577968], [9.361074, 45.573472], [9.356577, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.577968], [9.356577, 45.582465], [9.361074, 45.582465], [9.361074, 45.577968], [9.356577, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.582465], [9.356577, 45.586962], [9.361074, 45.586962], [9.361074, 45.582465], [9.356577, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.586962], [9.356577, 45.591458], [9.361074, 45.591458], [9.361074, 45.586962], [9.356577, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.591458], [9.356577, 45.595955], [9.361074, 45.595955], [9.361074, 45.591458], [9.356577, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.595955], [9.356577, 45.600451], [9.361074, 45.600451], [9.361074, 45.595955], [9.356577, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.600451], [9.356577, 45.604948], [9.361074, 45.604948], [9.361074, 45.600451], [9.356577, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.604948], [9.356577, 45.609445], [9.361074, 45.609445], [9.361074, 45.604948], [9.356577, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.609445], [9.356577, 45.613941], [9.361074, 45.613941], [9.361074, 45.609445], [9.356577, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.613941], [9.356577, 45.618438], [9.361074, 45.618438], [9.361074, 45.613941], [9.356577, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.618438], [9.356577, 45.622934], [9.361074, 45.622934], [9.361074, 45.618438], [9.356577, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.622934], [9.356577, 45.627431], [9.361074, 45.627431], [9.361074, 45.622934], [9.356577, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.627431], [9.356577, 45.631928], [9.361074, 45.631928], [9.361074, 45.627431], [9.356577, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.356577, 45.631928], [9.356577, 45.636424], [9.361074, 45.636424], [9.361074, 45.631928], [9.356577, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.339648], [9.361074, 45.344145], [9.36557, 45.344145], [9.36557, 45.339648], [9.361074, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.344145], [9.361074, 45.348642], [9.36557, 45.348642], [9.36557, 45.344145], [9.361074, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.348642], [9.361074, 45.353138], [9.36557, 45.353138], [9.36557, 45.348642], [9.361074, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.353138], [9.361074, 45.357635], [9.36557, 45.357635], [9.36557, 45.353138], [9.361074, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.357635], [9.361074, 45.362131], [9.36557, 45.362131], [9.36557, 45.357635], [9.361074, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.362131], [9.361074, 45.366628], [9.36557, 45.366628], [9.36557, 45.362131], [9.361074, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.366628], [9.361074, 45.371125], [9.36557, 45.371125], [9.36557, 45.366628], [9.361074, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.371125], [9.361074, 45.375621], [9.36557, 45.375621], [9.36557, 45.371125], [9.361074, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.375621], [9.361074, 45.380118], [9.36557, 45.380118], [9.36557, 45.375621], [9.361074, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.380118], [9.361074, 45.384614], [9.36557, 45.384614], [9.36557, 45.380118], [9.361074, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.384614], [9.361074, 45.389111], [9.36557, 45.389111], [9.36557, 45.384614], [9.361074, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.389111], [9.361074, 45.393608], [9.36557, 45.393608], [9.36557, 45.389111], [9.361074, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.393608], [9.361074, 45.398104], [9.36557, 45.398104], [9.36557, 45.393608], [9.361074, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.398104], [9.361074, 45.402601], [9.36557, 45.402601], [9.36557, 45.398104], [9.361074, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.402601], [9.361074, 45.407097], [9.36557, 45.407097], [9.36557, 45.402601], [9.361074, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.407097], [9.361074, 45.411594], [9.36557, 45.411594], [9.36557, 45.407097], [9.361074, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.411594], [9.361074, 45.416091], [9.36557, 45.416091], [9.36557, 45.411594], [9.361074, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.416091], [9.361074, 45.420587], [9.36557, 45.420587], [9.36557, 45.416091], [9.361074, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.420587], [9.361074, 45.425084], [9.36557, 45.425084], [9.36557, 45.420587], [9.361074, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.425084], [9.361074, 45.42958], [9.36557, 45.42958], [9.36557, 45.425084], [9.361074, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.42958], [9.361074, 45.434077], [9.36557, 45.434077], [9.36557, 45.42958], [9.361074, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.434077], [9.361074, 45.438574], [9.36557, 45.438574], [9.36557, 45.434077], [9.361074, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.438574], [9.361074, 45.44307], [9.36557, 45.44307], [9.36557, 45.438574], [9.361074, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.44307], [9.361074, 45.447567], [9.36557, 45.447567], [9.36557, 45.44307], [9.361074, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.447567], [9.361074, 45.452063], [9.36557, 45.452063], [9.36557, 45.447567], [9.361074, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.452063], [9.361074, 45.45656], [9.36557, 45.45656], [9.36557, 45.452063], [9.361074, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.45656], [9.361074, 45.461057], [9.36557, 45.461057], [9.36557, 45.45656], [9.361074, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.461057], [9.361074, 45.465553], [9.36557, 45.465553], [9.36557, 45.461057], [9.361074, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.465553], [9.361074, 45.47005], [9.36557, 45.47005], [9.36557, 45.465553], [9.361074, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.47005], [9.361074, 45.474547], [9.36557, 45.474547], [9.36557, 45.47005], [9.361074, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.474547], [9.361074, 45.479043], [9.36557, 45.479043], [9.36557, 45.474547], [9.361074, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.479043], [9.361074, 45.48354], [9.36557, 45.48354], [9.36557, 45.479043], [9.361074, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.48354], [9.361074, 45.488036], [9.36557, 45.488036], [9.36557, 45.48354], [9.361074, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.488036], [9.361074, 45.492533], [9.36557, 45.492533], [9.36557, 45.488036], [9.361074, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.492533], [9.361074, 45.49703], [9.36557, 45.49703], [9.36557, 45.492533], [9.361074, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.49703], [9.361074, 45.501526], [9.36557, 45.501526], [9.36557, 45.49703], [9.361074, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.501526], [9.361074, 45.506023], [9.36557, 45.506023], [9.36557, 45.501526], [9.361074, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.506023], [9.361074, 45.510519], [9.36557, 45.510519], [9.36557, 45.506023], [9.361074, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.510519], [9.361074, 45.515016], [9.36557, 45.515016], [9.36557, 45.510519], [9.361074, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.515016], [9.361074, 45.519513], [9.36557, 45.519513], [9.36557, 45.515016], [9.361074, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.519513], [9.361074, 45.524009], [9.36557, 45.524009], [9.36557, 45.519513], [9.361074, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.524009], [9.361074, 45.528506], [9.36557, 45.528506], [9.36557, 45.524009], [9.361074, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.528506], [9.361074, 45.533002], [9.36557, 45.533002], [9.36557, 45.528506], [9.361074, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.533002], [9.361074, 45.537499], [9.36557, 45.537499], [9.36557, 45.533002], [9.361074, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.537499], [9.361074, 45.541996], [9.36557, 45.541996], [9.36557, 45.537499], [9.361074, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.541996], [9.361074, 45.546492], [9.36557, 45.546492], [9.36557, 45.541996], [9.361074, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.546492], [9.361074, 45.550989], [9.36557, 45.550989], [9.36557, 45.546492], [9.361074, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.550989], [9.361074, 45.555485], [9.36557, 45.555485], [9.36557, 45.550989], [9.361074, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.555485], [9.361074, 45.559982], [9.36557, 45.559982], [9.36557, 45.555485], [9.361074, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.559982], [9.361074, 45.564479], [9.36557, 45.564479], [9.36557, 45.559982], [9.361074, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.564479], [9.361074, 45.568975], [9.36557, 45.568975], [9.36557, 45.564479], [9.361074, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.568975], [9.361074, 45.573472], [9.36557, 45.573472], [9.36557, 45.568975], [9.361074, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.573472], [9.361074, 45.577968], [9.36557, 45.577968], [9.36557, 45.573472], [9.361074, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.577968], [9.361074, 45.582465], [9.36557, 45.582465], [9.36557, 45.577968], [9.361074, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.582465], [9.361074, 45.586962], [9.36557, 45.586962], [9.36557, 45.582465], [9.361074, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.586962], [9.361074, 45.591458], [9.36557, 45.591458], [9.36557, 45.586962], [9.361074, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.591458], [9.361074, 45.595955], [9.36557, 45.595955], [9.36557, 45.591458], [9.361074, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.595955], [9.361074, 45.600451], [9.36557, 45.600451], [9.36557, 45.595955], [9.361074, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.600451], [9.361074, 45.604948], [9.36557, 45.604948], [9.36557, 45.600451], [9.361074, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.604948], [9.361074, 45.609445], [9.36557, 45.609445], [9.36557, 45.604948], [9.361074, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.609445], [9.361074, 45.613941], [9.36557, 45.613941], [9.36557, 45.609445], [9.361074, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.613941], [9.361074, 45.618438], [9.36557, 45.618438], [9.36557, 45.613941], [9.361074, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.618438], [9.361074, 45.622934], [9.36557, 45.622934], [9.36557, 45.618438], [9.361074, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.622934], [9.361074, 45.627431], [9.36557, 45.627431], [9.36557, 45.622934], [9.361074, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#4daaff", "fill": "#4daaff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.627431], [9.361074, 45.631928], [9.36557, 45.631928], [9.36557, 45.627431], [9.361074, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.361074, 45.631928], [9.361074, 45.636424], [9.36557, 45.636424], [9.36557, 45.631928], [9.361074, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.339648], [9.36557, 45.344145], [9.370067, 45.344145], [9.370067, 45.339648], [9.36557, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.344145], [9.36557, 45.348642], [9.370067, 45.348642], [9.370067, 45.344145], [9.36557, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.348642], [9.36557, 45.353138], [9.370067, 45.353138], [9.370067, 45.348642], [9.36557, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.353138], [9.36557, 45.357635], [9.370067, 45.357635], [9.370067, 45.353138], [9.36557, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.357635], [9.36557, 45.362131], [9.370067, 45.362131], [9.370067, 45.357635], [9.36557, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.362131], [9.36557, 45.366628], [9.370067, 45.366628], [9.370067, 45.362131], [9.36557, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.366628], [9.36557, 45.371125], [9.370067, 45.371125], [9.370067, 45.366628], [9.36557, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.371125], [9.36557, 45.375621], [9.370067, 45.375621], [9.370067, 45.371125], [9.36557, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.375621], [9.36557, 45.380118], [9.370067, 45.380118], [9.370067, 45.375621], [9.36557, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.380118], [9.36557, 45.384614], [9.370067, 45.384614], [9.370067, 45.380118], [9.36557, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.384614], [9.36557, 45.389111], [9.370067, 45.389111], [9.370067, 45.384614], [9.36557, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.389111], [9.36557, 45.393608], [9.370067, 45.393608], [9.370067, 45.389111], [9.36557, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.393608], [9.36557, 45.398104], [9.370067, 45.398104], [9.370067, 45.393608], [9.36557, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.398104], [9.36557, 45.402601], [9.370067, 45.402601], [9.370067, 45.398104], [9.36557, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.402601], [9.36557, 45.407097], [9.370067, 45.407097], [9.370067, 45.402601], [9.36557, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.407097], [9.36557, 45.411594], [9.370067, 45.411594], [9.370067, 45.407097], [9.36557, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.411594], [9.36557, 45.416091], [9.370067, 45.416091], [9.370067, 45.411594], [9.36557, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.416091], [9.36557, 45.420587], [9.370067, 45.420587], [9.370067, 45.416091], [9.36557, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.420587], [9.36557, 45.425084], [9.370067, 45.425084], [9.370067, 45.420587], [9.36557, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.425084], [9.36557, 45.42958], [9.370067, 45.42958], [9.370067, 45.425084], [9.36557, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.42958], [9.36557, 45.434077], [9.370067, 45.434077], [9.370067, 45.42958], [9.36557, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.434077], [9.36557, 45.438574], [9.370067, 45.438574], [9.370067, 45.434077], [9.36557, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.438574], [9.36557, 45.44307], [9.370067, 45.44307], [9.370067, 45.438574], [9.36557, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.44307], [9.36557, 45.447567], [9.370067, 45.447567], [9.370067, 45.44307], [9.36557, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.447567], [9.36557, 45.452063], [9.370067, 45.452063], [9.370067, 45.447567], [9.36557, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.452063], [9.36557, 45.45656], [9.370067, 45.45656], [9.370067, 45.452063], [9.36557, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.45656], [9.36557, 45.461057], [9.370067, 45.461057], [9.370067, 45.45656], [9.36557, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.461057], [9.36557, 45.465553], [9.370067, 45.465553], [9.370067, 45.461057], [9.36557, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.465553], [9.36557, 45.47005], [9.370067, 45.47005], [9.370067, 45.465553], [9.36557, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.47005], [9.36557, 45.474547], [9.370067, 45.474547], [9.370067, 45.47005], [9.36557, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.474547], [9.36557, 45.479043], [9.370067, 45.479043], [9.370067, 45.474547], [9.36557, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.479043], [9.36557, 45.48354], [9.370067, 45.48354], [9.370067, 45.479043], [9.36557, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.48354], [9.36557, 45.488036], [9.370067, 45.488036], [9.370067, 45.48354], [9.36557, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.488036], [9.36557, 45.492533], [9.370067, 45.492533], [9.370067, 45.488036], [9.36557, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.492533], [9.36557, 45.49703], [9.370067, 45.49703], [9.370067, 45.492533], [9.36557, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.49703], [9.36557, 45.501526], [9.370067, 45.501526], [9.370067, 45.49703], [9.36557, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.501526], [9.36557, 45.506023], [9.370067, 45.506023], [9.370067, 45.501526], [9.36557, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.506023], [9.36557, 45.510519], [9.370067, 45.510519], [9.370067, 45.506023], [9.36557, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.510519], [9.36557, 45.515016], [9.370067, 45.515016], [9.370067, 45.510519], [9.36557, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.515016], [9.36557, 45.519513], [9.370067, 45.519513], [9.370067, 45.515016], [9.36557, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.519513], [9.36557, 45.524009], [9.370067, 45.524009], [9.370067, 45.519513], [9.36557, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.524009], [9.36557, 45.528506], [9.370067, 45.528506], [9.370067, 45.524009], [9.36557, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.528506], [9.36557, 45.533002], [9.370067, 45.533002], [9.370067, 45.528506], [9.36557, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.533002], [9.36557, 45.537499], [9.370067, 45.537499], [9.370067, 45.533002], [9.36557, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.537499], [9.36557, 45.541996], [9.370067, 45.541996], [9.370067, 45.537499], [9.36557, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.541996], [9.36557, 45.546492], [9.370067, 45.546492], [9.370067, 45.541996], [9.36557, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.546492], [9.36557, 45.550989], [9.370067, 45.550989], [9.370067, 45.546492], [9.36557, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.550989], [9.36557, 45.555485], [9.370067, 45.555485], [9.370067, 45.550989], [9.36557, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.555485], [9.36557, 45.559982], [9.370067, 45.559982], [9.370067, 45.555485], [9.36557, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.559982], [9.36557, 45.564479], [9.370067, 45.564479], [9.370067, 45.559982], [9.36557, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.564479], [9.36557, 45.568975], [9.370067, 45.568975], [9.370067, 45.564479], [9.36557, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.568975], [9.36557, 45.573472], [9.370067, 45.573472], [9.370067, 45.568975], [9.36557, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.573472], [9.36557, 45.577968], [9.370067, 45.577968], [9.370067, 45.573472], [9.36557, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.577968], [9.36557, 45.582465], [9.370067, 45.582465], [9.370067, 45.577968], [9.36557, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.582465], [9.36557, 45.586962], [9.370067, 45.586962], [9.370067, 45.582465], [9.36557, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.586962], [9.36557, 45.591458], [9.370067, 45.591458], [9.370067, 45.586962], [9.36557, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.591458], [9.36557, 45.595955], [9.370067, 45.595955], [9.370067, 45.591458], [9.36557, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.595955], [9.36557, 45.600451], [9.370067, 45.600451], [9.370067, 45.595955], [9.36557, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.600451], [9.36557, 45.604948], [9.370067, 45.604948], [9.370067, 45.600451], [9.36557, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.604948], [9.36557, 45.609445], [9.370067, 45.609445], [9.370067, 45.604948], [9.36557, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.609445], [9.36557, 45.613941], [9.370067, 45.613941], [9.370067, 45.609445], [9.36557, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.613941], [9.36557, 45.618438], [9.370067, 45.618438], [9.370067, 45.613941], [9.36557, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.618438], [9.36557, 45.622934], [9.370067, 45.622934], [9.370067, 45.618438], [9.36557, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.622934], [9.36557, 45.627431], [9.370067, 45.627431], [9.370067, 45.622934], [9.36557, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.627431], [9.36557, 45.631928], [9.370067, 45.631928], [9.370067, 45.627431], [9.36557, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.36557, 45.631928], [9.36557, 45.636424], [9.370067, 45.636424], [9.370067, 45.631928], [9.36557, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.339648], [9.370067, 45.344145], [9.374563, 45.344145], [9.374563, 45.339648], [9.370067, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.344145], [9.370067, 45.348642], [9.374563, 45.348642], [9.374563, 45.344145], [9.370067, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.348642], [9.370067, 45.353138], [9.374563, 45.353138], [9.374563, 45.348642], [9.370067, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.353138], [9.370067, 45.357635], [9.374563, 45.357635], [9.374563, 45.353138], [9.370067, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.357635], [9.370067, 45.362131], [9.374563, 45.362131], [9.374563, 45.357635], [9.370067, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.362131], [9.370067, 45.366628], [9.374563, 45.366628], [9.374563, 45.362131], [9.370067, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.366628], [9.370067, 45.371125], [9.374563, 45.371125], [9.374563, 45.366628], [9.370067, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.371125], [9.370067, 45.375621], [9.374563, 45.375621], [9.374563, 45.371125], [9.370067, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.375621], [9.370067, 45.380118], [9.374563, 45.380118], [9.374563, 45.375621], [9.370067, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.380118], [9.370067, 45.384614], [9.374563, 45.384614], [9.374563, 45.380118], [9.370067, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.384614], [9.370067, 45.389111], [9.374563, 45.389111], [9.374563, 45.384614], [9.370067, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.389111], [9.370067, 45.393608], [9.374563, 45.393608], [9.374563, 45.389111], [9.370067, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.393608], [9.370067, 45.398104], [9.374563, 45.398104], [9.374563, 45.393608], [9.370067, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.398104], [9.370067, 45.402601], [9.374563, 45.402601], [9.374563, 45.398104], [9.370067, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.402601], [9.370067, 45.407097], [9.374563, 45.407097], [9.374563, 45.402601], [9.370067, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.407097], [9.370067, 45.411594], [9.374563, 45.411594], [9.374563, 45.407097], [9.370067, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.411594], [9.370067, 45.416091], [9.374563, 45.416091], [9.374563, 45.411594], [9.370067, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.416091], [9.370067, 45.420587], [9.374563, 45.420587], [9.374563, 45.416091], [9.370067, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.420587], [9.370067, 45.425084], [9.374563, 45.425084], [9.374563, 45.420587], [9.370067, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.425084], [9.370067, 45.42958], [9.374563, 45.42958], [9.374563, 45.425084], [9.370067, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.42958], [9.370067, 45.434077], [9.374563, 45.434077], [9.374563, 45.42958], [9.370067, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.434077], [9.370067, 45.438574], [9.374563, 45.438574], [9.374563, 45.434077], [9.370067, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.438574], [9.370067, 45.44307], [9.374563, 45.44307], [9.374563, 45.438574], [9.370067, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.44307], [9.370067, 45.447567], [9.374563, 45.447567], [9.374563, 45.44307], [9.370067, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.447567], [9.370067, 45.452063], [9.374563, 45.452063], [9.374563, 45.447567], [9.370067, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.452063], [9.370067, 45.45656], [9.374563, 45.45656], [9.374563, 45.452063], [9.370067, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.45656], [9.370067, 45.461057], [9.374563, 45.461057], [9.374563, 45.45656], [9.370067, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.461057], [9.370067, 45.465553], [9.374563, 45.465553], [9.374563, 45.461057], [9.370067, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.465553], [9.370067, 45.47005], [9.374563, 45.47005], [9.374563, 45.465553], [9.370067, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.47005], [9.370067, 45.474547], [9.374563, 45.474547], [9.374563, 45.47005], [9.370067, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.474547], [9.370067, 45.479043], [9.374563, 45.479043], [9.374563, 45.474547], [9.370067, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.479043], [9.370067, 45.48354], [9.374563, 45.48354], [9.374563, 45.479043], [9.370067, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.48354], [9.370067, 45.488036], [9.374563, 45.488036], [9.374563, 45.48354], [9.370067, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.488036], [9.370067, 45.492533], [9.374563, 45.492533], [9.374563, 45.488036], [9.370067, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.492533], [9.370067, 45.49703], [9.374563, 45.49703], [9.374563, 45.492533], [9.370067, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.49703], [9.370067, 45.501526], [9.374563, 45.501526], [9.374563, 45.49703], [9.370067, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.501526], [9.370067, 45.506023], [9.374563, 45.506023], [9.374563, 45.501526], [9.370067, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.506023], [9.370067, 45.510519], [9.374563, 45.510519], [9.374563, 45.506023], [9.370067, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.510519], [9.370067, 45.515016], [9.374563, 45.515016], [9.374563, 45.510519], [9.370067, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.515016], [9.370067, 45.519513], [9.374563, 45.519513], [9.374563, 45.515016], [9.370067, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.519513], [9.370067, 45.524009], [9.374563, 45.524009], [9.374563, 45.519513], [9.370067, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.524009], [9.370067, 45.528506], [9.374563, 45.528506], [9.374563, 45.524009], [9.370067, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.528506], [9.370067, 45.533002], [9.374563, 45.533002], [9.374563, 45.528506], [9.370067, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.533002], [9.370067, 45.537499], [9.374563, 45.537499], [9.374563, 45.533002], [9.370067, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.537499], [9.370067, 45.541996], [9.374563, 45.541996], [9.374563, 45.537499], [9.370067, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.541996], [9.370067, 45.546492], [9.374563, 45.546492], [9.374563, 45.541996], [9.370067, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.546492], [9.370067, 45.550989], [9.374563, 45.550989], [9.374563, 45.546492], [9.370067, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.550989], [9.370067, 45.555485], [9.374563, 45.555485], [9.374563, 45.550989], [9.370067, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.555485], [9.370067, 45.559982], [9.374563, 45.559982], [9.374563, 45.555485], [9.370067, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.559982], [9.370067, 45.564479], [9.374563, 45.564479], [9.374563, 45.559982], [9.370067, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.564479], [9.370067, 45.568975], [9.374563, 45.568975], [9.374563, 45.564479], [9.370067, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.568975], [9.370067, 45.573472], [9.374563, 45.573472], [9.374563, 45.568975], [9.370067, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.573472], [9.370067, 45.577968], [9.374563, 45.577968], [9.374563, 45.573472], [9.370067, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.577968], [9.370067, 45.582465], [9.374563, 45.582465], [9.374563, 45.577968], [9.370067, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.582465], [9.370067, 45.586962], [9.374563, 45.586962], [9.374563, 45.582465], [9.370067, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.586962], [9.370067, 45.591458], [9.374563, 45.591458], [9.374563, 45.586962], [9.370067, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.591458], [9.370067, 45.595955], [9.374563, 45.595955], [9.374563, 45.591458], [9.370067, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.595955], [9.370067, 45.600451], [9.374563, 45.600451], [9.374563, 45.595955], [9.370067, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.600451], [9.370067, 45.604948], [9.374563, 45.604948], [9.374563, 45.600451], [9.370067, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.604948], [9.370067, 45.609445], [9.374563, 45.609445], [9.374563, 45.604948], [9.370067, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.609445], [9.370067, 45.613941], [9.374563, 45.613941], [9.374563, 45.609445], [9.370067, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.613941], [9.370067, 45.618438], [9.374563, 45.618438], [9.374563, 45.613941], [9.370067, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.618438], [9.370067, 45.622934], [9.374563, 45.622934], [9.374563, 45.618438], [9.370067, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.622934], [9.370067, 45.627431], [9.374563, 45.627431], [9.374563, 45.622934], [9.370067, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.627431], [9.370067, 45.631928], [9.374563, 45.631928], [9.374563, 45.627431], [9.370067, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.370067, 45.631928], [9.370067, 45.636424], [9.374563, 45.636424], [9.374563, 45.631928], [9.370067, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.339648], [9.374563, 45.344145], [9.37906, 45.344145], [9.37906, 45.339648], [9.374563, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.344145], [9.374563, 45.348642], [9.37906, 45.348642], [9.37906, 45.344145], [9.374563, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.348642], [9.374563, 45.353138], [9.37906, 45.353138], [9.37906, 45.348642], [9.374563, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.353138], [9.374563, 45.357635], [9.37906, 45.357635], [9.37906, 45.353138], [9.374563, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.357635], [9.374563, 45.362131], [9.37906, 45.362131], [9.37906, 45.357635], [9.374563, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.362131], [9.374563, 45.366628], [9.37906, 45.366628], [9.37906, 45.362131], [9.374563, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.366628], [9.374563, 45.371125], [9.37906, 45.371125], [9.37906, 45.366628], [9.374563, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.371125], [9.374563, 45.375621], [9.37906, 45.375621], [9.37906, 45.371125], [9.374563, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.375621], [9.374563, 45.380118], [9.37906, 45.380118], [9.37906, 45.375621], [9.374563, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.380118], [9.374563, 45.384614], [9.37906, 45.384614], [9.37906, 45.380118], [9.374563, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.384614], [9.374563, 45.389111], [9.37906, 45.389111], [9.37906, 45.384614], [9.374563, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.389111], [9.374563, 45.393608], [9.37906, 45.393608], [9.37906, 45.389111], [9.374563, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.393608], [9.374563, 45.398104], [9.37906, 45.398104], [9.37906, 45.393608], [9.374563, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.398104], [9.374563, 45.402601], [9.37906, 45.402601], [9.37906, 45.398104], [9.374563, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.402601], [9.374563, 45.407097], [9.37906, 45.407097], [9.37906, 45.402601], [9.374563, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.407097], [9.374563, 45.411594], [9.37906, 45.411594], [9.37906, 45.407097], [9.374563, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.411594], [9.374563, 45.416091], [9.37906, 45.416091], [9.37906, 45.411594], [9.374563, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.416091], [9.374563, 45.420587], [9.37906, 45.420587], [9.37906, 45.416091], [9.374563, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.420587], [9.374563, 45.425084], [9.37906, 45.425084], [9.37906, 45.420587], [9.374563, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.425084], [9.374563, 45.42958], [9.37906, 45.42958], [9.37906, 45.425084], [9.374563, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.42958], [9.374563, 45.434077], [9.37906, 45.434077], [9.37906, 45.42958], [9.374563, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.434077], [9.374563, 45.438574], [9.37906, 45.438574], [9.37906, 45.434077], [9.374563, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.438574], [9.374563, 45.44307], [9.37906, 45.44307], [9.37906, 45.438574], [9.374563, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.44307], [9.374563, 45.447567], [9.37906, 45.447567], [9.37906, 45.44307], [9.374563, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.447567], [9.374563, 45.452063], [9.37906, 45.452063], [9.37906, 45.447567], [9.374563, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.452063], [9.374563, 45.45656], [9.37906, 45.45656], [9.37906, 45.452063], [9.374563, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.45656], [9.374563, 45.461057], [9.37906, 45.461057], [9.37906, 45.45656], [9.374563, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.461057], [9.374563, 45.465553], [9.37906, 45.465553], [9.37906, 45.461057], [9.374563, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.465553], [9.374563, 45.47005], [9.37906, 45.47005], [9.37906, 45.465553], [9.374563, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.47005], [9.374563, 45.474547], [9.37906, 45.474547], [9.37906, 45.47005], [9.374563, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.474547], [9.374563, 45.479043], [9.37906, 45.479043], [9.37906, 45.474547], [9.374563, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.479043], [9.374563, 45.48354], [9.37906, 45.48354], [9.37906, 45.479043], [9.374563, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.48354], [9.374563, 45.488036], [9.37906, 45.488036], [9.37906, 45.48354], [9.374563, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.488036], [9.374563, 45.492533], [9.37906, 45.492533], [9.37906, 45.488036], [9.374563, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.492533], [9.374563, 45.49703], [9.37906, 45.49703], [9.37906, 45.492533], [9.374563, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.49703], [9.374563, 45.501526], [9.37906, 45.501526], [9.37906, 45.49703], [9.374563, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.501526], [9.374563, 45.506023], [9.37906, 45.506023], [9.37906, 45.501526], [9.374563, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.506023], [9.374563, 45.510519], [9.37906, 45.510519], [9.37906, 45.506023], [9.374563, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.510519], [9.374563, 45.515016], [9.37906, 45.515016], [9.37906, 45.510519], [9.374563, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.515016], [9.374563, 45.519513], [9.37906, 45.519513], [9.37906, 45.515016], [9.374563, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.519513], [9.374563, 45.524009], [9.37906, 45.524009], [9.37906, 45.519513], [9.374563, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.524009], [9.374563, 45.528506], [9.37906, 45.528506], [9.37906, 45.524009], [9.374563, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.528506], [9.374563, 45.533002], [9.37906, 45.533002], [9.37906, 45.528506], [9.374563, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.533002], [9.374563, 45.537499], [9.37906, 45.537499], [9.37906, 45.533002], [9.374563, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.537499], [9.374563, 45.541996], [9.37906, 45.541996], [9.37906, 45.537499], [9.374563, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.541996], [9.374563, 45.546492], [9.37906, 45.546492], [9.37906, 45.541996], [9.374563, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.546492], [9.374563, 45.550989], [9.37906, 45.550989], [9.37906, 45.546492], [9.374563, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.550989], [9.374563, 45.555485], [9.37906, 45.555485], [9.37906, 45.550989], [9.374563, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.555485], [9.374563, 45.559982], [9.37906, 45.559982], [9.37906, 45.555485], [9.374563, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.559982], [9.374563, 45.564479], [9.37906, 45.564479], [9.37906, 45.559982], [9.374563, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.564479], [9.374563, 45.568975], [9.37906, 45.568975], [9.37906, 45.564479], [9.374563, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.568975], [9.374563, 45.573472], [9.37906, 45.573472], [9.37906, 45.568975], [9.374563, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.573472], [9.374563, 45.577968], [9.37906, 45.577968], [9.37906, 45.573472], [9.374563, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.577968], [9.374563, 45.582465], [9.37906, 45.582465], [9.37906, 45.577968], [9.374563, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.582465], [9.374563, 45.586962], [9.37906, 45.586962], [9.37906, 45.582465], [9.374563, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.586962], [9.374563, 45.591458], [9.37906, 45.591458], [9.37906, 45.586962], [9.374563, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.591458], [9.374563, 45.595955], [9.37906, 45.595955], [9.37906, 45.591458], [9.374563, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.595955], [9.374563, 45.600451], [9.37906, 45.600451], [9.37906, 45.595955], [9.374563, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.600451], [9.374563, 45.604948], [9.37906, 45.604948], [9.37906, 45.600451], [9.374563, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.604948], [9.374563, 45.609445], [9.37906, 45.609445], [9.37906, 45.604948], [9.374563, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.609445], [9.374563, 45.613941], [9.37906, 45.613941], [9.37906, 45.609445], [9.374563, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.613941], [9.374563, 45.618438], [9.37906, 45.618438], [9.37906, 45.613941], [9.374563, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.618438], [9.374563, 45.622934], [9.37906, 45.622934], [9.37906, 45.618438], [9.374563, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.622934], [9.374563, 45.627431], [9.37906, 45.627431], [9.37906, 45.622934], [9.374563, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.627431], [9.374563, 45.631928], [9.37906, 45.631928], [9.37906, 45.627431], [9.374563, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.374563, 45.631928], [9.374563, 45.636424], [9.37906, 45.636424], [9.37906, 45.631928], [9.374563, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.339648], [9.37906, 45.344145], [9.383557, 45.344145], [9.383557, 45.339648], [9.37906, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.344145], [9.37906, 45.348642], [9.383557, 45.348642], [9.383557, 45.344145], [9.37906, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.348642], [9.37906, 45.353138], [9.383557, 45.353138], [9.383557, 45.348642], [9.37906, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.353138], [9.37906, 45.357635], [9.383557, 45.357635], [9.383557, 45.353138], [9.37906, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.357635], [9.37906, 45.362131], [9.383557, 45.362131], [9.383557, 45.357635], [9.37906, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.362131], [9.37906, 45.366628], [9.383557, 45.366628], [9.383557, 45.362131], [9.37906, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.366628], [9.37906, 45.371125], [9.383557, 45.371125], [9.383557, 45.366628], [9.37906, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.371125], [9.37906, 45.375621], [9.383557, 45.375621], [9.383557, 45.371125], [9.37906, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.375621], [9.37906, 45.380118], [9.383557, 45.380118], [9.383557, 45.375621], [9.37906, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.380118], [9.37906, 45.384614], [9.383557, 45.384614], [9.383557, 45.380118], [9.37906, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.384614], [9.37906, 45.389111], [9.383557, 45.389111], [9.383557, 45.384614], [9.37906, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.389111], [9.37906, 45.393608], [9.383557, 45.393608], [9.383557, 45.389111], [9.37906, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.393608], [9.37906, 45.398104], [9.383557, 45.398104], [9.383557, 45.393608], [9.37906, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.398104], [9.37906, 45.402601], [9.383557, 45.402601], [9.383557, 45.398104], [9.37906, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.402601], [9.37906, 45.407097], [9.383557, 45.407097], [9.383557, 45.402601], [9.37906, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.407097], [9.37906, 45.411594], [9.383557, 45.411594], [9.383557, 45.407097], [9.37906, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.411594], [9.37906, 45.416091], [9.383557, 45.416091], [9.383557, 45.411594], [9.37906, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.416091], [9.37906, 45.420587], [9.383557, 45.420587], [9.383557, 45.416091], [9.37906, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.420587], [9.37906, 45.425084], [9.383557, 45.425084], [9.383557, 45.420587], [9.37906, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.425084], [9.37906, 45.42958], [9.383557, 45.42958], [9.383557, 45.425084], [9.37906, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.42958], [9.37906, 45.434077], [9.383557, 45.434077], [9.383557, 45.42958], [9.37906, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.434077], [9.37906, 45.438574], [9.383557, 45.438574], [9.383557, 45.434077], [9.37906, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.438574], [9.37906, 45.44307], [9.383557, 45.44307], [9.383557, 45.438574], [9.37906, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.44307], [9.37906, 45.447567], [9.383557, 45.447567], [9.383557, 45.44307], [9.37906, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.447567], [9.37906, 45.452063], [9.383557, 45.452063], [9.383557, 45.447567], [9.37906, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.452063], [9.37906, 45.45656], [9.383557, 45.45656], [9.383557, 45.452063], [9.37906, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.45656], [9.37906, 45.461057], [9.383557, 45.461057], [9.383557, 45.45656], [9.37906, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.461057], [9.37906, 45.465553], [9.383557, 45.465553], [9.383557, 45.461057], [9.37906, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.465553], [9.37906, 45.47005], [9.383557, 45.47005], [9.383557, 45.465553], [9.37906, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.47005], [9.37906, 45.474547], [9.383557, 45.474547], [9.383557, 45.47005], [9.37906, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.474547], [9.37906, 45.479043], [9.383557, 45.479043], [9.383557, 45.474547], [9.37906, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.479043], [9.37906, 45.48354], [9.383557, 45.48354], [9.383557, 45.479043], [9.37906, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.48354], [9.37906, 45.488036], [9.383557, 45.488036], [9.383557, 45.48354], [9.37906, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.488036], [9.37906, 45.492533], [9.383557, 45.492533], [9.383557, 45.488036], [9.37906, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.492533], [9.37906, 45.49703], [9.383557, 45.49703], [9.383557, 45.492533], [9.37906, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.49703], [9.37906, 45.501526], [9.383557, 45.501526], [9.383557, 45.49703], [9.37906, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.501526], [9.37906, 45.506023], [9.383557, 45.506023], [9.383557, 45.501526], [9.37906, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.506023], [9.37906, 45.510519], [9.383557, 45.510519], [9.383557, 45.506023], [9.37906, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.510519], [9.37906, 45.515016], [9.383557, 45.515016], [9.383557, 45.510519], [9.37906, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.515016], [9.37906, 45.519513], [9.383557, 45.519513], [9.383557, 45.515016], [9.37906, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.519513], [9.37906, 45.524009], [9.383557, 45.524009], [9.383557, 45.519513], [9.37906, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.524009], [9.37906, 45.528506], [9.383557, 45.528506], [9.383557, 45.524009], [9.37906, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.528506], [9.37906, 45.533002], [9.383557, 45.533002], [9.383557, 45.528506], [9.37906, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.533002], [9.37906, 45.537499], [9.383557, 45.537499], [9.383557, 45.533002], [9.37906, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.537499], [9.37906, 45.541996], [9.383557, 45.541996], [9.383557, 45.537499], [9.37906, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.541996], [9.37906, 45.546492], [9.383557, 45.546492], [9.383557, 45.541996], [9.37906, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.546492], [9.37906, 45.550989], [9.383557, 45.550989], [9.383557, 45.546492], [9.37906, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.550989], [9.37906, 45.555485], [9.383557, 45.555485], [9.383557, 45.550989], [9.37906, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.555485], [9.37906, 45.559982], [9.383557, 45.559982], [9.383557, 45.555485], [9.37906, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.559982], [9.37906, 45.564479], [9.383557, 45.564479], [9.383557, 45.559982], [9.37906, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.564479], [9.37906, 45.568975], [9.383557, 45.568975], [9.383557, 45.564479], [9.37906, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.568975], [9.37906, 45.573472], [9.383557, 45.573472], [9.383557, 45.568975], [9.37906, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.573472], [9.37906, 45.577968], [9.383557, 45.577968], [9.383557, 45.573472], [9.37906, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.577968], [9.37906, 45.582465], [9.383557, 45.582465], [9.383557, 45.577968], [9.37906, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.582465], [9.37906, 45.586962], [9.383557, 45.586962], [9.383557, 45.582465], [9.37906, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.586962], [9.37906, 45.591458], [9.383557, 45.591458], [9.383557, 45.586962], [9.37906, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.591458], [9.37906, 45.595955], [9.383557, 45.595955], [9.383557, 45.591458], [9.37906, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.595955], [9.37906, 45.600451], [9.383557, 45.600451], [9.383557, 45.595955], [9.37906, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.600451], [9.37906, 45.604948], [9.383557, 45.604948], [9.383557, 45.600451], [9.37906, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.604948], [9.37906, 45.609445], [9.383557, 45.609445], [9.383557, 45.604948], [9.37906, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.609445], [9.37906, 45.613941], [9.383557, 45.613941], [9.383557, 45.609445], [9.37906, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.613941], [9.37906, 45.618438], [9.383557, 45.618438], [9.383557, 45.613941], [9.37906, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.618438], [9.37906, 45.622934], [9.383557, 45.622934], [9.383557, 45.618438], [9.37906, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.622934], [9.37906, 45.627431], [9.383557, 45.627431], [9.383557, 45.622934], [9.37906, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.627431], [9.37906, 45.631928], [9.383557, 45.631928], [9.383557, 45.627431], [9.37906, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.37906, 45.631928], [9.37906, 45.636424], [9.383557, 45.636424], [9.383557, 45.631928], [9.37906, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.339648], [9.383557, 45.344145], [9.388053, 45.344145], [9.388053, 45.339648], [9.383557, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.344145], [9.383557, 45.348642], [9.388053, 45.348642], [9.388053, 45.344145], [9.383557, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.348642], [9.383557, 45.353138], [9.388053, 45.353138], [9.388053, 45.348642], [9.383557, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.353138], [9.383557, 45.357635], [9.388053, 45.357635], [9.388053, 45.353138], [9.383557, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.357635], [9.383557, 45.362131], [9.388053, 45.362131], [9.388053, 45.357635], [9.383557, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.362131], [9.383557, 45.366628], [9.388053, 45.366628], [9.388053, 45.362131], [9.383557, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.366628], [9.383557, 45.371125], [9.388053, 45.371125], [9.388053, 45.366628], [9.383557, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.371125], [9.383557, 45.375621], [9.388053, 45.375621], [9.388053, 45.371125], [9.383557, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.375621], [9.383557, 45.380118], [9.388053, 45.380118], [9.388053, 45.375621], [9.383557, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.380118], [9.383557, 45.384614], [9.388053, 45.384614], [9.388053, 45.380118], [9.383557, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.384614], [9.383557, 45.389111], [9.388053, 45.389111], [9.388053, 45.384614], [9.383557, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.389111], [9.383557, 45.393608], [9.388053, 45.393608], [9.388053, 45.389111], [9.383557, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.393608], [9.383557, 45.398104], [9.388053, 45.398104], [9.388053, 45.393608], [9.383557, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.398104], [9.383557, 45.402601], [9.388053, 45.402601], [9.388053, 45.398104], [9.383557, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.402601], [9.383557, 45.407097], [9.388053, 45.407097], [9.388053, 45.402601], [9.383557, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.407097], [9.383557, 45.411594], [9.388053, 45.411594], [9.388053, 45.407097], [9.383557, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.411594], [9.383557, 45.416091], [9.388053, 45.416091], [9.388053, 45.411594], [9.383557, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.416091], [9.383557, 45.420587], [9.388053, 45.420587], [9.388053, 45.416091], [9.383557, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.420587], [9.383557, 45.425084], [9.388053, 45.425084], [9.388053, 45.420587], [9.383557, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.425084], [9.383557, 45.42958], [9.388053, 45.42958], [9.388053, 45.425084], [9.383557, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.42958], [9.383557, 45.434077], [9.388053, 45.434077], [9.388053, 45.42958], [9.383557, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.434077], [9.383557, 45.438574], [9.388053, 45.438574], [9.388053, 45.434077], [9.383557, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.438574], [9.383557, 45.44307], [9.388053, 45.44307], [9.388053, 45.438574], [9.383557, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.44307], [9.383557, 45.447567], [9.388053, 45.447567], [9.388053, 45.44307], [9.383557, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.447567], [9.383557, 45.452063], [9.388053, 45.452063], [9.388053, 45.447567], [9.383557, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.452063], [9.383557, 45.45656], [9.388053, 45.45656], [9.388053, 45.452063], [9.383557, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.45656], [9.383557, 45.461057], [9.388053, 45.461057], [9.388053, 45.45656], [9.383557, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.461057], [9.383557, 45.465553], [9.388053, 45.465553], [9.388053, 45.461057], [9.383557, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.465553], [9.383557, 45.47005], [9.388053, 45.47005], [9.388053, 45.465553], [9.383557, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.47005], [9.383557, 45.474547], [9.388053, 45.474547], [9.388053, 45.47005], [9.383557, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.474547], [9.383557, 45.479043], [9.388053, 45.479043], [9.388053, 45.474547], [9.383557, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.479043], [9.383557, 45.48354], [9.388053, 45.48354], [9.388053, 45.479043], [9.383557, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.48354], [9.383557, 45.488036], [9.388053, 45.488036], [9.388053, 45.48354], [9.383557, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.488036], [9.383557, 45.492533], [9.388053, 45.492533], [9.388053, 45.488036], [9.383557, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.492533], [9.383557, 45.49703], [9.388053, 45.49703], [9.388053, 45.492533], [9.383557, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.49703], [9.383557, 45.501526], [9.388053, 45.501526], [9.388053, 45.49703], [9.383557, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.501526], [9.383557, 45.506023], [9.388053, 45.506023], [9.388053, 45.501526], [9.383557, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.506023], [9.383557, 45.510519], [9.388053, 45.510519], [9.388053, 45.506023], [9.383557, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.510519], [9.383557, 45.515016], [9.388053, 45.515016], [9.388053, 45.510519], [9.383557, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.515016], [9.383557, 45.519513], [9.388053, 45.519513], [9.388053, 45.515016], [9.383557, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.519513], [9.383557, 45.524009], [9.388053, 45.524009], [9.388053, 45.519513], [9.383557, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.524009], [9.383557, 45.528506], [9.388053, 45.528506], [9.388053, 45.524009], [9.383557, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.528506], [9.383557, 45.533002], [9.388053, 45.533002], [9.388053, 45.528506], [9.383557, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.533002], [9.383557, 45.537499], [9.388053, 45.537499], [9.388053, 45.533002], [9.383557, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.537499], [9.383557, 45.541996], [9.388053, 45.541996], [9.388053, 45.537499], [9.383557, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.541996], [9.383557, 45.546492], [9.388053, 45.546492], [9.388053, 45.541996], [9.383557, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.546492], [9.383557, 45.550989], [9.388053, 45.550989], [9.388053, 45.546492], [9.383557, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.550989], [9.383557, 45.555485], [9.388053, 45.555485], [9.388053, 45.550989], [9.383557, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.555485], [9.383557, 45.559982], [9.388053, 45.559982], [9.388053, 45.555485], [9.383557, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.559982], [9.383557, 45.564479], [9.388053, 45.564479], [9.388053, 45.559982], [9.383557, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.564479], [9.383557, 45.568975], [9.388053, 45.568975], [9.388053, 45.564479], [9.383557, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.568975], [9.383557, 45.573472], [9.388053, 45.573472], [9.388053, 45.568975], [9.383557, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.573472], [9.383557, 45.577968], [9.388053, 45.577968], [9.388053, 45.573472], [9.383557, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.577968], [9.383557, 45.582465], [9.388053, 45.582465], [9.388053, 45.577968], [9.383557, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.582465], [9.383557, 45.586962], [9.388053, 45.586962], [9.388053, 45.582465], [9.383557, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.586962], [9.383557, 45.591458], [9.388053, 45.591458], [9.388053, 45.586962], [9.383557, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.591458], [9.383557, 45.595955], [9.388053, 45.595955], [9.388053, 45.591458], [9.383557, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.595955], [9.383557, 45.600451], [9.388053, 45.600451], [9.388053, 45.595955], [9.383557, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.600451], [9.383557, 45.604948], [9.388053, 45.604948], [9.388053, 45.600451], [9.383557, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.604948], [9.383557, 45.609445], [9.388053, 45.609445], [9.388053, 45.604948], [9.383557, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.609445], [9.383557, 45.613941], [9.388053, 45.613941], [9.388053, 45.609445], [9.383557, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.613941], [9.383557, 45.618438], [9.388053, 45.618438], [9.388053, 45.613941], [9.383557, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.618438], [9.383557, 45.622934], [9.388053, 45.622934], [9.388053, 45.618438], [9.383557, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.622934], [9.383557, 45.627431], [9.388053, 45.627431], [9.388053, 45.622934], [9.383557, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.627431], [9.383557, 45.631928], [9.388053, 45.631928], [9.388053, 45.627431], [9.383557, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.383557, 45.631928], [9.383557, 45.636424], [9.388053, 45.636424], [9.388053, 45.631928], [9.383557, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.339648], [9.388053, 45.344145], [9.39255, 45.344145], [9.39255, 45.339648], [9.388053, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.344145], [9.388053, 45.348642], [9.39255, 45.348642], [9.39255, 45.344145], [9.388053, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.348642], [9.388053, 45.353138], [9.39255, 45.353138], [9.39255, 45.348642], [9.388053, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.353138], [9.388053, 45.357635], [9.39255, 45.357635], [9.39255, 45.353138], [9.388053, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.357635], [9.388053, 45.362131], [9.39255, 45.362131], [9.39255, 45.357635], [9.388053, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.362131], [9.388053, 45.366628], [9.39255, 45.366628], [9.39255, 45.362131], [9.388053, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.366628], [9.388053, 45.371125], [9.39255, 45.371125], [9.39255, 45.366628], [9.388053, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.371125], [9.388053, 45.375621], [9.39255, 45.375621], [9.39255, 45.371125], [9.388053, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.375621], [9.388053, 45.380118], [9.39255, 45.380118], [9.39255, 45.375621], [9.388053, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.380118], [9.388053, 45.384614], [9.39255, 45.384614], [9.39255, 45.380118], [9.388053, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.384614], [9.388053, 45.389111], [9.39255, 45.389111], [9.39255, 45.384614], [9.388053, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.389111], [9.388053, 45.393608], [9.39255, 45.393608], [9.39255, 45.389111], [9.388053, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.393608], [9.388053, 45.398104], [9.39255, 45.398104], [9.39255, 45.393608], [9.388053, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.398104], [9.388053, 45.402601], [9.39255, 45.402601], [9.39255, 45.398104], [9.388053, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.402601], [9.388053, 45.407097], [9.39255, 45.407097], [9.39255, 45.402601], [9.388053, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.407097], [9.388053, 45.411594], [9.39255, 45.411594], [9.39255, 45.407097], [9.388053, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.411594], [9.388053, 45.416091], [9.39255, 45.416091], [9.39255, 45.411594], [9.388053, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.416091], [9.388053, 45.420587], [9.39255, 45.420587], [9.39255, 45.416091], [9.388053, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.420587], [9.388053, 45.425084], [9.39255, 45.425084], [9.39255, 45.420587], [9.388053, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.425084], [9.388053, 45.42958], [9.39255, 45.42958], [9.39255, 45.425084], [9.388053, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.42958], [9.388053, 45.434077], [9.39255, 45.434077], [9.39255, 45.42958], [9.388053, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.434077], [9.388053, 45.438574], [9.39255, 45.438574], [9.39255, 45.434077], [9.388053, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.438574], [9.388053, 45.44307], [9.39255, 45.44307], [9.39255, 45.438574], [9.388053, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.44307], [9.388053, 45.447567], [9.39255, 45.447567], [9.39255, 45.44307], [9.388053, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.447567], [9.388053, 45.452063], [9.39255, 45.452063], [9.39255, 45.447567], [9.388053, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.452063], [9.388053, 45.45656], [9.39255, 45.45656], [9.39255, 45.452063], [9.388053, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.45656], [9.388053, 45.461057], [9.39255, 45.461057], [9.39255, 45.45656], [9.388053, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.461057], [9.388053, 45.465553], [9.39255, 45.465553], [9.39255, 45.461057], [9.388053, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.465553], [9.388053, 45.47005], [9.39255, 45.47005], [9.39255, 45.465553], [9.388053, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.47005], [9.388053, 45.474547], [9.39255, 45.474547], [9.39255, 45.47005], [9.388053, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.474547], [9.388053, 45.479043], [9.39255, 45.479043], [9.39255, 45.474547], [9.388053, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.479043], [9.388053, 45.48354], [9.39255, 45.48354], [9.39255, 45.479043], [9.388053, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.48354], [9.388053, 45.488036], [9.39255, 45.488036], [9.39255, 45.48354], [9.388053, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.488036], [9.388053, 45.492533], [9.39255, 45.492533], [9.39255, 45.488036], [9.388053, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.492533], [9.388053, 45.49703], [9.39255, 45.49703], [9.39255, 45.492533], [9.388053, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.49703], [9.388053, 45.501526], [9.39255, 45.501526], [9.39255, 45.49703], [9.388053, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.501526], [9.388053, 45.506023], [9.39255, 45.506023], [9.39255, 45.501526], [9.388053, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.506023], [9.388053, 45.510519], [9.39255, 45.510519], [9.39255, 45.506023], [9.388053, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.510519], [9.388053, 45.515016], [9.39255, 45.515016], [9.39255, 45.510519], [9.388053, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.515016], [9.388053, 45.519513], [9.39255, 45.519513], [9.39255, 45.515016], [9.388053, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.519513], [9.388053, 45.524009], [9.39255, 45.524009], [9.39255, 45.519513], [9.388053, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.524009], [9.388053, 45.528506], [9.39255, 45.528506], [9.39255, 45.524009], [9.388053, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.528506], [9.388053, 45.533002], [9.39255, 45.533002], [9.39255, 45.528506], [9.388053, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.533002], [9.388053, 45.537499], [9.39255, 45.537499], [9.39255, 45.533002], [9.388053, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.537499], [9.388053, 45.541996], [9.39255, 45.541996], [9.39255, 45.537499], [9.388053, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.541996], [9.388053, 45.546492], [9.39255, 45.546492], [9.39255, 45.541996], [9.388053, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.546492], [9.388053, 45.550989], [9.39255, 45.550989], [9.39255, 45.546492], [9.388053, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.550989], [9.388053, 45.555485], [9.39255, 45.555485], [9.39255, 45.550989], [9.388053, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.555485], [9.388053, 45.559982], [9.39255, 45.559982], [9.39255, 45.555485], [9.388053, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.559982], [9.388053, 45.564479], [9.39255, 45.564479], [9.39255, 45.559982], [9.388053, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.564479], [9.388053, 45.568975], [9.39255, 45.568975], [9.39255, 45.564479], [9.388053, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.568975], [9.388053, 45.573472], [9.39255, 45.573472], [9.39255, 45.568975], [9.388053, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.573472], [9.388053, 45.577968], [9.39255, 45.577968], [9.39255, 45.573472], [9.388053, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.577968], [9.388053, 45.582465], [9.39255, 45.582465], [9.39255, 45.577968], [9.388053, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.582465], [9.388053, 45.586962], [9.39255, 45.586962], [9.39255, 45.582465], [9.388053, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.586962], [9.388053, 45.591458], [9.39255, 45.591458], [9.39255, 45.586962], [9.388053, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.591458], [9.388053, 45.595955], [9.39255, 45.595955], [9.39255, 45.591458], [9.388053, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.595955], [9.388053, 45.600451], [9.39255, 45.600451], [9.39255, 45.595955], [9.388053, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.600451], [9.388053, 45.604948], [9.39255, 45.604948], [9.39255, 45.600451], [9.388053, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.604948], [9.388053, 45.609445], [9.39255, 45.609445], [9.39255, 45.604948], [9.388053, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.609445], [9.388053, 45.613941], [9.39255, 45.613941], [9.39255, 45.609445], [9.388053, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.613941], [9.388053, 45.618438], [9.39255, 45.618438], [9.39255, 45.613941], [9.388053, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.618438], [9.388053, 45.622934], [9.39255, 45.622934], [9.39255, 45.618438], [9.388053, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.622934], [9.388053, 45.627431], [9.39255, 45.627431], [9.39255, 45.622934], [9.388053, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.627431], [9.388053, 45.631928], [9.39255, 45.631928], [9.39255, 45.627431], [9.388053, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.388053, 45.631928], [9.388053, 45.636424], [9.39255, 45.636424], [9.39255, 45.631928], [9.388053, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.339648], [9.39255, 45.344145], [9.397046, 45.344145], [9.397046, 45.339648], [9.39255, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.344145], [9.39255, 45.348642], [9.397046, 45.348642], [9.397046, 45.344145], [9.39255, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.348642], [9.39255, 45.353138], [9.397046, 45.353138], [9.397046, 45.348642], [9.39255, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.353138], [9.39255, 45.357635], [9.397046, 45.357635], [9.397046, 45.353138], [9.39255, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.357635], [9.39255, 45.362131], [9.397046, 45.362131], [9.397046, 45.357635], [9.39255, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.362131], [9.39255, 45.366628], [9.397046, 45.366628], [9.397046, 45.362131], [9.39255, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.366628], [9.39255, 45.371125], [9.397046, 45.371125], [9.397046, 45.366628], [9.39255, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.371125], [9.39255, 45.375621], [9.397046, 45.375621], [9.397046, 45.371125], [9.39255, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.375621], [9.39255, 45.380118], [9.397046, 45.380118], [9.397046, 45.375621], [9.39255, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.380118], [9.39255, 45.384614], [9.397046, 45.384614], [9.397046, 45.380118], [9.39255, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.384614], [9.39255, 45.389111], [9.397046, 45.389111], [9.397046, 45.384614], [9.39255, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.389111], [9.39255, 45.393608], [9.397046, 45.393608], [9.397046, 45.389111], [9.39255, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.393608], [9.39255, 45.398104], [9.397046, 45.398104], [9.397046, 45.393608], [9.39255, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.398104], [9.39255, 45.402601], [9.397046, 45.402601], [9.397046, 45.398104], [9.39255, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.402601], [9.39255, 45.407097], [9.397046, 45.407097], [9.397046, 45.402601], [9.39255, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.407097], [9.39255, 45.411594], [9.397046, 45.411594], [9.397046, 45.407097], [9.39255, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.411594], [9.39255, 45.416091], [9.397046, 45.416091], [9.397046, 45.411594], [9.39255, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.416091], [9.39255, 45.420587], [9.397046, 45.420587], [9.397046, 45.416091], [9.39255, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.420587], [9.39255, 45.425084], [9.397046, 45.425084], [9.397046, 45.420587], [9.39255, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.425084], [9.39255, 45.42958], [9.397046, 45.42958], [9.397046, 45.425084], [9.39255, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.42958], [9.39255, 45.434077], [9.397046, 45.434077], [9.397046, 45.42958], [9.39255, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.434077], [9.39255, 45.438574], [9.397046, 45.438574], [9.397046, 45.434077], [9.39255, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.438574], [9.39255, 45.44307], [9.397046, 45.44307], [9.397046, 45.438574], [9.39255, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.44307], [9.39255, 45.447567], [9.397046, 45.447567], [9.397046, 45.44307], [9.39255, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.447567], [9.39255, 45.452063], [9.397046, 45.452063], [9.397046, 45.447567], [9.39255, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.452063], [9.39255, 45.45656], [9.397046, 45.45656], [9.397046, 45.452063], [9.39255, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.45656], [9.39255, 45.461057], [9.397046, 45.461057], [9.397046, 45.45656], [9.39255, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.461057], [9.39255, 45.465553], [9.397046, 45.465553], [9.397046, 45.461057], [9.39255, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.465553], [9.39255, 45.47005], [9.397046, 45.47005], [9.397046, 45.465553], [9.39255, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.47005], [9.39255, 45.474547], [9.397046, 45.474547], [9.397046, 45.47005], [9.39255, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.474547], [9.39255, 45.479043], [9.397046, 45.479043], [9.397046, 45.474547], [9.39255, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.479043], [9.39255, 45.48354], [9.397046, 45.48354], [9.397046, 45.479043], [9.39255, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.48354], [9.39255, 45.488036], [9.397046, 45.488036], [9.397046, 45.48354], [9.39255, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.488036], [9.39255, 45.492533], [9.397046, 45.492533], [9.397046, 45.488036], [9.39255, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.492533], [9.39255, 45.49703], [9.397046, 45.49703], [9.397046, 45.492533], [9.39255, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.49703], [9.39255, 45.501526], [9.397046, 45.501526], [9.397046, 45.49703], [9.39255, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.501526], [9.39255, 45.506023], [9.397046, 45.506023], [9.397046, 45.501526], [9.39255, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.506023], [9.39255, 45.510519], [9.397046, 45.510519], [9.397046, 45.506023], [9.39255, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.510519], [9.39255, 45.515016], [9.397046, 45.515016], [9.397046, 45.510519], [9.39255, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.515016], [9.39255, 45.519513], [9.397046, 45.519513], [9.397046, 45.515016], [9.39255, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.519513], [9.39255, 45.524009], [9.397046, 45.524009], [9.397046, 45.519513], [9.39255, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.524009], [9.39255, 45.528506], [9.397046, 45.528506], [9.397046, 45.524009], [9.39255, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.528506], [9.39255, 45.533002], [9.397046, 45.533002], [9.397046, 45.528506], [9.39255, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.533002], [9.39255, 45.537499], [9.397046, 45.537499], [9.397046, 45.533002], [9.39255, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.537499], [9.39255, 45.541996], [9.397046, 45.541996], [9.397046, 45.537499], [9.39255, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.541996], [9.39255, 45.546492], [9.397046, 45.546492], [9.397046, 45.541996], [9.39255, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.546492], [9.39255, 45.550989], [9.397046, 45.550989], [9.397046, 45.546492], [9.39255, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.550989], [9.39255, 45.555485], [9.397046, 45.555485], [9.397046, 45.550989], [9.39255, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.555485], [9.39255, 45.559982], [9.397046, 45.559982], [9.397046, 45.555485], [9.39255, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.559982], [9.39255, 45.564479], [9.397046, 45.564479], [9.397046, 45.559982], [9.39255, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.564479], [9.39255, 45.568975], [9.397046, 45.568975], [9.397046, 45.564479], [9.39255, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.568975], [9.39255, 45.573472], [9.397046, 45.573472], [9.397046, 45.568975], [9.39255, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.573472], [9.39255, 45.577968], [9.397046, 45.577968], [9.397046, 45.573472], [9.39255, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.577968], [9.39255, 45.582465], [9.397046, 45.582465], [9.397046, 45.577968], [9.39255, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.582465], [9.39255, 45.586962], [9.397046, 45.586962], [9.397046, 45.582465], [9.39255, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.586962], [9.39255, 45.591458], [9.397046, 45.591458], [9.397046, 45.586962], [9.39255, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.591458], [9.39255, 45.595955], [9.397046, 45.595955], [9.397046, 45.591458], [9.39255, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.595955], [9.39255, 45.600451], [9.397046, 45.600451], [9.397046, 45.595955], [9.39255, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.600451], [9.39255, 45.604948], [9.397046, 45.604948], [9.397046, 45.600451], [9.39255, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.604948], [9.39255, 45.609445], [9.397046, 45.609445], [9.397046, 45.604948], [9.39255, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.609445], [9.39255, 45.613941], [9.397046, 45.613941], [9.397046, 45.609445], [9.39255, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.613941], [9.39255, 45.618438], [9.397046, 45.618438], [9.397046, 45.613941], [9.39255, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.618438], [9.39255, 45.622934], [9.397046, 45.622934], [9.397046, 45.618438], [9.39255, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.622934], [9.39255, 45.627431], [9.397046, 45.627431], [9.397046, 45.622934], [9.39255, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.627431], [9.39255, 45.631928], [9.397046, 45.631928], [9.397046, 45.627431], [9.39255, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.39255, 45.631928], [9.39255, 45.636424], [9.397046, 45.636424], [9.397046, 45.631928], [9.39255, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.339648], [9.397046, 45.344145], [9.401543, 45.344145], [9.401543, 45.339648], [9.397046, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.344145], [9.397046, 45.348642], [9.401543, 45.348642], [9.401543, 45.344145], [9.397046, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.348642], [9.397046, 45.353138], [9.401543, 45.353138], [9.401543, 45.348642], [9.397046, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.353138], [9.397046, 45.357635], [9.401543, 45.357635], [9.401543, 45.353138], [9.397046, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.357635], [9.397046, 45.362131], [9.401543, 45.362131], [9.401543, 45.357635], [9.397046, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.362131], [9.397046, 45.366628], [9.401543, 45.366628], [9.401543, 45.362131], [9.397046, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.366628], [9.397046, 45.371125], [9.401543, 45.371125], [9.401543, 45.366628], [9.397046, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.371125], [9.397046, 45.375621], [9.401543, 45.375621], [9.401543, 45.371125], [9.397046, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.375621], [9.397046, 45.380118], [9.401543, 45.380118], [9.401543, 45.375621], [9.397046, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.380118], [9.397046, 45.384614], [9.401543, 45.384614], [9.401543, 45.380118], [9.397046, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.384614], [9.397046, 45.389111], [9.401543, 45.389111], [9.401543, 45.384614], [9.397046, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.389111], [9.397046, 45.393608], [9.401543, 45.393608], [9.401543, 45.389111], [9.397046, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.393608], [9.397046, 45.398104], [9.401543, 45.398104], [9.401543, 45.393608], [9.397046, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.398104], [9.397046, 45.402601], [9.401543, 45.402601], [9.401543, 45.398104], [9.397046, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.402601], [9.397046, 45.407097], [9.401543, 45.407097], [9.401543, 45.402601], [9.397046, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.407097], [9.397046, 45.411594], [9.401543, 45.411594], [9.401543, 45.407097], [9.397046, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.411594], [9.397046, 45.416091], [9.401543, 45.416091], [9.401543, 45.411594], [9.397046, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.416091], [9.397046, 45.420587], [9.401543, 45.420587], [9.401543, 45.416091], [9.397046, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.420587], [9.397046, 45.425084], [9.401543, 45.425084], [9.401543, 45.420587], [9.397046, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.425084], [9.397046, 45.42958], [9.401543, 45.42958], [9.401543, 45.425084], [9.397046, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.42958], [9.397046, 45.434077], [9.401543, 45.434077], [9.401543, 45.42958], [9.397046, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.434077], [9.397046, 45.438574], [9.401543, 45.438574], [9.401543, 45.434077], [9.397046, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.438574], [9.397046, 45.44307], [9.401543, 45.44307], [9.401543, 45.438574], [9.397046, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.44307], [9.397046, 45.447567], [9.401543, 45.447567], [9.401543, 45.44307], [9.397046, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.447567], [9.397046, 45.452063], [9.401543, 45.452063], [9.401543, 45.447567], [9.397046, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.452063], [9.397046, 45.45656], [9.401543, 45.45656], [9.401543, 45.452063], [9.397046, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.45656], [9.397046, 45.461057], [9.401543, 45.461057], [9.401543, 45.45656], [9.397046, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.461057], [9.397046, 45.465553], [9.401543, 45.465553], [9.401543, 45.461057], [9.397046, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.465553], [9.397046, 45.47005], [9.401543, 45.47005], [9.401543, 45.465553], [9.397046, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.47005], [9.397046, 45.474547], [9.401543, 45.474547], [9.401543, 45.47005], [9.397046, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.474547], [9.397046, 45.479043], [9.401543, 45.479043], [9.401543, 45.474547], [9.397046, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.479043], [9.397046, 45.48354], [9.401543, 45.48354], [9.401543, 45.479043], [9.397046, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.48354], [9.397046, 45.488036], [9.401543, 45.488036], [9.401543, 45.48354], [9.397046, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.488036], [9.397046, 45.492533], [9.401543, 45.492533], [9.401543, 45.488036], [9.397046, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.492533], [9.397046, 45.49703], [9.401543, 45.49703], [9.401543, 45.492533], [9.397046, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.49703], [9.397046, 45.501526], [9.401543, 45.501526], [9.401543, 45.49703], [9.397046, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.501526], [9.397046, 45.506023], [9.401543, 45.506023], [9.401543, 45.501526], [9.397046, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.506023], [9.397046, 45.510519], [9.401543, 45.510519], [9.401543, 45.506023], [9.397046, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.510519], [9.397046, 45.515016], [9.401543, 45.515016], [9.401543, 45.510519], [9.397046, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.515016], [9.397046, 45.519513], [9.401543, 45.519513], [9.401543, 45.515016], [9.397046, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.519513], [9.397046, 45.524009], [9.401543, 45.524009], [9.401543, 45.519513], [9.397046, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.524009], [9.397046, 45.528506], [9.401543, 45.528506], [9.401543, 45.524009], [9.397046, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.528506], [9.397046, 45.533002], [9.401543, 45.533002], [9.401543, 45.528506], [9.397046, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.533002], [9.397046, 45.537499], [9.401543, 45.537499], [9.401543, 45.533002], [9.397046, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.537499], [9.397046, 45.541996], [9.401543, 45.541996], [9.401543, 45.537499], [9.397046, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.541996], [9.397046, 45.546492], [9.401543, 45.546492], [9.401543, 45.541996], [9.397046, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.546492], [9.397046, 45.550989], [9.401543, 45.550989], [9.401543, 45.546492], [9.397046, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.550989], [9.397046, 45.555485], [9.401543, 45.555485], [9.401543, 45.550989], [9.397046, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.555485], [9.397046, 45.559982], [9.401543, 45.559982], [9.401543, 45.555485], [9.397046, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.559982], [9.397046, 45.564479], [9.401543, 45.564479], [9.401543, 45.559982], [9.397046, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.564479], [9.397046, 45.568975], [9.401543, 45.568975], [9.401543, 45.564479], [9.397046, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.568975], [9.397046, 45.573472], [9.401543, 45.573472], [9.401543, 45.568975], [9.397046, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.573472], [9.397046, 45.577968], [9.401543, 45.577968], [9.401543, 45.573472], [9.397046, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.577968], [9.397046, 45.582465], [9.401543, 45.582465], [9.401543, 45.577968], [9.397046, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.582465], [9.397046, 45.586962], [9.401543, 45.586962], [9.401543, 45.582465], [9.397046, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.586962], [9.397046, 45.591458], [9.401543, 45.591458], [9.401543, 45.586962], [9.397046, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.591458], [9.397046, 45.595955], [9.401543, 45.595955], [9.401543, 45.591458], [9.397046, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.595955], [9.397046, 45.600451], [9.401543, 45.600451], [9.401543, 45.595955], [9.397046, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.600451], [9.397046, 45.604948], [9.401543, 45.604948], [9.401543, 45.600451], [9.397046, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.604948], [9.397046, 45.609445], [9.401543, 45.609445], [9.401543, 45.604948], [9.397046, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.609445], [9.397046, 45.613941], [9.401543, 45.613941], [9.401543, 45.609445], [9.397046, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.613941], [9.397046, 45.618438], [9.401543, 45.618438], [9.401543, 45.613941], [9.397046, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.618438], [9.397046, 45.622934], [9.401543, 45.622934], [9.401543, 45.618438], [9.397046, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.622934], [9.397046, 45.627431], [9.401543, 45.627431], [9.401543, 45.622934], [9.397046, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.627431], [9.397046, 45.631928], [9.401543, 45.631928], [9.401543, 45.627431], [9.397046, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.397046, 45.631928], [9.397046, 45.636424], [9.401543, 45.636424], [9.401543, 45.631928], [9.397046, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.339648], [9.401543, 45.344145], [9.40604, 45.344145], [9.40604, 45.339648], [9.401543, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.344145], [9.401543, 45.348642], [9.40604, 45.348642], [9.40604, 45.344145], [9.401543, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.348642], [9.401543, 45.353138], [9.40604, 45.353138], [9.40604, 45.348642], [9.401543, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.353138], [9.401543, 45.357635], [9.40604, 45.357635], [9.40604, 45.353138], [9.401543, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.357635], [9.401543, 45.362131], [9.40604, 45.362131], [9.40604, 45.357635], [9.401543, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.362131], [9.401543, 45.366628], [9.40604, 45.366628], [9.40604, 45.362131], [9.401543, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.366628], [9.401543, 45.371125], [9.40604, 45.371125], [9.40604, 45.366628], [9.401543, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.371125], [9.401543, 45.375621], [9.40604, 45.375621], [9.40604, 45.371125], [9.401543, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.375621], [9.401543, 45.380118], [9.40604, 45.380118], [9.40604, 45.375621], [9.401543, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.380118], [9.401543, 45.384614], [9.40604, 45.384614], [9.40604, 45.380118], [9.401543, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.384614], [9.401543, 45.389111], [9.40604, 45.389111], [9.40604, 45.384614], [9.401543, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.389111], [9.401543, 45.393608], [9.40604, 45.393608], [9.40604, 45.389111], [9.401543, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.393608], [9.401543, 45.398104], [9.40604, 45.398104], [9.40604, 45.393608], [9.401543, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.398104], [9.401543, 45.402601], [9.40604, 45.402601], [9.40604, 45.398104], [9.401543, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.402601], [9.401543, 45.407097], [9.40604, 45.407097], [9.40604, 45.402601], [9.401543, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.407097], [9.401543, 45.411594], [9.40604, 45.411594], [9.40604, 45.407097], [9.401543, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.411594], [9.401543, 45.416091], [9.40604, 45.416091], [9.40604, 45.411594], [9.401543, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.416091], [9.401543, 45.420587], [9.40604, 45.420587], [9.40604, 45.416091], [9.401543, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.420587], [9.401543, 45.425084], [9.40604, 45.425084], [9.40604, 45.420587], [9.401543, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.425084], [9.401543, 45.42958], [9.40604, 45.42958], [9.40604, 45.425084], [9.401543, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.42958], [9.401543, 45.434077], [9.40604, 45.434077], [9.40604, 45.42958], [9.401543, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.434077], [9.401543, 45.438574], [9.40604, 45.438574], [9.40604, 45.434077], [9.401543, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.438574], [9.401543, 45.44307], [9.40604, 45.44307], [9.40604, 45.438574], [9.401543, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.44307], [9.401543, 45.447567], [9.40604, 45.447567], [9.40604, 45.44307], [9.401543, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.447567], [9.401543, 45.452063], [9.40604, 45.452063], [9.40604, 45.447567], [9.401543, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.452063], [9.401543, 45.45656], [9.40604, 45.45656], [9.40604, 45.452063], [9.401543, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.45656], [9.401543, 45.461057], [9.40604, 45.461057], [9.40604, 45.45656], [9.401543, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.461057], [9.401543, 45.465553], [9.40604, 45.465553], [9.40604, 45.461057], [9.401543, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.465553], [9.401543, 45.47005], [9.40604, 45.47005], [9.40604, 45.465553], [9.401543, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.47005], [9.401543, 45.474547], [9.40604, 45.474547], [9.40604, 45.47005], [9.401543, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.474547], [9.401543, 45.479043], [9.40604, 45.479043], [9.40604, 45.474547], [9.401543, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.479043], [9.401543, 45.48354], [9.40604, 45.48354], [9.40604, 45.479043], [9.401543, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.48354], [9.401543, 45.488036], [9.40604, 45.488036], [9.40604, 45.48354], [9.401543, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.488036], [9.401543, 45.492533], [9.40604, 45.492533], [9.40604, 45.488036], [9.401543, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.492533], [9.401543, 45.49703], [9.40604, 45.49703], [9.40604, 45.492533], [9.401543, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.49703], [9.401543, 45.501526], [9.40604, 45.501526], [9.40604, 45.49703], [9.401543, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.501526], [9.401543, 45.506023], [9.40604, 45.506023], [9.40604, 45.501526], [9.401543, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.506023], [9.401543, 45.510519], [9.40604, 45.510519], [9.40604, 45.506023], [9.401543, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.510519], [9.401543, 45.515016], [9.40604, 45.515016], [9.40604, 45.510519], [9.401543, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.515016], [9.401543, 45.519513], [9.40604, 45.519513], [9.40604, 45.515016], [9.401543, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.519513], [9.401543, 45.524009], [9.40604, 45.524009], [9.40604, 45.519513], [9.401543, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.524009], [9.401543, 45.528506], [9.40604, 45.528506], [9.40604, 45.524009], [9.401543, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.528506], [9.401543, 45.533002], [9.40604, 45.533002], [9.40604, 45.528506], [9.401543, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.533002], [9.401543, 45.537499], [9.40604, 45.537499], [9.40604, 45.533002], [9.401543, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.537499], [9.401543, 45.541996], [9.40604, 45.541996], [9.40604, 45.537499], [9.401543, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.541996], [9.401543, 45.546492], [9.40604, 45.546492], [9.40604, 45.541996], [9.401543, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.546492], [9.401543, 45.550989], [9.40604, 45.550989], [9.40604, 45.546492], [9.401543, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.550989], [9.401543, 45.555485], [9.40604, 45.555485], [9.40604, 45.550989], [9.401543, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.555485], [9.401543, 45.559982], [9.40604, 45.559982], [9.40604, 45.555485], [9.401543, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.559982], [9.401543, 45.564479], [9.40604, 45.564479], [9.40604, 45.559982], [9.401543, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.564479], [9.401543, 45.568975], [9.40604, 45.568975], [9.40604, 45.564479], [9.401543, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.568975], [9.401543, 45.573472], [9.40604, 45.573472], [9.40604, 45.568975], [9.401543, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.573472], [9.401543, 45.577968], [9.40604, 45.577968], [9.40604, 45.573472], [9.401543, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.577968], [9.401543, 45.582465], [9.40604, 45.582465], [9.40604, 45.577968], [9.401543, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.582465], [9.401543, 45.586962], [9.40604, 45.586962], [9.40604, 45.582465], [9.401543, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.586962], [9.401543, 45.591458], [9.40604, 45.591458], [9.40604, 45.586962], [9.401543, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.591458], [9.401543, 45.595955], [9.40604, 45.595955], [9.40604, 45.591458], [9.401543, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.595955], [9.401543, 45.600451], [9.40604, 45.600451], [9.40604, 45.595955], [9.401543, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.600451], [9.401543, 45.604948], [9.40604, 45.604948], [9.40604, 45.600451], [9.401543, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.604948], [9.401543, 45.609445], [9.40604, 45.609445], [9.40604, 45.604948], [9.401543, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.609445], [9.401543, 45.613941], [9.40604, 45.613941], [9.40604, 45.609445], [9.401543, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.613941], [9.401543, 45.618438], [9.40604, 45.618438], [9.40604, 45.613941], [9.401543, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.618438], [9.401543, 45.622934], [9.40604, 45.622934], [9.40604, 45.618438], [9.401543, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.622934], [9.401543, 45.627431], [9.40604, 45.627431], [9.40604, 45.622934], [9.401543, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.627431], [9.401543, 45.631928], [9.40604, 45.631928], [9.40604, 45.627431], [9.401543, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.401543, 45.631928], [9.401543, 45.636424], [9.40604, 45.636424], [9.40604, 45.631928], [9.401543, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.339648], [9.40604, 45.344145], [9.410536, 45.344145], [9.410536, 45.339648], [9.40604, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.344145], [9.40604, 45.348642], [9.410536, 45.348642], [9.410536, 45.344145], [9.40604, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.348642], [9.40604, 45.353138], [9.410536, 45.353138], [9.410536, 45.348642], [9.40604, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.353138], [9.40604, 45.357635], [9.410536, 45.357635], [9.410536, 45.353138], [9.40604, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.357635], [9.40604, 45.362131], [9.410536, 45.362131], [9.410536, 45.357635], [9.40604, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.362131], [9.40604, 45.366628], [9.410536, 45.366628], [9.410536, 45.362131], [9.40604, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.366628], [9.40604, 45.371125], [9.410536, 45.371125], [9.410536, 45.366628], [9.40604, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.371125], [9.40604, 45.375621], [9.410536, 45.375621], [9.410536, 45.371125], [9.40604, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.375621], [9.40604, 45.380118], [9.410536, 45.380118], [9.410536, 45.375621], [9.40604, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.380118], [9.40604, 45.384614], [9.410536, 45.384614], [9.410536, 45.380118], [9.40604, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.384614], [9.40604, 45.389111], [9.410536, 45.389111], [9.410536, 45.384614], [9.40604, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.389111], [9.40604, 45.393608], [9.410536, 45.393608], [9.410536, 45.389111], [9.40604, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.393608], [9.40604, 45.398104], [9.410536, 45.398104], [9.410536, 45.393608], [9.40604, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.398104], [9.40604, 45.402601], [9.410536, 45.402601], [9.410536, 45.398104], [9.40604, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.402601], [9.40604, 45.407097], [9.410536, 45.407097], [9.410536, 45.402601], [9.40604, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.407097], [9.40604, 45.411594], [9.410536, 45.411594], [9.410536, 45.407097], [9.40604, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.411594], [9.40604, 45.416091], [9.410536, 45.416091], [9.410536, 45.411594], [9.40604, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.416091], [9.40604, 45.420587], [9.410536, 45.420587], [9.410536, 45.416091], [9.40604, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.420587], [9.40604, 45.425084], [9.410536, 45.425084], [9.410536, 45.420587], [9.40604, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.425084], [9.40604, 45.42958], [9.410536, 45.42958], [9.410536, 45.425084], [9.40604, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.42958], [9.40604, 45.434077], [9.410536, 45.434077], [9.410536, 45.42958], [9.40604, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.434077], [9.40604, 45.438574], [9.410536, 45.438574], [9.410536, 45.434077], [9.40604, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.438574], [9.40604, 45.44307], [9.410536, 45.44307], [9.410536, 45.438574], [9.40604, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.44307], [9.40604, 45.447567], [9.410536, 45.447567], [9.410536, 45.44307], [9.40604, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.447567], [9.40604, 45.452063], [9.410536, 45.452063], [9.410536, 45.447567], [9.40604, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.452063], [9.40604, 45.45656], [9.410536, 45.45656], [9.410536, 45.452063], [9.40604, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.45656], [9.40604, 45.461057], [9.410536, 45.461057], [9.410536, 45.45656], [9.40604, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.461057], [9.40604, 45.465553], [9.410536, 45.465553], [9.410536, 45.461057], [9.40604, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.465553], [9.40604, 45.47005], [9.410536, 45.47005], [9.410536, 45.465553], [9.40604, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.47005], [9.40604, 45.474547], [9.410536, 45.474547], [9.410536, 45.47005], [9.40604, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.474547], [9.40604, 45.479043], [9.410536, 45.479043], [9.410536, 45.474547], [9.40604, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.479043], [9.40604, 45.48354], [9.410536, 45.48354], [9.410536, 45.479043], [9.40604, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.48354], [9.40604, 45.488036], [9.410536, 45.488036], [9.410536, 45.48354], [9.40604, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.488036], [9.40604, 45.492533], [9.410536, 45.492533], [9.410536, 45.488036], [9.40604, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.492533], [9.40604, 45.49703], [9.410536, 45.49703], [9.410536, 45.492533], [9.40604, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.49703], [9.40604, 45.501526], [9.410536, 45.501526], [9.410536, 45.49703], [9.40604, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.501526], [9.40604, 45.506023], [9.410536, 45.506023], [9.410536, 45.501526], [9.40604, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.506023], [9.40604, 45.510519], [9.410536, 45.510519], [9.410536, 45.506023], [9.40604, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.510519], [9.40604, 45.515016], [9.410536, 45.515016], [9.410536, 45.510519], [9.40604, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.515016], [9.40604, 45.519513], [9.410536, 45.519513], [9.410536, 45.515016], [9.40604, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.519513], [9.40604, 45.524009], [9.410536, 45.524009], [9.410536, 45.519513], [9.40604, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.524009], [9.40604, 45.528506], [9.410536, 45.528506], [9.410536, 45.524009], [9.40604, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.528506], [9.40604, 45.533002], [9.410536, 45.533002], [9.410536, 45.528506], [9.40604, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.533002], [9.40604, 45.537499], [9.410536, 45.537499], [9.410536, 45.533002], [9.40604, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.537499], [9.40604, 45.541996], [9.410536, 45.541996], [9.410536, 45.537499], [9.40604, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.541996], [9.40604, 45.546492], [9.410536, 45.546492], [9.410536, 45.541996], [9.40604, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.546492], [9.40604, 45.550989], [9.410536, 45.550989], [9.410536, 45.546492], [9.40604, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.550989], [9.40604, 45.555485], [9.410536, 45.555485], [9.410536, 45.550989], [9.40604, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.555485], [9.40604, 45.559982], [9.410536, 45.559982], [9.410536, 45.555485], [9.40604, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.559982], [9.40604, 45.564479], [9.410536, 45.564479], [9.410536, 45.559982], [9.40604, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.564479], [9.40604, 45.568975], [9.410536, 45.568975], [9.410536, 45.564479], [9.40604, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.568975], [9.40604, 45.573472], [9.410536, 45.573472], [9.410536, 45.568975], [9.40604, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.573472], [9.40604, 45.577968], [9.410536, 45.577968], [9.410536, 45.573472], [9.40604, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.577968], [9.40604, 45.582465], [9.410536, 45.582465], [9.410536, 45.577968], [9.40604, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.582465], [9.40604, 45.586962], [9.410536, 45.586962], [9.410536, 45.582465], [9.40604, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.586962], [9.40604, 45.591458], [9.410536, 45.591458], [9.410536, 45.586962], [9.40604, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.591458], [9.40604, 45.595955], [9.410536, 45.595955], [9.410536, 45.591458], [9.40604, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.595955], [9.40604, 45.600451], [9.410536, 45.600451], [9.410536, 45.595955], [9.40604, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.600451], [9.40604, 45.604948], [9.410536, 45.604948], [9.410536, 45.600451], [9.40604, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.604948], [9.40604, 45.609445], [9.410536, 45.609445], [9.410536, 45.604948], [9.40604, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.609445], [9.40604, 45.613941], [9.410536, 45.613941], [9.410536, 45.609445], [9.40604, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.613941], [9.40604, 45.618438], [9.410536, 45.618438], [9.410536, 45.613941], [9.40604, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.618438], [9.40604, 45.622934], [9.410536, 45.622934], [9.410536, 45.618438], [9.40604, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.622934], [9.40604, 45.627431], [9.410536, 45.627431], [9.410536, 45.622934], [9.40604, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.627431], [9.40604, 45.631928], [9.410536, 45.631928], [9.410536, 45.627431], [9.40604, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.40604, 45.631928], [9.40604, 45.636424], [9.410536, 45.636424], [9.410536, 45.631928], [9.40604, 45.631928] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.339648], [9.410536, 45.344145], [9.415033, 45.344145], [9.415033, 45.339648], [9.410536, 45.339648] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.344145], [9.410536, 45.348642], [9.415033, 45.348642], [9.415033, 45.344145], [9.410536, 45.344145] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.348642], [9.410536, 45.353138], [9.415033, 45.353138], [9.415033, 45.348642], [9.410536, 45.348642] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.353138], [9.410536, 45.357635], [9.415033, 45.357635], [9.415033, 45.353138], [9.410536, 45.353138] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.357635], [9.410536, 45.362131], [9.415033, 45.362131], [9.415033, 45.357635], [9.410536, 45.357635] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.362131], [9.410536, 45.366628], [9.415033, 45.366628], [9.415033, 45.362131], [9.410536, 45.362131] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.366628], [9.410536, 45.371125], [9.415033, 45.371125], [9.415033, 45.366628], [9.410536, 45.366628] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.371125], [9.410536, 45.375621], [9.415033, 45.375621], [9.415033, 45.371125], [9.410536, 45.371125] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.375621], [9.410536, 45.380118], [9.415033, 45.380118], [9.415033, 45.375621], [9.410536, 45.375621] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.380118], [9.410536, 45.384614], [9.415033, 45.384614], [9.415033, 45.380118], [9.410536, 45.380118] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.384614], [9.410536, 45.389111], [9.415033, 45.389111], [9.415033, 45.384614], [9.410536, 45.384614] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.389111], [9.410536, 45.393608], [9.415033, 45.393608], [9.415033, 45.389111], [9.410536, 45.389111] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.393608], [9.410536, 45.398104], [9.415033, 45.398104], [9.415033, 45.393608], [9.410536, 45.393608] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.398104], [9.410536, 45.402601], [9.415033, 45.402601], [9.415033, 45.398104], [9.410536, 45.398104] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.402601], [9.410536, 45.407097], [9.415033, 45.407097], [9.415033, 45.402601], [9.410536, 45.402601] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.407097], [9.410536, 45.411594], [9.415033, 45.411594], [9.415033, 45.407097], [9.410536, 45.407097] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.411594], [9.410536, 45.416091], [9.415033, 45.416091], [9.415033, 45.411594], [9.410536, 45.411594] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.416091], [9.410536, 45.420587], [9.415033, 45.420587], [9.415033, 45.416091], [9.410536, 45.416091] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.420587], [9.410536, 45.425084], [9.415033, 45.425084], [9.415033, 45.420587], [9.410536, 45.420587] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.425084], [9.410536, 45.42958], [9.415033, 45.42958], [9.415033, 45.425084], [9.410536, 45.425084] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.42958], [9.410536, 45.434077], [9.415033, 45.434077], [9.415033, 45.42958], [9.410536, 45.42958] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.434077], [9.410536, 45.438574], [9.415033, 45.438574], [9.415033, 45.434077], [9.410536, 45.434077] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.438574], [9.410536, 45.44307], [9.415033, 45.44307], [9.415033, 45.438574], [9.410536, 45.438574] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.44307], [9.410536, 45.447567], [9.415033, 45.447567], [9.415033, 45.44307], [9.410536, 45.44307] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.447567], [9.410536, 45.452063], [9.415033, 45.452063], [9.415033, 45.447567], [9.410536, 45.447567] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.452063], [9.410536, 45.45656], [9.415033, 45.45656], [9.415033, 45.452063], [9.410536, 45.452063] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.45656], [9.410536, 45.461057], [9.415033, 45.461057], [9.415033, 45.45656], [9.410536, 45.45656] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.461057], [9.410536, 45.465553], [9.415033, 45.465553], [9.415033, 45.461057], [9.410536, 45.461057] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.465553], [9.410536, 45.47005], [9.415033, 45.47005], [9.415033, 45.465553], [9.410536, 45.465553] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.47005], [9.410536, 45.474547], [9.415033, 45.474547], [9.415033, 45.47005], [9.410536, 45.47005] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.474547], [9.410536, 45.479043], [9.415033, 45.479043], [9.415033, 45.474547], [9.410536, 45.474547] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.479043], [9.410536, 45.48354], [9.415033, 45.48354], [9.415033, 45.479043], [9.410536, 45.479043] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.48354], [9.410536, 45.488036], [9.415033, 45.488036], [9.415033, 45.48354], [9.410536, 45.48354] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.488036], [9.410536, 45.492533], [9.415033, 45.492533], [9.415033, 45.488036], [9.410536, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.492533], [9.410536, 45.49703], [9.415033, 45.49703], [9.415033, 45.492533], [9.410536, 45.492533] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.49703], [9.410536, 45.501526], [9.415033, 45.501526], [9.415033, 45.49703], [9.410536, 45.49703] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.501526], [9.410536, 45.506023], [9.415033, 45.506023], [9.415033, 45.501526], [9.410536, 45.501526] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.506023], [9.410536, 45.510519], [9.415033, 45.510519], [9.415033, 45.506023], [9.410536, 45.506023] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.510519], [9.410536, 45.515016], [9.415033, 45.515016], [9.415033, 45.510519], [9.410536, 45.510519] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.515016], [9.410536, 45.519513], [9.415033, 45.519513], [9.415033, 45.515016], [9.410536, 45.515016] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.519513], [9.410536, 45.524009], [9.415033, 45.524009], [9.415033, 45.519513], [9.410536, 45.519513] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.524009], [9.410536, 45.528506], [9.415033, 45.528506], [9.415033, 45.524009], [9.410536, 45.524009] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.528506], [9.410536, 45.533002], [9.415033, 45.533002], [9.415033, 45.528506], [9.410536, 45.528506] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.533002], [9.410536, 45.537499], [9.415033, 45.537499], [9.415033, 45.533002], [9.410536, 45.533002] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.537499], [9.410536, 45.541996], [9.415033, 45.541996], [9.415033, 45.537499], [9.410536, 45.537499] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.541996], [9.410536, 45.546492], [9.415033, 45.546492], [9.415033, 45.541996], [9.410536, 45.541996] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#61b3ff", "fill": "#61b3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.546492], [9.410536, 45.550989], [9.415033, 45.550989], [9.415033, 45.546492], [9.410536, 45.546492] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.550989], [9.410536, 45.555485], [9.415033, 45.555485], [9.415033, 45.550989], [9.410536, 45.550989] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.555485], [9.410536, 45.559982], [9.415033, 45.559982], [9.415033, 45.555485], [9.410536, 45.555485] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.559982], [9.410536, 45.564479], [9.415033, 45.564479], [9.415033, 45.559982], [9.410536, 45.559982] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.564479], [9.410536, 45.568975], [9.415033, 45.568975], [9.415033, 45.564479], [9.410536, 45.564479] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.568975], [9.410536, 45.573472], [9.415033, 45.573472], [9.415033, 45.568975], [9.410536, 45.568975] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.573472], [9.410536, 45.577968], [9.415033, 45.577968], [9.415033, 45.573472], [9.410536, 45.573472] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.577968], [9.410536, 45.582465], [9.415033, 45.582465], [9.415033, 45.577968], [9.410536, 45.577968] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.582465], [9.410536, 45.586962], [9.415033, 45.586962], [9.415033, 45.582465], [9.410536, 45.582465] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.586962], [9.410536, 45.591458], [9.415033, 45.591458], [9.415033, 45.586962], [9.410536, 45.586962] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.591458], [9.410536, 45.595955], [9.415033, 45.595955], [9.415033, 45.591458], [9.410536, 45.591458] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.595955], [9.410536, 45.600451], [9.415033, 45.600451], [9.415033, 45.595955], [9.410536, 45.595955] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.600451], [9.410536, 45.604948], [9.415033, 45.604948], [9.415033, 45.600451], [9.410536, 45.600451] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.604948], [9.410536, 45.609445], [9.415033, 45.609445], [9.415033, 45.604948], [9.410536, 45.604948] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.609445], [9.410536, 45.613941], [9.415033, 45.613941], [9.415033, 45.609445], [9.410536, 45.609445] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.613941], [9.410536, 45.618438], [9.415033, 45.618438], [9.415033, 45.613941], [9.410536, 45.613941] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.618438], [9.410536, 45.622934], [9.415033, 45.622934], [9.415033, 45.618438], [9.410536, 45.618438] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.622934], [9.410536, 45.627431], [9.415033, 45.627431], [9.415033, 45.622934], [9.410536, 45.622934] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.627431], [9.410536, 45.631928], [9.415033, 45.631928], [9.415033, 45.627431], [9.410536, 45.627431] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.410536, 45.631928], [9.410536, 45.636424], [9.415033, 45.636424], [9.415033, 45.631928], [9.410536, 45.631928] ] ] } } ] } ================================================ FILE: packages/turf-interpolate/test/out/data-500m.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "value": 16, "stroke": "#e5f3ff", "fill": "#e5f3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.11772, 45.440822], [9.11772, 45.445319], [9.122216, 45.445319], [9.122216, 45.440822], [9.11772, 45.440822] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.11772, 45.445319], [9.11772, 45.449815], [9.122216, 45.449815], [9.122216, 45.445319], [9.11772, 45.445319] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.11772, 45.449815], [9.11772, 45.454312], [9.122216, 45.454312], [9.122216, 45.449815], [9.11772, 45.449815] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.11772, 45.454312], [9.11772, 45.458808], [9.122216, 45.458808], [9.122216, 45.454312], [9.11772, 45.454312] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.11772, 45.458808], [9.11772, 45.463305], [9.122216, 45.463305], [9.122216, 45.458808], [9.11772, 45.458808] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.11772, 45.463305], [9.11772, 45.467802], [9.122216, 45.467802], [9.122216, 45.463305], [9.11772, 45.463305] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.11772, 45.467802], [9.11772, 45.472298], [9.122216, 45.472298], [9.122216, 45.467802], [9.11772, 45.467802] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.11772, 45.472298], [9.11772, 45.476795], [9.122216, 45.476795], [9.122216, 45.472298], [9.11772, 45.472298] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.11772, 45.476795], [9.11772, 45.481291], [9.122216, 45.481291], [9.122216, 45.476795], [9.11772, 45.476795] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.11772, 45.481291], [9.11772, 45.485788], [9.122216, 45.485788], [9.122216, 45.481291], [9.11772, 45.481291] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.11772, 45.485788], [9.11772, 45.490285], [9.122216, 45.490285], [9.122216, 45.485788], [9.11772, 45.485788] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.11772, 45.490285], [9.11772, 45.494781], [9.122216, 45.494781], [9.122216, 45.490285], [9.11772, 45.490285] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.11772, 45.494781], [9.11772, 45.499278], [9.122216, 45.499278], [9.122216, 45.494781], [9.11772, 45.494781] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#7ac0ff", "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.11772, 45.499278], [9.11772, 45.503774], [9.122216, 45.503774], [9.122216, 45.499278], [9.11772, 45.499278] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#7ac0ff", "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.11772, 45.503774], [9.11772, 45.508271], [9.122216, 45.508271], [9.122216, 45.503774], [9.11772, 45.503774] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.11772, 45.508271], [9.11772, 45.512768], [9.122216, 45.512768], [9.122216, 45.508271], [9.11772, 45.508271] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.11772, 45.512768], [9.11772, 45.517264], [9.122216, 45.517264], [9.122216, 45.512768], [9.11772, 45.512768] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.11772, 45.517264], [9.11772, 45.521761], [9.122216, 45.521761], [9.122216, 45.517264], [9.11772, 45.517264] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#52acff", "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.11772, 45.521761], [9.11772, 45.526257], [9.122216, 45.526257], [9.122216, 45.521761], [9.11772, 45.521761] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#52acff", "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.11772, 45.526257], [9.11772, 45.530754], [9.122216, 45.530754], [9.122216, 45.526257], [9.11772, 45.526257] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.11772, 45.530754], [9.11772, 45.535251], [9.122216, 45.535251], [9.122216, 45.530754], [9.11772, 45.530754] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122216, 45.440822], [9.122216, 45.445319], [9.126713, 45.445319], [9.126713, 45.440822], [9.122216, 45.440822] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122216, 45.445319], [9.122216, 45.449815], [9.126713, 45.449815], [9.126713, 45.445319], [9.122216, 45.445319] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122216, 45.449815], [9.122216, 45.454312], [9.126713, 45.454312], [9.126713, 45.449815], [9.122216, 45.449815] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122216, 45.454312], [9.122216, 45.458808], [9.126713, 45.458808], [9.126713, 45.454312], [9.122216, 45.454312] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122216, 45.458808], [9.122216, 45.463305], [9.126713, 45.463305], [9.126713, 45.458808], [9.122216, 45.458808] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122216, 45.463305], [9.122216, 45.467802], [9.126713, 45.467802], [9.126713, 45.463305], [9.122216, 45.463305] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122216, 45.467802], [9.122216, 45.472298], [9.126713, 45.472298], [9.126713, 45.467802], [9.122216, 45.467802] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122216, 45.472298], [9.122216, 45.476795], [9.126713, 45.476795], [9.126713, 45.472298], [9.122216, 45.472298] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122216, 45.476795], [9.122216, 45.481291], [9.126713, 45.481291], [9.126713, 45.476795], [9.122216, 45.476795] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122216, 45.481291], [9.122216, 45.485788], [9.126713, 45.485788], [9.126713, 45.481291], [9.122216, 45.481291] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122216, 45.485788], [9.122216, 45.490285], [9.126713, 45.490285], [9.126713, 45.485788], [9.122216, 45.485788] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122216, 45.490285], [9.122216, 45.494781], [9.126713, 45.494781], [9.126713, 45.490285], [9.122216, 45.490285] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122216, 45.494781], [9.122216, 45.499278], [9.126713, 45.499278], [9.126713, 45.494781], [9.122216, 45.494781] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#7ac0ff", "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122216, 45.499278], [9.122216, 45.503774], [9.126713, 45.503774], [9.126713, 45.499278], [9.122216, 45.499278] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#7ac0ff", "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122216, 45.503774], [9.122216, 45.508271], [9.126713, 45.508271], [9.126713, 45.503774], [9.122216, 45.503774] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122216, 45.508271], [9.122216, 45.512768], [9.126713, 45.512768], [9.126713, 45.508271], [9.122216, 45.508271] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122216, 45.512768], [9.122216, 45.517264], [9.126713, 45.517264], [9.126713, 45.512768], [9.122216, 45.512768] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122216, 45.517264], [9.122216, 45.521761], [9.126713, 45.521761], [9.126713, 45.517264], [9.122216, 45.517264] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#52acff", "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122216, 45.521761], [9.122216, 45.526257], [9.126713, 45.526257], [9.126713, 45.521761], [9.122216, 45.521761] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#52acff", "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122216, 45.526257], [9.122216, 45.530754], [9.126713, 45.530754], [9.126713, 45.526257], [9.122216, 45.526257] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.122216, 45.530754], [9.122216, 45.535251], [9.126713, 45.535251], [9.126713, 45.530754], [9.122216, 45.530754] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.126713, 45.440822], [9.126713, 45.445319], [9.13121, 45.445319], [9.13121, 45.440822], [9.126713, 45.440822] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.126713, 45.445319], [9.126713, 45.449815], [9.13121, 45.449815], [9.13121, 45.445319], [9.126713, 45.445319] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.126713, 45.449815], [9.126713, 45.454312], [9.13121, 45.454312], [9.13121, 45.449815], [9.126713, 45.449815] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.126713, 45.454312], [9.126713, 45.458808], [9.13121, 45.458808], [9.13121, 45.454312], [9.126713, 45.454312] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.126713, 45.458808], [9.126713, 45.463305], [9.13121, 45.463305], [9.13121, 45.458808], [9.126713, 45.458808] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.126713, 45.463305], [9.126713, 45.467802], [9.13121, 45.467802], [9.13121, 45.463305], [9.126713, 45.463305] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.126713, 45.467802], [9.126713, 45.472298], [9.13121, 45.472298], [9.13121, 45.467802], [9.126713, 45.467802] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.126713, 45.472298], [9.126713, 45.476795], [9.13121, 45.476795], [9.13121, 45.472298], [9.126713, 45.472298] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.126713, 45.476795], [9.126713, 45.481291], [9.13121, 45.481291], [9.13121, 45.476795], [9.126713, 45.476795] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.126713, 45.481291], [9.126713, 45.485788], [9.13121, 45.485788], [9.13121, 45.481291], [9.126713, 45.481291] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.126713, 45.485788], [9.126713, 45.490285], [9.13121, 45.490285], [9.13121, 45.485788], [9.126713, 45.485788] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.126713, 45.490285], [9.126713, 45.494781], [9.13121, 45.494781], [9.13121, 45.490285], [9.126713, 45.490285] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.126713, 45.494781], [9.126713, 45.499278], [9.13121, 45.499278], [9.13121, 45.494781], [9.126713, 45.494781] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#7ac0ff", "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.126713, 45.499278], [9.126713, 45.503774], [9.13121, 45.503774], [9.13121, 45.499278], [9.126713, 45.499278] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#7ac0ff", "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.126713, 45.503774], [9.126713, 45.508271], [9.13121, 45.508271], [9.13121, 45.503774], [9.126713, 45.503774] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.126713, 45.508271], [9.126713, 45.512768], [9.13121, 45.512768], [9.13121, 45.508271], [9.126713, 45.508271] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.126713, 45.512768], [9.126713, 45.517264], [9.13121, 45.517264], [9.13121, 45.512768], [9.126713, 45.512768] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.126713, 45.517264], [9.126713, 45.521761], [9.13121, 45.521761], [9.13121, 45.517264], [9.126713, 45.517264] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#52acff", "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.126713, 45.521761], [9.126713, 45.526257], [9.13121, 45.526257], [9.13121, 45.521761], [9.126713, 45.521761] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.126713, 45.526257], [9.126713, 45.530754], [9.13121, 45.530754], [9.13121, 45.526257], [9.126713, 45.526257] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.126713, 45.530754], [9.126713, 45.535251], [9.13121, 45.535251], [9.13121, 45.530754], [9.126713, 45.530754] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.13121, 45.440822], [9.13121, 45.445319], [9.135706, 45.445319], [9.135706, 45.440822], [9.13121, 45.440822] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.13121, 45.445319], [9.13121, 45.449815], [9.135706, 45.449815], [9.135706, 45.445319], [9.13121, 45.445319] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.13121, 45.449815], [9.13121, 45.454312], [9.135706, 45.454312], [9.135706, 45.449815], [9.13121, 45.449815] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.13121, 45.454312], [9.13121, 45.458808], [9.135706, 45.458808], [9.135706, 45.454312], [9.13121, 45.454312] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.13121, 45.458808], [9.13121, 45.463305], [9.135706, 45.463305], [9.135706, 45.458808], [9.13121, 45.458808] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.13121, 45.463305], [9.13121, 45.467802], [9.135706, 45.467802], [9.135706, 45.463305], [9.13121, 45.463305] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.13121, 45.467802], [9.13121, 45.472298], [9.135706, 45.472298], [9.135706, 45.467802], [9.13121, 45.467802] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.13121, 45.472298], [9.13121, 45.476795], [9.135706, 45.476795], [9.135706, 45.472298], [9.13121, 45.472298] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.13121, 45.476795], [9.13121, 45.481291], [9.135706, 45.481291], [9.135706, 45.476795], [9.13121, 45.476795] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.13121, 45.481291], [9.13121, 45.485788], [9.135706, 45.485788], [9.135706, 45.481291], [9.13121, 45.481291] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.13121, 45.485788], [9.13121, 45.490285], [9.135706, 45.490285], [9.135706, 45.485788], [9.13121, 45.485788] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.13121, 45.490285], [9.13121, 45.494781], [9.135706, 45.494781], [9.135706, 45.490285], [9.13121, 45.490285] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.13121, 45.494781], [9.13121, 45.499278], [9.135706, 45.499278], [9.135706, 45.494781], [9.13121, 45.494781] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#7ac0ff", "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.13121, 45.499278], [9.13121, 45.503774], [9.135706, 45.503774], [9.135706, 45.499278], [9.13121, 45.499278] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#7ac0ff", "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.13121, 45.503774], [9.13121, 45.508271], [9.135706, 45.508271], [9.135706, 45.503774], [9.13121, 45.503774] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.13121, 45.508271], [9.13121, 45.512768], [9.135706, 45.512768], [9.135706, 45.508271], [9.13121, 45.508271] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.13121, 45.512768], [9.13121, 45.517264], [9.135706, 45.517264], [9.135706, 45.512768], [9.13121, 45.512768] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#52acff", "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.13121, 45.517264], [9.13121, 45.521761], [9.135706, 45.521761], [9.135706, 45.517264], [9.13121, 45.517264] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#52acff", "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.13121, 45.521761], [9.13121, 45.526257], [9.135706, 45.526257], [9.135706, 45.521761], [9.13121, 45.521761] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.13121, 45.526257], [9.13121, 45.530754], [9.135706, 45.530754], [9.135706, 45.526257], [9.13121, 45.526257] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.13121, 45.530754], [9.13121, 45.535251], [9.135706, 45.535251], [9.135706, 45.530754], [9.13121, 45.530754] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.135706, 45.440822], [9.135706, 45.445319], [9.140203, 45.445319], [9.140203, 45.440822], [9.135706, 45.440822] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.135706, 45.445319], [9.135706, 45.449815], [9.140203, 45.449815], [9.140203, 45.445319], [9.135706, 45.445319] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.135706, 45.449815], [9.135706, 45.454312], [9.140203, 45.454312], [9.140203, 45.449815], [9.135706, 45.449815] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.135706, 45.454312], [9.135706, 45.458808], [9.140203, 45.458808], [9.140203, 45.454312], [9.135706, 45.454312] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.135706, 45.458808], [9.135706, 45.463305], [9.140203, 45.463305], [9.140203, 45.458808], [9.135706, 45.458808] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.135706, 45.463305], [9.135706, 45.467802], [9.140203, 45.467802], [9.140203, 45.463305], [9.135706, 45.463305] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.135706, 45.467802], [9.135706, 45.472298], [9.140203, 45.472298], [9.140203, 45.467802], [9.135706, 45.467802] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.135706, 45.472298], [9.135706, 45.476795], [9.140203, 45.476795], [9.140203, 45.472298], [9.135706, 45.472298] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.135706, 45.476795], [9.135706, 45.481291], [9.140203, 45.481291], [9.140203, 45.476795], [9.135706, 45.476795] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.135706, 45.481291], [9.135706, 45.485788], [9.140203, 45.485788], [9.140203, 45.481291], [9.135706, 45.481291] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.135706, 45.485788], [9.135706, 45.490285], [9.140203, 45.490285], [9.140203, 45.485788], [9.135706, 45.485788] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.135706, 45.490285], [9.135706, 45.494781], [9.140203, 45.494781], [9.140203, 45.490285], [9.135706, 45.490285] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.135706, 45.494781], [9.135706, 45.499278], [9.140203, 45.499278], [9.140203, 45.494781], [9.135706, 45.494781] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#7ac0ff", "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.135706, 45.499278], [9.135706, 45.503774], [9.140203, 45.503774], [9.140203, 45.499278], [9.135706, 45.499278] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#7ac0ff", "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.135706, 45.503774], [9.135706, 45.508271], [9.140203, 45.508271], [9.140203, 45.503774], [9.135706, 45.503774] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.135706, 45.508271], [9.135706, 45.512768], [9.140203, 45.512768], [9.140203, 45.508271], [9.135706, 45.508271] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.135706, 45.512768], [9.135706, 45.517264], [9.140203, 45.517264], [9.140203, 45.512768], [9.135706, 45.512768] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#52acff", "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.135706, 45.517264], [9.135706, 45.521761], [9.140203, 45.521761], [9.140203, 45.517264], [9.135706, 45.517264] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.135706, 45.521761], [9.135706, 45.526257], [9.140203, 45.526257], [9.140203, 45.521761], [9.135706, 45.521761] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.135706, 45.526257], [9.135706, 45.530754], [9.140203, 45.530754], [9.140203, 45.526257], [9.135706, 45.526257] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.135706, 45.530754], [9.135706, 45.535251], [9.140203, 45.535251], [9.140203, 45.530754], [9.135706, 45.530754] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.140203, 45.440822], [9.140203, 45.445319], [9.144699, 45.445319], [9.144699, 45.440822], [9.140203, 45.440822] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.140203, 45.445319], [9.140203, 45.449815], [9.144699, 45.449815], [9.144699, 45.445319], [9.140203, 45.445319] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.140203, 45.449815], [9.140203, 45.454312], [9.144699, 45.454312], [9.144699, 45.449815], [9.140203, 45.449815] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.140203, 45.454312], [9.140203, 45.458808], [9.144699, 45.458808], [9.144699, 45.454312], [9.140203, 45.454312] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.140203, 45.458808], [9.140203, 45.463305], [9.144699, 45.463305], [9.144699, 45.458808], [9.140203, 45.458808] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.140203, 45.463305], [9.140203, 45.467802], [9.144699, 45.467802], [9.144699, 45.463305], [9.140203, 45.463305] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.140203, 45.467802], [9.140203, 45.472298], [9.144699, 45.472298], [9.144699, 45.467802], [9.140203, 45.467802] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.140203, 45.472298], [9.140203, 45.476795], [9.144699, 45.476795], [9.144699, 45.472298], [9.140203, 45.472298] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.140203, 45.476795], [9.140203, 45.481291], [9.144699, 45.481291], [9.144699, 45.476795], [9.140203, 45.476795] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.140203, 45.481291], [9.140203, 45.485788], [9.144699, 45.485788], [9.144699, 45.481291], [9.140203, 45.481291] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.140203, 45.485788], [9.140203, 45.490285], [9.144699, 45.490285], [9.144699, 45.485788], [9.140203, 45.485788] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.140203, 45.490285], [9.140203, 45.494781], [9.144699, 45.494781], [9.144699, 45.490285], [9.140203, 45.490285] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.140203, 45.494781], [9.140203, 45.499278], [9.144699, 45.499278], [9.144699, 45.494781], [9.140203, 45.494781] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.140203, 45.499278], [9.140203, 45.503774], [9.144699, 45.503774], [9.144699, 45.499278], [9.140203, 45.499278] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#7ac0ff", "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.140203, 45.503774], [9.140203, 45.508271], [9.144699, 45.508271], [9.144699, 45.503774], [9.140203, 45.503774] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.140203, 45.508271], [9.140203, 45.512768], [9.144699, 45.512768], [9.144699, 45.508271], [9.140203, 45.508271] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.140203, 45.512768], [9.140203, 45.517264], [9.144699, 45.517264], [9.144699, 45.512768], [9.140203, 45.512768] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#52acff", "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.140203, 45.517264], [9.140203, 45.521761], [9.144699, 45.521761], [9.144699, 45.517264], [9.140203, 45.517264] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.140203, 45.521761], [9.140203, 45.526257], [9.144699, 45.526257], [9.144699, 45.521761], [9.140203, 45.521761] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.140203, 45.526257], [9.140203, 45.530754], [9.144699, 45.530754], [9.144699, 45.526257], [9.140203, 45.526257] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.140203, 45.530754], [9.140203, 45.535251], [9.144699, 45.535251], [9.144699, 45.530754], [9.140203, 45.530754] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.144699, 45.440822], [9.144699, 45.445319], [9.149196, 45.445319], [9.149196, 45.440822], [9.144699, 45.440822] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.144699, 45.445319], [9.144699, 45.449815], [9.149196, 45.449815], [9.149196, 45.445319], [9.144699, 45.445319] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.144699, 45.449815], [9.144699, 45.454312], [9.149196, 45.454312], [9.149196, 45.449815], [9.144699, 45.449815] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.144699, 45.454312], [9.144699, 45.458808], [9.149196, 45.458808], [9.149196, 45.454312], [9.144699, 45.454312] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.144699, 45.458808], [9.144699, 45.463305], [9.149196, 45.463305], [9.149196, 45.458808], [9.144699, 45.458808] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.144699, 45.463305], [9.144699, 45.467802], [9.149196, 45.467802], [9.149196, 45.463305], [9.144699, 45.463305] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.144699, 45.467802], [9.144699, 45.472298], [9.149196, 45.472298], [9.149196, 45.467802], [9.144699, 45.467802] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.144699, 45.472298], [9.144699, 45.476795], [9.149196, 45.476795], [9.149196, 45.472298], [9.144699, 45.472298] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.144699, 45.476795], [9.144699, 45.481291], [9.149196, 45.481291], [9.149196, 45.476795], [9.144699, 45.476795] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.144699, 45.481291], [9.144699, 45.485788], [9.149196, 45.485788], [9.149196, 45.481291], [9.144699, 45.481291] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.144699, 45.485788], [9.144699, 45.490285], [9.149196, 45.490285], [9.149196, 45.485788], [9.144699, 45.485788] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.144699, 45.490285], [9.144699, 45.494781], [9.149196, 45.494781], [9.149196, 45.490285], [9.144699, 45.490285] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.144699, 45.494781], [9.144699, 45.499278], [9.149196, 45.499278], [9.149196, 45.494781], [9.144699, 45.494781] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.144699, 45.499278], [9.144699, 45.503774], [9.149196, 45.503774], [9.149196, 45.499278], [9.144699, 45.499278] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#7ac0ff", "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.144699, 45.503774], [9.144699, 45.508271], [9.149196, 45.508271], [9.149196, 45.503774], [9.144699, 45.503774] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.144699, 45.508271], [9.144699, 45.512768], [9.149196, 45.512768], [9.149196, 45.508271], [9.144699, 45.508271] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.144699, 45.512768], [9.144699, 45.517264], [9.149196, 45.517264], [9.149196, 45.512768], [9.144699, 45.512768] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.144699, 45.517264], [9.144699, 45.521761], [9.149196, 45.521761], [9.149196, 45.517264], [9.144699, 45.517264] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.144699, 45.521761], [9.144699, 45.526257], [9.149196, 45.526257], [9.149196, 45.521761], [9.144699, 45.521761] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.144699, 45.526257], [9.144699, 45.530754], [9.149196, 45.530754], [9.149196, 45.526257], [9.144699, 45.526257] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.144699, 45.530754], [9.144699, 45.535251], [9.149196, 45.535251], [9.149196, 45.530754], [9.144699, 45.530754] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149196, 45.440822], [9.149196, 45.445319], [9.153693, 45.445319], [9.153693, 45.440822], [9.149196, 45.440822] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149196, 45.445319], [9.149196, 45.449815], [9.153693, 45.449815], [9.153693, 45.445319], [9.149196, 45.445319] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149196, 45.449815], [9.149196, 45.454312], [9.153693, 45.454312], [9.153693, 45.449815], [9.149196, 45.449815] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149196, 45.454312], [9.149196, 45.458808], [9.153693, 45.458808], [9.153693, 45.454312], [9.149196, 45.454312] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149196, 45.458808], [9.149196, 45.463305], [9.153693, 45.463305], [9.153693, 45.458808], [9.149196, 45.458808] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149196, 45.463305], [9.149196, 45.467802], [9.153693, 45.467802], [9.153693, 45.463305], [9.149196, 45.463305] ] ] } }, { "type": "Feature", "properties": { "value": 16, "stroke": "#e5f3ff", "fill": "#e5f3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149196, 45.467802], [9.149196, 45.472298], [9.153693, 45.472298], [9.153693, 45.467802], [9.149196, 45.467802] ] ] } }, { "type": "Feature", "properties": { "value": 16, "stroke": "#e5f3ff", "fill": "#e5f3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149196, 45.472298], [9.149196, 45.476795], [9.153693, 45.476795], [9.153693, 45.472298], [9.149196, 45.472298] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149196, 45.476795], [9.149196, 45.481291], [9.153693, 45.481291], [9.153693, 45.476795], [9.149196, 45.476795] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149196, 45.481291], [9.149196, 45.485788], [9.153693, 45.485788], [9.153693, 45.481291], [9.149196, 45.481291] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149196, 45.485788], [9.149196, 45.490285], [9.153693, 45.490285], [9.153693, 45.485788], [9.149196, 45.485788] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149196, 45.490285], [9.149196, 45.494781], [9.153693, 45.494781], [9.153693, 45.490285], [9.149196, 45.490285] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149196, 45.494781], [9.149196, 45.499278], [9.153693, 45.499278], [9.153693, 45.494781], [9.149196, 45.494781] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149196, 45.499278], [9.149196, 45.503774], [9.153693, 45.503774], [9.153693, 45.499278], [9.149196, 45.499278] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#7ac0ff", "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149196, 45.503774], [9.149196, 45.508271], [9.153693, 45.508271], [9.153693, 45.503774], [9.149196, 45.503774] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149196, 45.508271], [9.149196, 45.512768], [9.153693, 45.512768], [9.153693, 45.508271], [9.149196, 45.508271] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#52acff", "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149196, 45.512768], [9.149196, 45.517264], [9.153693, 45.517264], [9.153693, 45.512768], [9.149196, 45.512768] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149196, 45.517264], [9.149196, 45.521761], [9.153693, 45.521761], [9.153693, 45.517264], [9.149196, 45.517264] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149196, 45.521761], [9.149196, 45.526257], [9.153693, 45.526257], [9.153693, 45.521761], [9.149196, 45.521761] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149196, 45.526257], [9.149196, 45.530754], [9.153693, 45.530754], [9.153693, 45.526257], [9.149196, 45.526257] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.149196, 45.530754], [9.149196, 45.535251], [9.153693, 45.535251], [9.153693, 45.530754], [9.149196, 45.530754] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.153693, 45.440822], [9.153693, 45.445319], [9.158189, 45.445319], [9.158189, 45.440822], [9.153693, 45.440822] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.153693, 45.445319], [9.153693, 45.449815], [9.158189, 45.449815], [9.158189, 45.445319], [9.153693, 45.445319] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.153693, 45.449815], [9.153693, 45.454312], [9.158189, 45.454312], [9.158189, 45.449815], [9.153693, 45.449815] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.153693, 45.454312], [9.153693, 45.458808], [9.158189, 45.458808], [9.158189, 45.454312], [9.153693, 45.454312] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.153693, 45.458808], [9.153693, 45.463305], [9.158189, 45.463305], [9.158189, 45.458808], [9.153693, 45.458808] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.153693, 45.463305], [9.153693, 45.467802], [9.158189, 45.467802], [9.158189, 45.463305], [9.153693, 45.463305] ] ] } }, { "type": "Feature", "properties": { "value": 14, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.153693, 45.467802], [9.153693, 45.472298], [9.158189, 45.472298], [9.158189, 45.467802], [9.153693, 45.467802] ] ] } }, { "type": "Feature", "properties": { "value": 15, "stroke": "#f0f8ff", "fill": "#f0f8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.153693, 45.472298], [9.153693, 45.476795], [9.158189, 45.476795], [9.158189, 45.472298], [9.153693, 45.472298] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.153693, 45.476795], [9.153693, 45.481291], [9.158189, 45.481291], [9.158189, 45.476795], [9.153693, 45.476795] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.153693, 45.481291], [9.153693, 45.485788], [9.158189, 45.485788], [9.158189, 45.481291], [9.153693, 45.481291] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.153693, 45.485788], [9.153693, 45.490285], [9.158189, 45.490285], [9.158189, 45.485788], [9.153693, 45.485788] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.153693, 45.490285], [9.153693, 45.494781], [9.158189, 45.494781], [9.158189, 45.490285], [9.153693, 45.490285] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.153693, 45.494781], [9.153693, 45.499278], [9.158189, 45.499278], [9.158189, 45.494781], [9.153693, 45.494781] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.153693, 45.499278], [9.153693, 45.503774], [9.158189, 45.503774], [9.158189, 45.499278], [9.153693, 45.499278] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#7ac0ff", "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.153693, 45.503774], [9.153693, 45.508271], [9.158189, 45.508271], [9.158189, 45.503774], [9.153693, 45.503774] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.153693, 45.508271], [9.153693, 45.512768], [9.158189, 45.512768], [9.158189, 45.508271], [9.153693, 45.508271] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#52acff", "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.153693, 45.512768], [9.153693, 45.517264], [9.158189, 45.517264], [9.158189, 45.512768], [9.153693, 45.512768] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.153693, 45.517264], [9.153693, 45.521761], [9.158189, 45.521761], [9.158189, 45.517264], [9.153693, 45.517264] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.153693, 45.521761], [9.153693, 45.526257], [9.158189, 45.526257], [9.158189, 45.521761], [9.153693, 45.521761] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.153693, 45.526257], [9.153693, 45.530754], [9.158189, 45.530754], [9.158189, 45.526257], [9.153693, 45.526257] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.153693, 45.530754], [9.153693, 45.535251], [9.158189, 45.535251], [9.158189, 45.530754], [9.153693, 45.530754] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158189, 45.440822], [9.158189, 45.445319], [9.162686, 45.445319], [9.162686, 45.440822], [9.158189, 45.440822] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158189, 45.445319], [9.158189, 45.449815], [9.162686, 45.449815], [9.162686, 45.445319], [9.158189, 45.445319] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158189, 45.449815], [9.158189, 45.454312], [9.162686, 45.454312], [9.162686, 45.449815], [9.158189, 45.449815] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158189, 45.454312], [9.158189, 45.458808], [9.162686, 45.458808], [9.162686, 45.454312], [9.158189, 45.454312] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158189, 45.458808], [9.158189, 45.463305], [9.162686, 45.463305], [9.162686, 45.458808], [9.158189, 45.458808] ] ] } }, { "type": "Feature", "properties": { "value": 17, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158189, 45.463305], [9.158189, 45.467802], [9.162686, 45.467802], [9.162686, 45.463305], [9.158189, 45.463305] ] ] } }, { "type": "Feature", "properties": { "value": 16, "stroke": "#e5f3ff", "fill": "#e5f3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158189, 45.467802], [9.158189, 45.472298], [9.162686, 45.472298], [9.162686, 45.467802], [9.158189, 45.467802] ] ] } }, { "type": "Feature", "properties": { "value": 16, "stroke": "#e5f3ff", "fill": "#e5f3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158189, 45.472298], [9.158189, 45.476795], [9.162686, 45.476795], [9.162686, 45.472298], [9.158189, 45.472298] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158189, 45.476795], [9.158189, 45.481291], [9.162686, 45.481291], [9.162686, 45.476795], [9.158189, 45.476795] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158189, 45.481291], [9.158189, 45.485788], [9.162686, 45.485788], [9.162686, 45.481291], [9.158189, 45.481291] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158189, 45.485788], [9.158189, 45.490285], [9.162686, 45.490285], [9.162686, 45.485788], [9.158189, 45.485788] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158189, 45.490285], [9.158189, 45.494781], [9.162686, 45.494781], [9.162686, 45.490285], [9.158189, 45.490285] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158189, 45.494781], [9.158189, 45.499278], [9.162686, 45.499278], [9.162686, 45.494781], [9.158189, 45.494781] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158189, 45.499278], [9.158189, 45.503774], [9.162686, 45.503774], [9.162686, 45.499278], [9.158189, 45.499278] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#7ac0ff", "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158189, 45.503774], [9.158189, 45.508271], [9.162686, 45.508271], [9.162686, 45.503774], [9.158189, 45.503774] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158189, 45.508271], [9.158189, 45.512768], [9.162686, 45.512768], [9.162686, 45.508271], [9.158189, 45.508271] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#52acff", "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158189, 45.512768], [9.158189, 45.517264], [9.162686, 45.517264], [9.162686, 45.512768], [9.158189, 45.512768] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158189, 45.517264], [9.158189, 45.521761], [9.162686, 45.521761], [9.162686, 45.517264], [9.158189, 45.517264] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158189, 45.521761], [9.158189, 45.526257], [9.162686, 45.526257], [9.162686, 45.521761], [9.158189, 45.521761] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158189, 45.526257], [9.158189, 45.530754], [9.162686, 45.530754], [9.162686, 45.526257], [9.158189, 45.526257] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.158189, 45.530754], [9.158189, 45.535251], [9.162686, 45.535251], [9.162686, 45.530754], [9.158189, 45.530754] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.162686, 45.440822], [9.162686, 45.445319], [9.167182, 45.445319], [9.167182, 45.440822], [9.162686, 45.440822] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.162686, 45.445319], [9.162686, 45.449815], [9.167182, 45.449815], [9.167182, 45.445319], [9.162686, 45.445319] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.162686, 45.449815], [9.162686, 45.454312], [9.167182, 45.454312], [9.167182, 45.449815], [9.162686, 45.449815] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.162686, 45.454312], [9.162686, 45.458808], [9.167182, 45.458808], [9.167182, 45.454312], [9.162686, 45.454312] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.162686, 45.458808], [9.162686, 45.463305], [9.167182, 45.463305], [9.167182, 45.458808], [9.162686, 45.458808] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.162686, 45.463305], [9.162686, 45.467802], [9.167182, 45.467802], [9.167182, 45.463305], [9.162686, 45.463305] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.162686, 45.467802], [9.162686, 45.472298], [9.167182, 45.472298], [9.167182, 45.467802], [9.162686, 45.467802] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.162686, 45.472298], [9.162686, 45.476795], [9.167182, 45.476795], [9.167182, 45.472298], [9.162686, 45.472298] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.162686, 45.476795], [9.162686, 45.481291], [9.167182, 45.481291], [9.167182, 45.476795], [9.162686, 45.476795] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.162686, 45.481291], [9.162686, 45.485788], [9.167182, 45.485788], [9.167182, 45.481291], [9.162686, 45.481291] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.162686, 45.485788], [9.162686, 45.490285], [9.167182, 45.490285], [9.167182, 45.485788], [9.162686, 45.485788] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.162686, 45.490285], [9.162686, 45.494781], [9.167182, 45.494781], [9.167182, 45.490285], [9.162686, 45.490285] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.162686, 45.494781], [9.162686, 45.499278], [9.167182, 45.499278], [9.167182, 45.494781], [9.162686, 45.494781] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.162686, 45.499278], [9.162686, 45.503774], [9.167182, 45.503774], [9.167182, 45.499278], [9.162686, 45.499278] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#7ac0ff", "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.162686, 45.503774], [9.162686, 45.508271], [9.167182, 45.508271], [9.167182, 45.503774], [9.162686, 45.503774] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.162686, 45.508271], [9.162686, 45.512768], [9.167182, 45.512768], [9.167182, 45.508271], [9.162686, 45.508271] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#52acff", "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.162686, 45.512768], [9.162686, 45.517264], [9.167182, 45.517264], [9.167182, 45.512768], [9.162686, 45.512768] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.162686, 45.517264], [9.162686, 45.521761], [9.167182, 45.521761], [9.167182, 45.517264], [9.162686, 45.517264] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.162686, 45.521761], [9.162686, 45.526257], [9.167182, 45.526257], [9.167182, 45.521761], [9.162686, 45.521761] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.162686, 45.526257], [9.162686, 45.530754], [9.167182, 45.530754], [9.167182, 45.526257], [9.162686, 45.526257] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#007df0", "fill": "#007df0", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.162686, 45.530754], [9.162686, 45.535251], [9.167182, 45.535251], [9.167182, 45.530754], [9.162686, 45.530754] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.167182, 45.440822], [9.167182, 45.445319], [9.171679, 45.445319], [9.171679, 45.440822], [9.167182, 45.440822] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.167182, 45.445319], [9.167182, 45.449815], [9.171679, 45.449815], [9.171679, 45.445319], [9.167182, 45.445319] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.167182, 45.449815], [9.167182, 45.454312], [9.171679, 45.454312], [9.171679, 45.449815], [9.167182, 45.449815] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.167182, 45.454312], [9.167182, 45.458808], [9.171679, 45.458808], [9.171679, 45.454312], [9.167182, 45.454312] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.167182, 45.458808], [9.167182, 45.463305], [9.171679, 45.463305], [9.171679, 45.458808], [9.167182, 45.458808] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.167182, 45.463305], [9.167182, 45.467802], [9.171679, 45.467802], [9.171679, 45.463305], [9.167182, 45.463305] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.167182, 45.467802], [9.167182, 45.472298], [9.171679, 45.472298], [9.171679, 45.467802], [9.167182, 45.467802] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.167182, 45.472298], [9.167182, 45.476795], [9.171679, 45.476795], [9.171679, 45.472298], [9.167182, 45.472298] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.167182, 45.476795], [9.167182, 45.481291], [9.171679, 45.481291], [9.171679, 45.476795], [9.167182, 45.476795] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.167182, 45.481291], [9.167182, 45.485788], [9.171679, 45.485788], [9.171679, 45.481291], [9.167182, 45.481291] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.167182, 45.485788], [9.167182, 45.490285], [9.171679, 45.490285], [9.171679, 45.485788], [9.167182, 45.485788] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.167182, 45.490285], [9.167182, 45.494781], [9.171679, 45.494781], [9.171679, 45.490285], [9.167182, 45.490285] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.167182, 45.494781], [9.167182, 45.499278], [9.171679, 45.499278], [9.171679, 45.494781], [9.167182, 45.494781] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.167182, 45.499278], [9.167182, 45.503774], [9.171679, 45.503774], [9.171679, 45.499278], [9.167182, 45.499278] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#7ac0ff", "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.167182, 45.503774], [9.167182, 45.508271], [9.171679, 45.508271], [9.171679, 45.503774], [9.167182, 45.503774] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.167182, 45.508271], [9.167182, 45.512768], [9.171679, 45.512768], [9.171679, 45.508271], [9.167182, 45.508271] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.167182, 45.512768], [9.167182, 45.517264], [9.171679, 45.517264], [9.171679, 45.512768], [9.167182, 45.512768] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.167182, 45.517264], [9.167182, 45.521761], [9.171679, 45.521761], [9.171679, 45.517264], [9.167182, 45.517264] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.167182, 45.521761], [9.167182, 45.526257], [9.171679, 45.526257], [9.171679, 45.521761], [9.167182, 45.521761] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#007df0", "fill": "#007df0", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.167182, 45.526257], [9.167182, 45.530754], [9.171679, 45.530754], [9.171679, 45.526257], [9.167182, 45.526257] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0078e6", "fill": "#0078e6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.167182, 45.530754], [9.167182, 45.535251], [9.171679, 45.535251], [9.171679, 45.530754], [9.167182, 45.530754] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.171679, 45.440822], [9.171679, 45.445319], [9.176176, 45.445319], [9.176176, 45.440822], [9.171679, 45.440822] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.171679, 45.445319], [9.171679, 45.449815], [9.176176, 45.449815], [9.176176, 45.445319], [9.171679, 45.445319] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.171679, 45.449815], [9.171679, 45.454312], [9.176176, 45.454312], [9.176176, 45.449815], [9.171679, 45.449815] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.171679, 45.454312], [9.171679, 45.458808], [9.176176, 45.458808], [9.176176, 45.454312], [9.171679, 45.454312] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.171679, 45.458808], [9.171679, 45.463305], [9.176176, 45.463305], [9.176176, 45.458808], [9.171679, 45.458808] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.171679, 45.463305], [9.171679, 45.467802], [9.176176, 45.467802], [9.176176, 45.463305], [9.171679, 45.463305] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.171679, 45.467802], [9.171679, 45.472298], [9.176176, 45.472298], [9.176176, 45.467802], [9.171679, 45.467802] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.171679, 45.472298], [9.171679, 45.476795], [9.176176, 45.476795], [9.176176, 45.472298], [9.171679, 45.472298] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.171679, 45.476795], [9.171679, 45.481291], [9.176176, 45.481291], [9.176176, 45.476795], [9.171679, 45.476795] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.171679, 45.481291], [9.171679, 45.485788], [9.176176, 45.485788], [9.176176, 45.481291], [9.171679, 45.481291] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.171679, 45.485788], [9.171679, 45.490285], [9.176176, 45.490285], [9.176176, 45.485788], [9.171679, 45.485788] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.171679, 45.490285], [9.171679, 45.494781], [9.176176, 45.494781], [9.176176, 45.490285], [9.171679, 45.490285] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.171679, 45.494781], [9.171679, 45.499278], [9.176176, 45.499278], [9.176176, 45.494781], [9.171679, 45.494781] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.171679, 45.499278], [9.171679, 45.503774], [9.176176, 45.503774], [9.176176, 45.499278], [9.171679, 45.499278] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.171679, 45.503774], [9.171679, 45.508271], [9.176176, 45.508271], [9.176176, 45.503774], [9.171679, 45.503774] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.171679, 45.508271], [9.171679, 45.512768], [9.176176, 45.512768], [9.176176, 45.508271], [9.171679, 45.508271] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.171679, 45.512768], [9.171679, 45.517264], [9.176176, 45.517264], [9.176176, 45.512768], [9.171679, 45.512768] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.171679, 45.517264], [9.171679, 45.521761], [9.176176, 45.521761], [9.176176, 45.517264], [9.171679, 45.517264] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.171679, 45.521761], [9.171679, 45.526257], [9.176176, 45.526257], [9.176176, 45.521761], [9.171679, 45.521761] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0078e6", "fill": "#0078e6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.171679, 45.526257], [9.171679, 45.530754], [9.176176, 45.530754], [9.176176, 45.526257], [9.171679, 45.526257] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#0068c7", "fill": "#0068c7", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.171679, 45.530754], [9.171679, 45.535251], [9.176176, 45.535251], [9.176176, 45.530754], [9.171679, 45.530754] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176176, 45.440822], [9.176176, 45.445319], [9.180672, 45.445319], [9.180672, 45.440822], [9.176176, 45.440822] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176176, 45.445319], [9.176176, 45.449815], [9.180672, 45.449815], [9.180672, 45.445319], [9.176176, 45.445319] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176176, 45.449815], [9.176176, 45.454312], [9.180672, 45.454312], [9.180672, 45.449815], [9.176176, 45.449815] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176176, 45.454312], [9.176176, 45.458808], [9.180672, 45.458808], [9.180672, 45.454312], [9.176176, 45.454312] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176176, 45.458808], [9.176176, 45.463305], [9.180672, 45.463305], [9.180672, 45.458808], [9.176176, 45.458808] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176176, 45.463305], [9.176176, 45.467802], [9.180672, 45.467802], [9.180672, 45.463305], [9.176176, 45.463305] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176176, 45.467802], [9.176176, 45.472298], [9.180672, 45.472298], [9.180672, 45.467802], [9.176176, 45.467802] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176176, 45.472298], [9.176176, 45.476795], [9.180672, 45.476795], [9.180672, 45.472298], [9.176176, 45.472298] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176176, 45.476795], [9.176176, 45.481291], [9.180672, 45.481291], [9.180672, 45.476795], [9.176176, 45.476795] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176176, 45.481291], [9.176176, 45.485788], [9.180672, 45.485788], [9.180672, 45.481291], [9.176176, 45.481291] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176176, 45.485788], [9.176176, 45.490285], [9.180672, 45.490285], [9.180672, 45.485788], [9.176176, 45.485788] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176176, 45.490285], [9.176176, 45.494781], [9.180672, 45.494781], [9.180672, 45.490285], [9.176176, 45.490285] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176176, 45.494781], [9.176176, 45.499278], [9.180672, 45.499278], [9.180672, 45.494781], [9.176176, 45.494781] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176176, 45.499278], [9.176176, 45.503774], [9.180672, 45.503774], [9.180672, 45.499278], [9.176176, 45.499278] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#7ac0ff", "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176176, 45.503774], [9.176176, 45.508271], [9.180672, 45.508271], [9.180672, 45.503774], [9.176176, 45.503774] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176176, 45.508271], [9.176176, 45.512768], [9.180672, 45.512768], [9.180672, 45.508271], [9.176176, 45.508271] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176176, 45.512768], [9.176176, 45.517264], [9.180672, 45.517264], [9.180672, 45.512768], [9.176176, 45.512768] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176176, 45.517264], [9.176176, 45.521761], [9.180672, 45.521761], [9.180672, 45.517264], [9.176176, 45.517264] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#007df0", "fill": "#007df0", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176176, 45.521761], [9.176176, 45.526257], [9.180672, 45.526257], [9.180672, 45.521761], [9.176176, 45.521761] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#0068c7", "fill": "#0068c7", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176176, 45.526257], [9.176176, 45.530754], [9.180672, 45.530754], [9.180672, 45.526257], [9.176176, 45.526257] ] ] } }, { "type": "Feature", "properties": { "value": 39, "stroke": "#005aad", "fill": "#005aad", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.176176, 45.530754], [9.176176, 45.535251], [9.180672, 45.535251], [9.180672, 45.530754], [9.176176, 45.530754] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.180672, 45.440822], [9.180672, 45.445319], [9.185169, 45.445319], [9.185169, 45.440822], [9.180672, 45.440822] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.180672, 45.445319], [9.180672, 45.449815], [9.185169, 45.449815], [9.185169, 45.445319], [9.180672, 45.445319] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.180672, 45.449815], [9.180672, 45.454312], [9.185169, 45.454312], [9.185169, 45.449815], [9.180672, 45.449815] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.180672, 45.454312], [9.180672, 45.458808], [9.185169, 45.458808], [9.185169, 45.454312], [9.180672, 45.454312] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.180672, 45.458808], [9.180672, 45.463305], [9.185169, 45.463305], [9.185169, 45.458808], [9.180672, 45.458808] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.180672, 45.463305], [9.180672, 45.467802], [9.185169, 45.467802], [9.185169, 45.463305], [9.180672, 45.463305] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.180672, 45.467802], [9.180672, 45.472298], [9.185169, 45.472298], [9.185169, 45.467802], [9.180672, 45.467802] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.180672, 45.472298], [9.180672, 45.476795], [9.185169, 45.476795], [9.185169, 45.472298], [9.180672, 45.472298] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.180672, 45.476795], [9.180672, 45.481291], [9.185169, 45.481291], [9.185169, 45.476795], [9.180672, 45.476795] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.180672, 45.481291], [9.180672, 45.485788], [9.185169, 45.485788], [9.185169, 45.481291], [9.180672, 45.481291] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.180672, 45.485788], [9.180672, 45.490285], [9.185169, 45.490285], [9.185169, 45.485788], [9.180672, 45.485788] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.180672, 45.490285], [9.180672, 45.494781], [9.185169, 45.494781], [9.185169, 45.490285], [9.180672, 45.490285] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.180672, 45.494781], [9.180672, 45.499278], [9.185169, 45.499278], [9.185169, 45.494781], [9.180672, 45.494781] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.180672, 45.499278], [9.180672, 45.503774], [9.185169, 45.503774], [9.185169, 45.499278], [9.180672, 45.499278] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#7ac0ff", "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.180672, 45.503774], [9.180672, 45.508271], [9.185169, 45.508271], [9.185169, 45.503774], [9.180672, 45.503774] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#52acff", "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.180672, 45.508271], [9.180672, 45.512768], [9.185169, 45.512768], [9.185169, 45.508271], [9.180672, 45.508271] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.180672, 45.512768], [9.180672, 45.517264], [9.185169, 45.517264], [9.185169, 45.512768], [9.180672, 45.512768] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.180672, 45.517264], [9.180672, 45.521761], [9.185169, 45.521761], [9.185169, 45.517264], [9.180672, 45.517264] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0078e6", "fill": "#0078e6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.180672, 45.521761], [9.180672, 45.526257], [9.185169, 45.526257], [9.185169, 45.521761], [9.180672, 45.521761] ] ] } }, { "type": "Feature", "properties": { "value": 39, "stroke": "#005aad", "fill": "#005aad", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.180672, 45.526257], [9.180672, 45.530754], [9.185169, 45.530754], [9.185169, 45.526257], [9.180672, 45.526257] ] ] } }, { "type": "Feature", "properties": { "value": 42, "stroke": "#004585", "fill": "#004585", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.180672, 45.530754], [9.180672, 45.535251], [9.185169, 45.535251], [9.185169, 45.530754], [9.180672, 45.530754] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185169, 45.440822], [9.185169, 45.445319], [9.189665, 45.445319], [9.189665, 45.440822], [9.185169, 45.440822] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185169, 45.445319], [9.185169, 45.449815], [9.189665, 45.449815], [9.189665, 45.445319], [9.185169, 45.445319] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185169, 45.449815], [9.185169, 45.454312], [9.189665, 45.454312], [9.189665, 45.449815], [9.185169, 45.449815] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185169, 45.454312], [9.185169, 45.458808], [9.189665, 45.458808], [9.189665, 45.454312], [9.185169, 45.454312] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185169, 45.458808], [9.185169, 45.463305], [9.189665, 45.463305], [9.189665, 45.458808], [9.185169, 45.458808] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185169, 45.463305], [9.185169, 45.467802], [9.189665, 45.467802], [9.189665, 45.463305], [9.185169, 45.463305] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185169, 45.467802], [9.185169, 45.472298], [9.189665, 45.472298], [9.189665, 45.467802], [9.185169, 45.467802] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185169, 45.472298], [9.185169, 45.476795], [9.189665, 45.476795], [9.189665, 45.472298], [9.185169, 45.472298] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185169, 45.476795], [9.185169, 45.481291], [9.189665, 45.481291], [9.189665, 45.476795], [9.185169, 45.476795] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185169, 45.481291], [9.185169, 45.485788], [9.189665, 45.485788], [9.189665, 45.481291], [9.185169, 45.481291] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185169, 45.485788], [9.185169, 45.490285], [9.189665, 45.490285], [9.189665, 45.485788], [9.185169, 45.485788] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185169, 45.490285], [9.185169, 45.494781], [9.189665, 45.494781], [9.189665, 45.490285], [9.185169, 45.490285] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185169, 45.494781], [9.185169, 45.499278], [9.189665, 45.499278], [9.189665, 45.494781], [9.185169, 45.494781] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185169, 45.499278], [9.185169, 45.503774], [9.189665, 45.503774], [9.189665, 45.499278], [9.185169, 45.499278] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185169, 45.503774], [9.185169, 45.508271], [9.189665, 45.508271], [9.189665, 45.503774], [9.185169, 45.503774] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#52acff", "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185169, 45.508271], [9.185169, 45.512768], [9.189665, 45.512768], [9.189665, 45.508271], [9.185169, 45.508271] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185169, 45.512768], [9.185169, 45.517264], [9.189665, 45.517264], [9.189665, 45.512768], [9.185169, 45.512768] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185169, 45.517264], [9.185169, 45.521761], [9.189665, 45.521761], [9.189665, 45.517264], [9.185169, 45.517264] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185169, 45.521761], [9.185169, 45.526257], [9.189665, 45.526257], [9.189665, 45.521761], [9.185169, 45.521761] ] ] } }, { "type": "Feature", "properties": { "value": 40, "stroke": "#0055a3", "fill": "#0055a3", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185169, 45.526257], [9.185169, 45.530754], [9.189665, 45.530754], [9.189665, 45.526257], [9.185169, 45.526257] ] ] } }, { "type": "Feature", "properties": { "value": 46, "stroke": "#002b52", "fill": "#002b52", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.185169, 45.530754], [9.185169, 45.535251], [9.189665, 45.535251], [9.189665, 45.530754], [9.185169, 45.530754] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.189665, 45.440822], [9.189665, 45.445319], [9.194162, 45.445319], [9.194162, 45.440822], [9.189665, 45.440822] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.189665, 45.445319], [9.189665, 45.449815], [9.194162, 45.449815], [9.194162, 45.445319], [9.189665, 45.445319] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.189665, 45.449815], [9.189665, 45.454312], [9.194162, 45.454312], [9.194162, 45.449815], [9.189665, 45.449815] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.189665, 45.454312], [9.189665, 45.458808], [9.194162, 45.458808], [9.194162, 45.454312], [9.189665, 45.454312] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.189665, 45.458808], [9.189665, 45.463305], [9.194162, 45.463305], [9.194162, 45.458808], [9.189665, 45.458808] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.189665, 45.463305], [9.189665, 45.467802], [9.194162, 45.467802], [9.194162, 45.463305], [9.189665, 45.463305] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.189665, 45.467802], [9.189665, 45.472298], [9.194162, 45.472298], [9.194162, 45.467802], [9.189665, 45.467802] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.189665, 45.472298], [9.189665, 45.476795], [9.194162, 45.476795], [9.194162, 45.472298], [9.189665, 45.472298] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.189665, 45.476795], [9.189665, 45.481291], [9.194162, 45.481291], [9.194162, 45.476795], [9.189665, 45.476795] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.189665, 45.481291], [9.189665, 45.485788], [9.194162, 45.485788], [9.194162, 45.481291], [9.189665, 45.481291] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.189665, 45.485788], [9.189665, 45.490285], [9.194162, 45.490285], [9.194162, 45.485788], [9.189665, 45.485788] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.189665, 45.490285], [9.189665, 45.494781], [9.194162, 45.494781], [9.194162, 45.490285], [9.189665, 45.490285] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.189665, 45.494781], [9.189665, 45.499278], [9.194162, 45.499278], [9.194162, 45.494781], [9.189665, 45.494781] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#7ac0ff", "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.189665, 45.499278], [9.189665, 45.503774], [9.194162, 45.503774], [9.194162, 45.499278], [9.189665, 45.499278] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.189665, 45.503774], [9.189665, 45.508271], [9.194162, 45.508271], [9.194162, 45.503774], [9.189665, 45.503774] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.189665, 45.508271], [9.189665, 45.512768], [9.194162, 45.512768], [9.194162, 45.508271], [9.189665, 45.508271] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.189665, 45.512768], [9.189665, 45.517264], [9.194162, 45.517264], [9.194162, 45.512768], [9.189665, 45.512768] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.189665, 45.517264], [9.189665, 45.521761], [9.194162, 45.521761], [9.194162, 45.517264], [9.189665, 45.517264] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#0068c7", "fill": "#0068c7", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.189665, 45.521761], [9.189665, 45.526257], [9.194162, 45.526257], [9.194162, 45.521761], [9.189665, 45.521761] ] ] } }, { "type": "Feature", "properties": { "value": 42, "stroke": "#004585", "fill": "#004585", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.189665, 45.526257], [9.189665, 45.530754], [9.194162, 45.530754], [9.194162, 45.526257], [9.189665, 45.526257] ] ] } }, { "type": "Feature", "properties": { "value": 50, "stroke": "#000d1a", "fill": "#000d1a", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.189665, 45.530754], [9.189665, 45.535251], [9.194162, 45.535251], [9.194162, 45.530754], [9.189665, 45.530754] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194162, 45.440822], [9.194162, 45.445319], [9.198659, 45.445319], [9.198659, 45.440822], [9.194162, 45.440822] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194162, 45.445319], [9.194162, 45.449815], [9.198659, 45.449815], [9.198659, 45.445319], [9.194162, 45.445319] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194162, 45.449815], [9.194162, 45.454312], [9.198659, 45.454312], [9.198659, 45.449815], [9.194162, 45.449815] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194162, 45.454312], [9.194162, 45.458808], [9.198659, 45.458808], [9.198659, 45.454312], [9.194162, 45.454312] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194162, 45.458808], [9.194162, 45.463305], [9.198659, 45.463305], [9.198659, 45.458808], [9.194162, 45.458808] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194162, 45.463305], [9.194162, 45.467802], [9.198659, 45.467802], [9.198659, 45.463305], [9.194162, 45.463305] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194162, 45.467802], [9.194162, 45.472298], [9.198659, 45.472298], [9.198659, 45.467802], [9.194162, 45.467802] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194162, 45.472298], [9.194162, 45.476795], [9.198659, 45.476795], [9.198659, 45.472298], [9.194162, 45.472298] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194162, 45.476795], [9.194162, 45.481291], [9.198659, 45.481291], [9.198659, 45.476795], [9.194162, 45.476795] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194162, 45.481291], [9.194162, 45.485788], [9.198659, 45.485788], [9.198659, 45.481291], [9.194162, 45.481291] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194162, 45.485788], [9.194162, 45.490285], [9.198659, 45.490285], [9.198659, 45.485788], [9.194162, 45.485788] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194162, 45.490285], [9.194162, 45.494781], [9.198659, 45.494781], [9.198659, 45.490285], [9.194162, 45.490285] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194162, 45.494781], [9.194162, 45.499278], [9.198659, 45.499278], [9.198659, 45.494781], [9.194162, 45.494781] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194162, 45.499278], [9.194162, 45.503774], [9.198659, 45.503774], [9.198659, 45.499278], [9.194162, 45.499278] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194162, 45.503774], [9.194162, 45.508271], [9.198659, 45.508271], [9.198659, 45.503774], [9.194162, 45.503774] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194162, 45.508271], [9.194162, 45.512768], [9.198659, 45.512768], [9.198659, 45.508271], [9.194162, 45.508271] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194162, 45.512768], [9.194162, 45.517264], [9.198659, 45.517264], [9.198659, 45.512768], [9.194162, 45.512768] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194162, 45.517264], [9.194162, 45.521761], [9.198659, 45.521761], [9.198659, 45.517264], [9.194162, 45.517264] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#0068c7", "fill": "#0068c7", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194162, 45.521761], [9.194162, 45.526257], [9.198659, 45.526257], [9.198659, 45.521761], [9.194162, 45.521761] ] ] } }, { "type": "Feature", "properties": { "value": 42, "stroke": "#004585", "fill": "#004585", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194162, 45.526257], [9.194162, 45.530754], [9.198659, 45.530754], [9.198659, 45.526257], [9.194162, 45.526257] ] ] } }, { "type": "Feature", "properties": { "value": 52, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.194162, 45.530754], [9.194162, 45.535251], [9.198659, 45.535251], [9.198659, 45.530754], [9.194162, 45.530754] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.198659, 45.440822], [9.198659, 45.445319], [9.203155, 45.445319], [9.203155, 45.440822], [9.198659, 45.440822] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.198659, 45.445319], [9.198659, 45.449815], [9.203155, 45.449815], [9.203155, 45.445319], [9.198659, 45.445319] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.198659, 45.449815], [9.198659, 45.454312], [9.203155, 45.454312], [9.203155, 45.449815], [9.198659, 45.449815] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.198659, 45.454312], [9.198659, 45.458808], [9.203155, 45.458808], [9.203155, 45.454312], [9.198659, 45.454312] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.198659, 45.458808], [9.198659, 45.463305], [9.203155, 45.463305], [9.203155, 45.458808], [9.198659, 45.458808] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.198659, 45.463305], [9.198659, 45.467802], [9.203155, 45.467802], [9.203155, 45.463305], [9.198659, 45.463305] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.198659, 45.467802], [9.198659, 45.472298], [9.203155, 45.472298], [9.203155, 45.467802], [9.198659, 45.467802] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.198659, 45.472298], [9.198659, 45.476795], [9.203155, 45.476795], [9.203155, 45.472298], [9.198659, 45.472298] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.198659, 45.476795], [9.198659, 45.481291], [9.203155, 45.481291], [9.203155, 45.476795], [9.198659, 45.476795] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.198659, 45.481291], [9.198659, 45.485788], [9.203155, 45.485788], [9.203155, 45.481291], [9.198659, 45.481291] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.198659, 45.485788], [9.198659, 45.490285], [9.203155, 45.490285], [9.203155, 45.485788], [9.198659, 45.485788] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.198659, 45.490285], [9.198659, 45.494781], [9.203155, 45.494781], [9.203155, 45.490285], [9.198659, 45.490285] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#7ac0ff", "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.198659, 45.494781], [9.198659, 45.499278], [9.203155, 45.499278], [9.203155, 45.494781], [9.198659, 45.494781] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.198659, 45.499278], [9.198659, 45.503774], [9.203155, 45.503774], [9.203155, 45.499278], [9.198659, 45.499278] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.198659, 45.503774], [9.198659, 45.508271], [9.203155, 45.508271], [9.203155, 45.503774], [9.198659, 45.503774] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.198659, 45.508271], [9.198659, 45.512768], [9.203155, 45.512768], [9.203155, 45.508271], [9.198659, 45.508271] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.198659, 45.512768], [9.198659, 45.517264], [9.203155, 45.517264], [9.203155, 45.512768], [9.198659, 45.512768] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.198659, 45.517264], [9.198659, 45.521761], [9.203155, 45.521761], [9.203155, 45.517264], [9.198659, 45.517264] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#0068c7", "fill": "#0068c7", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.198659, 45.521761], [9.198659, 45.526257], [9.203155, 45.526257], [9.203155, 45.521761], [9.198659, 45.521761] ] ] } }, { "type": "Feature", "properties": { "value": 42, "stroke": "#004585", "fill": "#004585", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.198659, 45.526257], [9.198659, 45.530754], [9.203155, 45.530754], [9.203155, 45.526257], [9.198659, 45.526257] ] ] } }, { "type": "Feature", "properties": { "value": 48, "stroke": "#001d38", "fill": "#001d38", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.198659, 45.530754], [9.198659, 45.535251], [9.203155, 45.535251], [9.203155, 45.530754], [9.198659, 45.530754] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203155, 45.440822], [9.203155, 45.445319], [9.207652, 45.445319], [9.207652, 45.440822], [9.203155, 45.440822] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203155, 45.445319], [9.203155, 45.449815], [9.207652, 45.449815], [9.207652, 45.445319], [9.203155, 45.445319] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203155, 45.449815], [9.203155, 45.454312], [9.207652, 45.454312], [9.207652, 45.449815], [9.203155, 45.449815] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203155, 45.454312], [9.203155, 45.458808], [9.207652, 45.458808], [9.207652, 45.454312], [9.203155, 45.454312] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203155, 45.458808], [9.203155, 45.463305], [9.207652, 45.463305], [9.207652, 45.458808], [9.203155, 45.458808] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203155, 45.463305], [9.203155, 45.467802], [9.207652, 45.467802], [9.207652, 45.463305], [9.203155, 45.463305] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203155, 45.467802], [9.203155, 45.472298], [9.207652, 45.472298], [9.207652, 45.467802], [9.203155, 45.467802] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203155, 45.472298], [9.203155, 45.476795], [9.207652, 45.476795], [9.207652, 45.472298], [9.203155, 45.472298] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203155, 45.476795], [9.203155, 45.481291], [9.207652, 45.481291], [9.207652, 45.476795], [9.203155, 45.476795] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203155, 45.481291], [9.203155, 45.485788], [9.207652, 45.485788], [9.207652, 45.481291], [9.203155, 45.481291] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203155, 45.485788], [9.203155, 45.490285], [9.207652, 45.490285], [9.207652, 45.485788], [9.203155, 45.485788] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203155, 45.490285], [9.203155, 45.494781], [9.207652, 45.494781], [9.207652, 45.490285], [9.203155, 45.490285] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#7ac0ff", "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203155, 45.494781], [9.203155, 45.499278], [9.207652, 45.499278], [9.207652, 45.494781], [9.203155, 45.494781] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203155, 45.499278], [9.203155, 45.503774], [9.207652, 45.503774], [9.207652, 45.499278], [9.203155, 45.499278] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203155, 45.503774], [9.203155, 45.508271], [9.207652, 45.508271], [9.207652, 45.503774], [9.203155, 45.503774] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203155, 45.508271], [9.203155, 45.512768], [9.207652, 45.512768], [9.207652, 45.508271], [9.203155, 45.508271] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203155, 45.512768], [9.203155, 45.517264], [9.207652, 45.517264], [9.207652, 45.512768], [9.203155, 45.512768] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203155, 45.517264], [9.203155, 45.521761], [9.207652, 45.521761], [9.207652, 45.517264], [9.203155, 45.517264] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203155, 45.521761], [9.203155, 45.526257], [9.207652, 45.526257], [9.207652, 45.521761], [9.203155, 45.521761] ] ] } }, { "type": "Feature", "properties": { "value": 40, "stroke": "#0055a3", "fill": "#0055a3", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203155, 45.526257], [9.203155, 45.530754], [9.207652, 45.530754], [9.207652, 45.526257], [9.203155, 45.526257] ] ] } }, { "type": "Feature", "properties": { "value": 44, "stroke": "#00386b", "fill": "#00386b", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.203155, 45.530754], [9.203155, 45.535251], [9.207652, 45.535251], [9.207652, 45.530754], [9.203155, 45.530754] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.207652, 45.440822], [9.207652, 45.445319], [9.212148, 45.445319], [9.212148, 45.440822], [9.207652, 45.440822] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.207652, 45.445319], [9.207652, 45.449815], [9.212148, 45.449815], [9.212148, 45.445319], [9.207652, 45.445319] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.207652, 45.449815], [9.207652, 45.454312], [9.212148, 45.454312], [9.212148, 45.449815], [9.207652, 45.449815] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.207652, 45.454312], [9.207652, 45.458808], [9.212148, 45.458808], [9.212148, 45.454312], [9.207652, 45.454312] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.207652, 45.458808], [9.207652, 45.463305], [9.212148, 45.463305], [9.212148, 45.458808], [9.207652, 45.458808] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.207652, 45.463305], [9.207652, 45.467802], [9.212148, 45.467802], [9.212148, 45.463305], [9.207652, 45.463305] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.207652, 45.467802], [9.207652, 45.472298], [9.212148, 45.472298], [9.212148, 45.467802], [9.207652, 45.467802] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.207652, 45.472298], [9.207652, 45.476795], [9.212148, 45.476795], [9.212148, 45.472298], [9.207652, 45.472298] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.207652, 45.476795], [9.207652, 45.481291], [9.212148, 45.481291], [9.212148, 45.476795], [9.207652, 45.476795] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.207652, 45.481291], [9.207652, 45.485788], [9.212148, 45.485788], [9.212148, 45.481291], [9.207652, 45.481291] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.207652, 45.485788], [9.207652, 45.490285], [9.212148, 45.490285], [9.212148, 45.485788], [9.207652, 45.485788] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.207652, 45.490285], [9.207652, 45.494781], [9.212148, 45.494781], [9.212148, 45.490285], [9.207652, 45.490285] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#7ac0ff", "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.207652, 45.494781], [9.207652, 45.499278], [9.212148, 45.499278], [9.212148, 45.494781], [9.207652, 45.494781] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.207652, 45.499278], [9.207652, 45.503774], [9.212148, 45.503774], [9.212148, 45.499278], [9.207652, 45.499278] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.207652, 45.503774], [9.207652, 45.508271], [9.212148, 45.508271], [9.212148, 45.503774], [9.207652, 45.503774] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.207652, 45.508271], [9.207652, 45.512768], [9.212148, 45.512768], [9.212148, 45.508271], [9.207652, 45.508271] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.207652, 45.512768], [9.207652, 45.517264], [9.212148, 45.517264], [9.212148, 45.512768], [9.207652, 45.512768] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.207652, 45.517264], [9.207652, 45.521761], [9.212148, 45.521761], [9.212148, 45.517264], [9.207652, 45.517264] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0078e6", "fill": "#0078e6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.207652, 45.521761], [9.207652, 45.526257], [9.212148, 45.526257], [9.212148, 45.521761], [9.207652, 45.521761] ] ] } }, { "type": "Feature", "properties": { "value": 38, "stroke": "#0062bd", "fill": "#0062bd", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.207652, 45.526257], [9.207652, 45.530754], [9.212148, 45.530754], [9.212148, 45.526257], [9.207652, 45.526257] ] ] } }, { "type": "Feature", "properties": { "value": 41, "stroke": "#004d94", "fill": "#004d94", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.207652, 45.530754], [9.207652, 45.535251], [9.212148, 45.535251], [9.212148, 45.530754], [9.207652, 45.530754] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212148, 45.440822], [9.212148, 45.445319], [9.216645, 45.445319], [9.216645, 45.440822], [9.212148, 45.440822] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212148, 45.445319], [9.212148, 45.449815], [9.216645, 45.449815], [9.216645, 45.445319], [9.212148, 45.445319] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212148, 45.449815], [9.212148, 45.454312], [9.216645, 45.454312], [9.216645, 45.449815], [9.212148, 45.449815] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212148, 45.454312], [9.212148, 45.458808], [9.216645, 45.458808], [9.216645, 45.454312], [9.212148, 45.454312] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212148, 45.458808], [9.212148, 45.463305], [9.216645, 45.463305], [9.216645, 45.458808], [9.212148, 45.458808] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212148, 45.463305], [9.212148, 45.467802], [9.216645, 45.467802], [9.216645, 45.463305], [9.212148, 45.463305] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212148, 45.467802], [9.212148, 45.472298], [9.216645, 45.472298], [9.216645, 45.467802], [9.212148, 45.467802] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212148, 45.472298], [9.212148, 45.476795], [9.216645, 45.476795], [9.216645, 45.472298], [9.212148, 45.472298] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212148, 45.476795], [9.212148, 45.481291], [9.216645, 45.481291], [9.216645, 45.476795], [9.212148, 45.476795] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212148, 45.481291], [9.212148, 45.485788], [9.216645, 45.485788], [9.216645, 45.481291], [9.212148, 45.481291] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212148, 45.485788], [9.212148, 45.490285], [9.216645, 45.490285], [9.216645, 45.485788], [9.212148, 45.485788] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212148, 45.490285], [9.212148, 45.494781], [9.216645, 45.494781], [9.216645, 45.490285], [9.212148, 45.490285] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212148, 45.494781], [9.212148, 45.499278], [9.216645, 45.499278], [9.216645, 45.494781], [9.212148, 45.494781] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#7ac0ff", "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212148, 45.499278], [9.212148, 45.503774], [9.216645, 45.503774], [9.216645, 45.499278], [9.212148, 45.499278] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212148, 45.503774], [9.212148, 45.508271], [9.216645, 45.508271], [9.216645, 45.503774], [9.212148, 45.503774] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212148, 45.508271], [9.212148, 45.512768], [9.216645, 45.512768], [9.216645, 45.508271], [9.212148, 45.508271] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212148, 45.512768], [9.212148, 45.517264], [9.216645, 45.517264], [9.216645, 45.512768], [9.212148, 45.512768] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212148, 45.517264], [9.212148, 45.521761], [9.216645, 45.521761], [9.216645, 45.517264], [9.212148, 45.517264] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#007df0", "fill": "#007df0", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212148, 45.521761], [9.212148, 45.526257], [9.216645, 45.526257], [9.216645, 45.521761], [9.212148, 45.521761] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212148, 45.526257], [9.212148, 45.530754], [9.216645, 45.530754], [9.216645, 45.526257], [9.212148, 45.526257] ] ] } }, { "type": "Feature", "properties": { "value": 38, "stroke": "#0062bd", "fill": "#0062bd", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.212148, 45.530754], [9.212148, 45.535251], [9.216645, 45.535251], [9.216645, 45.530754], [9.212148, 45.530754] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.216645, 45.440822], [9.216645, 45.445319], [9.221142, 45.445319], [9.221142, 45.440822], [9.216645, 45.440822] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.216645, 45.445319], [9.216645, 45.449815], [9.221142, 45.449815], [9.221142, 45.445319], [9.216645, 45.445319] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.216645, 45.449815], [9.216645, 45.454312], [9.221142, 45.454312], [9.221142, 45.449815], [9.216645, 45.449815] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.216645, 45.454312], [9.216645, 45.458808], [9.221142, 45.458808], [9.221142, 45.454312], [9.216645, 45.454312] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.216645, 45.458808], [9.216645, 45.463305], [9.221142, 45.463305], [9.221142, 45.458808], [9.216645, 45.458808] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.216645, 45.463305], [9.216645, 45.467802], [9.221142, 45.467802], [9.221142, 45.463305], [9.216645, 45.463305] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.216645, 45.467802], [9.216645, 45.472298], [9.221142, 45.472298], [9.221142, 45.467802], [9.216645, 45.467802] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.216645, 45.472298], [9.216645, 45.476795], [9.221142, 45.476795], [9.221142, 45.472298], [9.216645, 45.472298] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.216645, 45.476795], [9.216645, 45.481291], [9.221142, 45.481291], [9.221142, 45.476795], [9.216645, 45.476795] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.216645, 45.481291], [9.216645, 45.485788], [9.221142, 45.485788], [9.221142, 45.481291], [9.216645, 45.481291] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.216645, 45.485788], [9.216645, 45.490285], [9.221142, 45.490285], [9.221142, 45.485788], [9.216645, 45.485788] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.216645, 45.490285], [9.216645, 45.494781], [9.221142, 45.494781], [9.221142, 45.490285], [9.216645, 45.490285] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.216645, 45.494781], [9.216645, 45.499278], [9.221142, 45.499278], [9.221142, 45.494781], [9.216645, 45.494781] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#7ac0ff", "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.216645, 45.499278], [9.216645, 45.503774], [9.221142, 45.503774], [9.221142, 45.499278], [9.216645, 45.499278] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#5cb1ff", "fill": "#5cb1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.216645, 45.503774], [9.216645, 45.508271], [9.221142, 45.508271], [9.221142, 45.503774], [9.216645, 45.503774] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#52acff", "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.216645, 45.508271], [9.216645, 45.512768], [9.221142, 45.512768], [9.221142, 45.508271], [9.216645, 45.508271] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.216645, 45.512768], [9.216645, 45.517264], [9.221142, 45.517264], [9.221142, 45.512768], [9.216645, 45.512768] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.216645, 45.517264], [9.216645, 45.521761], [9.221142, 45.521761], [9.221142, 45.517264], [9.216645, 45.517264] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.216645, 45.521761], [9.216645, 45.526257], [9.221142, 45.526257], [9.221142, 45.521761], [9.216645, 45.521761] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0078e6", "fill": "#0078e6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.216645, 45.526257], [9.216645, 45.530754], [9.221142, 45.530754], [9.221142, 45.526257], [9.216645, 45.526257] ] ] } }, { "type": "Feature", "properties": { "value": 37, "stroke": "#0068c7", "fill": "#0068c7", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.216645, 45.530754], [9.216645, 45.535251], [9.221142, 45.535251], [9.221142, 45.530754], [9.216645, 45.530754] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221142, 45.440822], [9.221142, 45.445319], [9.225638, 45.445319], [9.225638, 45.440822], [9.221142, 45.440822] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221142, 45.445319], [9.221142, 45.449815], [9.225638, 45.449815], [9.225638, 45.445319], [9.221142, 45.445319] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221142, 45.449815], [9.221142, 45.454312], [9.225638, 45.454312], [9.225638, 45.449815], [9.221142, 45.449815] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221142, 45.454312], [9.221142, 45.458808], [9.225638, 45.458808], [9.225638, 45.454312], [9.221142, 45.454312] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221142, 45.458808], [9.221142, 45.463305], [9.225638, 45.463305], [9.225638, 45.458808], [9.221142, 45.458808] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221142, 45.463305], [9.221142, 45.467802], [9.225638, 45.467802], [9.225638, 45.463305], [9.221142, 45.463305] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221142, 45.467802], [9.221142, 45.472298], [9.225638, 45.472298], [9.225638, 45.467802], [9.221142, 45.467802] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221142, 45.472298], [9.221142, 45.476795], [9.225638, 45.476795], [9.225638, 45.472298], [9.221142, 45.472298] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221142, 45.476795], [9.221142, 45.481291], [9.225638, 45.481291], [9.225638, 45.476795], [9.221142, 45.476795] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221142, 45.481291], [9.221142, 45.485788], [9.225638, 45.485788], [9.225638, 45.481291], [9.221142, 45.481291] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221142, 45.485788], [9.221142, 45.490285], [9.225638, 45.490285], [9.225638, 45.485788], [9.221142, 45.485788] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221142, 45.490285], [9.221142, 45.494781], [9.225638, 45.494781], [9.225638, 45.490285], [9.221142, 45.490285] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221142, 45.494781], [9.221142, 45.499278], [9.225638, 45.499278], [9.225638, 45.494781], [9.221142, 45.494781] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#7ac0ff", "fill": "#7ac0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221142, 45.499278], [9.221142, 45.503774], [9.225638, 45.503774], [9.225638, 45.499278], [9.221142, 45.499278] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221142, 45.503774], [9.221142, 45.508271], [9.225638, 45.508271], [9.225638, 45.503774], [9.221142, 45.503774] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#52acff", "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221142, 45.508271], [9.221142, 45.512768], [9.225638, 45.512768], [9.225638, 45.508271], [9.221142, 45.508271] ] ] } }, { "type": "Feature", "properties": { "value": 29, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221142, 45.512768], [9.221142, 45.517264], [9.225638, 45.517264], [9.225638, 45.512768], [9.221142, 45.512768] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221142, 45.517264], [9.221142, 45.521761], [9.225638, 45.521761], [9.225638, 45.517264], [9.221142, 45.517264] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#0f8cff", "fill": "#0f8cff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221142, 45.521761], [9.221142, 45.526257], [9.225638, 45.526257], [9.225638, 45.521761], [9.221142, 45.521761] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#007df0", "fill": "#007df0", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221142, 45.526257], [9.221142, 45.530754], [9.225638, 45.530754], [9.225638, 45.526257], [9.221142, 45.526257] ] ] } }, { "type": "Feature", "properties": { "value": 35, "stroke": "#0078e6", "fill": "#0078e6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.221142, 45.530754], [9.221142, 45.535251], [9.225638, 45.535251], [9.225638, 45.530754], [9.221142, 45.530754] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.225638, 45.440822], [9.225638, 45.445319], [9.230135, 45.445319], [9.230135, 45.440822], [9.225638, 45.440822] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.225638, 45.445319], [9.225638, 45.449815], [9.230135, 45.449815], [9.230135, 45.445319], [9.225638, 45.445319] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.225638, 45.449815], [9.225638, 45.454312], [9.230135, 45.454312], [9.230135, 45.449815], [9.225638, 45.449815] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.225638, 45.454312], [9.225638, 45.458808], [9.230135, 45.458808], [9.230135, 45.454312], [9.225638, 45.454312] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.225638, 45.458808], [9.225638, 45.463305], [9.230135, 45.463305], [9.230135, 45.458808], [9.225638, 45.458808] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.225638, 45.463305], [9.225638, 45.467802], [9.230135, 45.467802], [9.230135, 45.463305], [9.225638, 45.463305] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.225638, 45.467802], [9.225638, 45.472298], [9.230135, 45.472298], [9.230135, 45.467802], [9.225638, 45.467802] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#94ccff", "fill": "#94ccff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.225638, 45.472298], [9.225638, 45.476795], [9.230135, 45.476795], [9.230135, 45.472298], [9.225638, 45.472298] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.225638, 45.476795], [9.225638, 45.481291], [9.230135, 45.481291], [9.230135, 45.476795], [9.225638, 45.476795] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.225638, 45.481291], [9.225638, 45.485788], [9.230135, 45.485788], [9.230135, 45.481291], [9.225638, 45.481291] ] ] } }, { "type": "Feature", "properties": { "value": 19, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.225638, 45.485788], [9.225638, 45.490285], [9.230135, 45.490285], [9.230135, 45.485788], [9.225638, 45.485788] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#c7e4ff", "fill": "#c7e4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.225638, 45.490285], [9.225638, 45.494781], [9.230135, 45.494781], [9.230135, 45.490285], [9.225638, 45.490285] ] ] } }, { "type": "Feature", "properties": { "value": 21, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.225638, 45.494781], [9.225638, 45.499278], [9.230135, 45.499278], [9.230135, 45.494781], [9.225638, 45.494781] ] ] } }, { "type": "Feature", "properties": { "value": 23, "stroke": "#85c4ff", "fill": "#85c4ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.225638, 45.499278], [9.225638, 45.503774], [9.230135, 45.503774], [9.230135, 45.499278], [9.225638, 45.499278] ] ] } }, { "type": "Feature", "properties": { "value": 25, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.225638, 45.503774], [9.225638, 45.508271], [9.230135, 45.508271], [9.230135, 45.503774], [9.225638, 45.503774] ] ] } }, { "type": "Feature", "properties": { "value": 27, "stroke": "#52acff", "fill": "#52acff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.225638, 45.508271], [9.225638, 45.512768], [9.230135, 45.512768], [9.230135, 45.508271], [9.225638, 45.508271] ] ] } }, { "type": "Feature", "properties": { "value": 28, "stroke": "#42a5ff", "fill": "#42a5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.225638, 45.512768], [9.225638, 45.517264], [9.230135, 45.517264], [9.230135, 45.512768], [9.225638, 45.512768] ] ] } }, { "type": "Feature", "properties": { "value": 30, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.225638, 45.517264], [9.225638, 45.521761], [9.230135, 45.521761], [9.230135, 45.517264], [9.225638, 45.517264] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.225638, 45.521761], [9.225638, 45.526257], [9.230135, 45.526257], [9.230135, 45.521761], [9.225638, 45.521761] ] ] } }, { "type": "Feature", "properties": { "value": 33, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.225638, 45.526257], [9.225638, 45.530754], [9.230135, 45.530754], [9.230135, 45.526257], [9.225638, 45.526257] ] ] } }, { "type": "Feature", "properties": { "value": 34, "stroke": "#007df0", "fill": "#007df0", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.225638, 45.530754], [9.225638, 45.535251], [9.230135, 45.535251], [9.230135, 45.530754], [9.225638, 45.530754] ] ] } } ] } ================================================ FILE: packages/turf-interpolate/test/out/data-weight-2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "value": 8, "stroke": "#ebf5ff", "fill": "#ebf5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.123271, 45.444617], [9.123271, 45.45909], [9.137744, 45.45909], [9.137744, 45.444617], [9.123271, 45.444617] ] ] } }, { "type": "Feature", "properties": { "value": 8, "stroke": "#ebf5ff", "fill": "#ebf5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.123271, 45.45909], [9.123271, 45.473563], [9.137744, 45.473563], [9.137744, 45.45909], [9.123271, 45.45909] ] ] } }, { "type": "Feature", "properties": { "value": 10, "stroke": "#dbeeff", "fill": "#dbeeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.123271, 45.473563], [9.123271, 45.488036], [9.137744, 45.488036], [9.137744, 45.473563], [9.123271, 45.473563] ] ] } }, { "type": "Feature", "properties": { "value": 15, "stroke": "#b8ddff", "fill": "#b8ddff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.123271, 45.488036], [9.123271, 45.502509], [9.137744, 45.502509], [9.137744, 45.488036], [9.123271, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.123271, 45.502509], [9.123271, 45.516983], [9.137744, 45.516983], [9.137744, 45.502509], [9.123271, 45.502509] ] ] } }, { "type": "Feature", "properties": { "value": 32, "stroke": "#38a0ff", "fill": "#38a0ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.123271, 45.516983], [9.123271, 45.531456], [9.137744, 45.531456], [9.137744, 45.516983], [9.123271, 45.516983] ] ] } }, { "type": "Feature", "properties": { "value": 8, "stroke": "#ebf5ff", "fill": "#ebf5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.137744, 45.444617], [9.137744, 45.45909], [9.152218, 45.45909], [9.152218, 45.444617], [9.137744, 45.444617] ] ] } }, { "type": "Feature", "properties": { "value": 6, "stroke": "#fafdff", "fill": "#fafdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.137744, 45.45909], [9.137744, 45.473563], [9.152218, 45.473563], [9.152218, 45.45909], [9.137744, 45.45909] ] ] } }, { "type": "Feature", "properties": { "value": 7, "stroke": "#f0f8ff", "fill": "#f0f8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.137744, 45.473563], [9.137744, 45.488036], [9.152218, 45.488036], [9.152218, 45.473563], [9.137744, 45.473563] ] ] } }, { "type": "Feature", "properties": { "value": 14, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.137744, 45.488036], [9.137744, 45.502509], [9.152218, 45.502509], [9.152218, 45.488036], [9.137744, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 22, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.137744, 45.502509], [9.137744, 45.516983], [9.152218, 45.516983], [9.152218, 45.502509], [9.137744, 45.502509] ] ] } }, { "type": "Feature", "properties": { "value": 36, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.137744, 45.516983], [9.137744, 45.531456], [9.152218, 45.531456], [9.152218, 45.516983], [9.137744, 45.516983] ] ] } }, { "type": "Feature", "properties": { "value": 8, "stroke": "#ebf5ff", "fill": "#ebf5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.152218, 45.444617], [9.152218, 45.45909], [9.166691, 45.45909], [9.166691, 45.444617], [9.152218, 45.444617] ] ] } }, { "type": "Feature", "properties": { "value": 5, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.152218, 45.45909], [9.152218, 45.473563], [9.166691, 45.473563], [9.166691, 45.45909], [9.152218, 45.45909] ] ] } }, { "type": "Feature", "properties": { "value": 7, "stroke": "#f0f8ff", "fill": "#f0f8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.152218, 45.473563], [9.152218, 45.488036], [9.166691, 45.488036], [9.166691, 45.473563], [9.152218, 45.473563] ] ] } }, { "type": "Feature", "properties": { "value": 12, "stroke": "#cce7ff", "fill": "#cce7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.152218, 45.488036], [9.152218, 45.502509], [9.166691, 45.502509], [9.166691, 45.488036], [9.152218, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 20, "stroke": "#8fc9ff", "fill": "#8fc9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.152218, 45.502509], [9.152218, 45.516983], [9.166691, 45.516983], [9.166691, 45.502509], [9.152218, 45.502509] ] ] } }, { "type": "Feature", "properties": { "value": 42, "stroke": "#007aeb", "fill": "#007aeb", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.152218, 45.516983], [9.152218, 45.531456], [9.166691, 45.531456], [9.166691, 45.516983], [9.152218, 45.516983] ] ] } }, { "type": "Feature", "properties": { "value": 10, "stroke": "#dbeeff", "fill": "#dbeeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.166691, 45.444617], [9.166691, 45.45909], [9.181164, 45.45909], [9.181164, 45.444617], [9.166691, 45.444617] ] ] } }, { "type": "Feature", "properties": { "value": 8, "stroke": "#ebf5ff", "fill": "#ebf5ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.166691, 45.45909], [9.166691, 45.473563], [9.181164, 45.473563], [9.181164, 45.45909], [9.166691, 45.45909] ] ] } }, { "type": "Feature", "properties": { "value": 10, "stroke": "#dbeeff", "fill": "#dbeeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.166691, 45.473563], [9.166691, 45.488036], [9.181164, 45.488036], [9.181164, 45.473563], [9.166691, 45.473563] ] ] } }, { "type": "Feature", "properties": { "value": 11, "stroke": "#d1e9ff", "fill": "#d1e9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.166691, 45.488036], [9.166691, 45.502509], [9.181164, 45.502509], [9.181164, 45.488036], [9.166691, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 18, "stroke": "#9ed1ff", "fill": "#9ed1ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.166691, 45.502509], [9.166691, 45.516983], [9.181164, 45.516983], [9.181164, 45.502509], [9.166691, 45.502509] ] ] } }, { "type": "Feature", "properties": { "value": 55, "stroke": "#004a8f", "fill": "#004a8f", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.166691, 45.516983], [9.166691, 45.531456], [9.181164, 45.531456], [9.181164, 45.516983], [9.166691, 45.516983] ] ] } }, { "type": "Feature", "properties": { "value": 11, "stroke": "#d1e9ff", "fill": "#d1e9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.181164, 45.444617], [9.181164, 45.45909], [9.195637, 45.45909], [9.195637, 45.444617], [9.181164, 45.444617] ] ] } }, { "type": "Feature", "properties": { "value": 11, "stroke": "#d1e9ff", "fill": "#d1e9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.181164, 45.45909], [9.181164, 45.473563], [9.195637, 45.473563], [9.195637, 45.45909], [9.181164, 45.45909] ] ] } }, { "type": "Feature", "properties": { "value": 12, "stroke": "#cce7ff", "fill": "#cce7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.181164, 45.473563], [9.181164, 45.488036], [9.195637, 45.488036], [9.195637, 45.473563], [9.181164, 45.473563] ] ] } }, { "type": "Feature", "properties": { "value": 13, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.181164, 45.488036], [9.181164, 45.502509], [9.195637, 45.502509], [9.195637, 45.488036], [9.181164, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 24, "stroke": "#70bbff", "fill": "#70bbff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.181164, 45.502509], [9.181164, 45.516983], [9.195637, 45.516983], [9.195637, 45.502509], [9.181164, 45.502509] ] ] } }, { "type": "Feature", "properties": { "value": 72, "stroke": "#00080f", "fill": "#00080f", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.181164, 45.516983], [9.181164, 45.531456], [9.195637, 45.531456], [9.195637, 45.516983], [9.181164, 45.516983] ] ] } }, { "type": "Feature", "properties": { "value": 13, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.195637, 45.444617], [9.195637, 45.45909], [9.21011, 45.45909], [9.21011, 45.444617], [9.195637, 45.444617] ] ] } }, { "type": "Feature", "properties": { "value": 13, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.195637, 45.45909], [9.195637, 45.473563], [9.21011, 45.473563], [9.21011, 45.45909], [9.195637, 45.45909] ] ] } }, { "type": "Feature", "properties": { "value": 13, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.195637, 45.473563], [9.195637, 45.488036], [9.21011, 45.488036], [9.21011, 45.473563], [9.195637, 45.473563] ] ] } }, { "type": "Feature", "properties": { "value": 16, "stroke": "#add8ff", "fill": "#add8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.195637, 45.488036], [9.195637, 45.502509], [9.21011, 45.502509], [9.21011, 45.488036], [9.195637, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 31, "stroke": "#3da2ff", "fill": "#3da2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.195637, 45.502509], [9.195637, 45.516983], [9.21011, 45.516983], [9.21011, 45.502509], [9.195637, 45.502509] ] ] } }, { "type": "Feature", "properties": { "value": 74, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.195637, 45.516983], [9.195637, 45.531456], [9.21011, 45.531456], [9.21011, 45.516983], [9.195637, 45.516983] ] ] } }, { "type": "Feature", "properties": { "value": 14, "stroke": "#bddfff", "fill": "#bddfff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.21011, 45.444617], [9.21011, 45.45909], [9.224583, 45.45909], [9.224583, 45.444617], [9.21011, 45.444617] ] ] } }, { "type": "Feature", "properties": { "value": 13, "stroke": "#c2e2ff", "fill": "#c2e2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.21011, 45.45909], [9.21011, 45.473563], [9.224583, 45.473563], [9.224583, 45.45909], [9.21011, 45.45909] ] ] } }, { "type": "Feature", "properties": { "value": 11, "stroke": "#d1e9ff", "fill": "#d1e9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.21011, 45.473563], [9.21011, 45.488036], [9.224583, 45.488036], [9.224583, 45.473563], [9.21011, 45.473563] ] ] } }, { "type": "Feature", "properties": { "value": 11, "stroke": "#d1e9ff", "fill": "#d1e9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.21011, 45.488036], [9.21011, 45.502509], [9.224583, 45.502509], [9.224583, 45.488036], [9.21011, 45.488036] ] ] } }, { "type": "Feature", "properties": { "value": 26, "stroke": "#66b6ff", "fill": "#66b6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.21011, 45.502509], [9.21011, 45.516983], [9.224583, 45.516983], [9.224583, 45.502509], [9.21011, 45.502509] ] ] } }, { "type": "Feature", "properties": { "value": 60, "stroke": "#003566", "fill": "#003566", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [9.21011, 45.516983], [9.21011, 45.531456], [9.224583, 45.531456], [9.224583, 45.516983], [9.21011, 45.516983] ] ] } } ] } ================================================ FILE: packages/turf-interpolate/test/out/hex-zValue-bbox.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.332553, 53.373153], [-6.338615, 53.366886], [-6.350739, 53.366886], [-6.3568, 53.373153], [-6.350739, 53.37942], [-6.338615, 53.37942], [-6.332553, 53.373153] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d1e9ff", "fill": "#d1e9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.332553, 53.360619], [-6.338615, 53.354352], [-6.350739, 53.354352], [-6.3568, 53.360619], [-6.350739, 53.366886], [-6.338615, 53.366886], [-6.332553, 53.360619] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d1e9ff", "fill": "#d1e9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.332553, 53.348085], [-6.338615, 53.341818], [-6.350739, 53.341818], [-6.3568, 53.348085], [-6.350739, 53.354352], [-6.338615, 53.354352], [-6.332553, 53.348085] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.332553, 53.335551], [-6.338615, 53.329284], [-6.350739, 53.329284], [-6.3568, 53.335551], [-6.350739, 53.341818], [-6.338615, 53.341818], [-6.332553, 53.335551] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#47a7ff", "fill": "#47a7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.332553, 53.323016], [-6.338615, 53.316749], [-6.350739, 53.316749], [-6.3568, 53.323016], [-6.350739, 53.329284], [-6.338615, 53.329284], [-6.332553, 53.323016] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.314368, 53.37942], [-6.32043, 53.373153], [-6.332553, 53.373153], [-6.338615, 53.37942], [-6.332553, 53.385687], [-6.32043, 53.385687], [-6.314368, 53.37942] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d1e9ff", "fill": "#d1e9ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.314368, 53.366886], [-6.32043, 53.360619], [-6.332553, 53.360619], [-6.338615, 53.366886], [-6.332553, 53.373153], [-6.32043, 53.373153], [-6.314368, 53.366886] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.314368, 53.354352], [-6.32043, 53.348085], [-6.332553, 53.348085], [-6.338615, 53.354352], [-6.332553, 53.360619], [-6.32043, 53.360619], [-6.314368, 53.354352] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a3d3ff", "fill": "#a3d3ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.314368, 53.341818], [-6.32043, 53.335551], [-6.332553, 53.335551], [-6.338615, 53.341818], [-6.332553, 53.348085], [-6.32043, 53.348085], [-6.314368, 53.341818] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#47a7ff", "fill": "#47a7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.314368, 53.329284], [-6.32043, 53.323016], [-6.332553, 53.323016], [-6.338615, 53.329284], [-6.332553, 53.335551], [-6.32043, 53.335551], [-6.314368, 53.329284] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#47a7ff", "fill": "#47a7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.296183, 53.373153], [-6.302245, 53.366886], [-6.314368, 53.366886], [-6.32043, 53.373153], [-6.314368, 53.37942], [-6.302245, 53.37942], [-6.296183, 53.373153] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.296183, 53.360619], [-6.302245, 53.354352], [-6.314368, 53.354352], [-6.32043, 53.360619], [-6.314368, 53.366886], [-6.302245, 53.366886], [-6.296183, 53.360619] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#75bdff", "fill": "#75bdff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.296183, 53.348085], [-6.302245, 53.341818], [-6.314368, 53.341818], [-6.32043, 53.348085], [-6.314368, 53.354352], [-6.302245, 53.354352], [-6.296183, 53.348085] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.296183, 53.335551], [-6.302245, 53.329284], [-6.314368, 53.329284], [-6.32043, 53.335551], [-6.314368, 53.341818], [-6.302245, 53.341818], [-6.296183, 53.335551] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0078e6", "fill": "#0078e6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.296183, 53.323016], [-6.302245, 53.316749], [-6.314368, 53.316749], [-6.32043, 53.323016], [-6.314368, 53.329284], [-6.302245, 53.329284], [-6.296183, 53.323016] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.277998, 53.37942], [-6.28406, 53.373153], [-6.296183, 53.373153], [-6.302245, 53.37942], [-6.296183, 53.385687], [-6.28406, 53.385687], [-6.277998, 53.37942] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.277998, 53.366886], [-6.28406, 53.360619], [-6.296183, 53.360619], [-6.302245, 53.366886], [-6.296183, 53.373153], [-6.28406, 53.373153], [-6.277998, 53.366886] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0078e6", "fill": "#0078e6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.277998, 53.354352], [-6.28406, 53.348085], [-6.296183, 53.348085], [-6.302245, 53.354352], [-6.296183, 53.360619], [-6.28406, 53.360619], [-6.277998, 53.354352] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0078e6", "fill": "#0078e6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.277998, 53.341818], [-6.28406, 53.335551], [-6.296183, 53.335551], [-6.302245, 53.341818], [-6.296183, 53.348085], [-6.28406, 53.348085], [-6.277998, 53.341818] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0060b8", "fill": "#0060b8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.277998, 53.329284], [-6.28406, 53.323016], [-6.296183, 53.323016], [-6.302245, 53.329284], [-6.296183, 53.335551], [-6.28406, 53.335551], [-6.277998, 53.329284] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#1a91ff", "fill": "#1a91ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.259813, 53.373153], [-6.265874, 53.366886], [-6.277998, 53.366886], [-6.28406, 53.373153], [-6.277998, 53.37942], [-6.265874, 53.37942], [-6.259813, 53.373153] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0060b8", "fill": "#0060b8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.259813, 53.360619], [-6.265874, 53.354352], [-6.277998, 53.354352], [-6.28406, 53.360619], [-6.277998, 53.366886], [-6.265874, 53.366886], [-6.259813, 53.360619] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0060b8", "fill": "#0060b8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.259813, 53.348085], [-6.265874, 53.341818], [-6.277998, 53.341818], [-6.28406, 53.348085], [-6.277998, 53.354352], [-6.265874, 53.354352], [-6.259813, 53.348085] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#00488a", "fill": "#00488a", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.259813, 53.335551], [-6.265874, 53.329284], [-6.277998, 53.329284], [-6.28406, 53.335551], [-6.277998, 53.341818], [-6.265874, 53.341818], [-6.259813, 53.335551] ] ] } }, { "type": "Feature", "properties": { "elevation": 12, "stroke": "#00182e", "fill": "#00182e", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.259813, 53.323016], [-6.265874, 53.316749], [-6.277998, 53.316749], [-6.28406, 53.323016], [-6.277998, 53.329284], [-6.265874, 53.329284], [-6.259813, 53.323016] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#47a7ff", "fill": "#47a7ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.241628, 53.37942], [-6.247689, 53.373153], [-6.259813, 53.373153], [-6.265874, 53.37942], [-6.259813, 53.385687], [-6.247689, 53.385687], [-6.241628, 53.37942] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#00305c", "fill": "#00305c", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.241628, 53.366886], [-6.247689, 53.360619], [-6.259813, 53.360619], [-6.265874, 53.366886], [-6.259813, 53.373153], [-6.247689, 53.373153], [-6.241628, 53.366886] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#00488a", "fill": "#00488a", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.241628, 53.354352], [-6.247689, 53.348085], [-6.259813, 53.348085], [-6.265874, 53.354352], [-6.259813, 53.360619], [-6.247689, 53.360619], [-6.241628, 53.354352] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#00488a", "fill": "#00488a", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.241628, 53.341818], [-6.247689, 53.335551], [-6.259813, 53.335551], [-6.265874, 53.341818], [-6.259813, 53.348085], [-6.247689, 53.348085], [-6.241628, 53.341818] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.241628, 53.329284], [-6.247689, 53.323016], [-6.259813, 53.323016], [-6.265874, 53.329284], [-6.259813, 53.335551], [-6.247689, 53.335551], [-6.241628, 53.329284] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0060b8", "fill": "#0060b8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.223442, 53.373153], [-6.229504, 53.366886], [-6.241628, 53.366886], [-6.247689, 53.373153], [-6.241628, 53.37942], [-6.229504, 53.37942], [-6.223442, 53.373153] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#00488a", "fill": "#00488a", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.223442, 53.360619], [-6.229504, 53.354352], [-6.241628, 53.354352], [-6.247689, 53.360619], [-6.241628, 53.366886], [-6.229504, 53.366886], [-6.223442, 53.360619] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#00488a", "fill": "#00488a", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.223442, 53.348085], [-6.229504, 53.341818], [-6.241628, 53.341818], [-6.247689, 53.348085], [-6.241628, 53.354352], [-6.229504, 53.354352], [-6.223442, 53.348085] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#00305c", "fill": "#00305c", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.223442, 53.335551], [-6.229504, 53.329284], [-6.241628, 53.329284], [-6.247689, 53.335551], [-6.241628, 53.341818], [-6.229504, 53.341818], [-6.223442, 53.335551] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.223442, 53.323016], [-6.229504, 53.316749], [-6.241628, 53.316749], [-6.247689, 53.323016], [-6.241628, 53.329284], [-6.229504, 53.329284], [-6.223442, 53.323016] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0078e6", "fill": "#0078e6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.205257, 53.37942], [-6.211319, 53.373153], [-6.223442, 53.373153], [-6.229504, 53.37942], [-6.223442, 53.385687], [-6.211319, 53.385687], [-6.205257, 53.37942] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0060b8", "fill": "#0060b8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.205257, 53.366886], [-6.211319, 53.360619], [-6.223442, 53.360619], [-6.229504, 53.366886], [-6.223442, 53.373153], [-6.211319, 53.373153], [-6.205257, 53.366886] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#00488a", "fill": "#00488a", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.205257, 53.354352], [-6.211319, 53.348085], [-6.223442, 53.348085], [-6.229504, 53.354352], [-6.223442, 53.360619], [-6.211319, 53.360619], [-6.205257, 53.354352] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#00488a", "fill": "#00488a", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.205257, 53.341818], [-6.211319, 53.335551], [-6.223442, 53.335551], [-6.229504, 53.341818], [-6.223442, 53.348085], [-6.211319, 53.348085], [-6.205257, 53.341818] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#00305c", "fill": "#00305c", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.205257, 53.329284], [-6.211319, 53.323016], [-6.223442, 53.323016], [-6.229504, 53.329284], [-6.223442, 53.335551], [-6.211319, 53.335551], [-6.205257, 53.329284] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0060b8", "fill": "#0060b8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.187072, 53.373153], [-6.193134, 53.366886], [-6.205257, 53.366886], [-6.211319, 53.373153], [-6.205257, 53.37942], [-6.193134, 53.37942], [-6.187072, 53.373153] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0060b8", "fill": "#0060b8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.187072, 53.360619], [-6.193134, 53.354352], [-6.205257, 53.354352], [-6.211319, 53.360619], [-6.205257, 53.366886], [-6.193134, 53.366886], [-6.187072, 53.360619] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#00488a", "fill": "#00488a", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.187072, 53.348085], [-6.193134, 53.341818], [-6.205257, 53.341818], [-6.211319, 53.348085], [-6.205257, 53.354352], [-6.193134, 53.354352], [-6.187072, 53.348085] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#00488a", "fill": "#00488a", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.187072, 53.335551], [-6.193134, 53.329284], [-6.205257, 53.329284], [-6.211319, 53.335551], [-6.205257, 53.341818], [-6.193134, 53.341818], [-6.187072, 53.335551] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#00305c", "fill": "#00305c", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.187072, 53.323016], [-6.193134, 53.316749], [-6.205257, 53.316749], [-6.211319, 53.323016], [-6.205257, 53.329284], [-6.193134, 53.329284], [-6.187072, 53.323016] ] ] } } ] } ================================================ FILE: packages/turf-interpolate/test/out/hex-zValue.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "elevation": 7, "stroke": "#0072db", "fill": "#0072db", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.303797, 53.331534], [-6.309858, 53.337801], [-6.321982, 53.337801], [-6.328043, 53.331534], [-6.321982, 53.325267], [-6.309858, 53.325267], [-6.303797, 53.331534] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.303797, 53.344068], [-6.309858, 53.350335], [-6.321982, 53.350335], [-6.328043, 53.344068], [-6.321982, 53.337801], [-6.309858, 53.337801], [-6.303797, 53.344068] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.303797, 53.356603], [-6.309858, 53.36287], [-6.321982, 53.36287], [-6.328043, 53.356603], [-6.321982, 53.350335], [-6.309858, 53.350335], [-6.303797, 53.356603] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#6bb8ff", "fill": "#6bb8ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.303797, 53.369137], [-6.309858, 53.375404], [-6.321982, 53.375404], [-6.328043, 53.369137], [-6.321982, 53.36287], [-6.309858, 53.36287], [-6.303797, 53.369137] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#004d94", "fill": "#004d94", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.285612, 53.337801], [-6.291674, 53.344068], [-6.303797, 53.344068], [-6.309858, 53.337801], [-6.303797, 53.331534], [-6.291674, 53.331534], [-6.285612, 53.337801] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#0072db", "fill": "#0072db", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.285612, 53.350335], [-6.291674, 53.356603], [-6.303797, 53.356603], [-6.309858, 53.350335], [-6.303797, 53.344068], [-6.291674, 53.344068], [-6.285612, 53.350335] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#0072db", "fill": "#0072db", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.285612, 53.36287], [-6.291674, 53.369137], [-6.303797, 53.369137], [-6.309858, 53.36287], [-6.303797, 53.356603], [-6.291674, 53.356603], [-6.285612, 53.36287] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.267427, 53.331534], [-6.273489, 53.337801], [-6.285612, 53.337801], [-6.291674, 53.331534], [-6.285612, 53.325267], [-6.273489, 53.325267], [-6.267427, 53.331534] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#002547", "fill": "#002547", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.267427, 53.344068], [-6.273489, 53.350335], [-6.285612, 53.350335], [-6.291674, 53.344068], [-6.285612, 53.337801], [-6.273489, 53.337801], [-6.267427, 53.344068] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#002547", "fill": "#002547", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.267427, 53.356603], [-6.273489, 53.36287], [-6.285612, 53.36287], [-6.291674, 53.356603], [-6.285612, 53.350335], [-6.273489, 53.350335], [-6.267427, 53.356603] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#004d94", "fill": "#004d94", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.267427, 53.369137], [-6.273489, 53.375404], [-6.285612, 53.375404], [-6.291674, 53.369137], [-6.285612, 53.36287], [-6.273489, 53.36287], [-6.267427, 53.369137] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.249243, 53.337801], [-6.255304, 53.344068], [-6.267427, 53.344068], [-6.273489, 53.337801], [-6.267427, 53.331534], [-6.255304, 53.331534], [-6.249243, 53.337801] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#002547", "fill": "#002547", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.249243, 53.350335], [-6.255304, 53.356603], [-6.267427, 53.356603], [-6.273489, 53.350335], [-6.267427, 53.344068], [-6.255304, 53.344068], [-6.249243, 53.350335] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.249243, 53.36287], [-6.255304, 53.369137], [-6.267427, 53.369137], [-6.273489, 53.36287], [-6.267427, 53.356603], [-6.255304, 53.356603], [-6.249243, 53.36287] ] ] } } ] } ================================================ FILE: packages/turf-interpolate/test/out/points-random.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "elevation": 102, "marker-color": "#0082fa" }, "geometry": { "type": "Point", "coordinates": [-75.920682, 39.121323] } }, { "type": "Feature", "properties": { "elevation": 99, "marker-color": "#0a8aff" }, "geometry": { "type": "Point", "coordinates": [-75.920682, 39.166289] } }, { "type": "Feature", "properties": { "elevation": 95, "marker-color": "#1a91ff" }, "geometry": { "type": "Point", "coordinates": [-75.920682, 39.211255] } }, { "type": "Feature", "properties": { "elevation": 91, "marker-color": "#2e9bff" }, "geometry": { "type": "Point", "coordinates": [-75.920682, 39.256221] } }, { "type": "Feature", "properties": { "elevation": 92, "marker-color": "#2999ff" }, "geometry": { "type": "Point", "coordinates": [-75.920682, 39.301187] } }, { "type": "Feature", "properties": { "elevation": 97, "marker-color": "#148fff" }, "geometry": { "type": "Point", "coordinates": [-75.920682, 39.346153] } }, { "type": "Feature", "properties": { "elevation": 103, "marker-color": "#0080f5" }, "geometry": { "type": "Point", "coordinates": [-75.920682, 39.391119] } }, { "type": "Feature", "properties": { "elevation": 108, "marker-color": "#0075e0" }, "geometry": { "type": "Point", "coordinates": [-75.920682, 39.436085] } }, { "type": "Feature", "properties": { "elevation": 112, "marker-color": "#006acc" }, "geometry": { "type": "Point", "coordinates": [-75.920682, 39.481051] } }, { "type": "Feature", "properties": { "elevation": 115, "marker-color": "#0065c2" }, "geometry": { "type": "Point", "coordinates": [-75.920682, 39.526017] } }, { "type": "Feature", "properties": { "elevation": 118, "marker-color": "#005db3" }, "geometry": { "type": "Point", "coordinates": [-75.920682, 39.570983] } }, { "type": "Feature", "properties": { "elevation": 120, "marker-color": "#0058a8" }, "geometry": { "type": "Point", "coordinates": [-75.920682, 39.615949] } }, { "type": "Feature", "properties": { "elevation": 121, "marker-color": "#0055a3" }, "geometry": { "type": "Point", "coordinates": [-75.920682, 39.660915] } }, { "type": "Feature", "properties": { "elevation": 121, "marker-color": "#0055a3" }, "geometry": { "type": "Point", "coordinates": [-75.920682, 39.705881] } }, { "type": "Feature", "properties": { "elevation": 119, "marker-color": "#005aad" }, "geometry": { "type": "Point", "coordinates": [-75.920682, 39.750847] } }, { "type": "Feature", "properties": { "elevation": 118, "marker-color": "#005db3" }, "geometry": { "type": "Point", "coordinates": [-75.920682, 39.795813] } }, { "type": "Feature", "properties": { "elevation": 117, "marker-color": "#0060b8" }, "geometry": { "type": "Point", "coordinates": [-75.920682, 39.840779] } }, { "type": "Feature", "properties": { "elevation": 118, "marker-color": "#005db3" }, "geometry": { "type": "Point", "coordinates": [-75.920682, 39.885745] } }, { "type": "Feature", "properties": { "elevation": 122, "marker-color": "#0055a3" }, "geometry": { "type": "Point", "coordinates": [-75.920682, 39.930711] } }, { "type": "Feature", "properties": { "elevation": 129, "marker-color": "#004280" }, "geometry": { "type": "Point", "coordinates": [-75.920682, 39.975677] } }, { "type": "Feature", "properties": { "elevation": 102, "marker-color": "#0082fa" }, "geometry": { "type": "Point", "coordinates": [-75.862731, 39.121323] } }, { "type": "Feature", "properties": { "elevation": 99, "marker-color": "#0a8aff" }, "geometry": { "type": "Point", "coordinates": [-75.862731, 39.166289] } }, { "type": "Feature", "properties": { "elevation": 93, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-75.862731, 39.211255] } }, { "type": "Feature", "properties": { "elevation": 81, "marker-color": "#5cb1ff" }, "geometry": { "type": "Point", "coordinates": [-75.862731, 39.256221] } }, { "type": "Feature", "properties": { "elevation": 77, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-75.862731, 39.301187] } }, { "type": "Feature", "properties": { "elevation": 94, "marker-color": "#1f94ff" }, "geometry": { "type": "Point", "coordinates": [-75.862731, 39.346153] } }, { "type": "Feature", "properties": { "elevation": 103, "marker-color": "#0080f5" }, "geometry": { "type": "Point", "coordinates": [-75.862731, 39.391119] } }, { "type": "Feature", "properties": { "elevation": 109, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-75.862731, 39.436085] } }, { "type": "Feature", "properties": { "elevation": 113, "marker-color": "#0068c7" }, "geometry": { "type": "Point", "coordinates": [-75.862731, 39.481051] } }, { "type": "Feature", "properties": { "elevation": 117, "marker-color": "#0060b8" }, "geometry": { "type": "Point", "coordinates": [-75.862731, 39.526017] } }, { "type": "Feature", "properties": { "elevation": 121, "marker-color": "#0055a3" }, "geometry": { "type": "Point", "coordinates": [-75.862731, 39.570983] } }, { "type": "Feature", "properties": { "elevation": 125, "marker-color": "#004d94" }, "geometry": { "type": "Point", "coordinates": [-75.862731, 39.615949] } }, { "type": "Feature", "properties": { "elevation": 127, "marker-color": "#00488a" }, "geometry": { "type": "Point", "coordinates": [-75.862731, 39.660915] } }, { "type": "Feature", "properties": { "elevation": 125, "marker-color": "#004d94" }, "geometry": { "type": "Point", "coordinates": [-75.862731, 39.705881] } }, { "type": "Feature", "properties": { "elevation": 121, "marker-color": "#0055a3" }, "geometry": { "type": "Point", "coordinates": [-75.862731, 39.750847] } }, { "type": "Feature", "properties": { "elevation": 118, "marker-color": "#005db3" }, "geometry": { "type": "Point", "coordinates": [-75.862731, 39.795813] } }, { "type": "Feature", "properties": { "elevation": 117, "marker-color": "#0060b8" }, "geometry": { "type": "Point", "coordinates": [-75.862731, 39.840779] } }, { "type": "Feature", "properties": { "elevation": 117, "marker-color": "#0060b8" }, "geometry": { "type": "Point", "coordinates": [-75.862731, 39.885745] } }, { "type": "Feature", "properties": { "elevation": 122, "marker-color": "#0055a3" }, "geometry": { "type": "Point", "coordinates": [-75.862731, 39.930711] } }, { "type": "Feature", "properties": { "elevation": 137, "marker-color": "#00305c" }, "geometry": { "type": "Point", "coordinates": [-75.862731, 39.975677] } }, { "type": "Feature", "properties": { "elevation": 103, "marker-color": "#0080f5" }, "geometry": { "type": "Point", "coordinates": [-75.80478, 39.121323] } }, { "type": "Feature", "properties": { "elevation": 100, "marker-color": "#0587ff" }, "geometry": { "type": "Point", "coordinates": [-75.80478, 39.166289] } }, { "type": "Feature", "properties": { "elevation": 94, "marker-color": "#1f94ff" }, "geometry": { "type": "Point", "coordinates": [-75.80478, 39.211255] } }, { "type": "Feature", "properties": { "elevation": 82, "marker-color": "#57aeff" }, "geometry": { "type": "Point", "coordinates": [-75.80478, 39.256221] } }, { "type": "Feature", "properties": { "elevation": 78, "marker-color": "#66b6ff" }, "geometry": { "type": "Point", "coordinates": [-75.80478, 39.301187] } }, { "type": "Feature", "properties": { "elevation": 96, "marker-color": "#148fff" }, "geometry": { "type": "Point", "coordinates": [-75.80478, 39.346153] } }, { "type": "Feature", "properties": { "elevation": 106, "marker-color": "#007aeb" }, "geometry": { "type": "Point", "coordinates": [-75.80478, 39.391119] } }, { "type": "Feature", "properties": { "elevation": 111, "marker-color": "#006dd1" }, "geometry": { "type": "Point", "coordinates": [-75.80478, 39.436085] } }, { "type": "Feature", "properties": { "elevation": 116, "marker-color": "#0062bd" }, "geometry": { "type": "Point", "coordinates": [-75.80478, 39.481051] } }, { "type": "Feature", "properties": { "elevation": 120, "marker-color": "#0058a8" }, "geometry": { "type": "Point", "coordinates": [-75.80478, 39.526017] } }, { "type": "Feature", "properties": { "elevation": 124, "marker-color": "#005099" }, "geometry": { "type": "Point", "coordinates": [-75.80478, 39.570983] } }, { "type": "Feature", "properties": { "elevation": 132, "marker-color": "#003d75" }, "geometry": { "type": "Point", "coordinates": [-75.80478, 39.615949] } }, { "type": "Feature", "properties": { "elevation": 142, "marker-color": "#002547" }, "geometry": { "type": "Point", "coordinates": [-75.80478, 39.660915] } }, { "type": "Feature", "properties": { "elevation": 131, "marker-color": "#00407a" }, "geometry": { "type": "Point", "coordinates": [-75.80478, 39.705881] } }, { "type": "Feature", "properties": { "elevation": 123, "marker-color": "#00529e" }, "geometry": { "type": "Point", "coordinates": [-75.80478, 39.750847] } }, { "type": "Feature", "properties": { "elevation": 118, "marker-color": "#005db3" }, "geometry": { "type": "Point", "coordinates": [-75.80478, 39.795813] } }, { "type": "Feature", "properties": { "elevation": 115, "marker-color": "#0065c2" }, "geometry": { "type": "Point", "coordinates": [-75.80478, 39.840779] } }, { "type": "Feature", "properties": { "elevation": 114, "marker-color": "#0068c7" }, "geometry": { "type": "Point", "coordinates": [-75.80478, 39.885745] } }, { "type": "Feature", "properties": { "elevation": 115, "marker-color": "#0065c2" }, "geometry": { "type": "Point", "coordinates": [-75.80478, 39.930711] } }, { "type": "Feature", "properties": { "elevation": 117, "marker-color": "#0060b8" }, "geometry": { "type": "Point", "coordinates": [-75.80478, 39.975677] } }, { "type": "Feature", "properties": { "elevation": 105, "marker-color": "#007aeb" }, "geometry": { "type": "Point", "coordinates": [-75.746829, 39.121323] } }, { "type": "Feature", "properties": { "elevation": 102, "marker-color": "#0082fa" }, "geometry": { "type": "Point", "coordinates": [-75.746829, 39.166289] } }, { "type": "Feature", "properties": { "elevation": 99, "marker-color": "#0a8aff" }, "geometry": { "type": "Point", "coordinates": [-75.746829, 39.211255] } }, { "type": "Feature", "properties": { "elevation": 96, "marker-color": "#148fff" }, "geometry": { "type": "Point", "coordinates": [-75.746829, 39.256221] } }, { "type": "Feature", "properties": { "elevation": 97, "marker-color": "#148fff" }, "geometry": { "type": "Point", "coordinates": [-75.746829, 39.301187] } }, { "type": "Feature", "properties": { "elevation": 104, "marker-color": "#007df0" }, "geometry": { "type": "Point", "coordinates": [-75.746829, 39.346153] } }, { "type": "Feature", "properties": { "elevation": 110, "marker-color": "#0070d6" }, "geometry": { "type": "Point", "coordinates": [-75.746829, 39.391119] } }, { "type": "Feature", "properties": { "elevation": 115, "marker-color": "#0065c2" }, "geometry": { "type": "Point", "coordinates": [-75.746829, 39.436085] } }, { "type": "Feature", "properties": { "elevation": 119, "marker-color": "#005aad" }, "geometry": { "type": "Point", "coordinates": [-75.746829, 39.481051] } }, { "type": "Feature", "properties": { "elevation": 122, "marker-color": "#0055a3" }, "geometry": { "type": "Point", "coordinates": [-75.746829, 39.526017] } }, { "type": "Feature", "properties": { "elevation": 126, "marker-color": "#004a8f" }, "geometry": { "type": "Point", "coordinates": [-75.746829, 39.570983] } }, { "type": "Feature", "properties": { "elevation": 134, "marker-color": "#00386b" }, "geometry": { "type": "Point", "coordinates": [-75.746829, 39.615949] } }, { "type": "Feature", "properties": { "elevation": 148, "marker-color": "#00182e" }, "geometry": { "type": "Point", "coordinates": [-75.746829, 39.660915] } }, { "type": "Feature", "properties": { "elevation": 132, "marker-color": "#003d75" }, "geometry": { "type": "Point", "coordinates": [-75.746829, 39.705881] } }, { "type": "Feature", "properties": { "elevation": 123, "marker-color": "#00529e" }, "geometry": { "type": "Point", "coordinates": [-75.746829, 39.750847] } }, { "type": "Feature", "properties": { "elevation": 117, "marker-color": "#0060b8" }, "geometry": { "type": "Point", "coordinates": [-75.746829, 39.795813] } }, { "type": "Feature", "properties": { "elevation": 113, "marker-color": "#0068c7" }, "geometry": { "type": "Point", "coordinates": [-75.746829, 39.840779] } }, { "type": "Feature", "properties": { "elevation": 110, "marker-color": "#0070d6" }, "geometry": { "type": "Point", "coordinates": [-75.746829, 39.885745] } }, { "type": "Feature", "properties": { "elevation": 108, "marker-color": "#0075e0" }, "geometry": { "type": "Point", "coordinates": [-75.746829, 39.930711] } }, { "type": "Feature", "properties": { "elevation": 106, "marker-color": "#007aeb" }, "geometry": { "type": "Point", "coordinates": [-75.746829, 39.975677] } }, { "type": "Feature", "properties": { "elevation": 108, "marker-color": "#0075e0" }, "geometry": { "type": "Point", "coordinates": [-75.688878, 39.121323] } }, { "type": "Feature", "properties": { "elevation": 105, "marker-color": "#007aeb" }, "geometry": { "type": "Point", "coordinates": [-75.688878, 39.166289] } }, { "type": "Feature", "properties": { "elevation": 102, "marker-color": "#0082fa" }, "geometry": { "type": "Point", "coordinates": [-75.688878, 39.211255] } }, { "type": "Feature", "properties": { "elevation": 102, "marker-color": "#0082fa" }, "geometry": { "type": "Point", "coordinates": [-75.688878, 39.256221] } }, { "type": "Feature", "properties": { "elevation": 106, "marker-color": "#007aeb" }, "geometry": { "type": "Point", "coordinates": [-75.688878, 39.301187] } }, { "type": "Feature", "properties": { "elevation": 112, "marker-color": "#006acc" }, "geometry": { "type": "Point", "coordinates": [-75.688878, 39.346153] } }, { "type": "Feature", "properties": { "elevation": 117, "marker-color": "#0060b8" }, "geometry": { "type": "Point", "coordinates": [-75.688878, 39.391119] } }, { "type": "Feature", "properties": { "elevation": 120, "marker-color": "#0058a8" }, "geometry": { "type": "Point", "coordinates": [-75.688878, 39.436085] } }, { "type": "Feature", "properties": { "elevation": 122, "marker-color": "#0055a3" }, "geometry": { "type": "Point", "coordinates": [-75.688878, 39.481051] } }, { "type": "Feature", "properties": { "elevation": 124, "marker-color": "#005099" }, "geometry": { "type": "Point", "coordinates": [-75.688878, 39.526017] } }, { "type": "Feature", "properties": { "elevation": 127, "marker-color": "#00488a" }, "geometry": { "type": "Point", "coordinates": [-75.688878, 39.570983] } }, { "type": "Feature", "properties": { "elevation": 129, "marker-color": "#004280" }, "geometry": { "type": "Point", "coordinates": [-75.688878, 39.615949] } }, { "type": "Feature", "properties": { "elevation": 130, "marker-color": "#004280" }, "geometry": { "type": "Point", "coordinates": [-75.688878, 39.660915] } }, { "type": "Feature", "properties": { "elevation": 126, "marker-color": "#004a8f" }, "geometry": { "type": "Point", "coordinates": [-75.688878, 39.705881] } }, { "type": "Feature", "properties": { "elevation": 120, "marker-color": "#0058a8" }, "geometry": { "type": "Point", "coordinates": [-75.688878, 39.750847] } }, { "type": "Feature", "properties": { "elevation": 115, "marker-color": "#0065c2" }, "geometry": { "type": "Point", "coordinates": [-75.688878, 39.795813] } }, { "type": "Feature", "properties": { "elevation": 110, "marker-color": "#0070d6" }, "geometry": { "type": "Point", "coordinates": [-75.688878, 39.840779] } }, { "type": "Feature", "properties": { "elevation": 105, "marker-color": "#007aeb" }, "geometry": { "type": "Point", "coordinates": [-75.688878, 39.885745] } }, { "type": "Feature", "properties": { "elevation": 100, "marker-color": "#0587ff" }, "geometry": { "type": "Point", "coordinates": [-75.688878, 39.930711] } }, { "type": "Feature", "properties": { "elevation": 95, "marker-color": "#1a91ff" }, "geometry": { "type": "Point", "coordinates": [-75.688878, 39.975677] } }, { "type": "Feature", "properties": { "elevation": 111, "marker-color": "#006dd1" }, "geometry": { "type": "Point", "coordinates": [-75.630927, 39.121323] } }, { "type": "Feature", "properties": { "elevation": 106, "marker-color": "#007aeb" }, "geometry": { "type": "Point", "coordinates": [-75.630927, 39.166289] } }, { "type": "Feature", "properties": { "elevation": 99, "marker-color": "#0a8aff" }, "geometry": { "type": "Point", "coordinates": [-75.630927, 39.211255] } }, { "type": "Feature", "properties": { "elevation": 99, "marker-color": "#0a8aff" }, "geometry": { "type": "Point", "coordinates": [-75.630927, 39.256221] } }, { "type": "Feature", "properties": { "elevation": 111, "marker-color": "#006dd1" }, "geometry": { "type": "Point", "coordinates": [-75.630927, 39.301187] } }, { "type": "Feature", "properties": { "elevation": 123, "marker-color": "#00529e" }, "geometry": { "type": "Point", "coordinates": [-75.630927, 39.346153] } }, { "type": "Feature", "properties": { "elevation": 126, "marker-color": "#004a8f" }, "geometry": { "type": "Point", "coordinates": [-75.630927, 39.391119] } }, { "type": "Feature", "properties": { "elevation": 125, "marker-color": "#004d94" }, "geometry": { "type": "Point", "coordinates": [-75.630927, 39.436085] } }, { "type": "Feature", "properties": { "elevation": 126, "marker-color": "#004a8f" }, "geometry": { "type": "Point", "coordinates": [-75.630927, 39.481051] } }, { "type": "Feature", "properties": { "elevation": 128, "marker-color": "#004585" }, "geometry": { "type": "Point", "coordinates": [-75.630927, 39.526017] } }, { "type": "Feature", "properties": { "elevation": 129, "marker-color": "#004280" }, "geometry": { "type": "Point", "coordinates": [-75.630927, 39.570983] } }, { "type": "Feature", "properties": { "elevation": 128, "marker-color": "#004585" }, "geometry": { "type": "Point", "coordinates": [-75.630927, 39.615949] } }, { "type": "Feature", "properties": { "elevation": 126, "marker-color": "#004a8f" }, "geometry": { "type": "Point", "coordinates": [-75.630927, 39.660915] } }, { "type": "Feature", "properties": { "elevation": 123, "marker-color": "#00529e" }, "geometry": { "type": "Point", "coordinates": [-75.630927, 39.705881] } }, { "type": "Feature", "properties": { "elevation": 118, "marker-color": "#005db3" }, "geometry": { "type": "Point", "coordinates": [-75.630927, 39.750847] } }, { "type": "Feature", "properties": { "elevation": 113, "marker-color": "#0068c7" }, "geometry": { "type": "Point", "coordinates": [-75.630927, 39.795813] } }, { "type": "Feature", "properties": { "elevation": 107, "marker-color": "#0078e6" }, "geometry": { "type": "Point", "coordinates": [-75.630927, 39.840779] } }, { "type": "Feature", "properties": { "elevation": 101, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-75.630927, 39.885745] } }, { "type": "Feature", "properties": { "elevation": 92, "marker-color": "#2999ff" }, "geometry": { "type": "Point", "coordinates": [-75.630927, 39.930711] } }, { "type": "Feature", "properties": { "elevation": 77, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-75.630927, 39.975677] } }, { "type": "Feature", "properties": { "elevation": 121, "marker-color": "#0055a3" }, "geometry": { "type": "Point", "coordinates": [-75.572976, 39.121323] } }, { "type": "Feature", "properties": { "elevation": 110, "marker-color": "#0070d6" }, "geometry": { "type": "Point", "coordinates": [-75.572976, 39.166289] } }, { "type": "Feature", "properties": { "elevation": 88, "marker-color": "#38a0ff" }, "geometry": { "type": "Point", "coordinates": [-75.572976, 39.211255] } }, { "type": "Feature", "properties": { "elevation": 77, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-75.572976, 39.256221] } }, { "type": "Feature", "properties": { "elevation": 113, "marker-color": "#0068c7" }, "geometry": { "type": "Point", "coordinates": [-75.572976, 39.301187] } }, { "type": "Feature", "properties": { "elevation": 150, "marker-color": "#001324" }, "geometry": { "type": "Point", "coordinates": [-75.572976, 39.346153] } }, { "type": "Feature", "properties": { "elevation": 139, "marker-color": "#002d57" }, "geometry": { "type": "Point", "coordinates": [-75.572976, 39.391119] } }, { "type": "Feature", "properties": { "elevation": 129, "marker-color": "#004280" }, "geometry": { "type": "Point", "coordinates": [-75.572976, 39.436085] } }, { "type": "Feature", "properties": { "elevation": 129, "marker-color": "#004280" }, "geometry": { "type": "Point", "coordinates": [-75.572976, 39.481051] } }, { "type": "Feature", "properties": { "elevation": 133, "marker-color": "#003b70" }, "geometry": { "type": "Point", "coordinates": [-75.572976, 39.526017] } }, { "type": "Feature", "properties": { "elevation": 134, "marker-color": "#00386b" }, "geometry": { "type": "Point", "coordinates": [-75.572976, 39.570983] } }, { "type": "Feature", "properties": { "elevation": 130, "marker-color": "#004280" }, "geometry": { "type": "Point", "coordinates": [-75.572976, 39.615949] } }, { "type": "Feature", "properties": { "elevation": 125, "marker-color": "#004d94" }, "geometry": { "type": "Point", "coordinates": [-75.572976, 39.660915] } }, { "type": "Feature", "properties": { "elevation": 121, "marker-color": "#0055a3" }, "geometry": { "type": "Point", "coordinates": [-75.572976, 39.705881] } }, { "type": "Feature", "properties": { "elevation": 116, "marker-color": "#0062bd" }, "geometry": { "type": "Point", "coordinates": [-75.572976, 39.750847] } }, { "type": "Feature", "properties": { "elevation": 111, "marker-color": "#006dd1" }, "geometry": { "type": "Point", "coordinates": [-75.572976, 39.795813] } }, { "type": "Feature", "properties": { "elevation": 105, "marker-color": "#007aeb" }, "geometry": { "type": "Point", "coordinates": [-75.572976, 39.840779] } }, { "type": "Feature", "properties": { "elevation": 98, "marker-color": "#0f8cff" }, "geometry": { "type": "Point", "coordinates": [-75.572976, 39.885745] } }, { "type": "Feature", "properties": { "elevation": 88, "marker-color": "#38a0ff" }, "geometry": { "type": "Point", "coordinates": [-75.572976, 39.930711] } }, { "type": "Feature", "properties": { "elevation": 74, "marker-color": "#7ac0ff" }, "geometry": { "type": "Point", "coordinates": [-75.572976, 39.975677] } }, { "type": "Feature", "properties": { "elevation": 131, "marker-color": "#00407a" }, "geometry": { "type": "Point", "coordinates": [-75.515025, 39.121323] } }, { "type": "Feature", "properties": { "elevation": 115, "marker-color": "#0065c2" }, "geometry": { "type": "Point", "coordinates": [-75.515025, 39.166289] } }, { "type": "Feature", "properties": { "elevation": 99, "marker-color": "#0a8aff" }, "geometry": { "type": "Point", "coordinates": [-75.515025, 39.211255] } }, { "type": "Feature", "properties": { "elevation": 96, "marker-color": "#148fff" }, "geometry": { "type": "Point", "coordinates": [-75.515025, 39.256221] } }, { "type": "Feature", "properties": { "elevation": 114, "marker-color": "#0068c7" }, "geometry": { "type": "Point", "coordinates": [-75.515025, 39.301187] } }, { "type": "Feature", "properties": { "elevation": 133, "marker-color": "#003b70" }, "geometry": { "type": "Point", "coordinates": [-75.515025, 39.346153] } }, { "type": "Feature", "properties": { "elevation": 133, "marker-color": "#003b70" }, "geometry": { "type": "Point", "coordinates": [-75.515025, 39.391119] } }, { "type": "Feature", "properties": { "elevation": 129, "marker-color": "#004280" }, "geometry": { "type": "Point", "coordinates": [-75.515025, 39.436085] } }, { "type": "Feature", "properties": { "elevation": 132, "marker-color": "#003d75" }, "geometry": { "type": "Point", "coordinates": [-75.515025, 39.481051] } }, { "type": "Feature", "properties": { "elevation": 138, "marker-color": "#00305c" }, "geometry": { "type": "Point", "coordinates": [-75.515025, 39.526017] } }, { "type": "Feature", "properties": { "elevation": 139, "marker-color": "#002d57" }, "geometry": { "type": "Point", "coordinates": [-75.515025, 39.570983] } }, { "type": "Feature", "properties": { "elevation": 132, "marker-color": "#003d75" }, "geometry": { "type": "Point", "coordinates": [-75.515025, 39.615949] } }, { "type": "Feature", "properties": { "elevation": 126, "marker-color": "#004a8f" }, "geometry": { "type": "Point", "coordinates": [-75.515025, 39.660915] } }, { "type": "Feature", "properties": { "elevation": 120, "marker-color": "#0058a8" }, "geometry": { "type": "Point", "coordinates": [-75.515025, 39.705881] } }, { "type": "Feature", "properties": { "elevation": 114, "marker-color": "#0068c7" }, "geometry": { "type": "Point", "coordinates": [-75.515025, 39.750847] } }, { "type": "Feature", "properties": { "elevation": 109, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-75.515025, 39.795813] } }, { "type": "Feature", "properties": { "elevation": 103, "marker-color": "#0080f5" }, "geometry": { "type": "Point", "coordinates": [-75.515025, 39.840779] } }, { "type": "Feature", "properties": { "elevation": 96, "marker-color": "#148fff" }, "geometry": { "type": "Point", "coordinates": [-75.515025, 39.885745] } }, { "type": "Feature", "properties": { "elevation": 89, "marker-color": "#38a0ff" }, "geometry": { "type": "Point", "coordinates": [-75.515025, 39.930711] } }, { "type": "Feature", "properties": { "elevation": 83, "marker-color": "#52acff" }, "geometry": { "type": "Point", "coordinates": [-75.515025, 39.975677] } }, { "type": "Feature", "properties": { "elevation": 131, "marker-color": "#00407a" }, "geometry": { "type": "Point", "coordinates": [-75.457075, 39.121323] } }, { "type": "Feature", "properties": { "elevation": 117, "marker-color": "#0060b8" }, "geometry": { "type": "Point", "coordinates": [-75.457075, 39.166289] } }, { "type": "Feature", "properties": { "elevation": 110, "marker-color": "#0070d6" }, "geometry": { "type": "Point", "coordinates": [-75.457075, 39.211255] } }, { "type": "Feature", "properties": { "elevation": 109, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-75.457075, 39.256221] } }, { "type": "Feature", "properties": { "elevation": 115, "marker-color": "#0065c2" }, "geometry": { "type": "Point", "coordinates": [-75.457075, 39.301187] } }, { "type": "Feature", "properties": { "elevation": 122, "marker-color": "#0055a3" }, "geometry": { "type": "Point", "coordinates": [-75.457075, 39.346153] } }, { "type": "Feature", "properties": { "elevation": 124, "marker-color": "#005099" }, "geometry": { "type": "Point", "coordinates": [-75.457075, 39.391119] } }, { "type": "Feature", "properties": { "elevation": 126, "marker-color": "#004a8f" }, "geometry": { "type": "Point", "coordinates": [-75.457075, 39.436085] } }, { "type": "Feature", "properties": { "elevation": 133, "marker-color": "#003b70" }, "geometry": { "type": "Point", "coordinates": [-75.457075, 39.481051] } }, { "type": "Feature", "properties": { "elevation": 154, "marker-color": "#000b14" }, "geometry": { "type": "Point", "coordinates": [-75.457075, 39.526017] } }, { "type": "Feature", "properties": { "elevation": 158, "marker-color": "#000000" }, "geometry": { "type": "Point", "coordinates": [-75.457075, 39.570983] } }, { "type": "Feature", "properties": { "elevation": 135, "marker-color": "#003566" }, "geometry": { "type": "Point", "coordinates": [-75.457075, 39.615949] } }, { "type": "Feature", "properties": { "elevation": 126, "marker-color": "#004a8f" }, "geometry": { "type": "Point", "coordinates": [-75.457075, 39.660915] } }, { "type": "Feature", "properties": { "elevation": 119, "marker-color": "#005aad" }, "geometry": { "type": "Point", "coordinates": [-75.457075, 39.705881] } }, { "type": "Feature", "properties": { "elevation": 113, "marker-color": "#0068c7" }, "geometry": { "type": "Point", "coordinates": [-75.457075, 39.750847] } }, { "type": "Feature", "properties": { "elevation": 107, "marker-color": "#0078e6" }, "geometry": { "type": "Point", "coordinates": [-75.457075, 39.795813] } }, { "type": "Feature", "properties": { "elevation": 101, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-75.457075, 39.840779] } }, { "type": "Feature", "properties": { "elevation": 93, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-75.457075, 39.885745] } }, { "type": "Feature", "properties": { "elevation": 85, "marker-color": "#47a7ff" }, "geometry": { "type": "Point", "coordinates": [-75.457075, 39.930711] } }, { "type": "Feature", "properties": { "elevation": 79, "marker-color": "#61b3ff" }, "geometry": { "type": "Point", "coordinates": [-75.457075, 39.975677] } }, { "type": "Feature", "properties": { "elevation": 121, "marker-color": "#0055a3" }, "geometry": { "type": "Point", "coordinates": [-75.399124, 39.121323] } }, { "type": "Feature", "properties": { "elevation": 115, "marker-color": "#0065c2" }, "geometry": { "type": "Point", "coordinates": [-75.399124, 39.166289] } }, { "type": "Feature", "properties": { "elevation": 112, "marker-color": "#006acc" }, "geometry": { "type": "Point", "coordinates": [-75.399124, 39.211255] } }, { "type": "Feature", "properties": { "elevation": 113, "marker-color": "#0068c7" }, "geometry": { "type": "Point", "coordinates": [-75.399124, 39.256221] } }, { "type": "Feature", "properties": { "elevation": 116, "marker-color": "#0062bd" }, "geometry": { "type": "Point", "coordinates": [-75.399124, 39.301187] } }, { "type": "Feature", "properties": { "elevation": 119, "marker-color": "#005aad" }, "geometry": { "type": "Point", "coordinates": [-75.399124, 39.346153] } }, { "type": "Feature", "properties": { "elevation": 119, "marker-color": "#005aad" }, "geometry": { "type": "Point", "coordinates": [-75.399124, 39.391119] } }, { "type": "Feature", "properties": { "elevation": 119, "marker-color": "#005aad" }, "geometry": { "type": "Point", "coordinates": [-75.399124, 39.436085] } }, { "type": "Feature", "properties": { "elevation": 127, "marker-color": "#00488a" }, "geometry": { "type": "Point", "coordinates": [-75.399124, 39.481051] } }, { "type": "Feature", "properties": { "elevation": 143, "marker-color": "#002342" }, "geometry": { "type": "Point", "coordinates": [-75.399124, 39.526017] } }, { "type": "Feature", "properties": { "elevation": 147, "marker-color": "#001b33" }, "geometry": { "type": "Point", "coordinates": [-75.399124, 39.570983] } }, { "type": "Feature", "properties": { "elevation": 133, "marker-color": "#003b70" }, "geometry": { "type": "Point", "coordinates": [-75.399124, 39.615949] } }, { "type": "Feature", "properties": { "elevation": 124, "marker-color": "#005099" }, "geometry": { "type": "Point", "coordinates": [-75.399124, 39.660915] } }, { "type": "Feature", "properties": { "elevation": 117, "marker-color": "#0060b8" }, "geometry": { "type": "Point", "coordinates": [-75.399124, 39.705881] } }, { "type": "Feature", "properties": { "elevation": 111, "marker-color": "#006dd1" }, "geometry": { "type": "Point", "coordinates": [-75.399124, 39.750847] } }, { "type": "Feature", "properties": { "elevation": 105, "marker-color": "#007aeb" }, "geometry": { "type": "Point", "coordinates": [-75.399124, 39.795813] } }, { "type": "Feature", "properties": { "elevation": 98, "marker-color": "#0f8cff" }, "geometry": { "type": "Point", "coordinates": [-75.399124, 39.840779] } }, { "type": "Feature", "properties": { "elevation": 90, "marker-color": "#339dff" }, "geometry": { "type": "Point", "coordinates": [-75.399124, 39.885745] } }, { "type": "Feature", "properties": { "elevation": 78, "marker-color": "#66b6ff" }, "geometry": { "type": "Point", "coordinates": [-75.399124, 39.930711] } }, { "type": "Feature", "properties": { "elevation": 61, "marker-color": "#b3daff" }, "geometry": { "type": "Point", "coordinates": [-75.399124, 39.975677] } }, { "type": "Feature", "properties": { "elevation": 108, "marker-color": "#0075e0" }, "geometry": { "type": "Point", "coordinates": [-75.341173, 39.121323] } }, { "type": "Feature", "properties": { "elevation": 109, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-75.341173, 39.166289] } }, { "type": "Feature", "properties": { "elevation": 111, "marker-color": "#006dd1" }, "geometry": { "type": "Point", "coordinates": [-75.341173, 39.211255] } }, { "type": "Feature", "properties": { "elevation": 115, "marker-color": "#0065c2" }, "geometry": { "type": "Point", "coordinates": [-75.341173, 39.256221] } }, { "type": "Feature", "properties": { "elevation": 119, "marker-color": "#005aad" }, "geometry": { "type": "Point", "coordinates": [-75.341173, 39.301187] } }, { "type": "Feature", "properties": { "elevation": 120, "marker-color": "#0058a8" }, "geometry": { "type": "Point", "coordinates": [-75.341173, 39.346153] } }, { "type": "Feature", "properties": { "elevation": 115, "marker-color": "#0065c2" }, "geometry": { "type": "Point", "coordinates": [-75.341173, 39.391119] } }, { "type": "Feature", "properties": { "elevation": 95, "marker-color": "#1a91ff" }, "geometry": { "type": "Point", "coordinates": [-75.341173, 39.436085] } }, { "type": "Feature", "properties": { "elevation": 117, "marker-color": "#0060b8" }, "geometry": { "type": "Point", "coordinates": [-75.341173, 39.481051] } }, { "type": "Feature", "properties": { "elevation": 127, "marker-color": "#00488a" }, "geometry": { "type": "Point", "coordinates": [-75.341173, 39.526017] } }, { "type": "Feature", "properties": { "elevation": 130, "marker-color": "#004280" }, "geometry": { "type": "Point", "coordinates": [-75.341173, 39.570983] } }, { "type": "Feature", "properties": { "elevation": 126, "marker-color": "#004a8f" }, "geometry": { "type": "Point", "coordinates": [-75.341173, 39.615949] } }, { "type": "Feature", "properties": { "elevation": 120, "marker-color": "#0058a8" }, "geometry": { "type": "Point", "coordinates": [-75.341173, 39.660915] } }, { "type": "Feature", "properties": { "elevation": 115, "marker-color": "#0065c2" }, "geometry": { "type": "Point", "coordinates": [-75.341173, 39.705881] } }, { "type": "Feature", "properties": { "elevation": 109, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-75.341173, 39.750847] } }, { "type": "Feature", "properties": { "elevation": 103, "marker-color": "#0080f5" }, "geometry": { "type": "Point", "coordinates": [-75.341173, 39.795813] } }, { "type": "Feature", "properties": { "elevation": 97, "marker-color": "#148fff" }, "geometry": { "type": "Point", "coordinates": [-75.341173, 39.840779] } }, { "type": "Feature", "properties": { "elevation": 88, "marker-color": "#38a0ff" }, "geometry": { "type": "Point", "coordinates": [-75.341173, 39.885745] } }, { "type": "Feature", "properties": { "elevation": 75, "marker-color": "#75bdff" }, "geometry": { "type": "Point", "coordinates": [-75.341173, 39.930711] } }, { "type": "Feature", "properties": { "elevation": 44, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-75.341173, 39.975677] } }, { "type": "Feature", "properties": { "elevation": 96, "marker-color": "#148fff" }, "geometry": { "type": "Point", "coordinates": [-75.283222, 39.121323] } }, { "type": "Feature", "properties": { "elevation": 101, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-75.283222, 39.166289] } }, { "type": "Feature", "properties": { "elevation": 109, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-75.283222, 39.211255] } }, { "type": "Feature", "properties": { "elevation": 117, "marker-color": "#0060b8" }, "geometry": { "type": "Point", "coordinates": [-75.283222, 39.256221] } }, { "type": "Feature", "properties": { "elevation": 125, "marker-color": "#004d94" }, "geometry": { "type": "Point", "coordinates": [-75.283222, 39.301187] } }, { "type": "Feature", "properties": { "elevation": 127, "marker-color": "#00488a" }, "geometry": { "type": "Point", "coordinates": [-75.283222, 39.346153] } }, { "type": "Feature", "properties": { "elevation": 119, "marker-color": "#005aad" }, "geometry": { "type": "Point", "coordinates": [-75.283222, 39.391119] } }, { "type": "Feature", "properties": { "elevation": 112, "marker-color": "#006acc" }, "geometry": { "type": "Point", "coordinates": [-75.283222, 39.436085] } }, { "type": "Feature", "properties": { "elevation": 116, "marker-color": "#0062bd" }, "geometry": { "type": "Point", "coordinates": [-75.283222, 39.481051] } }, { "type": "Feature", "properties": { "elevation": 121, "marker-color": "#0055a3" }, "geometry": { "type": "Point", "coordinates": [-75.283222, 39.526017] } }, { "type": "Feature", "properties": { "elevation": 122, "marker-color": "#0055a3" }, "geometry": { "type": "Point", "coordinates": [-75.283222, 39.570983] } }, { "type": "Feature", "properties": { "elevation": 120, "marker-color": "#0058a8" }, "geometry": { "type": "Point", "coordinates": [-75.283222, 39.615949] } }, { "type": "Feature", "properties": { "elevation": 117, "marker-color": "#0060b8" }, "geometry": { "type": "Point", "coordinates": [-75.283222, 39.660915] } }, { "type": "Feature", "properties": { "elevation": 112, "marker-color": "#006acc" }, "geometry": { "type": "Point", "coordinates": [-75.283222, 39.705881] } }, { "type": "Feature", "properties": { "elevation": 107, "marker-color": "#0078e6" }, "geometry": { "type": "Point", "coordinates": [-75.283222, 39.750847] } }, { "type": "Feature", "properties": { "elevation": 102, "marker-color": "#0082fa" }, "geometry": { "type": "Point", "coordinates": [-75.283222, 39.795813] } }, { "type": "Feature", "properties": { "elevation": 96, "marker-color": "#148fff" }, "geometry": { "type": "Point", "coordinates": [-75.283222, 39.840779] } }, { "type": "Feature", "properties": { "elevation": 89, "marker-color": "#38a0ff" }, "geometry": { "type": "Point", "coordinates": [-75.283222, 39.885745] } }, { "type": "Feature", "properties": { "elevation": 80, "marker-color": "#5cb1ff" }, "geometry": { "type": "Point", "coordinates": [-75.283222, 39.930711] } }, { "type": "Feature", "properties": { "elevation": 72, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-75.283222, 39.975677] } }, { "type": "Feature", "properties": { "elevation": 71, "marker-color": "#85c4ff" }, "geometry": { "type": "Point", "coordinates": [-75.225271, 39.121323] } }, { "type": "Feature", "properties": { "elevation": 92, "marker-color": "#2999ff" }, "geometry": { "type": "Point", "coordinates": [-75.225271, 39.166289] } }, { "type": "Feature", "properties": { "elevation": 106, "marker-color": "#007aeb" }, "geometry": { "type": "Point", "coordinates": [-75.225271, 39.211255] } }, { "type": "Feature", "properties": { "elevation": 118, "marker-color": "#005db3" }, "geometry": { "type": "Point", "coordinates": [-75.225271, 39.256221] } }, { "type": "Feature", "properties": { "elevation": 138, "marker-color": "#00305c" }, "geometry": { "type": "Point", "coordinates": [-75.225271, 39.301187] } }, { "type": "Feature", "properties": { "elevation": 151, "marker-color": "#00101f" }, "geometry": { "type": "Point", "coordinates": [-75.225271, 39.346153] } }, { "type": "Feature", "properties": { "elevation": 125, "marker-color": "#004d94" }, "geometry": { "type": "Point", "coordinates": [-75.225271, 39.391119] } }, { "type": "Feature", "properties": { "elevation": 119, "marker-color": "#005aad" }, "geometry": { "type": "Point", "coordinates": [-75.225271, 39.436085] } }, { "type": "Feature", "properties": { "elevation": 117, "marker-color": "#0060b8" }, "geometry": { "type": "Point", "coordinates": [-75.225271, 39.481051] } }, { "type": "Feature", "properties": { "elevation": 118, "marker-color": "#005db3" }, "geometry": { "type": "Point", "coordinates": [-75.225271, 39.526017] } }, { "type": "Feature", "properties": { "elevation": 118, "marker-color": "#005db3" }, "geometry": { "type": "Point", "coordinates": [-75.225271, 39.570983] } }, { "type": "Feature", "properties": { "elevation": 116, "marker-color": "#0062bd" }, "geometry": { "type": "Point", "coordinates": [-75.225271, 39.615949] } }, { "type": "Feature", "properties": { "elevation": 114, "marker-color": "#0068c7" }, "geometry": { "type": "Point", "coordinates": [-75.225271, 39.660915] } }, { "type": "Feature", "properties": { "elevation": 110, "marker-color": "#0070d6" }, "geometry": { "type": "Point", "coordinates": [-75.225271, 39.705881] } }, { "type": "Feature", "properties": { "elevation": 105, "marker-color": "#007aeb" }, "geometry": { "type": "Point", "coordinates": [-75.225271, 39.750847] } }, { "type": "Feature", "properties": { "elevation": 100, "marker-color": "#0587ff" }, "geometry": { "type": "Point", "coordinates": [-75.225271, 39.795813] } }, { "type": "Feature", "properties": { "elevation": 95, "marker-color": "#1a91ff" }, "geometry": { "type": "Point", "coordinates": [-75.225271, 39.840779] } }, { "type": "Feature", "properties": { "elevation": 89, "marker-color": "#38a0ff" }, "geometry": { "type": "Point", "coordinates": [-75.225271, 39.885745] } }, { "type": "Feature", "properties": { "elevation": 84, "marker-color": "#4daaff" }, "geometry": { "type": "Point", "coordinates": [-75.225271, 39.930711] } }, { "type": "Feature", "properties": { "elevation": 81, "marker-color": "#5cb1ff" }, "geometry": { "type": "Point", "coordinates": [-75.225271, 39.975677] } }, { "type": "Feature", "properties": { "elevation": 85, "marker-color": "#47a7ff" }, "geometry": { "type": "Point", "coordinates": [-75.16732, 39.121323] } }, { "type": "Feature", "properties": { "elevation": 95, "marker-color": "#1a91ff" }, "geometry": { "type": "Point", "coordinates": [-75.16732, 39.166289] } }, { "type": "Feature", "properties": { "elevation": 106, "marker-color": "#007aeb" }, "geometry": { "type": "Point", "coordinates": [-75.16732, 39.211255] } }, { "type": "Feature", "properties": { "elevation": 116, "marker-color": "#0062bd" }, "geometry": { "type": "Point", "coordinates": [-75.16732, 39.256221] } }, { "type": "Feature", "properties": { "elevation": 128, "marker-color": "#004585" }, "geometry": { "type": "Point", "coordinates": [-75.16732, 39.301187] } }, { "type": "Feature", "properties": { "elevation": 132, "marker-color": "#003d75" }, "geometry": { "type": "Point", "coordinates": [-75.16732, 39.346153] } }, { "type": "Feature", "properties": { "elevation": 124, "marker-color": "#005099" }, "geometry": { "type": "Point", "coordinates": [-75.16732, 39.391119] } }, { "type": "Feature", "properties": { "elevation": 119, "marker-color": "#005aad" }, "geometry": { "type": "Point", "coordinates": [-75.16732, 39.436085] } }, { "type": "Feature", "properties": { "elevation": 117, "marker-color": "#0060b8" }, "geometry": { "type": "Point", "coordinates": [-75.16732, 39.481051] } }, { "type": "Feature", "properties": { "elevation": 116, "marker-color": "#0062bd" }, "geometry": { "type": "Point", "coordinates": [-75.16732, 39.526017] } }, { "type": "Feature", "properties": { "elevation": 115, "marker-color": "#0065c2" }, "geometry": { "type": "Point", "coordinates": [-75.16732, 39.570983] } }, { "type": "Feature", "properties": { "elevation": 114, "marker-color": "#0068c7" }, "geometry": { "type": "Point", "coordinates": [-75.16732, 39.615949] } }, { "type": "Feature", "properties": { "elevation": 111, "marker-color": "#006dd1" }, "geometry": { "type": "Point", "coordinates": [-75.16732, 39.660915] } }, { "type": "Feature", "properties": { "elevation": 108, "marker-color": "#0075e0" }, "geometry": { "type": "Point", "coordinates": [-75.16732, 39.705881] } }, { "type": "Feature", "properties": { "elevation": 103, "marker-color": "#0080f5" }, "geometry": { "type": "Point", "coordinates": [-75.16732, 39.750847] } }, { "type": "Feature", "properties": { "elevation": 98, "marker-color": "#0f8cff" }, "geometry": { "type": "Point", "coordinates": [-75.16732, 39.795813] } }, { "type": "Feature", "properties": { "elevation": 92, "marker-color": "#2999ff" }, "geometry": { "type": "Point", "coordinates": [-75.16732, 39.840779] } }, { "type": "Feature", "properties": { "elevation": 87, "marker-color": "#3da2ff" }, "geometry": { "type": "Point", "coordinates": [-75.16732, 39.885745] } }, { "type": "Feature", "properties": { "elevation": 83, "marker-color": "#52acff" }, "geometry": { "type": "Point", "coordinates": [-75.16732, 39.930711] } }, { "type": "Feature", "properties": { "elevation": 82, "marker-color": "#57aeff" }, "geometry": { "type": "Point", "coordinates": [-75.16732, 39.975677] } }, { "type": "Feature", "properties": { "elevation": 97, "marker-color": "#148fff" }, "geometry": { "type": "Point", "coordinates": [-75.109369, 39.121323] } }, { "type": "Feature", "properties": { "elevation": 101, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-75.109369, 39.166289] } }, { "type": "Feature", "properties": { "elevation": 107, "marker-color": "#0078e6" }, "geometry": { "type": "Point", "coordinates": [-75.109369, 39.211255] } }, { "type": "Feature", "properties": { "elevation": 114, "marker-color": "#0068c7" }, "geometry": { "type": "Point", "coordinates": [-75.109369, 39.256221] } }, { "type": "Feature", "properties": { "elevation": 119, "marker-color": "#005aad" }, "geometry": { "type": "Point", "coordinates": [-75.109369, 39.301187] } }, { "type": "Feature", "properties": { "elevation": 122, "marker-color": "#0055a3" }, "geometry": { "type": "Point", "coordinates": [-75.109369, 39.346153] } }, { "type": "Feature", "properties": { "elevation": 120, "marker-color": "#0058a8" }, "geometry": { "type": "Point", "coordinates": [-75.109369, 39.391119] } }, { "type": "Feature", "properties": { "elevation": 118, "marker-color": "#005db3" }, "geometry": { "type": "Point", "coordinates": [-75.109369, 39.436085] } }, { "type": "Feature", "properties": { "elevation": 116, "marker-color": "#0062bd" }, "geometry": { "type": "Point", "coordinates": [-75.109369, 39.481051] } }, { "type": "Feature", "properties": { "elevation": 115, "marker-color": "#0065c2" }, "geometry": { "type": "Point", "coordinates": [-75.109369, 39.526017] } }, { "type": "Feature", "properties": { "elevation": 114, "marker-color": "#0068c7" }, "geometry": { "type": "Point", "coordinates": [-75.109369, 39.570983] } }, { "type": "Feature", "properties": { "elevation": 112, "marker-color": "#006acc" }, "geometry": { "type": "Point", "coordinates": [-75.109369, 39.615949] } }, { "type": "Feature", "properties": { "elevation": 109, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-75.109369, 39.660915] } }, { "type": "Feature", "properties": { "elevation": 106, "marker-color": "#007aeb" }, "geometry": { "type": "Point", "coordinates": [-75.109369, 39.705881] } }, { "type": "Feature", "properties": { "elevation": 102, "marker-color": "#0082fa" }, "geometry": { "type": "Point", "coordinates": [-75.109369, 39.750847] } }, { "type": "Feature", "properties": { "elevation": 96, "marker-color": "#148fff" }, "geometry": { "type": "Point", "coordinates": [-75.109369, 39.795813] } }, { "type": "Feature", "properties": { "elevation": 89, "marker-color": "#38a0ff" }, "geometry": { "type": "Point", "coordinates": [-75.109369, 39.840779] } }, { "type": "Feature", "properties": { "elevation": 80, "marker-color": "#5cb1ff" }, "geometry": { "type": "Point", "coordinates": [-75.109369, 39.885745] } }, { "type": "Feature", "properties": { "elevation": 75, "marker-color": "#75bdff" }, "geometry": { "type": "Point", "coordinates": [-75.109369, 39.930711] } }, { "type": "Feature", "properties": { "elevation": 80, "marker-color": "#5cb1ff" }, "geometry": { "type": "Point", "coordinates": [-75.109369, 39.975677] } }, { "type": "Feature", "properties": { "elevation": 102, "marker-color": "#0082fa" }, "geometry": { "type": "Point", "coordinates": [-75.051418, 39.121323] } }, { "type": "Feature", "properties": { "elevation": 104, "marker-color": "#007df0" }, "geometry": { "type": "Point", "coordinates": [-75.051418, 39.166289] } }, { "type": "Feature", "properties": { "elevation": 108, "marker-color": "#0075e0" }, "geometry": { "type": "Point", "coordinates": [-75.051418, 39.211255] } }, { "type": "Feature", "properties": { "elevation": 112, "marker-color": "#006acc" }, "geometry": { "type": "Point", "coordinates": [-75.051418, 39.256221] } }, { "type": "Feature", "properties": { "elevation": 115, "marker-color": "#0065c2" }, "geometry": { "type": "Point", "coordinates": [-75.051418, 39.301187] } }, { "type": "Feature", "properties": { "elevation": 117, "marker-color": "#0060b8" }, "geometry": { "type": "Point", "coordinates": [-75.051418, 39.346153] } }, { "type": "Feature", "properties": { "elevation": 117, "marker-color": "#0060b8" }, "geometry": { "type": "Point", "coordinates": [-75.051418, 39.391119] } }, { "type": "Feature", "properties": { "elevation": 116, "marker-color": "#0062bd" }, "geometry": { "type": "Point", "coordinates": [-75.051418, 39.436085] } }, { "type": "Feature", "properties": { "elevation": 115, "marker-color": "#0065c2" }, "geometry": { "type": "Point", "coordinates": [-75.051418, 39.481051] } }, { "type": "Feature", "properties": { "elevation": 113, "marker-color": "#0068c7" }, "geometry": { "type": "Point", "coordinates": [-75.051418, 39.526017] } }, { "type": "Feature", "properties": { "elevation": 112, "marker-color": "#006acc" }, "geometry": { "type": "Point", "coordinates": [-75.051418, 39.570983] } }, { "type": "Feature", "properties": { "elevation": 110, "marker-color": "#0070d6" }, "geometry": { "type": "Point", "coordinates": [-75.051418, 39.615949] } }, { "type": "Feature", "properties": { "elevation": 108, "marker-color": "#0075e0" }, "geometry": { "type": "Point", "coordinates": [-75.051418, 39.660915] } }, { "type": "Feature", "properties": { "elevation": 105, "marker-color": "#007aeb" }, "geometry": { "type": "Point", "coordinates": [-75.051418, 39.705881] } }, { "type": "Feature", "properties": { "elevation": 101, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-75.051418, 39.750847] } }, { "type": "Feature", "properties": { "elevation": 95, "marker-color": "#1a91ff" }, "geometry": { "type": "Point", "coordinates": [-75.051418, 39.795813] } }, { "type": "Feature", "properties": { "elevation": 87, "marker-color": "#3da2ff" }, "geometry": { "type": "Point", "coordinates": [-75.051418, 39.840779] } }, { "type": "Feature", "properties": { "elevation": 72, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-75.051418, 39.885745] } }, { "type": "Feature", "properties": { "elevation": 54, "marker-color": "#d1e9ff" }, "geometry": { "type": "Point", "coordinates": [-75.051418, 39.930711] } }, { "type": "Feature", "properties": { "elevation": 77, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-75.051418, 39.975677] } } ] } ================================================ FILE: packages/turf-interpolate/test/out/points1-weight-3.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 8, "marker-color": "#004d94" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 8, "marker-color": "#004d94" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 8, "marker-color": "#004d94" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 9, "marker-color": "#002547" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 9, "marker-color": "#002547" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 10, "marker-color": "#000000" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 10, "marker-color": "#000000" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 10, "marker-color": "#000000" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 8, "marker-color": "#004d94" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 8, "marker-color": "#004d94" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 9, "marker-color": "#002547" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 10, "marker-color": "#000000" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 10, "marker-color": "#000000" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 10, "marker-color": "#000000" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 8, "marker-color": "#004d94" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 8, "marker-color": "#004d94" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 9, "marker-color": "#002547" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 10, "marker-color": "#000000" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 10, "marker-color": "#000000" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 8, "marker-color": "#004d94" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 8, "marker-color": "#004d94" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 9, "marker-color": "#002547" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 9, "marker-color": "#002547" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 8, "marker-color": "#004d94" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 8, "marker-color": "#004d94" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 9, "marker-color": "#002547" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 8, "marker-color": "#004d94" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 8, "marker-color": "#004d94" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 8, "marker-color": "#004d94" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 8, "marker-color": "#004d94" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 8, "marker-color": "#004d94" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0072db" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 3, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 4, "marker-color": "#b8ddff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#6bb8ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#2496ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.671233] } } ] } ================================================ FILE: packages/turf-interpolate/test/out/points1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 8, "marker-color": "#004280" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 9, "marker-color": "#000000" }, "geometry": { "type": "Point", "coordinates": [-89.584192, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 8, "marker-color": "#004280" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 8, "marker-color": "#004280" }, "geometry": { "type": "Point", "coordinates": [-89.569716, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.555241, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.540765, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.52629, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.511815, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.497339, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.482864, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.468388, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.453913, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 7, "marker-color": "#0085ff" }, "geometry": { "type": "Point", "coordinates": [-89.439438, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.424962, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.410487, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.396012, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.381536, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.367061, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.352585, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.33811, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.323635, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.309159, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.294684, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.280208, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.265733, -0.671233] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -1.004115] } }, { "type": "Feature", "properties": { "pressure": 5, "marker-color": "#ffffff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.989642] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.975169] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.960696] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.946223] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.93175] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.917276] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.902803] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.88833] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.873857] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.859384] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.844911] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.830437] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.815964] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.801491] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.787018] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.772545] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.758072] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.743599] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.729125] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.714652] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.700179] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.685706] } }, { "type": "Feature", "properties": { "pressure": 6, "marker-color": "#80c2ff" }, "geometry": { "type": "Point", "coordinates": [-89.251258, -0.671233] } } ] } ================================================ FILE: packages/turf-interpolate/test/out/triangle-zValue.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.3198], [-6.328812, 53.322498], [-6.324295, 53.3198], [-6.328812, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.322498], [-6.324295, 53.322498], [-6.324295, 53.3198], [-6.328812, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.322498], [-6.324295, 53.325196], [-6.324295, 53.322498], [-6.328812, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.322498], [-6.328812, 53.325196], [-6.324295, 53.325196], [-6.328812, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.325196], [-6.328812, 53.327894], [-6.324295, 53.325196], [-6.328812, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.327894], [-6.324295, 53.327894], [-6.324295, 53.325196], [-6.328812, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.327894], [-6.324295, 53.330592], [-6.324295, 53.327894], [-6.328812, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.327894], [-6.328812, 53.330592], [-6.324295, 53.330592], [-6.328812, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.330592], [-6.328812, 53.33329], [-6.324295, 53.330592], [-6.328812, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.33329], [-6.324295, 53.33329], [-6.324295, 53.330592], [-6.328812, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.33329], [-6.324295, 53.335988], [-6.324295, 53.33329], [-6.328812, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.33329], [-6.328812, 53.335988], [-6.324295, 53.335988], [-6.328812, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.335988], [-6.328812, 53.338686], [-6.324295, 53.335988], [-6.328812, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.338686], [-6.324295, 53.338686], [-6.324295, 53.335988], [-6.328812, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.338686], [-6.324295, 53.341384], [-6.324295, 53.338686], [-6.328812, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.338686], [-6.328812, 53.341384], [-6.324295, 53.341384], [-6.328812, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.341384], [-6.328812, 53.344082], [-6.324295, 53.341384], [-6.328812, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.344082], [-6.324295, 53.344082], [-6.324295, 53.341384], [-6.328812, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.344082], [-6.324295, 53.34678], [-6.324295, 53.344082], [-6.328812, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.344082], [-6.328812, 53.34678], [-6.324295, 53.34678], [-6.328812, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.34678], [-6.328812, 53.349478], [-6.324295, 53.34678], [-6.328812, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.349478], [-6.324295, 53.349478], [-6.324295, 53.34678], [-6.328812, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.349478], [-6.324295, 53.352175], [-6.324295, 53.349478], [-6.328812, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.349478], [-6.328812, 53.352175], [-6.324295, 53.352175], [-6.328812, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.352175], [-6.328812, 53.354873], [-6.324295, 53.352175], [-6.328812, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.354873], [-6.324295, 53.354873], [-6.324295, 53.352175], [-6.328812, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.354873], [-6.324295, 53.357571], [-6.324295, 53.354873], [-6.328812, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.354873], [-6.328812, 53.357571], [-6.324295, 53.357571], [-6.328812, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.357571], [-6.328812, 53.360269], [-6.324295, 53.357571], [-6.328812, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.360269], [-6.324295, 53.360269], [-6.324295, 53.357571], [-6.328812, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.360269], [-6.324295, 53.362967], [-6.324295, 53.360269], [-6.328812, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.360269], [-6.328812, 53.362967], [-6.324295, 53.362967], [-6.328812, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.362967], [-6.328812, 53.365665], [-6.324295, 53.362967], [-6.328812, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.365665], [-6.324295, 53.365665], [-6.324295, 53.362967], [-6.328812, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.365665], [-6.324295, 53.368363], [-6.324295, 53.365665], [-6.328812, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.365665], [-6.328812, 53.368363], [-6.324295, 53.368363], [-6.328812, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.368363], [-6.328812, 53.371061], [-6.324295, 53.368363], [-6.328812, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.371061], [-6.324295, 53.371061], [-6.324295, 53.368363], [-6.328812, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.371061], [-6.324295, 53.373759], [-6.324295, 53.371061], [-6.328812, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.371061], [-6.328812, 53.373759], [-6.324295, 53.373759], [-6.328812, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.373759], [-6.328812, 53.376457], [-6.324295, 53.373759], [-6.328812, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.376457], [-6.324295, 53.376457], [-6.324295, 53.373759], [-6.328812, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.376457], [-6.324295, 53.379155], [-6.324295, 53.376457], [-6.328812, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.376457], [-6.328812, 53.379155], [-6.324295, 53.379155], [-6.328812, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.379155], [-6.328812, 53.381853], [-6.324295, 53.379155], [-6.328812, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.328812, 53.381853], [-6.324295, 53.381853], [-6.324295, 53.379155], [-6.328812, 53.381853] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.3198], [-6.324295, 53.322498], [-6.319779, 53.322498], [-6.324295, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.3198], [-6.319779, 53.322498], [-6.319779, 53.3198], [-6.324295, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.322498], [-6.324295, 53.325196], [-6.319779, 53.322498], [-6.324295, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.325196], [-6.319779, 53.325196], [-6.319779, 53.322498], [-6.324295, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.325196], [-6.324295, 53.327894], [-6.319779, 53.327894], [-6.324295, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.325196], [-6.319779, 53.327894], [-6.319779, 53.325196], [-6.324295, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.327894], [-6.324295, 53.330592], [-6.319779, 53.327894], [-6.324295, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.330592], [-6.319779, 53.330592], [-6.319779, 53.327894], [-6.324295, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.330592], [-6.324295, 53.33329], [-6.319779, 53.33329], [-6.324295, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.330592], [-6.319779, 53.33329], [-6.319779, 53.330592], [-6.324295, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.33329], [-6.324295, 53.335988], [-6.319779, 53.33329], [-6.324295, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.335988], [-6.319779, 53.335988], [-6.319779, 53.33329], [-6.324295, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.335988], [-6.324295, 53.338686], [-6.319779, 53.338686], [-6.324295, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.335988], [-6.319779, 53.338686], [-6.319779, 53.335988], [-6.324295, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.338686], [-6.324295, 53.341384], [-6.319779, 53.338686], [-6.324295, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.341384], [-6.319779, 53.341384], [-6.319779, 53.338686], [-6.324295, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.341384], [-6.324295, 53.344082], [-6.319779, 53.344082], [-6.324295, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.341384], [-6.319779, 53.344082], [-6.319779, 53.341384], [-6.324295, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.344082], [-6.324295, 53.34678], [-6.319779, 53.344082], [-6.324295, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.34678], [-6.319779, 53.34678], [-6.319779, 53.344082], [-6.324295, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.34678], [-6.324295, 53.349478], [-6.319779, 53.349478], [-6.324295, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.34678], [-6.319779, 53.349478], [-6.319779, 53.34678], [-6.324295, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.349478], [-6.324295, 53.352175], [-6.319779, 53.349478], [-6.324295, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.352175], [-6.319779, 53.352175], [-6.319779, 53.349478], [-6.324295, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.352175], [-6.324295, 53.354873], [-6.319779, 53.354873], [-6.324295, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.352175], [-6.319779, 53.354873], [-6.319779, 53.352175], [-6.324295, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.354873], [-6.324295, 53.357571], [-6.319779, 53.354873], [-6.324295, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.357571], [-6.319779, 53.357571], [-6.319779, 53.354873], [-6.324295, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.357571], [-6.324295, 53.360269], [-6.319779, 53.360269], [-6.324295, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.357571], [-6.319779, 53.360269], [-6.319779, 53.357571], [-6.324295, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.360269], [-6.324295, 53.362967], [-6.319779, 53.360269], [-6.324295, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.362967], [-6.319779, 53.362967], [-6.319779, 53.360269], [-6.324295, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.362967], [-6.324295, 53.365665], [-6.319779, 53.365665], [-6.324295, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.362967], [-6.319779, 53.365665], [-6.319779, 53.362967], [-6.324295, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.365665], [-6.324295, 53.368363], [-6.319779, 53.365665], [-6.324295, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.368363], [-6.319779, 53.368363], [-6.319779, 53.365665], [-6.324295, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.368363], [-6.324295, 53.371061], [-6.319779, 53.371061], [-6.324295, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.368363], [-6.319779, 53.371061], [-6.319779, 53.368363], [-6.324295, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.371061], [-6.324295, 53.373759], [-6.319779, 53.371061], [-6.324295, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.373759], [-6.319779, 53.373759], [-6.319779, 53.371061], [-6.324295, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.373759], [-6.324295, 53.376457], [-6.319779, 53.376457], [-6.324295, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.373759], [-6.319779, 53.376457], [-6.319779, 53.373759], [-6.324295, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.376457], [-6.324295, 53.379155], [-6.319779, 53.376457], [-6.324295, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.379155], [-6.319779, 53.379155], [-6.319779, 53.376457], [-6.324295, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.379155], [-6.324295, 53.381853], [-6.319779, 53.381853], [-6.324295, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.324295, 53.379155], [-6.319779, 53.381853], [-6.319779, 53.379155], [-6.324295, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.3198], [-6.319779, 53.322498], [-6.315262, 53.3198], [-6.319779, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.322498], [-6.315262, 53.322498], [-6.315262, 53.3198], [-6.319779, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.322498], [-6.315262, 53.325196], [-6.315262, 53.322498], [-6.319779, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.322498], [-6.319779, 53.325196], [-6.315262, 53.325196], [-6.319779, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.325196], [-6.319779, 53.327894], [-6.315262, 53.325196], [-6.319779, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.327894], [-6.315262, 53.327894], [-6.315262, 53.325196], [-6.319779, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.327894], [-6.315262, 53.330592], [-6.315262, 53.327894], [-6.319779, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.327894], [-6.319779, 53.330592], [-6.315262, 53.330592], [-6.319779, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.330592], [-6.319779, 53.33329], [-6.315262, 53.330592], [-6.319779, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.33329], [-6.315262, 53.33329], [-6.315262, 53.330592], [-6.319779, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.33329], [-6.315262, 53.335988], [-6.315262, 53.33329], [-6.319779, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.33329], [-6.319779, 53.335988], [-6.315262, 53.335988], [-6.319779, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.335988], [-6.319779, 53.338686], [-6.315262, 53.335988], [-6.319779, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.338686], [-6.315262, 53.338686], [-6.315262, 53.335988], [-6.319779, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.338686], [-6.315262, 53.341384], [-6.315262, 53.338686], [-6.319779, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.338686], [-6.319779, 53.341384], [-6.315262, 53.341384], [-6.319779, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.341384], [-6.319779, 53.344082], [-6.315262, 53.341384], [-6.319779, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.344082], [-6.315262, 53.344082], [-6.315262, 53.341384], [-6.319779, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.344082], [-6.315262, 53.34678], [-6.315262, 53.344082], [-6.319779, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.344082], [-6.319779, 53.34678], [-6.315262, 53.34678], [-6.319779, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.34678], [-6.319779, 53.349478], [-6.315262, 53.34678], [-6.319779, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.349478], [-6.315262, 53.349478], [-6.315262, 53.34678], [-6.319779, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.349478], [-6.315262, 53.352175], [-6.315262, 53.349478], [-6.319779, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.349478], [-6.319779, 53.352175], [-6.315262, 53.352175], [-6.319779, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.352175], [-6.319779, 53.354873], [-6.315262, 53.352175], [-6.319779, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.354873], [-6.315262, 53.354873], [-6.315262, 53.352175], [-6.319779, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.354873], [-6.315262, 53.357571], [-6.315262, 53.354873], [-6.319779, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.354873], [-6.319779, 53.357571], [-6.315262, 53.357571], [-6.319779, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.357571], [-6.319779, 53.360269], [-6.315262, 53.357571], [-6.319779, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.360269], [-6.315262, 53.360269], [-6.315262, 53.357571], [-6.319779, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.360269], [-6.315262, 53.362967], [-6.315262, 53.360269], [-6.319779, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.360269], [-6.319779, 53.362967], [-6.315262, 53.362967], [-6.319779, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.362967], [-6.319779, 53.365665], [-6.315262, 53.362967], [-6.319779, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.365665], [-6.315262, 53.365665], [-6.315262, 53.362967], [-6.319779, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.365665], [-6.315262, 53.368363], [-6.315262, 53.365665], [-6.319779, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.365665], [-6.319779, 53.368363], [-6.315262, 53.368363], [-6.319779, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.368363], [-6.319779, 53.371061], [-6.315262, 53.368363], [-6.319779, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.371061], [-6.315262, 53.371061], [-6.315262, 53.368363], [-6.319779, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.371061], [-6.315262, 53.373759], [-6.315262, 53.371061], [-6.319779, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.371061], [-6.319779, 53.373759], [-6.315262, 53.373759], [-6.319779, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.373759], [-6.319779, 53.376457], [-6.315262, 53.373759], [-6.319779, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.376457], [-6.315262, 53.376457], [-6.315262, 53.373759], [-6.319779, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.376457], [-6.315262, 53.379155], [-6.315262, 53.376457], [-6.319779, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.376457], [-6.319779, 53.379155], [-6.315262, 53.379155], [-6.319779, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.379155], [-6.319779, 53.381853], [-6.315262, 53.379155], [-6.319779, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.319779, 53.381853], [-6.315262, 53.381853], [-6.315262, 53.379155], [-6.319779, 53.381853] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.3198], [-6.315262, 53.322498], [-6.310745, 53.322498], [-6.315262, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.3198], [-6.310745, 53.322498], [-6.310745, 53.3198], [-6.315262, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.322498], [-6.315262, 53.325196], [-6.310745, 53.322498], [-6.315262, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.325196], [-6.310745, 53.325196], [-6.310745, 53.322498], [-6.315262, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.325196], [-6.315262, 53.327894], [-6.310745, 53.327894], [-6.315262, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.325196], [-6.310745, 53.327894], [-6.310745, 53.325196], [-6.315262, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.327894], [-6.315262, 53.330592], [-6.310745, 53.327894], [-6.315262, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.330592], [-6.310745, 53.330592], [-6.310745, 53.327894], [-6.315262, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.330592], [-6.315262, 53.33329], [-6.310745, 53.33329], [-6.315262, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.330592], [-6.310745, 53.33329], [-6.310745, 53.330592], [-6.315262, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.33329], [-6.315262, 53.335988], [-6.310745, 53.33329], [-6.315262, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.335988], [-6.310745, 53.335988], [-6.310745, 53.33329], [-6.315262, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.335988], [-6.315262, 53.338686], [-6.310745, 53.338686], [-6.315262, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.335988], [-6.310745, 53.338686], [-6.310745, 53.335988], [-6.315262, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.338686], [-6.315262, 53.341384], [-6.310745, 53.338686], [-6.315262, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.341384], [-6.310745, 53.341384], [-6.310745, 53.338686], [-6.315262, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.341384], [-6.315262, 53.344082], [-6.310745, 53.344082], [-6.315262, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.341384], [-6.310745, 53.344082], [-6.310745, 53.341384], [-6.315262, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.344082], [-6.315262, 53.34678], [-6.310745, 53.344082], [-6.315262, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.34678], [-6.310745, 53.34678], [-6.310745, 53.344082], [-6.315262, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.34678], [-6.315262, 53.349478], [-6.310745, 53.349478], [-6.315262, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.34678], [-6.310745, 53.349478], [-6.310745, 53.34678], [-6.315262, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.349478], [-6.315262, 53.352175], [-6.310745, 53.349478], [-6.315262, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.352175], [-6.310745, 53.352175], [-6.310745, 53.349478], [-6.315262, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.352175], [-6.315262, 53.354873], [-6.310745, 53.354873], [-6.315262, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.352175], [-6.310745, 53.354873], [-6.310745, 53.352175], [-6.315262, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.354873], [-6.315262, 53.357571], [-6.310745, 53.354873], [-6.315262, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.357571], [-6.310745, 53.357571], [-6.310745, 53.354873], [-6.315262, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.357571], [-6.315262, 53.360269], [-6.310745, 53.360269], [-6.315262, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.357571], [-6.310745, 53.360269], [-6.310745, 53.357571], [-6.315262, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.360269], [-6.315262, 53.362967], [-6.310745, 53.360269], [-6.315262, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.362967], [-6.310745, 53.362967], [-6.310745, 53.360269], [-6.315262, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.362967], [-6.315262, 53.365665], [-6.310745, 53.365665], [-6.315262, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 2, "stroke": "#ffffff", "fill": "#ffffff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.362967], [-6.310745, 53.365665], [-6.310745, 53.362967], [-6.315262, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.365665], [-6.315262, 53.368363], [-6.310745, 53.365665], [-6.315262, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.368363], [-6.310745, 53.368363], [-6.310745, 53.365665], [-6.315262, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.368363], [-6.315262, 53.371061], [-6.310745, 53.371061], [-6.315262, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.368363], [-6.310745, 53.371061], [-6.310745, 53.368363], [-6.315262, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.371061], [-6.315262, 53.373759], [-6.310745, 53.371061], [-6.315262, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.373759], [-6.310745, 53.373759], [-6.310745, 53.371061], [-6.315262, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.373759], [-6.315262, 53.376457], [-6.310745, 53.376457], [-6.315262, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.373759], [-6.310745, 53.376457], [-6.310745, 53.373759], [-6.315262, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.376457], [-6.315262, 53.379155], [-6.310745, 53.376457], [-6.315262, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.379155], [-6.310745, 53.379155], [-6.310745, 53.376457], [-6.315262, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.379155], [-6.315262, 53.381853], [-6.310745, 53.381853], [-6.315262, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.315262, 53.379155], [-6.310745, 53.381853], [-6.310745, 53.379155], [-6.315262, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.3198], [-6.310745, 53.322498], [-6.306229, 53.3198], [-6.310745, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.322498], [-6.306229, 53.322498], [-6.306229, 53.3198], [-6.310745, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.322498], [-6.306229, 53.325196], [-6.306229, 53.322498], [-6.310745, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.322498], [-6.310745, 53.325196], [-6.306229, 53.325196], [-6.310745, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.325196], [-6.310745, 53.327894], [-6.306229, 53.325196], [-6.310745, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.327894], [-6.306229, 53.327894], [-6.306229, 53.325196], [-6.310745, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.327894], [-6.306229, 53.330592], [-6.306229, 53.327894], [-6.310745, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.327894], [-6.310745, 53.330592], [-6.306229, 53.330592], [-6.310745, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.330592], [-6.310745, 53.33329], [-6.306229, 53.330592], [-6.310745, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.33329], [-6.306229, 53.33329], [-6.306229, 53.330592], [-6.310745, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.33329], [-6.306229, 53.335988], [-6.306229, 53.33329], [-6.310745, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.33329], [-6.310745, 53.335988], [-6.306229, 53.335988], [-6.310745, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.335988], [-6.310745, 53.338686], [-6.306229, 53.335988], [-6.310745, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.338686], [-6.306229, 53.338686], [-6.306229, 53.335988], [-6.310745, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.338686], [-6.306229, 53.341384], [-6.306229, 53.338686], [-6.310745, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.338686], [-6.310745, 53.341384], [-6.306229, 53.341384], [-6.310745, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.341384], [-6.310745, 53.344082], [-6.306229, 53.341384], [-6.310745, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.344082], [-6.306229, 53.344082], [-6.306229, 53.341384], [-6.310745, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.344082], [-6.306229, 53.34678], [-6.306229, 53.344082], [-6.310745, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.344082], [-6.310745, 53.34678], [-6.306229, 53.34678], [-6.310745, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.34678], [-6.310745, 53.349478], [-6.306229, 53.34678], [-6.310745, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.349478], [-6.306229, 53.349478], [-6.306229, 53.34678], [-6.310745, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.349478], [-6.306229, 53.352175], [-6.306229, 53.349478], [-6.310745, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.349478], [-6.310745, 53.352175], [-6.306229, 53.352175], [-6.310745, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.352175], [-6.310745, 53.354873], [-6.306229, 53.352175], [-6.310745, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.354873], [-6.306229, 53.354873], [-6.306229, 53.352175], [-6.310745, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.354873], [-6.306229, 53.357571], [-6.306229, 53.354873], [-6.310745, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.354873], [-6.310745, 53.357571], [-6.306229, 53.357571], [-6.310745, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.357571], [-6.310745, 53.360269], [-6.306229, 53.357571], [-6.310745, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.360269], [-6.306229, 53.360269], [-6.306229, 53.357571], [-6.310745, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.360269], [-6.306229, 53.362967], [-6.306229, 53.360269], [-6.310745, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.360269], [-6.310745, 53.362967], [-6.306229, 53.362967], [-6.310745, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.362967], [-6.310745, 53.365665], [-6.306229, 53.362967], [-6.310745, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.365665], [-6.306229, 53.365665], [-6.306229, 53.362967], [-6.310745, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.365665], [-6.306229, 53.368363], [-6.306229, 53.365665], [-6.310745, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.365665], [-6.310745, 53.368363], [-6.306229, 53.368363], [-6.310745, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 3, "stroke": "#d6ebff", "fill": "#d6ebff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.368363], [-6.310745, 53.371061], [-6.306229, 53.368363], [-6.310745, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.371061], [-6.306229, 53.371061], [-6.306229, 53.368363], [-6.310745, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.371061], [-6.306229, 53.373759], [-6.306229, 53.371061], [-6.310745, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.371061], [-6.310745, 53.373759], [-6.306229, 53.373759], [-6.310745, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.373759], [-6.310745, 53.376457], [-6.306229, 53.373759], [-6.310745, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.376457], [-6.306229, 53.376457], [-6.306229, 53.373759], [-6.310745, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.376457], [-6.306229, 53.379155], [-6.306229, 53.376457], [-6.310745, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.376457], [-6.310745, 53.379155], [-6.306229, 53.379155], [-6.310745, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.379155], [-6.310745, 53.381853], [-6.306229, 53.379155], [-6.310745, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.310745, 53.381853], [-6.306229, 53.381853], [-6.306229, 53.379155], [-6.310745, 53.381853] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.3198], [-6.306229, 53.322498], [-6.301712, 53.322498], [-6.306229, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.3198], [-6.301712, 53.322498], [-6.301712, 53.3198], [-6.306229, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.322498], [-6.306229, 53.325196], [-6.301712, 53.322498], [-6.306229, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.325196], [-6.301712, 53.325196], [-6.301712, 53.322498], [-6.306229, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.325196], [-6.306229, 53.327894], [-6.301712, 53.327894], [-6.306229, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.325196], [-6.301712, 53.327894], [-6.301712, 53.325196], [-6.306229, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.327894], [-6.306229, 53.330592], [-6.301712, 53.327894], [-6.306229, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.330592], [-6.301712, 53.330592], [-6.301712, 53.327894], [-6.306229, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.330592], [-6.306229, 53.33329], [-6.301712, 53.33329], [-6.306229, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.330592], [-6.301712, 53.33329], [-6.301712, 53.330592], [-6.306229, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.33329], [-6.306229, 53.335988], [-6.301712, 53.33329], [-6.306229, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.335988], [-6.301712, 53.335988], [-6.301712, 53.33329], [-6.306229, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.335988], [-6.306229, 53.338686], [-6.301712, 53.338686], [-6.306229, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.335988], [-6.301712, 53.338686], [-6.301712, 53.335988], [-6.306229, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.338686], [-6.306229, 53.341384], [-6.301712, 53.338686], [-6.306229, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.341384], [-6.301712, 53.341384], [-6.301712, 53.338686], [-6.306229, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.341384], [-6.306229, 53.344082], [-6.301712, 53.344082], [-6.306229, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.341384], [-6.301712, 53.344082], [-6.301712, 53.341384], [-6.306229, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.344082], [-6.306229, 53.34678], [-6.301712, 53.344082], [-6.306229, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.34678], [-6.301712, 53.34678], [-6.301712, 53.344082], [-6.306229, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.34678], [-6.306229, 53.349478], [-6.301712, 53.349478], [-6.306229, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.34678], [-6.301712, 53.349478], [-6.301712, 53.34678], [-6.306229, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.349478], [-6.306229, 53.352175], [-6.301712, 53.349478], [-6.306229, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.352175], [-6.301712, 53.352175], [-6.301712, 53.349478], [-6.306229, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.352175], [-6.306229, 53.354873], [-6.301712, 53.354873], [-6.306229, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.352175], [-6.301712, 53.354873], [-6.301712, 53.352175], [-6.306229, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.354873], [-6.306229, 53.357571], [-6.301712, 53.354873], [-6.306229, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.357571], [-6.301712, 53.357571], [-6.301712, 53.354873], [-6.306229, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.357571], [-6.306229, 53.360269], [-6.301712, 53.360269], [-6.306229, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.357571], [-6.301712, 53.360269], [-6.301712, 53.357571], [-6.306229, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.360269], [-6.306229, 53.362967], [-6.301712, 53.360269], [-6.306229, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.362967], [-6.301712, 53.362967], [-6.301712, 53.360269], [-6.306229, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.362967], [-6.306229, 53.365665], [-6.301712, 53.365665], [-6.306229, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.362967], [-6.301712, 53.365665], [-6.301712, 53.362967], [-6.306229, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 4, "stroke": "#a8d6ff", "fill": "#a8d6ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.365665], [-6.306229, 53.368363], [-6.301712, 53.365665], [-6.306229, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.368363], [-6.301712, 53.368363], [-6.301712, 53.365665], [-6.306229, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.368363], [-6.306229, 53.371061], [-6.301712, 53.371061], [-6.306229, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.368363], [-6.301712, 53.371061], [-6.301712, 53.368363], [-6.306229, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.371061], [-6.306229, 53.373759], [-6.301712, 53.371061], [-6.306229, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.373759], [-6.301712, 53.373759], [-6.301712, 53.371061], [-6.306229, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.373759], [-6.306229, 53.376457], [-6.301712, 53.376457], [-6.306229, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.373759], [-6.301712, 53.376457], [-6.301712, 53.373759], [-6.306229, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.376457], [-6.306229, 53.379155], [-6.301712, 53.376457], [-6.306229, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.379155], [-6.301712, 53.379155], [-6.301712, 53.376457], [-6.306229, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.379155], [-6.306229, 53.381853], [-6.301712, 53.381853], [-6.306229, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.306229, 53.379155], [-6.301712, 53.381853], [-6.301712, 53.379155], [-6.306229, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.3198], [-6.301712, 53.322498], [-6.297196, 53.3198], [-6.301712, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.322498], [-6.297196, 53.322498], [-6.297196, 53.3198], [-6.301712, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.322498], [-6.297196, 53.325196], [-6.297196, 53.322498], [-6.301712, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.322498], [-6.301712, 53.325196], [-6.297196, 53.325196], [-6.301712, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.325196], [-6.301712, 53.327894], [-6.297196, 53.325196], [-6.301712, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.327894], [-6.297196, 53.327894], [-6.297196, 53.325196], [-6.301712, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.327894], [-6.297196, 53.330592], [-6.297196, 53.327894], [-6.301712, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.327894], [-6.301712, 53.330592], [-6.297196, 53.330592], [-6.301712, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.330592], [-6.301712, 53.33329], [-6.297196, 53.330592], [-6.301712, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.33329], [-6.297196, 53.33329], [-6.297196, 53.330592], [-6.301712, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.33329], [-6.297196, 53.335988], [-6.297196, 53.33329], [-6.301712, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.33329], [-6.301712, 53.335988], [-6.297196, 53.335988], [-6.301712, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.335988], [-6.301712, 53.338686], [-6.297196, 53.335988], [-6.301712, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.338686], [-6.297196, 53.338686], [-6.297196, 53.335988], [-6.301712, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.338686], [-6.297196, 53.341384], [-6.297196, 53.338686], [-6.301712, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.338686], [-6.301712, 53.341384], [-6.297196, 53.341384], [-6.301712, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.341384], [-6.301712, 53.344082], [-6.297196, 53.341384], [-6.301712, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.344082], [-6.297196, 53.344082], [-6.297196, 53.341384], [-6.301712, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.344082], [-6.297196, 53.34678], [-6.297196, 53.344082], [-6.301712, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.344082], [-6.301712, 53.34678], [-6.297196, 53.34678], [-6.301712, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.34678], [-6.301712, 53.349478], [-6.297196, 53.34678], [-6.301712, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.349478], [-6.297196, 53.349478], [-6.297196, 53.34678], [-6.301712, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.349478], [-6.297196, 53.352175], [-6.297196, 53.349478], [-6.301712, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.349478], [-6.301712, 53.352175], [-6.297196, 53.352175], [-6.301712, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.352175], [-6.301712, 53.354873], [-6.297196, 53.352175], [-6.301712, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.354873], [-6.297196, 53.354873], [-6.297196, 53.352175], [-6.301712, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.354873], [-6.297196, 53.357571], [-6.297196, 53.354873], [-6.301712, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.354873], [-6.301712, 53.357571], [-6.297196, 53.357571], [-6.301712, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.357571], [-6.301712, 53.360269], [-6.297196, 53.357571], [-6.301712, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.360269], [-6.297196, 53.360269], [-6.297196, 53.357571], [-6.301712, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.360269], [-6.297196, 53.362967], [-6.297196, 53.360269], [-6.301712, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.360269], [-6.301712, 53.362967], [-6.297196, 53.362967], [-6.301712, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.362967], [-6.301712, 53.365665], [-6.297196, 53.362967], [-6.301712, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.365665], [-6.297196, 53.365665], [-6.297196, 53.362967], [-6.301712, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.365665], [-6.297196, 53.368363], [-6.297196, 53.365665], [-6.301712, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.365665], [-6.301712, 53.368363], [-6.297196, 53.368363], [-6.301712, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.368363], [-6.301712, 53.371061], [-6.297196, 53.368363], [-6.301712, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.371061], [-6.297196, 53.371061], [-6.297196, 53.368363], [-6.301712, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.371061], [-6.297196, 53.373759], [-6.297196, 53.371061], [-6.301712, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.371061], [-6.301712, 53.373759], [-6.297196, 53.373759], [-6.301712, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.373759], [-6.301712, 53.376457], [-6.297196, 53.373759], [-6.301712, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.376457], [-6.297196, 53.376457], [-6.297196, 53.373759], [-6.301712, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.376457], [-6.297196, 53.379155], [-6.297196, 53.376457], [-6.301712, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.376457], [-6.301712, 53.379155], [-6.297196, 53.379155], [-6.301712, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.379155], [-6.301712, 53.381853], [-6.297196, 53.379155], [-6.301712, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.301712, 53.381853], [-6.297196, 53.381853], [-6.297196, 53.379155], [-6.301712, 53.381853] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.3198], [-6.297196, 53.322498], [-6.292679, 53.322498], [-6.297196, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.3198], [-6.292679, 53.322498], [-6.292679, 53.3198], [-6.297196, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.322498], [-6.297196, 53.325196], [-6.292679, 53.322498], [-6.297196, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.325196], [-6.292679, 53.325196], [-6.292679, 53.322498], [-6.297196, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.325196], [-6.297196, 53.327894], [-6.292679, 53.327894], [-6.297196, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.325196], [-6.292679, 53.327894], [-6.292679, 53.325196], [-6.297196, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.327894], [-6.297196, 53.330592], [-6.292679, 53.327894], [-6.297196, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.330592], [-6.292679, 53.330592], [-6.292679, 53.327894], [-6.297196, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.330592], [-6.297196, 53.33329], [-6.292679, 53.33329], [-6.297196, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.330592], [-6.292679, 53.33329], [-6.292679, 53.330592], [-6.297196, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.33329], [-6.297196, 53.335988], [-6.292679, 53.33329], [-6.297196, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.335988], [-6.292679, 53.335988], [-6.292679, 53.33329], [-6.297196, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.335988], [-6.297196, 53.338686], [-6.292679, 53.338686], [-6.297196, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.335988], [-6.292679, 53.338686], [-6.292679, 53.335988], [-6.297196, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.338686], [-6.297196, 53.341384], [-6.292679, 53.338686], [-6.297196, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.341384], [-6.292679, 53.341384], [-6.292679, 53.338686], [-6.297196, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.341384], [-6.297196, 53.344082], [-6.292679, 53.344082], [-6.297196, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.341384], [-6.292679, 53.344082], [-6.292679, 53.341384], [-6.297196, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.344082], [-6.297196, 53.34678], [-6.292679, 53.344082], [-6.297196, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.34678], [-6.292679, 53.34678], [-6.292679, 53.344082], [-6.297196, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.34678], [-6.297196, 53.349478], [-6.292679, 53.349478], [-6.297196, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.34678], [-6.292679, 53.349478], [-6.292679, 53.34678], [-6.297196, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.349478], [-6.297196, 53.352175], [-6.292679, 53.349478], [-6.297196, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.352175], [-6.292679, 53.352175], [-6.292679, 53.349478], [-6.297196, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.352175], [-6.297196, 53.354873], [-6.292679, 53.354873], [-6.297196, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.352175], [-6.292679, 53.354873], [-6.292679, 53.352175], [-6.297196, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.354873], [-6.297196, 53.357571], [-6.292679, 53.354873], [-6.297196, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.357571], [-6.292679, 53.357571], [-6.292679, 53.354873], [-6.297196, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.357571], [-6.297196, 53.360269], [-6.292679, 53.360269], [-6.297196, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.357571], [-6.292679, 53.360269], [-6.292679, 53.357571], [-6.297196, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.360269], [-6.297196, 53.362967], [-6.292679, 53.360269], [-6.297196, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.362967], [-6.292679, 53.362967], [-6.292679, 53.360269], [-6.297196, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.362967], [-6.297196, 53.365665], [-6.292679, 53.365665], [-6.297196, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.362967], [-6.292679, 53.365665], [-6.292679, 53.362967], [-6.297196, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.365665], [-6.297196, 53.368363], [-6.292679, 53.365665], [-6.297196, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.368363], [-6.292679, 53.368363], [-6.292679, 53.365665], [-6.297196, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.368363], [-6.297196, 53.371061], [-6.292679, 53.371061], [-6.297196, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.368363], [-6.292679, 53.371061], [-6.292679, 53.368363], [-6.297196, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.371061], [-6.297196, 53.373759], [-6.292679, 53.371061], [-6.297196, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.373759], [-6.292679, 53.373759], [-6.292679, 53.371061], [-6.297196, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.373759], [-6.297196, 53.376457], [-6.292679, 53.376457], [-6.297196, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.373759], [-6.292679, 53.376457], [-6.292679, 53.373759], [-6.297196, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.376457], [-6.297196, 53.379155], [-6.292679, 53.376457], [-6.297196, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.379155], [-6.292679, 53.379155], [-6.292679, 53.376457], [-6.297196, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.379155], [-6.297196, 53.381853], [-6.292679, 53.381853], [-6.297196, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.297196, 53.379155], [-6.292679, 53.381853], [-6.292679, 53.379155], [-6.297196, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 12, "stroke": "#002d57", "fill": "#002d57", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.3198], [-6.292679, 53.322498], [-6.288163, 53.3198], [-6.292679, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 12, "stroke": "#002d57", "fill": "#002d57", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.322498], [-6.288163, 53.322498], [-6.288163, 53.3198], [-6.292679, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.322498], [-6.288163, 53.325196], [-6.288163, 53.322498], [-6.292679, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.322498], [-6.292679, 53.325196], [-6.288163, 53.325196], [-6.292679, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.325196], [-6.292679, 53.327894], [-6.288163, 53.325196], [-6.292679, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.327894], [-6.288163, 53.327894], [-6.288163, 53.325196], [-6.292679, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.327894], [-6.288163, 53.330592], [-6.288163, 53.327894], [-6.292679, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.327894], [-6.292679, 53.330592], [-6.288163, 53.330592], [-6.292679, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.330592], [-6.292679, 53.33329], [-6.288163, 53.330592], [-6.292679, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.33329], [-6.288163, 53.33329], [-6.288163, 53.330592], [-6.292679, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.33329], [-6.288163, 53.335988], [-6.288163, 53.33329], [-6.292679, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.33329], [-6.292679, 53.335988], [-6.288163, 53.335988], [-6.292679, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.335988], [-6.292679, 53.338686], [-6.288163, 53.335988], [-6.292679, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.338686], [-6.288163, 53.338686], [-6.288163, 53.335988], [-6.292679, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.338686], [-6.288163, 53.341384], [-6.288163, 53.338686], [-6.292679, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.338686], [-6.292679, 53.341384], [-6.288163, 53.341384], [-6.292679, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.341384], [-6.292679, 53.344082], [-6.288163, 53.341384], [-6.292679, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.344082], [-6.288163, 53.344082], [-6.288163, 53.341384], [-6.292679, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.344082], [-6.288163, 53.34678], [-6.288163, 53.344082], [-6.292679, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.344082], [-6.292679, 53.34678], [-6.288163, 53.34678], [-6.292679, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.34678], [-6.292679, 53.349478], [-6.288163, 53.34678], [-6.292679, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.349478], [-6.288163, 53.349478], [-6.288163, 53.34678], [-6.292679, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.349478], [-6.288163, 53.352175], [-6.288163, 53.349478], [-6.292679, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.349478], [-6.292679, 53.352175], [-6.288163, 53.352175], [-6.292679, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.352175], [-6.292679, 53.354873], [-6.288163, 53.352175], [-6.292679, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.354873], [-6.288163, 53.354873], [-6.288163, 53.352175], [-6.292679, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.354873], [-6.288163, 53.357571], [-6.288163, 53.354873], [-6.292679, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.354873], [-6.292679, 53.357571], [-6.288163, 53.357571], [-6.292679, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.357571], [-6.292679, 53.360269], [-6.288163, 53.357571], [-6.292679, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.360269], [-6.288163, 53.360269], [-6.288163, 53.357571], [-6.292679, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.360269], [-6.288163, 53.362967], [-6.288163, 53.360269], [-6.292679, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.360269], [-6.292679, 53.362967], [-6.288163, 53.362967], [-6.292679, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.362967], [-6.292679, 53.365665], [-6.288163, 53.362967], [-6.292679, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.365665], [-6.288163, 53.365665], [-6.288163, 53.362967], [-6.292679, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.365665], [-6.288163, 53.368363], [-6.288163, 53.365665], [-6.292679, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.365665], [-6.292679, 53.368363], [-6.288163, 53.368363], [-6.292679, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.368363], [-6.292679, 53.371061], [-6.288163, 53.368363], [-6.292679, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.371061], [-6.288163, 53.371061], [-6.288163, 53.368363], [-6.292679, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.371061], [-6.288163, 53.373759], [-6.288163, 53.371061], [-6.292679, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.371061], [-6.292679, 53.373759], [-6.288163, 53.373759], [-6.292679, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.373759], [-6.292679, 53.376457], [-6.288163, 53.373759], [-6.292679, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.376457], [-6.288163, 53.376457], [-6.288163, 53.373759], [-6.292679, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.376457], [-6.288163, 53.379155], [-6.288163, 53.376457], [-6.292679, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.376457], [-6.292679, 53.379155], [-6.288163, 53.379155], [-6.292679, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.379155], [-6.292679, 53.381853], [-6.288163, 53.379155], [-6.292679, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.292679, 53.381853], [-6.288163, 53.381853], [-6.288163, 53.379155], [-6.292679, 53.381853] ] ] } }, { "type": "Feature", "properties": { "elevation": 12, "stroke": "#002d57", "fill": "#002d57", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.3198], [-6.288163, 53.322498], [-6.283646, 53.322498], [-6.288163, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 12, "stroke": "#002d57", "fill": "#002d57", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.3198], [-6.283646, 53.322498], [-6.283646, 53.3198], [-6.288163, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 12, "stroke": "#002d57", "fill": "#002d57", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.322498], [-6.288163, 53.325196], [-6.283646, 53.322498], [-6.288163, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 12, "stroke": "#002d57", "fill": "#002d57", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.325196], [-6.283646, 53.325196], [-6.283646, 53.322498], [-6.288163, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.325196], [-6.288163, 53.327894], [-6.283646, 53.327894], [-6.288163, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 12, "stroke": "#002d57", "fill": "#002d57", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.325196], [-6.283646, 53.327894], [-6.283646, 53.325196], [-6.288163, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.327894], [-6.288163, 53.330592], [-6.283646, 53.327894], [-6.288163, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.330592], [-6.283646, 53.330592], [-6.283646, 53.327894], [-6.288163, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.330592], [-6.288163, 53.33329], [-6.283646, 53.33329], [-6.288163, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.330592], [-6.283646, 53.33329], [-6.283646, 53.330592], [-6.288163, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.33329], [-6.288163, 53.335988], [-6.283646, 53.33329], [-6.288163, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.335988], [-6.283646, 53.335988], [-6.283646, 53.33329], [-6.288163, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.335988], [-6.288163, 53.338686], [-6.283646, 53.338686], [-6.288163, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.335988], [-6.283646, 53.338686], [-6.283646, 53.335988], [-6.288163, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.338686], [-6.288163, 53.341384], [-6.283646, 53.338686], [-6.288163, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.341384], [-6.283646, 53.341384], [-6.283646, 53.338686], [-6.288163, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.341384], [-6.288163, 53.344082], [-6.283646, 53.344082], [-6.288163, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.341384], [-6.283646, 53.344082], [-6.283646, 53.341384], [-6.288163, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.344082], [-6.288163, 53.34678], [-6.283646, 53.344082], [-6.288163, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.34678], [-6.283646, 53.34678], [-6.283646, 53.344082], [-6.288163, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.34678], [-6.288163, 53.349478], [-6.283646, 53.349478], [-6.288163, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.34678], [-6.283646, 53.349478], [-6.283646, 53.34678], [-6.288163, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.349478], [-6.288163, 53.352175], [-6.283646, 53.349478], [-6.288163, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.352175], [-6.283646, 53.352175], [-6.283646, 53.349478], [-6.288163, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.352175], [-6.288163, 53.354873], [-6.283646, 53.354873], [-6.288163, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.352175], [-6.283646, 53.354873], [-6.283646, 53.352175], [-6.288163, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.354873], [-6.288163, 53.357571], [-6.283646, 53.354873], [-6.288163, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.357571], [-6.283646, 53.357571], [-6.283646, 53.354873], [-6.288163, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.357571], [-6.288163, 53.360269], [-6.283646, 53.360269], [-6.288163, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.357571], [-6.283646, 53.360269], [-6.283646, 53.357571], [-6.288163, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.360269], [-6.288163, 53.362967], [-6.283646, 53.360269], [-6.288163, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.362967], [-6.283646, 53.362967], [-6.283646, 53.360269], [-6.288163, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.362967], [-6.288163, 53.365665], [-6.283646, 53.365665], [-6.288163, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.362967], [-6.283646, 53.365665], [-6.283646, 53.362967], [-6.288163, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.365665], [-6.288163, 53.368363], [-6.283646, 53.365665], [-6.288163, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.368363], [-6.283646, 53.368363], [-6.283646, 53.365665], [-6.288163, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.368363], [-6.288163, 53.371061], [-6.283646, 53.371061], [-6.288163, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.368363], [-6.283646, 53.371061], [-6.283646, 53.368363], [-6.288163, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.371061], [-6.288163, 53.373759], [-6.283646, 53.371061], [-6.288163, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.373759], [-6.283646, 53.373759], [-6.283646, 53.371061], [-6.288163, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.373759], [-6.288163, 53.376457], [-6.283646, 53.376457], [-6.288163, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.373759], [-6.283646, 53.376457], [-6.283646, 53.373759], [-6.288163, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.376457], [-6.288163, 53.379155], [-6.283646, 53.376457], [-6.288163, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.379155], [-6.283646, 53.379155], [-6.283646, 53.376457], [-6.288163, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.379155], [-6.288163, 53.381853], [-6.283646, 53.381853], [-6.288163, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.288163, 53.379155], [-6.283646, 53.381853], [-6.283646, 53.379155], [-6.288163, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.3198], [-6.283646, 53.322498], [-6.279129, 53.3198], [-6.283646, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.322498], [-6.279129, 53.322498], [-6.279129, 53.3198], [-6.283646, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.322498], [-6.279129, 53.325196], [-6.279129, 53.322498], [-6.283646, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 12, "stroke": "#002d57", "fill": "#002d57", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.322498], [-6.283646, 53.325196], [-6.279129, 53.325196], [-6.283646, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 12, "stroke": "#002d57", "fill": "#002d57", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.325196], [-6.283646, 53.327894], [-6.279129, 53.325196], [-6.283646, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 12, "stroke": "#002d57", "fill": "#002d57", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.327894], [-6.279129, 53.327894], [-6.279129, 53.325196], [-6.283646, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 12, "stroke": "#002d57", "fill": "#002d57", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.327894], [-6.279129, 53.330592], [-6.279129, 53.327894], [-6.283646, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.327894], [-6.283646, 53.330592], [-6.279129, 53.330592], [-6.283646, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.330592], [-6.283646, 53.33329], [-6.279129, 53.330592], [-6.283646, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.33329], [-6.279129, 53.33329], [-6.279129, 53.330592], [-6.283646, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.33329], [-6.279129, 53.335988], [-6.279129, 53.33329], [-6.283646, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.33329], [-6.283646, 53.335988], [-6.279129, 53.335988], [-6.283646, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.335988], [-6.283646, 53.338686], [-6.279129, 53.335988], [-6.283646, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.338686], [-6.279129, 53.338686], [-6.279129, 53.335988], [-6.283646, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.338686], [-6.279129, 53.341384], [-6.279129, 53.338686], [-6.283646, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.338686], [-6.283646, 53.341384], [-6.279129, 53.341384], [-6.283646, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.341384], [-6.283646, 53.344082], [-6.279129, 53.341384], [-6.283646, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.344082], [-6.279129, 53.344082], [-6.279129, 53.341384], [-6.283646, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.344082], [-6.279129, 53.34678], [-6.279129, 53.344082], [-6.283646, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.344082], [-6.283646, 53.34678], [-6.279129, 53.34678], [-6.283646, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.34678], [-6.283646, 53.349478], [-6.279129, 53.34678], [-6.283646, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.349478], [-6.279129, 53.349478], [-6.279129, 53.34678], [-6.283646, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.349478], [-6.279129, 53.352175], [-6.279129, 53.349478], [-6.283646, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.349478], [-6.283646, 53.352175], [-6.279129, 53.352175], [-6.283646, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.352175], [-6.283646, 53.354873], [-6.279129, 53.352175], [-6.283646, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.354873], [-6.279129, 53.354873], [-6.279129, 53.352175], [-6.283646, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.354873], [-6.279129, 53.357571], [-6.279129, 53.354873], [-6.283646, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.354873], [-6.283646, 53.357571], [-6.279129, 53.357571], [-6.283646, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.357571], [-6.283646, 53.360269], [-6.279129, 53.357571], [-6.283646, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.360269], [-6.279129, 53.360269], [-6.279129, 53.357571], [-6.283646, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.360269], [-6.279129, 53.362967], [-6.279129, 53.360269], [-6.283646, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.360269], [-6.283646, 53.362967], [-6.279129, 53.362967], [-6.283646, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.362967], [-6.283646, 53.365665], [-6.279129, 53.362967], [-6.283646, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.365665], [-6.279129, 53.365665], [-6.279129, 53.362967], [-6.283646, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.365665], [-6.279129, 53.368363], [-6.279129, 53.365665], [-6.283646, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.365665], [-6.283646, 53.368363], [-6.279129, 53.368363], [-6.283646, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.368363], [-6.283646, 53.371061], [-6.279129, 53.368363], [-6.283646, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.371061], [-6.279129, 53.371061], [-6.279129, 53.368363], [-6.283646, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.371061], [-6.279129, 53.373759], [-6.279129, 53.371061], [-6.283646, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.371061], [-6.283646, 53.373759], [-6.279129, 53.373759], [-6.283646, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.373759], [-6.283646, 53.376457], [-6.279129, 53.373759], [-6.283646, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.376457], [-6.279129, 53.376457], [-6.279129, 53.373759], [-6.283646, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.376457], [-6.279129, 53.379155], [-6.279129, 53.376457], [-6.283646, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.376457], [-6.283646, 53.379155], [-6.279129, 53.379155], [-6.283646, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.379155], [-6.283646, 53.381853], [-6.279129, 53.379155], [-6.283646, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.283646, 53.381853], [-6.279129, 53.381853], [-6.279129, 53.379155], [-6.283646, 53.381853] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.3198], [-6.279129, 53.322498], [-6.274613, 53.322498], [-6.279129, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.3198], [-6.274613, 53.322498], [-6.274613, 53.3198], [-6.279129, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.322498], [-6.279129, 53.325196], [-6.274613, 53.322498], [-6.279129, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.325196], [-6.274613, 53.325196], [-6.274613, 53.322498], [-6.279129, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 12, "stroke": "#002d57", "fill": "#002d57", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.325196], [-6.279129, 53.327894], [-6.274613, 53.327894], [-6.279129, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.325196], [-6.274613, 53.327894], [-6.274613, 53.325196], [-6.279129, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 12, "stroke": "#002d57", "fill": "#002d57", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.327894], [-6.279129, 53.330592], [-6.274613, 53.327894], [-6.279129, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 12, "stroke": "#002d57", "fill": "#002d57", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.330592], [-6.274613, 53.330592], [-6.274613, 53.327894], [-6.279129, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.330592], [-6.279129, 53.33329], [-6.274613, 53.33329], [-6.279129, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.330592], [-6.274613, 53.33329], [-6.274613, 53.330592], [-6.279129, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.33329], [-6.279129, 53.335988], [-6.274613, 53.33329], [-6.279129, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.335988], [-6.274613, 53.335988], [-6.274613, 53.33329], [-6.279129, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.335988], [-6.279129, 53.338686], [-6.274613, 53.338686], [-6.279129, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.335988], [-6.274613, 53.338686], [-6.274613, 53.335988], [-6.279129, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.338686], [-6.279129, 53.341384], [-6.274613, 53.338686], [-6.279129, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.341384], [-6.274613, 53.341384], [-6.274613, 53.338686], [-6.279129, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.341384], [-6.279129, 53.344082], [-6.274613, 53.344082], [-6.279129, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.341384], [-6.274613, 53.344082], [-6.274613, 53.341384], [-6.279129, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.344082], [-6.279129, 53.34678], [-6.274613, 53.344082], [-6.279129, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.34678], [-6.274613, 53.34678], [-6.274613, 53.344082], [-6.279129, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.34678], [-6.279129, 53.349478], [-6.274613, 53.349478], [-6.279129, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.34678], [-6.274613, 53.349478], [-6.274613, 53.34678], [-6.279129, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.349478], [-6.279129, 53.352175], [-6.274613, 53.349478], [-6.279129, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.352175], [-6.274613, 53.352175], [-6.274613, 53.349478], [-6.279129, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.352175], [-6.279129, 53.354873], [-6.274613, 53.354873], [-6.279129, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.352175], [-6.274613, 53.354873], [-6.274613, 53.352175], [-6.279129, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.354873], [-6.279129, 53.357571], [-6.274613, 53.354873], [-6.279129, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.357571], [-6.274613, 53.357571], [-6.274613, 53.354873], [-6.279129, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.357571], [-6.279129, 53.360269], [-6.274613, 53.360269], [-6.279129, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.357571], [-6.274613, 53.360269], [-6.274613, 53.357571], [-6.279129, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.360269], [-6.279129, 53.362967], [-6.274613, 53.360269], [-6.279129, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.362967], [-6.274613, 53.362967], [-6.274613, 53.360269], [-6.279129, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.362967], [-6.279129, 53.365665], [-6.274613, 53.365665], [-6.279129, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.362967], [-6.274613, 53.365665], [-6.274613, 53.362967], [-6.279129, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.365665], [-6.279129, 53.368363], [-6.274613, 53.365665], [-6.279129, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.368363], [-6.274613, 53.368363], [-6.274613, 53.365665], [-6.279129, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.368363], [-6.279129, 53.371061], [-6.274613, 53.371061], [-6.279129, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.368363], [-6.274613, 53.371061], [-6.274613, 53.368363], [-6.279129, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.371061], [-6.279129, 53.373759], [-6.274613, 53.371061], [-6.279129, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.373759], [-6.274613, 53.373759], [-6.274613, 53.371061], [-6.279129, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.373759], [-6.279129, 53.376457], [-6.274613, 53.376457], [-6.279129, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.373759], [-6.274613, 53.376457], [-6.274613, 53.373759], [-6.279129, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.376457], [-6.279129, 53.379155], [-6.274613, 53.376457], [-6.279129, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.379155], [-6.274613, 53.379155], [-6.274613, 53.376457], [-6.279129, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.379155], [-6.279129, 53.381853], [-6.274613, 53.381853], [-6.279129, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.279129, 53.379155], [-6.274613, 53.381853], [-6.274613, 53.379155], [-6.279129, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.3198], [-6.274613, 53.322498], [-6.270096, 53.3198], [-6.274613, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.322498], [-6.270096, 53.322498], [-6.270096, 53.3198], [-6.274613, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.322498], [-6.270096, 53.325196], [-6.270096, 53.322498], [-6.274613, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.322498], [-6.274613, 53.325196], [-6.270096, 53.325196], [-6.274613, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.325196], [-6.274613, 53.327894], [-6.270096, 53.325196], [-6.274613, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.327894], [-6.270096, 53.327894], [-6.270096, 53.325196], [-6.274613, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.327894], [-6.270096, 53.330592], [-6.270096, 53.327894], [-6.274613, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 12, "stroke": "#002d57", "fill": "#002d57", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.327894], [-6.274613, 53.330592], [-6.270096, 53.330592], [-6.274613, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 12, "stroke": "#002d57", "fill": "#002d57", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.330592], [-6.274613, 53.33329], [-6.270096, 53.330592], [-6.274613, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.33329], [-6.270096, 53.33329], [-6.270096, 53.330592], [-6.274613, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.33329], [-6.270096, 53.335988], [-6.270096, 53.33329], [-6.274613, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.33329], [-6.274613, 53.335988], [-6.270096, 53.335988], [-6.274613, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.335988], [-6.274613, 53.338686], [-6.270096, 53.335988], [-6.274613, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.338686], [-6.270096, 53.338686], [-6.270096, 53.335988], [-6.274613, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.338686], [-6.270096, 53.341384], [-6.270096, 53.338686], [-6.274613, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.338686], [-6.274613, 53.341384], [-6.270096, 53.341384], [-6.274613, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.341384], [-6.274613, 53.344082], [-6.270096, 53.341384], [-6.274613, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.344082], [-6.270096, 53.344082], [-6.270096, 53.341384], [-6.274613, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.344082], [-6.270096, 53.34678], [-6.270096, 53.344082], [-6.274613, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.344082], [-6.274613, 53.34678], [-6.270096, 53.34678], [-6.274613, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.34678], [-6.274613, 53.349478], [-6.270096, 53.34678], [-6.274613, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.349478], [-6.270096, 53.349478], [-6.270096, 53.34678], [-6.274613, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.349478], [-6.270096, 53.352175], [-6.270096, 53.349478], [-6.274613, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.349478], [-6.274613, 53.352175], [-6.270096, 53.352175], [-6.274613, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.352175], [-6.274613, 53.354873], [-6.270096, 53.352175], [-6.274613, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.354873], [-6.270096, 53.354873], [-6.270096, 53.352175], [-6.274613, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.354873], [-6.270096, 53.357571], [-6.270096, 53.354873], [-6.274613, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.354873], [-6.274613, 53.357571], [-6.270096, 53.357571], [-6.274613, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.357571], [-6.274613, 53.360269], [-6.270096, 53.357571], [-6.274613, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.360269], [-6.270096, 53.360269], [-6.270096, 53.357571], [-6.274613, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.360269], [-6.270096, 53.362967], [-6.270096, 53.360269], [-6.274613, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.360269], [-6.274613, 53.362967], [-6.270096, 53.362967], [-6.274613, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.362967], [-6.274613, 53.365665], [-6.270096, 53.362967], [-6.274613, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.365665], [-6.270096, 53.365665], [-6.270096, 53.362967], [-6.274613, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.365665], [-6.270096, 53.368363], [-6.270096, 53.365665], [-6.274613, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.365665], [-6.274613, 53.368363], [-6.270096, 53.368363], [-6.274613, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.368363], [-6.274613, 53.371061], [-6.270096, 53.368363], [-6.274613, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.371061], [-6.270096, 53.371061], [-6.270096, 53.368363], [-6.274613, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.371061], [-6.270096, 53.373759], [-6.270096, 53.371061], [-6.274613, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.371061], [-6.274613, 53.373759], [-6.270096, 53.373759], [-6.274613, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.373759], [-6.274613, 53.376457], [-6.270096, 53.373759], [-6.274613, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.376457], [-6.270096, 53.376457], [-6.270096, 53.373759], [-6.274613, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.376457], [-6.270096, 53.379155], [-6.270096, 53.376457], [-6.274613, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.376457], [-6.274613, 53.379155], [-6.270096, 53.379155], [-6.274613, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.379155], [-6.274613, 53.381853], [-6.270096, 53.379155], [-6.274613, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.274613, 53.381853], [-6.270096, 53.381853], [-6.270096, 53.379155], [-6.274613, 53.381853] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.3198], [-6.270096, 53.322498], [-6.26558, 53.322498], [-6.270096, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.3198], [-6.26558, 53.322498], [-6.26558, 53.3198], [-6.270096, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.322498], [-6.270096, 53.325196], [-6.26558, 53.322498], [-6.270096, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.325196], [-6.26558, 53.325196], [-6.26558, 53.322498], [-6.270096, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.325196], [-6.270096, 53.327894], [-6.26558, 53.327894], [-6.270096, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.325196], [-6.26558, 53.327894], [-6.26558, 53.325196], [-6.270096, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.327894], [-6.270096, 53.330592], [-6.26558, 53.327894], [-6.270096, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.330592], [-6.26558, 53.330592], [-6.26558, 53.327894], [-6.270096, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 12, "stroke": "#002d57", "fill": "#002d57", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.330592], [-6.270096, 53.33329], [-6.26558, 53.33329], [-6.270096, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 12, "stroke": "#002d57", "fill": "#002d57", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.330592], [-6.26558, 53.33329], [-6.26558, 53.330592], [-6.270096, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.33329], [-6.270096, 53.335988], [-6.26558, 53.33329], [-6.270096, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.335988], [-6.26558, 53.335988], [-6.26558, 53.33329], [-6.270096, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.335988], [-6.270096, 53.338686], [-6.26558, 53.338686], [-6.270096, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.335988], [-6.26558, 53.338686], [-6.26558, 53.335988], [-6.270096, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.338686], [-6.270096, 53.341384], [-6.26558, 53.338686], [-6.270096, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.341384], [-6.26558, 53.341384], [-6.26558, 53.338686], [-6.270096, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.341384], [-6.270096, 53.344082], [-6.26558, 53.344082], [-6.270096, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.341384], [-6.26558, 53.344082], [-6.26558, 53.341384], [-6.270096, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.344082], [-6.270096, 53.34678], [-6.26558, 53.344082], [-6.270096, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.34678], [-6.26558, 53.34678], [-6.26558, 53.344082], [-6.270096, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.34678], [-6.270096, 53.349478], [-6.26558, 53.349478], [-6.270096, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.34678], [-6.26558, 53.349478], [-6.26558, 53.34678], [-6.270096, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.349478], [-6.270096, 53.352175], [-6.26558, 53.349478], [-6.270096, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.352175], [-6.26558, 53.352175], [-6.26558, 53.349478], [-6.270096, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.352175], [-6.270096, 53.354873], [-6.26558, 53.354873], [-6.270096, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.352175], [-6.26558, 53.354873], [-6.26558, 53.352175], [-6.270096, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.354873], [-6.270096, 53.357571], [-6.26558, 53.354873], [-6.270096, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.357571], [-6.26558, 53.357571], [-6.26558, 53.354873], [-6.270096, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.357571], [-6.270096, 53.360269], [-6.26558, 53.360269], [-6.270096, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.357571], [-6.26558, 53.360269], [-6.26558, 53.357571], [-6.270096, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.360269], [-6.270096, 53.362967], [-6.26558, 53.360269], [-6.270096, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.362967], [-6.26558, 53.362967], [-6.26558, 53.360269], [-6.270096, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.362967], [-6.270096, 53.365665], [-6.26558, 53.365665], [-6.270096, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.362967], [-6.26558, 53.365665], [-6.26558, 53.362967], [-6.270096, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.365665], [-6.270096, 53.368363], [-6.26558, 53.365665], [-6.270096, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.368363], [-6.26558, 53.368363], [-6.26558, 53.365665], [-6.270096, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.368363], [-6.270096, 53.371061], [-6.26558, 53.371061], [-6.270096, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.368363], [-6.26558, 53.371061], [-6.26558, 53.368363], [-6.270096, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.371061], [-6.270096, 53.373759], [-6.26558, 53.371061], [-6.270096, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.373759], [-6.26558, 53.373759], [-6.26558, 53.371061], [-6.270096, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.373759], [-6.270096, 53.376457], [-6.26558, 53.376457], [-6.270096, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.373759], [-6.26558, 53.376457], [-6.26558, 53.373759], [-6.270096, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.376457], [-6.270096, 53.379155], [-6.26558, 53.376457], [-6.270096, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.379155], [-6.26558, 53.379155], [-6.26558, 53.376457], [-6.270096, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.379155], [-6.270096, 53.381853], [-6.26558, 53.381853], [-6.270096, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.270096, 53.379155], [-6.26558, 53.381853], [-6.26558, 53.379155], [-6.270096, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.3198], [-6.26558, 53.322498], [-6.261063, 53.3198], [-6.26558, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.322498], [-6.261063, 53.322498], [-6.261063, 53.3198], [-6.26558, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.322498], [-6.261063, 53.325196], [-6.261063, 53.322498], [-6.26558, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.322498], [-6.26558, 53.325196], [-6.261063, 53.325196], [-6.26558, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.325196], [-6.26558, 53.327894], [-6.261063, 53.325196], [-6.26558, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.327894], [-6.261063, 53.327894], [-6.261063, 53.325196], [-6.26558, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.327894], [-6.261063, 53.330592], [-6.261063, 53.327894], [-6.26558, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.327894], [-6.26558, 53.330592], [-6.261063, 53.330592], [-6.26558, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.330592], [-6.26558, 53.33329], [-6.261063, 53.330592], [-6.26558, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.33329], [-6.261063, 53.33329], [-6.261063, 53.330592], [-6.26558, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 12, "stroke": "#002d57", "fill": "#002d57", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.33329], [-6.261063, 53.335988], [-6.261063, 53.33329], [-6.26558, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.33329], [-6.26558, 53.335988], [-6.261063, 53.335988], [-6.26558, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.335988], [-6.26558, 53.338686], [-6.261063, 53.335988], [-6.26558, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.338686], [-6.261063, 53.338686], [-6.261063, 53.335988], [-6.26558, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.338686], [-6.261063, 53.341384], [-6.261063, 53.338686], [-6.26558, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.338686], [-6.26558, 53.341384], [-6.261063, 53.341384], [-6.26558, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.341384], [-6.26558, 53.344082], [-6.261063, 53.341384], [-6.26558, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.344082], [-6.261063, 53.344082], [-6.261063, 53.341384], [-6.26558, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.344082], [-6.261063, 53.34678], [-6.261063, 53.344082], [-6.26558, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.344082], [-6.26558, 53.34678], [-6.261063, 53.34678], [-6.26558, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.34678], [-6.26558, 53.349478], [-6.261063, 53.34678], [-6.26558, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.349478], [-6.261063, 53.349478], [-6.261063, 53.34678], [-6.26558, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.349478], [-6.261063, 53.352175], [-6.261063, 53.349478], [-6.26558, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.349478], [-6.26558, 53.352175], [-6.261063, 53.352175], [-6.26558, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.352175], [-6.26558, 53.354873], [-6.261063, 53.352175], [-6.26558, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.354873], [-6.261063, 53.354873], [-6.261063, 53.352175], [-6.26558, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.354873], [-6.261063, 53.357571], [-6.261063, 53.354873], [-6.26558, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.354873], [-6.26558, 53.357571], [-6.261063, 53.357571], [-6.26558, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.357571], [-6.26558, 53.360269], [-6.261063, 53.357571], [-6.26558, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.360269], [-6.261063, 53.360269], [-6.261063, 53.357571], [-6.26558, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.360269], [-6.261063, 53.362967], [-6.261063, 53.360269], [-6.26558, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.360269], [-6.26558, 53.362967], [-6.261063, 53.362967], [-6.26558, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.362967], [-6.26558, 53.365665], [-6.261063, 53.362967], [-6.26558, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.365665], [-6.261063, 53.365665], [-6.261063, 53.362967], [-6.26558, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.365665], [-6.261063, 53.368363], [-6.261063, 53.365665], [-6.26558, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.365665], [-6.26558, 53.368363], [-6.261063, 53.368363], [-6.26558, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.368363], [-6.26558, 53.371061], [-6.261063, 53.368363], [-6.26558, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.371061], [-6.261063, 53.371061], [-6.261063, 53.368363], [-6.26558, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.371061], [-6.261063, 53.373759], [-6.261063, 53.371061], [-6.26558, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.371061], [-6.26558, 53.373759], [-6.261063, 53.373759], [-6.26558, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.373759], [-6.26558, 53.376457], [-6.261063, 53.373759], [-6.26558, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.376457], [-6.261063, 53.376457], [-6.261063, 53.373759], [-6.26558, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.376457], [-6.261063, 53.379155], [-6.261063, 53.376457], [-6.26558, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.376457], [-6.26558, 53.379155], [-6.261063, 53.379155], [-6.26558, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.379155], [-6.26558, 53.381853], [-6.261063, 53.379155], [-6.26558, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.26558, 53.381853], [-6.261063, 53.381853], [-6.261063, 53.379155], [-6.26558, 53.381853] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.3198], [-6.261063, 53.322498], [-6.256547, 53.322498], [-6.261063, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.3198], [-6.256547, 53.322498], [-6.256547, 53.3198], [-6.261063, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.322498], [-6.261063, 53.325196], [-6.256547, 53.322498], [-6.261063, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.325196], [-6.256547, 53.325196], [-6.256547, 53.322498], [-6.261063, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.325196], [-6.261063, 53.327894], [-6.256547, 53.327894], [-6.261063, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.325196], [-6.256547, 53.327894], [-6.256547, 53.325196], [-6.261063, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.327894], [-6.261063, 53.330592], [-6.256547, 53.327894], [-6.261063, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.330592], [-6.256547, 53.330592], [-6.256547, 53.327894], [-6.261063, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.330592], [-6.261063, 53.33329], [-6.256547, 53.33329], [-6.261063, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.330592], [-6.256547, 53.33329], [-6.256547, 53.330592], [-6.261063, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 12, "stroke": "#002d57", "fill": "#002d57", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.33329], [-6.261063, 53.335988], [-6.256547, 53.33329], [-6.261063, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 12, "stroke": "#002d57", "fill": "#002d57", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.335988], [-6.256547, 53.335988], [-6.256547, 53.33329], [-6.261063, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.335988], [-6.261063, 53.338686], [-6.256547, 53.338686], [-6.261063, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.335988], [-6.256547, 53.338686], [-6.256547, 53.335988], [-6.261063, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.338686], [-6.261063, 53.341384], [-6.256547, 53.338686], [-6.261063, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.341384], [-6.256547, 53.341384], [-6.256547, 53.338686], [-6.261063, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.341384], [-6.261063, 53.344082], [-6.256547, 53.344082], [-6.261063, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.341384], [-6.256547, 53.344082], [-6.256547, 53.341384], [-6.261063, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.344082], [-6.261063, 53.34678], [-6.256547, 53.344082], [-6.261063, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.34678], [-6.256547, 53.34678], [-6.256547, 53.344082], [-6.261063, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.34678], [-6.261063, 53.349478], [-6.256547, 53.349478], [-6.261063, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.34678], [-6.256547, 53.349478], [-6.256547, 53.34678], [-6.261063, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.349478], [-6.261063, 53.352175], [-6.256547, 53.349478], [-6.261063, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.352175], [-6.256547, 53.352175], [-6.256547, 53.349478], [-6.261063, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.352175], [-6.261063, 53.354873], [-6.256547, 53.354873], [-6.261063, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.352175], [-6.256547, 53.354873], [-6.256547, 53.352175], [-6.261063, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.354873], [-6.261063, 53.357571], [-6.256547, 53.354873], [-6.261063, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.357571], [-6.256547, 53.357571], [-6.256547, 53.354873], [-6.261063, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.357571], [-6.261063, 53.360269], [-6.256547, 53.360269], [-6.261063, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.357571], [-6.256547, 53.360269], [-6.256547, 53.357571], [-6.261063, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.360269], [-6.261063, 53.362967], [-6.256547, 53.360269], [-6.261063, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.362967], [-6.256547, 53.362967], [-6.256547, 53.360269], [-6.261063, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.362967], [-6.261063, 53.365665], [-6.256547, 53.365665], [-6.261063, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.362967], [-6.256547, 53.365665], [-6.256547, 53.362967], [-6.261063, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.365665], [-6.261063, 53.368363], [-6.256547, 53.365665], [-6.261063, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.368363], [-6.256547, 53.368363], [-6.256547, 53.365665], [-6.261063, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.368363], [-6.261063, 53.371061], [-6.256547, 53.371061], [-6.261063, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.368363], [-6.256547, 53.371061], [-6.256547, 53.368363], [-6.261063, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.371061], [-6.261063, 53.373759], [-6.256547, 53.371061], [-6.261063, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.373759], [-6.256547, 53.373759], [-6.256547, 53.371061], [-6.261063, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.373759], [-6.261063, 53.376457], [-6.256547, 53.376457], [-6.261063, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.373759], [-6.256547, 53.376457], [-6.256547, 53.373759], [-6.261063, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.376457], [-6.261063, 53.379155], [-6.256547, 53.376457], [-6.261063, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.379155], [-6.256547, 53.379155], [-6.256547, 53.376457], [-6.261063, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.379155], [-6.261063, 53.381853], [-6.256547, 53.381853], [-6.261063, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.261063, 53.379155], [-6.256547, 53.381853], [-6.256547, 53.379155], [-6.261063, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.3198], [-6.256547, 53.322498], [-6.25203, 53.3198], [-6.256547, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.322498], [-6.25203, 53.322498], [-6.25203, 53.3198], [-6.256547, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.322498], [-6.25203, 53.325196], [-6.25203, 53.322498], [-6.256547, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.322498], [-6.256547, 53.325196], [-6.25203, 53.325196], [-6.256547, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.325196], [-6.256547, 53.327894], [-6.25203, 53.325196], [-6.256547, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.327894], [-6.25203, 53.327894], [-6.25203, 53.325196], [-6.256547, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.327894], [-6.25203, 53.330592], [-6.25203, 53.327894], [-6.256547, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.327894], [-6.256547, 53.330592], [-6.25203, 53.330592], [-6.256547, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.330592], [-6.256547, 53.33329], [-6.25203, 53.330592], [-6.256547, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.33329], [-6.25203, 53.33329], [-6.25203, 53.330592], [-6.256547, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.33329], [-6.25203, 53.335988], [-6.25203, 53.33329], [-6.256547, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 12, "stroke": "#002d57", "fill": "#002d57", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.33329], [-6.256547, 53.335988], [-6.25203, 53.335988], [-6.256547, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.335988], [-6.256547, 53.338686], [-6.25203, 53.335988], [-6.256547, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.338686], [-6.25203, 53.338686], [-6.25203, 53.335988], [-6.256547, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.338686], [-6.25203, 53.341384], [-6.25203, 53.338686], [-6.256547, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.338686], [-6.256547, 53.341384], [-6.25203, 53.341384], [-6.256547, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.341384], [-6.256547, 53.344082], [-6.25203, 53.341384], [-6.256547, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.344082], [-6.25203, 53.344082], [-6.25203, 53.341384], [-6.256547, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.344082], [-6.25203, 53.34678], [-6.25203, 53.344082], [-6.256547, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.344082], [-6.256547, 53.34678], [-6.25203, 53.34678], [-6.256547, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.34678], [-6.256547, 53.349478], [-6.25203, 53.34678], [-6.256547, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.349478], [-6.25203, 53.349478], [-6.25203, 53.34678], [-6.256547, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.349478], [-6.25203, 53.352175], [-6.25203, 53.349478], [-6.256547, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.349478], [-6.256547, 53.352175], [-6.25203, 53.352175], [-6.256547, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.352175], [-6.256547, 53.354873], [-6.25203, 53.352175], [-6.256547, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.354873], [-6.25203, 53.354873], [-6.25203, 53.352175], [-6.256547, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.354873], [-6.25203, 53.357571], [-6.25203, 53.354873], [-6.256547, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.354873], [-6.256547, 53.357571], [-6.25203, 53.357571], [-6.256547, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.357571], [-6.256547, 53.360269], [-6.25203, 53.357571], [-6.256547, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.360269], [-6.25203, 53.360269], [-6.25203, 53.357571], [-6.256547, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.360269], [-6.25203, 53.362967], [-6.25203, 53.360269], [-6.256547, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.360269], [-6.256547, 53.362967], [-6.25203, 53.362967], [-6.256547, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.362967], [-6.256547, 53.365665], [-6.25203, 53.362967], [-6.256547, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.365665], [-6.25203, 53.365665], [-6.25203, 53.362967], [-6.256547, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.365665], [-6.25203, 53.368363], [-6.25203, 53.365665], [-6.256547, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.365665], [-6.256547, 53.368363], [-6.25203, 53.368363], [-6.256547, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.368363], [-6.256547, 53.371061], [-6.25203, 53.368363], [-6.256547, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.371061], [-6.25203, 53.371061], [-6.25203, 53.368363], [-6.256547, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.371061], [-6.25203, 53.373759], [-6.25203, 53.371061], [-6.256547, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.371061], [-6.256547, 53.373759], [-6.25203, 53.373759], [-6.256547, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.373759], [-6.256547, 53.376457], [-6.25203, 53.373759], [-6.256547, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.376457], [-6.25203, 53.376457], [-6.25203, 53.373759], [-6.256547, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.376457], [-6.25203, 53.379155], [-6.25203, 53.376457], [-6.256547, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.376457], [-6.256547, 53.379155], [-6.25203, 53.379155], [-6.256547, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.379155], [-6.256547, 53.381853], [-6.25203, 53.379155], [-6.256547, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.256547, 53.381853], [-6.25203, 53.381853], [-6.25203, 53.379155], [-6.256547, 53.381853] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.3198], [-6.25203, 53.322498], [-6.247513, 53.322498], [-6.25203, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.3198], [-6.247513, 53.322498], [-6.247513, 53.3198], [-6.25203, 53.3198] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.322498], [-6.25203, 53.325196], [-6.247513, 53.322498], [-6.25203, 53.322498] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.325196], [-6.247513, 53.325196], [-6.247513, 53.322498], [-6.25203, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.325196], [-6.25203, 53.327894], [-6.247513, 53.327894], [-6.25203, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.325196], [-6.247513, 53.327894], [-6.247513, 53.325196], [-6.25203, 53.325196] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.327894], [-6.25203, 53.330592], [-6.247513, 53.327894], [-6.25203, 53.327894] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.330592], [-6.247513, 53.330592], [-6.247513, 53.327894], [-6.25203, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.330592], [-6.25203, 53.33329], [-6.247513, 53.33329], [-6.25203, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 14, "stroke": "#000000", "fill": "#000000", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.330592], [-6.247513, 53.33329], [-6.247513, 53.330592], [-6.25203, 53.330592] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.33329], [-6.25203, 53.335988], [-6.247513, 53.33329], [-6.25203, 53.33329] ] ] } }, { "type": "Feature", "properties": { "elevation": 13, "stroke": "#001529", "fill": "#001529", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.335988], [-6.247513, 53.335988], [-6.247513, 53.33329], [-6.25203, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.335988], [-6.25203, 53.338686], [-6.247513, 53.338686], [-6.25203, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 12, "stroke": "#002d57", "fill": "#002d57", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.335988], [-6.247513, 53.338686], [-6.247513, 53.335988], [-6.25203, 53.335988] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.338686], [-6.25203, 53.341384], [-6.247513, 53.338686], [-6.25203, 53.338686] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.341384], [-6.247513, 53.341384], [-6.247513, 53.338686], [-6.25203, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.341384], [-6.25203, 53.344082], [-6.247513, 53.344082], [-6.25203, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.341384], [-6.247513, 53.344082], [-6.247513, 53.341384], [-6.25203, 53.341384] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.344082], [-6.25203, 53.34678], [-6.247513, 53.344082], [-6.25203, 53.344082] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.34678], [-6.247513, 53.34678], [-6.247513, 53.344082], [-6.25203, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 9, "stroke": "#0070d6", "fill": "#0070d6", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.34678], [-6.25203, 53.349478], [-6.247513, 53.349478], [-6.25203, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.34678], [-6.247513, 53.349478], [-6.247513, 53.34678], [-6.25203, 53.34678] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.349478], [-6.25203, 53.352175], [-6.247513, 53.349478], [-6.25203, 53.349478] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.352175], [-6.247513, 53.352175], [-6.247513, 53.349478], [-6.25203, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.352175], [-6.25203, 53.354873], [-6.247513, 53.354873], [-6.25203, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.352175], [-6.247513, 53.354873], [-6.247513, 53.352175], [-6.25203, 53.352175] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.354873], [-6.25203, 53.357571], [-6.247513, 53.354873], [-6.25203, 53.354873] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.357571], [-6.247513, 53.357571], [-6.247513, 53.354873], [-6.25203, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.357571], [-6.25203, 53.360269], [-6.247513, 53.360269], [-6.25203, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.357571], [-6.247513, 53.360269], [-6.247513, 53.357571], [-6.25203, 53.357571] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.360269], [-6.25203, 53.362967], [-6.247513, 53.360269], [-6.25203, 53.360269] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.362967], [-6.247513, 53.362967], [-6.247513, 53.360269], [-6.25203, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.362967], [-6.25203, 53.365665], [-6.247513, 53.365665], [-6.25203, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.362967], [-6.247513, 53.365665], [-6.247513, 53.362967], [-6.25203, 53.362967] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.365665], [-6.25203, 53.368363], [-6.247513, 53.365665], [-6.25203, 53.365665] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.368363], [-6.247513, 53.368363], [-6.247513, 53.365665], [-6.25203, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.368363], [-6.25203, 53.371061], [-6.247513, 53.371061], [-6.25203, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 11, "stroke": "#004280", "fill": "#004280", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.368363], [-6.247513, 53.371061], [-6.247513, 53.368363], [-6.25203, 53.368363] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.371061], [-6.25203, 53.373759], [-6.247513, 53.371061], [-6.25203, 53.371061] ] ] } }, { "type": "Feature", "properties": { "elevation": 10, "stroke": "#0058a8", "fill": "#0058a8", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.373759], [-6.247513, 53.373759], [-6.247513, 53.371061], [-6.25203, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 7, "stroke": "#2999ff", "fill": "#2999ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.373759], [-6.25203, 53.376457], [-6.247513, 53.376457], [-6.25203, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 8, "stroke": "#0085ff", "fill": "#0085ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.373759], [-6.247513, 53.376457], [-6.247513, 53.373759], [-6.25203, 53.373759] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.376457], [-6.25203, 53.379155], [-6.247513, 53.376457], [-6.25203, 53.376457] ] ] } }, { "type": "Feature", "properties": { "elevation": 6, "stroke": "#57aeff", "fill": "#57aeff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.379155], [-6.247513, 53.379155], [-6.247513, 53.376457], [-6.25203, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.379155], [-6.25203, 53.381853], [-6.247513, 53.381853], [-6.25203, 53.379155] ] ] } }, { "type": "Feature", "properties": { "elevation": 5, "stroke": "#80c2ff", "fill": "#80c2ff", "fill-opacity": 0.85 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.25203, 53.379155], [-6.247513, 53.381853], [-6.247513, 53.379155], [-6.25203, 53.379155] ] ] } } ] } ================================================ FILE: packages/turf-interpolate/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { truncate } from "@turf/truncate"; import chromatism from "chromatism"; import { round, featureCollection, point } from "@turf/helpers"; import { featureEach, propEach } from "@turf/meta"; import { interpolate } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; var fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); // fixtures = fixtures.filter(fixture => fixture.name === 'points-random') test("turf-interpolate", (t) => { for (const { filename, name, geojson } of fixtures) { const options = geojson.properties; const cellSize = options.cellSize; const property = options.property || "elevation"; // Truncate coordinates & elevation (property) to 6 precision let result = truncate(interpolate(geojson, cellSize, options)); propEach(result, (properties) => { properties[property] = round(properties[property]); }); result = colorize(result, property, name); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, result); t.deepEquals(result, loadJsonFileSync(directories.out + filename), name); } t.end(); }); test("turf-interpolate -- throws errors", (t) => { const cellSize = 1; const weight = 0.5; const units = "miles"; const gridType = "point"; const points = featureCollection([ point([1, 2], { elevation: 200 }), point([2, 1], { elevation: 300 }), point([1.5, 1.5], { elevation: 400 }), ]); t.assert( interpolate(points, cellSize, { gridType: gridType, units: units, weight: weight, }).features.length ); t.throws( () => interpolate(points, undefined), /cellSize is required/, "cellSize is required" ); t.throws( () => interpolate(undefined, cellSize), /points is required/, "points is required" ); t.throws( () => interpolate(points, cellSize, { gridType: "foo" }), /invalid gridType/, "invalid gridType" ); t.throws( () => interpolate(points, cellSize, { units: "foo" }), "invalid units" ); t.throws( () => interpolate(points, cellSize, { weight: "foo" }), /weight must be a number/, "weight must be a number" ); t.throws( () => interpolate(points, cellSize, { property: "foo" }), /zValue is missing/, "zValue is missing" ); t.end(); }); test("turf-interpolate -- zValue from 3rd coordinate", (t) => { const cellSize = 1; const points = featureCollection([ point([1, 2, 200]), point([2, 1, 300]), point([1.5, 1.5, 400]), ]); t.assert( interpolate(points, cellSize).features.length, "zValue from 3rd coordinate" ); t.end(); }); // style result function colorize(grid, property, name) { property = property || "elevation"; let max = -Infinity; let min = Infinity; propEach(grid, (properties) => { const value = properties[property]; if (value > max) max = value; if (value < min) min = value; }); const delta = max - min; if (delta === 0) throw new Error(name + " delta is invalid"); featureEach(grid, (feature) => { const value = feature.properties[property]; const percent = round(((value - min - delta / 2) / delta) * 100); // darker corresponds to higher values const color = chromatism.brightness(-percent, "#0086FF").hex; if (feature.geometry.type === "Point") feature.properties["marker-color"] = color; else { feature.properties["stroke"] = color; feature.properties["fill"] = color; feature.properties["fill-opacity"] = 0.85; } }); return grid; } ================================================ FILE: packages/turf-interpolate/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-interpolate/types.ts ================================================ import { point, featureCollection } from "@turf/helpers"; import { interpolate } from "./index.js"; const cellSize = 1; const property = "pressure"; const gridType = "square"; const weight = 0.5; const units = "miles"; const points = featureCollection([ point([1, 2]), point([12, 13]), point([23, 22]), ]); const grid = interpolate(points, cellSize, { gridType, property, units, weight, }); grid.features[0].properties?.pressure; // Optional properties interpolate(points, cellSize, { gridType, property, units }); interpolate(points, cellSize, { gridType, property }); interpolate(points, cellSize, { gridType }); interpolate(points, cellSize, { gridType: "point" }); ================================================ FILE: packages/turf-intersect/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-intersect/README.md ================================================ # @turf/intersect ## intersect Takes [polygon][1] or [multi-polygon][2] geometries and finds their polygonal intersection. If they don't intersect, returns null. ### Parameters * `features` **[FeatureCollection][3]<([Polygon][1] | [MultiPolygon][2])>** the features to intersect * `options` **[Object][4]** Optional Parameters (optional, default `{}`) * `options.properties` **[Object][4]** Translate GeoJSON Properties to Feature (optional, default `{}`) ### Examples ```javascript var poly1 = turf.polygon([[ [-122.801742, 45.48565], [-122.801742, 45.60491], [-122.584762, 45.60491], [-122.584762, 45.48565], [-122.801742, 45.48565] ]]); var poly2 = turf.polygon([[ [-122.520217, 45.535693], [-122.64038, 45.553967], [-122.720031, 45.526554], [-122.669906, 45.507309], [-122.723464, 45.446643], [-122.532577, 45.408574], [-122.487258, 45.477466], [-122.520217, 45.535693] ]]); var intersection = turf.intersect(turf.featureCollection([poly1, poly2])); //addToMap var addToMap = [poly1, poly2, intersection]; ``` Returns **([Feature][5] | null)** returns a feature representing the area they share (either a [Polygon][1] or [MultiPolygon][2]). If they do not share any area, returns `null`. [1]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.7 [3]: https://tools.ietf.org/html/rfc7946#section-3.3 [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [5]: https://tools.ietf.org/html/rfc7946#section-3.2 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/intersect ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-intersect/bench.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { intersect } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); // Fixtures const armenia = loadJsonFileSync( path.join(__dirname, "test", "in", "armenia.geojson") ); const simple = loadJsonFileSync( path.join(__dirname, "test", "in", "Intersect1.geojson") ); /** * Benchmark Results * * turf-intersect#simple x 81,192 ops/sec ±1.94% (90 runs sampled) * turf-intersect#armenia x 45,824 ops/sec ±2.42% (88 runs sampled) */ new Benchmark.Suite("turf-intersect") .add("turf-intersect#simple", () => intersect(simple)) .add("turf-intersect#armenia", () => intersect(armenia)) .on("cycle", (e) => console.log(String(e.target))) .run(); ================================================ FILE: packages/turf-intersect/index.ts ================================================ import { Feature, GeoJsonProperties, MultiPolygon, Polygon, FeatureCollection, } from "geojson"; import { multiPolygon, polygon } from "@turf/helpers"; import { geomEach } from "@turf/meta"; import * as polyclip from "polyclip-ts"; /** * Takes {@link Polygon|polygon} or {@link MultiPolygon|multi-polygon} geometries and * finds their polygonal intersection. If they don't intersect, returns null. * * @function * @param {FeatureCollection} features the features to intersect * @param {Object} [options={}] Optional Parameters * @param {Object} [options.properties={}] Translate GeoJSON Properties to Feature * @returns {Feature|null} returns a feature representing the area they share (either a {@link Polygon} or * {@link MultiPolygon}). If they do not share any area, returns `null`. * @example * var poly1 = turf.polygon([[ * [-122.801742, 45.48565], * [-122.801742, 45.60491], * [-122.584762, 45.60491], * [-122.584762, 45.48565], * [-122.801742, 45.48565] * ]]); * * var poly2 = turf.polygon([[ * [-122.520217, 45.535693], * [-122.64038, 45.553967], * [-122.720031, 45.526554], * [-122.669906, 45.507309], * [-122.723464, 45.446643], * [-122.532577, 45.408574], * [-122.487258, 45.477466], * [-122.520217, 45.535693] * ]]); * * var intersection = turf.intersect(turf.featureCollection([poly1, poly2])); * * //addToMap * var addToMap = [poly1, poly2, intersection]; */ function intersect

( features: FeatureCollection, options: { properties?: P; } = {} ): Feature | null { const geoms: polyclip.Geom[] = []; geomEach(features, (geom) => { geoms.push(geom.coordinates as polyclip.Geom); }); if (geoms.length < 2) { throw new Error("Must specify at least 2 geometries"); } const intersection = polyclip.intersection(geoms[0], ...geoms.slice(1)); if (intersection.length === 0) return null; if (intersection.length === 1) return polygon(intersection[0], options.properties); return multiPolygon(intersection, options.properties); } export { intersect }; export default intersect; ================================================ FILE: packages/turf-intersect/package.json ================================================ { "name": "@turf/intersect", "version": "7.3.4", "description": "Finds the shared area between two polygons.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "gis", "intersect" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "polyclip-ts": "^0.16.8", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-intersect/test/in/Intersect1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.88571166992188, 32.887659962078956], [-80.09788513183594, 32.927436533285565], [-80.15350341796875, 32.82825010814964], [-80.00312805175781, 32.69428812316933], [-79.89395141601562, 32.75551989829049], [-79.88571166992188, 32.887659962078956] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.92141723632812, 32.953944317478246], [-79.97428894042969, 32.83690450361482], [-79.97360229492188, 32.76071688548088], [-79.93034362792969, 32.76475877693074], [-79.93789672851562, 32.74108223150125], [-79.80537414550781, 32.7231762754146], [-79.81773376464844, 32.923402043498875], [-79.92141723632812, 32.953944317478246] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/in/Intersect2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.92141723632812, 32.953944317478246], [-80.068359375, 32.88189375925038], [-80.01686096191406, 32.87266705436184], [-79.97360229492188, 32.76071688548088], [-79.93034362792969, 32.76475877693074], [-79.93789672851562, 32.74108223150125], [-79.80537414550781, 32.7231762754146], [-79.81773376464844, 32.923402043498875], [-79.92141723632812, 32.953944317478246] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80.10543823242188, 32.94760622243483], [-80.14389038085938, 32.8149783969858], [-80.07453918457031, 32.85536439443039], [-79.99351501464844, 32.84440429734253], [-79.98184204101562, 32.90495631913751], [-80.10543823242188, 32.94760622243483] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/in/armenia.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "id": "ARM", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [43.582746, 41.092143], [44.97248, 41.248129], [45.179496, 40.985354], [45.560351, 40.81229], [45.359175, 40.561504], [45.891907, 40.218476], [45.610012, 39.899994], [46.034534, 39.628021], [46.483499, 39.464155], [46.50572, 38.770605], [46.143623, 38.741201], [45.735379, 39.319719], [45.739978, 39.473999], [45.298145, 39.471751], [45.001987, 39.740004], [44.79399, 39.713003], [44.400009, 40.005], [43.656436, 40.253564], [43.752658, 40.740201], [43.582746, 41.092143] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [45.1318359375, 40.1452892956766], [45.1318359375, 43.197167282501276], [53.3935546875, 43.197167282501276], [53.3935546875, 40.1452892956766], [45.1318359375, 40.1452892956766] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/in/infinite-loop-2705.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "source": "https://github.com/Turfjs/turf/issues/2705#issue-2491630158" }, "geometry": { "type": "Polygon", "coordinates": [ [ [126.55856392608325, 34.46272192666609], [126.55889007353417, 34.46273185169668], [126.55893420916493, 34.46182149433875], [126.55860547472139, 34.46181162317049], [126.55856392608325, 34.46272192666609], [126.55856392608325, 34.46272192666609] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [ [126.558597, 34.461803], [126.558614, 34.46182], [126.558657, 34.461791], [126.55864, 34.461774], [126.558597, 34.461803] ] ], [ [ [126.558599, 34.461789], [126.558602, 34.461822], [126.558657, 34.461819], [126.558654, 34.461786], [126.558599, 34.461789] ] ], [ [ [126.558584, 34.461796], [126.558607, 34.461816], [126.558647, 34.461784], [126.558624, 34.461764], [126.558584, 34.461796] ] ], [ [ [126.558599, 34.461811], [126.558626, 34.461818], [126.558642, 34.461775], [126.558615, 34.461768], [126.558599, 34.461811] ] ], [ [ [126.558597, 34.461808], [126.558621, 34.461819], [126.55865, 34.46178], [126.558626, 34.461769], [126.558597, 34.461808] ] ], [ [ [126.558595, 34.461801], [126.558612, 34.461818], [126.558655, 34.461789], [126.558638, 34.461772], [126.558595, 34.461801] ] ], [ [ [126.558596, 34.461802], [126.558613, 34.461819], [126.558656, 34.46179], [126.558639, 34.461773], [126.558596, 34.461802] ] ], [ [ [126.558601, 34.4618], [126.558601, 34.461843], [126.558656, 34.461843], [126.558656, 34.4618], [126.558601, 34.4618] ] ], [ [ [126.558601, 34.461821], [126.558599, 34.461866], [126.558655, 34.461868], [126.558657, 34.461823], [126.558601, 34.461821] ] ], [ [ [126.558601, 34.461845], [126.558597, 34.46189], [126.558652, 34.461893], [126.558656, 34.461848], [126.558601, 34.461845] ] ], [ [ [126.558598, 34.461871], [126.558596, 34.46192], [126.558652, 34.461921], [126.558654, 34.461872], [126.558598, 34.461871] ] ], [ [ [126.558597, 34.461899], [126.558594, 34.461951], [126.55865, 34.461953], [126.558653, 34.461901], [126.558597, 34.461899] ] ], [ [ [126.558595, 34.46193], [126.558592, 34.461982], [126.558648, 34.461984], [126.558651, 34.461932], [126.558595, 34.46193] ] ], [ [ [126.558593, 34.461961], [126.55859, 34.46201], [126.558646, 34.462013], [126.558649, 34.461964], [126.558593, 34.461961] ] ], [ [ [126.558591, 34.46199], [126.558588, 34.462037], [126.558644, 34.46204], [126.558647, 34.461993], [126.558591, 34.46199] ] ], [ [ [126.558589, 34.462017], [126.558586, 34.462065], [126.558642, 34.462068], [126.558645, 34.46202], [126.558589, 34.462017] ] ], [ [ [126.558587, 34.462045], [126.558584, 34.462093], [126.55864, 34.462096], [126.558643, 34.462048], [126.558587, 34.462045] ] ], [ [ [126.558585, 34.462074], [126.558583, 34.462123], [126.558639, 34.462124], [126.558641, 34.462075], [126.558585, 34.462074] ] ], [ [ [126.558584, 34.462103], [126.558582, 34.462156], [126.558638, 34.462157], [126.55864, 34.462104], [126.558584, 34.462103] ] ], [ [ [126.558583, 34.462135], [126.55858, 34.462188], [126.558636, 34.46219], [126.558639, 34.462137], [126.558583, 34.462135] ] ], [ [ [126.558581, 34.462168], [126.558579, 34.462221], [126.558635, 34.462222], [126.558637, 34.462169], [126.558581, 34.462168] ] ], [ [ [126.55858, 34.4622], [126.558577, 34.462252], [126.558633, 34.462254], [126.558636, 34.462202], [126.55858, 34.4622] ] ], [ [ [126.558578, 34.462231], [126.558575, 34.462283], [126.558631, 34.462285], [126.558634, 34.462233], [126.558578, 34.462231] ] ], [ [ [126.558576, 34.462262], [126.558573, 34.462315], [126.558629, 34.462317], [126.558632, 34.462264], [126.558576, 34.462262] ] ], [ [ [126.558574, 34.462295], [126.558572, 34.46235], [126.558628, 34.462351], [126.55863, 34.462296], [126.558574, 34.462295] ] ], [ [ [126.558573, 34.46233], [126.558573, 34.462387], [126.558628, 34.462387], [126.558628, 34.46233], [126.558573, 34.46233] ] ], [ [ [126.558573, 34.462366], [126.558571, 34.462418], [126.558627, 34.462419], [126.558629, 34.462367], [126.558573, 34.462366] ] ], [ [ [126.558572, 34.462398], [126.55857, 34.462448], [126.558626, 34.462449], [126.558628, 34.462399], [126.558572, 34.462398] ] ], [ [ [126.558571, 34.462427], [126.558568, 34.462479], [126.558624, 34.462481], [126.558627, 34.462429], [126.558571, 34.462427] ] ], [ [ [126.558569, 34.462458], [126.558566, 34.462511], [126.558622, 34.462513], [126.558625, 34.46246], [126.558569, 34.462458] ] ], [ [ [126.558567, 34.46249], [126.558564, 34.462542], [126.55862, 34.462544], [126.558623, 34.462492], [126.558567, 34.46249] ] ], [ [ [126.558565, 34.462521], [126.558562, 34.462573], [126.558618, 34.462575], [126.558621, 34.462523], [126.558565, 34.462521] ] ], [ [ [126.558563, 34.462552], [126.55856, 34.462604], [126.558616, 34.462606], [126.558619, 34.462554], [126.558563, 34.462552] ] ], [ [ [126.558561, 34.462584], [126.558559, 34.462633], [126.558615, 34.462634], [126.558617, 34.462585], [126.558561, 34.462584] ] ], [ [ [126.55856, 34.462612], [126.558557, 34.462659], [126.558613, 34.462662], [126.558616, 34.462615], [126.55856, 34.462612] ] ], [ [ [126.558558, 34.46264], [126.558556, 34.462687], [126.558612, 34.462688], [126.558614, 34.462641], [126.558558, 34.46264] ] ], [ [ [126.558557, 34.462666], [126.558555, 34.462709], [126.558611, 34.462711], [126.558613, 34.462668], [126.558557, 34.462666] ] ], [ [ [126.558557, 34.462687], [126.558554, 34.462718], [126.558609, 34.462722], [126.558612, 34.462691], [126.558557, 34.462687] ] ], [ [ [126.558556, 34.462697], [126.558552, 34.462724], [126.558608, 34.462729], [126.558612, 34.462702], [126.558556, 34.462697] ] ], [ [ [126.558554, 34.462706], [126.558554, 34.462732], [126.558609, 34.462732], [126.558609, 34.462706], [126.558554, 34.462706] ] ], [ [ [126.558594, 34.462699], [126.558568, 34.462699], [126.558568, 34.462744], [126.558594, 34.462744], [126.558594, 34.462699] ] ], [ [ [126.558608, 34.462732], [126.558608, 34.462709], [126.558553, 34.462709], [126.558553, 34.462732], [126.558608, 34.462732] ] ], [ [ [126.558608, 34.46273], [126.558608, 34.462708], [126.558553, 34.462708], [126.558553, 34.46273], [126.558608, 34.46273] ] ], [ [ [126.558553, 34.462708], [126.558553, 34.462729], [126.558608, 34.462729], [126.558608, 34.462708], [126.558553, 34.462708] ] ], [ [ [126.558553, 34.462708], [126.558553, 34.462729], [126.558608, 34.462729], [126.558608, 34.462708], [126.558553, 34.462708] ] ], [ [ [126.558608, 34.462729], [126.558608, 34.462707], [126.558553, 34.462707], [126.558553, 34.462729], [126.558608, 34.462729] ] ], [ [ [126.558553, 34.462707], [126.558553, 34.462728], [126.558608, 34.462728], [126.558608, 34.462707], [126.558553, 34.462707] ] ], [ [ [126.558553, 34.462707], [126.558553, 34.462728], [126.558608, 34.462728], [126.558608, 34.462707], [126.558553, 34.462707] ] ], [ [ [126.558568, 34.46274], [126.558594, 34.46274], [126.558594, 34.462695], [126.558568, 34.462695], [126.558568, 34.46274] ] ], [ [ [126.558554, 34.462707], [126.558554, 34.462728], [126.558609, 34.462728], [126.558609, 34.462707], [126.558554, 34.462707] ] ], [ [ [126.558554, 34.462707], [126.558554, 34.462728], [126.558609, 34.462728], [126.558609, 34.462707], [126.558554, 34.462707] ] ], [ [ [126.558554, 34.462707], [126.558554, 34.462728], [126.558609, 34.462728], [126.558609, 34.462707], [126.558554, 34.462707] ] ], [ [ [126.558594, 34.462695], [126.558568, 34.462695], [126.558568, 34.46274], [126.558594, 34.46274], [126.558594, 34.462695] ] ], [ [ [126.558553, 34.462707], [126.558553, 34.462729], [126.558608, 34.462729], [126.558608, 34.462707], [126.558553, 34.462707] ] ], [ [ [126.558553, 34.462708], [126.558553, 34.462729], [126.558608, 34.462729], [126.558608, 34.462708], [126.558553, 34.462708] ] ], [ [ [126.558593, 34.462696], [126.558567, 34.462696], [126.558567, 34.462741], [126.558593, 34.462741], [126.558593, 34.462696] ] ], [ [ [126.558567, 34.462741], [126.558596, 34.462741], [126.558596, 34.462696], [126.558567, 34.462696], [126.558567, 34.462741] ] ], [ [ [126.558573, 34.462742], [126.558613, 34.46274], [126.558609, 34.462694], [126.558569, 34.462696], [126.558573, 34.462742] ] ], [ [ [126.558586, 34.46274], [126.558628, 34.46274], [126.558628, 34.462695], [126.558586, 34.462695], [126.558586, 34.46274] ] ], [ [ [126.558634, 34.462738], [126.558652, 34.462711], [126.558603, 34.462688], [126.558585, 34.462715], [126.558634, 34.462738] ] ], [ [ [126.558651, 34.462716], [126.558645, 34.462675], [126.558589, 34.46268], [126.558595, 34.462721], [126.558651, 34.462716] ] ], [ [ [126.558646, 34.462698], [126.558648, 34.462645], [126.558592, 34.462644], [126.55859, 34.462697], [126.558646, 34.462698] ] ], [ [ [126.558647, 34.462666], [126.55865, 34.462611], [126.558594, 34.462609], [126.558591, 34.462664], [126.558647, 34.462666] ] ], [ [ [126.558649, 34.462632], [126.558652, 34.462579], [126.558596, 34.462577], [126.558593, 34.46263], [126.558649, 34.462632] ] ], [ [ [126.558651, 34.462599], [126.558653, 34.462549], [126.558597, 34.462548], [126.558595, 34.462598], [126.558651, 34.462599] ] ], [ [ [126.558652, 34.46257], [126.558655, 34.462517], [126.558599, 34.462515], [126.558596, 34.462568], [126.558652, 34.46257] ] ], [ [ [126.558654, 34.462538], [126.558657, 34.462485], [126.558601, 34.462483], [126.558598, 34.462536], [126.558654, 34.462538] ] ], [ [ [126.558656, 34.462505], [126.558658, 34.462453], [126.558602, 34.462452], [126.5586, 34.462504], [126.558656, 34.462505] ] ], [ [ [126.558657, 34.462474], [126.55866, 34.46242], [126.558604, 34.462418], [126.558601, 34.462472], [126.558657, 34.462474] ] ], [ [ [126.558659, 34.462441], [126.558662, 34.462388], [126.558606, 34.462386], [126.558603, 34.462439], [126.558659, 34.462441] ] ], [ [ [126.558661, 34.462408], [126.558663, 34.462355], [126.558607, 34.462354], [126.558605, 34.462407], [126.558661, 34.462408] ] ], [ [ [126.558662, 34.462376], [126.558665, 34.462323], [126.558609, 34.462321], [126.558606, 34.462374], [126.558662, 34.462376] ] ], [ [ [126.558664, 34.462343], [126.558666, 34.462291], [126.55861, 34.46229], [126.558608, 34.462342], [126.558664, 34.462343] ] ], [ [ [126.558665, 34.462312], [126.558668, 34.462259], [126.558612, 34.462257], [126.558609, 34.46231], [126.558665, 34.462312] ] ], [ [ [126.558667, 34.462279], [126.558669, 34.462226], [126.558613, 34.462225], [126.558611, 34.462278], [126.558667, 34.462279] ] ], [ [ [126.558668, 34.462247], [126.558671, 34.462193], [126.558615, 34.462191], [126.558612, 34.462245], [126.558668, 34.462247] ] ], [ [ [126.55867, 34.462213], [126.558672, 34.462161], [126.558616, 34.46216], [126.558614, 34.462212], [126.55867, 34.462213] ] ], [ [ [126.558671, 34.462182], [126.558674, 34.462129], [126.558618, 34.462127], [126.558615, 34.46218], [126.558671, 34.462182] ] ], [ [ [126.558673, 34.46215], [126.558676, 34.462096], [126.55862, 34.462094], [126.558617, 34.462148], [126.558673, 34.46215] ] ], [ [ [126.558675, 34.462116], [126.558677, 34.462064], [126.558621, 34.462063], [126.558619, 34.462115], [126.558675, 34.462116] ] ], [ [ [126.558676, 34.462085], [126.558679, 34.462032], [126.558623, 34.46203], [126.55862, 34.462083], [126.558676, 34.462085] ] ], [ [ [126.558678, 34.462052], [126.55868, 34.462], [126.558624, 34.461999], [126.558622, 34.462051], [126.558678, 34.462052] ] ], [ [ [126.558679, 34.46202], [126.558681, 34.461967], [126.558625, 34.461966], [126.558623, 34.462019], [126.558679, 34.46202] ] ], [ [ [126.55868, 34.461988], [126.558683, 34.461935], [126.558627, 34.461933], [126.558624, 34.461986], [126.55868, 34.461988] ] ], [ [ [126.558682, 34.461955], [126.558684, 34.461902], [126.558628, 34.461901], [126.558626, 34.461954], [126.558682, 34.461955] ] ], [ [ [126.558683, 34.461923], [126.558686, 34.46187], [126.55863, 34.461868], [126.558627, 34.461921], [126.558683, 34.461923] ] ], [ [ [126.558685, 34.461891], [126.558688, 34.461837], [126.558632, 34.461835], [126.558629, 34.461889], [126.558685, 34.461891] ] ], [ [ [126.558687, 34.461857], [126.558689, 34.461808], [126.558633, 34.461807], [126.558631, 34.461856], [126.558687, 34.461857] ] ], [ [ [126.558688, 34.461829], [126.55869, 34.461792], [126.558634, 34.46179], [126.558632, 34.461827], [126.558688, 34.461829] ] ], [ [ [126.558667, 34.461826], [126.558695, 34.461811], [126.558663, 34.461773], [126.558635, 34.461788], [126.558667, 34.461826] ] ], [ [ [126.558653, 34.461819], [126.558698, 34.461824], [126.558704, 34.461778], [126.558659, 34.461773], [126.558653, 34.461819] ] ], [ [ [126.558666, 34.461816], [126.558703, 34.46183], [126.558725, 34.461788], [126.558688, 34.461774], [126.558666, 34.461816] ] ], [ [ [126.558677, 34.461791], [126.55867, 34.461826], [126.558725, 34.461833], [126.558732, 34.461798], [126.558677, 34.461791] ] ], [ [ [126.558673, 34.461807], [126.558668, 34.461854], [126.558723, 34.461858], [126.558728, 34.461811], [126.558673, 34.461807] ] ], [ [ [126.558669, 34.461834], [126.558666, 34.461889], [126.558722, 34.461891], [126.558725, 34.461836], [126.558669, 34.461834] ] ], [ [ [126.558667, 34.461869], [126.558665, 34.461922], [126.558721, 34.461923], [126.558723, 34.46187], [126.558667, 34.461869] ] ], [ [ [126.558666, 34.461902], [126.558666, 34.461954], [126.558721, 34.461954], [126.558721, 34.461902], [126.558666, 34.461902] ] ], [ [ [126.558666, 34.461932], [126.558663, 34.461984], [126.558719, 34.461986], [126.558722, 34.461934], [126.558666, 34.461932] ] ], [ [ [126.558664, 34.461963], [126.558661, 34.462016], [126.558717, 34.462018], [126.55872, 34.461965], [126.558664, 34.461963] ] ], [ [ [126.558662, 34.461996], [126.55866, 34.462048], [126.558716, 34.462049], [126.558718, 34.461997], [126.558662, 34.461996] ] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/in/issue-1004.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-114.757217, 32.618318], [-114.757217, 32.619977], [-114.757213, 32.619977], [-114.757213, 32.618318], [-114.757217, 32.618318] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-114.755129, 32.618401], [-114.755129, 32.618401], [-114.755129, 32.618402], [-114.75513, 32.618402], [-114.75513, 32.618401], [-114.755131, 32.618395], [-114.755135, 32.618385], [-114.755142, 32.618374], [-114.75515, 32.618363], [-114.75516, 32.618353], [-114.755171, 32.618345], [-114.755183, 32.618339], [-114.755195, 32.618334], [-114.755207, 32.618332], [-114.755218, 32.618331], [-114.755228, 32.618331], [-114.75701, 32.618318], [-114.757014, 32.618319], [-114.757018, 32.618321], [-114.757028, 32.618325], [-114.757041, 32.61833], [-114.757053, 32.618337], [-114.757066, 32.618344], [-114.757078, 32.618352], [-114.757088, 32.618362], [-114.757098, 32.618371], [-114.757107, 32.618382], [-114.757116, 32.618393], [-114.757124, 32.618404], [-114.757132, 32.618414], [-114.757138, 32.618426], [-114.757142, 32.618438], [-114.757146, 32.61845], [-114.757151, 32.618463], [-114.757154, 32.618476], [-114.757157, 32.618489], [-114.75716, 32.618502], [-114.757163, 32.618515], [-114.757165, 32.618527], [-114.757168, 32.618538], [-114.75717, 32.618547], [-114.757171, 32.618552], [-114.757219, 32.619925], [-114.757215, 32.619925], [-114.757211, 32.619927], [-114.757202, 32.619933], [-114.757192, 32.61994], [-114.757182, 32.619947], [-114.75717, 32.619953], [-114.757157, 32.619958], [-114.757143, 32.619964], [-114.75713, 32.619968], [-114.757117, 32.619972], [-114.757105, 32.619974], [-114.757095, 32.619976], [-114.757088, 32.619977], [-114.755325, 32.619959], [-114.755324, 32.619958], [-114.755319, 32.619956], [-114.755307, 32.619954], [-114.755294, 32.619952], [-114.755281, 32.61995], [-114.755269, 32.619946], [-114.755257, 32.61994], [-114.755245, 32.619934], [-114.755233, 32.619927], [-114.755224, 32.619919], [-114.755216, 32.619911], [-114.755209, 32.619902], [-114.755202, 32.619891], [-114.755198, 32.619881], [-114.755195, 32.61987], [-114.755191, 32.61986], [-114.755189, 32.619849], [-114.755187, 32.619838], [-114.755185, 32.619826], [-114.755183, 32.619814], [-114.755182, 32.619801], [-114.75518, 32.619789], [-114.755178, 32.619777], [-114.755177, 32.619764], [-114.755177, 32.619752], [-114.755176, 32.61974], [-114.755175, 32.619729], [-114.755173, 32.619718], [-114.755172, 32.61971], [-114.755171, 32.619705], [-114.755129, 32.618401] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/in/issue-1394.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [-85.42358091, 41.76872876], [-85.42358054, 41.76871738], [-85.42343269, 41.76871941], [-85.42342892, 41.7687873], [-85.42343247, 41.76882923], [-85.42343403, 41.76885906], [-85.42343247, 41.76893021], [-85.4234327, 41.76893113], [-85.42343245, 41.768932], [-85.42343245, 41.76896821], [-85.42357911, 41.76896572], [-85.42357911, 41.76895253], [-85.42357911, 41.768932], [-85.42358073, 41.76885781], [-85.42357713, 41.76878899], [-85.42358091, 41.76872876] ] ] } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [-85.42775567, 41.76834521], [-85.42261052, 41.76843269], [-85.42260803, 41.76844995], [-85.4226073, 41.76845496], [-85.42260484, 41.76848048], [-85.42260083, 41.76852204], [-85.42260191, 41.76856362], [-85.42260586, 41.7685989], [-85.42263068, 41.76862319], [-85.42334654, 41.76860736], [-85.42335464, 41.76862399], [-85.4233818, 41.76867993], [-85.42338342, 41.76869724], [-85.42338701, 41.76872004], [-85.42339693, 41.76871991], [-85.42343269, 41.76871941], [-85.42358054, 41.76871738], [-85.42358091, 41.76872876], [-85.42357713, 41.768789], [-85.42358073, 41.76885781], [-85.42357911, 41.768932], [-85.42357911, 41.76895253], [-85.42357911, 41.76896572], [-85.42595679, 41.76892533], [-85.42595476, 41.76888531], [-85.42599703, 41.7688939], [-85.42599798, 41.76892451], [-85.426518, 41.76891567], [-85.42776659, 41.76889445], [-85.42781994, 41.76889354], [-85.42781971, 41.76888565], [-85.42781923, 41.76886922], [-85.42780934, 41.76879664], [-85.42782049, 41.76870985], [-85.42782211, 41.76864827], [-85.42782265, 41.76858656], [-85.42782337, 41.76852915], [-85.42782301, 41.76847763], [-85.42782337, 41.7684563], [-85.42775364, 41.76845772], [-85.42775456, 41.76840654], [-85.42775499, 41.76838269], [-85.42775536, 41.76836222], [-85.42775567, 41.76834521] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/in/issue-412.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [11.076136797048882, 9.856269774244707], [11.262359619140625, 9.85386305739084], [11.083831787109375, 9.85386305739084], [11.076136797048882, 9.856269774244707] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [11.62078857421875, 10.306812602471467], [11.162109375, 9.848450887107404], [11.072845458984375, 9.85656910923582], [11.62078857421875, 10.306812602471467] ] ] }, "properties": {} } ] } ================================================ FILE: packages/turf-intersect/test/in/issue-702.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-74.79611411690712, 7.765254307777397], [-74.79562863707542, 7.764475626432059], [-74.79497820138931, 7.763392645711534], [-74.79475021362305, 7.762971411965751], [-74.79475021362305, 7.759810152181373], [-74.79756385087967, 7.759810152181373], [-74.7976054251194, 7.75992841747734], [-74.79764297604561, 7.760640666196679], [-74.79771003127098, 7.761103095689322], [-74.79768589138985, 7.761723654007994], [-74.7976054251194, 7.762247207851331], [-74.79763090610504, 7.762539547277072], [-74.79781463742256, 7.762691032172228], [-74.79823172092438, 7.76314814415656], [-74.79852139949799, 7.763707574135239], [-74.798883497715, 7.7647427169537195], [-74.79926839470863, 7.765593153304707], [-74.79629516601562, 7.765593153304707], [-74.79611411690712, 7.765254307777397] ] ], [ [ [-74.79480117559433, 7.763330191523508], [-74.79475021362305, 7.763336835586514], [-74.79475021362305, 7.76296875433826], [-74.79497820138931, 7.763392645711534], [-74.79480117559433, 7.763330191523508] ] ] ] }, "properties": { "vt_layer": "water" }, "id": 0 }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.79376316070557, 7.766060892564003], [-74.79382753372192, 7.765593153304712], [-74.79288339614868, 7.765699457727546], [-74.79376316070557, 7.766060892564003] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/in/issue-820.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [43.741513133300735, 56.20222135938059], [43.74237144018551, 56.18856400988486], [43.77756202246089, 56.187608768581725], [43.77927863623042, 56.19639609165836], [43.763142466796836, 56.20212587032091], [43.741513133300735, 56.20222135938059] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [43.970066430113974, 56.332893840607994], [43.970066430115764, 56.33289386305967], [43.96907396330773, 56.33216050512385], [43.96712784882449, 56.3329676824026], [43.9675997442062, 56.33331243182769], [43.96955706305079, 56.33351088302814], [43.96958194836136, 56.33343379993835], [43.969613521760365, 56.3333626110674], [43.96964739754773, 56.3333044427381], [43.96968537953426, 56.3332457040905], [43.96973157401614, 56.333186395086614], [43.969791873109784, 56.333117882577056], [43.96983217547703, 56.3330786121781], [43.969883502771644, 56.3330312788475], [43.969928670817815, 56.332993640236595], [43.96997589197615, 56.33295771241299], [43.97002822123187, 56.332919492368774], [43.970066430113974, 56.332893840607994] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/in/linestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4.8618364334106445, 45.784404601286774], [4.86544132232666, 45.78434474634739], [4.88217830657959, 45.78745711798122], [4.886684417724609, 45.78691845071048], [4.888958930969238, 45.78494329284938], [4.876770973205566, 45.782100139729486], [4.874668121337891, 45.77934663219167], [4.865655899047851, 45.77904732970034], [4.859733581542969, 45.77976565298041], [4.860033988952637, 45.78213006841216], [4.8618364334106445, 45.784404601286774] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4.86544132232666, 45.78434474634739], [4.88217830657959, 45.78745711798122], [4.8838090896606445, 45.79044961914028], [4.880805015563965, 45.79257419743464], [4.875955581665039, 45.78808555655138], [4.869647026062012, 45.78742719215828], [4.863724708557129, 45.78575132043314], [4.86544132232666, 45.78434474634739] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/in/missing-islands-2084.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "source": "https://github.com/Turfjs/turf/issues/2084#issue-902802697" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-113.34221616566167, 42.72749839683379], [-113.34422051782082, 42.73763022099034], [-113.34602091263709, 42.74776204514689], [-113.34757744700497, 42.757893869303444], [-113.3488503613965, 42.76802569346], [-113.34980157164547, 42.77815751761655], [-113.35039554793526, 42.7882893417731], [-113.35059966094683, 42.79842116592965], [-113.35038417274245, 42.808552990086206], [-113.34972205522699, 42.81868481424276], [-113.34858878297648, 42.82881663839931], [-113.34696218983753, 42.83894846255586], [-113.34482242003024, 42.849080286712415], [-113.34215195882072, 42.85921211086897], [-113.34044031184473, 42.86465881869336], [-113.33898416124809, 42.86934393502552], [-113.33531965368003, 42.87947575918207], [-113.33108617159658, 42.88960758333862], [-113.32673518382107, 42.898789248162814], [-113.3262829516782, 42.899739407495176], [-113.32098672364542, 42.90987123165173], [-113.3150884351566, 42.92000305580828], [-113.31303005579741, 42.92327111364501], [-113.30863574143333, 42.93013487996483], [-113.30158921186182, 42.940266704121385], [-113.29932492777375, 42.94331966864196], [-113.2939470361242, 42.95039852827794], [-113.28568446305374, 42.96053035243449], [-113.2856197997501, 42.96060615112174], [-113.27678134164277, 42.97066217659104], [-113.27191467172644, 42.975901947203184], [-113.26721213122191, 42.98079400074759], [-113.25820954370278, 42.98973136711528], [-113.25695955601647, 42.990925824904146], [-113.2459708068134, 43.0010576490607], [-113.24450441567912, 43.00236543461658], [-113.23420136880357, 43.01118947321725], [-113.23079928765546, 43.01401499667304], [-113.22161634733155, 43.0213212973738], [-113.2170941596318, 43.024827831713246], [-113.20815748364195, 43.031453121530355], [-113.20338903160814, 43.03491311968221], [-113.19375623656546, 43.04158494568691], [-113.18968390358448, 43.04435566353103], [-113.1783342782194, 43.05171676984346], [-113.17597877556082, 43.053222183583124], [-113.16227364753716, 43.061567567742706], [-113.16178958326367, 43.06184859400001], [-113.1485685195135, 43.06944604592946], [-113.14392413254552, 43.07198041815656], [-113.13486339148984, 43.076884407340415], [-113.12468416975315, 43.082112242313116], [-113.12115826346619, 43.08391142248678], [-113.10745313544253, 43.09056277462457], [-113.10380603742766, 43.09224406646967], [-113.09374800741887, 43.09686281149846], [-113.08105914975012, 43.10237589062622], [-113.08004287939521, 43.10281622348303], [-113.06633775137155, 43.10846572553491], [-113.05595768410025, 43.11250771478277], [-113.05263262334789, 43.113801082737744], [-113.03892749532423, 43.118855422709984], [-113.02804848052969, 43.122639538939325], [-113.02522236730057, 43.12362274332118], [-113.01151723927691, 43.12813254323416], [-112.99781211125325, 43.13237082919632], [-112.99643810996427, 43.13277136309588], [-112.9841069832296, 43.13637133029275], [-112.97040185520594, 43.14011929880119], [-112.95951272776081, 43.14290318725243], [-112.95669672718228, 43.143624800019055], [-112.94299159915862, 43.14690580593801], [-112.92928647113496, 43.14994912088687], [-112.9155813431113, 43.15275933061889], [-112.91412135627137, 43.15303501140898], [-112.90187621508764, 43.155355936337436], [-112.88817108706398, 43.15772600974665], [-112.87446595904032, 43.159869752055975], [-112.86076083101666, 43.16178851984129], [-112.84961701899758, 43.163166835565534], [-112.847055702993, 43.16348555383334], [-112.83335057496934, 43.16496812718983], [-112.81964544694569, 43.16622502310549], [-112.80594031892203, 43.16725534374592], [-112.79223519089837, 43.16805768197573], [-112.77853006287471, 43.16863013432147], [-112.76482493485105, 43.168970295209846], [-112.75111980682739, 43.16907523431523], [-112.73741467880373, 43.16894146058576], [-112.72370955078007, 43.168564877890496], [-112.71000442275641, 43.16794073807304], [-112.69629929473275, 43.16706359742245], [-112.6825941667091, 43.16592728218677], [-112.66888903868544, 43.16452486784609], [-112.6577671349259, 43.163166835565534], [-112.65518391066178, 43.16285208349927], [-112.64147878263812, 43.1609141978228], [-112.62777365461446, 43.15868678748944], [-112.6140685265908, 43.156159354568175], [-112.60036339856714, 43.15332070171928], [-112.59910834242524, 43.15303501140898], [-112.58665827054348, 43.15018402604024], [-112.57295314251982, 43.1467132676845], [-112.55928779379896, 43.14290318725243], [-112.55924801449616, 43.14289197878029], [-112.5455428864725, 43.1387315884445], [-112.53183775844884, 43.13418665328615], [-112.53183775844884, 43.14290318725243], [-112.53183775844884, 43.15303501140898], [-112.53183775844884, 43.163166835565534], [-112.53183775844884, 43.173298659722086], [-112.53183775844884, 43.18343048387864], [-112.53183775844884, 43.19356230803519], [-112.53183775844884, 43.20369413219174], [-112.53183775844884, 43.213825956348295], [-112.53183775844884, 43.22395778050485], [-112.53183775844884, 43.2340896046614], [-112.53183775844884, 43.24422142881795], [-112.53183775844884, 43.254353252974504], [-112.53183775844884, 43.264485077131056], [-112.53183775844884, 43.27461690128761], [-112.53183775844884, 43.28474872544416], [-112.53183775844884, 43.29488054960071], [-112.53183775844884, 43.305012373757265], [-112.53183775844884, 43.31514419791382], [-112.53183775844884, 43.32527602207037], [-112.53183775844884, 43.33540784622692], [-112.53183775844884, 43.345539670383474], [-112.53183775844884, 43.355671494540026], [-112.53183775844884, 43.36580331869658], [-112.53183775844884, 43.37593514285313], [-112.53183775844884, 43.38606696700968], [-112.53183775844884, 43.396198791166235], [-112.53183775844884, 43.40633061532279], [-112.53183775844884, 43.41646243947934], [-112.53183775844884, 43.42659426363589], [-112.53183775844884, 43.436726087792444], [-112.53183775844884, 43.446857911948996], [-112.53183775844884, 43.45698973610555], [-112.53183775844884, 43.4671215602621], [-112.53183775844884, 43.47725338441865], [-112.53183775844884, 43.487385208575205], [-112.53183775844884, 43.49751703273176], [-112.53183775844884, 43.50764885688831], [-112.53183775844884, 43.51778068104486], [-112.53183775844884, 43.527912505201414], [-112.53183775844884, 43.538044329357966], [-112.53183775844884, 43.54817615351452], [-112.53183775844884, 43.55830797767107], [-112.53183775844884, 43.56843980182762], [-112.53183775844884, 43.578571625984175], [-112.53183775844884, 43.58870345014073], [-112.53183775844884, 43.59883527429728], [-112.53183775844884, 43.60896709845383], [-112.53183775844884, 43.619098922610384], [-112.53183775844884, 43.629230746766936], [-112.53183775844884, 43.63936257092349], [-112.53183775844884, 43.64949439508004], [-112.53183775844884, 43.65962621923659], [-112.53183775844884, 43.669758043393145], [-112.53183775844884, 43.6798898675497], [-112.53183775844884, 43.69002169170625], [-112.53183775844884, 43.7001535158628], [-112.53183775844884, 43.710285340019354], [-112.53183775844884, 43.720417164175906], [-112.53183775844884, 43.73054898833246], [-112.53183775844884, 43.74068081248901], [-112.53183775844884, 43.75081263664556], [-112.53183775844884, 43.760944460802115], [-112.53183775844884, 43.77107628495867], [-112.53183775844884, 43.78120810911522], [-112.53183775844884, 43.79133993327177], [-112.53183775844884, 43.801471757428324], [-112.53183775844884, 43.811603581584876], [-112.53183775844884, 43.82173540574143], [-112.53183775844884, 43.83186722989798], [-112.53183775844884, 43.84199905405453], [-112.53183775844884, 43.852130878211085], [-112.53183775844884, 43.86226270236764], [-112.53183775844884, 43.87239452652419], [-112.53183775844884, 43.88252635068074], [-112.53183775844884, 43.892658174837294], [-112.53183775844884, 43.902789998993846], [-112.53183775844884, 43.9129218231504], [-112.53183775844884, 43.92305364730695], [-112.53183775844884, 43.9331854714635], [-112.53183775844884, 43.943317295620055], [-112.53183775844884, 43.95344911977661], [-112.53183775844884, 43.96358094393316], [-112.53183775844884, 43.97371276808971], [-112.53183775844884, 43.983844592246264], [-112.53183775844884, 43.993976416402816], [-112.53183775844884, 44.00410824055937], [-112.53183775844884, 44.01424006471592], [-112.53183775844884, 44.02437188887247], [-112.53183775844884, 44.034503713029025], [-112.53183775844884, 44.04463553718558], [-112.53183775844884, 44.05476736134213], [-112.53183775844884, 44.06489918549868], [-112.53183775844884, 44.075031009655234], [-112.53183775844884, 44.085162833811786], [-112.53183775844884, 44.09529465796834], [-112.53183775844884, 44.10542648212489], [-112.53183775844884, 44.11555830628144], [-112.53183775844884, 44.125690130437995], [-112.53183775844884, 44.13582195459455], [-112.53183775844884, 44.1459537787511], [-112.53183775844884, 44.15608560290765], [-112.53183775844884, 44.166217427064204], [-112.53183775844884, 44.176349251220756], [-112.53183775844884, 44.18648107537731], [-112.53183775844884, 44.19661289953386], [-112.53183775844884, 44.20674472369041], [-112.53183775844884, 44.216876547846965], [-112.53183775844884, 44.22700837200352], [-112.53183775844884, 44.23714019616007], [-112.53183775844884, 44.24727202031662], [-112.53183775844884, 44.257403844473174], [-112.53183775844884, 44.267535668629726], [-112.53183775844884, 44.27766749278628], [-112.53183775844884, 44.28779931694283], [-112.53183775844884, 44.29793114109938], [-112.53183775844884, 44.308062965255935], [-112.53183775844884, 44.31819478941249], [-112.53183775844884, 44.32832661356904], [-112.53183775844884, 44.33845843772559], [-112.53183775844884, 44.348590261882144], [-112.53183775844884, 44.358722086038696], [-112.53183775844884, 44.36885391019525], [-112.53183775844884, 44.3789857343518], [-112.53183775844884, 44.38911755850835], [-112.53183775844884, 44.399249382664905], [-112.53183775844884, 44.40938120682146], [-112.53183775844884, 44.41951303097801], [-112.53183775844884, 44.42964485513456], [-112.53183775844884, 44.439776679291114], [-112.53183775844884, 44.449908503447666], [-112.53183775844884, 44.46004032760422], [-112.53183775844884, 44.47017215176077], [-112.53183775844884, 44.48030397591732], [-112.53183775844884, 44.490435800073875], [-112.53183775844884, 44.50056762423043], [-112.53183775844884, 44.51069944838698], [-112.53183775844884, 44.52083127254353], [-112.53183775844884, 44.530963096700084], [-112.53183775844884, 44.54109492085664], [-112.53183775844884, 44.55122674501319], [-112.53183775844884, 44.56135856916974], [-112.53183775844884, 44.57149039332629], [-112.53183775844884, 44.581622217482845], [-112.53183775844884, 44.5917540416394], [-112.53183775844884, 44.60188586579595], [-112.53183775844884, 44.6120176899525], [-112.53183775844884, 44.622149514109054], [-112.53183775844884, 44.63228133826561], [-112.53183775844884, 44.64241316242216], [-112.53183775844884, 44.65254498657871], [-112.53183775844884, 44.66267681073526], [-112.53183775844884, 44.672808634891815], [-112.53183775844884, 44.68294045904837], [-112.53183775844884, 44.69307228320492], [-112.53183775844884, 44.70320410736147], [-112.53183775844884, 44.713335931518024], [-112.53183775844884, 44.72346775567458], [-112.53183775844884, 44.73359957983113], [-112.53183775844884, 44.74373140398768], [-112.53183775844884, 44.75386322814423], [-112.53183775844884, 44.763995052300785], [-112.53183775844884, 44.77412687645734], [-112.53183775844884, 44.78425870061389], [-112.53183775844884, 44.79439052477044], [-112.53183775844884, 44.804522348926994], [-112.53183775844884, 44.81465417308355], [-112.53183775844884, 44.8247859972401], [-112.53183775844884, 44.83491782139665], [-112.53183775844884, 44.8450496455532], [-112.53183775844884, 44.855181469709756], [-112.53183775844884, 44.86531329386631], [-112.53183775844884, 44.87544511802286], [-112.53183775844884, 44.88557694217941], [-112.53183775844884, 44.895708766335964], [-112.53183775844884, 44.90584059049252], [-112.53183775844884, 44.91597241464907], [-112.53183775844884, 44.92610423880562], [-112.53183775844884, 44.93623606296217], [-112.53183775844884, 44.946367887118726], [-112.53183775844884, 44.95649971127528], [-112.53183775844884, 44.96663153543183], [-112.53183775844884, 44.97676335958838], [-112.53183775844884, 44.986895183744934], [-112.53183775844884, 44.99702700790149], [-112.53183775844884, 45.00715883205804], [-112.53183775844884, 45.01729065621459], [-112.53183775844884, 45.02742248037114], [-112.53183775844884, 45.037554304527696], [-112.53183775844884, 45.04768612868425], [-112.53183775844884, 45.0578179528408], [-112.53183775844884, 45.06794977699735], [-112.53183775844884, 45.078081601153905], [-112.53183775844884, 45.08821342531046], [-112.53183775844884, 45.09834524946701], [-112.53183775844884, 45.10847707362356], [-112.53183775844884, 45.11860889778011], [-112.53183775844884, 45.128740721936666], [-112.53183775844884, 45.13887254609322], [-112.53183775844884, 45.14900437024977], [-112.53183775844884, 45.15913619440632], [-112.53183775844884, 45.169268018562875], [-112.53183775844884, 45.17939984271943], [-112.53183775844884, 45.18953166687598], [-112.53183775844884, 45.19966349103253], [-112.53183775844884, 45.20979531518908], [-112.53183775844884, 45.219927139345636], [-112.53183775844884, 45.23005896350219], [-112.53183775844884, 45.24019078765874], [-112.53183775844884, 45.25032261181529], [-112.53183775844884, 45.260454435971845], [-112.53183775844884, 45.2705862601284], [-112.53183775844884, 45.28071808428495], [-112.53183775844884, 45.2908499084415], [-112.53183775844884, 45.30098173259805], [-112.53183775844884, 45.311113556754606], [-112.53183775844884, 45.32124538091116], [-112.53183775844884, 45.33137720506771], [-112.53183775844884, 45.34150902922426], [-112.53183775844884, 45.351640853380815], [-112.53183775844884, 45.36177267753737], [-112.53183775844884, 45.37190450169392], [-112.53183775844884, 45.38203632585047], [-112.53183775844884, 45.39216815000702], [-112.53183775844884, 45.402299974163576], [-112.53183775844884, 45.41243179832013], [-112.53183775844884, 45.42256362247668], [-112.53183775844884, 45.43269544663323], [-112.53183775844884, 45.442827270789785], [-112.53183775844884, 45.45295909494634], [-112.53183775844884, 45.46309091910289], [-112.53183775844884, 45.47322274325944], [-112.53183775844884, 45.483354567415994], [-112.53183775844884, 45.493486391572546], [-112.53183775844884, 45.5036182157291], [-112.53183775844884, 45.51375003988565], [-112.53183775844884, 45.5238818640422], [-112.53183775844884, 45.534013688198755], [-112.53183775844884, 45.54414551235531], [-112.53183775844884, 45.55427733651186], [-112.53183775844884, 45.56440916066841], [-112.53183775844884, 45.574540984824964], [-112.53183775844884, 45.584672808981516], [-112.53183775844884, 45.59480463313807], [-112.53183775844884, 45.60493645729462], [-112.53183775844884, 45.61506828145117], [-112.53183775844884, 45.625200105607725], [-112.53183775844884, 45.63533192976428], [-112.53183775844884, 45.64546375392083], [-112.53183775844884, 45.65559557807738], [-112.53183775844884, 45.665727402233934], [-112.53183775844884, 45.675859226390486], [-112.53183775844884, 45.68599105054704], [-112.53183775844884, 45.69612287470359], [-112.53183775844884, 45.70625469886014], [-112.53183775844884, 45.716386523016695], [-112.53183775844884, 45.72651834717325], [-112.53183775844884, 45.7366501713298], [-112.53183775844884, 45.74678199548635], [-112.53183775844884, 45.756913819642904], [-112.53183775844884, 45.767045643799456], [-112.53183775844884, 45.77717746795601], [-112.53183775844884, 45.78730929211256], [-112.53183775844884, 45.79744111626911], [-112.53183775844884, 45.807572940425665], [-112.53183775844884, 45.81770476458222], [-112.53183775844884, 45.82783658873877], [-112.53183775844884, 45.83796841289532], [-112.53183775844884, 45.848100237051874], [-112.53183775844884, 45.858232061208426], [-112.53183775844884, 45.86836388536498], [-112.53183775844884, 45.87849570952153], [-112.53183775844884, 45.88862753367808], [-112.53183775844884, 45.898759357834635], [-112.53183775844884, 45.90889118199119], [-112.53183775844884, 45.91902300614774], [-112.53183775844884, 45.92915483030429], [-112.53183775844884, 45.939286654460844], [-112.53183775844884, 45.949418478617396], [-112.53183775844884, 45.95955030277395], [-112.53183775844884, 45.9696821269305], [-112.53183775844884, 45.97981395108705], [-112.53183775844884, 45.989945775243605], [-112.53183775844884, 46.00007759940016], [-112.53183775844884, 46.01020942355671], [-112.53183775844884, 46.02034124771326], [-112.53183775844884, 46.030473071869814], [-112.53183775844884, 46.040604896026366], [-112.53183775844884, 46.05073672018292], [-112.53183775844884, 46.06086854433947], [-112.53183775844884, 46.07100036849602], [-112.53183775844884, 46.081132192652575], [-112.53183775844884, 46.09126401680913], [-112.53183775844884, 46.10139584096568], [-112.53183775844884, 46.11152766512223], [-112.53183775844884, 46.121659489278784], [-112.53183775844884, 46.131791313435336], [-112.53183775844884, 46.14192313759189], [-112.53183775844884, 46.15205496174844], [-112.53183775844884, 46.16218678590499], [-112.53183775844884, 46.172318610061545], [-112.53183775844884, 46.1824504342181], [-112.53183775844884, 46.19258225837465], [-112.53183775844884, 46.2027140825312], [-112.53183775844884, 46.212845906687754], [-112.53183775844884, 46.222977730844306], [-112.53183775844884, 46.23310955500086], [-112.53183775844884, 46.24324137915741], [-112.53183775844884, 46.25337320331396], [-112.53183775844884, 46.263505027470515], [-112.53183775844884, 46.27363685162707], [-112.53183775844884, 46.28376867578362], [-112.53183775844884, 46.29390049994017], [-112.53183775844884, 46.304032324096724], [-112.53183775844884, 46.314164148253276], [-112.53183775844884, 46.32429597240983], [-112.53183775844884, 46.33442779656638], [-112.53183775844884, 46.34455962072293], [-112.53183775844884, 46.354691444879485], [-112.53183775844884, 46.36482326903604], [-112.53183775844884, 46.37495509319259], [-112.53183775844884, 46.38508691734914], [-112.53183775844884, 46.395218741505694], [-112.53183775844884, 46.405350565662246], [-112.53183775844884, 46.4154823898188], [-112.53183775844884, 46.42561421397535], [-112.53183775844884, 46.4357460381319], [-112.53183775844884, 46.445877862288455], [-112.53183775844884, 46.45600968644501], [-112.53183775844884, 46.46614151060156], [-112.53183775844884, 46.47627333475811], [-112.53183775844884, 46.486405158914664], [-112.53183775844884, 46.496536983071216], [-112.53183775844884, 46.50666880722777], [-112.53183775844884, 46.51680063138432], [-112.53183775844884, 46.52693245554087], [-112.53183775844884, 46.537064279697425], [-112.53183775844884, 46.54719610385398], [-112.53183775844884, 46.55732792801053], [-112.53183775844884, 46.56745975216708], [-112.53183775844884, 46.577591576323634], [-112.53183775844884, 46.587723400480186], [-112.53183775844884, 46.59785522463674], [-112.53183775844884, 46.60798704879329], [-112.53183775844884, 46.61811887294984], [-112.53183775844884, 46.628250697106395], [-112.53183775844884, 46.63838252126295], [-112.53183775844884, 46.6485143454195], [-112.53183775844884, 46.65864616957605], [-112.53183775844884, 46.668777993732604], [-112.53183775844884, 46.678909817889156], [-112.53183775844884, 46.68904164204571], [-112.53183775844884, 46.69917346620226], [-112.53183775844884, 46.70930529035881], [-112.53183775844884, 46.719437114515365], [-112.53183775844884, 46.72956893867192], [-112.53183775844884, 46.73970076282847], [-112.53183775844884, 46.74983258698502], [-112.53183775844884, 46.759964411141574], [-112.53183775844884, 46.770096235298126], [-112.53183775844884, 46.78022805945468], [-112.53183775844884, 46.79035988361123], [-112.53183775844884, 46.80049170776778], [-112.53183775844884, 46.810623531924335], [-112.53183775844884, 46.82075535608089], [-112.53183775844884, 46.83088718023744], [-112.53183775844884, 46.84101900439399], [-112.53183775844884, 46.851150828550544], [-112.53183775844884, 46.8612826527071], [-112.53183775844884, 46.87141447686365], [-112.53183775844884, 46.8815463010202], [-112.53183775844884, 46.89167812517675], [-112.53183775844884, 46.901809949333305], [-112.53183775844884, 46.91194177348986], [-112.53183775844884, 46.92207359764641], [-112.53183775844884, 46.93220542180296], [-112.53183775844884, 46.942337245959514], [-112.53183775844884, 46.95246907011607], [-112.53183775844884, 46.96260089427262], [-112.53183775844884, 46.97273271842917], [-112.53183775844884, 46.98286454258572], [-112.53183775844884, 46.992996366742275], [-112.53183775844884, 47.00312819089883], [-112.53183775844884, 47.01326001505538], [-112.53183775844884, 47.02339183921193], [-112.53183775844884, 47.033523663368484], [-112.53183775844884, 47.04365548752504], [-112.53183775844884, 47.05378731168159], [-112.53183775844884, 47.06391913583814], [-112.53183775844884, 47.07405095999469], [-112.53183775844884, 47.084182784151245], [-112.53183775844884, 47.0943146083078], [-112.53183775844884, 47.10444643246435], [-112.53183775844884, 47.1145782566209], [-112.53183775844884, 47.124710080777454], [-112.53183775844884, 47.13484190493401], [-112.53183775844884, 47.14497372909056], [-112.53183775844884, 47.15510555324711], [-112.53183775844884, 47.16523737740366], [-112.53183775844884, 47.175369201560216], [-112.53183775844884, 47.18550102571677], [-112.53183775844884, 47.19563284987332], [-112.53183775844884, 47.20576467402987], [-112.53183775844884, 47.215896498186424], [-112.53183775844884, 47.22602832234298], [-112.53183775844884, 47.23616014649953], [-112.53183775844884, 47.24629197065608], [-112.53183775844884, 47.25642379481263], [-112.53183775844884, 47.266555618969186], [-112.53183775844884, 47.27668744312574], [-112.53183775844884, 47.28681926728229], [-112.53183775844884, 47.29695109143884], [-112.53183775844884, 47.307082915595394], [-112.5455428864725, 47.307082915595394], [-112.55924801449616, 47.307082915595394], [-112.57295314251982, 47.307082915595394], [-112.58665827054348, 47.307082915595394], [-112.60036339856714, 47.307082915595394], [-112.6140685265908, 47.307082915595394], [-112.62777365461446, 47.307082915595394], [-112.64147878263812, 47.307082915595394], [-112.65518391066178, 47.307082915595394], [-112.66888903868544, 47.307082915595394], [-112.6825941667091, 47.307082915595394], [-112.69629929473275, 47.307082915595394], [-112.71000442275641, 47.307082915595394], [-112.72370955078007, 47.307082915595394], [-112.73741467880373, 47.307082915595394], [-112.75111980682739, 47.307082915595394], [-112.76482493485105, 47.307082915595394], [-112.77853006287471, 47.307082915595394], [-112.79223519089837, 47.307082915595394], [-112.80594031892203, 47.307082915595394], [-112.81964544694569, 47.307082915595394], [-112.83335057496934, 47.307082915595394], [-112.847055702993, 47.307082915595394], [-112.86076083101666, 47.307082915595394], [-112.87446595904032, 47.307082915595394], [-112.88817108706398, 47.307082915595394], [-112.90187621508764, 47.307082915595394], [-112.9155813431113, 47.307082915595394], [-112.92928647113496, 47.307082915595394], [-112.94299159915862, 47.307082915595394], [-112.95669672718228, 47.307082915595394], [-112.97040185520594, 47.307082915595394], [-112.9841069832296, 47.307082915595394], [-112.99781211125325, 47.307082915595394], [-113.01151723927691, 47.307082915595394], [-113.02522236730057, 47.307082915595394], [-113.03892749532423, 47.307082915595394], [-113.05263262334789, 47.307082915595394], [-113.06633775137155, 47.307082915595394], [-113.08004287939521, 47.307082915595394], [-113.09374800741887, 47.307082915595394], [-113.10745313544253, 47.307082915595394], [-113.12115826346619, 47.307082915595394], [-113.13486339148984, 47.307082915595394], [-113.1485685195135, 47.307082915595394], [-113.16227364753716, 47.307082915595394], [-113.17597877556082, 47.307082915595394], [-113.18968390358448, 47.307082915595394], [-113.20338903160814, 47.307082915595394], [-113.2170941596318, 47.307082915595394], [-113.23079928765546, 47.307082915595394], [-113.24450441567912, 47.307082915595394], [-113.25820954370278, 47.307082915595394], [-113.27191467172644, 47.307082915595394], [-113.2856197997501, 47.307082915595394], [-113.29932492777375, 47.307082915595394], [-113.31303005579741, 47.307082915595394], [-113.32673518382107, 47.307082915595394], [-113.34044031184473, 47.307082915595394], [-113.35414543986839, 47.307082915595394], [-113.36785056789205, 47.307082915595394], [-113.38155569591571, 47.307082915595394], [-113.39526082393937, 47.307082915595394], [-113.40896595196303, 47.307082915595394], [-113.42267107998669, 47.307082915595394], [-113.43637620801034, 47.307082915595394], [-113.450081336034, 47.307082915595394], [-113.46378646405766, 47.307082915595394], [-113.47749159208132, 47.307082915595394], [-113.49119672010498, 47.307082915595394], [-113.50490184812864, 47.307082915595394], [-113.5186069761523, 47.307082915595394], [-113.53231210417596, 47.307082915595394], [-113.54601723219962, 47.307082915595394], [-113.55972236022328, 47.307082915595394], [-113.57342748824694, 47.307082915595394], [-113.5871326162706, 47.307082915595394], [-113.60083774429425, 47.307082915595394], [-113.61454287231791, 47.307082915595394], [-113.62824800034157, 47.307082915595394], [-113.64195312836523, 47.307082915595394], [-113.65565825638889, 47.307082915595394], [-113.66936338441255, 47.307082915595394], [-113.68306851243621, 47.307082915595394], [-113.69677364045987, 47.307082915595394], [-113.71047876848353, 47.307082915595394], [-113.72418389650718, 47.307082915595394], [-113.73788902453084, 47.307082915595394], [-113.7515941525545, 47.307082915595394], [-113.76529928057816, 47.307082915595394], [-113.77900440860182, 47.307082915595394], [-113.79270953662548, 47.307082915595394], [-113.80641466464914, 47.307082915595394], [-113.8201197926728, 47.307082915595394], [-113.83382492069646, 47.307082915595394], [-113.84753004872012, 47.307082915595394], [-113.86123517674378, 47.307082915595394], [-113.87494030476743, 47.307082915595394], [-113.8886454327911, 47.307082915595394], [-113.90235056081475, 47.307082915595394], [-113.91605568883841, 47.307082915595394], [-113.92976081686207, 47.307082915595394], [-113.94346594488573, 47.307082915595394], [-113.95717107290939, 47.307082915595394], [-113.97087620093305, 47.307082915595394], [-113.98458132895671, 47.307082915595394], [-113.99828645698037, 47.307082915595394], [-114.01199158500403, 47.307082915595394], [-114.02569671302768, 47.307082915595394], [-114.03940184105134, 47.307082915595394], [-114.053106969075, 47.307082915595394], [-114.06681209709866, 47.307082915595394], [-114.08051722512232, 47.307082915595394], [-114.09422235314598, 47.307082915595394], [-114.10792748116964, 47.307082915595394], [-114.1216326091933, 47.307082915595394], [-114.13533773721696, 47.307082915595394], [-114.14904286524062, 47.307082915595394], [-114.16274799326428, 47.307082915595394], [-114.17645312128793, 47.307082915595394], [-114.1901582493116, 47.307082915595394], [-114.20386337733525, 47.307082915595394], [-114.21756850535891, 47.307082915595394], [-114.23127363338257, 47.307082915595394], [-114.24497876140623, 47.307082915595394], [-114.25868388942989, 47.307082915595394], [-114.27238901745355, 47.307082915595394], [-114.28609414547721, 47.307082915595394], [-114.29979927350087, 47.307082915595394], [-114.31350440152453, 47.307082915595394], [-114.32720952954818, 47.307082915595394], [-114.34091465757184, 47.307082915595394], [-114.3546197855955, 47.307082915595394], [-114.36832491361916, 47.307082915595394], [-114.38203004164282, 47.307082915595394], [-114.39573516966648, 47.307082915595394], [-114.40944029769014, 47.307082915595394], [-114.4231454257138, 47.307082915595394], [-114.43685055373746, 47.307082915595394], [-114.45055568176112, 47.307082915595394], [-114.46426080978478, 47.307082915595394], [-114.47796593780843, 47.307082915595394], [-114.4916710658321, 47.307082915595394], [-114.50537619385575, 47.307082915595394], [-114.51908132187941, 47.307082915595394], [-114.53278644990307, 47.307082915595394], [-114.54649157792673, 47.307082915595394], [-114.56019670595039, 47.307082915595394], [-114.57390183397405, 47.307082915595394], [-114.58760696199771, 47.307082915595394], [-114.60131209002137, 47.307082915595394], [-114.61501721804503, 47.307082915595394], [-114.62872234606868, 47.307082915595394], [-114.64242747409234, 47.307082915595394], [-114.656132602116, 47.307082915595394], [-114.66983773013966, 47.307082915595394], [-114.68354285816332, 47.307082915595394], [-114.69724798618698, 47.307082915595394], [-114.71095311421064, 47.307082915595394], [-114.7246582422343, 47.307082915595394], [-114.73836337025796, 47.307082915595394], [-114.75206849828162, 47.307082915595394], [-114.76577362630528, 47.307082915595394], [-114.77947875432893, 47.307082915595394], [-114.7931838823526, 47.307082915595394], [-114.80688901037625, 47.307082915595394], [-114.82059413839991, 47.307082915595394], [-114.83429926642357, 47.307082915595394], [-114.84800439444723, 47.307082915595394], [-114.86170952247089, 47.307082915595394], [-114.87541465049455, 47.307082915595394], [-114.88911977851821, 47.307082915595394], [-114.90282490654187, 47.307082915595394], [-114.91653003456553, 47.307082915595394], [-114.93023516258918, 47.307082915595394], [-114.94394029061284, 47.307082915595394], [-114.9576454186365, 47.307082915595394], [-114.97135054666016, 47.307082915595394], [-114.98505567468382, 47.307082915595394], [-114.99876080270748, 47.307082915595394], [-115.01246593073114, 47.307082915595394], [-115.0261710587548, 47.307082915595394], [-115.03987618677846, 47.307082915595394], [-115.05358131480212, 47.307082915595394], [-115.06728644282578, 47.307082915595394], [-115.08099157084943, 47.307082915595394], [-115.0946966988731, 47.307082915595394], [-115.10840182689675, 47.307082915595394], [-115.12210695492041, 47.307082915595394], [-115.13581208294407, 47.307082915595394], [-115.14951721096773, 47.307082915595394], [-115.16322233899139, 47.307082915595394], [-115.17692746701505, 47.307082915595394], [-115.19063259503871, 47.307082915595394], [-115.20433772306237, 47.307082915595394], [-115.21804285108603, 47.307082915595394], [-115.23174797910968, 47.307082915595394], [-115.24545310713334, 47.307082915595394], [-115.259158235157, 47.307082915595394], [-115.27286336318066, 47.307082915595394], [-115.28656849120432, 47.307082915595394], [-115.30027361922798, 47.307082915595394], [-115.31397874725164, 47.307082915595394], [-115.3276838752753, 47.307082915595394], [-115.34138900329896, 47.307082915595394], [-115.35509413132262, 47.307082915595394], [-115.36879925934628, 47.307082915595394], [-115.38250438736993, 47.307082915595394], [-115.3962095153936, 47.307082915595394], [-115.40991464341725, 47.307082915595394], [-115.42361977144091, 47.307082915595394], [-115.43732489946457, 47.307082915595394], [-115.45103002748823, 47.307082915595394], [-115.46473515551189, 47.307082915595394], [-115.47844028353555, 47.307082915595394], [-115.4921454115592, 47.307082915595394], [-115.50585053958287, 47.307082915595394], [-115.51955566760653, 47.307082915595394], [-115.53326079563018, 47.307082915595394], [-115.54696592365384, 47.307082915595394], [-115.5606710516775, 47.307082915595394], [-115.57437617970116, 47.307082915595394], [-115.58808130772482, 47.307082915595394], [-115.60178643574848, 47.307082915595394], [-115.61549156377214, 47.307082915595394], [-115.6291966917958, 47.307082915595394], [-115.64290181981946, 47.307082915595394], [-115.65660694784312, 47.307082915595394], [-115.67031207586678, 47.307082915595394], [-115.68401720389043, 47.307082915595394], [-115.6977223319141, 47.307082915595394], [-115.71142745993775, 47.307082915595394], [-115.72513258796141, 47.307082915595394], [-115.73883771598507, 47.307082915595394], [-115.75254284400873, 47.307082915595394], [-115.76624797203239, 47.307082915595394], [-115.77995310005605, 47.307082915595394], [-115.7936582280797, 47.307082915595394], [-115.80736335610337, 47.307082915595394], [-115.82106848412703, 47.307082915595394], [-115.83477361215068, 47.307082915595394], [-115.84847874017434, 47.307082915595394], [-115.862183868198, 47.307082915595394], [-115.87588899622166, 47.307082915595394], [-115.88959412424532, 47.307082915595394], [-115.90329925226898, 47.307082915595394], [-115.91700438029264, 47.307082915595394], [-115.9307095083163, 47.307082915595394], [-115.94441463633996, 47.307082915595394], [-115.95811976436362, 47.307082915595394], [-115.97182489238727, 47.307082915595394], [-115.98553002041093, 47.307082915595394], [-115.9992351484346, 47.307082915595394], [-116.01294027645825, 47.307082915595394], [-116.02664540448191, 47.307082915595394], [-116.04035053250557, 47.307082915595394], [-116.05405566052923, 47.307082915595394], [-116.06776078855289, 47.307082915595394], [-116.08146591657655, 47.307082915595394], [-116.0951710446002, 47.307082915595394], [-116.10887617262387, 47.307082915595394], [-116.12258130064752, 47.307082915595394], [-116.13628642867118, 47.307082915595394], [-116.14999155669484, 47.307082915595394], [-116.1636966847185, 47.307082915595394], [-116.17740181274216, 47.307082915595394], [-116.19110694076582, 47.307082915595394], [-116.20481206878948, 47.307082915595394], [-116.21851719681314, 47.307082915595394], [-116.2322223248368, 47.307082915595394], [-116.24592745286046, 47.307082915595394], [-116.25963258088412, 47.307082915595394], [-116.27333770890777, 47.307082915595394], [-116.28704283693143, 47.307082915595394], [-116.3007479649551, 47.307082915595394], [-116.31445309297875, 47.307082915595394], [-116.32815822100241, 47.307082915595394], [-116.34186334902607, 47.307082915595394], [-116.35556847704973, 47.307082915595394], [-116.36927360507339, 47.307082915595394], [-116.38297873309705, 47.307082915595394], [-116.3966838611207, 47.307082915595394], [-116.41038898914437, 47.307082915595394], [-116.42409411716802, 47.307082915595394], [-116.43779924519168, 47.307082915595394], [-116.45150437321534, 47.307082915595394], [-116.465209501239, 47.307082915595394], [-116.47891462926266, 47.307082915595394], [-116.49261975728632, 47.307082915595394], [-116.50632488530998, 47.307082915595394], [-116.52003001333364, 47.307082915595394], [-116.5337351413573, 47.307082915595394], [-116.54744026938096, 47.307082915595394], [-116.56114539740462, 47.307082915595394], [-116.57485052542827, 47.307082915595394], [-116.58855565345193, 47.307082915595394], [-116.6022607814756, 47.307082915595394], [-116.61596590949925, 47.307082915595394], [-116.62967103752291, 47.307082915595394], [-116.64337616554657, 47.307082915595394], [-116.65708129357023, 47.307082915595394], [-116.67078642159389, 47.307082915595394], [-116.68449154961755, 47.307082915595394], [-116.6981966776412, 47.307082915595394], [-116.71190180566487, 47.307082915595394], [-116.72560693368852, 47.307082915595394], [-116.73931206171218, 47.307082915595394], [-116.75301718973584, 47.307082915595394], [-116.7667223177595, 47.307082915595394], [-116.78042744578316, 47.307082915595394], [-116.79413257380682, 47.307082915595394], [-116.80783770183048, 47.307082915595394], [-116.82154282985414, 47.307082915595394], [-116.8352479578778, 47.307082915595394], [-116.84895308590146, 47.307082915595394], [-116.86265821392512, 47.307082915595394], [-116.87636334194877, 47.307082915595394], [-116.89006846997243, 47.307082915595394], [-116.90377359799609, 47.307082915595394], [-116.91747872601975, 47.307082915595394], [-116.93118385404341, 47.307082915595394], [-116.94488898206707, 47.307082915595394], [-116.95859411009073, 47.307082915595394], [-116.97229923811439, 47.307082915595394], [-116.98600436613805, 47.307082915595394], [-116.9997094941617, 47.307082915595394], [-117.01341462218537, 47.307082915595394], [-117.02711975020902, 47.307082915595394], [-117.04082487823268, 47.307082915595394], [-117.05453000625634, 47.307082915595394], [-117.06823513428, 47.307082915595394], [-117.08194026230366, 47.307082915595394], [-117.09564539032732, 47.307082915595394], [-117.10935051835098, 47.307082915595394], [-117.12305564637464, 47.307082915595394], [-117.1367607743983, 47.307082915595394], [-117.15046590242196, 47.307082915595394], [-117.16417103044562, 47.307082915595394], [-117.17787615846927, 47.307082915595394], [-117.19158128649293, 47.307082915595394], [-117.20528641451659, 47.307082915595394], [-117.21899154254025, 47.307082915595394], [-117.23269667056391, 47.307082915595394], [-117.24640179858757, 47.307082915595394], [-117.26010692661123, 47.307082915595394], [-117.27381205463489, 47.307082915595394], [-117.28751718265855, 47.307082915595394], [-117.3012223106822, 47.307082915595394], [-117.31492743870587, 47.307082915595394], [-117.32863256672952, 47.307082915595394], [-117.34233769475318, 47.307082915595394], [-117.35604282277684, 47.307082915595394], [-117.3697479508005, 47.307082915595394], [-117.38345307882416, 47.307082915595394], [-117.39715820684782, 47.307082915595394], [-117.41086333487148, 47.307082915595394], [-117.42456846289514, 47.307082915595394], [-117.4382735909188, 47.307082915595394], [-117.45197871894246, 47.307082915595394], [-117.46568384696612, 47.307082915595394], [-117.47938897498977, 47.307082915595394], [-117.49309410301343, 47.307082915595394], [-117.50679923103709, 47.307082915595394], [-117.52050435906075, 47.307082915595394], [-117.53420948708441, 47.307082915595394], [-117.54791461510807, 47.307082915595394], [-117.56161974313173, 47.307082915595394], [-117.57532487115539, 47.307082915595394], [-117.58902999917905, 47.307082915595394], [-117.6027351272027, 47.307082915595394], [-117.61644025522637, 47.307082915595394], [-117.63014538325002, 47.307082915595394], [-117.64385051127368, 47.307082915595394], [-117.65755563929734, 47.307082915595394], [-117.671260767321, 47.307082915595394], [-117.68496589534466, 47.307082915595394], [-117.69867102336832, 47.307082915595394], [-117.71237615139198, 47.307082915595394], [-117.72608127941564, 47.307082915595394], [-117.7397864074393, 47.307082915595394], [-117.75349153546296, 47.307082915595394], [-117.76719666348662, 47.307082915595394], [-117.78090179151027, 47.307082915595394], [-117.79460691953393, 47.307082915595394], [-117.80831204755759, 47.307082915595394], [-117.82201717558125, 47.307082915595394], [-117.83572230360491, 47.307082915595394], [-117.84942743162857, 47.307082915595394], [-117.86313255965223, 47.307082915595394], [-117.87683768767589, 47.307082915595394], [-117.89054281569955, 47.307082915595394], [-117.9042479437232, 47.307082915595394], [-117.91795307174687, 47.307082915595394], [-117.93165819977052, 47.307082915595394], [-117.94536332779418, 47.307082915595394], [-117.95906845581784, 47.307082915595394], [-117.9727735838415, 47.307082915595394], [-117.98647871186516, 47.307082915595394], [-118.00018383988882, 47.307082915595394], [-118.01388896791248, 47.307082915595394], [-118.02759409593614, 47.307082915595394], [-118.0412992239598, 47.307082915595394], [-118.05500435198346, 47.307082915595394], [-118.06870948000712, 47.307082915595394], [-118.08241460803077, 47.307082915595394], [-118.09611973605443, 47.307082915595394], [-118.10982486407809, 47.307082915595394], [-118.12352999210175, 47.307082915595394], [-118.13723512012541, 47.307082915595394], [-118.15094024814907, 47.307082915595394], [-118.16464537617273, 47.307082915595394], [-118.17835050419639, 47.307082915595394], [-118.19205563222005, 47.307082915595394], [-118.2057607602437, 47.307082915595394], [-118.21946588826737, 47.307082915595394], [-118.23317101629102, 47.307082915595394], [-118.24687614431468, 47.307082915595394], [-118.26058127233834, 47.307082915595394], [-118.274286400362, 47.307082915595394], [-118.28799152838566, 47.307082915595394], [-118.30169665640932, 47.307082915595394], [-118.31540178443298, 47.307082915595394], [-118.32910691245664, 47.307082915595394], [-118.3428120404803, 47.307082915595394], [-118.35651716850396, 47.307082915595394], [-118.37022229652761, 47.307082915595394], [-118.38392742455127, 47.307082915595394], [-118.39763255257493, 47.307082915595394], [-118.41133768059859, 47.307082915595394], [-118.42504280862225, 47.307082915595394], [-118.43874793664591, 47.307082915595394], [-118.45245306466957, 47.307082915595394], [-118.46615819269323, 47.307082915595394], [-118.47986332071689, 47.307082915595394], [-118.49356844874055, 47.307082915595394], [-118.5072735767642, 47.307082915595394], [-118.52097870478786, 47.307082915595394], [-118.53468383281152, 47.307082915595394], [-118.54838896083518, 47.307082915595394], [-118.56209408885884, 47.307082915595394], [-118.5757992168825, 47.307082915595394], [-118.58950434490616, 47.307082915595394], [-118.60320947292982, 47.307082915595394], [-118.61691460095348, 47.307082915595394], [-118.63061972897714, 47.307082915595394], [-118.6443248570008, 47.307082915595394], [-118.65802998502446, 47.307082915595394], [-118.67173511304811, 47.307082915595394], [-118.68544024107177, 47.307082915595394], [-118.69914536909543, 47.307082915595394], [-118.71285049711909, 47.307082915595394], [-118.72655562514275, 47.307082915595394], [-118.74026075316641, 47.307082915595394], [-118.75396588119007, 47.307082915595394], [-118.76767100921373, 47.307082915595394], [-118.78137613723739, 47.307082915595394], [-118.79508126526105, 47.307082915595394], [-118.8087863932847, 47.307082915595394], [-118.82249152130836, 47.307082915595394], [-118.83619664933202, 47.307082915595394], [-118.84990177735568, 47.307082915595394], [-118.86360690537934, 47.307082915595394], [-118.877312033403, 47.307082915595394], [-118.89101716142666, 47.307082915595394], [-118.90472228945032, 47.307082915595394], [-118.91842741747398, 47.307082915595394], [-118.93213254549764, 47.307082915595394], [-118.9458376735213, 47.307082915595394], [-118.95954280154496, 47.307082915595394], [-118.97324792956861, 47.307082915595394], [-118.98695305759227, 47.307082915595394], [-119.00065818561593, 47.307082915595394], [-119.01436331363959, 47.307082915595394], [-119.02806844166325, 47.307082915595394], [-119.04177356968691, 47.307082915595394], [-119.05547869771057, 47.307082915595394], [-119.06918382573423, 47.307082915595394], [-119.08288895375789, 47.307082915595394], [-119.09659408178155, 47.307082915595394], [-119.1102992098052, 47.307082915595394], [-119.12400433782886, 47.307082915595394], [-119.13770946585252, 47.307082915595394], [-119.15141459387618, 47.307082915595394], [-119.16511972189984, 47.307082915595394], [-119.1788248499235, 47.307082915595394], [-119.19252997794716, 47.307082915595394], [-119.20623510597082, 47.307082915595394], [-119.21994023399448, 47.307082915595394], [-119.23364536201814, 47.307082915595394], [-119.2473504900418, 47.307082915595394], [-119.26105561806546, 47.307082915595394], [-119.27476074608911, 47.307082915595394], [-119.28846587411277, 47.307082915595394], [-119.30217100213643, 47.307082915595394], [-119.31587613016009, 47.307082915595394], [-119.32958125818375, 47.307082915595394], [-119.34328638620741, 47.307082915595394], [-119.35699151423107, 47.307082915595394], [-119.37069664225473, 47.307082915595394], [-119.38440177027839, 47.307082915595394], [-119.39810689830205, 47.307082915595394], [-119.4118120263257, 47.307082915595394], [-119.42551715434936, 47.307082915595394], [-119.43922228237302, 47.307082915595394], [-119.45292741039668, 47.307082915595394], [-119.46663253842034, 47.307082915595394], [-119.480337666444, 47.307082915595394], [-119.49404279446766, 47.307082915595394], [-119.50774792249132, 47.307082915595394], [-119.52145305051498, 47.307082915595394], [-119.53515817853864, 47.307082915595394], [-119.5488633065623, 47.307082915595394], [-119.56256843458596, 47.307082915595394], [-119.57627356260961, 47.307082915595394], [-119.58997869063327, 47.307082915595394], [-119.60368381865693, 47.307082915595394], [-119.61738894668059, 47.307082915595394], [-119.63109407470425, 47.307082915595394], [-119.64479920272791, 47.307082915595394], [-119.65850433075157, 47.307082915595394], [-119.67220945877523, 47.307082915595394], [-119.68591458679889, 47.307082915595394], [-119.69961971482255, 47.307082915595394], [-119.7133248428462, 47.307082915595394], [-119.72702997086986, 47.307082915595394], [-119.74073509889352, 47.307082915595394], [-119.75444022691718, 47.307082915595394], [-119.76814535494084, 47.307082915595394], [-119.7818504829645, 47.307082915595394], [-119.79555561098816, 47.307082915595394], [-119.80926073901182, 47.307082915595394], [-119.82296586703548, 47.307082915595394], [-119.83667099505914, 47.307082915595394], [-119.8503761230828, 47.307082915595394], [-119.86408125110646, 47.307082915595394], [-119.87778637913011, 47.307082915595394], [-119.89149150715377, 47.307082915595394], [-119.90519663517743, 47.307082915595394], [-119.91890176320109, 47.307082915595394], [-119.93260689122475, 47.307082915595394], [-119.94631201924841, 47.307082915595394], [-119.96001714727207, 47.307082915595394], [-119.97372227529573, 47.307082915595394], [-119.98742740331939, 47.307082915595394], [-120.00113253134305, 47.307082915595394], [-120.0148376593667, 47.307082915595394], [-120.02854278739036, 47.307082915595394], [-120.04224791541402, 47.307082915595394], [-120.05595304343768, 47.307082915595394], [-120.05595304343768, 47.29695109143884], [-120.05595304343768, 47.28681926728229], [-120.05595304343768, 47.27668744312574], [-120.05595304343768, 47.266555618969186], [-120.05595304343768, 47.25642379481263], [-120.05595304343768, 47.24629197065608], [-120.05595304343768, 47.23616014649953], [-120.05595304343768, 47.22602832234298], [-120.05595304343768, 47.215896498186424], [-120.05595304343768, 47.20576467402987], [-120.05595304343768, 47.19563284987332], [-120.05595304343768, 47.18550102571677], [-120.05595304343768, 47.175369201560216], [-120.05595304343768, 47.16523737740366], [-120.05595304343768, 47.15510555324711], [-120.05595304343768, 47.14497372909056], [-120.05595304343768, 47.13484190493401], [-120.05595304343768, 47.124710080777454], [-120.05595304343768, 47.1145782566209], [-120.05595304343768, 47.10444643246435], [-120.05595304343768, 47.0943146083078], [-120.05595304343768, 47.084182784151245], [-120.05595304343768, 47.07405095999469], [-120.05595304343768, 47.06391913583814], [-120.05595304343768, 47.05378731168159], [-120.05595304343768, 47.04365548752504], [-120.05595304343768, 47.033523663368484], [-120.05595304343768, 47.02339183921193], [-120.05595304343768, 47.01326001505538], [-120.05595304343768, 47.00312819089883], [-120.05595304343768, 46.992996366742275], [-120.05595304343768, 46.98286454258572], [-120.05595304343768, 46.97273271842917], [-120.05595304343768, 46.96260089427262], [-120.05595304343768, 46.95246907011607], [-120.05595304343768, 46.942337245959514], [-120.05595304343768, 46.93220542180296], [-120.05595304343768, 46.92207359764641], [-120.05595304343768, 46.91194177348986], [-120.05595304343768, 46.901809949333305], [-120.05595304343768, 46.89167812517675], [-120.05595304343768, 46.8815463010202], [-120.05595304343768, 46.87141447686365], [-120.05595304343768, 46.8612826527071], [-120.05595304343768, 46.851150828550544], [-120.05595304343768, 46.84101900439399], [-120.05595304343768, 46.83088718023744], [-120.05595304343768, 46.82075535608089], [-120.05595304343768, 46.810623531924335], [-120.05595304343768, 46.80049170776778], [-120.05595304343768, 46.79035988361123], [-120.05595304343768, 46.78022805945468], [-120.05595304343768, 46.770096235298126], [-120.05595304343768, 46.759964411141574], [-120.05595304343768, 46.74983258698502], [-120.05595304343768, 46.73970076282847], [-120.05595304343768, 46.72956893867192], [-120.05595304343768, 46.719437114515365], [-120.05595304343768, 46.70930529035881], [-120.05595304343768, 46.69917346620226], [-120.05595304343768, 46.68904164204571], [-120.05595304343768, 46.678909817889156], [-120.05595304343768, 46.668777993732604], [-120.05595304343768, 46.65864616957605], [-120.05595304343768, 46.6485143454195], [-120.05595304343768, 46.63838252126295], [-120.05595304343768, 46.628250697106395], [-120.05595304343768, 46.61811887294984], [-120.05595304343768, 46.60798704879329], [-120.05595304343768, 46.59785522463674], [-120.05595304343768, 46.587723400480186], [-120.05595304343768, 46.577591576323634], [-120.05595304343768, 46.56745975216708], [-120.05595304343768, 46.55732792801053], [-120.05595304343768, 46.54719610385398], [-120.05595304343768, 46.537064279697425], [-120.05595304343768, 46.52693245554087], [-120.05595304343768, 46.51680063138432], [-120.05595304343768, 46.50666880722777], [-120.05595304343768, 46.496536983071216], [-120.05595304343768, 46.486405158914664], [-120.05595304343768, 46.47627333475811], [-120.05595304343768, 46.46614151060156], [-120.05595304343768, 46.45600968644501], [-120.05595304343768, 46.445877862288455], [-120.05595304343768, 46.4357460381319], [-120.05595304343768, 46.42561421397535], [-120.05595304343768, 46.4154823898188], [-120.05595304343768, 46.405350565662246], [-120.05595304343768, 46.395218741505694], [-120.05595304343768, 46.38508691734914], [-120.05595304343768, 46.37495509319259], [-120.05595304343768, 46.36482326903604], [-120.05595304343768, 46.354691444879485], [-120.05595304343768, 46.34455962072293], [-120.05595304343768, 46.33442779656638], [-120.05595304343768, 46.32429597240983], [-120.05595304343768, 46.314164148253276], [-120.05595304343768, 46.304032324096724], [-120.05595304343768, 46.29390049994017], [-120.05595304343768, 46.28376867578362], [-120.05595304343768, 46.27363685162707], [-120.05595304343768, 46.263505027470515], [-120.05595304343768, 46.25337320331396], [-120.05595304343768, 46.24324137915741], [-120.05595304343768, 46.23310955500086], [-120.05595304343768, 46.222977730844306], [-120.05595304343768, 46.212845906687754], [-120.05595304343768, 46.2027140825312], [-120.05595304343768, 46.19258225837465], [-120.05595304343768, 46.1824504342181], [-120.05595304343768, 46.172318610061545], [-120.05595304343768, 46.16218678590499], [-120.05595304343768, 46.15205496174844], [-120.05595304343768, 46.14192313759189], [-120.05595304343768, 46.131791313435336], [-120.05595304343768, 46.121659489278784], [-120.05595304343768, 46.11152766512223], [-120.05595304343768, 46.10139584096568], [-120.05595304343768, 46.09126401680913], [-120.05595304343768, 46.081132192652575], [-120.05595304343768, 46.07100036849602], [-120.05595304343768, 46.06086854433947], [-120.05595304343768, 46.05073672018292], [-120.05595304343768, 46.040604896026366], [-120.05595304343768, 46.030473071869814], [-120.05595304343768, 46.02034124771326], [-120.05595304343768, 46.01020942355671], [-120.05595304343768, 46.00007759940016], [-120.05595304343768, 45.989945775243605], [-120.05595304343768, 45.97981395108705], [-120.05595304343768, 45.9696821269305], [-120.05595304343768, 45.95955030277395], [-120.05595304343768, 45.949418478617396], [-120.05595304343768, 45.939286654460844], [-120.05595304343768, 45.92915483030429], [-120.05595304343768, 45.91902300614774], [-120.05595304343768, 45.90889118199119], [-120.05595304343768, 45.898759357834635], [-120.05595304343768, 45.88862753367808], [-120.05595304343768, 45.87849570952153], [-120.05595304343768, 45.86836388536498], [-120.05595304343768, 45.858232061208426], [-120.05595304343768, 45.848100237051874], [-120.05595304343768, 45.83796841289532], [-120.05595304343768, 45.82783658873877], [-120.05595304343768, 45.81770476458222], [-120.05595304343768, 45.807572940425665], [-120.05595304343768, 45.79744111626911], [-120.05595304343768, 45.78730929211256], [-120.05595304343768, 45.77717746795601], [-120.05595304343768, 45.767045643799456], [-120.05595304343768, 45.756913819642904], [-120.05595304343768, 45.74678199548635], [-120.05595304343768, 45.7366501713298], [-120.05595304343768, 45.72651834717325], [-120.05595304343768, 45.716386523016695], [-120.05595304343768, 45.70625469886014], [-120.05595304343768, 45.69612287470359], [-120.05595304343768, 45.68599105054704], [-120.05595304343768, 45.675859226390486], [-120.05595304343768, 45.665727402233934], [-120.05595304343768, 45.65559557807738], [-120.05595304343768, 45.64546375392083], [-120.05595304343768, 45.63533192976428], [-120.05595304343768, 45.625200105607725], [-120.05595304343768, 45.61506828145117], [-120.05595304343768, 45.60493645729462], [-120.05595304343768, 45.59480463313807], [-120.05595304343768, 45.584672808981516], [-120.05595304343768, 45.574540984824964], [-120.05595304343768, 45.56440916066841], [-120.05595304343768, 45.55427733651186], [-120.05595304343768, 45.54414551235531], [-120.05595304343768, 45.534013688198755], [-120.05595304343768, 45.5238818640422], [-120.05595304343768, 45.51375003988565], [-120.05595304343768, 45.5036182157291], [-120.05595304343768, 45.493486391572546], [-120.05595304343768, 45.483354567415994], [-120.05595304343768, 45.47322274325944], [-120.05595304343768, 45.46309091910289], [-120.05595304343768, 45.45295909494634], [-120.05595304343768, 45.442827270789785], [-120.05595304343768, 45.43269544663323], [-120.05595304343768, 45.42256362247668], [-120.05595304343768, 45.41243179832013], [-120.05595304343768, 45.402299974163576], [-120.05595304343768, 45.39216815000702], [-120.05595304343768, 45.38203632585047], [-120.05595304343768, 45.37190450169392], [-120.05595304343768, 45.36177267753737], [-120.05595304343768, 45.351640853380815], [-120.05595304343768, 45.34150902922426], [-120.05595304343768, 45.33137720506771], [-120.05595304343768, 45.32124538091116], [-120.05595304343768, 45.311113556754606], [-120.05595304343768, 45.30098173259805], [-120.05595304343768, 45.2908499084415], [-120.05595304343768, 45.28071808428495], [-120.05595304343768, 45.2705862601284], [-120.05595304343768, 45.260454435971845], [-120.05595304343768, 45.25032261181529], [-120.05595304343768, 45.24019078765874], [-120.05595304343768, 45.23005896350219], [-120.05595304343768, 45.219927139345636], [-120.05595304343768, 45.20979531518908], [-120.05595304343768, 45.19966349103253], [-120.05595304343768, 45.18953166687598], [-120.05595304343768, 45.17939984271943], [-120.05595304343768, 45.169268018562875], [-120.05595304343768, 45.15913619440632], [-120.05595304343768, 45.14900437024977], [-120.05595304343768, 45.13887254609322], [-120.05595304343768, 45.128740721936666], [-120.05595304343768, 45.11860889778011], [-120.05595304343768, 45.10847707362356], [-120.05595304343768, 45.09834524946701], [-120.05595304343768, 45.08821342531046], [-120.05595304343768, 45.078081601153905], [-120.05595304343768, 45.06794977699735], [-120.05595304343768, 45.0578179528408], [-120.05595304343768, 45.04768612868425], [-120.05595304343768, 45.037554304527696], [-120.05595304343768, 45.02742248037114], [-120.05595304343768, 45.01729065621459], [-120.05595304343768, 45.00715883205804], [-120.05595304343768, 44.99702700790149], [-120.05595304343768, 44.986895183744934], [-120.05595304343768, 44.97676335958838], [-120.05595304343768, 44.96663153543183], [-120.05595304343768, 44.95649971127528], [-120.05595304343768, 44.946367887118726], [-120.05595304343768, 44.93623606296217], [-120.05595304343768, 44.92610423880562], [-120.05595304343768, 44.91597241464907], [-120.05595304343768, 44.90584059049252], [-120.05595304343768, 44.895708766335964], [-120.05595304343768, 44.88557694217941], [-120.05595304343768, 44.87544511802286], [-120.05595304343768, 44.86531329386631], [-120.05595304343768, 44.855181469709756], [-120.05595304343768, 44.8450496455532], [-120.05595304343768, 44.83491782139665], [-120.05595304343768, 44.8247859972401], [-120.05595304343768, 44.81465417308355], [-120.05595304343768, 44.804522348926994], [-120.05595304343768, 44.79439052477044], [-120.05595304343768, 44.78425870061389], [-120.05595304343768, 44.77412687645734], [-120.05595304343768, 44.763995052300785], [-120.05595304343768, 44.75386322814423], [-120.05595304343768, 44.74373140398768], [-120.05595304343768, 44.73359957983113], [-120.05595304343768, 44.72346775567458], [-120.05595304343768, 44.713335931518024], [-120.05595304343768, 44.70320410736147], [-120.05595304343768, 44.69307228320492], [-120.05595304343768, 44.68294045904837], [-120.05595304343768, 44.672808634891815], [-120.05595304343768, 44.66267681073526], [-120.05595304343768, 44.65254498657871], [-120.05595304343768, 44.64241316242216], [-120.05595304343768, 44.63228133826561], [-120.05595304343768, 44.622149514109054], [-120.05595304343768, 44.6120176899525], [-120.05595304343768, 44.60188586579595], [-120.05595304343768, 44.5917540416394], [-120.05595304343768, 44.581622217482845], [-120.05595304343768, 44.57149039332629], [-120.05595304343768, 44.56135856916974], [-120.05595304343768, 44.55122674501319], [-120.05595304343768, 44.54109492085664], [-120.05595304343768, 44.530963096700084], [-120.05595304343768, 44.52083127254353], [-120.05595304343768, 44.51069944838698], [-120.05595304343768, 44.50056762423043], [-120.05595304343768, 44.490435800073875], [-120.05595304343768, 44.48030397591732], [-120.05595304343768, 44.47017215176077], [-120.05595304343768, 44.46004032760422], [-120.05595304343768, 44.449908503447666], [-120.05595304343768, 44.439776679291114], [-120.05595304343768, 44.42964485513456], [-120.05595304343768, 44.41951303097801], [-120.05595304343768, 44.40938120682146], [-120.05595304343768, 44.399249382664905], [-120.05595304343768, 44.38911755850835], [-120.05595304343768, 44.3789857343518], [-120.05595304343768, 44.36885391019525], [-120.05595304343768, 44.358722086038696], [-120.05595304343768, 44.348590261882144], [-120.05595304343768, 44.33845843772559], [-120.05595304343768, 44.32832661356904], [-120.05595304343768, 44.31819478941249], [-120.05595304343768, 44.308062965255935], [-120.05595304343768, 44.29793114109938], [-120.05595304343768, 44.28779931694283], [-120.05595304343768, 44.27766749278628], [-120.05595304343768, 44.267535668629726], [-120.05595304343768, 44.257403844473174], [-120.05595304343768, 44.24727202031662], [-120.05595304343768, 44.23714019616007], [-120.05595304343768, 44.22700837200352], [-120.05595304343768, 44.216876547846965], [-120.05595304343768, 44.20674472369041], [-120.05595304343768, 44.19661289953386], [-120.05595304343768, 44.18648107537731], [-120.05595304343768, 44.176349251220756], [-120.05595304343768, 44.166217427064204], [-120.05595304343768, 44.15608560290765], [-120.05595304343768, 44.1459537787511], [-120.05595304343768, 44.13582195459455], [-120.05595304343768, 44.125690130437995], [-120.05595304343768, 44.11555830628144], [-120.05595304343768, 44.10542648212489], [-120.05595304343768, 44.09529465796834], [-120.05595304343768, 44.085162833811786], [-120.05595304343768, 44.075031009655234], [-120.05595304343768, 44.06489918549868], [-120.05595304343768, 44.05476736134213], [-120.05595304343768, 44.04463553718558], [-120.05595304343768, 44.034503713029025], [-120.05595304343768, 44.02437188887247], [-120.05595304343768, 44.01424006471592], [-120.05595304343768, 44.00410824055937], [-120.05595304343768, 43.993976416402816], [-120.05595304343768, 43.983844592246264], [-120.05595304343768, 43.97371276808971], [-120.05595304343768, 43.96358094393316], [-120.05595304343768, 43.95344911977661], [-120.05595304343768, 43.943317295620055], [-120.05595304343768, 43.9331854714635], [-120.05595304343768, 43.92305364730695], [-120.05595304343768, 43.9129218231504], [-120.05595304343768, 43.902789998993846], [-120.05595304343768, 43.892658174837294], [-120.05595304343768, 43.88252635068074], [-120.05595304343768, 43.87239452652419], [-120.05595304343768, 43.86226270236764], [-120.05595304343768, 43.852130878211085], [-120.05595304343768, 43.84199905405453], [-120.05595304343768, 43.83186722989798], [-120.05595304343768, 43.82173540574143], [-120.05595304343768, 43.811603581584876], [-120.05595304343768, 43.801471757428324], [-120.05595304343768, 43.79133993327177], [-120.05595304343768, 43.78120810911522], [-120.05595304343768, 43.77107628495867], [-120.05595304343768, 43.760944460802115], [-120.05595304343768, 43.75081263664556], [-120.05595304343768, 43.74068081248901], [-120.05595304343768, 43.73054898833246], [-120.05595304343768, 43.720417164175906], [-120.05595304343768, 43.710285340019354], [-120.05595304343768, 43.7001535158628], [-120.05595304343768, 43.69002169170625], [-120.05595304343768, 43.6798898675497], [-120.05595304343768, 43.669758043393145], [-120.05595304343768, 43.65962621923659], [-120.05595304343768, 43.64949439508004], [-120.05595304343768, 43.63936257092349], [-120.05595304343768, 43.629230746766936], [-120.05595304343768, 43.619098922610384], [-120.05595304343768, 43.60896709845383], [-120.05595304343768, 43.59883527429728], [-120.05595304343768, 43.58870345014073], [-120.05595304343768, 43.578571625984175], [-120.05595304343768, 43.56843980182762], [-120.05595304343768, 43.55830797767107], [-120.05595304343768, 43.54817615351452], [-120.05595304343768, 43.538044329357966], [-120.05595304343768, 43.527912505201414], [-120.05595304343768, 43.51778068104486], [-120.05595304343768, 43.50764885688831], [-120.05595304343768, 43.49751703273176], [-120.05595304343768, 43.487385208575205], [-120.05595304343768, 43.47725338441865], [-120.05595304343768, 43.4671215602621], [-120.05595304343768, 43.45698973610555], [-120.05595304343768, 43.446857911948996], [-120.05595304343768, 43.436726087792444], [-120.05595304343768, 43.42659426363589], [-120.05595304343768, 43.41646243947934], [-120.05595304343768, 43.40633061532279], [-120.05595304343768, 43.396198791166235], [-120.05595304343768, 43.38606696700968], [-120.05595304343768, 43.37593514285313], [-120.05595304343768, 43.36580331869658], [-120.05595304343768, 43.355671494540026], [-120.05595304343768, 43.345539670383474], [-120.05595304343768, 43.33540784622692], [-120.05595304343768, 43.32527602207037], [-120.05595304343768, 43.31514419791382], [-120.05595304343768, 43.305012373757265], [-120.05595304343768, 43.29488054960071], [-120.05595304343768, 43.28474872544416], [-120.05595304343768, 43.27461690128761], [-120.05595304343768, 43.264485077131056], [-120.05595304343768, 43.254353252974504], [-120.05595304343768, 43.24422142881795], [-120.05595304343768, 43.2340896046614], [-120.05595304343768, 43.22395778050485], [-120.05595304343768, 43.213825956348295], [-120.05595304343768, 43.20369413219174], [-120.05595304343768, 43.19356230803519], [-120.05595304343768, 43.18343048387864], [-120.05595304343768, 43.173298659722086], [-120.05595304343768, 43.163166835565534], [-120.05595304343768, 43.15303501140898], [-120.05595304343768, 43.14290318725243], [-120.05595304343768, 43.13277136309588], [-120.05595304343768, 43.122639538939325], [-120.05595304343768, 43.11250771478277], [-120.05595304343768, 43.10237589062622], [-120.05595304343768, 43.09224406646967], [-120.05595304343768, 43.082112242313116], [-120.05595304343768, 43.07198041815656], [-120.05595304343768, 43.06184859400001], [-120.05595304343768, 43.05171676984346], [-120.05595304343768, 43.04158494568691], [-120.05595304343768, 43.031453121530355], [-120.05595304343768, 43.0213212973738], [-120.05595304343768, 43.01118947321725], [-120.05595304343768, 43.0010576490607], [-120.05595304343768, 42.990925824904146], [-120.05595304343768, 42.98079400074759], [-120.05595304343768, 42.97066217659104], [-120.05595304343768, 42.96053035243449], [-120.05595304343768, 42.95039852827794], [-120.05595304343768, 42.940266704121385], [-120.05595304343768, 42.93013487996483], [-120.05595304343768, 42.92000305580828], [-120.05595304343768, 42.90987123165173], [-120.05595304343768, 42.899739407495176], [-120.05595304343768, 42.88960758333862], [-120.05595304343768, 42.87947575918207], [-120.05595304343768, 42.86934393502552], [-120.05595304343768, 42.85921211086897], [-120.05595304343768, 42.849080286712415], [-120.05595304343768, 42.83894846255586], [-120.05595304343768, 42.82881663839931], [-120.05595304343768, 42.81868481424276], [-120.05595304343768, 42.808552990086206], [-120.05595304343768, 42.79842116592965], [-120.05595304343768, 42.7882893417731], [-120.05595304343768, 42.77815751761655], [-120.05595304343768, 42.76802569346], [-120.05595304343768, 42.757893869303444], [-120.05595304343768, 42.74776204514689], [-120.05595304343768, 42.73763022099034], [-120.05595304343768, 42.72749839683379], [-120.05595304343768, 42.717366572677236], [-120.05595304343768, 42.70723474852068], [-120.05595304343768, 42.69710292436413], [-120.05595304343768, 42.68697110020758], [-120.05595304343768, 42.67683927605103], [-120.05595304343768, 42.666707451894474], [-120.05595304343768, 42.65657562773792], [-120.05595304343768, 42.64644380358137], [-120.05595304343768, 42.63631197942482], [-120.05595304343768, 42.626180155268266], [-120.05595304343768, 42.61604833111171], [-120.05595304343768, 42.60591650695516], [-120.05595304343768, 42.59578468279861], [-120.05595304343768, 42.58565285864206], [-120.05595304343768, 42.575521034485504], [-120.05595304343768, 42.56538921032895], [-120.05595304343768, 42.5552573861724], [-120.05595304343768, 42.54512556201585], [-120.05595304343768, 42.534993737859295], [-120.05595304343768, 42.52486191370274], [-120.05595304343768, 42.51473008954619], [-120.05595304343768, 42.50459826538964], [-120.05595304343768, 42.49446644123309], [-120.05595304343768, 42.484334617076534], [-120.05595304343768, 42.47420279291998], [-120.05595304343768, 42.46407096876343], [-120.05595304343768, 42.45393914460688], [-120.05595304343768, 42.443807320450325], [-120.05595304343768, 42.43367549629377], [-120.05595304343768, 42.42354367213722], [-120.05595304343768, 42.41341184798067], [-120.05595304343768, 42.40328002382412], [-120.05595304343768, 42.393148199667564], [-120.05595304343768, 42.38301637551101], [-120.05595304343768, 42.37288455135446], [-120.05595304343768, 42.36275272719791], [-120.05595304343768, 42.352620903041355], [-120.05595304343768, 42.3424890788848], [-120.05595304343768, 42.33235725472825], [-120.05595304343768, 42.3222254305717], [-120.05595304343768, 42.31209360641515], [-120.04224791541402, 42.31209360641515], [-120.02854278739036, 42.31209360641515], [-120.0148376593667, 42.31209360641515], [-120.00113253134305, 42.31209360641515], [-119.98742740331939, 42.31209360641515], [-119.97372227529573, 42.31209360641515], [-119.96001714727207, 42.31209360641515], [-119.94631201924841, 42.31209360641515], [-119.93260689122475, 42.31209360641515], [-119.91890176320109, 42.31209360641515], [-119.90519663517743, 42.31209360641515], [-119.89149150715377, 42.31209360641515], [-119.87778637913011, 42.31209360641515], [-119.86408125110646, 42.31209360641515], [-119.8503761230828, 42.31209360641515], [-119.83667099505914, 42.31209360641515], [-119.82296586703548, 42.31209360641515], [-119.80926073901182, 42.31209360641515], [-119.79555561098816, 42.31209360641515], [-119.7818504829645, 42.31209360641515], [-119.76814535494084, 42.31209360641515], [-119.75444022691718, 42.31209360641515], [-119.74073509889352, 42.31209360641515], [-119.72702997086986, 42.31209360641515], [-119.7133248428462, 42.31209360641515], [-119.69961971482255, 42.31209360641515], [-119.68591458679889, 42.31209360641515], [-119.67220945877523, 42.31209360641515], [-119.65850433075157, 42.31209360641515], [-119.64479920272791, 42.31209360641515], [-119.63109407470425, 42.31209360641515], [-119.61738894668059, 42.31209360641515], [-119.60368381865693, 42.31209360641515], [-119.58997869063327, 42.31209360641515], [-119.57627356260961, 42.31209360641515], [-119.56256843458596, 42.31209360641515], [-119.5488633065623, 42.31209360641515], [-119.53515817853864, 42.31209360641515], [-119.52145305051498, 42.31209360641515], [-119.50774792249132, 42.31209360641515], [-119.49404279446766, 42.31209360641515], [-119.480337666444, 42.31209360641515], [-119.46663253842034, 42.31209360641515], [-119.45292741039668, 42.31209360641515], [-119.43922228237302, 42.31209360641515], [-119.42551715434936, 42.31209360641515], [-119.4118120263257, 42.31209360641515], [-119.39810689830205, 42.31209360641515], [-119.38440177027839, 42.31209360641515], [-119.37069664225473, 42.31209360641515], [-119.35699151423107, 42.31209360641515], [-119.34328638620741, 42.31209360641515], [-119.32958125818375, 42.31209360641515], [-119.31587613016009, 42.31209360641515], [-119.30217100213643, 42.31209360641515], [-119.28846587411277, 42.31209360641515], [-119.27476074608911, 42.31209360641515], [-119.26105561806546, 42.31209360641515], [-119.2473504900418, 42.31209360641515], [-119.23364536201814, 42.31209360641515], [-119.21994023399448, 42.31209360641515], [-119.20623510597082, 42.31209360641515], [-119.19252997794716, 42.31209360641515], [-119.1788248499235, 42.31209360641515], [-119.16511972189984, 42.31209360641515], [-119.15141459387618, 42.31209360641515], [-119.13770946585252, 42.31209360641515], [-119.12400433782886, 42.31209360641515], [-119.1102992098052, 42.31209360641515], [-119.09659408178155, 42.31209360641515], [-119.08288895375789, 42.31209360641515], [-119.06918382573423, 42.31209360641515], [-119.05547869771057, 42.31209360641515], [-119.04177356968691, 42.31209360641515], [-119.02806844166325, 42.31209360641515], [-119.01436331363959, 42.31209360641515], [-119.00065818561593, 42.31209360641515], [-118.98695305759227, 42.31209360641515], [-118.97324792956861, 42.31209360641515], [-118.95954280154496, 42.31209360641515], [-118.9458376735213, 42.31209360641515], [-118.93213254549764, 42.31209360641515], [-118.91842741747398, 42.31209360641515], [-118.90472228945032, 42.31209360641515], [-118.89101716142666, 42.31209360641515], [-118.877312033403, 42.31209360641515], [-118.86360690537934, 42.31209360641515], [-118.84990177735568, 42.31209360641515], [-118.83619664933202, 42.31209360641515], [-118.82249152130836, 42.31209360641515], [-118.8087863932847, 42.31209360641515], [-118.79508126526105, 42.31209360641515], [-118.78137613723739, 42.31209360641515], [-118.76767100921373, 42.31209360641515], [-118.75396588119007, 42.31209360641515], [-118.74026075316641, 42.31209360641515], [-118.72655562514275, 42.31209360641515], [-118.71285049711909, 42.31209360641515], [-118.69914536909543, 42.31209360641515], [-118.68544024107177, 42.31209360641515], [-118.67173511304811, 42.31209360641515], [-118.65802998502446, 42.31209360641515], [-118.6443248570008, 42.31209360641515], [-118.63061972897714, 42.31209360641515], [-118.61691460095348, 42.31209360641515], [-118.60320947292982, 42.31209360641515], [-118.58950434490616, 42.31209360641515], [-118.5757992168825, 42.31209360641515], [-118.56209408885884, 42.31209360641515], [-118.54838896083518, 42.31209360641515], [-118.53468383281152, 42.31209360641515], [-118.52097870478786, 42.31209360641515], [-118.5072735767642, 42.31209360641515], [-118.49356844874055, 42.31209360641515], [-118.47986332071689, 42.31209360641515], [-118.46615819269323, 42.31209360641515], [-118.45245306466957, 42.31209360641515], [-118.43874793664591, 42.31209360641515], [-118.42504280862225, 42.31209360641515], [-118.41133768059859, 42.31209360641515], [-118.39763255257493, 42.31209360641515], [-118.38392742455127, 42.31209360641515], [-118.37022229652761, 42.31209360641515], [-118.35651716850396, 42.31209360641515], [-118.3428120404803, 42.31209360641515], [-118.32910691245664, 42.31209360641515], [-118.31540178443298, 42.31209360641515], [-118.30169665640932, 42.31209360641515], [-118.28799152838566, 42.31209360641515], [-118.274286400362, 42.31209360641515], [-118.26058127233834, 42.31209360641515], [-118.24687614431468, 42.31209360641515], [-118.23317101629102, 42.31209360641515], [-118.21946588826737, 42.31209360641515], [-118.2057607602437, 42.31209360641515], [-118.19205563222005, 42.31209360641515], [-118.17835050419639, 42.31209360641515], [-118.16464537617273, 42.31209360641515], [-118.15094024814907, 42.31209360641515], [-118.13723512012541, 42.31209360641515], [-118.12352999210175, 42.31209360641515], [-118.10982486407809, 42.31209360641515], [-118.09611973605443, 42.31209360641515], [-118.08241460803077, 42.31209360641515], [-118.06870948000712, 42.31209360641515], [-118.05500435198346, 42.31209360641515], [-118.0412992239598, 42.31209360641515], [-118.02759409593614, 42.31209360641515], [-118.01388896791248, 42.31209360641515], [-118.00018383988882, 42.31209360641515], [-117.98647871186516, 42.31209360641515], [-117.9727735838415, 42.31209360641515], [-117.95906845581784, 42.31209360641515], [-117.94536332779418, 42.31209360641515], [-117.93165819977052, 42.31209360641515], [-117.91795307174687, 42.31209360641515], [-117.9042479437232, 42.31209360641515], [-117.89054281569955, 42.31209360641515], [-117.87683768767589, 42.31209360641515], [-117.86313255965223, 42.31209360641515], [-117.84942743162857, 42.31209360641515], [-117.83572230360491, 42.31209360641515], [-117.82201717558125, 42.31209360641515], [-117.80831204755759, 42.31209360641515], [-117.79460691953393, 42.31209360641515], [-117.78090179151027, 42.31209360641515], [-117.76719666348662, 42.31209360641515], [-117.75349153546296, 42.31209360641515], [-117.7397864074393, 42.31209360641515], [-117.72608127941564, 42.31209360641515], [-117.71237615139198, 42.31209360641515], [-117.69867102336832, 42.31209360641515], [-117.68496589534466, 42.31209360641515], [-117.671260767321, 42.31209360641515], [-117.65755563929734, 42.31209360641515], [-117.64385051127368, 42.31209360641515], [-117.63014538325002, 42.31209360641515], [-117.61644025522637, 42.31209360641515], [-117.6027351272027, 42.31209360641515], [-117.58902999917905, 42.31209360641515], [-117.57532487115539, 42.31209360641515], [-117.56161974313173, 42.31209360641515], [-117.54791461510807, 42.31209360641515], [-117.53420948708441, 42.31209360641515], [-117.52050435906075, 42.31209360641515], [-117.50679923103709, 42.31209360641515], [-117.49309410301343, 42.31209360641515], [-117.47938897498977, 42.31209360641515], [-117.46568384696612, 42.31209360641515], [-117.45197871894246, 42.31209360641515], [-117.4382735909188, 42.31209360641515], [-117.42456846289514, 42.31209360641515], [-117.41086333487148, 42.31209360641515], [-117.39715820684782, 42.31209360641515], [-117.38345307882416, 42.31209360641515], [-117.3697479508005, 42.31209360641515], [-117.35604282277684, 42.31209360641515], [-117.34233769475318, 42.31209360641515], [-117.32863256672952, 42.31209360641515], [-117.31492743870587, 42.31209360641515], [-117.3012223106822, 42.31209360641515], [-117.28751718265855, 42.31209360641515], [-117.27381205463489, 42.31209360641515], [-117.26010692661123, 42.31209360641515], [-117.24640179858757, 42.31209360641515], [-117.23269667056391, 42.31209360641515], [-117.21899154254025, 42.31209360641515], [-117.20528641451659, 42.31209360641515], [-117.19158128649293, 42.31209360641515], [-117.17787615846927, 42.31209360641515], [-117.16417103044562, 42.31209360641515], [-117.15046590242196, 42.31209360641515], [-117.1367607743983, 42.31209360641515], [-117.12305564637464, 42.31209360641515], [-117.10935051835098, 42.31209360641515], [-117.09564539032732, 42.31209360641515], [-117.08194026230366, 42.31209360641515], [-117.06823513428, 42.31209360641515], [-117.05453000625634, 42.31209360641515], [-117.04082487823268, 42.31209360641515], [-117.02711975020902, 42.31209360641515], [-117.01341462218537, 42.31209360641515], [-116.9997094941617, 42.31209360641515], [-116.98600436613805, 42.31209360641515], [-116.97229923811439, 42.31209360641515], [-116.95859411009073, 42.31209360641515], [-116.94488898206707, 42.31209360641515], [-116.93118385404341, 42.31209360641515], [-116.91747872601975, 42.31209360641515], [-116.90377359799609, 42.31209360641515], [-116.89006846997243, 42.31209360641515], [-116.87636334194877, 42.31209360641515], [-116.86265821392512, 42.31209360641515], [-116.84895308590146, 42.31209360641515], [-116.8352479578778, 42.31209360641515], [-116.82154282985414, 42.31209360641515], [-116.80783770183048, 42.31209360641515], [-116.79413257380682, 42.31209360641515], [-116.78042744578316, 42.31209360641515], [-116.7667223177595, 42.31209360641515], [-116.75301718973584, 42.31209360641515], [-116.73931206171218, 42.31209360641515], [-116.72560693368852, 42.31209360641515], [-116.71190180566487, 42.31209360641515], [-116.6981966776412, 42.31209360641515], [-116.68449154961755, 42.31209360641515], [-116.67078642159389, 42.31209360641515], [-116.65708129357023, 42.31209360641515], [-116.64337616554657, 42.31209360641515], [-116.62967103752291, 42.31209360641515], [-116.61596590949925, 42.31209360641515], [-116.6022607814756, 42.31209360641515], [-116.58855565345193, 42.31209360641515], [-116.57485052542827, 42.31209360641515], [-116.56114539740462, 42.31209360641515], [-116.54744026938096, 42.31209360641515], [-116.5337351413573, 42.31209360641515], [-116.52003001333364, 42.31209360641515], [-116.50632488530998, 42.31209360641515], [-116.49261975728632, 42.31209360641515], [-116.47891462926266, 42.31209360641515], [-116.465209501239, 42.31209360641515], [-116.45150437321534, 42.31209360641515], [-116.43779924519168, 42.31209360641515], [-116.42409411716802, 42.31209360641515], [-116.41038898914437, 42.31209360641515], [-116.3966838611207, 42.31209360641515], [-116.38297873309705, 42.31209360641515], [-116.36927360507339, 42.31209360641515], [-116.35556847704973, 42.31209360641515], [-116.34186334902607, 42.31209360641515], [-116.32815822100241, 42.31209360641515], [-116.31445309297875, 42.31209360641515], [-116.3007479649551, 42.31209360641515], [-116.28704283693143, 42.31209360641515], [-116.27333770890777, 42.31209360641515], [-116.25963258088412, 42.31209360641515], [-116.24592745286046, 42.31209360641515], [-116.2322223248368, 42.31209360641515], [-116.21851719681314, 42.31209360641515], [-116.20481206878948, 42.31209360641515], [-116.19110694076582, 42.31209360641515], [-116.17740181274216, 42.31209360641515], [-116.1636966847185, 42.31209360641515], [-116.14999155669484, 42.31209360641515], [-116.13628642867118, 42.31209360641515], [-116.12258130064752, 42.31209360641515], [-116.10887617262387, 42.31209360641515], [-116.0951710446002, 42.31209360641515], [-116.08146591657655, 42.31209360641515], [-116.06776078855289, 42.31209360641515], [-116.05405566052923, 42.31209360641515], [-116.04035053250557, 42.31209360641515], [-116.02664540448191, 42.31209360641515], [-116.01294027645825, 42.31209360641515], [-115.9992351484346, 42.31209360641515], [-115.98553002041093, 42.31209360641515], [-115.97182489238727, 42.31209360641515], [-115.95811976436362, 42.31209360641515], [-115.94441463633996, 42.31209360641515], [-115.9307095083163, 42.31209360641515], [-115.91700438029264, 42.31209360641515], [-115.90329925226898, 42.31209360641515], [-115.88959412424532, 42.31209360641515], [-115.87588899622166, 42.31209360641515], [-115.862183868198, 42.31209360641515], [-115.84847874017434, 42.31209360641515], [-115.83477361215068, 42.31209360641515], [-115.82106848412703, 42.31209360641515], [-115.80736335610337, 42.31209360641515], [-115.7936582280797, 42.31209360641515], [-115.77995310005605, 42.31209360641515], [-115.76624797203239, 42.31209360641515], [-115.75254284400873, 42.31209360641515], [-115.73883771598507, 42.31209360641515], [-115.72513258796141, 42.31209360641515], [-115.71142745993775, 42.31209360641515], [-115.6977223319141, 42.31209360641515], [-115.68401720389043, 42.31209360641515], [-115.67031207586678, 42.31209360641515], [-115.65660694784312, 42.31209360641515], [-115.64290181981946, 42.31209360641515], [-115.6291966917958, 42.31209360641515], [-115.61549156377214, 42.31209360641515], [-115.60178643574848, 42.31209360641515], [-115.58808130772482, 42.31209360641515], [-115.57437617970116, 42.31209360641515], [-115.5606710516775, 42.31209360641515], [-115.54696592365384, 42.31209360641515], [-115.53326079563018, 42.31209360641515], [-115.51955566760653, 42.31209360641515], [-115.50585053958287, 42.31209360641515], [-115.4921454115592, 42.31209360641515], [-115.47844028353555, 42.31209360641515], [-115.46473515551189, 42.31209360641515], [-115.45103002748823, 42.31209360641515], [-115.43732489946457, 42.31209360641515], [-115.42361977144091, 42.31209360641515], [-115.40991464341725, 42.31209360641515], [-115.3962095153936, 42.31209360641515], [-115.38250438736993, 42.31209360641515], [-115.36879925934628, 42.31209360641515], [-115.35509413132262, 42.31209360641515], [-115.34138900329896, 42.31209360641515], [-115.3276838752753, 42.31209360641515], [-115.31397874725164, 42.31209360641515], [-115.30027361922798, 42.31209360641515], [-115.28656849120432, 42.31209360641515], [-115.27286336318066, 42.31209360641515], [-115.259158235157, 42.31209360641515], [-115.24545310713334, 42.31209360641515], [-115.23174797910968, 42.31209360641515], [-115.21804285108603, 42.31209360641515], [-115.20433772306237, 42.31209360641515], [-115.19063259503871, 42.31209360641515], [-115.17692746701505, 42.31209360641515], [-115.16322233899139, 42.31209360641515], [-115.14951721096773, 42.31209360641515], [-115.13581208294407, 42.31209360641515], [-115.12210695492041, 42.31209360641515], [-115.10840182689675, 42.31209360641515], [-115.0946966988731, 42.31209360641515], [-115.08099157084943, 42.31209360641515], [-115.06728644282578, 42.31209360641515], [-115.05358131480212, 42.31209360641515], [-115.03987618677846, 42.31209360641515], [-115.0261710587548, 42.31209360641515], [-115.01246593073114, 42.31209360641515], [-114.99876080270748, 42.31209360641515], [-114.98505567468382, 42.31209360641515], [-114.97135054666016, 42.31209360641515], [-114.9576454186365, 42.31209360641515], [-114.94394029061284, 42.31209360641515], [-114.93023516258918, 42.31209360641515], [-114.91653003456553, 42.31209360641515], [-114.90282490654187, 42.31209360641515], [-114.88911977851821, 42.31209360641515], [-114.87541465049455, 42.31209360641515], [-114.86170952247089, 42.31209360641515], [-114.84800439444723, 42.31209360641515], [-114.83429926642357, 42.31209360641515], [-114.82059413839991, 42.31209360641515], [-114.80688901037625, 42.31209360641515], [-114.7931838823526, 42.31209360641515], [-114.77947875432893, 42.31209360641515], [-114.76577362630528, 42.31209360641515], [-114.75206849828162, 42.31209360641515], [-114.73836337025796, 42.31209360641515], [-114.7246582422343, 42.31209360641515], [-114.71095311421064, 42.31209360641515], [-114.69724798618698, 42.31209360641515], [-114.68354285816332, 42.31209360641515], [-114.66983773013966, 42.31209360641515], [-114.656132602116, 42.31209360641515], [-114.64242747409234, 42.31209360641515], [-114.62872234606868, 42.31209360641515], [-114.61501721804503, 42.31209360641515], [-114.60131209002137, 42.31209360641515], [-114.58760696199771, 42.31209360641515], [-114.57390183397405, 42.31209360641515], [-114.56019670595039, 42.31209360641515], [-114.54649157792673, 42.31209360641515], [-114.53278644990307, 42.31209360641515], [-114.51908132187941, 42.31209360641515], [-114.50537619385575, 42.31209360641515], [-114.4916710658321, 42.31209360641515], [-114.47796593780843, 42.31209360641515], [-114.46426080978478, 42.31209360641515], [-114.45055568176112, 42.31209360641515], [-114.43685055373746, 42.31209360641515], [-114.4231454257138, 42.31209360641515], [-114.40944029769014, 42.31209360641515], [-114.39573516966648, 42.31209360641515], [-114.38203004164282, 42.31209360641515], [-114.36832491361916, 42.31209360641515], [-114.3546197855955, 42.31209360641515], [-114.34091465757184, 42.31209360641515], [-114.32720952954818, 42.31209360641515], [-114.31350440152453, 42.31209360641515], [-114.29979927350087, 42.31209360641515], [-114.28609414547721, 42.31209360641515], [-114.27238901745355, 42.31209360641515], [-114.25868388942989, 42.31209360641515], [-114.24497876140623, 42.31209360641515], [-114.23127363338257, 42.31209360641515], [-114.21756850535891, 42.31209360641515], [-114.20386337733525, 42.31209360641515], [-114.1901582493116, 42.31209360641515], [-114.17645312128793, 42.31209360641515], [-114.16274799326428, 42.31209360641515], [-114.14904286524062, 42.31209360641515], [-114.13533773721696, 42.31209360641515], [-114.1216326091933, 42.31209360641515], [-114.10792748116964, 42.31209360641515], [-114.09422235314598, 42.31209360641515], [-114.08051722512232, 42.31209360641515], [-114.06681209709866, 42.31209360641515], [-114.053106969075, 42.31209360641515], [-114.03940184105134, 42.31209360641515], [-114.02569671302768, 42.31209360641515], [-114.01199158500403, 42.31209360641515], [-113.99828645698037, 42.31209360641515], [-113.98458132895671, 42.31209360641515], [-113.97087620093305, 42.31209360641515], [-113.95717107290939, 42.31209360641515], [-113.94346594488573, 42.31209360641515], [-113.92976081686207, 42.31209360641515], [-113.91605568883841, 42.31209360641515], [-113.90235056081475, 42.31209360641515], [-113.8886454327911, 42.31209360641515], [-113.87494030476743, 42.31209360641515], [-113.86123517674378, 42.31209360641515], [-113.84753004872012, 42.31209360641515], [-113.83382492069646, 42.31209360641515], [-113.8201197926728, 42.31209360641515], [-113.80641466464914, 42.31209360641515], [-113.79270953662548, 42.31209360641515], [-113.77900440860182, 42.31209360641515], [-113.76529928057816, 42.31209360641515], [-113.7515941525545, 42.31209360641515], [-113.73788902453084, 42.31209360641515], [-113.72418389650718, 42.31209360641515], [-113.71047876848353, 42.31209360641515], [-113.69677364045987, 42.31209360641515], [-113.68306851243621, 42.31209360641515], [-113.66936338441255, 42.31209360641515], [-113.65565825638889, 42.31209360641515], [-113.64195312836523, 42.31209360641515], [-113.62824800034157, 42.31209360641515], [-113.61454287231791, 42.31209360641515], [-113.60083774429425, 42.31209360641515], [-113.5871326162706, 42.31209360641515], [-113.57342748824694, 42.31209360641515], [-113.55972236022328, 42.31209360641515], [-113.54601723219962, 42.31209360641515], [-113.53231210417596, 42.31209360641515], [-113.5186069761523, 42.31209360641515], [-113.50490184812864, 42.31209360641515], [-113.49119672010498, 42.31209360641515], [-113.47749159208132, 42.31209360641515], [-113.46378646405766, 42.31209360641515], [-113.450081336034, 42.31209360641515], [-113.43637620801034, 42.31209360641515], [-113.42267107998669, 42.31209360641515], [-113.40896595196303, 42.31209360641515], [-113.39526082393937, 42.31209360641515], [-113.38155569591571, 42.31209360641515], [-113.36785056789205, 42.31209360641515], [-113.35414543986839, 42.31209360641515], [-113.34044031184473, 42.31209360641515], [-113.32673518382107, 42.31209360641515], [-113.31303005579741, 42.31209360641515], [-113.29932492777375, 42.31209360641515], [-113.2856197997501, 42.31209360641515], [-113.27191467172644, 42.31209360641515], [-113.25820954370278, 42.31209360641515], [-113.24450441567912, 42.31209360641515], [-113.23079928765546, 42.31209360641515], [-113.2170941596318, 42.31209360641515], [-113.20338903160814, 42.31209360641515], [-113.18968390358448, 42.31209360641515], [-113.17597877556082, 42.31209360641515], [-113.16227364753716, 42.31209360641515], [-113.1485685195135, 42.31209360641515], [-113.13486339148984, 42.31209360641515], [-113.12115826346619, 42.31209360641515], [-113.10745313544253, 42.31209360641515], [-113.09374800741887, 42.31209360641515], [-113.08004287939521, 42.31209360641515], [-113.06633775137155, 42.31209360641515], [-113.05263262334789, 42.31209360641515], [-113.03892749532423, 42.31209360641515], [-113.02522236730057, 42.31209360641515], [-113.01151723927691, 42.31209360641515], [-112.99781211125325, 42.31209360641515], [-112.9841069832296, 42.31209360641515], [-112.97040185520594, 42.31209360641515], [-112.95669672718228, 42.31209360641515], [-112.94299159915862, 42.31209360641515], [-112.92928647113496, 42.31209360641515], [-112.9155813431113, 42.31209360641515], [-112.90187621508764, 42.31209360641515], [-112.88817108706398, 42.31209360641515], [-112.87446595904032, 42.31209360641515], [-112.86076083101666, 42.31209360641515], [-112.847055702993, 42.31209360641515], [-112.83335057496934, 42.31209360641515], [-112.81964544694569, 42.31209360641515], [-112.80594031892203, 42.31209360641515], [-112.79223519089837, 42.31209360641515], [-112.77853006287471, 42.31209360641515], [-112.76482493485105, 42.31209360641515], [-112.75111980682739, 42.31209360641515], [-112.73741467880373, 42.31209360641515], [-112.72370955078007, 42.31209360641515], [-112.71000442275641, 42.31209360641515], [-112.69629929473275, 42.31209360641515], [-112.6825941667091, 42.31209360641515], [-112.66888903868544, 42.31209360641515], [-112.65518391066178, 42.31209360641515], [-112.64147878263812, 42.31209360641515], [-112.62777365461446, 42.31209360641515], [-112.6140685265908, 42.31209360641515], [-112.60036339856714, 42.31209360641515], [-112.58665827054348, 42.31209360641515], [-112.57295314251982, 42.31209360641515], [-112.55924801449616, 42.31209360641515], [-112.5455428864725, 42.31209360641515], [-112.53183775844884, 42.31209360641515], [-112.53183775844884, 42.3222254305717], [-112.53183775844884, 42.33235725472825], [-112.53183775844884, 42.3424890788848], [-112.53183775844884, 42.352620903041355], [-112.53183775844884, 42.36275272719791], [-112.53183775844884, 42.37288455135446], [-112.53183775844884, 42.38301637551101], [-112.53183775844884, 42.393148199667564], [-112.53183775844884, 42.40328002382412], [-112.53183775844884, 42.41341184798067], [-112.53183775844884, 42.42354367213722], [-112.53183775844884, 42.43367549629377], [-112.53183775844884, 42.443807320450325], [-112.53183775844884, 42.45393914460688], [-112.53183775844884, 42.46407096876343], [-112.53183775844884, 42.46407164219668], [-112.53183911551118, 42.46407096876343], [-112.5455428864725, 42.45743333572362], [-112.55312167444629, 42.45393914460688], [-112.55924801449616, 42.45117703853316], [-112.57295314251982, 42.445290681953146], [-112.5765741917885, 42.443807320450325], [-112.58665827054348, 42.43975762756627], [-112.60036339856714, 42.43456757919092], [-112.60284171575255, 42.43367549629377], [-112.6140685265908, 42.429703090576425], [-112.62777365461446, 42.42516143306544], [-112.63296220683394, 42.42354367213722], [-112.64147878263812, 42.420925705714495], [-112.65518391066178, 42.41699171763953], [-112.66868966335001, 42.41341184798067], [-112.66888903868544, 42.413359579272814], [-112.6825941667091, 42.40999978161306], [-112.69629929473275, 42.40692869672025], [-112.71000442275641, 42.404141139114465], [-112.71466087745031, 42.40328002382412], [-112.72370955078007, 42.40161552944166], [-112.73741467880373, 42.39935515688168], [-112.75111980682739, 42.39736404150381], [-112.76482493485105, 42.39563839831063], [-112.77853006287471, 42.394174774448686], [-112.79018923159455, 42.393148199667564], [-112.79223519089837, 42.39296754268192], [-112.80594031892203, 42.392004773785864], [-112.81964544694569, 42.39129871687154], [-112.83335057496934, 42.390848229447535], [-112.847055702993, 42.39065276972591], [-112.86076083101666, 42.390712459367926], [-112.87446595904032, 42.391028148787946], [-112.88817108706398, 42.3916014833951], [-112.90187621508764, 42.39243496879562], [-112.91078471940487, 42.393148199667564], [-112.9155813431113, 42.39352445180484], [-112.92928647113496, 42.39486173077692], [-112.94299159915862, 42.39646570490142], [-112.95669672718228, 42.39834271780587], [-112.97040185520594, 42.40050031481582], [-112.9841069832296, 42.40294725788474], [-112.98578094867543, 42.40328002382412], [-112.99781211125325, 42.405641171334985], [-113.01151723927691, 42.408631301283194], [-113.02522236730057, 42.41193766819636], [-113.03082749368544, 42.41341184798067], [-113.03892749532423, 42.41552719701788], [-113.05263262334789, 42.419423990430566], [-113.06591380602471, 42.42354367213722], [-113.06633775137155, 42.42367488460027], [-113.08004287939521, 42.42820675777086], [-113.09374800741887, 42.43313068203823], [-113.09518114992184, 42.43367549629377], [-113.10745313544253, 42.43837267064318], [-113.12061010626375, 42.443807320450325], [-113.12115826346619, 42.444036180006684], [-113.13486339148984, 42.45005492201062], [-113.1431560158819, 42.45393914460688], [-113.1485685195135, 42.45652328786444], [-113.16227364753716, 42.463454446114014], [-113.16344621444057, 42.46407096876343], [-113.17597877556082, 42.4708561252114], [-113.18186163163321, 42.47420279291998], [-113.18968390358448, 42.47881558226231], [-113.19863837212992, 42.484334617076534], [-113.20338903160814, 42.48739311673383], [-113.2139593063209, 42.49446644123309], [-113.2170941596318, 42.49667721225926], [-113.22796257789527, 42.50459826538964], [-113.23079928765546, 42.50680001519599], [-113.24074383573588, 42.51473008954619], [-113.24450441567912, 42.51796420866447], [-113.25235741545494, 42.52486191370274], [-113.25820954370278, 42.5304925471981], [-113.26281688855782, 42.534993737859295], [-113.27191467172644, 42.544925828146944], [-113.27209585749144, 42.54512556201585], [-113.28053600515295, 42.5552573861724], [-113.2856197997501, 42.56227938728684], [-113.28785031857281, 42.56538921032895], [-113.29434799153012, 42.575521034485504], [-113.29932492777375, 42.58459354095839], [-113.29989970297527, 42.58565285864206], [-113.30492501327458, 42.59578468279861], [-113.30923443565125, 42.60591650695516], [-113.31299728606055, 42.61604833111171], [-113.31303005579741, 42.61614083942071], [-113.3165197583472, 42.626180155268266], [-113.31968810471639, 42.63631197942482], [-113.32260162781385, 42.64644380358137], [-113.32533490392764, 42.65657562773792], [-113.32673518382107, 42.66189507181254], [-113.32798400159312, 42.666707451894474], [-113.33057669493186, 42.67683927605103], [-113.33308057692112, 42.68697110020758], [-113.33550244342702, 42.69710292436413], [-113.33783500198346, 42.70723474852068], [-113.34005978243773, 42.717366572677236], [-113.34044031184473, 42.719183825671614], [-113.34221616566167, 42.72749839683379] ], [ [-119.53522312522625, 43.47725338441865], [-119.53527587190514, 43.487385208575205], [-119.53518892600178, 43.49751703273176], [-119.53515817853864, 43.49888888883545], [-119.53496420490033, 43.50764885688831], [-119.53460212367186, 43.51778068104486], [-119.53410299203496, 43.527912505201414], [-119.5334672590258, 43.538044329357966], [-119.53269531058862, 43.54817615351452], [-119.53178746974663, 43.55830797767107], [-119.53074399674249, 43.56843980182762], [-119.52956508914849, 43.578571625984175], [-119.52825088194665, 43.58870345014073], [-119.52680144757832, 43.59883527429728], [-119.52521679596376, 43.60896709845383], [-119.52349687449114, 43.619098922610384], [-119.52164156797518, 43.629230746766936], [-119.52145305051498, 43.630186540012105], [-119.51966389473192, 43.63936257092349], [-119.5175529816661, 43.64949439508004], [-119.51530717164947, 43.65962621923659], [-119.51292611557565, 43.669758043393145], [-119.5104094011423, 43.6798898675497], [-119.5077565526503, 43.69002169170625], [-119.50774792249132, 43.69005292638875], [-119.50498812472966, 43.7001535158628], [-119.50208377800193, 43.710285340019354], [-119.49904279731109, 43.720417164175906], [-119.49586446823395, 43.73054898833246], [-119.49404279446766, 43.73610629193532], [-119.49255958489952, 43.74068081248901], [-119.489131114097, 43.75081263664556], [-119.48556413590482, 43.760944460802115], [-119.48185769267499, 43.77107628495867], [-119.480337666444, 43.77507295301579], [-119.47802911546422, 43.78120810911522], [-119.47407230901544, 43.79133993327177], [-119.46997420361348, 43.801471757428324], [-119.46663253842034, 43.80945161106528], [-119.4657407716129, 43.811603581584876], [-119.46139158566177, 43.82173540574143], [-119.45689876043161, 43.83186722989798], [-119.45292741039668, 43.84054030875756], [-119.45226628657676, 43.84199905405453], [-119.4475207622884, 43.852130878211085], [-119.44262874172233, 43.86226270236764], [-119.43922228237302, 43.869106390183966], [-119.43760197251893, 43.87239452652419], [-119.43245470790536, 43.88252635068074], [-119.42715756301475, 43.892658174837294], [-119.42551715434936, 43.895705152227166], [-119.4217401240507, 43.902789998993846], [-119.41618423893024, 43.9129218231504], [-119.4118120263257, 43.92067785354356], [-119.41048561841093, 43.92305364730695], [-119.40466889469127, 43.9331854714635], [-119.39869599685838, 43.943317295620055], [-119.39810689830205, 43.94428988191518], [-119.39261102739388, 43.95344911977661], [-119.38637217791653, 43.96358094393316], [-119.38440177027839, 43.96669858528968], [-119.38000938457846, 43.97371276808971], [-119.37350141808736, 43.983844592246264], [-119.37069664225473, 43.98810233270555], [-119.36686194131117, 43.993976416402816], [-119.36008125988508, 44.00410824055937], [-119.35699151423107, 44.00861290499456], [-119.35316587796402, 44.01424006471592], [-119.34610844424958, 44.02437188887247], [-119.34328638620741, 44.02832721358141], [-119.33891755897073, 44.034503713029025], [-119.33157889018663, 44.04463553718558], [-119.32958125818375, 44.04732954626016], [-119.324112512867, 44.05476736134213], [-119.31648767585682, 44.06489918549868], [-119.31587613016009, 44.06569341587006], [-119.30874541395536, 44.075031009655234], [-119.30217100213643, 44.08344575660615], [-119.30084033127949, 44.085162833811786], [-119.29281006596838, 44.09529465796834], [-119.28846587411277, 44.1006546374866], [-119.28462887592275, 44.10542648212489], [-119.27629938813661, 44.11555830628144], [-119.27476074608911, 44.11738970007563], [-119.26784063942232, 44.125690130437995], [-119.26105561806546, 44.13365253466446], [-119.25922093206131, 44.13582195459455], [-119.25046719829564, 44.1459537787511], [-119.2473504900418, 44.149485306444454], [-119.24156807473707, 44.15608560290765], [-119.23364536201814, 44.16493825446374], [-119.23250878122329, 44.166217427064204], [-119.22331808669384, 44.176349251220756], [-119.21994023399448, 44.17999656646849], [-119.21397647126733, 44.18648107537731], [-119.20623510597082, 44.194725523040255], [-119.20447494581221, 44.19661289953386], [-119.19483300268115, 44.20674472369041], [-119.19252997794716, 44.20911672667772], [-119.18504515157048, 44.216876547846965], [-119.1788248499235, 44.22319649352894], [-119.17509708124172, 44.22700837200352], [-119.16511972189984, 44.23700846605382], [-119.16498911230377, 44.23714019616007], [-119.15474849987095, 44.24727202031662], [-119.15141459387618, 44.250506513187936], [-119.14434782534858, 44.257403844473174], [-119.13770946585252, 44.263758179855195], [-119.13378612206769, 44.267535668629726], [-119.12400433782886, 44.27677381073029], [-119.12306342268919, 44.27766749278628], [-119.1121947004809, 44.28779931694283], [-119.1102992098052, 44.2895336269875], [-119.10117073680263, 44.29793114109938], [-119.09659408178155, 44.3020633115478], [-119.08998375360866, 44.308062965255935], [-119.08288895375789, 44.31438410949521], [-119.07863346295375, 44.31819478941249], [-119.06918382573423, 44.326502793927574], [-119.06711949006026, 44.32832661356904], [-119.05547869771057, 44.33842590076518], [-119.05544137033063, 44.33845843772559], [-119.04361242991207, 44.348590261882144], [-119.04177356968691, 44.35013762298242], [-119.0316168544961, 44.358722086038696], [-119.02806844166325, 44.36166902965539], [-119.01945362310568, 44.36885391019525], [-119.01436331363959, 44.37302623168594], [-119.00712190300273, 44.3789857343518], [-119.00065818561593, 44.38421466849969], [-118.99462075986841, 44.38911755850835], [-118.98695305759227, 44.3952395798582], [-118.98194915508422, 44.399249382664905], [-118.97324792956861, 44.40610601089834], [-118.96910594308135, 44.40938120682146], [-118.95954280154496, 44.41681881701954], [-118.95608986877426, 44.41951303097801], [-118.9458376735213, 44.42738266862898], [-118.94289956509664, 44.42964485513456], [-118.93213254549764, 44.43780205575446], [-118.92953355065859, 44.439776679291114], [-118.91842741747398, 44.448081292534], [-118.91599022754531, 44.449908503447666], [-118.90472228945032, 44.45822452159103], [-118.90226787927934, 44.46004032760422], [-118.89101716142666, 44.46823571830338], [-118.88836466896943, 44.47017215176077], [-118.877312033403, 44.47811869497392], [-118.87427863767067, 44.48030397591732], [-118.86360690537934, 44.48787710491022], [-118.86000770298196, 44.490435800073875], [-118.84990177735568, 44.497514446420126], [-118.84554965790822, 44.50056762423043], [-118.83619664933202, 44.507034066729844], [-118.83090217001636, 44.51069944838698], [-118.82249152130836, 44.516439165830334], [-118.81606278091493, 44.52083127254353], [-118.8087863932847, 44.52573280025778], [-118.80102890608927, 44.530963096700084], [-118.79508126526105, 44.53491788681305], [-118.78579783512467, 44.54109492085664], [-118.78137613723739, 44.54399720622494], [-118.77036673235146, 44.55122674501319], [-118.76767100921373, 44.55297340676115], [-118.75473263794703, 44.56135856916974], [-118.75396588119007, 44.5618490077908], [-118.74026075316641, 44.57061895042585], [-118.73889901630956, 44.57149039332629], [-118.72655562514275, 44.57928847936053], [-118.72286015459702, 44.581622217482845], [-118.71285049711909, 44.5878641855958], [-118.70660881755296, 44.5917540416394], [-118.69914536909543, 44.59634818714131], [-118.69014144630539, 44.60188586579595], [-118.68544024107177, 44.6047424861173], [-118.67345436569579, 44.6120176899525], [-118.67173511304811, 44.6130489721921], [-118.65802998502446, 44.62126295324659], [-118.65654932179385, 44.622149514109054], [-118.6443248570008, 44.62938507368238], [-118.63942318835787, 44.63228133826561], [-118.63061972897714, 44.63742480597723], [-118.62206509445303, 44.64241316242216], [-118.61691460095348, 44.64538368156165], [-118.60447079598387, 44.65254498657871], [-118.60320947292982, 44.65326313239204], [-118.58950434490616, 44.66105426507512], [-118.58664381264305, 44.66267681073526], [-118.5757992168825, 44.66876446265948], [-118.56857447786805, 44.672808634891815], [-118.56209408885884, 44.67639965206256], [-118.5502544061973, 44.68294045904837], [-118.54838896083518, 44.68396094209895], [-118.53468383281152, 44.6914402864317], [-118.53168453260004, 44.69307228320492], [-118.52097870478786, 44.69884259228015], [-118.51285659278152, 44.70320410736147], [-118.5072735767642, 44.70617469290364], [-118.49376161598568, 44.713335931518024], [-118.49356844874055, 44.71343740058236], [-118.47986332071689, 44.720617705792606], [-118.47439989296295, 44.72346775567458], [-118.46615819269323, 44.727730502411276], [-118.4547587606244, 44.73359957983113], [-118.45245306466957, 44.73477691865394], [-118.43874793664591, 44.741748925810406], [-118.43483369976283, 44.74373140398768], [-118.42504280862225, 44.74865130891299], [-118.41461652823713, 44.75386322814423], [-118.41133768059859, 44.75548986785718], [-118.39763255257493, 44.7622583080683], [-118.39409885427513, 44.763995052300785], [-118.38392742455127, 44.76895817965763], [-118.37327252126346, 44.77412687645734], [-118.37022229652761, 44.77559634400252], [-118.35651716850396, 44.782165979306335], [-118.35212710571183, 44.78425870061389], [-118.3428120404803, 44.788670264134716], [-118.33065521196222, 44.79439052477044], [-118.32910691245664, 44.79511453809175], [-118.31540178443298, 44.80149009475102], [-118.3088406171582, 44.804522348926994], [-118.30169665640932, 44.80780475657093], [-118.28799152838566, 44.81405914341526], [-118.28668003695641, 44.81465417308355], [-118.274286400362, 44.82024680663477], [-118.26415153380121, 44.8247859972401], [-118.26058127233834, 44.82637686937674], [-118.24687614431468, 44.8324437561753], [-118.24124666255014, 44.83491782139665], [-118.23317101629102, 44.83845024508791], [-118.21946588826737, 44.84439856668841], [-118.21795544428633, 44.8450496455532], [-118.2057607602437, 44.85028362561339], [-118.19425210939916, 44.855181469709756], [-118.19205563222005, 44.856112511919164], [-118.17835050419639, 44.86187967461937], [-118.17012096788832, 44.86531329386631], [-118.16464537617273, 44.867589706213366], [-118.15094024814907, 44.873240906942954], [-118.14554922782553, 44.87544511802286], [-118.13723512012541, 44.878833739152526], [-118.12352999210175, 44.884369671517184], [-118.12051554964923, 44.88557694217941], [-118.10982486407809, 44.88984677801794], [-118.09611973605443, 44.895268134998595], [-118.09499603312604, 44.895708766335964], [-118.08241460803077, 44.90063080405596], [-118.06896206199097, 44.90584059049252], [-118.06870948000712, 44.90593820961515], [-118.05500435198346, 44.911187597781854], [-118.04238070147603, 44.91597241464907], [-118.0412992239598, 44.916381672667704], [-118.02759409593614, 44.92151872531974], [-118.01522819230225, 44.92610423880562], [-118.01388896791248, 44.92660025596393], [-118.00018383988882, 44.93162552588539], [-117.9874696070826, 44.93623606296217], [-117.98647871186516, 44.93659511015849], [-117.9727735838415, 44.94150910049133], [-117.95906845581784, 44.94636714749949], [-117.95906634588934, 44.946367887118726], [-117.94536332779418, 44.95117030192608], [-117.93165819977052, 44.95591728289386], [-117.92995683037704, 44.95649971127528], [-117.91795307174687, 44.960609726030555], [-117.9042479437232, 44.96524602093315], [-117.90010174357431, 44.96663153543183], [-117.89054281569955, 44.969827704267665], [-117.87683768767589, 44.974353610480804], [-117.86944706165156, 44.97676335958838], [-117.86313255965223, 44.97882429755421], [-117.84942743162857, 44.98324002245635], [-117.83793335183925, 44.986895183744934], [-117.83572230360491, 44.9875992912996], [-117.82201717558125, 44.99190494565757], [-117.80831204755759, 44.99615320497414], [-117.80545266197653, 44.99702700790149], [-117.79460691953393, 45.00034778371416], [-117.78090179151027, 45.004485725555476], [-117.77191962018243, 45.00715883205804], [-117.76719666348662, 45.00856765306026], [-117.75349153546296, 45.012595152436255], [-117.7397864074393, 45.016564463843885], [-117.73723885246761, 45.01729065621459], [-117.72608127941564, 45.02048019745524], [-117.71237615139198, 45.024338516813536], [-117.70124901580346, 45.02742248037114], [-117.69867102336832, 45.02813928050392], [-117.68496589534466, 45.03188620981457], [-117.671260767321, 45.035574052281504], [-117.6637748150333, 45.037554304527696], [-117.65755563929734, 45.03920554599275], [-117.64385051127368, 45.04278108421308], [-117.63014538325002, 45.04629690241664], [-117.62462868056808, 45.04768612868425], [-117.61644025522637, 45.049756773353], [-117.6027351272027, 45.05315914408133], [-117.58902999917905, 45.05650110252246], [-117.5835213837988, 45.0578179528408], [-117.57532487115539, 45.059786453318196], [-117.56161974313173, 45.06301357367986], [-117.54791461510807, 45.06617951470225], [-117.54008983932746, 45.06794977699735], [-117.53420948708441, 45.06928691090573], [-117.52050435906075, 45.07233636029011], [-117.50679923103709, 45.07532377379034], [-117.4938754456039, 45.078081601153905], [-117.49309410301343, 45.07824925380816], [-117.47938897498977, 45.08111824615909], [-117.46568384696612, 45.083924242965104], [-117.45197871894246, 45.08666694348814], [-117.44405523426772, 45.08821342531046], [-117.4382735909188, 45.089348688747386], [-117.42456846289514, 45.09196997738588], [-117.41086333487148, 45.09452686330759], [-117.39715820684782, 45.09701900734041], [-117.3896551540311, 45.09834524946701], [-117.38345307882416, 45.09944869381233], [-117.3697479508005, 45.101815918542286], [-117.35604282277684, 45.10411712339747], [-117.34233769475318, 45.10635191950743], [-117.32890213278088, 45.10847707362356], [-117.32863256672952, 45.108520010113445], [-117.31492743870587, 45.11062583076819], [-117.3012223106822, 45.112663770552665], [-117.28751718265855, 45.11463338021681], [-117.27381205463489, 45.11653419560026], [-117.26010692661123, 45.11836573665801], [-117.25820687292227, 45.11860889778011], [-117.24640179858757, 45.12013113474514], [-117.23269667056391, 45.12182658253298], [-117.21899154254025, 45.1234509558296], [-117.20528641451659, 45.125003697866866], [-117.19158128649293, 45.126484231918035], [-117.17787615846927, 45.12789196035031], [-117.16913987085125, 45.128740721936666], [-117.16417103044562, 45.129227385182354], [-117.15046590242196, 45.130490475618096], [-117.1367607743983, 45.13167857922774], [-117.12305564637464, 45.132791006350494], [-117.10935051835098, 45.13382704252023], [-117.09564539032732, 45.134785947540124], [-117.08194026230366, 45.13566695455786], [-117.06823513428, 45.136469269140804], [-117.05453000625634, 45.137192068349904], [-117.04082487823268, 45.13783449981143], [-117.02711975020902, 45.13839568078512], [-117.01347574865356, 45.13887254609322], [-117.01341462218537, 45.13887470148902], [-116.9997094941617, 45.13927137338273], [-116.98600436613805, 45.13958375920678], [-116.97229923811439, 45.13981085416664], [-116.95859411009073, 45.139951619049384], [-116.94488898206707, 45.140004979225544], [-116.93118385404341, 45.13996982363306], [-116.91747872601975, 45.13984500374081], [-116.90377359799609, 45.13962933248896], [-116.89006846997243, 45.139321583203426], [-116.87636334194877, 45.138920488481446], [-116.87502849095142, 45.13887254609322], [-116.86265821392512, 45.138425375706696], [-116.84895308590146, 45.13783440216784], [-116.8352479578778, 45.13714608463027], [-116.82154282985414, 45.13635896445483], [-116.80783770183048, 45.135471535475574], [-116.79413257380682, 45.13448224263877], [-116.78042744578316, 45.13338948058678], [-116.7667223177595, 45.1321915921827], [-116.75301718973584, 45.1308868669715], [-116.73931206171218, 45.12947353957347], [-116.7326905012636, 45.128740721936666], [-116.72560693368852, 45.12795033739053], [-116.71190180566487, 45.126315260470406], [-116.6981966776412, 45.124565788464125], [-116.68449154961755, 45.122699894128985], [-116.67078642159389, 45.1207154852483], [-116.65708129357023, 45.11861040248578], [-116.65707194945391, 45.11860889778011], [-116.64337616554657, 45.11638276179393], [-116.62967103752291, 45.11402961847223], [-116.61596590949925, 45.11154856749304], [-116.6022607814756, 45.10893712628213], [-116.59994431217079, 45.10847707362356], [-116.58855565345193, 45.1061920968559], [-116.57485052542827, 45.10331092320687], [-116.56114539740462, 45.10029093053864], [-116.55267804773226, 45.09834524946701], [-116.54744026938096, 45.09712845895412], [-116.5337351413573, 45.093819633454764], [-116.52003001333364, 45.090362491154835], [-116.5118331596086, 45.08821342531046], [-116.50632488530998, 45.08675229483565], [-116.49261975728632, 45.082984433283606], [-116.47891462926266, 45.0790575356376], [-116.47561656559502, 45.078081601153905], [-116.465209501239, 45.074963443406084], [-116.45150437321534, 45.07070073283112], [-116.44296485623288, 45.06794977699735], [-116.43779924519168, 45.06626380489296], [-116.42409411716802, 45.061645831704176], [-116.41313575715013, 45.0578179528408], [-116.41038898914437, 45.05684522420283], [-116.3966838611207, 45.051850440119196], [-116.38565233088144, 45.04768612868425], [-116.38297873309705, 45.046662249762505], [-116.36927360507339, 45.04126675062442], [-116.36014703780042, 45.037554304527696], [-116.35556847704973, 45.035663595028986], [-116.34186334902607, 45.02984082097118], [-116.33633261484766, 45.02742248037114], [-116.32815822100241, 45.02379134554449], [-116.31445309297875, 45.01751172977042], [-116.31398176656731, 45.01729065621459], [-116.3007479649551, 45.01098002497467], [-116.29296810141213, 45.00715883205804], [-116.28704283693143, 45.00419845671397], [-116.27333770890777, 44.997155489019676], [-116.2730931962162, 44.99702700790149], [-116.25963258088412, 44.9898265579862], [-116.25429749022308, 44.986895183744934], [-116.24592745286046, 44.982210593539314], [-116.23644255829159, 44.97676335958838], [-116.2322223248368, 44.974292990870666], [-116.219455003637, 44.96663153543183], [-116.21851719681314, 44.96605757302125], [-116.20481206878948, 44.957480399235344], [-116.20327998674985, 44.95649971127528], [-116.19110694076582, 44.94854531805554], [-116.18784935887278, 44.946367887118726], [-116.17740181274216, 44.93923402113604], [-116.17310624152519, 44.93623606296217], [-116.1636966847185, 44.929522539738194], [-116.15900567194109, 44.92610423880562], [-116.14999155669484, 44.91938419687349], [-116.14550733366653, 44.91597241464907], [-116.13628642867118, 44.908789248676136], [-116.13257500563876, 44.90584059049252], [-116.12258130064752, 44.89770446616954], [-116.12017608774555, 44.895708766335964], [-116.10887617262387, 44.8860926454916], [-116.1082811907893, 44.88557694217941], [-116.096870340719, 44.87544511802286], [-116.0951710446002, 44.87389644429947], [-116.08591579991321, 44.86531329386631], [-116.08146591657655, 44.86107033179053], [-116.07539301789012, 44.855181469709756], [-116.06776078855289, 44.84756417521137], [-116.06528201843281, 44.8450496455532], [-116.0555691584222, 44.83491782139665], [-116.05405566052923, 44.833295187269336], [-116.04624057423965, 44.8247859972401], [-116.04035053250557, 44.81816529828701], [-116.03727324743569, 44.81465417308355], [-116.02865828550122, 44.804522348926994], [-116.02664540448191, 44.80208367703279], [-116.02038499436205, 44.79439052477044], [-116.01294027645825, 44.78491217960418], [-116.01243400286214, 44.78425870061389], [-116.00480536145584, 44.77412687645734], [-115.9992351484346, 44.76644831967116], [-115.99747853264512, 44.763995052300785], [-115.99045174208288, 44.75386322814423], [-115.98553002041093, 44.746490802911495], [-115.98371053231995, 44.74373140398768], [-115.97725196837406, 44.73359957983113], [-115.97182489238727, 44.72472780663699], [-115.97106308089873, 44.72346775567458], [-115.96514301227276, 44.713335931518024], [-115.95947909675003, 44.70320410736147], [-115.95811976436362, 44.70067873527145], [-115.95406988319175, 44.69307228320492], [-115.9489070078848, 44.68294045904837], [-115.94441463633996, 44.67370199979234], [-115.94398468932006, 44.672808634891815], [-115.93930092367657, 44.66267681073526], [-115.93484798439171, 44.65254498657871], [-115.9307095083163, 44.642625186222624], [-115.93062189776137, 44.64241316242216], [-115.92662046645242, 44.63228133826561], [-115.92283798129853, 44.622149514109054], [-115.9192710665568, 44.6120176899525], [-115.91700438029264, 44.605190428379764], [-115.91591675100707, 44.60188586579595], [-115.9127720699649, 44.5917540416394], [-115.90983367950042, 44.581622217482845], [-115.90709895366801, 44.57149039332629], [-115.90456543243857, 44.56135856916974], [-115.90329925226898, 44.55588301684123], [-115.90223077091403, 44.55122674501319], [-115.90009276374924, 44.54109492085664], [-115.89814949224146, 44.530963096700084], [-115.89639916660856, 44.52083127254353], [-115.89484015089113, 44.51069944838698], [-115.89347096187497, 44.50056762423043], [-115.89229026824437, 44.490435800073875], [-115.8912968899631, 44.48030397591732], [-115.89048979788178, 44.47017215176077], [-115.88986811357108, 44.46004032760422], [-115.88959412424532, 44.453702743607835], [-115.88943106793218, 44.449908503447666], [-115.88917810505647, 44.439776679291114], [-115.88910886956693, 44.42964485513456], [-115.88922308496639, 44.41951303097801], [-115.88952062477793, 44.40938120682146], [-115.88959412424532, 44.407839824282036], [-115.89000143269878, 44.399249382664905], [-115.89066573775125, 44.38911755850835], [-115.89151390485509, 44.3789857343518], [-115.89254644283244, 44.36885391019525], [-115.89376402255951, 44.358722086038696], [-115.8951674795149, 44.348590261882144], [-115.89675781661097, 44.33845843772559], [-115.89853620731343, 44.32832661356904], [-115.90050399905368, 44.31819478941249], [-115.9026627169365, 44.308062965255935], [-115.90329925226898, 44.30532781099556], [-115.90501462510052, 44.29793114109938], [-115.9075615870306, 44.28779931694283], [-115.91030558358918, 44.27766749278628], [-115.91324896895644, 44.267535668629726], [-115.91639430533479, 44.257403844473174], [-115.91700438029264, 44.25556307030699], [-115.91974674662015, 44.24727202031662], [-115.92330818254538, 44.23714019616007], [-115.92708147278653, 44.22700837200352], [-115.9307095083163, 44.21779457875339], [-115.93107069434937, 44.216876547846965], [-115.9352849795743, 44.20674472369041], [-115.93972399028763, 44.19661289953386], [-115.94439226208016, 44.18648107537731], [-115.94441463633996, 44.18643489197152], [-115.94930496749943, 44.176349251220756], [-115.95445893041924, 44.166217427064204], [-115.95811976436362, 44.15935132048128], [-115.95986450340772, 44.15608560290765], [-115.96553489001376, 44.1459537787511], [-115.97146745809512, 44.13582195459455], [-115.97182489238727, 44.13523790643134], [-115.97769027098873, 44.125690130437995], [-115.98419475308657, 44.11555830628144], [-115.98553002041093, 44.113565344290414], [-115.99101205351171, 44.10542648212489], [-115.99813729059161, 44.09529465796834], [-115.9992351484346, 44.093796894571206], [-116.00560858535518, 44.085162833811786], [-116.01294027645825, 44.07564486736619], [-116.0134171005015, 44.075031009655234], [-116.02161563975707, 44.06489918549868], [-116.02664540448191, 44.05893743389195], [-116.03020069406773, 44.05476736134213], [-116.03920463722625, 44.04463553718558], [-116.04035053250557, 44.0433962835041], [-116.04868019669146, 44.034503713029025], [-116.05405566052923, 44.02899728549648], [-116.05863860274303, 44.02437188887247], [-116.06776078855289, 44.0155384454548], [-116.06912457867014, 44.01424006471592], [-116.08020844423957, 44.00410824055937], [-116.08146591657655, 44.00300373536224], [-116.09195557915815, 43.993976416402816], [-116.0951710446002, 43.99131981241916], [-116.1044313086278, 43.983844592246264], [-116.10887617262387, 43.980400024230704], [-116.1177358625356, 43.97371276808971], [-116.12258130064752, 43.9702017174448], [-116.13199581346377, 43.96358094393316], [-116.13628642867118, 43.96068417107967], [-116.14737312554762, 43.95344911977661], [-116.14999155669484, 43.951808583488585], [-116.1636966847185, 43.94354436690504], [-116.16408841831257, 43.943317295620055], [-116.17740181274216, 43.93591157698978], [-116.1825431806892, 43.9331854714635], [-116.19110694076582, 43.92882725584015], [-116.20309265191676, 43.92305364730695], [-116.20481206878948, 43.92225852070758], [-116.21851719681314, 43.916260953821556], [-116.2266840646963, 43.9129218231504], [-116.2322223248368, 43.91074803512479], [-116.24592745286046, 43.9057448043566], [-116.25473788968444, 43.902789998993846], [-116.25963258088412, 43.90121358545072], [-116.27333770890777, 43.897183802866856], [-116.28704283693143, 43.89358984275807], [-116.29105520142556, 43.892658174837294], [-116.3007479649551, 43.89049410927973], [-116.31445309297875, 43.88786429946432], [-116.32815822100241, 43.88569176533463], [-116.34186334902607, 43.88399385921864], [-116.35556847704973, 43.88279261710494], [-116.36091945960607, 43.88252635068074], [-116.36927360507339, 43.882123688002466], [-116.38297873309705, 43.882008886473336], [-116.3966838611207, 43.88249189554871], [-116.397093117926, 43.88252635068074], [-116.41038898914437, 43.88364838585067], [-116.42409411716802, 43.88554749859815], [-116.43779924519168, 43.88828763516563], [-116.45150437321534, 43.89199814686204], [-116.45336155552828, 43.892658174837294], [-116.465209501239, 43.896744749712475], [-116.47891462926266, 43.90266284596636], [-116.47915045378984, 43.902789998993846], [-116.49261975728632, 43.90953390747364], [-116.49829609112655, 43.9129218231504], [-116.50632488530998, 43.9172343420311], [-116.51578579759678, 43.92305364730695], [-116.52003001333364, 43.92534786121884], [-116.53331078794808, 43.9331854714635], [-116.5337351413573, 43.93340334670575], [-116.54744026938096, 43.94095194974572], [-116.55169098424216, 43.943317295620055], [-116.56114539740462, 43.94786832754544], [-116.57362876300121, 43.95344911977661], [-116.57485052542827, 43.953938561721735], [-116.58855565345193, 43.95921654258521], [-116.6022607814756, 43.96345425328445], [-116.6027373192208, 43.96358094393316], [-116.61596590949925, 43.967042096052545], [-116.62967103752291, 43.96964302910831], [-116.64337616554657, 43.97127041464911], [-116.65708129357023, 43.97195467856259], [-116.67078642159389, 43.971684259095454], [-116.68449154961755, 43.97033480242812], [-116.6981966776412, 43.96752845402574], [-116.70884015306149, 43.96358094393316], [-116.71190180566487, 43.96270266909236], [-116.72560693368852, 43.956296587564665], [-116.72945621668786, 43.95344911977661], [-116.73931206171218, 43.94711766510548], [-116.74330643184807, 43.943317295620055], [-116.75301718973584, 43.934217300088235], [-116.75383941138541, 43.9331854714635], [-116.76202345714805, 43.92305364730695], [-116.7667223177595, 43.91570300336632], [-116.76828949327478, 43.9129218231504], [-116.77309970061351, 43.902789998993846], [-116.77640861933088, 43.892658174837294], [-116.77860113853555, 43.88252635068074], [-116.78030264591261, 43.87239452652419], [-116.78042744578316, 43.87176035436495], [-116.7828086687086, 43.86226270236764], [-116.78808118468342, 43.852130878211085], [-116.79413257380682, 43.84656030138522], [-116.79942898584538, 43.84199905405453], [-116.80783770183048, 43.83721150889017], [-116.81659069498339, 43.83186722989798], [-116.82154282985414, 43.82937627582854], [-116.8352479578778, 43.82264648517068], [-116.8376913396375, 43.82173540574143], [-116.84895308590146, 43.818397597308554], [-116.86265821392512, 43.816731453222836], [-116.87636334194877, 43.81604309616671], [-116.89006846997243, 43.81509412154722], [-116.90377359799609, 43.81380901427909], [-116.91747872601975, 43.81435248119724], [-116.93118385404341, 43.81721572135458], [-116.94488898206707, 43.81701513111838], [-116.95473275434757, 43.811603581584876], [-116.95859411009073, 43.80702717384809], [-116.96093635692603, 43.801471757428324], [-116.95859411009073, 43.79419325528071], [-116.95617587302401, 43.79133993327177], [-116.94738022079105, 43.78120810911522], [-116.94752837491072, 43.77107628495867], [-116.95859411009073, 43.76209456172517], [-116.97229923811439, 43.761171329630955], [-116.97861308097863, 43.760944460802115], [-116.98600436613805, 43.760796032384334], [-116.9997094941617, 43.758631870059745], [-117.01341462218537, 43.75342066559516], [-117.01829176255394, 43.75081263664556], [-117.02711975020902, 43.744592849418666], [-117.03215838994667, 43.74068081248901], [-117.03925501437648, 43.73054898833246], [-117.04082487823268, 43.72412649467213], [-117.04240740975897, 43.720417164175906], [-117.04286763512744, 43.710285340019354], [-117.04232182546934, 43.7001535158628], [-117.04249076568155, 43.69002169170625], [-117.04357750480814, 43.6798898675497], [-117.0448805035839, 43.669758043393145], [-117.04588518086292, 43.65962621923659], [-117.04648922987535, 43.64949439508004], [-117.04682062891749, 43.63936257092349], [-117.04707186578445, 43.629230746766936], [-117.04740087742876, 43.619098922610384], [-117.04788993182156, 43.60896709845383], [-117.0485529892255, 43.59883527429728], [-117.0493657900345, 43.58870345014073], [-117.0502933624564, 43.578571625984175], [-117.05130534520568, 43.56843980182762], [-117.05238115035499, 43.55830797767107], [-117.05350972617794, 43.54817615351452], [-117.05453000625634, 43.5393234555306], [-117.05469290239087, 43.538044329357966], [-117.05596075736011, 43.527912505201414], [-117.05727779302964, 43.51778068104486], [-117.0586484282306, 43.50764885688831], [-117.06007663190239, 43.49751703273176], [-117.061565102078, 43.487385208575205], [-117.06311493249912, 43.47725338441865], [-117.06472563589723, 43.4671215602621], [-117.066395387978, 43.45698973610555], [-117.06812137610152, 43.446857911948996], [-117.06823513428, 43.44618229818058], [-117.06994277627457, 43.436726087792444], [-117.07181550214565, 43.42659426363589], [-117.07373321102685, 43.41646243947934], [-117.07569271244445, 43.40633061532279], [-117.0776912175578, 43.396198791166235], [-117.0797265407075, 43.38606696700968], [-117.08179726913679, 43.37593514285313], [-117.08194026230366, 43.375222370366664], [-117.0839514557976, 43.36580331869658], [-117.08614357091992, 43.355671494540026], [-117.08837157605382, 43.345539670383474], [-117.09063813584308, 43.33540784622692], [-117.0929470429448, 43.32527602207037], [-117.09530321700063, 43.31514419791382], [-117.09564539032732, 43.31366101045751], [-117.0977606687251, 43.305012373757265], [-117.10028501392063, 43.29488054960071], [-117.10287610419536, 43.28474872544416], [-117.1055428207135, 43.27461690128761], [-117.10829481852848, 43.264485077131056], [-117.10935051835098, 43.260648796519305], [-117.11118073531826, 43.254353252974504], [-117.11419475761697, 43.24422142881795], [-117.11732486927582, 43.2340896046614], [-117.12058259162409, 43.22395778050485], [-117.12305564637464, 43.2165181800549], [-117.12399808257216, 43.213825956348295], [-117.12761417847567, 43.20369413219174], [-117.1313911008469, 43.19356230803519], [-117.13533996598937, 43.18343048387864], [-117.1367607743983, 43.17987831386483], [-117.13952263275793, 43.173298659722086], [-117.14392443814711, 43.163166835565534], [-117.14852709562997, 43.15303501140898], [-117.15046590242196, 43.1488857338372], [-117.153392312048, 43.14290318725243], [-117.15851054405104, 43.13277136309588], [-117.16385162482771, 43.122639538939325], [-117.16417103044562, 43.12204447762189], [-117.1695170466046, 43.11250771478277], [-117.17542088544785, 43.10237589062622], [-117.17787615846927, 43.09826635609869], [-117.18162890949742, 43.09224406646967], [-117.18812129296077, 43.082112242313116], [-117.19158128649293, 43.07684834230919], [-117.19491442981726, 43.07198041815656], [-117.2020130715288, 43.06184859400001], [-117.20528641451659, 43.057276371875105], [-117.20942778249758, 43.05171676984346], [-117.21714258522896, 43.04158494568691], [-117.21899154254025, 43.0391929359156], [-117.22520963301017, 43.031453121530355], [-117.23269667056391, 43.02233354918676], [-117.23356021502522, 43.0213212973738], [-117.24228830039098, 43.01118947321725], [-117.24640179858757, 43.006488605751855], [-117.2513351463513, 43.0010576490607], [-117.26010692661123, 42.99153885682313], [-117.2606932416233, 42.990925824904146], [-117.27044429719717, 42.98079400074759], [-117.27381205463489, 42.97733051714292], [-117.28053564874087, 42.97066217659104], [-117.28751718265855, 42.963799638701914], [-117.29096540839207, 42.96053035243449], [-117.3012223106822, 42.95087258440075], [-117.30174418623707, 42.95039852827794], [-117.31292801749318, 42.940266704121385], [-117.31492743870587, 42.93846290778147], [-117.32448877425581, 42.93013487996483], [-117.32863256672952, 42.92653726020552], [-117.33642665339512, 42.92000305580828], [-117.34233769475318, 42.915056553636255], [-117.34875365848399, 42.90987123165173], [-117.35604282277684, 42.90398348108665], [-117.36148236968613, 42.899739407495176], [-117.3697479508005, 42.89328661016985], [-117.37462594751604, 42.88960758333862], [-117.38345307882416, 42.88293930117762], [-117.38819813785837, 42.87947575918207], [-117.39715820684782, 42.87291885399914], [-117.40221327826457, 42.86934393502552], [-117.41086333487148, 42.86320582946999], [-117.41668630553659, 42.85921211086897], [-117.42456846289514, 42.85378350503521], [-117.4316327646041, 42.849080286712415], [-117.4382735909188, 42.84463743481339], [-117.44706881870003, 42.83894846255586], [-117.45197871894246, 42.83575509152314], [-117.46301126083945, 42.82881663839931], [-117.46568384696612, 42.82712557312227], [-117.47938897498977, 42.81873867150017], [-117.47947989217249, 42.81868481424276], [-117.49309410301343, 42.81056244770717], [-117.49657729633859, 42.808552990086206], [-117.50679923103709, 42.80261114802561], [-117.51425255360736, 42.79842116592965], [-117.52050435906075, 42.79487848221542], [-117.5325260589415, 42.7882893417731], [-117.53420948708441, 42.787358909658906], [-117.54791461510807, 42.780023949334606], [-117.55151877393767, 42.77815751761655], [-117.56161974313173, 42.77287901903836], [-117.57122148980318, 42.76802569346], [-117.57532487115539, 42.76593208159497], [-117.58902999917905, 42.759164012680486], [-117.59168711789108, 42.757893869303444], [-117.6027351272027, 42.75255996799345], [-117.61300926033157, 42.74776204514689], [-117.61644025522637, 42.74614342736707], [-117.63014538325002, 42.739884551913164], [-117.63524700767529, 42.73763022099034], [-117.64385051127368, 42.73378777346649], [-117.65755563929734, 42.727866749893344], [-117.65843662817352, 42.72749839683379], [-117.671260767321, 42.72207679955082], [-117.68278082468875, 42.717366572677236], [-117.68496589534466, 42.716463091303], [-117.69867102336832, 42.7109801615489], [-117.70835188313191, 42.70723474852068], [-117.71237615139198, 42.7056597239258], [-117.72608127941564, 42.70047234740328], [-117.73528880118842, 42.69710292436413], [-117.7397864074393, 42.695437448990106], [-117.75349153546296, 42.6905319258448], [-117.7637846679723, 42.68697110020758], [-117.76719666348662, 42.68577637433943], [-117.78090179151027, 42.68114092980942], [-117.7940645265208, 42.67683927605103], [-117.79460691953393, 42.676659820108995], [-117.80831204755759, 42.67228434766091], [-117.82201717558125, 42.668058936379204], [-117.82656303411453, 42.666707451894474], [-117.83572230360491, 42.663949701290356], [-117.84942743162857, 42.659970109746745], [-117.86154975260888, 42.65657562773792], [-117.86313255965223, 42.65612669464755], [-117.87683768767589, 42.652386220165425], [-117.89054281569955, 42.648782248790546], [-117.89978537201618, 42.64644380358137], [-117.9042479437232, 42.6452998987452], [-117.91795307174687, 42.641925506157435], [-117.93165819977052, 42.63868100817676], [-117.9420818814959, 42.63631197942482], [-117.94536332779418, 42.63555624807906], [-117.95906845581784, 42.632534019421534], [-117.9727735838415, 42.62963631951217], [-117.98647871186516, 42.62686100981407], [-117.99000327032275, 42.626180155268266], [-118.00018383988882, 42.62418685525218], [-118.01388896791248, 42.621626228099224], [-118.02759409593614, 42.619184065939464], [-118.0412992239598, 42.616858728543505], [-118.04633858567209, 42.61604833111171], [-118.05500435198346, 42.61463562721356], [-118.06870948000712, 42.61252029727512], [-118.08241460803077, 42.61051906344229], [-118.09611973605443, 42.60863070746023], [-118.10982486407809, 42.60685411713704], [-118.11755560719513, 42.60591650695516], [-118.12352999210175, 42.60518185482583], [-118.13723512012541, 42.60361237299303], [-118.15094024814907, 42.60215319002267], [-118.16464537617273, 42.60080354180319], [-118.17835050419639, 42.59956275352748], [-118.19205563222005, 42.598430236767115], [-118.2057607602437, 42.59740548671553], [-118.21946588826737, 42.59648807959199], [-118.23137064711096, 42.59578468279861], [-118.23317101629102, 42.59567681456734], [-118.24687614431468, 42.59496759453482], [-118.26058127233834, 42.59436588860731], [-118.274286400362, 42.59387153911447], [-118.28799152838566, 42.59348445902941], [-118.30169665640932, 42.59320463016978], [-118.31540178443298, 42.59303210151503], [-118.32910691245664, 42.59296698763523], [-118.3428120404803, 42.59300946722652], [-118.35651716850396, 42.59315978174918], [-118.37022229652761, 42.593418234164034], [-118.38392742455127, 42.59378518776361], [-118.39763255257493, 42.594261065094386], [-118.41133768059859, 42.59484634696686], [-118.42504280862225, 42.59554157155033], [-118.42919957496076, 42.59578468279861], [-118.43874793664591, 42.59634376705483], [-118.45245306466957, 42.597255062036005], [-118.46615819269323, 42.598277759998], [-118.47986332071689, 42.599412651983954], [-118.49356844874055, 42.60066058296807], [-118.5072735767642, 42.602022451430145], [-118.52097870478786, 42.603499208998606], [-118.53468383281152, 42.605091860160215], [-118.54132318699415, 42.60591650695516], [-118.54838896083518, 42.60679665506058], [-118.56209408885884, 42.608614679483466], [-118.5757992168825, 42.61055169414935], [-118.58950434490616, 42.61260894462834], [-118.60320947292982, 42.61478772900211], [-118.61074566459891, 42.61604833111171], [-118.61691460095348, 42.617084366351285], [-118.63061972897714, 42.6194989708487], [-118.6443248570008, 42.62203925963116], [-118.65802998502446, 42.62470677519263], [-118.66528278771487, 42.626180155268266], [-118.67173511304811, 42.6274973826514], [-118.68544024107177, 42.63041197515419], [-118.69914536909543, 42.63345883502402], [-118.71145034533193, 42.63631197942482], [-118.71285049711909, 42.63663846956731], [-118.72655562514275, 42.63994266598625], [-118.74026075316641, 42.64338489674345], [-118.75198046127015, 42.64644380358137], [-118.75396588119007, 42.64696532277326], [-118.76767100921373, 42.65067704226005], [-118.78137613723739, 42.65453332750518], [-118.78840323743948, 42.65657562773792], [-118.79508126526105, 42.65853031463699], [-118.8087863932847, 42.6626702508283], [-118.82168632396923, 42.666707451894474], [-118.82249152130836, 42.66696138689212], [-118.83619664933202, 42.67139571772068], [-118.84990177735568, 42.67598753585409], [-118.8523800566024, 42.67683927605103], [-118.86360690537934, 42.68073028634373], [-118.877312033403, 42.68563448113778], [-118.88095407773822, 42.68697110020758], [-118.89101716142666, 42.690697483265645], [-118.90472228945032, 42.695927748674286], [-118.90772926044478, 42.69710292436413], [-118.91842741747398, 42.7013240257064], [-118.93213254549764, 42.70689544014809], [-118.93294978594608, 42.70723474852068], [-118.9458376735213, 42.71264007833316], [-118.95678863427348, 42.717366572677236], [-118.95954280154496, 42.71856787328802], [-118.97324792956861, 42.72467954951627], [-118.9794154828415, 42.72749839683379], [-118.98695305759227, 42.73098196490109], [-119.00065818561593, 42.73748043286199], [-119.000968194181, 42.73763022099034], [-119.01436331363959, 42.744178816937264], [-119.02151602370368, 42.74776204514689], [-119.02806844166325, 42.751084756977754], [-119.04118402520612, 42.757893869303444], [-119.04177356968691, 42.758203824959175], [-119.05547869771057, 42.765543187998645], [-119.06001511914981, 42.76802569346], [-119.06918382573423, 42.77311012839473], [-119.07809314263982, 42.77815751761655], [-119.08288895375789, 42.7809120240718], [-119.09547132958693, 42.7882893417731], [-119.09659408178155, 42.78895704714389], [-119.1102992098052, 42.79725579108641], [-119.11218869181036, 42.79842116592965], [-119.12400433782886, 42.805817908226125], [-119.12829205665238, 42.808552990086206], [-119.13770946585252, 42.814653301994895], [-119.1438213656983, 42.81868481424276], [-119.15141459387618, 42.82377362606514], [-119.15880908839286, 42.82881663839931], [-119.16511972189984, 42.8331916561194], [-119.17328466306513, 42.83894846255586], [-119.1788248499235, 42.84292139607459], [-119.18727481077843, 42.849080286712415], [-119.19252997794716, 42.85297819753159], [-119.20080381057899, 42.85921211086897], [-119.20623510597082, 42.86337889438582], [-119.21389374155139, 42.86934393502552], [-119.21994023399448, 42.87414195486536], [-119.22656469623796, 42.87947575918207], [-119.23364536201814, 42.88528765365992], [-119.23883496927584, 42.88960758333862], [-119.2473504900418, 42.896838267279335], [-119.25072122452221, 42.899739407495176], [-119.26105561806546, 42.90881829635395], [-119.2622386434519, 42.90987123165173], [-119.27340163210302, 42.92000305580828], [-119.27476074608911, 42.92126182446822], [-119.28422386556008, 42.93013487996483], [-119.28846587411277, 42.934202030252514], [-119.29471676738937, 42.940266704121385], [-119.30217100213643, 42.947667250334085], [-119.30489091639501, 42.95039852827794], [-119.31475730622093, 42.96053035243449], [-119.31587613016009, 42.961703574037195], [-119.32432811172488, 42.97066217659104], [-119.32958125818375, 42.97637155559158], [-119.33360856362387, 42.98079400074759], [-119.34260708877463, 42.990925824904146], [-119.34328638620741, 42.99170713244528], [-119.35133769843335, 43.0010576490607], [-119.35699151423107, 43.00780600238873], [-119.35980000958259, 43.01118947321725], [-119.3680054092408, 43.0213212973738], [-119.37069664225473, 43.02472903834112], [-119.37596097670362, 43.031453121530355], [-119.3836669923806, 43.04158494568691], [-119.38440177027839, 43.042573817347105], [-119.39114052281188, 43.05171676984346], [-119.39810689830205, 43.06147386133526], [-119.39837238616946, 43.06184859400001], [-119.40538463929673, 43.07198041815656], [-119.4118120263257, 43.08158246374917], [-119.41216410644435, 43.082112242313116], [-119.41873411901808, 43.09224406646967], [-119.42507981901723, 43.10237589062622], [-119.42551715434936, 43.103092622501414], [-119.43122503188476, 43.11250771478277], [-119.43715616103307, 43.122639538939325], [-119.43922228237302, 43.12627710084131], [-119.4428891416153, 43.13277136309588], [-119.44842202726764, 43.14290318725243], [-119.45292741039668, 43.15145666261113], [-119.45375427139936, 43.15303501140898], [-119.45890359502673, 43.163166835565534], [-119.46385613026379, 43.173298659722086], [-119.46663253842034, 43.17918742685612], [-119.46862354439425, 43.18343048387864], [-119.47321213707949, 43.19356230803519], [-119.47761343573286, 43.20369413219174], [-119.480337666444, 43.21021951529918], [-119.48183713908212, 43.213825956348295], [-119.48589130852599, 43.22395778050485], [-119.48976654621744, 43.2340896046614], [-119.49346547528329, 43.24422142881795], [-119.49404279446766, 43.24586944252415], [-119.49700505648764, 43.254353252974504], [-119.500375802238, 43.264485077131056], [-119.50357726372658, 43.27461690128761], [-119.5066116891846, 43.28474872544416], [-119.50774792249132, 43.28874188694903], [-119.50949032400999, 43.29488054960071], [-119.51221161163524, 43.305012373757265], [-119.51477166597245, 43.31514419791382], [-119.51717238884888, 43.32527602207037], [-119.51941560687256, 43.33540784622692], [-119.52145305051498, 43.34529518166363], [-119.5215033541714, 43.345539670383474], [-119.52344777797352, 43.355671494540026], [-119.52523912503283, 43.36580331869658], [-119.52687890299968, 43.37593514285313], [-119.52836854930182, 43.38606696700968], [-119.52970943185383, 43.396198791166235], [-119.53090284972824, 43.40633061532279], [-119.53195003378866, 43.41646243947934], [-119.53285214728653, 43.42659426363589], [-119.53361028642136, 43.436726087792444], [-119.53422548086604, 43.446857911948996], [-119.5346986942573, 43.45698973610555], [-119.53503082465221, 43.4671215602621], [-119.53515817853864, 43.47383306724233], [-119.53522312522625, 43.47725338441865] ], [ [-114.0136927073745, 42.54512556201585], [-114.01414284136537, 42.5552573861724], [-114.01288251260199, 42.56538921032895], [-114.01199158500403, 42.56832486014446], [-114.00984284361346, 42.575521034485504], [-114.00469398783419, 42.58565285864206], [-113.99828645698037, 42.59453871842251], [-113.99717267819241, 42.59578468279861], [-113.98658048640402, 42.60591650695516], [-113.98458132895671, 42.60772974231212], [-113.97238581012545, 42.61604833111171], [-113.97087620093305, 42.61715550539719], [-113.95717107290939, 42.62496835091605], [-113.95453105234772, 42.626180155268266], [-113.94346594488573, 42.63241347550435], [-113.93611428483877, 42.63631197942482], [-113.92976081686207, 42.64033376912334], [-113.92025294166112, 42.64644380358137], [-113.91605568883841, 42.64940515813895], [-113.90592934448148, 42.65657562773792], [-113.90235056081475, 42.65913746869773], [-113.89121753898787, 42.666707451894474], [-113.8886454327911, 42.66840961538033], [-113.87494030476743, 42.67649029671274], [-113.87424677356063, 42.67683927605103], [-113.86123517674378, 42.68327874891987], [-113.85173706906531, 42.68697110020758], [-113.84753004872012, 42.688646906897716], [-113.83382492069646, 42.692824685533246], [-113.8201197926728, 42.695698963530006], [-113.80867765727439, 42.69710292436413], [-113.80641466464914, 42.697411991475825], [-113.79270953662548, 42.69801685518446], [-113.77900440860182, 42.697331846567685], [-113.77743213882752, 42.69710292436413], [-113.76529928057816, 42.69537093453644], [-113.7515941525545, 42.69183887629663], [-113.73942929514874, 42.68697110020758], [-113.73788902453084, 42.68634347686286], [-113.72418389650718, 42.67885748014091], [-113.72132231874359, 42.67683927605103], [-113.71047876848353, 42.66931667582945], [-113.70730737454447, 42.666707451894474], [-113.69677364045987, 42.65894511027814], [-113.69373114701662, 42.65657562773792], [-113.68306851243621, 42.65007196732361], [-113.67587924645505, 42.64644380358137], [-113.66936338441255, 42.644095270934905], [-113.65565825638889, 42.641034226722084], [-113.64195312836523, 42.639588098461886], [-113.62824800034157, 42.63846774218043], [-113.61454287231791, 42.63670254312647], [-113.613242923384, 42.63631197942482], [-113.60083774429425, 42.63343095210009], [-113.5871326162706, 42.62930601104247], [-113.5767144452266, 42.626180155268266], [-113.57342748824694, 42.623720350898886], [-113.55972236022328, 42.61685377992577], [-113.55744839754301, 42.61604833111171], [-113.54601723219962, 42.60733883315857], [-113.54317166969987, 42.60591650695516], [-113.53232590671482, 42.59578468279861], [-113.53231210417596, 42.595762725751904], [-113.52256912269297, 42.58565285864206], [-113.5186069761523, 42.579421667941304], [-113.51508574339283, 42.575521034485504], [-113.5090444694288, 42.56538921032895], [-113.50490184812864, 42.55544806402605], [-113.50479908494258, 42.5552573861724], [-113.50157689072657, 42.54512556201585], [-113.50001803789074, 42.534993737859295], [-113.49997132183358, 42.52486191370274], [-113.50138460443267, 42.51473008954619], [-113.50426325412636, 42.50459826538964], [-113.50490184812864, 42.503075853927605], [-113.50828191712884, 42.49446644123309], [-113.51372480344818, 42.484334617076534], [-113.5186069761523, 42.47726335778495], [-113.52062998239097, 42.47420279291998], [-113.52885492697327, 42.46407096876343], [-113.53231210417596, 42.460524689920994], [-113.53862821390881, 42.45393914460688], [-113.54601723219962, 42.447450398708774], [-113.55018764825267, 42.443807320450325], [-113.55972236022328, 42.436632179851365], [-113.56376876347474, 42.43367549629377], [-113.57342748824694, 42.42746399570343], [-113.57987373411532, 42.42354367213722], [-113.5871326162706, 42.41957722546278], [-113.59940673363384, 42.41341184798067], [-113.60083774429425, 42.41275336223344], [-113.61454287231791, 42.40685837876366], [-113.62398841416338, 42.40328002382412], [-113.62824800034157, 42.40176513719972], [-113.64195312836523, 42.39738516255913], [-113.65565825638889, 42.39368744996993], [-113.65795857554376, 42.393148199667564], [-113.66936338441255, 42.390565816377894], [-113.68306851243621, 42.3880211677949], [-113.69677364045987, 42.3860330723039], [-113.71047876848353, 42.38457663061803], [-113.72418389650718, 42.38363489334134], [-113.73788902453084, 42.38319936400248], [-113.7515941525545, 42.38327024390179], [-113.76529928057816, 42.383857551332085], [-113.77900440860182, 42.38498391290792], [-113.79270953662548, 42.38668876054653], [-113.80641466464914, 42.38903235265606], [-113.8201197926728, 42.392097069110214], [-113.8238860075606, 42.393148199667564], [-113.83382492069646, 42.395791950384414], [-113.84753004872012, 42.40031081120322], [-113.85505282995018, 42.40328002382412], [-113.86123517674378, 42.40570206019717], [-113.87494030476743, 42.412050150366746], [-113.87758835825726, 42.41341184798067], [-113.8886454327911, 42.41937388821177], [-113.89571517401735, 42.42354367213722], [-113.90235056081475, 42.427791330064714], [-113.91126665251342, 42.43367549629377], [-113.91605568883841, 42.43719438946594], [-113.92538373197601, 42.443807320450325], [-113.92976081686207, 42.44727310076698], [-113.93899767995846, 42.45393914460688], [-113.94346594488573, 42.45744897203959], [-113.95285283058338, 42.46407096876343], [-113.95717107290939, 42.46725228662868], [-113.96693731122342, 42.47420279291998], [-113.97087620093305, 42.4770659332263], [-113.97971235962038, 42.484334617076534], [-113.98458132895671, 42.488599427672874], [-113.9897501635004, 42.49446644123309], [-113.99729936373706, 42.50459826538964], [-113.99828645698037, 42.505843139263554], [-114.00361912743209, 42.51473008954619], [-114.00834151234791, 42.52486191370274], [-114.01164032150294, 42.534993737859295], [-114.01199158500403, 42.536610524953375], [-114.0136927073745, 42.54512556201585] ], [ [-114.95892991047133, 42.575521034485504], [-114.96312156614681, 42.58565285864206], [-114.96619793402144, 42.59578468279861], [-114.96825748779179, 42.60591650695516], [-114.96937345527397, 42.61604833111171], [-114.96959165280397, 42.626180155268266], [-114.96892762417441, 42.63631197942482], [-114.96736306619606, 42.64644380358137], [-114.96484155039411, 42.65657562773792], [-114.96126357542884, 42.666707451894474], [-114.9576454186365, 42.674426216185296], [-114.95659689617929, 42.67683927605103], [-114.95099123661362, 42.68697110020758], [-114.94394029061284, 42.69689777364858], [-114.94379993768524, 42.69710292436413], [-114.93539813961338, 42.70723474852068], [-114.93023516258918, 42.71229865878816], [-114.92495367539026, 42.717366572677236], [-114.91653003456553, 42.7240856559338], [-114.91193400590328, 42.72749839683379], [-114.90282490654187, 42.73328825603011], [-114.89494050419277, 42.73763022099034], [-114.88911977851821, 42.74047341797946], [-114.87541465049455, 42.74595022785014], [-114.86947943083139, 42.74776204514689], [-114.86170952247089, 42.74998451215532], [-114.84800439444723, 42.75271205365038], [-114.83429926642357, 42.7541481501015], [-114.82059413839991, 42.75440511352331], [-114.80688901037625, 42.75354095000205], [-114.7931838823526, 42.75152573083763], [-114.77947875432893, 42.748184685199995], [-114.77836558083723, 42.74776204514689], [-114.76577362630528, 42.744251991835796], [-114.75206849828162, 42.738832409877325], [-114.74991880517621, 42.73763022099034], [-114.73836337025796, 42.73293217679827], [-114.72862610585078, 42.72749839683379], [-114.7246582422343, 42.725865865817795], [-114.71095311421064, 42.718539968911976], [-114.70905204359273, 42.717366572677236], [-114.69724798618698, 42.7115037017722], [-114.68881789181685, 42.70723474852068], [-114.68354285816332, 42.70477043143549], [-114.66983773013966, 42.69914080872036], [-114.66371414154956, 42.69710292436413], [-114.656132602116, 42.69446899621769], [-114.64242747409234, 42.69031255299942], [-114.63170501191782, 42.68697110020758], [-114.62872234606868, 42.68584866318543], [-114.61501721804503, 42.680062264742475], [-114.60862743277612, 42.67683927605103], [-114.60131209002137, 42.67074517381703], [-114.59679976890996, 42.666707451894474], [-114.59171301113408, 42.65657562773792], [-114.59107859457953, 42.64644380358137], [-114.5930528553438, 42.63631197942482], [-114.59678904335306, 42.626180155268266], [-114.60131209002137, 42.6177011642807], [-114.60191539904376, 42.61604833111171], [-114.60569153118014, 42.60591650695516], [-114.61086150030454, 42.59578468279861], [-114.61501721804503, 42.5885511393762], [-114.61638004209006, 42.58565285864206], [-114.62121355044695, 42.575521034485504], [-114.62661951455411, 42.56538921032895], [-114.62872234606868, 42.56132663841244], [-114.63248982859353, 42.5552573861724], [-114.63923246959904, 42.54512556201585], [-114.64242747409234, 42.54054922697579], [-114.64736385416268, 42.534993737859295], [-114.656132602116, 42.52575738825287], [-114.65724078488465, 42.52486191370274], [-114.66968832090062, 42.51473008954619], [-114.66983773013966, 42.51460794022433], [-114.68354285816332, 42.50579800146197], [-114.68602605645292, 42.50459826538964], [-114.69724798618698, 42.498788743913614], [-114.70849281460583, 42.49446644123309], [-114.71095311421064, 42.49343880398266], [-114.7246582422343, 42.489015217896245], [-114.73836337025796, 42.48581854371609], [-114.74747452643666, 42.484334617076534], [-114.75206849828162, 42.48349088319917], [-114.76577362630528, 42.4819090204155], [-114.77947875432893, 42.48118603768064], [-114.7931838823526, 42.48127423832086], [-114.80688901037625, 42.48216757820466], [-114.82059413839991, 42.48389415729276], [-114.82300131200333, 42.484334617076534], [-114.83429926642357, 42.48632070860434], [-114.84800439444723, 42.48963825083719], [-114.86170952247089, 42.49401573617105], [-114.86289749452499, 42.49446644123309], [-114.87541465049455, 42.49926976902602], [-114.88662141983485, 42.50459826538964], [-114.88911977851821, 42.505830137181306], [-114.90282490654187, 42.51374490262121], [-114.90432625725151, 42.51473008954619], [-114.91653003456553, 42.523389099371556], [-114.91838275301959, 42.52486191370274], [-114.92985258637569, 42.534993737859295], [-114.93023516258918, 42.535372047858374], [-114.93940269770437, 42.54512556201585], [-114.94394029061284, 42.550854879854214], [-114.94726572190643, 42.5552573861724], [-114.95374922331133, 42.56538921032895], [-114.9576454186365, 42.57298775561533], [-114.95892991047133, 42.575521034485504] ], [ [-117.08194026230366, 43.97695961990943], [-117.0871867997788, 43.983844592246264], [-117.09140657165014, 43.993976416402816], [-117.09305544013806, 44.00410824055937], [-117.0925306554588, 44.01424006471592], [-117.0898251840492, 44.02437188887247], [-117.08476607716904, 44.034503713029025], [-117.08194026230366, 44.03872550281173], [-117.07704415113658, 44.04463553718558], [-117.06823513428, 44.053217345059345], [-117.06609045999559, 44.05476736134213], [-117.05453000625634, 44.06283176368848], [-117.0502968990489, 44.06489918549868], [-117.04082487823268, 44.06990654413104], [-117.02711975020902, 44.07495179921449], [-117.02681615899769, 44.075031009655234], [-117.01341462218537, 44.07932757913934], [-116.9997094941617, 44.082717913594486], [-116.98870105381074, 44.085162833811786], [-116.98600436613805, 44.08592696434802], [-116.97229923811439, 44.090035718714695], [-116.9591695104854, 44.09529465796834], [-116.95859411009073, 44.09555631766747], [-116.94488898206707, 44.10305525729536], [-116.94111191478292, 44.10542648212489], [-116.93118385404341, 44.1112903950014], [-116.92375336536193, 44.11555830628144], [-116.91747872601975, 44.118938152538654], [-116.90377359799609, 44.12528552570216], [-116.90270893590379, 44.125690130437995], [-116.89006846997243, 44.13055455451456], [-116.87636334194877, 44.134326272509185], [-116.86814718536947, 44.13582195459455], [-116.86265821392512, 44.13694580286492], [-116.84895308590146, 44.138530762781755], [-116.8352479578778, 44.13891491693971], [-116.82154282985414, 44.1381078142], [-116.80783770183048, 44.136020121267485], [-116.80699361531758, 44.13582195459455], [-116.79413257380682, 44.132884992904515], [-116.78042744578316, 44.128080775437645], [-116.77517765533536, 44.125690130437995], [-116.7667223177595, 44.1214530149147], [-116.75738211822676, 44.11555830628144], [-116.75301718973584, 44.112216710100995], [-116.74510788110518, 44.10542648212489], [-116.73931206171218, 44.09866490701836], [-116.736450205376, 44.09529465796834], [-116.73024714728184, 44.085162833811786], [-116.72656824542902, 44.075031009655234], [-116.72560693368852, 44.06945751760869], [-116.72464029623706, 44.06489918549868], [-116.72458113386767, 44.05476736134213], [-116.72560693368852, 44.049790492273104], [-116.7264640863704, 44.04463553718558], [-116.73014761008557, 44.034503713029025], [-116.7369850904954, 44.02437188887247], [-116.73931206171218, 44.02201312615051], [-116.74709185356144, 44.01424006471592], [-116.75301718973584, 44.01025680846988], [-116.7639631955127, 44.00410824055937], [-116.7667223177595, 44.002919998703085], [-116.78042744578316, 43.99778495087122], [-116.79413257380682, 43.994427906778284], [-116.79653091978622, 43.993976416402816], [-116.80783770183048, 43.991938201159535], [-116.82154282985414, 43.990458994630465], [-116.8352479578778, 43.98990002309571], [-116.84895308590146, 43.9901369642241], [-116.86265821392512, 43.99099644920258], [-116.87636334194877, 43.99206802380406], [-116.89006846997243, 43.99239078479071], [-116.90377359799609, 43.9901975562597], [-116.91648421132619, 43.983844592246264], [-116.91747872601975, 43.98340976881947], [-116.93118385404341, 43.97456930091547], [-116.9322945754438, 43.97371276808971], [-116.94488898206707, 43.96727860552231], [-116.95565917737206, 43.96358094393316], [-116.95859411009073, 43.96277193331079], [-116.97229923811439, 43.962281897000295], [-116.97417943931502, 43.96358094393316], [-116.98600436613805, 43.96681444309526], [-116.9997094941617, 43.97353572546294], [-117.00184867082109, 43.97371276808971], [-117.01341462218537, 43.97427402380936], [-117.01474573085193, 43.97371276808971], [-117.02711975020902, 43.96545518846686], [-117.03374878949032, 43.96358094393316], [-117.04082487823268, 43.957503867402764], [-117.05453000625634, 43.95847539819558], [-117.06640009531058, 43.96358094393316], [-117.06823513428, 43.964617644994874], [-117.07958508176003, 43.97371276808971], [-117.08194026230366, 43.97695961990943] ], [ [-119.33100137484142, 46.587723400480186], [-119.3314320724573, 46.59785522463674], [-119.32967658096172, 46.60798704879329], [-119.32958125818375, 46.60826808666631], [-119.32613473410858, 46.61811887294984], [-119.32110339445556, 46.628250697106395], [-119.31625597928932, 46.63838252126295], [-119.31587613016009, 46.64043489025695], [-119.31423065261606, 46.6485143454195], [-119.31587613016009, 46.65540181869136], [-119.31649865666293, 46.65864616957605], [-119.3203284463831, 46.668777993732604], [-119.32329498326204, 46.678909817889156], [-119.32417640005305, 46.68904164204571], [-119.32245621428957, 46.69917346620226], [-119.31748399828871, 46.70930529035881], [-119.31587613016009, 46.711144875536164], [-119.30830516863735, 46.719437114515365], [-119.30217100213643, 46.7236822612812], [-119.29109128190083, 46.72956893867192], [-119.28846587411277, 46.73062091649028], [-119.27476074608911, 46.734245385116246], [-119.26105561806546, 46.73559439321092], [-119.2473504900418, 46.7348323576108], [-119.23364536201814, 46.73190273670894], [-119.22736879170162, 46.72956893867192], [-119.21994023399448, 46.726168265581364], [-119.20951149615868, 46.719437114515365], [-119.20623510597082, 46.71622277418532], [-119.1999196369508, 46.70930529035881], [-119.19479600085229, 46.69917346620226], [-119.19286133643467, 46.68904164204571], [-119.19339970464999, 46.678909817889156], [-119.1956716370133, 46.668777993732604], [-119.19782728983432, 46.65864616957605], [-119.1960751724472, 46.6485143454195], [-119.19252997794716, 46.64387141250943], [-119.18883548248691, 46.63838252126295], [-119.17981301866008, 46.628250697106395], [-119.1788248499235, 46.62707909157698], [-119.17205439585766, 46.61811887294984], [-119.16639050041661, 46.60798704879329], [-119.16511972189984, 46.604419776033566], [-119.16254996376178, 46.59785522463674], [-119.16021094961239, 46.587723400480186], [-119.15864277453703, 46.577591576323634], [-119.15602773475017, 46.56745975216708], [-119.15141459387618, 46.5608226553629], [-119.14863953145567, 46.55732792801053], [-119.13770946585252, 46.549510131062895], [-119.13488827047573, 46.54719610385398], [-119.12400433782886, 46.539679523242874], [-119.12107262487656, 46.537064279697425], [-119.1108612778305, 46.52693245554087], [-119.1102992098052, 46.5261943770833], [-119.10432255082237, 46.51680063138432], [-119.10100117668479, 46.50666880722777], [-119.1006299372161, 46.496536983071216], [-119.1030917856313, 46.486405158914664], [-119.1083560062849, 46.47627333475811], [-119.1102992098052, 46.4735133512026], [-119.11589716100421, 46.46614151060156], [-119.12281627441956, 46.45600968644501], [-119.12400433782886, 46.45239843682699], [-119.1258900474509, 46.445877862288455], [-119.12674105787187, 46.4357460381319], [-119.1291789463678, 46.42561421397535], [-119.13534466310182, 46.4154823898188], [-119.13770946585252, 46.41358461401899], [-119.14884236537834, 46.405350565662246], [-119.15141459387618, 46.40420818080315], [-119.16511972189984, 46.40026711119237], [-119.1788248499235, 46.398945927953015], [-119.19252997794716, 46.40045144356604], [-119.20623510597082, 46.40463617402765], [-119.2080189304618, 46.405350565662246], [-119.21994023399448, 46.41428743586814], [-119.22154668218575, 46.4154823898188], [-119.22852300284677, 46.42561421397535], [-119.23200530972086, 46.4357460381319], [-119.23364536201814, 46.44273116668036], [-119.2346274895638, 46.445877862288455], [-119.23863171410474, 46.45600968644501], [-119.24452349342492, 46.46614151060156], [-119.2473504900418, 46.47091524077303], [-119.250572867558, 46.47627333475811], [-119.25549365988188, 46.486405158914664], [-119.25896783962699, 46.496536983071216], [-119.26105561806546, 46.50448046906965], [-119.26178452703049, 46.50666880722777], [-119.26577438509503, 46.51680063138432], [-119.27410694090361, 46.52693245554087], [-119.27476074608911, 46.527375037344925], [-119.28846587411277, 46.53692861489282], [-119.28864204091862, 46.537064279697425], [-119.30217100213643, 46.54614910580203], [-119.30344318144641, 46.54719610385398], [-119.31495377554619, 46.55732792801053], [-119.31587613016009, 46.558334720813406], [-119.32312746314817, 46.56745975216708], [-119.32829797784068, 46.577591576323634], [-119.32958125818375, 46.58246159489228], [-119.33100137484142, 46.587723400480186] ], [ [-115.69865031345786, 42.97066217659104], [-115.70474827227991, 42.98079400074759], [-115.70540226524878, 42.990925824904146], [-115.70191280606109, 43.0010576490607], [-115.6977223319141, 43.00696374573378], [-115.69399068953697, 43.01118947321725], [-115.68401720389043, 43.01908501288857], [-115.6798573937691, 43.0213212973738], [-115.67031207586678, 43.02600366102439], [-115.65660694784312, 43.03022810398834], [-115.64959727712036, 43.031453121530355], [-115.64290181981946, 43.03272048239445], [-115.6291966917958, 43.033920197949264], [-115.61549156377214, 43.034145277158935], [-115.60178643574848, 43.0338004417489], [-115.58808130772482, 43.03324145832469], [-115.57437617970116, 43.03262551123242], [-115.5606710516775, 43.03183012367171], [-115.55669486822805, 43.031453121530355], [-115.54696592365384, 43.030597366837036], [-115.53326079563018, 43.028636620442875], [-115.51955566760653, 43.02559215503927], [-115.50654790049012, 43.0213212973738], [-115.50585053958287, 43.021095338591216], [-115.4921454115592, 43.0149216827745], [-115.48591377549826, 43.01118947321725], [-115.47844028353555, 43.00612631440157], [-115.47235524701279, 43.0010576490607], [-115.46473515551189, 42.99299107391171], [-115.46298844702513, 42.990925824904146], [-115.45656422104831, 42.98079400074759], [-115.45267969526918, 42.97066217659104], [-115.45103002748823, 42.96086284404678], [-115.45097008867873, 42.96053035243449], [-115.45103002748823, 42.95867756992416], [-115.45127037302942, 42.95039852827794], [-115.45362606157595, 42.940266704121385], [-115.4583909128919, 42.93013487996483], [-115.46473515551189, 42.92172836937011], [-115.4661474359369, 42.92000305580828], [-115.47781609135279, 42.90987123165173], [-115.47844028353555, 42.90943626614758], [-115.4921454115592, 42.901829056051454], [-115.49789081741898, 42.899739407495176], [-115.50585053958287, 42.89706128833523], [-115.51955566760653, 42.89459925731166], [-115.53326079563018, 42.89431452727093], [-115.54696592365384, 42.896333782717974], [-115.55636195658423, 42.899739407495176], [-115.5606710516775, 42.90115499123748], [-115.57437617970116, 42.909697535821365], [-115.5745519838756, 42.90987123165173], [-115.5849701312228, 42.92000305580828], [-115.58808130772482, 42.92319024533971], [-115.59349173316076, 42.93013487996483], [-115.60178643574848, 42.93939809277968], [-115.60273431456746, 42.940266704121385], [-115.61549156377214, 42.94698765340934], [-115.6291966917958, 42.94871263723435], [-115.64290181981946, 42.949806690961815], [-115.6465950527906, 42.95039852827794], [-115.65660694784312, 42.952173329729355], [-115.67031207586678, 42.95572040903331], [-115.68401720389043, 42.96028043406244], [-115.68481812446879, 42.96053035243449], [-115.6977223319141, 42.97004672920412], [-115.69865031345786, 42.97066217659104] ], [ [-119.71822955946546, 46.87141447686365], [-119.72351430001441, 46.8815463010202], [-119.72605621668352, 46.89167812517675], [-119.72617412117303, 46.901809949333305], [-119.72375210989777, 46.91194177348986], [-119.71812284000296, 46.92207359764641], [-119.7133248428462, 46.92724477116954], [-119.70872192318495, 46.93220542180296], [-119.69961971482255, 46.9388321416381], [-119.69424802347838, 46.942337245959514], [-119.68591458679889, 46.94657781398509], [-119.67220945877523, 46.952069592643966], [-119.67097265226806, 46.95246907011607], [-119.65850433075157, 46.95620709543105], [-119.64479920272791, 46.95896750465276], [-119.63109407470425, 46.96049783614691], [-119.61738894668059, 46.96097723757672], [-119.60368381865693, 46.96055041540475], [-119.58997869063327, 46.95930452890363], [-119.57627356260961, 46.957260881807116], [-119.56256843458596, 46.954366130998956], [-119.55536675209842, 46.95246907011607], [-119.5488633065623, 46.95072251879603], [-119.53515817853864, 46.9458442483375], [-119.52760558392423, 46.942337245959514], [-119.52145305051498, 46.93854805078301], [-119.5130677760962, 46.93220542180296], [-119.50774792249132, 46.92543509435213], [-119.50526971275583, 46.92207359764641], [-119.50104804687581, 46.91194177348986], [-119.49954893452399, 46.901809949333305], [-119.4998758674195, 46.89167812517675], [-119.50171128715753, 46.8815463010202], [-119.50506682395539, 46.87141447686365], [-119.50774792249132, 46.86581669622562], [-119.50990004399938, 46.8612826527071], [-119.51665657134839, 46.851150828550544], [-119.52145305051498, 46.84569325617478], [-119.5263268963511, 46.84101900439399], [-119.53515817853864, 46.834079094428255], [-119.54061919428865, 46.83088718023744], [-119.5488633065623, 46.826415381724466], [-119.56256843458596, 46.82151013849836], [-119.56595636993794, 46.82075535608089], [-119.57627356260961, 46.81828080702192], [-119.58997869063327, 46.81669140719908], [-119.60368381865693, 46.81656774415909], [-119.61738894668059, 46.817772777312285], [-119.63109407470425, 46.820295277105835], [-119.63278510242804, 46.82075535608089], [-119.64479920272791, 46.823715283681], [-119.65850433075157, 46.82849691971518], [-119.66404267363659, 46.83088718023744], [-119.67220945877523, 46.83454009057191], [-119.68410751654086, 46.84101900439399], [-119.68591458679889, 46.84215126919949], [-119.69887038737299, 46.851150828550544], [-119.69961971482255, 46.851821437231585], [-119.71011159946012, 46.8612826527071], [-119.7133248428462, 46.86548221747415], [-119.71822955946546, 46.87141447686365] ], [ [-119.20651736417547, 46.28376867578362], [-119.21494713592436, 46.29390049994017], [-119.21888663694281, 46.304032324096724], [-119.21966909031468, 46.314164148253276], [-119.21771753844922, 46.32429597240983], [-119.21257290160132, 46.33442779656638], [-119.20623510597082, 46.341006665186995], [-119.20343484319048, 46.34455962072293], [-119.19252997794716, 46.35256539443583], [-119.18996157202653, 46.354691444879485], [-119.1788248499235, 46.36069222562544], [-119.17121051179605, 46.36482326903604], [-119.16511972189984, 46.367343526134064], [-119.15141459387618, 46.37299573730383], [-119.14627909632901, 46.37495509319259], [-119.13770946585252, 46.37823839381351], [-119.12400433782886, 46.382820262579116], [-119.11516864224036, 46.38508691734914], [-119.1102992098052, 46.38676579856239], [-119.09659408178155, 46.390124313251945], [-119.08288895375789, 46.39210449088688], [-119.06918382573423, 46.392763035806], [-119.05547869771057, 46.391946928641666], [-119.04177356968691, 46.38921586735886], [-119.0308031562245, 46.38508691734914], [-119.02806844166325, 46.383874762419254], [-119.01460463648716, 46.37495509319259], [-119.01436331363959, 46.37472563294426], [-119.00536888235322, 46.36482326903604], [-119.00065818561593, 46.35517337273151], [-119.00042007678496, 46.354691444879485], [-118.9978072227763, 46.34455962072293], [-118.99787951386132, 46.33442779656638], [-119.00065818561593, 46.32488324580569], [-119.00079725743431, 46.32429597240983], [-119.0062084650114, 46.314164148253276], [-119.01436331363959, 46.306173735920936], [-119.01645441621537, 46.304032324096724], [-119.02806844166325, 46.29649223683097], [-119.03232909510696, 46.29390049994017], [-119.04177356968691, 46.28950633138651], [-119.05547869771057, 46.283952565499575], [-119.05597347553488, 46.28376867578362], [-119.06918382573423, 46.278835825872264], [-119.08288895375789, 46.274597022038144], [-119.08678835125683, 46.27363685162707], [-119.09659408178155, 46.27053787443255], [-119.1102992098052, 46.26724351465015], [-119.12400433782886, 46.264975614526236], [-119.13770946585252, 46.26373205572955], [-119.15141459387618, 46.26361972271951], [-119.16511972189984, 46.264911717811465], [-119.1788248499235, 46.26809071092943], [-119.19203654356116, 46.27363685162707], [-119.19252997794716, 46.27389466480953], [-119.20623510597082, 46.28352794366084], [-119.20651736417547, 46.28376867578362] ], [ [-114.6754071585276, 42.73763022099034], [-114.68084402142158, 42.74776204514689], [-114.68032206747762, 42.757893869303444], [-114.67456536819188, 42.76802569346], [-114.66983773013966, 42.77386022002639], [-114.66391192473634, 42.77815751761655], [-114.656132602116, 42.78538671861156], [-114.65270476544629, 42.7882893417731], [-114.64242747409234, 42.79736221119483], [-114.64106091255924, 42.79842116592965], [-114.62872234606868, 42.80627410070958], [-114.62294571467423, 42.808552990086206], [-114.61501721804503, 42.8117838697774], [-114.60131209002137, 42.814910837870194], [-114.58760696199771, 42.81671987760703], [-114.57850331086479, 42.81868481424276], [-114.57390183397405, 42.820472178355146], [-114.56605361458872, 42.82881663839931], [-114.56019670595039, 42.83552906750955], [-114.55803136239163, 42.83894846255586], [-114.54804236187591, 42.849080286712415], [-114.54649157792673, 42.85025229089967], [-114.53278644990307, 42.85883559248218], [-114.5318849099357, 42.85921211086897], [-114.51908132187941, 42.86392297248886], [-114.50537619385575, 42.8663218589844], [-114.4916710658321, 42.86642859320919], [-114.47796593780843, 42.864218284260396], [-114.46442019552057, 42.85921211086897], [-114.46426080978478, 42.859146361180066], [-114.45055568176112, 42.84984444906864], [-114.44973965279343, 42.849080286712415], [-114.44197657322543, 42.83894846255586], [-114.43832514256425, 42.82881663839931], [-114.43804174125408, 42.81868481424276], [-114.44101201214045, 42.808552990086206], [-114.44791224277154, 42.79842116592965], [-114.45055568176112, 42.795995007235376], [-114.4608014508113, 42.7882893417731], [-114.46426080978478, 42.78637484155087], [-114.47796593780843, 42.78113268918405], [-114.4916710658321, 42.77852182856578], [-114.49975298115022, 42.77815751761655], [-114.50537619385575, 42.777868945465585], [-114.51159047292698, 42.77815751761655], [-114.51908132187941, 42.77855510082506], [-114.53278644990307, 42.77903557690195], [-114.53565286534872, 42.77815751761655], [-114.54649157792673, 42.77277909598936], [-114.54936787591355, 42.76802569346], [-114.55855547734683, 42.757893869303444], [-114.56019670595039, 42.75675398353134], [-114.5731399674765, 42.74776204514689], [-114.57390183397405, 42.74740786620646], [-114.58760696199771, 42.74243857964177], [-114.60131209002137, 42.73923061183476], [-114.60662081515453, 42.73763022099034], [-114.61501721804503, 42.735405929991565], [-114.62872234606868, 42.72966513166126], [-114.63557710506491, 42.72749839683379], [-114.64242747409234, 42.72636779658008], [-114.656132602116, 42.7269878289298], [-114.65779568572779, 42.72749839683379], [-114.66983773013966, 42.73322293826863], [-114.6754071585276, 42.73763022099034] ], [ [-119.52198673797385, 45.88862753367808], [-119.52796984239684, 45.898759357834635], [-119.53102582531943, 45.90889118199119], [-119.53151051653774, 45.91902300614774], [-119.52968085657031, 45.92915483030429], [-119.52555967526774, 45.939286654460844], [-119.52145305051498, 45.9454736056492], [-119.5192791277206, 45.949418478617396], [-119.51129274133892, 45.95955030277395], [-119.50774792249132, 45.963360039773384], [-119.50095160579707, 45.9696821269305], [-119.49404279446766, 45.975849781436374], [-119.48749217147954, 45.97981395108705], [-119.480337666444, 45.984725534738374], [-119.466766533474, 45.989945775243605], [-119.46663253842034, 45.99001189193104], [-119.45292741039668, 45.99314138636447], [-119.43922228237302, 45.993225432278315], [-119.42551715434936, 45.99038851250378], [-119.42438986623073, 45.989945775243605], [-119.4118120263257, 45.985200929066266], [-119.40275582038421, 45.97981395108705], [-119.39810689830205, 45.97674941936297], [-119.38916830345248, 45.9696821269305], [-119.38440177027839, 45.9649276747882], [-119.37896913304607, 45.95955030277395], [-119.37151004440781, 45.949418478617396], [-119.37069664225473, 45.94776271014299], [-119.36565781884259, 45.939286654460844], [-119.36210491648102, 45.92915483030429], [-119.3606386515469, 45.91902300614774], [-119.36118856576408, 45.90889118199119], [-119.36399222422867, 45.898759357834635], [-119.3695660585756, 45.88862753367808], [-119.37069664225473, 45.8871360043552], [-119.37832117196137, 45.87849570952153], [-119.38440177027839, 45.87340364075518], [-119.39234022729359, 45.86836388536498], [-119.39810689830205, 45.86516439860227], [-119.4118120263257, 45.85992096988507], [-119.41926157537277, 45.858232061208426], [-119.42551715434936, 45.856759454495084], [-119.43922228237302, 45.85525071992399], [-119.45292741039668, 45.85542407983477], [-119.46663253842034, 45.85729931403405], [-119.47005099098823, 45.858232061208426], [-119.480337666444, 45.86066701141747], [-119.49404279446766, 45.86621000386913], [-119.49766367823727, 45.86836388536498], [-119.50774792249132, 45.87446084132791], [-119.51243535425193, 45.87849570952153], [-119.52145305051498, 45.88791027876347], [-119.52198673797385, 45.88862753367808] ], [ [-114.19234259669732, 42.47420279291998], [-114.19094967444937, 42.484334617076534], [-114.1901582493116, 42.48560782976055], [-114.18388661003908, 42.49446644123309], [-114.17645312128793, 42.50266108788966], [-114.17470398938855, 42.50459826538964], [-114.16700594827194, 42.51473008954619], [-114.16274799326428, 42.51821672246781], [-114.1519341581101, 42.52486191370274], [-114.14904286524062, 42.52621034442768], [-114.13533773721696, 42.52798461072985], [-114.1216326091933, 42.52602981276713], [-114.11746828752177, 42.52486191370274], [-114.10792748116964, 42.519180466806425], [-114.1001695683569, 42.51473008954619], [-114.09422235314598, 42.5080621276399], [-114.08886253220062, 42.50459826538964], [-114.08051722512232, 42.498332883087365], [-114.07129396803965, 42.49446644123309], [-114.06681209709866, 42.49278791833002], [-114.053106969075, 42.488261734625496], [-114.0425321922702, 42.484334617076534], [-114.03940184105134, 42.48291906671911], [-114.02569671302768, 42.475712702616065], [-114.02290642193726, 42.47420279291998], [-114.01292381681989, 42.46407096876343], [-114.01199158500403, 42.46189984052614], [-114.00773470873581, 42.45393914460688], [-114.00684735279653, 42.443807320450325], [-114.00924416056624, 42.43367549629377], [-114.01199158500403, 42.428997012630724], [-114.01430930388207, 42.42354367213722], [-114.02270130676342, 42.41341184798067], [-114.02569671302768, 42.411085436591236], [-114.03632130252937, 42.40328002382412], [-114.03940184105134, 42.40166217193376], [-114.053106969075, 42.395892909691796], [-114.06467932406446, 42.393148199667564], [-114.06681209709866, 42.39269085928237], [-114.08051722512232, 42.39149625228385], [-114.09422235314598, 42.39240109007032], [-114.09743329162798, 42.393148199667564], [-114.10792748116964, 42.395322217762704], [-114.1216326091933, 42.400871744915825], [-114.12556532543834, 42.40328002382412], [-114.13533773721696, 42.41006652894923], [-114.13906207916656, 42.41341184798067], [-114.14809697459667, 42.42354367213722], [-114.14904286524062, 42.42488348890542], [-114.15601779300825, 42.43367549629377], [-114.16274799326428, 42.43996725377015], [-114.16681684015722, 42.443807320450325], [-114.17645312128793, 42.45007252063551], [-114.18020679623451, 42.45393914460688], [-114.18898546757872, 42.46407096876343], [-114.1901582493116, 42.46674381055032], [-114.19234259669732, 42.47420279291998] ], [ [-118.82320378890073, 46.212845906687754], [-118.82951521411147, 46.222977730844306], [-118.8325791685314, 46.23310955500086], [-118.83294148364119, 46.24324137915741], [-118.83072022960346, 46.25337320331396], [-118.8255196702342, 46.263505027470515], [-118.82249152130836, 46.26766771077412], [-118.8160945065367, 46.27363685162707], [-118.8087863932847, 46.27900381616626], [-118.79508126526105, 46.28179819698006], [-118.78137613723739, 46.28125752012723], [-118.76767100921373, 46.279167488938576], [-118.75396588119007, 46.27583084443901], [-118.74776487444937, 46.27363685162707], [-118.74026075316641, 46.27125601090615], [-118.72655562514275, 46.26561871463291], [-118.72158083280944, 46.263505027470515], [-118.71285049711909, 46.25777827821854], [-118.70542211633946, 46.25337320331396], [-118.69914536909543, 46.24628114217386], [-118.69578849893895, 46.24324137915741], [-118.69088717430486, 46.23310955500086], [-118.69024887347939, 46.222977730844306], [-118.69366443069215, 46.212845906687754], [-118.69914536909543, 46.20563859527237], [-118.70193880367417, 46.2027140825312], [-118.71285049711909, 46.19499794462908], [-118.71804500005098, 46.19258225837465], [-118.72655562514275, 46.18914550458026], [-118.74026075316641, 46.185956409232375], [-118.75396588119007, 46.184808560913346], [-118.76767100921373, 46.185431903987215], [-118.78137613723739, 46.18788313079603], [-118.79508126526105, 46.19251853598447], [-118.79521519549566, 46.19258225837465], [-118.8087863932847, 46.199812603114914], [-118.81277371140655, 46.2027140825312], [-118.82249152130836, 46.2120406758941], [-118.82320378890073, 46.212845906687754] ], [ [-118.86919057387004, 46.33442779656638], [-118.87194738110858, 46.34455962072293], [-118.8718259954862, 46.354691444879485], [-118.86877728037545, 46.36482326903604], [-118.86360690537934, 46.3733431432168], [-118.86237539848379, 46.37495509319259], [-118.85095584140262, 46.38508691734914], [-118.84990177735568, 46.38585173483328], [-118.83619664933202, 46.39265588481236], [-118.82666529678893, 46.395218741505694], [-118.82249152130836, 46.39636513292292], [-118.8087863932847, 46.39775079398662], [-118.79508126526105, 46.39683631083105], [-118.78835160297373, 46.395218741505694], [-118.78137613723739, 46.39341046581431], [-118.76767100921373, 46.38625338069236], [-118.76617422919874, 46.38508691734914], [-118.75748085555205, 46.37495509319259], [-118.75432058454523, 46.36482326903604], [-118.75507902796296, 46.354691444879485], [-118.75898681061643, 46.34455962072293], [-118.76563622290442, 46.33442779656638], [-118.76767100921373, 46.331957803687565], [-118.77511481820301, 46.32429597240983], [-118.78137613723739, 46.31784783873638], [-118.78727286656975, 46.314164148253276], [-118.79508126526105, 46.307496725030504], [-118.80498100872835, 46.304032324096724], [-118.8087863932847, 46.30132239520588], [-118.82249152130836, 46.3005089197161], [-118.83314660295486, 46.304032324096724], [-118.83619664933202, 46.30464240067634], [-118.84990177735568, 46.31157627205566], [-118.85288079118818, 46.314164148253276], [-118.86337950795387, 46.32429597240983], [-118.86360690537934, 46.32460199456934], [-118.86919057387004, 46.33442779656638] ], [ [-119.80952690107762, 45.898759357834635], [-119.80976026823446, 45.90889118199119], [-119.80926073901182, 45.9122474294388], [-119.80768221957025, 45.91902300614774], [-119.80239387819864, 45.92915483030429], [-119.79555561098816, 45.93696498523033], [-119.79158652524883, 45.939286654460844], [-119.7818504829645, 45.94458124452079], [-119.76814535494084, 45.9476527483273], [-119.75444022691718, 45.947909037899535], [-119.74073509889352, 45.94567132002085], [-119.72702997086986, 45.94039975228642], [-119.72513333577305, 45.939286654460844], [-119.7133248428462, 45.930825735526504], [-119.71162974213242, 45.92915483030429], [-119.70409100060746, 45.91902300614774], [-119.70006888464559, 45.90889118199119], [-119.69961971482255, 45.9052957711407], [-119.69883331038196, 45.898759357834635], [-119.69961971482255, 45.893041686437996], [-119.70024134455187, 45.88862753367808], [-119.70459818423357, 45.87849570952153], [-119.7125663226626, 45.86836388536498], [-119.7133248428462, 45.86764590172117], [-119.72702997086986, 45.8583195813722], [-119.72724437867065, 45.858232061208426], [-119.74073509889352, 45.85337418140954], [-119.75444022691718, 45.851589482020906], [-119.76814535494084, 45.852681334421106], [-119.7818504829645, 45.85739785426186], [-119.7830338171326, 45.858232061208426], [-119.79555561098816, 45.86740565582375], [-119.79625101157922, 45.86836388536498], [-119.80281915314738, 45.87849570952153], [-119.80716978081553, 45.88862753367808], [-119.80926073901182, 45.8973569128517], [-119.80952690107762, 45.898759357834635] ], [ [-119.81388898284207, 47.13484190493401], [-119.8204603422537, 47.14497372909056], [-119.8197791084352, 47.15510555324711], [-119.81580152113581, 47.16523737740366], [-119.80962562669899, 47.175369201560216], [-119.80926073901182, 47.17592820013667], [-119.80510033559575, 47.18550102571677], [-119.80106790917985, 47.19563284987332], [-119.79694327798596, 47.20576467402987], [-119.79555561098816, 47.20934463177412], [-119.79069854177708, 47.215896498186424], [-119.7818504829645, 47.224707374878506], [-119.7781477285629, 47.22602832234298], [-119.76814535494084, 47.23015682072424], [-119.75444022691718, 47.230814680632975], [-119.74073509889352, 47.227483312841144], [-119.73807602443807, 47.22602832234298], [-119.72702997086986, 47.21972824253055], [-119.72333242077134, 47.215896498186424], [-119.71635995934915, 47.20576467402987], [-119.7133248428462, 47.19613891187583], [-119.71319490958037, 47.19563284987332], [-119.71229585558463, 47.18550102571677], [-119.71331527315763, 47.175369201560216], [-119.7133248428462, 47.17533526722638], [-119.71567497816068, 47.16523737740366], [-119.72051634809847, 47.15510555324711], [-119.72702997086986, 47.14768561270635], [-119.73000020938497, 47.14497372909056], [-119.74073509889352, 47.137803596393624], [-119.74765910400892, 47.13484190493401], [-119.75444022691718, 47.13188599984463], [-119.76814535494084, 47.12824938957753], [-119.7818504829645, 47.12677246415643], [-119.79555561098816, 47.127528806146074], [-119.80926073901182, 47.13191014424262], [-119.81388898284207, 47.13484190493401] ], [ [-115.28960913767195, 42.92000305580828], [-115.29654150395145, 42.93013487996483], [-115.2993854971193, 42.940266704121385], [-115.29903006968024, 42.95039852827794], [-115.29532390044983, 42.96053035243449], [-115.286931023576, 42.97066217659104], [-115.28656849120432, 42.97094983585128], [-115.27286336318066, 42.979780628657686], [-115.27040030822411, 42.98079400074759], [-115.259158235157, 42.98433081069949], [-115.24545310713334, 42.9858775385351], [-115.23174797910968, 42.98470354337131], [-115.21957527360846, 42.98079400074759], [-115.21804285108603, 42.98035862961229], [-115.20433772306237, 42.97172859902917], [-115.20342399212261, 42.97066217659104], [-115.1958691652098, 42.96053035243449], [-115.19106745361485, 42.95039852827794], [-115.19063259503871, 42.94684191335961], [-115.1900890051021, 42.940266704121385], [-115.19063259503871, 42.9367344718118], [-115.19235234188196, 42.93013487996483], [-115.19846228596387, 42.92000305580828], [-115.20433772306237, 42.91331044760238], [-115.21016932331915, 42.90987123165173], [-115.21804285108603, 42.9053665770045], [-115.23174797910968, 42.90180443122036], [-115.24545310713334, 42.90112925572532], [-115.259158235157, 42.903067891760706], [-115.27286336318066, 42.90794184645064], [-115.27655914081821, 42.90987123165173], [-115.28656849120432, 42.91728607794983], [-115.28960913767195, 42.92000305580828] ], [ [-119.79770707100339, 46.69917346620226], [-119.8042468392743, 46.70930529035881], [-119.80773835713786, 46.719437114515365], [-119.80844945794264, 46.72956893867192], [-119.80609790621041, 46.73970076282847], [-119.79967413960044, 46.74983258698502], [-119.79555561098816, 46.75370840012432], [-119.78393779165764, 46.759964411141574], [-119.7818504829645, 46.76084828109439], [-119.76814535494084, 46.76360597598368], [-119.75444022691718, 46.76358819519753], [-119.74073509889352, 46.7611483253934], [-119.73726329385084, 46.759964411141574], [-119.72702997086986, 46.75571873559882], [-119.71747284710708, 46.74983258698502], [-119.7133248428462, 46.74602690619728], [-119.7075121156021, 46.73970076282847], [-119.70253183029958, 46.72956893867192], [-119.7013782140353, 46.719437114515365], [-119.70393272671971, 46.70930529035881], [-119.7107869195035, 46.69917346620226], [-119.7133248428462, 46.696742697764634], [-119.72480912432832, 46.68904164204571], [-119.72702997086986, 46.687859932772284], [-119.74073509889352, 46.68339922121535], [-119.75444022691718, 46.68191114168961], [-119.76814535494084, 46.68306568321488], [-119.7818504829645, 46.687427146369316], [-119.784464438647, 46.68904164204571], [-119.79555561098816, 46.696647398873466], [-119.79770707100339, 46.69917346620226] ], [ [-116.1525245166627, 42.96053035243449], [-116.15653832208801, 42.97066217659104], [-116.15672857570067, 42.98079400074759], [-116.15324761164116, 42.990925824904146], [-116.14999155669484, 42.995409302514226], [-116.14527525320372, 43.0010576490607], [-116.13628642867118, 43.0076001844766], [-116.12864424240999, 43.01118947321725], [-116.12258130064752, 43.013433109016894], [-116.10887617262387, 43.01567446630763], [-116.0951710446002, 43.01482077197076], [-116.08452716222556, 43.01118947321725], [-116.08146591657655, 43.01024374740555], [-116.06962666779528, 43.0010576490607], [-116.06776078855289, 42.999277076961995], [-116.0635884724299, 42.990925824904146], [-116.06179589674483, 42.98079400074759], [-116.06327360349424, 42.97066217659104], [-116.06753791040222, 42.96053035243449], [-116.06776078855289, 42.96012671269586], [-116.07824500290663, 42.95039852827794], [-116.08146591657655, 42.947330756823604], [-116.0951710446002, 42.941587100465185], [-116.10501229036306, 42.940266704121385], [-116.10887617262387, 42.93956798503197], [-116.11672884985596, 42.940266704121385], [-116.12258130064752, 42.94085020318215], [-116.13628642867118, 42.94585515117262], [-116.14336752636886, 42.95039852827794], [-116.14999155669484, 42.95735004486889], [-116.1525245166627, 42.96053035243449] ], [ [-119.37426807234291, 46.93220542180296], [-119.3758994825046, 46.942337245959514], [-119.37182637507536, 46.95246907011607], [-119.37069664225473, 46.95386184880706], [-119.36080754365874, 46.96260089427262], [-119.35699151423107, 46.96502241049267], [-119.34328638620741, 46.97020540699658], [-119.32958125818375, 46.972195680580654], [-119.31587613016009, 46.972057442745104], [-119.30217100213643, 46.96975436163782], [-119.28846587411277, 46.96432803075368], [-119.28550461047222, 46.96260089427262], [-119.27476074608911, 46.95392607436571], [-119.27330737918909, 46.95246907011607], [-119.2673248901495, 46.942337245959514], [-119.26633493107667, 46.93220542180296], [-119.27014240491097, 46.92207359764641], [-119.27476074608911, 46.91771585944957], [-119.28066941553358, 46.91194177348986], [-119.28846587411277, 46.90835545424265], [-119.30217100213643, 46.904467780586536], [-119.31587613016009, 46.903521093047964], [-119.32958125818375, 46.90498765988595], [-119.34328638620741, 46.90868747747235], [-119.35158845010052, 46.91194177348986], [-119.35699151423107, 46.91555837506191], [-119.36700285268249, 46.92207359764641], [-119.37069664225473, 46.92822647750051], [-119.37426807234291, 46.93220542180296] ], [ [-114.25252686644069, 42.54512556201585], [-114.25466607903736, 42.5552573861724], [-114.25368149531975, 42.56538921032895], [-114.24934617198836, 42.575521034485504], [-114.24497876140623, 42.58107112908261], [-114.24045423558599, 42.58565285864206], [-114.23127363338257, 42.59206069515737], [-114.22000801598543, 42.59578468279861], [-114.21756850535891, 42.59662133587991], [-114.20386337733525, 42.59802219174787], [-114.19024492932499, 42.59578468279861], [-114.1901582493116, 42.59577421229065], [-114.17645312128793, 42.590286049427114], [-114.17082398436708, 42.58565285864206], [-114.16301500767422, 42.575521034485504], [-114.16274799326428, 42.574617434056165], [-114.16038922181114, 42.56538921032895], [-114.16267046757666, 42.5552573861724], [-114.16274799326428, 42.555167316967044], [-114.16850660562372, 42.54512556201585], [-114.17645312128793, 42.53852437122962], [-114.1813590476809, 42.534993737859295], [-114.1901582493116, 42.529874839483455], [-114.20386337733525, 42.52601517699979], [-114.21756850535891, 42.525210558942646], [-114.23127363338257, 42.52748559713975], [-114.24456862951384, 42.534993737859295], [-114.24497876140623, 42.53550753730769], [-114.25252686644069, 42.54512556201585] ], [ [-119.0694098540011, 46.2027140825312], [-119.07442853976066, 46.212845906687754], [-119.07483721697521, 46.222977730844306], [-119.07072333818563, 46.23310955500086], [-119.06918382573423, 46.23470981282989], [-119.06010762052745, 46.24324137915741], [-119.05547869771057, 46.24582061441459], [-119.04177356968691, 46.251287560093914], [-119.0309274481411, 46.25337320331396], [-119.02806844166325, 46.25379069717523], [-119.01436331363959, 46.25354154857322], [-119.01325065725123, 46.25337320331396], [-119.00065818561593, 46.25028802645847], [-118.98695305759227, 46.24410778251529], [-118.9853538129152, 46.24324137915741], [-118.97537615289072, 46.23310955500086], [-118.97324792956861, 46.22725797318208], [-118.97141153588778, 46.222977730844306], [-118.97214466033554, 46.212845906687754], [-118.97324792956861, 46.210659069781485], [-118.9776031370853, 46.2027140825312], [-118.98695305759227, 46.1945556542409], [-118.99023931102542, 46.19258225837465], [-119.00065818561593, 46.18790925710291], [-119.01436331363959, 46.18486380880579], [-119.02806844166325, 46.18442041248771], [-119.04177356968691, 46.186446217660034], [-119.05547869771057, 46.19160571310298], [-119.0570259373315, 46.19258225837465], [-119.06918382573423, 46.20243744558507], [-119.0694098540011, 46.2027140825312] ], [ [-116.91979099857913, 43.629230746766936], [-116.92011287463305, 43.63936257092349], [-116.91747872601975, 43.64250943466732], [-116.9073866519389, 43.64949439508004], [-116.90377359799609, 43.65094704354287], [-116.89006846997243, 43.65070806930271], [-116.88663535666916, 43.64949439508004], [-116.87636334194877, 43.64234851622635], [-116.87236121191417, 43.63936257092349], [-116.86474375027372, 43.629230746766936], [-116.86265821392512, 43.62831003419995], [-116.84895308590146, 43.62801392124203], [-116.8352479578778, 43.62586590205887], [-116.82154282985414, 43.623205695492835], [-116.81189458215535, 43.629230746766936], [-116.80783770183048, 43.630645286715804], [-116.79413257380682, 43.63495342241168], [-116.78042744578316, 43.634165839286034], [-116.77112921482245, 43.629230746766936], [-116.7667223177595, 43.62295852717475], [-116.76512213059915, 43.619098922610384], [-116.7667223177595, 43.61578988817778], [-116.76990342896437, 43.60896709845383], [-116.78042744578316, 43.60054363050152], [-116.7884685896865, 43.59883527429728], [-116.79413257380682, 43.59716826177433], [-116.80783770183048, 43.59849777264979], [-116.82154282985414, 43.595355206763635], [-116.83165022227885, 43.58870345014073], [-116.8352479578778, 43.58727318786356], [-116.84895308590146, 43.58475252547099], [-116.86265821392512, 43.58718230467157], [-116.86567770529047, 43.58870345014073], [-116.87636334194877, 43.597446283416986], [-116.87773425682845, 43.59883527429728], [-116.88271658602797, 43.60896709845383], [-116.89006846997243, 43.614359105069276], [-116.90377359799609, 43.61703437030588], [-116.90734739827474, 43.619098922610384], [-116.91747872601975, 43.62605712514941], [-116.91979099857913, 43.629230746766936] ], [ [-119.63749948223938, 45.97981395108705], [-119.6401640321529, 45.989945775243605], [-119.63849887655938, 46.00007759940016], [-119.63200960728108, 46.01020942355671], [-119.63109407470425, 46.011047319981536], [-119.61843596242562, 46.02034124771326], [-119.61738894668059, 46.02087182101205], [-119.60368381865693, 46.025647559408654], [-119.58997869063327, 46.027424900179284], [-119.57627356260961, 46.02657443634523], [-119.56256843458596, 46.022749487043896], [-119.55837670665511, 46.02034124771326], [-119.5488633065623, 46.014214928377775], [-119.54543468277234, 46.01020942355671], [-119.54022722486098, 46.00007759940016], [-119.53966647347282, 45.989945775243605], [-119.54361867458162, 45.97981395108705], [-119.5488633065623, 45.97314266418874], [-119.55298039187768, 45.9696821269305], [-119.56256843458596, 45.963725146034385], [-119.57457886021948, 45.95955030277395], [-119.57627356260961, 45.9589631390652], [-119.58997869063327, 45.95750821611395], [-119.60368381865693, 45.95861260316237], [-119.60774169684235, 45.95955030277395], [-119.61738894668059, 45.96294142489826], [-119.62900655081093, 45.9696821269305], [-119.63109407470425, 45.97209123937002], [-119.63749948223938, 45.97981395108705] ], [ [-115.98848877152722, 42.87947575918207], [-115.99476189033571, 42.88960758333862], [-115.99596118763158, 42.899739407495176], [-115.99280449700314, 42.90987123165173], [-115.98553002041093, 42.91865302337168], [-115.98447647685184, 42.92000305580828], [-115.97182489238727, 42.92789235428828], [-115.96637349634861, 42.93013487996483], [-115.95811976436362, 42.93287179084623], [-115.94441463633996, 42.9344746000338], [-115.9307095083163, 42.93321612889193], [-115.92036495471454, 42.93013487996483], [-115.91700438029264, 42.928182754800446], [-115.90611306021752, 42.92000305580828], [-115.90329925226898, 42.914649513192614], [-115.90050207619001, 42.90987123165173], [-115.89958356751085, 42.899739407495176], [-115.90293937704317, 42.88960758333862], [-115.90329925226898, 42.88907510721651], [-115.91100051388324, 42.87947575918207], [-115.91700438029264, 42.87484963909873], [-115.92840609750611, 42.86934393502552], [-115.9307095083163, 42.86839353142684], [-115.94441463633996, 42.86549332607854], [-115.95811976436362, 42.865573882894374], [-115.97182489238727, 42.86886468176215], [-115.97278867872441, 42.86934393502552], [-115.98553002041093, 42.876493408727875], [-115.98848877152722, 42.87947575918207] ], [ [-114.39745481344721, 42.47420279291998], [-114.40352343050343, 42.484334617076534], [-114.40551489661038, 42.49446644123309], [-114.40197833162159, 42.50459826538964], [-114.39573516966648, 42.509572837743846], [-114.38981755691887, 42.51473008954619], [-114.38203004164282, 42.51757144231718], [-114.36832491361916, 42.52043946363399], [-114.3546197855955, 42.520308104596616], [-114.34091465757184, 42.51708693217103], [-114.3346344728282, 42.51473008954619], [-114.32720952954818, 42.50942067408749], [-114.32078568752375, 42.50459826538964], [-114.31724979957939, 42.49446644123309], [-114.31946616555317, 42.484334617076534], [-114.3270628142764, 42.47420279291998], [-114.32720952954818, 42.47404772736523], [-114.34091465757184, 42.4653861627277], [-114.34705265574587, 42.46407096876343], [-114.3546197855955, 42.46192967923083], [-114.36832491361916, 42.461905759247756], [-114.38103836878504, 42.46407096876343], [-114.38203004164282, 42.464616013975544], [-114.39573516966648, 42.4724137271096], [-114.39745481344721, 42.47420279291998] ], [ [-119.71480986821824, 47.06391913583814], [-119.71810774335665, 47.07405095999469], [-119.71527832754181, 47.084182784151245], [-119.7133248428462, 47.08633029847885], [-119.70431706072739, 47.0943146083078], [-119.69961971482255, 47.09671807106793], [-119.68591458679889, 47.10050581583324], [-119.67220945877523, 47.100774096810824], [-119.65850433075157, 47.097493924939954], [-119.652059742916, 47.0943146083078], [-119.64479920272791, 47.08740772987774], [-119.64216933471022, 47.084182784151245], [-119.64058970122774, 47.07405095999469], [-119.64479920272791, 47.064870721556055], [-119.645337448137, 47.06391913583814], [-119.65850433075157, 47.054150416215634], [-119.65950158689054, 47.05378731168159], [-119.67220945877523, 47.050121228266384], [-119.68591458679889, 47.049675571398325], [-119.69961971482255, 47.05274421996783], [-119.70182428439684, 47.05378731168159], [-119.7133248428462, 47.06222545595011], [-119.71480986821824, 47.06391913583814] ], [ [-116.70435596655818, 43.42659426363589], [-116.70518131108057, 43.436726087792444], [-116.70020432284993, 43.446857911948996], [-116.6981966776412, 43.44881723932635], [-116.68587320376314, 43.45698973610555], [-116.68449154961755, 43.45765609363487], [-116.67078642159389, 43.46061834642083], [-116.65708129357023, 43.459538298314584], [-116.65047807177724, 43.45698973610555], [-116.64337616554657, 43.45290312446669], [-116.63780742604493, 43.446857911948996], [-116.63588882081916, 43.436726087792444], [-116.64086308109592, 43.42659426363589], [-116.64337616554657, 43.42448408910138], [-116.65400020631242, 43.41646243947934], [-116.65708129357023, 43.4144569508934], [-116.67078642159389, 43.41040137030042], [-116.68449154961755, 43.41107730755123], [-116.69630058642706, 43.41646243947934], [-116.6981966776412, 43.41813859648113], [-116.70435596655818, 43.42659426363589] ], [ [-119.39813626530923, 46.87141447686365], [-119.39810689830205, 46.87150916720026], [-119.39491283910625, 46.8815463010202], [-119.38440177027839, 46.88863913605449], [-119.37378169502863, 46.89167812517675], [-119.37069664225473, 46.89206443339062], [-119.36712308989274, 46.89167812517675], [-119.35699151423107, 46.88994523726026], [-119.34328638620741, 46.88274902369716], [-119.34145086205854, 46.8815463010202], [-119.3370696256059, 46.87141447686365], [-119.34060727241972, 46.8612826527071], [-119.34328638620741, 46.85846969942566], [-119.35699151423107, 46.851825871997484], [-119.367269713474, 46.851150828550544], [-119.37069664225473, 46.850918240983546], [-119.37165143769445, 46.851150828550544], [-119.38440177027839, 46.85471856778873], [-119.39320805511109, 46.8612826527071], [-119.39810689830205, 46.871331715844306], [-119.39813626530923, 46.87141447686365] ], [ [-117.04082487823268, 43.87016729713071], [-117.04596213286045, 43.87239452652419], [-117.05357610415177, 43.88252635068074], [-117.05049536930119, 43.892658174837294], [-117.04082487823268, 43.90018262651614], [-117.02711975020902, 43.901499117695664], [-117.01341462218537, 43.895703390937186], [-117.01056858687421, 43.892658174837294], [-117.00772110014772, 43.88252635068074], [-117.01341462218537, 43.87591532043887], [-117.01642617479828, 43.87239452652419], [-117.02711975020902, 43.86901154136752], [-117.04082487823268, 43.87016729713071] ], [ [-119.15208878699812, 47.15510555324711], [-119.15141459387618, 47.156256444823576], [-119.14275108776408, 47.16523737740366], [-119.13770946585252, 47.16778736988145], [-119.12400433782886, 47.169188605555675], [-119.113974248409, 47.16523737740366], [-119.1102992098052, 47.16342940824575], [-119.10571069330565, 47.15510555324711], [-119.10893159728488, 47.14497372909056], [-119.1102992098052, 47.144082287594415], [-119.12400433782886, 47.13760582477401], [-119.13770946585252, 47.1379189753955], [-119.15008794800421, 47.14497372909056], [-119.15141459387618, 47.152043944840976], [-119.15208878699812, 47.15510555324711] ], [ [-114.54924106784439, 42.59578468279861], [-114.54649157792673, 42.602871327588375], [-114.53905386720075, 42.60591650695516], [-114.53278644990307, 42.60813127713039], [-114.52681977190755, 42.60591650695516], [-114.51988324649038, 42.59578468279861], [-114.52961584539119, 42.58565285864206], [-114.53278644990307, 42.5843921218424], [-114.53765489110998, 42.58565285864206], [-114.54649157792673, 42.588015489009045], [-114.54924106784439, 42.59578468279861] ], [ [-117.01565680044743, 43.73054898833246], [-117.01341462218537, 43.73303148147697], [-117.0020559164116, 43.74068081248901], [-116.9997094941617, 43.741886484381425], [-116.98600436613805, 43.742819203501895], [-116.98258119065355, 43.74068081248901], [-116.98600436613805, 43.7318253418769], [-116.98766106698761, 43.73054898833246], [-116.9997094941617, 43.723943070939185], [-117.01341462218537, 43.72518343823455], [-117.01565680044743, 43.73054898833246] ], [ [-117.03206776048202, 43.983844592246264], [-117.02711975020902, 43.991385491861095], [-117.02033710584654, 43.993976416402816], [-117.01341462218537, 43.99625727851077], [-116.9997094941617, 43.99634083435541], [-116.99679720215113, 43.993976416402816], [-116.99656424100576, 43.983844592246264], [-116.9997094941617, 43.98304879284017], [-117.01341462218537, 43.98302262883379], [-117.02711975020902, 43.9814286632918], [-117.03206776048202, 43.983844592246264] ], [ [-117.10935051835098, 43.76434731869599], [-117.11046016516616, 43.77107628495867], [-117.10935051835098, 43.77251286353452], [-117.10221391453635, 43.77107628495867], [-117.09564539032732, 43.767867135681634], [-117.08895199149971, 43.760944460802115], [-117.09119260837323, 43.75081263664556], [-117.09564539032732, 43.74525859685289], [-117.10721084426426, 43.75081263664556], [-117.1065683900647, 43.760944460802115], [-117.10935051835098, 43.76434731869599] ], [ [-116.90822682398728, 43.77107628495867], [-116.906411839171, 43.78120810911522], [-116.90377359799609, 43.783026837576344], [-116.89006846997243, 43.78256783244028], [-116.8877959202694, 43.78120810911522], [-116.88595667328309, 43.77107628495867], [-116.89006846997243, 43.76787491342765], [-116.90377359799609, 43.76725003619739], [-116.90822682398728, 43.77107628495867] ], [ [-116.97335427285603, 43.669758043393145], [-116.98029832251707, 43.6798898675497], [-116.97229923811439, 43.68508361784762], [-116.95859411009073, 43.68306522449329], [-116.95331414658749, 43.6798898675497], [-116.95859411009073, 43.67080460892149], [-116.96468029283194, 43.669758043393145], [-116.97229923811439, 43.6690999757447], [-116.97335427285603, 43.669758043393145] ], [ [-117.12305564637464, 43.80774120479451], [-117.126170744168, 43.811603581584876], [-117.12305564637464, 43.8135207914779], [-117.10998861854797, 43.811603581584876], [-117.12305564637464, 43.80774120479451] ], [ [-117.03613675631539, 43.88252635068074], [-117.02711975020902, 43.88426978654155], [-117.02540538487578, 43.88252635068074], [-117.02711975020902, 43.88057682883853], [-117.03613675631539, 43.88252635068074] ] ] ] } }, { "type": "Feature", "properties": { "stroke": "#0000ff", "stroke-width": 3, "stroke-opacity": 1, "fill": "#0000ff", "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.18831927404979, 44.030028579646306], [-117.17430259047141, 44.0503397169731], [-117.1555607706998, 44.06856989129167], [-117.13267142393586, 44.084159415030065], [-117.10633998313425, 44.0966300798537], [-116.93475998313426, 44.16312134330424], [-116.90390792911025, 44.17252064368216], [-116.87115874581731, 44.17764492399985], [-116.83765236160744, 44.178316943325235], [-116.80455506136143, 44.17451346096602], [-116.77301889063061, 44.16636602460454], [-116.74414155541912, 44.15415650782037], [-116.718928213408, 44.13830753625746], [-116.69825648658713, 44.119368102880635], [-116.54778348658715, 43.95101745855099], [-116.53323653904495, 43.93109389154936], [-116.52370589955504, 43.90964883730375], [-116.50492289955501, 43.849864536541844], [-116.50148753791605, 43.83490799564131], [-116.43944453791603, 43.41135161417976], [-116.43927575177105, 43.385031874270105], [-116.4463765506012, 43.35921139047269], [-116.46045828155836, 43.33494109005902], [-116.48094851161846, 43.313210010145426], [-116.50701429741726, 43.29490470126345], [-116.53759604502879, 43.28077267891232], [-116.57145058326049, 43.27139149081336], [-116.60720169950345, 43.26714474510305], [-116.64339608381675, 43.268206153413395], [-116.6785624070769, 43.274532295880086], [-116.71127113162042, 43.28586443008807], [-116.7401926230323, 43.301739263359636], [-116.90191262303232, 43.410652293483516], [-116.91245563737971, 43.41836257414538], [-117.2289646373797, 43.66942845917556], [-117.23934111816067, 43.67842459985051], [-117.25943411816067, 43.697529650437545], [-117.27980251604193, 43.722111404969176], [-117.29221784328412, 43.74931172932149], [-117.29607572181801, 43.777803874226485], [-117.29549672181803, 43.80978996732102], [-117.29218178569649, 43.83293911240257], [-117.28318327404982, 43.85527900760285], [-117.18831927404979, 44.030028579646306] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/in/multilinestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4.8618364334106445, 45.784404601286774], [4.86544132232666, 45.78434474634739], [4.88217830657959, 45.78745711798122], [4.886684417724609, 45.78691845071048], [4.888958930969238, 45.78494329284938], [4.876770973205566, 45.782100139729486], [4.874668121337891, 45.77934663219167], [4.865655899047851, 45.77904732970034], [4.859733581542969, 45.77976565298041], [4.860033988952637, 45.78213006841216], [4.8618364334106445, 45.784404601286774] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4.86544132232666, 45.78434474634739], [4.88217830657959, 45.78745711798122], [4.8838090896606445, 45.79044961914028], [4.880805015563965, 45.79257419743464], [4.875955581665039, 45.78808555655138], [4.869647026062012, 45.78742719215828], [4.863724708557129, 45.78575132043314], [4.860978126525879, 45.78572139369446], [4.860033988952637, 45.78213006841216], [4.8618364334106445, 45.784404601286774], [4.8618364334106445, 45.78503307427041], [4.86544132232666, 45.78434474634739] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/in/multipoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4.845099449157715, 45.77793989651294], [4.849648475646973, 45.78245928286134], [4.855012893676758, 45.78446445616189], [4.859991073608398, 45.784614093068555], [4.858188629150391, 45.77288134093866], [4.854154586791992, 45.77249220227275], [4.845099449157715, 45.77793989651294] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4.845099449157715, 45.77793989651294], [4.840679168701172, 45.771743851052996], [4.848017692565918, 45.767133786097716], [4.854154586791992, 45.77249220227275], [4.846601486206055, 45.771983324535846], [4.845099449157715, 45.77793989651294] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/in/multipolygon-input.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [2.3273849487304688, 48.87148983809234], [2.3160552978515625, 48.87307055723444], [2.3150253295898438, 48.85183958955198], [2.3493576049804688, 48.845965604118284], [2.3500442504882812, 48.85613168160397], [2.3500442504882812, 48.8615527456014], [2.3273849487304688, 48.87148983809234] ] ], [ [ [2.3363113403320312, 48.87690923865779], [2.3514175415039062, 48.86516646209463], [2.3596572875976562, 48.873522182101965], [2.3476409912109375, 48.878489786571116], [2.3363113403320312, 48.87690923865779] ] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [2.3256683349609375, 48.87690923865779], [2.3239517211914062, 48.86787657822752], [2.3521041870117188, 48.85432452980058], [2.357940673828125, 48.8615527456014], [2.3411178588867188, 48.882102279983364], [2.3256683349609375, 48.87690923865779] ] ], [ [ [2.362060546875, 48.85229140604385], [2.3733901977539062, 48.8473212003792], [2.3733901977539062, 48.854776323867306], [2.362060546875, 48.85229140604385] ] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/in/no-overlap.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [92.6806640625, 53.4357192066942], [92.6806640625, 53.51418452077113], [93.0322265625, 53.51418452077113], [93.0322265625, 53.4357192066942], [92.6806640625, 53.4357192066942] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [93.47854614257812, 53.628353173374194], [93.47854614257812, 53.74140157486066], [93.680419921875, 53.74140157486066], [93.680419921875, 53.628353173374194], [93.47854614257812, 53.628353173374194] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/in/output-multipolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [129.0234375, -27.371767300523032], [138.33984375, -27.371767300523032], [138.33984375, -22.43134015636061], [129.0234375, -22.43134015636061], [129.0234375, -27.371767300523032] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [124.23339843749999, -34.921971036163754], [143.4375, -34.95799531086791], [143.26171875, -13.154376055418515], [124.23339843749999, -12.768946439455943], [124.23339843749999, -34.921971036163754] ], [ [130.2978515625, -29.95493454965612], [130.2978515625, -18.020527657852327], [137.2412109375, -18.020527657852327], [137.2412109375, -29.95493454965612], [130.2978515625, -29.95493454965612] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/in/point.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4.845099449157715, 45.77793989651294], [4.849648475646973, 45.78245928286134], [4.855012893676758, 45.78446445616189], [4.859991073608398, 45.784614093068555], [4.858188629150391, 45.77288134093866], [4.854154586791992, 45.77249220227275], [4.845099449157715, 45.77793989651294] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4.859991073608398, 45.784614093068555], [4.86569881439209, 45.78611044004426], [4.87518310546875, 45.787906003397154], [4.880547523498535, 45.79251435126729], [4.883980751037598, 45.7903598464431], [4.8827362060546875, 45.787906003397154], [4.864926338195801, 45.78464402040167], [4.859991073608398, 45.784614093068555] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/in/skip-issue-1132-line.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [-76.13018281184321, 42.728620766896256], [-76.13060123644954, 42.728597123463544], [-76.13064415179377, 42.72858136117006], [-76.13070852481015, 42.728565598872564], [-76.13075144015438, 42.728565598872564], [-76.1307728978265, 42.72855771772231], [-76.13080508433468, 42.72854983657106], [-76.13083727084286, 42.72854983657106], [-76.1309016438592, 42.72854983657106], [-76.13093383036738, 42.72854195541882], [-76.13094455920346, 42.72854195541882], [-76.13096601687558, 42.72853407426555], [-76.1309874745477, 42.72853407426555], [-76.13105184756404, 42.72853407426555], [-76.13168484889155, 42.728376450990226], [-76.13169557772763, 42.728376450990226], [-76.13169557772763, 42.728376450990226], [-76.13170630656367, 42.72836068864066], [-76.13171703539975, 42.728352807464404], [-76.13173849307186, 42.728329163929544], [-76.13173849307186, 42.728329163929544], [-76.13174922190792, 42.72831340156796], [-76.13200671397334, 42.72798239104955], [-76.13204962931759, 42.727903578761016], [-76.13204962931759, 42.727887816291286], [-76.13216764651425, 42.72746222809471], [-76.13216764651425, 42.727430702926966], [-76.13218910418637, 42.72737553384482], [-76.13218910418637, 42.727344008633], [-76.13218910418637, 42.7273282460211], [-76.1322320195306, 42.72697358619405], [-76.1322320195306, 42.726910535345894], [-76.1322320195306, 42.72688689126127], [-76.1322320195306, 42.72688689126127], [-76.13222129069455, 42.726642568526074], [-76.13222129069455, 42.726642568526074], [-76.13219983302243, 42.72652434750228], [-76.13218910418637, 42.726516466092676], [-76.13218910418637, 42.726484940444266], [-76.1321783753503, 42.72647705902966], [-76.1321783753503, 42.72647705902966], [-76.1321783753503, 42.72646129619747], [-76.13204962931759, 42.72615392016877], [-76.13203890048152, 42.7261460387121], [-76.13203890048152, 42.72613027579578], [-76.13202817164547, 42.7261223943361], [-76.1320174428094, 42.726114512875455], [-76.13178140841609, 42.72585442411173], [-76.13178140841609, 42.72585442411173], [-76.13173849307186, 42.7258307796246], [-76.13172776423579, 42.725822898126864], [-76.13125569544917, 42.72568891251251], [-76.13125569544917, 42.72568891251251], [-76.13120205126889, 42.72568891251251], [-76.13120205126889, 42.72568891251251], [-76.13118059359677, 42.72568891251251], [-76.13086945735103, 42.7257283200762], [-76.13086945735103, 42.7257283200762], [-76.13084799967892, 42.72573620158593], [-76.13067633830195, 42.72581501662816], [-76.13066560946591, 42.725822898126864], [-76.13066560946591, 42.725822898126864], [-76.13018281184321, 42.728620766896256] ] ] }, "properties": null }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [-76.13127651893724, 42.726809124054114], [-76.13147387880517, 42.726826941348634] ] }, "properties": null } ] } ================================================ FILE: packages/turf-intersect/test/in/skip-issue-1132-point.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [-76.13018281184321, 42.728620766896256], [-76.13060123644954, 42.728597123463544], [-76.13064415179377, 42.72858136117006], [-76.13070852481015, 42.728565598872564], [-76.13075144015438, 42.728565598872564], [-76.1307728978265, 42.72855771772231], [-76.13080508433468, 42.72854983657106], [-76.13083727084286, 42.72854983657106], [-76.1309016438592, 42.72854983657106], [-76.13093383036738, 42.72854195541882], [-76.13094455920346, 42.72854195541882], [-76.13096601687558, 42.72853407426555], [-76.1309874745477, 42.72853407426555], [-76.13105184756404, 42.72853407426555], [-76.13168484889155, 42.728376450990226], [-76.13169557772763, 42.728376450990226], [-76.13169557772763, 42.728376450990226], [-76.13170630656367, 42.72836068864066], [-76.13171703539975, 42.728352807464404], [-76.13173849307186, 42.728329163929544], [-76.13173849307186, 42.728329163929544], [-76.13174922190792, 42.72831340156796], [-76.13200671397334, 42.72798239104955], [-76.13204962931759, 42.727903578761016], [-76.13204962931759, 42.727887816291286], [-76.13216764651425, 42.72746222809471], [-76.13216764651425, 42.727430702926966], [-76.13218910418637, 42.72737553384482], [-76.13218910418637, 42.727344008633], [-76.13218910418637, 42.7273282460211], [-76.1322320195306, 42.72697358619405], [-76.1322320195306, 42.726910535345894], [-76.1322320195306, 42.72688689126127], [-76.1322320195306, 42.72688689126127], [-76.13222129069455, 42.726642568526074], [-76.13222129069455, 42.726642568526074], [-76.13219983302243, 42.72652434750228], [-76.13218910418637, 42.726516466092676], [-76.13218910418637, 42.726484940444266], [-76.1321783753503, 42.72647705902966], [-76.1321783753503, 42.72647705902966], [-76.1321783753503, 42.72646129619747], [-76.13204962931759, 42.72615392016877], [-76.13203890048152, 42.7261460387121], [-76.13203890048152, 42.72613027579578], [-76.13202817164547, 42.7261223943361], [-76.1320174428094, 42.726114512875455], [-76.13178140841609, 42.72585442411173], [-76.13178140841609, 42.72585442411173], [-76.13173849307186, 42.7258307796246], [-76.13172776423579, 42.725822898126864], [-76.13125569544917, 42.72568891251251], [-76.13125569544917, 42.72568891251251], [-76.13120205126889, 42.72568891251251], [-76.13120205126889, 42.72568891251251], [-76.13118059359677, 42.72568891251251], [-76.13086945735103, 42.7257283200762], [-76.13086945735103, 42.7257283200762], [-76.13084799967892, 42.72573620158593], [-76.13067633830195, 42.72581501662816], [-76.13066560946591, 42.725822898126864], [-76.13066560946591, 42.725822898126864], [-76.13018281184321, 42.728620766896256] ] ] }, "properties": null }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-76.13147387880517, 42.726826941348634] }, "properties": null } ] } ================================================ FILE: packages/turf-intersect/test/in/unable-to-complete-output-ring-2048-1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "source": "https://github.com/Turfjs/turf/issues/2048#issue-819829932" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-3.83455192598234, 40.409050315155], [-3.8345491088924044, 40.409032816373895], [-3.8345418625081247, 40.40901607230197], [-3.8345304653068033, 40.40900072640372], [-3.8345153552783007, 40.40898736841227], [-3.834497113093057, 40.408976511666445], [-3.8344764397871756, 40.408968573383575], [-3.8344541298221237, 40.40896385862635], [-3.8344310405543442, 40.40896254857957], [-3.8344080592879837, 40.40896469358739], [-3.83438606917682, 40.408970211218694], [-3.8343659152856744, 40.4089788894348], [-3.834348372115476, 40.40899039473786], [-3.834177858760829, 40.409126560378894], [-3.83375168422429, 40.409032801990904], [-3.8337284856464264, 40.40902956463916], [-3.833704904835557, 40.4090299015569], [-3.8336818820896954, 40.40903379930932], [-3.8336603354539585, 40.409041102471356], [-3.83364112411339, 40.409051519825255], [-3.8336250141327364, 40.409064635972896], [-3.833612647909254, 40.4090799278999], [-3.8336044119232677, 40.40909284706399], [-3.8335729899859303, 40.40911989936291], [-3.83354357775375, 40.40912687044306], [-3.8335137989493044, 40.40912125718645], [-3.833480309818796, 40.40909557565847], [-3.833396901450346, 40.40898192854682], [-3.8333837868735388, 40.408967551586315], [-3.833367263037019, 40.408955381441274], [-3.8333479559674717, 40.40894587919202], [-3.8333265971366535, 40.40893940484228], [-3.8330251177882237, 40.40887304968846], [-3.8328484611333167, 40.40876426559626], [-3.832734951264248, 40.40843336454013], [-3.832726932462509, 40.40841682588908], [-3.832714830355114, 40.40840179621679], [-3.8326991100208536, 40.40838885310396], [-3.8326803755836294, 40.408378493945825], [-3.8326593469962735, 40.40837111683777], [-3.832636832373328, 40.408367005276865], [-3.832613696936004, 40.40836631726752], [-3.8325908297626894, 40.40836907924944], [-3.832569109622699, 40.40837518508161], [-3.8325493712061665, 40.40838440012121], [-3.832532373047783, 40.40839637024059], [-3.8325187683769677, 40.40841063543614], [-3.832509080014675, 40.40842664750565], [-3.832503680281511, 40.40844379111528], [-3.8325027766893167, 40.40846140744634], [-3.832506403966127, 40.408478819513206], [-3.832629725743574, 40.40883832755169], [-3.832630673594837, 40.408840282474216], [-3.8326312267798404, 40.40884232335561], [-3.832634676039257, 40.40884853742842], [-3.8326377445716466, 40.40885486620945], [-3.8326391750873223, 40.40885664276608], [-3.8326402405435473, 40.40885856225713], [-3.8326452156545074, 40.40886414454316], [-3.8326498467432972, 40.40886989588979], [-3.832651704949721, 40.4088714258083], [-3.832653241732515, 40.40887315014393], [-3.8326595515049795, 40.40887788611862], [-3.8326655671804466, 40.40888283900928], [-3.832667781667827, 40.40888406349555], [-3.832669730719638, 40.40888552641043], [-3.832895130800659, 40.40902432655466], [-3.8329147852579775, 40.40903413960093], [-3.8329366023975, 40.409040795056804], [-3.8332143756147303, 40.40910193263683], [-3.8332819982841775, 40.4091940714427], [-3.8333012883881694, 40.409213565255875], [-3.83336948838725, 40.40926586530512], [-3.8333859436734707, 40.40927637405202], [-3.8334046261255996, 40.409284440127564], [-3.8334249180008944, 40.40928979682342], [-3.83351881811523, 40.40930749684639], [-3.8335399766319913, 40.40930996368926], [-3.8335613724013182, 40.40930948223858], [-3.8335823026760876, 40.40930606830765], [-3.833674702782557, 40.40928416827969], [-3.833694495571647, 40.40927792779691], [-3.8337124823739304, 40.40926906767858], [-3.833728071449941, 40.40925787940999], [-3.8337678988659136, 40.40922359047], [-3.8341811162739527, 40.40931449813965], [-3.83418743179838, 40.40931538856986], [-3.8341936207298533, 40.40931669648408], [-3.834198787843836, 40.40931698966665], [-3.834203882679486, 40.40931770799109], [-3.8342103049943153, 40.40931764315093], [-3.8342167101145117, 40.40931800657809], [-3.834221853061412, 40.409317526560784], [-3.834227034046546, 40.40931747425317], [-3.8342333163447924, 40.40931645663443], [-3.8342396915076176, 40.40931586160816], [-3.834244612646042, 40.40931462683783], [-3.834249680677578, 40.40931380590834], [-3.8342555815332413, 40.409311874617664], [-3.834261681743722, 40.40931034400458], [-3.834266191956608, 40.40930840193288], [-3.834270952272051, 40.40930684392955], [-3.834276244917819, 40.40930407318568], [-3.834281835747566, 40.40930166580659], [-3.8342857617095607, 40.40929909106643], [-3.834290031372107, 40.40929685586274], [-3.834294512414421, 40.409293352144026], [-3.834299379010279, 40.409290160513585], [-3.83451932993786, 40.40911451550404], [-3.834533588198565, 40.40910062523229], [-3.8345440136045337, 40.40908488381169], [-3.834550205515344, 40.40906789617728], [-3.83455192598234, 40.409050315155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-3.83455192598234, 40.409050315155], [-3.8345491088924044, 40.409032816373895], [-3.8345418625081247, 40.40901607230197], [-3.8345304653068033, 40.40900072640372], [-3.8345153552783007, 40.40898736841227], [-3.834497113093057, 40.408976511666445], [-3.8344764397871756, 40.408968573383575], [-3.8344541298221237, 40.40896385862635], [-3.8344310405543442, 40.40896254857957], [-3.8344080592879837, 40.40896469358739], [-3.83438606917682, 40.408970211218694], [-3.8343659152856744, 40.4089788894348], [-3.834348372115476, 40.40899039473786], [-3.8341860126530114, 40.40912004898301], [-3.8336592689516156, 40.40894040968877], [-3.8336560611269483, 40.408853862971455], [-3.8336531483024934, 40.40883639291525], [-3.8336458201698336, 40.40881969002402], [-3.833634357725855, 40.40880439476212], [-3.8336192004948124, 40.40879109361868], [-3.8336009296747, 40.40878029661897], [-3.8335802458513806, 40.40877241776803], [-3.8335579421350627, 40.40876775917592], [-3.833534873749143, 40.408766499473685], [-3.8335119252374934, 40.40876868696387], [-3.8329991583627283, 40.40885706407902], [-3.8328484611367055, 40.40876426560614], [-3.832734951264248, 40.40843336454013], [-3.832726932462509, 40.40841682588908], [-3.832714830355114, 40.40840179621679], [-3.8326991100208536, 40.40838885310396], [-3.8326803755836294, 40.408378493945825], [-3.8326593469962735, 40.40837111683777], [-3.832636832373328, 40.408367005276865], [-3.832613696936004, 40.40836631726752], [-3.8325908297626894, 40.40836907924944], [-3.832569109622699, 40.40837518508161], [-3.8325493712061665, 40.40838440012121], [-3.832532373047783, 40.40839637024059], [-3.8325187683769677, 40.40841063543614], [-3.832509080014675, 40.40842664750565], [-3.832503680281511, 40.40844379111528], [-3.8325027766893167, 40.40846140744634], [-3.832506403966127, 40.408478819513206], [-3.832629725743574, 40.40883832755169], [-3.832630673594837, 40.408840282474216], [-3.8326312267798404, 40.40884232335561], [-3.832634676039257, 40.40884853742842], [-3.8326377445716466, 40.40885486620945], [-3.8326391750873223, 40.40885664276608], [-3.8326402405435473, 40.40885856225713], [-3.8326452156545074, 40.40886414454316], [-3.8326498467432972, 40.40886989588979], [-3.832651704949721, 40.4088714258083], [-3.832653241732515, 40.40887315014393], [-3.8326595515049795, 40.40887788611862], [-3.8326655671804466, 40.40888283900928], [-3.832667781667827, 40.40888406349555], [-3.832669730719638, 40.40888552641043], [-3.832895130800659, 40.40902432655466], [-3.832912826549752, 40.40903334387367], [-3.832932361033984, 40.40903979538643], [-3.8329530993491185, 40.40904347140754], [-3.8329743674638825, 40.40904425245991], [-3.832995474127387, 40.409042113158], [-3.8334239904054592, 40.4089682573086], [-3.8334252386134966, 40.40900193691386], [-3.833427914072361, 40.40901859790407], [-3.833434609021053, 40.40903459013415], [-3.8334450902424826, 40.4090493565116], [-3.833458992623358, 40.409062382646496], [-3.833475831872736, 40.409073214770295], [-3.8334950213922845, 40.40908147554315], [-3.8341656220460503, 40.40931017582205], [-3.8341685519810556, 40.4093109223674], [-3.8341713106692126, 40.409311981672516], [-3.834179509631203, 40.40931371436887], [-3.834187578725782, 40.40931577036844], [-3.8341906436391717, 40.40931606733198], [-3.8341936207298533, 40.40931669648408], [-3.8342021060938283, 40.40931717794449], [-3.8342105469212235, 40.409317995787504], [-3.834213629029606, 40.40931783175702], [-3.8342167101145117, 40.40931800657809], [-3.8342251557914957, 40.40931721830024], [-3.834233643974112, 40.4093167665573], [-3.8342366248332436, 40.40931614783642], [-3.8342396915076176, 40.40931586160816], [-3.8342477729339226, 40.40931383388519], [-3.834255982274187, 40.40931212991664], [-3.834258747330996, 40.40931108028254], [-3.834261681743722, 40.40931034400458], [-3.8342690883535533, 40.409307154761045], [-3.8342767033700853, 40.40930426404971], [-3.834279146364692, 40.40930282383937], [-3.834281835747566, 40.40930166580659], [-3.8342882829085267, 40.4092974376036], [-3.8342950109596026, 40.40929347123841], [-3.834297038009003, 40.409291695798444], [-3.834299379010279, 40.409290160513585], [-3.83451932993786, 40.40911451550404], [-3.834533588198565, 40.40910062523229], [-3.8345440136045337, 40.40908488381169], [-3.834550205515344, 40.40906789617728], [-3.83455192598234, 40.409050315155] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/in/unable-to-complete-output-ring-2048-2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "source": "https://github.com/Turfjs/turf/issues/2048#issuecomment-805719137" }, "geometry": { "type": "Polygon", "coordinates": [ [ [973.2050807568878, 709.8076211353313], [923.2050807568877, 623.2050807568874], [923.2050807568877, 623.2050807568874], [973.2050807568877, 536.6025403784436], [973.2050807568877, 536.6025403784436], [1073.2050807568876, 536.6025403784436], [1073.2050807568876, 536.6025403784436], [1123.2050807568878, 623.2050807568874], [1123.2050807568878, 623.2050807568874], [1073.2050807568878, 709.8076211353313], [1073.2050807568878, 709.8076211353313], [973.2050807568878, 709.8076211353313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1009.8076211353315, 573.2050807568876], [923.2050807568877, 623.2050807568876], [923.2050807568877, 623.2050807568876], [873.2050807568877, 536.6025403784438], [873.2050807568877, 536.6025403784438], [959.8076211353315, 486.60254037844373], [959.8076211353315, 486.60254037844373], [1009.8076211353315, 573.2050807568876] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/out/Intersect1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill-opacity": 0.5, "fill": "#F00" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.88571166992188, 32.887659962078956], [-80.09788513183594, 32.927436533285565], [-80.15350341796875, 32.82825010814964], [-80.00312805175781, 32.69428812316933], [-79.89395141601562, 32.75551989829049], [-79.88571166992188, 32.887659962078956] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 0.5, "fill": "#00F" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.92141723632812, 32.953944317478246], [-79.97428894042969, 32.83690450361482], [-79.97360229492188, 32.76071688548088], [-79.93034362792969, 32.76475877693074], [-79.93789672851562, 32.74108223150125], [-79.80537414550781, 32.7231762754146], [-79.81773376464844, 32.923402043498875], [-79.92141723632812, 32.953944317478246] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 1, "fill": "#0F0" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.97428894042969, 32.83690450361482], [-79.97360229492188, 32.76071688548088], [-79.93034362792969, 32.76475877693074], [-79.93789672851562, 32.74108223150125], [-79.92322780260464, 32.73910022106017], [-79.89395141601562, 32.75551989829049], [-79.88571166992188, 32.887659962078956], [-79.94623496447946, 32.89900638172028], [-79.97428894042969, 32.83690450361482] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/out/Intersect2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill-opacity": 0.5, "fill": "#F00" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.92141723632812, 32.953944317478246], [-80.068359375, 32.88189375925038], [-80.01686096191406, 32.87266705436184], [-79.97360229492188, 32.76071688548088], [-79.93034362792969, 32.76475877693074], [-79.93789672851562, 32.74108223150125], [-79.80537414550781, 32.7231762754146], [-79.81773376464844, 32.923402043498875], [-79.92141723632812, 32.953944317478246] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 0.5, "fill": "#00F" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-80.10543823242188, 32.94760622243483], [-80.14389038085938, 32.8149783969858], [-80.07453918457031, 32.85536439443039], [-79.99351501464844, 32.84440429734253], [-79.98184204101562, 32.90495631913751], [-80.10543823242188, 32.94760622243483] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 1, "fill": "#0F0" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-80.068359375, 32.88189375925038], [-80.01686096191406, 32.87266705436184], [-80.0066252126598, 32.84617770697059], [-79.99351501464844, 32.84440429734253], [-79.98184204101562, 32.90495631913751], [-80.00501604057509, 32.91295307720083], [-80.068359375, 32.88189375925038] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/out/armenia.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "id": "ARM", "properties": { "name": "Armenia", "fill-opacity": 0.5, "fill": "#F00" }, "geometry": { "type": "Polygon", "coordinates": [ [ [43.582746, 41.092143], [44.97248, 41.248129], [45.179496, 40.985354], [45.560351, 40.81229], [45.359175, 40.561504], [45.891907, 40.218476], [45.610012, 39.899994], [46.034534, 39.628021], [46.483499, 39.464155], [46.50572, 38.770605], [46.143623, 38.741201], [45.735379, 39.319719], [45.739978, 39.473999], [45.298145, 39.471751], [45.001987, 39.740004], [44.79399, 39.713003], [44.400009, 40.005], [43.656436, 40.253564], [43.752658, 40.740201], [43.582746, 41.092143] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 0.5, "fill": "#00F" }, "geometry": { "type": "Polygon", "coordinates": [ [ [45.1318359375, 40.1452892956766], [45.1318359375, 43.197167282501276], [53.3935546875, 43.197167282501276], [53.3935546875, 40.1452892956766], [45.1318359375, 40.1452892956766] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 1, "fill": "#0F0" }, "geometry": { "type": "Polygon", "coordinates": [ [ [45.1318359375, 40.1452892956766], [45.82712793551521, 40.1452892956766], [45.891907, 40.218476], [45.359175, 40.561504], [45.560351, 40.81229], [45.179496, 40.985354], [45.1318359375, 41.04585112545618], [45.1318359375, 40.1452892956766] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/out/issue-1004.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill-opacity": 0.5, "fill": "#F00" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-114.757217, 32.618318], [-114.757217, 32.619977], [-114.757213, 32.619977], [-114.757213, 32.618318], [-114.757217, 32.618318] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 0.5, "fill": "#00F" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-114.755129, 32.618401], [-114.755129, 32.618401], [-114.755129, 32.618402], [-114.75513, 32.618402], [-114.75513, 32.618401], [-114.755131, 32.618395], [-114.755135, 32.618385], [-114.755142, 32.618374], [-114.75515, 32.618363], [-114.75516, 32.618353], [-114.755171, 32.618345], [-114.755183, 32.618339], [-114.755195, 32.618334], [-114.755207, 32.618332], [-114.755218, 32.618331], [-114.755228, 32.618331], [-114.75701, 32.618318], [-114.757014, 32.618319], [-114.757018, 32.618321], [-114.757028, 32.618325], [-114.757041, 32.61833], [-114.757053, 32.618337], [-114.757066, 32.618344], [-114.757078, 32.618352], [-114.757088, 32.618362], [-114.757098, 32.618371], [-114.757107, 32.618382], [-114.757116, 32.618393], [-114.757124, 32.618404], [-114.757132, 32.618414], [-114.757138, 32.618426], [-114.757142, 32.618438], [-114.757146, 32.61845], [-114.757151, 32.618463], [-114.757154, 32.618476], [-114.757157, 32.618489], [-114.75716, 32.618502], [-114.757163, 32.618515], [-114.757165, 32.618527], [-114.757168, 32.618538], [-114.75717, 32.618547], [-114.757171, 32.618552], [-114.757219, 32.619925], [-114.757215, 32.619925], [-114.757211, 32.619927], [-114.757202, 32.619933], [-114.757192, 32.61994], [-114.757182, 32.619947], [-114.75717, 32.619953], [-114.757157, 32.619958], [-114.757143, 32.619964], [-114.75713, 32.619968], [-114.757117, 32.619972], [-114.757105, 32.619974], [-114.757095, 32.619976], [-114.757088, 32.619977], [-114.755325, 32.619959], [-114.755324, 32.619958], [-114.755319, 32.619956], [-114.755307, 32.619954], [-114.755294, 32.619952], [-114.755281, 32.61995], [-114.755269, 32.619946], [-114.755257, 32.61994], [-114.755245, 32.619934], [-114.755233, 32.619927], [-114.755224, 32.619919], [-114.755216, 32.619911], [-114.755209, 32.619902], [-114.755202, 32.619891], [-114.755198, 32.619881], [-114.755195, 32.61987], [-114.755191, 32.61986], [-114.755189, 32.619849], [-114.755187, 32.619838], [-114.755185, 32.619826], [-114.755183, 32.619814], [-114.755182, 32.619801], [-114.75518, 32.619789], [-114.755178, 32.619777], [-114.755177, 32.619764], [-114.755177, 32.619752], [-114.755176, 32.61974], [-114.755175, 32.619729], [-114.755173, 32.619718], [-114.755172, 32.61971], [-114.755171, 32.619705], [-114.755129, 32.618401] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 1, "fill": "#0F0" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-114.757217, 32.619867791666664], [-114.757213, 32.619753375], [-114.757213, 32.619926], [-114.757215, 32.619925], [-114.757217, 32.619925], [-114.757217, 32.619867791666664] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/out/issue-1132-line.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [-76.13018281184321, 42.728620766896256], [-76.13060123644954, 42.728597123463544], [-76.13064415179377, 42.72858136117006], [-76.13070852481015, 42.728565598872564], [-76.13075144015438, 42.728565598872564], [-76.1307728978265, 42.72855771772231], [-76.13080508433468, 42.72854983657106], [-76.13083727084286, 42.72854983657106], [-76.1309016438592, 42.72854983657106], [-76.13093383036738, 42.72854195541882], [-76.13094455920346, 42.72854195541882], [-76.13096601687558, 42.72853407426555], [-76.1309874745477, 42.72853407426555], [-76.13105184756404, 42.72853407426555], [-76.13168484889155, 42.728376450990226], [-76.13169557772763, 42.728376450990226], [-76.13169557772763, 42.728376450990226], [-76.13170630656367, 42.72836068864066], [-76.13171703539975, 42.728352807464404], [-76.13173849307186, 42.728329163929544], [-76.13173849307186, 42.728329163929544], [-76.13174922190792, 42.72831340156796], [-76.13200671397334, 42.72798239104955], [-76.13204962931759, 42.727903578761016], [-76.13204962931759, 42.727887816291286], [-76.13216764651425, 42.72746222809471], [-76.13216764651425, 42.727430702926966], [-76.13218910418637, 42.72737553384482], [-76.13218910418637, 42.727344008633], [-76.13218910418637, 42.7273282460211], [-76.1322320195306, 42.72697358619405], [-76.1322320195306, 42.726910535345894], [-76.1322320195306, 42.72688689126127], [-76.1322320195306, 42.72688689126127], [-76.13222129069455, 42.726642568526074], [-76.13222129069455, 42.726642568526074], [-76.13219983302243, 42.72652434750228], [-76.13218910418637, 42.726516466092676], [-76.13218910418637, 42.726484940444266], [-76.1321783753503, 42.72647705902966], [-76.1321783753503, 42.72647705902966], [-76.1321783753503, 42.72646129619747], [-76.13204962931759, 42.72615392016877], [-76.13203890048152, 42.7261460387121], [-76.13203890048152, 42.72613027579578], [-76.13202817164547, 42.7261223943361], [-76.1320174428094, 42.726114512875455], [-76.13178140841609, 42.72585442411173], [-76.13178140841609, 42.72585442411173], [-76.13173849307186, 42.7258307796246], [-76.13172776423579, 42.725822898126864], [-76.13125569544917, 42.72568891251251], [-76.13125569544917, 42.72568891251251], [-76.13120205126889, 42.72568891251251], [-76.13120205126889, 42.72568891251251], [-76.13118059359677, 42.72568891251251], [-76.13086945735103, 42.7257283200762], [-76.13086945735103, 42.7257283200762], [-76.13084799967892, 42.72573620158593], [-76.13067633830195, 42.72581501662816], [-76.13066560946591, 42.725822898126864], [-76.13066560946591, 42.725822898126864], [-76.13018281184321, 42.728620766896256] ] ] }, "properties": { "fill-opacity": 0.5, "fill": "#F00" } }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [-76.13127651893724, 42.726809124054114], [-76.13147387880517, 42.726826941348634] ] }, "properties": { "fill-opacity": 0.5, "fill": "#00F" } } ] } ================================================ FILE: packages/turf-intersect/test/out/issue-1394.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [-85.42358091, 41.76872876], [-85.42358054, 41.76871738], [-85.42343269, 41.76871941], [-85.42342892, 41.7687873], [-85.42343247, 41.76882923], [-85.42343403, 41.76885906], [-85.42343247, 41.76893021], [-85.4234327, 41.76893113], [-85.42343245, 41.768932], [-85.42343245, 41.76896821], [-85.42357911, 41.76896572], [-85.42357911, 41.76895253], [-85.42357911, 41.768932], [-85.42358073, 41.76885781], [-85.42357713, 41.76878899], [-85.42358091, 41.76872876] ] ] }, "properties": { "fill-opacity": 0.5, "fill": "#F00" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [-85.42775567, 41.76834521], [-85.42261052, 41.76843269], [-85.42260803, 41.76844995], [-85.4226073, 41.76845496], [-85.42260484, 41.76848048], [-85.42260083, 41.76852204], [-85.42260191, 41.76856362], [-85.42260586, 41.7685989], [-85.42263068, 41.76862319], [-85.42334654, 41.76860736], [-85.42335464, 41.76862399], [-85.4233818, 41.76867993], [-85.42338342, 41.76869724], [-85.42338701, 41.76872004], [-85.42339693, 41.76871991], [-85.42343269, 41.76871941], [-85.42358054, 41.76871738], [-85.42358091, 41.76872876], [-85.42357713, 41.768789], [-85.42358073, 41.76885781], [-85.42357911, 41.768932], [-85.42357911, 41.76895253], [-85.42357911, 41.76896572], [-85.42595679, 41.76892533], [-85.42595476, 41.76888531], [-85.42599703, 41.7688939], [-85.42599798, 41.76892451], [-85.426518, 41.76891567], [-85.42776659, 41.76889445], [-85.42781994, 41.76889354], [-85.42781971, 41.76888565], [-85.42781923, 41.76886922], [-85.42780934, 41.76879664], [-85.42782049, 41.76870985], [-85.42782211, 41.76864827], [-85.42782265, 41.76858656], [-85.42782337, 41.76852915], [-85.42782301, 41.76847763], [-85.42782337, 41.7684563], [-85.42775364, 41.76845772], [-85.42775456, 41.76840654], [-85.42775499, 41.76838269], [-85.42775536, 41.76836222], [-85.42775567, 41.76834521] ] ] }, "properties": { "fill-opacity": 0.5, "fill": "#00F" } }, { "type": "Feature", "properties": { "fill-opacity": 1, "fill": "#0F0" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-85.42358073, 41.76885781], [-85.42357713028528, 41.76878899545362], [-85.42357713, 41.768789], [-85.42358073, 41.76885781] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/out/issue-412.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [11.076136797048882, 9.856269774244707], [11.262359619140625, 9.85386305739084], [11.083831787109375, 9.85386305739084], [11.076136797048882, 9.856269774244707] ] ] }, "properties": { "fill-opacity": 0.5, "fill": "#F00" } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [11.62078857421875, 10.306812602471467], [11.162109375, 9.848450887107404], [11.072845458984375, 9.85656910923582], [11.62078857421875, 10.306812602471467] ] ] }, "properties": { "fill-opacity": 0.5, "fill": "#00F" } }, { "type": "Feature", "properties": { "fill-opacity": 1, "fill": "#0F0" }, "geometry": { "type": "Polygon", "coordinates": [ [ [11.076136797048882, 9.856269774244707], [11.076136797048889, 9.856269774244705], [11.102599853580049, 9.85386305739084], [11.167525294018608, 9.85386305739084], [11.168736108831801, 9.855073034114678], [11.076136797048882, 9.856269774244707] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/out/issue-702.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-74.79611411690712, 7.765254307777397], [-74.79562863707542, 7.764475626432059], [-74.79497820138931, 7.763392645711534], [-74.79475021362305, 7.762971411965751], [-74.79475021362305, 7.759810152181373], [-74.79756385087967, 7.759810152181373], [-74.7976054251194, 7.75992841747734], [-74.79764297604561, 7.760640666196679], [-74.79771003127098, 7.761103095689322], [-74.79768589138985, 7.761723654007994], [-74.7976054251194, 7.762247207851331], [-74.79763090610504, 7.762539547277072], [-74.79781463742256, 7.762691032172228], [-74.79823172092438, 7.76314814415656], [-74.79852139949799, 7.763707574135239], [-74.798883497715, 7.7647427169537195], [-74.79926839470863, 7.765593153304707], [-74.79629516601562, 7.765593153304707], [-74.79611411690712, 7.765254307777397] ] ], [ [ [-74.79480117559433, 7.763330191523508], [-74.79475021362305, 7.763336835586514], [-74.79475021362305, 7.76296875433826], [-74.79497820138931, 7.763392645711534], [-74.79480117559433, 7.763330191523508] ] ] ] }, "properties": { "vt_layer": "water", "fill-opacity": 0.5, "fill": "#F00" }, "id": 0 }, { "type": "Feature", "properties": { "fill-opacity": 0.5, "fill": "#00F" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.79376316070557, 7.766060892564003], [-74.79382753372192, 7.765593153304712], [-74.79288339614868, 7.765699457727546], [-74.79376316070557, 7.766060892564003] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/out/issue-820.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill-opacity": 0.5, "fill": "#F00" }, "geometry": { "type": "Polygon", "coordinates": [ [ [43.741513133300735, 56.20222135938059], [43.74237144018551, 56.18856400988486], [43.77756202246089, 56.187608768581725], [43.77927863623042, 56.19639609165836], [43.763142466796836, 56.20212587032091], [43.741513133300735, 56.20222135938059] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 0.5, "fill": "#00F" }, "geometry": { "type": "Polygon", "coordinates": [ [ [43.970066430113974, 56.332893840607994], [43.970066430115764, 56.33289386305967], [43.96907396330773, 56.33216050512385], [43.96712784882449, 56.3329676824026], [43.9675997442062, 56.33331243182769], [43.96955706305079, 56.33351088302814], [43.96958194836136, 56.33343379993835], [43.969613521760365, 56.3333626110674], [43.96964739754773, 56.3333044427381], [43.96968537953426, 56.3332457040905], [43.96973157401614, 56.333186395086614], [43.969791873109784, 56.333117882577056], [43.96983217547703, 56.3330786121781], [43.969883502771644, 56.3330312788475], [43.969928670817815, 56.332993640236595], [43.96997589197615, 56.33295771241299], [43.97002822123187, 56.332919492368774], [43.970066430113974, 56.332893840607994] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/out/jsts/Intersect1.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.94623485028362, 32.89900648336843], [-79.885712, 32.88766], [-79.893951, 32.75552], [-79.92322798892725, 32.739099979427955], [-79.937897, 32.741082], [-79.930344, 32.764759], [-79.973602, 32.760717], [-79.974289, 32.836905], [-79.94623485028362, 32.89900648336843] ] ] } } ================================================ FILE: packages/turf-intersect/test/out/jsts/Intersect2.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80.00662505026214, 32.84617737765197], [-80.016861, 32.872667], [-80.068359, 32.881894], [-80.0050161842375, 32.91295285230695], [-79.981842, 32.904956], [-79.993515, 32.844404], [-80.00662505026214, 32.84617737765197] ] ] } } ================================================ FILE: packages/turf-intersect/test/out/jsts/armenia.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [43.582746, 41.092143], [44.97248, 41.248129], [45.179496, 40.985354], [45.560351, 40.81229], [45.359175, 40.561504], [45.891907, 40.218476], [45.610012, 39.899994], [46.034534, 39.628021], [46.483499, 39.464155], [46.50572, 38.770605], [46.143623, 38.741201], [45.735379, 39.319719], [45.739978, 39.473999], [45.298145, 39.471751], [45.001987, 39.740004], [44.79399, 39.713003], [44.400009, 40.005], [43.656436, 40.253564], [43.752658, 40.740201], [43.582746, 41.092143] ] ] } } ================================================ FILE: packages/turf-intersect/test/out/jsts/issue-1004.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": null } ================================================ FILE: packages/turf-intersect/test/out/jsts/issue-1132-line.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-76.131277, 42.726809], [-76.131474, 42.726827] ] } } ================================================ FILE: packages/turf-intersect/test/out/jsts/issue-1132-point.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-76.131474, 42.726827] } } ================================================ FILE: packages/turf-intersect/test/out/jsts/issue-412.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [11.076137, 9.85627], [11.16873572210611, 9.855073127840765], [11.16752475470916, 9.853863], [11.102599666666666, 9.853863], [11.076138743097555, 9.856269454758179], [11.076137, 9.85627] ] ] } } ================================================ FILE: packages/turf-intersect/test/out/jsts/issue-820.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": null } ================================================ FILE: packages/turf-intersect/test/out/jsts/linestring.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [4.865441, 45.784345], [4.882178, 45.787457] ] } } ================================================ FILE: packages/turf-intersect/test/out/jsts/multilinestring.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [4.865441, 45.784345], [4.882178, 45.787457] ], [ [4.860034, 45.78213], [4.861836, 45.784405] ] ] } } ================================================ FILE: packages/turf-intersect/test/out/jsts/multipoint.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [4.845099, 45.77794], [4.854155, 45.772492] ] } } ================================================ FILE: packages/turf-intersect/test/out/jsts/no-overlap.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": null } ================================================ FILE: packages/turf-intersect/test/out/jsts/point.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [4.859991, 45.784614] } } ================================================ FILE: packages/turf-intersect/test/out/linestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill-opacity": 0.5, "fill": "#F00" }, "geometry": { "type": "Polygon", "coordinates": [ [ [4.8618364334106445, 45.784404601286774], [4.86544132232666, 45.78434474634739], [4.88217830657959, 45.78745711798122], [4.886684417724609, 45.78691845071048], [4.888958930969238, 45.78494329284938], [4.876770973205566, 45.782100139729486], [4.874668121337891, 45.77934663219167], [4.865655899047851, 45.77904732970034], [4.859733581542969, 45.77976565298041], [4.860033988952637, 45.78213006841216], [4.8618364334106445, 45.784404601286774] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 0.5, "fill": "#00F" }, "geometry": { "type": "Polygon", "coordinates": [ [ [4.86544132232666, 45.78434474634739], [4.88217830657959, 45.78745711798122], [4.8838090896606445, 45.79044961914028], [4.880805015563965, 45.79257419743464], [4.875955581665039, 45.78808555655138], [4.869647026062012, 45.78742719215828], [4.863724708557129, 45.78575132043314], [4.86544132232666, 45.78434474634739] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/out/multilinestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill-opacity": 0.5, "fill": "#F00" }, "geometry": { "type": "Polygon", "coordinates": [ [ [4.8618364334106445, 45.784404601286774], [4.86544132232666, 45.78434474634739], [4.88217830657959, 45.78745711798122], [4.886684417724609, 45.78691845071048], [4.888958930969238, 45.78494329284938], [4.876770973205566, 45.782100139729486], [4.874668121337891, 45.77934663219167], [4.865655899047851, 45.77904732970034], [4.859733581542969, 45.77976565298041], [4.860033988952637, 45.78213006841216], [4.8618364334106445, 45.784404601286774] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 0.5, "fill": "#00F" }, "geometry": { "type": "Polygon", "coordinates": [ [ [4.86544132232666, 45.78434474634739], [4.88217830657959, 45.78745711798122], [4.8838090896606445, 45.79044961914028], [4.880805015563965, 45.79257419743464], [4.875955581665039, 45.78808555655138], [4.869647026062012, 45.78742719215828], [4.863724708557129, 45.78575132043314], [4.860978126525879, 45.78572139369446], [4.860033988952637, 45.78213006841216], [4.8618364334106445, 45.784404601286774], [4.8618364334106445, 45.78503307427041], [4.86544132232666, 45.78434474634739] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/out/multipoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill-opacity": 0.5, "fill": "#F00" }, "geometry": { "type": "Polygon", "coordinates": [ [ [4.845099449157715, 45.77793989651294], [4.849648475646973, 45.78245928286134], [4.855012893676758, 45.78446445616189], [4.859991073608398, 45.784614093068555], [4.858188629150391, 45.77288134093866], [4.854154586791992, 45.77249220227275], [4.845099449157715, 45.77793989651294] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 0.5, "fill": "#00F" }, "geometry": { "type": "Polygon", "coordinates": [ [ [4.845099449157715, 45.77793989651294], [4.840679168701172, 45.771743851052996], [4.848017692565918, 45.767133786097716], [4.854154586791992, 45.77249220227275], [4.846601486206055, 45.771983324535846], [4.845099449157715, 45.77793989651294] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/out/multipolygon-input.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill-opacity": 0.5, "fill": "#F00" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [2.3273849487304688, 48.87148983809234], [2.3160552978515625, 48.87307055723444], [2.3150253295898438, 48.85183958955198], [2.3493576049804688, 48.845965604118284], [2.3500442504882812, 48.85613168160397], [2.3500442504882812, 48.8615527456014], [2.3273849487304688, 48.87148983809234] ] ], [ [ [2.3363113403320312, 48.87690923865779], [2.3514175415039062, 48.86516646209463], [2.3596572875976562, 48.873522182101965], [2.3476409912109375, 48.878489786571116], [2.3363113403320312, 48.87690923865779] ] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 0.5, "fill": "#00F" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [2.3256683349609375, 48.87690923865779], [2.3239517211914062, 48.86787657822752], [2.3521041870117188, 48.85432452980058], [2.357940673828125, 48.8615527456014], [2.3411178588867188, 48.882102279983364], [2.3256683349609375, 48.87690923865779] ] ], [ [ [2.362060546875, 48.85229140604385], [2.3733901977539062, 48.8473212003792], [2.3733901977539062, 48.854776323867306], [2.362060546875, 48.85229140604385] ] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 1, "fill": "#0F0" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [2.3239517211914062, 48.86787657822752], [2.3499909013050764, 48.85534182435727], [2.3500442504882812, 48.85613168160397], [2.3500442504882812, 48.8615527456014], [2.3273849487304688, 48.87148983809234], [2.324709348008303, 48.87186313938144], [2.3239517211914062, 48.86787657822752] ] ], [ [ [2.3363113403320312, 48.87690923865779], [2.3514175415039062, 48.86516646209463], [2.353365325175928, 48.86714166070064], [2.3444407066054644, 48.87804332946407], [2.3363113403320312, 48.87690923865779] ] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/out/no-overlap.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill-opacity": 0.5, "fill": "#F00" }, "geometry": { "type": "Polygon", "coordinates": [ [ [92.6806640625, 53.4357192066942], [92.6806640625, 53.51418452077113], [93.0322265625, 53.51418452077113], [93.0322265625, 53.4357192066942], [92.6806640625, 53.4357192066942] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 0.5, "fill": "#00F" }, "geometry": { "type": "Polygon", "coordinates": [ [ [93.47854614257812, 53.628353173374194], [93.47854614257812, 53.74140157486066], [93.680419921875, 53.74140157486066], [93.680419921875, 53.628353173374194], [93.47854614257812, 53.628353173374194] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/out/output-multipolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill-opacity": 0.5, "fill": "#F00" }, "geometry": { "type": "Polygon", "coordinates": [ [ [129.0234375, -27.371767300523032], [138.33984375, -27.371767300523032], [138.33984375, -22.43134015636061], [129.0234375, -22.43134015636061], [129.0234375, -27.371767300523032] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 0.5, "fill": "#00F" }, "geometry": { "type": "Polygon", "coordinates": [ [ [124.23339843749999, -34.921971036163754], [143.4375, -34.95799531086791], [143.26171875, -13.154376055418515], [124.23339843749999, -12.768946439455943], [124.23339843749999, -34.921971036163754] ], [ [130.2978515625, -29.95493454965612], [130.2978515625, -18.020527657852327], [137.2412109375, -18.020527657852327], [137.2412109375, -29.95493454965612], [130.2978515625, -29.95493454965612] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 1, "fill": "#0F0" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [129.0234375, -27.371767300523032], [130.2978515625, -27.371767300523032], [130.2978515625, -22.43134015636061], [129.0234375, -22.43134015636061], [129.0234375, -27.371767300523032] ] ], [ [ [137.2412109375, -27.371767300523032], [138.33984375, -27.371767300523032], [138.33984375, -22.43134015636061], [137.2412109375, -22.43134015636061], [137.2412109375, -27.371767300523032] ] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test/out/point.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill-opacity": 0.5, "fill": "#F00" }, "geometry": { "type": "Polygon", "coordinates": [ [ [4.845099449157715, 45.77793989651294], [4.849648475646973, 45.78245928286134], [4.855012893676758, 45.78446445616189], [4.859991073608398, 45.784614093068555], [4.858188629150391, 45.77288134093866], [4.854154586791992, 45.77249220227275], [4.845099449157715, 45.77793989651294] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 0.5, "fill": "#00F" }, "geometry": { "type": "Polygon", "coordinates": [ [ [4.859991073608398, 45.784614093068555], [4.86569881439209, 45.78611044004426], [4.87518310546875, 45.787906003397154], [4.880547523498535, 45.79251435126729], [4.883980751037598, 45.7903598464431], [4.8827362060546875, 45.787906003397154], [4.864926338195801, 45.78464402040167], [4.859991073608398, 45.784614093068555] ] ] } } ] } ================================================ FILE: packages/turf-intersect/test.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { glob } from "glob"; import test from "tape"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { featureCollection, polygon } from "@turf/helpers"; import { intersect } from "./index.js"; import { FeatureCollection, MultiPolygon, Polygon } from "geojson"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename) as FeatureCollection< Polygon | MultiPolygon >, }; }); test("intersect", (t) => { for (const { name, geojson, filename } of fixtures) { if (name.includes("skip")) { t.skip(name); continue; } // Only test the input fixture this way if there is a corresponding output // fixture to compare. if (fs.existsSync(path.join(directories.out, filename))) { const [polygon1, polygon2] = geojson.features; // Red Polygon1 polygon1.properties = Object.assign(polygon1.properties || {}, { "fill-opacity": 0.5, fill: "#F00", }); // Blue Polygon2 polygon2.properties = Object.assign(polygon2.properties || {}, { "fill-opacity": 0.5, fill: "#00F", }); const fc = featureCollection([polygon1, polygon2]); const result = intersect(fc); if (result) { // Green Polygon result.properties = { "fill-opacity": 1, fill: "#0F0" }; fc.features.push(result); } if (process.env.REGEN) writeJsonFileSync(directories.out + filename, result); t.deepEqual(fc, loadJsonFileSync(directories.out + filename), name); } } t.end(); }); test("intersect - unable to complete output ring - issue 2048", (t) => { // Test examples copied from https://github.com/Turfjs/turf/issues/2048 let polys: FeatureCollection; polys = loadJsonFileSync( directories.in + "unable-to-complete-output-ring-2048-1.geojson" ) as FeatureCollection; // This used to fail with "Unable to complete output ring ..." t.doesNotThrow(() => intersect(polys), "does not throw ex 1"); polys = loadJsonFileSync( directories.in + "unable-to-complete-output-ring-2048-2.geojson" ) as FeatureCollection; // This used to fail with "Unable to complete output ring ..." t.doesNotThrow(() => intersect(polys), "does not throw ex 2"); t.end(); }); test("intersect - infinite loop - issue 2705", (t) => { // Test examples copied from https://github.com/Turfjs/turf/issues/2705 let polys: FeatureCollection; polys = loadJsonFileSync( directories.in + "infinite-loop-2705.geojson" ) as FeatureCollection; // This used to get stuck in an infinite loop intersect(polys); t.ok(true, "should not get stuck in an infinite loop"); t.end(); }); test.skip("intersect - infinite loop - issue 2601", (t) => { // Not actually going to commit the fixture file for this test as it's 76MB! // Tested locally though and it produces an identical result with no // workarounds: https://github.com/Turfjs/turf/issues/2601#issuecomment-2558307811 // Test examples copied from https://github.com/Turfjs/turf/issues/2601 let polys: FeatureCollection; polys = loadJsonFileSync( directories.in + "infinite-loop-2601.geojson" ) as FeatureCollection; // This used to get stuck in an infinite loop intersect(polys); t.ok(true, "should not get stuck in an infinite loop"); t.end(); }); test.skip("intersect - missing islands - issue 2084", (t) => { // Unfortunately still broken, even with upgrade to polyclip-ts. Committing // now so we can enable when a fix is available. // Test example copied from https://github.com/Turfjs/turf/issues/2084 let polys: FeatureCollection; polys = loadJsonFileSync( directories.in + "missing-islands-2084.geojson" ) as FeatureCollection; // "Islands" in the multipolygon aren't being included in the result. // TODO establish geojson file of expected output. For now clearly visually // not the same as https://github.com/Turfjs/turf/issues/2084#issuecomment-849975182 const result = intersect(polys); t.ok(true, "islands included in intersection result"); t.end(); }); ================================================ FILE: packages/turf-intersect/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-intersect/types.ts ================================================ import { featureCollection, polygon } from "@turf/helpers"; import { intersect } from "./index.js"; const poly1 = polygon([ [ [0, 0], [1, 1], [3, 0], [0, 0], ], ]); const poly2 = polygon([ [ [10, 10], [21, 21], [0, 4], [10, 10], ], ]); const match = intersect(featureCollection([poly1, poly2])); if (match === null) console.log("foo"); const foo = intersect(featureCollection([poly1, poly2])) || "bar"; ================================================ FILE: packages/turf-invariant/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-invariant/README.md ================================================ # @turf/invariant ## getCoord Unwrap a coordinate from a Point Feature, Geometry or a single coordinate. ### Parameters * `coord` **([Array][1]<[number][2]> | [Geometry][3]<[Point][4]> | [Feature][5]<[Point][4]>)** GeoJSON Point or an Array of numbers ### Examples ```javascript var pt = turf.point([10, 10]); var coord = turf.getCoord(pt); //= [10, 10] ``` Returns **[Array][1]<[number][2]>** coordinates ## getCoords Unwrap coordinates from a Feature, Geometry Object or an Array ### Parameters * `coords` **([Array][1]\ | [Geometry][3] | [Feature][5])** Feature, Geometry Object or an Array ### Examples ```javascript var poly = turf.polygon([[[119.32, -8.7], [119.55, -8.69], [119.51, -8.54], [119.32, -8.7]]]); var coords = turf.getCoords(poly); //= [[[119.32, -8.7], [119.55, -8.69], [119.51, -8.54], [119.32, -8.7]]] ``` Returns **[Array][1]\** coordinates ## containsNumber Checks if coordinates contains a number ### Parameters * `coordinates` **[Array][1]\** GeoJSON Coordinates Returns **[boolean][6]** true if Array contains a number ## geojsonType Enforce expectations about types of GeoJSON objects for Turf. ### Parameters * `value` **[GeoJSON][7]** any GeoJSON object * `type` **[string][8]** expected GeoJSON type * `name` **[string][8]** name of calling function * Throws **[Error][9]** if value is not the expected type. Returns **void** ## featureOf Enforce expectations about types of [Feature][5] inputs for Turf. Internally this uses [geojsonType][10] to judge geometry types. ### Parameters * `feature` **[Feature][5]** a feature with an expected geometry type * `type` **[string][8]** expected GeoJSON type * `name` **[string][8]** name of calling function * Throws **[Error][9]** error if value is not the expected type. Returns **void** ## collectionOf Enforce expectations about types of [FeatureCollection][11] inputs for Turf. Internally this uses [geojsonType][10] to judge geometry types. ### Parameters * `featureCollection` **[FeatureCollection][11]** a FeatureCollection for which features will be judged * `type` **[string][8]** expected GeoJSON type * `name` **[string][8]** name of calling function * Throws **[Error][9]** if value is not the expected type. ## getGeom Get Geometry from Feature or Geometry Object ### Parameters * `geojson` **([Feature][5] | [Geometry][3])** GeoJSON Feature or Geometry Object ### Examples ```javascript var point = { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [110, 40] } } var geom = turf.getGeom(point) //={"type": "Point", "coordinates": [110, 40]} ``` * Throws **[Error][9]** if geojson is not a Feature or Geometry Object Returns **([Geometry][3] | null)** GeoJSON Geometry Object ## getType Get GeoJSON object's type, Geometry type is prioritize. ### Parameters * `geojson` **[GeoJSON][7]** GeoJSON object * `_name` **[string][8]?** * `name` **[string][8]** name of the variable to display in error message (unused) (optional, default `"geojson"`) ### Examples ```javascript var point = { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [110, 40] } } var geom = turf.getType(point) //="Point" ``` Returns **[string][8]** GeoJSON type [1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array [2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [3]: https://tools.ietf.org/html/rfc7946#section-3.1 [4]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [5]: https://tools.ietf.org/html/rfc7946#section-3.2 [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean [7]: https://tools.ietf.org/html/rfc7946#section-3 [8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String [9]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error [10]: #geojsontype [11]: https://tools.ietf.org/html/rfc7946#section-3.3 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/invariant ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-invariant/bench.ts ================================================ import Benchmark from "benchmark"; import * as helpers from "@turf/helpers"; import * as invariant from "./index.js"; const pt = helpers.point([-75, 40]); const line = helpers.lineString([ [-75, 40], [-70, 50], ]); const poly = helpers.polygon([ [ [-75, 40], [-80, 50], [-70, 50], [-75, 40], ], ]); const fc = helpers.points([ [-75, 40], [20, 50], ]); const suite = new Benchmark.Suite("turf-invariant"); /** * Benchmark Results * * getCoord -- pt x 60,659,161 ops/sec ±1.34% (89 runs sampled) * getCoords -- line x 63,252,327 ops/sec ±1.19% (81 runs sampled) * getCoords -- poly x 62,053,169 ops/sec ±1.49% (85 runs sampled) * collectionOf -- fc x 24,204,462 ops/sec ±2.00% (81 runs sampled) * getType -- pt x 59,544,117 ops/sec ±1.14% (87 runs sampled) */ suite .add("getCoord -- pt", () => invariant.getCoord(pt)) .add("getCoords -- line", () => invariant.getCoords(line)) .add("getCoords -- poly", () => invariant.getCoords(poly)) .add("collectionOf -- fc", () => invariant.collectionOf(fc, "Point", "bench")) .add("getType -- pt", () => invariant.getType(pt)) .on("cycle", (e) => console.log(String(e.target))) .run(); ================================================ FILE: packages/turf-invariant/index.ts ================================================ import { Feature, FeatureCollection, Geometry, LineString, MultiPoint, MultiLineString, MultiPolygon, Point, Polygon, } from "geojson"; import { isNumber } from "@turf/helpers"; /** * Unwrap a coordinate from a Point Feature, Geometry or a single coordinate. * * @function * @param {Array|Geometry|Feature} coord GeoJSON Point or an Array of numbers * @returns {Array} coordinates * @example * var pt = turf.point([10, 10]); * * var coord = turf.getCoord(pt); * //= [10, 10] */ function getCoord(coord: Feature | Point | number[]): number[] { if (!coord) { throw new Error("coord is required"); } if (!Array.isArray(coord)) { if ( coord.type === "Feature" && coord.geometry !== null && coord.geometry.type === "Point" ) { return [...coord.geometry.coordinates]; } if (coord.type === "Point") { return [...coord.coordinates]; } } if ( Array.isArray(coord) && coord.length >= 2 && !Array.isArray(coord[0]) && !Array.isArray(coord[1]) ) { return [...coord]; } throw new Error("coord must be GeoJSON Point or an Array of numbers"); } /** * Unwrap coordinates from a Feature, Geometry Object or an Array * * @function * @param {Array|Geometry|Feature} coords Feature, Geometry Object or an Array * @returns {Array} coordinates * @example * var poly = turf.polygon([[[119.32, -8.7], [119.55, -8.69], [119.51, -8.54], [119.32, -8.7]]]); * * var coords = turf.getCoords(poly); * //= [[[119.32, -8.7], [119.55, -8.69], [119.51, -8.54], [119.32, -8.7]]] */ function getCoords< G extends | Point | LineString | Polygon | MultiPoint | MultiLineString | MultiPolygon, >(coords: any[] | Feature | G): any[] { if (Array.isArray(coords)) { return coords; } // Feature if (coords.type === "Feature") { if (coords.geometry !== null) { return coords.geometry.coordinates; } } else { // Geometry if (coords.coordinates) { return coords.coordinates; } } throw new Error( "coords must be GeoJSON Feature, Geometry Object or an Array" ); } /** * Checks if coordinates contains a number * * @function * @param {Array} coordinates GeoJSON Coordinates * @returns {boolean} true if Array contains a number */ function containsNumber(coordinates: any[]): boolean { if ( coordinates.length > 1 && isNumber(coordinates[0]) && isNumber(coordinates[1]) ) { return true; } if (Array.isArray(coordinates[0]) && coordinates[0].length) { return containsNumber(coordinates[0]); } throw new Error("coordinates must only contain numbers"); } /** * Enforce expectations about types of GeoJSON objects for Turf. * * @function * @param {GeoJSON} value any GeoJSON object * @param {string} type expected GeoJSON type * @param {string} name name of calling function * @throws {Error} if value is not the expected type. */ function geojsonType(value: any, type: string, name: string): void { if (!type || !name) { throw new Error("type and name required"); } if (!value || value.type !== type) { throw new Error( "Invalid input to " + name + ": must be a " + type + ", given " + value.type ); } } /** * Enforce expectations about types of {@link Feature} inputs for Turf. * Internally this uses {@link geojsonType} to judge geometry types. * * @function * @param {Feature} feature a feature with an expected geometry type * @param {string} type expected GeoJSON type * @param {string} name name of calling function * @throws {Error} error if value is not the expected type. */ function featureOf(feature: Feature, type: string, name: string): void { if (!feature) { throw new Error("No feature passed"); } if (!name) { throw new Error(".featureOf() requires a name"); } if (!feature || feature.type !== "Feature" || !feature.geometry) { throw new Error( "Invalid input to " + name + ", Feature with geometry required" ); } if (!feature.geometry || feature.geometry.type !== type) { throw new Error( "Invalid input to " + name + ": must be a " + type + ", given " + feature.geometry.type ); } } /** * Enforce expectations about types of {@link FeatureCollection} inputs for Turf. * Internally this uses {@link geojsonType} to judge geometry types. * * @function * @param {FeatureCollection} featureCollection a FeatureCollection for which features will be judged * @param {string} type expected GeoJSON type * @param {string} name name of calling function * @throws {Error} if value is not the expected type. */ function collectionOf( featureCollection: FeatureCollection, type: string, name: string ) { if (!featureCollection) { throw new Error("No featureCollection passed"); } if (!name) { throw new Error(".collectionOf() requires a name"); } if (!featureCollection || featureCollection.type !== "FeatureCollection") { throw new Error( "Invalid input to " + name + ", FeatureCollection required" ); } for (const feature of featureCollection.features) { if (!feature || feature.type !== "Feature" || !feature.geometry) { throw new Error( "Invalid input to " + name + ", Feature with geometry required" ); } if (!feature.geometry || feature.geometry.type !== type) { throw new Error( "Invalid input to " + name + ": must be a " + type + ", given " + feature.geometry.type ); } } } /** * Get Geometry from Feature or Geometry Object * * @param {Feature|Geometry} geojson GeoJSON Feature or Geometry Object * @returns {Geometry|null} GeoJSON Geometry Object * @throws {Error} if geojson is not a Feature or Geometry Object * @example * var point = { * "type": "Feature", * "properties": {}, * "geometry": { * "type": "Point", * "coordinates": [110, 40] * } * } * var geom = turf.getGeom(point) * //={"type": "Point", "coordinates": [110, 40]} */ function getGeom(geojson: Feature | G): G { if (geojson.type === "Feature") { return geojson.geometry; } return geojson; } /** * Get GeoJSON object's type, Geometry type is prioritize. * * @param {GeoJSON} geojson GeoJSON object * @param {string} [name="geojson"] name of the variable to display in error message (unused) * @returns {string} GeoJSON type * @example * var point = { * "type": "Feature", * "properties": {}, * "geometry": { * "type": "Point", * "coordinates": [110, 40] * } * } * var geom = turf.getType(point) * //="Point" */ function getType( geojson: Feature | FeatureCollection | Geometry, _name?: string ): string { if (geojson.type === "FeatureCollection") { return "FeatureCollection"; } if (geojson.type === "GeometryCollection") { return "GeometryCollection"; } if (geojson.type === "Feature" && geojson.geometry !== null) { return geojson.geometry.type; } return geojson.type; } export { getCoord, getCoords, containsNumber, geojsonType, featureOf, collectionOf, getGeom, getType, }; // No default export! ================================================ FILE: packages/turf-invariant/package.json ================================================ { "name": "@turf/invariant", "version": "7.3.4", "description": "Lightweight utility for input validation and data extraction in Turf.js. Ensures GeoJSON inputs are in the correct format and extracts specific components like coordinates or geometries.", "author": "Turf Authors", "contributors": [ "Tom MacWright <@tmcw>", "Denis Carriere <@DenisCarriere>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "invariant", "expectations" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-invariant/test.ts ================================================ import test from "tape"; import { point, lineString, polygon, featureCollection, geometryCollection, } from "@turf/helpers"; import * as invariant from "./index.js"; test("invariant -- containsNumber", (t) => { t.equals(invariant.containsNumber([1, 1]), true); t.equals( invariant.containsNumber([ [1, 1], [1, 1], ]), true ); t.equals( invariant.containsNumber([ [ [1, 1], [1, 1], ], [1, 1], ]), true ); //# Ensure recursive call handles Max callstack exceeded t.throws( () => { invariant.containsNumber(["foo", 1]); }, /coordinates must only contain numbers/, "Must only contain numbers" ); t.end(); }); test("invariant -- geojsonType", (t) => { t.throws( () => { invariant.geojsonType(); }, /type and name required/, ".geojsonType() name requirement" ); t.throws( () => { invariant.geojsonType({}, undefined, "myfn"); }, /type and name required/, "invalid types" ); t.throws( () => { invariant.geojsonType( { type: "Point", coordinates: [0, 0], }, "Polygon", "myfn" ); }, /Invalid input to myfn: must be a Polygon, given Point/, "invalid geometry type" ); t.doesNotThrow(() => { invariant.geojsonType( { type: "Point", coordinates: [0, 0], }, "Point", "myfn" ); }, "valid geometry"); t.end(); }); test("invariant -- featureOf", (t) => { t.throws( () => { invariant.featureOf( { type: "Feature", geometry: { type: "Point", coordinates: [0, 0], }, properties: {}, }, "Polygon" ); }, /requires a name/, "requires a name" ); t.throws( () => { invariant.featureOf({}, "Polygon", "foo"); }, /Feature with geometry required/, "requires a feature" ); t.throws( () => { invariant.featureOf( { type: "Feature", geometry: { type: "Point", coordinates: [0, 0], }, properties: {}, }, "Polygon", "myfn" ); }, /Invalid input to myfn: must be a Polygon, given Point/, "invalid geometry type" ); t.doesNotThrow(() => { invariant.featureOf( { type: "Feature", geometry: { type: "Point", coordinates: [0, 0], }, properties: {}, }, "Point", "myfn" ); }, "valid geometry type"); t.end(); }); test("invariant -- collectionOf", (t) => { t.throws( () => { invariant.collectionOf( { type: "FeatureCollection", features: [ { type: "Feature", geometry: { type: "Point", coordinates: [0, 0], }, properties: {}, }, ], }, "Polygon", "myfn" ); }, /Invalid input to myfn: must be a Polygon, given Point/, "invalid geometry type" ); t.throws( () => { invariant.collectionOf({}, "Polygon"); }, /requires a name/, "requires a name" ); t.throws( () => { invariant.collectionOf({}, "Polygon", "foo"); }, /FeatureCollection required/, "requires a featurecollection" ); t.doesNotThrow(() => { invariant.collectionOf( { type: "FeatureCollection", features: [ { type: "Feature", geometry: { type: "Point", coordinates: [0, 0], }, properties: {}, }, ], }, "Point", "myfn" ); }, "valid geometry type"); t.end(); }); test("invariant -- getCoord", (t) => { t.throws(() => invariant.getCoord( lineString([ [1, 2], [3, 4], ]) ) ); t.throws(() => invariant.getCoord( polygon([ [ [-75, 40], [-80, 50], [-70, 50], [-75, 40], ], ]) ) ); t.deepEqual( invariant.getCoord({ type: "Point", coordinates: [1, 2], }), [1, 2] ); t.deepEqual(invariant.getCoord(point([1, 2])), [1, 2]); t.end(); }); test("invariant -- getCoord", (t) => { t.throws(() => invariant.getCoord({ type: "LineString", coordinates: [ [1, 2], [3, 4], ], }) ); t.throws(() => invariant.getCoord(false), "false should throw Error"); t.throws(() => invariant.getCoord(null), "null should throw Error"); t.throws( () => invariant.getCoord( lineString([ [1, 2], [3, 4], ]) ), "LineString is not a Point" ); t.throws( () => invariant.getCoord([10]), "Single number Array should throw Error" ); // t.throws(() => invariant.getCoord(['A', 'B']), 'Array of String should throw Error'); // t.throws(() => invariant.getCoord([1, 'foo']), 'Mixed Array should throw Error'); t.deepEqual( invariant.getCoord({ type: "Point", coordinates: [1, 2], }), [1, 2] ); t.deepEqual(invariant.getCoord(point([1, 2])), [1, 2]); t.deepEqual(invariant.getCoord([1, 2]), [1, 2]); t.end(); }); test("invariant -- getCoords", (t) => { t.throws(() => invariant.getCoords({ type: "LineString", coordinates: null, }) ); t.throws(() => invariant.getCoords(false)); t.throws(() => invariant.getCoords(null)); t.throws(() => invariant.containsNumber(invariant.getCoords(["A", "B", "C"])) ); t.throws(() => invariant.containsNumber(invariant.getCoords([1, "foo", "bar"])) ); t.deepEqual( invariant.getCoords({ type: "LineString", coordinates: [ [1, 2], [3, 4], ], }), [ [1, 2], [3, 4], ] ); t.deepEqual(invariant.getCoords(point([1, 2])), [1, 2]); t.deepEqual( invariant.getCoords( lineString([ [1, 2], [3, 4], ]) ), [ [1, 2], [3, 4], ] ); t.deepEqual(invariant.getCoords([1, 2]), [1, 2]); t.end(); }); test("invariant -- getGeom", (t) => { const pt = point([1, 1]); const line = lineString([ [0, 1], [1, 1], ]); const geomCollection = geometryCollection([pt.geometry, line.geometry]); t.deepEqual(invariant.getGeom(pt), pt.geometry, "Point"); t.deepEqual(invariant.getGeom(line.geometry), line.geometry, "LineString"); t.deepEqual( invariant.getGeom(geomCollection), geomCollection.geometry, "GeometryCollection" ); t.deepEqual( invariant.getGeom(geomCollection.geometry), geomCollection.geometry, "GeometryCollection" ); t.end(); }); test("invariant -- getType", (t) => { const pt = point([1, 1]); const line = lineString([ [0, 1], [1, 1], ]); const collection = featureCollection([pt, line]); const geomCollection = geometryCollection([pt.geometry, line.geometry]); t.deepEqual(invariant.getType(pt), "Point"); t.deepEqual(invariant.getType(line.geometry), "LineString"); t.deepEqual(invariant.getType(geomCollection), "GeometryCollection"); t.deepEqual(invariant.getType(collection), "FeatureCollection"); // t.throws(() => invariant.getType(null), /geojson is required/, 'geojson is required'); t.end(); }); // https://github.com/Turfjs/turf/issues/853 test("null geometries", (t) => { const nullFeature = { type: "Feature", properties: {}, geometry: null, }; // t.throws(() => invariant.getGeom(null), /geojson is required/, 'getGeom => geojson is required'); t.throws( () => invariant.getCoords(nullFeature), /coords must be GeoJSON Feature, Geometry Object or an Array/, "getCoords => coords must be GeoJSON Feature, Geometry Object or an Array" ); t.throws( () => invariant.getCoord(nullFeature), /coord must be GeoJSON Point or an Array of numbers/, "getCoord => coord must be GeoJSON Point or an Array of numbers" ); // t.equal(invariant.getGeom(nullFeature), null, 'getGeom => null'); t.end(); }); ================================================ FILE: packages/turf-invariant/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-invariant/types.ts ================================================ import * as helpers from "@turf/helpers"; import { GeometryCollection, LineString, Point, Polygon, Position, } from "geojson"; import * as invariant from "./index.js"; /** * Fixtures */ const pt = helpers.point([0, 0]); const line = helpers.lineString([ [0, 0], [1, 1], ]); const poly = helpers.polygon([ [ [0, 0], [1, 1], [2, 2], [0, 0], ], ]); const gc = helpers.geometryCollection([ pt.geometry, line.geometry, poly.geometry, ]); const fc = helpers.featureCollection([ pt, line, poly, ]); /** * invariant.getGeom */ // invariant.getGeom(fc); // Argument of type 'FeatureCollection' is not assignable to parameter of type const gcGeom: GeometryCollection = invariant.getGeom(gc); const pointGeom: Point = invariant.getGeom(pt); const lineGeom: LineString = invariant.getGeom(line); const polyGeom: Polygon = invariant.getGeom(poly); /** * invariant.getType */ const type = invariant.getType(pt); /** * getCoord */ invariant.getCoord(pt); invariant.getCoord(pt.geometry); invariant.getCoord(pt.geometry.coordinates); let coordZ = [10, 30, 2000]; coordZ = invariant.getCoord(coordZ); /** * getCoords */ invariant.getCoords(pt.geometry)[0].toFixed(); invariant.getCoords(pt.geometry.coordinates)[0].toFixed(); invariant.getCoords(pt)[0].toFixed(); invariant.getCoords(line.geometry)[0][0].toFixed(); invariant.getCoords(line.geometry.coordinates)[0][0].toFixed(); invariant.getCoords(line)[0][0].toFixed(); invariant.getCoords(poly)[0][0][0].toFixed(); invariant.getCoords(poly.geometry)[0][0][0].toFixed(); invariant.getCoords(poly.geometry.coordinates)[0][0][0].toFixed(); const lineCoords: Position[] = [ [10, 30], [40, 40], ]; invariant.getCoords(lineCoords)[0][0].toFixed(); ================================================ FILE: packages/turf-isobands/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-isobands/README.md ================================================ # @turf/isobands ## isobands Takes a square or rectangular grid [FeatureCollection][1] of [Point][2] features with z-values and an array of value breaks and generates filled contour isobands. ### Parameters * `pointGrid` **[FeatureCollection][1]<[Point][2]>** input points - must be square or rectangular and already gridded. That is, to have consistent x and y dimensions and be at least 2x2 in size. * `breaks` **[Array][3]<[number][4]>** where to draw contours * `options` **[Object][5]** options on output (optional, default `{}`) * `options.zProperty` **[string][6]** the property name in `points` from which z-values will be pulled (optional, default `'elevation'`) * `options.commonProperties` **[Object][5]** GeoJSON properties passed to ALL isobands (optional, default `{}`) * `options.breaksProperties` **[Array][3]<[Object][5]>** GeoJSON properties passed, in order, to the correspondent isoband (order defined by breaks) (optional, default `[]`) Returns **[FeatureCollection][1]<[MultiPolygon][7]>** a FeatureCollection of [MultiPolygon][7] features representing isobands [1]: https://tools.ietf.org/html/rfc7946#section-3.3 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String [7]: https://tools.ietf.org/html/rfc7946#section-3.1.7 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/isobands ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-isobands/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { matrixToGrid } from "./lib/matrix-to-grid.js"; import { isobands } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); // Define Fixtures const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { filename, name: path.parse(filename).name, jsondata: loadJsonFileSync(directory + filename), }; }); /** * Benchmark Results * * bigMatrix x 73.43 ops/sec ±2.12% (62 runs sampled) * matrix1 x 5,205 ops/sec ±3.13% (78 runs sampled) * matrix2 x 2,333 ops/sec ±9.38% (71 runs sampled) * pointGrid x 3,201 ops/sec ±1.81% (78 runs sampled) */ const suite = new Benchmark.Suite("turf-isobands"); for (const { name, jsondata, filename } of fixtures) { let breaks, points, zProperty, isobandProperties, commonProperties; // allow geojson featureCollection... if (filename.includes("geojson")) { breaks = jsondata.properties.breaks; zProperty = jsondata.properties.zProperty; commonProperties = jsondata.properties.commonProperties; isobandProperties = jsondata.properties.isobandProperties; points = jsondata; } else { // ...or matrix input const matrix = jsondata.matrix; const cellSize = jsondata.cellSize; const origin = jsondata.origin; breaks = jsondata.breaks; zProperty = jsondata.zProperty; points = matrixToGrid(matrix, origin, cellSize, { zProperty, units: jsondata.units, }); commonProperties = jsondata.commonProperties; isobandProperties = jsondata.isobandProperties; } isobands(points, breaks, { zProperty, commonProperties, isobandProperties, }); // isobands(geojson, 'elevation', [5, 45, 55, 65, 85, 95, 105, 120, 180]); suite.add(name, () => isobands(points, breaks, { zProperty, commonProperties, isobandProperties, }) ); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-isobands/index.ts ================================================ import { bbox } from "@turf/bbox"; import { area } from "@turf/area"; import { booleanPointInPolygon } from "@turf/boolean-point-in-polygon"; import { explode } from "@turf/explode"; import { collectionOf } from "@turf/invariant"; import { polygon, multiPolygon, featureCollection, isObject, } from "@turf/helpers"; import { FeatureCollection, Point, GeoJsonProperties, MultiPolygon, Position, Polygon, Feature, } from "geojson"; import { gridToMatrix } from "./lib/grid-to-matrix.js"; type GroupRingProps = { [prop: string]: string }; type GroupedRings = | { groupedRings: Position[][][]; } | GroupRingProps; /** * Takes a square or rectangular grid {@link FeatureCollection} of {@link Point} features with z-values and an array of * value breaks and generates filled contour isobands. * * @function * @param {FeatureCollection} pointGrid input points - must be square or rectangular and already gridded. That is, to have consistent x and y dimensions and be at least 2x2 in size. * @param {Array} breaks where to draw contours * @param {Object} [options={}] options on output * @param {string} [options.zProperty='elevation'] the property name in `points` from which z-values will be pulled * @param {Object} [options.commonProperties={}] GeoJSON properties passed to ALL isobands * @param {Array} [options.breaksProperties=[]] GeoJSON properties passed, in order, to the correspondent isoband (order defined by breaks) * @returns {FeatureCollection} a FeatureCollection of {@link MultiPolygon} features representing isobands */ function isobands( pointGrid: FeatureCollection, breaks: number[], options?: { zProperty?: string; commonProperties?: GeoJsonProperties; breaksProperties?: GeoJsonProperties[]; } ): FeatureCollection { // Optional parameters options = options || {}; if (!isObject(options)) throw new Error("options is invalid"); const zProperty = options.zProperty || "elevation"; const commonProperties = options.commonProperties || {}; const breaksProperties = options.breaksProperties || []; // Validation collectionOf(pointGrid, "Point", "Input must contain Points"); if (!breaks) throw new Error("breaks is required"); if (!Array.isArray(breaks)) throw new Error("breaks is not an Array"); if (!isObject(commonProperties)) throw new Error("commonProperties is not an Object"); if (!Array.isArray(breaksProperties)) throw new Error("breaksProperties is not an Array"); // Isoband methods const matrix = gridToMatrix(pointGrid, { zProperty: zProperty, flip: true }); // A quick note on what 'top' and 'bottom' mean in coordinate system of `matrix`: // Remember that the southern hemisphere is represented by negative numbers, // so a matrix Y of 0 is actually the *bottom*, and a Y of dy - 1 is the *top*. // check that the resulting matrix has consistent x and y dimensions and // has at least a 2x2 size so that we can actually build grid squares const dx = matrix[0].length; if (matrix.length < 2 || dx < 2) { throw new Error("Matrix of points must be at least 2x2"); } for (let i = 1; i < matrix.length; i++) { if (matrix[i].length !== dx) { throw new Error("Matrix of points is not uniform in the x dimension"); } } let contours = createContourLines(matrix, breaks, zProperty); contours = rescaleContours(contours, matrix, pointGrid); const multipolygons = contours.map((contour, index) => { if (breaksProperties[index] && !isObject(breaksProperties[index])) { throw new Error("Each mappedProperty is required to be an Object"); } // collect all properties const contourProperties = { ...commonProperties, ...breaksProperties[index], }; contourProperties[zProperty] = (contour as GroupRingProps)[zProperty]; const multiP = multiPolygon( contour.groupedRings as Position[][][], contourProperties ); return multiP; }); return featureCollection(multipolygons); } /** * Creates the contours lines (featuresCollection of polygon features) from the 2D data grid * * Marchingsquares process the grid data as a 3D representation of a function on a 2D plane, therefore it * assumes the points (x-y coordinates) are one 'unit' distance. The result of the IsoBands function needs to be * rescaled, with turfjs, to the original area and proportions on the map * * @private * @param {Array>} matrix Grid Data * @param {Array} breaks Breaks * @param {string} [property='elevation'] Property * @returns {Array} contours */ function createContourLines( matrix: number[][], breaks: number[], property: string ): GroupedRings[] { const contours: GroupedRings[] = []; let prevSegments: Position[][]; for (let i = 1; i < breaks.length; i++) { // the first time through this loop, we need to create the segments for the first break if (i === 1) { prevSegments = getSegments(matrix, +breaks[0]); } const upperBand = +breaks[i]; // make sure the breaks value is a number const lowerBand = +breaks[i - 1]; const segments = getSegments(matrix, upperBand); // We will use breaks[i]'s rings to help close breaks[i-1]'s rings. // breaks[i]'s rings are clockwise from the point of view of breaks[i - 1] and must be reversed for proper counterclockwise ordering. // At the same time, we clone each Position, so that we don't use the same Position Array instance in different output geometries. const reverseSegments = segments.map((segment) => // note that we (in-place) reverse the array result of .map and not the original segment itself. segment.map((pos) => [pos[0], pos[1]]).reverse() ); // use the segments from breaks[i-1] and breaks[i] to create rings, which will // then be combined into polygons in the next steps. const rings = assembleRings(prevSegments!.concat(reverseSegments), matrix); // as per GeoJson rules for creating a Polygon, make sure the first element // in the array of LinearRings represents the exterior ring (i.e. biggest area), // and any subsequent elements represent interior rings (i.e. smaller area); // this avoids rendering issues of the MultiPolygons on the map const orderedRings = orderByArea(rings); const polygons = groupNestedRings(orderedRings); // If we got no polygons, we can infer that the values are either all above, below, or between the thresholds. // If everything is between, we need a polygon that covers the entire grid // see https://github.com/Turfjs/turf/issues/1797, https://github.com/Turfjs/turf/issues/2956 if ( polygons.length === 0 && matrix[0][0] < upperBand && matrix[0][0] >= lowerBand ) { const dx = matrix[0].length; const dy = matrix.length; polygons.push([ [ [0, 0], [dx - 1, 0], [dx - 1, dy - 1], [0, dy - 1], [0, 0], ], ]); } // this can add an entry where groupedRings is exactly an empty array contours.push({ groupedRings: polygons, [property]: lowerBand + "-" + upperBand, }); prevSegments = segments; } return contours; } /** * Run marching squares across the matrix and calculate the implied counterclockwise ordered line segments from each cell. * @see https://en.wikipedia.org/wiki/Marching_squares for an visualization of the different cases * @private */ function getSegments( matrix: ReadonlyArray>, threshold: number ): [Position, Position][] { const segments: [Position, Position][] = []; const dx = matrix[0].length; const dy = matrix.length; for (let y = 0; y < dy - 1; y++) { for (let x = 0; x < dx - 1; x++) { const tr = matrix[y + 1][x + 1]; const br = matrix[y][x + 1]; const bl = matrix[y][x]; const tl = matrix[y + 1][x]; let grid = (tl >= threshold ? 8 : 0) | (tr >= threshold ? 4 : 0) | (br >= threshold ? 2 : 0) | (bl >= threshold ? 1 : 0); switch (grid) { case 0: continue; case 1: segments.push([ [x + frac(bl, br), y], [x, y + frac(bl, tl)], ]); break; case 2: segments.push([ [x + 1, y + frac(br, tr)], [x + frac(bl, br), y], ]); break; case 3: segments.push([ [x + 1, y + frac(br, tr)], [x, y + frac(bl, tl)], ]); break; case 4: segments.push([ [x + frac(tl, tr), y + 1], [x + 1, y + frac(br, tr)], ]); break; case 5: { // use the average of the 4 corners to differentiate the saddle case and correctly honor the counter-clockwise winding const avg = (tl + tr + br + bl) / 4; const above = avg >= threshold; if (above) { segments.push( [ [x + frac(tl, tr), y + 1], [x, y + frac(bl, tl)], ], [ [x + frac(bl, br), y], [x + 1, y + frac(br, tr)], ] ); } else { segments.push( [ [x + frac(tl, tr), y + 1], [x + 1, y + frac(br, tr)], ], [ [x + frac(bl, br), y], [x, y + frac(bl, tl)], ] ); } break; } case 6: segments.push([ [x + frac(tl, tr), y + 1], [x + frac(bl, br), y], ]); break; case 7: segments.push([ [x + frac(tl, tr), y + 1], [x, y + frac(bl, tl)], ]); break; case 8: segments.push([ [x, y + frac(bl, tl)], [x + frac(tl, tr), y + 1], ]); break; case 9: segments.push([ [x + frac(bl, br), y], [x + frac(tl, tr), y + 1], ]); break; case 10: { const avg = (tl + tr + br + bl) / 4; const above = avg >= threshold; if (above) { segments.push( [ [x, y + frac(bl, tl)], [x + frac(bl, br), y], ], [ [x + 1, y + frac(br, tr)], [x + frac(tl, tr), y + 1], ] ); } else { segments.push( [ [x, y + frac(bl, tl)], [x + frac(tl, tr), y + 1], ], [ [x + 1, y + frac(br, tr)], [x + frac(bl, br), y], ] ); } break; } case 11: segments.push([ [x + 1, y + frac(br, tr)], [x + frac(tl, tr), y + 1], ]); break; case 12: segments.push([ [x, y + frac(bl, tl)], [x + 1, y + frac(br, tr)], ]); break; case 13: segments.push([ [x + frac(bl, br), y], [x + 1, y + frac(br, tr)], ]); break; case 14: segments.push([ [x, y + frac(bl, tl)], [x + frac(bl, br), y], ]); break; case 15: // all above continue; } } } return segments; // get the linear interpolation fraction of how far z is between z0 and z1 // See https://github.com/fschutt/marching-squares/blob/master/src/lib.rs function frac(z0: number, z1: number): number { if (z0 === z1) { return 0.5; } let t = (threshold - z0) / (z1 - z0); return t > 1 ? 1 : t < 0 ? 0 : t; } } /** * Create a list of closed rings from the combined segments from breaks[i] and breaks[i-1]. * @private */ function assembleRings( segments: Position[][], matrix: number[][] ): Position[][] { const dy = matrix.length; const dx = matrix[0].length; const contours: Position[][] = []; const result: Position[][] = []; // Assemble contiguous line segments into contours. These are at least LineStrings, // but for features that do not touch the edge of the matrix, they will actually wind up // being an entirely closed LinearRing. while (segments.length > 0) { const contour: Position[] = [...segments.shift()!]; contours.push(contour); let found: boolean; do { found = false; for (let i = 0; i < segments.length; i++) { const segment = segments[i]; // add the segment's end point to the end of the contour if ( segment[0][0] === contour[contour.length - 1][0] && segment[0][1] === contour[contour.length - 1][1] ) { found = true; contour.push(segment[1]); segments.splice(i, 1); break; } // add the segment's start point to the start of the contour if ( segment[1][0] === contour[0][0] && segment[1][1] === contour[0][1] ) { found = true; contour.unshift(segment[0]); segments.splice(i, 1); break; } // note that because the segments are all guaranteed to be counterclockwise, // we do not join segment start to end of the contour or segment end to the start of contour } // if we reach here with found === false, that means that no remaining segments can be // added to our contour. We begin again creating the next indepdenent contour. } while (found); } // Now we loop again, taking the contours and ensuring that all of them are closed rings. // Using segments from two different breaks[], and enforcing closed polygons are the // two the major difference between the implementation of @turf/isolines and @turf/isobands. while (contours.length > 0) { const contour = contours[0]; // if a contour is closed, store it in the results and move to the next contour if ( contour[0][0] === contour[contour.length - 1][0] && contour[0][1] === contour[contour.length - 1][1] ) { result.push(contour); contours.shift(); continue; } // A contour that is not already closed is guaranteed to touch the bounding box of the matrix. // We know that the polygon is ordered counter-clockwise, so we just need to follow // the bounding box in a counterclockwise direction, looking for a contour to append. // We may need to insert new positions along the corners, but we will eventually close the ring. const end = contour[contour.length - 1]; let match: number; let corner: Position; if (end[0] === 0 && end[1] !== 0) { // left side match = getAdjacentContour( contours, (contour) => contour[0][0] === 0 && contour[0][1] < end[1], // left side, below end (a, b) => b[0][1] - a[0][1] // prefer positions to the top ); corner = [0, 0]; // bottom left corner } else if (end[1] === 0 && end[0] !== dx - 1) { // bottom side match = getAdjacentContour( contours, (contour) => contour[0][1] === 0 && contour[0][0] > end[0], // bottom side, right of end (a, b) => a[0][0] - b[0][0] // prefer positions to the left ); corner = [dx - 1, 0]; // bottom right corner } else if (end[0] === dx - 1 && end[1] !== dy - 1) { // right side match = getAdjacentContour( contours, (contour) => contour[0][0] === dx - 1 && contour[0][1] > end[1], // right side, above end (a, b) => a[0][1] - b[0][1] // prefer positions to the bottom ); corner = [dx - 1, dy - 1]; // top right corner } else if (end[1] === dy - 1 && end[0] !== 0) { // top side match = getAdjacentContour( contours, (contour) => contour[0][1] === dy - 1 && contour[0][0] < end[0], // top side, left of end (a, b) => b[0][0] - a[0][0] // prefer positions to the right ); corner = [0, dy - 1]; // top left corner } else { throw new Error("Contour not closed but is not along an edge"); } if (match === -1) { // we did not match a contour on this side, so we add a point in the corner to // continue creating our linestring in counterclockwise order. The next // run of the loop will continue trying to assemble the current contour on the next side. contour.push(corner); } else if (match === 0) { // We looped back to a contour, and it was ourself. That means that we finished closing the ring. // Add the contour to the result and remove it from the contours list to start working // on the next contour. contour.push([contour[0][0], contour[0][1]]); result.push(contour); contours.shift(); } else { // We matched a contour, but it is not the one we're currently closing. // That means that we get to add its points to our own, and remove that contour entirely. // On the next loop, we'll continue trying to close the same contour, but this time from // the final Position in contour will be the end of contours[match]. const matchedContour = contours[match]; contours.splice(match, 1); for (const p of matchedContour) { contour.push(p); } } } // If we get *just* a corner we close it immediately with itself, which results in // a 2 point 'ring', which has zero area. We omit these before returning. for (let i = 0; i < result.length; i++) { if (result[i].length < 4) { result.splice(i, 1); i--; } } return result; } /** * Transform isobands of 2D grid to polygons for the map * * @private * @param {Array} contours Contours * @param {Array>} matrix Grid Data * @param {Object} points Points by Latitude * @returns {Array} contours */ function rescaleContours( contours: GroupedRings[], matrix: number[][], points: FeatureCollection ): GroupedRings[] { // get dimensions (on the map) of the original grid const gridBbox = bbox(points); // [ minX, minY, maxX, maxY ] const originalWidth = gridBbox[2] - gridBbox[0]; const originalHeigth = gridBbox[3] - gridBbox[1]; // get origin, which is the first point of the last row on the rectangular data on the map const x0 = gridBbox[0]; const y0 = gridBbox[1]; // get number of cells per side const matrixWidth = matrix[0].length - 1; const matrixHeight = matrix.length - 1; // calculate the scaling factor between matrix and rectangular grid on the map const scaleX = originalWidth / matrixWidth; const scaleY = originalHeigth / matrixHeight; // resize and shift each point/line of the isobands return contours.map(function (contour) { contour.groupedRings = (contour.groupedRings as Position[][][]).map( function (lineRingSet) { return lineRingSet.map(function (lineRing) { return lineRing.map((point: Position) => [ point[0] * scaleX + x0, point[1] * scaleY + y0, ]); }); } ); return contour; }); } /* utility functions */ /** * Returns an array of coordinates (of LinearRings) in descending order by area * * @private * @param {Array} ringsCoords array of closed LineString * @returns {Array} array of the input LineString ordered by area */ function orderByArea(ringsCoords: Position[][]): Position[][] { const ringsWithArea = ringsCoords.map(function (coords) { // associate each lineRing with its area return { ring: coords, area: area(polygon([coords])) }; }); ringsWithArea.sort(function (a, b) { // bigger --> smaller return b.area - a.area; }); // create a new array of linearRings coordinates ordered by their area return ringsWithArea.map(function (x) { return x.ring; }); } /** * Returns an array of arrays of coordinates, each representing * a set of (coordinates of) nested LinearRings, * i.e. the first ring contains all the others * * @private * @param {Array} orderedLinearRings array of coordinates (of LinearRings) in descending order by area * @returns {Array} Array of coordinates of nested LinearRings */ function groupNestedRings(orderedLinearRings: Position[][]): Position[][][] { // create a list of the (coordinates of) LinearRings const lrList = orderedLinearRings.map((lr) => { return { lrCoordinates: lr, grouped: false }; }); const groupedLinearRingsCoords: Position[][][] = []; while (!allGrouped(lrList)) { for (let i = 0; i < lrList.length; i++) { if (!lrList[i].grouped) { // create new group starting with the larger not already grouped ring const group: Position[][] = []; group.push(lrList[i].lrCoordinates); lrList[i].grouped = true; const outerMostPoly = polygon([lrList[i].lrCoordinates]); // group all the rings contained by the outermost ring OUTER: for (let j = i + 1; j < lrList.length; j++) { if (!lrList[j].grouped) { const lrPoly = polygon([lrList[j].lrCoordinates]); if (isInside(lrPoly, outerMostPoly)) { // we cannot group any linear rings that are contained in hole rings for this group for (let k = 1; k < group.length; k++) { if (isInside(lrPoly, polygon([group[k]]))) { continue OUTER; } } group.push(lrList[j].lrCoordinates); lrList[j].grouped = true; } } } // insert the new group groupedLinearRingsCoords.push(group); } } } return groupedLinearRingsCoords; } /** * @private * @param {Polygon} testPolygon polygon of interest * @param {Polygon} targetPolygon polygon you want to compare with * @returns {boolean} true if test-Polygon is inside target-Polygon */ function isInside( testPolygon: Feature, targetPolygon: Feature ): boolean { const points = explode(testPolygon); for (let i = 0; i < points.features.length; i++) { if (!booleanPointInPolygon(points.features[i], targetPolygon)) { return false; } } return true; } /** * @private * @param {Array} list list of objects which might contain the 'group' attribute * @returns {boolean} true if all the objects in the list are marked as grouped */ function allGrouped( list: { grouped: boolean; lrCoordinates: Position[] }[] ): boolean { for (let i = 0; i < list.length; i++) { if (list[i].grouped === false) { return false; } } return true; } /** * Utility function to help close contours into rings * * @private * @param contours The list of contours * @param test Return true if a contour is a candidate for being joined * @param sort Compare two candidates, returning a positive number will swap the best match from a to b * @returns An index of the contour to join, or -1 if no contour was found */ function getAdjacentContour( contours: Position[][], test: (contour: Position[]) => boolean, sort: (a: Position[], b: Position[]) => number ): number { let match = -1; for (let j = 0; j < contours.length; j++) { if (test(contours[j])) { if (match === -1 || sort(contours[match], contours[j]) > 0) { match = j; } } } return match; } export { isobands }; export default isobands; ================================================ FILE: packages/turf-isobands/lib/grid-to-matrix.ts ================================================ import { getCoords, collectionOf } from "@turf/invariant"; import { featureEach } from "@turf/meta"; import { isObject } from "@turf/helpers"; import { Feature, FeatureCollection, Point } from "geojson"; /** * Takes a {@link Point} grid and returns a correspondent matrix {Array>} * of the 'property' values * * @name gridToMatrix * @param {FeatureCollection} grid of points * @param {Object} [options={}] Optional parameters * @param {string} [options.zProperty='elevation'] the property name in `points` from which z-values will be pulled * @param {boolean} [options.flip=false] returns the matrix upside-down * @param {boolean} [options.flags=false] flags, adding a `matrixPosition` array field ([row, column]) to its properties, * the grid points with coordinates on the matrix * @returns {Array>} matrix of property values * @example * var extent = [-70.823364, -33.553984, -70.473175, -33.302986]; * var cellSize = 3; * var grid = turf.pointGrid(extent, cellSize); * // add a random property to each point between 0 and 60 * for (var i = 0; i < grid.features.length; i++) { * grid.features[i].properties.elevation = (Math.random() * 60); * } * gridToMatrix(grid); * //= [ * [ 1, 13, 10, 9, 10, 13, 18], * [34, 8, 5, 4, 5, 8, 13], * [10, 5, 2, 1, 2, 5, 4], * [ 0, 4, 56, 19, 1, 4, 9], * [10, 5, 2, 1, 2, 5, 10], * [57, 8, 5, 4, 5, 0, 57], * [ 3, 13, 10, 9, 5, 13, 18], * [18, 13, 10, 9, 78, 13, 18] * ] */ export function gridToMatrix( grid: FeatureCollection, options: { zProperty?: string; flip?: boolean; flags?: boolean } = {} ): any { // Optional parameters if (!isObject(options)) throw new Error("options is invalid"); const { zProperty = "elevation", flip = false, flags = false } = options; // validation collectionOf(grid, "Point", "input must contain Points"); var pointsMatrix = sortPointsByLatLng(grid, flip); var matrix = []; // create property matrix from sorted points // looping order matters here for (var r = 0; r < pointsMatrix.length; r++) { var pointRow = pointsMatrix[r]; var row = []; for (var c = 0; c < pointRow.length; c++) { var point = pointRow[c]; if (point.properties == null) { point.properties = {}; } // Check if zProperty exist if (point.properties[zProperty]) row.push(point.properties[zProperty]); else row.push(0); // add flags if (flags === true) point.properties.matrixPosition = [r, c]; } matrix.push(row); } return matrix; } /** * Sorts points by latitude and longitude, creating a 2-dimensional array of points * * @private * @param {FeatureCollection} points GeoJSON Point features * @param {boolean} [flip=false] returns the matrix upside-down * @returns {Array>} points ordered by latitude and longitude */ function sortPointsByLatLng(points: FeatureCollection, flip: boolean) { var pointsByLatitude: Record[]> = {}; // divide points by rows with the same latitude featureEach(points, (point) => { var lat = getCoords(point)[1] as number; if (!pointsByLatitude[lat]) pointsByLatitude[lat] = []; pointsByLatitude[lat].push(point); }); // sort points (with the same latitude) by longitude const pointMatrix: Feature[][] = []; for (const row of Object.values(pointsByLatitude)) { pointMatrix.push(row.sort((a, b) => getCoords(a)[0] - getCoords(b)[0])); } // sort rows (of points with the same latitude) by latitude pointMatrix.sort( flip ? (a, b) => getCoords(a[0])[1] - getCoords(b[0])[1] : (a, b) => getCoords(b[0])[1] - getCoords(a[0])[1] ); return pointMatrix; } ================================================ FILE: packages/turf-isobands/lib/matrix-to-grid.ts ================================================ import { isObject, featureCollection, point, Units } from "@turf/helpers"; import { rhumbDestination } from "@turf/rhumb-destination"; import { Feature, Point } from "geojson"; /** * Takes a {@link Point} grid and returns a correspondent matrix {Array>} * of the 'property' values * * @name matrixToGrid * @param {Array>} matrix of numbers * @param {Point|Array} origin position of the first bottom-left (South-West) point of the grid * @param {number} cellSize the distance across each cell * @param {Object} [options={}] optional parameters * @param {string} [options.zProperty='elevation'] the grid points property name associated with the matrix value * @param {Object} [options.properties={}] GeoJSON properties passed to all the points * @param {Units} [options.units='kilometers'] used in calculating cellSize. Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @returns {FeatureCollection} grid of points * * @example * var matrixToGrid = require('matrix-to-grid'); * var matrix = [ * [ 1, 13, 20, 9, 10, 13, 18], * [34, 8, 0, 4, 5, 8, 13], * [10, 5, 2, 1, 2, 5, 24], * [ 0, 4, 56, 19, 0, 4, 9], * [10, 5, 2, 12, 2, 5, 10], * [57, 8, 5, 4, 5, 0, 57], * [ 3, 13, 0, 9, 5, 13, 35], * [18, 13, 10, 9, 78, 13, 18] * ]; * var origin = [-70.823364, -33.553984] * matrixToGrid(matrix, origin, 10); * //= pointGrid */ export function matrixToGrid( matrix: number[][], origin: Feature | number[], cellSize: number, options: { zProperty?: string; properties?: Record; units?: Units; } = {} ) { // Optional parameters options = options || {}; if (!isObject(options)) throw new Error("options is invalid"); var zProperty = options.zProperty || "elevation"; var properties = options.properties; var units = options.units; // validation if (!matrix || !Array.isArray(matrix)) throw new Error("matrix is required"); if (!origin) throw new Error("origin is required"); if (Array.isArray(origin)) { origin = point(origin); // Convert coordinates array to point } // all matrix array have to be of the same size var matrixCols = matrix[0].length; var matrixRows = matrix.length; for (var row = 1; row < matrixRows; row++) { if (matrix[row].length !== matrixCols) throw new Error("matrix requires all rows of equal size"); } var points = []; for (var r = 0; r < matrixRows; r++) { // create first point in the row var first = rhumbDestination(origin, cellSize * r, 0, { units: units }); if (first.properties == null) { first.properties = {}; } first.properties[zProperty] = matrix[matrixRows - 1 - r][0]; for (var prop in properties) { first.properties[prop] = properties[prop]; } points.push(first); for (var c = 1; c < matrixCols; c++) { // create the other points in the same row var pt = rhumbDestination(first, cellSize * c, 90, { units: units }); if (pt.properties == null) { pt.properties = {}; } for (var prop2 in properties) { pt.properties[prop2] = properties[prop2]; } // add matrix property var val = matrix[matrixRows - 1 - r][c]; pt.properties[zProperty] = val; points.push(pt); } } var grid = featureCollection(points); return grid; } ================================================ FILE: packages/turf-isobands/package.json ================================================ { "name": "@turf/isobands", "version": "7.3.4", "description": "Takes a grid of values (GeoJSON format) and a set of threshold ranges. It outputs polygons that group areas within those ranges, effectively creating filled contour isobands.", "author": "Turf Authors", "contributors": [ "Stefano Borghi <@stebogit>", "Matt Fedderly <@mfedderly>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "geojson", "contours", "isobands", "elevation", "topography", "filled" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@turf/envelope": "workspace:*", "@turf/point-grid": "workspace:*", "@turf/random": "workspace:*", "@turf/rhumb-destination": "workspace:*", "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/area": "workspace:*", "@turf/bbox": "workspace:*", "@turf/boolean-point-in-polygon": "workspace:*", "@turf/explode": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-isobands/test/in/1084.json ================================================ { "features": [ { "geometry": { "coordinates": [-1.3280098622587595, 50.82822842202459], "type": "Point" }, "properties": { "eta": 10000, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3280098622587595, 50.83184557982213], "type": "Point" }, "properties": { "eta": 10000, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3280098622587595, 50.83546273761967], "type": "Point" }, "properties": { "eta": 10000, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3280098622587595, 50.839079895417214], "type": "Point" }, "properties": { "eta": 10000, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3280098622587595, 50.842697053214756], "type": "Point" }, "properties": { "eta": 10000, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3280098622587595, 50.8463142110123], "type": "Point" }, "properties": { "eta": 10000, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3280098622587595, 50.84993136880984], "type": "Point" }, "properties": { "eta": 15, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3280098622587595, 50.85354852660738], "type": "Point" }, "properties": { "eta": 15, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3280098622587595, 50.857165684404926], "type": "Point" }, "properties": { "eta": 15, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3280098622587595, 50.86078284220247], "type": "Point" }, "properties": { "eta": 14, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3280098622587595, 50.86440000000001], "type": "Point" }, "properties": { "eta": 13, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3280098622587595, 50.86801715779755], "type": "Point" }, "properties": { "eta": 12, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3280098622587595, 50.871634315595095], "type": "Point" }, "properties": { "eta": 11, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3280098622587595, 50.87525147339264], "type": "Point" }, "properties": { "eta": 11, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3280098622587595, 50.87886863119018], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3280098622587595, 50.88248578898772], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3280098622587595, 50.886102946785265], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3280098622587595, 50.88972010458281], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3280098622587595, 50.89333726238035], "type": "Point" }, "properties": { "eta": 11, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3280098622587595, 50.89695442017789], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3280098622587595, 50.900571577975434], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.32228331608052, 50.82822842202459], "type": "Point" }, "properties": { "eta": 10000, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.32228331608052, 50.83184557982213], "type": "Point" }, "properties": { "eta": 10000, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.32228331608052, 50.83546273761967], "type": "Point" }, "properties": { "eta": 10000, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.32228331608052, 50.839079895417214], "type": "Point" }, "properties": { "eta": 10000, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.32228331608052, 50.842697053214756], "type": "Point" }, "properties": { "eta": 10000, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.32228331608052, 50.8463142110123], "type": "Point" }, "properties": { "eta": 17, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.32228331608052, 50.84993136880984], "type": "Point" }, "properties": { "eta": 17, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.32228331608052, 50.85354852660738], "type": "Point" }, "properties": { "eta": 16, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.32228331608052, 50.857165684404926], "type": "Point" }, "properties": { "eta": 15, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.32228331608052, 50.86078284220247], "type": "Point" }, "properties": { "eta": 15, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.32228331608052, 50.86440000000001], "type": "Point" }, "properties": { "eta": 16, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.32228331608052, 50.86801715779755], "type": "Point" }, "properties": { "eta": 12, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.32228331608052, 50.871634315595095], "type": "Point" }, "properties": { "eta": 12, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.32228331608052, 50.87525147339264], "type": "Point" }, "properties": { "eta": 13, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.32228331608052, 50.87886863119018], "type": "Point" }, "properties": { "eta": 12, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.32228331608052, 50.88248578898772], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.32228331608052, 50.886102946785265], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.32228331608052, 50.88972010458281], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.32228331608052, 50.89333726238035], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.32228331608052, 50.89695442017789], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.32228331608052, 50.900571577975434], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3165567699022807, 50.82822842202459], "type": "Point" }, "properties": { "eta": 10000, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3165567699022807, 50.83184557982213], "type": "Point" }, "properties": { "eta": 10000, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3165567699022807, 50.83546273761967], "type": "Point" }, "properties": { "eta": 10000, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3165567699022807, 50.839079895417214], "type": "Point" }, "properties": { "eta": 10000, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3165567699022807, 50.842697053214756], "type": "Point" }, "properties": { "eta": 18, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3165567699022807, 50.8463142110123], "type": "Point" }, "properties": { "eta": 18, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3165567699022807, 50.84993136880984], "type": "Point" }, "properties": { "eta": 17, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3165567699022807, 50.85354852660738], "type": "Point" }, "properties": { "eta": 16, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3165567699022807, 50.857165684404926], "type": "Point" }, "properties": { "eta": 15, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3165567699022807, 50.86078284220247], "type": "Point" }, "properties": { "eta": 15, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3165567699022807, 50.86440000000001], "type": "Point" }, "properties": { "eta": 14, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3165567699022807, 50.86801715779755], "type": "Point" }, "properties": { "eta": 13, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3165567699022807, 50.871634315595095], "type": "Point" }, "properties": { "eta": 14, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3165567699022807, 50.87525147339264], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3165567699022807, 50.87886863119018], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3165567699022807, 50.88248578898772], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3165567699022807, 50.886102946785265], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3165567699022807, 50.88972010458281], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3165567699022807, 50.89333726238035], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3165567699022807, 50.89695442017789], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3165567699022807, 50.900571577975434], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3108302237240412, 50.82822842202459], "type": "Point" }, "properties": { "eta": 10000, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3108302237240412, 50.83184557982213], "type": "Point" }, "properties": { "eta": 10000, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3108302237240412, 50.83546273761967], "type": "Point" }, "properties": { "eta": 10000, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3108302237240412, 50.839079895417214], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3108302237240412, 50.842697053214756], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3108302237240412, 50.8463142110123], "type": "Point" }, "properties": { "eta": 18, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3108302237240412, 50.84993136880984], "type": "Point" }, "properties": { "eta": 18, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3108302237240412, 50.85354852660738], "type": "Point" }, "properties": { "eta": 19, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3108302237240412, 50.857165684404926], "type": "Point" }, "properties": { "eta": 15, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3108302237240412, 50.86078284220247], "type": "Point" }, "properties": { "eta": 15, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3108302237240412, 50.86440000000001], "type": "Point" }, "properties": { "eta": 16, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3108302237240412, 50.86801715779755], "type": "Point" }, "properties": { "eta": 14, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3108302237240412, 50.871634315595095], "type": "Point" }, "properties": { "eta": 14, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3108302237240412, 50.87525147339264], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3108302237240412, 50.87886863119018], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3108302237240412, 50.88248578898772], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3108302237240412, 50.886102946785265], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3108302237240412, 50.88972010458281], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3108302237240412, 50.89333726238035], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3108302237240412, 50.89695442017789], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3108302237240412, 50.900571577975434], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3051036775458018, 50.82822842202459], "type": "Point" }, "properties": { "eta": 10000, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3051036775458018, 50.83184557982213], "type": "Point" }, "properties": { "eta": 10000, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3051036775458018, 50.83546273761967], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3051036775458018, 50.839079895417214], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3051036775458018, 50.842697053214756], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3051036775458018, 50.8463142110123], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3051036775458018, 50.84993136880984], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3051036775458018, 50.85354852660738], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3051036775458018, 50.857165684404926], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3051036775458018, 50.86078284220247], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3051036775458018, 50.86440000000001], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3051036775458018, 50.86801715779755], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3051036775458018, 50.871634315595095], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3051036775458018, 50.87525147339264], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3051036775458018, 50.87886863119018], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3051036775458018, 50.88248578898772], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3051036775458018, 50.886102946785265], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3051036775458018, 50.88972010458281], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3051036775458018, 50.89333726238035], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3051036775458018, 50.89695442017789], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.3051036775458018, 50.900571577975434], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2993771313675624, 50.82822842202459], "type": "Point" }, "properties": { "eta": 10000, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2993771313675624, 50.83184557982213], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2993771313675624, 50.83546273761967], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2993771313675624, 50.839079895417214], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2993771313675624, 50.842697053214756], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2993771313675624, 50.8463142110123], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2993771313675624, 50.84993136880984], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2993771313675624, 50.85354852660738], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2993771313675624, 50.857165684404926], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2993771313675624, 50.86078284220247], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2993771313675624, 50.86440000000001], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2993771313675624, 50.86801715779755], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2993771313675624, 50.871634315595095], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2993771313675624, 50.87525147339264], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2993771313675624, 50.87886863119018], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2993771313675624, 50.88248578898772], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2993771313675624, 50.886102946785265], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2993771313675624, 50.88972010458281], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2993771313675624, 50.89333726238035], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2993771313675624, 50.89695442017789], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2993771313675624, 50.900571577975434], "type": "Point" }, "properties": { "eta": 11, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.293650585189323, 50.82822842202459], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.293650585189323, 50.83184557982213], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.293650585189323, 50.83546273761967], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.293650585189323, 50.839079895417214], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.293650585189323, 50.842697053214756], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.293650585189323, 50.8463142110123], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.293650585189323, 50.84993136880984], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.293650585189323, 50.85354852660738], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.293650585189323, 50.857165684404926], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.293650585189323, 50.86078284220247], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.293650585189323, 50.86440000000001], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.293650585189323, 50.86801715779755], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.293650585189323, 50.871634315595095], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.293650585189323, 50.87525147339264], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.293650585189323, 50.87886863119018], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.293650585189323, 50.88248578898772], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.293650585189323, 50.886102946785265], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.293650585189323, 50.88972010458281], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.293650585189323, 50.89333726238035], "type": "Point" }, "properties": { "eta": 12, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.293650585189323, 50.89695442017789], "type": "Point" }, "properties": { "eta": 12, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.293650585189323, 50.900571577975434], "type": "Point" }, "properties": { "eta": 14, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2879240390110835, 50.82822842202459], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2879240390110835, 50.83184557982213], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2879240390110835, 50.83546273761967], "type": "Point" }, "properties": { "eta": 11, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2879240390110835, 50.839079895417214], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2879240390110835, 50.842697053214756], "type": "Point" }, "properties": { "eta": 11, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2879240390110835, 50.8463142110123], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2879240390110835, 50.84993136880984], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2879240390110835, 50.85354852660738], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2879240390110835, 50.857165684404926], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2879240390110835, 50.86078284220247], "type": "Point" }, "properties": { "eta": 3, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2879240390110835, 50.86440000000001], "type": "Point" }, "properties": { "eta": 3, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2879240390110835, 50.86801715779755], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2879240390110835, 50.871634315595095], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2879240390110835, 50.87525147339264], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2879240390110835, 50.87886863119018], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2879240390110835, 50.88248578898772], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2879240390110835, 50.886102946785265], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2879240390110835, 50.88972010458281], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2879240390110835, 50.89333726238035], "type": "Point" }, "properties": { "eta": 12, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2879240390110835, 50.89695442017789], "type": "Point" }, "properties": { "eta": 14, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2879240390110835, 50.900571577975434], "type": "Point" }, "properties": { "eta": 15, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2821974928328441, 50.82822842202459], "type": "Point" }, "properties": { "eta": 11, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2821974928328441, 50.83184557982213], "type": "Point" }, "properties": { "eta": 11, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2821974928328441, 50.83546273761967], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2821974928328441, 50.839079895417214], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2821974928328441, 50.842697053214756], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2821974928328441, 50.8463142110123], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2821974928328441, 50.84993136880984], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2821974928328441, 50.85354852660738], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2821974928328441, 50.857165684404926], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2821974928328441, 50.86078284220247], "type": "Point" }, "properties": { "eta": 2, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2821974928328441, 50.86440000000001], "type": "Point" }, "properties": { "eta": 3, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2821974928328441, 50.86801715779755], "type": "Point" }, "properties": { "eta": 3, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2821974928328441, 50.871634315595095], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2821974928328441, 50.87525147339264], "type": "Point" }, "properties": { "eta": 3, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2821974928328441, 50.87886863119018], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2821974928328441, 50.88248578898772], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2821974928328441, 50.886102946785265], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2821974928328441, 50.88972010458281], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2821974928328441, 50.89333726238035], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2821974928328441, 50.89695442017789], "type": "Point" }, "properties": { "eta": 15, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2821974928328441, 50.900571577975434], "type": "Point" }, "properties": { "eta": 16, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2764709466546047, 50.82822842202459], "type": "Point" }, "properties": { "eta": 11, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2764709466546047, 50.83184557982213], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2764709466546047, 50.83546273761967], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2764709466546047, 50.839079895417214], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2764709466546047, 50.842697053214756], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2764709466546047, 50.8463142110123], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2764709466546047, 50.84993136880984], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2764709466546047, 50.85354852660738], "type": "Point" }, "properties": { "eta": 3, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2764709466546047, 50.857165684404926], "type": "Point" }, "properties": { "eta": 2, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2764709466546047, 50.86078284220247], "type": "Point" }, "properties": { "eta": 2, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2764709466546047, 50.86440000000001], "type": "Point" }, "properties": { "eta": 2, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2764709466546047, 50.86801715779755], "type": "Point" }, "properties": { "eta": 2, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2764709466546047, 50.871634315595095], "type": "Point" }, "properties": { "eta": 3, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2764709466546047, 50.87525147339264], "type": "Point" }, "properties": { "eta": 3, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2764709466546047, 50.87886863119018], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2764709466546047, 50.88248578898772], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2764709466546047, 50.886102946785265], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2764709466546047, 50.88972010458281], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2764709466546047, 50.89333726238035], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2764709466546047, 50.89695442017789], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2764709466546047, 50.900571577975434], "type": "Point" }, "properties": { "eta": 18, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2707444004763653, 50.82822842202459], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2707444004763653, 50.83184557982213], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2707444004763653, 50.83546273761967], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2707444004763653, 50.839079895417214], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2707444004763653, 50.842697053214756], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2707444004763653, 50.8463142110123], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2707444004763653, 50.84993136880984], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2707444004763653, 50.85354852660738], "type": "Point" }, "properties": { "eta": 3, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2707444004763653, 50.857165684404926], "type": "Point" }, "properties": { "eta": 2, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2707444004763653, 50.86078284220247], "type": "Point" }, "properties": { "eta": 1, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2707444004763653, 50.86440000000001], "type": "Point" }, "properties": { "eta": 0, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2707444004763653, 50.86801715779755], "type": "Point" }, "properties": { "eta": 1, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2707444004763653, 50.871634315595095], "type": "Point" }, "properties": { "eta": 2, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2707444004763653, 50.87525147339264], "type": "Point" }, "properties": { "eta": 3, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2707444004763653, 50.87886863119018], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2707444004763653, 50.88248578898772], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2707444004763653, 50.886102946785265], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2707444004763653, 50.88972010458281], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2707444004763653, 50.89333726238035], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2707444004763653, 50.89695442017789], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2707444004763653, 50.900571577975434], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2650178542981259, 50.82822842202459], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2650178542981259, 50.83184557982213], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2650178542981259, 50.83546273761967], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2650178542981259, 50.839079895417214], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2650178542981259, 50.842697053214756], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2650178542981259, 50.8463142110123], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2650178542981259, 50.84993136880984], "type": "Point" }, "properties": { "eta": 3, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2650178542981259, 50.85354852660738], "type": "Point" }, "properties": { "eta": 3, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2650178542981259, 50.857165684404926], "type": "Point" }, "properties": { "eta": 2, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2650178542981259, 50.86078284220247], "type": "Point" }, "properties": { "eta": 1, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2650178542981259, 50.86440000000001], "type": "Point" }, "properties": { "eta": 1, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2650178542981259, 50.86801715779755], "type": "Point" }, "properties": { "eta": 1, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2650178542981259, 50.871634315595095], "type": "Point" }, "properties": { "eta": 2, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2650178542981259, 50.87525147339264], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2650178542981259, 50.87886863119018], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2650178542981259, 50.88248578898772], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2650178542981259, 50.886102946785265], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2650178542981259, 50.88972010458281], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2650178542981259, 50.89333726238035], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2650178542981259, 50.89695442017789], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2650178542981259, 50.900571577975434], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2592913081198864, 50.82822842202459], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2592913081198864, 50.83184557982213], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2592913081198864, 50.83546273761967], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2592913081198864, 50.839079895417214], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2592913081198864, 50.842697053214756], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2592913081198864, 50.8463142110123], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2592913081198864, 50.84993136880984], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2592913081198864, 50.85354852660738], "type": "Point" }, "properties": { "eta": 3, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2592913081198864, 50.857165684404926], "type": "Point" }, "properties": { "eta": 2, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2592913081198864, 50.86078284220247], "type": "Point" }, "properties": { "eta": 2, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2592913081198864, 50.86440000000001], "type": "Point" }, "properties": { "eta": 3, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2592913081198864, 50.86801715779755], "type": "Point" }, "properties": { "eta": 2, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2592913081198864, 50.871634315595095], "type": "Point" }, "properties": { "eta": 3, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2592913081198864, 50.87525147339264], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2592913081198864, 50.87886863119018], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2592913081198864, 50.88248578898772], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2592913081198864, 50.886102946785265], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2592913081198864, 50.88972010458281], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2592913081198864, 50.89333726238035], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2592913081198864, 50.89695442017789], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2592913081198864, 50.900571577975434], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.253564761941647, 50.82822842202459], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.253564761941647, 50.83184557982213], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.253564761941647, 50.83546273761967], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.253564761941647, 50.839079895417214], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.253564761941647, 50.842697053214756], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.253564761941647, 50.8463142110123], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.253564761941647, 50.84993136880984], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.253564761941647, 50.85354852660738], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.253564761941647, 50.857165684404926], "type": "Point" }, "properties": { "eta": 3, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.253564761941647, 50.86078284220247], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.253564761941647, 50.86440000000001], "type": "Point" }, "properties": { "eta": 3, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.253564761941647, 50.86801715779755], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.253564761941647, 50.871634315595095], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.253564761941647, 50.87525147339264], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.253564761941647, 50.87886863119018], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.253564761941647, 50.88248578898772], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.253564761941647, 50.886102946785265], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.253564761941647, 50.88972010458281], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.253564761941647, 50.89333726238035], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.253564761941647, 50.89695442017789], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.253564761941647, 50.900571577975434], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2478382157634076, 50.82822842202459], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2478382157634076, 50.83184557982213], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2478382157634076, 50.83546273761967], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2478382157634076, 50.839079895417214], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2478382157634076, 50.842697053214756], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2478382157634076, 50.8463142110123], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2478382157634076, 50.84993136880984], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2478382157634076, 50.85354852660738], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2478382157634076, 50.857165684404926], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2478382157634076, 50.86078284220247], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2478382157634076, 50.86440000000001], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2478382157634076, 50.86801715779755], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2478382157634076, 50.871634315595095], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2478382157634076, 50.87525147339264], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2478382157634076, 50.87886863119018], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2478382157634076, 50.88248578898772], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2478382157634076, 50.886102946785265], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2478382157634076, 50.88972010458281], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2478382157634076, 50.89333726238035], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2478382157634076, 50.89695442017789], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2478382157634076, 50.900571577975434], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2421116695851682, 50.82822842202459], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2421116695851682, 50.83184557982213], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2421116695851682, 50.83546273761967], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2421116695851682, 50.839079895417214], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2421116695851682, 50.842697053214756], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2421116695851682, 50.8463142110123], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2421116695851682, 50.84993136880984], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2421116695851682, 50.85354852660738], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2421116695851682, 50.857165684404926], "type": "Point" }, "properties": { "eta": 4, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2421116695851682, 50.86078284220247], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2421116695851682, 50.86440000000001], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2421116695851682, 50.86801715779755], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2421116695851682, 50.871634315595095], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2421116695851682, 50.87525147339264], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2421116695851682, 50.87886863119018], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2421116695851682, 50.88248578898772], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2421116695851682, 50.886102946785265], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2421116695851682, 50.88972010458281], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2421116695851682, 50.89333726238035], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2421116695851682, 50.89695442017789], "type": "Point" }, "properties": { "eta": 11, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2421116695851682, 50.900571577975434], "type": "Point" }, "properties": { "eta": 11, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2363851234069287, 50.82822842202459], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2363851234069287, 50.83184557982213], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2363851234069287, 50.83546273761967], "type": "Point" }, "properties": { "eta": 11, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2363851234069287, 50.839079895417214], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2363851234069287, 50.842697053214756], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2363851234069287, 50.8463142110123], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2363851234069287, 50.84993136880984], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2363851234069287, 50.85354852660738], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2363851234069287, 50.857165684404926], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2363851234069287, 50.86078284220247], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2363851234069287, 50.86440000000001], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2363851234069287, 50.86801715779755], "type": "Point" }, "properties": { "eta": 12, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2363851234069287, 50.871634315595095], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2363851234069287, 50.87525147339264], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2363851234069287, 50.87886863119018], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2363851234069287, 50.88248578898772], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2363851234069287, 50.886102946785265], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2363851234069287, 50.88972010458281], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2363851234069287, 50.89333726238035], "type": "Point" }, "properties": { "eta": 10000, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2363851234069287, 50.89695442017789], "type": "Point" }, "properties": { "eta": 11, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2363851234069287, 50.900571577975434], "type": "Point" }, "properties": { "eta": 11, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2306585772286893, 50.82822842202459], "type": "Point" }, "properties": { "eta": 12, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2306585772286893, 50.83184557982213], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2306585772286893, 50.83546273761967], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2306585772286893, 50.839079895417214], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2306585772286893, 50.842697053214756], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2306585772286893, 50.8463142110123], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2306585772286893, 50.84993136880984], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2306585772286893, 50.85354852660738], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2306585772286893, 50.857165684404926], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2306585772286893, 50.86078284220247], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2306585772286893, 50.86440000000001], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2306585772286893, 50.86801715779755], "type": "Point" }, "properties": { "eta": 12, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2306585772286893, 50.871634315595095], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2306585772286893, 50.87525147339264], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2306585772286893, 50.87886863119018], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2306585772286893, 50.88248578898772], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2306585772286893, 50.886102946785265], "type": "Point" }, "properties": { "eta": 10000, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2306585772286893, 50.88972010458281], "type": "Point" }, "properties": { "eta": 10000, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2306585772286893, 50.89333726238035], "type": "Point" }, "properties": { "eta": 10000, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2306585772286893, 50.89695442017789], "type": "Point" }, "properties": { "eta": 20, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2306585772286893, 50.900571577975434], "type": "Point" }, "properties": { "eta": 20, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.22493203105045, 50.82822842202459], "type": "Point" }, "properties": { "eta": 11, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.22493203105045, 50.83184557982213], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.22493203105045, 50.83546273761967], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.22493203105045, 50.839079895417214], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.22493203105045, 50.842697053214756], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.22493203105045, 50.8463142110123], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.22493203105045, 50.84993136880984], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.22493203105045, 50.85354852660738], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.22493203105045, 50.857165684404926], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.22493203105045, 50.86078284220247], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.22493203105045, 50.86440000000001], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.22493203105045, 50.86801715779755], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.22493203105045, 50.871634315595095], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.22493203105045, 50.87525147339264], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.22493203105045, 50.87886863119018], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.22493203105045, 50.88248578898772], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.22493203105045, 50.886102946785265], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.22493203105045, 50.88972010458281], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.22493203105045, 50.89333726238035], "type": "Point" }, "properties": { "eta": 11, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.22493203105045, 50.89695442017789], "type": "Point" }, "properties": { "eta": 20, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.22493203105045, 50.900571577975434], "type": "Point" }, "properties": { "eta": 16, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2192054848722105, 50.82822842202459], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2192054848722105, 50.83184557982213], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2192054848722105, 50.83546273761967], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2192054848722105, 50.839079895417214], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2192054848722105, 50.842697053214756], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2192054848722105, 50.8463142110123], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2192054848722105, 50.84993136880984], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2192054848722105, 50.85354852660738], "type": "Point" }, "properties": { "eta": 7, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2192054848722105, 50.857165684404926], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2192054848722105, 50.86078284220247], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2192054848722105, 50.86440000000001], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2192054848722105, 50.86801715779755], "type": "Point" }, "properties": { "eta": 5, "marker-color": "#10800f" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2192054848722105, 50.871634315595095], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2192054848722105, 50.87525147339264], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2192054848722105, 50.87886863119018], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2192054848722105, 50.88248578898772], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2192054848722105, 50.886102946785265], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2192054848722105, 50.88972010458281], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2192054848722105, 50.89333726238035], "type": "Point" }, "properties": { "eta": 11, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2192054848722105, 50.89695442017789], "type": "Point" }, "properties": { "eta": 12, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.2192054848722105, 50.900571577975434], "type": "Point" }, "properties": { "eta": 16, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.213478938693971, 50.82822842202459], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.213478938693971, 50.83184557982213], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.213478938693971, 50.83546273761967], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.213478938693971, 50.839079895417214], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.213478938693971, 50.842697053214756], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.213478938693971, 50.8463142110123], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.213478938693971, 50.84993136880984], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.213478938693971, 50.85354852660738], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.213478938693971, 50.857165684404926], "type": "Point" }, "properties": { "eta": 8, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.213478938693971, 50.86078284220247], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.213478938693971, 50.86440000000001], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.213478938693971, 50.86801715779755], "type": "Point" }, "properties": { "eta": 6, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.213478938693971, 50.871634315595095], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.213478938693971, 50.87525147339264], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.213478938693971, 50.87886863119018], "type": "Point" }, "properties": { "eta": 9, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.213478938693971, 50.88248578898772], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.213478938693971, 50.886102946785265], "type": "Point" }, "properties": { "eta": 10, "marker-color": "#635ac0" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.213478938693971, 50.88972010458281], "type": "Point" }, "properties": { "eta": 11, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.213478938693971, 50.89333726238035], "type": "Point" }, "properties": { "eta": 11, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.213478938693971, 50.89695442017789], "type": "Point" }, "properties": { "eta": 12, "marker-color": "#ff0000" }, "type": "Feature" }, { "geometry": { "coordinates": [-1.213478938693971, 50.900571577975434], "type": "Point" }, "properties": { "eta": 12, "marker-color": "#ff0000" }, "type": "Feature" } ], "properties": { "zProperty": "eta", "breaks": [0, 5, 10] }, "type": "FeatureCollection" } ================================================ FILE: packages/turf-isobands/test/in/2956.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "FIELD_ID": 37.858395003645576 }, "geometry": { "type": "Point", "coordinates": [35.70575726459368, 28.063414143459312] } }, { "type": "Feature", "properties": { "FIELD_ID": 38.005515531743654 }, "geometry": { "type": "Point", "coordinates": [35.70575726459368, 28.063423136662948] } }, { "type": "Feature", "properties": { "FIELD_ID": 36.84489152337762 }, "geometry": { "type": "Point", "coordinates": [35.70575726459368, 28.063432129866584] } }, { "type": "Feature", "properties": { "FIELD_ID": 35.395453979498335 }, "geometry": { "type": "Point", "coordinates": [35.70575726459368, 28.06344112307022] } }, { "type": "Feature", "properties": { "FIELD_ID": 34.07449741902819 }, "geometry": { "type": "Point", "coordinates": [35.70575726459368, 28.063450116273856] } }, { "type": "Feature", "properties": { "FIELD_ID": 32.958310880754894 }, "geometry": { "type": "Point", "coordinates": [35.70575726459368, 28.063459109477492] } }, { "type": "Feature", "properties": { "FIELD_ID": 32.15014388289838 }, "geometry": { "type": "Point", "coordinates": [35.70575726459368, 28.063468102681128] } }, { "type": "Feature", "properties": { "FIELD_ID": 31.825761037619472 }, "geometry": { "type": "Point", "coordinates": [35.70575726459368, 28.063477095884764] } }, { "type": "Feature", "properties": { "FIELD_ID": 31.812452608298262 }, "geometry": { "type": "Point", "coordinates": [35.70575726459368, 28.0634860890884] } }, { "type": "Feature", "properties": { "FIELD_ID": 31.767429208320458 }, "geometry": { "type": "Point", "coordinates": [35.70575726459368, 28.063495082292036] } }, { "type": "Feature", "properties": { "FIELD_ID": 31.604967876968036 }, "geometry": { "type": "Point", "coordinates": [35.70575726459368, 28.063504075495672] } }, { "type": "Feature", "properties": { "FIELD_ID": 31.37423778197694 }, "geometry": { "type": "Point", "coordinates": [35.70575726459368, 28.063513068699308] } }, { "type": "Feature", "properties": { "FIELD_ID": 31.19659311838165 }, "geometry": { "type": "Point", "coordinates": [35.70575726459368, 28.063522061902944] } }, { "type": "Feature", "properties": { "FIELD_ID": 31.188958733351168 }, "geometry": { "type": "Point", "coordinates": [35.70575726459368, 28.06353105510658] } }, { "type": "Feature", "properties": { "FIELD_ID": 38.51077132555259 }, "geometry": { "type": "Point", "coordinates": [35.70576745603036, 28.063414143459312] } }, { "type": "Feature", "properties": { "FIELD_ID": 39.39763880592179 }, "geometry": { "type": "Point", "coordinates": [35.70576745603036, 28.063423136662948] } }, { "type": "Feature", "properties": { "FIELD_ID": 37.2423247681859 }, "geometry": { "type": "Point", "coordinates": [35.70576745603036, 28.063432129866584] } }, { "type": "Feature", "properties": { "FIELD_ID": 35.45550445064012 }, "geometry": { "type": "Point", "coordinates": [35.70576745603036, 28.06344112307022] } }, { "type": "Feature", "properties": { "FIELD_ID": 33.930177337153346 }, "geometry": { "type": "Point", "coordinates": [35.70576745603036, 28.063450116273856] } }, { "type": "Feature", "properties": { "FIELD_ID": 32.579584391755496 }, "geometry": { "type": "Point", "coordinates": [35.70576745603036, 28.063459109477492] } }, { "type": "Feature", "properties": { "FIELD_ID": 31.38744902528939 }, "geometry": { "type": "Point", "coordinates": [35.70576745603036, 28.063468102681128] } }, { "type": "Feature", "properties": { "FIELD_ID": 31.12963475577516 }, "geometry": { "type": "Point", "coordinates": [35.70576745603036, 28.063477095884764] } }, { "type": "Feature", "properties": { "FIELD_ID": 31.53058455054993 }, "geometry": { "type": "Point", "coordinates": [35.70576745603036, 28.0634860890884] } }, { "type": "Feature", "properties": { "FIELD_ID": 31.604664751494997 }, "geometry": { "type": "Point", "coordinates": [35.70576745603036, 28.063495082292036] } }, { "type": "Feature", "properties": { "FIELD_ID": 31.416285948997317 }, "geometry": { "type": "Point", "coordinates": [35.70576745603036, 28.063504075495672] } }, { "type": "Feature", "properties": { "FIELD_ID": 31.05589092319081 }, "geometry": { "type": "Point", "coordinates": [35.70576745603036, 28.063513068699308] } }, { "type": "Feature", "properties": { "FIELD_ID": 30.719659535516517 }, "geometry": { "type": "Point", "coordinates": [35.70576745603036, 28.063522061902944] } }, { "type": "Feature", "properties": { "FIELD_ID": 30.790463080555575 }, "geometry": { "type": "Point", "coordinates": [35.70576745603036, 28.06353105510658] } }, { "type": "Feature", "properties": { "FIELD_ID": 37.70518715223118 }, "geometry": { "type": "Point", "coordinates": [35.70577764746704, 28.063414143459312] } }, { "type": "Feature", "properties": { "FIELD_ID": 37.79001647255467 }, "geometry": { "type": "Point", "coordinates": [35.70577764746704, 28.063423136662948] } }, { "type": "Feature", "properties": { "FIELD_ID": 36.66652828700078 }, "geometry": { "type": "Point", "coordinates": [35.70577764746704, 28.063432129866584] } }, { "type": "Feature", "properties": { "FIELD_ID": 35.201739408861634 }, "geometry": { "type": "Point", "coordinates": [35.70577764746704, 28.06344112307022] } }, { "type": "Feature", "properties": { "FIELD_ID": 33.801584088885484 }, "geometry": { "type": "Point", "coordinates": [35.70577764746704, 28.063450116273856] } }, { "type": "Feature", "properties": { "FIELD_ID": 32.504872255879775 }, "geometry": { "type": "Point", "coordinates": [35.70577764746704, 28.063459109477492] } }, { "type": "Feature", "properties": { "FIELD_ID": 31.315116946844036 }, "geometry": { "type": "Point", "coordinates": [35.70577764746704, 28.063468102681128] } }, { "type": "Feature", "properties": { "FIELD_ID": 31.066795164769196 }, "geometry": { "type": "Point", "coordinates": [35.70577764746704, 28.063477095884764] } }, { "type": "Feature", "properties": { "FIELD_ID": 31.496365961292856 }, "geometry": { "type": "Point", "coordinates": [35.70577764746704, 28.0634860890884] } }, { "type": "Feature", "properties": { "FIELD_ID": 31.560432236745154 }, "geometry": { "type": "Point", "coordinates": [35.70577764746704, 28.063495082292036] } }, { "type": "Feature", "properties": { "FIELD_ID": 31.332080357493645 }, "geometry": { "type": "Point", "coordinates": [35.70577764746704, 28.063504075495672] } }, { "type": "Feature", "properties": { "FIELD_ID": 30.85639676766893 }, "geometry": { "type": "Point", "coordinates": [35.70577764746704, 28.063513068699308] } }, { "type": "Feature", "properties": { "FIELD_ID": 30.130736992788563 }, "geometry": { "type": "Point", "coordinates": [35.70577764746704, 28.063522061902944] } }, { "type": "Feature", "properties": { "FIELD_ID": 30.48089842932968 }, "geometry": { "type": "Point", "coordinates": [35.70577764746704, 28.06353105510658] } }, { "type": "Feature", "properties": { "FIELD_ID": 36.700054580535884 }, "geometry": { "type": "Point", "coordinates": [35.70578783890372, 28.063414143459312] } }, { "type": "Feature", "properties": { "FIELD_ID": 36.53880190230577 }, "geometry": { "type": "Point", "coordinates": [35.70578783890372, 28.063423136662948] } }, { "type": "Feature", "properties": { "FIELD_ID": 35.84008661540203 }, "geometry": { "type": "Point", "coordinates": [35.70578783890372, 28.063432129866584] } }, { "type": "Feature", "properties": { "FIELD_ID": 34.82169255602666 }, "geometry": { "type": "Point", "coordinates": [35.70578783890372, 28.06344112307022] } }, { "type": "Feature", "properties": { "FIELD_ID": 33.744163050858106 }, "geometry": { "type": "Point", "coordinates": [35.70578783890372, 28.063450116273856] } }, { "type": "Feature", "properties": { "FIELD_ID": 32.75499936415751 }, "geometry": { "type": "Point", "coordinates": [35.70578783890372, 28.063459109477492] } }, { "type": "Feature", "properties": { "FIELD_ID": 32.006236685187694 }, "geometry": { "type": "Point", "coordinates": [35.70578783890372, 28.063468102681128] } }, { "type": "Feature", "properties": { "FIELD_ID": 31.71351244090173 }, "geometry": { "type": "Point", "coordinates": [35.70578783890372, 28.063477095884764] } }, { "type": "Feature", "properties": { "FIELD_ID": 31.712469554550218 }, "geometry": { "type": "Point", "coordinates": [35.70578783890372, 28.0634860890884] } }, { "type": "Feature", "properties": { "FIELD_ID": 31.642130822480073 }, "geometry": { "type": "Point", "coordinates": [35.70578783890372, 28.063495082292036] } }, { "type": "Feature", "properties": { "FIELD_ID": 31.401981364817154 }, "geometry": { "type": "Point", "coordinates": [35.70578783890372, 28.063504075495672] } }, { "type": "Feature", "properties": { "FIELD_ID": 31.01317363585256 }, "geometry": { "type": "Point", "coordinates": [35.70578783890372, 28.063513068699308] } }, { "type": "Feature", "properties": { "FIELD_ID": 30.64800526338338 }, "geometry": { "type": "Point", "coordinates": [35.70578783890372, 28.063522061902944] } }, { "type": "Feature", "properties": { "FIELD_ID": 30.73652060070006 }, "geometry": { "type": "Point", "coordinates": [35.70578783890372, 28.06353105510658] } } ], "properties": { "zProperty": "FIELD_ID", "breaks": [29, 30, 39.5, 40], "description": "3 candidate bands, the first and last band should be empty, the middle band should hit the special case of containing the entire area" } } ================================================ FILE: packages/turf-isobands/test/in/bigMatrix.json ================================================ { "origin": [6.5, 46], "cellSize": 10, "breaks": [0, 0.24, 0.5, 1.5, 2.5, 100], "zProperty": "pressure", "commonProperties": { "stroke-width": 4, "fill-opacity": 0.4 }, "breaksProperties": [ { "stroke": "grey", "fill": "grey" }, { "stroke": "blue", "fill": "blue" }, { "stroke": "green", "fill": "green" }, { "stroke": "yellow", "fill": "yellow" }, { "stroke": "red", "fill": "red" } ], "matrix": [ [ 0.754816323768, 0.0192104697805, 0.0755640895933, 0.162215587333, 0.267950411633, 0.380900771041, 0.491544382473, 0.593906626031, 0.685266592708, 0.765202340943, 0.834615850466, 0.895008654071, 0.948034954329, 0.995264760092, 1.03807922487, 1.07763915535, 1.1148893148, 1.15057748954, 1.18527770736, 1.21941299466, 1.25327620796, 1.28704892645, 1.32081889084, 1.35459648117, 1.38833052607, 1.42192349543, 1.45524594313, 1.4881499762, 1.52048153551, 1.55209136178, 1.58284465416, 1.61262956931, 1.64136481734, 1.66900665389, 1.69555551758, 1.72106240417, 1.74563480623, 1.76944170768, 1.79271677157, 1.815758593, 1.83892683251, 1.86263330886, 1.88732776844, 1.91347899987, 1.94155302698, 1.97199098527, 2.00518965296, 2.04148728682, 2.08115644818, 2.12440417382, 2.17137854124, 2.22217975027, 2.27687346733, 2.33550432796, 2.39810799098, 2.46472076518, 2.53538640645, 2.61016010681, 2.68910994092, 2.77231611964, 2.85986836779, 2.95186163737, 3.04839022734, 3.14954023961, 3.2553801885, 3.36594952824, 3.48124489906, 3.60120404326, 3.72568762201, 3.85445956725, 3.98716710137, 4.12332208928, 4.26228586482, 4.40325998761, 4.54528542294, 4.68725230409, 4.82792168542, 4.96595955259, 5.09998193596, 5.22860847339, 5.35052044051, 5.46451836937, 5.56957411184, 5.66487266244, 5.74984018447, 5.82415629486, 5.88775047397, 5.94078416729, 5.98362147499, 6.01679211687, 6.04095057545, 6.05683502667, 6.06522901002, 6.06692794183, 6.06271169478, 6.05332367777 ], [ 0.0190236070377, 0.0385999271506, 0.0947957400738, 0.180524048614, 0.284354871517, 0.39438504785, 0.501273442842, 0.599359856829, 0.686256401169, 0.761815524864, 0.827128435869, 0.883807556173, 0.933559660473, 0.977969770145, 1.01841280298, 1.05603292629, 1.09175397163, 1.12630111673, 1.16022445572, 1.19392090141, 1.22765378699, 1.26157074476, 1.2957206964, 1.33007057339, 1.364522001, 1.39892781263, 1.43310801472, 1.46686473476, 1.49999574718, 1.53230634678, 1.56361957456, 1.59378504098, 1.62268678373, 1.65025069457, 1.67645201114, 1.70132316613, 1.72496190488, 1.74753904943, 1.7693046771, 1.79059094408, 1.81180952501, 1.83344188445, 1.85602149532, 1.88010863445, 1.90626020702, 1.93499863326, 1.96678456493, 2.00199770408, 2.04092833787, 2.08377990849, 2.13068076686, 2.18170184982, 2.23687663917, 2.29622026442, 2.35974561448, 2.4274754117, 2.49945008841, 2.57573187067, 2.6564057268, 2.74157785488, 2.83137224858, 2.92592566526, 3.0253810736, 3.1298794166, 3.2395493235, 3.35449427841, 3.47477674743, 3.60039892071, 3.73128007393, 3.86723110113, 4.00792748809, 4.15288280778, 4.30142560185, 4.45268310435, 4.60557548418, 4.75882397008, 4.91097527253, 5.06044313902, 5.20556581785, 5.34467595263, 5.47617737915, 5.59862186856, 5.71077839461, 5.81168815837, 5.90070030622, 5.97748571974, 6.04202897785, 6.09460109447, 6.13571750575, 6.16608678652, 6.18655568627, 6.19805544231, 6.20155320662, 6.19801109809, 6.18835410471, 6.17344697778 ], [ 0.0740492769371, 0.093829427076, 0.14735600539, 0.227811443267, 0.32446389556, 0.426278918138, 0.524706373396, 0.614664625462, 0.694112379507, 0.763061806146, 0.82263908342, 0.874420721412, 0.920044959285, 0.961019544951, 0.998646535999, 1.03400747738, 1.06797487086, 1.10123197939, 1.13429296376, 1.1675208765, 1.2011437201, 1.23526973067, 1.26990302393, 1.30496024613, 1.3402882535, 1.37568232319, 1.41090409367, 1.44569837545, 1.4798081343, 1.5129872635, 1.54501115006, 1.57568542778, 1.60485362843, 1.63240463143, 1.6582808148, 1.68248757152, 1.70510433536, 1.72629645476, 1.7463262401, 1.76556048576, 1.78447107479, 1.80362534186, 1.82366407028, 1.84526740536, 1.86911212982, 1.89582668208, 1.92595179694, 1.95991388127, 1.99801528304, 2.04044152356, 2.08728185593, 2.13855738396, 2.1942507913, 2.25433303816, 2.31878433954, 2.38760858032, 2.46084162166, 2.53855462467, 2.62085368555, 2.70787692614, 2.79978987086, 2.89677956499, 2.99904749995, 3.10680103837, 3.22024270479, 3.33955646982, 3.46489006787, 3.59633251962, 3.73388644168, 3.87743544859, 4.02670796628, 4.18123999189, 4.3403405859, 4.5030649331, 4.66820037683, 4.83427063856, 4.9995622783, 5.16217528189, 5.32009665708, 5.47129250424, 5.61381082343, 5.74588501518, 5.86602720876, 5.97310149718, 6.06636976417, 6.14550655243, 6.21058357753, 6.26202821892, 6.30056296543, 6.32713402293, 6.34283712723, 6.34884735303, 6.34635782586, 6.33653019051, 6.32045782881, 6.29914136679 ], [ 0.157034978462, 0.17658032134, 0.22517427108, 0.296713566809, 0.381907932596, 0.471303323761, 0.557602347409, 0.636484575319, 0.706242706617, 0.766940910261, 0.819607348834, 0.865660049868, 0.906569598921, 0.94369246162, 0.978206056181, 1.01109554936, 1.04316205088, 1.07503646033, 1.10719248999, 1.13995761741, 1.17352317516, 1.20795543948, 1.24320917345, 1.27914418601, 1.31554451703, 1.35213913284, 1.38862265798, 1.42467468981, 1.45997657344, 1.49422504368, 1.52714275156, 1.55848628769, 1.58805281336, 1.61568674362, 1.64128802301, 1.66482330389, 1.68634068452, 1.70598751476, 1.72402916098, 1.74086476564, 1.75703446036, 1.77321198941, 1.79017812237, 1.80877400608, 1.8298391731, 1.85414451071, 1.88233363434, 1.91488493308, 1.95210109621, 1.99412537408, 2.04097732202, 2.09259763188, 2.14889225697, 2.20976911286, 2.27516436332, 2.34505830981, 2.41948265417, 2.4985215146, 2.58230844199, 2.6710211947, 2.7648754362, 2.86411793201, 2.96901926519, 3.07986556009, 3.19694821238, 3.3205502181, 3.45092746024, 3.58828336202, 3.73273576252, 3.88427579133, 4.04271991984, 4.20765815352, 4.37840328595, 4.55394792754, 4.7329372169, 4.91366525692, 5.0941019971, 5.27195433642, 5.44476082914, 5.61001415125, 5.76530041222, 5.90844062421, 6.03761817431, 6.15147751541, 6.24918334707, 6.33043545858, 6.39544085449, 6.44485040587, 6.4796710187, 6.50116571521, 6.51075323742, 6.5099164165, 6.50012541687, 6.48277880907, 6.45916277822, 6.43042688849 ], [ 0.255539967582, 0.274105267923, 0.316142519243, 0.37652813048, 0.447790344706, 0.522401720013, 0.594540601807, 0.660734463541, 0.719597973044, 0.771184232905, 0.81634481069, 0.856264948132, 0.892186153575, 0.925267613017, 0.956531235552, 0.986848370649, 1.01694214946, 1.0473921757, 1.0786369509, 1.11097447506, 1.1445637063, 1.17942978874, 1.21547494117, 1.25249536236, 1.29020304219, 1.32825035918, 1.36625495163, 1.40382253727, 1.44056597093, 1.47611968144, 1.51014954935, 1.54235915468, 1.57249406068, 1.60034634509, 1.62576186709, 1.64865263751, 1.66901595208, 1.68696043682, 1.70273671035, 1.71676715126, 1.72966597268, 1.74223883604, 1.75545241148, 1.77037001303, 1.78805932439, 1.80948915725, 1.83543897712, 1.8664432107, 1.90278185216, 1.94451434684, 1.99154200092, 2.04367980399, 2.10072152925, 2.16248887872, 2.22886236619, 2.29979627736, 2.37532202978, 2.45554432532, 2.54063362358, 2.63081737419, 2.72637146094, 2.82761249247, 2.93489085883, 3.04858378088, 3.16908688369, 3.29680217167, 3.43211979799, 3.57539088492, 3.72688906127, 3.88675949882, 4.0549561148, 4.23117017895, 4.41475656177, 4.60466682759, 4.79940066983, 4.99698804347, 5.19501304043, 5.39068663082, 5.58096897108, 5.76273391892, 5.93296025754, 6.0889278582, 6.22839437016, 6.34973001552, 6.45199448581, 6.53494936058, 6.59900965298, 6.64514668694, 6.67475981172, 6.68953583034, 6.69131292358, 6.68196150139, 6.66328923844, 6.63697275763, 6.60451474656, 6.56722297228 ], [ 0.356595980746, 0.373250225721, 0.407870901979, 0.456380389165, 0.513129362205, 0.572497876591, 0.630126416182, 0.683384527264, 0.731201872661, 0.77360647909, 0.811252273638, 0.845067066976, 0.876039513977, 0.905112797542, 0.933142751588, 0.960885914704, 0.988995407408, 1.01801396216, 1.04836199261, 1.08032380146, 1.11403707659, 1.14949033478, 1.18653088455, 1.22488324232, 1.26417564807, 1.30397093367, 1.34379764677, 1.38317786018, 1.42164918526, 1.45877983592, 1.49417691891, 1.52748932496, 1.55840761583, 1.58666413066, 1.6120371199, 1.63436290022, 1.65355949033, 1.66966346133, 1.68287831636, 1.69362743015, 1.70259814703, 1.71075826192, 1.71932550808, 1.72967870743, 1.74321683291, 1.76119419184, 1.78457519647, 1.81395002548, 1.84953139295, 1.89122338459, 1.9387315827, 1.99167867928, 2.04969929224, 2.11250275563, 2.17990507835, 2.25183770558, 2.32834195952, 2.40955645941, 2.49570247922, 2.58707018102, 2.68400724157, 2.78691041866, 2.89621981735, 3.01241479734, 3.13600952146, 3.26754512992, 3.40757461808, 3.5566359859, 3.71520944848, 3.88365574908, 4.06213506682, 4.25050962725, 4.44823761648, 4.65427078667, 4.86697230959, 5.08407376457, 5.30268930745, 5.51940003923, 5.73041223207, 5.93178053132, 6.11967402461, 6.29065246494, 6.44191512006, 6.57148759078, 6.6783222797, 6.76230354021, 6.82416493125, 6.86533934692, 6.88777023642, 6.8937128895, 6.88555002063, 6.86563801002, 6.83619168557, 6.7992083594, 6.75642691151, 6.70931512351 ], [ 0.449936181049, 0.463751877347, 0.490741367556, 0.527796135674, 0.570852467511, 0.615941322666, 0.659989091157, 0.70112933377, 0.738594371018, 0.772401395023, 0.803022375779, 0.831135227847, 0.857475874242, 0.882769839313, 0.907709886876, 0.932949858718, 0.959095050922, 0.986680922234, 1.01614159504, 1.04777570866, 1.0817190819, 1.11793184984, 1.15620367431, 1.1961760554, 1.23737717384, 1.27926284486, 1.3212570846, 1.36278700383, 1.40330862187, 1.44232220683, 1.47937758131, 1.51407137951, 1.54603954211, 1.5749494892, 1.60049746343, 1.62241735389, 1.64050744538, 1.65468012112, 1.66503536402, 1.67195084807, 1.67616957488, 1.67885331198, 1.68156351441, 1.68614059594, 1.69448329786, 1.70827518672, 1.72874103521, 1.75651458327, 1.7916547097, 1.83378515095, 1.88229159969, 1.93650806584, 1.99585119825, 2.05989332217, 2.1283858822, 2.20125180287, 2.27856298338, 2.3605137227, 2.44739597783, 2.53957918278, 2.63749568849, 2.74163204725, 2.85252572954, 2.97076601209, 3.0969965492, 3.23191559251, 3.37626822674, 3.53082378709, 3.69633137264, 3.8734475946, 4.06263374963, 4.26402454545, 4.47727706315, 4.7014161604, 4.93469980904, 5.17453304288, 5.41745987812, 5.65925657399, 5.89513606258, 6.12005372915, 6.32908293554, 6.51781045593, 6.68269308109, 6.8213207171, 6.93254825244, 7.01648399375, 7.07434941943, 7.10824602454, 7.12087532057, 7.11525679987, 7.09447866827, 7.06150203909, 7.01902553045, 6.96940673673, 6.91463087409, 6.85631458234 ], [ 0.529333176276, 0.539533681044, 0.559091988372, 0.585724792152, 0.616631682569, 0.649152934089, 0.681257573747, 0.711726174088, 0.740068875987, 0.766310206274, 0.790765009828, 0.813875870608, 0.836128936884, 0.858031104983, 0.880117505257, 0.902958947093, 0.927148914462, 0.953263713228, 0.981802594559, 1.01312319252, 1.04738944341, 1.08454483166, 1.12431594375, 1.16624326707, 1.20973055029, 1.25410185187, 1.2986561937, 1.34271231556, 1.38563919818, 1.42687097662, 1.46590724542, 1.50230156652, 1.53564245308, 1.56553253133, 1.5915732424, 1.61336436073, 1.63052929442, 1.64277727933, 1.65000980263, 1.65246776142, 1.6508957007, 1.64667217308, 1.64183229748, 1.63891206114, 1.64059562363, 1.64924222232, 1.66645672845, 1.69287408334, 1.72822887128, 1.77164277506, 1.82198276261, 1.87815928742, 1.93930554193, 2.00484481547, 2.07448389782, 2.14817120363, 2.2260458627, 2.30839110539, 2.39559681031, 2.48813210144, 2.58652770329, 2.69136770495, 2.80329030323, 2.9229963795, 3.0512632003, 3.18895820861, 3.33704516736, 3.49657250068, 3.66863244931, 3.85428051837, 4.05440827967, 4.26956909133, 4.49976553507, 4.74421879982, 5.00115257448, 5.26763455505, 5.53952318663, 5.81156117343, 6.077637996, 6.33121268897, 6.56585178198, 6.77580548543, 6.95652843243, 7.10505681124, 7.22018198483, 7.30240410538, 7.35369455012, 7.37712968104, 7.37647217381, 7.35576965261, 7.31901999177, 7.26992753385, 7.21175245059, 7.14724077233, 7.0786157998, 7.00761089131 ], [ 0.592269610438, 0.598285011829, 0.610803101305, 0.628212377784, 0.648673111774, 0.670516066207, 0.692519187426, 0.713990477114, 0.734685663434, 0.754646032321, 0.774042687401, 0.793081184085, 0.811980586141, 0.831008579849, 0.85053585689, 0.871070551259, 0.893245482376, 0.917751871274, 0.945234859361, 0.976180362592, 1.01082471349, 1.04910893406, 1.09068396253, 1.13495876991, 1.18117478771, 1.22848832576, 1.27604576059, 1.32304147959, 1.36875376179, 1.41255789688, 1.45391866271, 1.49236607067, 1.52745958302, 1.55874746038, 1.58573016155, 1.60784023018, 1.62445567891, 1.63496800233, 1.63892580372, 1.63626387955, 1.62759714812, 1.61450524401, 1.59967071709, 1.58670682605, 1.57958670088, 1.58178826916, 1.59549352099, 1.62122131307, 1.65803888687, 1.70416706224, 1.75763960688, 1.81676789297, 1.88034866398, 1.94768026494, 2.01848341882, 2.09279747653, 2.17088753798, 2.25317309703, 2.3401773028, 2.43249304099, 2.53076306184, 2.63567321285, 2.74795887945, 2.86842434548, 2.99797280252, 3.13764129975, 3.2886305001, 3.45231463971, 3.63021401722, 3.82391223149, 4.03490429773, 4.26436995952, 4.51287886287, 4.78005080037, 5.0642143933, 5.36212800719, 5.66883992665, 5.97776130608, 6.2809985657, 6.56994274784, 6.83605202046, 7.07170715235, 7.27098770075, 7.43022336042, 7.54822279542, 7.62615788281, 7.66715947393, 7.67573570533, 7.65714093231, 7.61680428849, 7.55988611442, 7.49098608811, 7.41399233514, 7.33204156654, 7.24755497775, 7.16231835297 ], [ 0.638839378139, 0.640286548119, 0.646182840122, 0.655455261978, 0.666987338569, 0.679854547074, 0.693463644757, 0.707558545629, 0.722116588106, 0.737198925984, 0.752826180429, 0.768930943744, 0.785403200854, 0.802205452744, 0.819504538294, 0.837758110962, 0.857709642033, 0.880281112852, 0.90639290469, 0.936767889968, 0.971779051589, 1.01137833469, 1.05511255002, 1.10220605365, 1.15167816811, 1.20246481651, 1.25352249222, 1.30390263451, 1.35279251566, 1.39952399627, 1.44355432105, 1.48442430021, 1.52169970687, 1.55490259965, 1.58344176694, 1.60655682116, 1.62329946137, 1.63258731782, 1.63337604588, 1.62499247399, 1.60763530717, 1.58295694094, 1.55449037601, 1.52755397001, 1.50833362158, 1.50226587969, 1.51244671176, 1.53897388219, 1.57953869864, 1.6307378713, 1.68929275262, 1.75272396997, 1.81950162493, 1.88890336985, 1.96078863387, 2.03539776446, 2.11320716089, 2.19483451955, 2.28097896646, 2.37238389531, 2.46981652762, 2.57406338711, 2.68594360685, 2.80634202734, 2.93626151532, 3.07688899021, 3.22966266716, 3.39632017693, 3.57890082798, 3.77967318104, 4.00096309106, 4.24486724187, 4.51285233028, 4.80526199251, 5.1207850292, 5.45597698721, 5.8049594749, 6.1594274253, 6.50905840996, 6.84233963482, 7.14772395075, 7.41492534322, 7.63610194981, 7.80668024009, 7.92565607553, 7.99534347955, 8.0206807829, 8.00829521403, 7.96554446384, 7.89970572773, 7.81740185786, 7.72427633432, 7.62487641671, 7.52268216241, 7.42022073443, 7.31921913868 ], [ 0.670619780898, 0.667246283019, 0.666866435338, 0.668840732047, 0.672609594761, 0.677830655523, 0.684430839522, 0.692549735602, 0.702393647769, 0.714056911148, 0.727386452935, 0.741958257104, 0.757196700246, 0.77260914063, 0.788052578074, 0.8039231011, 0.821177598491, 0.841159156637, 0.865279730545, 0.894674281757, 0.929944052385, 0.971054898171, 1.01738740714, 1.06788827587, 1.12126065841, 1.17614432166, 1.23125726156, 1.28548795652, 1.33793850055, 1.38792439532, 1.43493857881, 1.47858684675, 1.51850049914, 1.5542312582, 1.58513510573, 1.61025812118, 1.62825158121, 1.6373677101, 1.63561943671, 1.62121324296, 1.59334614254, 1.55332828553, 1.50568374495, 1.45845516833, 1.42180283272, 1.40481040999, 1.41208730868, 1.44252245908, 1.4909279619, 1.55097337017, 1.61740333183, 1.68684181112, 1.75761502731, 1.82923535587, 1.90192394609, 1.97628527666, 2.05311736047, 2.13330872121, 2.21778143901, 2.30745710814, 2.40323761611, 2.5060023455, 2.61662790586, 2.73603678176, 2.86527806224, 3.0056367226, 3.15875746442, 3.32675580739, 3.51227671071, 3.71845521927, 3.94873793111, 4.20653608171, 4.49469666192, 4.81480162136, 5.16635056746, 5.54595408705, 5.94673879872, 6.35819618703, 6.76666034148, 7.15647318328, 7.51171817155, 7.81822246392, 8.06540406213, 8.24753572274, 8.36413892828, 8.41946959496, 8.42131227293, 8.37945519029, 8.30422521712, 8.20534786428, 8.09123744974, 7.96868763077, 7.84285821399, 7.7174388442, 7.59489162903, 7.47670861233 ], [ 0.689844001429, 0.681469237036, 0.675033941998, 0.670250471822, 0.667006981505, 0.665453234195, 0.666001912099, 0.669218879009, 0.675610310221, 0.685361108706, 0.698124634476, 0.712980211442, 0.728633145724, 0.74383503197, 0.757893889652, 0.771075784116, 0.784706224437, 0.800882869213, 0.821891570421, 0.849570449559, 0.88487297669, 0.927744598317, 0.977267829384, 1.03194972797, 1.09003251474, 1.14975514849, 1.20953796234, 1.26808891179, 1.3244415665, 1.37793826445, 1.42817095278, 1.47488902349, 1.51787909076, 1.55681760264, 1.59109570349, 1.6196206236, 1.64061520094, 1.65147556471, 1.64881429756, 1.62890716658, 1.58882838025, 1.52846457461, 1.45308353462, 1.37500624234, 1.31183783655, 1.2799234645, 1.28649344376, 1.32715373843, 1.390581662, 1.46526549808, 1.54327110388, 1.62059010963, 1.69596098116, 1.7696249915, 1.84250446606, 1.91577469588, 1.9906761414, 2.06844070703, 2.15025910033, 2.23725801233, 2.33048195717, 2.43088845693, 2.53937050254, 2.65681989889, 2.7842411319, 2.92291744476, 3.07461640215, 3.24180023677, 3.42778241369, 3.63675904156, 3.87365097514, 4.143710567, 4.45185696271, 4.80171232165, 5.19436559275, 5.62702490554, 6.09188716501, 6.57564435845, 7.05998364026, 7.52322988394, 7.94298096737, 8.2992650359, 8.57750069488, 8.77049439556, 8.87895149092, 8.91044906357, 8.87730673187, 8.79406327315, 8.67522782842, 8.53371011766, 8.38001797091, 8.22208255874, 8.0654801109, 7.91383551742, 7.7692608383, 7.63275253031 ], [ 0.698911239617, 0.685384628493, 0.672972021101, 0.661666749167, 0.651729129582, 0.643761220664, 0.638694110257, 0.637640356994, 0.641588292352, 0.650979138858, 0.665308010839, 0.682966768732, 0.701510665566, 0.7183632843, 0.731769250012, 0.741649420542, 0.749939845058, 0.760121267024, 0.776073362026, 0.800833414471, 0.835847524032, 0.880896453506, 0.934490713253, 0.994422410906, 1.05826074572, 1.12371060034, 1.18883220762, 1.25214647772, 1.31265328792, 1.36978640507, 1.42332353198, 1.47326319821, 1.51967176019, 1.56249457189, 1.60131750087, 1.63506265726, 1.66161469025, 1.67741952384, 1.677205365, 1.6541769028, 1.60131504478, 1.51459875352, 1.39846099366, 1.27142763925, 1.1654925024, 1.11249536491, 1.1243776056, 1.18784013498, 1.27837785628, 1.37586280781, 1.46964555021, 1.55633160273, 1.63626592677, 1.71119408393, 1.7831573269, 1.85410482228, 1.92581735181, 1.9999248604, 2.07792472289, 2.16117504764, 2.25087137995, 2.34803007635, 2.45350472268, 2.56805890753, 2.69251402908, 2.82798426672, 2.97619450848, 3.13984196014, 3.32291474994, 3.53085208281, 3.77045026951, 4.04946307235, 4.37583848263, 4.75647016571, 5.19536744557, 5.69140816429, 6.23622975572, 6.81303869558, 7.39701066488, 7.95759490264, 8.46255770541, 8.88305369761, 9.19850452889, 9.39987243797, 9.49031746107, 9.48315816331, 9.39803688037, 9.25667726007, 9.0794329878, 8.883215973, 8.68076978594, 8.48088779986, 8.2891026614, 8.10848602653, 7.94036222891, 7.78487128366 ], [ 0.700152686016, 0.681339281849, 0.662898066351, 0.645025587969, 0.628281036992, 0.613693261602, 0.602787673223, 0.597445686136, 0.599500090778, 0.610042854547, 0.628624444016, 0.652760729171, 0.678178464589, 0.699919845819, 0.714064735137, 0.719573280007, 0.719361635616, 0.719582445355, 0.727165907757, 0.747196978031, 0.781664159849, 0.829741253192, 0.888816222724, 0.955524465576, 1.02648142634, 1.09871371331, 1.16987500327, 1.23831883833, 1.30307461545, 1.36375901097, 1.42044693481, 1.47351666488, 1.52347087271, 1.57071930219, 1.61529089307, 1.65642544945, 1.69198611505, 1.71765979286, 1.72603411267, 1.70596677888, 1.64332636248, 1.52516254512, 1.34989160018, 1.14292554791, 0.964176721708, 0.880648423374, 0.912794123925, 1.02291700282, 1.15892361449, 1.28867238892, 1.40139218835, 1.49740358224, 1.5805793841, 1.65507068769, 1.72437908089, 1.79132827242, 1.85826367786, 1.92723045085, 2.00006085107, 2.07837591029, 2.16353848035, 2.25660566517, 2.35832449389, 2.46920372927, 2.58968882004, 2.72046945922, 2.86294128431, 3.01979195783, 3.19558265126, 3.39712109067, 3.63347906622, 3.91565677764, 4.25587447155, 4.66615669472, 5.15571041933, 5.72714091334, 6.37252610543, 7.07087562963, 7.78818583781, 8.48063182583, 9.10077236047, 9.60580988309, 9.96587822771, 10.1696575989, 10.2252243429, 10.1559735707, 9.99354452277, 9.77056988094, 9.51542450939, 9.24973082609, 8.98816738032, 8.739599256, 8.5086221633, 8.29696438046, 8.10454107572, 7.93017294773 ], [ 0.695754212266, 0.671553467369, 0.646952537722, 0.622247700904, 0.598187426976, 0.57615865488, 0.55833809906, 0.547674312981, 0.547462375096, 0.560278482436, 0.586392426482, 0.622436890339, 0.661361523535, 0.693997416727, 0.711913219471, 0.711333693667, 0.696617365711, 0.679505933407, 0.673167254017, 0.686100087133, 0.720354305175, 0.773304622423, 0.840185968339, 0.915856121088, 0.995681226747, 1.07590682256, 1.15378441418, 1.22756689984, 1.29641643792, 1.36025554314, 1.41959038417, 1.47532611995, 1.52857670728, 1.58044831529, 1.63174564079, 1.68251015751, 1.73124696771, 1.77365002291, 1.8006744449, 1.79615555945, 1.73528944997, 1.58775847091, 1.33317390341, 0.997341853556, 0.691277043579, 0.563883348028, 0.649436542372, 0.845125267733, 1.0475223145, 1.21522380795, 1.34561147195, 1.44770631695, 1.53084936498, 1.60208075244, 1.6663370217, 1.72718445007, 1.78743568138, 1.84952237722, 1.9156403132, 1.98772651386, 2.06734948901, 2.15559898563, 2.25304286067, 2.35978650021, 2.47565728226, 2.60056453987, 2.73511977715, 2.88154620311, 3.04469403136, 3.23275076058, 3.45736258676, 3.73341667065, 4.07881669205, 4.51347389716, 5.05575493424, 5.71590076871, 6.48862187905, 7.34810040513, 8.24735797175, 9.12255958181, 9.90233767548, 10.5213098322, 10.934634651, 11.1282178605, 11.119877897, 10.9510394315, 10.6732981136, 10.3358341432, 9.97762693991, 9.62510251632, 9.29357008943, 8.99024488653, 8.71723444383, 8.47375467446, 8.25750889258, 8.06546345994 ], [ 0.687755099654, 0.658154310766, 0.627279037648, 0.59538476881, 0.563226022091, 0.532355229411, 0.505506571509, 0.486932677907, 0.482266266506, 0.497149812219, 0.534234504109, 0.58987872672, 0.653194191266, 0.708060801177, 0.736828419531, 0.727764939194, 0.686588042906, 0.637974759568, 0.608823100754, 0.612646624152, 0.649035770523, 0.71071262648, 0.78912884817, 0.876753231503, 0.967567701703, 1.05706915423, 1.14220315205, 1.22125445139, 1.29367069862, 1.35983700561, 1.42084142572, 1.4782633395, 1.53399294548, 1.59006016258, 1.64841319034, 1.71052661332, 1.77661085157, 1.84401180747, 1.9041594862, 1.93743129131, 1.90652799943, 1.75350374126, 1.41611376775, 0.895429562691, 0.380112003129, 0.194657570252, 0.385961296704, 0.703413347947, 0.975870286532, 1.17216342583, 1.31001376955, 1.41043726699, 1.48816314699, 1.55234367169, 1.60866702713, 1.6609954152, 1.71238115146, 1.76558771517, 1.82323585894, 1.88768663559, 1.96079716697, 2.04369885844, 2.1367043133, 2.23936042301, 2.35061840006, 2.46917223985, 2.59418338622, 2.72662655495, 2.8710627079, 3.03692031721, 3.23847458346, 3.49450842012, 3.82962119794, 4.27562521291, 4.86724190003, 5.62978278539, 6.56475849427, 7.64095640556, 8.79313552117, 9.92746689059, 10.9345668125, 11.7113356156, 12.1875063334, 12.3455988224, 12.2228290226, 11.8936497826, 11.4433473199, 10.9459394518, 10.4533637215, 9.99515741463, 9.58391472328, 9.22192248498, 8.90635309374, 8.63235926498, 8.39453324608, 8.18746635305 ], [ 0.678064464792, 0.643219976134, 0.60611778945, 0.566807087546, 0.525783511101, 0.484378761144, 0.445439894228, 0.414341613181, 0.399880357563, 0.413355794684, 0.463418800796, 0.548118166652, 0.651799820684, 0.748660575119, 0.804542752594, 0.785206057338, 0.693103676139, 0.585753460633, 0.52188254088, 0.518731007303, 0.564685305795, 0.64226661358, 0.737590390637, 0.840830972883, 0.944919876514, 1.04485018435, 1.13745702067, 1.22125624444, 1.29618693858, 1.36328805238, 1.42438819089, 1.48186618216, 1.5385016096, 1.59739994772, 1.66194267578, 1.73565495148, 1.82174876966, 1.92177837074, 2.03215598009, 2.13617574806, 2.18898962599, 2.09947814926, 1.73702377388, 1.03603103383, 0.265130419595, 0.00874508689224, 0.299546829172, 0.692155799556, 0.983682291916, 1.17368856937, 1.29869048366, 1.38608886771, 1.45188727307, 1.50494219719, 1.55037182948, 1.59164475119, 1.63175654896, 1.67377868311, 1.72091373382, 1.776169943, 1.84185424122, 1.91915879256, 2.00803732127, 2.10733042726, 2.21492681416, 2.32790849986, 2.44312434379, 2.55900253841, 2.67873033053, 2.81276686675, 2.97778619728, 3.19455042506, 3.49308097976, 3.9229474104, 4.54938453179, 5.42696444208, 6.57044421032, 7.94182737232, 9.45076340326, 10.9600627909, 12.3001795833, 13.3028660075, 13.8517223231, 13.9247189883, 13.598367536, 13.0093094922, 12.3003718711, 11.5817568151, 10.9184714018, 10.3372141752, 9.84070438454, 9.42065610513, 9.06585636888, 8.76566714982, 8.5108166551, 8.29318241315 ], [ 0.668456079739, 0.628780577359, 0.585832736487, 0.539315632501, 0.489187274298, 0.436024397464, 0.381875893301, 0.332101069688, 0.298446670055, 0.301043058102, 0.361355905111, 0.482976584929, 0.642987693573, 0.805043490729, 0.915898213884, 0.890594999167, 0.70399047038, 0.493994421664, 0.389663327378, 0.39580898875, 0.467865031049, 0.571883627875, 0.690182713637, 0.81261259525, 0.931951241729, 1.04300949715, 1.14271852284, 1.23006681438, 1.30574721053, 1.37168216163, 1.43060040379, 1.48576018874, 1.54084568001, 1.60002726622, 1.66816480958, 1.75112038939, 1.85607904996, 1.99149505696, 2.16531127078, 2.37722886327, 2.5947622781, 2.70288002878, 2.47372921988, 1.73831484727, 0.819372521696, 0.430897543652, 0.597763517866, 0.875214892753, 1.08243851494, 1.21747679211, 1.30717688937, 1.37087482738, 1.41927290444, 1.45792439301, 1.4899405052, 1.51770264091, 1.54389454397, 1.57198114775, 1.60609683778, 1.65034446046, 1.70777836139, 1.77963479269, 1.86526884942, 1.96264100161, 2.06862961011, 2.17868564903, 2.28653145284, 2.38600746434, 2.47679398959, 2.57036612838, 2.68595924574, 2.83962058699, 3.05762042537, 3.41652854313, 4.04327367061, 5.0480676634, 6.46386310102, 8.2398641878, 10.2541385524, 12.3132518691, 14.1552013291, 15.4951533942, 16.1259871652, 16.0175252341, 15.3282012224, 14.3152675927, 13.2200658025, 12.2018449802, 11.3313850997, 10.6176005924, 10.0396730175, 9.56999925712, 9.18489817688, 8.86668377132, 8.60210193748, 8.38040772351 ], [ 0.660521915487, 0.6167400358, 0.568796669543, 0.516016336732, 0.457692052611, 0.393256967111, 0.322955419763, 0.250045236578, 0.186643268878, 0.163151957394, 0.223754876832, 0.38181347839, 0.595298909187, 0.813267556083, 0.976135135066, 0.949038034921, 0.645500501257, 0.314864418919, 0.196954319745, 0.251670129049, 0.371576492732, 0.510261014803, 0.655112591222, 0.798890159434, 0.934576244217, 1.05664553005, 1.16217732296, 1.25090837022, 1.32463118437, 1.38643703451, 1.4401136635, 1.4898156608, 1.54001428951, 1.59570378179, 1.6628691105, 1.7492899544, 1.86586278745, 2.02872997136, 2.26225880055, 2.60016620724, 3.06690702942, 3.57279661698, 3.70032096387, 3.01029671017, 1.9630129893, 1.31790574298, 1.1441359835, 1.16597304881, 1.22479059408, 1.27833513091, 1.32186637431, 1.35726931783, 1.38606664396, 1.40880850817, 1.42575401146, 1.43774201184, 1.44699840181, 1.45762789006, 1.47537644726, 1.50632942421, 1.55485968385, 1.62207405515, 1.70602677007, 1.80338538881, 1.91052918773, 2.02236333309, 2.12961487059, 2.21886941222, 2.2817772315, 2.3308254988, 2.39132102077, 2.45803717717, 2.52135206532, 2.7035091766, 3.26861623428, 4.42422070147, 6.20502861652, 8.52838183922, 11.2448536673, 14.1082132308, 16.7250114934, 18.5955157351, 19.3186143607, 18.8429677237, 17.5042694638, 15.7998324569, 14.1363267941, 12.728408525, 11.6267281419, 10.7906240026, 10.1522699308, 9.65301233706, 9.25351427213, 8.92966015623, 8.66549127522, 8.44840763074 ], [ 0.655589256377, 0.608720050378, 0.557109539362, 0.499837691511, 0.435728200297, 0.363287402255, 0.280936734843, 0.188738249805, 0.0956885432131, 0.0389802441299, 0.0903381230992, 0.269552752598, 0.496737595929, 0.702830136198, 0.831571750615, 0.77328131832, 0.462807344156, 0.117947037733, 0.0239336677667, 0.144502508391, 0.307393236111, 0.473812900672, 0.643080617423, 0.808469548555, 0.960601571985, 1.09247815363, 1.20125311127, 1.28784304012, 1.35565857788, 1.40933746512, 1.45388564322, 1.49429569468, 1.53556594285, 1.58303774417, 1.64304399344, 1.72400394323, 1.83836792417, 2.00641288965, 2.26431700292, 2.68170107304, 3.38908556339, 4.49288198875, 5.24813583604, 4.27593060595, 2.84525264426, 1.96949428388, 1.55948202068, 1.39394924855, 1.33576970111, 1.32194165385, 1.32620954794, 1.33696018656, 1.34803531722, 1.35548167565, 1.35672751793, 1.35087091878, 1.33954677415, 1.32784007052, 1.32428087409, 1.33872281987, 1.37809698882, 1.44282517973, 1.52767232331, 1.62668524445, 1.73684505663, 1.85580588144, 1.97439843773, 2.07060132431, 2.11956689692, 2.13078422758, 2.14793161893, 2.11483951315, 1.90146472088, 1.72475264195, 2.16085384514, 3.54008980116, 5.80974284547, 8.82552876892, 12.4551392366, 16.4557513502, 20.2797624713, 23.0326397843, 23.8725850638, 22.6808081135, 20.1896249192, 17.3775529192, 14.9095525349, 13.0320599347, 11.7125352948, 10.8023154838, 10.150850544, 9.65628233554, 9.2650549589, 8.9514830255, 8.70038151748, 8.49872886038 ], [ 0.654632008943, 0.605880352187, 0.552236889513, 0.492799244673, 0.426412196872, 0.351578135362, 0.266559875453, 0.170719552936, 0.0714092288762, 0.00592789962876, 0.0513639513333, 0.212917791639, 0.394490493447, 0.540284224469, 0.607908479757, 0.542173989943, 0.339946647814, 0.120877953118, 0.051180460362, 0.148867152887, 0.297268425337, 0.473018813495, 0.664082475409, 0.851951596086, 1.02026835551, 1.15937987422, 1.26690873671, 1.34588126562, 1.4021758222, 1.44248507483, 1.47317569903, 1.49992399383, 1.52786442197, 1.56204822119, 1.60813742248, 1.67341470557, 1.76842304461, 1.91007316597, 2.12862724465, 2.48662546973, 3.13889395012, 4.46374656109, 5.8669748553, 4.35302774017, 2.84693092282, 2.07080027099, 1.67050079003, 1.46772264488, 1.36952561532, 1.32556615141, 1.30883905997, 1.3042864353, 1.3025716342, 1.29710960741, 1.28303744539, 1.25751226619, 1.22112075929, 1.18000947237, 1.14721367932, 1.13995971334, 1.1708091477, 1.23829313678, 1.32871321263, 1.4296623672, 1.5403278129, 1.66759929938, 1.810643645, 1.94375851289, 2.01739212955, 2.01900698087, 2.02154897653, 1.90067567314, 1.28837085045, 0.583546345076, 0.913645034754, 2.63542665335, 5.45742751134, 9.19394284198, 13.8407396186, 19.2997697396, 24.9301371464, 29.1819644492, 30.2246363218, 27.7208281913, 23.2829969618, 18.8088211093, 15.2969414628, 12.9308622201, 11.4822924075, 10.6052739814, 10.019919709, 9.57607104301, 9.21887348, 8.93287910674, 8.7093410427, 8.53616257786 ], [ 0.658220210397, 0.608806897529, 0.554763933182, 0.495453324849, 0.430212743483, 0.358482437517, 0.28027900491, 0.197879629324, 0.121306944839, 0.0802929736971, 0.116344588776, 0.21087484374, 0.313255205446, 0.406690864883, 0.454125780433, 0.414014230131, 0.293763575099, 0.166721649725, 0.111304106601, 0.162461714131, 0.30537866778, 0.505146522006, 0.728327695579, 0.943710179834, 1.12785614966, 1.26933921558, 1.36804345722, 1.43100079802, 1.46789883607, 1.48810330335, 1.49938581137, 1.50779559124, 1.51808789724, 1.53434249673, 1.56061038634, 1.60154478726, 1.66299001843, 1.752340338, 1.87775279349, 2.04236116589, 2.2178270203, 2.25003357333, 2.02379830113, 2.18393929652, 2.01723532144, 1.7387335724, 1.53005227066, 1.39964199327, 1.325143699, 1.28603026256, 1.26724338695, 1.25789079875, 1.24947136013, 1.23463027327, 1.20672374217, 1.16045255494, 1.09408036403, 1.01375102352, 0.93864870186, 0.900180498921, 0.924579538259, 1.00678540929, 1.11212571941, 1.21245900912, 1.31165335806, 1.43613619739, 1.60531318891, 1.80135494045, 1.95415009684, 1.99970692296, 1.99927883563, 1.83806072244, 1.05221534351, 0.102679277712, 0.42747893776, 2.36420317714, 5.49238073777, 9.68258350697, 15.140111391, 22.0684564989, 29.9548966954, 36.4637375282, 37.9198879166, 33.3933537985, 26.1755332916, 19.6186815944, 14.9884647425, 12.2493241387, 10.8661460758, 10.1940285515, 9.77416354598, 9.42449647961, 9.1215442946, 8.87868312416, 8.69881049581, 8.57001339857 ], [ 0.666539116827, 0.617539578616, 0.564440240984, 0.506957374084, 0.44504087569, 0.379194392431, 0.311182790022, 0.245500775943, 0.191654342597, 0.163452763616, 0.163176580458, 0.174824193115, 0.215098914736, 0.29594015882, 0.362531188622, 0.355959203537, 0.264265868051, 0.115744438953, 0.00756039497288, 0.0984085787236, 0.317787787206, 0.582220788094, 0.856988481506, 1.10700338111, 1.30435418696, 1.43860145461, 1.51564123841, 1.54979228983, 1.55641521074, 1.54808168393, 1.53369785296, 1.51908255478, 1.50794059049, 1.50273706313, 1.5052996928, 1.51705459562, 1.53864563143, 1.56809845249, 1.59486064219, 1.58130585171, 1.40738880806, 0.775889496913, 0.00504509227403, 0.74179796658, 1.19709108317, 1.27943396673, 1.27429957311, 1.2506312055, 1.22876197011, 1.21423487995, 1.20601598067, 1.20003985816, 1.19057351177, 1.17057361167, 1.13186999275, 1.06593398064, 0.966483624965, 0.836221121773, 0.699495466266, 0.611876303157, 0.63268387939, 0.753449623921, 0.890895244996, 0.982761988549, 1.0439310728, 1.13702371094, 1.31226442305, 1.56340984405, 1.8126854983, 1.95129200984, 1.984605201, 1.89594912703, 1.4631394669, 0.955048589513, 1.35043039224, 3.09544640949, 6.03022261361, 10.1532446891, 15.8071156431, 23.459590495, 32.9048169018, 41.4006273353, 43.3651218828, 36.9788998583, 27.3716706268, 19.2273010776, 13.8566554928, 11.0235539179, 9.95774435474, 9.66458137661, 9.47466326926, 9.22866966664, 8.98369336277, 8.79660581323, 8.67989054353, 8.61613068393 ], [ 0.679473998887, 0.631731533558, 0.580502829241, 0.525774509112, 0.467865511093, 0.407703105564, 0.347218303809, 0.289596043054, 0.238074466914, 0.190262529651, 0.132598532381, 0.0738056655197, 0.0875377885818, 0.195541649809, 0.307435076281, 0.344304848811, 0.286915791069, 0.159963106038, 0.0699557210265, 0.166919991938, 0.426449367744, 0.755482128082, 1.09101620513, 1.37820861596, 1.57927158985, 1.68762835428, 1.72166136502, 1.70807678459, 1.66999516162, 1.62310837758, 1.57646484568, 1.53454970178, 1.49912726454, 1.47045423407, 1.4478771203, 1.42984721928, 1.41320228567, 1.3911556662, 1.34868603089, 1.25355749938, 1.04832741346, 0.70112899241, 0.44320072123, 0.498963432398, 0.677269271375, 0.884860024108, 1.01717446932, 1.08248509384, 1.11192218268, 1.12565487236, 1.13264314758, 1.13460238304, 1.1285845804, 1.10816496789, 1.06389114615, 0.983736480034, 0.855056896738, 0.672081386142, 0.457229397445, 0.29557029864, 0.312230552689, 0.504516532892, 0.693664948317, 0.758182212528, 0.738140275974, 0.761464261419, 0.919048525617, 1.1941583814, 1.51779736262, 1.78535232986, 1.95523759421, 2.04912562599, 2.0486029494, 2.11161779135, 2.69975115697, 4.17953444976, 6.65653018507, 10.2617116918, 15.3350004509, 22.3136518742, 31.0338239459, 38.9677602053, 40.791488538, 34.64669658, 25.4136632005, 17.5722136283, 12.4005633332, 9.8243921558, 9.17772126112, 9.2444003789, 9.20797577463, 9.01063712115, 8.81080428924, 8.69532171182, 8.67018412494, 8.70055154359 ], [ 0.696723036728, 0.650853524776, 0.602069456371, 0.550473537064, 0.496424583459, 0.440614331826, 0.383971722723, 0.326920693064, 0.267057122692, 0.195462265265, 0.101869464236, 0.0137990121553, 0.0205283219995, 0.146032627894, 0.290779483655, 0.370772355802, 0.369679047706, 0.318733743227, 0.300756452817, 0.418245941652, 0.696577472392, 1.08032770829, 1.48062636794, 1.80227174504, 1.98644891028, 2.03623806354, 1.99441396403, 1.90736520761, 1.8072805637, 1.71129767603, 1.62639684662, 1.55398163807, 1.4927686402, 1.44026259667, 1.3932967378, 1.3479459957, 1.29893063156, 1.23851935199, 1.15507271121, 1.03231815347, 0.853395731739, 0.613274931878, 0.302077479717, 0.0591023740476, 0.298433320667, 0.616787890771, 0.821292492958, 0.935814917153, 0.998066449843, 1.03293386545, 1.05362103227, 1.06493694968, 1.06567272347, 1.04991382827, 1.00752749413, 0.924241370742, 0.782562909344, 0.568061730087, 0.294496356532, 0.0637429430724, 0.0722411383513, 0.335438906692, 0.561429623656, 0.56572325062, 0.416978320875, 0.343452095201, 0.499503608801, 0.764786353325, 1.12917894931, 1.53275653129, 1.88145071215, 2.1756282765, 2.46278163076, 2.86136279968, 3.59308105566, 4.88275425748, 6.88757070252, 9.7677424276, 13.7513805101, 19.0231216395, 25.217924822, 30.4550072161, 31.5368914431, 27.4909983817, 21.1468509196, 15.4193528892, 11.4535442033, 9.45348029543, 9.02088704235, 9.09149912981, 8.97972106395, 8.74921824079, 8.5937575767, 8.5846905947, 8.69800915489, 8.86590707316 ], [ 0.717893234182, 0.674345622223, 0.628381493793, 0.58010851434, 0.529752269969, 0.477573076811, 0.42353735559, 0.366488237468, 0.302794684979, 0.226378487214, 0.137492597568, 0.0669040448854, 0.0776368495599, 0.18643974372, 0.326456042688, 0.431814808414, 0.487360758414, 0.520205520801, 0.590271088192, 0.770813703206, 1.10465778996, 1.56683995482, 2.05079928146, 2.40590133449, 2.54190409471, 2.48637829219, 2.3269526167, 2.13812497454, 1.95982501827, 1.80654614528, 1.67977535395, 1.57572061618, 1.48897539616, 1.413910762, 1.34495645878, 1.27635599509, 1.20170537647, 1.11358749564, 1.00391312491, 0.866002434055, 0.698208248006, 0.500171314641, 0.254956171117, 0.0864219550076, 0.257366651695, 0.516252615806, 0.705679516793, 0.825112022175, 0.897353248071, 0.942196848734, 0.972148572119, 0.992473783187, 1.00239853878, 0.996255468662, 0.964123579329, 0.892080908139, 0.763200363553, 0.563632358039, 0.306695297707, 0.0899772609116, 0.0993721651335, 0.340804467534, 0.521289784924, 0.451420608519, 0.189278688141, 0.0257930581651, 0.214024564016, 0.362164635581, 0.744514901425, 1.27068596091, 1.76716954634, 2.20937183574, 2.65078809543, 3.18322638212, 3.93113571883, 5.02663157466, 6.58932830523, 8.73419411882, 11.5614031307, 15.0501807163, 18.7863257109, 21.6551548477, 22.2222048862, 20.1517803702, 16.6921287661, 13.3302066534, 10.8748161984, 9.55921681703, 9.12036818687, 8.91782707498, 8.62579611409, 8.37133894737, 8.31158112709, 8.47936766287, 8.80914024763, 9.18212443458 ], [ 0.742554852239, 0.701674813442, 0.658833961268, 0.614117824265, 0.567634659065, 0.519394682978, 0.469042811238, 0.415458218301, 0.356659923923, 0.291654054426, 0.227111141453, 0.186948318985, 0.205491938382, 0.291101590232, 0.410314700654, 0.524683238188, 0.623639353491, 0.727879939167, 0.883048961643, 1.14847712108, 1.57207908035, 2.14337852715, 2.73517189995, 3.12707004058, 3.18708460566, 2.98601516121, 2.67832171302, 2.37159352976, 2.10905069305, 1.8975894771, 1.73021973884, 1.59659408997, 1.48675267426, 1.39198669408, 1.30464072864, 1.21758375941, 1.12367211171, 1.01549414966, 0.88593295569, 0.730677763235, 0.55501621018, 0.387664573949, 0.283259157959, 0.26857995098, 0.356890592981, 0.506096272181, 0.643260602336, 0.742115648283, 0.807585181916, 0.85267811795, 0.887527757064, 0.916263390561, 0.937390912338, 0.945078347798, 0.930241750291, 0.881474719721, 0.787057373241, 0.641652459343, 0.464958794981, 0.330876965037, 0.342822210753, 0.480257805071, 0.562378786209, 0.464960127931, 0.235897059212, 0.107562213121, 0.0924941492279, 0.0614861758669, 0.50808885705, 1.10866268227, 1.67353422578, 2.17795114678, 2.66421301626, 3.19765981884, 3.85570013504, 4.72185846408, 5.87846399978, 7.39311661213, 9.2853673639, 11.4585110753, 13.5987478346, 15.1398889411, 15.5115997492, 14.6225907119, 12.9827215058, 11.2688726273, 9.93339714591, 9.11718073254, 8.66791719749, 8.31187120908, 7.97783764821, 7.8088221508, 7.94138150133, 8.39820249445, 9.07409666803, 9.76491586624 ], [ 0.770258279095, 0.732322632727, 0.69288190883, 0.652030102331, 0.609862529692, 0.566401926658, 0.521500563816, 0.474845480372, 0.426471985386, 0.378560779305, 0.338891487568, 0.323150343137, 0.348805497155, 0.420196855578, 0.523257499456, 0.640491256324, 0.768613194187, 0.925096506091, 1.14708869341, 1.48552055493, 1.98706883982, 2.64539114221, 3.3197823668, 3.73797467341, 3.7291141125, 3.39970845507, 2.96445045591, 2.55909153317, 2.22772470015, 1.96946166932, 1.7696692558, 1.61247788866, 1.48430019589, 1.37412134035, 1.27285544062, 1.17253983673, 1.06560871902, 0.944355569766, 0.800746624542, 0.627121775869, 0.42041613021, 0.203260527059, 0.0894800982378, 0.191870064085, 0.352703557909, 0.489196889711, 0.595358466346, 0.669122535208, 0.71921341778, 0.758518454595, 0.795886662223, 0.833462613528, 0.867921055355, 0.892616005604, 0.899264591854, 0.879403714611, 0.826821501825, 0.742982951797, 0.646821976227, 0.580865783862, 0.585304362755, 0.637958548577, 0.654297067001, 0.576258199003, 0.437058619332, 0.32922871664, 0.211194243795, 0.213175332753, 0.588128922639, 1.12283492368, 1.64855468883, 2.12448117219, 2.56571733301, 3.00785363896, 3.50114419695, 4.11286167624, 4.91639093061, 5.95685140709, 7.21361105313, 8.57981090602, 9.85222614352, 10.7560774434, 11.0639129741, 10.7571377135, 10.0507120508, 9.24175159857, 8.54715910933, 8.03556345158, 7.64657563845, 7.30208353996, 7.04188464423, 7.02893834304, 7.4394538845, 8.34259230569, 9.59401998744, 10.8121192419 ], [ 0.800533165012, 0.765752994796, 0.729943639856, 0.693250763768, 0.655850002978, 0.617937705115, 0.579765805351, 0.541836078532, 0.505468050625, 0.473933401036, 0.453809809297, 0.454905688528, 0.486598383229, 0.552032943014, 0.646803588962, 0.765493635944, 0.910618825078, 1.0979687182, 1.35756460166, 1.72987431455, 2.25040235202, 2.90602650389, 3.56181782125, 3.95999564185, 3.92961537634, 3.56789512222, 3.09333440512, 2.65107768632, 2.28970103569, 2.00833205615, 1.79076158622, 1.61947408672, 1.47962262964, 1.35936609983, 1.24917755035, 1.14099033021, 1.02741214143, 0.901025038125, 0.753741919671, 0.576499117816, 0.362288536177, 0.130757059544, 0.00802466047829, 0.130221716785, 0.326783749635, 0.464496231059, 0.545781299789, 0.590863554219, 0.620326399507, 0.651293645649, 0.691832439109, 0.740692023838, 0.791272241949, 0.835310514058, 0.864877005554, 0.873685256519, 0.858906928156, 0.824139743761, 0.782550716035, 0.754914340641, 0.754927251187, 0.769702929143, 0.764644581115, 0.716734104299, 0.639564688788, 0.566743345021, 0.521821608777, 0.591204200406, 0.861106729015, 1.25796607296, 1.67542592, 2.05939840319, 2.39253969213, 2.67845474119, 2.9514342466, 3.29470310277, 3.81390179972, 4.55009874229, 5.43958378917, 6.36902928815, 7.2148912252, 7.8391756433, 8.12938936071, 8.07579118195, 7.78363380127, 7.40252491645, 7.04212118139, 6.72876515772, 6.42824084161, 6.12328600216, 5.89692855544, 5.97220286582, 6.67066909329, 8.23438897047, 10.5034152378, 12.6788524059 ], [ 0.832888424982, 0.801396506338, 0.769363949357, 0.737014620059, 0.704645386509, 0.672661191366, 0.64166854258, 0.612692305491, 0.587585068893, 0.569595684171, 0.563755231299, 0.576362192244, 0.613109493175, 0.676913536684, 0.767870741319, 0.886417056048, 1.0378338629, 1.23548885127, 1.5013828761, 1.86223397073, 2.33566293083, 2.89734330361, 3.43565983084, 3.76151816489, 3.7470993838, 3.45054609159, 3.03542076468, 2.62874903887, 2.28376440461, 2.00762785212, 1.78961910169, 1.61523814172, 1.47121214757, 1.34659168446, 1.23250530897, 1.12157468328, 1.00732587771, 0.883704203109, 0.744837202919, 0.585800628684, 0.407876255609, 0.238596064275, 0.160260969238, 0.231479288585, 0.360189042274, 0.450032141987, 0.488004921583, 0.495089002348, 0.49945219939, 0.522957653884, 0.571214928862, 0.636373998579, 0.706668155376, 0.771747264254, 0.823821369577, 0.858000161822, 0.873065067719, 0.872472841167, 0.86447884242, 0.859307663425, 0.862429249977, 0.868687989049, 0.865662416985, 0.845923433765, 0.816472624125, 0.796544135116, 0.814324885146, 0.91203314502, 1.11605228011, 1.39789594487, 1.70032120145, 1.97096128781, 2.16597896041, 2.25422981037, 2.25645512821, 2.31113078379, 2.62592641147, 3.2364815104, 3.96512694867, 4.67651806805, 5.33946838317, 5.88847133085, 6.20982394659, 6.25672073489, 6.09553322425, 5.85837911667, 5.65386170742, 5.48342534635, 5.26691530814, 4.94987951229, 4.59673346577, 4.50270999416, 5.31834768525, 7.794156846, 11.9349357376, 15.9744991244 ], [ 0.866821540191, 0.838660691386, 0.810436313549, 0.782453145215, 0.755122835805, 0.729016546673, 0.704963495111, 0.684219779248, 0.668709305561, 0.661262577297, 0.665653060522, 0.686174903109, 0.726756979791, 0.790192574521, 0.878394095082, 0.993991703768, 1.14250842358, 1.33382394902, 1.58167350068, 1.89944744828, 2.28918967794, 2.72136803847, 3.11494685275, 3.3529605184, 3.35760903342, 3.15524119733, 2.8439424448, 2.51541603936, 2.21936854645, 1.97086118384, 1.76727490972, 1.59974559735, 1.45851035982, 1.33481279791, 1.22130193064, 1.11189845371, 1.0015637788, 0.886207458991, 0.763036198716, 0.632100207704, 0.500730043932, 0.391620401658, 0.341642253424, 0.362718717798, 0.409566950322, 0.430565690029, 0.412501527588, 0.37385153195, 0.350073070536, 0.370999119157, 0.435933040331, 0.524142588024, 0.617315643803, 0.703899386722, 0.776699551094, 0.831860857521, 0.86895592647, 0.891003008317, 0.903633235698, 0.912944781795, 0.922521948377, 0.931728891606, 0.937565864997, 0.9394117924, 0.942936624894, 0.960630714608, 1.01031857268, 1.11098339126, 1.27046188588, 1.47386300349, 1.68584396022, 1.85615738796, 1.9188734894, 1.80122154987, 1.49249434205, 1.21667038125, 1.41301783919, 2.09139133925, 2.77619121165, 3.33032243536, 3.93853468471, 4.59234773069, 5.05475135586, 5.16015514394, 4.93440304638, 4.59935811995, 4.42081557172, 4.38861746443, 4.27681249948, 3.91413061141, 3.26691287856, 2.5642172996, 2.98722548063, 6.48484626507, 13.6637110402, 21.0671714216 ], [ 0.901836133002, 0.876957442913, 0.852453832451, 0.82869573132, 0.806177165552, 0.785567290566, 0.767789798429, 0.754133249408, 0.746374752816, 0.746860338536, 0.758447497435, 0.784237779918, 0.827171464641, 0.889768345672, 0.974353017371, 1.08382159038, 1.222546266, 1.39669425444, 1.61308497452, 1.87549873208, 2.1773288747, 2.49135748197, 2.7639551842, 2.928531062, 2.94220511086, 2.8153743221, 2.60044931676, 2.35528868945, 2.11891674357, 1.90893908347, 1.72880800081, 1.57509612984, 1.44197664513, 1.32339238258, 1.21391841573, 1.10903468419, 1.00522453306, 0.900163521337, 0.793251948165, 0.686800973036, 0.587920851148, 0.509296077895, 0.463008797479, 0.445124081002, 0.430261839724, 0.39169809429, 0.321725445075, 0.236527719396, 0.181575118762, 0.2082782033, 0.301155966712, 0.416080549757, 0.531321355173, 0.637064037965, 0.727172113902, 0.798355421555, 0.850506070602, 0.886438354382, 0.910821411117, 0.928552320523, 0.943193271452, 0.956386887796, 0.968845223804, 0.982431798612, 1.00195631237, 1.03558549515, 1.09364342086, 1.18545549241, 1.31389373828, 1.46939833056, 1.62511147628, 1.73115385884, 1.70691281632, 1.44368764198, 0.880106947873, 0.289753884421, 0.433173060306, 1.28992687874, 1.85345855941, 2.10720940519, 2.72723883336, 3.74516596589, 4.59635878414, 4.85169516088, 4.32031336003, 3.46187622539, 3.19958458221, 3.41718380024, 3.49967796728, 3.14879383521, 2.29303186038, 0.895319983662, 0.466636358838, 4.54249454618, 13.7692322189, 24.1692319262 ], [ 0.937462419935, 0.915734393579, 0.894760466548, 0.874953144804, 0.856849460825, 0.841152720598, 0.828787696786, 0.820964518101, 0.819233900687, 0.82550050959, 0.841955856511, 0.870919771425, 0.914648814003, 0.975240589846, 1.05474983646, 1.15548707803, 1.28025518325, 1.43210589013, 1.61311462535, 1.8217066009, 2.0484861816, 2.2719790305, 2.45839827391, 2.57068847394, 2.58581432037, 2.50767909548, 2.36331607254, 2.18679096724, 2.00533039831, 1.83468635671, 1.68101844765, 1.54459126506, 1.42281282289, 1.31211337048, 1.20894061199, 1.11025385848, 1.01381004664, 0.918439431279, 0.824432587463, 0.734022305024, 0.651541830128, 0.582041797016, 0.526976524573, 0.478923746217, 0.422529985059, 0.344356606072, 0.242061234326, 0.125628235508, 0.0380151783344, 0.0785724577277, 0.199341047663, 0.330515597567, 0.45918097916, 0.577998742373, 0.680235444551, 0.761868993581, 0.82247301048, 0.864785571132, 0.893460837497, 0.913520292117, 0.929039779975, 0.942603770045, 0.955819040797, 0.970623347009, 0.990618914018, 1.02171058716, 1.0717171648, 1.14857791323, 1.25644985165, 1.38955243915, 1.52480109913, 1.61415630421, 1.57769618686, 1.30855905973, 0.746503931514, 0.153086147863, 0.278429412282, 1.02232361357, 1.12134050924, 0.795745024652, 1.47835370355, 3.1917477593, 4.8203588717, 5.66030477513, 4.47731021581, 1.92355987776, 1.75283107274, 2.56385212303, 2.94583015262, 2.68820722075, 1.94731921544, 1.02257593697, 0.928063139629, 3.70594366495, 10.4013108669, 18.5914121236 ], [ 0.973275264755, 0.954500509824, 0.936787466515, 0.920566194305, 0.90638142754, 0.894922466634, 0.887057440071, 0.883865924639, 0.886657654551, 0.896960151747, 0.916461380871, 0.946911695566, 0.990019070115, 1.04739083654, 1.12055213213, 1.21099431737, 1.32010442364, 1.44875036196, 1.59629197342, 1.75891616011, 1.92758590728, 2.08667581669, 2.21522902421, 2.29239764706, 2.3056278009, 2.25636019862, 2.15867738082, 2.03220597888, 1.89477496426, 1.75863763319, 1.63023401693, 1.51168746649, 1.40254663387, 1.30113518121, 1.2054274007, 1.11357597306, 1.02424206444, 0.936833810332, 0.851681086494, 0.77004143667, 0.693627574667, 0.623230109083, 0.556537004642, 0.486843405708, 0.405387438118, 0.307502260728, 0.198270910735, 0.092790192447, 0.0174955356068, 0.0534579889319, 0.155247703327, 0.277717920157, 0.407558093382, 0.531966683406, 0.640343856637, 0.726430948919, 0.788838239584, 0.830252012842, 0.855946045538, 0.871974655885, 0.883364709262, 0.892908506714, 0.901310825, 0.90876378255, 0.916997992737, 0.93089612861, 0.959501981352, 1.01542368076, 1.10960232857, 1.24104750287, 1.38789844391, 1.50444387169, 1.52336503409, 1.37242172942, 1.04302952843, 0.740269374562, 0.835306421843, 1.11475543125, 0.732426800817, 0.020337946505, 0.731009790089, 2.91194804358, 5.14524838038, 6.82488425059, 5.30223953475, 0.230113869868, 0.76231670118, 2.10137117012, 2.63732439389, 2.43288239632, 1.73853950259, 0.739802602449, 0.436127325818, 2.63764227364, 6.57337318182, 11.1379030547 ], [ 1.00890673675, 0.99284178546, 0.978071692064, 0.965022948872, 0.954221075227, 0.946309828515, 0.94206991221, 0.942432183875, 0.948477730687, 0.961416447236, 0.982539654965, 1.01315197651, 1.05449897982, 1.10770936747, 1.17375230511, 1.25337096721, 1.34690858092, 1.45392091126, 1.5725006673, 1.69836097126, 1.82397141907, 1.93837658704, 2.02850298502, 2.082289521, 2.09265865825, 2.0601145144, 1.99221370791, 1.90032660381, 1.79582725175, 1.68757740703, 1.58115769719, 1.47928335138, 1.38266928709, 1.29087674379, 1.20296460686, 1.1179353081, 1.03502121489, 0.953848188833, 0.874466531286, 0.797171563958, 0.721988941345, 0.647798484327, 0.571489886947, 0.488180199215, 0.393577236463, 0.28813525012, 0.180300754315, 0.0849883659292, 0.0218094620587, 0.0513592771986, 0.137209569252, 0.249313618252, 0.376123259471, 0.501215470103, 0.610331253191, 0.694833912276, 0.752175952552, 0.785057454256, 0.800026807595, 0.805412415635, 0.808289252973, 0.811430349895, 0.812772647877, 0.808503873375, 0.797209765876, 0.782667375111, 0.77668970729, 0.801865847489, 0.883989293576, 1.02949187843, 1.21266951124, 1.38521500741, 1.49119855119, 1.48772987257, 1.38743134693, 1.30051945319, 1.34133050172, 1.35974737132, 1.03972880097, 0.685889879341, 1.30877502793, 2.95213172678, 4.63425781195, 5.56845125184, 4.36632821794, 1.79126969572, 1.57687356896, 2.26393385822, 2.56603487324, 2.33334288139, 1.70724322149, 0.831784885284, 0.606393586167, 2.03319036891, 4.17954068628, 6.68801023317 ], [ 1.04405236764, 1.03042707945, 1.01825883904, 1.00795453802, 1.00000237363, 0.994982629573, 0.993575712258, 0.996563836576, 1.00482183908, 1.0192930521, 1.0409488645, 1.07073513187, 1.10951221388, 1.15799338241, 1.21667506869, 1.28573386459, 1.36484905255, 1.45291103428, 1.54761204902, 1.64499887412, 1.73919350562, 1.82260459478, 1.88693009271, 1.92494015399, 1.93246952892, 1.90965042643, 1.86067915346, 1.79226518026, 1.71163366669, 1.62497153644, 1.5366984283, 1.44944471693, 1.3644175124, 1.28187666702, 1.20156408445, 1.1230284174, 1.04583641864, 0.969670661202, 0.894298256268, 0.81937860659, 0.744098529849, 0.666738105433, 0.584505691365, 0.494199329001, 0.394090326092, 0.286551213319, 0.179573806381, 0.0849619522687, 0.0224734454332, 0.04728424715, 0.125548604237, 0.23608274266, 0.362564013168, 0.486232020217, 0.591511890924, 0.66851911782, 0.713697734533, 0.729689818855, 0.724980251978, 0.712307271039, 0.703611194425, 0.702243833114, 0.700208004491, 0.685863872426, 0.653372453212, 0.604779182141, 0.552303249687, 0.5314887276, 0.598187557013, 0.770641998275, 1.00672881822, 1.2469664618, 1.44068893196, 1.55847297949, 1.6085898393, 1.63878769015, 1.68373571181, 1.69383948498, 1.61699137411, 1.6432019118, 2.13333273415, 3.06262563625, 3.95276993857, 4.29721634735, 3.77910260212, 2.88819553744, 2.54344210197, 2.62520501161, 2.62230769353, 2.33809768954, 1.82995610923, 1.27074380566, 0.908434274534, 1.40207058369, 2.73482074092, 4.33466694634 ], [ 1.07847182618, 1.0670062123, 1.05709649519, 1.04911910544, 1.04351434022, 1.04079098718, 1.04152741339, 1.04636666305, 1.05600289459, 1.07115707709, 1.09254141423, 1.12081390993, 1.15652533234, 1.20005869261, 1.25155550746, 1.31081574813, 1.37715517635, 1.44921255011, 1.52472684978, 1.60035239463, 1.67163502542, 1.73330002723, 1.77994696159, 1.80707269837, 1.81210830026, 1.79502908299, 1.75823867116, 1.70578686706, 1.64229629757, 1.57202603346, 1.4983177389, 1.42343807902, 1.34869363681, 1.27467090638, 1.20149239259, 1.12902828752, 1.05703612128, 0.985214799976, 0.913162876454, 0.840239280986, 0.765359635578, 0.686840922313, 0.602515945522, 0.510385496003, 0.409903482183, 0.30351989369, 0.197621587752, 0.101899689059, 0.0242786468896, 0.0230628942058, 0.11770360745, 0.239295064383, 0.367854441012, 0.48751666843, 0.584266108064, 0.648042896773, 0.674075258321, 0.664132399105, 0.628611469828, 0.58778635414, 0.565046442694, 0.567409385751, 0.574073319487, 0.55767487367, 0.509263596413, 0.432615103192, 0.33288018603, 0.248801648066, 0.296731718403, 0.5100945802, 0.802788299157, 1.10432737401, 1.36936922813, 1.57437791181, 1.72109433357, 1.831018753, 1.92300551184, 1.99748368012, 2.07185994598, 2.23698447869, 2.59909324732, 3.11466740204, 3.57025227742, 3.74144982507, 3.55948924006, 3.21719537753, 2.98111665111, 2.86531794269, 2.70387593638, 2.38182287494, 1.88174425569, 1.16239529163, 0.13950215189, 0.852185865847, 2.06425553809, 3.15758970912 ], [ 1.11198541535, 1.10240294985, 1.09442154024, 1.0883807858, 1.08466829283, 1.08372005498, 1.08601724139, 1.09207775519, 1.10244095826, 1.11764441641, 1.13819235299, 1.16451631256, 1.19692862516, 1.23556800154, 1.2803341663, 1.33080648157, 1.38614310841, 1.44496589393, 1.50525375876, 1.56429131904, 1.61873961295, 1.6648933536, 1.69914379888, 1.71857558472, 1.72152657908, 1.70790238514, 1.67911271931, 1.63765681715, 1.58652865576, 1.52865300104, 1.46649762468, 1.40190111006, 1.33607510467, 1.26970831588, 1.20310496602, 1.13631054699, 1.06919697554, 1.00149258508, 0.932752817234, 0.862282888275, 0.78905290314, 0.711690307134, 0.628674211592, 0.538839362666, 0.442157886862, 0.34048068857, 0.23755526903, 0.13780760891, 0.0548627300115, 0.0544653115377, 0.148962806091, 0.272053408774, 0.395706772764, 0.505392490593, 0.588327842513, 0.633948083113, 0.635298476159, 0.591282118875, 0.511997314951, 0.427375384712, 0.384922701496, 0.406713820246, 0.444753622988, 0.437277353719, 0.380177435937, 0.296736345001, 0.182858856289, 0.0456869117992, 0.0831737026007, 0.33299785938, 0.654335397939, 0.989779020113, 1.29908840836, 1.55999891309, 1.76943217297, 1.93823661685, 2.08118906655, 2.21230907528, 2.35459999622, 2.54734398054, 2.81735073693, 3.13018305375, 3.39033887831, 3.50467810628, 3.45273186996, 3.3043812176, 3.14726978969, 2.99401923325, 2.78788449462, 2.4738648171, 2.0365107587, 1.51477442841, 1.2473772067, 1.95731784581, 2.03861421272, 2.71208787084 ], [ 1.14446789327, 1.1365052057, 1.13014523512, 1.12568792959, 1.12346755387, 1.12385031051, 1.12722865312, 1.13401121084, 1.14460734691, 1.15940569534, 1.17874648542, 1.2028878549, 1.23196638351, 1.26595162447, 1.30459381775, 1.34736425026, 1.39339037484, 1.44139408962, 1.48965140193, 1.53600224002, 1.57794410236, 1.61283387617, 1.63819231467, 1.65205966228, 1.65330896068, 1.64181471201, 1.61841536643, 1.58468331257, 1.5425844672, 1.49413469454, 1.44113680387, 1.38503331355, 1.3268657375, 1.26730662052, 1.20672571789, 1.14525843909, 1.0828551215, 1.01930013207, 0.954200671438, 0.886959337126, 0.816764100547, 0.742650912448, 0.663703562277, 0.579428448916, 0.490260696117, 0.39805814716, 0.306560127618, 0.223169436605, 0.166770342299, 0.170206123463, 0.238698457524, 0.340082972623, 0.445984155418, 0.538278050493, 0.602904815923, 0.627825762032, 0.603111795165, 0.522845349921, 0.392373545089, 0.247230811957, 0.171448843312, 0.229578332208, 0.327884916614, 0.333763504352, 0.260413512398, 0.191613043396, 0.114787257425, 0.0406938016429, 0.0899945642968, 0.294627663623, 0.595481511183, 0.929740245108, 1.25338056619, 1.54187069446, 1.78777972245, 1.99575227441, 2.17653878454, 2.34356653574, 2.51320973719, 2.70226566201, 2.91530788094, 3.1304159236, 3.30341862664, 3.39398623989, 3.39247749185, 3.32276749043, 3.21498241907, 3.07470936266, 2.88216203241, 2.61816155622, 2.29345336556, 1.98631440178, 1.87991900064, 1.98954269336, 2.17408729678, 2.69678647041 ], [ 1.17584090895, 1.169254216, 1.16423817289, 1.16105287516, 1.15998137112, 1.1613256255, 1.16539959913, 1.17251874266, 1.18298531768, 1.19706919136, 1.21498404845, 1.23685922632, 1.26270751218, 1.29238927888, 1.32557355428, 1.36169755951, 1.39992853655, 1.43913559193, 1.47788416344, 1.51446951262, 1.54700494703, 1.5735717042, 1.5924194035, 1.60218292583, 1.60206388401, 1.59192460326, 1.57226495016, 1.54408948209, 1.50870638384, 1.46751450098, 1.42182661332, 1.37275454828, 1.32115780842, 1.26764112512, 1.21258003312, 1.15615484573, 1.09837884794, 1.03911387136, 0.97807516802, 0.914838055046, 0.848870683724, 0.779627022981, 0.706734370621, 0.63029288561, 0.551276671926, 0.472036139544, 0.397081313176, 0.334701475827, 0.298870742203, 0.304682267797, 0.353524849707, 0.429355782099, 0.511529593456, 0.582375198617, 0.627136593541, 0.632741042804, 0.587312116462, 0.481416129653, 0.315261963983, 0.122949664215, 0.0131443108096, 0.100652688914, 0.254901615756, 0.26074078953, 0.139030694249, 0.0647751017678, 0.0902983952297, 0.0209215889103, 0.131706399707, 0.339979614593, 0.615743461036, 0.928926390167, 1.24400532591, 1.53723036502, 1.79827671003, 2.02715550715, 2.23010692764, 2.41635563294, 2.59585009453, 2.77596331336, 2.95598503709, 3.12312156598, 3.2560136643, 3.33579544629, 3.35643638508, 3.32522525093, 3.2525988205, 3.14131640858, 2.98633729862, 2.7864016878, 2.56029849916, 2.35985259191, 2.25629755636, 2.28626802629, 2.48347833568, 2.88416837961 ] ] } ================================================ FILE: packages/turf-isobands/test/in/matrix1.json ================================================ { "matrix": [ [1, 1, 1, 1, 1, 1, 1], [1, 5, 5, 5, 5, 5, 1], [1, 5, 15, 15, 15, 5, 1], [1, 5, 10, 10, 10, 5, 1], [1, 5, 5, 5, 5, 5, 1], [1, 1, 1, 1, 1, 1, 1] ], "origin": [10.8, 44.1], "cellSize": 20, "breaks": [2, 4, 8, 12], "zProperty": "temperature" } ================================================ FILE: packages/turf-isobands/test/in/matrix2.json ================================================ { "matrix": [ [18, 13, 10, 9, 10, 13, 18], [13, 8, 5, 4, 5, 8, 13], [10, 5, 2, 1, 2, 5, 10], [10, 5, 2, 1, 2, 5, 10], [9, 4, 1, 12, 1, 4, 9], [10, 5, 2, 1, 2, 5, 10], [10, 5, 2, 1, 2, 5, 10], [13, 8, 5, 4, 5, 8, 13], [18, 13, 10, 9, 10, 13, 18] ], "origin": [10.85, 44], "cellSize": 20, "breaks": [0, 4.5, 9, 13.5, 18], "commonProperties": { "stroke-width": 3, "stroke": "darkred", "fill": "darkred" }, "breaksProperties": [ { "fill-opacity": 0.4 }, { "fill-opacity": 0.5 }, { "fill-opacity": 0.7 }, { "fill-opacity": 0.8 } ] } ================================================ FILE: packages/turf-isobands/test/in/pointGrid.geojson ================================================ { "type": "FeatureCollection", "properties": { "breaks": [0, 20, 40, 80, 160], "breaksProperties": [ { "fill-opacity": 0.5 }, { "fill-opacity": 0.6 }, { "fill-opacity": 0.7 }, { "fill-opacity": 0.8 } ], "zProperty": "people" }, "features": [ { "type": "Feature", "properties": { "people": 4 }, "geometry": { "type": "Point", "coordinates": [-70.823364, -33.553984] } }, { "type": "Feature", "properties": { "people": 42 }, "geometry": { "type": "Point", "coordinates": [-70.823364, -33.50903203113676] } }, { "type": "Feature", "properties": { "people": 65 }, "geometry": { "type": "Point", "coordinates": [-70.823364, -33.464080062273524] } }, { "type": "Feature", "properties": { "people": 6 }, "geometry": { "type": "Point", "coordinates": [-70.823364, -33.419128093410286] } }, { "type": "Feature", "properties": { "people": 56 }, "geometry": { "type": "Point", "coordinates": [-70.823364, -33.37417612454705] } }, { "type": "Feature", "properties": { "people": 155 }, "geometry": { "type": "Point", "coordinates": [-70.823364, -33.32922415568381] } }, { "type": "Feature", "properties": { "people": 15 }, "geometry": { "type": "Point", "coordinates": [-70.76942368848808, -33.553984] } }, { "type": "Feature", "properties": { "people": 0 }, "geometry": { "type": "Point", "coordinates": [-70.76942368848808, -33.50903203113676] } }, { "type": "Feature", "properties": { "people": 34 }, "geometry": { "type": "Point", "coordinates": [-70.76942368848808, -33.464080062273524] } }, { "type": "Feature", "properties": { "people": 3 }, "geometry": { "type": "Point", "coordinates": [-70.76942368848808, -33.419128093410286] } }, { "type": "Feature", "properties": { "people": 3 }, "geometry": { "type": "Point", "coordinates": [-70.76942368848808, -33.37417612454705] } }, { "type": "Feature", "properties": { "people": 36 }, "geometry": { "type": "Point", "coordinates": [-70.76942368848808, -33.32922415568381] } }, { "type": "Feature", "properties": { "people": 67 }, "geometry": { "type": "Point", "coordinates": [-70.71548337697615, -33.553984] } }, { "type": "Feature", "properties": { "people": 7 }, "geometry": { "type": "Point", "coordinates": [-70.71548337697615, -33.50903203113676] } }, { "type": "Feature", "properties": { "people": 17 }, "geometry": { "type": "Point", "coordinates": [-70.71548337697615, -33.464080062273524] } }, { "type": "Feature", "properties": { "people": 27 }, "geometry": { "type": "Point", "coordinates": [-70.71548337697615, -33.419128093410286] } }, { "type": "Feature", "properties": { "people": 37 }, "geometry": { "type": "Point", "coordinates": [-70.71548337697615, -33.37417612454705] } }, { "type": "Feature", "properties": { "people": 78 }, "geometry": { "type": "Point", "coordinates": [-70.71548337697615, -33.32922415568381] } }, { "type": "Feature", "properties": { "people": 10 }, "geometry": { "type": "Point", "coordinates": [-70.66154306546423, -33.553984] } }, { "type": "Feature", "properties": { "people": 0 }, "geometry": { "type": "Point", "coordinates": [-70.66154306546423, -33.50903203113676] } }, { "type": "Feature", "properties": { "people": 53 }, "geometry": { "type": "Point", "coordinates": [-70.66154306546423, -33.464080062273524] } }, { "type": "Feature", "properties": { "people": 53 }, "geometry": { "type": "Point", "coordinates": [-70.66154306546423, -33.419128093410286] } }, { "type": "Feature", "properties": { "people": 84 }, "geometry": { "type": "Point", "coordinates": [-70.66154306546423, -33.37417612454705] } }, { "type": "Feature", "properties": { "people": 43 }, "geometry": { "type": "Point", "coordinates": [-70.66154306546423, -33.32922415568381] } }, { "type": "Feature", "properties": { "people": 43 }, "geometry": { "type": "Point", "coordinates": [-70.6076027539523, -33.553984] } }, { "type": "Feature", "properties": { "people": 18 }, "geometry": { "type": "Point", "coordinates": [-70.6076027539523, -33.50903203113676] } }, { "type": "Feature", "properties": { "people": 16 }, "geometry": { "type": "Point", "coordinates": [-70.6076027539523, -33.464080062273524] } }, { "type": "Feature", "properties": { "people": 94 }, "geometry": { "type": "Point", "coordinates": [-70.6076027539523, -33.419128093410286] } }, { "type": "Feature", "properties": { "people": 94 }, "geometry": { "type": "Point", "coordinates": [-70.6076027539523, -33.37417612454705] } }, { "type": "Feature", "properties": { "people": 4 }, "geometry": { "type": "Point", "coordinates": [-70.6076027539523, -33.32922415568381] } }, { "type": "Feature", "properties": { "people": 57 }, "geometry": { "type": "Point", "coordinates": [-70.55366244244038, -33.553984] } }, { "type": "Feature", "properties": { "people": 5 }, "geometry": { "type": "Point", "coordinates": [-70.55366244244038, -33.50903203113676] } }, { "type": "Feature", "properties": { "people": 5 }, "geometry": { "type": "Point", "coordinates": [-70.55366244244038, -33.464080062273524] } }, { "type": "Feature", "properties": { "people": 65 }, "geometry": { "type": "Point", "coordinates": [-70.55366244244038, -33.419128093410286] } }, { "type": "Feature", "properties": { "people": 90 }, "geometry": { "type": "Point", "coordinates": [-70.55366244244038, -33.37417612454705] } }, { "type": "Feature", "properties": { "people": 9 }, "geometry": { "type": "Point", "coordinates": [-70.55366244244038, -33.32922415568381] } }, { "type": "Feature", "properties": { "people": 33 }, "geometry": { "type": "Point", "coordinates": [-70.49972213092846, -33.553984] } }, { "type": "Feature", "properties": { "people": 78 }, "geometry": { "type": "Point", "coordinates": [-70.49972213092846, -33.50903203113676] } }, { "type": "Feature", "properties": { "people": 36 }, "geometry": { "type": "Point", "coordinates": [-70.49972213092846, -33.464080062273524] } }, { "type": "Feature", "properties": { "people": 3 }, "geometry": { "type": "Point", "coordinates": [-70.49972213092846, -33.419128093410286] } }, { "type": "Feature", "properties": { "people": 1 }, "geometry": { "type": "Point", "coordinates": [-70.49972213092846, -33.37417612454705] } }, { "type": "Feature", "properties": { "people": 7 }, "geometry": { "type": "Point", "coordinates": [-70.49972213092846, -33.32922415568381] } } ] } ================================================ FILE: packages/turf-isobands/test/out/1084.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "eta": "0-5" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-1.265018, 50.886103], [-1.270744, 50.882486], [-1.270744, 50.882486], [-1.276471, 50.878869], [-1.276471, 50.878869], [-1.276471, 50.878869], [-1.282197, 50.880677], [-1.287924, 50.880074], [-1.293651, 50.878869], [-1.293651, 50.875251], [-1.290787, 50.871634], [-1.289833, 50.868017], [-1.293651, 50.865606], [-1.299377, 50.8644], [-1.299377, 50.860783], [-1.293651, 50.857166], [-1.293651, 50.857166], [-1.296514, 50.853549], [-1.293651, 50.85174], [-1.287924, 50.853549], [-1.287924, 50.849931], [-1.282197, 50.849027], [-1.276471, 50.849931], [-1.270744, 50.846314], [-1.265018, 50.846314], [-1.259291, 50.846314], [-1.253565, 50.846314], [-1.247838, 50.846314], [-1.242112, 50.849931], [-1.245929, 50.853549], [-1.242112, 50.85596], [-1.240203, 50.857166], [-1.242112, 50.858974], [-1.247838, 50.858371], [-1.251656, 50.860783], [-1.247838, 50.863194], [-1.244975, 50.8644], [-1.244975, 50.868017], [-1.247838, 50.871634], [-1.247838, 50.871634], [-1.247838, 50.875251], [-1.247838, 50.875251], [-1.242112, 50.878869], [-1.247838, 50.882486], [-1.253565, 50.880677], [-1.256428, 50.878869], [-1.259291, 50.875251], [-1.259291, 50.875251], [-1.259291, 50.875251], [-1.262155, 50.878869], [-1.259291, 50.882486], [-1.265018, 50.886103] ] ] ] } }, { "type": "Feature", "properties": { "eta": "5-10" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-1.32801, 50.886103], [-1.322283, 50.886103], [-1.322283, 50.882486], [-1.316557, 50.878869], [-1.31083, 50.875251], [-1.307967, 50.871634], [-1.307013, 50.868017], [-1.306535, 50.8644], [-1.307967, 50.860783], [-1.307649, 50.857166], [-1.306866, 50.853549], [-1.306665, 50.849931], [-1.306665, 50.846314], [-1.31083, 50.843684], [-1.312392, 50.842697], [-1.310832, 50.83908], [-1.31083, 50.839079], [-1.305105, 50.835463], [-1.305104, 50.835462], [-1.299378, 50.831846], [-1.299377, 50.831845], [-1.293651, 50.831846], [-1.293651, 50.831846], [-1.290787, 50.835463], [-1.287924, 50.837271], [-1.285061, 50.835463], [-1.282197, 50.833654], [-1.279334, 50.831846], [-1.276471, 50.830037], [-1.270744, 50.831846], [-1.270744, 50.831846], [-1.265018, 50.831846], [-1.259291, 50.828228], [-1.259291, 50.828228], [-1.236385, 50.828228], [-1.236385, 50.828228], [-1.230659, 50.831846], [-1.230659, 50.831846], [-1.224932, 50.831846], [-1.219205, 50.828228], [-1.213479, 50.831846], [-1.213479, 50.835463], [-1.213479, 50.835463], [-1.213479, 50.8644], [-1.219205, 50.8644], [-1.219205, 50.8644], [-1.219205, 50.8644], [-1.213479, 50.8644], [-1.213479, 50.882486], [-1.213479, 50.882486], [-1.219205, 50.886103], [-1.224932, 50.882486], [-1.224932, 50.882486], [-1.224932, 50.882486], [-1.230659, 50.882486], [-1.236382, 50.886103], [-1.236382, 50.88972], [-1.236385, 50.889722], [-1.242109, 50.893337], [-1.242112, 50.896231], [-1.244021, 50.896954], [-1.244021, 50.900572], [-1.271381, 50.900572], [-1.276471, 50.897356], [-1.277425, 50.896954], [-1.282197, 50.894371], [-1.285061, 50.893337], [-1.287924, 50.891529], [-1.293651, 50.891529], [-1.296514, 50.893337], [-1.299377, 50.896954], [-1.299377, 50.896954], [-1.301286, 50.900572], [-1.32801, 50.900572], [-1.32801, 50.900572], [-1.32801, 50.894543], [-1.326101, 50.893337], [-1.32801, 50.891529], [-1.32801, 50.886103] ], [ [-1.259291, 50.882486], [-1.262155, 50.878869], [-1.259291, 50.875251], [-1.259291, 50.875251], [-1.259291, 50.875251], [-1.256428, 50.878869], [-1.253565, 50.880677], [-1.247838, 50.882486], [-1.242112, 50.878869], [-1.247838, 50.875251], [-1.247838, 50.875251], [-1.247838, 50.871634], [-1.247838, 50.871634], [-1.244975, 50.868017], [-1.244975, 50.8644], [-1.247838, 50.863194], [-1.251656, 50.860783], [-1.247838, 50.858371], [-1.242112, 50.858974], [-1.240203, 50.857166], [-1.242112, 50.85596], [-1.245929, 50.853549], [-1.242112, 50.849931], [-1.247838, 50.846314], [-1.253565, 50.846314], [-1.259291, 50.846314], [-1.265018, 50.846314], [-1.270744, 50.846314], [-1.276471, 50.849931], [-1.282197, 50.849027], [-1.287924, 50.849931], [-1.287924, 50.853549], [-1.293651, 50.85174], [-1.296514, 50.853549], [-1.293651, 50.857166], [-1.293651, 50.857166], [-1.299377, 50.860783], [-1.299377, 50.8644], [-1.293651, 50.865606], [-1.289833, 50.868017], [-1.290787, 50.871634], [-1.293651, 50.875251], [-1.293651, 50.878869], [-1.287924, 50.880074], [-1.282197, 50.880677], [-1.276471, 50.878869], [-1.276471, 50.878869], [-1.276471, 50.878869], [-1.270744, 50.882486], [-1.270744, 50.882486], [-1.265018, 50.886103], [-1.259291, 50.882486] ], [ [-1.230659, 50.83908], [-1.230659, 50.83908], [-1.234476, 50.835463], [-1.236385, 50.833654], [-1.242112, 50.835463], [-1.242112, 50.835463], [-1.242112, 50.835463], [-1.236385, 50.83908], [-1.236385, 50.83908], [-1.230659, 50.83908], [-1.230659, 50.83908] ], [ [-1.229022, 50.868017], [-1.230659, 50.86657], [-1.236385, 50.866984], [-1.238294, 50.868017], [-1.236385, 50.869464], [-1.230659, 50.869826], [-1.229022, 50.868017] ], [ [-1.286779, 50.842697], [-1.287924, 50.840888], [-1.290787, 50.842697], [-1.287924, 50.846314], [-1.286779, 50.842697] ], [ [-1.253565, 50.831846], [-1.253565, 50.831846], [-1.253565, 50.831846], [-1.253565, 50.831846], [-1.253565, 50.831846] ], [ [-1.224932, 50.860783], [-1.224932, 50.860783], [-1.224932, 50.860783], [-1.224932, 50.860783], [-1.224932, 50.860783] ], [ [-1.305104, 50.878869], [-1.305104, 50.878869], [-1.305104, 50.878869], [-1.305104, 50.882486], [-1.305104, 50.878869] ] ] ] } }, { "type": "Feature", "properties": { "description": "Debug line for testing", "stroke": "#F00", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [-1.3280098622587595, 50.82822842202459], [-1.213478938693971, 50.82822842202459], [-1.213478938693971, 50.900571577975434], [-1.3280098622587595, 50.900571577975434], [-1.3280098622587595, 50.82822842202459] ] } } ] } ================================================ FILE: packages/turf-isobands/test/out/2956.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "FIELD_ID": "29-30" }, "geometry": { "type": "MultiPolygon", "coordinates": [] } }, { "type": "Feature", "properties": { "FIELD_ID": "30-39.5" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [35.705757, 28.063414], [35.705788, 28.063414], [35.705788, 28.063531], [35.705757, 28.063531], [35.705757, 28.063414] ] ] ] } }, { "type": "Feature", "properties": { "FIELD_ID": "39.5-40" }, "geometry": { "type": "MultiPolygon", "coordinates": [] } }, { "type": "Feature", "properties": { "description": "Debug line for testing", "stroke": "#F00", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [35.70575726459368, 28.063414143459312], [35.70578783890372, 28.063414143459312], [35.70578783890372, 28.06353105510658], [35.70575726459368, 28.06353105510658], [35.70575726459368, 28.063414143459312] ] } } ] } ================================================ FILE: packages/turf-isobands/test/out/bigMatrix.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke-width": 4, "fill-opacity": 0.4, "stroke": "grey", "fill": "grey", "pressure": "0-0.24" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [7.884954, 47.89919], [7.746458, 47.938693], [7.607963, 47.931492], [7.49141, 47.888573], [7.469468, 47.873837], [7.392465, 47.798641], [7.369353, 47.708709], [7.398672, 47.618777], [7.469468, 47.539233], [7.483616, 47.528845], [7.602787, 47.438913], [7.607963, 47.432938], [7.660303, 47.348981], [7.721771, 47.259049], [7.746458, 47.240282], [7.857297, 47.169116], [7.884954, 47.158747], [8.023449, 47.134087], [8.161944, 47.147462], [8.21777, 47.169116], [8.30044, 47.213026], [8.353418, 47.259049], [8.390349, 47.348981], [8.355468, 47.438913], [8.30044, 47.478736], [8.204604, 47.528845], [8.161944, 47.551659], [8.062848, 47.618777], [8.044106, 47.708709], [8.023449, 47.751713], [8.000611, 47.798641], [7.899188, 47.888573], [7.884954, 47.89919] ] ], [ [ [13.286273, 46.736988], [13.147778, 46.750639], [13.009282, 46.72173], [13.003638, 46.719456], [12.873239, 46.629524], [12.870787, 46.625291], [12.817878, 46.539592], [12.794113, 46.44966], [12.792558, 46.359728], [12.815364, 46.269796], [12.867497, 46.179864], [12.870787, 46.176678], [12.98133, 46.089932], [13.009282, 46.076361], [13.147778, 46.040078], [13.286273, 46.043257], [13.424768, 46.088913], [13.426546, 46.089932], [13.527199, 46.179864], [13.563264, 46.267861], [13.564023, 46.269796], [13.567553, 46.359728], [13.563264, 46.386354], [13.551757, 46.44966], [13.52061, 46.539592], [13.467696, 46.629524], [13.424768, 46.665438], [13.333575, 46.719456], [13.286273, 46.736988] ] ], [ [ [8.992917, 47.908661], [8.942356, 47.888573], [8.854421, 47.854382], [8.805405, 47.798641], [8.779112, 47.708709], [8.774536, 47.618777], [8.738554, 47.528845], [8.767107, 47.438913], [8.854421, 47.393577], [8.992917, 47.372654], [9.131412, 47.412762], [9.17041, 47.438913], [9.220799, 47.528845], [9.206551, 47.618777], [9.216462, 47.708709], [9.212607, 47.798641], [9.131412, 47.87878], [9.101873, 47.888573], [8.992917, 47.908661] ] ], [ [ [15.989697, 46], [16.019208, 46.089932], [16.004625, 46.179864], [15.917685, 46.245906], [15.77919, 46.265899], [15.640694, 46.214118], [15.5712, 46.179864], [15.502199, 46.131327], [15.404796, 46.089932], [15.363703, 46.074808], [15.248809, 46], [15.989697, 46] ] ], [ [ [6.5, 49.161809], [6.638495, 49.179071], [6.776991, 49.222896], [6.805692, 49.237553], [6.915486, 49.311577], [6.932951, 49.327485], [6.994818, 49.417417], [7.017371, 49.507349], [6.596926, 49.507349], [6.5, 49.444426], [6.5, 49.161809] ] ], [ [ [12.455301, 47.13561], [12.316805, 47.14904], [12.17831, 47.097102], [12.154879, 47.079184], [12.112964, 46.989252], [12.177161, 46.89932], [12.17831, 46.898495], [12.316805, 46.859784], [12.455301, 46.893482], [12.464469, 46.89932], [12.532649, 46.989252], [12.496746, 47.079184], [12.455301, 47.13561] ] ], [ [ [15.640694, 47.267231], [15.502199, 47.319692], [15.363703, 47.279081], [15.336906, 47.259049], [15.361223, 47.169116], [15.363703, 47.167282], [15.502199, 47.115385], [15.606895, 47.079184], [15.640694, 47.070845], [15.77919, 47.072803], [15.789098, 47.079184], [15.834548, 47.169116], [15.77919, 47.222509], [15.664979, 47.259049], [15.640694, 47.267231] ] ], [ [ [14.809722, 47.411845], [14.671227, 47.417355], [14.565439, 47.348981], [14.575353, 47.259049], [14.671227, 47.203042], [14.809722, 47.2071], [14.890392, 47.259049], [14.897997, 47.348981], [14.809722, 47.411845] ] ], [ [ [15.073333, 46], [14.9629, 46.089932], [14.948217, 46.095223], [14.809722, 46.118811], [14.684441, 46.089932], [14.671227, 46.0847], [14.586932, 46], [15.073333, 46] ] ], [ [ [12.455301, 47.385966], [12.352189, 47.348981], [12.329096, 47.259049], [12.455301, 47.183226], [12.579726, 47.259049], [12.559982, 47.348981], [12.455301, 47.385966] ] ], [ [ [12.732292, 48.169413], [12.69843, 48.158369], [12.607371, 48.068437], [12.732292, 48.019172], [12.842427, 48.068437], [12.765117, 48.158369], [12.732292, 48.169413] ] ], [ [ [16.887153, 46.686717], [16.866868, 46.629524], [16.887153, 46.616213], [16.983186, 46.629524], [16.887153, 46.686717] ] ], [ [ [12.316805, 47.539311], [12.274592, 47.528845], [12.316805, 47.48062], [12.360972, 47.528845], [12.316805, 47.539311] ] ], [ [ [17.441134, 46.565069], [17.398412, 46.539592], [17.441134, 46.509911], [17.483942, 46.539592], [17.441134, 46.565069] ] ], [ [ [16.610162, 47.644458], [16.590133, 47.618777], [16.610162, 47.604288], [16.668716, 47.618777], [16.610162, 47.644458] ] ], [ [ [19.241574, 46.28155], [19.227967, 46.269796], [19.241574, 46.261638], [19.261103, 46.269796], [19.241574, 46.28155] ] ], [ [ [18.272106, 46.540117], [18.271836, 46.539592], [18.272106, 46.539023], [18.274679, 46.539592], [18.272106, 46.540117] ] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 4, "fill-opacity": 0.4, "stroke": "blue", "fill": "blue", "pressure": "0.24-0.5" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [7.746458, 48.162429], [7.607963, 48.182831], [7.469468, 48.177716], [7.372032, 48.158369], [7.330972, 48.150124], [7.192477, 48.097719], [7.140225, 48.068437], [7.053981, 48.005076], [7.024108, 47.978505], [6.953518, 47.888573], [6.915486, 47.799543], [6.915094, 47.798641], [6.898708, 47.708709], [6.904869, 47.618777], [6.915486, 47.583233], [6.931048, 47.528845], [6.977129, 47.438913], [7.04482, 47.348981], [7.053981, 47.339333], [7.132951, 47.259049], [7.192477, 47.210822], [7.245823, 47.169116], [7.330972, 47.116044], [7.394797, 47.079184], [7.469468, 47.045416], [7.607963, 46.995477], [7.631978, 46.989252], [7.746458, 46.964747], [7.884954, 46.95147], [8.023449, 46.955862], [8.161944, 46.979726], [8.19031, 46.989252], [8.30044, 47.024747], [8.407681, 47.079184], [8.438935, 47.097703], [8.54754, 47.169116], [8.577431, 47.193019], [8.715926, 47.250708], [8.769221, 47.259049], [8.854421, 47.268068], [8.992917, 47.287089], [9.131412, 47.328127], [9.172092, 47.348981], [9.269907, 47.414426], [9.300866, 47.438913], [9.36534, 47.528845], [9.404835, 47.618777], [9.408403, 47.633183], [9.42796, 47.708709], [9.429829, 47.798641], [9.408403, 47.863255], [9.398156, 47.888573], [9.312693, 47.978505], [9.269907, 48.008354], [9.131412, 48.054733], [8.992917, 48.053553], [8.854421, 47.984391], [8.85046, 47.978505], [8.776872, 47.888573], [8.715926, 47.816949], [8.699335, 47.798641], [8.606313, 47.708709], [8.577431, 47.679114], [8.438935, 47.645604], [8.30044, 47.68159], [8.262172, 47.708709], [8.164137, 47.798641], [8.161944, 47.801618], [8.100121, 47.888573], [8.038183, 47.978505], [8.023449, 48.002007], [7.944769, 48.068437], [7.884954, 48.114893], [7.757103, 48.158369], [7.746458, 48.162429] ], [ [7.899188, 47.888573], [8.000611, 47.798641], [8.023449, 47.751713], [8.044106, 47.708709], [8.062848, 47.618777], [8.161944, 47.551659], [8.204604, 47.528845], [8.30044, 47.478736], [8.355468, 47.438913], [8.390349, 47.348981], [8.353418, 47.259049], [8.30044, 47.213026], [8.21777, 47.169116], [8.161944, 47.147462], [8.023449, 47.134087], [7.884954, 47.158747], [7.857297, 47.169116], [7.746458, 47.240282], [7.721771, 47.259049], [7.660303, 47.348981], [7.607963, 47.432938], [7.602787, 47.438913], [7.483616, 47.528845], [7.469468, 47.539233], [7.398672, 47.618777], [7.369353, 47.708709], [7.392465, 47.798641], [7.469468, 47.873837], [7.49141, 47.888573], [7.607963, 47.931492], [7.746458, 47.938693], [7.884954, 47.89919], [7.899188, 47.888573] ], [ [9.101873, 47.888573], [9.131412, 47.87878], [9.212607, 47.798641], [9.216462, 47.708709], [9.206551, 47.618777], [9.220799, 47.528845], [9.17041, 47.438913], [9.131412, 47.412762], [8.992917, 47.372654], [8.854421, 47.393577], [8.767107, 47.438913], [8.738554, 47.528845], [8.774536, 47.618777], [8.779112, 47.708709], [8.805405, 47.798641], [8.854421, 47.854382], [8.942356, 47.888573], [8.992917, 47.908661], [9.101873, 47.888573] ] ], [ [ [13.682327, 46], [13.701759, 46.015819], [13.782815, 46.089932], [13.833446, 46.179864], [13.840254, 46.206993], [13.858124, 46.269796], [13.858366, 46.359728], [13.840254, 46.442365], [13.838909, 46.44966], [13.804668, 46.539592], [13.749338, 46.629524], [13.701759, 46.68041], [13.664117, 46.719456], [13.563264, 46.789296], [13.525358, 46.809388], [13.424768, 46.851978], [13.286273, 46.885734], [13.151005, 46.89932], [13.147778, 46.899728], [13.009282, 46.903932], [12.870787, 46.917991], [12.792784, 46.989252], [12.746385, 47.079184], [12.732292, 47.136674], [12.726633, 47.169116], [12.723597, 47.259049], [12.681485, 47.348981], [12.593796, 47.396831], [12.456106, 47.438913], [12.455301, 47.439296], [12.409847, 47.528845], [12.316805, 47.550894], [12.227878, 47.528845], [12.286307, 47.438913], [12.228722, 47.348981], [12.178407, 47.259049], [12.17831, 47.258912], [12.085344, 47.169116], [12.039815, 47.132358], [11.986492, 47.079184], [11.950779, 46.989252], [11.968106, 46.89932], [12.039815, 46.810095], [12.040741, 46.809388], [12.17831, 46.726561], [12.206125, 46.719456], [12.316805, 46.66745], [12.394556, 46.629524], [12.429156, 46.539592], [12.435651, 46.44966], [12.446405, 46.359728], [12.455301, 46.327499], [12.469615, 46.269796], [12.510938, 46.179864], [12.578669, 46.089932], [12.593796, 46.075577], [12.683417, 46], [13.682327, 46] ], [ [13.333575, 46.719456], [13.424768, 46.665438], [13.467696, 46.629524], [13.52061, 46.539592], [13.551757, 46.44966], [13.563264, 46.386354], [13.567553, 46.359728], [13.564023, 46.269796], [13.563264, 46.267861], [13.527199, 46.179864], [13.426546, 46.089932], [13.424768, 46.088913], [13.286273, 46.043257], [13.147778, 46.040078], [13.009282, 46.076361], [12.98133, 46.089932], [12.870787, 46.176678], [12.867497, 46.179864], [12.815364, 46.269796], [12.792558, 46.359728], [12.794113, 46.44966], [12.817878, 46.539592], [12.870787, 46.625291], [12.873239, 46.629524], [13.003638, 46.719456], [13.009282, 46.72173], [13.147778, 46.750639], [13.286273, 46.736988], [13.333575, 46.719456] ], [ [12.496746, 47.079184], [12.532649, 46.989252], [12.464469, 46.89932], [12.455301, 46.893482], [12.316805, 46.859784], [12.17831, 46.898495], [12.177161, 46.89932], [12.112964, 46.989252], [12.154879, 47.079184], [12.17831, 47.097102], [12.316805, 47.14904], [12.455301, 47.13561], [12.496746, 47.079184] ], [ [12.559982, 47.348981], [12.579726, 47.259049], [12.455301, 47.183226], [12.329096, 47.259049], [12.352189, 47.348981], [12.455301, 47.385966], [12.559982, 47.348981] ], [ [12.360972, 47.528845], [12.316805, 47.48062], [12.274592, 47.528845], [12.316805, 47.539311], [12.360972, 47.528845] ] ], [ [ [14.586932, 46], [14.671227, 46.0847], [14.684441, 46.089932], [14.809722, 46.118811], [14.948217, 46.095223], [14.9629, 46.089932], [15.073333, 46], [15.248809, 46], [15.363703, 46.074808], [15.404796, 46.089932], [15.502199, 46.131327], [15.5712, 46.179864], [15.640694, 46.214118], [15.77919, 46.265899], [15.917685, 46.245906], [16.004625, 46.179864], [16.019208, 46.089932], [15.989697, 46], [16.136546, 46], [16.150722, 46.089932], [16.128158, 46.179864], [16.05618, 46.26467], [16.049628, 46.269796], [15.917685, 46.330436], [15.77919, 46.349711], [15.640694, 46.338291], [15.502199, 46.304995], [15.380442, 46.269796], [15.363703, 46.263342], [15.225208, 46.226715], [15.086713, 46.218284], [14.948217, 46.232071], [14.809722, 46.23732], [14.671227, 46.22058], [14.552367, 46.179864], [14.532731, 46.170845], [14.418486, 46.089932], [14.394236, 46.040341], [14.369931, 46], [14.586932, 46] ] ], [ [ [15.640694, 47.349087], [15.502199, 47.382661], [15.363703, 47.372228], [15.286403, 47.348981], [15.225208, 47.29727], [15.128914, 47.259049], [15.175394, 47.169116], [15.225208, 47.140803], [15.301081, 47.079184], [15.363703, 47.051232], [15.502199, 47.014524], [15.640694, 46.99557], [15.77919, 47.01095], [15.885133, 47.079184], [15.915177, 47.169116], [15.829116, 47.259049], [15.77919, 47.289836], [15.640953, 47.348981], [15.640694, 47.349087] ], [ [15.664979, 47.259049], [15.77919, 47.222509], [15.834548, 47.169116], [15.789098, 47.079184], [15.77919, 47.072803], [15.640694, 47.070845], [15.606895, 47.079184], [15.502199, 47.115385], [15.363703, 47.167282], [15.361223, 47.169116], [15.336906, 47.259049], [15.363703, 47.279081], [15.502199, 47.319692], [15.640694, 47.267231], [15.664979, 47.259049] ] ], [ [ [7.017371, 49.507349], [6.994818, 49.417417], [6.932951, 49.327485], [6.915486, 49.311577], [6.805692, 49.237553], [6.776991, 49.222896], [6.638495, 49.179071], [6.5, 49.161809], [6.5, 48.911051], [6.638495, 48.924741], [6.776991, 48.955575], [6.811596, 48.967757], [6.915486, 49.00276], [7.021939, 49.057689], [7.053981, 49.07576], [7.150894, 49.147621], [7.192477, 49.187048], [7.23853, 49.237553], [7.296208, 49.327485], [7.329322, 49.417417], [7.330972, 49.429189], [7.342413, 49.507349], [7.017371, 49.507349] ] ], [ [ [14.809722, 47.491608], [14.671227, 47.497036], [14.532731, 47.45479], [14.505161, 47.438913], [14.428693, 47.348981], [14.428535, 47.259049], [14.505265, 47.169116], [14.532731, 47.151788], [14.671227, 47.108275], [14.809722, 47.110822], [14.948217, 47.157858], [14.981512, 47.169116], [15.070376, 47.259049], [15.049066, 47.348981], [14.948217, 47.43651], [14.944964, 47.438913], [14.809722, 47.491608] ], [ [14.897997, 47.348981], [14.890392, 47.259049], [14.809722, 47.2071], [14.671227, 47.203042], [14.575353, 47.259049], [14.565439, 47.348981], [14.671227, 47.417355], [14.809722, 47.411845], [14.897997, 47.348981] ] ], [ [ [12.870787, 48.197294], [12.732292, 48.232741], [12.593796, 48.193019], [12.561575, 48.158369], [12.551601, 48.068437], [12.593796, 48.030327], [12.707656, 47.978505], [12.732292, 47.971499], [12.789645, 47.978505], [12.870787, 48.007987], [12.941498, 48.068437], [12.920539, 48.158369], [12.870787, 48.197294] ], [ [12.765117, 48.158369], [12.842427, 48.068437], [12.732292, 48.019172], [12.607371, 48.068437], [12.69843, 48.158369], [12.732292, 48.169413], [12.765117, 48.158369] ] ], [ [ [17.025648, 46.72559], [16.887153, 46.739855], [16.837829, 46.719456], [16.806188, 46.629524], [16.887153, 46.576391], [17.025648, 46.593742], [17.066899, 46.629524], [17.036451, 46.719456], [17.025648, 46.72559] ], [ [16.983186, 46.629524], [16.887153, 46.616213], [16.866868, 46.629524], [16.887153, 46.686717], [16.983186, 46.629524] ] ], [ [ [16.748657, 47.632192], [16.610162, 47.693084], [16.55221, 47.618777], [16.610162, 47.576856], [16.748657, 47.61171], [16.753843, 47.618777], [16.748657, 47.632192] ], [ [16.668716, 47.618777], [16.610162, 47.604288], [16.590133, 47.618777], [16.610162, 47.644458], [16.668716, 47.618777] ] ], [ [ [17.441134, 46.595224], [17.347844, 46.539592], [17.441134, 46.474778], [17.53461, 46.539592], [17.441134, 46.595224] ], [ [17.483942, 46.539592], [17.441134, 46.509911], [17.398412, 46.539592], [17.441134, 46.565069], [17.483942, 46.539592] ] ], [ [ [19.241574, 46.311959], [19.192764, 46.269796], [19.241574, 46.240533], [19.311629, 46.269796], [19.241574, 46.311959] ], [ [19.261103, 46.269796], [19.241574, 46.261638], [19.227967, 46.269796], [19.241574, 46.28155], [19.261103, 46.269796] ] ], [ [ [6.5, 49.444426], [6.596926, 49.507349], [6.547975, 49.507349], [6.5, 49.476205], [6.5, 49.444426] ] ], [ [ [18.272106, 46.553925], [18.264737, 46.539592], [18.272106, 46.524045], [18.342339, 46.539592], [18.272106, 46.553925] ], [ [18.274679, 46.539592], [18.272106, 46.539023], [18.271836, 46.539592], [18.272106, 46.540117], [18.274679, 46.539592] ] ], [ [ [19.241574, 46.551269], [19.212444, 46.539592], [19.241574, 46.505856], [19.245592, 46.539592], [19.241574, 46.551269] ] ], [ [ [19.241574, 46.720647], [19.230795, 46.719456], [19.241574, 46.712954], [19.242707, 46.719456], [19.241574, 46.720647] ] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 4, "fill-opacity": 0.4, "stroke": "green", "fill": "green", "pressure": "0.5-1.5" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [7.342413, 49.507349], [7.330972, 49.429189], [7.329322, 49.417417], [7.296208, 49.327485], [7.23853, 49.237553], [7.192477, 49.187048], [7.150894, 49.147621], [7.053981, 49.07576], [7.021939, 49.057689], [6.915486, 49.00276], [6.811596, 48.967757], [6.776991, 48.955575], [6.638495, 48.924741], [6.5, 48.911051], [6.5, 46], [9.076637, 46], [9.023838, 46.089932], [8.992917, 46.149581], [8.980847, 46.179864], [8.947567, 46.269796], [8.923286, 46.359728], [8.908239, 46.44966], [8.902529, 46.539592], [8.906369, 46.629524], [8.920539, 46.719456], [8.947278, 46.809388], [8.992196, 46.89932], [8.992917, 46.900185], [9.045901, 46.989252], [9.131412, 47.073855], [9.13541, 47.079184], [9.246341, 47.169116], [9.269907, 47.182985], [9.388374, 47.259049], [9.408403, 47.271404], [9.546898, 47.345925], [9.55524, 47.348981], [9.685393, 47.413084], [9.769285, 47.438913], [9.823889, 47.464844], [9.962384, 47.506672], [10.072761, 47.528845], [10.10088, 47.538375], [10.239375, 47.56654], [10.37787, 47.586162], [10.516366, 47.600939], [10.654861, 47.617167], [10.664976, 47.618777], [10.793356, 47.70784], [10.793733, 47.708709], [10.812499, 47.798641], [10.821454, 47.888573], [10.829158, 47.978505], [10.837701, 48.068437], [10.847375, 48.158369], [10.857529, 48.248301], [10.86678, 48.338233], [10.873146, 48.428165], [10.874253, 48.518097], [10.867657, 48.608029], [10.851227, 48.697961], [10.823483, 48.787893], [10.793356, 48.856992], [10.784598, 48.877825], [10.737184, 48.967757], [10.67907, 49.057689], [10.654861, 49.090475], [10.613554, 49.147621], [10.540663, 49.237553], [10.516366, 49.265234], [10.462155, 49.327485], [10.377889, 49.417417], [10.37787, 49.417436], [10.290136, 49.507349], [7.342413, 49.507349] ], [ [7.757103, 48.158369], [7.884954, 48.114893], [7.944769, 48.068437], [8.023449, 48.002007], [8.038183, 47.978505], [8.100121, 47.888573], [8.161944, 47.801618], [8.164137, 47.798641], [8.262172, 47.708709], [8.30044, 47.68159], [8.438935, 47.645604], [8.577431, 47.679114], [8.606313, 47.708709], [8.699335, 47.798641], [8.715926, 47.816949], [8.776872, 47.888573], [8.85046, 47.978505], [8.854421, 47.984391], [8.992917, 48.053553], [9.131412, 48.054733], [9.269907, 48.008354], [9.312693, 47.978505], [9.398156, 47.888573], [9.408403, 47.863255], [9.429829, 47.798641], [9.42796, 47.708709], [9.408403, 47.633183], [9.404835, 47.618777], [9.36534, 47.528845], [9.300866, 47.438913], [9.269907, 47.414426], [9.172092, 47.348981], [9.131412, 47.328127], [8.992917, 47.287089], [8.854421, 47.268068], [8.769221, 47.259049], [8.715926, 47.250708], [8.577431, 47.193019], [8.54754, 47.169116], [8.438935, 47.097703], [8.407681, 47.079184], [8.30044, 47.024747], [8.19031, 46.989252], [8.161944, 46.979726], [8.023449, 46.955862], [7.884954, 46.95147], [7.746458, 46.964747], [7.631978, 46.989252], [7.607963, 46.995477], [7.469468, 47.045416], [7.394797, 47.079184], [7.330972, 47.116044], [7.245823, 47.169116], [7.192477, 47.210822], [7.132951, 47.259049], [7.053981, 47.339333], [7.04482, 47.348981], [6.977129, 47.438913], [6.931048, 47.528845], [6.915486, 47.583233], [6.904869, 47.618777], [6.898708, 47.708709], [6.915094, 47.798641], [6.915486, 47.799543], [6.953518, 47.888573], [7.024108, 47.978505], [7.053981, 48.005076], [7.140225, 48.068437], [7.192477, 48.097719], [7.330972, 48.150124], [7.372032, 48.158369], [7.469468, 48.177716], [7.607963, 48.182831], [7.746458, 48.162429], [7.757103, 48.158369] ] ], [ [ [12.683417, 46], [12.593796, 46.075577], [12.578669, 46.089932], [12.510938, 46.179864], [12.469615, 46.269796], [12.455301, 46.327499], [12.446405, 46.359728], [12.435651, 46.44966], [12.429156, 46.539592], [12.394556, 46.629524], [12.316805, 46.66745], [12.206125, 46.719456], [12.17831, 46.726561], [12.040741, 46.809388], [12.039815, 46.810095], [11.968106, 46.89932], [11.950779, 46.989252], [11.986492, 47.079184], [12.039815, 47.132358], [12.085344, 47.169116], [12.17831, 47.258912], [12.178407, 47.259049], [12.228722, 47.348981], [12.286307, 47.438913], [12.227878, 47.528845], [12.316805, 47.550894], [12.409847, 47.528845], [12.455301, 47.439296], [12.456106, 47.438913], [12.593796, 47.396831], [12.681485, 47.348981], [12.723597, 47.259049], [12.726633, 47.169116], [12.732292, 47.136674], [12.746385, 47.079184], [12.792784, 46.989252], [12.870787, 46.917991], [13.009282, 46.903932], [13.147778, 46.899728], [13.151005, 46.89932], [13.286273, 46.885734], [13.424768, 46.851978], [13.525358, 46.809388], [13.563264, 46.789296], [13.664117, 46.719456], [13.701759, 46.68041], [13.749338, 46.629524], [13.804668, 46.539592], [13.838909, 46.44966], [13.840254, 46.442365], [13.858366, 46.359728], [13.858124, 46.269796], [13.840254, 46.206993], [13.833446, 46.179864], [13.782815, 46.089932], [13.701759, 46.015819], [13.682327, 46], [14.369931, 46], [14.394236, 46.040341], [14.418486, 46.089932], [14.532731, 46.170845], [14.552367, 46.179864], [14.671227, 46.22058], [14.809722, 46.23732], [14.948217, 46.232071], [15.086713, 46.218284], [15.225208, 46.226715], [15.363703, 46.263342], [15.380442, 46.269796], [15.502199, 46.304995], [15.640694, 46.338291], [15.77919, 46.349711], [15.917685, 46.330436], [16.049628, 46.269796], [16.05618, 46.26467], [16.128158, 46.179864], [16.150722, 46.089932], [16.136546, 46], [16.592577, 46], [16.590061, 46.089932], [16.578313, 46.179864], [16.559915, 46.269796], [16.541407, 46.359728], [16.610162, 46.434062], [16.748657, 46.403885], [16.887153, 46.396626], [17.025648, 46.407986], [17.164143, 46.411907], [17.302639, 46.377954], [17.441134, 46.373181], [17.579629, 46.428804], [17.595745, 46.44966], [17.628462, 46.539592], [17.581379, 46.629524], [17.579629, 46.631083], [17.441134, 46.677818], [17.302639, 46.676038], [17.215772, 46.719456], [17.164143, 46.743029], [17.043406, 46.809388], [17.025648, 46.815838], [16.887153, 46.83267], [16.748657, 46.810272], [16.74529, 46.809388], [16.610162, 46.733621], [16.580533, 46.719456], [16.511648, 46.629524], [16.493105, 46.539592], [16.471666, 46.474268], [16.333171, 46.53624], [16.32789, 46.539592], [16.194676, 46.613232], [16.169279, 46.629524], [16.083398, 46.719456], [16.073257, 46.809388], [16.102939, 46.89932], [16.136477, 46.989252], [16.155541, 47.079184], [16.152129, 47.169116], [16.120148, 47.259049], [16.05618, 47.33774], [16.044939, 47.348981], [15.917685, 47.434794], [15.910069, 47.438913], [15.77919, 47.513401], [15.744222, 47.528845], [15.640694, 47.586458], [15.55448, 47.618777], [15.502199, 47.64359], [15.363703, 47.692849], [15.313234, 47.708709], [15.225208, 47.740815], [15.086713, 47.786132], [15.041543, 47.798641], [14.948217, 47.827326], [14.809722, 47.860662], [14.671227, 47.885177], [14.642906, 47.888573], [14.532731, 47.905513], [14.394236, 47.921896], [14.255741, 47.937765], [14.117245, 47.958595], [14.028933, 47.978505], [13.97875, 47.993475], [13.840254, 48.058984], [13.827353, 48.068437], [13.727302, 48.158369], [13.701759, 48.183307], [13.650372, 48.248301], [13.567587, 48.338233], [13.563264, 48.342195], [13.473265, 48.428165], [13.424768, 48.465242], [13.347942, 48.518097], [13.286273, 48.554543], [13.168702, 48.608029], [13.147778, 48.617236], [13.009282, 48.661622], [12.870787, 48.686808], [12.732292, 48.69587], [12.593796, 48.6893], [12.455301, 48.6621], [12.333473, 48.608029], [12.316805, 48.598311], [12.230607, 48.518097], [12.195719, 48.428165], [12.198193, 48.338233], [12.226051, 48.248301], [12.282371, 48.158369], [12.316805, 48.134861], [12.363634, 48.068437], [12.455301, 48.009023], [12.491218, 47.978505], [12.593796, 47.924983], [12.693198, 47.888573], [12.732292, 47.86344], [12.870787, 47.81152], [12.920553, 47.798641], [12.987237, 47.708709], [12.902702, 47.618777], [12.870787, 47.608209], [12.732292, 47.572032], [12.593796, 47.56206], [12.455301, 47.576126], [12.316805, 47.595442], [12.17831, 47.57302], [12.039815, 47.539121], [11.966066, 47.528845], [11.901319, 47.506535], [11.762824, 47.49419], [11.624329, 47.494233], [11.485833, 47.501139], [11.347338, 47.511257], [11.208842, 47.520545], [11.070347, 47.52122], [10.931852, 47.447818], [10.92844, 47.438913], [10.915491, 47.348981], [10.91425, 47.259049], [10.915149, 47.169116], [10.914888, 47.079184], [10.911672, 46.989252], [10.904169, 46.89932], [10.891167, 46.809388], [10.871485, 46.719456], [10.844069, 46.629524], [10.808187, 46.539592], [10.793356, 46.507156], [10.765193, 46.44966], [10.713111, 46.359728], [10.654861, 46.273738], [10.6517, 46.269796], [10.580211, 46.179864], [10.516366, 46.105213], [10.499599, 46.089932], [10.407143, 46], [12.683417, 46] ], [ [15.640953, 47.348981], [15.77919, 47.289836], [15.829116, 47.259049], [15.915177, 47.169116], [15.885133, 47.079184], [15.77919, 47.01095], [15.640694, 46.99557], [15.502199, 47.014524], [15.363703, 47.051232], [15.301081, 47.079184], [15.225208, 47.140803], [15.175394, 47.169116], [15.128914, 47.259049], [15.225208, 47.29727], [15.286403, 47.348981], [15.363703, 47.372228], [15.502199, 47.382661], [15.640694, 47.349087], [15.640953, 47.348981] ], [ [14.944964, 47.438913], [14.948217, 47.43651], [15.049066, 47.348981], [15.070376, 47.259049], [14.981512, 47.169116], [14.948217, 47.157858], [14.809722, 47.110822], [14.671227, 47.108275], [14.532731, 47.151788], [14.505265, 47.169116], [14.428535, 47.259049], [14.428693, 47.348981], [14.505161, 47.438913], [14.532731, 47.45479], [14.671227, 47.497036], [14.809722, 47.491608], [14.944964, 47.438913] ], [ [12.920539, 48.158369], [12.941498, 48.068437], [12.870787, 48.007987], [12.789645, 47.978505], [12.732292, 47.971499], [12.707656, 47.978505], [12.593796, 48.030327], [12.551601, 48.068437], [12.561575, 48.158369], [12.593796, 48.193019], [12.732292, 48.232741], [12.870787, 48.197294], [12.920539, 48.158369] ], [ [17.036451, 46.719456], [17.066899, 46.629524], [17.025648, 46.593742], [16.887153, 46.576391], [16.806188, 46.629524], [16.837829, 46.719456], [16.887153, 46.739855], [17.025648, 46.72559], [17.036451, 46.719456] ], [ [17.53461, 46.539592], [17.441134, 46.474778], [17.347844, 46.539592], [17.441134, 46.595224], [17.53461, 46.539592] ] ], [ [ [19.241574, 46.756326], [19.103078, 46.752041], [19.043162, 46.719456], [19.031576, 46.629524], [18.997661, 46.539592], [18.997368, 46.44966], [19.0463, 46.359728], [19.03808, 46.269796], [19.103078, 46.183635], [19.110731, 46.179864], [19.241574, 46.143947], [19.290855, 46.179864], [19.380069, 46.217079], [19.454091, 46.269796], [19.390246, 46.359728], [19.380069, 46.373683], [19.328314, 46.44966], [19.308501, 46.539592], [19.270089, 46.629524], [19.276687, 46.719456], [19.241574, 46.756326] ], [ [19.311629, 46.269796], [19.241574, 46.240533], [19.192764, 46.269796], [19.241574, 46.311959], [19.311629, 46.269796] ], [ [19.245592, 46.539592], [19.241574, 46.505856], [19.212444, 46.539592], [19.241574, 46.551269], [19.245592, 46.539592] ], [ [19.242707, 46.719456], [19.241574, 46.712954], [19.230795, 46.719456], [19.241574, 46.720647], [19.242707, 46.719456] ] ], [ [ [16.748657, 47.750989], [16.610162, 47.780929], [16.471666, 47.739752], [16.423799, 47.708709], [16.39275, 47.618777], [16.459871, 47.528845], [16.471666, 47.523183], [16.610162, 47.486471], [16.748657, 47.518876], [16.760528, 47.528845], [16.825353, 47.618777], [16.795822, 47.708709], [16.748657, 47.750989] ], [ [16.753843, 47.618777], [16.748657, 47.61171], [16.610162, 47.576856], [16.55221, 47.618777], [16.610162, 47.693084], [16.748657, 47.632192], [16.753843, 47.618777] ] ], [ [ [18.410602, 46.606569], [18.272106, 46.607031], [18.237432, 46.539592], [18.272106, 46.466439], [18.410602, 46.458147], [18.486898, 46.539592], [18.410602, 46.606569] ], [ [18.342339, 46.539592], [18.272106, 46.524045], [18.264737, 46.539592], [18.272106, 46.553925], [18.342339, 46.539592] ] ], [ [ [6.5, 49.476205], [6.547975, 49.507349], [6.5, 49.507349], [6.5, 49.476205] ] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 4, "fill-opacity": 0.4, "stroke": "yellow", "fill": "yellow", "pressure": "1.5-2.5" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [10.290136, 49.507349], [10.37787, 49.417436], [10.377889, 49.417417], [10.462155, 49.327485], [10.516366, 49.265234], [10.540663, 49.237553], [10.613554, 49.147621], [10.654861, 49.090475], [10.67907, 49.057689], [10.737184, 48.967757], [10.784598, 48.877825], [10.793356, 48.856992], [10.823483, 48.787893], [10.851227, 48.697961], [10.867657, 48.608029], [10.874253, 48.518097], [10.873146, 48.428165], [10.86678, 48.338233], [10.857529, 48.248301], [10.847375, 48.158369], [10.837701, 48.068437], [10.829158, 47.978505], [10.821454, 47.888573], [10.812499, 47.798641], [10.793733, 47.708709], [10.793356, 47.70784], [10.664976, 47.618777], [10.654861, 47.617167], [10.516366, 47.600939], [10.37787, 47.586162], [10.239375, 47.56654], [10.10088, 47.538375], [10.072761, 47.528845], [9.962384, 47.506672], [9.823889, 47.464844], [9.769285, 47.438913], [9.685393, 47.413084], [9.55524, 47.348981], [9.546898, 47.345925], [9.408403, 47.271404], [9.388374, 47.259049], [9.269907, 47.182985], [9.246341, 47.169116], [9.13541, 47.079184], [9.131412, 47.073855], [9.045901, 46.989252], [8.992917, 46.900185], [8.992196, 46.89932], [8.947278, 46.809388], [8.920539, 46.719456], [8.906369, 46.629524], [8.902529, 46.539592], [8.908239, 46.44966], [8.923286, 46.359728], [8.947567, 46.269796], [8.980847, 46.179864], [8.992917, 46.149581], [9.023838, 46.089932], [9.076637, 46], [10.407143, 46], [10.499599, 46.089932], [10.516366, 46.105213], [10.580211, 46.179864], [10.6517, 46.269796], [10.654861, 46.273738], [10.713111, 46.359728], [10.765193, 46.44966], [10.793356, 46.507156], [10.808187, 46.539592], [10.844069, 46.629524], [10.871485, 46.719456], [10.891167, 46.809388], [10.904169, 46.89932], [10.911672, 46.989252], [10.914888, 47.079184], [10.915149, 47.169116], [10.91425, 47.259049], [10.915491, 47.348981], [10.92844, 47.438913], [10.931852, 47.447818], [11.070347, 47.52122], [11.208842, 47.520545], [11.347338, 47.511257], [11.485833, 47.501139], [11.624329, 47.494233], [11.762824, 47.49419], [11.901319, 47.506535], [11.966066, 47.528845], [12.039815, 47.539121], [12.17831, 47.57302], [12.316805, 47.595442], [12.455301, 47.576126], [12.593796, 47.56206], [12.732292, 47.572032], [12.870787, 47.608209], [12.902702, 47.618777], [12.987237, 47.708709], [12.920553, 47.798641], [12.870787, 47.81152], [12.732292, 47.86344], [12.693198, 47.888573], [12.593796, 47.924983], [12.491218, 47.978505], [12.455301, 48.009023], [12.363634, 48.068437], [12.316805, 48.134861], [12.282371, 48.158369], [12.226051, 48.248301], [12.198193, 48.338233], [12.195719, 48.428165], [12.230607, 48.518097], [12.316805, 48.598311], [12.333473, 48.608029], [12.455301, 48.6621], [12.593796, 48.6893], [12.732292, 48.69587], [12.870787, 48.686808], [13.009282, 48.661622], [13.147778, 48.617236], [13.168702, 48.608029], [13.286273, 48.554543], [13.347942, 48.518097], [13.424768, 48.465242], [13.473265, 48.428165], [13.563264, 48.342195], [13.567587, 48.338233], [13.650372, 48.248301], [13.701759, 48.183307], [13.727302, 48.158369], [13.827353, 48.068437], [13.840254, 48.058984], [13.97875, 47.993475], [14.028933, 47.978505], [14.117245, 47.958595], [14.255741, 47.937765], [14.394236, 47.921896], [14.532731, 47.905513], [14.642906, 47.888573], [14.671227, 47.885177], [14.809722, 47.860662], [14.948217, 47.827326], [15.041543, 47.798641], [15.086713, 47.786132], [15.225208, 47.740815], [15.313234, 47.708709], [15.363703, 47.692849], [15.502199, 47.64359], [15.55448, 47.618777], [15.640694, 47.586458], [15.744222, 47.528845], [15.77919, 47.513401], [15.910069, 47.438913], [15.917685, 47.434794], [16.044939, 47.348981], [16.05618, 47.33774], [16.120148, 47.259049], [16.152129, 47.169116], [16.155541, 47.079184], [16.136477, 46.989252], [16.102939, 46.89932], [16.073257, 46.809388], [16.083398, 46.719456], [16.169279, 46.629524], [16.194676, 46.613232], [16.32789, 46.539592], [16.333171, 46.53624], [16.471666, 46.474268], [16.493105, 46.539592], [16.511648, 46.629524], [16.580533, 46.719456], [16.610162, 46.733621], [16.74529, 46.809388], [16.748657, 46.810272], [16.887153, 46.83267], [17.025648, 46.815838], [17.043406, 46.809388], [17.164143, 46.743029], [17.215772, 46.719456], [17.302639, 46.676038], [17.441134, 46.677818], [17.579629, 46.631083], [17.581379, 46.629524], [17.628462, 46.539592], [17.595745, 46.44966], [17.579629, 46.428804], [17.441134, 46.373181], [17.302639, 46.377954], [17.164143, 46.411907], [17.025648, 46.407986], [16.887153, 46.396626], [16.748657, 46.403885], [16.610162, 46.434062], [16.541407, 46.359728], [16.559915, 46.269796], [16.578313, 46.179864], [16.590061, 46.089932], [16.592577, 46], [17.228682, 46], [17.291854, 46.089932], [17.302639, 46.097422], [17.407115, 46.179864], [17.441134, 46.193583], [17.541729, 46.269796], [17.579629, 46.28893], [17.634275, 46.359728], [17.680021, 46.44966], [17.691965, 46.539592], [17.66221, 46.629524], [17.579629, 46.703093], [17.528871, 46.719456], [17.441134, 46.748337], [17.302639, 46.78247], [17.246781, 46.809388], [17.164143, 46.841479], [17.025648, 46.889983], [16.970246, 46.89932], [16.887153, 46.916589], [16.748657, 46.930836], [16.610162, 46.951422], [16.523719, 46.989252], [16.471666, 47.045057], [16.451039, 47.079184], [16.424896, 47.169116], [16.424356, 47.259049], [16.471666, 47.331177], [16.484599, 47.348981], [16.610162, 47.392326], [16.701619, 47.438913], [16.748657, 47.452226], [16.839894, 47.528845], [16.887153, 47.602076], [16.893165, 47.618777], [16.887153, 47.663804], [16.876259, 47.708709], [16.782712, 47.798641], [16.748657, 47.826174], [16.610162, 47.869874], [16.471666, 47.885475], [16.424961, 47.888573], [16.333171, 47.898463], [16.194676, 47.921745], [16.05618, 47.952087], [15.952032, 47.978505], [15.917685, 47.98884], [15.77919, 48.037764], [15.708671, 48.068437], [15.640694, 48.102297], [15.536352, 48.158369], [15.502199, 48.179469], [15.390694, 48.248301], [15.363703, 48.267499], [15.260608, 48.338233], [15.225208, 48.366249], [15.142925, 48.428165], [15.086713, 48.476862], [15.03645, 48.518097], [14.948217, 48.600843], [14.940128, 48.608029], [14.849822, 48.697961], [14.809722, 48.742499], [14.766367, 48.787893], [14.687931, 48.877825], [14.671227, 48.898571], [14.611763, 48.967757], [14.539245, 49.057689], [14.532731, 49.066291], [14.466594, 49.147621], [14.39668, 49.237553], [14.394236, 49.240875], [14.325526, 49.327485], [14.256739, 49.417417], [14.255741, 49.418794], [14.186388, 49.507349], [10.290136, 49.507349] ], [ [9.928408, 47.259049], [9.962384, 47.256597], [10.10088, 47.214757], [10.181396, 47.169116], [10.239375, 47.107527], [10.264072, 47.079184], [10.297274, 46.989252], [10.291062, 46.89932], [10.246587, 46.809388], [10.239375, 46.80073], [10.157625, 46.719456], [10.10088, 46.681361], [9.969751, 46.629524], [9.962384, 46.626776], [9.823889, 46.60198], [9.685393, 46.606681], [9.598208, 46.629524], [9.546898, 46.641769], [9.412794, 46.719456], [9.408403, 46.722835], [9.337463, 46.809388], [9.310428, 46.89932], [9.322633, 46.989252], [9.377816, 47.079184], [9.408403, 47.10523], [9.491862, 47.169116], [9.546898, 47.20002], [9.685393, 47.247314], [9.781217, 47.259049], [9.823889, 47.265833], [9.928408, 47.259049] ], [ [12.300928, 47.978505], [12.316805, 47.976579], [12.455301, 47.924652], [12.522784, 47.888573], [12.593796, 47.833834], [12.648396, 47.798641], [12.655704, 47.708709], [12.593796, 47.671104], [12.455301, 47.631881], [12.316805, 47.62992], [12.17831, 47.628932], [12.039815, 47.646328], [11.904159, 47.708709], [11.901319, 47.714874], [11.841028, 47.798641], [11.860265, 47.888573], [11.901319, 47.928979], [11.979483, 47.978505], [12.039815, 47.999507], [12.17831, 48.008742], [12.300928, 47.978505] ], [ [16.795822, 47.708709], [16.825353, 47.618777], [16.760528, 47.528845], [16.748657, 47.518876], [16.610162, 47.486471], [16.471666, 47.523183], [16.459871, 47.528845], [16.39275, 47.618777], [16.423799, 47.708709], [16.471666, 47.739752], [16.610162, 47.780929], [16.748657, 47.750989], [16.795822, 47.708709] ] ], [ [ [19.524275, 46], [19.604919, 46.089932], [19.613445, 46.179864], [19.573761, 46.269796], [19.518564, 46.328235], [19.494163, 46.359728], [19.41019, 46.44966], [19.380069, 46.519113], [19.37141, 46.539592], [19.319945, 46.629524], [19.310666, 46.719456], [19.241574, 46.792005], [19.103078, 46.805928], [18.964583, 46.738569], [18.931088, 46.719456], [18.86127, 46.629524], [18.826088, 46.563233], [18.78062, 46.539592], [18.726895, 46.44966], [18.747193, 46.359728], [18.775267, 46.269796], [18.814561, 46.179864], [18.826088, 46.163575], [18.876486, 46.089932], [18.964583, 46.020322], [19.006245, 46], [19.524275, 46] ], [ [19.276687, 46.719456], [19.270089, 46.629524], [19.308501, 46.539592], [19.328314, 46.44966], [19.380069, 46.373683], [19.390246, 46.359728], [19.454091, 46.269796], [19.380069, 46.217079], [19.290855, 46.179864], [19.241574, 46.143947], [19.110731, 46.179864], [19.103078, 46.183635], [19.03808, 46.269796], [19.0463, 46.359728], [18.997368, 46.44966], [18.997661, 46.539592], [19.031576, 46.629524], [19.043162, 46.719456], [19.103078, 46.752041], [19.241574, 46.756326], [19.276687, 46.719456] ] ], [ [ [18.410602, 46.675969], [18.272106, 46.663224], [18.240845, 46.629524], [18.210127, 46.539592], [18.233988, 46.44966], [18.272106, 46.391555], [18.410602, 46.36377], [18.549097, 46.390896], [18.657319, 46.44966], [18.652106, 46.539592], [18.549097, 46.617108], [18.538193, 46.629524], [18.410602, 46.675969] ], [ [18.486898, 46.539592], [18.410602, 46.458147], [18.272106, 46.466439], [18.237432, 46.539592], [18.272106, 46.607031], [18.410602, 46.606569], [18.486898, 46.539592] ] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 4, "fill-opacity": 0.4, "stroke": "red", "fill": "red", "pressure": "2.5-100" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [14.186388, 49.507349], [14.255741, 49.418794], [14.256739, 49.417417], [14.325526, 49.327485], [14.394236, 49.240875], [14.39668, 49.237553], [14.466594, 49.147621], [14.532731, 49.066291], [14.539245, 49.057689], [14.611763, 48.967757], [14.671227, 48.898571], [14.687931, 48.877825], [14.766367, 48.787893], [14.809722, 48.742499], [14.849822, 48.697961], [14.940128, 48.608029], [14.948217, 48.600843], [15.03645, 48.518097], [15.086713, 48.476862], [15.142925, 48.428165], [15.225208, 48.366249], [15.260608, 48.338233], [15.363703, 48.267499], [15.390694, 48.248301], [15.502199, 48.179469], [15.536352, 48.158369], [15.640694, 48.102297], [15.708671, 48.068437], [15.77919, 48.037764], [15.917685, 47.98884], [15.952032, 47.978505], [16.05618, 47.952087], [16.194676, 47.921745], [16.333171, 47.898463], [16.424961, 47.888573], [16.471666, 47.885475], [16.610162, 47.869874], [16.748657, 47.826174], [16.782712, 47.798641], [16.876259, 47.708709], [16.887153, 47.663804], [16.893165, 47.618777], [16.887153, 47.602076], [16.839894, 47.528845], [16.748657, 47.452226], [16.701619, 47.438913], [16.610162, 47.392326], [16.484599, 47.348981], [16.471666, 47.331177], [16.424356, 47.259049], [16.424896, 47.169116], [16.451039, 47.079184], [16.471666, 47.045057], [16.523719, 46.989252], [16.610162, 46.951422], [16.748657, 46.930836], [16.887153, 46.916589], [16.970246, 46.89932], [17.025648, 46.889983], [17.164143, 46.841479], [17.246781, 46.809388], [17.302639, 46.78247], [17.441134, 46.748337], [17.528871, 46.719456], [17.579629, 46.703093], [17.66221, 46.629524], [17.691965, 46.539592], [17.680021, 46.44966], [17.634275, 46.359728], [17.579629, 46.28893], [17.541729, 46.269796], [17.441134, 46.193583], [17.407115, 46.179864], [17.302639, 46.097422], [17.291854, 46.089932], [17.228682, 46], [19.006245, 46], [18.964583, 46.020322], [18.876486, 46.089932], [18.826088, 46.163575], [18.814561, 46.179864], [18.775267, 46.269796], [18.747193, 46.359728], [18.726895, 46.44966], [18.78062, 46.539592], [18.826088, 46.563233], [18.86127, 46.629524], [18.931088, 46.719456], [18.964583, 46.738569], [19.103078, 46.805928], [19.241574, 46.792005], [19.310666, 46.719456], [19.319945, 46.629524], [19.37141, 46.539592], [19.380069, 46.519113], [19.41019, 46.44966], [19.494163, 46.359728], [19.518564, 46.328235], [19.573761, 46.269796], [19.613445, 46.179864], [19.604919, 46.089932], [19.524275, 46], [19.65706, 46], [19.65706, 49.507349], [14.186388, 49.507349] ], [ [18.538193, 46.629524], [18.549097, 46.617108], [18.652106, 46.539592], [18.657319, 46.44966], [18.549097, 46.390896], [18.410602, 46.36377], [18.272106, 46.391555], [18.233988, 46.44966], [18.210127, 46.539592], [18.240845, 46.629524], [18.272106, 46.663224], [18.410602, 46.675969], [18.538193, 46.629524] ] ], [ [ [9.823889, 47.265833], [9.781217, 47.259049], [9.685393, 47.247314], [9.546898, 47.20002], [9.491862, 47.169116], [9.408403, 47.10523], [9.377816, 47.079184], [9.322633, 46.989252], [9.310428, 46.89932], [9.337463, 46.809388], [9.408403, 46.722835], [9.412794, 46.719456], [9.546898, 46.641769], [9.598208, 46.629524], [9.685393, 46.606681], [9.823889, 46.60198], [9.962384, 46.626776], [9.969751, 46.629524], [10.10088, 46.681361], [10.157625, 46.719456], [10.239375, 46.80073], [10.246587, 46.809388], [10.291062, 46.89932], [10.297274, 46.989252], [10.264072, 47.079184], [10.239375, 47.107527], [10.181396, 47.169116], [10.10088, 47.214757], [9.962384, 47.256597], [9.928408, 47.259049], [9.823889, 47.265833] ] ], [ [ [12.17831, 48.008742], [12.039815, 47.999507], [11.979483, 47.978505], [11.901319, 47.928979], [11.860265, 47.888573], [11.841028, 47.798641], [11.901319, 47.714874], [11.904159, 47.708709], [12.039815, 47.646328], [12.17831, 47.628932], [12.316805, 47.62992], [12.455301, 47.631881], [12.593796, 47.671104], [12.655704, 47.708709], [12.648396, 47.798641], [12.593796, 47.833834], [12.522784, 47.888573], [12.455301, 47.924652], [12.316805, 47.976579], [12.300928, 47.978505], [12.17831, 48.008742] ] ] ] } }, { "type": "Feature", "properties": { "description": "Debug line for testing", "stroke": "#F00", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [6.5, 46], [19.657059855532452, 46], [19.657059855532452, 49.50734941852569], [6.5, 49.50734941852569], [6.5, 46] ] } } ] } ================================================ FILE: packages/turf-isobands/test/out/matrix1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "temperature": "2-4" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [12.071816, 44.954354], [11.817453, 44.954354], [11.56309, 44.954354], [11.308726, 44.954354], [11.054363, 44.954354], [10.863591, 44.819456], [10.863591, 44.639592], [10.863591, 44.459728], [10.863591, 44.279864], [11.054363, 44.144966], [11.308726, 44.144966], [11.56309, 44.144966], [11.817453, 44.144966], [12.071816, 44.144966], [12.262588, 44.279864], [12.262588, 44.459728], [12.262588, 44.639592], [12.262588, 44.819456], [12.071816, 44.954354] ], [ [12.135407, 44.819456], [12.135407, 44.639592], [12.135407, 44.459728], [12.135407, 44.279864], [12.071816, 44.234898], [11.817453, 44.234898], [11.56309, 44.234898], [11.308726, 44.234898], [11.054363, 44.234898], [10.990772, 44.279864], [10.990772, 44.459728], [10.990772, 44.639592], [10.990772, 44.819456], [11.054363, 44.864422], [11.308726, 44.864422], [11.56309, 44.864422], [11.817453, 44.864422], [12.071816, 44.864422], [12.135407, 44.819456] ] ] ] } }, { "type": "Feature", "properties": { "temperature": "4-8" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [12.071816, 44.864422], [11.817453, 44.864422], [11.56309, 44.864422], [11.308726, 44.864422], [11.054363, 44.864422], [10.990772, 44.819456], [10.990772, 44.639592], [10.990772, 44.459728], [10.990772, 44.279864], [11.054363, 44.234898], [11.308726, 44.234898], [11.56309, 44.234898], [11.817453, 44.234898], [12.071816, 44.234898], [12.135407, 44.279864], [12.135407, 44.459728], [12.135407, 44.639592], [12.135407, 44.819456], [12.071816, 44.864422] ], [ [11.995507, 44.639592], [11.919198, 44.459728], [11.817453, 44.387783], [11.56309, 44.387783], [11.308726, 44.387783], [11.206981, 44.459728], [11.130672, 44.639592], [11.308726, 44.765497], [11.56309, 44.765497], [11.817453, 44.765497], [11.995507, 44.639592] ] ] ] } }, { "type": "Feature", "properties": { "temperature": "8-12" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [11.817453, 44.765497], [11.56309, 44.765497], [11.308726, 44.765497], [11.130672, 44.639592], [11.206981, 44.459728], [11.308726, 44.387783], [11.56309, 44.387783], [11.817453, 44.387783], [11.919198, 44.459728], [11.995507, 44.639592], [11.817453, 44.765497] ], [ [11.893762, 44.639592], [11.817453, 44.531674], [11.56309, 44.531674], [11.308726, 44.531674], [11.232417, 44.639592], [11.308726, 44.693551], [11.56309, 44.693551], [11.817453, 44.693551], [11.893762, 44.639592] ] ] ] } }, { "type": "Feature", "properties": { "description": "Debug line for testing", "stroke": "#F00", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [10.799999999999955, 44.1], [12.326179163093911, 44.1], [12.326179163093911, 44.99932036372454], [10.799999999999955, 44.99932036372454], [10.799999999999955, 44.1] ] } } ] } ================================================ FILE: packages/turf-isobands/test/out/matrix2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke-width": 3, "stroke": "darkred", "fill": "darkred", "fill-opacity": 0.4, "elevation": "0-4.5" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [11.619012, 45.277035], [11.490843, 45.259049], [11.362675, 45.229071], [11.14906, 45.079184], [11.14906, 44.89932], [11.106337, 44.809388], [11.080704, 44.719456], [11.106337, 44.629524], [11.14906, 44.539592], [11.14906, 44.359728], [11.362675, 44.209841], [11.490843, 44.179864], [11.619012, 44.161878], [11.747181, 44.179864], [11.87535, 44.209841], [12.088964, 44.359728], [12.088964, 44.539592], [12.131687, 44.629524], [12.157321, 44.719456], [12.131687, 44.809388], [12.088964, 44.89932], [12.088964, 45.079184], [11.87535, 45.229071], [11.747181, 45.259049], [11.619012, 45.277035] ], [ [11.793788, 44.719456], [11.619012, 44.596822], [11.444237, 44.719456], [11.619012, 44.842091], [11.793788, 44.719456] ] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 3, "stroke": "darkred", "fill": "darkred", "fill-opacity": 0.5, "elevation": "4.5-9" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [12.131687, 45.295021], [11.87535, 45.40294], [11.619012, 45.438913], [11.362675, 45.40294], [11.106337, 45.295021], [11.05507, 45.259049], [10.901267, 45.079184], [10.901267, 44.89932], [10.85, 44.719456], [10.901267, 44.539592], [10.901267, 44.359728], [11.05507, 44.179864], [11.106337, 44.143891], [11.362675, 44.035973], [11.619012, 44], [11.87535, 44.035973], [12.131687, 44.143891], [12.182954, 44.179864], [12.336757, 44.359728], [12.336757, 44.539592], [12.388024, 44.719456], [12.336757, 44.89932], [12.336757, 45.079184], [12.182954, 45.259049], [12.131687, 45.295021] ], [ [11.747181, 45.259049], [11.87535, 45.229071], [12.088964, 45.079184], [12.088964, 44.89932], [12.131687, 44.809388], [12.157321, 44.719456], [12.131687, 44.629524], [12.088964, 44.539592], [12.088964, 44.359728], [11.87535, 44.209841], [11.747181, 44.179864], [11.619012, 44.161878], [11.490843, 44.179864], [11.362675, 44.209841], [11.14906, 44.359728], [11.14906, 44.539592], [11.106337, 44.629524], [11.080704, 44.719456], [11.106337, 44.809388], [11.14906, 44.89932], [11.14906, 45.079184], [11.362675, 45.229071], [11.490843, 45.259049], [11.619012, 45.277035], [11.747181, 45.259049] ] ], [ [ [11.619012, 44.842091], [11.444237, 44.719456], [11.619012, 44.596822], [11.793788, 44.719456], [11.619012, 44.842091] ], [ [11.688922, 44.719456], [11.619012, 44.670402], [11.549102, 44.719456], [11.619012, 44.76851], [11.688922, 44.719456] ] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 3, "stroke": "darkred", "fill": "darkred", "fill-opacity": 0.7, "elevation": "9-13.5" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [10.85, 44.161878], [11.080704, 44], [12.157321, 44], [12.388024, 44.161878], [12.388024, 45.277035], [12.157321, 45.438913], [11.080704, 45.438913], [10.85, 45.277035], [10.85, 44.161878] ], [ [12.182954, 45.259049], [12.336757, 45.079184], [12.336757, 44.89932], [12.388024, 44.719456], [12.336757, 44.539592], [12.336757, 44.359728], [12.182954, 44.179864], [12.131687, 44.143891], [11.87535, 44.035973], [11.619012, 44], [11.362675, 44.035973], [11.106337, 44.143891], [11.05507, 44.179864], [10.901267, 44.359728], [10.901267, 44.539592], [10.85, 44.719456], [10.901267, 44.89932], [10.901267, 45.079184], [11.05507, 45.259049], [11.106337, 45.295021], [11.362675, 45.40294], [11.619012, 45.438913], [11.87535, 45.40294], [12.131687, 45.295021], [12.182954, 45.259049] ] ], [ [ [11.619012, 44.76851], [11.549102, 44.719456], [11.619012, 44.670402], [11.688922, 44.719456], [11.619012, 44.76851] ] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 3, "stroke": "darkred", "fill": "darkred", "fill-opacity": 0.8, "elevation": "13.5-18" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [12.388024, 44.161878], [12.157321, 44], [12.388024, 44], [12.388024, 44], [12.388024, 44.161878] ] ], [ [ [11.080704, 44], [10.85, 44.161878], [10.85, 44], [10.85, 44], [11.080704, 44] ] ], [ [ [12.157321, 45.438913], [12.388024, 45.277035], [12.388024, 45.438913], [12.388024, 45.438913], [12.157321, 45.438913] ] ], [ [ [10.85, 45.277035], [11.080704, 45.438913], [10.85, 45.438913], [10.85, 45.438913], [10.85, 45.277035] ] ] ] } }, { "type": "Feature", "properties": { "description": "Debug line for testing", "stroke": "#F00", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [10.850000000000023, 43.99999999999999], [12.388024266955085, 43.99999999999999], [12.388024266955085, 45.43891258195926], [10.850000000000023, 45.43891258195926], [10.850000000000023, 43.99999999999999] ] } } ] } ================================================ FILE: packages/turf-isobands/test/out/pointGrid.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill-opacity": 0.5, "people": "0-20" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-70.645198, -33.553984], [-70.607603, -33.512628], [-70.553662, -33.521999], [-70.542579, -33.509032], [-70.527562, -33.46408], [-70.553662, -33.452842], [-70.607603, -33.461775], [-70.613434, -33.46408], [-70.661543, -33.492069], [-70.710988, -33.46408], [-70.715483, -33.450594], [-70.725002, -33.46408], [-70.769424, -33.48259], [-70.79511, -33.509032], [-70.823364, -33.535057], [-70.823364, -33.553984], [-70.764237, -33.553984], [-70.715483, -33.518772], [-70.671006, -33.553984], [-70.645198, -33.553984] ] ], [ [ [-70.823364, -33.429795], [-70.769424, -33.443779], [-70.731216, -33.419128], [-70.742454, -33.374176], [-70.769424, -33.351019], [-70.786725, -33.374176], [-70.823364, -33.406542], [-70.823364, -33.429795] ] ], [ [ [-70.629732, -33.329224], [-70.607603, -33.337216], [-70.553662, -33.335329], [-70.511237, -33.374176], [-70.514512, -33.419128], [-70.499722, -33.442285], [-70.499722, -33.329224], [-70.629732, -33.329224] ] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 0.6, "people": "20-40" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-70.823364, -33.535057], [-70.79511, -33.509032], [-70.769424, -33.48259], [-70.725002, -33.46408], [-70.715483, -33.450594], [-70.710988, -33.46408], [-70.661543, -33.492069], [-70.613434, -33.46408], [-70.607603, -33.461775], [-70.553662, -33.452842], [-70.527562, -33.46408], [-70.542579, -33.509032], [-70.553662, -33.521999], [-70.607603, -33.512628], [-70.645198, -33.553984], [-70.612506, -33.553984], [-70.607603, -33.54859], [-70.553662, -33.539288], [-70.527801, -33.509032], [-70.499722, -33.468361], [-70.499722, -33.442285], [-70.514512, -33.419128], [-70.511237, -33.374176], [-70.553662, -33.335329], [-70.607603, -33.337216], [-70.629732, -33.329224], [-70.657394, -33.329224], [-70.607603, -33.347205], [-70.553662, -33.346428], [-70.523359, -33.374176], [-70.531912, -33.419128], [-70.553662, -33.437858], [-70.607603, -33.450249], [-70.642591, -33.46408], [-70.661543, -33.475106], [-70.681022, -33.46408], [-70.688513, -33.419128], [-70.71204, -33.374176], [-70.715483, -33.370887], [-70.764287, -33.329224], [-70.771237, -33.329224], [-70.80708, -33.374176], [-70.823364, -33.388561], [-70.823364, -33.406542], [-70.786725, -33.374176], [-70.769424, -33.351019], [-70.742454, -33.374176], [-70.731216, -33.419128], [-70.769424, -33.443779], [-70.823364, -33.429795], [-70.823364, -33.445033], [-70.779864, -33.46408], [-70.820795, -33.509032], [-70.823364, -33.511398], [-70.823364, -33.535057] ] ], [ [ [-70.671006, -33.553984], [-70.715483, -33.518772], [-70.764237, -33.553984], [-70.743491, -33.553984], [-70.715483, -33.533756], [-70.689933, -33.553984], [-70.671006, -33.553984] ] ], [ [ [-70.499722, -33.546991], [-70.515455, -33.553984], [-70.499722, -33.553984], [-70.499722, -33.546991] ] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 0.7, "people": "40-80" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-70.764287, -33.329224], [-70.715483, -33.370887], [-70.71204, -33.374176], [-70.688513, -33.419128], [-70.681022, -33.46408], [-70.661543, -33.475106], [-70.642591, -33.46408], [-70.607603, -33.450249], [-70.553662, -33.437858], [-70.531912, -33.419128], [-70.523359, -33.374176], [-70.553662, -33.346428], [-70.607603, -33.347205], [-70.657394, -33.329224], [-70.764287, -33.329224] ], [ [-70.547602, -33.374176], [-70.553662, -33.392157], [-70.581563, -33.419128], [-70.607603, -33.427196], [-70.626021, -33.419128], [-70.661543, -33.379976], [-70.666134, -33.374176], [-70.661543, -33.369791], [-70.607603, -33.367184], [-70.553662, -33.368626], [-70.547602, -33.374176] ] ], [ [ [-70.499722, -33.468361], [-70.527801, -33.509032], [-70.553662, -33.539288], [-70.607603, -33.54859], [-70.612506, -33.553984], [-70.515455, -33.553984], [-70.499722, -33.546991], [-70.499722, -33.468361] ] ], [ [ [-70.823364, -33.511398], [-70.820795, -33.509032], [-70.779864, -33.46408], [-70.823364, -33.445033], [-70.823364, -33.511398] ] ], [ [ [-70.823364, -33.388561], [-70.80708, -33.374176], [-70.771237, -33.329224], [-70.789368, -33.329224], [-70.823364, -33.363279], [-70.823364, -33.388561] ] ], [ [ [-70.689933, -33.553984], [-70.715483, -33.533756], [-70.743491, -33.553984], [-70.689933, -33.553984] ] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 0.8, "people": "80-160" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-70.553662, -33.368626], [-70.607603, -33.367184], [-70.661543, -33.369791], [-70.666134, -33.374176], [-70.661543, -33.379976], [-70.626021, -33.419128], [-70.607603, -33.427196], [-70.581563, -33.419128], [-70.553662, -33.392157], [-70.547602, -33.374176], [-70.553662, -33.368626] ] ], [ [ [-70.823364, -33.363279], [-70.789368, -33.329224], [-70.823364, -33.329224], [-70.823364, -33.363279] ] ] ] } }, { "type": "Feature", "properties": { "description": "Debug line for testing", "stroke": "#F00", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [-70.823364, -33.553984], [-70.49972213092846, -33.553984], [-70.49972213092846, -33.32922415568381], [-70.823364, -33.32922415568381], [-70.823364, -33.553984] ] } } ] } ================================================ FILE: packages/turf-isobands/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { envelope } from "@turf/envelope"; import { pointGrid } from "@turf/point-grid"; import { truncate } from "@turf/truncate"; import { getCoords } from "@turf/invariant"; import { lineString } from "@turf/helpers"; import { randomPolygon } from "@turf/random"; import { matrixToGrid } from "./lib/matrix-to-grid.js"; import { isobands } from "./index.js"; import { FeatureCollection, Point } from "geojson"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, json: loadJsonFileSync(directories.in + filename), }; }); test("isobands", (t) => { fixtures.forEach(({ name, json }) => { const options = json.properties || json; const { breaks, matrix, origin, cellSize } = options; // allow GeoJSON featureCollection or matrix let points = json.properties ? json : matrixToGrid(matrix, origin, cellSize, options); // Results const results = truncate(isobands(points, breaks, options)); // Add line around point data results.features.push( lineString(getCoords(envelope(points))[0], { description: "Debug line for testing", stroke: "#F00", "stroke-width": 1, }) ); if (process.env.REGEN) writeJsonFileSync(directories.out + name + ".geojson", results); t.deepEqual( results, loadJsonFileSync(directories.out + name + ".geojson"), name ); }); t.end(); }); test("isobands - flat data, from issue #1797", (t) => { const points = pointGrid( [-70.823364, -33.553984, -70.473175, -33.302986], 5, { properties: { elevation: 1 }, } ); const lines = isobands(points, [0, 2]); t.assert(lines.features[0].geometry.coordinates[0][0].length > 4); t.end(); }); test("isobands -- throws", (t) => { const points = pointGrid([-70.823364, -33.553984, -70.473175, -33.302986], 5); t.throws(() => isobands(randomPolygon(), [1, 2, 3]), "invalid points"); t.throws(() => isobands(points, ""), "invalid breaks"); t.throws( () => isobands(points, [1, 2, 3], { zProperty: "temp", breaksProperties: "hello", }), "invalid options" ); t.end(); }); test("isobands -- checks for usable grid", (t) => { const input: FeatureCollection = { type: "FeatureCollection", features: [ { type: "Feature", properties: { z: 0 }, geometry: { type: "Point", coordinates: [0, 0], }, }, { type: "Feature", properties: { z: 0 }, geometry: { type: "Point", coordinates: [0, 1], }, }, { type: "Feature", properties: { z: 0 }, geometry: { type: "Point", coordinates: [1, 1], }, }, { type: "Feature", properties: { z: 0 }, geometry: { type: "Point", coordinates: [1e-10, 1], // almost the same lng as the first feature, but different enough to break everything }, }, ], }; t.throws(() => { isobands(input, [0, 1], { zProperty: "z" }); }); t.end(); }); ================================================ FILE: packages/turf-isobands/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-isolines/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-isolines/README.md ================================================ # @turf/isolines ## isolines Takes a grid [FeatureCollection][1] of [Point][2] features with z-values and an array of value breaks and generates [isolines][3]. ### Parameters * `pointGrid` **[FeatureCollection][1]<[Point][2]>** input points - must be square or rectangular and already gridded. That is, to have consistent x and y dimensions and be at least 2x2 in size. * `breaks` **[Array][4]<[number][5]>** values of `zProperty` where to draw isolines * `options` **[Object][6]** Optional parameters (optional, default `{}`) * `options.zProperty` **[string][7]** the property name in `points` from which z-values will be pulled (optional, default `'elevation'`) * `options.commonProperties` **[Object][6]** GeoJSON properties passed to ALL isolines (optional, default `{}`) * `options.breaksProperties` **[Array][4]<[Object][6]>** GeoJSON properties passed, in order, to the correspondent isoline; the breaks array will define the order in which the isolines are created (optional, default `[]`) ### Examples ```javascript // create a grid of points with random z-values in their properties var extent = [0, 30, 20, 50]; var cellWidth = 100; var pointGrid = turf.pointGrid(extent, cellWidth, {units: 'miles'}); for (var i = 0; i < pointGrid.features.length; i++) { pointGrid.features[i].properties.temperature = Math.random() * 10; } var breaks = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; var lines = turf.isolines(pointGrid, breaks, {zProperty: 'temperature'}); //addToMap var addToMap = [lines]; ``` Returns **[FeatureCollection][1]<[MultiLineString][8]>** a FeatureCollection of [MultiLineString][8] features representing isolines [1]: https://tools.ietf.org/html/rfc7946#section-3.3 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [3]: https://en.wikipedia.org/wiki/Contour_line [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String [8]: https://tools.ietf.org/html/rfc7946#section-3.1.5 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/isolines ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-isolines/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { matrixToGrid } from "./lib/matrix-to-grid.js"; import { isolines } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); // Define Fixtures const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { filename, name: path.parse(filename).name, jsondata: loadJsonFileSync(directory + filename), }; }); /** * Benchmark Results * * bigMatrix x 168 ops/sec ±2.79% (72 runs sampled) * matrix1 x 17,145 ops/sec ±4.73% (68 runs sampled) * matrix2 x 11,004 ops/sec ±2.56% (79 runs sampled) * pointGrid x 12,109 ops/sec ±2.01% (77 runs sampled) */ const suite = new Benchmark.Suite("turf-isolines"); for (const { name, jsondata, filename } of fixtures) { const { breaks, zProperty, propertiesPerIsoline, propertiesToAllIsolines, matrix, cellSize, units, origin, } = jsondata.properties || jsondata; // allow GeoJSON FeatureCollection or Matrix let points; if (filename.includes("geojson")) points = jsondata; else points = matrixToGrid(matrix, origin, cellSize, { zProperty, units }); suite.add(name, () => isolines(points, breaks, { zProperty, propertiesToAllIsolines, propertiesPerIsoline, }) ); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-isolines/index.ts ================================================ import { bbox } from "@turf/bbox"; import { coordEach } from "@turf/meta"; import { collectionOf } from "@turf/invariant"; import { multiLineString, featureCollection, isObject } from "@turf/helpers"; import { gridToMatrix } from "./lib/grid-to-matrix.js"; import { FeatureCollection, Point, MultiLineString, Feature, GeoJsonProperties, Position, } from "geojson"; /** * Takes a grid {@link FeatureCollection} of {@link Point} features with z-values and an array of * value breaks and generates [isolines](https://en.wikipedia.org/wiki/Contour_line). * * @function * @param {FeatureCollection} pointGrid input points - must be square or rectangular and already gridded. That is, to have consistent x and y dimensions and be at least 2x2 in size. * @param {Array} breaks values of `zProperty` where to draw isolines * @param {Object} [options={}] Optional parameters * @param {string} [options.zProperty='elevation'] the property name in `points` from which z-values will be pulled * @param {Object} [options.commonProperties={}] GeoJSON properties passed to ALL isolines * @param {Array} [options.breaksProperties=[]] GeoJSON properties passed, in order, to the correspondent isoline; * the breaks array will define the order in which the isolines are created * @returns {FeatureCollection} a FeatureCollection of {@link MultiLineString} features representing isolines * @example * // create a grid of points with random z-values in their properties * var extent = [0, 30, 20, 50]; * var cellWidth = 100; * var pointGrid = turf.pointGrid(extent, cellWidth, {units: 'miles'}); * * for (var i = 0; i < pointGrid.features.length; i++) { * pointGrid.features[i].properties.temperature = Math.random() * 10; * } * var breaks = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; * * var lines = turf.isolines(pointGrid, breaks, {zProperty: 'temperature'}); * * //addToMap * var addToMap = [lines]; */ function isolines( pointGrid: FeatureCollection, breaks: number[], options?: { zProperty?: string; commonProperties?: GeoJsonProperties; breaksProperties?: GeoJsonProperties[]; } ) { // Optional parameters options = options || {}; if (!isObject(options)) throw new Error("options is invalid"); const zProperty = options.zProperty || "elevation"; const commonProperties = options.commonProperties || {}; const breaksProperties = options.breaksProperties || []; // Input validation collectionOf(pointGrid, "Point", "Input must contain Points"); if (!breaks) throw new Error("breaks is required"); if (!Array.isArray(breaks)) throw new Error("breaks must be an Array"); if (!isObject(commonProperties)) throw new Error("commonProperties must be an Object"); if (!Array.isArray(breaksProperties)) throw new Error("breaksProperties must be an Array"); // Isoline methods const matrix = gridToMatrix(pointGrid, { zProperty: zProperty, flip: true }); // A quick note on what 'top' and 'bottom' mean in coordinate system of `matrix`: // Remember that the southern hemisphere is represented by negative numbers, // so a matrix Y of 0 is actually the *bottom*, and a Y of dy - 1 is the *top*. // check that the resulting matrix has consistent x and y dimensions and // has at least a 2x2 size so that we can actually build grid squares const dx = matrix[0].length; if (matrix.length < 2 || dx < 2) { throw new Error("Matrix of points must be at least 2x2"); } for (let i = 1; i < matrix.length; i++) { if (matrix[i].length !== dx) { throw new Error("Matrix of points is not uniform in the x dimension"); } } const createdIsoLines = createIsoLines( matrix, breaks, zProperty, commonProperties, breaksProperties ); const scaledIsolines = rescaleIsolines(createdIsoLines, matrix, pointGrid); return featureCollection(scaledIsolines); } /** * Creates the isolines lines (featuresCollection of MultiLineString features) from the 2D data grid * * Marchingsquares process the grid data as a 3D representation of a function on a 2D plane, therefore it * assumes the points (x-y coordinates) are one 'unit' distance. The result of the isolines function needs to be * rescaled, with turfjs, to the original area and proportions on the map * * @private * @param {Array>} matrix Grid Data * @param {Array} breaks BreakProps * @param {string} zProperty name of the z-values property * @param {Object} [commonProperties={}] GeoJSON properties passed to ALL isolines * @param {Object} [breaksProperties=[]] GeoJSON properties passed to the correspondent isoline * @returns {Array} isolines */ function createIsoLines( matrix: number[][], breaks: number[], zProperty: string, commonProperties: GeoJsonProperties, breaksProperties: GeoJsonProperties[] ): Feature[] { const results = []; for (let i = 0; i < breaks.length; i++) { const threshold = +breaks[i]; // make sure it's a number const properties = { ...commonProperties, ...breaksProperties[i] }; properties[zProperty] = threshold; const isoline = multiLineString(isoContours(matrix, threshold), properties); results.push(isoline); } return results; } function isoContours( matrix: ReadonlyArray>, threshold: number ): Position[][] { // see https://en.wikipedia.org/wiki/Marching_squares const segments: [Position, Position][] = []; const dy = matrix.length; const dx = matrix[0].length; for (let y = 0; y < dy - 1; y++) { for (let x = 0; x < dx - 1; x++) { const tr = matrix[y + 1][x + 1]; const br = matrix[y][x + 1]; const bl = matrix[y][x]; const tl = matrix[y + 1][x]; let grid = (tl >= threshold ? 8 : 0) | (tr >= threshold ? 4 : 0) | (br >= threshold ? 2 : 0) | (bl >= threshold ? 1 : 0); switch (grid) { case 0: continue; case 1: segments.push([ [x + frac(bl, br), y], [x, y + frac(bl, tl)], ]); break; case 2: segments.push([ [x + 1, y + frac(br, tr)], [x + frac(bl, br), y], ]); break; case 3: segments.push([ [x + 1, y + frac(br, tr)], [x, y + frac(bl, tl)], ]); break; case 4: segments.push([ [x + frac(tl, tr), y + 1], [x + 1, y + frac(br, tr)], ]); break; case 5: { // use the average of the 4 corners to differentiate the saddle case and correctly honor the counter-clockwise winding const avg = (tl + tr + br + bl) / 4; const above = avg >= threshold; if (above) { segments.push( [ [x + frac(tl, tr), y + 1], [x, y + frac(bl, tl)], ], [ [x + frac(bl, br), y], [x + 1, y + frac(br, tr)], ] ); } else { segments.push( [ [x + frac(tl, tr), y + 1], [x + 1, y + frac(br, tr)], ], [ [x + frac(bl, br), y], [x, y + frac(bl, tl)], ] ); } break; } case 6: segments.push([ [x + frac(tl, tr), y + 1], [x + frac(bl, br), y], ]); break; case 7: segments.push([ [x + frac(tl, tr), y + 1], [x, y + frac(bl, tl)], ]); break; case 8: segments.push([ [x, y + frac(bl, tl)], [x + frac(tl, tr), y + 1], ]); break; case 9: segments.push([ [x + frac(bl, br), y], [x + frac(tl, tr), y + 1], ]); break; case 10: { const avg = (tl + tr + br + bl) / 4; const above = avg >= threshold; if (above) { segments.push( [ [x, y + frac(bl, tl)], [x + frac(bl, br), y], ], [ [x + 1, y + frac(br, tr)], [x + frac(tl, tr), y + 1], ] ); } else { segments.push( [ [x, y + frac(bl, tl)], [x + frac(tl, tr), y + 1], ], [ [x + 1, y + frac(br, tr)], [x + frac(bl, br), y], ] ); } break; } case 11: segments.push([ [x + 1, y + frac(br, tr)], [x + frac(tl, tr), y + 1], ]); break; case 12: segments.push([ [x, y + frac(bl, tl)], [x + 1, y + frac(br, tr)], ]); break; case 13: segments.push([ [x + frac(bl, br), y], [x + 1, y + frac(br, tr)], ]); break; case 14: segments.push([ [x, y + frac(bl, tl)], [x + frac(bl, br), y], ]); break; case 15: // all above continue; } } } const contours: Position[][] = []; while (segments.length > 0) { const contour: Position[] = [...segments.shift()!]; contours.push(contour); let found: boolean; do { found = false; for (let i = 0; i < segments.length; i++) { const segment = segments[i]; // add the segment's end point to the end of the contour if ( segment[0][0] === contour[contour.length - 1][0] && segment[0][1] === contour[contour.length - 1][1] ) { found = true; contour.push(segment[1]); segments.splice(i, 1); break; } // add the segment's start point to the start of the contour if ( segment[1][0] === contour[0][0] && segment[1][1] === contour[0][1] ) { found = true; contour.unshift(segment[0]); segments.splice(i, 1); break; } } } while (found); } return contours; // get the linear interpolation fraction of how far z is between z0 and z1 // See https://github.com/fschutt/marching-squares/blob/master/src/lib.rs function frac(z0: number, z1: number): number { if (z0 === z1) { return 0.5; } let t = (threshold - z0) / (z1 - z0); return t > 1 ? 1 : t < 0 ? 0 : t; } } /** * Translates and scales isolines * * @private * @param {Array} createdIsoLines to be rescaled * @param {Array>} matrix Grid Data * @param {Object} points Points by Latitude * @returns {Array} isolines */ function rescaleIsolines( createdIsoLines: Feature[], matrix: number[][], points: FeatureCollection ) { // get dimensions (on the map) of the original grid const gridBbox = bbox(points); // [ minX, minY, maxX, maxY ] const originalWidth = gridBbox[2] - gridBbox[0]; const originalHeigth = gridBbox[3] - gridBbox[1]; // get origin, which is the first point of the last row on the rectangular data on the map const x0 = gridBbox[0]; const y0 = gridBbox[1]; // get number of cells per side const matrixWidth = matrix[0].length - 1; const matrixHeight = matrix.length - 1; // calculate the scaling factor between matrix and rectangular grid on the map const scaleX = originalWidth / matrixWidth; const scaleY = originalHeigth / matrixHeight; const resize = (point: number[]) => { point[0] = point[0] * scaleX + x0; point[1] = point[1] * scaleY + y0; }; // resize and shift each point/line of the createdIsoLines createdIsoLines.forEach((isoline) => { coordEach(isoline, resize); }); return createdIsoLines; } export { isolines }; export default isolines; ================================================ FILE: packages/turf-isolines/lib/grid-to-matrix.ts ================================================ import { getCoords, collectionOf } from "@turf/invariant"; import { featureEach } from "@turf/meta"; import { isObject } from "@turf/helpers"; import { Feature, FeatureCollection, Point } from "geojson"; /** * Takes a {@link Point} grid and returns a correspondent matrix {Array>} * of the 'property' values * * @name gridToMatrix * @param {FeatureCollection} grid of points * @param {Object} [options={}] Optional parameters * @param {string} [options.zProperty='elevation'] the property name in `points` from which z-values will be pulled * @param {boolean} [options.flip=false] returns the matrix upside-down * @param {boolean} [options.flags=false] flags, adding a `matrixPosition` array field ([row, column]) to its properties, * the grid points with coordinates on the matrix * @returns {Array>} matrix of property values * @example * var extent = [-70.823364, -33.553984, -70.473175, -33.302986]; * var cellSize = 3; * var grid = turf.pointGrid(extent, cellSize); * // add a random property to each point between 0 and 60 * for (var i = 0; i < grid.features.length; i++) { * grid.features[i].properties.elevation = (Math.random() * 60); * } * gridToMatrix(grid); * //= [ * [ 1, 13, 10, 9, 10, 13, 18], * [34, 8, 5, 4, 5, 8, 13], * [10, 5, 2, 1, 2, 5, 4], * [ 0, 4, 56, 19, 1, 4, 9], * [10, 5, 2, 1, 2, 5, 10], * [57, 8, 5, 4, 5, 0, 57], * [ 3, 13, 10, 9, 5, 13, 18], * [18, 13, 10, 9, 78, 13, 18] * ] */ export function gridToMatrix( grid: FeatureCollection, options: { zProperty?: string; flip?: boolean; flags?: boolean } = {} ): any { // Optional parameters if (!isObject(options)) throw new Error("options is invalid"); const { zProperty = "elevation", flip = false, flags = false } = options; // validation collectionOf(grid, "Point", "input must contain Points"); var pointsMatrix = sortPointsByLatLng(grid, flip); var matrix = []; // create property matrix from sorted points // looping order matters here for (var r = 0; r < pointsMatrix.length; r++) { var pointRow = pointsMatrix[r]; var row = []; for (var c = 0; c < pointRow.length; c++) { var point = pointRow[c]; if (point.properties == null) { point.properties = {}; } // Check if zProperty exist if (point.properties[zProperty]) row.push(point.properties[zProperty]); else row.push(0); // add flags if (flags === true) point.properties.matrixPosition = [r, c]; } matrix.push(row); } return matrix; } /** * Sorts points by latitude and longitude, creating a 2-dimensional array of points * * @private * @param {FeatureCollection} points GeoJSON Point features * @param {boolean} [flip=false] returns the matrix upside-down * @returns {Array>} points ordered by latitude and longitude */ function sortPointsByLatLng(points: FeatureCollection, flip: boolean) { var pointsByLatitude: Record[]> = {}; // divide points by rows with the same latitude featureEach(points, (point) => { var lat = getCoords(point)[1] as number; if (!pointsByLatitude[lat]) pointsByLatitude[lat] = []; pointsByLatitude[lat].push(point); }); // sort points (with the same latitude) by longitude const pointMatrix: Feature[][] = []; for (const row of Object.values(pointsByLatitude)) { pointMatrix.push(row.sort((a, b) => getCoords(a)[0] - getCoords(b)[0])); } // sort rows (of points with the same latitude) by latitude pointMatrix.sort( flip ? (a, b) => getCoords(a[0])[1] - getCoords(b[0])[1] : (a, b) => getCoords(b[0])[1] - getCoords(a[0])[1] ); return pointMatrix; } ================================================ FILE: packages/turf-isolines/lib/matrix-to-grid.ts ================================================ import { isObject, featureCollection, point, Units } from "@turf/helpers"; import { rhumbDestination } from "@turf/rhumb-destination"; import { Feature, Point } from "geojson"; /** * Takes a {@link Point} grid and returns a correspondent matrix {Array>} * of the 'property' values * * @name matrixToGrid * @param {Array>} matrix of numbers * @param {Point|Array} origin position of the first bottom-left (South-West) point of the grid * @param {number} cellSize the distance across each cell * @param {Object} [options={}] optional parameters * @param {string} [options.zProperty='elevation'] the grid points property name associated with the matrix value * @param {Object} [options.properties={}] GeoJSON properties passed to all the points * @param {Units} [options.units='kilometers'] used in calculating cellSize. Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @returns {FeatureCollection} grid of points * * @example * var matrixToGrid = require('matrix-to-grid'); * var matrix = [ * [ 1, 13, 20, 9, 10, 13, 18], * [34, 8, 0, 4, 5, 8, 13], * [10, 5, 2, 1, 2, 5, 24], * [ 0, 4, 56, 19, 0, 4, 9], * [10, 5, 2, 12, 2, 5, 10], * [57, 8, 5, 4, 5, 0, 57], * [ 3, 13, 0, 9, 5, 13, 35], * [18, 13, 10, 9, 78, 13, 18] * ]; * var origin = [-70.823364, -33.553984] * matrixToGrid(matrix, origin, 10); * //= pointGrid */ export function matrixToGrid( matrix: number[][], origin: Feature | number[], cellSize: number, options: { zProperty?: string; properties?: Record; units?: Units; } = {} ) { // Optional parameters options = options || {}; if (!isObject(options)) throw new Error("options is invalid"); var zProperty = options.zProperty || "elevation"; var properties = options.properties; var units = options.units; // validation if (!matrix || !Array.isArray(matrix)) throw new Error("matrix is required"); if (!origin) throw new Error("origin is required"); if (Array.isArray(origin)) { origin = point(origin); // Convert coordinates array to point } // all matrix array have to be of the same size var matrixCols = matrix[0].length; var matrixRows = matrix.length; for (var row = 1; row < matrixRows; row++) { if (matrix[row].length !== matrixCols) throw new Error("matrix requires all rows of equal size"); } var points = []; for (var r = 0; r < matrixRows; r++) { // create first point in the row var first = rhumbDestination(origin, cellSize * r, 0, { units: units }); if (first.properties == null) { first.properties = {}; } first.properties[zProperty] = matrix[matrixRows - 1 - r][0]; for (var prop in properties) { first.properties[prop] = properties[prop]; } points.push(first); for (var c = 1; c < matrixCols; c++) { // create the other points in the same row var pt = rhumbDestination(first, cellSize * c, 90, { units: units }); if (pt.properties == null) { pt.properties = {}; } for (var prop2 in properties) { pt.properties[prop2] = properties[prop2]; } // add matrix property var val = matrix[matrixRows - 1 - r][c]; pt.properties[zProperty] = val; points.push(pt); } } var grid = featureCollection(points); return grid; } ================================================ FILE: packages/turf-isolines/package.json ================================================ { "name": "@turf/isolines", "version": "7.3.4", "description": "Generate contour lines from a grid of data.", "author": "Turf Authors", "contributors": [ "Stefano Borghi <@stebogit>", "Matt Fedderly <@mfedderly>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "geojson", "isolines", "contours", "elevation", "topography" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/envelope": "workspace:*", "@turf/point-grid": "workspace:*", "@turf/random": "workspace:*", "@turf/rhumb-destination": "workspace:*", "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/bbox": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-isolines/test/in/bigMatrix.json ================================================ { "origin": [6.5, 46], "cellSize": 10, "breaks": [0.24, 0.5, 1.5, 2.5, 100], "zProperty": "pressure", "commonProperties": { "stroke-width": 4, "fill-opacity": 0.4 }, "breaksProperties": [ { "stroke": "grey", "fill": "grey" }, { "stroke": "blue", "fill": "blue" }, { "stroke": "green", "fill": "green" }, { "stroke": "yellow", "fill": "yellow" }, { "stroke": "red", "fill": "red" } ], "matrix": [ [ 0.754816323768, 0.0192104697805, 0.0755640895933, 0.162215587333, 0.267950411633, 0.380900771041, 0.491544382473, 0.593906626031, 0.685266592708, 0.765202340943, 0.834615850466, 0.895008654071, 0.948034954329, 0.995264760092, 1.03807922487, 1.07763915535, 1.1148893148, 1.15057748954, 1.18527770736, 1.21941299466, 1.25327620796, 1.28704892645, 1.32081889084, 1.35459648117, 1.38833052607, 1.42192349543, 1.45524594313, 1.4881499762, 1.52048153551, 1.55209136178, 1.58284465416, 1.61262956931, 1.64136481734, 1.66900665389, 1.69555551758, 1.72106240417, 1.74563480623, 1.76944170768, 1.79271677157, 1.815758593, 1.83892683251, 1.86263330886, 1.88732776844, 1.91347899987, 1.94155302698, 1.97199098527, 2.00518965296, 2.04148728682, 2.08115644818, 2.12440417382, 2.17137854124, 2.22217975027, 2.27687346733, 2.33550432796, 2.39810799098, 2.46472076518, 2.53538640645, 2.61016010681, 2.68910994092, 2.77231611964, 2.85986836779, 2.95186163737, 3.04839022734, 3.14954023961, 3.2553801885, 3.36594952824, 3.48124489906, 3.60120404326, 3.72568762201, 3.85445956725, 3.98716710137, 4.12332208928, 4.26228586482, 4.40325998761, 4.54528542294, 4.68725230409, 4.82792168542, 4.96595955259, 5.09998193596, 5.22860847339, 5.35052044051, 5.46451836937, 5.56957411184, 5.66487266244, 5.74984018447, 5.82415629486, 5.88775047397, 5.94078416729, 5.98362147499, 6.01679211687, 6.04095057545, 6.05683502667, 6.06522901002, 6.06692794183, 6.06271169478, 6.05332367777 ], [ 0.0190236070377, 0.0385999271506, 0.0947957400738, 0.180524048614, 0.284354871517, 0.39438504785, 0.501273442842, 0.599359856829, 0.686256401169, 0.761815524864, 0.827128435869, 0.883807556173, 0.933559660473, 0.977969770145, 1.01841280298, 1.05603292629, 1.09175397163, 1.12630111673, 1.16022445572, 1.19392090141, 1.22765378699, 1.26157074476, 1.2957206964, 1.33007057339, 1.364522001, 1.39892781263, 1.43310801472, 1.46686473476, 1.49999574718, 1.53230634678, 1.56361957456, 1.59378504098, 1.62268678373, 1.65025069457, 1.67645201114, 1.70132316613, 1.72496190488, 1.74753904943, 1.7693046771, 1.79059094408, 1.81180952501, 1.83344188445, 1.85602149532, 1.88010863445, 1.90626020702, 1.93499863326, 1.96678456493, 2.00199770408, 2.04092833787, 2.08377990849, 2.13068076686, 2.18170184982, 2.23687663917, 2.29622026442, 2.35974561448, 2.4274754117, 2.49945008841, 2.57573187067, 2.6564057268, 2.74157785488, 2.83137224858, 2.92592566526, 3.0253810736, 3.1298794166, 3.2395493235, 3.35449427841, 3.47477674743, 3.60039892071, 3.73128007393, 3.86723110113, 4.00792748809, 4.15288280778, 4.30142560185, 4.45268310435, 4.60557548418, 4.75882397008, 4.91097527253, 5.06044313902, 5.20556581785, 5.34467595263, 5.47617737915, 5.59862186856, 5.71077839461, 5.81168815837, 5.90070030622, 5.97748571974, 6.04202897785, 6.09460109447, 6.13571750575, 6.16608678652, 6.18655568627, 6.19805544231, 6.20155320662, 6.19801109809, 6.18835410471, 6.17344697778 ], [ 0.0740492769371, 0.093829427076, 0.14735600539, 0.227811443267, 0.32446389556, 0.426278918138, 0.524706373396, 0.614664625462, 0.694112379507, 0.763061806146, 0.82263908342, 0.874420721412, 0.920044959285, 0.961019544951, 0.998646535999, 1.03400747738, 1.06797487086, 1.10123197939, 1.13429296376, 1.1675208765, 1.2011437201, 1.23526973067, 1.26990302393, 1.30496024613, 1.3402882535, 1.37568232319, 1.41090409367, 1.44569837545, 1.4798081343, 1.5129872635, 1.54501115006, 1.57568542778, 1.60485362843, 1.63240463143, 1.6582808148, 1.68248757152, 1.70510433536, 1.72629645476, 1.7463262401, 1.76556048576, 1.78447107479, 1.80362534186, 1.82366407028, 1.84526740536, 1.86911212982, 1.89582668208, 1.92595179694, 1.95991388127, 1.99801528304, 2.04044152356, 2.08728185593, 2.13855738396, 2.1942507913, 2.25433303816, 2.31878433954, 2.38760858032, 2.46084162166, 2.53855462467, 2.62085368555, 2.70787692614, 2.79978987086, 2.89677956499, 2.99904749995, 3.10680103837, 3.22024270479, 3.33955646982, 3.46489006787, 3.59633251962, 3.73388644168, 3.87743544859, 4.02670796628, 4.18123999189, 4.3403405859, 4.5030649331, 4.66820037683, 4.83427063856, 4.9995622783, 5.16217528189, 5.32009665708, 5.47129250424, 5.61381082343, 5.74588501518, 5.86602720876, 5.97310149718, 6.06636976417, 6.14550655243, 6.21058357753, 6.26202821892, 6.30056296543, 6.32713402293, 6.34283712723, 6.34884735303, 6.34635782586, 6.33653019051, 6.32045782881, 6.29914136679 ], [ 0.157034978462, 0.17658032134, 0.22517427108, 0.296713566809, 0.381907932596, 0.471303323761, 0.557602347409, 0.636484575319, 0.706242706617, 0.766940910261, 0.819607348834, 0.865660049868, 0.906569598921, 0.94369246162, 0.978206056181, 1.01109554936, 1.04316205088, 1.07503646033, 1.10719248999, 1.13995761741, 1.17352317516, 1.20795543948, 1.24320917345, 1.27914418601, 1.31554451703, 1.35213913284, 1.38862265798, 1.42467468981, 1.45997657344, 1.49422504368, 1.52714275156, 1.55848628769, 1.58805281336, 1.61568674362, 1.64128802301, 1.66482330389, 1.68634068452, 1.70598751476, 1.72402916098, 1.74086476564, 1.75703446036, 1.77321198941, 1.79017812237, 1.80877400608, 1.8298391731, 1.85414451071, 1.88233363434, 1.91488493308, 1.95210109621, 1.99412537408, 2.04097732202, 2.09259763188, 2.14889225697, 2.20976911286, 2.27516436332, 2.34505830981, 2.41948265417, 2.4985215146, 2.58230844199, 2.6710211947, 2.7648754362, 2.86411793201, 2.96901926519, 3.07986556009, 3.19694821238, 3.3205502181, 3.45092746024, 3.58828336202, 3.73273576252, 3.88427579133, 4.04271991984, 4.20765815352, 4.37840328595, 4.55394792754, 4.7329372169, 4.91366525692, 5.0941019971, 5.27195433642, 5.44476082914, 5.61001415125, 5.76530041222, 5.90844062421, 6.03761817431, 6.15147751541, 6.24918334707, 6.33043545858, 6.39544085449, 6.44485040587, 6.4796710187, 6.50116571521, 6.51075323742, 6.5099164165, 6.50012541687, 6.48277880907, 6.45916277822, 6.43042688849 ], [ 0.255539967582, 0.274105267923, 0.316142519243, 0.37652813048, 0.447790344706, 0.522401720013, 0.594540601807, 0.660734463541, 0.719597973044, 0.771184232905, 0.81634481069, 0.856264948132, 0.892186153575, 0.925267613017, 0.956531235552, 0.986848370649, 1.01694214946, 1.0473921757, 1.0786369509, 1.11097447506, 1.1445637063, 1.17942978874, 1.21547494117, 1.25249536236, 1.29020304219, 1.32825035918, 1.36625495163, 1.40382253727, 1.44056597093, 1.47611968144, 1.51014954935, 1.54235915468, 1.57249406068, 1.60034634509, 1.62576186709, 1.64865263751, 1.66901595208, 1.68696043682, 1.70273671035, 1.71676715126, 1.72966597268, 1.74223883604, 1.75545241148, 1.77037001303, 1.78805932439, 1.80948915725, 1.83543897712, 1.8664432107, 1.90278185216, 1.94451434684, 1.99154200092, 2.04367980399, 2.10072152925, 2.16248887872, 2.22886236619, 2.29979627736, 2.37532202978, 2.45554432532, 2.54063362358, 2.63081737419, 2.72637146094, 2.82761249247, 2.93489085883, 3.04858378088, 3.16908688369, 3.29680217167, 3.43211979799, 3.57539088492, 3.72688906127, 3.88675949882, 4.0549561148, 4.23117017895, 4.41475656177, 4.60466682759, 4.79940066983, 4.99698804347, 5.19501304043, 5.39068663082, 5.58096897108, 5.76273391892, 5.93296025754, 6.0889278582, 6.22839437016, 6.34973001552, 6.45199448581, 6.53494936058, 6.59900965298, 6.64514668694, 6.67475981172, 6.68953583034, 6.69131292358, 6.68196150139, 6.66328923844, 6.63697275763, 6.60451474656, 6.56722297228 ], [ 0.356595980746, 0.373250225721, 0.407870901979, 0.456380389165, 0.513129362205, 0.572497876591, 0.630126416182, 0.683384527264, 0.731201872661, 0.77360647909, 0.811252273638, 0.845067066976, 0.876039513977, 0.905112797542, 0.933142751588, 0.960885914704, 0.988995407408, 1.01801396216, 1.04836199261, 1.08032380146, 1.11403707659, 1.14949033478, 1.18653088455, 1.22488324232, 1.26417564807, 1.30397093367, 1.34379764677, 1.38317786018, 1.42164918526, 1.45877983592, 1.49417691891, 1.52748932496, 1.55840761583, 1.58666413066, 1.6120371199, 1.63436290022, 1.65355949033, 1.66966346133, 1.68287831636, 1.69362743015, 1.70259814703, 1.71075826192, 1.71932550808, 1.72967870743, 1.74321683291, 1.76119419184, 1.78457519647, 1.81395002548, 1.84953139295, 1.89122338459, 1.9387315827, 1.99167867928, 2.04969929224, 2.11250275563, 2.17990507835, 2.25183770558, 2.32834195952, 2.40955645941, 2.49570247922, 2.58707018102, 2.68400724157, 2.78691041866, 2.89621981735, 3.01241479734, 3.13600952146, 3.26754512992, 3.40757461808, 3.5566359859, 3.71520944848, 3.88365574908, 4.06213506682, 4.25050962725, 4.44823761648, 4.65427078667, 4.86697230959, 5.08407376457, 5.30268930745, 5.51940003923, 5.73041223207, 5.93178053132, 6.11967402461, 6.29065246494, 6.44191512006, 6.57148759078, 6.6783222797, 6.76230354021, 6.82416493125, 6.86533934692, 6.88777023642, 6.8937128895, 6.88555002063, 6.86563801002, 6.83619168557, 6.7992083594, 6.75642691151, 6.70931512351 ], [ 0.449936181049, 0.463751877347, 0.490741367556, 0.527796135674, 0.570852467511, 0.615941322666, 0.659989091157, 0.70112933377, 0.738594371018, 0.772401395023, 0.803022375779, 0.831135227847, 0.857475874242, 0.882769839313, 0.907709886876, 0.932949858718, 0.959095050922, 0.986680922234, 1.01614159504, 1.04777570866, 1.0817190819, 1.11793184984, 1.15620367431, 1.1961760554, 1.23737717384, 1.27926284486, 1.3212570846, 1.36278700383, 1.40330862187, 1.44232220683, 1.47937758131, 1.51407137951, 1.54603954211, 1.5749494892, 1.60049746343, 1.62241735389, 1.64050744538, 1.65468012112, 1.66503536402, 1.67195084807, 1.67616957488, 1.67885331198, 1.68156351441, 1.68614059594, 1.69448329786, 1.70827518672, 1.72874103521, 1.75651458327, 1.7916547097, 1.83378515095, 1.88229159969, 1.93650806584, 1.99585119825, 2.05989332217, 2.1283858822, 2.20125180287, 2.27856298338, 2.3605137227, 2.44739597783, 2.53957918278, 2.63749568849, 2.74163204725, 2.85252572954, 2.97076601209, 3.0969965492, 3.23191559251, 3.37626822674, 3.53082378709, 3.69633137264, 3.8734475946, 4.06263374963, 4.26402454545, 4.47727706315, 4.7014161604, 4.93469980904, 5.17453304288, 5.41745987812, 5.65925657399, 5.89513606258, 6.12005372915, 6.32908293554, 6.51781045593, 6.68269308109, 6.8213207171, 6.93254825244, 7.01648399375, 7.07434941943, 7.10824602454, 7.12087532057, 7.11525679987, 7.09447866827, 7.06150203909, 7.01902553045, 6.96940673673, 6.91463087409, 6.85631458234 ], [ 0.529333176276, 0.539533681044, 0.559091988372, 0.585724792152, 0.616631682569, 0.649152934089, 0.681257573747, 0.711726174088, 0.740068875987, 0.766310206274, 0.790765009828, 0.813875870608, 0.836128936884, 0.858031104983, 0.880117505257, 0.902958947093, 0.927148914462, 0.953263713228, 0.981802594559, 1.01312319252, 1.04738944341, 1.08454483166, 1.12431594375, 1.16624326707, 1.20973055029, 1.25410185187, 1.2986561937, 1.34271231556, 1.38563919818, 1.42687097662, 1.46590724542, 1.50230156652, 1.53564245308, 1.56553253133, 1.5915732424, 1.61336436073, 1.63052929442, 1.64277727933, 1.65000980263, 1.65246776142, 1.6508957007, 1.64667217308, 1.64183229748, 1.63891206114, 1.64059562363, 1.64924222232, 1.66645672845, 1.69287408334, 1.72822887128, 1.77164277506, 1.82198276261, 1.87815928742, 1.93930554193, 2.00484481547, 2.07448389782, 2.14817120363, 2.2260458627, 2.30839110539, 2.39559681031, 2.48813210144, 2.58652770329, 2.69136770495, 2.80329030323, 2.9229963795, 3.0512632003, 3.18895820861, 3.33704516736, 3.49657250068, 3.66863244931, 3.85428051837, 4.05440827967, 4.26956909133, 4.49976553507, 4.74421879982, 5.00115257448, 5.26763455505, 5.53952318663, 5.81156117343, 6.077637996, 6.33121268897, 6.56585178198, 6.77580548543, 6.95652843243, 7.10505681124, 7.22018198483, 7.30240410538, 7.35369455012, 7.37712968104, 7.37647217381, 7.35576965261, 7.31901999177, 7.26992753385, 7.21175245059, 7.14724077233, 7.0786157998, 7.00761089131 ], [ 0.592269610438, 0.598285011829, 0.610803101305, 0.628212377784, 0.648673111774, 0.670516066207, 0.692519187426, 0.713990477114, 0.734685663434, 0.754646032321, 0.774042687401, 0.793081184085, 0.811980586141, 0.831008579849, 0.85053585689, 0.871070551259, 0.893245482376, 0.917751871274, 0.945234859361, 0.976180362592, 1.01082471349, 1.04910893406, 1.09068396253, 1.13495876991, 1.18117478771, 1.22848832576, 1.27604576059, 1.32304147959, 1.36875376179, 1.41255789688, 1.45391866271, 1.49236607067, 1.52745958302, 1.55874746038, 1.58573016155, 1.60784023018, 1.62445567891, 1.63496800233, 1.63892580372, 1.63626387955, 1.62759714812, 1.61450524401, 1.59967071709, 1.58670682605, 1.57958670088, 1.58178826916, 1.59549352099, 1.62122131307, 1.65803888687, 1.70416706224, 1.75763960688, 1.81676789297, 1.88034866398, 1.94768026494, 2.01848341882, 2.09279747653, 2.17088753798, 2.25317309703, 2.3401773028, 2.43249304099, 2.53076306184, 2.63567321285, 2.74795887945, 2.86842434548, 2.99797280252, 3.13764129975, 3.2886305001, 3.45231463971, 3.63021401722, 3.82391223149, 4.03490429773, 4.26436995952, 4.51287886287, 4.78005080037, 5.0642143933, 5.36212800719, 5.66883992665, 5.97776130608, 6.2809985657, 6.56994274784, 6.83605202046, 7.07170715235, 7.27098770075, 7.43022336042, 7.54822279542, 7.62615788281, 7.66715947393, 7.67573570533, 7.65714093231, 7.61680428849, 7.55988611442, 7.49098608811, 7.41399233514, 7.33204156654, 7.24755497775, 7.16231835297 ], [ 0.638839378139, 0.640286548119, 0.646182840122, 0.655455261978, 0.666987338569, 0.679854547074, 0.693463644757, 0.707558545629, 0.722116588106, 0.737198925984, 0.752826180429, 0.768930943744, 0.785403200854, 0.802205452744, 0.819504538294, 0.837758110962, 0.857709642033, 0.880281112852, 0.90639290469, 0.936767889968, 0.971779051589, 1.01137833469, 1.05511255002, 1.10220605365, 1.15167816811, 1.20246481651, 1.25352249222, 1.30390263451, 1.35279251566, 1.39952399627, 1.44355432105, 1.48442430021, 1.52169970687, 1.55490259965, 1.58344176694, 1.60655682116, 1.62329946137, 1.63258731782, 1.63337604588, 1.62499247399, 1.60763530717, 1.58295694094, 1.55449037601, 1.52755397001, 1.50833362158, 1.50226587969, 1.51244671176, 1.53897388219, 1.57953869864, 1.6307378713, 1.68929275262, 1.75272396997, 1.81950162493, 1.88890336985, 1.96078863387, 2.03539776446, 2.11320716089, 2.19483451955, 2.28097896646, 2.37238389531, 2.46981652762, 2.57406338711, 2.68594360685, 2.80634202734, 2.93626151532, 3.07688899021, 3.22966266716, 3.39632017693, 3.57890082798, 3.77967318104, 4.00096309106, 4.24486724187, 4.51285233028, 4.80526199251, 5.1207850292, 5.45597698721, 5.8049594749, 6.1594274253, 6.50905840996, 6.84233963482, 7.14772395075, 7.41492534322, 7.63610194981, 7.80668024009, 7.92565607553, 7.99534347955, 8.0206807829, 8.00829521403, 7.96554446384, 7.89970572773, 7.81740185786, 7.72427633432, 7.62487641671, 7.52268216241, 7.42022073443, 7.31921913868 ], [ 0.670619780898, 0.667246283019, 0.666866435338, 0.668840732047, 0.672609594761, 0.677830655523, 0.684430839522, 0.692549735602, 0.702393647769, 0.714056911148, 0.727386452935, 0.741958257104, 0.757196700246, 0.77260914063, 0.788052578074, 0.8039231011, 0.821177598491, 0.841159156637, 0.865279730545, 0.894674281757, 0.929944052385, 0.971054898171, 1.01738740714, 1.06788827587, 1.12126065841, 1.17614432166, 1.23125726156, 1.28548795652, 1.33793850055, 1.38792439532, 1.43493857881, 1.47858684675, 1.51850049914, 1.5542312582, 1.58513510573, 1.61025812118, 1.62825158121, 1.6373677101, 1.63561943671, 1.62121324296, 1.59334614254, 1.55332828553, 1.50568374495, 1.45845516833, 1.42180283272, 1.40481040999, 1.41208730868, 1.44252245908, 1.4909279619, 1.55097337017, 1.61740333183, 1.68684181112, 1.75761502731, 1.82923535587, 1.90192394609, 1.97628527666, 2.05311736047, 2.13330872121, 2.21778143901, 2.30745710814, 2.40323761611, 2.5060023455, 2.61662790586, 2.73603678176, 2.86527806224, 3.0056367226, 3.15875746442, 3.32675580739, 3.51227671071, 3.71845521927, 3.94873793111, 4.20653608171, 4.49469666192, 4.81480162136, 5.16635056746, 5.54595408705, 5.94673879872, 6.35819618703, 6.76666034148, 7.15647318328, 7.51171817155, 7.81822246392, 8.06540406213, 8.24753572274, 8.36413892828, 8.41946959496, 8.42131227293, 8.37945519029, 8.30422521712, 8.20534786428, 8.09123744974, 7.96868763077, 7.84285821399, 7.7174388442, 7.59489162903, 7.47670861233 ], [ 0.689844001429, 0.681469237036, 0.675033941998, 0.670250471822, 0.667006981505, 0.665453234195, 0.666001912099, 0.669218879009, 0.675610310221, 0.685361108706, 0.698124634476, 0.712980211442, 0.728633145724, 0.74383503197, 0.757893889652, 0.771075784116, 0.784706224437, 0.800882869213, 0.821891570421, 0.849570449559, 0.88487297669, 0.927744598317, 0.977267829384, 1.03194972797, 1.09003251474, 1.14975514849, 1.20953796234, 1.26808891179, 1.3244415665, 1.37793826445, 1.42817095278, 1.47488902349, 1.51787909076, 1.55681760264, 1.59109570349, 1.6196206236, 1.64061520094, 1.65147556471, 1.64881429756, 1.62890716658, 1.58882838025, 1.52846457461, 1.45308353462, 1.37500624234, 1.31183783655, 1.2799234645, 1.28649344376, 1.32715373843, 1.390581662, 1.46526549808, 1.54327110388, 1.62059010963, 1.69596098116, 1.7696249915, 1.84250446606, 1.91577469588, 1.9906761414, 2.06844070703, 2.15025910033, 2.23725801233, 2.33048195717, 2.43088845693, 2.53937050254, 2.65681989889, 2.7842411319, 2.92291744476, 3.07461640215, 3.24180023677, 3.42778241369, 3.63675904156, 3.87365097514, 4.143710567, 4.45185696271, 4.80171232165, 5.19436559275, 5.62702490554, 6.09188716501, 6.57564435845, 7.05998364026, 7.52322988394, 7.94298096737, 8.2992650359, 8.57750069488, 8.77049439556, 8.87895149092, 8.91044906357, 8.87730673187, 8.79406327315, 8.67522782842, 8.53371011766, 8.38001797091, 8.22208255874, 8.0654801109, 7.91383551742, 7.7692608383, 7.63275253031 ], [ 0.698911239617, 0.685384628493, 0.672972021101, 0.661666749167, 0.651729129582, 0.643761220664, 0.638694110257, 0.637640356994, 0.641588292352, 0.650979138858, 0.665308010839, 0.682966768732, 0.701510665566, 0.7183632843, 0.731769250012, 0.741649420542, 0.749939845058, 0.760121267024, 0.776073362026, 0.800833414471, 0.835847524032, 0.880896453506, 0.934490713253, 0.994422410906, 1.05826074572, 1.12371060034, 1.18883220762, 1.25214647772, 1.31265328792, 1.36978640507, 1.42332353198, 1.47326319821, 1.51967176019, 1.56249457189, 1.60131750087, 1.63506265726, 1.66161469025, 1.67741952384, 1.677205365, 1.6541769028, 1.60131504478, 1.51459875352, 1.39846099366, 1.27142763925, 1.1654925024, 1.11249536491, 1.1243776056, 1.18784013498, 1.27837785628, 1.37586280781, 1.46964555021, 1.55633160273, 1.63626592677, 1.71119408393, 1.7831573269, 1.85410482228, 1.92581735181, 1.9999248604, 2.07792472289, 2.16117504764, 2.25087137995, 2.34803007635, 2.45350472268, 2.56805890753, 2.69251402908, 2.82798426672, 2.97619450848, 3.13984196014, 3.32291474994, 3.53085208281, 3.77045026951, 4.04946307235, 4.37583848263, 4.75647016571, 5.19536744557, 5.69140816429, 6.23622975572, 6.81303869558, 7.39701066488, 7.95759490264, 8.46255770541, 8.88305369761, 9.19850452889, 9.39987243797, 9.49031746107, 9.48315816331, 9.39803688037, 9.25667726007, 9.0794329878, 8.883215973, 8.68076978594, 8.48088779986, 8.2891026614, 8.10848602653, 7.94036222891, 7.78487128366 ], [ 0.700152686016, 0.681339281849, 0.662898066351, 0.645025587969, 0.628281036992, 0.613693261602, 0.602787673223, 0.597445686136, 0.599500090778, 0.610042854547, 0.628624444016, 0.652760729171, 0.678178464589, 0.699919845819, 0.714064735137, 0.719573280007, 0.719361635616, 0.719582445355, 0.727165907757, 0.747196978031, 0.781664159849, 0.829741253192, 0.888816222724, 0.955524465576, 1.02648142634, 1.09871371331, 1.16987500327, 1.23831883833, 1.30307461545, 1.36375901097, 1.42044693481, 1.47351666488, 1.52347087271, 1.57071930219, 1.61529089307, 1.65642544945, 1.69198611505, 1.71765979286, 1.72603411267, 1.70596677888, 1.64332636248, 1.52516254512, 1.34989160018, 1.14292554791, 0.964176721708, 0.880648423374, 0.912794123925, 1.02291700282, 1.15892361449, 1.28867238892, 1.40139218835, 1.49740358224, 1.5805793841, 1.65507068769, 1.72437908089, 1.79132827242, 1.85826367786, 1.92723045085, 2.00006085107, 2.07837591029, 2.16353848035, 2.25660566517, 2.35832449389, 2.46920372927, 2.58968882004, 2.72046945922, 2.86294128431, 3.01979195783, 3.19558265126, 3.39712109067, 3.63347906622, 3.91565677764, 4.25587447155, 4.66615669472, 5.15571041933, 5.72714091334, 6.37252610543, 7.07087562963, 7.78818583781, 8.48063182583, 9.10077236047, 9.60580988309, 9.96587822771, 10.1696575989, 10.2252243429, 10.1559735707, 9.99354452277, 9.77056988094, 9.51542450939, 9.24973082609, 8.98816738032, 8.739599256, 8.5086221633, 8.29696438046, 8.10454107572, 7.93017294773 ], [ 0.695754212266, 0.671553467369, 0.646952537722, 0.622247700904, 0.598187426976, 0.57615865488, 0.55833809906, 0.547674312981, 0.547462375096, 0.560278482436, 0.586392426482, 0.622436890339, 0.661361523535, 0.693997416727, 0.711913219471, 0.711333693667, 0.696617365711, 0.679505933407, 0.673167254017, 0.686100087133, 0.720354305175, 0.773304622423, 0.840185968339, 0.915856121088, 0.995681226747, 1.07590682256, 1.15378441418, 1.22756689984, 1.29641643792, 1.36025554314, 1.41959038417, 1.47532611995, 1.52857670728, 1.58044831529, 1.63174564079, 1.68251015751, 1.73124696771, 1.77365002291, 1.8006744449, 1.79615555945, 1.73528944997, 1.58775847091, 1.33317390341, 0.997341853556, 0.691277043579, 0.563883348028, 0.649436542372, 0.845125267733, 1.0475223145, 1.21522380795, 1.34561147195, 1.44770631695, 1.53084936498, 1.60208075244, 1.6663370217, 1.72718445007, 1.78743568138, 1.84952237722, 1.9156403132, 1.98772651386, 2.06734948901, 2.15559898563, 2.25304286067, 2.35978650021, 2.47565728226, 2.60056453987, 2.73511977715, 2.88154620311, 3.04469403136, 3.23275076058, 3.45736258676, 3.73341667065, 4.07881669205, 4.51347389716, 5.05575493424, 5.71590076871, 6.48862187905, 7.34810040513, 8.24735797175, 9.12255958181, 9.90233767548, 10.5213098322, 10.934634651, 11.1282178605, 11.119877897, 10.9510394315, 10.6732981136, 10.3358341432, 9.97762693991, 9.62510251632, 9.29357008943, 8.99024488653, 8.71723444383, 8.47375467446, 8.25750889258, 8.06546345994 ], [ 0.687755099654, 0.658154310766, 0.627279037648, 0.59538476881, 0.563226022091, 0.532355229411, 0.505506571509, 0.486932677907, 0.482266266506, 0.497149812219, 0.534234504109, 0.58987872672, 0.653194191266, 0.708060801177, 0.736828419531, 0.727764939194, 0.686588042906, 0.637974759568, 0.608823100754, 0.612646624152, 0.649035770523, 0.71071262648, 0.78912884817, 0.876753231503, 0.967567701703, 1.05706915423, 1.14220315205, 1.22125445139, 1.29367069862, 1.35983700561, 1.42084142572, 1.4782633395, 1.53399294548, 1.59006016258, 1.64841319034, 1.71052661332, 1.77661085157, 1.84401180747, 1.9041594862, 1.93743129131, 1.90652799943, 1.75350374126, 1.41611376775, 0.895429562691, 0.380112003129, 0.194657570252, 0.385961296704, 0.703413347947, 0.975870286532, 1.17216342583, 1.31001376955, 1.41043726699, 1.48816314699, 1.55234367169, 1.60866702713, 1.6609954152, 1.71238115146, 1.76558771517, 1.82323585894, 1.88768663559, 1.96079716697, 2.04369885844, 2.1367043133, 2.23936042301, 2.35061840006, 2.46917223985, 2.59418338622, 2.72662655495, 2.8710627079, 3.03692031721, 3.23847458346, 3.49450842012, 3.82962119794, 4.27562521291, 4.86724190003, 5.62978278539, 6.56475849427, 7.64095640556, 8.79313552117, 9.92746689059, 10.9345668125, 11.7113356156, 12.1875063334, 12.3455988224, 12.2228290226, 11.8936497826, 11.4433473199, 10.9459394518, 10.4533637215, 9.99515741463, 9.58391472328, 9.22192248498, 8.90635309374, 8.63235926498, 8.39453324608, 8.18746635305 ], [ 0.678064464792, 0.643219976134, 0.60611778945, 0.566807087546, 0.525783511101, 0.484378761144, 0.445439894228, 0.414341613181, 0.399880357563, 0.413355794684, 0.463418800796, 0.548118166652, 0.651799820684, 0.748660575119, 0.804542752594, 0.785206057338, 0.693103676139, 0.585753460633, 0.52188254088, 0.518731007303, 0.564685305795, 0.64226661358, 0.737590390637, 0.840830972883, 0.944919876514, 1.04485018435, 1.13745702067, 1.22125624444, 1.29618693858, 1.36328805238, 1.42438819089, 1.48186618216, 1.5385016096, 1.59739994772, 1.66194267578, 1.73565495148, 1.82174876966, 1.92177837074, 2.03215598009, 2.13617574806, 2.18898962599, 2.09947814926, 1.73702377388, 1.03603103383, 0.265130419595, 0.00874508689224, 0.299546829172, 0.692155799556, 0.983682291916, 1.17368856937, 1.29869048366, 1.38608886771, 1.45188727307, 1.50494219719, 1.55037182948, 1.59164475119, 1.63175654896, 1.67377868311, 1.72091373382, 1.776169943, 1.84185424122, 1.91915879256, 2.00803732127, 2.10733042726, 2.21492681416, 2.32790849986, 2.44312434379, 2.55900253841, 2.67873033053, 2.81276686675, 2.97778619728, 3.19455042506, 3.49308097976, 3.9229474104, 4.54938453179, 5.42696444208, 6.57044421032, 7.94182737232, 9.45076340326, 10.9600627909, 12.3001795833, 13.3028660075, 13.8517223231, 13.9247189883, 13.598367536, 13.0093094922, 12.3003718711, 11.5817568151, 10.9184714018, 10.3372141752, 9.84070438454, 9.42065610513, 9.06585636888, 8.76566714982, 8.5108166551, 8.29318241315 ], [ 0.668456079739, 0.628780577359, 0.585832736487, 0.539315632501, 0.489187274298, 0.436024397464, 0.381875893301, 0.332101069688, 0.298446670055, 0.301043058102, 0.361355905111, 0.482976584929, 0.642987693573, 0.805043490729, 0.915898213884, 0.890594999167, 0.70399047038, 0.493994421664, 0.389663327378, 0.39580898875, 0.467865031049, 0.571883627875, 0.690182713637, 0.81261259525, 0.931951241729, 1.04300949715, 1.14271852284, 1.23006681438, 1.30574721053, 1.37168216163, 1.43060040379, 1.48576018874, 1.54084568001, 1.60002726622, 1.66816480958, 1.75112038939, 1.85607904996, 1.99149505696, 2.16531127078, 2.37722886327, 2.5947622781, 2.70288002878, 2.47372921988, 1.73831484727, 0.819372521696, 0.430897543652, 0.597763517866, 0.875214892753, 1.08243851494, 1.21747679211, 1.30717688937, 1.37087482738, 1.41927290444, 1.45792439301, 1.4899405052, 1.51770264091, 1.54389454397, 1.57198114775, 1.60609683778, 1.65034446046, 1.70777836139, 1.77963479269, 1.86526884942, 1.96264100161, 2.06862961011, 2.17868564903, 2.28653145284, 2.38600746434, 2.47679398959, 2.57036612838, 2.68595924574, 2.83962058699, 3.05762042537, 3.41652854313, 4.04327367061, 5.0480676634, 6.46386310102, 8.2398641878, 10.2541385524, 12.3132518691, 14.1552013291, 15.4951533942, 16.1259871652, 16.0175252341, 15.3282012224, 14.3152675927, 13.2200658025, 12.2018449802, 11.3313850997, 10.6176005924, 10.0396730175, 9.56999925712, 9.18489817688, 8.86668377132, 8.60210193748, 8.38040772351 ], [ 0.660521915487, 0.6167400358, 0.568796669543, 0.516016336732, 0.457692052611, 0.393256967111, 0.322955419763, 0.250045236578, 0.186643268878, 0.163151957394, 0.223754876832, 0.38181347839, 0.595298909187, 0.813267556083, 0.976135135066, 0.949038034921, 0.645500501257, 0.314864418919, 0.196954319745, 0.251670129049, 0.371576492732, 0.510261014803, 0.655112591222, 0.798890159434, 0.934576244217, 1.05664553005, 1.16217732296, 1.25090837022, 1.32463118437, 1.38643703451, 1.4401136635, 1.4898156608, 1.54001428951, 1.59570378179, 1.6628691105, 1.7492899544, 1.86586278745, 2.02872997136, 2.26225880055, 2.60016620724, 3.06690702942, 3.57279661698, 3.70032096387, 3.01029671017, 1.9630129893, 1.31790574298, 1.1441359835, 1.16597304881, 1.22479059408, 1.27833513091, 1.32186637431, 1.35726931783, 1.38606664396, 1.40880850817, 1.42575401146, 1.43774201184, 1.44699840181, 1.45762789006, 1.47537644726, 1.50632942421, 1.55485968385, 1.62207405515, 1.70602677007, 1.80338538881, 1.91052918773, 2.02236333309, 2.12961487059, 2.21886941222, 2.2817772315, 2.3308254988, 2.39132102077, 2.45803717717, 2.52135206532, 2.7035091766, 3.26861623428, 4.42422070147, 6.20502861652, 8.52838183922, 11.2448536673, 14.1082132308, 16.7250114934, 18.5955157351, 19.3186143607, 18.8429677237, 17.5042694638, 15.7998324569, 14.1363267941, 12.728408525, 11.6267281419, 10.7906240026, 10.1522699308, 9.65301233706, 9.25351427213, 8.92966015623, 8.66549127522, 8.44840763074 ], [ 0.655589256377, 0.608720050378, 0.557109539362, 0.499837691511, 0.435728200297, 0.363287402255, 0.280936734843, 0.188738249805, 0.0956885432131, 0.0389802441299, 0.0903381230992, 0.269552752598, 0.496737595929, 0.702830136198, 0.831571750615, 0.77328131832, 0.462807344156, 0.117947037733, 0.0239336677667, 0.144502508391, 0.307393236111, 0.473812900672, 0.643080617423, 0.808469548555, 0.960601571985, 1.09247815363, 1.20125311127, 1.28784304012, 1.35565857788, 1.40933746512, 1.45388564322, 1.49429569468, 1.53556594285, 1.58303774417, 1.64304399344, 1.72400394323, 1.83836792417, 2.00641288965, 2.26431700292, 2.68170107304, 3.38908556339, 4.49288198875, 5.24813583604, 4.27593060595, 2.84525264426, 1.96949428388, 1.55948202068, 1.39394924855, 1.33576970111, 1.32194165385, 1.32620954794, 1.33696018656, 1.34803531722, 1.35548167565, 1.35672751793, 1.35087091878, 1.33954677415, 1.32784007052, 1.32428087409, 1.33872281987, 1.37809698882, 1.44282517973, 1.52767232331, 1.62668524445, 1.73684505663, 1.85580588144, 1.97439843773, 2.07060132431, 2.11956689692, 2.13078422758, 2.14793161893, 2.11483951315, 1.90146472088, 1.72475264195, 2.16085384514, 3.54008980116, 5.80974284547, 8.82552876892, 12.4551392366, 16.4557513502, 20.2797624713, 23.0326397843, 23.8725850638, 22.6808081135, 20.1896249192, 17.3775529192, 14.9095525349, 13.0320599347, 11.7125352948, 10.8023154838, 10.150850544, 9.65628233554, 9.2650549589, 8.9514830255, 8.70038151748, 8.49872886038 ], [ 0.654632008943, 0.605880352187, 0.552236889513, 0.492799244673, 0.426412196872, 0.351578135362, 0.266559875453, 0.170719552936, 0.0714092288762, 0.00592789962876, 0.0513639513333, 0.212917791639, 0.394490493447, 0.540284224469, 0.607908479757, 0.542173989943, 0.339946647814, 0.120877953118, 0.051180460362, 0.148867152887, 0.297268425337, 0.473018813495, 0.664082475409, 0.851951596086, 1.02026835551, 1.15937987422, 1.26690873671, 1.34588126562, 1.4021758222, 1.44248507483, 1.47317569903, 1.49992399383, 1.52786442197, 1.56204822119, 1.60813742248, 1.67341470557, 1.76842304461, 1.91007316597, 2.12862724465, 2.48662546973, 3.13889395012, 4.46374656109, 5.8669748553, 4.35302774017, 2.84693092282, 2.07080027099, 1.67050079003, 1.46772264488, 1.36952561532, 1.32556615141, 1.30883905997, 1.3042864353, 1.3025716342, 1.29710960741, 1.28303744539, 1.25751226619, 1.22112075929, 1.18000947237, 1.14721367932, 1.13995971334, 1.1708091477, 1.23829313678, 1.32871321263, 1.4296623672, 1.5403278129, 1.66759929938, 1.810643645, 1.94375851289, 2.01739212955, 2.01900698087, 2.02154897653, 1.90067567314, 1.28837085045, 0.583546345076, 0.913645034754, 2.63542665335, 5.45742751134, 9.19394284198, 13.8407396186, 19.2997697396, 24.9301371464, 29.1819644492, 30.2246363218, 27.7208281913, 23.2829969618, 18.8088211093, 15.2969414628, 12.9308622201, 11.4822924075, 10.6052739814, 10.019919709, 9.57607104301, 9.21887348, 8.93287910674, 8.7093410427, 8.53616257786 ], [ 0.658220210397, 0.608806897529, 0.554763933182, 0.495453324849, 0.430212743483, 0.358482437517, 0.28027900491, 0.197879629324, 0.121306944839, 0.0802929736971, 0.116344588776, 0.21087484374, 0.313255205446, 0.406690864883, 0.454125780433, 0.414014230131, 0.293763575099, 0.166721649725, 0.111304106601, 0.162461714131, 0.30537866778, 0.505146522006, 0.728327695579, 0.943710179834, 1.12785614966, 1.26933921558, 1.36804345722, 1.43100079802, 1.46789883607, 1.48810330335, 1.49938581137, 1.50779559124, 1.51808789724, 1.53434249673, 1.56061038634, 1.60154478726, 1.66299001843, 1.752340338, 1.87775279349, 2.04236116589, 2.2178270203, 2.25003357333, 2.02379830113, 2.18393929652, 2.01723532144, 1.7387335724, 1.53005227066, 1.39964199327, 1.325143699, 1.28603026256, 1.26724338695, 1.25789079875, 1.24947136013, 1.23463027327, 1.20672374217, 1.16045255494, 1.09408036403, 1.01375102352, 0.93864870186, 0.900180498921, 0.924579538259, 1.00678540929, 1.11212571941, 1.21245900912, 1.31165335806, 1.43613619739, 1.60531318891, 1.80135494045, 1.95415009684, 1.99970692296, 1.99927883563, 1.83806072244, 1.05221534351, 0.102679277712, 0.42747893776, 2.36420317714, 5.49238073777, 9.68258350697, 15.140111391, 22.0684564989, 29.9548966954, 36.4637375282, 37.9198879166, 33.3933537985, 26.1755332916, 19.6186815944, 14.9884647425, 12.2493241387, 10.8661460758, 10.1940285515, 9.77416354598, 9.42449647961, 9.1215442946, 8.87868312416, 8.69881049581, 8.57001339857 ], [ 0.666539116827, 0.617539578616, 0.564440240984, 0.506957374084, 0.44504087569, 0.379194392431, 0.311182790022, 0.245500775943, 0.191654342597, 0.163452763616, 0.163176580458, 0.174824193115, 0.215098914736, 0.29594015882, 0.362531188622, 0.355959203537, 0.264265868051, 0.115744438953, 0.00756039497288, 0.0984085787236, 0.317787787206, 0.582220788094, 0.856988481506, 1.10700338111, 1.30435418696, 1.43860145461, 1.51564123841, 1.54979228983, 1.55641521074, 1.54808168393, 1.53369785296, 1.51908255478, 1.50794059049, 1.50273706313, 1.5052996928, 1.51705459562, 1.53864563143, 1.56809845249, 1.59486064219, 1.58130585171, 1.40738880806, 0.775889496913, 0.00504509227403, 0.74179796658, 1.19709108317, 1.27943396673, 1.27429957311, 1.2506312055, 1.22876197011, 1.21423487995, 1.20601598067, 1.20003985816, 1.19057351177, 1.17057361167, 1.13186999275, 1.06593398064, 0.966483624965, 0.836221121773, 0.699495466266, 0.611876303157, 0.63268387939, 0.753449623921, 0.890895244996, 0.982761988549, 1.0439310728, 1.13702371094, 1.31226442305, 1.56340984405, 1.8126854983, 1.95129200984, 1.984605201, 1.89594912703, 1.4631394669, 0.955048589513, 1.35043039224, 3.09544640949, 6.03022261361, 10.1532446891, 15.8071156431, 23.459590495, 32.9048169018, 41.4006273353, 43.3651218828, 36.9788998583, 27.3716706268, 19.2273010776, 13.8566554928, 11.0235539179, 9.95774435474, 9.66458137661, 9.47466326926, 9.22866966664, 8.98369336277, 8.79660581323, 8.67989054353, 8.61613068393 ], [ 0.679473998887, 0.631731533558, 0.580502829241, 0.525774509112, 0.467865511093, 0.407703105564, 0.347218303809, 0.289596043054, 0.238074466914, 0.190262529651, 0.132598532381, 0.0738056655197, 0.0875377885818, 0.195541649809, 0.307435076281, 0.344304848811, 0.286915791069, 0.159963106038, 0.0699557210265, 0.166919991938, 0.426449367744, 0.755482128082, 1.09101620513, 1.37820861596, 1.57927158985, 1.68762835428, 1.72166136502, 1.70807678459, 1.66999516162, 1.62310837758, 1.57646484568, 1.53454970178, 1.49912726454, 1.47045423407, 1.4478771203, 1.42984721928, 1.41320228567, 1.3911556662, 1.34868603089, 1.25355749938, 1.04832741346, 0.70112899241, 0.44320072123, 0.498963432398, 0.677269271375, 0.884860024108, 1.01717446932, 1.08248509384, 1.11192218268, 1.12565487236, 1.13264314758, 1.13460238304, 1.1285845804, 1.10816496789, 1.06389114615, 0.983736480034, 0.855056896738, 0.672081386142, 0.457229397445, 0.29557029864, 0.312230552689, 0.504516532892, 0.693664948317, 0.758182212528, 0.738140275974, 0.761464261419, 0.919048525617, 1.1941583814, 1.51779736262, 1.78535232986, 1.95523759421, 2.04912562599, 2.0486029494, 2.11161779135, 2.69975115697, 4.17953444976, 6.65653018507, 10.2617116918, 15.3350004509, 22.3136518742, 31.0338239459, 38.9677602053, 40.791488538, 34.64669658, 25.4136632005, 17.5722136283, 12.4005633332, 9.8243921558, 9.17772126112, 9.2444003789, 9.20797577463, 9.01063712115, 8.81080428924, 8.69532171182, 8.67018412494, 8.70055154359 ], [ 0.696723036728, 0.650853524776, 0.602069456371, 0.550473537064, 0.496424583459, 0.440614331826, 0.383971722723, 0.326920693064, 0.267057122692, 0.195462265265, 0.101869464236, 0.0137990121553, 0.0205283219995, 0.146032627894, 0.290779483655, 0.370772355802, 0.369679047706, 0.318733743227, 0.300756452817, 0.418245941652, 0.696577472392, 1.08032770829, 1.48062636794, 1.80227174504, 1.98644891028, 2.03623806354, 1.99441396403, 1.90736520761, 1.8072805637, 1.71129767603, 1.62639684662, 1.55398163807, 1.4927686402, 1.44026259667, 1.3932967378, 1.3479459957, 1.29893063156, 1.23851935199, 1.15507271121, 1.03231815347, 0.853395731739, 0.613274931878, 0.302077479717, 0.0591023740476, 0.298433320667, 0.616787890771, 0.821292492958, 0.935814917153, 0.998066449843, 1.03293386545, 1.05362103227, 1.06493694968, 1.06567272347, 1.04991382827, 1.00752749413, 0.924241370742, 0.782562909344, 0.568061730087, 0.294496356532, 0.0637429430724, 0.0722411383513, 0.335438906692, 0.561429623656, 0.56572325062, 0.416978320875, 0.343452095201, 0.499503608801, 0.764786353325, 1.12917894931, 1.53275653129, 1.88145071215, 2.1756282765, 2.46278163076, 2.86136279968, 3.59308105566, 4.88275425748, 6.88757070252, 9.7677424276, 13.7513805101, 19.0231216395, 25.217924822, 30.4550072161, 31.5368914431, 27.4909983817, 21.1468509196, 15.4193528892, 11.4535442033, 9.45348029543, 9.02088704235, 9.09149912981, 8.97972106395, 8.74921824079, 8.5937575767, 8.5846905947, 8.69800915489, 8.86590707316 ], [ 0.717893234182, 0.674345622223, 0.628381493793, 0.58010851434, 0.529752269969, 0.477573076811, 0.42353735559, 0.366488237468, 0.302794684979, 0.226378487214, 0.137492597568, 0.0669040448854, 0.0776368495599, 0.18643974372, 0.326456042688, 0.431814808414, 0.487360758414, 0.520205520801, 0.590271088192, 0.770813703206, 1.10465778996, 1.56683995482, 2.05079928146, 2.40590133449, 2.54190409471, 2.48637829219, 2.3269526167, 2.13812497454, 1.95982501827, 1.80654614528, 1.67977535395, 1.57572061618, 1.48897539616, 1.413910762, 1.34495645878, 1.27635599509, 1.20170537647, 1.11358749564, 1.00391312491, 0.866002434055, 0.698208248006, 0.500171314641, 0.254956171117, 0.0864219550076, 0.257366651695, 0.516252615806, 0.705679516793, 0.825112022175, 0.897353248071, 0.942196848734, 0.972148572119, 0.992473783187, 1.00239853878, 0.996255468662, 0.964123579329, 0.892080908139, 0.763200363553, 0.563632358039, 0.306695297707, 0.0899772609116, 0.0993721651335, 0.340804467534, 0.521289784924, 0.451420608519, 0.189278688141, 0.0257930581651, 0.214024564016, 0.362164635581, 0.744514901425, 1.27068596091, 1.76716954634, 2.20937183574, 2.65078809543, 3.18322638212, 3.93113571883, 5.02663157466, 6.58932830523, 8.73419411882, 11.5614031307, 15.0501807163, 18.7863257109, 21.6551548477, 22.2222048862, 20.1517803702, 16.6921287661, 13.3302066534, 10.8748161984, 9.55921681703, 9.12036818687, 8.91782707498, 8.62579611409, 8.37133894737, 8.31158112709, 8.47936766287, 8.80914024763, 9.18212443458 ], [ 0.742554852239, 0.701674813442, 0.658833961268, 0.614117824265, 0.567634659065, 0.519394682978, 0.469042811238, 0.415458218301, 0.356659923923, 0.291654054426, 0.227111141453, 0.186948318985, 0.205491938382, 0.291101590232, 0.410314700654, 0.524683238188, 0.623639353491, 0.727879939167, 0.883048961643, 1.14847712108, 1.57207908035, 2.14337852715, 2.73517189995, 3.12707004058, 3.18708460566, 2.98601516121, 2.67832171302, 2.37159352976, 2.10905069305, 1.8975894771, 1.73021973884, 1.59659408997, 1.48675267426, 1.39198669408, 1.30464072864, 1.21758375941, 1.12367211171, 1.01549414966, 0.88593295569, 0.730677763235, 0.55501621018, 0.387664573949, 0.283259157959, 0.26857995098, 0.356890592981, 0.506096272181, 0.643260602336, 0.742115648283, 0.807585181916, 0.85267811795, 0.887527757064, 0.916263390561, 0.937390912338, 0.945078347798, 0.930241750291, 0.881474719721, 0.787057373241, 0.641652459343, 0.464958794981, 0.330876965037, 0.342822210753, 0.480257805071, 0.562378786209, 0.464960127931, 0.235897059212, 0.107562213121, 0.0924941492279, 0.0614861758669, 0.50808885705, 1.10866268227, 1.67353422578, 2.17795114678, 2.66421301626, 3.19765981884, 3.85570013504, 4.72185846408, 5.87846399978, 7.39311661213, 9.2853673639, 11.4585110753, 13.5987478346, 15.1398889411, 15.5115997492, 14.6225907119, 12.9827215058, 11.2688726273, 9.93339714591, 9.11718073254, 8.66791719749, 8.31187120908, 7.97783764821, 7.8088221508, 7.94138150133, 8.39820249445, 9.07409666803, 9.76491586624 ], [ 0.770258279095, 0.732322632727, 0.69288190883, 0.652030102331, 0.609862529692, 0.566401926658, 0.521500563816, 0.474845480372, 0.426471985386, 0.378560779305, 0.338891487568, 0.323150343137, 0.348805497155, 0.420196855578, 0.523257499456, 0.640491256324, 0.768613194187, 0.925096506091, 1.14708869341, 1.48552055493, 1.98706883982, 2.64539114221, 3.3197823668, 3.73797467341, 3.7291141125, 3.39970845507, 2.96445045591, 2.55909153317, 2.22772470015, 1.96946166932, 1.7696692558, 1.61247788866, 1.48430019589, 1.37412134035, 1.27285544062, 1.17253983673, 1.06560871902, 0.944355569766, 0.800746624542, 0.627121775869, 0.42041613021, 0.203260527059, 0.0894800982378, 0.191870064085, 0.352703557909, 0.489196889711, 0.595358466346, 0.669122535208, 0.71921341778, 0.758518454595, 0.795886662223, 0.833462613528, 0.867921055355, 0.892616005604, 0.899264591854, 0.879403714611, 0.826821501825, 0.742982951797, 0.646821976227, 0.580865783862, 0.585304362755, 0.637958548577, 0.654297067001, 0.576258199003, 0.437058619332, 0.32922871664, 0.211194243795, 0.213175332753, 0.588128922639, 1.12283492368, 1.64855468883, 2.12448117219, 2.56571733301, 3.00785363896, 3.50114419695, 4.11286167624, 4.91639093061, 5.95685140709, 7.21361105313, 8.57981090602, 9.85222614352, 10.7560774434, 11.0639129741, 10.7571377135, 10.0507120508, 9.24175159857, 8.54715910933, 8.03556345158, 7.64657563845, 7.30208353996, 7.04188464423, 7.02893834304, 7.4394538845, 8.34259230569, 9.59401998744, 10.8121192419 ], [ 0.800533165012, 0.765752994796, 0.729943639856, 0.693250763768, 0.655850002978, 0.617937705115, 0.579765805351, 0.541836078532, 0.505468050625, 0.473933401036, 0.453809809297, 0.454905688528, 0.486598383229, 0.552032943014, 0.646803588962, 0.765493635944, 0.910618825078, 1.0979687182, 1.35756460166, 1.72987431455, 2.25040235202, 2.90602650389, 3.56181782125, 3.95999564185, 3.92961537634, 3.56789512222, 3.09333440512, 2.65107768632, 2.28970103569, 2.00833205615, 1.79076158622, 1.61947408672, 1.47962262964, 1.35936609983, 1.24917755035, 1.14099033021, 1.02741214143, 0.901025038125, 0.753741919671, 0.576499117816, 0.362288536177, 0.130757059544, 0.00802466047829, 0.130221716785, 0.326783749635, 0.464496231059, 0.545781299789, 0.590863554219, 0.620326399507, 0.651293645649, 0.691832439109, 0.740692023838, 0.791272241949, 0.835310514058, 0.864877005554, 0.873685256519, 0.858906928156, 0.824139743761, 0.782550716035, 0.754914340641, 0.754927251187, 0.769702929143, 0.764644581115, 0.716734104299, 0.639564688788, 0.566743345021, 0.521821608777, 0.591204200406, 0.861106729015, 1.25796607296, 1.67542592, 2.05939840319, 2.39253969213, 2.67845474119, 2.9514342466, 3.29470310277, 3.81390179972, 4.55009874229, 5.43958378917, 6.36902928815, 7.2148912252, 7.8391756433, 8.12938936071, 8.07579118195, 7.78363380127, 7.40252491645, 7.04212118139, 6.72876515772, 6.42824084161, 6.12328600216, 5.89692855544, 5.97220286582, 6.67066909329, 8.23438897047, 10.5034152378, 12.6788524059 ], [ 0.832888424982, 0.801396506338, 0.769363949357, 0.737014620059, 0.704645386509, 0.672661191366, 0.64166854258, 0.612692305491, 0.587585068893, 0.569595684171, 0.563755231299, 0.576362192244, 0.613109493175, 0.676913536684, 0.767870741319, 0.886417056048, 1.0378338629, 1.23548885127, 1.5013828761, 1.86223397073, 2.33566293083, 2.89734330361, 3.43565983084, 3.76151816489, 3.7470993838, 3.45054609159, 3.03542076468, 2.62874903887, 2.28376440461, 2.00762785212, 1.78961910169, 1.61523814172, 1.47121214757, 1.34659168446, 1.23250530897, 1.12157468328, 1.00732587771, 0.883704203109, 0.744837202919, 0.585800628684, 0.407876255609, 0.238596064275, 0.160260969238, 0.231479288585, 0.360189042274, 0.450032141987, 0.488004921583, 0.495089002348, 0.49945219939, 0.522957653884, 0.571214928862, 0.636373998579, 0.706668155376, 0.771747264254, 0.823821369577, 0.858000161822, 0.873065067719, 0.872472841167, 0.86447884242, 0.859307663425, 0.862429249977, 0.868687989049, 0.865662416985, 0.845923433765, 0.816472624125, 0.796544135116, 0.814324885146, 0.91203314502, 1.11605228011, 1.39789594487, 1.70032120145, 1.97096128781, 2.16597896041, 2.25422981037, 2.25645512821, 2.31113078379, 2.62592641147, 3.2364815104, 3.96512694867, 4.67651806805, 5.33946838317, 5.88847133085, 6.20982394659, 6.25672073489, 6.09553322425, 5.85837911667, 5.65386170742, 5.48342534635, 5.26691530814, 4.94987951229, 4.59673346577, 4.50270999416, 5.31834768525, 7.794156846, 11.9349357376, 15.9744991244 ], [ 0.866821540191, 0.838660691386, 0.810436313549, 0.782453145215, 0.755122835805, 0.729016546673, 0.704963495111, 0.684219779248, 0.668709305561, 0.661262577297, 0.665653060522, 0.686174903109, 0.726756979791, 0.790192574521, 0.878394095082, 0.993991703768, 1.14250842358, 1.33382394902, 1.58167350068, 1.89944744828, 2.28918967794, 2.72136803847, 3.11494685275, 3.3529605184, 3.35760903342, 3.15524119733, 2.8439424448, 2.51541603936, 2.21936854645, 1.97086118384, 1.76727490972, 1.59974559735, 1.45851035982, 1.33481279791, 1.22130193064, 1.11189845371, 1.0015637788, 0.886207458991, 0.763036198716, 0.632100207704, 0.500730043932, 0.391620401658, 0.341642253424, 0.362718717798, 0.409566950322, 0.430565690029, 0.412501527588, 0.37385153195, 0.350073070536, 0.370999119157, 0.435933040331, 0.524142588024, 0.617315643803, 0.703899386722, 0.776699551094, 0.831860857521, 0.86895592647, 0.891003008317, 0.903633235698, 0.912944781795, 0.922521948377, 0.931728891606, 0.937565864997, 0.9394117924, 0.942936624894, 0.960630714608, 1.01031857268, 1.11098339126, 1.27046188588, 1.47386300349, 1.68584396022, 1.85615738796, 1.9188734894, 1.80122154987, 1.49249434205, 1.21667038125, 1.41301783919, 2.09139133925, 2.77619121165, 3.33032243536, 3.93853468471, 4.59234773069, 5.05475135586, 5.16015514394, 4.93440304638, 4.59935811995, 4.42081557172, 4.38861746443, 4.27681249948, 3.91413061141, 3.26691287856, 2.5642172996, 2.98722548063, 6.48484626507, 13.6637110402, 21.0671714216 ], [ 0.901836133002, 0.876957442913, 0.852453832451, 0.82869573132, 0.806177165552, 0.785567290566, 0.767789798429, 0.754133249408, 0.746374752816, 0.746860338536, 0.758447497435, 0.784237779918, 0.827171464641, 0.889768345672, 0.974353017371, 1.08382159038, 1.222546266, 1.39669425444, 1.61308497452, 1.87549873208, 2.1773288747, 2.49135748197, 2.7639551842, 2.928531062, 2.94220511086, 2.8153743221, 2.60044931676, 2.35528868945, 2.11891674357, 1.90893908347, 1.72880800081, 1.57509612984, 1.44197664513, 1.32339238258, 1.21391841573, 1.10903468419, 1.00522453306, 0.900163521337, 0.793251948165, 0.686800973036, 0.587920851148, 0.509296077895, 0.463008797479, 0.445124081002, 0.430261839724, 0.39169809429, 0.321725445075, 0.236527719396, 0.181575118762, 0.2082782033, 0.301155966712, 0.416080549757, 0.531321355173, 0.637064037965, 0.727172113902, 0.798355421555, 0.850506070602, 0.886438354382, 0.910821411117, 0.928552320523, 0.943193271452, 0.956386887796, 0.968845223804, 0.982431798612, 1.00195631237, 1.03558549515, 1.09364342086, 1.18545549241, 1.31389373828, 1.46939833056, 1.62511147628, 1.73115385884, 1.70691281632, 1.44368764198, 0.880106947873, 0.289753884421, 0.433173060306, 1.28992687874, 1.85345855941, 2.10720940519, 2.72723883336, 3.74516596589, 4.59635878414, 4.85169516088, 4.32031336003, 3.46187622539, 3.19958458221, 3.41718380024, 3.49967796728, 3.14879383521, 2.29303186038, 0.895319983662, 0.466636358838, 4.54249454618, 13.7692322189, 24.1692319262 ], [ 0.937462419935, 0.915734393579, 0.894760466548, 0.874953144804, 0.856849460825, 0.841152720598, 0.828787696786, 0.820964518101, 0.819233900687, 0.82550050959, 0.841955856511, 0.870919771425, 0.914648814003, 0.975240589846, 1.05474983646, 1.15548707803, 1.28025518325, 1.43210589013, 1.61311462535, 1.8217066009, 2.0484861816, 2.2719790305, 2.45839827391, 2.57068847394, 2.58581432037, 2.50767909548, 2.36331607254, 2.18679096724, 2.00533039831, 1.83468635671, 1.68101844765, 1.54459126506, 1.42281282289, 1.31211337048, 1.20894061199, 1.11025385848, 1.01381004664, 0.918439431279, 0.824432587463, 0.734022305024, 0.651541830128, 0.582041797016, 0.526976524573, 0.478923746217, 0.422529985059, 0.344356606072, 0.242061234326, 0.125628235508, 0.0380151783344, 0.0785724577277, 0.199341047663, 0.330515597567, 0.45918097916, 0.577998742373, 0.680235444551, 0.761868993581, 0.82247301048, 0.864785571132, 0.893460837497, 0.913520292117, 0.929039779975, 0.942603770045, 0.955819040797, 0.970623347009, 0.990618914018, 1.02171058716, 1.0717171648, 1.14857791323, 1.25644985165, 1.38955243915, 1.52480109913, 1.61415630421, 1.57769618686, 1.30855905973, 0.746503931514, 0.153086147863, 0.278429412282, 1.02232361357, 1.12134050924, 0.795745024652, 1.47835370355, 3.1917477593, 4.8203588717, 5.66030477513, 4.47731021581, 1.92355987776, 1.75283107274, 2.56385212303, 2.94583015262, 2.68820722075, 1.94731921544, 1.02257593697, 0.928063139629, 3.70594366495, 10.4013108669, 18.5914121236 ], [ 0.973275264755, 0.954500509824, 0.936787466515, 0.920566194305, 0.90638142754, 0.894922466634, 0.887057440071, 0.883865924639, 0.886657654551, 0.896960151747, 0.916461380871, 0.946911695566, 0.990019070115, 1.04739083654, 1.12055213213, 1.21099431737, 1.32010442364, 1.44875036196, 1.59629197342, 1.75891616011, 1.92758590728, 2.08667581669, 2.21522902421, 2.29239764706, 2.3056278009, 2.25636019862, 2.15867738082, 2.03220597888, 1.89477496426, 1.75863763319, 1.63023401693, 1.51168746649, 1.40254663387, 1.30113518121, 1.2054274007, 1.11357597306, 1.02424206444, 0.936833810332, 0.851681086494, 0.77004143667, 0.693627574667, 0.623230109083, 0.556537004642, 0.486843405708, 0.405387438118, 0.307502260728, 0.198270910735, 0.092790192447, 0.0174955356068, 0.0534579889319, 0.155247703327, 0.277717920157, 0.407558093382, 0.531966683406, 0.640343856637, 0.726430948919, 0.788838239584, 0.830252012842, 0.855946045538, 0.871974655885, 0.883364709262, 0.892908506714, 0.901310825, 0.90876378255, 0.916997992737, 0.93089612861, 0.959501981352, 1.01542368076, 1.10960232857, 1.24104750287, 1.38789844391, 1.50444387169, 1.52336503409, 1.37242172942, 1.04302952843, 0.740269374562, 0.835306421843, 1.11475543125, 0.732426800817, 0.020337946505, 0.731009790089, 2.91194804358, 5.14524838038, 6.82488425059, 5.30223953475, 0.230113869868, 0.76231670118, 2.10137117012, 2.63732439389, 2.43288239632, 1.73853950259, 0.739802602449, 0.436127325818, 2.63764227364, 6.57337318182, 11.1379030547 ], [ 1.00890673675, 0.99284178546, 0.978071692064, 0.965022948872, 0.954221075227, 0.946309828515, 0.94206991221, 0.942432183875, 0.948477730687, 0.961416447236, 0.982539654965, 1.01315197651, 1.05449897982, 1.10770936747, 1.17375230511, 1.25337096721, 1.34690858092, 1.45392091126, 1.5725006673, 1.69836097126, 1.82397141907, 1.93837658704, 2.02850298502, 2.082289521, 2.09265865825, 2.0601145144, 1.99221370791, 1.90032660381, 1.79582725175, 1.68757740703, 1.58115769719, 1.47928335138, 1.38266928709, 1.29087674379, 1.20296460686, 1.1179353081, 1.03502121489, 0.953848188833, 0.874466531286, 0.797171563958, 0.721988941345, 0.647798484327, 0.571489886947, 0.488180199215, 0.393577236463, 0.28813525012, 0.180300754315, 0.0849883659292, 0.0218094620587, 0.0513592771986, 0.137209569252, 0.249313618252, 0.376123259471, 0.501215470103, 0.610331253191, 0.694833912276, 0.752175952552, 0.785057454256, 0.800026807595, 0.805412415635, 0.808289252973, 0.811430349895, 0.812772647877, 0.808503873375, 0.797209765876, 0.782667375111, 0.77668970729, 0.801865847489, 0.883989293576, 1.02949187843, 1.21266951124, 1.38521500741, 1.49119855119, 1.48772987257, 1.38743134693, 1.30051945319, 1.34133050172, 1.35974737132, 1.03972880097, 0.685889879341, 1.30877502793, 2.95213172678, 4.63425781195, 5.56845125184, 4.36632821794, 1.79126969572, 1.57687356896, 2.26393385822, 2.56603487324, 2.33334288139, 1.70724322149, 0.831784885284, 0.606393586167, 2.03319036891, 4.17954068628, 6.68801023317 ], [ 1.04405236764, 1.03042707945, 1.01825883904, 1.00795453802, 1.00000237363, 0.994982629573, 0.993575712258, 0.996563836576, 1.00482183908, 1.0192930521, 1.0409488645, 1.07073513187, 1.10951221388, 1.15799338241, 1.21667506869, 1.28573386459, 1.36484905255, 1.45291103428, 1.54761204902, 1.64499887412, 1.73919350562, 1.82260459478, 1.88693009271, 1.92494015399, 1.93246952892, 1.90965042643, 1.86067915346, 1.79226518026, 1.71163366669, 1.62497153644, 1.5366984283, 1.44944471693, 1.3644175124, 1.28187666702, 1.20156408445, 1.1230284174, 1.04583641864, 0.969670661202, 0.894298256268, 0.81937860659, 0.744098529849, 0.666738105433, 0.584505691365, 0.494199329001, 0.394090326092, 0.286551213319, 0.179573806381, 0.0849619522687, 0.0224734454332, 0.04728424715, 0.125548604237, 0.23608274266, 0.362564013168, 0.486232020217, 0.591511890924, 0.66851911782, 0.713697734533, 0.729689818855, 0.724980251978, 0.712307271039, 0.703611194425, 0.702243833114, 0.700208004491, 0.685863872426, 0.653372453212, 0.604779182141, 0.552303249687, 0.5314887276, 0.598187557013, 0.770641998275, 1.00672881822, 1.2469664618, 1.44068893196, 1.55847297949, 1.6085898393, 1.63878769015, 1.68373571181, 1.69383948498, 1.61699137411, 1.6432019118, 2.13333273415, 3.06262563625, 3.95276993857, 4.29721634735, 3.77910260212, 2.88819553744, 2.54344210197, 2.62520501161, 2.62230769353, 2.33809768954, 1.82995610923, 1.27074380566, 0.908434274534, 1.40207058369, 2.73482074092, 4.33466694634 ], [ 1.07847182618, 1.0670062123, 1.05709649519, 1.04911910544, 1.04351434022, 1.04079098718, 1.04152741339, 1.04636666305, 1.05600289459, 1.07115707709, 1.09254141423, 1.12081390993, 1.15652533234, 1.20005869261, 1.25155550746, 1.31081574813, 1.37715517635, 1.44921255011, 1.52472684978, 1.60035239463, 1.67163502542, 1.73330002723, 1.77994696159, 1.80707269837, 1.81210830026, 1.79502908299, 1.75823867116, 1.70578686706, 1.64229629757, 1.57202603346, 1.4983177389, 1.42343807902, 1.34869363681, 1.27467090638, 1.20149239259, 1.12902828752, 1.05703612128, 0.985214799976, 0.913162876454, 0.840239280986, 0.765359635578, 0.686840922313, 0.602515945522, 0.510385496003, 0.409903482183, 0.30351989369, 0.197621587752, 0.101899689059, 0.0242786468896, 0.0230628942058, 0.11770360745, 0.239295064383, 0.367854441012, 0.48751666843, 0.584266108064, 0.648042896773, 0.674075258321, 0.664132399105, 0.628611469828, 0.58778635414, 0.565046442694, 0.567409385751, 0.574073319487, 0.55767487367, 0.509263596413, 0.432615103192, 0.33288018603, 0.248801648066, 0.296731718403, 0.5100945802, 0.802788299157, 1.10432737401, 1.36936922813, 1.57437791181, 1.72109433357, 1.831018753, 1.92300551184, 1.99748368012, 2.07185994598, 2.23698447869, 2.59909324732, 3.11466740204, 3.57025227742, 3.74144982507, 3.55948924006, 3.21719537753, 2.98111665111, 2.86531794269, 2.70387593638, 2.38182287494, 1.88174425569, 1.16239529163, 0.13950215189, 0.852185865847, 2.06425553809, 3.15758970912 ], [ 1.11198541535, 1.10240294985, 1.09442154024, 1.0883807858, 1.08466829283, 1.08372005498, 1.08601724139, 1.09207775519, 1.10244095826, 1.11764441641, 1.13819235299, 1.16451631256, 1.19692862516, 1.23556800154, 1.2803341663, 1.33080648157, 1.38614310841, 1.44496589393, 1.50525375876, 1.56429131904, 1.61873961295, 1.6648933536, 1.69914379888, 1.71857558472, 1.72152657908, 1.70790238514, 1.67911271931, 1.63765681715, 1.58652865576, 1.52865300104, 1.46649762468, 1.40190111006, 1.33607510467, 1.26970831588, 1.20310496602, 1.13631054699, 1.06919697554, 1.00149258508, 0.932752817234, 0.862282888275, 0.78905290314, 0.711690307134, 0.628674211592, 0.538839362666, 0.442157886862, 0.34048068857, 0.23755526903, 0.13780760891, 0.0548627300115, 0.0544653115377, 0.148962806091, 0.272053408774, 0.395706772764, 0.505392490593, 0.588327842513, 0.633948083113, 0.635298476159, 0.591282118875, 0.511997314951, 0.427375384712, 0.384922701496, 0.406713820246, 0.444753622988, 0.437277353719, 0.380177435937, 0.296736345001, 0.182858856289, 0.0456869117992, 0.0831737026007, 0.33299785938, 0.654335397939, 0.989779020113, 1.29908840836, 1.55999891309, 1.76943217297, 1.93823661685, 2.08118906655, 2.21230907528, 2.35459999622, 2.54734398054, 2.81735073693, 3.13018305375, 3.39033887831, 3.50467810628, 3.45273186996, 3.3043812176, 3.14726978969, 2.99401923325, 2.78788449462, 2.4738648171, 2.0365107587, 1.51477442841, 1.2473772067, 1.95731784581, 2.03861421272, 2.71208787084 ], [ 1.14446789327, 1.1365052057, 1.13014523512, 1.12568792959, 1.12346755387, 1.12385031051, 1.12722865312, 1.13401121084, 1.14460734691, 1.15940569534, 1.17874648542, 1.2028878549, 1.23196638351, 1.26595162447, 1.30459381775, 1.34736425026, 1.39339037484, 1.44139408962, 1.48965140193, 1.53600224002, 1.57794410236, 1.61283387617, 1.63819231467, 1.65205966228, 1.65330896068, 1.64181471201, 1.61841536643, 1.58468331257, 1.5425844672, 1.49413469454, 1.44113680387, 1.38503331355, 1.3268657375, 1.26730662052, 1.20672571789, 1.14525843909, 1.0828551215, 1.01930013207, 0.954200671438, 0.886959337126, 0.816764100547, 0.742650912448, 0.663703562277, 0.579428448916, 0.490260696117, 0.39805814716, 0.306560127618, 0.223169436605, 0.166770342299, 0.170206123463, 0.238698457524, 0.340082972623, 0.445984155418, 0.538278050493, 0.602904815923, 0.627825762032, 0.603111795165, 0.522845349921, 0.392373545089, 0.247230811957, 0.171448843312, 0.229578332208, 0.327884916614, 0.333763504352, 0.260413512398, 0.191613043396, 0.114787257425, 0.0406938016429, 0.0899945642968, 0.294627663623, 0.595481511183, 0.929740245108, 1.25338056619, 1.54187069446, 1.78777972245, 1.99575227441, 2.17653878454, 2.34356653574, 2.51320973719, 2.70226566201, 2.91530788094, 3.1304159236, 3.30341862664, 3.39398623989, 3.39247749185, 3.32276749043, 3.21498241907, 3.07470936266, 2.88216203241, 2.61816155622, 2.29345336556, 1.98631440178, 1.87991900064, 1.98954269336, 2.17408729678, 2.69678647041 ], [ 1.17584090895, 1.169254216, 1.16423817289, 1.16105287516, 1.15998137112, 1.1613256255, 1.16539959913, 1.17251874266, 1.18298531768, 1.19706919136, 1.21498404845, 1.23685922632, 1.26270751218, 1.29238927888, 1.32557355428, 1.36169755951, 1.39992853655, 1.43913559193, 1.47788416344, 1.51446951262, 1.54700494703, 1.5735717042, 1.5924194035, 1.60218292583, 1.60206388401, 1.59192460326, 1.57226495016, 1.54408948209, 1.50870638384, 1.46751450098, 1.42182661332, 1.37275454828, 1.32115780842, 1.26764112512, 1.21258003312, 1.15615484573, 1.09837884794, 1.03911387136, 0.97807516802, 0.914838055046, 0.848870683724, 0.779627022981, 0.706734370621, 0.63029288561, 0.551276671926, 0.472036139544, 0.397081313176, 0.334701475827, 0.298870742203, 0.304682267797, 0.353524849707, 0.429355782099, 0.511529593456, 0.582375198617, 0.627136593541, 0.632741042804, 0.587312116462, 0.481416129653, 0.315261963983, 0.122949664215, 0.0131443108096, 0.100652688914, 0.254901615756, 0.26074078953, 0.139030694249, 0.0647751017678, 0.0902983952297, 0.0209215889103, 0.131706399707, 0.339979614593, 0.615743461036, 0.928926390167, 1.24400532591, 1.53723036502, 1.79827671003, 2.02715550715, 2.23010692764, 2.41635563294, 2.59585009453, 2.77596331336, 2.95598503709, 3.12312156598, 3.2560136643, 3.33579544629, 3.35643638508, 3.32522525093, 3.2525988205, 3.14131640858, 2.98633729862, 2.7864016878, 2.56029849916, 2.35985259191, 2.25629755636, 2.28626802629, 2.48347833568, 2.88416837961 ] ] } ================================================ FILE: packages/turf-isolines/test/in/matrix1.json ================================================ { "matrix": [ [1, 1, 1, 1, 1, 1, 1], [1, 5, 5, 5, 5, 5, 1], [1, 5, 15, 15, 15, 5, 1], [1, 5, 10, 10, 10, 5, 1], [1, 5, 5, 5, 5, 5, 1], [1, 1, 1, 1, 1, 1, 1] ], "origin": [10.8, 44.1], "cellSize": 20, "breaks": [2, 4, 8, 12], "zProperty": "temperature" } ================================================ FILE: packages/turf-isolines/test/in/matrix2.json ================================================ { "matrix": [ [18, 13, 10, 9, 10, 13, 18], [13, 8, 5, 4, 5, 8, 13], [10, 5, 2, 1, 2, 5, 10], [10, 5, 2, 1, 2, 5, 10], [9, 4, 1, 12, 1, 4, 9], [10, 5, 2, 1, 2, 5, 10], [10, 5, 2, 1, 2, 5, 10], [13, 8, 5, 4, 5, 8, 13], [18, 13, 10, 9, 10, 13, 18] ], "origin": [10.85, 44], "cellSize": 20, "breaks": [4.5, 9, 13.5, 18], "commonProperties": { "stroke-width": 3, "stroke": "darkred", "fill": "darkred" }, "breaksProperties": [ { "fill-opacity": 0.4 }, { "fill-opacity": 0.5 }, { "fill-opacity": 0.7 }, { "fill-opacity": 0.8 } ] } ================================================ FILE: packages/turf-isolines/test/in/pointGrid.geojson ================================================ { "type": "FeatureCollection", "properties": { "breaks": [20, 40, 80, 160], "breaksProperties": [ { "fill-opacity": 0.5 }, { "fill-opacity": 0.6 }, { "fill-opacity": 0.7 }, { "fill-opacity": 0.8 } ], "zProperty": "population" }, "features": [ { "type": "Feature", "properties": { "population": 4 }, "geometry": { "type": "Point", "coordinates": [-70.823364, -33.553984] } }, { "type": "Feature", "properties": { "population": 42 }, "geometry": { "type": "Point", "coordinates": [-70.823364, -33.50903203113676] } }, { "type": "Feature", "properties": { "population": 65 }, "geometry": { "type": "Point", "coordinates": [-70.823364, -33.464080062273524] } }, { "type": "Feature", "properties": { "population": 6 }, "geometry": { "type": "Point", "coordinates": [-70.823364, -33.419128093410286] } }, { "type": "Feature", "properties": { "population": 56 }, "geometry": { "type": "Point", "coordinates": [-70.823364, -33.37417612454705] } }, { "type": "Feature", "properties": { "population": 155 }, "geometry": { "type": "Point", "coordinates": [-70.823364, -33.32922415568381] } }, { "type": "Feature", "properties": { "population": 15 }, "geometry": { "type": "Point", "coordinates": [-70.76942368848808, -33.553984] } }, { "type": "Feature", "properties": { "population": 0 }, "geometry": { "type": "Point", "coordinates": [-70.76942368848808, -33.50903203113676] } }, { "type": "Feature", "properties": { "population": 34 }, "geometry": { "type": "Point", "coordinates": [-70.76942368848808, -33.464080062273524] } }, { "type": "Feature", "properties": { "population": 3 }, "geometry": { "type": "Point", "coordinates": [-70.76942368848808, -33.419128093410286] } }, { "type": "Feature", "properties": { "population": 3 }, "geometry": { "type": "Point", "coordinates": [-70.76942368848808, -33.37417612454705] } }, { "type": "Feature", "properties": { "population": 36 }, "geometry": { "type": "Point", "coordinates": [-70.76942368848808, -33.32922415568381] } }, { "type": "Feature", "properties": { "population": 67 }, "geometry": { "type": "Point", "coordinates": [-70.71548337697615, -33.553984] } }, { "type": "Feature", "properties": { "population": 7 }, "geometry": { "type": "Point", "coordinates": [-70.71548337697615, -33.50903203113676] } }, { "type": "Feature", "properties": { "population": 17 }, "geometry": { "type": "Point", "coordinates": [-70.71548337697615, -33.464080062273524] } }, { "type": "Feature", "properties": { "population": 27 }, "geometry": { "type": "Point", "coordinates": [-70.71548337697615, -33.419128093410286] } }, { "type": "Feature", "properties": { "population": 37 }, "geometry": { "type": "Point", "coordinates": [-70.71548337697615, -33.37417612454705] } }, { "type": "Feature", "properties": { "population": 78 }, "geometry": { "type": "Point", "coordinates": [-70.71548337697615, -33.32922415568381] } }, { "type": "Feature", "properties": { "population": 10 }, "geometry": { "type": "Point", "coordinates": [-70.66154306546423, -33.553984] } }, { "type": "Feature", "properties": { "population": 0 }, "geometry": { "type": "Point", "coordinates": [-70.66154306546423, -33.50903203113676] } }, { "type": "Feature", "properties": { "population": 53 }, "geometry": { "type": "Point", "coordinates": [-70.66154306546423, -33.464080062273524] } }, { "type": "Feature", "properties": { "population": 53 }, "geometry": { "type": "Point", "coordinates": [-70.66154306546423, -33.419128093410286] } }, { "type": "Feature", "properties": { "population": 84 }, "geometry": { "type": "Point", "coordinates": [-70.66154306546423, -33.37417612454705] } }, { "type": "Feature", "properties": { "population": 43 }, "geometry": { "type": "Point", "coordinates": [-70.66154306546423, -33.32922415568381] } }, { "type": "Feature", "properties": { "population": 43 }, "geometry": { "type": "Point", "coordinates": [-70.6076027539523, -33.553984] } }, { "type": "Feature", "properties": { "population": 18 }, "geometry": { "type": "Point", "coordinates": [-70.6076027539523, -33.50903203113676] } }, { "type": "Feature", "properties": { "population": 16 }, "geometry": { "type": "Point", "coordinates": [-70.6076027539523, -33.464080062273524] } }, { "type": "Feature", "properties": { "population": 94 }, "geometry": { "type": "Point", "coordinates": [-70.6076027539523, -33.419128093410286] } }, { "type": "Feature", "properties": { "population": 94 }, "geometry": { "type": "Point", "coordinates": [-70.6076027539523, -33.37417612454705] } }, { "type": "Feature", "properties": { "population": 4 }, "geometry": { "type": "Point", "coordinates": [-70.6076027539523, -33.32922415568381] } }, { "type": "Feature", "properties": { "population": 57 }, "geometry": { "type": "Point", "coordinates": [-70.55366244244038, -33.553984] } }, { "type": "Feature", "properties": { "population": 5 }, "geometry": { "type": "Point", "coordinates": [-70.55366244244038, -33.50903203113676] } }, { "type": "Feature", "properties": { "population": 5 }, "geometry": { "type": "Point", "coordinates": [-70.55366244244038, -33.464080062273524] } }, { "type": "Feature", "properties": { "population": 65 }, "geometry": { "type": "Point", "coordinates": [-70.55366244244038, -33.419128093410286] } }, { "type": "Feature", "properties": { "population": 90 }, "geometry": { "type": "Point", "coordinates": [-70.55366244244038, -33.37417612454705] } }, { "type": "Feature", "properties": { "population": 9 }, "geometry": { "type": "Point", "coordinates": [-70.55366244244038, -33.32922415568381] } }, { "type": "Feature", "properties": { "population": 33 }, "geometry": { "type": "Point", "coordinates": [-70.49972213092846, -33.553984] } }, { "type": "Feature", "properties": { "population": 78 }, "geometry": { "type": "Point", "coordinates": [-70.49972213092846, -33.50903203113676] } }, { "type": "Feature", "properties": { "population": 36 }, "geometry": { "type": "Point", "coordinates": [-70.49972213092846, -33.464080062273524] } }, { "type": "Feature", "properties": { "population": 3 }, "geometry": { "type": "Point", "coordinates": [-70.49972213092846, -33.419128093410286] } }, { "type": "Feature", "properties": { "population": 1 }, "geometry": { "type": "Point", "coordinates": [-70.49972213092846, -33.37417612454705] } }, { "type": "Feature", "properties": { "population": 7 }, "geometry": { "type": "Point", "coordinates": [-70.49972213092846, -33.32922415568381] } } ] } ================================================ FILE: packages/turf-isolines/test/out/bigMatrix.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke-width": 4, "fill-opacity": 0.4, "stroke": "grey", "fill": "grey", "pressure": 0.24 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [13.333575, 46.719456], [13.424768, 46.665438], [13.467696, 46.629524], [13.52061, 46.539592], [13.551757, 46.44966], [13.563264, 46.386354], [13.567553, 46.359728], [13.564023, 46.269796], [13.563264, 46.267861], [13.527199, 46.179864], [13.426546, 46.089932], [13.424768, 46.088913], [13.286273, 46.043257], [13.147778, 46.040078], [13.009282, 46.076361], [12.98133, 46.089932], [12.870787, 46.176678], [12.867497, 46.179864], [12.815364, 46.269796], [12.792558, 46.359728], [12.794113, 46.44966], [12.817878, 46.539592], [12.870787, 46.625291], [12.873239, 46.629524], [13.003638, 46.719456], [13.009282, 46.72173], [13.147778, 46.750639], [13.286273, 46.736988], [13.333575, 46.719456] ], [ [14.586932, 46], [14.671227, 46.0847], [14.684441, 46.089932], [14.809722, 46.118811], [14.948217, 46.095223], [14.9629, 46.089932], [15.073333, 46] ], [ [15.248809, 46], [15.363703, 46.074808], [15.404796, 46.089932], [15.502199, 46.131327], [15.5712, 46.179864], [15.640694, 46.214118], [15.77919, 46.265899], [15.917685, 46.245906], [16.004625, 46.179864], [16.019208, 46.089932], [15.989697, 46] ], [ [19.261103, 46.269796], [19.241574, 46.261638], [19.227967, 46.269796], [19.241574, 46.28155], [19.261103, 46.269796] ], [ [17.483942, 46.539592], [17.441134, 46.509911], [17.398412, 46.539592], [17.441134, 46.565069], [17.483942, 46.539592] ], [ [18.274679, 46.539592], [18.272106, 46.539023], [18.271836, 46.539592], [18.272106, 46.540117], [18.274679, 46.539592] ], [ [16.983186, 46.629524], [16.887153, 46.616213], [16.866868, 46.629524], [16.887153, 46.686717], [16.983186, 46.629524] ], [ [12.496746, 47.079184], [12.532649, 46.989252], [12.464469, 46.89932], [12.455301, 46.893482], [12.316805, 46.859784], [12.17831, 46.898495], [12.177161, 46.89932], [12.112964, 46.989252], [12.154879, 47.079184], [12.17831, 47.097102], [12.316805, 47.14904], [12.455301, 47.13561], [12.496746, 47.079184] ], [ [15.664979, 47.259049], [15.77919, 47.222509], [15.834548, 47.169116], [15.789098, 47.079184], [15.77919, 47.072803], [15.640694, 47.070845], [15.606895, 47.079184], [15.502199, 47.115385], [15.363703, 47.167282], [15.361223, 47.169116], [15.336906, 47.259049], [15.363703, 47.279081], [15.502199, 47.319692], [15.640694, 47.267231], [15.664979, 47.259049] ], [ [7.899188, 47.888573], [8.000611, 47.798641], [8.023449, 47.751713], [8.044106, 47.708709], [8.062848, 47.618777], [8.161944, 47.551659], [8.204604, 47.528845], [8.30044, 47.478736], [8.355468, 47.438913], [8.390349, 47.348981], [8.353418, 47.259049], [8.30044, 47.213026], [8.21777, 47.169116], [8.161944, 47.147462], [8.023449, 47.134087], [7.884954, 47.158747], [7.857297, 47.169116], [7.746458, 47.240282], [7.721771, 47.259049], [7.660303, 47.348981], [7.607963, 47.432938], [7.602787, 47.438913], [7.483616, 47.528845], [7.469468, 47.539233], [7.398672, 47.618777], [7.369353, 47.708709], [7.392465, 47.798641], [7.469468, 47.873837], [7.49141, 47.888573], [7.607963, 47.931492], [7.746458, 47.938693], [7.884954, 47.89919], [7.899188, 47.888573] ], [ [12.559982, 47.348981], [12.579726, 47.259049], [12.455301, 47.183226], [12.329096, 47.259049], [12.352189, 47.348981], [12.455301, 47.385966], [12.559982, 47.348981] ], [ [14.897997, 47.348981], [14.890392, 47.259049], [14.809722, 47.2071], [14.671227, 47.203042], [14.575353, 47.259049], [14.565439, 47.348981], [14.671227, 47.417355], [14.809722, 47.411845], [14.897997, 47.348981] ], [ [9.101873, 47.888573], [9.131412, 47.87878], [9.212607, 47.798641], [9.216462, 47.708709], [9.206551, 47.618777], [9.220799, 47.528845], [9.17041, 47.438913], [9.131412, 47.412762], [8.992917, 47.372654], [8.854421, 47.393577], [8.767107, 47.438913], [8.738554, 47.528845], [8.774536, 47.618777], [8.779112, 47.708709], [8.805405, 47.798641], [8.854421, 47.854382], [8.942356, 47.888573], [8.992917, 47.908661], [9.101873, 47.888573] ], [ [12.360972, 47.528845], [12.316805, 47.48062], [12.274592, 47.528845], [12.316805, 47.539311], [12.360972, 47.528845] ], [ [16.668716, 47.618777], [16.610162, 47.604288], [16.590133, 47.618777], [16.610162, 47.644458], [16.668716, 47.618777] ], [ [12.765117, 48.158369], [12.842427, 48.068437], [12.732292, 48.019172], [12.607371, 48.068437], [12.69843, 48.158369], [12.732292, 48.169413], [12.765117, 48.158369] ], [ [7.017371, 49.507349], [6.994818, 49.417417], [6.932951, 49.327485], [6.915486, 49.311577], [6.805692, 49.237553], [6.776991, 49.222896], [6.638495, 49.179071], [6.5, 49.161809] ], [ [6.5, 49.444426], [6.596926, 49.507349] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 4, "fill-opacity": 0.4, "stroke": "blue", "fill": "blue", "pressure": 0.5 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [12.683417, 46], [12.593796, 46.075577], [12.578669, 46.089932], [12.510938, 46.179864], [12.469615, 46.269796], [12.455301, 46.327499], [12.446405, 46.359728], [12.435651, 46.44966], [12.429156, 46.539592], [12.394556, 46.629524], [12.316805, 46.66745], [12.206125, 46.719456], [12.17831, 46.726561], [12.040741, 46.809388], [12.039815, 46.810095], [11.968106, 46.89932], [11.950779, 46.989252], [11.986492, 47.079184], [12.039815, 47.132358], [12.085344, 47.169116], [12.17831, 47.258912], [12.178407, 47.259049], [12.228722, 47.348981], [12.286307, 47.438913], [12.227878, 47.528845], [12.316805, 47.550894], [12.409847, 47.528845], [12.455301, 47.439296], [12.456106, 47.438913], [12.593796, 47.396831], [12.681485, 47.348981], [12.723597, 47.259049], [12.726633, 47.169116], [12.732292, 47.136674], [12.746385, 47.079184], [12.792784, 46.989252], [12.870787, 46.917991], [13.009282, 46.903932], [13.147778, 46.899728], [13.151005, 46.89932], [13.286273, 46.885734], [13.424768, 46.851978], [13.525358, 46.809388], [13.563264, 46.789296], [13.664117, 46.719456], [13.701759, 46.68041], [13.749338, 46.629524], [13.804668, 46.539592], [13.838909, 46.44966], [13.840254, 46.442365], [13.858366, 46.359728], [13.858124, 46.269796], [13.840254, 46.206993], [13.833446, 46.179864], [13.782815, 46.089932], [13.701759, 46.015819], [13.682327, 46] ], [ [14.369931, 46], [14.394236, 46.040341], [14.418486, 46.089932], [14.532731, 46.170845], [14.552367, 46.179864], [14.671227, 46.22058], [14.809722, 46.23732], [14.948217, 46.232071], [15.086713, 46.218284], [15.225208, 46.226715], [15.363703, 46.263342], [15.380442, 46.269796], [15.502199, 46.304995], [15.640694, 46.338291], [15.77919, 46.349711], [15.917685, 46.330436], [16.049628, 46.269796], [16.05618, 46.26467], [16.128158, 46.179864], [16.150722, 46.089932], [16.136546, 46] ], [ [19.311629, 46.269796], [19.241574, 46.240533], [19.192764, 46.269796], [19.241574, 46.311959], [19.311629, 46.269796] ], [ [17.53461, 46.539592], [17.441134, 46.474778], [17.347844, 46.539592], [17.441134, 46.595224], [17.53461, 46.539592] ], [ [18.342339, 46.539592], [18.272106, 46.524045], [18.264737, 46.539592], [18.272106, 46.553925], [18.342339, 46.539592] ], [ [19.245592, 46.539592], [19.241574, 46.505856], [19.212444, 46.539592], [19.241574, 46.551269], [19.245592, 46.539592] ], [ [17.036451, 46.719456], [17.066899, 46.629524], [17.025648, 46.593742], [16.887153, 46.576391], [16.806188, 46.629524], [16.837829, 46.719456], [16.887153, 46.739855], [17.025648, 46.72559], [17.036451, 46.719456] ], [ [19.242707, 46.719456], [19.241574, 46.712954], [19.230795, 46.719456], [19.241574, 46.720647], [19.242707, 46.719456] ], [ [7.757103, 48.158369], [7.884954, 48.114893], [7.944769, 48.068437], [8.023449, 48.002007], [8.038183, 47.978505], [8.100121, 47.888573], [8.161944, 47.801618], [8.164137, 47.798641], [8.262172, 47.708709], [8.30044, 47.68159], [8.438935, 47.645604], [8.577431, 47.679114], [8.606313, 47.708709], [8.699335, 47.798641], [8.715926, 47.816949], [8.776872, 47.888573], [8.85046, 47.978505], [8.854421, 47.984391], [8.992917, 48.053553], [9.131412, 48.054733], [9.269907, 48.008354], [9.312693, 47.978505], [9.398156, 47.888573], [9.408403, 47.863255], [9.429829, 47.798641], [9.42796, 47.708709], [9.408403, 47.633183], [9.404835, 47.618777], [9.36534, 47.528845], [9.300866, 47.438913], [9.269907, 47.414426], [9.172092, 47.348981], [9.131412, 47.328127], [8.992917, 47.287089], [8.854421, 47.268068], [8.769221, 47.259049], [8.715926, 47.250708], [8.577431, 47.193019], [8.54754, 47.169116], [8.438935, 47.097703], [8.407681, 47.079184], [8.30044, 47.024747], [8.19031, 46.989252], [8.161944, 46.979726], [8.023449, 46.955862], [7.884954, 46.95147], [7.746458, 46.964747], [7.631978, 46.989252], [7.607963, 46.995477], [7.469468, 47.045416], [7.394797, 47.079184], [7.330972, 47.116044], [7.245823, 47.169116], [7.192477, 47.210822], [7.132951, 47.259049], [7.053981, 47.339333], [7.04482, 47.348981], [6.977129, 47.438913], [6.931048, 47.528845], [6.915486, 47.583233], [6.904869, 47.618777], [6.898708, 47.708709], [6.915094, 47.798641], [6.915486, 47.799543], [6.953518, 47.888573], [7.024108, 47.978505], [7.053981, 48.005076], [7.140225, 48.068437], [7.192477, 48.097719], [7.330972, 48.150124], [7.372032, 48.158369], [7.469468, 48.177716], [7.607963, 48.182831], [7.746458, 48.162429], [7.757103, 48.158369] ], [ [15.640953, 47.348981], [15.77919, 47.289836], [15.829116, 47.259049], [15.915177, 47.169116], [15.885133, 47.079184], [15.77919, 47.01095], [15.640694, 46.99557], [15.502199, 47.014524], [15.363703, 47.051232], [15.301081, 47.079184], [15.225208, 47.140803], [15.175394, 47.169116], [15.128914, 47.259049], [15.225208, 47.29727], [15.286403, 47.348981], [15.363703, 47.372228], [15.502199, 47.382661], [15.640694, 47.349087], [15.640953, 47.348981] ], [ [14.944964, 47.438913], [14.948217, 47.43651], [15.049066, 47.348981], [15.070376, 47.259049], [14.981512, 47.169116], [14.948217, 47.157858], [14.809722, 47.110822], [14.671227, 47.108275], [14.532731, 47.151788], [14.505265, 47.169116], [14.428535, 47.259049], [14.428693, 47.348981], [14.505161, 47.438913], [14.532731, 47.45479], [14.671227, 47.497036], [14.809722, 47.491608], [14.944964, 47.438913] ], [ [16.753843, 47.618777], [16.748657, 47.61171], [16.610162, 47.576856], [16.55221, 47.618777], [16.610162, 47.693084], [16.748657, 47.632192], [16.753843, 47.618777] ], [ [12.920539, 48.158369], [12.941498, 48.068437], [12.870787, 48.007987], [12.789645, 47.978505], [12.732292, 47.971499], [12.707656, 47.978505], [12.593796, 48.030327], [12.551601, 48.068437], [12.561575, 48.158369], [12.593796, 48.193019], [12.732292, 48.232741], [12.870787, 48.197294], [12.920539, 48.158369] ], [ [7.342413, 49.507349], [7.330972, 49.429189], [7.329322, 49.417417], [7.296208, 49.327485], [7.23853, 49.237553], [7.192477, 49.187048], [7.150894, 49.147621], [7.053981, 49.07576], [7.021939, 49.057689], [6.915486, 49.00276], [6.811596, 48.967757], [6.776991, 48.955575], [6.638495, 48.924741], [6.5, 48.911051] ], [ [6.5, 49.476205], [6.547975, 49.507349] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 4, "fill-opacity": 0.4, "stroke": "green", "fill": "green", "pressure": 1.5 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [10.290136, 49.507349], [10.37787, 49.417436], [10.377889, 49.417417], [10.462155, 49.327485], [10.516366, 49.265234], [10.540663, 49.237553], [10.613554, 49.147621], [10.654861, 49.090475], [10.67907, 49.057689], [10.737184, 48.967757], [10.784598, 48.877825], [10.793356, 48.856992], [10.823483, 48.787893], [10.851227, 48.697961], [10.867657, 48.608029], [10.874253, 48.518097], [10.873146, 48.428165], [10.86678, 48.338233], [10.857529, 48.248301], [10.847375, 48.158369], [10.837701, 48.068437], [10.829158, 47.978505], [10.821454, 47.888573], [10.812499, 47.798641], [10.793733, 47.708709], [10.793356, 47.70784], [10.664976, 47.618777], [10.654861, 47.617167], [10.516366, 47.600939], [10.37787, 47.586162], [10.239375, 47.56654], [10.10088, 47.538375], [10.072761, 47.528845], [9.962384, 47.506672], [9.823889, 47.464844], [9.769285, 47.438913], [9.685393, 47.413084], [9.55524, 47.348981], [9.546898, 47.345925], [9.408403, 47.271404], [9.388374, 47.259049], [9.269907, 47.182985], [9.246341, 47.169116], [9.13541, 47.079184], [9.131412, 47.073855], [9.045901, 46.989252], [8.992917, 46.900185], [8.992196, 46.89932], [8.947278, 46.809388], [8.920539, 46.719456], [8.906369, 46.629524], [8.902529, 46.539592], [8.908239, 46.44966], [8.923286, 46.359728], [8.947567, 46.269796], [8.980847, 46.179864], [8.992917, 46.149581], [9.023838, 46.089932], [9.076637, 46] ], [ [10.407143, 46], [10.499599, 46.089932], [10.516366, 46.105213], [10.580211, 46.179864], [10.6517, 46.269796], [10.654861, 46.273738], [10.713111, 46.359728], [10.765193, 46.44966], [10.793356, 46.507156], [10.808187, 46.539592], [10.844069, 46.629524], [10.871485, 46.719456], [10.891167, 46.809388], [10.904169, 46.89932], [10.911672, 46.989252], [10.914888, 47.079184], [10.915149, 47.169116], [10.91425, 47.259049], [10.915491, 47.348981], [10.92844, 47.438913], [10.931852, 47.447818], [11.070347, 47.52122], [11.208842, 47.520545], [11.347338, 47.511257], [11.485833, 47.501139], [11.624329, 47.494233], [11.762824, 47.49419], [11.901319, 47.506535], [11.966066, 47.528845], [12.039815, 47.539121], [12.17831, 47.57302], [12.316805, 47.595442], [12.455301, 47.576126], [12.593796, 47.56206], [12.732292, 47.572032], [12.870787, 47.608209], [12.902702, 47.618777], [12.987237, 47.708709], [12.920553, 47.798641], [12.870787, 47.81152], [12.732292, 47.86344], [12.693198, 47.888573], [12.593796, 47.924983], [12.491218, 47.978505], [12.455301, 48.009023], [12.363634, 48.068437], [12.316805, 48.134861], [12.282371, 48.158369], [12.226051, 48.248301], [12.198193, 48.338233], [12.195719, 48.428165], [12.230607, 48.518097], [12.316805, 48.598311], [12.333473, 48.608029], [12.455301, 48.6621], [12.593796, 48.6893], [12.732292, 48.69587], [12.870787, 48.686808], [13.009282, 48.661622], [13.147778, 48.617236], [13.168702, 48.608029], [13.286273, 48.554543], [13.347942, 48.518097], [13.424768, 48.465242], [13.473265, 48.428165], [13.563264, 48.342195], [13.567587, 48.338233], [13.650372, 48.248301], [13.701759, 48.183307], [13.727302, 48.158369], [13.827353, 48.068437], [13.840254, 48.058984], [13.97875, 47.993475], [14.028933, 47.978505], [14.117245, 47.958595], [14.255741, 47.937765], [14.394236, 47.921896], [14.532731, 47.905513], [14.642906, 47.888573], [14.671227, 47.885177], [14.809722, 47.860662], [14.948217, 47.827326], [15.041543, 47.798641], [15.086713, 47.786132], [15.225208, 47.740815], [15.313234, 47.708709], [15.363703, 47.692849], [15.502199, 47.64359], [15.55448, 47.618777], [15.640694, 47.586458], [15.744222, 47.528845], [15.77919, 47.513401], [15.910069, 47.438913], [15.917685, 47.434794], [16.044939, 47.348981], [16.05618, 47.33774], [16.120148, 47.259049], [16.152129, 47.169116], [16.155541, 47.079184], [16.136477, 46.989252], [16.102939, 46.89932], [16.073257, 46.809388], [16.083398, 46.719456], [16.169279, 46.629524], [16.194676, 46.613232], [16.32789, 46.539592], [16.333171, 46.53624], [16.471666, 46.474268], [16.493105, 46.539592], [16.511648, 46.629524], [16.580533, 46.719456], [16.610162, 46.733621], [16.74529, 46.809388], [16.748657, 46.810272], [16.887153, 46.83267], [17.025648, 46.815838], [17.043406, 46.809388], [17.164143, 46.743029], [17.215772, 46.719456], [17.302639, 46.676038], [17.441134, 46.677818], [17.579629, 46.631083], [17.581379, 46.629524], [17.628462, 46.539592], [17.595745, 46.44966], [17.579629, 46.428804], [17.441134, 46.373181], [17.302639, 46.377954], [17.164143, 46.411907], [17.025648, 46.407986], [16.887153, 46.396626], [16.748657, 46.403885], [16.610162, 46.434062], [16.541407, 46.359728], [16.559915, 46.269796], [16.578313, 46.179864], [16.590061, 46.089932], [16.592577, 46] ], [ [19.276687, 46.719456], [19.270089, 46.629524], [19.308501, 46.539592], [19.328314, 46.44966], [19.380069, 46.373683], [19.390246, 46.359728], [19.454091, 46.269796], [19.380069, 46.217079], [19.290855, 46.179864], [19.241574, 46.143947], [19.110731, 46.179864], [19.103078, 46.183635], [19.03808, 46.269796], [19.0463, 46.359728], [18.997368, 46.44966], [18.997661, 46.539592], [19.031576, 46.629524], [19.043162, 46.719456], [19.103078, 46.752041], [19.241574, 46.756326], [19.276687, 46.719456] ], [ [18.486898, 46.539592], [18.410602, 46.458147], [18.272106, 46.466439], [18.237432, 46.539592], [18.272106, 46.607031], [18.410602, 46.606569], [18.486898, 46.539592] ], [ [16.795822, 47.708709], [16.825353, 47.618777], [16.760528, 47.528845], [16.748657, 47.518876], [16.610162, 47.486471], [16.471666, 47.523183], [16.459871, 47.528845], [16.39275, 47.618777], [16.423799, 47.708709], [16.471666, 47.739752], [16.610162, 47.780929], [16.748657, 47.750989], [16.795822, 47.708709] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 4, "fill-opacity": 0.4, "stroke": "yellow", "fill": "yellow", "pressure": 2.5 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [14.186388, 49.507349], [14.255741, 49.418794], [14.256739, 49.417417], [14.325526, 49.327485], [14.394236, 49.240875], [14.39668, 49.237553], [14.466594, 49.147621], [14.532731, 49.066291], [14.539245, 49.057689], [14.611763, 48.967757], [14.671227, 48.898571], [14.687931, 48.877825], [14.766367, 48.787893], [14.809722, 48.742499], [14.849822, 48.697961], [14.940128, 48.608029], [14.948217, 48.600843], [15.03645, 48.518097], [15.086713, 48.476862], [15.142925, 48.428165], [15.225208, 48.366249], [15.260608, 48.338233], [15.363703, 48.267499], [15.390694, 48.248301], [15.502199, 48.179469], [15.536352, 48.158369], [15.640694, 48.102297], [15.708671, 48.068437], [15.77919, 48.037764], [15.917685, 47.98884], [15.952032, 47.978505], [16.05618, 47.952087], [16.194676, 47.921745], [16.333171, 47.898463], [16.424961, 47.888573], [16.471666, 47.885475], [16.610162, 47.869874], [16.748657, 47.826174], [16.782712, 47.798641], [16.876259, 47.708709], [16.887153, 47.663804], [16.893165, 47.618777], [16.887153, 47.602076], [16.839894, 47.528845], [16.748657, 47.452226], [16.701619, 47.438913], [16.610162, 47.392326], [16.484599, 47.348981], [16.471666, 47.331177], [16.424356, 47.259049], [16.424896, 47.169116], [16.451039, 47.079184], [16.471666, 47.045057], [16.523719, 46.989252], [16.610162, 46.951422], [16.748657, 46.930836], [16.887153, 46.916589], [16.970246, 46.89932], [17.025648, 46.889983], [17.164143, 46.841479], [17.246781, 46.809388], [17.302639, 46.78247], [17.441134, 46.748337], [17.528871, 46.719456], [17.579629, 46.703093], [17.66221, 46.629524], [17.691965, 46.539592], [17.680021, 46.44966], [17.634275, 46.359728], [17.579629, 46.28893], [17.541729, 46.269796], [17.441134, 46.193583], [17.407115, 46.179864], [17.302639, 46.097422], [17.291854, 46.089932], [17.228682, 46] ], [ [19.006245, 46], [18.964583, 46.020322], [18.876486, 46.089932], [18.826088, 46.163575], [18.814561, 46.179864], [18.775267, 46.269796], [18.747193, 46.359728], [18.726895, 46.44966], [18.78062, 46.539592], [18.826088, 46.563233], [18.86127, 46.629524], [18.931088, 46.719456], [18.964583, 46.738569], [19.103078, 46.805928], [19.241574, 46.792005], [19.310666, 46.719456], [19.319945, 46.629524], [19.37141, 46.539592], [19.380069, 46.519113], [19.41019, 46.44966], [19.494163, 46.359728], [19.518564, 46.328235], [19.573761, 46.269796], [19.613445, 46.179864], [19.604919, 46.089932], [19.524275, 46] ], [ [18.538193, 46.629524], [18.549097, 46.617108], [18.652106, 46.539592], [18.657319, 46.44966], [18.549097, 46.390896], [18.410602, 46.36377], [18.272106, 46.391555], [18.233988, 46.44966], [18.210127, 46.539592], [18.240845, 46.629524], [18.272106, 46.663224], [18.410602, 46.675969], [18.538193, 46.629524] ], [ [9.823889, 47.265833], [9.781217, 47.259049], [9.685393, 47.247314], [9.546898, 47.20002], [9.491862, 47.169116], [9.408403, 47.10523], [9.377816, 47.079184], [9.322633, 46.989252], [9.310428, 46.89932], [9.337463, 46.809388], [9.408403, 46.722835], [9.412794, 46.719456], [9.546898, 46.641769], [9.598208, 46.629524], [9.685393, 46.606681], [9.823889, 46.60198], [9.962384, 46.626776], [9.969751, 46.629524], [10.10088, 46.681361], [10.157625, 46.719456], [10.239375, 46.80073], [10.246587, 46.809388], [10.291062, 46.89932], [10.297274, 46.989252], [10.264072, 47.079184], [10.239375, 47.107527], [10.181396, 47.169116], [10.10088, 47.214757], [9.962384, 47.256597], [9.928408, 47.259049], [9.823889, 47.265833] ], [ [12.17831, 48.008742], [12.039815, 47.999507], [11.979483, 47.978505], [11.901319, 47.928979], [11.860265, 47.888573], [11.841028, 47.798641], [11.901319, 47.714874], [11.904159, 47.708709], [12.039815, 47.646328], [12.17831, 47.628932], [12.316805, 47.62992], [12.455301, 47.631881], [12.593796, 47.671104], [12.655704, 47.708709], [12.648396, 47.798641], [12.593796, 47.833834], [12.522784, 47.888573], [12.455301, 47.924652], [12.316805, 47.976579], [12.300928, 47.978505], [12.17831, 48.008742] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 4, "fill-opacity": 0.4, "stroke": "red", "fill": "red", "pressure": 100 }, "geometry": { "type": "MultiLineString", "coordinates": [] } }, { "type": "Feature", "properties": { "description": "Debug line for testing", "stroke": "#F00", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [6.5, 46], [19.657059855532452, 46], [19.657059855532452, 49.50734941852569], [6.5, 49.50734941852569], [6.5, 46] ] } } ] } ================================================ FILE: packages/turf-isolines/test/out/matrix1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "temperature": 2 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [12.071816, 44.954354], [11.817453, 44.954354], [11.56309, 44.954354], [11.308726, 44.954354], [11.054363, 44.954354], [10.863591, 44.819456], [10.863591, 44.639592], [10.863591, 44.459728], [10.863591, 44.279864], [11.054363, 44.144966], [11.308726, 44.144966], [11.56309, 44.144966], [11.817453, 44.144966], [12.071816, 44.144966], [12.262588, 44.279864], [12.262588, 44.459728], [12.262588, 44.639592], [12.262588, 44.819456], [12.071816, 44.954354] ] ] } }, { "type": "Feature", "properties": { "temperature": 4 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [12.071816, 44.864422], [11.817453, 44.864422], [11.56309, 44.864422], [11.308726, 44.864422], [11.054363, 44.864422], [10.990772, 44.819456], [10.990772, 44.639592], [10.990772, 44.459728], [10.990772, 44.279864], [11.054363, 44.234898], [11.308726, 44.234898], [11.56309, 44.234898], [11.817453, 44.234898], [12.071816, 44.234898], [12.135407, 44.279864], [12.135407, 44.459728], [12.135407, 44.639592], [12.135407, 44.819456], [12.071816, 44.864422] ] ] } }, { "type": "Feature", "properties": { "temperature": 8 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [11.817453, 44.765497], [11.56309, 44.765497], [11.308726, 44.765497], [11.130672, 44.639592], [11.206981, 44.459728], [11.308726, 44.387783], [11.56309, 44.387783], [11.817453, 44.387783], [11.919198, 44.459728], [11.995507, 44.639592], [11.817453, 44.765497] ] ] } }, { "type": "Feature", "properties": { "temperature": 12 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [11.817453, 44.693551], [11.56309, 44.693551], [11.308726, 44.693551], [11.232417, 44.639592], [11.308726, 44.531674], [11.56309, 44.531674], [11.817453, 44.531674], [11.893762, 44.639592], [11.817453, 44.693551] ] ] } }, { "type": "Feature", "properties": { "description": "Debug line for testing", "stroke": "#F00", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [10.799999999999955, 44.1], [12.326179163093911, 44.1], [12.326179163093911, 44.99932036372454], [10.799999999999955, 44.99932036372454], [10.799999999999955, 44.1] ] } } ] } ================================================ FILE: packages/turf-isolines/test/out/matrix2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke-width": 3, "stroke": "darkred", "fill": "darkred", "fill-opacity": 0.4, "elevation": 4.5 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [11.747181, 45.259049], [11.87535, 45.229071], [12.088964, 45.079184], [12.088964, 44.89932], [12.131687, 44.809388], [12.157321, 44.719456], [12.131687, 44.629524], [12.088964, 44.539592], [12.088964, 44.359728], [11.87535, 44.209841], [11.747181, 44.179864], [11.619012, 44.161878], [11.490843, 44.179864], [11.362675, 44.209841], [11.14906, 44.359728], [11.14906, 44.539592], [11.106337, 44.629524], [11.080704, 44.719456], [11.106337, 44.809388], [11.14906, 44.89932], [11.14906, 45.079184], [11.362675, 45.229071], [11.490843, 45.259049], [11.619012, 45.277035], [11.747181, 45.259049] ], [ [11.619012, 44.842091], [11.444237, 44.719456], [11.619012, 44.596822], [11.793788, 44.719456], [11.619012, 44.842091] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 3, "stroke": "darkred", "fill": "darkred", "fill-opacity": 0.5, "elevation": 9 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [12.182954, 45.259049], [12.336757, 45.079184], [12.336757, 44.89932], [12.388024, 44.719456], [12.336757, 44.539592], [12.336757, 44.359728], [12.182954, 44.179864], [12.131687, 44.143891], [11.87535, 44.035973], [11.619012, 44], [11.362675, 44.035973], [11.106337, 44.143891], [11.05507, 44.179864], [10.901267, 44.359728], [10.901267, 44.539592], [10.85, 44.719456], [10.901267, 44.89932], [10.901267, 45.079184], [11.05507, 45.259049], [11.106337, 45.295021], [11.362675, 45.40294], [11.619012, 45.438913], [11.87535, 45.40294], [12.131687, 45.295021], [12.182954, 45.259049] ], [ [11.619012, 44.76851], [11.549102, 44.719456], [11.619012, 44.670402], [11.688922, 44.719456], [11.619012, 44.76851] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 3, "stroke": "darkred", "fill": "darkred", "fill-opacity": 0.7, "elevation": 13.5 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [11.080704, 44], [10.85, 44.161878] ], [ [12.388024, 44.161878], [12.157321, 44] ], [ [10.85, 45.277035], [11.080704, 45.438913] ], [ [12.157321, 45.438913], [12.388024, 45.277035] ] ] } }, { "type": "Feature", "properties": { "stroke-width": 3, "stroke": "darkred", "fill": "darkred", "fill-opacity": 0.8, "elevation": 18 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [10.85, 44], [10.85, 44] ], [ [12.388024, 44], [12.388024, 44] ], [ [10.85, 45.438913], [10.85, 45.438913] ], [ [12.388024, 45.438913], [12.388024, 45.438913] ] ] } }, { "type": "Feature", "properties": { "description": "Debug line for testing", "stroke": "#F00", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [10.850000000000023, 43.99999999999999], [12.388024266955085, 43.99999999999999], [12.388024266955085, 45.43891258195926], [10.850000000000023, 45.43891258195926], [10.850000000000023, 43.99999999999999] ] } } ] } ================================================ FILE: packages/turf-isolines/test/out/pointGrid.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill-opacity": 0.5, "population": 20 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-70.823364, -33.535057], [-70.79511, -33.509032], [-70.769424, -33.48259], [-70.725002, -33.46408], [-70.715483, -33.450594], [-70.710988, -33.46408], [-70.661543, -33.492069], [-70.613434, -33.46408], [-70.607603, -33.461775], [-70.553662, -33.452842], [-70.527562, -33.46408], [-70.542579, -33.509032], [-70.553662, -33.521999], [-70.607603, -33.512628], [-70.645198, -33.553984] ], [ [-70.671006, -33.553984], [-70.715483, -33.518772], [-70.764237, -33.553984] ], [ [-70.823364, -33.406542], [-70.786725, -33.374176], [-70.769424, -33.351019], [-70.742454, -33.374176], [-70.731216, -33.419128], [-70.769424, -33.443779], [-70.823364, -33.429795] ], [ [-70.499722, -33.442285], [-70.514512, -33.419128], [-70.511237, -33.374176], [-70.553662, -33.335329], [-70.607603, -33.337216], [-70.629732, -33.329224] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 0.6, "population": 40 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-70.823364, -33.511398], [-70.820795, -33.509032], [-70.779864, -33.46408], [-70.823364, -33.445033] ], [ [-70.689933, -33.553984], [-70.715483, -33.533756], [-70.743491, -33.553984] ], [ [-70.499722, -33.468361], [-70.527801, -33.509032], [-70.553662, -33.539288], [-70.607603, -33.54859], [-70.612506, -33.553984] ], [ [-70.515455, -33.553984], [-70.499722, -33.546991] ], [ [-70.764287, -33.329224], [-70.715483, -33.370887], [-70.71204, -33.374176], [-70.688513, -33.419128], [-70.681022, -33.46408], [-70.661543, -33.475106], [-70.642591, -33.46408], [-70.607603, -33.450249], [-70.553662, -33.437858], [-70.531912, -33.419128], [-70.523359, -33.374176], [-70.553662, -33.346428], [-70.607603, -33.347205], [-70.657394, -33.329224] ], [ [-70.823364, -33.388561], [-70.80708, -33.374176], [-70.771237, -33.329224] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 0.7, "population": 80 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-70.553662, -33.368626], [-70.607603, -33.367184], [-70.661543, -33.369791], [-70.666134, -33.374176], [-70.661543, -33.379976], [-70.626021, -33.419128], [-70.607603, -33.427196], [-70.581563, -33.419128], [-70.553662, -33.392157], [-70.547602, -33.374176], [-70.553662, -33.368626] ], [ [-70.823364, -33.363279], [-70.789368, -33.329224] ] ] } }, { "type": "Feature", "properties": { "fill-opacity": 0.8, "population": 160 }, "geometry": { "type": "MultiLineString", "coordinates": [] } }, { "type": "Feature", "properties": { "description": "Debug line for testing", "stroke": "#F00", "stroke-width": 1 }, "geometry": { "type": "LineString", "coordinates": [ [-70.823364, -33.553984], [-70.49972213092846, -33.553984], [-70.49972213092846, -33.32922415568381], [-70.823364, -33.32922415568381], [-70.823364, -33.553984] ] } } ] } ================================================ FILE: packages/turf-isolines/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { envelope } from "@turf/envelope"; import { truncate } from "@turf/truncate"; import { pointGrid } from "@turf/point-grid"; import { getCoords } from "@turf/invariant"; import { randomPolygon } from "@turf/random"; import { lineString } from "@turf/helpers"; import { matrixToGrid } from "./lib/matrix-to-grid.js"; import { isolines } from "./index.js"; import { FeatureCollection, Point } from "geojson"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, json: loadJsonFileSync(directories.in + filename), }; }); test("isolines", (t) => { fixtures.forEach(({ name, json }) => { const options = json.properties || json; const { breaks, matrix, cellSize, origin } = options; // allow GeoJSON featureCollection or matrix let points = json.properties ? json : matrixToGrid(matrix, origin, cellSize, options); // Results const results = truncate(isolines(points, breaks, options)); // Add red line around point data results.features.push( lineString(getCoords(envelope(points))[0], { description: "Debug line for testing", stroke: "#F00", "stroke-width": 1, }) ); if (process.env.REGEN) writeJsonFileSync(directories.out + name + ".geojson", results); t.deepEqual( results, loadJsonFileSync(directories.out + name + ".geojson"), name ); }); t.end(); }); test("isolines - skipping first break, from issue #2129", (t) => { const points = pointGrid([0, 10, 20, 30], 100); for (var i = 0; i < points.features.length; i++) { points.features[i].properties.temperature = Math.random() * 12; } const breaks = [5, 10]; const lines = isolines(points, breaks, { zProperty: "temperature", breaksProperties: [ { name: "break5", stroke: "#F00" }, { name: "break10", stroke: "#0F0" }, ], }); lines.features.push( lineString(getCoords(envelope(points))[0], { description: "Debug line for testing", stroke: "#F00", "stroke-width": 1, }) ); // Make sure an isoline is created for each break, and that its // geometry isn't empty. t.equal(lines.features[0].properties.name, "break5"); t.assert(lines.features[0].geometry.coordinates[0].length > 1); t.equal(lines.features[1].properties.name, "break10"); t.assert(lines.features[1].geometry.coordinates[0].length > 1); t.end(); }); test("isolines -- throws", (t) => { const points = pointGrid([-70.823364, -33.553984, -70.473175, -33.302986], 5); t.throws(() => isolines(randomPolygon()), "invalid points"); t.throws(() => isolines(points), /breaks is required/); t.throws(() => isolines(points, "string"), /breaks must be an Array/); t.throws( () => isolines(points, [1, 2, 3], { commonProperties: "foo" }), /commonProperties must be an Object/ ); t.throws( () => isolines(points, [1, 2, 3], { breaksProperties: "foo" }), /breaksProperties must be an Array/ ); // Updated tests since Turf 5.0 t.assert( isolines(points, [1, 2, 3], { zProperty: 5 }), "zProperty can be a string" ); t.end(); }); test("isolines -- handling properties", (t) => { const points = pointGrid([-70.823364, -33.553984, -70.473175, -33.302986], 5); const commonProperties = { name: "unknown", source: "foobar" }; const breaksProperties = [ { name: "break1" }, { name: "break2" }, { name: "break3" }, ]; const lines = isolines(points, [1, 2, 3], { zProperty: "z", commonProperties: commonProperties, breaksProperties: breaksProperties, }); t.equal(lines.features[0].properties.name, "break1"); t.equal(lines.features[0].properties.source, "foobar"); t.end(); }); test("isolines -- checks for usable grid", (t) => { const input: FeatureCollection = { type: "FeatureCollection", features: [ { type: "Feature", properties: { z: 0 }, geometry: { type: "Point", coordinates: [0, 0], }, }, { type: "Feature", properties: { z: 0 }, geometry: { type: "Point", coordinates: [0, 1], }, }, { type: "Feature", properties: { z: 0 }, geometry: { type: "Point", coordinates: [1, 1], }, }, { type: "Feature", properties: { z: 0 }, geometry: { type: "Point", coordinates: [1e-10, 1], }, }, ], }; t.throws(() => { isolines(input, [0, 1], { zProperty: "z" }); }); t.end(); }); ================================================ FILE: packages/turf-isolines/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-isolines/types.ts ================================================ import { randomPoint } from "@turf/random"; import { isolines } from "./index.js"; const points = randomPoint(100, { bbox: [0, 30, 20, 50], }); for (let i = 0; i < points.features.length; i++) { points.features[i].properties.z = Math.random() * 10; } const breaks = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; const lines = isolines(points, breaks, { zProperty: "temperature" }); const properties = { apply: "all" }; // Properties option isolines(points, breaks, { zProperty: "temperature", commonProperties: properties, }); isolines(points, breaks, { zProperty: "temperature", commonProperties: properties, breaksProperties: [{ name: "break1" }, { name: "break2" }], }); ================================================ FILE: packages/turf-kinks/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-kinks/README.md ================================================ # @turf/kinks ## kinks Takes a [linestring][1], [multi-linestring][2], [multi-polygon][3] or [polygon][4] and returns [points][5] at all self-intersections. ### Parameters * `featureIn` **[Feature][6]<([LineString][1] | [MultiLineString][2] | [MultiPolygon][3] | [Polygon][4])>** input feature ### Examples ```javascript var poly = turf.polygon([[ [-12.034835, 8.901183], [-12.060413, 8.899826], [-12.03638, 8.873199], [-12.059383, 8.871418], [-12.034835, 8.901183] ]]); var kinks = turf.kinks(poly); //addToMap var addToMap = [poly, kinks] ``` Returns **[FeatureCollection][7]<[Point][5]>** self-intersections [1]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.5 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.7 [4]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [5]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [6]: https://tools.ietf.org/html/rfc7946#section-3.2 [7]: https://tools.ietf.org/html/rfc7946#section-3.3 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/kinks ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-kinks/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { kinks } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const suite = new Benchmark.Suite("turf-kinks"); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); for (const { name, geojson } of fixtures) { suite.add(name, () => { kinks(geojson); }); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-kinks/index.ts ================================================ import { Feature, FeatureCollection, LineString, MultiLineString, MultiPolygon, Point, Polygon, } from "geojson"; import { point } from "@turf/helpers"; /** * Takes a {@link LineString|linestring}, {@link MultiLineString|multi-linestring}, * {@link MultiPolygon|multi-polygon} or {@link Polygon|polygon} and * returns {@link Point|points} at all self-intersections. * * @function * @param {Feature} featureIn input feature * @returns {FeatureCollection} self-intersections * @example * var poly = turf.polygon([[ * [-12.034835, 8.901183], * [-12.060413, 8.899826], * [-12.03638, 8.873199], * [-12.059383, 8.871418], * [-12.034835, 8.901183] * ]]); * * var kinks = turf.kinks(poly); * * //addToMap * var addToMap = [poly, kinks] */ function kinks( featureIn: Feature | T ): FeatureCollection { let coordinates: any; let feature: any; const results: FeatureCollection = { type: "FeatureCollection", features: [], }; if (featureIn.type === "Feature") { feature = featureIn.geometry; } else { feature = featureIn; } if (feature.type === "LineString") { coordinates = [feature.coordinates]; } else if (feature.type === "MultiLineString") { coordinates = feature.coordinates; } else if (feature.type === "MultiPolygon") { coordinates = [].concat(...feature.coordinates); } else if (feature.type === "Polygon") { coordinates = feature.coordinates; } else { throw new Error( "Input must be a LineString, MultiLineString, " + "Polygon, or MultiPolygon Feature or Geometry" ); } coordinates.forEach((line1: any) => { coordinates.forEach((line2: any) => { for (let i = 0; i < line1.length - 1; i++) { // start iteration at i, intersections for k < i have already // been checked in previous outer loop iterations for (let k = i; k < line2.length - 1; k++) { if (line1 === line2) { // segments are adjacent and always share a vertex, not a kink if (Math.abs(i - k) === 1) { continue; } // first and last segment in a closed lineString or ring always share a vertex, not a kink if ( // segments are first and last segment of lineString i === 0 && k === line1.length - 2 && // lineString is closed line1[i][0] === line1[line1.length - 1][0] && line1[i][1] === line1[line1.length - 1][1] ) { continue; } } const intersection: any = lineIntersects( line1[i][0], line1[i][1], line1[i + 1][0], line1[i + 1][1], line2[k][0], line2[k][1], line2[k + 1][0], line2[k + 1][1] ); if (intersection) { results.features.push(point([intersection[0], intersection[1]])); } } } }); }); return results; } // modified from http://jsfiddle.net/justin_c_rounds/Gd2S2/light/ function lineIntersects( line1StartX: any, line1StartY: any, line1EndX: any, line1EndY: any, line2StartX: any, line2StartY: any, line2EndX: any, line2EndY: any ) { // if the lines intersect, the result contains the x and y of the // intersection (treating the lines as infinite) and booleans for whether // line segment 1 or line segment 2 contain the point let denominator; let a; let b; let numerator1; let numerator2; const result = { x: null, y: null, onLine1: false, onLine2: false, }; denominator = (line2EndY - line2StartY) * (line1EndX - line1StartX) - (line2EndX - line2StartX) * (line1EndY - line1StartY); if (denominator === 0) { if (result.x !== null && result.y !== null) { return result; } else { return false; } } a = line1StartY - line2StartY; b = line1StartX - line2StartX; numerator1 = (line2EndX - line2StartX) * a - (line2EndY - line2StartY) * b; numerator2 = (line1EndX - line1StartX) * a - (line1EndY - line1StartY) * b; a = numerator1 / denominator; b = numerator2 / denominator; // if we cast these lines infinitely in both directions, they intersect here: result.x = line1StartX + a * (line1EndX - line1StartX); result.y = line1StartY + a * (line1EndY - line1StartY); // if line1 is a segment and line2 is infinite, they intersect if: if (a >= 0 && a <= 1) { result.onLine1 = true; } // if line2 is a segment and line1 is infinite, they intersect if: if (b >= 0 && b <= 1) { result.onLine2 = true; } // if line1 and line2 are segments, they intersect if both of the above are true if (result.onLine1 && result.onLine2) { return [result.x, result.y]; } else { return false; } } export { kinks }; export default kinks; ================================================ FILE: packages/turf-kinks/lib/sweepline-intersections-export.ts ================================================ // Get around problems with moduleResolution node16 and some older libraries. // Manifests as "This expression is not callable ... has no call signatures" // https://stackoverflow.com/a/74709714 import lib from "sweepline-intersections"; export const sweeplineIntersections = lib as unknown as typeof lib.default; ================================================ FILE: packages/turf-kinks/package.json ================================================ { "name": "@turf/kinks", "version": "7.3.4", "description": "Takes a GeoJSON feature and returns points at all self-intersections.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "kinks", "self-intersection" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/meta": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-kinks/test/in/hourglass.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-50, 5], [-40, -10], [-50, -10], [-40, 5], [-50, 5] ] ] } } ================================================ FILE: packages/turf-kinks/test/in/issue-2627.geojson ================================================ { "type": "Polygon", "coordinates": [ [ [11.032103, 53.905391], [11.032478, 53.90552], [11.032784, 53.905631], [11.033154, 53.905675], [11.03376, 53.905665], [11.034415, 53.90571], [11.034833, 53.905631], [11.035396, 53.905492], [11.036094, 53.905583], [11.03662, 53.90565], [11.036958, 53.905574], [11.037118, 53.905526], [11.037194, 53.905991], [11.037741, 53.90898], [11.038202, 53.911439], [11.038519, 53.913243], [11.038932, 53.915534], [11.039125, 53.91658], [11.039436, 53.918137], [11.038175, 53.91785], [11.038368, 53.917654], [11.037183, 53.917379], [11.036979, 53.91743], [11.036662, 53.917695], [11.036341, 53.918071], [11.035691, 53.917913], [11.035332, 53.917869], [11.032505, 53.917787], [11.032022, 53.917749], [11.032135, 53.918662], [11.031582, 53.918731], [11.031067, 53.918848], [11.030268, 53.91912], [11.028396, 53.919793], [11.02639, 53.920548], [11.02573, 53.920772], [11.025456, 53.920823], [11.023611, 53.909521], [11.024276, 53.909518], [11.025022, 53.909521], [11.025783, 53.909511], [11.028165, 53.909508], [11.028664, 53.909527], [11.028868, 53.909464], [11.02904, 53.908601], [11.029201, 53.907208], [11.02934, 53.90625], [11.029839, 53.906275], [11.030123, 53.90625], [11.030461, 53.906149], [11.031008, 53.905963], [11.031298, 53.905852], [11.03162, 53.905523], [11.031824, 53.9054], [11.032103, 53.905391] ], [ [11.03228, 53.90643], [11.032054, 53.906446], [11.031904, 53.906478], [11.031711, 53.906655], [11.031588, 53.906762], [11.031765, 53.906775], [11.031985, 53.906699], [11.032124, 53.906645], [11.032301, 53.906629], [11.032435, 53.906509], [11.03228, 53.90643] ], [ [11.031631, 53.908491], [11.031411, 53.908497], [11.03126, 53.908671], [11.031368, 53.908845], [11.0317, 53.908901], [11.031931, 53.908816], [11.032012, 53.908699], [11.031926, 53.908544], [11.031631, 53.908491] ], [ [11.033261, 53.909436], [11.033288, 53.909543], [11.033422, 53.909502], [11.033369, 53.909439], [11.033261, 53.909436] ], [ [11.031277, 53.911227], [11.031159, 53.911265], [11.031089, 53.911325], [11.031153, 53.911455], [11.031368, 53.911439], [11.031421, 53.91129], [11.031277, 53.911227] ], [ [11.029549, 53.911297], [11.029567, 53.911309], [11.02956, 53.911306], [11.029458, 53.911433], [11.029608, 53.911493], [11.02971, 53.911404], [11.029567, 53.911309], [11.029576, 53.911313], [11.029549, 53.911297] ], [ [11.02764, 53.911442], [11.027521, 53.911534], [11.027709, 53.911597], [11.027849, 53.911496], [11.02764, 53.911442] ], [ [11.034109, 53.912001], [11.033986, 53.912039], [11.034066, 53.912166], [11.034168, 53.912197], [11.034281, 53.912159], [11.034302, 53.912077], [11.034109, 53.912001] ], [ [11.029367, 53.913382], [11.029276, 53.913404], [11.029147, 53.91355], [11.029142, 53.91367], [11.02927, 53.913746], [11.029453, 53.913746], [11.029501, 53.91348], [11.029378, 53.913388], [11.029383, 53.913407], [11.029367, 53.913382] ], [ [11.035895, 53.913486], [11.035783, 53.913496], [11.03581, 53.913584], [11.036029, 53.913641], [11.036137, 53.913572], [11.035895, 53.913486] ], [ [11.032178, 53.913496], [11.03199, 53.913534], [11.031813, 53.913692], [11.031491, 53.913869], [11.031083, 53.913957], [11.03066, 53.914071], [11.030349, 53.914169], [11.029941, 53.914358], [11.029807, 53.914498], [11.029801, 53.914769], [11.029925, 53.914959], [11.030257, 53.915038], [11.030654, 53.915013], [11.031024, 53.91494], [11.031464, 53.914791], [11.031738, 53.914592], [11.032199, 53.914093], [11.032344, 53.913657], [11.032178, 53.913496] ], [ [11.034232, 53.91621], [11.034109, 53.916333], [11.034189, 53.916463], [11.034324, 53.916418], [11.034318, 53.916292], [11.034232, 53.91621] ], [ [11.028745, 53.916801], [11.028584, 53.916918], [11.028707, 53.917022], [11.028863, 53.917117], [11.0289, 53.917009], [11.028954, 53.916873], [11.028745, 53.916801] ], [ [11.035874, 53.917521], [11.035761, 53.917578], [11.036094, 53.917704], [11.036185, 53.917625], [11.035879, 53.917527], [11.035874, 53.917521] ] ] } ================================================ FILE: packages/turf-kinks/test/in/multi-linestring.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-49.43847656249999, -8.798225459016345], [-39.7705078125, -8.798225459016345], [-39.7705078125, 0.4833927027896987], [-49.43847656249999, 0.4833927027896987], [-49.43847656249999, -8.798225459016345] ], [ [-45, -13.795406203132826], [-35.2001953125, -13.795406203132826], [-35.2001953125, -4.083452772038619], [-45, -4.083452772038619], [-45, -13.795406203132826] ] ] } } ================================================ FILE: packages/turf-kinks/test/in/multi-polygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-49.43847656249999, -8.798225459016345], [-39.7705078125, -8.798225459016345], [-39.7705078125, 0.4833927027896987], [-49.43847656249999, 0.4833927027896987], [-49.43847656249999, -8.798225459016345] ] ], [ [ [-45, -13.795406203132826], [-35.2001953125, -13.795406203132826], [-35.2001953125, -4.083452772038619], [-45, -4.083452772038619], [-45, -13.795406203132826] ] ] ] } } ================================================ FILE: packages/turf-kinks/test/in/open-hourglass.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-46.4501953125, -8.298470297067356], [-40.84716796875, -3.754634090910913], [-40.84716796875, -8.581021215641842], [-46.53808593749999, -3.90809888189411] ] } } ================================================ FILE: packages/turf-kinks/test/in/switzerlandKinked.geojson ================================================ { "type": "Feature", "properties": { "ADMIN": "Switzerland", "expectedIntersections": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [8.61743737800009, 47.75731862400008], [8.607618856000101, 47.76225372300013], [8.604104858000142, 47.774397685000025], [8.603174682000088, 47.78731679300003], [8.601624390000069, 47.7946031700001], [8.58312422700007, 47.800235901000036], [8.558216187000085, 47.80116607700009], [8.542299846000077, 47.79501658100011], [8.55160160300008, 47.779255270000135], [8.536512085000084, 47.77408762600004], [8.482665242000053, 47.76685292600007], [8.471503133000112, 47.76705963200004], [8.463648315000086, 47.763907370000084], [8.450109090000097, 47.750471497000035], [8.445458211000044, 47.743185120000135], [8.437913452000089, 47.723186341000115], [8.427268107000117, 47.716468404000096], [8.401946655000131, 47.707089132000135], [8.392128133000142, 47.69951853500007], [8.39099125100006, 47.69212880500007], [8.395228719000102, 47.68481659000008], [8.397709188000078, 47.676289979000074], [8.39130131000013, 47.66546376500011], [8.40701094500011, 47.66156219500007], [8.411971883000149, 47.66104543000003], [8.43760339400012, 47.64784210200014], [8.458273966000121, 47.63988393200009], [8.476050659000066, 47.640400696000114], [8.490830119000066, 47.64556833900011], [8.504679402000136, 47.65226043700005], [8.519665568000107, 47.65735056600002], [8.568241414000113, 47.66293162100004], [8.582194051000101, 47.6613296510001], [8.593588683000092, 47.658168560000036], [8.598213745000066, 47.656885478000106], [8.607308797000115, 47.65629119900004], [8.601624390000069, 47.6325975550001], [8.595113159000107, 47.634819641], [8.594493042000039, 47.64096913700007], [8.593562866000099, 47.642571106000105], [8.589222046000117, 47.64246775400008], [8.583951050000081, 47.64112416600011], [8.580333699000107, 47.63900543200003], [8.578059936000074, 47.63347605400014], [8.579713583000114, 47.62892852900009], [8.582090698000087, 47.625026957000046], [8.582504110000087, 47.62159047500009], [8.581263875000047, 47.614769186000046], [8.581780639000101, 47.60766367700012], [8.580643758000093, 47.600170594000076], [8.576305366000042, 47.595023058000066], [8.574132527000103, 47.59244496700009], [8.560696655000072, 47.58939605700007], [8.551719149000036, 47.59686332900009], [8.54963789900006, 47.59859446200005], [8.53775231900002, 47.61213368800014], [8.522352742000038, 47.621900534000076], [8.492380411000084, 47.619833476000025], [8.46178796400008, 47.606139221], [8.450109090000097, 47.58903432300005], [8.448868856000075, 47.58428009100007], [8.421100326000044, 47.581111870000115], [8.41806970200011, 47.5807660940001], [8.354094279000037, 47.58102447500008], [8.316163777000014, 47.587845764000036], [8.306345255000053, 47.592186585000036], [8.299317260000038, 47.60182423900005], [8.293942912000091, 47.61146189400006], [8.288568562000108, 47.615802715000115], [8.276993042000072, 47.61662953700005], [8.251051473000132, 47.6220038860001], [8.232964721000116, 47.6219522100001], [8.17901452600006, 47.615802715000115], [8.173846883000067, 47.613528951000035], [8.168885946000103, 47.608645528000096], [8.162064656000041, 47.60376210500007], [8.14377119900007, 47.60006724100006], [8.122067098000088, 47.592134908000105], [8.113902221000075, 47.587845764000036], [8.105427286000065, 47.58125701900005], [8.10139652500007, 47.57619272900007], [8.09695235100014, 47.57185190900009], [8.08723718200011, 47.567381897000075], [8.042278686000088, 47.56056060800012], [7.91215743000015, 47.56056060800012], [7.909470256000105, 47.56479807600007], [7.907506551000097, 47.574177348000035], [7.904302613000112, 47.58355662100007], [7.898204794000066, 47.587845764000036], [7.83371260600012, 47.590481263000044], [7.819656616000117, 47.59533884700008], [7.801466512000076, 47.57608937600014], [7.78555017100004, 47.563196106000134], [7.766739949000055, 47.55596140600008], [7.727320447000125, 47.550422624000106], [7.683437540000114, 47.5442566940001], [7.661423380000116, 47.54624623600003], [7.64690103500007, 47.55144523600006], [7.609746948000094, 47.56474639900006], [7.612337281000094, 47.56473104100013], [7.635895223000091, 47.5645913700001], [7.646540568000091, 47.5715418500001], [7.65966638200004, 47.59657908200012], [7.637032104000099, 47.594977112000066], [7.586028488000125, 47.58461854400011], [7.585482836000097, 47.584479135], [7.550319051000116, 47.57549509700007], [7.52634118600011, 47.56645172100011], [7.520866596000104, 47.563416048000136], [7.482726278000058, 47.54226715100006], [7.485103394000106, 47.54159535700006], [7.501743205000139, 47.532965394000115], [7.505153850000056, 47.53301707000014], [7.505463908000138, 47.52301768100003], [7.501123087000082, 47.51730743400006], [7.493061564000072, 47.51549875900008], [7.482726278000058, 47.51699737600009], [7.476938517000093, 47.51487864300012], [7.475594930000028, 47.511726379000066], [7.477765340000104, 47.50769561800007], [7.484896688000049, 47.50090016700011], [7.485776134000076, 47.49876751100004], [7.485930217000146, 47.498393860000135], [7.485826864000103, 47.49578420000012], [7.484483276000049, 47.49294199700006], [7.482726278000058, 47.491262512000105], [7.467430053000101, 47.48190907800006], [7.454510946000113, 47.483200989000096], [7.445995797000137, 47.48688412900012], [7.44148848500015, 47.48883372000003], [7.425985555000068, 47.49250274700003], [7.414306681000085, 47.490177307000096], [7.414410034000099, 47.484027812000136], [7.419474325000095, 47.477852478000045], [7.422781616000094, 47.475423686000084], [7.427639200000101, 47.47074696900012], [7.429292847000056, 47.4651142380001], [7.426088908000082, 47.45576080300006], [7.420563120000111, 47.450857028000115], [7.406348511000118, 47.438242493000075], [7.388218887000107, 47.43328886000012], [7.37854659000007, 47.430646058000036], [7.336930048000085, 47.43185368000013], [7.309093465000103, 47.43266143800008], [7.28263513200011, 47.42888905900014], [7.244807984000119, 47.41772694900001], [7.2380900470001, 47.41679677300007], [7.230338583000105, 47.41901886100007], [7.226307820000102, 47.422636211000054], [7.223517293000043, 47.426227723000125], [7.219383179000118, 47.42847564700014], [7.190030965000034, 47.43472849600005], [7.168326863000061, 47.44356516500005], [7.1626424560001, 47.45989491800006], [7.180832560000056, 47.48826528000009], [7.15365075700015, 47.48640492800007], [7.142169389000088, 47.487650968000054], [7.140318237000116, 47.487851868000064], [7.127295776000096, 47.49294199700006], [7.103731323000091, 47.49627512600006], [7.053915242000073, 47.49038401300007], [7.027973674000094, 47.49294199700006], [7.018878621000056, 47.49767039000005], [7.009783569000149, 47.49924652200008], [7.000791870000114, 47.49767039000005], [6.991903524000094, 47.49294199700006], [6.973300008000138, 47.489092103000104], [6.975780477000114, 47.47795583100009], [6.986115763000043, 47.46413238500011], [6.990973348000068, 47.45222096800009], [6.983428589000113, 47.44379770900011], [6.968545777000145, 47.43519358300006], [6.952319376000048, 47.428837383000115], [6.926067749000112, 47.42485829700004], [6.924517456000103, 47.40599640000002], [6.898782593000107, 47.39571279000003], [6.884003133000078, 47.382586976000056], [6.871600789000127, 47.3669548550001], [6.866639852000077, 47.354164937000036], [6.985598999000104, 47.362123108000105], [7.003995809000088, 47.36814341300004], [7.018878621000056, 47.3599010210001], [7.033864787000113, 47.350650940000094], [7.044303426000056, 47.340496521000034], [7.036551961000043, 47.32951527900005], [7.027146850000094, 47.32543284100004], [7.016914917000094, 47.3235208130001], [7.00647627800015, 47.319360860000074], [6.991903524000094, 47.30595082700006], [6.986529174000054, 47.30450388700007], [6.97743412300008, 47.303728739000036], [6.958623901000067, 47.29055125000005], [6.952216024000023, 47.27003570500008], [6.956246785000104, 47.24523101800014], [6.88834395300006, 47.211305441000036], [6.859301798000075, 47.1909190880001], [6.840284871000108, 47.169525045000086], [6.838076256000079, 47.16813159700007], [6.774759155000112, 47.128183899000135], [6.744786824000073, 47.121052551000105], [6.746027059000113, 47.10394765300006], [6.731661011000085, 47.098883363000084], [6.727940307000097, 47.097126363000115], [6.724219604000069, 47.09077016200007], [6.699104858000055, 47.08462066700011], [6.689699747000105, 47.07829030400009], [6.676263875000132, 47.06239980100008], [6.688252807000112, 47.04384796100004], [6.665411824000103, 47.0212911990001], [6.598697550000082, 46.986538798000055], [6.491107218000138, 46.96338775700008], [6.442634725000062, 46.944164124000054], [6.427751913000122, 46.909075827], [6.431886027000132, 46.900032451000044], [6.445218546000064, 46.882617493000026], [6.448422486000141, 46.871558737000015], [6.4467688390001, 46.85770945300007], [6.443117662000049, 46.8514551210001], [6.441187785000068, 46.84814931300005], [6.434263143000095, 46.83954518700011], [6.418553507000127, 46.80701487200008], [6.417106568000122, 46.802157288000075], [6.419897095000096, 46.796524557000026], [6.425168090000113, 46.79161529600009], [6.432609497000044, 46.78598256500007], [6.433022908000055, 46.76911021000009], [6.429198853000116, 46.760816142000124], [6.417933390000144, 46.75110097300009], [6.407391398000101, 46.745700786000015], [6.374215128000088, 46.73360850100005], [6.347860148000109, 46.71317047200009], [6.337938273000106, 46.70740855000011], [6.266314738000062, 46.68035593700006], [6.131852661000039, 46.59560658800004], [6.118416789000065, 46.58346262600014], [6.12151737500011, 46.57028513700007], [6.145701945000099, 46.5516299440001], [6.110355265000095, 46.52083079000002], [6.075525349000117, 46.479592998000015], [6.064156535000052, 46.47111806300012], [6.060229126000081, 46.46502024400007], [6.060229126000081, 46.45990427700008], [6.062399536000072, 46.45520172200008], [6.064776652000091, 46.451067607000056], [6.065500122000088, 46.447992859000124], [6.065500122000088, 46.44037058600006], [6.06756717900015, 46.433600973000125], [6.065706827000071, 46.42701222800014], [6.054234660000134, 46.41941579200008], [6.059019361000082, 46.4173832110001], [6.108184855000104, 46.39649729400014], [6.12286096200009, 46.38554189100006], [6.135056600000098, 46.37040069600005], [6.136400187000078, 46.359341940000036], [6.118607037000089, 46.3317710850001], [6.104050740000076, 46.30921580000012], [6.100743448000088, 46.30141265900011], [6.093612101000133, 46.27309397400012], [6.093095337000108, 46.26229360000008], [6.094025513000133, 46.253043518000055], [6.089684692000077, 46.24637725900004], [6.067670532000079, 46.24162302700006], [6.061882772000104, 46.24115793900003], [6.055888305000082, 46.241674704000076], [6.048033488000044, 46.243431702000066], [6.04617313600005, 46.24353505500008], [6.044519491000102, 46.243431702000066], [6.042865844000062, 46.243069967000054], [5.982921183000144, 46.22270945200012], [5.958529907000127, 46.2119607540001], [5.954809204000128, 46.199920146000125], [5.965247843000071, 46.186225891000106], [5.982921183000144, 46.170826314000124], [5.979820597000128, 46.16224802700009], [5.972172485000044, 46.152171122000055], [5.958839966000113, 46.13046702100007], [5.982921183000144, 46.140440572000074], [6.028293090000091, 46.14793365500009], [6.073871704000084, 46.14917389000004], [6.107874796000118, 46.13863189700007], [6.140327596000134, 46.150207418000036], [6.191383911000088, 46.1917035940001], [6.255359335000094, 46.22110748400007], [6.281197550000115, 46.24007273400014], [6.276029907000094, 46.263120423], [6.269001912000078, 46.265239156000064], [6.252258748000145, 46.259916484000115], [6.241820109000116, 46.263688864000045], [6.237582642000064, 46.2679263310001], [6.227970825000057, 46.28446278900009], [6.227454060000099, 46.2884935510001], [6.21825565600011, 46.30549509700012], [6.214121541000083, 46.31546864900011], [6.219495890000133, 46.32911122700003], [6.240579874000076, 46.34895497700012], [6.269105265000121, 46.3750257370001], [6.301558065000052, 46.394481914000096], [6.332357218000112, 46.40138071700008], [6.365223430000128, 46.40244008400006], [6.397676229000069, 46.4081761680001], [6.482942342000115, 46.44858713800008], [6.547021118000117, 46.457372132000074], [6.613683716000139, 46.45589935400008], [6.762666870000118, 46.42926015200004], [6.77771555400011, 46.42410649300004], [6.777756388000114, 46.42409250900005], [6.787058146000049, 46.41417063500003], [6.78810673300012, 46.40500797800007], [6.789228556000126, 46.395205383000075], [6.782097209000114, 46.37846222000013], [6.755742228000145, 46.357068177000116], [6.750367879000095, 46.34551849400009], [6.769488159000076, 46.32267751100008], [6.804938192000094, 46.2966067510001], [6.827675822000089, 46.26947662400002], [6.792225789000071, 46.22167592400004], [6.774862508000126, 46.185864156], [6.765664103000034, 46.1516026810001], [6.774345743000083, 46.134807841000054], [6.853927449000111, 46.12261220300013], [6.869223673000079, 46.112328593000115], [6.868190144000096, 46.10468048200005], [6.861162150000098, 46.09703236900006], [6.853100627000089, 46.09021108100012], [6.848553100000061, 46.08504343700011], [6.851343628000109, 46.086025290000094], [6.853100627000089, 46.07610341400007], [6.853410685000085, 46.065664775000045], [6.851963745000091, 46.06468292200009], [6.852377156000102, 46.056931458000065], [6.850310099000126, 46.05274566700004], [6.850930216000108, 46.04964508100011], [6.859715210000104, 46.04499420200003], [6.869223673000079, 46.044064026000086], [6.876871786000066, 46.04809478800007], [6.884003133000078, 46.053210755000066], [6.892374715000074, 46.055587871000114], [6.91511234500004, 46.048611553000114], [6.982808471000055, 45.995384827000066], [6.987666056000052, 45.99311106400003], [6.991283406000122, 45.98246571900006], [7.002755575000066, 45.961691793000085], [7.009783569000149, 45.943398336000115], [7.015157918000114, 45.93332143100008], [7.022082560000115, 45.925259909], [7.066937703000093, 45.89022328800007], [7.090192097000113, 45.88050811800014], [7.120887899000138, 45.876115621000054], [7.153547404000022, 45.876529033000054], [7.183726440000044, 45.88045644200011], [7.245428100000083, 45.898129782000126], [7.273540079000043, 45.91027374300003], [7.286665893000105, 45.913426005000076], [7.361803426000108, 45.90784495100007], [7.393842814000038, 45.91569976800011], [7.452960652000087, 45.94587880500009], [7.482726278000058, 45.95487050400004], [7.503706909000073, 45.956730855000046], [7.514662312000041, 45.966704407000066], [7.524377482000091, 45.97807322300005], [7.541120646000138, 45.98411936500008], [7.643026571000121, 45.96634267200005], [7.6587362060001, 45.96003814700006], [7.673722371000054, 45.950322978000116], [7.692532593000067, 45.93120269800002], [7.693979533000061, 45.92867055300013], [7.706278523, 45.92572499700012], [7.714650105000089, 45.92712026], [7.72219486500012, 45.92960072800008], [7.732013387000109, 45.930375875000095], [7.780072469000061, 45.91812856100006], [7.807564331000037, 45.91849029600007], [7.825444376000093, 45.91466623900004], [7.831232137000143, 45.91445953400006], [7.843737833000148, 45.91921376600007], [7.846114949000111, 45.92257273300007], [7.845288127000089, 45.927792053000076], [7.848388712000116, 45.93807566300009], [7.84962011600004, 45.939712062000126], [7.870201292731366, 45.94036963077022], [7.872917431422025, 45.95938260160503], [7.8837819861848, 45.97386867462197], [7.898204794000066, 45.9819489540001], [7.969104858000037, 45.99311106400003], [7.978716674000026, 45.995178121000095], [7.985848022000084, 45.99931223600004], [7.998353719000079, 46.01062937500009], [7.999077189000076, 46.012799784000094], [8.008792358000107, 46.02768259700014], [8.010652710000102, 46.02969797800009], [8.015923706000137, 46.058171692000116], [8.016027059000066, 46.06938547800007], [8.018197469000143, 46.080857646000084], [8.025328817000087, 46.09114125600007], [8.035354044000115, 46.096515605000036], [8.056024617000048, 46.098065898000044], [8.066876668000077, 46.10059804300005], [8.110594930000076, 46.12695302300011], [8.132299032000077, 46.1593541470001], [8.129508504000114, 46.19604441300007], [8.099949585000076, 46.23562856100003], [8.076591837000109, 46.24973622600007], [8.073077840000082, 46.253611959000125], [8.07731530700002, 46.26203521800011], [8.087340535000038, 46.27180206300005], [8.106874227000048, 46.28554799500009], [8.128474975000131, 46.29247263600007], [8.171883178000115, 46.299190573], [8.192553752000038, 46.30916412400012], [8.241749715000111, 46.35412262000003], [8.270068400000099, 46.364044495000115], [8.28154056800011, 46.37011647500006], [8.291462443000114, 46.37835886600001], [8.297456909000033, 46.387505596000096], [8.297043497000118, 46.397634176000054], [8.290428914000131, 46.40112233500008], [8.286604859000079, 46.40535980300004], [8.294976441000074, 46.418046366000084], [8.316267130000142, 46.43365264900004], [8.343448934000037, 46.44388458300011], [8.385906925000114, 46.4502060180001], [8.399156128000072, 46.452178650000064], [8.427888224000071, 46.448690491000036], [8.441634155000116, 46.434944560000076], [8.445768270000116, 46.412361959000066], [8.446285034000084, 46.382182923000045], [8.442874389000053, 46.353373312000116], [8.426647990000049, 46.30156768800006], [8.423237345000103, 46.275832825000066], [8.427164754000074, 46.25144154900002], [8.43812015800006, 46.23537017800007], [8.456516968000045, 46.2248281870001], [8.482665242000053, 46.217541809000124], [8.510260457000072, 46.20787831700008], [8.538682495000074, 46.18762115500007], [8.601831095000136, 46.122818909000074], [8.611546264000083, 46.11935658800013], [8.630873250000121, 46.11470570900008], [8.67748539200008, 46.09579213500004], [8.695055379000081, 46.095172018000056], [8.702186727000111, 46.097962545000115], [8.717689656000118, 46.10752268500002], [8.723890828000094, 46.109538066000084], [8.728983368000115, 46.10823310300009], [8.732159057000047, 46.10741933200009], [8.739497111000048, 46.098065898000044], [8.747145223000103, 46.09444854800006], [8.763164917000068, 46.09289825500005], [8.793860717000115, 46.093415019000076], [8.8089502360001, 46.08974599300009], [8.834375041000015, 46.06638824500004], [8.819595581000101, 46.04292714500008], [8.790966838000116, 46.018690898000074], [8.773396850000069, 45.99057891900014], [8.769572794000112, 45.98577301000006], [8.767919149000079, 45.983085836000015], [8.785075724000109, 45.982310690000105], [8.800371948000077, 45.97853831000009], [8.857732788000078, 45.95709259100005], [8.86445072400008, 45.95342356400005], [8.870961954000052, 45.947067363000116], [8.88078047600004, 45.93109934500009], [8.89814375800006, 45.909550273000036], [8.906515340000112, 45.896476135000086], [8.91209639400003, 45.883401998000124], [8.9137500410001, 45.866090393000036], [8.909719279000086, 45.853688050000045], [8.903724812000064, 45.84180247000012], [8.900004109000065, 45.826402893000136], [8.93958825700011, 45.83482615200003], [8.972351115, 45.82464589500006], [9.002426798000073, 45.820718486], [9.034362834000149, 45.84810699500014], [9.05927087400002, 45.88195505800013], [9.063094930000148, 45.89895660400006], [9.051726115000065, 45.91554473900007], [9.042321004000115, 45.919730530000095], [9.0205135490001, 45.92277944000003], [9.010798380000068, 45.92665517200007], [9.001703329000094, 45.93606028300013], [8.993435099000124, 45.95425038700009], [8.982686401000109, 45.96184682200004], [8.980515991000118, 45.964378968000034], [8.979792521000121, 45.96691111300004], [8.980515991000118, 45.969494934000124], [8.982686401000109, 45.9719754030001], [9.015552612000135, 45.99311106400003], [8.997775919000105, 46.02794097900011], [9.002116740000105, 46.039309795000094], [9.027748250000059, 46.05310740200014], [9.049659057000014, 46.05791331000006], [9.059167521000091, 46.061789043], [9.067125692000076, 46.07114247700014], [9.07032963100005, 46.083441467000085], [9.068159220000041, 46.1059723920001], [9.072086629000097, 46.1188915000001], [9.090586792000124, 46.13816680900004], [9.163243856000065, 46.17227325500002], [9.16378802500006, 46.17298926700002], [9.171098673000103, 46.182608541000036], [9.17574955200007, 46.194132385000046], [9.181330607000092, 46.20405426000005], [9.192182658000121, 46.20963531500007], [9.2041715900001, 46.21356272400004], [9.215747111000042, 46.221055807000084], [9.224842163000119, 46.23118438700004], [9.239724975000058, 46.266996155000044], [9.2689738360001, 46.30937083000006], [9.275175008000076, 46.33138499000006], [9.273831420000107, 46.344252421000135], [9.260395548000076, 46.379728292000095], [9.260292195000147, 46.39401682600007], [9.262876017000053, 46.40662587500009], [9.26091231300012, 46.41665110300002], [9.247579794000103, 46.423033142000065], [9.237967977000068, 46.436546530000015], [9.245822794000105, 46.461041158000086], [9.263186076000125, 46.48512237600002], [9.282306355000117, 46.497369691000046], [9.330985555000069, 46.501503805000084], [9.350829305000047, 46.49786061600008], [9.35155277500013, 46.48548411100012], [9.377080933000087, 46.468689270000056], [9.384625691000025, 46.46641550800004], [9.395477742000082, 46.46941274000005], [9.400335327000107, 46.475407207000075], [9.403849324000134, 46.482512716000116], [9.41067061400011, 46.488894756000036], [9.426793660000072, 46.497111308000086], [9.434648478000014, 46.49832570400011], [9.437852417000101, 46.49204701800011], [9.443846883000106, 46.396135559000044], [9.442399943000112, 46.38089101200009], [9.444363648000149, 46.37528411900007], [9.451598348000118, 46.37037485800005], [9.47371586100013, 46.361874085000125], [9.482604207000065, 46.35680979400007], [9.502551310000058, 46.32073964500006], [9.51526371300011, 46.30859568300005], [9.536451050000068, 46.29862213200005], [9.559705444000087, 46.29273101800004], [9.674323771000047, 46.2918008420001], [9.693133992000043, 46.297071839000125], [9.708430217000114, 46.31174794600011], [9.708843628000125, 46.31962860100006], [9.707293335000088, 46.33097157900005], [9.709257039000136, 46.34239207000013], [9.72010909000008, 46.350892843000054], [9.730857788000094, 46.35071197500011], [9.755249064000026, 46.340531718000136], [9.768064819000102, 46.338619690000115], [9.78883874500005, 46.34329640800007], [9.855397990000142, 46.3669642130001], [9.899012899000098, 46.37215769500003], [9.918443237000076, 46.37115000400004], [9.939010457000052, 46.36745514000006], [9.96402185100007, 46.356086325000064], [9.970636434000141, 46.33980824900004], [9.971049846000057, 46.32001617500006], [9.977561076000114, 46.29810536700009], [9.99223718200011, 46.284359436000074], [10.031717977000142, 46.26007151300007], [10.041846557000099, 46.243069967000054], [10.04267338000011, 46.220487366000015], [10.075746297000109, 46.2200222780001], [10.11791426600007, 46.231132711000015], [10.145819539000058, 46.24332834900011], [10.15894535300012, 46.26244862900012], [10.14612959800013, 46.28027699800006], [10.104891805000136, 46.30937083000006], [10.095796753000059, 46.32053293900009], [10.091765991000074, 46.3289561980001], [10.092386108000113, 46.33810292600006], [10.097450398000092, 46.35164215100005], [10.104995158000065, 46.3613573210001], [10.125975789000051, 46.374379782000034], [10.133210490000124, 46.381097717000046], [10.14075524900008, 46.40290517200009], [10.133417195000078, 46.41401560500009], [10.11615726700009, 46.418821514000115], [10.071405477000042, 46.424815980000034], [10.04205326300007, 46.43272247400009], [10.026343627000074, 46.446261699000075], [10.04401696800008, 46.46698394800009], [10.035335327000041, 46.4710663860001], [10.03047774300012, 46.476673279000124], [10.028100627000072, 46.48393381800008], [10.026860392000117, 46.493183900000105], [10.031201212000099, 46.503829245000105], [10.03140791900006, 46.52579172800006], [10.032751506000125, 46.532974752000115], [10.041329793000074, 46.541863098000135], [10.062930542000117, 46.55674591100009], [10.07119877100007, 46.56439402300006], [10.083497762000121, 46.5970018510001], [10.087838582000103, 46.60439158200012], [10.097450398000092, 46.6080347700001], [10.192121623000048, 46.62681915400012], [10.21785648600013, 46.626974182000055], [10.233772827000053, 46.61798248400004], [10.235736531000072, 46.606691183000066], [10.230258830000082, 46.58614980100006], [10.234703003000106, 46.57529775000012], [10.27594079500011, 46.56553090500006], [10.283795614000041, 46.56072499600006], [10.28906660900006, 46.55568654400008], [10.295371135000096, 46.55108734100014], [10.306636597000136, 46.54749582900007], [10.319452351000024, 46.546048889000076], [10.354282267000087, 46.5483226530001], [10.425905803000148, 46.53532603000005], [10.443992554000147, 46.5377289840001], [10.45183267900012, 46.546701572000075], [10.457945190000146, 46.553697001000046], [10.465903361000102, 46.57847585100009], [10.466626831000013, 46.604288229000105], [10.459082072000058, 46.62356353800004], [10.438204793000097, 46.635655823000036], [10.395623413000123, 46.63880808500008], [10.377536662000097, 46.653277486], [10.36916508000013, 46.6723977660001], [10.373919312000112, 46.681906230000095], [10.384771363000084, 46.68901173900011], [10.394383179000073, 46.70081980400002], [10.396553588000074, 46.715004984000075], [10.395623413000123, 46.72639963900008], [10.399654175000109, 46.73554636700007], [10.41660404400011, 46.743013611000094], [10.42869633, 46.75564849900013], [10.426215861000031, 46.76942026800006], [10.419084513000087, 46.7839671830001], [10.417224162000082, 46.798849997000076], [10.439031616000108, 46.81688507100006], [10.444922730000116, 46.823241272000075], [10.4485400800001, 46.832232971000025], [10.453811076000136, 46.86442738900007], [10.451433960000088, 46.88576975600009], [10.46383630300005, 46.919747009000105], [10.458461955000104, 46.9366193650001], [10.449573608000094, 46.943905742000084], [10.41557051600006, 46.96240590500011], [10.39469323700007, 46.98540191600006], [10.384357950000066, 46.992998352000114], [10.384357950000066, 46.99315338200006], [10.384254598000041, 46.99315338200006], [10.37898360200009, 46.99550465900009], [10.373402547000097, 46.99625396700009], [10.367924846000108, 46.99550465900009], [10.338882691000094, 46.984110006000094], [10.313664592000066, 46.9643179330001], [10.296197957000118, 46.94137359700008], [10.295681193000064, 46.92269256600011], [10.27077315200009, 46.9218915810001], [10.251342814000111, 46.92537974000004], [10.235116415000107, 46.92331268400008], [10.219923543000078, 46.90576853500011], [10.215169311000096, 46.89310780900007], [10.214342488000057, 46.88468455000009], [10.21165531400004, 46.87703643800009], [10.201423381000069, 46.86683034300003], [10.157808471000095, 46.85161163400011], [10.131970255000084, 46.84657318200004], [10.125187508000124, 46.84675122900012], [10.111299683000084, 46.84711578400007], [10.068098185000025, 46.85662424800006], [10.045567260000098, 46.865564271000096], [10.006913289000096, 46.890756531000136], [9.899943075000039, 46.91439849900007], [9.875138387000106, 46.92742096000009], [9.86242598400014, 46.93977162700014], [9.860772339000107, 46.9491508990001], [9.86397627800008, 46.95992543600002], [9.86645674600004, 46.9833865360001], [9.870590861000068, 46.99294667600009], [9.870590861000068, 46.998837790000096], [9.866766805000026, 47.00193837500004], [9.860565633000135, 47.00160247800005], [9.856328165000093, 47.004082947000114], [9.857981812000048, 47.015477600000025], [9.669052775000097, 47.05619862900008], [9.65230961100005, 47.05792979000006], [9.599909709000116, 47.053485616000046], [9.581202840000032, 47.05687042300008], [9.560635620000141, 47.052400412000054], [9.499554077000141, 47.05935089100004], [9.477023153000118, 47.063898417000075], [9.475886271000121, 47.07322601400011], [9.487565145000104, 47.08394887400004], [9.50286136800014, 47.09469757200014], [9.512369832000047, 47.108030091000074], [9.511853068000107, 47.12937245700007], [9.503481486000112, 47.145392151000124], [9.492629435000083, 47.159809876000054], [9.484981323000085, 47.17634633400013], [9.487358439000047, 47.210013529000065], [9.504618368000138, 47.243732402000035], [9.52115482500011, 47.262801005000114], [9.553297567000072, 47.2998530080001], [9.587404012000121, 47.327809957000085], [9.591228068000078, 47.33468292300006], [9.59639571100007, 47.35230458600003], [9.601046590000124, 47.36127044700007], [9.639803914000055, 47.394524231000105], [9.649519084000104, 47.40971710300005], [9.650345907000116, 47.45209177700005], [9.621717163000142, 47.46919667600011], [9.584510132000048, 47.48072052100014], [9.554951212000105, 47.51089955700013], [9.553058591000081, 47.51689133800011], [9.547481674000068, 47.53454710200006], [9.273211304000142, 47.65009002700006], [9.234350627000083, 47.65616200800011], [9.197616577148438, 47.66030040335958], [9.183397664000069, 47.670424704000084], [9.177017211914062, 47.68503683547121], [9.149208068847656, 47.68734805244341], [9.22645568847656, 47.65475043477393], [8.981756225000055, 47.66215647400011], [8.945376017000086, 47.65430165600009], [8.906205281000041, 47.65179534900011], [8.881710652000095, 47.65613617000008], [8.8526684980001, 47.67078643800008], [8.851935119000075, 47.67128172300011], [8.837785685000142, 47.680837504000095], [8.837682333000117, 47.687787985000085], [8.856079142000112, 47.690681864000084], [8.830240926000101, 47.707192485000064], [8.797581420000114, 47.720034079000044], [8.77070967600011, 47.720860901000066], [8.761717977000075, 47.70124969500006], [8.769882853000098, 47.69507436100008], [8.71706954000004, 47.69455759700011], [8.715105835000116, 47.701068827000086], [8.712625366000054, 47.708691101000085], [8.70466719500007, 47.71533152300009], [8.700429728000131, 47.723496399000084], [8.70373702000012, 47.73003346800007], [8.71706954000004, 47.743546855000034], [8.719756714000084, 47.74731923400006], [8.71314213000008, 47.757421977], [8.703323608000119, 47.758713887000056], [8.692264852000108, 47.75716359500004], [8.681929565000104, 47.75873972600007], [8.674488159000077, 47.766697897000114], [8.66663334200004, 47.778273417000065], [8.657021525000118, 47.78811777800004], [8.644102417000113, 47.79101165800003], [8.635007365000149, 47.78460378000008], [8.629839721000053, 47.762796326000085], [8.61743737800009, 47.75731862400008] ] ] } } ================================================ FILE: packages/turf-kinks/test/in/triple.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-50, 5], [-40, 5], [-50, 0], [-40, -5], [-50, -10], [-40, -10], [-50, -5], [-40, 0], [-50, 5] ] ] } } ================================================ FILE: packages/turf-kinks/test/out/hourglass.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-45, -2.5] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-50, 5], [-40, -10], [-50, -10], [-40, 5], [-50, 5] ] ] } } ] } ================================================ FILE: packages/turf-kinks/test/out/issue-2627.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [11.029567, 53.911309] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [11.029567, 53.911309] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [11.029567, 53.911309] } } ] } ================================================ FILE: packages/turf-kinks/test/out/multi-linestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-45, -8.798225459016345] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-39.7705078125, -4.08345277203862] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-49.43847656249999, -8.798225459016345], [-39.7705078125, -8.798225459016345], [-39.7705078125, 0.4833927027896987], [-49.43847656249999, 0.4833927027896987], [-49.43847656249999, -8.798225459016345] ], [ [-45, -13.795406203132826], [-35.2001953125, -13.795406203132826], [-35.2001953125, -4.083452772038619], [-45, -4.083452772038619], [-45, -13.795406203132826] ] ] } } ] } ================================================ FILE: packages/turf-kinks/test/out/multi-polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-45, -8.798225459016345] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-39.7705078125, -4.08345277203862] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-49.43847656249999, -8.798225459016345], [-39.7705078125, -8.798225459016345], [-39.7705078125, 0.4833927027896987], [-49.43847656249999, 0.4833927027896987], [-49.43847656249999, -8.798225459016345] ] ], [ [ [-45, -13.795406203132826], [-35.2001953125, -13.795406203132826], [-35.2001953125, -4.083452772038619], [-45, -4.083452772038619], [-45, -13.795406203132826] ] ] ] } } ] } ================================================ FILE: packages/turf-kinks/test/out/open-hourglass.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-43.80436774036952, -6.152807536577017] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-46.4501953125, -8.298470297067356], [-40.84716796875, -3.754634090910913], [-40.84716796875, -8.581021215641842], [-46.53808593749999, -3.90809888189411] ] } } ] } ================================================ FILE: packages/turf-kinks/test/out/switzerlandKinked.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [9.219017027587402, 47.657889465138915] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [9.182061729855718, 47.67348418083509] } }, { "type": "Feature", "properties": { "ADMIN": "Switzerland", "expectedIntersections": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [8.61743737800009, 47.75731862400008], [8.607618856000101, 47.76225372300013], [8.604104858000142, 47.774397685000025], [8.603174682000088, 47.78731679300003], [8.601624390000069, 47.7946031700001], [8.58312422700007, 47.800235901000036], [8.558216187000085, 47.80116607700009], [8.542299846000077, 47.79501658100011], [8.55160160300008, 47.779255270000135], [8.536512085000084, 47.77408762600004], [8.482665242000053, 47.76685292600007], [8.471503133000112, 47.76705963200004], [8.463648315000086, 47.763907370000084], [8.450109090000097, 47.750471497000035], [8.445458211000044, 47.743185120000135], [8.437913452000089, 47.723186341000115], [8.427268107000117, 47.716468404000096], [8.401946655000131, 47.707089132000135], [8.392128133000142, 47.69951853500007], [8.39099125100006, 47.69212880500007], [8.395228719000102, 47.68481659000008], [8.397709188000078, 47.676289979000074], [8.39130131000013, 47.66546376500011], [8.40701094500011, 47.66156219500007], [8.411971883000149, 47.66104543000003], [8.43760339400012, 47.64784210200014], [8.458273966000121, 47.63988393200009], [8.476050659000066, 47.640400696000114], [8.490830119000066, 47.64556833900011], [8.504679402000136, 47.65226043700005], [8.519665568000107, 47.65735056600002], [8.568241414000113, 47.66293162100004], [8.582194051000101, 47.6613296510001], [8.593588683000092, 47.658168560000036], [8.598213745000066, 47.656885478000106], [8.607308797000115, 47.65629119900004], [8.601624390000069, 47.6325975550001], [8.595113159000107, 47.634819641], [8.594493042000039, 47.64096913700007], [8.593562866000099, 47.642571106000105], [8.589222046000117, 47.64246775400008], [8.583951050000081, 47.64112416600011], [8.580333699000107, 47.63900543200003], [8.578059936000074, 47.63347605400014], [8.579713583000114, 47.62892852900009], [8.582090698000087, 47.625026957000046], [8.582504110000087, 47.62159047500009], [8.581263875000047, 47.614769186000046], [8.581780639000101, 47.60766367700012], [8.580643758000093, 47.600170594000076], [8.576305366000042, 47.595023058000066], [8.574132527000103, 47.59244496700009], [8.560696655000072, 47.58939605700007], [8.551719149000036, 47.59686332900009], [8.54963789900006, 47.59859446200005], [8.53775231900002, 47.61213368800014], [8.522352742000038, 47.621900534000076], [8.492380411000084, 47.619833476000025], [8.46178796400008, 47.606139221], [8.450109090000097, 47.58903432300005], [8.448868856000075, 47.58428009100007], [8.421100326000044, 47.581111870000115], [8.41806970200011, 47.5807660940001], [8.354094279000037, 47.58102447500008], [8.316163777000014, 47.587845764000036], [8.306345255000053, 47.592186585000036], [8.299317260000038, 47.60182423900005], [8.293942912000091, 47.61146189400006], [8.288568562000108, 47.615802715000115], [8.276993042000072, 47.61662953700005], [8.251051473000132, 47.6220038860001], [8.232964721000116, 47.6219522100001], [8.17901452600006, 47.615802715000115], [8.173846883000067, 47.613528951000035], [8.168885946000103, 47.608645528000096], [8.162064656000041, 47.60376210500007], [8.14377119900007, 47.60006724100006], [8.122067098000088, 47.592134908000105], [8.113902221000075, 47.587845764000036], [8.105427286000065, 47.58125701900005], [8.10139652500007, 47.57619272900007], [8.09695235100014, 47.57185190900009], [8.08723718200011, 47.567381897000075], [8.042278686000088, 47.56056060800012], [7.91215743000015, 47.56056060800012], [7.909470256000105, 47.56479807600007], [7.907506551000097, 47.574177348000035], [7.904302613000112, 47.58355662100007], [7.898204794000066, 47.587845764000036], [7.83371260600012, 47.590481263000044], [7.819656616000117, 47.59533884700008], [7.801466512000076, 47.57608937600014], [7.78555017100004, 47.563196106000134], [7.766739949000055, 47.55596140600008], [7.727320447000125, 47.550422624000106], [7.683437540000114, 47.5442566940001], [7.661423380000116, 47.54624623600003], [7.64690103500007, 47.55144523600006], [7.609746948000094, 47.56474639900006], [7.612337281000094, 47.56473104100013], [7.635895223000091, 47.5645913700001], [7.646540568000091, 47.5715418500001], [7.65966638200004, 47.59657908200012], [7.637032104000099, 47.594977112000066], [7.586028488000125, 47.58461854400011], [7.585482836000097, 47.584479135], [7.550319051000116, 47.57549509700007], [7.52634118600011, 47.56645172100011], [7.520866596000104, 47.563416048000136], [7.482726278000058, 47.54226715100006], [7.485103394000106, 47.54159535700006], [7.501743205000139, 47.532965394000115], [7.505153850000056, 47.53301707000014], [7.505463908000138, 47.52301768100003], [7.501123087000082, 47.51730743400006], [7.493061564000072, 47.51549875900008], [7.482726278000058, 47.51699737600009], [7.476938517000093, 47.51487864300012], [7.475594930000028, 47.511726379000066], [7.477765340000104, 47.50769561800007], [7.484896688000049, 47.50090016700011], [7.485776134000076, 47.49876751100004], [7.485930217000146, 47.498393860000135], [7.485826864000103, 47.49578420000012], [7.484483276000049, 47.49294199700006], [7.482726278000058, 47.491262512000105], [7.467430053000101, 47.48190907800006], [7.454510946000113, 47.483200989000096], [7.445995797000137, 47.48688412900012], [7.44148848500015, 47.48883372000003], [7.425985555000068, 47.49250274700003], [7.414306681000085, 47.490177307000096], [7.414410034000099, 47.484027812000136], [7.419474325000095, 47.477852478000045], [7.422781616000094, 47.475423686000084], [7.427639200000101, 47.47074696900012], [7.429292847000056, 47.4651142380001], [7.426088908000082, 47.45576080300006], [7.420563120000111, 47.450857028000115], [7.406348511000118, 47.438242493000075], [7.388218887000107, 47.43328886000012], [7.37854659000007, 47.430646058000036], [7.336930048000085, 47.43185368000013], [7.309093465000103, 47.43266143800008], [7.28263513200011, 47.42888905900014], [7.244807984000119, 47.41772694900001], [7.2380900470001, 47.41679677300007], [7.230338583000105, 47.41901886100007], [7.226307820000102, 47.422636211000054], [7.223517293000043, 47.426227723000125], [7.219383179000118, 47.42847564700014], [7.190030965000034, 47.43472849600005], [7.168326863000061, 47.44356516500005], [7.1626424560001, 47.45989491800006], [7.180832560000056, 47.48826528000009], [7.15365075700015, 47.48640492800007], [7.142169389000088, 47.487650968000054], [7.140318237000116, 47.487851868000064], [7.127295776000096, 47.49294199700006], [7.103731323000091, 47.49627512600006], [7.053915242000073, 47.49038401300007], [7.027973674000094, 47.49294199700006], [7.018878621000056, 47.49767039000005], [7.009783569000149, 47.49924652200008], [7.000791870000114, 47.49767039000005], [6.991903524000094, 47.49294199700006], [6.973300008000138, 47.489092103000104], [6.975780477000114, 47.47795583100009], [6.986115763000043, 47.46413238500011], [6.990973348000068, 47.45222096800009], [6.983428589000113, 47.44379770900011], [6.968545777000145, 47.43519358300006], [6.952319376000048, 47.428837383000115], [6.926067749000112, 47.42485829700004], [6.924517456000103, 47.40599640000002], [6.898782593000107, 47.39571279000003], [6.884003133000078, 47.382586976000056], [6.871600789000127, 47.3669548550001], [6.866639852000077, 47.354164937000036], [6.985598999000104, 47.362123108000105], [7.003995809000088, 47.36814341300004], [7.018878621000056, 47.3599010210001], [7.033864787000113, 47.350650940000094], [7.044303426000056, 47.340496521000034], [7.036551961000043, 47.32951527900005], [7.027146850000094, 47.32543284100004], [7.016914917000094, 47.3235208130001], [7.00647627800015, 47.319360860000074], [6.991903524000094, 47.30595082700006], [6.986529174000054, 47.30450388700007], [6.97743412300008, 47.303728739000036], [6.958623901000067, 47.29055125000005], [6.952216024000023, 47.27003570500008], [6.956246785000104, 47.24523101800014], [6.88834395300006, 47.211305441000036], [6.859301798000075, 47.1909190880001], [6.840284871000108, 47.169525045000086], [6.838076256000079, 47.16813159700007], [6.774759155000112, 47.128183899000135], [6.744786824000073, 47.121052551000105], [6.746027059000113, 47.10394765300006], [6.731661011000085, 47.098883363000084], [6.727940307000097, 47.097126363000115], [6.724219604000069, 47.09077016200007], [6.699104858000055, 47.08462066700011], [6.689699747000105, 47.07829030400009], [6.676263875000132, 47.06239980100008], [6.688252807000112, 47.04384796100004], [6.665411824000103, 47.0212911990001], [6.598697550000082, 46.986538798000055], [6.491107218000138, 46.96338775700008], [6.442634725000062, 46.944164124000054], [6.427751913000122, 46.909075827], [6.431886027000132, 46.900032451000044], [6.445218546000064, 46.882617493000026], [6.448422486000141, 46.871558737000015], [6.4467688390001, 46.85770945300007], [6.443117662000049, 46.8514551210001], [6.441187785000068, 46.84814931300005], [6.434263143000095, 46.83954518700011], [6.418553507000127, 46.80701487200008], [6.417106568000122, 46.802157288000075], [6.419897095000096, 46.796524557000026], [6.425168090000113, 46.79161529600009], [6.432609497000044, 46.78598256500007], [6.433022908000055, 46.76911021000009], [6.429198853000116, 46.760816142000124], [6.417933390000144, 46.75110097300009], [6.407391398000101, 46.745700786000015], [6.374215128000088, 46.73360850100005], [6.347860148000109, 46.71317047200009], [6.337938273000106, 46.70740855000011], [6.266314738000062, 46.68035593700006], [6.131852661000039, 46.59560658800004], [6.118416789000065, 46.58346262600014], [6.12151737500011, 46.57028513700007], [6.145701945000099, 46.5516299440001], [6.110355265000095, 46.52083079000002], [6.075525349000117, 46.479592998000015], [6.064156535000052, 46.47111806300012], [6.060229126000081, 46.46502024400007], [6.060229126000081, 46.45990427700008], [6.062399536000072, 46.45520172200008], [6.064776652000091, 46.451067607000056], [6.065500122000088, 46.447992859000124], [6.065500122000088, 46.44037058600006], [6.06756717900015, 46.433600973000125], [6.065706827000071, 46.42701222800014], [6.054234660000134, 46.41941579200008], [6.059019361000082, 46.4173832110001], [6.108184855000104, 46.39649729400014], [6.12286096200009, 46.38554189100006], [6.135056600000098, 46.37040069600005], [6.136400187000078, 46.359341940000036], [6.118607037000089, 46.3317710850001], [6.104050740000076, 46.30921580000012], [6.100743448000088, 46.30141265900011], [6.093612101000133, 46.27309397400012], [6.093095337000108, 46.26229360000008], [6.094025513000133, 46.253043518000055], [6.089684692000077, 46.24637725900004], [6.067670532000079, 46.24162302700006], [6.061882772000104, 46.24115793900003], [6.055888305000082, 46.241674704000076], [6.048033488000044, 46.243431702000066], [6.04617313600005, 46.24353505500008], [6.044519491000102, 46.243431702000066], [6.042865844000062, 46.243069967000054], [5.982921183000144, 46.22270945200012], [5.958529907000127, 46.2119607540001], [5.954809204000128, 46.199920146000125], [5.965247843000071, 46.186225891000106], [5.982921183000144, 46.170826314000124], [5.979820597000128, 46.16224802700009], [5.972172485000044, 46.152171122000055], [5.958839966000113, 46.13046702100007], [5.982921183000144, 46.140440572000074], [6.028293090000091, 46.14793365500009], [6.073871704000084, 46.14917389000004], [6.107874796000118, 46.13863189700007], [6.140327596000134, 46.150207418000036], [6.191383911000088, 46.1917035940001], [6.255359335000094, 46.22110748400007], [6.281197550000115, 46.24007273400014], [6.276029907000094, 46.263120423], [6.269001912000078, 46.265239156000064], [6.252258748000145, 46.259916484000115], [6.241820109000116, 46.263688864000045], [6.237582642000064, 46.2679263310001], [6.227970825000057, 46.28446278900009], [6.227454060000099, 46.2884935510001], [6.21825565600011, 46.30549509700012], [6.214121541000083, 46.31546864900011], [6.219495890000133, 46.32911122700003], [6.240579874000076, 46.34895497700012], [6.269105265000121, 46.3750257370001], [6.301558065000052, 46.394481914000096], [6.332357218000112, 46.40138071700008], [6.365223430000128, 46.40244008400006], [6.397676229000069, 46.4081761680001], [6.482942342000115, 46.44858713800008], [6.547021118000117, 46.457372132000074], [6.613683716000139, 46.45589935400008], [6.762666870000118, 46.42926015200004], [6.77771555400011, 46.42410649300004], [6.777756388000114, 46.42409250900005], [6.787058146000049, 46.41417063500003], [6.78810673300012, 46.40500797800007], [6.789228556000126, 46.395205383000075], [6.782097209000114, 46.37846222000013], [6.755742228000145, 46.357068177000116], [6.750367879000095, 46.34551849400009], [6.769488159000076, 46.32267751100008], [6.804938192000094, 46.2966067510001], [6.827675822000089, 46.26947662400002], [6.792225789000071, 46.22167592400004], [6.774862508000126, 46.185864156], [6.765664103000034, 46.1516026810001], [6.774345743000083, 46.134807841000054], [6.853927449000111, 46.12261220300013], [6.869223673000079, 46.112328593000115], [6.868190144000096, 46.10468048200005], [6.861162150000098, 46.09703236900006], [6.853100627000089, 46.09021108100012], [6.848553100000061, 46.08504343700011], [6.851343628000109, 46.086025290000094], [6.853100627000089, 46.07610341400007], [6.853410685000085, 46.065664775000045], [6.851963745000091, 46.06468292200009], [6.852377156000102, 46.056931458000065], [6.850310099000126, 46.05274566700004], [6.850930216000108, 46.04964508100011], [6.859715210000104, 46.04499420200003], [6.869223673000079, 46.044064026000086], [6.876871786000066, 46.04809478800007], [6.884003133000078, 46.053210755000066], [6.892374715000074, 46.055587871000114], [6.91511234500004, 46.048611553000114], [6.982808471000055, 45.995384827000066], [6.987666056000052, 45.99311106400003], [6.991283406000122, 45.98246571900006], [7.002755575000066, 45.961691793000085], [7.009783569000149, 45.943398336000115], [7.015157918000114, 45.93332143100008], [7.022082560000115, 45.925259909], [7.066937703000093, 45.89022328800007], [7.090192097000113, 45.88050811800014], [7.120887899000138, 45.876115621000054], [7.153547404000022, 45.876529033000054], [7.183726440000044, 45.88045644200011], [7.245428100000083, 45.898129782000126], [7.273540079000043, 45.91027374300003], [7.286665893000105, 45.913426005000076], [7.361803426000108, 45.90784495100007], [7.393842814000038, 45.91569976800011], [7.452960652000087, 45.94587880500009], [7.482726278000058, 45.95487050400004], [7.503706909000073, 45.956730855000046], [7.514662312000041, 45.966704407000066], [7.524377482000091, 45.97807322300005], [7.541120646000138, 45.98411936500008], [7.643026571000121, 45.96634267200005], [7.6587362060001, 45.96003814700006], [7.673722371000054, 45.950322978000116], [7.692532593000067, 45.93120269800002], [7.693979533000061, 45.92867055300013], [7.706278523, 45.92572499700012], [7.714650105000089, 45.92712026], [7.72219486500012, 45.92960072800008], [7.732013387000109, 45.930375875000095], [7.780072469000061, 45.91812856100006], [7.807564331000037, 45.91849029600007], [7.825444376000093, 45.91466623900004], [7.831232137000143, 45.91445953400006], [7.843737833000148, 45.91921376600007], [7.846114949000111, 45.92257273300007], [7.845288127000089, 45.927792053000076], [7.848388712000116, 45.93807566300009], [7.84962011600004, 45.939712062000126], [7.870201292731366, 45.94036963077022], [7.872917431422025, 45.95938260160503], [7.8837819861848, 45.97386867462197], [7.898204794000066, 45.9819489540001], [7.969104858000037, 45.99311106400003], [7.978716674000026, 45.995178121000095], [7.985848022000084, 45.99931223600004], [7.998353719000079, 46.01062937500009], [7.999077189000076, 46.012799784000094], [8.008792358000107, 46.02768259700014], [8.010652710000102, 46.02969797800009], [8.015923706000137, 46.058171692000116], [8.016027059000066, 46.06938547800007], [8.018197469000143, 46.080857646000084], [8.025328817000087, 46.09114125600007], [8.035354044000115, 46.096515605000036], [8.056024617000048, 46.098065898000044], [8.066876668000077, 46.10059804300005], [8.110594930000076, 46.12695302300011], [8.132299032000077, 46.1593541470001], [8.129508504000114, 46.19604441300007], [8.099949585000076, 46.23562856100003], [8.076591837000109, 46.24973622600007], [8.073077840000082, 46.253611959000125], [8.07731530700002, 46.26203521800011], [8.087340535000038, 46.27180206300005], [8.106874227000048, 46.28554799500009], [8.128474975000131, 46.29247263600007], [8.171883178000115, 46.299190573], [8.192553752000038, 46.30916412400012], [8.241749715000111, 46.35412262000003], [8.270068400000099, 46.364044495000115], [8.28154056800011, 46.37011647500006], [8.291462443000114, 46.37835886600001], [8.297456909000033, 46.387505596000096], [8.297043497000118, 46.397634176000054], [8.290428914000131, 46.40112233500008], [8.286604859000079, 46.40535980300004], [8.294976441000074, 46.418046366000084], [8.316267130000142, 46.43365264900004], [8.343448934000037, 46.44388458300011], [8.385906925000114, 46.4502060180001], [8.399156128000072, 46.452178650000064], [8.427888224000071, 46.448690491000036], [8.441634155000116, 46.434944560000076], [8.445768270000116, 46.412361959000066], [8.446285034000084, 46.382182923000045], [8.442874389000053, 46.353373312000116], [8.426647990000049, 46.30156768800006], [8.423237345000103, 46.275832825000066], [8.427164754000074, 46.25144154900002], [8.43812015800006, 46.23537017800007], [8.456516968000045, 46.2248281870001], [8.482665242000053, 46.217541809000124], [8.510260457000072, 46.20787831700008], [8.538682495000074, 46.18762115500007], [8.601831095000136, 46.122818909000074], [8.611546264000083, 46.11935658800013], [8.630873250000121, 46.11470570900008], [8.67748539200008, 46.09579213500004], [8.695055379000081, 46.095172018000056], [8.702186727000111, 46.097962545000115], [8.717689656000118, 46.10752268500002], [8.723890828000094, 46.109538066000084], [8.728983368000115, 46.10823310300009], [8.732159057000047, 46.10741933200009], [8.739497111000048, 46.098065898000044], [8.747145223000103, 46.09444854800006], [8.763164917000068, 46.09289825500005], [8.793860717000115, 46.093415019000076], [8.8089502360001, 46.08974599300009], [8.834375041000015, 46.06638824500004], [8.819595581000101, 46.04292714500008], [8.790966838000116, 46.018690898000074], [8.773396850000069, 45.99057891900014], [8.769572794000112, 45.98577301000006], [8.767919149000079, 45.983085836000015], [8.785075724000109, 45.982310690000105], [8.800371948000077, 45.97853831000009], [8.857732788000078, 45.95709259100005], [8.86445072400008, 45.95342356400005], [8.870961954000052, 45.947067363000116], [8.88078047600004, 45.93109934500009], [8.89814375800006, 45.909550273000036], [8.906515340000112, 45.896476135000086], [8.91209639400003, 45.883401998000124], [8.9137500410001, 45.866090393000036], [8.909719279000086, 45.853688050000045], [8.903724812000064, 45.84180247000012], [8.900004109000065, 45.826402893000136], [8.93958825700011, 45.83482615200003], [8.972351115, 45.82464589500006], [9.002426798000073, 45.820718486], [9.034362834000149, 45.84810699500014], [9.05927087400002, 45.88195505800013], [9.063094930000148, 45.89895660400006], [9.051726115000065, 45.91554473900007], [9.042321004000115, 45.919730530000095], [9.0205135490001, 45.92277944000003], [9.010798380000068, 45.92665517200007], [9.001703329000094, 45.93606028300013], [8.993435099000124, 45.95425038700009], [8.982686401000109, 45.96184682200004], [8.980515991000118, 45.964378968000034], [8.979792521000121, 45.96691111300004], [8.980515991000118, 45.969494934000124], [8.982686401000109, 45.9719754030001], [9.015552612000135, 45.99311106400003], [8.997775919000105, 46.02794097900011], [9.002116740000105, 46.039309795000094], [9.027748250000059, 46.05310740200014], [9.049659057000014, 46.05791331000006], [9.059167521000091, 46.061789043], [9.067125692000076, 46.07114247700014], [9.07032963100005, 46.083441467000085], [9.068159220000041, 46.1059723920001], [9.072086629000097, 46.1188915000001], [9.090586792000124, 46.13816680900004], [9.163243856000065, 46.17227325500002], [9.16378802500006, 46.17298926700002], [9.171098673000103, 46.182608541000036], [9.17574955200007, 46.194132385000046], [9.181330607000092, 46.20405426000005], [9.192182658000121, 46.20963531500007], [9.2041715900001, 46.21356272400004], [9.215747111000042, 46.221055807000084], [9.224842163000119, 46.23118438700004], [9.239724975000058, 46.266996155000044], [9.2689738360001, 46.30937083000006], [9.275175008000076, 46.33138499000006], [9.273831420000107, 46.344252421000135], [9.260395548000076, 46.379728292000095], [9.260292195000147, 46.39401682600007], [9.262876017000053, 46.40662587500009], [9.26091231300012, 46.41665110300002], [9.247579794000103, 46.423033142000065], [9.237967977000068, 46.436546530000015], [9.245822794000105, 46.461041158000086], [9.263186076000125, 46.48512237600002], [9.282306355000117, 46.497369691000046], [9.330985555000069, 46.501503805000084], [9.350829305000047, 46.49786061600008], [9.35155277500013, 46.48548411100012], [9.377080933000087, 46.468689270000056], [9.384625691000025, 46.46641550800004], [9.395477742000082, 46.46941274000005], [9.400335327000107, 46.475407207000075], [9.403849324000134, 46.482512716000116], [9.41067061400011, 46.488894756000036], [9.426793660000072, 46.497111308000086], [9.434648478000014, 46.49832570400011], [9.437852417000101, 46.49204701800011], [9.443846883000106, 46.396135559000044], [9.442399943000112, 46.38089101200009], [9.444363648000149, 46.37528411900007], [9.451598348000118, 46.37037485800005], [9.47371586100013, 46.361874085000125], [9.482604207000065, 46.35680979400007], [9.502551310000058, 46.32073964500006], [9.51526371300011, 46.30859568300005], [9.536451050000068, 46.29862213200005], [9.559705444000087, 46.29273101800004], [9.674323771000047, 46.2918008420001], [9.693133992000043, 46.297071839000125], [9.708430217000114, 46.31174794600011], [9.708843628000125, 46.31962860100006], [9.707293335000088, 46.33097157900005], [9.709257039000136, 46.34239207000013], [9.72010909000008, 46.350892843000054], [9.730857788000094, 46.35071197500011], [9.755249064000026, 46.340531718000136], [9.768064819000102, 46.338619690000115], [9.78883874500005, 46.34329640800007], [9.855397990000142, 46.3669642130001], [9.899012899000098, 46.37215769500003], [9.918443237000076, 46.37115000400004], [9.939010457000052, 46.36745514000006], [9.96402185100007, 46.356086325000064], [9.970636434000141, 46.33980824900004], [9.971049846000057, 46.32001617500006], [9.977561076000114, 46.29810536700009], [9.99223718200011, 46.284359436000074], [10.031717977000142, 46.26007151300007], [10.041846557000099, 46.243069967000054], [10.04267338000011, 46.220487366000015], [10.075746297000109, 46.2200222780001], [10.11791426600007, 46.231132711000015], [10.145819539000058, 46.24332834900011], [10.15894535300012, 46.26244862900012], [10.14612959800013, 46.28027699800006], [10.104891805000136, 46.30937083000006], [10.095796753000059, 46.32053293900009], [10.091765991000074, 46.3289561980001], [10.092386108000113, 46.33810292600006], [10.097450398000092, 46.35164215100005], [10.104995158000065, 46.3613573210001], [10.125975789000051, 46.374379782000034], [10.133210490000124, 46.381097717000046], [10.14075524900008, 46.40290517200009], [10.133417195000078, 46.41401560500009], [10.11615726700009, 46.418821514000115], [10.071405477000042, 46.424815980000034], [10.04205326300007, 46.43272247400009], [10.026343627000074, 46.446261699000075], [10.04401696800008, 46.46698394800009], [10.035335327000041, 46.4710663860001], [10.03047774300012, 46.476673279000124], [10.028100627000072, 46.48393381800008], [10.026860392000117, 46.493183900000105], [10.031201212000099, 46.503829245000105], [10.03140791900006, 46.52579172800006], [10.032751506000125, 46.532974752000115], [10.041329793000074, 46.541863098000135], [10.062930542000117, 46.55674591100009], [10.07119877100007, 46.56439402300006], [10.083497762000121, 46.5970018510001], [10.087838582000103, 46.60439158200012], [10.097450398000092, 46.6080347700001], [10.192121623000048, 46.62681915400012], [10.21785648600013, 46.626974182000055], [10.233772827000053, 46.61798248400004], [10.235736531000072, 46.606691183000066], [10.230258830000082, 46.58614980100006], [10.234703003000106, 46.57529775000012], [10.27594079500011, 46.56553090500006], [10.283795614000041, 46.56072499600006], [10.28906660900006, 46.55568654400008], [10.295371135000096, 46.55108734100014], [10.306636597000136, 46.54749582900007], [10.319452351000024, 46.546048889000076], [10.354282267000087, 46.5483226530001], [10.425905803000148, 46.53532603000005], [10.443992554000147, 46.5377289840001], [10.45183267900012, 46.546701572000075], [10.457945190000146, 46.553697001000046], [10.465903361000102, 46.57847585100009], [10.466626831000013, 46.604288229000105], [10.459082072000058, 46.62356353800004], [10.438204793000097, 46.635655823000036], [10.395623413000123, 46.63880808500008], [10.377536662000097, 46.653277486], [10.36916508000013, 46.6723977660001], [10.373919312000112, 46.681906230000095], [10.384771363000084, 46.68901173900011], [10.394383179000073, 46.70081980400002], [10.396553588000074, 46.715004984000075], [10.395623413000123, 46.72639963900008], [10.399654175000109, 46.73554636700007], [10.41660404400011, 46.743013611000094], [10.42869633, 46.75564849900013], [10.426215861000031, 46.76942026800006], [10.419084513000087, 46.7839671830001], [10.417224162000082, 46.798849997000076], [10.439031616000108, 46.81688507100006], [10.444922730000116, 46.823241272000075], [10.4485400800001, 46.832232971000025], [10.453811076000136, 46.86442738900007], [10.451433960000088, 46.88576975600009], [10.46383630300005, 46.919747009000105], [10.458461955000104, 46.9366193650001], [10.449573608000094, 46.943905742000084], [10.41557051600006, 46.96240590500011], [10.39469323700007, 46.98540191600006], [10.384357950000066, 46.992998352000114], [10.384357950000066, 46.99315338200006], [10.384254598000041, 46.99315338200006], [10.37898360200009, 46.99550465900009], [10.373402547000097, 46.99625396700009], [10.367924846000108, 46.99550465900009], [10.338882691000094, 46.984110006000094], [10.313664592000066, 46.9643179330001], [10.296197957000118, 46.94137359700008], [10.295681193000064, 46.92269256600011], [10.27077315200009, 46.9218915810001], [10.251342814000111, 46.92537974000004], [10.235116415000107, 46.92331268400008], [10.219923543000078, 46.90576853500011], [10.215169311000096, 46.89310780900007], [10.214342488000057, 46.88468455000009], [10.21165531400004, 46.87703643800009], [10.201423381000069, 46.86683034300003], [10.157808471000095, 46.85161163400011], [10.131970255000084, 46.84657318200004], [10.125187508000124, 46.84675122900012], [10.111299683000084, 46.84711578400007], [10.068098185000025, 46.85662424800006], [10.045567260000098, 46.865564271000096], [10.006913289000096, 46.890756531000136], [9.899943075000039, 46.91439849900007], [9.875138387000106, 46.92742096000009], [9.86242598400014, 46.93977162700014], [9.860772339000107, 46.9491508990001], [9.86397627800008, 46.95992543600002], [9.86645674600004, 46.9833865360001], [9.870590861000068, 46.99294667600009], [9.870590861000068, 46.998837790000096], [9.866766805000026, 47.00193837500004], [9.860565633000135, 47.00160247800005], [9.856328165000093, 47.004082947000114], [9.857981812000048, 47.015477600000025], [9.669052775000097, 47.05619862900008], [9.65230961100005, 47.05792979000006], [9.599909709000116, 47.053485616000046], [9.581202840000032, 47.05687042300008], [9.560635620000141, 47.052400412000054], [9.499554077000141, 47.05935089100004], [9.477023153000118, 47.063898417000075], [9.475886271000121, 47.07322601400011], [9.487565145000104, 47.08394887400004], [9.50286136800014, 47.09469757200014], [9.512369832000047, 47.108030091000074], [9.511853068000107, 47.12937245700007], [9.503481486000112, 47.145392151000124], [9.492629435000083, 47.159809876000054], [9.484981323000085, 47.17634633400013], [9.487358439000047, 47.210013529000065], [9.504618368000138, 47.243732402000035], [9.52115482500011, 47.262801005000114], [9.553297567000072, 47.2998530080001], [9.587404012000121, 47.327809957000085], [9.591228068000078, 47.33468292300006], [9.59639571100007, 47.35230458600003], [9.601046590000124, 47.36127044700007], [9.639803914000055, 47.394524231000105], [9.649519084000104, 47.40971710300005], [9.650345907000116, 47.45209177700005], [9.621717163000142, 47.46919667600011], [9.584510132000048, 47.48072052100014], [9.554951212000105, 47.51089955700013], [9.553058591000081, 47.51689133800011], [9.547481674000068, 47.53454710200006], [9.273211304000142, 47.65009002700006], [9.234350627000083, 47.65616200800011], [9.197616577148438, 47.66030040335958], [9.183397664000069, 47.670424704000084], [9.177017211914062, 47.68503683547121], [9.149208068847656, 47.68734805244341], [9.22645568847656, 47.65475043477393], [8.981756225000055, 47.66215647400011], [8.945376017000086, 47.65430165600009], [8.906205281000041, 47.65179534900011], [8.881710652000095, 47.65613617000008], [8.8526684980001, 47.67078643800008], [8.851935119000075, 47.67128172300011], [8.837785685000142, 47.680837504000095], [8.837682333000117, 47.687787985000085], [8.856079142000112, 47.690681864000084], [8.830240926000101, 47.707192485000064], [8.797581420000114, 47.720034079000044], [8.77070967600011, 47.720860901000066], [8.761717977000075, 47.70124969500006], [8.769882853000098, 47.69507436100008], [8.71706954000004, 47.69455759700011], [8.715105835000116, 47.701068827000086], [8.712625366000054, 47.708691101000085], [8.70466719500007, 47.71533152300009], [8.700429728000131, 47.723496399000084], [8.70373702000012, 47.73003346800007], [8.71706954000004, 47.743546855000034], [8.719756714000084, 47.74731923400006], [8.71314213000008, 47.757421977], [8.703323608000119, 47.758713887000056], [8.692264852000108, 47.75716359500004], [8.681929565000104, 47.75873972600007], [8.674488159000077, 47.766697897000114], [8.66663334200004, 47.778273417000065], [8.657021525000118, 47.78811777800004], [8.644102417000113, 47.79101165800003], [8.635007365000149, 47.78460378000008], [8.629839721000053, 47.762796326000085], [8.61743737800009, 47.75731862400008] ] ] } } ] } ================================================ FILE: packages/turf-kinks/test/out/triple.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-45, 2.5] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-45, -2.5] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-45, -7.5] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-50, 5], [-40, 5], [-50, 0], [-40, -5], [-50, -10], [-40, -10], [-50, -5], [-40, 0], [-50, 5] ] ] } } ] } ================================================ FILE: packages/turf-kinks/test.ts ================================================ import test from "tape"; import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { featureEach } from "@turf/meta"; import { kinks } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("turf-kinks", (t) => { for (const { name, filename, geojson } of fixtures) { const results = kinks(geojson); featureEach(geojson, (feature) => results.features.push(feature)); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEqual(results, loadJsonFileSync(directories.out + filename), name); } t.end(); }); ================================================ FILE: packages/turf-kinks/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-kinks/types.ts ================================================ import { polygon } from "@turf/helpers"; import { kinks } from "./index.js"; const hourglass = polygon([ [ [-50, 5], [-40, -10], [-50, -10], [-40, 5], [-50, 5], ], ]); kinks(hourglass); ================================================ FILE: packages/turf-length/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-length/README.md ================================================ # @turf/length ## length Takes a [GeoJSON][1] and measures its length in the specified units, [(Multi)Point][2]'s distance are ignored. ### Parameters * `geojson` **[Feature][3]<([LineString][4] | [MultiLineString][5])>** GeoJSON to measure * `options` **[Object][6]** Optional parameters (optional, default `{}`) * `options.units` **Units** Supports all valid Turf [Units][7]. (optional, default `kilometers`) ### Examples ```javascript var line = turf.lineString([[115, -32], [131, -22], [143, -25], [150, -34]]); var length = turf.length(line, {units: 'miles'}); //addToMap var addToMap = [line]; line.properties.distance = length; ``` Returns **[number][8]** length of GeoJSON [1]: https://tools.ietf.org/html/rfc7946#section-3 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [3]: https://tools.ietf.org/html/rfc7946#section-3.2 [4]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [5]: https://tools.ietf.org/html/rfc7946#section-3.1.5 [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [7]: https://turfjs.org/docs/api/types/Units [8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/length ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-length/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { length } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); // Define fixtures const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); /** * Benmark Results * * feature-collection x 240,519 ops/sec ±2.55% (83 runs sampled) * multi-linestring x 352,542 ops/sec ±8.44% (76 runs sampled) * multi-polygon x 308,500 ops/sec ±3.92% (83 runs sampled) * polygon x 534,768 ops/sec ±1.29% (84 runs sampled) * route1 x 1,280 ops/sec ±1.23% (89 runs sampled) * route2 x 1,452 ops/sec ±1.57% (87 runs sampled) */ // Define benchmark const suite = new Benchmark.Suite("turf-line-distance"); for (const { name, geojson } of fixtures) { suite.add(name, () => length(geojson)); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-length/index.ts ================================================ import { Feature, FeatureCollection, GeometryCollection } from "geojson"; import { distance } from "@turf/distance"; import { Units } from "@turf/helpers"; import { segmentReduce } from "@turf/meta"; /** * Takes a {@link GeoJSON} and measures its length in the specified units, {@link (Multi)Point}'s distance are ignored. * * @function * @param {Feature} geojson GeoJSON to measure * @param {Object} [options={}] Optional parameters * @param {Units} [options.units=kilometers] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @returns {number} length of GeoJSON * @example * var line = turf.lineString([[115, -32], [131, -22], [143, -25], [150, -34]]); * var length = turf.length(line, {units: 'miles'}); * * //addToMap * var addToMap = [line]; * line.properties.distance = length; */ function length( geojson: Feature | FeatureCollection | GeometryCollection, options: { units?: Units; } = {} ): number { // Calculate distance from 2-vertex line segments return segmentReduce( geojson, (previousValue, segment) => { const coords = segment!.geometry.coordinates; return previousValue! + distance(coords[0], coords[1], options); }, 0 ); } export { length }; export default length; ================================================ FILE: packages/turf-length/package.json ================================================ { "name": "@turf/length", "version": "7.3.4", "description": " Calculates the length of a line, perfect for paths or routes.", "author": "Turf Authors", "contributors": [ "Denis Carriere <@DenisCarriere>", "Tom MacWright <@tmcw>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "linestring", "length", "distance", "units", "gis" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-length/test/in/feature-collection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-77.031669, 38.878605], [-77.029609, 38.881946], [-77.020339, 38.884084], [-77.025661, 38.885821], [-77.021884, 38.889563], [-77.019824, 38.892368] ], [ [-77.041669, 38.885821], [-77.039609, 38.881946], [-77.030339, 38.884084], [-77.035661, 38.878605] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-77.031669, 38.878605], [-77.029609, 38.881946], [-77.020339, 38.884084], [-77.025661, 38.885821], [-77.021884, 38.889563], [-77.019824, 38.892368], [-77.04, 38.88], [-77.031669, 38.878605] ] ] } } ] } ================================================ FILE: packages/turf-length/test/in/multi-linestring.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-77.031669, 38.878605], [-77.029609, 38.881946], [-77.020339, 38.884084], [-77.025661, 38.885821], [-77.021884, 38.889563], [-77.019824, 38.892368] ], [ [-77.041669, 38.885821], [-77.039609, 38.881946], [-77.030339, 38.884084], [-77.035661, 38.878605] ] ] } } ================================================ FILE: packages/turf-length/test/in/multi-polygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-77.031669, 38.878605], [-77.029609, 38.881946], [-77.020339, 38.884084], [-77.025661, 38.885821], [-77.021884, 38.889563], [-77.019824, 38.892368], [-77.04, 38.88], [-77.031669, 38.878605] ] ], [ [ [-77.041669, 38.885821], [-77.039609, 38.881946], [-77.035661, 38.878605], [-77.030339, 38.884084], [-77.041669, 38.885821] ] ] ] } } ================================================ FILE: packages/turf-length/test/in/polygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-77.031669, 38.878605], [-77.029609, 38.881946], [-77.020339, 38.884084], [-77.025661, 38.885821], [-77.021884, 38.889563], [-77.019824, 38.892368], [-77.04, 38.88], [-77.031669, 38.878605] ] ] } } ================================================ FILE: packages/turf-length/test/in/route1.geojson ================================================ { "type": "Feature", "properties": { "name": null, "cmt": null, "desc": null, "src": null, "link1_href": null, "link1_text": null, "link1_type": null, "link2_href": null, "link2_text": null, "link2_type": null, "number": null, "type": null }, "geometry": { "type": "LineString", "coordinates": [ [-79.254923, 36.98394], [-79.254923, 36.983939], [-79.255326, 36.9838], [-79.255401, 36.983774], [-79.25576, 36.983664], [-79.256795, 36.984137], [-79.257537, 36.984478], [-79.258539, 36.984925], [-79.259498, 36.985353], [-79.260286, 36.985712], [-79.261405, 36.986222], [-79.262933, 36.986928], [-79.263237, 36.987071], [-79.263755, 36.987296], [-79.264086, 36.987423], [-79.264167, 36.987446], [-79.264338, 36.987486], [-79.264414, 36.987501], [-79.264618, 36.987531], [-79.2648, 36.987542], [-79.264982, 36.987537], [-79.265163, 36.987517], [-79.26703, 36.987355], [-79.267952, 36.98726], [-79.268404, 36.987226], [-79.268771, 36.987197], [-79.26955, 36.987117], [-79.271398, 36.986946], [-79.271488, 36.986941], [-79.271698, 36.986925], [-79.271936, 36.986898], [-79.272231, 36.986852], [-79.272474, 36.986785], [-79.272711, 36.986705], [-79.272895, 36.986632], [-79.273059, 36.986552], [-79.273646, 36.986245], [-79.274224, 36.985925], [-79.274887, 36.985592], [-79.275308, 36.985365], [-79.275672, 36.98517], [-79.276249, 36.984876], [-79.277101, 36.984433], [-79.277425, 36.984259], [-79.277918, 36.983982], [-79.27799, 36.98395], [-79.278179, 36.98385], [-79.278261, 36.9838], [-79.278335, 36.983745], [-79.278421, 36.983666], [-79.27844, 36.983647], [-79.278502, 36.983577], [-79.278548, 36.983511], [-79.278614, 36.983381], [-79.278654, 36.983273], [-79.278711, 36.983011], [-79.278763, 36.98269], [-79.278806, 36.982485], [-79.278866, 36.982282], [-79.278952, 36.982101], [-79.279023, 36.981984], [-79.280178, 36.980418], [-79.280259, 36.980319], [-79.280355, 36.980229], [-79.280419, 36.98018], [-79.280578, 36.980082], [-79.280666, 36.980038], [-79.280783, 36.979994], [-79.280908, 36.979963], [-79.281301, 36.979913], [-79.281646, 36.979874], [-79.282145, 36.979835], [-79.282797, 36.97977], [-79.283144, 36.979743], [-79.283618, 36.97972], [-79.28399, 36.979706], [-79.284447, 36.979695], [-79.284904, 36.979697], [-79.286913, 36.979638], [-79.287201, 36.979628], [-79.287954, 36.979612], [-79.288037, 36.979611], [-79.288397, 36.97962], [-79.288697, 36.979643], [-79.289908, 36.979722], [-79.289994, 36.979724], [-79.290136, 36.979716], [-79.290248, 36.979699], [-79.290503, 36.979632], [-79.291043, 36.979454], [-79.291563, 36.979269], [-79.292467, 36.97896], [-79.292759, 36.978877], [-79.292963, 36.978832], [-79.293286, 36.978778], [-79.293549, 36.978746], [-79.293649, 36.978738], [-79.293755, 36.978729], [-79.293858, 36.978731], [-79.294028, 36.978747], [-79.294162, 36.978771], [-79.294243, 36.9788], [-79.294439, 36.978883], [-79.294626, 36.978979], [-79.294782, 36.979072], [-79.294921, 36.979174], [-79.295023, 36.979263], [-79.295281, 36.979534], [-79.295458, 36.979739], [-79.296347, 36.980843], [-79.296549, 36.981064], [-79.296594, 36.981095], [-79.296695, 36.981144], [-79.296788, 36.98117], [-79.296916, 36.981184], [-79.297032, 36.981182], [-79.297147, 36.981165], [-79.297933, 36.980962], [-79.298145, 36.980893], [-79.298401, 36.98079], [-79.298602, 36.980696], [-79.298795, 36.980593], [-79.299134, 36.980402], [-79.299407, 36.980244], [-79.299963, 36.9799], [-79.301767, 36.97881], [-79.301976, 36.978691], [-79.3021, 36.978619], [-79.302508, 36.978369], [-79.302614, 36.978309], [-79.3028, 36.97822], [-79.302995, 36.978145], [-79.303113, 36.978114], [-79.303153, 36.978249], [-79.303232, 36.978565], [-79.303319, 36.978989], [-79.303326, 36.979184], [-79.303313, 36.979346], [-79.30324, 36.979748], [-79.303136, 36.980362], [-79.303088, 36.980609], [-79.302996, 36.981143], [-79.302982, 36.981226], [-79.302977, 36.981321], [-79.302986, 36.98144], [-79.303013, 36.981556], [-79.303057, 36.98167], [-79.303191, 36.9819], [-79.303336, 36.982126], [-79.303702, 36.982652], [-79.304322, 36.983486], [-79.304588, 36.98382], [-79.304756, 36.984051], [-79.304903, 36.984229], [-79.305059, 36.984403], [-79.305145, 36.984487], [-79.305336, 36.984648], [-79.305612, 36.98486], [-79.30569, 36.984915], [-79.305765, 36.984974], [-79.305944, 36.98513], [-79.306108, 36.985295], [-79.306259, 36.985469], [-79.306333, 36.98557], [-79.306437, 36.985737], [-79.306524, 36.985911], [-79.306595, 36.98609], [-79.306677, 36.986365], [-79.306734, 36.98662], [-79.306773, 36.986878], [-79.306759, 36.986998], [-79.306724, 36.987146], [-79.306621, 36.987426], [-79.306591, 36.987545], [-79.306555, 36.987745], [-79.306536, 36.987984], [-79.30653, 36.988172], [-79.306539, 36.988321], [-79.30655, 36.988398], [-79.306566, 36.988507], [-79.306673, 36.988967], [-79.306789, 36.989416], [-79.30681, 36.989518], [-79.306831, 36.98969], [-79.306833, 36.989828], [-79.306822, 36.989888], [-79.306771, 36.990067], [-79.306696, 36.99024], [-79.306569, 36.990463], [-79.306374, 36.99078], [-79.30633, 36.990863], [-79.306292, 36.990972], [-79.306271, 36.991084], [-79.306268, 36.991229], [-79.306282, 36.991421], [-79.306323, 36.991648], [-79.30657, 36.992516], [-79.306601, 36.992703], [-79.306614, 36.992892], [-79.306598, 36.993111], [-79.306569, 36.993287], [-79.306553, 36.993345], [-79.306526, 36.993432], [-79.306466, 36.993574], [-79.306313, 36.993848], [-79.305971, 36.994382], [-79.305826, 36.994647], [-79.305382, 36.995598], [-79.305197, 36.995963], [-79.305065, 36.996284], [-79.304983, 36.996521], [-79.304954, 36.99668], [-79.30495, 36.996815], [-79.304959, 36.996932], [-79.304988, 36.997077], [-79.305024, 36.99719], [-79.305111, 36.99739], [-79.305197, 36.997567], [-79.30532, 36.997782], [-79.305429, 36.997949], [-79.305577, 36.998153], [-79.306017, 36.99873], [-79.306204, 36.998965], [-79.306407, 36.999192], [-79.306624, 36.999411], [-79.30672, 36.999489], [-79.306828, 36.999557], [-79.306922, 36.999602], [-79.307072, 36.999656], [-79.307354, 36.999723], [-79.307628, 36.999778], [-79.308892, 36.999988], [-79.309029, 37.00002], [-79.309135, 37.000056], [-79.30926, 37.000112], [-79.309374, 37.00018], [-79.309478, 37.000259], [-79.30959, 37.000372], [-79.309743, 37.000552], [-79.31029, 37.001344], [-79.31037, 37.001451], [-79.310486, 37.001568], [-79.310598, 37.001654], [-79.310697, 37.001714], [-79.310838, 37.001785], [-79.310991, 37.001844], [-79.31115, 37.001891], [-79.311632, 37.001979], [-79.312359, 37.002135], [-79.312455, 37.002156], [-79.312915, 37.002271], [-79.313026, 37.002296], [-79.313639, 37.002422], [-79.314311, 37.002515], [-79.314769, 37.002553], [-79.315227, 37.002582], [-79.315352, 37.002604], [-79.315472, 37.002641], [-79.315543, 37.002685], [-79.315621, 37.00275], [-79.315685, 37.002824], [-79.315725, 37.002889], [-79.315888, 37.002832], [-79.316221, 37.002733], [-79.316448, 37.002678], [-79.31752, 37.002455], [-79.318524, 37.002275], [-79.319059, 37.002211], [-79.319268, 37.002199], [-79.319435, 37.0022], [-79.319651, 37.002214], [-79.319786, 37.002226], [-79.320258, 37.002279], [-79.320522, 37.002298], [-79.320786, 37.002302], [-79.320953, 37.002288], [-79.321116, 37.002258], [-79.321274, 37.002213], [-79.321381, 37.00217], [-79.321762, 37.002001], [-79.322382, 37.001698], [-79.322844, 37.001466], [-79.323023, 37.001376], [-79.323292, 37.001249], [-79.32357, 37.001134], [-79.323943, 37.001003], [-79.324098, 37.000958], [-79.324162, 37.000945], [-79.32513, 37.000843], [-79.325325, 37.000814], [-79.325517, 37.000777], [-79.325753, 37.000719], [-79.327186, 37.000266], [-79.327482, 37.000173], [-79.327802, 37.00008], [-79.328598, 36.999838], [-79.329158, 36.999654], [-79.329204, 36.999715], [-79.329343, 36.999894], [-79.32942, 36.999975], [-79.329588, 37.000125], [-79.329742, 37.000239], [-79.329777, 37.000256], [-79.329869, 37.000291], [-79.329988, 37.000315], [-79.330091, 37.000318], [-79.33027, 37.000316], [-79.330449, 37.000298], [-79.331035, 37.000223], [-79.331427, 37.000184], [-79.331855, 37.000129], [-79.333009, 37.000023], [-79.334568, 36.999869], [-79.335002, 36.999826], [-79.33552, 36.999806], [-79.33606, 36.999814], [-79.336208, 36.999833], [-79.336352, 36.999866], [-79.33649, 36.999913], [-79.336644, 36.999986], [-79.336856, 37.000123], [-79.336962, 37.000203], [-79.337096, 37.000316], [-79.337325, 37.000539], [-79.337519, 37.000761], [-79.338522, 37.001965], [-79.339126, 37.002688], [-79.339574, 37.003185], [-79.340385, 37.004106], [-79.340479, 37.004212], [-79.340603, 37.004341], [-79.340773, 37.00449], [-79.340929, 37.004602], [-79.341131, 37.004723], [-79.341632, 37.004968], [-79.341875, 37.005087], [-79.342172, 37.005233], [-79.342594, 37.00542], [-79.343189, 37.005708], [-79.343817, 37.006011], [-79.344455, 37.006335], [-79.344712, 37.00647], [-79.345697, 37.006916], [-79.345837, 37.006985], [-79.346006, 37.00708], [-79.346221, 37.007218], [-79.347403, 37.008016], [-79.347493, 37.008071], [-79.347634, 37.008171], [-79.347763, 37.008281], [-79.347971, 37.008497], [-79.348051, 37.008623], [-79.348135, 37.008786], [-79.348201, 37.008954], [-79.34825, 37.009126], [-79.348316, 37.00954], [-79.348397, 37.010196], [-79.34854, 37.01111], [-79.348616, 37.011496], [-79.348778, 37.012266], [-79.349159, 37.013946], [-79.349315, 37.014628], [-79.349636, 37.015919], [-79.349688, 37.016183], [-79.349795, 37.016628], [-79.349854, 37.016827], [-79.349915, 37.01701], [-79.350064, 37.017337], [-79.350135, 37.017464], [-79.350159, 37.017499], [-79.350325, 37.017735], [-79.35042, 37.017865], [-79.350584, 37.018129], [-79.35072, 37.01842], [-79.350808, 37.018683], [-79.35089, 37.018981], [-79.350968, 37.019317], [-79.35119, 37.020219], [-79.351251, 37.020445], [-79.351346, 37.020719], [-79.351414, 37.020888], [-79.351505, 37.021079], [-79.351682, 37.021459], [-79.351825, 37.02176], [-79.352185, 37.022473], [-79.352628, 37.023433], [-79.352751, 37.023743], [-79.35282, 37.023863], [-79.352895, 37.023965], [-79.353012, 37.024078], [-79.353078, 37.024127], [-79.353186, 37.024186], [-79.353325, 37.024244], [-79.353398, 37.024265], [-79.353421, 37.02427], [-79.353621, 37.024315], [-79.353675, 37.024321], [-79.35392, 37.024336], [-79.354286, 37.024379], [-79.354423, 37.024385], [-79.354844, 37.024375], [-79.355058, 37.024359], [-79.355214, 37.024339], [-79.355354, 37.024308], [-79.355614, 37.024238], [-79.355718, 37.024209], [-79.355965, 37.024125], [-79.356147, 37.024057], [-79.356485, 37.02394], [-79.356546, 37.023919], [-79.356797, 37.023824], [-79.356964, 37.023769], [-79.357077, 37.023757], [-79.357196, 37.023767], [-79.357262, 37.023786], [-79.357309, 37.023811], [-79.35735, 37.023849], [-79.357388, 37.023905], [-79.357541, 37.024317], [-79.357583, 37.024391], [-79.357634, 37.024438], [-79.357685, 37.024467], [-79.357747, 37.024487], [-79.35783, 37.024497], [-79.357899, 37.024495], [-79.35801, 37.02448], [-79.358102, 37.02446], [-79.358409, 37.025941], [-79.358471, 37.026316], [-79.358502, 37.026637], [-79.358517, 37.026844], [-79.358519, 37.027185], [-79.358497, 37.027679], [-79.358457, 37.028033], [-79.358398, 37.028378], [-79.358301, 37.028779], [-79.358082, 37.029574], [-79.357957, 37.030026], [-79.357813, 37.030609], [-79.357745, 37.03095], [-79.357685, 37.031344], [-79.357656, 37.031612], [-79.357621, 37.032199], [-79.357619, 37.032445], [-79.357631, 37.032766], [-79.357637, 37.032893], [-79.357666, 37.033258], [-79.357711, 37.033639], [-79.357789, 37.034066], [-79.357875, 37.034441], [-79.357922, 37.034622], [-79.358521, 37.036938], [-79.358613, 37.037315], [-79.358687, 37.037658], [-79.358786, 37.038217], [-79.358856, 37.038791], [-79.358911, 37.039356], [-79.358965, 37.0401], [-79.359051, 37.041306], [-79.359073, 37.041825], [-79.359059, 37.042471], [-79.359012, 37.042954], [-79.35899, 37.04313], [-79.358922, 37.043537], [-79.358829, 37.043973], [-79.358773, 37.044171], [-79.358704, 37.044417], [-79.358541, 37.044914], [-79.358352, 37.045429], [-79.357856, 37.04678], [-79.357794, 37.046961], [-79.357564, 37.047556], [-79.357409, 37.047915], [-79.357338, 37.048062], [-79.357278, 37.048184], [-79.356942, 37.048801], [-79.356841, 37.048967], [-79.356589, 37.049349], [-79.356363, 37.049677], [-79.354212, 37.052783], [-79.353972, 37.053148], [-79.353865, 37.053295], [-79.353452, 37.053889], [-79.352197, 37.055711], [-79.352126, 37.055808], [-79.351983, 37.056023], [-79.351596, 37.056539], [-79.351413, 37.056761], [-79.35122, 37.056979], [-79.351018, 37.057191], [-79.35075, 37.057445], [-79.350603, 37.057584], [-79.35029, 37.057856], [-79.348032, 37.059645], [-79.346954, 37.060488], [-79.345892, 37.06133], [-79.345295, 37.061797], [-79.344778, 37.062208], [-79.344716, 37.062258], [-79.343942, 37.062866], [-79.343259, 37.06342], [-79.342925, 37.063722], [-79.342732, 37.063907], [-79.342302, 37.064351], [-79.342055, 37.06463], [-79.341843, 37.064885], [-79.341424, 37.065452], [-79.341048, 37.066036], [-79.340718, 37.066647], [-79.340066, 37.068047], [-79.338982, 37.070343], [-79.336951, 37.074656], [-79.336672, 37.075265], [-79.335622, 37.077497], [-79.335265, 37.078252], [-79.33489, 37.079062], [-79.334833, 37.079182], [-79.334222, 37.080477], [-79.333262, 37.082521], [-79.333001, 37.083079], [-79.332628, 37.084028], [-79.332548, 37.084278], [-79.332388, 37.08478], [-79.332201, 37.085539], [-79.33204, 37.086421], [-79.33196, 37.086978], [-79.331907, 37.087757], [-79.331871, 37.088536], [-79.33185, 37.089317], [-79.331805, 37.090324], [-79.331772, 37.091338], [-79.331768, 37.092235], [-79.33183, 37.093576], [-79.331943, 37.095022], [-79.332045, 37.096198], [-79.332341, 37.099713], [-79.332397, 37.100421], [-79.332436, 37.101086], [-79.332443, 37.1013], [-79.332438, 37.10199], [-79.332418, 37.102426], [-79.332391, 37.102795], [-79.332337, 37.103324], [-79.332244, 37.103966], [-79.332205, 37.104185], [-79.332175, 37.104355], [-79.332056, 37.104907], [-79.332041, 37.104978], [-79.331903, 37.105494], [-79.331733, 37.106053], [-79.331559, 37.106562], [-79.33131, 37.107195], [-79.331178, 37.107501], [-79.330959, 37.107973], [-79.330748, 37.108399], [-79.330489, 37.108876], [-79.330365, 37.109093], [-79.330155, 37.10944], [-79.329757, 37.110058], [-79.328813, 37.111446], [-79.328701, 37.111611], [-79.327118, 37.113932], [-79.327107, 37.113947], [-79.326498, 37.114802], [-79.326178, 37.115223], [-79.326128, 37.115289], [-79.32568, 37.115855], [-79.325061, 37.116595], [-79.324816, 37.116878], [-79.324497, 37.117235], [-79.324161, 37.117601], [-79.323816, 37.117964], [-79.323589, 37.118194], [-79.323104, 37.118678], [-79.322015, 37.119732], [-79.320826, 37.12089], [-79.320279, 37.121415], [-79.31993, 37.121729], [-79.319276, 37.122271], [-79.318828, 37.122609], [-79.318377, 37.122925], [-79.317535, 37.123462], [-79.316595, 37.123987], [-79.315586, 37.124473], [-79.314958, 37.124742], [-79.311931, 37.125973], [-79.303986, 37.129196], [-79.303177, 37.129555], [-79.302367, 37.129915], [-79.30095, 37.130617], [-79.298871, 37.131691], [-79.298008, 37.132146], [-79.293574, 37.134491], [-79.293108, 37.134749], [-79.292712, 37.134937], [-79.292278, 37.135125], [-79.291836, 37.1353], [-79.291351, 37.135473], [-79.290905, 37.135615], [-79.290365, 37.135772], [-79.289641, 37.135941], [-79.289078, 37.136055], [-79.288222, 37.136184], [-79.287781, 37.136228], [-79.287205, 37.136269], [-79.281895, 37.136526], [-79.280512, 37.136607], [-79.279731, 37.13667], [-79.278968, 37.136747], [-79.277922, 37.136872], [-79.276244, 37.13712], [-79.273494, 37.137624], [-79.272005, 37.137904], [-79.271794, 37.137944], [-79.266159, 37.138985], [-79.265643, 37.139056], [-79.265084, 37.139119], [-79.264404, 37.139177], [-79.263826, 37.139213], [-79.263263, 37.139234], [-79.262666, 37.139241], [-79.262103, 37.139234], [-79.26149, 37.139213], [-79.260895, 37.13918], [-79.260488, 37.139149], [-79.257811, 37.138859], [-79.253283, 37.138354], [-79.251817, 37.138189], [-79.251311, 37.138138], [-79.25082, 37.138104], [-79.250344, 37.138087], [-79.249949, 37.138091], [-79.249141, 37.138125], [-79.248701, 37.138169], [-79.248255, 37.138232], [-79.247815, 37.138303], [-79.247404, 37.138388], [-79.246983, 37.138492], [-79.24619, 37.138741], [-79.246034, 37.138799], [-79.245567, 37.138991], [-79.243639, 37.139795], [-79.242121, 37.140435], [-79.241618, 37.140648], [-79.241125, 37.14089], [-79.240755, 37.141103], [-79.240471, 37.141293], [-79.240237, 37.141475], [-79.240023, 37.141661], [-79.239659, 37.142024], [-79.238717, 37.143115], [-79.238653, 37.143189], [-79.238443, 37.143404], [-79.23822, 37.14361], [-79.237972, 37.143817], [-79.237711, 37.144013], [-79.237424, 37.144206], [-79.237139, 37.144378], [-79.236846, 37.144536], [-79.23672, 37.144599], [-79.235366, 37.145185], [-79.235031, 37.145327], [-79.233118, 37.146139], [-79.232943, 37.146214], [-79.23213, 37.146559], [-79.23159, 37.146789], [-79.231268, 37.146943], [-79.230971, 37.147103], [-79.230723, 37.147248], [-79.230589, 37.147333], [-79.230303, 37.147527], [-79.230067, 37.147704], [-79.229831, 37.147902], [-79.229608, 37.148108], [-79.229398, 37.148324], [-79.229192, 37.148559], [-79.229002, 37.148802], [-79.228823, 37.149065], [-79.228683, 37.149299], [-79.228557, 37.149537], [-79.228436, 37.149807], [-79.228332, 37.15008], [-79.22824, 37.150371], [-79.228165, 37.150679], [-79.228144, 37.150787], [-79.22795, 37.1522], [-79.227939, 37.152282], [-79.227922, 37.152405], [-79.227831, 37.1531], [-79.227768, 37.153577], [-79.22775, 37.153704], [-79.227707, 37.153951], [-79.227614, 37.154338], [-79.227519, 37.154642], [-79.227394, 37.154981], [-79.227259, 37.155289], [-79.227113, 37.155579], [-79.227008, 37.155764], [-79.226979, 37.155814], [-79.226931, 37.155892], [-79.22673, 37.156196], [-79.226531, 37.156466], [-79.226359, 37.156679], [-79.226091, 37.156981], [-79.225836, 37.157239], [-79.225577, 37.157477], [-79.225307, 37.157704], [-79.225033, 37.15791], [-79.224838, 37.158043], [-79.223223, 37.159106], [-79.222625, 37.159494], [-79.222577, 37.159525], [-79.222526, 37.159559], [-79.222269, 37.159725], [-79.221758, 37.160065], [-79.219427, 37.161585], [-79.218294, 37.162324], [-79.218211, 37.162378], [-79.216923, 37.163217], [-79.216426, 37.163539], [-79.215909, 37.16389], [-79.215531, 37.164171], [-79.215221, 37.164425], [-79.214936, 37.164678], [-79.214674, 37.164929], [-79.214292, 37.165324], [-79.214244, 37.165374], [-79.213081, 37.166582], [-79.212642, 37.167038], [-79.212368, 37.167324], [-79.212048, 37.167658], [-79.211768, 37.16795], [-79.211486, 37.168245], [-79.211416, 37.168318], [-79.211008, 37.168744], [-79.210963, 37.168791], [-79.210689, 37.16908], [-79.210304, 37.16953], [-79.2101, 37.169782], [-79.209923, 37.170006], [-79.209526, 37.170538], [-79.209343, 37.170798], [-79.207037, 37.174039], [-79.206764, 37.174435], [-79.206634, 37.174641], [-79.206469, 37.174929], [-79.206273, 37.17532], [-79.20615, 37.175603], [-79.206073, 37.175802], [-79.206026, 37.175929], [-79.205916, 37.176273], [-79.205845, 37.176539], [-79.205757, 37.176917], [-79.205696, 37.177164], [-79.205658, 37.177349], [-79.205603, 37.177589], [-79.205562, 37.177759], [-79.205539, 37.177863], [-79.205487, 37.178091], [-79.205427, 37.178344], [-79.205364, 37.178607], [-79.205297, 37.178889], [-79.205253, 37.179068], [-79.20519, 37.179332], [-79.205122, 37.179618], [-79.205055, 37.179895], [-79.204997, 37.180138], [-79.204614, 37.181773], [-79.204588, 37.181883], [-79.204488, 37.182314], [-79.204319, 37.183043], [-79.204265, 37.183268], [-79.204123, 37.18388], [-79.203924, 37.184747], [-79.203855, 37.185167], [-79.203781, 37.185725], [-79.203767, 37.185869], [-79.203714, 37.186727], [-79.203688, 37.188358], [-79.203665, 37.189574], [-79.203624, 37.192626], [-79.203627, 37.192665], [-79.203588, 37.193792], [-79.203572, 37.194229], [-79.203568, 37.194309], [-79.203559, 37.194539], [-79.203553, 37.194676], [-79.203543, 37.194919], [-79.203531, 37.195199], [-79.203502, 37.195859], [-79.203483, 37.196276], [-79.203468, 37.196579], [-79.203458, 37.196792], [-79.203433, 37.197322], [-79.203422, 37.197563], [-79.20341, 37.197824], [-79.203397, 37.198095], [-79.20339, 37.198254], [-79.203379, 37.19847], [-79.203358, 37.198936], [-79.20334, 37.19935], [-79.203304, 37.200071], [-79.203262, 37.200536], [-79.203244, 37.200686], [-79.203162, 37.201241], [-79.203073, 37.201722], [-79.20306, 37.201793], [-79.203026, 37.201977], [-79.202836, 37.203003], [-79.202752, 37.203459], [-79.202563, 37.204478], [-79.202452, 37.205079], [-79.202395, 37.205385], [-79.201856, 37.208299], [-79.201805, 37.208574], [-79.201702, 37.209126], [-79.201673, 37.209268], [-79.201619, 37.209479], [-79.201573, 37.209638], [-79.201505, 37.209836], [-79.201407, 37.210085], [-79.201284, 37.210341], [-79.201114, 37.21064], [-79.201026, 37.210776], [-79.200882, 37.21098], [-79.200649, 37.211282], [-79.200396, 37.211554], [-79.199727, 37.212167], [-79.199637, 37.212249], [-79.199553, 37.212325], [-79.199391, 37.212473], [-79.199159, 37.212684], [-79.19865, 37.213144], [-79.197756, 37.213946], [-79.197588, 37.214097], [-79.197252, 37.214415], [-79.196922, 37.214731], [-79.196487, 37.215166], [-79.196055, 37.215596], [-79.195714, 37.216042], [-79.195395, 37.216449], [-79.194175, 37.218086], [-79.193942, 37.2184], [-79.193714, 37.218705], [-79.193339, 37.219208], [-79.193103, 37.219523], [-79.192804, 37.219924], [-79.192465, 37.220384], [-79.191972, 37.221056], [-79.191665, 37.221486], [-79.191271, 37.222039], [-79.191066, 37.222328], [-79.190837, 37.222648], [-79.190786, 37.222724], [-79.190591, 37.223024], [-79.190561, 37.223069], [-79.190114, 37.223762], [-79.189976, 37.223994], [-79.189786, 37.224314], [-79.189538, 37.224731], [-79.189441, 37.224896], [-79.189231, 37.225287], [-79.188873, 37.225949], [-79.188647, 37.226369], [-79.188578, 37.226497], [-79.188422, 37.22682], [-79.187747, 37.228226], [-79.187638, 37.228454], [-79.186752, 37.230317], [-79.186236, 37.23142], [-79.186183, 37.231531], [-79.186143, 37.231633], [-79.186012, 37.231905], [-79.185971, 37.232009], [-79.185901, 37.232204], [-79.185821, 37.232467], [-79.185783, 37.232629], [-79.185746, 37.232787], [-79.185712, 37.232989], [-79.185564, 37.234115], [-79.18554, 37.234342], [-79.185535, 37.234388], [-79.185527, 37.234464], [-79.185489, 37.234824], [-79.185459, 37.235133], [-79.185442, 37.235447], [-79.185444, 37.235802], [-79.185467, 37.236157], [-79.185494, 37.236478], [-79.185509, 37.236629], [-79.185568, 37.237037], [-79.185613, 37.237268], [-79.185642, 37.237403], [-79.185719, 37.237706], [-79.185791, 37.237965], [-79.185811, 37.238037], [-79.185899, 37.238345], [-79.185952, 37.238527], [-79.18597, 37.23859], [-79.186042, 37.238834], [-79.186525, 37.240494], [-79.186638, 37.240882], [-79.186786, 37.241392], [-79.186995, 37.242108], [-79.187061, 37.242336], [-79.187075, 37.242384], [-79.187298, 37.243149], [-79.187378, 37.243422], [-79.187527, 37.243936], [-79.187774, 37.244774], [-79.187853, 37.245008], [-79.187949, 37.245331], [-79.187975, 37.245426], [-79.18809, 37.245933], [-79.188158, 37.246339], [-79.188193, 37.246639], [-79.188214, 37.246935], [-79.188219, 37.247189], [-79.188219, 37.247284], [-79.188204, 37.247624], [-79.188173, 37.24795], [-79.188121, 37.248287], [-79.188078, 37.248502], [-79.188012, 37.248777], [-79.187964, 37.248948], [-79.18752, 37.250322], [-79.187502, 37.250377], [-79.187461, 37.250489], [-79.187101, 37.251604], [-79.186977, 37.251986], [-79.186803, 37.252487], [-79.186647, 37.252862], [-79.186473, 37.253233], [-79.1864, 37.253375], [-79.186369, 37.253435], [-79.186196, 37.253727], [-79.186096, 37.253883], [-79.185846, 37.254253], [-79.185619, 37.254587], [-79.184816, 37.255765], [-79.184332, 37.256471], [-79.184251, 37.256583], [-79.183919, 37.257073], [-79.183282, 37.258009], [-79.183273, 37.258023], [-79.182658, 37.258928], [-79.182428, 37.259266], [-79.182236, 37.259548], [-79.182189, 37.259617], [-79.181677, 37.260371], [-79.180889, 37.261527], [-79.180329, 37.262346], [-79.179966, 37.262877], [-79.178561, 37.264935], [-79.177834, 37.265998], [-79.17762, 37.266312], [-79.177577, 37.266375], [-79.177344, 37.266717], [-79.177268, 37.266828], [-79.175738, 37.269066], [-79.175293, 37.269718], [-79.175059, 37.270062], [-79.175024, 37.270113], [-79.174746, 37.27052], [-79.174499, 37.270885], [-79.174225, 37.271286], [-79.17318, 37.27282], [-79.172596, 37.273676], [-79.172062, 37.274457], [-79.17205, 37.274476], [-79.171892, 37.274707], [-79.171746, 37.274919], [-79.170612, 37.276581], [-79.170091, 37.277344], [-79.170074, 37.277368], [-79.169014, 37.27887], [-79.168768, 37.279279], [-79.168446, 37.279751], [-79.168095, 37.28026], [-79.167791, 37.280704], [-79.167004, 37.281854], [-79.166839, 37.282126], [-79.166686, 37.282417], [-79.166553, 37.282715], [-79.166455, 37.282978], [-79.166365, 37.283271], [-79.166331, 37.283406], [-79.166277, 37.283662], [-79.166236, 37.283934], [-79.166211, 37.284233], [-79.166208, 37.284331], [-79.16621, 37.284606], [-79.166232, 37.284894], [-79.166273, 37.28518], [-79.166341, 37.285491], [-79.166394, 37.28568], [-79.166419, 37.28576], [-79.16653, 37.286061], [-79.16656, 37.286133], [-79.166601, 37.286228], [-79.167073, 37.287187], [-79.167342, 37.287727], [-79.167647, 37.288335], [-79.167961, 37.288961], [-79.168213, 37.289466], [-79.168669, 37.290363], [-79.169252, 37.291516], [-79.169707, 37.292425], [-79.170019, 37.293049], [-79.170164, 37.293337], [-79.170762, 37.294525], [-79.171017, 37.295032], [-79.171197, 37.29539], [-79.171228, 37.295451], [-79.171707, 37.296402], [-79.171854, 37.296694], [-79.172057, 37.297099], [-79.172329, 37.297639], [-79.172756, 37.298485], [-79.172921, 37.29877], [-79.173118, 37.299071], [-79.173326, 37.299351], [-79.1734, 37.299443], [-79.173711, 37.299824], [-79.174643, 37.300928], [-79.177789, 37.304649], [-79.17841, 37.305383], [-79.179563, 37.306751], [-79.18128, 37.308787], [-79.181492, 37.309036], [-79.181949, 37.309573], [-79.182599, 37.310336], [-79.183198, 37.311046], [-79.183775, 37.311729], [-79.183964, 37.311947], [-79.18428, 37.312314], [-79.18536, 37.313557], [-79.18553, 37.313753], [-79.18588, 37.314159], [-79.186286, 37.314624], [-79.186592, 37.314975], [-79.186893, 37.31532], [-79.187155, 37.315623], [-79.187287, 37.315796], [-79.187433, 37.315958], [-79.187603, 37.316193], [-79.187705, 37.316348], [-79.187781, 37.316469], [-79.187895, 37.316666], [-79.188063, 37.316995], [-79.188211, 37.31734], [-79.188267, 37.317488], [-79.188574, 37.31828], [-79.18873, 37.318682], [-79.188773, 37.318793], [-79.188818, 37.318907], [-79.188983, 37.319332], [-79.189167, 37.319817], [-79.18919, 37.319881], [-79.189276, 37.320122], [-79.189293, 37.320183], [-79.189372, 37.320484], [-79.189407, 37.320635], [-79.189445, 37.320825], [-79.189477, 37.321015], [-79.189492, 37.321115], [-79.189533, 37.321458], [-79.189536, 37.321492], [-79.189586, 37.322119], [-79.189602, 37.322319], [-79.189637, 37.32275], [-79.189647, 37.322876], [-79.189704, 37.323523], [-79.189737, 37.323892], [-79.189747, 37.323997], [-79.189761, 37.324147], [-79.189781, 37.324375], [-79.189798, 37.324545], [-79.189823, 37.324722], [-79.189861, 37.324935], [-79.189896, 37.325095], [-79.189922, 37.3252], [-79.190034, 37.325593], [-79.190115, 37.325884], [-79.190279, 37.326471], [-79.190558, 37.327468], [-79.190626, 37.327737], [-79.190656, 37.327855], [-79.190719, 37.328102], [-79.190893, 37.328783], [-79.19093, 37.328914], [-79.19114, 37.329665], [-79.191197, 37.329849], [-79.191289, 37.330174], [-79.191411, 37.330604], [-79.191427, 37.330662], [-79.191549, 37.331144], [-79.191612, 37.331407], [-79.191674, 37.33166], [-79.191713, 37.331945], [-79.191731, 37.332216], [-79.191727, 37.3324], [-79.191718, 37.332618], [-79.191688, 37.333114], [-79.191671, 37.333265], [-79.191652, 37.333506], [-79.191625, 37.33369], [-79.191591, 37.333978], [-79.191586, 37.334109], [-79.191605, 37.334336], [-79.19161, 37.334672], [-79.191612, 37.334771], [-79.191619, 37.335165], [-79.191615, 37.335425], [-79.191612, 37.335464], [-79.191591, 37.335798], [-79.191573, 37.33597], [-79.19153, 37.336198], [-79.191511, 37.3363], [-79.191476, 37.336481], [-79.191396, 37.336901], [-79.191254, 37.33724], [-79.191108, 37.337564], [-79.190891, 37.337852], [-79.190707, 37.338004], [-79.190446, 37.338136], [-79.190159, 37.338232], [-79.189809, 37.338303], [-79.189504, 37.338343], [-79.189039, 37.338414], [-79.188663, 37.33847], [-79.188351, 37.338526], [-79.18802, 37.338571], [-79.18767, 37.338617], [-79.187276, 37.338677], [-79.18683, 37.338758], [-79.186448, 37.338854], [-79.186232, 37.338986], [-79.186034, 37.339158], [-79.185913, 37.339381], [-79.185862, 37.339654], [-79.185792, 37.339958], [-79.185735, 37.340246], [-79.185608, 37.340565], [-79.185474, 37.340849], [-79.185264, 37.341152], [-79.185009, 37.341421], [-79.184748, 37.341658], [-79.184399, 37.341989], [-79.184093, 37.342254], [-79.183658, 37.342682], [-79.18294, 37.343536], [-79.182113, 37.344505], [-79.181077, 37.345699], [-79.180004, 37.346871], [-79.178729, 37.348196], [-79.177389, 37.349407], [-79.177129, 37.349621], [-79.176626, 37.350036], [-79.173129, 37.353092], [-79.169752, 37.356318], [-79.169186, 37.356859], [-79.166439, 37.359647], [-79.165165, 37.360856], [-79.164528, 37.361444], [-79.163946, 37.361878], [-79.162943, 37.362614], [-79.161891, 37.363349], [-79.159885, 37.364693], [-79.158866, 37.365389], [-79.157915, 37.36609], [-79.156262, 37.367299], [-79.153378, 37.36939], [-79.1513, 37.370777], [-79.148798, 37.372337], [-79.146813, 37.373529], [-79.146135, 37.37394], [-79.145298, 37.374385], [-79.144399, 37.374808], [-79.143032, 37.375351], [-79.142887, 37.375396], [-79.141407, 37.375861], [-79.13952, 37.376309], [-79.137442, 37.376753], [-79.136385, 37.376976], [-79.135221, 37.37722], [-79.134065, 37.377456], [-79.132756, 37.377733], [-79.131505, 37.377997], [-79.130701, 37.378165], [-79.129655, 37.378385], [-79.128812, 37.378561], [-79.127809, 37.378776], [-79.127166, 37.378891], [-79.124907, 37.379433], [-79.122351, 37.380007], [-79.119924, 37.380555], [-79.118369, 37.380958], [-79.116892, 37.381492], [-79.11429, 37.382508], [-79.111589, 37.383564], [-79.110432, 37.384015], [-79.108723, 37.384663], [-79.107004, 37.385341], [-79.10533, 37.38597], [-79.10529, 37.385969], [-79.104874, 37.386095], [-79.104406, 37.386191], [-79.103958, 37.38624], [-79.103328, 37.386271], [-79.101681, 37.386155], [-79.101144, 37.386117], [-79.100418, 37.386038], [-79.097991, 37.385843], [-79.09636, 37.385744], [-79.095982, 37.385658], [-79.095845, 37.385614], [-79.09571, 37.385555], [-79.095567, 37.38548], [-79.095427, 37.38539], [-79.095308, 37.385296], [-79.09517, 37.385161], [-79.09509, 37.385054], [-79.094998, 37.384905], [-79.094916, 37.384737], [-79.094844, 37.384528], [-79.094656, 37.383845], [-79.094531, 37.38345], [-79.094325, 37.383054], [-79.094038, 37.38276], [-79.093621, 37.382467], [-79.093187, 37.382294], [-79.092689, 37.382201], [-79.092284, 37.382201], [-79.091903, 37.382257], [-79.091551, 37.382364], [-79.091187, 37.382541], [-79.090959, 37.382723], [-79.090789, 37.382882], [-79.090589, 37.383115], [-79.090443, 37.383376], [-79.090284, 37.383744], [-79.090225, 37.384], [-79.090179, 37.384541], [-79.090062, 37.385779], [-79.089925, 37.386644], [-79.089849, 37.387226], [-79.089779, 37.387541], [-79.089689, 37.387836], [-79.0895, 37.38838], [-79.089436, 37.388633], [-79.089405, 37.388841], [-79.089289, 37.389685], [-79.089161, 37.39093], [-79.089008, 37.392008], [-79.08881, 37.394069], [-79.088768, 37.394579], [-79.088645, 37.395885], [-79.088477, 37.397207], [-79.087956, 37.401181], [-79.087825, 37.401823], [-79.087665, 37.402308], [-79.087554, 37.402629], [-79.08736, 37.403142], [-79.087142, 37.403562], [-79.086923, 37.403937], [-79.086762, 37.404195], [-79.086439, 37.404708], [-79.086251, 37.405002], [-79.085982, 37.405393], [-79.085647, 37.405896], [-79.085037, 37.406824], [-79.084691, 37.407346], [-79.084239, 37.407998], [-79.084081, 37.408208], [-79.083969, 37.408376], [-79.083852, 37.408534], [-79.083752, 37.408705], [-79.083641, 37.408893], [-79.08253, 37.41059], [-79.082107, 37.41155], [-79.081937, 37.412163], [-79.081833, 37.412538], [-79.081757, 37.413176], [-79.08171, 37.413903], [-79.081751, 37.414774], [-79.081781, 37.415758], [-79.081777, 37.417393], [-79.081646, 37.41901], [-79.081485, 37.420256], [-79.081292, 37.421219], [-79.081057, 37.422257], [-79.080513, 37.424117], [-79.07951, 37.427155], [-79.078061, 37.431195], [-79.077269, 37.433524], [-79.076993, 37.434391], [-79.076647, 37.435495], [-79.076395, 37.436608], [-79.076304, 37.437254], [-79.076229, 37.438019], [-79.076213, 37.439312], [-79.076213, 37.439413], [-79.076155, 37.442774], [-79.07614, 37.443179], [-79.076116, 37.443841], [-79.076046, 37.446058], [-79.075976, 37.449173], [-79.076002, 37.451689], [-79.076065, 37.4523], [-79.076262, 37.453], [-79.076579, 37.453683], [-79.076982, 37.454312], [-79.077536, 37.45501], [-79.079739, 37.457229], [-79.080689, 37.458217], [-79.081531, 37.459252], [-79.082085, 37.460038], [-79.082441, 37.460738], [-79.082708, 37.461304], [-79.082968, 37.461981], [-79.083137, 37.462694], [-79.083265, 37.463513], [-79.083293, 37.464338], [-79.083287, 37.464745], [-79.083277, 37.465166], [-79.083236, 37.465743], [-79.083136, 37.466259], [-79.082678, 37.468029], [-79.082438, 37.469156], [-79.08215, 37.470371], [-79.081963, 37.471033], [-79.081827, 37.471415], [-79.081408, 37.472342], [-79.081005, 37.47309], [-79.080296, 37.474045], [-79.079641, 37.474751], [-79.078249, 37.476094], [-79.077451, 37.477058], [-79.076776, 37.477863], [-79.076213, 37.478711], [-79.075638, 37.479763], [-79.075274, 37.480624], [-79.074869, 37.481821], [-79.074675, 37.482594], [-79.074634, 37.482892], [-79.074593, 37.483204], [-79.07457, 37.483627], [-79.074448, 37.484732], [-79.074331, 37.485753], [-79.074167, 37.486518], [-79.073888, 37.487326], [-79.073467, 37.488074], [-79.07305, 37.488846], [-79.072616, 37.489619], [-79.072018, 37.490699], [-79.07163, 37.49136], [-79.070791, 37.492896], [-79.070146, 37.494186], [-79.06953, 37.495438], [-79.068703, 37.497026], [-79.067817, 37.498799], [-79.067177, 37.500098], [-79.066497, 37.501471], [-79.066168, 37.502341], [-79.065974, 37.503063], [-79.065895, 37.503746], [-79.065857, 37.504329], [-79.065851, 37.505804], [-79.065851, 37.506847], [-79.065828, 37.508187], [-79.065831, 37.509824], [-79.0658, 37.510657], [-79.065769, 37.511273], [-79.065628, 37.51191], [-79.065455, 37.512506], [-79.065165, 37.513111], [-79.064807, 37.513823], [-79.064426, 37.514512], [-79.063986, 37.515424], [-79.063804, 37.515903], [-79.063545, 37.516788], [-79.063328, 37.51796], [-79.063264, 37.519296], [-79.063311, 37.520208], [-79.063487, 37.521209], [-79.063645, 37.522214], [-79.063845, 37.523275], [-79.06425, 37.525364], [-79.064871, 37.528602], [-79.065376, 37.531264], [-79.066057, 37.534819], [-79.066725, 37.538252], [-79.0674, 37.541904], [-79.06794, 37.544546], [-79.068021, 37.545221], [-79.068093, 37.545891], [-79.068075, 37.546616], [-79.067977, 37.547323], [-79.067805, 37.547989], [-79.06729, 37.549617], [-79.066508, 37.552189], [-79.066203, 37.55312], [-79.065916, 37.554199], [-79.06571, 37.554864], [-79.065358, 37.555901], [-79.06462, 37.558162], [-79.064236, 37.559374], [-79.064086, 37.559848], [-79.063835, 37.560896], [-79.063609, 37.561383], [-79.063256, 37.561986], [-79.062896, 37.562503], [-79.062134, 37.563345], [-79.061625, 37.563753], [-79.06094, 37.564213], [-79.058641, 37.565583], [-79.05758, 37.566208], [-79.056639, 37.566768], [-79.055935, 37.567192], [-79.055742, 37.567302], [-79.055553, 37.567416], [-79.055246, 37.567615], [-79.054927, 37.567838], [-79.054748, 37.567977], [-79.054525, 37.568169], [-79.05429, 37.568391], [-79.054239, 37.568442], [-79.054034, 37.568657], [-79.053873, 37.56885], [-79.053657, 37.569143], [-79.053524, 37.569347], [-79.053368, 37.569618], [-79.053228, 37.569894], [-79.053172, 37.570026], [-79.053043, 37.570358], [-79.05286, 37.57095], [-79.052677, 37.571527], [-79.052485, 37.572133], [-79.052132, 37.573261], [-79.051632, 37.57486], [-79.051348, 37.57574], [-79.051123, 37.576286], [-79.051087, 37.576361], [-79.050788, 37.576916], [-79.050662, 37.577116], [-79.050472, 37.577395], [-79.050278, 37.577652], [-79.050057, 37.577924], [-79.049759, 37.578262], [-79.049412, 37.578608], [-79.049047, 37.578931], [-79.047001, 37.580602], [-79.046515, 37.580994], [-79.046166, 37.58126], [-79.045909, 37.581455], [-79.04561, 37.58167], [-79.045264, 37.581887], [-79.044961, 37.582077], [-79.044149, 37.582573], [-79.04353, 37.582927], [-79.04291, 37.58327], [-79.042129, 37.58371], [-79.041873, 37.583864], [-79.041806, 37.58391], [-79.041621, 37.584017], [-79.041414, 37.584155], [-79.041178, 37.58431], [-79.040635, 37.584689], [-79.039894, 37.585255], [-79.039608, 37.585491], [-79.03912, 37.585904], [-79.038845, 37.586155], [-79.038474, 37.586513], [-79.03781, 37.587198], [-79.037358, 37.587719], [-79.037086, 37.588056], [-79.036877, 37.588331], [-79.036498, 37.588836], [-79.036258, 37.589205], [-79.035926, 37.589739], [-79.034645, 37.591992], [-79.034482, 37.592286], [-79.034097, 37.592957], [-79.033913, 37.593255], [-79.033669, 37.593669], [-79.033006, 37.594819], [-79.032654, 37.595452], [-79.032044, 37.596522], [-79.031678, 37.597159], [-79.031353, 37.597735], [-79.03004, 37.600074], [-79.029644, 37.600763], [-79.028963, 37.601951], [-79.028685, 37.602397], [-79.02851, 37.602662], [-79.028221, 37.603043], [-79.027978, 37.603341], [-79.027692, 37.60368], [-79.027548, 37.60383], [-79.027306, 37.604072], [-79.027105, 37.604269], [-79.02697, 37.604392], [-79.026652, 37.60468], [-79.026083, 37.605207], [-79.026036, 37.60525], [-79.025989, 37.605294], [-79.025872, 37.605402], [-79.02555, 37.605685], [-79.025303, 37.605893], [-79.025239, 37.605951], [-79.025075, 37.606102], [-79.024795, 37.606358], [-79.024408, 37.606702], [-79.024072, 37.607013], [-79.024053, 37.607031], [-79.023787, 37.607264], [-79.023498, 37.607516], [-79.023027, 37.607911], [-79.022811, 37.60807], [-79.022583, 37.608218], [-79.022393, 37.608329], [-79.022103, 37.608478], [-79.021864, 37.608585], [-79.021424, 37.608752], [-79.020855, 37.608965], [-79.020271, 37.609195], [-79.020171, 37.609236], [-79.019921, 37.609348], [-79.019569, 37.609526], [-79.019341, 37.609661], [-79.019134, 37.609801], [-79.018938, 37.609951], [-79.018736, 37.61013], [-79.018557, 37.610318], [-79.018408, 37.6105], [-79.018273, 37.610689], [-79.018177, 37.610845], [-79.018077, 37.611005], [-79.017942, 37.61127], [-79.01775, 37.611733], [-79.017583, 37.612195], [-79.017453, 37.612536], [-79.01736, 37.612779], [-79.017077, 37.613518], [-79.016316, 37.615651], [-79.016211, 37.615921], [-79.015957, 37.616661], [-79.015442, 37.618041], [-79.015171, 37.618767], [-79.015044, 37.619085], [-79.014896, 37.619401], [-79.014725, 37.619699], [-79.014609, 37.619891], [-79.014507, 37.620046], [-79.014326, 37.620291], [-79.014076, 37.620611], [-79.013882, 37.620808], [-79.013583, 37.621079], [-79.012998, 37.621504], [-79.01238, 37.621893], [-79.010646, 37.622959], [-79.01003, 37.623323], [-79.009112, 37.623886], [-79.007841, 37.62468], [-79.007669, 37.624786], [-79.00613, 37.625753], [-79.00574, 37.625992], [-79.004933, 37.626484], [-79.004251, 37.626912], [-79.004139, 37.626981], [-79.003154, 37.627592], [-79.001641, 37.628516], [-79.001111, 37.628835], [-79.00072, 37.62907], [-79.000623, 37.62914], [-79.000217, 37.629394], [-78.998912, 37.630202], [-78.998196, 37.630645], [-78.997598, 37.631025], [-78.997526, 37.631071], [-78.997241, 37.631274], [-78.996875, 37.631534], [-78.996217, 37.63205], [-78.995656, 37.632525], [-78.995017, 37.633129], [-78.994464, 37.633668], [-78.993794, 37.634338], [-78.992582, 37.635539], [-78.99241, 37.635715], [-78.992112, 37.636], [-78.991971, 37.636127], [-78.991598, 37.636454], [-78.991319, 37.636676], [-78.991111, 37.636827], [-78.990724, 37.637089], [-78.990344, 37.637324], [-78.989967, 37.637537], [-78.989578, 37.637737], [-78.988855, 37.638052], [-78.98807, 37.638382], [-78.986736, 37.63892], [-78.986454, 37.639034], [-78.985803, 37.639316], [-78.984897, 37.639687], [-78.98388, 37.640096], [-78.983117, 37.640414], [-78.982726, 37.640573], [-78.981774, 37.640959], [-78.979687, 37.64182], [-78.978231, 37.642417], [-78.977005, 37.64291], [-78.97646, 37.643116], [-78.975777, 37.643333], [-78.975711, 37.643354], [-78.97542, 37.643425], [-78.974834, 37.643551], [-78.974604, 37.64359], [-78.974067, 37.643681], [-78.973393, 37.643752], [-78.972559, 37.643813], [-78.972242, 37.643839], [-78.970006, 37.64399], [-78.96903, 37.64406], [-78.968589, 37.644095], [-78.968224, 37.644136], [-78.967889, 37.644182], [-78.967664, 37.644226], [-78.967387, 37.644293], [-78.967224, 37.644341], [-78.966957, 37.64443], [-78.966688, 37.644536], [-78.966474, 37.644631], [-78.966164, 37.644789], [-78.965983, 37.644902], [-78.965692, 37.645098], [-78.965428, 37.645294], [-78.965238, 37.645456], [-78.965063, 37.645628], [-78.964898, 37.645816], [-78.964762, 37.645992], [-78.964605, 37.646219], [-78.964465, 37.646453], [-78.964354, 37.646672], [-78.96426, 37.646896], [-78.964184, 37.647124], [-78.964105, 37.647472], [-78.964045, 37.647822], [-78.963795, 37.650137], [-78.963771, 37.650446], [-78.963726, 37.650831], [-78.963699, 37.651104], [-78.963637, 37.651545], [-78.963559, 37.651968], [-78.963475, 37.652244], [-78.963403, 37.652439], [-78.963343, 37.65259], [-78.963259, 37.652771], [-78.963211, 37.652855], [-78.963159, 37.652948], [-78.963044, 37.653119], [-78.962876, 37.65334], [-78.962692, 37.653554], [-78.961989, 37.654258], [-78.961507, 37.654728], [-78.961039, 37.655181], [-78.960337, 37.655875], [-78.96023, 37.655972], [-78.960126, 37.656071], [-78.959777, 37.656385], [-78.959596, 37.656559], [-78.959428, 37.656733], [-78.95894, 37.657212], [-78.958347, 37.65781], [-78.957955, 37.658265], [-78.957902, 37.65834], [-78.957703, 37.658582], [-78.956957, 37.659613], [-78.956, 37.660952], [-78.95555, 37.661601], [-78.95521, 37.662149], [-78.955078, 37.662367], [-78.954742, 37.662988], [-78.954584, 37.663297], [-78.954305, 37.663917], [-78.954148, 37.6643], [-78.953981, 37.664751], [-78.953842, 37.665162], [-78.953791, 37.665348], [-78.953693, 37.665702], [-78.953658, 37.665836], [-78.953519, 37.666441], [-78.953449, 37.666806], [-78.953407, 37.667104], [-78.953324, 37.667763], [-78.953292, 37.668183], [-78.953221, 37.669156], [-78.953153, 37.670098], [-78.953142, 37.670264], [-78.953141, 37.6704], [-78.953072, 37.671177], [-78.95304, 37.671615], [-78.952995, 37.672174], [-78.952947, 37.672942], [-78.95292, 37.673225], [-78.952878, 37.673819], [-78.952829, 37.674339], [-78.952797, 37.674686], [-78.952784, 37.674804], [-78.952747, 37.675024], [-78.952692, 37.675301], [-78.952624, 37.675578], [-78.952561, 37.675784], [-78.952486, 37.675985], [-78.952442, 37.676122], [-78.952386, 37.676257], [-78.95232, 37.676433], [-78.952115, 37.676852], [-78.952045, 37.676981], [-78.951895, 37.677259], [-78.951765, 37.677478], [-78.951015, 37.678688], [-78.950642, 37.679294], [-78.950106, 37.680167], [-78.949932, 37.680439], [-78.949555, 37.681057], [-78.948514, 37.682749], [-78.948346, 37.683014], [-78.94819, 37.68327], [-78.947933, 37.683687], [-78.947735, 37.683997], [-78.946949, 37.685284], [-78.946763, 37.685577], [-78.946171, 37.686544], [-78.946077, 37.686718], [-78.945972, 37.686928], [-78.945848, 37.687201], [-78.945794, 37.687349], [-78.945689, 37.687661], [-78.945632, 37.687901], [-78.945568, 37.688266], [-78.945541, 37.688542], [-78.945537, 37.688659], [-78.945545, 37.689126], [-78.945579, 37.689434], [-78.945664, 37.689907], [-78.945683, 37.68999], [-78.945776, 37.690456], [-78.945835, 37.69071], [-78.945961, 37.691323], [-78.946182, 37.69241], [-78.946237, 37.692788], [-78.946274, 37.693085], [-78.946296, 37.693491], [-78.946303, 37.694022], [-78.946301, 37.694057], [-78.946287, 37.694387], [-78.946261, 37.694709], [-78.946249, 37.694805], [-78.946182, 37.695293], [-78.946055, 37.695876], [-78.945864, 37.696567], [-78.945405, 37.698162], [-78.945298, 37.698548], [-78.944826, 37.700186], [-78.944719, 37.700501], [-78.94458, 37.700835], [-78.944457, 37.701074], [-78.944324, 37.701307], [-78.944135, 37.701595], [-78.944026, 37.701738], [-78.943778, 37.70202], [-78.943504, 37.702305], [-78.943214, 37.702564], [-78.94302, 37.702719], [-78.942935, 37.702779], [-78.942809, 37.702868], [-78.942485, 37.703077], [-78.942218, 37.703232], [-78.9405, 37.704132], [-78.940455, 37.704155], [-78.940006, 37.704381], [-78.938227, 37.705302], [-78.93698, 37.705948], [-78.93647, 37.706225], [-78.93488, 37.707122], [-78.934646, 37.707256], [-78.93388, 37.707679], [-78.933448, 37.707924], [-78.932774, 37.708305], [-78.931107, 37.709235], [-78.929365, 37.710215], [-78.928987, 37.710423], [-78.928188, 37.710873], [-78.927848, 37.711058], [-78.927739, 37.711117], [-78.927286, 37.71134], [-78.927035, 37.711449], [-78.926705, 37.711572], [-78.926357, 37.711684], [-78.926015, 37.711773], [-78.925764, 37.711831], [-78.925742, 37.711836], [-78.925395, 37.711899], [-78.925098, 37.711943], [-78.92463, 37.712006], [-78.924358, 37.71204], [-78.9241, 37.712072], [-78.923317, 37.712168], [-78.922673, 37.712257], [-78.921644, 37.712386], [-78.920771, 37.712503], [-78.91879, 37.712755], [-78.917763, 37.712894], [-78.916758, 37.713029], [-78.916316, 37.713107], [-78.915891, 37.713204], [-78.915614, 37.71328], [-78.915324, 37.713372], [-78.915274, 37.713388], [-78.914912, 37.71352], [-78.91455, 37.71367], [-78.914179, 37.713842], [-78.913675, 37.714085], [-78.912967, 37.714415], [-78.910226, 37.715714], [-78.90939, 37.716116], [-78.908844, 37.716378], [-78.908565, 37.716525], [-78.908344, 37.716654], [-78.908223, 37.716733], [-78.907898, 37.716972], [-78.907709, 37.71712], [-78.907284, 37.717479], [-78.905705, 37.718784], [-78.905314, 37.719084], [-78.90491, 37.719372], [-78.904525, 37.719604], [-78.904033, 37.719882], [-78.903337, 37.720265], [-78.902528, 37.720722], [-78.902455, 37.720766], [-78.902055, 37.720998], [-78.901704, 37.721237], [-78.901372, 37.721492], [-78.901207, 37.721632], [-78.901102, 37.721732], [-78.90093, 37.721897], [-78.900791, 37.722043], [-78.900736, 37.722103], [-78.900601, 37.722261], [-78.900394, 37.722523], [-78.900222, 37.722764], [-78.900079, 37.722992], [-78.900004, 37.723131], [-78.899716, 37.723665], [-78.899467, 37.724145], [-78.899406, 37.724274], [-78.89922, 37.72461], [-78.899008, 37.725016], [-78.898838, 37.725322], [-78.898749, 37.725462], [-78.898619, 37.725684], [-78.898501, 37.725886], [-78.898424, 37.726009], [-78.898396, 37.726054], [-78.89823, 37.726333], [-78.897785, 37.72702], [-78.897326, 37.727687], [-78.897029, 37.728104], [-78.896755, 37.72847], [-78.896087, 37.729327], [-78.895376, 37.730223], [-78.89492, 37.73078], [-78.894224, 37.731648], [-78.893951, 37.731982], [-78.893208, 37.732922], [-78.893101, 37.733073], [-78.892951, 37.733284], [-78.892829, 37.733486], [-78.892725, 37.733694], [-78.892653, 37.733852], [-78.892395, 37.734583], [-78.892264, 37.735006], [-78.891874, 37.73617], [-78.891809, 37.736394], [-78.891615, 37.736972], [-78.891508, 37.737307], [-78.891316, 37.737819], [-78.891154, 37.738191], [-78.891075, 37.738356], [-78.891011, 37.738485], [-78.890701, 37.739024], [-78.890539, 37.739262], [-78.890353, 37.739521], [-78.890119, 37.739847], [-78.889796, 37.740253], [-78.889491, 37.740645], [-78.889217, 37.740996], [-78.888944, 37.74133], [-78.888623, 37.741743], [-78.888513, 37.741886], [-78.888267, 37.742188], [-78.887876, 37.742653], [-78.887675, 37.74287], [-78.887504, 37.743037], [-78.887277, 37.743237], [-78.887216, 37.743287], [-78.887135, 37.743353], [-78.886534, 37.743824], [-78.886162, 37.744125], [-78.8861, 37.744182], [-78.885899, 37.744355], [-78.885622, 37.744575], [-78.885356, 37.74478], [-78.884605, 37.745388], [-78.884042, 37.74585], [-78.882882, 37.746752], [-78.882051, 37.747417], [-78.880834, 37.748391], [-78.88003, 37.749038], [-78.879751, 37.749271], [-78.879568, 37.74942], [-78.879376, 37.749569], [-78.878419, 37.750353], [-78.877854, 37.750804], [-78.877584, 37.751037], [-78.877286, 37.751315], [-78.877004, 37.751598], [-78.876844, 37.751774], [-78.876626, 37.752042], [-78.876378, 37.752385], [-78.876192, 37.752665], [-78.876061, 37.752882], [-78.875814, 37.753345], [-78.875209, 37.754691], [-78.874619, 37.756931], [-78.874501, 37.757307], [-78.874339, 37.757855], [-78.873994, 37.758979], [-78.873789, 37.759637], [-78.873696, 37.75991], [-78.873541, 37.760318], [-78.873332, 37.760834], [-78.873094, 37.761337], [-78.872847, 37.761808], [-78.872451, 37.762468], [-78.872257, 37.76277], [-78.871993, 37.763172], [-78.871574, 37.763799], [-78.871327, 37.764167], [-78.871012, 37.764642], [-78.870469, 37.765468], [-78.870316, 37.765702], [-78.870042, 37.766126], [-78.869873, 37.766412], [-78.869781, 37.766589], [-78.869687, 37.766814], [-78.869585, 37.76708], [-78.869516, 37.767314], [-78.869424, 37.767698], [-78.869391, 37.767942], [-78.86938, 37.768238], [-78.869389, 37.768459], [-78.869415, 37.768673], [-78.869485, 37.768991], [-78.869567, 37.769255], [-78.86966, 37.769515], [-78.869743, 37.769714], [-78.869793, 37.769822], [-78.870127, 37.770634], [-78.870244, 37.770938], [-78.870299, 37.771157], [-78.870337, 37.771378], [-78.870379, 37.771605], [-78.870392, 37.771879], [-78.870378, 37.772127], [-78.870337, 37.772397], [-78.870272, 37.77267], [-78.870248, 37.772764], [-78.87004, 37.773562], [-78.869728, 37.774718], [-78.869574, 37.775264], [-78.869411, 37.775864], [-78.869234, 37.776522], [-78.869061, 37.777151], [-78.868889, 37.777735], [-78.868643, 37.778648], [-78.868399, 37.779571], [-78.868224, 37.780198], [-78.868067, 37.780782], [-78.867497, 37.782893], [-78.867434, 37.783141], [-78.867364, 37.783414], [-78.867185, 37.784047], [-78.867156, 37.784152], [-78.867042, 37.784562], [-78.866921, 37.785054], [-78.866779, 37.785508], [-78.866518, 37.786333], [-78.866458, 37.786501], [-78.866348, 37.786832], [-78.866066, 37.787709], [-78.865703, 37.788816], [-78.865457, 37.789659], [-78.865164, 37.790592], [-78.864927, 37.791345], [-78.864619, 37.792175], [-78.864507, 37.792484], [-78.864363, 37.792792], [-78.864228, 37.793041], [-78.864067, 37.7933], [-78.863882, 37.793548], [-78.863684, 37.793797], [-78.863319, 37.794211], [-78.863117, 37.794344], [-78.86295, 37.794541], [-78.862701, 37.794857], [-78.86248, 37.795184], [-78.862275, 37.795518], [-78.862199, 37.795651], [-78.862007, 37.796159], [-78.861989, 37.79622], [-78.861909, 37.796548], [-78.861883, 37.796687], [-78.861846, 37.796942], [-78.861828, 37.797235], [-78.861827, 37.797529], [-78.861837, 37.797754], [-78.861844, 37.797901], [-78.861878, 37.798631], [-78.861919, 37.799738], [-78.861971, 37.800826], [-78.862007, 37.801869], [-78.862081, 37.803303], [-78.862104, 37.80423], [-78.86209, 37.804437], [-78.862063, 37.804642], [-78.862038, 37.804754], [-78.862023, 37.804816], [-78.861947, 37.805046], [-78.861861, 37.805246], [-78.861771, 37.805437], [-78.86165, 37.805634], [-78.861512, 37.805817], [-78.861343, 37.806004], [-78.860353, 37.806994], [-78.859848, 37.807481], [-78.858512, 37.808821], [-78.858367, 37.808958], [-78.858079, 37.809211], [-78.857729, 37.809505], [-78.857293, 37.80986], [-78.856987, 37.81009], [-78.856658, 37.810338], [-78.855693, 37.81105], [-78.85561, 37.811115], [-78.855262, 37.811371], [-78.854965, 37.811605], [-78.853694, 37.812587], [-78.853389, 37.812818], [-78.852362, 37.813637], [-78.851981, 37.813912], [-78.851517, 37.814266], [-78.851057, 37.81462], [-78.85085, 37.814768], [-78.850729, 37.814859], [-78.850652, 37.81492], [-78.850085, 37.815369], [-78.848637, 37.81648], [-78.846503, 37.818117], [-78.846263, 37.818303], [-78.845641, 37.818784], [-78.845198, 37.81912], [-78.844287, 37.819835], [-78.843809, 37.820229], [-78.841255, 37.822413], [-78.840635, 37.822925], [-78.840114, 37.823377], [-78.839772, 37.823685], [-78.839408, 37.824047], [-78.839049, 37.824425], [-78.838766, 37.824737], [-78.838386, 37.825182], [-78.838147, 37.825481], [-78.837849, 37.82588], [-78.837407, 37.826506], [-78.837204, 37.826823], [-78.837053, 37.827081], [-78.836731, 37.827595], [-78.836452, 37.828104], [-78.836275, 37.828399], [-78.836111, 37.828667], [-78.835849, 37.82912], [-78.835504, 37.829691], [-78.835352, 37.829945], [-78.83498, 37.830568], [-78.834935, 37.830642], [-78.834826, 37.830821], [-78.834646, 37.831137], [-78.834377, 37.831577], [-78.833853, 37.832462], [-78.833724, 37.832692], [-78.833217, 37.833546], [-78.831919, 37.835713], [-78.831568, 37.836263], [-78.831293, 37.836637], [-78.831013, 37.836981], [-78.83077, 37.837252], [-78.829687, 37.838434], [-78.829526, 37.8386], [-78.829353, 37.838766], [-78.828845, 37.839208], [-78.828553, 37.839442], [-78.828248, 37.839665], [-78.827736, 37.840071], [-78.82744, 37.840316], [-78.827359, 37.840393], [-78.827219, 37.840526], [-78.827033, 37.840723], [-78.82681, 37.840985], [-78.826636, 37.841213], [-78.826324, 37.841668], [-78.825848, 37.842321], [-78.825635, 37.842569], [-78.825481, 37.842727], [-78.825276, 37.842917], [-78.825211, 37.842971], [-78.825103, 37.843062], [-78.824902, 37.843225], [-78.824735, 37.84334], [-78.824467, 37.843502], [-78.824206, 37.843652], [-78.82312, 37.844198], [-78.822611, 37.844456], [-78.821878, 37.84482], [-78.820981, 37.845244], [-78.82067, 37.845389], [-78.820264, 37.845536], [-78.820038, 37.845598], [-78.819873, 37.845635], [-78.81967, 37.845683], [-78.819501, 37.845707], [-78.819221, 37.845735], [-78.818871, 37.845752], [-78.818684, 37.845746], [-78.818377, 37.845729], [-78.818065, 37.845689], [-78.817748, 37.845635], [-78.817461, 37.845563], [-78.817089, 37.845456], [-78.81664, 37.845308], [-78.816094, 37.845137], [-78.815801, 37.845042], [-78.815106, 37.844835], [-78.814203, 37.844545], [-78.813661, 37.844372], [-78.813194, 37.844227], [-78.812793, 37.844119], [-78.812466, 37.844059], [-78.812161, 37.844015], [-78.811899, 37.843994], [-78.811692, 37.843985], [-78.81145, 37.844002], [-78.811288, 37.844022], [-78.810966, 37.84409], [-78.810704, 37.844162], [-78.810498, 37.844229], [-78.810246, 37.844336], [-78.80993, 37.84449], [-78.809727, 37.844605], [-78.809573, 37.844705], [-78.809276, 37.84492], [-78.809029, 37.845076], [-78.808807, 37.845199], [-78.808527, 37.845332], [-78.808311, 37.845419], [-78.808089, 37.845498], [-78.807811, 37.845579], [-78.807589, 37.845643], [-78.807297, 37.845708], [-78.807, 37.845759], [-78.806691, 37.845797], [-78.806302, 37.845837], [-78.805184, 37.845933], [-78.80503, 37.845945], [-78.804012, 37.846026], [-78.800837, 37.846324], [-78.800537, 37.846339], [-78.800237, 37.846355], [-78.800014, 37.846352], [-78.79976, 37.846345], [-78.799425, 37.846321], [-78.799048, 37.846276], [-78.79881, 37.846227], [-78.798587, 37.846183], [-78.798334, 37.846121], [-78.798127, 37.846044], [-78.797833, 37.845932], [-78.797473, 37.845765], [-78.797183, 37.845617], [-78.796923, 37.845465], [-78.796357, 37.845082], [-78.795818, 37.844712], [-78.795607, 37.84458], [-78.795352, 37.844427], [-78.795147, 37.84431], [-78.794915, 37.844201], [-78.794645, 37.844085], [-78.794419, 37.843996], [-78.794095, 37.843903], [-78.793805, 37.843828], [-78.793467, 37.843774], [-78.793125, 37.84374], [-78.792933, 37.843732], [-78.792722, 37.843723], [-78.792238, 37.84372], [-78.791688, 37.843732], [-78.791137, 37.843731], [-78.790713, 37.843712], [-78.790444, 37.843693], [-78.79016, 37.843657], [-78.78988, 37.843607], [-78.789604, 37.843542], [-78.789363, 37.843478], [-78.789067, 37.843389], [-78.788706, 37.843253], [-78.78839, 37.843125], [-78.788101, 37.843016], [-78.78765, 37.842857], [-78.787324, 37.842748], [-78.787056, 37.84268], [-78.786677, 37.842606], [-78.786459, 37.842568], [-78.786292, 37.842537], [-78.785994, 37.842501], [-78.785649, 37.842467], [-78.785267, 37.842457], [-78.784945, 37.842456], [-78.784589, 37.842468], [-78.782212, 37.842633], [-78.780497, 37.842776], [-78.779987, 37.842814], [-78.778924, 37.842896], [-78.77812, 37.842986], [-78.777773, 37.843042], [-78.777066, 37.843144], [-78.776444, 37.84325], [-78.775647, 37.843402], [-78.774632, 37.843601], [-78.773646, 37.843786], [-78.773282, 37.843855], [-78.772981, 37.843912], [-78.772128, 37.844091], [-78.771161, 37.844316], [-78.770651, 37.844441], [-78.769991, 37.844616], [-78.768859, 37.844941], [-78.768162, 37.845142], [-78.767015, 37.845472], [-78.76637, 37.845658], [-78.765119, 37.846012], [-78.761663, 37.84701], [-78.760903, 37.847224], [-78.760298, 37.847402], [-78.75996, 37.847506], [-78.7597, 37.847596], [-78.759532, 37.84765], [-78.759113, 37.847806], [-78.758783, 37.847948], [-78.758412, 37.84812], [-78.758057, 37.848288], [-78.757154, 37.848747], [-78.756986, 37.848829], [-78.756546, 37.849062], [-78.756115, 37.849306], [-78.755862, 37.849458], [-78.755244, 37.849843], [-78.754769, 37.85013], [-78.754377, 37.85038], [-78.753945, 37.850672], [-78.753673, 37.850873], [-78.753364, 37.851127], [-78.753217, 37.851259], [-78.752739, 37.851715], [-78.752046, 37.852374], [-78.75166, 37.852719], [-78.751401, 37.852929], [-78.751134, 37.853132], [-78.750789, 37.853376], [-78.750504, 37.853564], [-78.750081, 37.853824], [-78.74973, 37.854021], [-78.749369, 37.854207], [-78.748998, 37.85438], [-78.748624, 37.854531], [-78.748053, 37.854743], [-78.747045, 37.85508], [-78.746537, 37.855262], [-78.746473, 37.855285], [-78.745985, 37.855474], [-78.7456, 37.855635], [-78.744986, 37.855911], [-78.744673, 37.856064], [-78.744246, 37.856299], [-78.743761, 37.856591], [-78.743416, 37.856817], [-78.742954, 37.857145], [-78.742639, 37.857387], [-78.742337, 37.85764], [-78.742294, 37.85768], [-78.741896, 37.858045], [-78.741503, 37.85843], [-78.741291, 37.858648], [-78.741254, 37.858686], [-78.740963, 37.859027], [-78.740705, 37.859351], [-78.740668, 37.859398], [-78.740453, 37.85968], [-78.739901, 37.860385], [-78.739675, 37.860647], [-78.739434, 37.860902], [-78.739176, 37.861151], [-78.73895, 37.861357], [-78.738655, 37.861604], [-78.738411, 37.861795], [-78.738094, 37.862025], [-78.737733, 37.862262], [-78.737429, 37.862445], [-78.73708, 37.862638], [-78.73657, 37.862893], [-78.736186, 37.863088], [-78.735435, 37.86348], [-78.734529, 37.863942], [-78.733874, 37.864271], [-78.733562, 37.864427], [-78.733042, 37.864704], [-78.732039, 37.865214], [-78.731948, 37.865258], [-78.731785, 37.865335], [-78.731411, 37.86553], [-78.730148, 37.866169], [-78.729986, 37.866254], [-78.729722, 37.866391], [-78.728688, 37.866913], [-78.727888, 37.86733], [-78.727529, 37.86751], [-78.726765, 37.867904], [-78.726166, 37.868202], [-78.725869, 37.868361], [-78.725428, 37.868579], [-78.725084, 37.868757], [-78.724518, 37.869049], [-78.723898, 37.869354], [-78.722779, 37.869945], [-78.721592, 37.870542], [-78.720481, 37.87111], [-78.719958, 37.871373], [-78.719701, 37.871497], [-78.719365, 37.871672], [-78.718719, 37.872028], [-78.71847, 37.872183], [-78.718164, 37.872388], [-78.717945, 37.872553], [-78.717592, 37.872851], [-78.717285, 37.873139], [-78.717049, 37.873363], [-78.716739, 37.873728], [-78.716536, 37.874002], [-78.716395, 37.874221], [-78.716144, 37.874657], [-78.71604, 37.87487], [-78.715888, 37.875212], [-78.715814, 37.875401], [-78.715694, 37.87571], [-78.715495, 37.876238], [-78.715377, 37.876548], [-78.715275, 37.876817], [-78.71521, 37.877013], [-78.715136, 37.877211], [-78.715081, 37.877371], [-78.714995, 37.877587], [-78.71492, 37.877787], [-78.7148, 37.878131], [-78.714687, 37.878428], [-78.714533, 37.878796], [-78.714454, 37.879009], [-78.714417, 37.879116], [-78.714256, 37.879549], [-78.714141, 37.879854], [-78.713896, 37.880594], [-78.713756, 37.881038], [-78.713682, 37.88126], [-78.713617, 37.881457], [-78.713533, 37.881697], [-78.713446, 37.881943], [-78.713394, 37.882108], [-78.713314, 37.882336], [-78.713184, 37.882655], [-78.713006, 37.883053], [-78.712892, 37.883274], [-78.712733, 37.88355], [-78.712558, 37.88384], [-78.712369, 37.884119], [-78.712275, 37.884257], [-78.712136, 37.884449], [-78.711974, 37.884667], [-78.711814, 37.884876], [-78.711641, 37.885085], [-78.711418, 37.885345], [-78.711139, 37.885644], [-78.710798, 37.88599], [-78.710465, 37.886309], [-78.710195, 37.886555], [-78.709928, 37.886781], [-78.709577, 37.88706], [-78.709406, 37.887199], [-78.709211, 37.887345], [-78.708778, 37.887648], [-78.707968, 37.888179], [-78.707642, 37.888399], [-78.707473, 37.88851], [-78.707244, 37.888663], [-78.706965, 37.888843], [-78.706601, 37.889083], [-78.706088, 37.889425], [-78.705712, 37.889669], [-78.705189, 37.890019], [-78.704893, 37.890211], [-78.703445, 37.891162], [-78.703041, 37.891429], [-78.702721, 37.891638], [-78.702327, 37.891905], [-78.70184, 37.892223], [-78.701163, 37.892662], [-78.700778, 37.892933], [-78.70071, 37.892981], [-78.700622, 37.893046], [-78.700337, 37.893272], [-78.69999, 37.89357], [-78.699755, 37.8938], [-78.699482, 37.894099], [-78.699289, 37.894329], [-78.698787, 37.894984], [-78.698558, 37.895284], [-78.69837, 37.895519], [-78.698116, 37.895851], [-78.697966, 37.896055], [-78.697696, 37.896407], [-78.697057, 37.897242], [-78.696439, 37.898041], [-78.695681, 37.899035], [-78.695049, 37.899863], [-78.694658, 37.900403], [-78.694519, 37.900599], [-78.694429, 37.900733], [-78.693954, 37.901464], [-78.693721, 37.901862], [-78.693473, 37.902275], [-78.693102, 37.902981], [-78.692879, 37.903439], [-78.692797, 37.903623], [-78.692129, 37.905105], [-78.691808, 37.905817], [-78.691268, 37.906984], [-78.690987, 37.907549], [-78.690814, 37.907874], [-78.690688, 37.908089], [-78.690521, 37.908372], [-78.690275, 37.908767], [-78.689663, 37.909657], [-78.689078, 37.910492], [-78.685485, 37.915666], [-78.684467, 37.917131], [-78.682047, 37.920608], [-78.681785, 37.92095], [-78.681517, 37.921272], [-78.681241, 37.921578], [-78.68101, 37.921818], [-78.680605, 37.922194], [-78.68013, 37.922617], [-78.679566, 37.923137], [-78.679307, 37.923403], [-78.678986, 37.92374], [-78.678605, 37.924203], [-78.678345, 37.924561], [-78.678124, 37.924891], [-78.677903, 37.925227], [-78.677688, 37.925589], [-78.677544, 37.925878], [-78.67731, 37.926442], [-78.676551, 37.928284], [-78.676404, 37.928595], [-78.676242, 37.928949], [-78.676148, 37.929122], [-78.675977, 37.929377], [-78.675612, 37.929807], [-78.675385, 37.930086], [-78.675213, 37.930312], [-78.675004, 37.930559], [-78.674617, 37.931044], [-78.67407, 37.931702], [-78.673673, 37.932201], [-78.673281, 37.9327], [-78.672994, 37.933082], [-78.672166, 37.934227], [-78.671112, 37.935771], [-78.670762, 37.936281], [-78.670385, 37.936817], [-78.669877, 37.937599], [-78.668999, 37.93886], [-78.667671, 37.940789], [-78.666721, 37.942158], [-78.666126, 37.943118], [-78.665597, 37.944014], [-78.665125, 37.944827], [-78.664642, 37.945633], [-78.664087, 37.946602], [-78.663665, 37.947366], [-78.663523, 37.947648], [-78.663363, 37.948007], [-78.66312, 37.948581], [-78.662992, 37.948919], [-78.662788, 37.949511], [-78.662392, 37.950794], [-78.662127, 37.951686], [-78.661907, 37.952368], [-78.6618, 37.952667], [-78.661673, 37.952964], [-78.661549, 37.953229], [-78.661377, 37.953546], [-78.661172, 37.953875], [-78.660975, 37.954168], [-78.660712, 37.954527], [-78.660589, 37.954686], [-78.660525, 37.954768], [-78.660204, 37.955161], [-78.659899, 37.955515], [-78.65946, 37.956045], [-78.659107, 37.956472], [-78.658939, 37.95668], [-78.658404, 37.957325], [-78.658185, 37.957583], [-78.657413, 37.958505], [-78.65713, 37.958855], [-78.65677, 37.959264], [-78.656612, 37.959431], [-78.656439, 37.95959], [-78.656251, 37.959739], [-78.656068, 37.959867], [-78.655989, 37.959917], [-78.655752, 37.960052], [-78.655575, 37.96015], [-78.655228, 37.960289], [-78.654931, 37.960405], [-78.653275, 37.960978], [-78.652399, 37.961277], [-78.651659, 37.961545], [-78.651372, 37.96167], [-78.651131, 37.961788], [-78.650953, 37.961888], [-78.65077, 37.962003], [-78.650655, 37.962074], [-78.650545, 37.96215], [-78.650369, 37.962277], [-78.650124, 37.962492], [-78.649827, 37.962781], [-78.649528, 37.963082], [-78.649157, 37.963468], [-78.648771, 37.96385], [-78.648569, 37.964042], [-78.648236, 37.964318], [-78.647928, 37.964546], [-78.647355, 37.964951], [-78.646421, 37.965624], [-78.646034, 37.965897], [-78.645591, 37.966218], [-78.645351, 37.966376], [-78.645051, 37.966569], [-78.644735, 37.966754], [-78.644581, 37.96684], [-78.6444, 37.966936], [-78.643915, 37.967163], [-78.643555, 37.967319], [-78.643147, 37.967465], [-78.642853, 37.967561], [-78.642519, 37.96766], [-78.642395, 37.967695], [-78.642095, 37.967768], [-78.641871, 37.967823], [-78.641449, 37.967916], [-78.640993, 37.967991], [-78.640408, 37.968066], [-78.639997, 37.968103], [-78.639496, 37.96813], [-78.638995, 37.968136], [-78.638434, 37.968125], [-78.637944, 37.9681], [-78.63612, 37.967958], [-78.635136, 37.967873], [-78.633802, 37.96777], [-78.632073, 37.967631], [-78.631801, 37.967611], [-78.630935, 37.967546], [-78.630424, 37.967503], [-78.629697, 37.967442], [-78.628686, 37.967361], [-78.626167, 37.967159], [-78.623282, 37.966927], [-78.622258, 37.96685], [-78.621932, 37.966824], [-78.620819, 37.966736], [-78.620381, 37.966716], [-78.620004, 37.966712], [-78.619679, 37.966717], [-78.61937, 37.966745], [-78.619064, 37.966787], [-78.618761, 37.966844], [-78.618523, 37.9669], [-78.618222, 37.966977], [-78.617837, 37.967103], [-78.617525, 37.967224], [-78.617264, 37.967333], [-78.616866, 37.967526], [-78.61666, 37.96764], [-78.616487, 37.967735], [-78.616266, 37.967872], [-78.615844, 37.968137], [-78.615555, 37.968338], [-78.615229, 37.968577], [-78.614931, 37.968831], [-78.614607, 37.969142], [-78.614381, 37.96937], [-78.614151, 37.969646], [-78.613964, 37.96988], [-78.613494, 37.970554], [-78.61301, 37.971246], [-78.612831, 37.971512], [-78.612279, 37.972333], [-78.611229, 37.97389], [-78.610819, 37.974494], [-78.610719, 37.974624], [-78.610499, 37.974897], [-78.610319, 37.975118], [-78.610116, 37.975331], [-78.609966, 37.975469], [-78.609796, 37.975624], [-78.609591, 37.975796], [-78.609317, 37.976004], [-78.609071, 37.976176], [-78.608849, 37.976327], [-78.608744, 37.97639], [-78.608365, 37.976619], [-78.608101, 37.976752], [-78.607845, 37.976869], [-78.607584, 37.976978], [-78.60725, 37.977103], [-78.606977, 37.977192], [-78.606625, 37.977297], [-78.606266, 37.977388], [-78.606123, 37.977418], [-78.605902, 37.977465], [-78.605646, 37.97752], [-78.605621, 37.977522], [-78.605549, 37.977538], [-78.60423, 37.977756], [-78.602588, 37.978034], [-78.602162, 37.978122], [-78.601825, 37.978203], [-78.601492, 37.978293], [-78.601094, 37.978414], [-78.60071, 37.978547], [-78.600334, 37.978694], [-78.599967, 37.978854], [-78.599486, 37.979083], [-78.599163, 37.979252], [-78.598789, 37.97947], [-78.598549, 37.979624], [-78.597946, 37.980033], [-78.596889, 37.98075], [-78.595137, 37.981939], [-78.593704, 37.982911], [-78.592376, 37.98382], [-78.590854, 37.984906], [-78.590225, 37.985373], [-78.588999, 37.98631], [-78.588012, 37.9871], [-78.587089, 37.987859], [-78.586722, 37.988171], [-78.586183, 37.988631], [-78.585023, 37.989655], [-78.583908, 37.990662], [-78.583686, 37.990885], [-78.583478, 37.991116], [-78.583203, 37.991447], [-78.583057, 37.991641], [-78.582889, 37.99189], [-78.582734, 37.992152], [-78.582584, 37.992445], [-78.582451, 37.992743], [-78.582318, 37.993104], [-78.582229, 37.993396], [-78.582158, 37.993692], [-78.582061, 37.994255], [-78.581989, 37.994788], [-78.581919, 37.9952], [-78.581831, 37.99573], [-78.581596, 37.997239], [-78.581525, 37.997665], [-78.58147, 37.998088], [-78.581083, 38.000517], [-78.580993, 38.001016], [-78.580912, 38.001332], [-78.580857, 38.001514], [-78.580851, 38.001532], [-78.580827, 38.001607], [-78.580788, 38.001711], [-78.580764, 38.001783], [-78.580638, 38.002087], [-78.580501, 38.002397], [-78.580338, 38.002682], [-78.580176, 38.002939], [-78.580026, 38.003155], [-78.57984, 38.003394], [-78.579631, 38.003641], [-78.579528, 38.003748], [-78.579258, 38.004014], [-78.578985, 38.00426], [-78.578784, 38.004426], [-78.578575, 38.004584], [-78.578379, 38.004723], [-78.578122, 38.004899], [-78.577709, 38.005151], [-78.577431, 38.005306], [-78.577141, 38.005444], [-78.576923, 38.005542], [-78.576628, 38.005666], [-78.576327, 38.005766], [-78.576154, 38.005828], [-78.575371, 38.006031], [-78.574274, 38.006313], [-78.573929, 38.006397], [-78.573678, 38.006459], [-78.5731, 38.006602], [-78.572544, 38.006742], [-78.570845, 38.007165], [-78.570536, 38.007245], [-78.570147, 38.007346], [-78.569511, 38.007502], [-78.568866, 38.007677], [-78.568449, 38.007795], [-78.568216, 38.007865], [-78.567861, 38.007984], [-78.567483, 38.008116], [-78.567008, 38.00831], [-78.566642, 38.008471], [-78.566222, 38.008672], [-78.565813, 38.008887], [-78.565381, 38.009126], [-78.564818, 38.009422], [-78.564544, 38.009563], [-78.564196, 38.009735], [-78.564075, 38.009787], [-78.56369, 38.009944], [-78.56326, 38.010103], [-78.562849, 38.010238], [-78.562529, 38.010332], [-78.562124, 38.010438], [-78.561805, 38.010515], [-78.561564, 38.010564], [-78.56093, 38.010675], [-78.560028, 38.010845], [-78.558824, 38.011064], [-78.558024, 38.011219], [-78.557648, 38.011286], [-78.557386, 38.011333], [-78.557058, 38.011387], [-78.555118, 38.011755], [-78.554112, 38.011931], [-78.552878, 38.012156], [-78.552449, 38.01225], [-78.552186, 38.012316], [-78.551829, 38.012417], [-78.551365, 38.012562], [-78.55109, 38.012655], [-78.550658, 38.012829], [-78.550236, 38.013017], [-78.549599, 38.013364], [-78.549376, 38.013492], [-78.549058, 38.013698], [-78.548469, 38.01411], [-78.547659, 38.014674], [-78.547468, 38.014808], [-78.54736, 38.014884], [-78.547042, 38.015096], [-78.546611, 38.015362], [-78.546269, 38.015559], [-78.54592, 38.01574], [-78.545223, 38.016069], [-78.544841, 38.016247], [-78.543906, 38.016682], [-78.543654, 38.016806], [-78.54333, 38.016982], [-78.542733, 38.017318], [-78.542466, 38.017467], [-78.539711, 38.018979], [-78.536725, 38.020664], [-78.535885, 38.021132], [-78.535518, 38.021335], [-78.534742, 38.021766], [-78.534188, 38.022073], [-78.532955, 38.02276], [-78.532173, 38.023196], [-78.531193, 38.023747], [-78.531125, 38.023792], [-78.53075, 38.024045], [-78.530445, 38.024274], [-78.530203, 38.024476], [-78.530016, 38.024649], [-78.529931, 38.024733], [-78.52985, 38.024806], [-78.529798, 38.024854], [-78.529758, 38.024894], [-78.529598, 38.025065], [-78.529327, 38.025386], [-78.52916, 38.025608], [-78.528945, 38.025933], [-78.5288, 38.026176], [-78.528672, 38.026426], [-78.52861, 38.026566], [-78.528405, 38.027066], [-78.52833, 38.027311], [-78.528283, 38.02751], [-78.528235, 38.027689], [-78.528151, 38.028145], [-78.527582, 38.03105], [-78.527126, 38.033402], [-78.52703, 38.033972], [-78.526914, 38.034782], [-78.526868, 38.035166], [-78.52679, 38.036035], [-78.526753, 38.036647], [-78.526715, 38.03781], [-78.526642, 38.040878], [-78.526607, 38.042081], [-78.526584, 38.042473], [-78.526544, 38.042863], [-78.52645, 38.043462], [-78.526353, 38.043907], [-78.526306, 38.044099], [-78.526225, 38.044382], [-78.526103, 38.044762], [-78.525978, 38.045116], [-78.52595, 38.045183], [-78.525619, 38.045973], [-78.525226, 38.046882], [-78.524837, 38.047794], [-78.524807, 38.047861], [-78.524712, 38.048073], [-78.523664, 38.050524], [-78.523608, 38.050633], [-78.523449, 38.050945], [-78.523194, 38.051371], [-78.522992, 38.051667], [-78.522896, 38.051793], [-78.522708, 38.052033], [-78.522379, 38.052403], [-78.522049, 38.052728], [-78.521736, 38.053004], [-78.521375, 38.053289], [-78.521061, 38.053512], [-78.520792, 38.053687], [-78.520433, 38.053898], [-78.5202, 38.054028], [-78.519924, 38.054166], [-78.519561, 38.054329], [-78.519179, 38.054486], [-78.518827, 38.054612], [-78.518437, 38.054736], [-78.518106, 38.054829], [-78.517883, 38.054877], [-78.517638, 38.05494], [-78.517298, 38.055006], [-78.51674, 38.055093], [-78.515503, 38.055228], [-78.513125, 38.055506], [-78.51298, 38.05552], [-78.511721, 38.055664], [-78.510089, 38.05585], [-78.509444, 38.055931], [-78.508892, 38.056018], [-78.508324, 38.056121], [-78.50762, 38.056269], [-78.507101, 38.056364], [-78.5063, 38.056529], [-78.504207, 38.056975], [-78.503544, 38.057129], [-78.50332, 38.057173], [-78.50218, 38.05739], [-78.501769, 38.057476], [-78.501588, 38.057518], [-78.501288, 38.05758], [-78.500918, 38.057644], [-78.50053, 38.057699], [-78.50025, 38.057721], [-78.49999, 38.057731], [-78.4996, 38.057738], [-78.499258, 38.057729], [-78.499228, 38.057727], [-78.498789, 38.057695], [-78.498509, 38.057667], [-78.498249, 38.05764], [-78.497868, 38.057604], [-78.497658, 38.057584], [-78.497235, 38.057537], [-78.496848, 38.057489], [-78.495893, 38.057371], [-78.494978, 38.057279], [-78.49472, 38.057173], [-78.494659, 38.057142], [-78.494592, 38.057093], [-78.494549, 38.057047], [-78.494516, 38.056995], [-78.494502, 38.05695], [-78.494493, 38.056874], [-78.494502, 38.056798], [-78.494522, 38.056739], [-78.494562, 38.056669], [-78.494623, 38.05661], [-78.494697, 38.056562], [-78.494781, 38.056525], [-78.494872, 38.056502], [-78.49496, 38.056493], [-78.495044, 38.0565], [-78.495109, 38.056516], [-78.495169, 38.056541], [-78.495238, 38.056584], [-78.49528, 38.056617], [-78.495339, 38.05668], [-78.495381, 38.056751], [-78.495402, 38.056811], [-78.495415, 38.056894], [-78.495413, 38.056998], [-78.495388, 38.057116], [-78.49528, 38.057239], [-78.495007, 38.057577], [-78.494845, 38.057747], [-78.494782, 38.057825], [-78.494593, 38.05807], [-78.494413, 38.058298], [-78.494268, 38.05847], [-78.494235, 38.058509], [-78.494159, 38.058601], [-78.493967, 38.058833], [-78.493505, 38.059401], [-78.493364, 38.059586], [-78.492889, 38.060182], [-78.492564, 38.060616], [-78.492196, 38.061101], [-78.491916, 38.061468], [-78.491724, 38.061722], [-78.491723, 38.061722], [-78.491578, 38.061897], [-78.491244, 38.062293], [-78.490863, 38.062734], [-78.490477, 38.063153], [-78.490269, 38.06338], [-78.489937, 38.063742], [-78.48969, 38.064008], [-78.489478, 38.064259], [-78.489344, 38.064409], [-78.489289, 38.06447], [-78.489212, 38.064554], [-78.488761, 38.065053], [-78.48815, 38.065739], [-78.488116, 38.065779], [-78.487867, 38.06605], [-78.48713, 38.06686], [-78.486995, 38.067008], [-78.486825, 38.067194], [-78.486343, 38.067727], [-78.486218, 38.067866], [-78.486208, 38.067877], [-78.486134, 38.067959], [-78.48576, 38.068363], [-78.485475, 38.06867], [-78.485154, 38.069027], [-78.484295, 38.070023], [-78.484063, 38.070271], [-78.483776, 38.070614], [-78.483281, 38.071164], [-78.482433, 38.07211], [-78.480968, 38.073741], [-78.480778, 38.073943], [-78.480706, 38.07403], [-78.480376, 38.074401], [-78.479882, 38.074956], [-78.479801, 38.075034], [-78.479272, 38.075634], [-78.478606, 38.076375], [-78.478527, 38.076469], [-78.478367, 38.076647], [-78.477091, 38.078062], [-78.476397, 38.078846], [-78.475743, 38.079571], [-78.474543, 38.08091], [-78.474163, 38.081335], [-78.473969, 38.081577], [-78.473788, 38.081788], [-78.473613, 38.082014], [-78.47347, 38.082218], [-78.472971, 38.083082], [-78.472639, 38.083666], [-78.472264, 38.084319], [-78.471709, 38.085285], [-78.471146, 38.086271], [-78.47079, 38.086895], [-78.470583, 38.087258], [-78.47026, 38.087825], [-78.469568, 38.089039], [-78.468607, 38.090712], [-78.468501, 38.090897], [-78.468139, 38.091557], [-78.468043, 38.091733], [-78.467922, 38.09192], [-78.467732, 38.092218], [-78.46735, 38.0929], [-78.466766, 38.093924], [-78.466497, 38.09437], [-78.466369, 38.094558], [-78.46599, 38.095057], [-78.465526, 38.09564], [-78.465381, 38.095816], [-78.464933, 38.096381], [-78.464463, 38.096962], [-78.464049, 38.097474], [-78.463974, 38.097573], [-78.463441, 38.098232], [-78.46294, 38.098874], [-78.462231, 38.099765], [-78.461478, 38.100721], [-78.460943, 38.101395], [-78.460544, 38.101882], [-78.460009, 38.102564], [-78.459568, 38.103126], [-78.459337, 38.103403], [-78.458603, 38.10429], [-78.457804, 38.105297], [-78.45751, 38.105695], [-78.4569, 38.106619], [-78.456598, 38.107068], [-78.45544, 38.108845], [-78.454988, 38.109578], [-78.454476, 38.110311], [-78.454296, 38.110569], [-78.454206, 38.110708], [-78.454093, 38.110899], [-78.453942, 38.111128], [-78.453769, 38.111409], [-78.453294, 38.112125], [-78.453172, 38.112318], [-78.452856, 38.112817], [-78.452688, 38.11307], [-78.452602, 38.113223], [-78.451975, 38.114186], [-78.451686, 38.11461], [-78.45106, 38.115568], [-78.450908, 38.115798], [-78.450496, 38.11642], [-78.450419, 38.116537], [-78.45032, 38.116697], [-78.450137, 38.116993], [-78.449702, 38.117634], [-78.449172, 38.118448], [-78.448773, 38.119065], [-78.448006, 38.120242], [-78.447677, 38.120726], [-78.447299, 38.121219], [-78.44692, 38.121631], [-78.446411, 38.122124], [-78.4458, 38.12267], [-78.444661, 38.123687], [-78.442392, 38.125724], [-78.441529, 38.126494], [-78.440922, 38.127044], [-78.440006, 38.127866], [-78.439371, 38.128436], [-78.437997, 38.129669], [-78.437902, 38.129754], [-78.437019, 38.130549], [-78.436453, 38.131059], [-78.436187, 38.131299], [-78.435995, 38.13147], [-78.435251, 38.132172], [-78.435106, 38.132303], [-78.434673, 38.132753], [-78.434293, 38.13317], [-78.433695, 38.133887], [-78.433416, 38.134269], [-78.433195, 38.134572], [-78.432173, 38.13616], [-78.430917, 38.138131], [-78.430468, 38.138847], [-78.429836, 38.139833], [-78.429464, 38.140424], [-78.428859, 38.141359], [-78.428348, 38.142178], [-78.428275, 38.142291], [-78.427887, 38.14289], [-78.427641, 38.143278], [-78.427277, 38.143851], [-78.427263, 38.143873], [-78.425718, 38.146293], [-78.4249, 38.147586], [-78.423982, 38.149017], [-78.423879, 38.149181], [-78.4234, 38.149936], [-78.422346, 38.1516], [-78.42208, 38.151996], [-78.421684, 38.152621], [-78.421337, 38.15319], [-78.420383, 38.154692], [-78.419605, 38.155908], [-78.417659, 38.158962], [-78.415009, 38.163121], [-78.414626, 38.163716], [-78.414541, 38.163851], [-78.414293, 38.164245], [-78.412771, 38.16663], [-78.41231, 38.167345], [-78.411781, 38.168185], [-78.410521, 38.170164], [-78.410064, 38.170881], [-78.408661, 38.173081], [-78.408289, 38.173661], [-78.406754, 38.176057], [-78.405791, 38.177582], [-78.405633, 38.177824], [-78.404819, 38.179105], [-78.40451, 38.179581], [-78.403702, 38.180857], [-78.403534, 38.181116], [-78.40229, 38.183084], [-78.402, 38.183534], [-78.401567, 38.184219], [-78.401491, 38.184329], [-78.400918, 38.18523], [-78.400512, 38.185861], [-78.399321, 38.187671], [-78.399195, 38.187856], [-78.399077, 38.188041], [-78.398689, 38.188617], [-78.398558, 38.18882], [-78.397589, 38.190295], [-78.3974, 38.190566], [-78.397207, 38.19086], [-78.396877, 38.191349], [-78.396731, 38.191574], [-78.396016, 38.192652], [-78.395969, 38.192724], [-78.395198, 38.193895], [-78.395145, 38.193978], [-78.395092, 38.194057], [-78.395078, 38.194078], [-78.394787, 38.194511], [-78.394461, 38.19501], [-78.394425, 38.195065], [-78.393867, 38.195904], [-78.393697, 38.196162], [-78.392569, 38.197862], [-78.392356, 38.198186], [-78.391791, 38.199049], [-78.3916, 38.199341], [-78.391424, 38.19959], [-78.391056, 38.200141], [-78.390364, 38.201178], [-78.388697, 38.203713], [-78.387884, 38.204937], [-78.387682, 38.20524], [-78.387424, 38.205639], [-78.386997, 38.206278], [-78.386781, 38.206604], [-78.386138, 38.207581], [-78.385992, 38.207804], [-78.385531, 38.2085], [-78.38498, 38.209334], [-78.384853, 38.209537], [-78.383889, 38.210987], [-78.383519, 38.211533], [-78.383408, 38.211705], [-78.383194, 38.212041], [-78.382209, 38.213531], [-78.381949, 38.213932], [-78.381401, 38.214759], [-78.380953, 38.215433], [-78.380697, 38.215818], [-78.380472, 38.216158], [-78.379118, 38.218196], [-78.378999, 38.218384], [-78.37862, 38.21895], [-78.377882, 38.220071], [-78.377739, 38.220289], [-78.377587, 38.220523], [-78.376908, 38.221535], [-78.376698, 38.221851], [-78.376516, 38.222128], [-78.375966, 38.222959], [-78.375503, 38.223658], [-78.374143, 38.225716], [-78.373741, 38.226317], [-78.372465, 38.228246], [-78.371604, 38.229546], [-78.371224, 38.230126], [-78.37075, 38.230832], [-78.370117, 38.231792], [-78.369796, 38.23229], [-78.369344, 38.233031], [-78.369247, 38.233202], [-78.369201, 38.233285], [-78.369089, 38.233499], [-78.368757, 38.234191], [-78.368537, 38.23469], [-78.368285, 38.235273], [-78.367348, 38.237406], [-78.367125, 38.237924], [-78.366876, 38.23848], [-78.366632, 38.239054], [-78.366538, 38.239263], [-78.366315, 38.239761], [-78.365981, 38.240523], [-78.365112, 38.242495], [-78.364536, 38.243815], [-78.364277, 38.244425], [-78.363872, 38.245322], [-78.363644, 38.245831], [-78.363475, 38.246227], [-78.363324, 38.246579], [-78.363065, 38.24716], [-78.362399, 38.248697], [-78.362213, 38.249115], [-78.36185, 38.249928], [-78.360994, 38.251906], [-78.360894, 38.252122], [-78.360732, 38.252472], [-78.359818, 38.254556], [-78.359604, 38.255032], [-78.358451, 38.257672], [-78.35837, 38.257854], [-78.357235, 38.260418], [-78.35697, 38.261034], [-78.356749, 38.261526], [-78.356328, 38.262487], [-78.3557, 38.26392], [-78.355441, 38.264489], [-78.354985, 38.265534], [-78.354199, 38.267311], [-78.354014, 38.267697], [-78.353899, 38.267927], [-78.353632, 38.268419], [-78.353386, 38.268835], [-78.353012, 38.269405], [-78.352727, 38.269807], [-78.352433, 38.270193], [-78.351176, 38.271816], [-78.35069, 38.272444], [-78.350332, 38.272914], [-78.349867, 38.273496], [-78.349659, 38.273731], [-78.349448, 38.273949], [-78.349246, 38.274133], [-78.348925, 38.274393], [-78.348653, 38.274592], [-78.348309, 38.274816], [-78.346752, 38.275754], [-78.345609, 38.276449], [-78.34394, 38.277447], [-78.343411, 38.277789], [-78.343205, 38.277938], [-78.342906, 38.278167], [-78.342692, 38.278348], [-78.342621, 38.27841], [-78.342399, 38.278622], [-78.342335, 38.278686], [-78.342171, 38.278857], [-78.341631, 38.279482], [-78.341204, 38.280003], [-78.341139, 38.280089], [-78.341053, 38.280202], [-78.340551, 38.280804], [-78.34033, 38.281097], [-78.339739, 38.281771], [-78.337121, 38.284947], [-78.335554, 38.286807], [-78.334912, 38.287652], [-78.334363, 38.288479], [-78.333901, 38.289321], [-78.332891, 38.291302], [-78.33264, 38.291856], [-78.332046, 38.29316], [-78.331547, 38.294091], [-78.33002, 38.297253], [-78.328705, 38.299896], [-78.328454, 38.300437], [-78.327604, 38.302025], [-78.326529, 38.303681], [-78.325643, 38.304891], [-78.325058, 38.305662], [-78.32399, 38.30691], [-78.3236, 38.307359], [-78.323233, 38.30771], [-78.322626, 38.308335], [-78.320591, 38.310229], [-78.317859, 38.312439], [-78.317136, 38.313055], [-78.314274, 38.315396], [-78.313204, 38.316275], [-78.313084, 38.316374], [-78.312238, 38.317069], [-78.31127, 38.317874], [-78.310555, 38.318624], [-78.308339, 38.321068], [-78.307189, 38.322326], [-78.306432, 38.323147], [-78.305157, 38.324565], [-78.299683, 38.33067], [-78.296227, 38.334366], [-78.294775, 38.336025], [-78.294422, 38.336434], [-78.293518, 38.337393], [-78.292283, 38.338774], [-78.290905, 38.340301], [-78.289054, 38.34231], [-78.287698, 38.343781], [-78.286127, 38.345511], [-78.284805, 38.346961], [-78.284197, 38.347653], [-78.281261, 38.350904], [-78.27928, 38.353063], [-78.277989, 38.354462], [-78.276967, 38.355626], [-78.275482, 38.357205], [-78.275108, 38.357686], [-78.273995, 38.359116], [-78.272612, 38.361053], [-78.269402, 38.365549], [-78.268281, 38.367067], [-78.26707, 38.368543], [-78.266209, 38.369424], [-78.26463, 38.370803], [-78.263855, 38.371431], [-78.262777, 38.372178], [-78.262167, 38.372601], [-78.258589, 38.375046], [-78.253931, 38.378242], [-78.253419, 38.378585], [-78.252722, 38.379065], [-78.251038, 38.380279], [-78.249725, 38.3814], [-78.248824, 38.38242], [-78.247019, 38.384778], [-78.243045, 38.39007], [-78.242379, 38.390835], [-78.241798, 38.391304], [-78.241358, 38.391649], [-78.240659, 38.392107], [-78.239791, 38.392562], [-78.236781, 38.394134], [-78.234618, 38.395478], [-78.233524, 38.396238], [-78.231366, 38.397688], [-78.230593, 38.398159], [-78.229713, 38.398631], [-78.22927, 38.398846], [-78.227176, 38.399941], [-78.224001, 38.401573], [-78.221687, 38.402762], [-78.220927, 38.403115], [-78.219583, 38.403494], [-78.217956, 38.403869], [-78.216834, 38.404329], [-78.216198, 38.404653], [-78.215673, 38.404943], [-78.2147, 38.405692], [-78.214341, 38.406017], [-78.211846, 38.409013], [-78.211205, 38.409859], [-78.208931, 38.412831], [-78.207891, 38.413946], [-78.207388, 38.414459], [-78.206848, 38.414885], [-78.20502, 38.416246], [-78.204339, 38.416746], [-78.203587, 38.417231], [-78.201789, 38.418025], [-78.199931, 38.418788], [-78.198775, 38.419213], [-78.197516, 38.419599], [-78.196891, 38.419728], [-78.193593, 38.420311], [-78.192656, 38.420508], [-78.191772, 38.420736], [-78.190615, 38.421137], [-78.189756, 38.421485], [-78.189131, 38.421795], [-78.188009, 38.422501], [-78.186635, 38.423265], [-78.185396, 38.423841], [-78.184545, 38.424162], [-78.179643, 38.425692], [-78.176595, 38.426575], [-78.175037, 38.427149], [-78.174014, 38.427529], [-78.171007, 38.428688], [-78.169272, 38.429381], [-78.165511, 38.430827], [-78.164119, 38.431371], [-78.162591, 38.431967], [-78.161653, 38.432308], [-78.160661, 38.43271], [-78.160269, 38.432865], [-78.159874, 38.433009], [-78.157491, 38.433942], [-78.157022, 38.434133], [-78.156281, 38.434403], [-78.154122, 38.435214], [-78.152887, 38.435503], [-78.151935, 38.435645], [-78.151237, 38.435723], [-78.149391, 38.435895], [-78.145341, 38.436294], [-78.143178, 38.436516], [-78.141588, 38.436723], [-78.140742, 38.436927], [-78.139967, 38.43716], [-78.139029, 38.437478], [-78.138213, 38.437833], [-78.13673, 38.438732], [-78.135769, 38.439493], [-78.133667, 38.441543], [-78.13309, 38.442092], [-78.132637, 38.442565], [-78.131362, 38.443807], [-78.131197, 38.443972], [-78.13069, 38.444456], [-78.13004, 38.445093], [-78.129654, 38.445515], [-78.129431, 38.445788], [-78.129306, 38.445939], [-78.129135, 38.446147], [-78.126535, 38.449414], [-78.12559, 38.450596], [-78.124937, 38.451403], [-78.12463, 38.451786], [-78.122999, 38.453819], [-78.12268, 38.454222], [-78.122212, 38.454799], [-78.122012, 38.455018], [-78.121815, 38.455209], [-78.121657, 38.455346], [-78.121484, 38.455481], [-78.121283, 38.455622], [-78.121072, 38.455755], [-78.120838, 38.455889], [-78.120605, 38.456007], [-78.120411, 38.456093], [-78.120081, 38.45622], [-78.11988, 38.456286], [-78.119617, 38.456362], [-78.119481, 38.456395], [-78.119029, 38.456484], [-78.118859, 38.456513], [-78.118556, 38.456543], [-78.118252, 38.456558], [-78.117886, 38.45656], [-78.117582, 38.456545], [-78.117215, 38.456509], [-78.11691, 38.456463], [-78.116669, 38.456417], [-78.116299, 38.456332], [-78.114395, 38.455867], [-78.113075, 38.455549], [-78.112183, 38.455337], [-78.111983, 38.455288], [-78.110622, 38.454956], [-78.109647, 38.454713], [-78.109318, 38.454619], [-78.108646, 38.454427], [-78.108148, 38.454266], [-78.107826, 38.454152], [-78.107433, 38.454006], [-78.106215, 38.453523], [-78.103244, 38.452284], [-78.103113, 38.45223], [-78.101465, 38.451517], [-78.100793, 38.451267], [-78.099999, 38.450965], [-78.099633, 38.450843], [-78.099366, 38.450762], [-78.098981, 38.450649], [-78.098604, 38.450547], [-78.098262, 38.45046], [-78.09792, 38.450384], [-78.096808, 38.450181], [-78.096151, 38.450083], [-78.095446, 38.449969], [-78.093727, 38.449707], [-78.092677, 38.449547], [-78.092158, 38.449481], [-78.091766, 38.449445], [-78.091635, 38.449437], [-78.091391, 38.44943], [-78.09088, 38.449437], [-78.090541, 38.449459], [-78.090154, 38.449505], [-78.090027, 38.449526], [-78.089761, 38.44957], [-78.089091, 38.449707], [-78.08849, 38.449845], [-78.087312, 38.450134], [-78.086546, 38.450314], [-78.086092, 38.450427], [-78.085716, 38.450516], [-78.085217, 38.45064], [-78.083614, 38.45102], [-78.082588, 38.451268], [-78.081682, 38.451496], [-78.080934, 38.451707], [-78.080808, 38.451743], [-78.080252, 38.451928], [-78.080061, 38.451995], [-78.079356, 38.452244], [-78.079056, 38.452366], [-78.077758, 38.452899], [-78.07693, 38.453218], [-78.07648, 38.453363], [-78.075972, 38.453504], [-78.075519, 38.453613], [-78.075245, 38.453672], [-78.074633, 38.453773], [-78.073634, 38.453917], [-78.073086, 38.453985], [-78.071708, 38.454165], [-78.070367, 38.45434], [-78.069606, 38.454439], [-78.065196, 38.455001], [-78.0636, 38.455212], [-78.062967, 38.455296], [-78.062279, 38.455383], [-78.061807, 38.45545], [-78.061375, 38.455516], [-78.060496, 38.455651], [-78.059099, 38.455874], [-78.058415, 38.455997], [-78.057861, 38.456107], [-78.057398, 38.456211], [-78.057094, 38.456284], [-78.055369, 38.456762], [-78.054558, 38.456978], [-78.05416, 38.457057], [-78.053923, 38.4571], [-78.053692, 38.457137], [-78.053464, 38.457172], [-78.052965, 38.457229], [-78.052547, 38.457266], [-78.05168, 38.457327], [-78.051381, 38.457343], [-78.051209, 38.457356], [-78.050231, 38.457415], [-78.049522, 38.45745], [-78.049115, 38.457457], [-78.048707, 38.45745], [-78.048107, 38.457414], [-78.046583, 38.457296], [-78.045473, 38.457209], [-78.043615, 38.457066], [-78.04299, 38.457014], [-78.041948, 38.456934], [-78.041564, 38.4569], [-78.040447, 38.456809], [-78.039807, 38.456752], [-78.039565, 38.456722], [-78.038614, 38.456586], [-78.037992, 38.45648], [-78.036619, 38.456229], [-78.036312, 38.456174], [-78.035316, 38.455996], [-78.033993, 38.455756], [-78.033455, 38.455659], [-78.032995, 38.455576], [-78.032344, 38.455462], [-78.032225, 38.455441], [-78.032071, 38.455411], [-78.031918, 38.455381], [-78.030629, 38.455156], [-78.030487, 38.455136], [-78.02993, 38.455035], [-78.029397, 38.454939], [-78.027154, 38.454551], [-78.026507, 38.454439], [-78.026143, 38.454368], [-78.025005, 38.454171], [-78.024336, 38.45404], [-78.023622, 38.453878], [-78.02312, 38.453727], [-78.02273, 38.453603], [-78.022384, 38.453473], [-78.021945, 38.453293], [-78.021688, 38.453179], [-78.02141, 38.45304], [-78.020949, 38.452794], [-78.020606, 38.452593], [-78.018376, 38.451156], [-78.015052, 38.449001], [-78.013038, 38.447702], [-78.012718, 38.447476], [-78.012365, 38.447314], [-78.011913, 38.44707], [-78.011467, 38.446849], [-78.011017, 38.446646], [-78.010785, 38.446548], [-78.01041, 38.446389], [-78.009947, 38.446212], [-78.009475, 38.446047], [-78.009032, 38.44592], [-78.008198, 38.445668], [-78.007806, 38.445574], [-78.007536, 38.445509], [-78.00704, 38.445404], [-78.006541, 38.445314], [-78.006039, 38.445234], [-78.005535, 38.445168], [-78.004882, 38.445103], [-78.00427, 38.44506], [-78.003857, 38.445042], [-78.003259, 38.445032], [-77.996098, 38.445039], [-77.995524, 38.445052], [-77.995083, 38.445072], [-77.9946, 38.445108], [-77.994291, 38.44514], [-77.994119, 38.445159], [-77.993562, 38.445235], [-77.993077, 38.445314], [-77.992738, 38.44538], [-77.992304, 38.445476], [-77.991774, 38.445609], [-77.991277, 38.445754], [-77.990885, 38.44588], [-77.990401, 38.446049], [-77.989902, 38.446248], [-77.98951, 38.446417], [-77.989127, 38.446595], [-77.988671, 38.446826], [-77.988226, 38.44707], [-77.988015, 38.447193], [-77.987964, 38.447222], [-77.986229, 38.448266], [-77.982377, 38.450578], [-77.980067, 38.451965], [-77.978396, 38.452971], [-77.976723, 38.453978], [-77.971729, 38.456974], [-77.970854, 38.457513], [-77.970447, 38.457776], [-77.969812, 38.458205], [-77.969672, 38.458304], [-77.969294, 38.458571], [-77.968878, 38.458872], [-77.968162, 38.459423], [-77.967696, 38.459799], [-77.967125, 38.46028], [-77.966325, 38.460982], [-77.965258, 38.461918], [-77.964866, 38.462267], [-77.960196, 38.466376], [-77.955939, 38.470123], [-77.954947, 38.470996], [-77.954533, 38.471358], [-77.953922, 38.471893], [-77.953458, 38.472304], [-77.953176, 38.472548], [-77.952583, 38.473072], [-77.951119, 38.474355], [-77.950943, 38.474509], [-77.949669, 38.47563], [-77.948949, 38.476265], [-77.948002, 38.477098], [-77.940672, 38.483548], [-77.940481, 38.483731], [-77.940188, 38.484012], [-77.939893, 38.484318], [-77.939484, 38.484776], [-77.93926, 38.485054], [-77.939039, 38.48534], [-77.938835, 38.485618], [-77.938574, 38.486003], [-77.938385, 38.4863], [-77.938154, 38.486695], [-77.936929, 38.489071], [-77.936476, 38.48995], [-77.936307, 38.490277], [-77.936213, 38.490449], [-77.936032, 38.490779], [-77.935797, 38.491168], [-77.935515, 38.491593], [-77.935238, 38.491981], [-77.934904, 38.492412], [-77.934836, 38.492493], [-77.93462, 38.492753], [-77.934238, 38.493183], [-77.933985, 38.493449], [-77.933681, 38.493753], [-77.933395, 38.494018], [-77.933018, 38.494354], [-77.932749, 38.494585], [-77.932252, 38.494973], [-77.93171, 38.495374], [-77.931341, 38.495628], [-77.930966, 38.495866], [-77.930194, 38.496327], [-77.929795, 38.496546], [-77.929468, 38.496713], [-77.928898, 38.496989], [-77.928401, 38.497211], [-77.927814, 38.497454], [-77.927352, 38.49763], [-77.926883, 38.497792], [-77.92627, 38.497988], [-77.925745, 38.498139], [-77.925688, 38.498154], [-77.925207, 38.498279], [-77.924635, 38.498412], [-77.924059, 38.498531], [-77.923478, 38.498637], [-77.923244, 38.498675], [-77.9209, 38.499106], [-77.920407, 38.499196], [-77.916265, 38.499951], [-77.914897, 38.500194], [-77.913262, 38.500498], [-77.912906, 38.500563], [-77.911059, 38.5009], [-77.910401, 38.501012], [-77.909308, 38.501222], [-77.90816, 38.501425], [-77.906956, 38.501647], [-77.902649, 38.502433], [-77.901836, 38.502578], [-77.901383, 38.502661], [-77.899056, 38.503088], [-77.897887, 38.503302], [-77.896932, 38.503454], [-77.896481, 38.503514], [-77.896026, 38.50356], [-77.89557, 38.503592], [-77.895091, 38.503613], [-77.894605, 38.503621], [-77.894338, 38.503619], [-77.894023, 38.503612], [-77.893539, 38.503589], [-77.893152, 38.50356], [-77.891645, 38.503392], [-77.891145, 38.503351], [-77.890705, 38.503331], [-77.890264, 38.503325], [-77.89, 38.503328], [-77.889421, 38.503346], [-77.888918, 38.503375], [-77.888578, 38.503406], [-77.888318, 38.503429], [-77.887823, 38.50349], [-77.887334, 38.503566], [-77.886849, 38.503655], [-77.886369, 38.503759], [-77.885701, 38.503929], [-77.88504, 38.504114], [-77.883872, 38.504451], [-77.882026, 38.504972], [-77.880726, 38.50535], [-77.879756, 38.505628], [-77.879416, 38.505726], [-77.878734, 38.505916], [-77.87665, 38.506514], [-77.873295, 38.507467], [-77.870872, 38.508164], [-77.867574, 38.509112], [-77.86643, 38.509426], [-77.865139, 38.509804], [-77.864878, 38.509875], [-77.864614, 38.509946], [-77.864004, 38.510124], [-77.863963, 38.510136], [-77.863243, 38.510359], [-77.862776, 38.510515], [-77.862313, 38.51068], [-77.86153, 38.510992], [-77.86091, 38.511252], [-77.860341, 38.511504], [-77.860101, 38.511597], [-77.859873, 38.511706], [-77.859049, 38.512033], [-77.858596, 38.512199], [-77.85801, 38.512393], [-77.85641, 38.512859], [-77.85546, 38.513131], [-77.853636, 38.513652], [-77.852939, 38.513842], [-77.85189, 38.514117], [-77.851773, 38.514147], [-77.851155, 38.514282], [-77.850783, 38.514355], [-77.850158, 38.514468], [-77.849529, 38.514566], [-77.848611, 38.514673], [-77.847601, 38.514814], [-77.847219, 38.514874], [-77.846744, 38.514961], [-77.846275, 38.515063], [-77.845622, 38.515227], [-77.843493, 38.515828], [-77.840926, 38.516554], [-77.838953, 38.517123], [-77.838611, 38.51724], [-77.838276, 38.51737], [-77.838087, 38.517452], [-77.837878, 38.517559], [-77.837641, 38.517698], [-77.837371, 38.517879], [-77.837159, 38.518042], [-77.836631, 38.518508], [-77.833939, 38.52107], [-77.833536, 38.521444], [-77.832859, 38.52207], [-77.832618, 38.52227], [-77.832363, 38.52246], [-77.832151, 38.522605], [-77.831761, 38.52284], [-77.831645, 38.522905], [-77.831341, 38.523059], [-77.831027, 38.523201], [-77.830705, 38.52333], [-77.830375, 38.523446], [-77.82725, 38.524408], [-77.825282, 38.525005], [-77.824825, 38.525153], [-77.824766, 38.525172], [-77.82414, 38.525403], [-77.823904, 38.525501], [-77.823444, 38.525707], [-77.823161, 38.525842], [-77.822816, 38.526023], [-77.822483, 38.526216], [-77.82216, 38.526429], [-77.821905, 38.526618], [-77.821824, 38.526681], [-77.821661, 38.526816], [-77.82143, 38.527024], [-77.821026, 38.527454], [-77.820758, 38.527783], [-77.820516, 38.528112], [-77.820197, 38.52856], [-77.819895, 38.529029], [-77.81945, 38.529798], [-77.818541, 38.531386], [-77.817476, 38.533249], [-77.817174, 38.533749], [-77.815779, 38.536111], [-77.812836, 38.541042], [-77.812145, 38.542152], [-77.811443, 38.543345], [-77.81107, 38.543916], [-77.809169, 38.54677], [-77.807061, 38.549912], [-77.805801, 38.55177], [-77.803189, 38.555743], [-77.802664, 38.55653], [-77.802442, 38.556869], [-77.802253, 38.557175], [-77.802079, 38.557492], [-77.801838, 38.557971], [-77.801782, 38.55809], [-77.801657, 38.55838], [-77.801522, 38.558722], [-77.801429, 38.558994], [-77.801302, 38.559432], [-77.801209, 38.559822], [-77.801144, 38.560169], [-77.801065, 38.560727], [-77.801025, 38.56131], [-77.801027, 38.561813], [-77.801049, 38.562487], [-77.801069, 38.562893], [-77.801213, 38.565749], [-77.801305, 38.567636], [-77.80137, 38.568961], [-77.801541, 38.572402], [-77.801599, 38.573623], [-77.801669, 38.575224], [-77.801707, 38.575829], [-77.801772, 38.577117], [-77.801874, 38.579138], [-77.801902, 38.579759], [-77.801914, 38.579914], [-77.801945, 38.580642], [-77.801977, 38.581198], [-77.802036, 38.582417], [-77.802118, 38.584113], [-77.802126, 38.584391], [-77.802131, 38.584986], [-77.802118, 38.585525], [-77.802088, 38.586052], [-77.802017, 38.586791], [-77.801743, 38.589112], [-77.801725, 38.589268], [-77.801437, 38.591698], [-77.801342, 38.5925], [-77.801281, 38.593006], [-77.800994, 38.595455], [-77.800644, 38.598437], [-77.800492, 38.599704], [-77.800457, 38.599972], [-77.800268, 38.601612], [-77.800209, 38.602305], [-77.80017, 38.602992], [-77.800152, 38.603904], [-77.800152, 38.604035], [-77.800152, 38.604483], [-77.800172, 38.60559], [-77.800187, 38.606551], [-77.800205, 38.607644], [-77.80022, 38.608813], [-77.800237, 38.609384], [-77.800232, 38.610093], [-77.800248, 38.611162], [-77.80027, 38.611781], [-77.800276, 38.611972], [-77.800298, 38.612639], [-77.800312, 38.613039], [-77.800332, 38.613399], [-77.800397, 38.614527], [-77.800421, 38.615203], [-77.800432, 38.61575], [-77.800444, 38.616559], [-77.800478, 38.618723], [-77.8005, 38.619601], [-77.800525, 38.620811], [-77.800527, 38.620908], [-77.800548, 38.62192], [-77.80058, 38.623403], [-77.800594, 38.624213], [-77.800603, 38.625413], [-77.80062, 38.627386], [-77.800629, 38.627856], [-77.800651, 38.62934], [-77.800658, 38.629863], [-77.800688, 38.631295], [-77.800701, 38.63219], [-77.800708, 38.632656], [-77.800729, 38.632937], [-77.800749, 38.6331], [-77.800764, 38.633194], [-77.800824, 38.633493], [-77.8009, 38.63375], [-77.801033, 38.634132], [-77.801091, 38.634277], [-77.801339, 38.634852], [-77.801526, 38.635289], [-77.801703, 38.635692], [-77.801752, 38.635808], [-77.801965, 38.636295], [-77.802897, 38.638462], [-77.802996, 38.638693], [-77.803206, 38.639174], [-77.803351, 38.639505], [-77.803635, 38.640158], [-77.803774, 38.640485], [-77.80405, 38.641121], [-77.804137, 38.641325], [-77.804199, 38.641471], [-77.804367, 38.641868], [-77.804398, 38.641941], [-77.804535, 38.642359], [-77.804602, 38.642621], [-77.804642, 38.642832], [-77.804669, 38.643038], [-77.804677, 38.643118], [-77.804687, 38.643291], [-77.804696, 38.643722], [-77.804696, 38.644409], [-77.804677, 38.644766], [-77.804636, 38.645023], [-77.804576, 38.645279], [-77.804498, 38.645531], [-77.804445, 38.645671], [-77.804179, 38.646296], [-77.803976, 38.646795], [-77.803645, 38.647584], [-77.803607, 38.647672], [-77.803037, 38.649027], [-77.802582, 38.650099], [-77.802488, 38.65032], [-77.80226, 38.650816], [-77.802226, 38.650891], [-77.801705, 38.651973], [-77.801524, 38.652348], [-77.800517, 38.654435], [-77.800311, 38.654856], [-77.800109, 38.655223], [-77.799504, 38.656216], [-77.799258, 38.656629], [-77.799064, 38.656995], [-77.798952, 38.657238], [-77.798593, 38.658126], [-77.798524, 38.658287], [-77.798395, 38.658591], [-77.798266, 38.658901], [-77.798049, 38.659428], [-77.797829, 38.659963], [-77.79736, 38.661105], [-77.797075, 38.661795], [-77.796724, 38.662641], [-77.79625, 38.663783], [-77.796094, 38.664161], [-77.795637, 38.665271], [-77.79528, 38.666132], [-77.795248, 38.66621], [-77.794069, 38.669063], [-77.793674, 38.670024], [-77.793379, 38.670723], [-77.793244, 38.671036], [-77.793103, 38.671307], [-77.792943, 38.671571], [-77.792813, 38.671755], [-77.792641, 38.671968], [-77.792454, 38.672174], [-77.792251, 38.672371], [-77.791496, 38.673047], [-77.791134, 38.673372], [-77.790643, 38.673809], [-77.789269, 38.675032], [-77.788765, 38.675507], [-77.788692, 38.675576], [-77.788181, 38.676104], [-77.787807, 38.676549], [-77.787668, 38.676743], [-77.787501, 38.677031], [-77.78738, 38.677265], [-77.78733, 38.677383], [-77.787232, 38.677659], [-77.787165, 38.677911], [-77.787115, 38.678177], [-77.787085, 38.678445], [-77.787079, 38.678552], [-77.787095, 38.67913], [-77.787153, 38.679798], [-77.787259, 38.680924], [-77.787331, 38.681886], [-77.787363, 38.682419], [-77.787413, 38.683635], [-77.787401, 38.684203], [-77.787392, 38.684611], [-77.78735, 38.685019], [-77.787315, 38.685264], [-77.787231, 38.685728], [-77.787136, 38.686251], [-77.787114, 38.686332], [-77.78692, 38.686986], [-77.786696, 38.687619], [-77.786501, 38.688074], [-77.786277, 38.68855], [-77.786098, 38.688888], [-77.785944, 38.689154], [-77.785576, 38.689748], [-77.784818, 38.690938], [-77.784516, 38.691425], [-77.784271, 38.691807], [-77.783827, 38.692506], [-77.783401, 38.6932], [-77.783246, 38.693444], [-77.782384, 38.694802], [-77.782205, 38.695084], [-77.781593, 38.696059], [-77.781243, 38.69667], [-77.78108, 38.696994], [-77.780923, 38.697347], [-77.780812, 38.697637], [-77.780687, 38.698004], [-77.780614, 38.698231], [-77.780587, 38.698314], [-77.780392, 38.699181], [-77.780333, 38.699659], [-77.780298, 38.700094], [-77.780287, 38.700389], [-77.780289, 38.700757], [-77.780315, 38.701452], [-77.780365, 38.702797], [-77.780397, 38.703509], [-77.780462, 38.705131], [-77.780535, 38.706895], [-77.780587, 38.708144], [-77.780612, 38.708911], [-77.780675, 38.710324], [-77.780782, 38.713019], [-77.780806, 38.713639], [-77.780906, 38.716128], [-77.780923, 38.716557], [-77.780985, 38.71812], [-77.781094, 38.720811], [-77.781111, 38.721348], [-77.78117, 38.722771], [-77.781205, 38.723428], [-77.781207, 38.723933], [-77.781141, 38.724638], [-77.781062, 38.725028], [-77.780986, 38.725313], [-77.780873, 38.725651], [-77.780799, 38.725838], [-77.780763, 38.72593], [-77.780608, 38.726258], [-77.780457, 38.726537], [-77.78029, 38.726814], [-77.780067, 38.727137], [-77.779841, 38.727426], [-77.779593, 38.727712], [-77.779535, 38.727773], [-77.779432, 38.727882], [-77.779137, 38.728163], [-77.778889, 38.728379], [-77.778564, 38.728638], [-77.777988, 38.729064], [-77.777903, 38.729128], [-77.777813, 38.729195], [-77.777751, 38.72924], [-77.777544, 38.729395], [-77.776507, 38.73018], [-77.77534, 38.731069], [-77.775049, 38.73127], [-77.774364, 38.73177], [-77.774051, 38.732009], [-77.773303, 38.732554], [-77.772496, 38.733155], [-77.772444, 38.733192], [-77.771424, 38.733941], [-77.770375, 38.73472], [-77.769774, 38.735166], [-77.766501, 38.737595], [-77.766092, 38.7379], [-77.766013, 38.737957], [-77.764613, 38.738973], [-77.763699, 38.739647], [-77.760294, 38.742188], [-77.759475, 38.742805], [-77.758292, 38.743704], [-77.757242, 38.744507], [-77.756734, 38.744888], [-77.75607, 38.745394], [-77.755332, 38.74595], [-77.753869, 38.747051], [-77.753512, 38.747317], [-77.752239, 38.748266], [-77.751486, 38.748835], [-77.749304, 38.750477], [-77.747696, 38.751677], [-77.747175, 38.752069], [-77.746636, 38.752468], [-77.746089, 38.752858], [-77.745719, 38.753113], [-77.745109, 38.753534], [-77.744529, 38.753946], [-77.744441, 38.754016], [-77.743143, 38.755039], [-77.742369, 38.755648], [-77.741019, 38.756723], [-77.740302, 38.757289], [-77.74012, 38.757439], [-77.739869, 38.757633], [-77.739452, 38.757933], [-77.738896, 38.758325], [-77.738458, 38.758616], [-77.737994, 38.758912], [-77.737675, 38.759109], [-77.736928, 38.759546], [-77.736529, 38.759764], [-77.73598, 38.760062], [-77.735512, 38.760302], [-77.734641, 38.760749], [-77.731871, 38.762168], [-77.730354, 38.762946], [-77.726563, 38.764904], [-77.726297, 38.765042], [-77.725494, 38.765462], [-77.724993, 38.765717], [-77.724283, 38.76606], [-77.724155, 38.766114], [-77.723683, 38.766274], [-77.723631, 38.766287], [-77.723461, 38.76633], [-77.723208, 38.766384], [-77.722948, 38.766425], [-77.722732, 38.766449], [-77.722439, 38.766466], [-77.722204, 38.76647], [-77.721761, 38.76645], [-77.721338, 38.766416], [-77.720827, 38.766373], [-77.71958, 38.766268], [-77.718945, 38.766226], [-77.71829, 38.766214], [-77.717886, 38.766231], [-77.717644, 38.766248], [-77.717238, 38.766296], [-77.716986, 38.766333], [-77.716478, 38.766426], [-77.715933, 38.766539], [-77.71313, 38.767126], [-77.71253, 38.76725], [-77.711446, 38.767475], [-77.711213, 38.767521], [-77.709832, 38.76781], [-77.709246, 38.767933], [-77.708584, 38.768078], [-77.708134, 38.768177], [-77.707984, 38.768211], [-77.707651, 38.768287], [-77.707208, 38.768389], [-77.707037, 38.768429], [-77.706966, 38.768445], [-77.706604, 38.768529], [-77.705724, 38.768733], [-77.704884, 38.768928], [-77.704008, 38.769125], [-77.703413, 38.769266], [-77.703044, 38.769359], [-77.702667, 38.769454], [-77.702289, 38.769565], [-77.701922, 38.769687], [-77.701705, 38.769766], [-77.701294, 38.769925], [-77.700381, 38.770277], [-77.698624, 38.770957], [-77.69792, 38.771222], [-77.696779, 38.771656], [-77.696286, 38.771839], [-77.694688, 38.772451], [-77.693388, 38.772942], [-77.69338, 38.772945], [-77.69299, 38.773092], [-77.691828, 38.773541], [-77.689985, 38.774273], [-77.689184, 38.774593], [-77.687947, 38.775099], [-77.68652, 38.775696], [-77.686093, 38.775875], [-77.685013, 38.776323], [-77.684548, 38.776508], [-77.683617, 38.77688], [-77.682281, 38.77742], [-77.681906, 38.77757], [-77.680152, 38.778273], [-77.680071, 38.778309], [-77.679964, 38.778348], [-77.67944, 38.778559], [-77.679135, 38.778682], [-77.679008, 38.778733], [-77.678765, 38.778831], [-77.678322, 38.779011], [-77.677302, 38.779417], [-77.677036, 38.779514], [-77.676871, 38.779569], [-77.676375, 38.779711], [-77.675903, 38.779834], [-77.675739, 38.779874], [-77.675282, 38.779966], [-77.675165, 38.77999], [-77.673681, 38.780291], [-77.67245, 38.780538], [-77.671784, 38.780666], [-77.671623, 38.780699], [-77.671392, 38.780752], [-77.670977, 38.780857], [-77.67067, 38.780949], [-77.669909, 38.781181], [-77.669755, 38.781229], [-77.668691, 38.781557], [-77.668105, 38.781729], [-77.66717, 38.781984], [-77.665556, 38.7824], [-77.665397, 38.782443], [-77.66509, 38.782528], [-77.663117, 38.783041], [-77.662729, 38.783142], [-77.658982, 38.784122], [-77.658234, 38.784318], [-77.657487, 38.784515], [-77.656903, 38.784668], [-77.656444, 38.784785], [-77.655772, 38.784954], [-77.655488, 38.785028], [-77.654149, 38.78538], [-77.653073, 38.785665], [-77.652817, 38.785732], [-77.652723, 38.785757], [-77.652335, 38.78586], [-77.650432, 38.786358], [-77.650292, 38.786394], [-77.648546, 38.786845], [-77.648132, 38.786953], [-77.6471, 38.787217], [-77.646912, 38.787266], [-77.646792, 38.787296], [-77.646475, 38.787378], [-77.643862, 38.788066], [-77.643514, 38.788151], [-77.642956, 38.788288], [-77.641845, 38.788545], [-77.641256, 38.788678], [-77.640668, 38.788812], [-77.637878, 38.789456], [-77.637724, 38.789491], [-77.635026, 38.790112], [-77.633026, 38.790572], [-77.631672, 38.790883], [-77.630391, 38.791179], [-77.630168, 38.791231], [-77.629412, 38.791414], [-77.629006, 38.791523], [-77.628982, 38.791529], [-77.628275, 38.791722], [-77.626219, 38.792284], [-77.625465, 38.792483], [-77.624741, 38.792675], [-77.624567, 38.792721], [-77.624468, 38.792748], [-77.624067, 38.792856], [-77.622821, 38.793191], [-77.622323, 38.793326], [-77.622182, 38.793359], [-77.62157, 38.793529], [-77.621412, 38.793572], [-77.620477, 38.793825], [-77.620443, 38.793835], [-77.619193, 38.794171], [-77.619018, 38.794213], [-77.617763, 38.794556], [-77.617092, 38.79473], [-77.616747, 38.794832], [-77.614017, 38.7956], [-77.613309, 38.7958], [-77.613097, 38.795859], [-77.611965, 38.796178], [-77.611011, 38.796432], [-77.609519, 38.79683], [-77.609066, 38.796955], [-77.60887, 38.79701], [-77.608124, 38.797223], [-77.607861, 38.79729], [-77.60659, 38.797608], [-77.604759, 38.798106], [-77.603341, 38.798433], [-77.602615, 38.798623], [-77.60217, 38.798681], [-77.60178, 38.798726], [-77.60159, 38.798739], [-77.601338, 38.79876], [-77.601043, 38.798748], [-77.600761, 38.798726], [-77.600475, 38.798685], [-77.600088, 38.798626], [-77.598701, 38.798329], [-77.598447, 38.798288], [-77.598168, 38.798263], [-77.597945, 38.798266], [-77.597733, 38.798267], [-77.597515, 38.798295], [-77.597295, 38.798329], [-77.59709, 38.79838], [-77.596838, 38.798472], [-77.596056, 38.79873], [-77.595792, 38.798802], [-77.595557, 38.798839], [-77.595321, 38.798872], [-77.595123, 38.798893], [-77.594903, 38.798906], [-77.594606, 38.798902], [-77.592349, 38.798571], [-77.589853, 38.798246], [-77.587564, 38.797961], [-77.584659, 38.797708], [-77.583518, 38.797592], [-77.582596, 38.797507], [-77.581727, 38.797465], [-77.580645, 38.797422], [-77.579853, 38.797408], [-77.579381, 38.797391], [-77.579328, 38.797391], [-77.578346, 38.797391], [-77.576989, 38.797404], [-77.576007, 38.797446], [-77.575373, 38.797504], [-77.571144, 38.797797], [-77.569287, 38.79792], [-77.56555, 38.798187], [-77.561659, 38.798447], [-77.555891, 38.7988], [-77.553755, 38.798951], [-77.550887, 38.799152], [-77.550295, 38.799193], [-77.548407, 38.799331], [-77.54595, 38.799494], [-77.541063, 38.799812], [-77.539341, 38.799946], [-77.536546, 38.800151], [-77.532281, 38.800448], [-77.529135, 38.800667], [-77.525861, 38.800895], [-77.523173, 38.801079], [-77.520134, 38.801324], [-77.519426, 38.801374], [-77.518588, 38.801436], [-77.514662, 38.801698], [-77.51275, 38.801833], [-77.512257, 38.801883], [-77.51176, 38.801949], [-77.511242, 38.802033], [-77.510728, 38.802133], [-77.510237, 38.802245], [-77.509757, 38.802371], [-77.509283, 38.802511], [-77.508762, 38.802686], [-77.508249, 38.802874], [-77.503238, 38.804849], [-77.501867, 38.805383], [-77.49854, 38.806696], [-77.492854, 38.808929], [-77.492586, 38.809039], [-77.491408, 38.809499], [-77.490728, 38.809768], [-77.490387, 38.809903], [-77.489846, 38.810125], [-77.48976, 38.810159], [-77.489588, 38.810228], [-77.488128, 38.810814], [-77.487975, 38.810876], [-77.487938, 38.810891], [-77.487614, 38.811027], [-77.486889, 38.811312], [-77.485515, 38.811841], [-77.481021, 38.813606], [-77.480031, 38.813987], [-77.479528, 38.81418], [-77.478278, 38.814671], [-77.477784, 38.814859], [-77.476696, 38.815283], [-77.476308, 38.815444], [-77.470849, 38.817587], [-77.469997, 38.817934], [-77.469107, 38.818314], [-77.468263, 38.818692], [-77.467788, 38.818912], [-77.466824, 38.819384], [-77.466481, 38.819559], [-77.465978, 38.819814], [-77.465888, 38.819862], [-77.465082, 38.820299], [-77.464689, 38.820516], [-77.463916, 38.820976], [-77.463568, 38.821184], [-77.462817, 38.82165], [-77.462169, 38.822067], [-77.461524, 38.822499], [-77.460742, 38.823046], [-77.459971, 38.823615], [-77.459453, 38.824009], [-77.458829, 38.824505], [-77.458041, 38.825157], [-77.457989, 38.825199], [-77.457719, 38.825436], [-77.457456, 38.825667], [-77.457174, 38.825914], [-77.456485, 38.82655], [-77.455925, 38.827089], [-77.455609, 38.827408], [-77.455354, 38.827664], [-77.455286, 38.827736], [-77.454763, 38.828288], [-77.453687, 38.829492], [-77.45117, 38.83231], [-77.450091, 38.833546], [-77.449603, 38.834072], [-77.4484, 38.835411], [-77.448317, 38.835496], [-77.447073, 38.836883], [-77.446568, 38.837456], [-77.444983, 38.839239], [-77.444962, 38.839261], [-77.44448, 38.839771], [-77.443925, 38.840374], [-77.443121, 38.841151], [-77.442523, 38.841683], [-77.442048, 38.842083], [-77.441563, 38.842472], [-77.44121, 38.842729], [-77.440835, 38.842989], [-77.440353, 38.843301], [-77.439357, 38.843895], [-77.438808, 38.844189], [-77.438412, 38.844388], [-77.438154, 38.844513], [-77.437585, 38.844773], [-77.43695, 38.845042], [-77.436125, 38.845358], [-77.435386, 38.845611], [-77.434841, 38.845778], [-77.434461, 38.845886], [-77.434065, 38.845989], [-77.433588, 38.846102], [-77.432595, 38.846311], [-77.431976, 38.846424], [-77.431894, 38.846439], [-77.43166, 38.846482], [-77.43013, 38.84677], [-77.428638, 38.847052], [-77.427672, 38.847201], [-77.426895, 38.847336], [-77.426613, 38.847387], [-77.423954, 38.847868], [-77.42318, 38.84802], [-77.422578, 38.848129], [-77.421734, 38.848284], [-77.419777, 38.84865], [-77.418032, 38.848977], [-77.416532, 38.849246], [-77.415198, 38.849482], [-77.414151, 38.849672], [-77.413692, 38.849756], [-77.413004, 38.849886], [-77.41025, 38.850388], [-77.408348, 38.850725], [-77.406003, 38.851167], [-77.404553, 38.851419], [-77.403103, 38.851676], [-77.402433, 38.851803], [-77.401513, 38.851954], [-77.399882, 38.852249], [-77.399048, 38.852319], [-77.398718, 38.852375], [-77.397996, 38.852492], [-77.397318, 38.852624], [-77.396752, 38.852714], [-77.396348, 38.852749], [-77.395658, 38.852767], [-77.395009, 38.8528], [-77.394695, 38.852837], [-77.39433, 38.852891], [-77.393802, 38.852984], [-77.393126, 38.853114], [-77.392725, 38.85318], [-77.392095, 38.853297], [-77.391904, 38.853339], [-77.391134, 38.853478], [-77.389836, 38.853723], [-77.389215, 38.853845], [-77.38892, 38.853895], [-77.388716, 38.853941], [-77.388024, 38.854062], [-77.387165, 38.854196], [-77.386771, 38.854162], [-77.386529, 38.854111], [-77.386343, 38.854055], [-77.386187, 38.853987], [-77.386127, 38.853954], [-77.386079, 38.85392], [-77.385986, 38.853839], [-77.385938, 38.853785], [-77.385904, 38.853738], [-77.385849, 38.853638], [-77.385829, 38.853585], [-77.385812, 38.853521], [-77.3858, 38.853402], [-77.385805, 38.853336], [-77.385817, 38.853271], [-77.38586, 38.853155], [-77.385888, 38.853105], [-77.385929, 38.853047], [-77.38601, 38.852959], [-77.386068, 38.85291], [-77.386119, 38.852873], [-77.386233, 38.85281], [-77.386292, 38.852784], [-77.386367, 38.852757], [-77.386444, 38.852736], [-77.386551, 38.852715], [-77.386695, 38.852705], [-77.38684, 38.852711], [-77.386899, 38.85272], [-77.386985, 38.852739], [-77.387131, 38.852784], [-77.387234, 38.852827], [-77.387327, 38.852872], [-77.387501, 38.852977], [-77.387596, 38.853046], [-77.387689, 38.853125], [-77.387869, 38.853301], [-77.388005, 38.8535], [-77.388211, 38.853861], [-77.388248, 38.853958], [-77.38834, 38.854202], [-77.388434, 38.854509], [-77.388512, 38.85483], [-77.388556, 38.855045], [-77.388563, 38.855077], [-77.388615, 38.855398], [-77.38864, 38.855726], [-77.388657, 38.85606], [-77.388632, 38.856494], [-77.388606, 38.856728], [-77.388546, 38.857062], [-77.388494, 38.857283], [-77.388383, 38.85759], [-77.388245, 38.857898], [-77.387962, 38.858392], [-77.387722, 38.858713], [-77.387587, 38.858842], [-77.387448, 38.858992], [-77.38738, 38.859049], [-77.387049, 38.859315], [-77.387001, 38.859355], [-77.386572, 38.859616], [-77.386057, 38.859876], [-77.385696, 38.860037], [-77.385104, 38.860297], [-77.384246, 38.860678], [-77.383311, 38.861091], [-77.382484, 38.861549], [-77.381927, 38.861964], [-77.381649, 38.862271], [-77.381472, 38.862656], [-77.38114, 38.86254], [-77.380676, 38.862336], [-77.380373, 38.862167], [-77.380144, 38.862016], [-77.379932, 38.861857], [-77.379724, 38.861669], [-77.379541, 38.861495], [-77.379299, 38.861256], [-77.379174, 38.86114], [-77.378963, 38.86097], [-77.378779, 38.860822], [-77.378622, 38.860715], [-77.378375, 38.860584], [-77.37825, 38.860526], [-77.377901, 38.860354], [-77.377674, 38.860258], [-77.377503, 38.860194], [-77.376982, 38.860031], [-77.376724, 38.859968], [-77.376465, 38.859908], [-77.376139, 38.859843], [-77.375957, 38.859809], [-77.375449, 38.859704], [-77.37477, 38.859591], [-77.373992, 38.859482], [-77.373385, 38.859411], [-77.373319, 38.859405], [-77.371684, 38.859251], [-77.371331, 38.859226], [-77.37112, 38.859211], [-77.371099, 38.85942], [-77.371098, 38.859619], [-77.371033, 38.860102], [-77.370993, 38.860407], [-77.370953, 38.86073], [-77.370894, 38.86095], [-77.370816, 38.861165], [-77.370757, 38.861296], [-77.370665, 38.861443], [-77.370575, 38.861587], [-77.370384, 38.861875], [-77.370116, 38.862301], [-77.369869, 38.862675], [-77.369695, 38.862937], [-77.369553, 38.863149], [-77.369282, 38.863562], [-77.369075, 38.863878], [-77.369003, 38.863978], [-77.368943, 38.864053], [-77.368872, 38.864143], [-77.368754, 38.864281], [-77.368648, 38.864383], [-77.368548, 38.86448], [-77.368413, 38.864611], [-77.368244, 38.864751], [-77.368139, 38.86483], [-77.368096, 38.864859], [-77.367962, 38.864949], [-77.367753, 38.865087], [-77.36752, 38.865221], [-77.36716, 38.865425], [-77.366916, 38.865565], [-77.366749, 38.865664], [-77.366693, 38.865696], [-77.366603, 38.865757], [-77.36621, 38.865941], [-77.365964, 38.866096], [-77.365677, 38.866275], [-77.365412, 38.86648], [-77.365205, 38.866666], [-77.365092, 38.866802], [-77.364926, 38.867027], [-77.364819, 38.867215], [-77.364795, 38.867271], [-77.364687, 38.867526], [-77.364631, 38.867731], [-77.364602, 38.867885], [-77.364585, 38.868103], [-77.364599, 38.86833], [-77.364602, 38.868416], [-77.364653, 38.868646], [-77.364749, 38.868903], [-77.364915, 38.869232], [-77.365031, 38.869489], [-77.36519, 38.869811], [-77.365353, 38.870145], [-77.365541, 38.870577], [-77.365608, 38.870714], [-77.36564, 38.87078], [-77.365767, 38.871048], [-77.365858, 38.871232], [-77.365914, 38.871335], [-77.366032, 38.871546], [-77.366196, 38.871805], [-77.366355, 38.872046], [-77.366507, 38.872259], [-77.366678, 38.872501], [-77.366856, 38.872754], [-77.366963, 38.872925], [-77.367022, 38.873039], [-77.367081, 38.873163], [-77.367145, 38.873344], [-77.367182, 38.87346], [-77.367204, 38.873534], [-77.367233, 38.873695], [-77.36726, 38.873889], [-77.367273, 38.874003], [-77.367165, 38.874012], [-77.366994, 38.874012], [-77.366779, 38.873999], [-77.366666, 38.873986], [-77.366501, 38.873968], [-77.366313, 38.873934], [-77.366155, 38.873897], [-77.365932, 38.873832], [-77.36562, 38.873728], [-77.365375, 38.873647], [-77.36552, 38.873752], [-77.365645, 38.873824], [-77.365759, 38.873875] ] } } ================================================ FILE: packages/turf-length/test/in/route2.geojson ================================================ { "type": "Feature", "properties": { "name": null, "cmt": null, "desc": null, "src": null, "link1_href": null, "link1_text": null, "link1_type": null, "link2_href": null, "link2_text": null, "link2_type": null, "number": null, "type": null }, "geometry": { "type": "LineString", "coordinates": [ [-113.928988, 50.814121], [-113.928993, 50.813067], [-113.928994, 50.811043], [-113.928995, 50.807418], [-113.929029, 50.804989], [-113.951995, 50.804953], [-113.956813, 50.804931], [-113.957629, 50.804917], [-113.958021, 50.804876], [-113.958575, 50.804779], [-113.959011, 50.804687], [-113.959367, 50.804572], [-113.959858, 50.804414], [-113.960433, 50.804102], [-113.960932, 50.803769], [-113.961563, 50.803306], [-113.961754, 50.803166], [-113.962486, 50.802753], [-113.9641, 50.801549], [-113.966048, 50.800154], [-113.967597, 50.799082], [-113.968657, 50.798289], [-113.969382, 50.79779], [-113.969303, 50.797653], [-113.968833, 50.797177], [-113.968399, 50.796832], [-113.96652, 50.796071], [-113.965325, 50.795579], [-113.964608, 50.795229], [-113.963373, 50.794321], [-113.962094, 50.793355], [-113.956995, 50.789049], [-113.951125, 50.784098], [-113.948573, 50.78194], [-113.941011, 50.775626], [-113.933724, 50.769538], [-113.914584, 50.753577], [-113.906521, 50.746803], [-113.896774, 50.738614], [-113.886275, 50.729779], [-113.88594, 50.729474], [-113.885307, 50.728898], [-113.884903, 50.728477], [-113.884523, 50.728028], [-113.884201, 50.727599], [-113.883986, 50.727298], [-113.883696, 50.726863], [-113.883482, 50.72648], [-113.883314, 50.726156], [-113.883153, 50.725767], [-113.883094, 50.725646], [-113.883031, 50.725465], [-113.882906, 50.725155], [-113.882792, 50.724718], [-113.882641, 50.7241], [-113.882584, 50.723735], [-113.88255, 50.723367], [-113.882523, 50.72258], [-113.882495, 50.717709], [-113.882486, 50.713302], [-113.882476, 50.712125], [-113.882468, 50.702531], [-113.882456, 50.699815], [-113.882434, 50.698229], [-113.882445, 50.693791], [-113.882419, 50.692602], [-113.882412, 50.692077], [-113.882405, 50.691705], [-113.882365, 50.691331], [-113.882289, 50.690878], [-113.882163, 50.690282], [-113.882074, 50.689985], [-113.881908, 50.689517], [-113.881705, 50.689095], [-113.881622, 50.688959], [-113.881501, 50.688721], [-113.881281, 50.688347], [-113.88097, 50.687826], [-113.880715, 50.687491], [-113.880385, 50.687085], [-113.878859, 50.685206], [-113.877456, 50.68348], [-113.875929, 50.68157], [-113.873357, 50.67843], [-113.871364, 50.675999], [-113.869142, 50.673289], [-113.868358, 50.672328], [-113.868037, 50.671943], [-113.867467, 50.671232], [-113.866987, 50.670734], [-113.866668, 50.670424], [-113.866296, 50.670141], [-113.865816, 50.669814], [-113.865451, 50.6696], [-113.8651, 50.669419], [-113.864667, 50.669203], [-113.864079, 50.668945], [-113.863436, 50.668716], [-113.862804, 50.66849], [-113.861739, 50.668114], [-113.853421, 50.665144], [-113.842891, 50.661554], [-113.842171, 50.661197], [-113.841049, 50.660571], [-113.840156, 50.659997], [-113.839716, 50.65961], [-113.839157, 50.659132], [-113.838847, 50.658805], [-113.838358, 50.658284], [-113.837938, 50.657723], [-113.837609, 50.657111], [-113.837268, 50.656259], [-113.83703, 50.655665], [-113.836937, 50.654919], [-113.836909, 50.654144], [-113.836859, 50.650724], [-113.836826, 50.647581], [-113.836828, 50.646677], [-113.836945, 50.631237], [-113.836945, 50.630338], [-113.83681, 50.620833], [-113.836809, 50.615002], [-113.836748, 50.614363], [-113.836695, 50.613902], [-113.836544, 50.613327], [-113.836395, 50.612865], [-113.836165, 50.612347], [-113.835974, 50.611908], [-113.835688, 50.611368], [-113.834199, 50.609116], [-113.831975, 50.605815], [-113.830597, 50.603738], [-113.830194, 50.603006], [-113.829862, 50.60236], [-113.829623, 50.601865], [-113.829361, 50.601178], [-113.829199, 50.600699], [-113.829001, 50.600003], [-113.828688, 50.598264], [-113.828653, 50.597525], [-113.828653, 50.596741], [-113.828659, 50.589493], [-113.828615, 50.584393], [-113.82855, 50.57625], [-113.82857, 50.572186], [-113.82858, 50.57189], [-113.828436, 50.567929], [-113.828262, 50.565198], [-113.82828, 50.550181], [-113.82829, 50.541809], [-113.828291, 50.541417], [-113.828359, 50.484565], [-113.828388, 50.473188], [-113.82839, 50.426319], [-113.828391, 50.410937], [-113.828495, 50.409031], [-113.828495, 50.408255], [-113.828326, 50.404708], [-113.827868, 50.402523], [-113.827189, 50.400367], [-113.82573, 50.397464], [-113.824909, 50.396393], [-113.823811, 50.394869], [-113.82128, 50.391895], [-113.801481, 50.376398], [-113.797907, 50.371872], [-113.796297, 50.369858], [-113.795351, 50.368139], [-113.790726, 50.359724], [-113.789384, 50.358382], [-113.78784, 50.357509], [-113.782077, 50.355219], [-113.781868, 50.355163], [-113.780696, 50.354643], [-113.779832, 50.354058], [-113.779376, 50.353709], [-113.779034, 50.353447], [-113.777779, 50.352208], [-113.776476, 50.350971], [-113.775669, 50.350156], [-113.774903, 50.349363], [-113.774528, 50.349008], [-113.774139, 50.348641], [-113.773752, 50.348267], [-113.773367, 50.347894], [-113.772991, 50.347521], [-113.77261, 50.347144], [-113.77224, 50.346771], [-113.771866, 50.346393], [-113.771491, 50.346021], [-113.771101, 50.345634], [-113.770724, 50.345257], [-113.770334, 50.344868], [-113.769256, 50.343852], [-113.767134, 50.341669], [-113.764647, 50.339182], [-113.764438, 50.338973], [-113.761597, 50.336333], [-113.758593, 50.33458], [-113.755546, 50.333429], [-113.751856, 50.33269], [-113.745118, 50.331594], [-113.742286, 50.330717], [-113.739453, 50.329347], [-113.731213, 50.32247], [-113.723532, 50.315976], [-113.722158, 50.313619], [-113.718768, 50.300682], [-113.714948, 50.295611], [-113.70452, 50.282916], [-113.688985, 50.273536], [-113.671647, 50.26314], [-113.665976, 50.259608], [-113.661862, 50.256884], [-113.66006, 50.254964], [-113.659379, 50.253877], [-113.658858, 50.252741], [-113.658676, 50.251733], [-113.656669, 50.241627], [-113.656154, 50.237592], [-113.655983, 50.234435], [-113.656026, 50.226446], [-113.656001, 50.222848], [-113.655983, 50.212634], [-113.655983, 50.198956], [-113.656026, 50.187774], [-113.655725, 50.180189], [-113.654781, 50.177056], [-113.650834, 50.16488], [-113.648988, 50.159931], [-113.648171, 50.158673], [-113.647041, 50.157055], [-113.642675, 50.151639], [-113.639814, 50.147556], [-113.634175, 50.135735], [-113.632251, 50.131741], [-113.620363, 50.106626], [-113.619376, 50.104527], [-113.61384, 50.092744], [-113.608561, 50.081675], [-113.606581, 50.077494], [-113.603669, 50.071347], [-113.596202, 50.055589], [-113.589593, 50.041645], [-113.585973, 50.034075], [-113.583284, 50.028469], [-113.578879, 50.019214], [-113.577072, 50.015416], [-113.576933, 50.015123], [-113.575461, 50.01195], [-113.56968, 49.999485], [-113.565276, 49.990109], [-113.562856, 49.984972], [-113.558388, 49.975529], [-113.556763, 49.972084], [-113.551497, 49.960982], [-113.550282, 49.958226], [-113.543115, 49.943177], [-113.537579, 49.93141], [-113.531657, 49.91895], [-113.528868, 49.913112], [-113.52852, 49.912237], [-113.528209, 49.911247], [-113.528013, 49.910313], [-113.527878, 49.909552], [-113.527877, 49.908805], [-113.528009, 49.904496], [-113.527999, 49.902765], [-113.527923, 49.890232], [-113.527923, 49.878148], [-113.527237, 49.875493], [-113.526537, 49.873052], [-113.52449, 49.865701], [-113.524447, 49.856267], [-113.52449, 49.841269], [-113.524447, 49.826764], [-113.52437, 49.815239], [-113.524361, 49.813862], [-113.524357, 49.801088], [-113.524347, 49.798401], [-113.524359, 49.795748], [-113.524362, 49.795059], [-113.524404, 49.785441], [-113.524345, 49.778892], [-113.524361, 49.771945], [-113.523632, 49.77031], [-113.522087, 49.769007], [-113.520199, 49.768287], [-113.514319, 49.76643], [-113.510629, 49.764933], [-113.50771, 49.763048], [-113.494964, 49.752901], [-113.479476, 49.742059], [-113.460012, 49.728293], [-113.455597, 49.725235], [-113.454572, 49.72442], [-113.45366, 49.723598], [-113.452976, 49.722915], [-113.45129, 49.720944], [-113.450256, 49.719782], [-113.447746, 49.716986], [-113.447289, 49.716417], [-113.443365, 49.71203], [-113.443141, 49.711789], [-113.442819, 49.711601], [-113.442606, 49.711479], [-113.44236, 49.711374], [-113.442103, 49.711279], [-113.441837, 49.711197], [-113.441458, 49.711124], [-113.441117, 49.711086], [-113.440779, 49.711071], [-113.440369, 49.71109], [-113.439978, 49.71114], [-113.439697, 49.711196], [-113.439397, 49.711273], [-113.439102, 49.71139], [-113.438862, 49.711498], [-113.438591, 49.711635], [-113.438391, 49.711766], [-113.438075, 49.712061], [-113.437745, 49.712489], [-113.43745, 49.712915], [-113.43721, 49.713212], [-113.436932, 49.713495], [-113.436629, 49.713751], [-113.436287, 49.713988], [-113.435908, 49.714204], [-113.435538, 49.714393], [-113.431814, 49.715951], [-113.423934, 49.718913], [-113.423148, 49.719208], [-113.419515, 49.720574], [-113.418553, 49.720884], [-113.417353, 49.721191], [-113.416622, 49.721378], [-113.415189, 49.721933], [-113.414887, 49.722092], [-113.414553, 49.722328], [-113.414204, 49.722586], [-113.413109, 49.723458], [-113.412313, 49.724209], [-113.412068, 49.724385], [-113.411871, 49.724508], [-113.41169, 49.724585], [-113.411456, 49.724665], [-113.411213, 49.724721], [-113.410939, 49.724758], [-113.410649, 49.724769], [-113.408706, 49.724761], [-113.405913, 49.724764], [-113.403119, 49.724754], [-113.400316, 49.724758], [-113.397541, 49.724759], [-113.396042, 49.724769], [-113.395455, 49.724758], [-113.395172, 49.724734], [-113.394938, 49.724709], [-113.394729, 49.724678], [-113.394467, 49.724619], [-113.394209, 49.724544], [-113.393974, 49.724469], [-113.393696, 49.724366], [-113.393468, 49.724249], [-113.393241, 49.72412], [-113.393012, 49.723965], [-113.39289, 49.723864], [-113.391771, 49.722807], [-113.391196, 49.722209], [-113.390266, 49.721242], [-113.389586, 49.720567], [-113.388246, 49.71917], [-113.387068, 49.717968], [-113.386688, 49.717602], [-113.386617, 49.717518], [-113.386398, 49.717254], [-113.386209, 49.717057], [-113.385914, 49.716751], [-113.385697, 49.71658], [-113.385459, 49.716404], [-113.385223, 49.716267], [-113.384941, 49.716121], [-113.384654, 49.716013], [-113.384337, 49.715925], [-113.383953, 49.715848], [-113.383617, 49.715803], [-113.383303, 49.715777], [-113.382948, 49.715769], [-113.382593, 49.71579], [-113.382269, 49.715822], [-113.381923, 49.715886], [-113.381566, 49.715981], [-113.381244, 49.716092], [-113.380957, 49.716219], [-113.380551, 49.716436], [-113.380035, 49.71673], [-113.379484, 49.717081], [-113.378419, 49.71777], [-113.377851, 49.718172], [-113.376955, 49.718849], [-113.376472, 49.719244], [-113.375953, 49.719695], [-113.375418, 49.720164], [-113.374752, 49.720812], [-113.373389, 49.722261], [-113.372553, 49.723172], [-113.371753, 49.724069], [-113.371091, 49.724816], [-113.370703, 49.725251], [-113.370292, 49.725659], [-113.36989, 49.726068], [-113.369354, 49.726543], [-113.368728, 49.727064], [-113.368135, 49.727526], [-113.367567, 49.727939], [-113.366419, 49.728699], [-113.366091, 49.728877], [-113.365827, 49.729022], [-113.365501, 49.729201], [-113.362951, 49.730439], [-113.358468, 49.732139], [-113.3397, 49.739588], [-113.335475, 49.741364], [-113.327488, 49.744425], [-113.318052, 49.748192], [-113.313869, 49.749882], [-113.31224, 49.750619], [-113.310651, 49.75165], [-113.307682, 49.753879], [-113.302921, 49.757409], [-113.297078, 49.761832], [-113.293465, 49.764507], [-113.274088, 49.778989], [-113.273227, 49.779697], [-113.272213, 49.780484], [-113.270309, 49.781807], [-113.269287, 49.782542], [-113.268506, 49.783052], [-113.267549, 49.783577], [-113.266355, 49.784155], [-113.264867, 49.784696], [-113.26421, 49.78488], [-113.263279, 49.785126], [-113.262406, 49.785321], [-113.261535, 49.785468], [-113.260247, 49.785632], [-113.2584, 49.785752], [-113.253189, 49.785761], [-113.2503, 49.785759], [-113.246741, 49.785753], [-113.243803, 49.785748], [-113.24168, 49.785746], [-113.239441, 49.785743], [-113.235416, 49.785738], [-113.232546, 49.785734], [-113.230542, 49.78573], [-113.207916, 49.785665], [-113.188962, 49.785585], [-113.187421, 49.785394], [-113.185955, 49.785084], [-113.182069, 49.784248], [-113.178433, 49.783545], [-113.175537, 49.783555], [-113.172403, 49.784002], [-113.169876, 49.784514], [-113.165425, 49.785057], [-113.162661, 49.785308], [-113.158491, 49.785468], [-113.154009, 49.785249], [-113.150706, 49.7849], [-113.138727, 49.78387], [-113.137918, 49.7838], [-113.132484, 49.783537], [-113.127139, 49.783666], [-113.121522, 49.784134], [-113.116401, 49.784873], [-113.108878, 49.786479], [-113.10643, 49.787036], [-113.100519, 49.78837], [-113.099817, 49.78851], [-113.099069, 49.788664], [-113.098414, 49.788796], [-113.097678, 49.788933], [-113.096947, 49.789058], [-113.096124, 49.78919], [-113.095087, 49.789365], [-113.093946, 49.789519], [-113.092851, 49.789655], [-113.091995, 49.789773], [-113.091108, 49.78988], [-113.090105, 49.789981], [-113.089148, 49.790064], [-113.088464, 49.790125], [-113.087728, 49.790181], [-113.08695, 49.790229], [-113.08621, 49.790281], [-113.085391, 49.790327], [-113.084622, 49.790364], [-113.083774, 49.790396], [-113.082731, 49.790426], [-113.081849, 49.790441], [-113.080915, 49.790449], [-113.080041, 49.790455], [-113.079132, 49.790458], [-113.078156, 49.790437], [-113.077306, 49.790416], [-113.076308, 49.790386], [-113.075035, 49.79033], [-113.073984, 49.790268], [-113.073014, 49.790204], [-113.072411, 49.790162], [-113.071942, 49.790123], [-113.069874, 49.789921], [-113.06869, 49.789793], [-113.067583, 49.789667], [-113.066892, 49.789578], [-113.066126, 49.789472], [-113.064972, 49.789301], [-113.04876, 49.786854], [-113.048, 49.78674], [-113.047462, 49.78667], [-113.046933, 49.786601], [-113.046365, 49.786543], [-113.041994, 49.786136], [-113.038418, 49.786047], [-113.028911, 49.786062], [-113.013026, 49.786042], [-113.003977, 49.786038], [-113.002681, 49.785962], [-113.001644, 49.785864], [-113.00048, 49.785713], [-112.999756, 49.785611], [-112.9987, 49.785408], [-112.997454, 49.785132], [-112.995534, 49.784581], [-112.99125, 49.783007], [-112.98295, 49.779625], [-112.980557, 49.778522], [-112.979018, 49.777554], [-112.976341, 49.775651], [-112.973797, 49.773044], [-112.965769, 49.764644], [-112.960895, 49.75933], [-112.960092, 49.758465], [-112.959726, 49.75808], [-112.959447, 49.757828], [-112.959069, 49.757507], [-112.958709, 49.757166], [-112.958281, 49.756793], [-112.95762, 49.756294], [-112.956931, 49.755799], [-112.956159, 49.755282], [-112.955682, 49.754998], [-112.955151, 49.754703], [-112.952858, 49.753509], [-112.949354, 49.752075], [-112.94544, 49.749962], [-112.938188, 49.743931], [-112.931304, 49.738228], [-112.926731, 49.73422], [-112.925384, 49.732989], [-112.924479, 49.731925], [-112.923468, 49.730575], [-112.922298, 49.729055], [-112.921036, 49.7277], [-112.918917, 49.725859], [-112.918155, 49.725203], [-112.916619, 49.723846], [-112.915487, 49.723018], [-112.915163, 49.72283], [-112.914796, 49.722631], [-112.914432, 49.722464], [-112.914031, 49.722286], [-112.913669, 49.722145], [-112.913246, 49.722004], [-112.912907, 49.721891], [-112.912605, 49.721797], [-112.912248, 49.721697], [-112.911203, 49.721427], [-112.910101, 49.721135], [-112.906937, 49.720299], [-112.903215, 49.719342], [-112.900165, 49.718558], [-112.897476, 49.717852], [-112.895936, 49.717459], [-112.895282, 49.717281], [-112.894243, 49.71701], [-112.893141, 49.716728], [-112.892426, 49.716529], [-112.89165, 49.716338], [-112.891198, 49.71622], [-112.890633, 49.716083], [-112.889897, 49.715934], [-112.889174, 49.715796], [-112.888532, 49.715689], [-112.887541, 49.715558], [-112.88613, 49.71536], [-112.885501, 49.715271], [-112.884833, 49.715175], [-112.884308, 49.715088], [-112.883816, 49.71495], [-112.883277, 49.714832], [-112.882696, 49.714691], [-112.88207, 49.714542], [-112.881531, 49.714385], [-112.881025, 49.714222], [-112.880522, 49.714039], [-112.879986, 49.713834], [-112.879529, 49.71365], [-112.87903, 49.713431], [-112.878502, 49.713173], [-112.877609, 49.712649], [-112.875259, 49.711284], [-112.873228, 49.710141], [-112.872763, 49.709872], [-112.87224, 49.709593], [-112.871848, 49.709384], [-112.871432, 49.709188], [-112.871061, 49.709022], [-112.870716, 49.708873], [-112.870311, 49.708723], [-112.869954, 49.708592], [-112.869443, 49.708436], [-112.868983, 49.708311], [-112.868462, 49.708183], [-112.86782, 49.708055], [-112.867368, 49.707982], [-112.866939, 49.707916], [-112.86545, 49.707716], [-112.861762, 49.707191], [-112.86017, 49.706981], [-112.85809, 49.706677], [-112.85777, 49.706622], [-112.857467, 49.706553], [-112.857076, 49.706452], [-112.856698, 49.706338], [-112.854212, 49.705528], [-112.85381, 49.705386], [-112.853466, 49.70523], [-112.853137, 49.705049], [-112.852839, 49.704853], [-112.851852, 49.704221], [-112.851516, 49.704031], [-112.851207, 49.703872], [-112.850867, 49.70373], [-112.850433, 49.703565], [-112.84992, 49.703388], [-112.847903, 49.702792], [-112.845724, 49.702167], [-112.844077, 49.701628], [-112.8432, 49.701369], [-112.842649, 49.701218], [-112.842201, 49.701114], [-112.841728, 49.701025], [-112.840794, 49.700856], [-112.838125, 49.700426], [-112.834609, 49.699873], [-112.832064, 49.699465], [-112.828981, 49.698964], [-112.828552, 49.698904], [-112.827826, 49.698813], [-112.827096, 49.698728], [-112.826436, 49.698665], [-112.825387, 49.6986], [-112.824515, 49.698555], [-112.823879, 49.698527], [-112.822719, 49.698465], [-112.820041, 49.698338], [-112.818601, 49.69826], [-112.817659, 49.698214], [-112.817451, 49.698208], [-112.816791, 49.698174], [-112.81589, 49.698112], [-112.814861, 49.698029], [-112.814224, 49.697963], [-112.813253, 49.697849], [-112.813147, 49.697836], [-112.811952, 49.697672], [-112.811842, 49.697656], [-112.811502, 49.697615], [-112.811227, 49.697581], [-112.810773, 49.697561], [-112.810352, 49.69755], [-112.810002, 49.697537], [-112.809403, 49.697532], [-112.806575, 49.697613], [-112.805437, 49.69765], [-112.804522, 49.697685], [-112.80393, 49.697707], [-112.80238, 49.69777], [-112.802025, 49.697788], [-112.801625, 49.697812], [-112.800653, 49.697888], [-112.799723, 49.697967], [-112.79867, 49.698052], [-112.798046, 49.698084], [-112.797631, 49.698102], [-112.797077, 49.698117], [-112.796376, 49.698135], [-112.79554, 49.698135], [-112.794414, 49.698135], [-112.793544, 49.698131], [-112.788404, 49.698111], [-112.787759, 49.698108], [-112.787623, 49.698109], [-112.786794, 49.698114], [-112.785574, 49.698121], [-112.784545, 49.69817], [-112.784282, 49.698206], [-112.783264, 49.698348], [-112.782977, 49.69837], [-112.782674, 49.69837], [-112.782377, 49.69836], [-112.781976, 49.698324], [-112.781573, 49.698283], [-112.780374, 49.698174], [-112.779856, 49.698084], [-112.77969, 49.698039], [-112.779534, 49.697963], [-112.779416, 49.697879], [-112.779336, 49.697779], [-112.779293, 49.697678], [-112.779266, 49.697588], [-112.779277, 49.697432], [-112.779309, 49.697054], [-112.779557, 49.695985], [-112.779657, 49.695544], [-112.779736, 49.695225], [-112.779761, 49.695101], [-112.779809, 49.694922], [-112.779952, 49.69441], [-112.780019, 49.694125], [-112.780058, 49.69387], [-112.780085, 49.693604], [-112.78011, 49.693292], [-112.780165, 49.692652], [-112.780169, 49.692372], [-112.780165, 49.692154], [-112.780164, 49.692098], [-112.780144, 49.691862], [-112.780143, 49.691843], [-112.780133, 49.69176], [-112.780037, 49.691006], [-112.779822, 49.689657], [-112.77979, 49.689308], [-112.779748, 49.688889], [-112.779749, 49.688478], [-112.779739, 49.688031], [-112.779748, 49.687622], [-112.779769, 49.687159], [-112.779816, 49.686494], [-112.779896, 49.685531], [-112.779868, 49.68512], [-112.779875, 49.684881], [-112.779863, 49.684535], [-112.77986, 49.684358], [-112.779847, 49.684121], [-112.779816, 49.683702], [-112.779801, 49.683613], [-112.779746, 49.683344], [-112.779688, 49.682957], [-112.779596, 49.68252], [-112.779542, 49.68228], [-112.7794, 49.681732], [-112.779248, 49.681225], [-112.779016, 49.680478], [-112.778857, 49.679737], [-112.778724, 49.678803], [-112.778685, 49.678481], [-112.77867, 49.678161], [-112.778679, 49.677477], [-112.778716, 49.676815], [-112.77879, 49.676373], [-112.778793, 49.676281], [-112.778809, 49.67613], [-112.778826, 49.675962], [-112.779009, 49.67502], [-112.779283, 49.674077], [-112.779324, 49.67372], [-112.779398, 49.673084], [-112.779441, 49.672708], [-112.779445, 49.672624], [-112.779457, 49.6724], [-112.779474, 49.670433], [-112.779525, 49.669583], [-112.779531, 49.668796], [-112.779522, 49.66867], [-112.779234, 49.66867], [-112.778749, 49.66867], [-112.773523, 49.668658], [-112.769369, 49.668649], [-112.763756, 49.668637], [-112.7565, 49.668622], [-112.75294, 49.668604], [-112.752507, 49.668609], [-112.751647, 49.668588], [-112.750485, 49.668477], [-112.748828, 49.668137], [-112.747424, 49.667643], [-112.746405, 49.667117], [-112.745658, 49.666544], [-112.743059, 49.663524], [-112.742076, 49.662492], [-112.741004, 49.661674], [-112.73773, 49.659519], [-112.735465, 49.657989], [-112.733655, 49.656859], [-112.718533, 49.646941], [-112.708401, 49.640314], [-112.699223, 49.634317], [-112.697367, 49.633097], [-112.696977, 49.632838], [-112.688059, 49.626979], [-112.68302, 49.623675], [-112.676625, 49.619483], [-112.667074, 49.613228], [-112.658988, 49.607908], [-112.655248, 49.605484], [-112.650972, 49.603234], [-112.646487, 49.600778], [-112.644902, 49.599632], [-112.643248, 49.598383], [-112.641103, 49.596798], [-112.639355, 49.595616], [-112.637, 49.594133], [-112.627891, 49.588425], [-112.602707, 49.572537], [-112.600552, 49.571077], [-112.598617, 49.5692], [-112.59449, 49.564228], [-112.593913, 49.5636], [-112.593075, 49.562994], [-112.592311, 49.562392], [-112.591327, 49.561818], [-112.589132, 49.56091], [-112.585717, 49.559813], [-112.580643, 49.558189], [-112.579135, 49.557557], [-112.577853, 49.55687], [-112.576584, 49.555934], [-112.573576, 49.55323], [-112.570447, 49.550424], [-112.569232, 49.549564], [-112.567477, 49.548436], [-112.556735, 49.541871], [-112.550446, 49.538028], [-112.546175, 49.535345], [-112.543195, 49.53355], [-112.541943, 49.532867], [-112.522018, 49.522571], [-112.51966, 49.521328], [-112.515058, 49.518953], [-112.512595, 49.517628], [-112.51096, 49.516524], [-112.50948, 49.515214], [-112.508358, 49.513958], [-112.507396, 49.512646], [-112.504667, 49.506398], [-112.503772, 49.504449], [-112.502829, 49.502755], [-112.502134, 49.501789], [-112.500323, 49.499793], [-112.498242, 49.497945], [-112.491937, 49.492826], [-112.472122, 49.477074], [-112.46972, 49.475443], [-112.458697, 49.468584], [-112.452076, 49.464789], [-112.441426, 49.458313], [-112.440081, 49.457555], [-112.439154, 49.45711], [-112.437692, 49.456507], [-112.428185, 49.452715], [-112.42567, 49.451509], [-112.421872, 49.448943], [-112.416852, 49.445256], [-112.415374, 49.444112], [-112.413757, 49.443067], [-112.41199, 49.442277], [-112.408866, 49.441094], [-112.403355, 49.439005], [-112.400426, 49.437907], [-112.395624, 49.436024], [-112.393366, 49.43506], [-112.391141, 49.43401], [-112.389667, 49.433278], [-112.387242, 49.431857], [-112.380495, 49.427283], [-112.377371, 49.425166], [-112.370769, 49.420228], [-112.369213, 49.419103], [-112.368029, 49.418322], [-112.366868, 49.417688], [-112.365853, 49.417109], [-112.364196, 49.416279], [-112.358645, 49.413606], [-112.345069, 49.40697], [-112.313601, 49.391666], [-112.293379, 49.381796], [-112.280866, 49.375648], [-112.275641, 49.37312], [-112.27415, 49.372357], [-112.272971, 49.371647], [-112.272087, 49.371077], [-112.271197, 49.370405], [-112.270258, 49.369532], [-112.269242, 49.36847], [-112.263635, 49.361606], [-112.261762, 49.359287], [-112.252776, 49.348158], [-112.236226, 49.327356], [-112.231602, 49.321856], [-112.231504, 49.32174], [-112.22954, 49.319363], [-112.227247, 49.316403], [-112.224225, 49.312727], [-112.22224, 49.310555], [-112.216986, 49.304836], [-112.215307, 49.3031], [-112.213887, 49.301877], [-112.213028, 49.301145], [-112.204369, 49.294474], [-112.201434, 49.291851], [-112.200807, 49.291228], [-112.200423, 49.290767], [-112.200161, 49.290419], [-112.199859, 49.289985], [-112.199566, 49.2895], [-112.199306, 49.289012], [-112.199053, 49.288493], [-112.198839, 49.287999], [-112.198721, 49.287648], [-112.198561, 49.28716], [-112.198436, 49.286692], [-112.198364, 49.286224], [-112.198303, 49.285775], [-112.198271, 49.285347], [-112.198256, 49.282987], [-112.198269, 49.279832], [-112.197949, 49.277457], [-112.196565, 49.273803], [-112.189342, 49.264663], [-112.187679, 49.262625], [-112.187029, 49.261975], [-112.185766, 49.260758], [-112.185003, 49.259994], [-112.184046, 49.259256], [-112.182999, 49.258515], [-112.181937, 49.257797], [-112.180185, 49.2566], [-112.179314, 49.25606], [-112.178353, 49.255415], [-112.177525, 49.254853], [-112.176769, 49.254313], [-112.176125, 49.253788], [-112.174746, 49.252496], [-112.173897, 49.251682], [-112.173107, 49.250905], [-112.153316, 49.231556], [-112.145266, 49.223554], [-112.137196, 49.215571], [-112.13617, 49.214714], [-112.134956, 49.213742], [-112.134168, 49.213187], [-112.132859, 49.212334], [-112.13166, 49.211607], [-112.12957, 49.210494], [-112.126976, 49.209298], [-112.123065, 49.207555], [-112.121541, 49.206848], [-112.120052, 49.206151], [-112.118948, 49.205619], [-112.117869, 49.205062], [-112.11706, 49.204623], [-112.115236, 49.203546], [-112.112919, 49.201989], [-112.111625, 49.201012], [-112.109029, 49.198836], [-112.106118, 49.195686], [-112.105716, 49.195156], [-112.10511, 49.194341], [-112.102212, 49.189769], [-112.099016, 49.184803], [-112.097293, 49.182034], [-112.09607, 49.179971], [-112.093881, 49.176527], [-112.093098, 49.175222], [-112.092754, 49.174577], [-112.092518, 49.174107], [-112.092368, 49.173658], [-112.092271, 49.173279], [-112.092175, 49.172816], [-112.092083, 49.172436], [-112.092105, 49.171924], [-112.092116, 49.171461], [-112.092153, 49.170923], [-112.092303, 49.169933], [-112.092797, 49.166924], [-112.093183, 49.164483], [-112.093425, 49.163015], [-112.094079, 49.159023], [-112.094508, 49.156383], [-112.094555, 49.155953], [-112.094556, 49.155221], [-112.094514, 49.154793], [-112.094503, 49.154492], [-112.094385, 49.153874], [-112.094213, 49.153187], [-112.094063, 49.152773], [-112.093902, 49.152351], [-112.093602, 49.151853], [-112.093237, 49.151257], [-112.092797, 49.15078], [-112.092443, 49.150366], [-112.09211, 49.150043], [-112.09144, 49.149473], [-112.090329, 49.148576], [-112.087872, 49.146674], [-112.085019, 49.144442], [-112.08445, 49.144014], [-112.083795, 49.143488], [-112.083195, 49.142934], [-112.082218, 49.142021], [-112.081255, 49.140863], [-112.080652, 49.140161], [-112.079815, 49.139052], [-112.079375, 49.138315], [-112.078935, 49.137592], [-112.078367, 49.136469], [-112.077562, 49.134475], [-112.07679, 49.132524], [-112.076328, 49.131429], [-112.07591, 49.130565], [-112.075325, 49.129377], [-112.074891, 49.128684], [-112.074472, 49.128059], [-112.073582, 49.12674], [-112.072631, 49.125499], [-112.071973, 49.124711], [-112.071054, 49.123645], [-112.069784, 49.122387], [-112.068512, 49.121237], [-112.066629, 49.119662], [-112.062677, 49.116351], [-112.055397, 49.110231], [-112.054528, 49.109557], [-112.053423, 49.108763], [-112.052461, 49.108147], [-112.045612, 49.103924], [-112.04278, 49.102161], [-112.042125, 49.101683], [-112.041514, 49.101163], [-112.040923, 49.100503], [-112.040258, 49.099716], [-112.039046, 49.09777], [-112.036761, 49.094883], [-112.034383, 49.091688], [-112.032973, 49.089733], [-112.032072, 49.088525], [-112.031257, 49.087397], [-112.027952, 49.082826], [-112.025918, 49.080115], [-112.023929, 49.077471], [-112.021412, 49.07398], [-112.01924, 49.070443], [-112.016505, 49.066092], [-112.014616, 49.062914], [-112.010898, 49.056849], [-112.010336, 49.056053], [-112.009981, 49.05549], [-112.009595, 49.055054], [-112.008383, 49.053913], [-112.004081, 49.049886], [-112.003484, 49.049323], [-112.002241, 49.048061], [-112.000186, 49.046131], [-111.998352, 49.044419], [-111.997649, 49.043715], [-111.997014, 49.042914], [-111.996531, 49.042236], [-111.996215, 49.041782], [-111.995927, 49.041307], [-111.995594, 49.040698], [-111.995321, 49.040118], [-111.994693, 49.038673], [-111.994001, 49.037108], [-111.992996, 49.034801], [-111.992369, 49.033409], [-111.99149, 49.031403], [-111.99082, 49.029866], [-111.990004, 49.02802], [-111.98936, 49.026568], [-111.988769, 49.025185], [-111.988218, 49.023936], [-111.987589, 49.022536], [-111.987371, 49.021885], [-111.987235, 49.021333], [-111.987097, 49.020858], [-111.986995, 49.020386], [-111.98692, 49.019658], [-111.986872, 49.018979], [-111.986866, 49.017199], [-111.986872, 49.015542], [-111.98686, 49.013841], [-111.986847, 49.01231], [-111.98685, 49.011137], [-111.986861, 49.010352], [-111.986797, 49.009758], [-111.986645, 49.009206], [-111.986377, 49.008696], [-111.986147, 49.008354], [-111.985836, 49.007998], [-111.985337, 49.007558], [-111.984989, 49.007266], [-111.984301, 49.006795], [-111.983474, 49.00638], [-111.982516, 49.005993], [-111.981765, 49.005715], [-111.980942, 49.005514], [-111.980129, 49.005334], [-111.979328, 49.005194], [-111.978062, 49.005092], [-111.976985, 49.005074], [-111.974918, 49.005173], [-111.973139, 49.005292], [-111.97154, 49.00538], [-111.969019, 49.005514], [-111.967562, 49.005617], [-111.966045, 49.005705], [-111.96469, 49.005725], [-111.963991, 49.005648], [-111.96346, 49.005567], [-111.96295, 49.005448], [-111.962485, 49.005296], [-111.962163, 49.005187], [-111.961761, 49.005004], [-111.961293, 49.004765], [-111.960951, 49.004554], [-111.960789, 49.004426], [-111.960561, 49.004236], [-111.960215, 49.003866], [-111.959973, 49.003571], [-111.959774, 49.003265], [-111.959681, 49.003043], [-111.959581, 49.002794], [-111.95951, 49.002452], [-111.959584, 49.002087], [-111.959768, 49.001731], [-111.96008, 49.00139], [-111.960323, 49.001097], [-111.960993, 49.000276], [-111.961147, 48.999913], [-111.961177, 48.999675], [-111.961154, 48.999405], [-111.96075, 48.998378], [-111.960537, 48.997835], [-111.960261, 48.997296], [-111.959961, 48.996969], [-111.959772, 48.996485], [-111.959789, 48.99582], [-111.959918, 48.995443], [-111.960048, 48.994907], [-111.960094, 48.994603], [-111.960084, 48.994414], [-111.960109, 48.993824], [-111.959994, 48.990856], [-111.95827, 48.98094], [-111.958253, 48.980705], [-111.958185, 48.980405], [-111.958073, 48.980015], [-111.957973, 48.979662], [-111.957788, 48.979177], [-111.957579, 48.978688], [-111.957393, 48.978342], [-111.957182, 48.977986], [-111.956929, 48.977617], [-111.956287, 48.976872], [-111.955429, 48.975932], [-111.940434, 48.960617], [-111.939756, 48.959862], [-111.939258, 48.959163], [-111.938864, 48.958475], [-111.938589, 48.957934], [-111.935242, 48.950139], [-111.933705, 48.946469], [-111.930948, 48.939956], [-111.927211, 48.931012], [-111.924522, 48.924688], [-111.916608, 48.906188], [-111.9112, 48.893335], [-111.910969, 48.892844], [-111.910694, 48.892325], [-111.910265, 48.891676], [-111.909921, 48.891247], [-111.909492, 48.890711], [-111.909046, 48.890237], [-111.908119, 48.889328], [-111.907385, 48.88863], [-111.906844, 48.888116], [-111.903694, 48.88508], [-111.903291, 48.88469], [-111.901737, 48.883161], [-111.878176, 48.860393], [-111.867242, 48.849753], [-111.866486, 48.849013], [-111.865877, 48.848301], [-111.86531, 48.847533], [-111.864675, 48.846613], [-111.86392, 48.845195], [-111.863594, 48.84437], [-111.863233, 48.843167], [-111.863139, 48.842738], [-111.863019, 48.842026], [-111.86295, 48.841071], [-111.862942, 48.830326], [-111.862942, 48.823285], [-111.86289, 48.769261], [-111.862864, 48.764515], [-111.862813, 48.763474], [-111.862718, 48.761743], [-111.861611, 48.743809], [-111.861439, 48.740289], [-111.861439, 48.739949], [-111.861594, 48.737176], [-111.862178, 48.726719], [-111.862229, 48.723792], [-111.862083, 48.656639], [-111.8621, 48.64979], [-111.861997, 48.598701], [-111.86198, 48.592185], [-111.86198, 48.57272], [-111.861912, 48.57163], [-111.861817, 48.570494], [-111.861697, 48.569205], [-111.860581, 48.557657], [-111.860077, 48.552231], [-111.859663, 48.54801], [-111.859594, 48.546805], [-111.859611, 48.545322], [-111.859792, 48.535383], [-111.8598, 48.533888], [-111.859886, 48.533121], [-111.860015, 48.532581], [-111.860246, 48.531939], [-111.860598, 48.531387], [-111.860942, 48.530899], [-111.861688, 48.530109], [-111.866109, 48.525755], [-111.875953, 48.516192], [-111.876929, 48.515247], [-111.877241, 48.514954], [-111.879228, 48.513021], [-111.879759, 48.512467], [-111.88006, 48.512124], [-111.880267, 48.511881], [-111.88042, 48.511679], [-111.880571, 48.511473], [-111.88094, 48.510956], [-111.881292, 48.510376], [-111.881653, 48.509733], [-111.881996, 48.50904], [-111.882305, 48.508346], [-111.882562, 48.507572], [-111.882777, 48.506828], [-111.882931, 48.506134], [-111.883026, 48.505588], [-111.883441, 48.502992], [-111.883604, 48.499975], [-111.883614, 48.499767], [-111.883635, 48.496433], [-111.883673, 48.495815], [-111.883734, 48.49503], [-111.883798, 48.494396], [-111.883866, 48.493802], [-111.883999, 48.493], [-111.884209, 48.492103], [-111.884377, 48.49147], [-111.884557, 48.490837], [-111.885112, 48.489088], [-111.885489, 48.48824], [-111.886605, 48.485897], [-111.88682, 48.485299], [-111.887034, 48.484679], [-111.887197, 48.484099], [-111.887389, 48.483433], [-111.88747, 48.482928], [-111.887522, 48.482349], [-111.887575, 48.481425], [-111.887554, 48.480643], [-111.887506, 48.480113], [-111.887418, 48.479516], [-111.887265, 48.478742], [-111.887056, 48.477974], [-111.886845, 48.47746], [-111.886472, 48.476607], [-111.885635, 48.474831], [-111.885441, 48.474274], [-111.885165, 48.473591], [-111.884897, 48.472862], [-111.884674, 48.47215], [-111.884502, 48.471564], [-111.884279, 48.470409], [-111.884082, 48.46926], [-111.883953, 48.468281], [-111.883906, 48.467423], [-111.883878, 48.46663], [-111.883976, 48.454446], [-111.884028, 48.447094], [-111.884036, 48.443164], [-111.884023, 48.441546], [-111.884017, 48.440681], [-111.884026, 48.43968], [-111.884018, 48.438945], [-111.88402, 48.438457], [-111.884058, 48.438059], [-111.884092, 48.43776], [-111.884134, 48.437455], [-111.884195, 48.437091], [-111.884275, 48.436739], [-111.884339, 48.436455], [-111.884422, 48.436153], [-111.884528, 48.435768], [-111.884674, 48.435354], [-111.884745, 48.435206], [-111.884871, 48.43486], [-111.885003, 48.434574], [-111.885207, 48.434157], [-111.885417, 48.433746], [-111.885596, 48.433441], [-111.88582, 48.433061], [-111.886029, 48.43273], [-111.886203, 48.432492], [-111.886412, 48.432197], [-111.886586, 48.431954], [-111.886816, 48.431663], [-111.887079, 48.431357], [-111.887401, 48.430981], [-111.887774, 48.430593], [-111.888127, 48.430257], [-111.888437, 48.429955], [-111.889099, 48.429374], [-111.889756, 48.428824], [-111.890912, 48.427857], [-111.892165, 48.426838], [-111.905659, 48.415636], [-111.90626, 48.415157], [-111.906861, 48.41457], [-111.907333, 48.414081], [-111.907814, 48.413528], [-111.908406, 48.412776], [-111.909015, 48.411824], [-111.909633, 48.410907], [-111.920752, 48.392582], [-111.927417, 48.381543], [-111.93346, 48.371538], [-111.933846, 48.37086], [-111.934235, 48.370068], [-111.934546, 48.369396], [-111.934939, 48.368399], [-111.935227, 48.367613], [-111.935586, 48.366493], [-111.935831, 48.365544], [-111.936026, 48.364601], [-111.936138, 48.363831], [-111.936258, 48.362885], [-111.936438, 48.360792], [-111.936415, 48.329088], [-111.936407, 48.310354], [-111.936413, 48.303031], [-111.936412, 48.300795], [-111.936402, 48.300483], [-111.936381, 48.271331], [-111.936384, 48.26711], [-111.936382, 48.259592], [-111.936296, 48.241832], [-111.936359, 48.224045], [-111.936352, 48.223792], [-111.936325, 48.223208], [-111.936251, 48.222646], [-111.936138, 48.222131], [-111.936009, 48.221594], [-111.935863, 48.221148], [-111.935674, 48.220724], [-111.935554, 48.220438], [-111.935323, 48.219975], [-111.934809, 48.219106], [-111.93372, 48.217503], [-111.933233, 48.216812], [-111.932738, 48.21609], [-111.932429, 48.215627], [-111.931294, 48.214006], [-111.927397, 48.208419], [-111.925603, 48.205843], [-111.925208, 48.205217], [-111.92491, 48.204712], [-111.924771, 48.204436], [-111.924661, 48.204188], [-111.924567, 48.203923], [-111.924475, 48.203592], [-111.924434, 48.203298], [-111.924418, 48.202753], [-111.924413, 48.20226], [-111.924452, 48.201981], [-111.924528, 48.20166], [-111.924607, 48.201399], [-111.924686, 48.201185], [-111.924808, 48.200887], [-111.92494, 48.200634], [-111.925143, 48.200322], [-111.925478, 48.199721], [-111.929307, 48.193399], [-111.931749, 48.18936], [-111.932143, 48.188696], [-111.932455, 48.188174], [-111.933068, 48.187161], [-111.933601, 48.186274], [-111.933896, 48.185797], [-111.934176, 48.185351], [-111.934674, 48.184441], [-111.934869, 48.184038], [-111.935015, 48.183702], [-111.935133, 48.183407], [-111.935235, 48.183131], [-111.935317, 48.182855], [-111.935435, 48.182454], [-111.935517, 48.18214], [-111.935563, 48.181903], [-111.935605, 48.181629], [-111.935654, 48.181347], [-111.935672, 48.181134], [-111.935695, 48.180837], [-111.93571, 48.180431], [-111.935711, 48.179913], [-111.935689, 48.179699], [-111.935666, 48.179392], [-111.935641, 48.179193], [-111.935605, 48.178954], [-111.935551, 48.17862], [-111.935494, 48.178341], [-111.935425, 48.178065], [-111.935362, 48.177851], [-111.935271, 48.177512], [-111.935083, 48.177015], [-111.93498, 48.176751], [-111.934859, 48.176484], [-111.934688, 48.176141], [-111.934489, 48.175789], [-111.934239, 48.175377], [-111.933859, 48.174812], [-111.933189, 48.173765], [-111.928027, 48.165762], [-111.927735, 48.165321], [-111.92603, 48.162726], [-111.925093, 48.161247], [-111.924008, 48.159611], [-111.922175, 48.156783], [-111.920615, 48.154387], [-111.919007, 48.151911], [-111.91822, 48.150663], [-111.916601, 48.148144], [-111.915551, 48.146568], [-111.914312, 48.144665], [-111.913624, 48.143606], [-111.912311, 48.141567], [-111.911974, 48.141065], [-111.911504, 48.140381], [-111.910989, 48.139656], [-111.91031, 48.138734], [-111.909273, 48.1374], [-111.907928, 48.135653], [-111.906666, 48.13405], [-111.905997, 48.133172], [-111.904722, 48.131516], [-111.901655, 48.127581], [-111.900048, 48.125516], [-111.898729, 48.123822], [-111.894029, 48.117798], [-111.893315, 48.116857], [-111.892001, 48.115177], [-111.889638, 48.112132], [-111.887413, 48.109275], [-111.884717, 48.105808], [-111.876044, 48.094626], [-111.87031, 48.087229], [-111.862959, 48.077764], [-111.861332, 48.075665], [-111.858755, 48.072362], [-111.857125, 48.070241], [-111.854834, 48.06729], [-111.850948, 48.062304], [-111.85011, 48.061229], [-111.849084, 48.059917], [-111.845348, 48.055071], [-111.836461, 48.043589], [-111.832454, 48.038401], [-111.828116, 48.032803], [-111.825147, 48.028974], [-111.816587, 48.017942], [-111.816087, 48.017289], [-111.815305, 48.016376], [-111.814473, 48.015423], [-111.813623, 48.014499], [-111.812937, 48.013816], [-111.811984, 48.012851], [-111.810868, 48.011863], [-111.809752, 48.010882], [-111.808825, 48.010101], [-111.807598, 48.009153], [-111.806388, 48.008229], [-111.805238, 48.007408], [-111.784158, 47.992286], [-111.782561, 47.991143], [-111.767146, 47.980084], [-111.766219, 47.979354], [-111.765283, 47.978504], [-111.764288, 47.977544], [-111.763404, 47.976585], [-111.762691, 47.975723], [-111.762193, 47.97501], [-111.761653, 47.974154], [-111.761121, 47.973252], [-111.753336, 47.959718], [-111.749036, 47.952205], [-111.736505, 47.930384], [-111.736106, 47.92965], [-111.735644, 47.928853], [-111.735343, 47.928305], [-111.733592, 47.925244], [-111.733306, 47.924769], [-111.732599, 47.923554], [-111.732395, 47.923205], [-111.731718, 47.922093], [-111.731538, 47.921738], [-111.73117, 47.921043], [-111.726112, 47.912262], [-111.71442, 47.89173], [-111.713776, 47.890608], [-111.713253, 47.889578], [-111.712927, 47.888864], [-111.71254, 47.888058], [-111.712146, 47.88689], [-111.711811, 47.885744], [-111.711519, 47.884564], [-111.711253, 47.883125], [-111.711124, 47.881922], [-111.71103, 47.880834], [-111.71103, 47.879792], [-111.711129, 47.869762], [-111.711004, 47.867783], [-111.710901, 47.866758], [-111.710781, 47.865716], [-111.710618, 47.864547], [-111.710438, 47.863447], [-111.710283, 47.862537], [-111.709991, 47.861213], [-111.709756, 47.860259], [-111.709335, 47.858847], [-111.708841, 47.857285], [-111.70727, 47.852822], [-111.706867, 47.851704], [-111.706498, 47.850875], [-111.706077, 47.850017], [-111.705434, 47.848819], [-111.705305, 47.848582], [-111.704816, 47.847747], [-111.704215, 47.846849], [-111.703623, 47.846054], [-111.702678, 47.844833], [-111.701983, 47.843986], [-111.700902, 47.842828], [-111.699923, 47.841889], [-111.698979, 47.841013], [-111.698052, 47.84023], [-111.696893, 47.839291], [-111.668363, 47.817267], [-111.667479, 47.816472], [-111.667042, 47.815942], [-111.666647, 47.815434], [-111.666226, 47.81476], [-111.665943, 47.814143], [-111.66578, 47.813619], [-111.665625, 47.812887], [-111.6656, 47.812391], [-111.665591, 47.811797], [-111.666429, 47.79584], [-111.666535, 47.793822], [-111.666492, 47.791308], [-111.666439, 47.750802], [-111.666442, 47.741317], [-111.666445, 47.740989], [-111.666406, 47.723306], [-111.666381, 47.72244], [-111.666295, 47.721684], [-111.666158, 47.720881], [-111.665986, 47.72024], [-111.665746, 47.719547], [-111.665419, 47.71871], [-111.665042, 47.717925], [-111.664647, 47.717243], [-111.664132, 47.716493], [-111.663789, 47.716008], [-111.663359, 47.715528], [-111.662432, 47.714581], [-111.658081, 47.710071], [-111.647285, 47.699031], [-111.646085, 47.697836], [-111.632275, 47.683698], [-111.631949, 47.683351], [-111.606663, 47.657441], [-111.60117, 47.651798], [-111.590415, 47.64073], [-111.589918, 47.640187], [-111.589463, 47.639655], [-111.589068, 47.639157], [-111.588707, 47.638689], [-111.588287, 47.638139], [-111.587849, 47.637538], [-111.587549, 47.637104], [-111.587231, 47.636624], [-111.58627, 47.63501], [-111.585369, 47.633136], [-111.570511, 47.6019], [-111.569945, 47.600818], [-111.56955, 47.600169], [-111.569224, 47.599643], [-111.568846, 47.599047], [-111.568546, 47.598607], [-111.568168, 47.598051], [-111.567747, 47.597472], [-111.567335, 47.596928], [-111.566915, 47.59643], [-111.566537, 47.595991], [-111.552899, 47.581183], [-111.552633, 47.580911], [-111.537629, 47.564691], [-111.536514, 47.563515], [-111.535904, 47.562901], [-111.535175, 47.56227], [-111.534437, 47.561691], [-111.533656, 47.561129], [-111.532711, 47.560504], [-111.531647, 47.559884], [-111.53048, 47.559311], [-111.529184, 47.558737], [-111.528008, 47.558285], [-111.526806, 47.557897], [-111.525424, 47.557503], [-111.524008, 47.557162], [-111.522824, 47.556953], [-111.521734, 47.556779], [-111.509679, 47.554952], [-111.484251, 47.551039], [-111.477299, 47.54995], [-111.455614, 47.546631], [-111.452477, 47.546143], [-111.452005, 47.546074], [-111.448496, 47.545531], [-111.445301, 47.545037], [-111.443894, 47.544799], [-111.442357, 47.544492], [-111.440907, 47.544162], [-111.439173, 47.543716], [-111.437894, 47.543368], [-111.436512, 47.542957], [-111.435045, 47.54247], [-111.385349, 47.526175], [-111.384241, 47.525793], [-111.383478, 47.52541], [-111.382928, 47.525097], [-111.382499, 47.524784], [-111.382036, 47.524384], [-111.381709, 47.524025], [-111.381452, 47.523741], [-111.380053, 47.521909], [-111.379298, 47.520959], [-111.379152, 47.520779], [-111.378714, 47.520286], [-111.378268, 47.519857], [-111.377555, 47.519394], [-111.376774, 47.518994], [-111.376096, 47.518733], [-111.375409, 47.51853], [-111.374294, 47.518234], [-111.351059, 47.512362], [-111.350081, 47.512055], [-111.348914, 47.511632], [-111.348184, 47.511255], [-111.347446, 47.510878], [-111.346914, 47.510553], [-111.346356, 47.510147], [-111.345832, 47.509759], [-111.345309, 47.509295], [-111.344914, 47.508884], [-111.344605, 47.508542], [-111.344193, 47.50802], [-111.34391, 47.507591], [-111.343618, 47.507133], [-111.343352, 47.506535], [-111.343137, 47.505921], [-111.343, 47.505254], [-111.342914, 47.504779], [-111.342871, 47.504205], [-111.342884, 47.503714], [-111.343017, 47.501337], [-111.343037, 47.500922], [-111.343074, 47.500247], [-111.343153, 47.498866], [-111.343699, 47.489338], [-111.343837, 47.488347], [-111.344051, 47.487517], [-111.344326, 47.486746], [-111.344695, 47.485795], [-111.345184, 47.484855], [-111.345493, 47.484356], [-111.346068, 47.483527], [-111.34715, 47.48221], [-111.347948, 47.481392], [-111.348765, 47.480715], [-111.349751, 47.479978], [-111.350866, 47.47913], [-111.356582, 47.475347], [-111.365214, 47.469592], [-111.367419, 47.46813], [-111.367934, 47.467829], [-111.368578, 47.467492], [-111.36923, 47.467144], [-111.369994, 47.466807], [-111.370973, 47.466407], [-111.371926, 47.466042], [-111.372818, 47.465746], [-111.373522, 47.465525], [-111.374509, 47.465258], [-111.429286, 47.452445], [-111.429621, 47.452364], [-111.473508, 47.442064], [-111.50183, 47.435384], [-111.502749, 47.435175], [-111.503701, 47.434961], [-111.504362, 47.434792], [-111.505221, 47.434543], [-111.506045, 47.434299], [-111.506663, 47.434095], [-111.507143, 47.433927], [-111.507907, 47.433648], [-111.508654, 47.433312], [-111.509255, 47.433045], [-111.509933, 47.432725], [-111.510534, 47.432412], [-111.51122, 47.432029], [-111.51183, 47.431674], [-111.512954, 47.430931], [-111.513546, 47.43049], [-111.524011, 47.422011], [-111.569141, 47.385345], [-111.6142, 47.348685], [-111.614466, 47.34847], [-111.634341, 47.332266], [-111.69101, 47.285965], [-111.692683, 47.284596], [-111.694151, 47.283461], [-111.694838, 47.282943], [-111.696432, 47.281863], [-111.698123, 47.280815], [-111.699024, 47.280297], [-111.699436, 47.280064], [-111.703522, 47.277671], [-111.704183, 47.27728], [-111.704689, 47.276966], [-111.70511, 47.276686], [-111.705436, 47.276442], [-111.705788, 47.276139], [-111.706182, 47.275766], [-111.706612, 47.275289], [-111.706989, 47.274806], [-111.707367, 47.274264], [-111.707573, 47.273856], [-111.707813, 47.273379], [-111.707933, 47.273047], [-111.708045, 47.272651], [-111.708122, 47.272307], [-111.708199, 47.271911], [-111.708234, 47.271544], [-111.708234, 47.271212], [-111.708157, 47.264538], [-111.708114, 47.262342], [-111.708122, 47.261794], [-111.708157, 47.261369], [-111.708234, 47.260851], [-111.708268, 47.260653], [-111.708337, 47.260257], [-111.708508, 47.259511], [-111.708637, 47.258923], [-111.708783, 47.258241], [-111.70898, 47.257536], [-111.709152, 47.256942], [-111.709298, 47.256383], [-111.710079, 47.25333], [-111.710328, 47.252363], [-111.710474, 47.251833], [-111.710637, 47.251332], [-111.710834, 47.250889], [-111.71104, 47.250545], [-111.711367, 47.250085], [-111.711658, 47.249753], [-111.711942, 47.249444], [-111.712345, 47.249089], [-111.712766, 47.248751], [-111.71316, 47.248494], [-111.713624, 47.248221], [-111.714147, 47.247958], [-111.714834, 47.247655], [-111.729726, 47.241112], [-111.73291, 47.239807], [-111.75169, 47.232534], [-111.754093, 47.231624], [-111.75635, 47.230861], [-111.75676, 47.230739], [-111.765002, 47.228413], [-111.765835, 47.228157], [-111.766633, 47.227877], [-111.767345, 47.227597], [-111.768092, 47.227306], [-111.768719, 47.227026], [-111.769474, 47.226676], [-111.770058, 47.226361], [-111.770727, 47.225988], [-111.771448, 47.225534], [-111.772118, 47.225096], [-111.772693, 47.224688], [-111.773405, 47.22417], [-111.773714, 47.223936], [-111.774169, 47.223575], [-111.774641, 47.223103], [-111.775104, 47.222619], [-111.775499, 47.222211], [-111.775885, 47.221774], [-111.776306, 47.221255], [-111.776658, 47.220777], [-111.77695, 47.220369], [-111.777422, 47.219611], [-111.777722, 47.219057], [-111.778014, 47.218422], [-111.778289, 47.217746], [-111.778503, 47.217104], [-111.778675, 47.216428], [-111.778881, 47.215694], [-111.779061, 47.214988], [-111.780057, 47.210796], [-111.780203, 47.210213], [-111.780323, 47.209758], [-111.780435, 47.209397], [-111.780641, 47.208808], [-111.780907, 47.208201], [-111.78113, 47.207729], [-111.781301, 47.207438], [-111.781499, 47.207129], [-111.78228, 47.205916], [-111.783293, 47.204645], [-111.783936, 47.203974], [-111.784735, 47.203146], [-111.785593, 47.202225], [-111.786314, 47.201466], [-111.786872, 47.200883], [-111.787902, 47.199845], [-111.788254, 47.199507], [-111.788674, 47.19914], [-111.789086, 47.19879], [-111.789584, 47.198387], [-111.790168, 47.197921], [-111.790605, 47.197618], [-111.791249, 47.197227], [-111.791824, 47.196877], [-111.792545, 47.196474], [-111.793198, 47.196136], [-111.79397, 47.195769], [-111.794805, 47.195425], [-111.801248, 47.192835], [-111.801575, 47.192701], [-111.802656, 47.192287], [-111.803514, 47.191937], [-111.804167, 47.191628], [-111.804665, 47.191394], [-111.8053, 47.191045], [-111.805723, 47.190797], [-111.805997, 47.190634], [-111.806478, 47.190323], [-111.806732, 47.190144], [-111.80699, 47.189955], [-111.807242, 47.189755], [-111.807499, 47.189537], [-111.807978, 47.189108], [-111.808309, 47.188784], [-111.808738, 47.188316], [-111.809145, 47.187831], [-111.809375, 47.187515], [-111.809578, 47.187207], [-111.809725, 47.186968], [-111.809941, 47.18658], [-111.810196, 47.186052], [-111.810485, 47.185392], [-111.810582, 47.185034], [-111.810757, 47.184458], [-111.81087, 47.184068], [-111.811288, 47.182591], [-111.811466, 47.182023], [-111.811592, 47.181562], [-111.811725, 47.181068], [-111.811881, 47.18053], [-111.812016, 47.179972], [-111.812133, 47.179486], [-111.812304, 47.178698], [-111.812475, 47.177933], [-111.812795, 47.176671], [-111.813022, 47.175805], [-111.813143, 47.175313], [-111.813289, 47.174743], [-111.813451, 47.174086], [-111.813587, 47.173603], [-111.813709, 47.173199], [-111.813868, 47.172742], [-111.814052, 47.172177], [-111.81431, 47.171374], [-111.814446, 47.170953], [-111.814555, 47.170592], [-111.814621, 47.170315], [-111.814724, 47.169845], [-111.814867, 47.169286], [-111.814924, 47.169023], [-111.815005, 47.168585], [-111.81512, 47.168075], [-111.815267, 47.167513], [-111.81537, 47.167124], [-111.815534, 47.166596], [-111.815743, 47.165879], [-111.815883, 47.165407], [-111.816017, 47.16497], [-111.816151, 47.164499], [-111.816299, 47.164102], [-111.816455, 47.163605], [-111.816606, 47.163233], [-111.81675, 47.162929], [-111.8169, 47.16265], [-111.817163, 47.162234], [-111.817461, 47.161792], [-111.817707, 47.161428], [-111.817918, 47.161172], [-111.818109, 47.160939], [-111.81826, 47.160773], [-111.818436, 47.160598], [-111.818713, 47.160322], [-111.819137, 47.159916], [-111.819338, 47.159742], [-111.819615, 47.159506], [-111.819811, 47.159353], [-111.820101, 47.159137], [-111.820886, 47.158653], [-111.821347, 47.158391], [-111.821709, 47.158179], [-111.82215, 47.157949], [-111.822792, 47.157656], [-111.823291, 47.157407], [-111.823951, 47.157074], [-111.824604, 47.156773], [-111.824926, 47.156618], [-111.826016, 47.156075], [-111.826777, 47.155704], [-111.827118, 47.155527], [-111.827632, 47.155278], [-111.828833, 47.154684], [-111.830331, 47.153967], [-111.83092, 47.153679], [-111.831417, 47.153485], [-111.831694, 47.153394], [-111.831937, 47.15332], [-111.832157, 47.153261], [-111.832517, 47.15318], [-111.832892, 47.153117], [-111.833253, 47.153076], [-111.833573, 47.153049], [-111.833993, 47.153025], [-111.834559, 47.153049], [-111.835126, 47.153113], [-111.835701, 47.1532], [-111.83595, 47.153259], [-111.841856, 47.154858], [-111.842362, 47.155002], [-111.842712, 47.155094], [-111.843019, 47.155158], [-111.843672, 47.155257], [-111.8438, 47.155267], [-111.844087, 47.155287], [-111.844399, 47.155286], [-111.844699, 47.15528], [-111.845058, 47.15526], [-111.845509, 47.155193], [-111.845869, 47.155122], [-111.846291, 47.155019], [-111.846644, 47.154905], [-111.846928, 47.154785], [-111.847126, 47.154685], [-111.847479, 47.154504], [-111.847736, 47.154346], [-111.847908, 47.15421], [-111.848115, 47.154036], [-111.848251, 47.153894], [-111.848342, 47.153792], [-111.84847, 47.153647], [-111.848543, 47.153546], [-111.848649, 47.153419], [-111.848764, 47.153232], [-111.848861, 47.153032], [-111.848947, 47.152823], [-111.848973, 47.152708], [-111.849021, 47.152541], [-111.849042, 47.152364], [-111.849077, 47.152131], [-111.849103, 47.151825], [-111.849333, 47.149062], [-111.849393, 47.148406], [-111.8494, 47.148192], [-111.849408, 47.147987], [-111.8494, 47.147824], [-111.84939, 47.147698], [-111.849374, 47.147556], [-111.849347, 47.147435], [-111.849331, 47.147351], [-111.849245, 47.146966], [-111.849142, 47.146674], [-111.849059, 47.146434], [-111.848943, 47.146212], [-111.84886, 47.146053], [-111.848767, 47.145896], [-111.848673, 47.145762], [-111.848566, 47.14562], [-111.847025, 47.143717], [-111.846887, 47.143525], [-111.846766, 47.143353], [-111.846661, 47.14319], [-111.846521, 47.142953], [-111.846415, 47.142749], [-111.846343, 47.142591], [-111.846269, 47.14237], [-111.846241, 47.142263], [-111.846223, 47.14217], [-111.846209, 47.142062], [-111.84619, 47.141876], [-111.846192, 47.141745], [-111.846217, 47.141528], [-111.846242, 47.141353], [-111.84627, 47.141184], [-111.846324, 47.141016], [-111.846398, 47.140797], [-111.846525, 47.140531], [-111.846604, 47.14041], [-111.846676, 47.14029], [-111.846846, 47.140059], [-111.847142, 47.139751], [-111.847281, 47.13963], [-111.84746, 47.139479], [-111.847678, 47.139323], [-111.84791, 47.139171], [-111.848186, 47.139013], [-111.848438, 47.138891], [-111.848706, 47.138772], [-111.848984, 47.138674], [-111.849267, 47.138581], [-111.849592, 47.138477], [-111.849947, 47.138393], [-111.850257, 47.138331], [-111.850556, 47.138292], [-111.850908, 47.138241], [-111.851241, 47.13822], [-111.85164, 47.138209], [-111.851974, 47.13821], [-111.852237, 47.138223], [-111.852532, 47.138247], [-111.852795, 47.138276], [-111.853123, 47.13833], [-111.853394, 47.138374], [-111.853787, 47.138457], [-111.854766, 47.138667], [-111.855826, 47.138884], [-111.856179, 47.13897], [-111.856565, 47.139029], [-111.856792, 47.139068], [-111.857173, 47.13911], [-111.857431, 47.139137], [-111.857676, 47.139157], [-111.858048, 47.139176], [-111.858338, 47.139177], [-111.858762, 47.139167], [-111.859155, 47.139148], [-111.85955, 47.139117], [-111.859805, 47.139089], [-111.860245, 47.139022], [-111.860491, 47.13898], [-111.860683, 47.138944], [-111.860973, 47.138885], [-111.861214, 47.138829], [-111.861479, 47.138758], [-111.861743, 47.138677], [-111.862069, 47.138562], [-111.862344, 47.138449], [-111.862687, 47.138297], [-111.862931, 47.138175], [-111.863114, 47.138087], [-111.863314, 47.137975], [-111.863599, 47.137807], [-111.863972, 47.13756], [-111.864261, 47.137341], [-111.864442, 47.137202], [-111.864674, 47.137005], [-111.864969, 47.136736], [-111.865258, 47.13642], [-111.867853, 47.13324], [-111.868102, 47.13296], [-111.868445, 47.132657], [-111.868909, 47.132347], [-111.869372, 47.132096], [-111.869776, 47.131938], [-111.870291, 47.131792], [-111.870754, 47.131687], [-111.871286, 47.131623], [-111.87181, 47.131605], [-111.872359, 47.131617], [-111.873389, 47.131705], [-111.875681, 47.131897], [-111.885054, 47.132785], [-111.886566, 47.132886], [-111.888607, 47.1331], [-111.888985, 47.133135], [-111.889766, 47.133217], [-111.890444, 47.133281], [-111.891225, 47.133322], [-111.891886, 47.133334], [-111.892598, 47.133334], [-111.893242, 47.133316], [-111.8938, 47.133305], [-111.894512, 47.133246], [-111.89513, 47.133194], [-111.89563, 47.133132], [-111.896274, 47.133044], [-111.89678, 47.132974], [-111.898531, 47.132636], [-111.899656, 47.132344], [-111.900711, 47.132022], [-111.901398, 47.131783], [-111.902445, 47.131403], [-111.904162, 47.130755], [-111.909034, 47.128927], [-111.913729, 47.127181], [-111.917251, 47.125878], [-111.92071, 47.1247], [-111.921698, 47.124251], [-111.922387, 47.123838], [-111.922806, 47.123526], [-111.924809, 47.121884], [-111.925527, 47.121467], [-111.926631, 47.121045], [-111.927545, 47.120838], [-111.928844, 47.120679], [-111.939954, 47.119561], [-111.940893, 47.119375], [-111.941491, 47.119193], [-111.94258, 47.118694], [-111.94328, 47.118205], [-111.943682, 47.117842], [-111.944167, 47.117216], [-111.94437, 47.116782], [-111.94452, 47.116283], [-111.944594, 47.115646], [-111.944471, 47.113184], [-111.944519, 47.112085], [-111.944699, 47.111164], [-111.9451, 47.109855], [-111.94519, 47.109613], [-111.946818, 47.104798], [-111.947185, 47.103915], [-111.94757, 47.103215], [-111.948705, 47.101708], [-111.95025, 47.099859], [-111.951568, 47.098237], [-111.952318, 47.097326], [-111.952866, 47.096646], [-111.954165, 47.094457], [-111.954536, 47.093996], [-111.955001, 47.093573], [-111.95538, 47.093283], [-111.95597, 47.092921], [-111.958022, 47.092174], [-111.958929, 47.091665], [-111.959563, 47.091145], [-111.959918, 47.090782], [-111.960199, 47.090406], [-111.960514, 47.089782], [-111.960679, 47.089121], [-111.961076, 47.083974], [-111.961218, 47.083113], [-111.961515, 47.082259], [-111.962027, 47.081188], [-111.962536, 47.080367], [-111.963148, 47.079581], [-111.964601, 47.078023], [-111.966718, 47.075826], [-111.967024, 47.075517], [-111.969094, 47.073375], [-111.970437, 47.07194], [-111.972154, 47.070032], [-111.973432, 47.068542], [-111.974103, 47.067809], [-111.974604, 47.067107], [-111.976616, 47.064731], [-111.98105, 47.059331], [-111.981811, 47.058552], [-111.982905, 47.057585], [-111.983864, 47.057007], [-111.985011, 47.056354], [-111.986314, 47.055712], [-111.986853, 47.055504], [-111.987827, 47.055224], [-111.990272, 47.054577], [-111.991627, 47.053954], [-111.992491, 47.053494], [-111.993301, 47.052977], [-111.994268, 47.05221], [-111.994901, 47.051592], [-112.00108, 47.045261], [-112.002131, 47.044014], [-112.002341, 47.043639], [-112.002459, 47.043291], [-112.00254, 47.04249], [-112.002551, 47.041633], [-112.002802, 47.040468], [-112.003031, 47.039996], [-112.003311, 47.039629], [-112.00408, 47.038901], [-112.004669, 47.038537], [-112.005381, 47.038191], [-112.006132, 47.03787], [-112.007591, 47.037508], [-112.008057, 47.037437], [-112.009475, 47.037313], [-112.012696, 47.037258], [-112.01489, 47.037245], [-112.016275, 47.037163], [-112.0192, 47.037033], [-112.020595, 47.036893], [-112.021841, 47.036661], [-112.023428, 47.036288], [-112.024543, 47.035923], [-112.025634, 47.03549], [-112.026621, 47.035004], [-112.027875, 47.034259], [-112.04368, 47.024236], [-112.044909, 47.023441], [-112.04544, 47.023036], [-112.04608, 47.022418], [-112.046528, 47.021863], [-112.046751, 47.021531], [-112.046895, 47.021189], [-112.048457, 47.017223], [-112.049379, 47.014861], [-112.04961, 47.014335], [-112.049878, 47.013819], [-112.050194, 47.013314], [-112.050556, 47.012813], [-112.050955, 47.01233], [-112.051351, 47.011873], [-112.051809, 47.011423], [-112.052303, 47.010991], [-112.05283, 47.010576], [-112.053387, 47.010182], [-112.053972, 47.009806], [-112.056998, 47.008006], [-112.058515, 47.007109], [-112.060333, 47.006031], [-112.061846, 47.00513], [-112.062472, 47.004869], [-112.062889, 47.004741], [-112.063358, 47.004645], [-112.063683, 47.004606], [-112.064074, 47.004561], [-112.064445, 47.004519], [-112.06488, 47.004576], [-112.06527, 47.004629], [-112.065565, 47.004697], [-112.065974, 47.004792], [-112.066808, 47.004991], [-112.06824, 47.005361], [-112.0686, 47.005467], [-112.069096, 47.005596], [-112.069473, 47.005688], [-112.069732, 47.005745], [-112.070266, 47.005855], [-112.070699, 47.005951], [-112.071253, 47.006048], [-112.071642, 47.006114], [-112.071928, 47.006158], [-112.072302, 47.006209], [-112.072735, 47.006263], [-112.072984, 47.006287], [-112.073367, 47.006318], [-112.073792, 47.006352], [-112.074219, 47.006372], [-112.074542, 47.006382], [-112.074829, 47.00639], [-112.075178, 47.006392], [-112.075603, 47.006393], [-112.076788, 47.006332], [-112.077271, 47.006281], [-112.077628, 47.006225], [-112.078026, 47.006153], [-112.078436, 47.006074], [-112.078755, 47.005996], [-112.079201, 47.005866], [-112.079533, 47.005747], [-112.079812, 47.00563], [-112.080082, 47.005495], [-112.080379, 47.005332], [-112.080635, 47.005164], [-112.080953, 47.004927], [-112.081049, 47.004826], [-112.081198, 47.004689], [-112.081316, 47.004562], [-112.081449, 47.004379], [-112.081568, 47.004191], [-112.081674, 47.003987], [-112.08174, 47.003858], [-112.081806, 47.003692], [-112.081884, 47.003438], [-112.08191, 47.003275], [-112.081934, 47.003066], [-112.08193, 47.002831], [-112.081896, 47.002597], [-112.081853, 47.002371], [-112.081798, 47.002194], [-112.081607, 47.00176], [-112.081184, 47.001198], [-112.079559, 46.99968], [-112.078016, 46.99838], [-112.07758, 46.997912], [-112.077288, 46.997532], [-112.076986, 46.99693], [-112.076889, 46.996514], [-112.076886, 46.996116], [-112.076984, 46.995478], [-112.07795, 46.992584], [-112.078047, 46.991994], [-112.078024, 46.991594], [-112.077935, 46.9912], [-112.077672, 46.990627], [-112.076129, 46.988425], [-112.075762, 46.987771], [-112.075646, 46.98742], [-112.075619, 46.987055], [-112.075663, 46.986679], [-112.075796, 46.986299], [-112.076008, 46.985921], [-112.076502, 46.98539], [-112.077181, 46.984932], [-112.081242, 46.982494], [-112.081853, 46.981972], [-112.082104, 46.981646], [-112.082346, 46.981245], [-112.082526, 46.98074], [-112.082567, 46.980266], [-112.082681, 46.977427], [-112.082826, 46.974499], [-112.083032, 46.973709], [-112.083438, 46.973098], [-112.083941, 46.972667], [-112.084536, 46.97225], [-112.093815, 46.965771], [-112.094034, 46.965596], [-112.094318, 46.965306], [-112.094501, 46.965085], [-112.094642, 46.964864], [-112.094785, 46.964575], [-112.094868, 46.964338], [-112.094926, 46.964081], [-112.094952, 46.963813], [-112.094963, 46.963562], [-112.094964, 46.963005], [-112.094945, 46.962147], [-112.095064, 46.961322], [-112.095315, 46.960775], [-112.095663, 46.960328], [-112.098599, 46.957746], [-112.098975, 46.957432], [-112.099726, 46.956946], [-112.100314, 46.956644], [-112.101038, 46.956326], [-112.103946, 46.955297], [-112.107802, 46.953955], [-112.108475, 46.953671], [-112.108901, 46.953445], [-112.109465, 46.953038], [-112.109979, 46.952469], [-112.110197, 46.952042], [-112.111502, 46.949682], [-112.112324, 46.948952], [-112.113184, 46.948533], [-112.114208, 46.948308], [-112.116111, 46.948021], [-112.117289, 46.947669], [-112.118334, 46.94705], [-112.119549, 46.946068], [-112.122402, 46.943642], [-112.123133, 46.943013], [-112.123553, 46.942583], [-112.12389, 46.942171], [-112.124619, 46.941266], [-112.125571, 46.939982], [-112.126015, 46.939377], [-112.1265, 46.938749], [-112.126751, 46.938397], [-112.126995, 46.938014], [-112.127231, 46.93766], [-112.127472, 46.93708], [-112.127553, 46.936521], [-112.127485, 46.935878], [-112.126037, 46.931011], [-112.125843, 46.930596], [-112.125614, 46.930288], [-112.125356, 46.930017], [-112.125, 46.92973], [-112.122981, 46.928549], [-112.122668, 46.928293], [-112.122315, 46.927871], [-112.122099, 46.927296], [-112.122093, 46.926792], [-112.122341, 46.926128], [-112.12333, 46.924835], [-112.123628, 46.924404], [-112.123835, 46.923877], [-112.123883, 46.923325], [-112.123775, 46.9228], [-112.123494, 46.922251], [-112.123242, 46.921939], [-112.123161, 46.921857], [-112.12174, 46.920823], [-112.121416, 46.920602], [-112.120977, 46.920179], [-112.120697, 46.919775], [-112.120503, 46.919327], [-112.120322, 46.918471], [-112.119667, 46.915666], [-112.11939, 46.915074], [-112.119062, 46.914644], [-112.118506, 46.91421], [-112.116708, 46.913328], [-112.116193, 46.912968], [-112.115472, 46.912187], [-112.115356, 46.911933], [-112.115279, 46.911728], [-112.115241, 46.911454], [-112.11523, 46.911175], [-112.115266, 46.910915], [-112.115368, 46.910602], [-112.115446, 46.910438], [-112.115662, 46.910084], [-112.11604, 46.909673], [-112.119395, 46.907257], [-112.119896, 46.906695], [-112.120633, 46.90538], [-112.120979, 46.904986], [-112.122506, 46.903673], [-112.12294, 46.903177], [-112.123172, 46.902727], [-112.123344, 46.902186], [-112.12337, 46.901665], [-112.12326, 46.90114], [-112.123004, 46.900542], [-112.122296, 46.899463], [-112.118791, 46.893932], [-112.118077, 46.892887], [-112.117488, 46.892253], [-112.11672, 46.891638], [-112.11608, 46.891253], [-112.114112, 46.89021], [-112.110716, 46.888379], [-112.110338, 46.888159], [-112.106096, 46.885885], [-112.101398, 46.88336], [-112.094609, 46.879651], [-112.0931, 46.878959], [-112.091311, 46.878288], [-112.089958, 46.877867], [-112.088521, 46.877511], [-112.069016, 46.872724], [-112.049279, 46.867857], [-112.047103, 46.867189], [-112.044993, 46.866382], [-112.043719, 46.865827], [-112.042541, 46.865241], [-112.040586, 46.864168], [-112.039263, 46.863298], [-112.037988, 46.862365], [-112.036738, 46.86133], [-112.014076, 46.842104], [-112.012788, 46.840941], [-112.011749, 46.839918], [-112.010445, 46.83844], [-112.009025, 46.83667], [-112.007922, 46.83499], [-112.007123, 46.833605], [-112.006361, 46.832073], [-112.005882, 46.830963], [-112.003109, 46.824179], [-112.002795, 46.823308], [-112.001559, 46.820272], [-112.001405, 46.819943], [-112.001005, 46.818846], [-112.000667, 46.817632], [-112.000578, 46.816809], [-112.000493, 46.815794], [-112.000516, 46.814928], [-112.000693, 46.813761], [-112.001162, 46.812127], [-112.001628, 46.811112], [-112.002462, 46.809713], [-112.003317, 46.808598], [-112.004049, 46.80782], [-112.005118, 46.806834], [-112.006592, 46.805739], [-112.028016, 46.792156], [-112.029741, 46.790912], [-112.030745, 46.79008], [-112.031484, 46.78938], [-112.032257, 46.788498], [-112.033266, 46.787176], [-112.033873, 46.786179], [-112.034356, 46.785153], [-112.03474, 46.784222], [-112.035041, 46.783106], [-112.035281, 46.78179], [-112.035332, 46.780429], [-112.035162, 46.778932], [-112.034994, 46.7781], [-112.034623, 46.77676], [-112.031439, 46.767593], [-112.030872, 46.766116], [-112.03058, 46.765566], [-112.0298, 46.76452], [-112.029051, 46.763776], [-112.027625, 46.762715], [-112.021142, 46.759474], [-112.019784, 46.758674], [-112.018427, 46.757701], [-112.017026, 46.756401], [-112.01646, 46.75581], [-112.015787, 46.754949], [-112.015034, 46.753726], [-112.014675, 46.752957], [-112.014369, 46.752178], [-112.014113, 46.751252], [-112.013978, 46.7503], [-112.013965, 46.748917], [-112.01407, 46.747974], [-112.014425, 46.74657], [-112.017111, 46.737855], [-112.017375, 46.736784], [-112.017607, 46.735355], [-112.017673, 46.734409], [-112.017685, 46.733581], [-112.017588, 46.732104], [-112.017413, 46.730961], [-112.016851, 46.728893], [-112.016052, 46.726997], [-112.015229, 46.725474], [-112.014031, 46.723297], [-112.013406, 46.721963], [-112.012932, 46.720654], [-112.012536, 46.719097], [-112.012339, 46.717599], [-112.012283, 46.716345], [-112.012185, 46.707222], [-112.012075, 46.70024], [-112.011602, 46.660701], [-112.011601, 46.660313], [-112.011436, 46.648193], [-112.011441, 46.648028], [-112.011427, 46.646569], [-112.011246, 46.631754], [-112.011146, 46.621062], [-112.011132, 46.619553], [-112.01109, 46.616805], [-112.011059, 46.614798], [-112.011048, 46.61406], [-112.011037, 46.613709], [-112.010993, 46.613319], [-112.010941, 46.613077], [-112.010877, 46.612674], [-112.010838, 46.612474], [-112.010746, 46.61207], [-112.01064, 46.611666], [-112.010587, 46.611464], [-112.010508, 46.611263], [-112.010314, 46.610728], [-112.010256, 46.610545], [-112.010198, 46.610369], [-112.009915, 46.609824], [-112.009739, 46.609444], [-112.009564, 46.609128], [-112.009295, 46.608718], [-112.006524, 46.603944], [-112.003906, 46.599455], [-112.002681, 46.597363], [-112.001205, 46.594784], [-112.0, 46.592799], [-111.999632, 46.592286], [-111.999301, 46.591861], [-111.998522, 46.590983], [-111.99828, 46.590699], [-111.997972, 46.590398], [-111.996867, 46.589396], [-111.996488, 46.589096], [-111.995735, 46.58854], [-111.988743, 46.583855], [-111.983795, 46.580551], [-111.98049, 46.578347], [-111.978312, 46.576892], [-111.976196, 46.575478], [-111.970612, 46.571744], [-111.969019, 46.570651], [-111.966637, 46.569071], [-111.957631, 46.563066], [-111.956867, 46.562459], [-111.956078, 46.56178], [-111.955528, 46.561278], [-111.95503, 46.560765], [-111.954464, 46.560133], [-111.953992, 46.559508], [-111.953623, 46.558994], [-111.953365, 46.558587], [-111.953022, 46.558003], [-111.95261, 46.557224], [-111.951443, 46.55468], [-111.946695, 46.544203], [-111.946304, 46.54331], [-111.945744, 46.542172], [-111.945185, 46.540831], [-111.944611, 46.539567], [-111.943999, 46.538252], [-111.943392, 46.536869], [-111.941186, 46.532081], [-111.940903, 46.53142], [-111.940559, 46.530629], [-111.940379, 46.530109], [-111.940293, 46.529684], [-111.940268, 46.529241], [-111.940319, 46.528857], [-111.940422, 46.528432], [-111.940568, 46.528025], [-111.94074, 46.527676], [-111.940971, 46.527322], [-111.941246, 46.527003], [-111.941667, 46.526619], [-111.943134, 46.525497], [-111.943589, 46.525125], [-111.94401, 46.524718], [-111.944344, 46.524346], [-111.944662, 46.523974], [-111.944902, 46.523625], [-111.945151, 46.52323], [-111.9454, 46.522775], [-111.945606, 46.522326], [-111.945744, 46.521966], [-111.945855, 46.521511], [-111.947984, 46.511742], [-111.948095, 46.51137], [-111.948361, 46.510661], [-111.949408, 46.508074], [-111.952344, 46.500837], [-111.952541, 46.500393], [-111.952825, 46.499944], [-111.953168, 46.49946], [-111.953494, 46.499105], [-111.953932, 46.498775], [-111.954764, 46.49819], [-111.958575, 46.495909], [-111.959245, 46.495501], [-111.960052, 46.495017], [-111.961021, 46.494414], [-111.961871, 46.493912], [-111.962729, 46.493415], [-111.963579, 46.492825], [-111.964025, 46.4925], [-111.964661, 46.492015], [-111.965124, 46.491625], [-111.965656, 46.491123], [-111.966369, 46.49042], [-111.96709, 46.489651], [-111.976325, 46.479522], [-111.976891, 46.478848], [-111.977312, 46.47834], [-111.977733, 46.477808], [-111.977973, 46.477465], [-111.978127, 46.477211], [-111.978282, 46.476974], [-111.97884, 46.475928], [-111.979217, 46.475042], [-111.980033, 46.473044], [-111.980271, 46.472374], [-111.980435, 46.471976], [-111.980677, 46.471349], [-111.980952, 46.470648], [-111.981239, 46.4699], [-111.981493, 46.46921], [-111.981736, 46.468592], [-111.981874, 46.468256], [-111.982316, 46.467018], [-111.982732, 46.465939], [-111.982851, 46.465572], [-111.983251, 46.464294], [-111.983315, 46.464025], [-111.983475, 46.463313], [-111.983818, 46.462054], [-111.98424, 46.460487], [-111.985346, 46.456259], [-111.985844, 46.45432], [-111.986814, 46.450701], [-111.986994, 46.449938], [-111.987251, 46.449004], [-111.987543, 46.4483], [-111.987809, 46.447709], [-111.988255, 46.446833], [-111.990024, 46.443882], [-111.990719, 46.44254], [-111.99283, 46.438169], [-111.995886, 46.431816], [-111.996143, 46.431165], [-111.996341, 46.430644], [-111.996598, 46.42984], [-111.996753, 46.429213], [-111.99689, 46.428609], [-111.997405, 46.425385], [-111.997642, 46.424314], [-111.997932, 46.423545], [-111.998107, 46.423114], [-111.99835, 46.422586], [-111.998575, 46.422164], [-111.998884, 46.421653], [-111.999228, 46.421145], [-111.999447, 46.420848], [-111.999923, 46.420267], [-112.000156, 46.42], [-112.000433, 46.41971], [-112.00089, 46.419258], [-112.001482, 46.418746], [-112.002113, 46.418226], [-112.00272, 46.417745], [-112.002961, 46.417554], [-112.003548, 46.417078], [-112.004211, 46.41654], [-112.004746, 46.416099], [-112.005461, 46.41553], [-112.005985, 46.415112], [-112.006394, 46.414775], [-112.006854, 46.414405], [-112.007245, 46.4141], [-112.00765, 46.413758], [-112.00797, 46.413501], [-112.008169, 46.413338], [-112.008593, 46.412997], [-112.009014, 46.412645], [-112.009385, 46.412341], [-112.009697, 46.412025], [-112.010255, 46.411528], [-112.010946, 46.410853], [-112.011431, 46.410352], [-112.011895, 46.409867], [-112.012165, 46.409569], [-112.012675, 46.408992], [-112.013067, 46.408517], [-112.013404, 46.408107], [-112.013911, 46.407447], [-112.014218, 46.407046], [-112.014492, 46.406653], [-112.015033, 46.405845], [-112.01524, 46.405542], [-112.015368, 46.405329], [-112.015741, 46.40471], [-112.015972, 46.404308], [-112.016318, 46.403688], [-112.016624, 46.403056], [-112.01703, 46.402204], [-112.017522, 46.401159], [-112.017917, 46.400311], [-112.019197, 46.397512], [-112.019961, 46.395938], [-112.020503, 46.394858], [-112.020846, 46.394173], [-112.021172, 46.393579], [-112.021321, 46.393351], [-112.021496, 46.393063], [-112.021714, 46.392713], [-112.021925, 46.392391], [-112.022307, 46.391799], [-112.022576, 46.391431], [-112.02269, 46.391255], [-112.022776, 46.391138], [-112.023072, 46.390745], [-112.023396, 46.390333], [-112.023636, 46.390016], [-112.02407, 46.389472], [-112.02447, 46.388962], [-112.025293, 46.387893], [-112.025518, 46.387587], [-112.025835, 46.387153], [-112.02604, 46.386874], [-112.026296, 46.386489], [-112.026502, 46.386192], [-112.026698, 46.385898], [-112.027204, 46.385069], [-112.027659, 46.384252], [-112.027743, 46.384088], [-112.0278, 46.383963], [-112.02782, 46.383925], [-112.027998, 46.383561], [-112.028106, 46.383379], [-112.028359, 46.382926], [-112.028737, 46.382022], [-112.029617, 46.379591], [-112.030115, 46.378271], [-112.030424, 46.377365], [-112.030767, 46.376572], [-112.031059, 46.375944], [-112.033059, 46.372077], [-112.033626, 46.37091], [-112.033917, 46.370342], [-112.034252, 46.369714], [-112.034492, 46.369293], [-112.03481, 46.368766], [-112.035136, 46.368298], [-112.035445, 46.367848], [-112.03584, 46.367386], [-112.036295, 46.366877], [-112.036879, 46.366249], [-112.043015, 46.359532], [-112.043436, 46.359053], [-112.043754, 46.358638], [-112.044011, 46.358283], [-112.044234, 46.357927], [-112.044475, 46.357501], [-112.044698, 46.357062], [-112.044852, 46.356719], [-112.044972, 46.356357], [-112.045093, 46.355972], [-112.045204, 46.355534], [-112.045281, 46.355173], [-112.04535, 46.354693], [-112.045384, 46.354284], [-112.045376, 46.353828], [-112.045359, 46.353206], [-112.045058, 46.350658], [-112.045032, 46.350072], [-112.045075, 46.349545], [-112.045178, 46.349154], [-112.045317, 46.348787], [-112.045481, 46.348449], [-112.045687, 46.348135], [-112.04591, 46.347851], [-112.046202, 46.347519], [-112.048562, 46.345392], [-112.048862, 46.34509], [-112.049146, 46.34477], [-112.04936, 46.344467], [-112.04954, 46.344153], [-112.049738, 46.343721], [-112.049849, 46.343241], [-112.049884, 46.343028], [-112.049892, 46.342755], [-112.049884, 46.3424], [-112.049806, 46.341931], [-112.049396, 46.34035], [-112.049218, 46.339673], [-112.049159, 46.33933], [-112.049143, 46.339002], [-112.049168, 46.338597], [-112.049229, 46.338284], [-112.049292, 46.338051], [-112.049341, 46.337839], [-112.049439, 46.337616], [-112.049559, 46.337404], [-112.0497, 46.337162], [-112.049936, 46.33687], [-112.05015, 46.336595], [-112.054836, 46.331763], [-112.055497, 46.33117], [-112.055875, 46.33085], [-112.056372, 46.33053], [-112.05687, 46.330263], [-112.057445, 46.330044], [-112.058132, 46.329789], [-112.060261, 46.329273], [-112.060879, 46.329137], [-112.061445, 46.328959], [-112.061994, 46.328752], [-112.062561, 46.32845], [-112.06317, 46.3281], [-112.063625, 46.327786], [-112.064054, 46.327371], [-112.064466, 46.326891], [-112.06523, 46.325741], [-112.065677, 46.325125], [-112.066028, 46.324674], [-112.06638, 46.324318], [-112.066904, 46.323868], [-112.067505, 46.323501], [-112.06826, 46.323109], [-112.069642, 46.322445], [-112.070509, 46.322007], [-112.071195, 46.321663], [-112.071728, 46.321378], [-112.07238, 46.320958], [-112.073067, 46.320519], [-112.073762, 46.320045], [-112.074277, 46.319582], [-112.074732, 46.319138], [-112.075169, 46.318705], [-112.075599, 46.318189], [-112.076053, 46.317626], [-112.076371, 46.317182], [-112.076732, 46.316589], [-112.077058, 46.315949], [-112.077616, 46.31452], [-112.077985, 46.313459], [-112.078268, 46.312795], [-112.078491, 46.31232], [-112.0788, 46.311751], [-112.079212, 46.31117], [-112.079718, 46.310435], [-112.0808, 46.308627], [-112.081126, 46.30801], [-112.081375, 46.307316], [-112.081512, 46.306724], [-112.081607, 46.306131], [-112.081735, 46.304998], [-112.081856, 46.304358], [-112.082079, 46.303688], [-112.082319, 46.303172], [-112.082594, 46.302692], [-112.082946, 46.302205], [-112.083306, 46.301814], [-112.083804, 46.301334], [-112.08447, 46.300831], [-112.085263, 46.300355], [-112.086027, 46.299964], [-112.089752, 46.298446], [-112.090979, 46.297859], [-112.091958, 46.297337], [-112.092799, 46.296756], [-112.093486, 46.296287], [-112.094104, 46.295694], [-112.09473, 46.295036], [-112.095159, 46.294538], [-112.09558, 46.293992], [-112.09594, 46.293381], [-112.096445, 46.292397], [-112.096685, 46.291614], [-112.09702, 46.290422], [-112.097449, 46.288406], [-112.097724, 46.287409], [-112.098136, 46.286312], [-112.099116, 46.284397], [-112.099274, 46.284063], [-112.10053, 46.281349], [-112.101118, 46.280084], [-112.102891, 46.276318], [-112.104027, 46.273935], [-112.104859, 46.272141], [-112.105342, 46.271125], [-112.106274, 46.269146], [-112.107087, 46.267404], [-112.111234, 46.258546], [-112.112659, 46.255466], [-112.114521, 46.251525], [-112.114976, 46.250676], [-112.115508, 46.249899], [-112.115937, 46.249329], [-112.116633, 46.248581], [-112.117748, 46.247554], [-112.11925, 46.246504], [-112.12022, 46.245934], [-112.120967, 46.245566], [-112.121954, 46.245133], [-112.124992, 46.244052], [-112.13288, 46.241298], [-112.133387, 46.24112], [-112.138622, 46.239291], [-112.145034, 46.237065], [-112.146141, 46.236745], [-112.147008, 46.236519], [-112.147806, 46.236394], [-112.148459, 46.236305], [-112.149265, 46.236246], [-112.150089, 46.236222], [-112.151042, 46.236246], [-112.151883, 46.236317], [-112.152699, 46.236436], [-112.153471, 46.236584], [-112.154474, 46.236837], [-112.15899, 46.238152], [-112.160595, 46.238543], [-112.162483, 46.238947], [-112.163367, 46.23922], [-112.164054, 46.239529], [-112.164698, 46.239897], [-112.165273, 46.24033], [-112.166844, 46.241642], [-112.167307, 46.241963], [-112.1685, 46.242669], [-112.169144, 46.243085], [-112.169659, 46.24356], [-112.170912, 46.244966], [-112.171367, 46.245364], [-112.172131, 46.245898], [-112.173204, 46.246522], [-112.174276, 46.247169], [-112.174817, 46.24762], [-112.175298, 46.24816], [-112.175555, 46.248587], [-112.17577, 46.248973], [-112.175924, 46.249424], [-112.176336, 46.250552], [-112.176517, 46.25092], [-112.17674, 46.251276], [-112.176997, 46.251626], [-112.177418, 46.252083], [-112.177787, 46.252344], [-112.178165, 46.252617], [-112.180775, 46.254129], [-112.181007, 46.254269], [-112.183097, 46.255454], [-112.183493, 46.255702], [-112.184164, 46.256171], [-112.184905, 46.256737], [-112.185365, 46.257141], [-112.185885, 46.257562], [-112.186185, 46.2578], [-112.186531, 46.258043], [-112.186972, 46.258275], [-112.187322, 46.258422], [-112.187774, 46.258598], [-112.188155, 46.258726], [-112.188842, 46.25893], [-112.190061, 46.259233], [-112.194417, 46.260296], [-112.194914, 46.260425], [-112.197467, 46.261049], [-112.198131, 46.261215], [-112.198816, 46.261348], [-112.200563, 46.261639], [-112.2012, 46.261735], [-112.201697, 46.261796], [-112.202216, 46.261831], [-112.202661, 46.261847], [-112.203293, 46.261844], [-112.203843, 46.26181], [-112.204643, 46.261713], [-112.205502, 46.261541], [-112.206283, 46.261328], [-112.207158, 46.260978], [-112.20773, 46.260725], [-112.208199, 46.260464], [-112.209872, 46.259361], [-112.210845, 46.258723], [-112.211437, 46.258407], [-112.21171, 46.258294], [-112.211974, 46.258207], [-112.212216, 46.258142], [-112.212463, 46.258092], [-112.212751, 46.258048], [-112.213051, 46.258024], [-112.213334, 46.258019], [-112.213692, 46.258035], [-112.213988, 46.258065], [-112.214247, 46.258108], [-112.214549, 46.258186], [-112.21472, 46.258241], [-112.214928, 46.258313], [-112.21526, 46.258456], [-112.215539, 46.258605], [-112.215859, 46.258826], [-112.216123, 46.259059], [-112.216344, 46.259307], [-112.216538, 46.259564], [-112.217304, 46.260578], [-112.217586, 46.260888], [-112.217887, 46.26118], [-112.218436, 46.261654], [-112.219097, 46.262058], [-112.219818, 46.262508], [-112.220179, 46.262823], [-112.220462, 46.263203], [-112.220625, 46.263654], [-112.220625, 46.264105], [-112.220513, 46.26455], [-112.220273, 46.264918], [-112.21993, 46.265238], [-112.219466, 46.265558], [-112.218514, 46.266039], [-112.218288, 46.266167], [-112.218079, 46.266291], [-112.217885, 46.266411], [-112.217737, 46.266539], [-112.217605, 46.266696], [-112.217501, 46.266818], [-112.217396, 46.266989], [-112.21734, 46.267123], [-112.217303, 46.267314], [-112.217283, 46.267445], [-112.217325, 46.267714], [-112.217476, 46.26824], [-112.217544, 46.268438], [-112.217592, 46.268538], [-112.217628, 46.268615], [-112.217724, 46.268751], [-112.217818, 46.268858], [-112.217936, 46.268959], [-112.21813, 46.269104], [-112.218353, 46.26922], [-112.218727, 46.26937], [-112.219166, 46.269489], [-112.219721, 46.269609], [-112.220202, 46.269698], [-112.220646, 46.269797], [-112.220996, 46.2699], [-112.22144, 46.27005], [-112.222711, 46.270631], [-112.223277, 46.270851], [-112.22399, 46.271017], [-112.224668, 46.271076], [-112.225371, 46.270993], [-112.227174, 46.270608], [-112.227989, 46.270507], [-112.22883, 46.270519], [-112.229611, 46.270726], [-112.232341, 46.271693], [-112.232993, 46.27186], [-112.233723, 46.271966], [-112.234744, 46.271978], [-112.239606, 46.271805], [-112.242182, 46.271693], [-112.246347, 46.271502], [-112.246967, 46.271459], [-112.247491, 46.271415], [-112.247911, 46.271379], [-112.248545, 46.271312], [-112.249143, 46.271217], [-112.250763, 46.270938], [-112.251919, 46.270715], [-112.254271, 46.270264], [-112.255138, 46.270086], [-112.255979, 46.269973], [-112.256923, 46.269854], [-112.257798, 46.269753], [-112.258871, 46.269706], [-112.259953, 46.269694], [-112.260408, 46.269688], [-112.260811, 46.269688], [-112.265927, 46.269838], [-112.266364, 46.269845], [-112.268516, 46.269903], [-112.26928, 46.269923], [-112.269822, 46.269932], [-112.270297, 46.269936], [-112.270632, 46.269932], [-112.271986, 46.269899], [-112.272496, 46.269882], [-112.272871, 46.269875], [-112.273201, 46.26988], [-112.273496, 46.269893], [-112.273848, 46.269921], [-112.274451, 46.269986], [-112.275304, 46.270084], [-112.275736, 46.270129], [-112.276214, 46.270171], [-112.276581, 46.270192], [-112.276954, 46.270201], [-112.277383, 46.270195], [-112.277783, 46.270179], [-112.278217, 46.270151], [-112.278636, 46.270112], [-112.27903, 46.270058], [-112.279521, 46.269977], [-112.280084, 46.269869], [-112.280575, 46.269771], [-112.281036, 46.269673], [-112.281492, 46.269558], [-112.281919, 46.269443], [-112.282407, 46.269304], [-112.28289, 46.269153], [-112.283292, 46.269013], [-112.283616, 46.26889], [-112.283914, 46.268764], [-112.284169, 46.268638], [-112.284394, 46.268516], [-112.284601, 46.268394], [-112.284775, 46.268275], [-112.284955, 46.268131], [-112.285087, 46.268013], [-112.285191, 46.267897], [-112.285277, 46.267793], [-112.285357, 46.267683], [-112.28543, 46.267542], [-112.285505, 46.267379], [-112.285561, 46.267208], [-112.285596, 46.267049], [-112.28561, 46.266897], [-112.285612, 46.266763], [-112.285599, 46.266613], [-112.285569, 46.266448], [-112.285505, 46.266261], [-112.28543, 46.266096], [-112.285194, 46.265664], [-112.285025, 46.265406], [-112.284866, 46.265152], [-112.284775, 46.264974], [-112.284703, 46.264813], [-112.284646, 46.264655], [-112.284614, 46.264507], [-112.284598, 46.264379], [-112.284598, 46.26421], [-112.284617, 46.264062], [-112.284665, 46.263899], [-112.284727, 46.263728], [-112.284759, 46.263669], [-112.284821, 46.263548], [-112.284909, 46.263418], [-112.284995, 46.263313], [-112.285121, 46.263177], [-112.285277, 46.263038], [-112.285408, 46.262932], [-112.285591, 46.262814], [-112.285765, 46.262716], [-112.285998, 46.262614], [-112.286237, 46.262523], [-112.286454, 46.262454], [-112.286722, 46.262397], [-112.286953, 46.262358], [-112.287205, 46.262334], [-112.287431, 46.262324], [-112.287599, 46.262324], [-112.287755, 46.262332], [-112.287908, 46.262343], [-112.28809, 46.262371], [-112.288289, 46.262408], [-112.288533, 46.262469], [-112.28878, 46.262545], [-112.289056, 46.262641], [-112.28941, 46.262779], [-112.292288, 46.263915], [-112.295423, 46.265141], [-112.295772, 46.265276], [-112.296799, 46.265681], [-112.297288, 46.265857], [-112.29766, 46.26597], [-112.297998, 46.266064], [-112.298326, 46.266135], [-112.298693, 46.266202], [-112.29902, 46.266252], [-112.299407, 46.266294], [-112.299973, 46.26635], [-112.301962, 46.266518], [-112.303677, 46.266665], [-112.30416, 46.266715], [-112.304799, 46.266799], [-112.305829, 46.266965], [-112.307302, 46.26725], [-112.307798, 46.267339], [-112.308222, 46.267413], [-112.308627, 46.267476], [-112.308997, 46.267518], [-112.309343, 46.267554], [-112.309617, 46.267578], [-112.309941, 46.267591], [-112.310258, 46.267602], [-112.310641, 46.267611], [-112.310985, 46.267613], [-112.311296, 46.267607], [-112.311658, 46.267591], [-112.312055, 46.267565], [-112.312425, 46.267535], [-112.312795, 46.267492], [-112.313219, 46.267435], [-112.313683, 46.267359], [-112.31408, 46.267281], [-112.314484, 46.267191], [-112.314867, 46.26709], [-112.315256, 46.26698], [-112.315717, 46.266837], [-112.316613, 46.266561], [-112.317018, 46.266437], [-112.317471, 46.266313], [-112.317997, 46.266179], [-112.318925, 46.265949], [-112.320151, 46.265632], [-112.321393, 46.265313], [-112.325427, 46.26428], [-112.326138, 46.264095], [-112.326859, 46.263917], [-112.327936, 46.263635], [-112.330428, 46.263002], [-112.333211, 46.262287], [-112.334007, 46.262079], [-112.335292, 46.261753], [-112.335686, 46.261652], [-112.336028, 46.261559], [-112.33637, 46.261454], [-112.33667, 46.261355], [-112.336988, 46.261243], [-112.337325, 46.261115], [-112.33768, 46.260971], [-112.338038, 46.260813], [-112.338363, 46.260662], [-112.338625, 46.26053], [-112.338933, 46.260366], [-112.340256, 46.259429], [-112.341003, 46.258829], [-112.341337, 46.25845], [-112.341646, 46.258088], [-112.342041, 46.257506], [-112.342264, 46.257085], [-112.342513, 46.256616], [-112.342736, 46.256052], [-112.343048, 46.25519], [-112.343088, 46.254628], [-112.343114, 46.25404], [-112.342997, 46.253333], [-112.342814, 46.252527], [-112.342556, 46.25188], [-112.341586, 46.249939], [-112.341209, 46.248971], [-112.340942, 46.248152], [-112.340797, 46.247393], [-112.340711, 46.246752], [-112.340698, 46.245956], [-112.340797, 46.24509], [-112.340934, 46.2443], [-112.341088, 46.243617], [-112.341363, 46.242745], [-112.343732, 46.236132], [-112.343955, 46.235443], [-112.344213, 46.23479], [-112.34459, 46.234178], [-112.345088, 46.233513], [-112.346384, 46.231827], [-112.346848, 46.231067], [-112.347062, 46.230402], [-112.347208, 46.229666], [-112.34738, 46.228247], [-112.347457, 46.227659], [-112.347706, 46.22662], [-112.348072, 46.225486], [-112.348787, 46.223592], [-112.349165, 46.22241], [-112.349268, 46.221798], [-112.349251, 46.221163], [-112.348908, 46.218621], [-112.348822, 46.218081], [-112.348822, 46.217392], [-112.348959, 46.216762], [-112.34944, 46.215301], [-112.349521, 46.214586], [-112.349491, 46.214013], [-112.349328, 46.213591], [-112.349028, 46.213021], [-112.348633, 46.212492], [-112.348169, 46.211999], [-112.34762, 46.211619], [-112.346856, 46.211156], [-112.345869, 46.21058], [-112.3452, 46.210051], [-112.344728, 46.209576], [-112.343234, 46.207925], [-112.342659, 46.207307], [-112.341921, 46.206677], [-112.340814, 46.205816], [-112.34041, 46.205465], [-112.340067, 46.205085], [-112.339802, 46.204693], [-112.339704, 46.204467], [-112.339636, 46.204269], [-112.339591, 46.204027], [-112.339612, 46.20382], [-112.339732, 46.203256], [-112.340033, 46.20262], [-112.340582, 46.201913], [-112.341621, 46.200885], [-112.342062, 46.200298], [-112.342242, 46.199944], [-112.342396, 46.199584], [-112.342597, 46.199091], [-112.342775, 46.198631], [-112.343062, 46.198034], [-112.343303, 46.197541], [-112.343792, 46.196904], [-112.344693, 46.196127], [-112.345387, 46.19542], [-112.345729, 46.194938], [-112.345917, 46.194643], [-112.346069, 46.194349], [-112.346166, 46.194045], [-112.346238, 46.193697], [-112.34623, 46.193103], [-112.345941, 46.190673], [-112.345878, 46.189902], [-112.345728, 46.189213], [-112.345709, 46.188344], [-112.345571, 46.187533], [-112.345558, 46.186912], [-112.345564, 46.185992], [-112.345749, 46.183453], [-112.346234, 46.177623], [-112.346347, 46.176821], [-112.346473, 46.176275], [-112.34671, 46.175728], [-112.347062, 46.17511], [-112.347483, 46.174486], [-112.34822, 46.173702], [-112.349208, 46.17291], [-112.3521, 46.171121], [-112.352701, 46.170843], [-112.353354, 46.170627], [-112.354238, 46.170443], [-112.355396, 46.170378], [-112.356246, 46.170461], [-112.358186, 46.170764], [-112.359293, 46.170788], [-112.360246, 46.170669], [-112.361216, 46.170425], [-112.362177, 46.170093], [-112.362941, 46.16973], [-112.363559, 46.169296], [-112.364125, 46.168743], [-112.364529, 46.168119], [-112.365267, 46.167103], [-112.365816, 46.166663], [-112.3664, 46.166336], [-112.367129, 46.166098], [-112.367868, 46.165967], [-112.368692, 46.165944], [-112.371773, 46.166039], [-112.372811, 46.166015], [-112.37367, 46.165902], [-112.374588, 46.165706], [-112.375592, 46.165379], [-112.376571, 46.164951], [-112.377318, 46.164529], [-112.378076, 46.163952], [-112.378262, 46.163762], [-112.378614, 46.163364], [-112.378914, 46.162965], [-112.379469, 46.162169], [-112.382055, 46.158245], [-112.384021, 46.155308], [-112.385566, 46.152959], [-112.387334, 46.150272], [-112.388458, 46.14862], [-112.389451, 46.147108], [-112.391789, 46.143594], [-112.398669, 46.133222], [-112.400972, 46.129712], [-112.4066, 46.121302], [-112.407393, 46.120004], [-112.408182, 46.118582], [-112.408541, 46.117899], [-112.409937, 46.114817], [-112.411055, 46.112333], [-112.412388, 46.109365], [-112.413655, 46.106653], [-112.414778, 46.10418], [-112.415206, 46.103314], [-112.415668, 46.102487], [-112.415895, 46.102106], [-112.416464, 46.101176], [-112.417083, 46.100254], [-112.418499, 46.098356], [-112.418915, 46.09769], [-112.419526, 46.096677], [-112.420233, 46.095398], [-112.422479, 46.091058], [-112.424336, 46.087469], [-112.429652, 46.0772], [-112.429822, 46.076884], [-112.431392, 46.07384], [-112.436257, 46.064391], [-112.436937, 46.063074], [-112.438079, 46.061044], [-112.438376, 46.060532], [-112.438666, 46.060066], [-112.43881, 46.05984], [-112.439098, 46.05943], [-112.43934, 46.059064], [-112.439532, 46.058774], [-112.440107, 46.058002], [-112.44038, 46.05765], [-112.441731, 46.056019], [-112.443485, 46.053949], [-112.447802, 46.048851], [-112.45155, 46.044489], [-112.452423, 46.043435], [-112.452928, 46.042858], [-112.453336, 46.042363], [-112.453672, 46.041989], [-112.454055, 46.041551], [-112.454342, 46.04125], [-112.454665, 46.040886], [-112.456067, 46.039558], [-112.457335, 46.038587], [-112.457987, 46.038059], [-112.458512, 46.037625], [-112.458842, 46.037329], [-112.459071, 46.03709], [-112.459314, 46.036842], [-112.459518, 46.03659], [-112.459678, 46.03639], [-112.4598, 46.036215], [-112.459891, 46.036045], [-112.460007, 46.03582], [-112.460114, 46.03551], [-112.460172, 46.035281], [-112.460249, 46.034999], [-112.460282, 46.034713], [-112.460289, 46.034622], [-112.460306, 46.034393], [-112.46034, 46.034001], [-112.460377, 46.033494], [-112.460788, 46.024225], [-112.460858, 46.022999], [-112.461034, 46.021707], [-112.461139, 46.019417], [-112.461174, 46.018182], [-112.461374, 46.013939], [-112.461433, 46.012326], [-112.461598, 46.009767], [-112.46173, 46.007706], [-112.461826, 46.006592], [-112.461968, 46.00602], [-112.462225, 46.00538], [-112.462565, 46.004722], [-112.463191, 46.004036], [-112.464072, 46.003225], [-112.465792, 46.001872], [-112.466856, 46.001037], [-112.469268, 45.999189], [-112.469946, 45.998682], [-112.470667, 45.998003], [-112.47113, 45.997502], [-112.47156, 45.996917], [-112.471963, 45.99622], [-112.473459, 45.993424], [-112.474051, 45.992464], [-112.474317, 45.992004], [-112.475276, 45.990233], [-112.475566, 45.989642], [-112.476695, 45.987673], [-112.477014, 45.987068], [-112.477395, 45.986399], [-112.477976, 45.985327], [-112.478243, 45.984818], [-112.478421, 45.98455], [-112.478851, 45.983744], [-112.479177, 45.983218], [-112.479374, 45.982981], [-112.479538, 45.982795], [-112.47971, 45.982636], [-112.479894, 45.982492], [-112.480132, 45.982326], [-112.48042, 45.982142], [-112.480713, 45.981993], [-112.481018, 45.981862], [-112.481235, 45.981784], [-112.481491, 45.981708], [-112.481819, 45.981612], [-112.482235, 45.981526], [-112.482576, 45.981485], [-112.482792, 45.981468], [-112.483106, 45.981448], [-112.484674, 45.981411], [-112.485533, 45.981393], [-112.486142, 45.981346], [-112.486888, 45.981343], [-112.488415, 45.981329], [-112.48942, 45.981323], [-112.489915, 45.981311], [-112.490321, 45.981291], [-112.491262, 45.981187], [-112.492077, 45.981092], [-112.492755, 45.980966], [-112.49327, 45.980829], [-112.494197, 45.980567], [-112.495345, 45.9802], [-112.496229, 45.979974], [-112.496927, 45.979831], [-112.497708, 45.979756], [-112.4986, 45.979744], [-112.499484, 45.979774], [-112.500257, 45.979863], [-112.501047, 45.980042], [-112.501432, 45.980146], [-112.501772, 45.980251], [-112.502162, 45.980391], [-112.502441, 45.980505], [-112.502715, 45.980622], [-112.503036, 45.980793], [-112.503323, 45.980946], [-112.503646, 45.981153], [-112.503934, 45.981351], [-112.504203, 45.981566], [-112.504427, 45.981757], [-112.504926, 45.982217], [-112.505529, 45.982793], [-112.505933, 45.983132], [-112.506153, 45.983296], [-112.506336, 45.983431], [-112.506571, 45.983586], [-112.506888, 45.983789], [-112.507196, 45.983956], [-112.507471, 45.984097], [-112.507799, 45.984272], [-112.508512, 45.98456], [-112.508794, 45.984651], [-112.50906, 45.984738], [-112.509415, 45.984842], [-112.509964, 45.984998], [-112.512836, 45.985714], [-112.514063, 45.986044], [-112.515749, 45.986501], [-112.516874, 45.986847], [-112.529602, 45.991803], [-112.530598, 45.992131], [-112.531516, 45.992333], [-112.5324, 45.992476], [-112.533044, 45.992536], [-112.533894, 45.992542], [-112.538675, 45.992548], [-112.539481, 45.992542], [-112.544571, 45.992548], [-112.54755, 45.9925], [-112.549472, 45.992518], [-112.552176, 45.992548], [-112.553189, 45.992614], [-112.554167, 45.992739], [-112.555008, 45.992942], [-112.559798, 45.994337], [-112.560613, 45.994587], [-112.561471, 45.994951], [-112.562235, 45.995404], [-112.562816, 45.995834], [-112.563071, 45.996064], [-112.563323, 45.996326], [-112.563586, 45.996638], [-112.563846, 45.996975], [-112.564136, 45.997384], [-112.564414, 45.997764], [-112.565162, 45.998934], [-112.565743, 45.999683], [-112.566655, 46.000955], [-112.567437, 46.001903], [-112.56802, 46.002517], [-112.568741, 46.003096], [-112.569419, 46.003525], [-112.570063, 46.003859], [-112.570964, 46.004318], [-112.571822, 46.004693], [-112.572895, 46.005009], [-112.573848, 46.00523], [-112.574775, 46.005379], [-112.575728, 46.005463], [-112.577187, 46.005504], [-112.577788, 46.005522], [-112.582056, 46.005676], [-112.594885, 46.006166], [-112.604584, 46.006524], [-112.605451, 46.006619], [-112.607283, 46.006843], [-112.610896, 46.007381], [-112.611152, 46.005948], [-112.61121, 46.005792], [-112.611238, 46.005609], [-112.608284, 46.004266], [-112.607739, 46.003921], [-112.607191, 46.003516], [-112.606953, 46.003377], [-112.606693, 46.003274], [-112.606342, 46.003193], [-112.606239, 46.00317], [-112.604638, 46.002827], [-112.603223, 46.002511], [-112.603052, 46.002473], [-112.60203, 46.002278], [-112.601516, 46.002219], [-112.601276, 46.00221], [-112.600883, 46.002212], [-112.600496, 46.00223], [-112.600404, 46.002208], [-112.60036, 46.002173], [-112.600327, 46.002117], [-112.600314, 46.002059], [-112.600333, 46.001927], [-112.600381, 46.001853], [-112.60049, 46.001777], [-112.600599, 46.001745], [-112.600713, 46.001737], [-112.600862, 46.001739], [-112.601544, 46.001798], [-112.601657, 46.001792], [-112.601804, 46.001767], [-112.601918, 46.001724], [-112.602008, 46.001673], [-112.602239, 46.001528], [-112.602389, 46.001412], [-112.602658, 46.001185], [-112.60307, 46.000822], [-112.603218, 46.000656], [-112.603405, 46.000474], [-112.60366, 46.000513], [-112.603842, 46.000532], [-112.604078, 46.000549], [-112.604254, 46.000547], [-112.605018, 46.00043], [-112.605491, 46.000395], [-112.605766, 46.000402], [-112.606076, 46.000466], [-112.606209, 46.00049], [-112.606364, 46.000494], [-112.606548, 46.000466], [-112.607005, 46.000359], [-112.607412, 46.000312], [-112.611416, 46.000299], [-112.611653, 46.000242], [-112.611812, 46.000145], [-112.611932, 45.999965], [-112.611906, 45.993731], [-112.611956, 45.990322], [-112.611963, 45.987384], [-112.611945, 45.986839], [-112.611983, 45.986517], [-112.612211, 45.985826], [-112.612974, 45.983191], [-112.613351, 45.982047], [-112.613508, 45.981723], [-112.613655, 45.98152], [-112.613973, 45.981284], [-112.61573, 45.980235], [-112.61642, 45.979923], [-112.617405, 45.979519], [-112.618068, 45.979213], [-112.618669, 45.978865], [-112.620246, 45.977619], [-112.620586, 45.977289], [-112.621106, 45.976592], [-112.622154, 45.975079], [-112.622235, 45.974699], [-112.622281, 45.973317], [-112.622078, 45.970234], [-112.619831, 45.970225], [-112.614288, 45.970203] ] } } ================================================ FILE: packages/turf-length/test/out/feature-collection.json ================================================ 33796 ================================================ FILE: packages/turf-length/test/out/multi-linestring.json ================================================ 15433 ================================================ FILE: packages/turf-length/test/out/multi-polygon.json ================================================ 27335 ================================================ FILE: packages/turf-length/test/out/polygon.json ================================================ 18364 ================================================ FILE: packages/turf-length/test/out/route1.json ================================================ 1068692 ================================================ FILE: packages/turf-length/test/out/route2.json ================================================ 2432897 ================================================ FILE: packages/turf-length/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { length } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("turf-length", (t) => { for (const { name, geojson } of fixtures) { const results = Math.round(length(geojson, { units: "feet" })); if (process.env.REGEN) writeJsonFileSync(directories.out + name + ".json", results); t.equal(results, loadJsonFileSync(directories.out + name + ".json"), name); } t.end(); }); ================================================ FILE: packages/turf-length/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-line-arc/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-line-arc/README.md ================================================ # @turf/line-arc ## lineArc Creates a circular arc, of a circle of the given radius and center point, between bearing1 and bearing2; 0 bearing is North of center point, positive clockwise. ### Parameters * `center` **[Coord][1]** center point * `radius` **[number][2]** radius of the circle * `bearing1` **[number][2]** angle, in decimal degrees, of the first radius of the arc * `bearing2` **[number][2]** angle, in decimal degrees, of the second radius of the arc * `options` **[Object][3]** Optional parameters (optional, default `{}`) * `options.steps` **[number][2]** number of steps (straight segments) that will constitute the arc (optional, default `64`) * `options.units` **Units** Supports all valid Turf [Units][4]. (optional, default `'kilometers'`) ### Examples ```javascript var center = turf.point([-75, 40]); var radius = 5; var bearing1 = 25; var bearing2 = 47; var arc = turf.lineArc(center, radius, bearing1, bearing2); //addToMap var addToMap = [center, arc] ``` Returns **[Feature][5]<[LineString][6]>** line arc [1]: https://tools.ietf.org/html/rfc7946#section-3.1.1 [2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [4]: https://turfjs.org/docs/api/types/Units [5]: https://tools.ietf.org/html/rfc7946#section-3.2 [6]: https://tools.ietf.org/html/rfc7946#section-3.1.4 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/line-arc ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-line-arc/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { lineArc } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); /** * Benchmark Results * * line-arc-full-360 x 38,879 ops/sec ±5.53% (78 runs sampled) * line-arc-greater-360 x 435,501 ops/sec ±13.18% (66 runs sampled) * line-arc1 x 249,765 ops/sec ±6.43% (69 runs sampled) * line-arc2 x 92,964 ops/sec ±6.81% (72 runs sampled) * line-arc3 x 47,342 ops/sec ±4.41% (74 runs sampled) * line-arc4 x 267,112 ops/sec ±5.95% (71 runs sampled) * line-arc5 x 35,259 ops/sec ±4.43% (69 runs sampled) * line-arc6 x 38,674 ops/sec ±4.86% (75 runs sampled) */ const suite = new Benchmark.Suite("turf-line-arc"); for (const { name, geojson } of fixtures) { const { radius, bearing1, bearing2, steps, units } = geojson.properties; suite.add(name, () => lineArc(geojson, radius, bearing1, bearing2, steps, units) ); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-line-arc/index.ts ================================================ import { Feature, LineString } from "geojson"; import { circle } from "@turf/circle"; import { destination } from "@turf/destination"; import { Coord, lineString, Units } from "@turf/helpers"; /** * Creates a circular arc, of a circle of the given radius and center point, between bearing1 and bearing2; * 0 bearing is North of center point, positive clockwise. * * @function * @param {Coord} center center point * @param {number} radius radius of the circle * @param {number} bearing1 angle, in decimal degrees, of the first radius of the arc * @param {number} bearing2 angle, in decimal degrees, of the second radius of the arc * @param {Object} [options={}] Optional parameters * @param {number} [options.steps=64] number of steps (straight segments) that will constitute the arc * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @returns {Feature} line arc * @example * var center = turf.point([-75, 40]); * var radius = 5; * var bearing1 = 25; * var bearing2 = 47; * * var arc = turf.lineArc(center, radius, bearing1, bearing2); * * //addToMap * var addToMap = [center, arc] */ function lineArc( center: Coord, radius: number, bearing1: number, bearing2: number, options: { steps?: number; units?: Units; } = {} ): Feature { // default params const steps = options.steps || 64; const angle1 = convertAngleTo360(bearing1); const angle2 = convertAngleTo360(bearing2); const properties = !Array.isArray(center) && center.type === "Feature" ? center.properties : {}; // handle angle parameters if (angle1 === angle2) { return lineString( circle(center, radius, options).geometry.coordinates[0], properties ); } const arcStartDegree = angle1; const arcEndDegree = angle1 < angle2 ? angle2 : angle2 + 360; let alpha = arcStartDegree; const coordinates = []; let i = 0; // How many degrees we'll swing around between each step. const arcStep = (arcEndDegree - arcStartDegree) / steps; // Add coords to the list, increasing the angle from our start bearing // (alpha) by arcStep degrees until we reach the end bearing. while (alpha <= arcEndDegree) { coordinates.push( destination(center, radius, alpha, options).geometry.coordinates ); i++; alpha = arcStartDegree + i * arcStep; } return lineString(coordinates, properties); } /** * Takes any angle in degrees * and returns a valid angle between 0-360 degrees * * @private * @param {number} alpha angle between -180-180 degrees * @returns {number} angle between 0-360 degrees */ function convertAngleTo360(alpha: number) { let beta = alpha % 360; if (beta < 0) { beta += 360; } return beta; } export { lineArc }; export default lineArc; ================================================ FILE: packages/turf-line-arc/package.json ================================================ { "name": "@turf/line-arc", "version": "7.3.4", "description": "Creates a circular arc, of a circle of the given radius and center point, between two bearings.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "gif" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/circle": "workspace:*", "@turf/destination": "workspace:*", "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-line-arc/test/in/line-arc-full-360.geojson ================================================ { "type": "Feature", "properties": { "radius": 5, "bearing1": 180, "bearing2": -180 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } } ================================================ FILE: packages/turf-line-arc/test/in/line-arc-greater-360.geojson ================================================ { "type": "Feature", "properties": { "radius": 5, "bearing1": 0, "bearing2": 380 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } } ================================================ FILE: packages/turf-line-arc/test/in/line-arc-one-step.geojson ================================================ { "type": "Feature", "properties": { "steps": 1, "radius": 500, "bearing1": 60, "bearing2": 65 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } } ================================================ FILE: packages/turf-line-arc/test/in/line-arc-zero-steps.geojson ================================================ { "type": "Feature", "properties": { "steps": 0, "radius": 500, "bearing1": 60, "bearing2": 65 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } } ================================================ FILE: packages/turf-line-arc/test/in/line-arc1.geojson ================================================ { "type": "Feature", "properties": { "radius": 5, "bearing1": 20, "bearing2": 60 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } } ================================================ FILE: packages/turf-line-arc/test/in/line-arc2.geojson ================================================ { "type": "Feature", "properties": { "radius": 5, "bearing1": 90, "bearing2": -135 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } } ================================================ FILE: packages/turf-line-arc/test/in/line-arc3.geojson ================================================ { "type": "Feature", "properties": { "radius": 5, "bearing1": 45, "bearing2": -45 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } } ================================================ FILE: packages/turf-line-arc/test/in/line-arc4.geojson ================================================ { "type": "Feature", "properties": { "radius": 5, "bearing1": -50, "bearing2": -15 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } } ================================================ FILE: packages/turf-line-arc/test/in/line-arc5.geojson ================================================ { "type": "Feature", "properties": { "radius": 5, "bearing1": -15, "bearing2": -50 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } } ================================================ FILE: packages/turf-line-arc/test/in/line-arc6.geojson ================================================ { "type": "Feature", "properties": { "radius": 5, "bearing1": 60, "bearing2": 20 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } } ================================================ FILE: packages/turf-line-arc/test/in/line-arc7.geojson ================================================ { "type": "Feature", "properties": { "radius": 500, "bearing1": 60, "bearing2": 65 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } } ================================================ FILE: packages/turf-line-arc/test/out/line-arc-full-360.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "radius": 5, "bearing1": 180, "bearing2": -180 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } }, { "type": "Feature", "properties": { "radius": 5, "bearing1": 180, "bearing2": -180 }, "geometry": { "type": "LineString", "coordinates": [ [11.343, 44.539966], [11.336816, 44.539749], [11.330693, 44.539101], [11.324687, 44.538028], [11.318859, 44.536541], [11.313264, 44.534653], [11.307955, 44.532383], [11.302985, 44.529752], [11.298401, 44.526787], [11.294247, 44.523516], [11.290563, 44.51997], [11.287385, 44.516183], [11.284743, 44.512193], [11.282663, 44.508037], [11.281164, 44.503756], [11.28026, 44.49939], [11.279962, 44.494983], [11.28027, 44.490575], [11.281182, 44.486211], [11.28269, 44.481931], [11.284777, 44.477777], [11.287425, 44.47379], [11.290608, 44.470006], [11.294294, 44.466464], [11.298449, 44.463196], [11.303033, 44.460234], [11.308, 44.457607], [11.313304, 44.45534], [11.318893, 44.453454], [11.324714, 44.451969], [11.330711, 44.450897], [11.336826, 44.45025], [11.343, 44.450034], [11.349174, 44.45025], [11.355289, 44.450897], [11.361286, 44.451969], [11.367107, 44.453454], [11.372696, 44.45534], [11.378, 44.457607], [11.382967, 44.460234], [11.387551, 44.463196], [11.391706, 44.466464], [11.395392, 44.470006], [11.398575, 44.47379], [11.401223, 44.477777], [11.40331, 44.481931], [11.404818, 44.486211], [11.40573, 44.490575], [11.406038, 44.494983], [11.40574, 44.49939], [11.404836, 44.503756], [11.403337, 44.508037], [11.401257, 44.512193], [11.398615, 44.516183], [11.395437, 44.51997], [11.391753, 44.523516], [11.387599, 44.526787], [11.383015, 44.529752], [11.378045, 44.532383], [11.372736, 44.534653], [11.367141, 44.536541], [11.361313, 44.538028], [11.355307, 44.539101], [11.349184, 44.539749], [11.343, 44.539966] ] } } ] } ================================================ FILE: packages/turf-line-arc/test/out/line-arc-greater-360.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "radius": 5, "bearing1": 0, "bearing2": 380 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } }, { "type": "Feature", "properties": { "radius": 5, "bearing1": 0, "bearing2": 380 }, "geometry": { "type": "LineString", "coordinates": [ [11.343, 44.539966], [11.343344, 44.539965], [11.343688, 44.539963], [11.344032, 44.53996], [11.344376, 44.539955], [11.34472, 44.539949], [11.345064, 44.539942], [11.345408, 44.539933], [11.345752, 44.539923], [11.346096, 44.539912], [11.346439, 44.539899], [11.346783, 44.539885], [11.347126, 44.53987], [11.347469, 44.539853], [11.347813, 44.539835], [11.348156, 44.539816], [11.348498, 44.539795], [11.348841, 44.539773], [11.349184, 44.539749], [11.349526, 44.539725], [11.349868, 44.539699], [11.35021, 44.539671], [11.350552, 44.539642], [11.350893, 44.539612], [11.351234, 44.539581], [11.351575, 44.539548], [11.351916, 44.539514], [11.352257, 44.539479], [11.352597, 44.539442], [11.352937, 44.539404], [11.353276, 44.539365], [11.353616, 44.539324], [11.353955, 44.539282], [11.354294, 44.539239], [11.354632, 44.539194], [11.35497, 44.539149], [11.355307, 44.539101], [11.355645, 44.539053], [11.355982, 44.539003], [11.356318, 44.538952], [11.356654, 44.538899], [11.35699, 44.538846], [11.357325, 44.53879], [11.35766, 44.538734], [11.357995, 44.538676], [11.358329, 44.538617], [11.358662, 44.538557], [11.358995, 44.538496], [11.359328, 44.538433], [11.35966, 44.538369], [11.359991, 44.538303], [11.360322, 44.538236], [11.360653, 44.538168], [11.360983, 44.538099], [11.361313, 44.538028], [11.361642, 44.537956], [11.36197, 44.537883], [11.362298, 44.537809], [11.362625, 44.537733], [11.362952, 44.537656], [11.363278, 44.537578], [11.363603, 44.537498], [11.363928, 44.537418], [11.364252, 44.537336], [11.364576, 44.537252] ] } } ] } ================================================ FILE: packages/turf-line-arc/test/out/line-arc-one-step.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "steps": 1, "radius": 500, "bearing1": 60, "bearing2": 65 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } }, { "type": "Feature", "properties": { "steps": 1, "radius": 500, "bearing1": 60, "bearing2": 65 }, "geometry": { "type": "LineString", "coordinates": [ [17.014763, 46.606416], [17.240322, 46.246701] ] } } ] } ================================================ FILE: packages/turf-line-arc/test/out/line-arc-zero-steps.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "steps": 0, "radius": 500, "bearing1": 60, "bearing2": 65 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } }, { "type": "Feature", "properties": { "steps": 0, "radius": 500, "bearing1": 60, "bearing2": 65 }, "geometry": { "type": "LineString", "coordinates": [ [17.014763, 46.606416], [17.018658, 46.600907], [17.022542, 46.595393], [17.026413, 46.589876], [17.030274, 46.584356], [17.034122, 46.578831], [17.037959, 46.573303], [17.041784, 46.567771], [17.045597, 46.562236], [17.049399, 46.556697], [17.053189, 46.551154], [17.056967, 46.545607], [17.060733, 46.540057], [17.064488, 46.534503], [17.068231, 46.528946], [17.071962, 46.523385], [17.075682, 46.51782], [17.079389, 46.512252], [17.083085, 46.50668], [17.086769, 46.501105], [17.090442, 46.495526], [17.094102, 46.489943], [17.097751, 46.484357], [17.101388, 46.478768], [17.105013, 46.473174], [17.108627, 46.467578], [17.112228, 46.461978], [17.115818, 46.456374], [17.119396, 46.450767], [17.122963, 46.445157], [17.126517, 46.439543], [17.13006, 46.433925], [17.133591, 46.428305], [17.13711, 46.42268], [17.140617, 46.417053], [17.144112, 46.411422], [17.147596, 46.405787], [17.151068, 46.40015], [17.154528, 46.394508], [17.157976, 46.388864], [17.161412, 46.383216], [17.164836, 46.377565], [17.168249, 46.371911], [17.171649, 46.366253], [17.175038, 46.360592], [17.178415, 46.354928], [17.18178, 46.34926], [17.185134, 46.34359], [17.188475, 46.337916], [17.191805, 46.332238], [17.195122, 46.326558], [17.198428, 46.320874], [17.201722, 46.315187], [17.205004, 46.309497], [17.208274, 46.303804], [17.211533, 46.298108], [17.214779, 46.292408], [17.218013, 46.286706], [17.221236, 46.281], [17.224447, 46.275291], [17.227646, 46.269579], [17.230832, 46.263864], [17.234007, 46.258146], [17.237171, 46.252425], [17.240322, 46.246701] ] } } ] } ================================================ FILE: packages/turf-line-arc/test/out/line-arc1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "radius": 5, "bearing1": 20, "bearing2": 60 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } }, { "type": "Feature", "properties": { "radius": 5, "bearing1": 20, "bearing2": 60 }, "geometry": { "type": "LineString", "coordinates": [ [11.364576, 44.537252], [11.365221, 44.537082], [11.365864, 44.536906], [11.366504, 44.536726], [11.367141, 44.536541], [11.367775, 44.53635], [11.368406, 44.536155], [11.369035, 44.535955], [11.36966, 44.53575], [11.370282, 44.53554], [11.3709, 44.535325], [11.371516, 44.535106], [11.372128, 44.534882], [11.372736, 44.534653], [11.373341, 44.534419], [11.373943, 44.53418], [11.37454, 44.533937], [11.375134, 44.53369], [11.375724, 44.533437], [11.37631, 44.53318], [11.376893, 44.532919], [11.377471, 44.532653], [11.378045, 44.532383], [11.378615, 44.532108], [11.37918, 44.531828], [11.379741, 44.531545], [11.380298, 44.531257], [11.380851, 44.530964], [11.381399, 44.530668], [11.381942, 44.530367], [11.382481, 44.530062], [11.383015, 44.529752], [11.383544, 44.529439], [11.384069, 44.529121], [11.384588, 44.5288], [11.385103, 44.528474], [11.385612, 44.528145], [11.386117, 44.527811], [11.386616, 44.527474], [11.38711, 44.527132], [11.387599, 44.526787], [11.388083, 44.526438], [11.388561, 44.526086], [11.389034, 44.525729], [11.389501, 44.525369], [11.389963, 44.525006], [11.390419, 44.524638], [11.390869, 44.524268], [11.391314, 44.523893], [11.391753, 44.523516], [11.392186, 44.523135], [11.392614, 44.52275], [11.393035, 44.522363], [11.393451, 44.521972], [11.39386, 44.521578], [11.394264, 44.52118], [11.394661, 44.52078], [11.395052, 44.520376], [11.395437, 44.51997], [11.395816, 44.51956], [11.396188, 44.519148], [11.396554, 44.518733], [11.396914, 44.518314], [11.397267, 44.517894], [11.397614, 44.51747] ] } } ] } ================================================ FILE: packages/turf-line-arc/test/out/line-arc2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "radius": 5, "bearing1": 90, "bearing2": -135 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } }, { "type": "Feature", "properties": { "radius": 5, "bearing1": 90, "bearing2": -135 }, "geometry": { "type": "LineString", "coordinates": [ [11.406038, 44.494983], [11.405994, 44.493328], [11.405864, 44.491675], [11.405649, 44.490027], [11.405349, 44.488385], [11.404965, 44.486753], [11.404496, 44.485131], [11.403945, 44.483524], [11.40331, 44.481931], [11.402595, 44.480357], [11.401798, 44.478802], [11.400922, 44.477269], [11.399967, 44.47576], [11.398936, 44.474278], [11.397828, 44.472823], [11.396646, 44.471399], [11.395392, 44.470006], [11.394067, 44.468648], [11.392673, 44.467325], [11.391211, 44.466039], [11.389684, 44.464793], [11.388094, 44.463588], [11.386443, 44.462425], [11.384734, 44.461307], [11.382967, 44.460234], [11.381147, 44.459208], [11.379275, 44.458231], [11.377354, 44.457303], [11.375387, 44.456427], [11.373376, 44.455603], [11.371323, 44.454832], [11.369233, 44.454115], [11.367107, 44.453454], [11.364948, 44.452849], [11.36276, 44.452302], [11.360544, 44.451812], [11.358306, 44.451381], [11.356046, 44.451008], [11.353769, 44.450695], [11.351477, 44.450443], [11.349174, 44.45025], [11.346863, 44.450119], [11.344546, 44.450048], [11.342227, 44.450037], [11.339909, 44.450088], [11.337596, 44.4502], [11.335289, 44.450372], [11.332993, 44.450605], [11.330711, 44.450897], [11.328445, 44.45125], [11.326199, 44.451662], [11.323976, 44.452132], [11.321778, 44.452661], [11.31961, 44.453246], [11.317472, 44.453889], [11.315369, 44.454587], [11.313304, 44.45534], [11.311279, 44.456146], [11.309297, 44.457005], [11.30736, 44.457916], [11.305471, 44.458877], [11.303634, 44.459887], [11.301849, 44.460944], [11.30012, 44.462047], [11.298449, 44.463196] ] } } ] } ================================================ FILE: packages/turf-line-arc/test/out/line-arc3.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "radius": 5, "bearing1": 45, "bearing2": -45 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } }, { "type": "Feature", "properties": { "radius": 5, "bearing1": 45, "bearing2": -45 }, "geometry": { "type": "LineString", "coordinates": [ [11.387599, 44.526787], [11.390757, 44.524361], [11.393656, 44.521775], [11.39628, 44.519044], [11.398615, 44.516183], [11.400648, 44.513208], [11.402369, 44.510133], [11.403767, 44.506977], [11.404836, 44.503756], [11.40557, 44.500487], [11.405965, 44.497189], [11.406018, 44.493879], [11.40573, 44.490575], [11.405102, 44.487296], [11.404138, 44.484058], [11.402842, 44.480879], [11.401223, 44.477777], [11.399288, 44.474769], [11.397048, 44.47187], [11.394516, 44.469097], [11.391706, 44.466464], [11.388631, 44.463985], [11.38531, 44.461675], [11.38176, 44.459545], [11.378, 44.457607], [11.374051, 44.455871], [11.369934, 44.454348], [11.365671, 44.453045], [11.361286, 44.451969], [11.356801, 44.451126], [11.352243, 44.45052], [11.347634, 44.450156], [11.343, 44.450034], [11.338366, 44.450156], [11.333757, 44.45052], [11.329199, 44.451126], [11.324714, 44.451969], [11.320329, 44.453045], [11.316066, 44.454348], [11.311949, 44.455871], [11.308, 44.457607], [11.30424, 44.459545], [11.30069, 44.461675], [11.297369, 44.463985], [11.294294, 44.466464], [11.291484, 44.469097], [11.288952, 44.47187], [11.286712, 44.474769], [11.284777, 44.477777], [11.283158, 44.480879], [11.281862, 44.484058], [11.280898, 44.487296], [11.28027, 44.490575], [11.279982, 44.493879], [11.280035, 44.497189], [11.28043, 44.500487], [11.281164, 44.503756], [11.282233, 44.506977], [11.283631, 44.510133], [11.285352, 44.513208], [11.287385, 44.516183], [11.28972, 44.519044], [11.292344, 44.521775], [11.295243, 44.524361], [11.298401, 44.526787] ] } } ] } ================================================ FILE: packages/turf-line-arc/test/out/line-arc4.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "radius": 5, "bearing1": -50, "bearing2": -15 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } }, { "type": "Feature", "properties": { "radius": 5, "bearing1": -50, "bearing2": -15 }, "geometry": { "type": "LineString", "coordinates": [ [11.294686, 44.523893], [11.295075, 44.524221], [11.295468, 44.524546], [11.295866, 44.524868], [11.296267, 44.525188], [11.296674, 44.525505], [11.297084, 44.525819], [11.297499, 44.52613], [11.297917, 44.526438], [11.29834, 44.526744], [11.298767, 44.527046], [11.299198, 44.527346], [11.299633, 44.527643], [11.300072, 44.527937], [11.300515, 44.528227], [11.300961, 44.528515], [11.301412, 44.5288], [11.301866, 44.529081], [11.302324, 44.52936], [11.302786, 44.529635], [11.303251, 44.529907], [11.303721, 44.530176], [11.304193, 44.530442], [11.304669, 44.530705], [11.305149, 44.530964], [11.305632, 44.53122], [11.306119, 44.531473], [11.306609, 44.531722], [11.307102, 44.531969], [11.307599, 44.532211], [11.308098, 44.532451], [11.308601, 44.532686], [11.309107, 44.532919], [11.309617, 44.533148], [11.310129, 44.533374], [11.310644, 44.533596], [11.311162, 44.533814], [11.311683, 44.534029], [11.312207, 44.534241], [11.312734, 44.534448], [11.313264, 44.534653], [11.313796, 44.534853], [11.314331, 44.53505], [11.314868, 44.535244], [11.315408, 44.535433], [11.315951, 44.535619], [11.316496, 44.535802], [11.317044, 44.53598], [11.317594, 44.536155], [11.318146, 44.536326], [11.3187, 44.536494], [11.319257, 44.536657], [11.319816, 44.536817], [11.320377, 44.536973], [11.32094, 44.537125], [11.321505, 44.537273], [11.322072, 44.537418], [11.322641, 44.537558], [11.323212, 44.537695], [11.323784, 44.537828], [11.324358, 44.537956], [11.324934, 44.538081], [11.325512, 44.538202], [11.326091, 44.53832], [11.326672, 44.538433] ] } } ] } ================================================ FILE: packages/turf-line-arc/test/out/line-arc5.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "radius": 5, "bearing1": -15, "bearing2": -50 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } }, { "type": "Feature", "properties": { "radius": 5, "bearing1": -15, "bearing2": -50 }, "geometry": { "type": "LineString", "coordinates": [ [11.326672, 44.538433], [11.33213, 44.539293], [11.337673, 44.539805], [11.343258, 44.539966], [11.348841, 44.539773], [11.354378, 44.539228], [11.359826, 44.538336], [11.365141, 44.537103], [11.370282, 44.53554], [11.375208, 44.533658], [11.379881, 44.531473], [11.384264, 44.529001], [11.388323, 44.526262], [11.392025, 44.523278], [11.395341, 44.520072], [11.398247, 44.516669], [11.400718, 44.513095], [11.402735, 44.50938], [11.404284, 44.505552], [11.405351, 44.501642], [11.405928, 44.497679], [11.406011, 44.493695], [11.4056, 44.489722], [11.404697, 44.48579], [11.40331, 44.481931], [11.401451, 44.478175], [11.399132, 44.47455], [11.396374, 44.471086], [11.393197, 44.46781], [11.389626, 44.464748], [11.385691, 44.461923], [11.38142, 44.459357], [11.376848, 44.457071], [11.372012, 44.455083], [11.366948, 44.453408], [11.361696, 44.452059], [11.356298, 44.451047], [11.350796, 44.450379], [11.345233, 44.450062], [11.339652, 44.450097], [11.334097, 44.450485], [11.328613, 44.451222], [11.32324, 44.452302], [11.318023, 44.453717], [11.313001, 44.455456], [11.308215, 44.457505], [11.303701, 44.459848], [11.299495, 44.462468], [11.295629, 44.465342], [11.292135, 44.468449], [11.28904, 44.471765], [11.286368, 44.475263], [11.28414, 44.478916], [11.282374, 44.482696], [11.281083, 44.486572], [11.280278, 44.490514], [11.279966, 44.494492], [11.280148, 44.498474], [11.280824, 44.502429], [11.281988, 44.506325], [11.283631, 44.510133], [11.285741, 44.513822], [11.2883, 44.517364], [11.29129, 44.52073], [11.294686, 44.523893] ] } } ] } ================================================ FILE: packages/turf-line-arc/test/out/line-arc6.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "radius": 5, "bearing1": 60, "bearing2": 20 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } }, { "type": "Feature", "properties": { "radius": 5, "bearing1": 60, "bearing2": 20 }, "geometry": { "type": "LineString", "coordinates": [ [11.397614, 44.51747], [11.400151, 44.513989], [11.402252, 44.510364], [11.403903, 44.506622], [11.405089, 44.502791], [11.405803, 44.498902], [11.406038, 44.494983], [11.405794, 44.491064], [11.405072, 44.487175], [11.403878, 44.483346], [11.402221, 44.479605], [11.400114, 44.475982], [11.397572, 44.472504], [11.394615, 44.469197], [11.391266, 44.466086], [11.387551, 44.463196], [11.383496, 44.460547], [11.379135, 44.45816], [11.374498, 44.456054], [11.369623, 44.454244], [11.364545, 44.452744], [11.359303, 44.451565], [11.353938, 44.450717], [11.34849, 44.450205], [11.343, 44.450034], [11.33751, 44.450205], [11.332062, 44.450717], [11.326697, 44.451565], [11.321455, 44.452744], [11.316377, 44.454244], [11.311502, 44.456054], [11.306865, 44.45816], [11.302504, 44.460547], [11.298449, 44.463196], [11.294734, 44.466086], [11.291385, 44.469197], [11.288428, 44.472504], [11.285886, 44.475982], [11.283779, 44.479605], [11.282122, 44.483346], [11.280928, 44.487175], [11.280206, 44.491064], [11.279962, 44.494983], [11.280197, 44.498902], [11.280911, 44.502791], [11.282097, 44.506622], [11.283748, 44.510364], [11.285849, 44.513989], [11.288386, 44.51747], [11.291339, 44.52078], [11.294686, 44.523893], [11.298401, 44.526787], [11.302456, 44.529439], [11.30682, 44.531828], [11.31146, 44.533937], [11.31634, 44.53575], [11.321424, 44.537252], [11.326672, 44.538433], [11.332045, 44.539282], [11.337502, 44.539795], [11.343, 44.539966], [11.348498, 44.539795], [11.353955, 44.539282], [11.359328, 44.538433], [11.364576, 44.537252] ] } } ] } ================================================ FILE: packages/turf-line-arc/test/out/line-arc7.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "radius": 500, "bearing1": 60, "bearing2": 65 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } }, { "type": "Feature", "properties": { "radius": 500, "bearing1": 60, "bearing2": 65 }, "geometry": { "type": "LineString", "coordinates": [ [17.014763, 46.606416], [17.018658, 46.600907], [17.022542, 46.595393], [17.026413, 46.589876], [17.030274, 46.584356], [17.034122, 46.578831], [17.037959, 46.573303], [17.041784, 46.567771], [17.045597, 46.562236], [17.049399, 46.556697], [17.053189, 46.551154], [17.056967, 46.545607], [17.060733, 46.540057], [17.064488, 46.534503], [17.068231, 46.528946], [17.071962, 46.523385], [17.075682, 46.51782], [17.079389, 46.512252], [17.083085, 46.50668], [17.086769, 46.501105], [17.090442, 46.495526], [17.094102, 46.489943], [17.097751, 46.484357], [17.101388, 46.478768], [17.105013, 46.473174], [17.108627, 46.467578], [17.112228, 46.461978], [17.115818, 46.456374], [17.119396, 46.450767], [17.122963, 46.445157], [17.126517, 46.439543], [17.13006, 46.433925], [17.133591, 46.428305], [17.13711, 46.42268], [17.140617, 46.417053], [17.144112, 46.411422], [17.147596, 46.405787], [17.151068, 46.40015], [17.154528, 46.394508], [17.157976, 46.388864], [17.161412, 46.383216], [17.164836, 46.377565], [17.168249, 46.371911], [17.171649, 46.366253], [17.175038, 46.360592], [17.178415, 46.354928], [17.18178, 46.34926], [17.185134, 46.34359], [17.188475, 46.337916], [17.191805, 46.332238], [17.195122, 46.326558], [17.198428, 46.320874], [17.201722, 46.315187], [17.205004, 46.309497], [17.208274, 46.303804], [17.211533, 46.298108], [17.214779, 46.292408], [17.218013, 46.286706], [17.221236, 46.281], [17.224447, 46.275291], [17.227646, 46.269579], [17.230832, 46.263864], [17.234007, 46.258146], [17.237171, 46.252425], [17.240322, 46.246701] ] } } ] } ================================================ FILE: packages/turf-line-arc/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { truncate } from "@turf/truncate"; import { featureCollection, point } from "@turf/helpers"; import { lineArc } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("turf-line-arc", (t) => { for (const { filename, name, geojson } of fixtures) { const { radius, bearing1, bearing2, steps, units } = geojson.properties; const arc = truncate( lineArc(geojson, radius, bearing1, bearing2, { steps, units }) ); const results = featureCollection([geojson, arc]); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEquals(results, loadJsonFileSync(directories.out + filename), name); // Check the resulting arc geometry has the expected number of points. // undefined or 0 steps should default to 64 + 1 points, 1 to 1 + 1, // 2 to 2 + 1, ... const expectedPoints = geojson.properties?.steps ? geojson.properties?.steps + 1 : 64 + 1; t.equals( arc.geometry.coordinates.length, expectedPoints, `${name} number of points in arc` ); } t.end(); }); test("turf-line-arc #2524", (t) => { // Just test to make sure we're getting the correct number of points in the // resultant arc i.e. steps + 1 const options = { steps: 10, units: "kilometers" }; const center = point([115.959444, -31.945]); const startAngle = 223; const endAngle = 277; const radius = 130; const arc = lineArc(center, radius, startAngle, endAngle, options); t.equals(arc.geometry.coordinates.length, 10 + 1, "Number of points in arc"); t.end(); }); test("turf-line-arc #2446", (t) => { // Test to make sure we're not getting an error, as described in // https://github.com/Turfjs/turf/issues/2446 const options = { steps: 15, units: "kilometers" }; const center = point([115.959444, -31.945]); const startAngle = 253; const endAngle = 277; const radius = 119.7195; t.doesNotThrow(() => lineArc(center, radius * 1.852, startAngle, endAngle, options) ); t.end(); }); ================================================ FILE: packages/turf-line-arc/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-line-arc/types.ts ================================================ import { point } from "@turf/helpers"; import { lineArc } from "./index.js"; const center = point([-75.343, 39.984]); const bearing1 = 10; const bearing2 = -30; const radius = 5; const steps = 10; const units = "miles"; lineArc(center, radius, bearing1, bearing2); lineArc(center, radius, bearing1, bearing2, { steps }); lineArc(center, radius, bearing1, bearing2, { steps, units }); ================================================ FILE: packages/turf-line-chunk/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-line-chunk/README.md ================================================ # @turf/line-chunk ## lineChunk Divides a [LineString][1] into chunks of a specified length. If the line is shorter than the segment length then the original line is returned. ### Parameters * `geojson` **([FeatureCollection][2] | [Geometry][3] | [Feature][4]<([LineString][1] | [MultiLineString][5])>)** the lines to split * `segmentLength` **[number][6]** how long to make each segment * `options` **[Object][7]** Optional parameters (optional, default `{}`) * `options.units` **Units** Supports all valid Turf [Units][8] (optional, default `'kilometers'`) * `options.reverse` **[boolean][9]** reverses coordinates to start the first chunked segment at the end (optional, default `false`) ### Examples ```javascript var line = turf.lineString([[-95, 40], [-93, 45], [-85, 50]]); var chunk = turf.lineChunk(line, 15, {units: 'miles'}); //addToMap var addToMap = [chunk]; ``` Returns **[FeatureCollection][2]<[LineString][1]>** collection of line segments [1]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [2]: https://tools.ietf.org/html/rfc7946#section-3.3 [3]: https://tools.ietf.org/html/rfc7946#section-3.1 [4]: https://tools.ietf.org/html/rfc7946#section-3.2 [5]: https://tools.ietf.org/html/rfc7946#section-3.1.5 [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [8]: https://turfjs.org/docs/api/types/Units [9]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/line-chunk ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-line-chunk/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { lineChunk } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, geojson: loadJsonFileSync(directories.in + filename) }; }); /** * Benchmark Results * * FeatureCollection.geojson x 54,653 ops/sec ±1.91% (88 runs sampled) * GeometryCollection.geojson x 53,065 ops/sec ±2.88% (83 runs sampled) * LineString.geojson x 113,926 ops/sec ±1.05% (90 runs sampled) * MultiLineString.geojson x 123,430 ops/sec ±1.57% (89 runs sampled) */ const suite = new Benchmark.Suite("turf-line-chunk"); fixtures.forEach(({ filename, geojson }) => { suite.add(filename, () => lineChunk(geojson, 5, "miles")); }); suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-line-chunk/index.ts ================================================ import { length } from "@turf/length"; import { lineSliceAlong } from "@turf/line-slice-along"; import { flattenEach } from "@turf/meta"; import { featureCollection, isObject, Units } from "@turf/helpers"; import { Feature, FeatureCollection, GeometryCollection, LineString, MultiLineString, } from "geojson"; /** * Divides a {@link LineString} into chunks of a specified length. * If the line is shorter than the segment length then the original line is returned. * * @function * @param {FeatureCollection|Geometry|Feature} geojson the lines to split * @param {number} segmentLength how long to make each segment * @param {Object} [options={}] Optional parameters * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @param {boolean} [options.reverse=false] reverses coordinates to start the first chunked segment at the end * @returns {FeatureCollection} collection of line segments * @example * var line = turf.lineString([[-95, 40], [-93, 45], [-85, 50]]); * * var chunk = turf.lineChunk(line, 15, {units: 'miles'}); * * //addToMap * var addToMap = [chunk]; */ function lineChunk( geojson: | Feature | FeatureCollection | T | GeometryCollection | Feature, segmentLength: number, options: { units?: Units; reverse?: boolean; } = {} ): FeatureCollection { // Optional parameters if (!isObject(options)) throw new Error("options is invalid"); const { units = "kilometers", reverse = false } = options; // Validation if (!geojson) throw new Error("geojson is required"); if (segmentLength <= 0) { throw new Error("segmentLength must be greater than 0"); } // Container const results: Feature[] = []; // Flatten each feature to simple LineString flattenEach(geojson, (feature: Feature) => { // reverses coordinates to start the first chunked segment at the end if (reverse) { feature.geometry.coordinates = feature.geometry.coordinates.reverse(); } sliceLineSegments( feature as Feature, segmentLength, units, (segment) => { results.push(segment); } ); }); return featureCollection(results); } /** * Slice Line Segments * * @private * @param {Feature} line GeoJSON LineString * @param {number} segmentLength how long to make each segment * @param {Units}[units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @param {Function} callback iterate over sliced line segments * @returns {void} */ function sliceLineSegments( line: Feature, segmentLength: number, units: Units, callback: (feature: Feature) => void ): void { var lineLength = length(line, { units: units }); // If the line is shorter than the segment length then the orginal line is returned. if (lineLength <= segmentLength) { return callback(line); } var numberOfSegments = lineLength / segmentLength; // If numberOfSegments is integer, no need to plus 1 if (!Number.isInteger(numberOfSegments)) { numberOfSegments = Math.floor(numberOfSegments) + 1; } for (var i = 0; i < numberOfSegments; i++) { var outline = lineSliceAlong( line, segmentLength * i, segmentLength * (i + 1), { units: units } ); callback(outline); } } export { lineChunk }; export default lineChunk; ================================================ FILE: packages/turf-line-chunk/package.json ================================================ { "name": "@turf/line-chunk", "version": "7.3.4", "description": "Divides a LineString into chunks of a specified length.", "author": "Turf Authors", "contributors": [ "Tim Channell <@tcql>", "Rowan Winsemius <@rowanwins>", "Denis Carriere <@DenisCarriere>", "Daniel Pulido <@dpmcmlxxvi>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "gis", "geojson", "linestring", "line segment" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/length": "workspace:*", "@turf/line-slice-along": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-line-chunk/test/in/FeatureCollection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-86.28524780273438, 40.250184183819854], [-85.98587036132812, 40.17887331434696], [-85.97213745117188, 40.08857859823707], [-85.77987670898438, 40.15578608609647] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-86.29348754882811, 40.17362690655496], [-86.23580932617188, 39.891826241725596], [-85.93643188476562, 39.95606977009003] ] } } ] } ================================================ FILE: packages/turf-line-chunk/test/in/GeometryCollection.geojson ================================================ { "type": "GeometryCollection", "geometries": [ { "type": "LineString", "coordinates": [ [-86.28524780273438, 40.250184183819854], [-85.98587036132812, 40.17887331434696], [-85.97213745117188, 40.08857859823707], [-85.77987670898438, 40.15578608609647] ] }, { "type": "LineString", "coordinates": [ [-86.29348754882811, 40.17362690655496], [-86.23580932617188, 39.891826241725596], [-85.93643188476562, 39.95606977009003] ] } ] } ================================================ FILE: packages/turf-line-chunk/test/in/LineString.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-86.28524780273438, 40.250184183819854], [-85.98587036132812, 40.17887331434696], [-85.97213745117188, 40.08857859823707], [-85.77987670898438, 40.15578608609647] ] } } ================================================ FILE: packages/turf-line-chunk/test/in/MultiLineString.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-86.28524780273438, 40.250184183819854], [-85.98587036132812, 40.17887331434696] ], [ [-85.97213745117188, 40.08857859823707], [-85.77987670898438, 40.15578608609647] ] ] } } ================================================ FILE: packages/turf-line-chunk/test/out/FeatureCollection.longer.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.285248, 40.250184], [-85.98587, 40.178873], [-85.972137, 40.088579], [-85.779877, 40.155786] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.293488, 40.173627], [-86.235809, 39.891826], [-85.936432, 39.95607] ] } } ] } ================================================ FILE: packages/turf-line-chunk/test/out/FeatureCollection.reverse.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.779877, 40.155786], [-85.865993, 40.125739] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.865993, 40.125739], [-85.952033, 40.095627] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.952033, 40.095627], [-85.972137, 40.088579], [-85.98051, 40.143655] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.98051, 40.143655], [-85.98587, 40.178873], [-86.031972, 40.189915] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.031972, 40.189915], [-86.122401, 40.211509] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.122401, 40.211509], [-86.212888, 40.233033] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.212888, 40.233033], [-86.285248, 40.250184] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.936432, 39.95607], [-86.027363, 39.936651] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.027363, 39.936651], [-86.118242, 39.917161] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.118242, 39.917161], [-86.209069, 39.897601] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.209069, 39.897601], [-86.235809, 39.891826], [-86.246098, 39.942266] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.246098, 39.942266], [-86.260707, 40.01376] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.260707, 40.01376], [-86.275347, 40.085253] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.275347, 40.085253], [-86.290018, 40.156744] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.290018, 40.156744], [-86.293488, 40.173627] ] } } ] } ================================================ FILE: packages/turf-line-chunk/test/out/FeatureCollection.shorter.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.285248, 40.250184], [-86.194715, 40.228717] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.194715, 40.228717], [-86.10424, 40.207179] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.10424, 40.207179], [-86.013822, 40.18557] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.013822, 40.18557], [-85.98587, 40.178873], [-85.978314, 40.129223] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.978314, 40.129223], [-85.972137, 40.088579], [-85.934764, 40.101678] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.934764, 40.101678], [-85.848709, 40.131777] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.848709, 40.131777], [-85.779877, 40.155786] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.293488, 40.173627], [-86.278809, 40.102136] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.278809, 40.102136], [-86.264162, 40.030644] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.264162, 40.030644], [-86.249545, 39.95915] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.249545, 39.95915], [-86.235809, 39.891826], [-86.230511, 39.892971] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.230511, 39.892971], [-86.139696, 39.912548] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.139696, 39.912548], [-86.048829, 39.932055] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.048829, 39.932055], [-85.957911, 39.95149] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.957911, 39.95149], [-85.936432, 39.95607] ] } } ] } ================================================ FILE: packages/turf-line-chunk/test/out/GeometryCollection.longer.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.285248, 40.250184], [-85.98587, 40.178873], [-85.972137, 40.088579], [-85.779877, 40.155786] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.293488, 40.173627], [-86.235809, 39.891826], [-85.936432, 39.95607] ] } } ] } ================================================ FILE: packages/turf-line-chunk/test/out/GeometryCollection.reverse.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.779877, 40.155786], [-85.865993, 40.125739] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.865993, 40.125739], [-85.952033, 40.095627] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.952033, 40.095627], [-85.972137, 40.088579], [-85.98051, 40.143655] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.98051, 40.143655], [-85.98587, 40.178873], [-86.031972, 40.189915] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.031972, 40.189915], [-86.122401, 40.211509] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.122401, 40.211509], [-86.212888, 40.233033] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.212888, 40.233033], [-86.285248, 40.250184] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.936432, 39.95607], [-86.027363, 39.936651] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.027363, 39.936651], [-86.118242, 39.917161] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.118242, 39.917161], [-86.209069, 39.897601] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.209069, 39.897601], [-86.235809, 39.891826], [-86.246098, 39.942266] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.246098, 39.942266], [-86.260707, 40.01376] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.260707, 40.01376], [-86.275347, 40.085253] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.275347, 40.085253], [-86.290018, 40.156744] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.290018, 40.156744], [-86.293488, 40.173627] ] } } ] } ================================================ FILE: packages/turf-line-chunk/test/out/GeometryCollection.shorter.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.285248, 40.250184], [-86.194715, 40.228717] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.194715, 40.228717], [-86.10424, 40.207179] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.10424, 40.207179], [-86.013822, 40.18557] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.013822, 40.18557], [-85.98587, 40.178873], [-85.978314, 40.129223] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.978314, 40.129223], [-85.972137, 40.088579], [-85.934764, 40.101678] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.934764, 40.101678], [-85.848709, 40.131777] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.848709, 40.131777], [-85.779877, 40.155786] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.293488, 40.173627], [-86.278809, 40.102136] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.278809, 40.102136], [-86.264162, 40.030644] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.264162, 40.030644], [-86.249545, 39.95915] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.249545, 39.95915], [-86.235809, 39.891826], [-86.230511, 39.892971] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.230511, 39.892971], [-86.139696, 39.912548] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.139696, 39.912548], [-86.048829, 39.932055] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.048829, 39.932055], [-85.957911, 39.95149] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.957911, 39.95149], [-85.936432, 39.95607] ] } } ] } ================================================ FILE: packages/turf-line-chunk/test/out/LineString.longer.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.285248, 40.250184], [-85.98587, 40.178873], [-85.972137, 40.088579], [-85.779877, 40.155786] ] } } ] } ================================================ FILE: packages/turf-line-chunk/test/out/LineString.reverse.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.779877, 40.155786], [-85.865993, 40.125739] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.865993, 40.125739], [-85.952033, 40.095627] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.952033, 40.095627], [-85.972137, 40.088579], [-85.98051, 40.143655] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.98051, 40.143655], [-85.98587, 40.178873], [-86.031972, 40.189915] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.031972, 40.189915], [-86.122401, 40.211509] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.122401, 40.211509], [-86.212888, 40.233033] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.212888, 40.233033], [-86.285248, 40.250184] ] } } ] } ================================================ FILE: packages/turf-line-chunk/test/out/LineString.shorter.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.285248, 40.250184], [-86.194715, 40.228717] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.194715, 40.228717], [-86.10424, 40.207179] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.10424, 40.207179], [-86.013822, 40.18557] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.013822, 40.18557], [-85.98587, 40.178873], [-85.978314, 40.129223] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.978314, 40.129223], [-85.972137, 40.088579], [-85.934764, 40.101678] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.934764, 40.101678], [-85.848709, 40.131777] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.848709, 40.131777], [-85.779877, 40.155786] ] } } ] } ================================================ FILE: packages/turf-line-chunk/test/out/MultiLineString.longer.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.285248, 40.250184], [-85.98587, 40.178873] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.972137, 40.088579], [-85.779877, 40.155786] ] } } ] } ================================================ FILE: packages/turf-line-chunk/test/out/MultiLineString.reverse.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.98587, 40.178873], [-86.07627, 40.200503] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.07627, 40.200503], [-86.166728, 40.222063] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.166728, 40.222063], [-86.257243, 40.243552] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.257243, 40.243552], [-86.285248, 40.250184] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.779877, 40.155786], [-85.865993, 40.125739] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.865993, 40.125739], [-85.952033, 40.095627] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.952033, 40.095627], [-85.972137, 40.088579] ] } } ] } ================================================ FILE: packages/turf-line-chunk/test/out/MultiLineString.shorter.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.285248, 40.250184], [-86.194715, 40.228717] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.194715, 40.228717], [-86.10424, 40.207179] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.10424, 40.207179], [-86.013822, 40.18557] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-86.013822, 40.18557], [-85.98587, 40.178873] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.972137, 40.088579], [-85.886115, 40.118705] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.886115, 40.118705], [-85.800016, 40.148767] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-85.800016, 40.148767], [-85.779877, 40.155786] ] } } ] } ================================================ FILE: packages/turf-line-chunk/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { truncate } from "@turf/truncate"; import { featureEach } from "@turf/meta"; import { lineString, featureCollection, point, geometryCollection, } from "@turf/helpers"; import { lineChunk } from "./index.js"; import { Feature } from "geojson"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, geojson: loadJsonFileSync(directories.in + filename) as any, }; }); test("turf-line-chunk: shorter", (t) => { for (let { filename, geojson } of fixtures) { const chunked = colorize( truncate(lineChunk(geojson, 5, { units: "miles" })) ); filename = filename.replace(".geojson", ".shorter.geojson"); if (process.env.REGEN) { writeJsonFileSync(directories.out + filename, chunked); } const expected = loadJsonFileSync(directories.out + filename); t.deepEquals(chunked, expected, path.parse(filename).name); } t.end(); }); test("turf-line-chunk: longer", (t) => { for (let { filename, geojson } of fixtures) { const chunked = colorize( truncate(lineChunk(geojson, 50, { units: "miles" })) ); filename = filename.replace(".geojson", ".longer.geojson"); if (process.env.REGEN) { writeJsonFileSync(directories.out + filename, chunked); } const expected = loadJsonFileSync(directories.out + filename); t.deepEquals(chunked, expected, path.parse(filename).name); } t.end(); }); test("turf-line-chunk: reverse", (t) => { for (let { filename, geojson } of fixtures) { const chunked = colorize( truncate(lineChunk(geojson, 5, { units: "miles", reverse: true })) ); filename = filename.replace(".geojson", ".reverse.geojson"); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, chunked); const expected = loadJsonFileSync(directories.out + filename); t.deepEquals(chunked, expected, path.parse(filename).name); } t.end(); }); test("turf-line-chunk: Support Geometry Objects", (t) => { const line = lineString([ [11, 0], [22, 4], [31, 0], [31, 11], [21, 15], [11, 11], [11, 0], ]); t.assert(lineChunk(line.geometry, 10), "support geometry objects"); t.end(); }); test("turf-line-chunk: Prevent input mutation", (t) => { const line = lineString([ [11, 0], [22, 4], [31, 0], [31, 11], [21, 15], [11, 11], [11, 0], ]); const before = JSON.parse(JSON.stringify(line)); lineChunk(line, 10); t.deepEqual(line, before, "input should not mutate"); t.end(); }); /** * Colorize FeatureCollection * * @param {FeatureCollection|Feature} geojson Feature or FeatureCollection * @returns {FeatureCollection} colorized FeatureCollection */ function colorize(geojson: any) { const results: Feature[] = []; featureEach(geojson, (feature, index) => { const r = index % 2 === 0 ? "F" : "0"; const g = index % 2 === 0 ? "0" : "0"; const b = index % 2 === 0 ? "0" : "F"; feature.properties = Object.assign( { stroke: "#" + r + g + b, "stroke-width": 10, }, feature.properties ); results.push(feature); }); return featureCollection(results); } ================================================ FILE: packages/turf-line-chunk/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-line-chunk/types.ts ================================================ import { lineString, geometryCollection, featureCollection, } from "@turf/helpers"; import { lineChunk } from "./index.js"; const line = lineString([ [0, 0], [1, 1], [2, 2], ]); const collection = featureCollection([line]); const geomCollection = geometryCollection([line.geometry]); lineChunk(line, 2); lineChunk(line, 2, { units: "kilometers" }); lineChunk(line.geometry, 2); lineChunk(collection, 2); lineChunk(geomCollection, 2); ================================================ FILE: packages/turf-line-intersect/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-line-intersect/README.md ================================================ # @turf/line-intersect ## lineIntersect Takes any LineString or Polygon GeoJSON and returns the intersecting point(s). ### Parameters * `line1` **[GeoJSON][1]** any LineString or Polygon * `line2` **[GeoJSON][1]** any LineString or Polygon * `options` **[Object][2]** Optional parameters (optional, default `{}`) * `options.removeDuplicates` **[boolean][3]** remove duplicate intersections (optional, default `true`) * `options.ignoreSelfIntersections` **[boolean][3]** ignores self-intersections on input features (optional, default `true`) ### Examples ```javascript var line1 = turf.lineString([[126, -11], [129, -21]]); var line2 = turf.lineString([[123, -18], [131, -14]]); var intersects = turf.lineIntersect(line1, line2); //addToMap var addToMap = [line1, line2, intersects] ``` Returns **[FeatureCollection][4]<[Point][5]>** point(s) that intersect both [1]: https://tools.ietf.org/html/rfc7946#section-3 [2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean [4]: https://tools.ietf.org/html/rfc7946#section-3.3 [5]: https://tools.ietf.org/html/rfc7946#section-3.1.2 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/line-intersect ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-line-intersect/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { lineIntersect } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); /** * Benchmark Results * * 2-vertex-segment x 1,467,485 ops/sec ±1.74% (89 runs sampled) * double-intersect x 307,665 ops/sec ±1.70% (91 runs sampled) * multi-linestring x 81,337 ops/sec ±0.67% (94 runs sampled) * polygons-with-holes x 27,711 ops/sec ±0.70% (92 runs sampled) * same-coordinates x 521,277 ops/sec ±0.75% (92 runs sampled) */ const suite = new Benchmark.Suite("turf-line-intersect"); for (const { name, geojson } of fixtures) { const [line1, line2] = geojson.features; suite.add(name, () => lineIntersect(line1, line2)); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-line-intersect/index.ts ================================================ import { feature, featureCollection, point } from "@turf/helpers"; import { Feature, FeatureCollection, LineString, MultiLineString, MultiPolygon, Point, Polygon, } from "geojson"; import type { Intersection } from "sweepline-intersections"; import { sweeplineIntersections as findIntersections } from "./lib/sweepline-intersections-export.js"; /** * Takes any LineString or Polygon GeoJSON and returns the intersecting point(s). * * @function * @param {GeoJSON} line1 any LineString or Polygon * @param {GeoJSON} line2 any LineString or Polygon * @param {Object} [options={}] Optional parameters * @param {boolean} [options.removeDuplicates=true] remove duplicate intersections * @param {boolean} [options.ignoreSelfIntersections=true] ignores self-intersections on input features * @returns {FeatureCollection} point(s) that intersect both * @example * var line1 = turf.lineString([[126, -11], [129, -21]]); * var line2 = turf.lineString([[123, -18], [131, -14]]); * var intersects = turf.lineIntersect(line1, line2); * * //addToMap * var addToMap = [line1, line2, intersects] */ function lineIntersect< G1 extends LineString | MultiLineString | Polygon | MultiPolygon, G2 extends LineString | MultiLineString | Polygon | MultiPolygon, >( line1: FeatureCollection | Feature | G1, line2: FeatureCollection | Feature | G2, options: { removeDuplicates?: boolean; ignoreSelfIntersections?: boolean; } = {} ): FeatureCollection { const { removeDuplicates = true, ignoreSelfIntersections = true } = options; let features: Feature[] = []; if (line1.type === "FeatureCollection") features = features.concat(line1.features); else if (line1.type === "Feature") features.push(line1); else if ( line1.type === "LineString" || line1.type === "Polygon" || line1.type === "MultiLineString" || line1.type === "MultiPolygon" ) { features.push(feature(line1)); } if (line2.type === "FeatureCollection") features = features.concat(line2.features); else if (line2.type === "Feature") features.push(line2); else if ( line2.type === "LineString" || line2.type === "Polygon" || line2.type === "MultiLineString" || line2.type === "MultiPolygon" ) { features.push(feature(line2)); } const intersections = findIntersections( featureCollection(features), ignoreSelfIntersections ); let results: Intersection[] = []; if (removeDuplicates) { const unique: Record = {}; intersections.forEach((intersection) => { const key = intersection.join(","); if (!unique[key]) { unique[key] = true; results.push(intersection); } }); } else { results = intersections; } return featureCollection(results.map((r) => point(r))); } export { lineIntersect }; export default lineIntersect; ================================================ FILE: packages/turf-line-intersect/lib/sweepline-intersections-export.ts ================================================ // Get around problems with moduleResolution node16 and some older libraries. // Manifests as "This expression is not callable ... has no call signatures" // https://stackoverflow.com/a/74709714 import lib from "sweepline-intersections"; export const sweeplineIntersections = lib as unknown as typeof lib.default; ================================================ FILE: packages/turf-line-intersect/package.json ================================================ { "name": "@turf/line-intersect", "version": "7.3.4", "description": "Takes any LineString or Polygon GeoJSON and returns the intersecting point(s).", "author": "Turf Authors", "contributors": [ "Denis Carriere <@DenisCarriere>", "Daniel Pulido <@dpmcmlxxvi>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "geojson", "gis", "line", "intersect" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", "sweepline-intersections": "^1.5.0", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-line-intersect/test/in/2-vertex-segment.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [124.584961, -12.768946], [126.738281, -17.224758] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [123.354492, -15.961329], [127.22168, -14.008696] ] } } ] } ================================================ FILE: packages/turf-line-intersect/test/in/double-intersect.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [142.03125, -11.695273], [138.691406, -16.804541], [136.40625, -14.604847], [135.966797, -12.039321], [131.308594, -11.436955], [128.232422, -15.36895], [125.947266, -13.581921], [121.816406, -18.729502], [117.421875, -20.632784], [113.378906, -23.402765], [114.169922, -26.667096] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [117.861328, -15.029686], [122.124023, -24.886436], [132.583008, -22.309426], [132.890625, -7.754537] ] } } ] } ================================================ FILE: packages/turf-line-intersect/test/in/multi-linestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [142.03125, -11.695273], [138.691406, -16.804541], [136.40625, -14.604847], [135.966797, -12.039321], [131.308594, -11.436955], [128.232422, -15.36895], [125.947266, -13.581921], [121.816406, -18.729502], [117.421875, -20.632784], [113.378906, -23.402765], [114.169922, -26.667096] ], [ [117.290039, -27.994401], [118.87207, -25.165173], [121.508789, -24.407138], [122.783203, -19.228177], [125.683594, -18.771115], [130.78125, -21.534847], [133.417969, -17.602139], [137.768555, -19.55979], [139.658203, -18.39623] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [117.861328, -15.029686], [122.124023, -24.886436], [132.583008, -22.309426], [132.890625, -7.754537] ], [ [115.751953, -17.014768], [118.652344, -26.037042], [118.344727, -28.343065], [125.068359, -28.652031], [125.771484, -26.627818], [131.572266, -26.509905], [136.40625, -24.886436], [136.186523, -22.105999], [134.956055, -20.591652], [135.439453, -16.214675], [136.713867, -15.114553], [134.912109, -11.738302], [135, -10.141932] ] ] } } ] } ================================================ FILE: packages/turf-line-intersect/test/in/polygons-with-holes.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [127.397461, -14.221789], [119.399414, -18.729502], [114.741211, -21.289374], [113.554688, -24.487149], [114.213867, -28.304381], [116.235352, -30.977609], [115.532227, -33.468108], [116.191406, -34.633208], [120.629883, -33.541395], [124.541016, -33.247876], [128.62793, -32.10119], [129.726563, -31.765537], [129.726563, -28.806174], [128.276367, -28.497661], [125.727539, -28.459033], [122.695313, -30.372875], [120.410156, -30.562261], [118.476562, -28.998532], [118.608398, -27.527758], [123.925781, -27.019984], [126.5625, -26.549223], [130.166016, -25.76032], [130.166016, -23.644524], [127.617187, -22.917923], [123.837891, -24.567108], [119.267578, -24.567108], [118.564453, -23.281719], [119.838867, -21.330315], [123.706055, -21.493964], [127.089844, -21.0845], [128.232422, -19.103648], [127.749023, -17.895114], [130.297852, -17.182779], [129.858398, -15.538376], [129.023438, -14.179186], [127.397461, -14.221789] ], [ [122.958984, -19.890723], [125.068359, -19.890723], [125.068359, -18.187607], [122.958984, -18.187607], [122.958984, -19.890723] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [120.849609, -14.85985], [117.070313, -15.496032], [117.026367, -17.769612], [119.663086, -20.468189], [121.157227, -23.039298], [120.058594, -24.647017], [118.344727, -26.076521], [120.410156, -28.343065], [120.146484, -30.939924], [118.256836, -33.027088], [123.925781, -34.885931], [126.123047, -33.687782], [125.947266, -31.840233], [124.057617, -28.536275], [122.080078, -26.273714], [123.442383, -23.885838], [125.200195, -22.796439], [124.277344, -19.47695], [120.849609, -14.85985] ], [ [121.157227, -27.371767], [121.157227, -29.42046], [121.025391, -31.952162], [120.893555, -33.027088], [123.662109, -33.870416], [124.584961, -33.431441], [124.541016, -31.128199], [122.827148, -29.382175], [122.124023, -27.916767], [121.157227, -27.371767] ] ] } } ] } ================================================ FILE: packages/turf-line-intersect/test/in/same-coordinates.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [120, -20], [122.5, -16], [125, -15], [127.5, -16], [130, -20] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [120, -20], [122.5, -24], [125, -25], [127.5, -24], [130, -20] ] } } ] } ================================================ FILE: packages/turf-line-intersect/test/in/self-intersecting-line.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [0, 2], [2, 1], [-1, 1] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [3, 3], [4, 4], [5, 5] ] } } ] } ================================================ FILE: packages/turf-line-intersect/test/in/self-intersecting-multiline.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [0, 0], [1, 2], [0, 4] ], [ [1, 0], [0, 2], [1, 4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [3, 3], [4, 4], [5, 5] ] } } ] } ================================================ FILE: packages/turf-line-intersect/test/in/self-intersecting-multipoly.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill": "#ed333b", "fill-opacity": 0.5 }, "geometry": { "coordinates": [ [ [ [2.8208987964653716, 5.206515064293427], [2.8208987964653716, -4.530167455797994], [6.383916833323553, -4.530167455797994], [6.383916833323553, 5.206515064293427], [2.8208987964653716, 5.206515064293427] ] ], [ [ [-0.33343506038161763, 3.67541603033537], [-0.33343506038161763, 2.1793088174136273], [8.775841349855597, 2.1793088174136273], [8.775841349855597, 3.67541603033537], [-0.33343506038161763, 3.67541603033537] ] ] ], "type": "MultiPolygon" }, "id": 0 }, { "type": "Feature", "properties": {}, "geometry": { "coordinates": [ [ [-7.951422534380413, 5.231149187754099], [-7.951422534380413, -4.552832252613101], [-5.701165954657256, -4.552832252613101], [-5.701165954657256, 5.231149187754099], [-7.951422534380413, 5.231149187754099] ] ], "type": "Polygon" } } ] } ================================================ FILE: packages/turf-line-intersect/test/in/self-intersecting-poly.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "coordinates": [ [ [-0.8680870854922205, 3.0368343508535673], [-1.321147431010786, 5.333329344976903], [1.0099462525165848, 5.611566335081363], [0.47439299724965167, -1.9282285399474688], [3.2162894164922875, -1.8166964568157766], [2.707220996335252, 7.192842763774053], [-3.8645185945755713, 6.519248925309753], [-3.8571038955967083, 0.3483632770754781], [-0.5093053180867742, 0.39824548653076874], [4.4119165583018685, 0.21046777461485533], [3.9804563423212755, 3.7937082620644844], [-0.8680870854922205, 3.0368343508535673] ] ], "type": "Polygon" } }, { "type": "Feature", "properties": {}, "geometry": { "coordinates": [ [ [-7.4564971746842446, 6.278543929857676], [-13.631981273628753, 6.323585458965155], [-12.43687692686214, -2.589094309688946], [-6.376915352576532, -3.0767722870515115], [-7.4564971746842446, 6.278543929857676] ] ], "type": "Polygon" } } ] } ================================================ FILE: packages/turf-line-intersect/test/out/2-vertex-segment.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [125.583754, -14.835723] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [124.584961, -12.768946], [126.738281, -17.224758] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [123.354492, -15.961329], [127.22168, -14.008696] ] } } ] } ================================================ FILE: packages/turf-line-intersect/test/out/double-intersect.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [119.832884, -19.58857] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [132.808697, -11.630938] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [142.03125, -11.695273], [138.691406, -16.804541], [136.40625, -14.604847], [135.966797, -12.039321], [131.308594, -11.436955], [128.232422, -15.36895], [125.947266, -13.581921], [121.816406, -18.729502], [117.421875, -20.632784], [113.378906, -23.402765], [114.169922, -26.667096] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [117.861328, -15.029686], [122.124023, -24.886436], [132.583008, -22.309426], [132.890625, -7.754537] ] } } ] } ================================================ FILE: packages/turf-line-intersect/test/out/multi-linestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [117.006519, -20.917359] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [118.554586, -25.732946] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [119.832884, -19.58857] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [121.656735, -23.805914] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [132.658557, -18.734814] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [132.808697, -11.630938] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [135.006479, -11.91514] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [135.197772, -18.403004] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [136.389417, -14.506578] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [136.479474, -14.675333] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [142.03125, -11.695273], [138.691406, -16.804541], [136.40625, -14.604847], [135.966797, -12.039321], [131.308594, -11.436955], [128.232422, -15.36895], [125.947266, -13.581921], [121.816406, -18.729502], [117.421875, -20.632784], [113.378906, -23.402765], [114.169922, -26.667096] ], [ [117.290039, -27.994401], [118.87207, -25.165173], [121.508789, -24.407138], [122.783203, -19.228177], [125.683594, -18.771115], [130.78125, -21.534847], [133.417969, -17.602139], [137.768555, -19.55979], [139.658203, -18.39623] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [117.861328, -15.029686], [122.124023, -24.886436], [132.583008, -22.309426], [132.890625, -7.754537] ], [ [115.751953, -17.014768], [118.652344, -26.037042], [118.344727, -28.343065], [125.068359, -28.652031], [125.771484, -26.627818], [131.572266, -26.509905], [136.40625, -24.886436], [136.186523, -22.105999], [134.956055, -20.591652], [135.439453, -16.214675], [136.713867, -15.114553], [134.912109, -11.738302], [135, -10.141932] ] ] } } ] } ================================================ FILE: packages/turf-line-intersect/test/out/polygons-with-holes.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [118.465639, -19.242649] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [120.170188, -33.654475] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [119.582432, -27.434744] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [120.17229, -21.344425] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [120.1132, -24.567108] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [120.201928, -30.393864] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [122.447193, -17.011768] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [122.196098, -33.423855] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [121.100749, -30.505027] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [122.824274, -27.12517] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [123.053712, -24.567108] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [123.377165, -29.942512] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [123.320136, -18.187607] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [124.468085, -29.253959] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [124.392377, -19.890723] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [124.80125, -21.361437] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [124.581243, -33.236589] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [126.041148, -32.826977] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [127.397461, -14.221789], [119.399414, -18.729502], [114.741211, -21.289374], [113.554688, -24.487149], [114.213867, -28.304381], [116.235352, -30.977609], [115.532227, -33.468108], [116.191406, -34.633208], [120.629883, -33.541395], [124.541016, -33.247876], [128.62793, -32.10119], [129.726563, -31.765537], [129.726563, -28.806174], [128.276367, -28.497661], [125.727539, -28.459033], [122.695313, -30.372875], [120.410156, -30.562261], [118.476562, -28.998532], [118.608398, -27.527758], [123.925781, -27.019984], [126.5625, -26.549223], [130.166016, -25.76032], [130.166016, -23.644524], [127.617187, -22.917923], [123.837891, -24.567108], [119.267578, -24.567108], [118.564453, -23.281719], [119.838867, -21.330315], [123.706055, -21.493964], [127.089844, -21.0845], [128.232422, -19.103648], [127.749023, -17.895114], [130.297852, -17.182779], [129.858398, -15.538376], [129.023438, -14.179186], [127.397461, -14.221789] ], [ [122.958984, -19.890723], [125.068359, -19.890723], [125.068359, -18.187607], [122.958984, -18.187607], [122.958984, -19.890723] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [120.849609, -14.85985], [117.070313, -15.496032], [117.026367, -17.769612], [119.663086, -20.468189], [121.157227, -23.039298], [120.058594, -24.647017], [118.344727, -26.076521], [120.410156, -28.343065], [120.146484, -30.939924], [118.256836, -33.027088], [123.925781, -34.885931], [126.123047, -33.687782], [125.947266, -31.840233], [124.057617, -28.536275], [122.080078, -26.273714], [123.442383, -23.885838], [125.200195, -22.796439], [124.277344, -19.47695], [120.849609, -14.85985] ], [ [121.157227, -27.371767], [121.157227, -29.42046], [121.025391, -31.952162], [120.893555, -33.027088], [123.662109, -33.870416], [124.584961, -33.431441], [124.541016, -31.128199], [122.827148, -29.382175], [122.124023, -27.916767], [121.157227, -27.371767] ] ] } } ] } ================================================ FILE: packages/turf-line-intersect/test/out/same-coordinates.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [120, -20] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [130, -20] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [120, -20], [122.5, -16], [125, -15], [127.5, -16], [130, -20] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [120, -20], [122.5, -24], [125, -25], [127.5, -24], [130, -20] ] } } ] } ================================================ FILE: packages/turf-line-intersect/test/out/self-intersecting-line.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [0, 2], [2, 1], [-1, 1] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [3, 3], [4, 4], [5, 5] ] } } ] } ================================================ FILE: packages/turf-line-intersect/test/out/self-intersecting-multiline.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [0, 0], [1, 2], [0, 4] ], [ [1, 0], [0, 2], [1, 4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [3, 3], [4, 4], [5, 5] ] } } ] } ================================================ FILE: packages/turf-line-intersect/test/out/self-intersecting-multipoly.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill": "#ed333b", "fill-opacity": 0.5 }, "geometry": { "coordinates": [ [ [ [2.8208987964653716, 5.206515064293427], [2.8208987964653716, -4.530167455797994], [6.383916833323553, -4.530167455797994], [6.383916833323553, 5.206515064293427], [2.8208987964653716, 5.206515064293427] ] ], [ [ [-0.33343506038161763, 3.67541603033537], [-0.33343506038161763, 2.1793088174136273], [8.775841349855597, 2.1793088174136273], [8.775841349855597, 3.67541603033537], [-0.33343506038161763, 3.67541603033537] ] ] ], "type": "MultiPolygon" }, "id": 0 }, { "type": "Feature", "properties": {}, "geometry": { "coordinates": [ [ [-7.951422534380413, 5.231149187754099], [-7.951422534380413, -4.552832252613101], [-5.701165954657256, -4.552832252613101], [-5.701165954657256, 5.231149187754099], [-7.951422534380413, 5.231149187754099] ] ], "type": "Polygon" } } ] } ================================================ FILE: packages/turf-line-intersect/test/out/self-intersecting-poly.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "coordinates": [ [ [-0.8680870854922205, 3.0368343508535673], [-1.321147431010786, 5.333329344976903], [1.0099462525165848, 5.611566335081363], [0.47439299724965167, -1.9282285399474688], [3.2162894164922875, -1.8166964568157766], [2.707220996335252, 7.192842763774053], [-3.8645185945755713, 6.519248925309753], [-3.8571038955967083, 0.3483632770754781], [-0.5093053180867742, 0.39824548653076874], [4.4119165583018685, 0.21046777461485533], [3.9804563423212755, 3.7937082620644844], [-0.8680870854922205, 3.0368343508535673] ] ], "type": "Polygon" } }, { "type": "Feature", "properties": {}, "geometry": { "coordinates": [ [ [-7.4564971746842446, 6.278543929857676], [-13.631981273628753, 6.323585458965155], [-12.43687692686214, -2.589094309688946], [-6.376915352576532, -3.0767722870515115], [-7.4564971746842446, 6.278543929857676] ] ], "type": "Polygon" } } ] } ================================================ FILE: packages/turf-line-intersect/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { truncate } from "@turf/truncate"; import { featureCollection, lineString, polygon } from "@turf/helpers"; import { lineIntersect } from "./index.js"; import { Feature, LineString, Point } from "geojson"; const directories = { in: path.join("test", "in") + path.sep, out: path.join("test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync( directories.in + filename ) as GeoJSON.FeatureCollection, }; }); test("turf-line-intersect", (t) => { for (const { filename, name, geojson } of fixtures) { const [line1, line2] = geojson.features; const results: GeoJSON.FeatureCollection = truncate( lineIntersect(line1, line2) ); results.features.push(line1); results.features.push(line2); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEquals(results, loadJsonFileSync(directories.out + filename), name); } t.end(); }); test("turf-line-intersect - prevent input mutation", (t) => { const line1 = lineString([ [7, 50], [8, 50], [9, 50], ]); const line2 = lineString([ [8, 49], [8, 50], [8, 51], ]); const before1 = JSON.parse(JSON.stringify(line1)); const before2 = JSON.parse(JSON.stringify(line2)); lineIntersect(line1, line2); t.deepEqual(line1, before1, "line1 input should not be mutated"); t.deepEqual(line2, before2, "line2 input should not be mutated"); t.end(); }); test("turf-line-intersect - Geometry Objects", (t) => { const line1 = lineString([ [7, 50], [9, 50], ]); const line2 = lineString([ [8, 49], [8, 51], ]); t.ok( lineIntersect(line1.geometry, line2.geometry).features.length, "support Geometry Objects" ); t.ok( lineIntersect(featureCollection([line1]), featureCollection([line2])) .features.length, "support Feature Collection" ); // t.ok( // lineIntersect( // geometryCollection([line1.geometry]), // geometryCollection([line2.geometry]) // ).features.length, // "support Geometry Collection" // ); t.end(); }); test("turf-line-intersect - same point #688", (t) => { const line1 = lineString([ [7, 50], [8, 50], [9, 50], ]); const line2 = lineString([ [8, 49], [8, 50], [8, 51], ]); const results = lineIntersect(line1, line2); t.equal(results.features.length, 1, "should return single point"); const results2 = lineIntersect(line1, line2, { removeDuplicates: false, }); t.equal(results2.features.length, 3, "should return three points"); t.end(); }); test("turf-line-intersect - polygon support #586", (t) => { const poly1 = polygon([ [ [7, 50], [8, 50], [9, 50], [7, 50], ], ]); const poly2 = polygon([ [ [8, 49], [8, 50], [8, 51], [8, 49], ], ]); const results = lineIntersect(poly1, poly2); t.equal(results.features.length, 1, "should return single point"); t.end(); }); /** * ensures that the self intersection param behaves as expected - * since it cannot be verified in the fixture format. */ test("turf-line-intersect - self intersection behavior", (t) => { const line1: Feature = { type: "Feature", properties: {}, geometry: { type: "LineString", coordinates: [ [0, 0], [0, 2], [2, 1], [-1, 1], ], }, }; const line2: Feature = { type: "Feature", properties: {}, geometry: { type: "LineString", coordinates: [ [3, 3], [4, 4], [5, 5], ], }, }; const ignored = lineIntersect(line1, line2); t.equal( ignored.features.length, 0, "self intersections should be ignored by default" ); const included = lineIntersect(line1, line2, { ignoreSelfIntersections: false, }); t.equal( included.features.length, 1, "self intersections should be included when ignoreSelfIntersections set to false" ); t.end(); }); ================================================ FILE: packages/turf-line-intersect/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-line-offset/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-line-offset/README.md ================================================ # @turf/line-offset ## lineOffset Takes a [line][1] and returns a [line][1] at offset by the specified distance. ### Parameters * `geojson` **([Geometry][2] | [Feature][3]<([LineString][1] | [MultiLineString][4])>)** input GeoJSON * `distance` **[number][5]** distance to offset the line (can be of negative value) * `options` **[Object][6]** Optional parameters (optional, default `{}`) * `options.units` **Units** Supports all valid Turf [Units][7]. (optional, default `'kilometers'`) ### Examples ```javascript var line = turf.lineString([[-83, 30], [-84, 36], [-78, 41]], { "stroke": "#F00" }); var offsetLine = turf.lineOffset(line, 2, {units: 'miles'}); //addToMap var addToMap = [offsetLine, line] offsetLine.properties.stroke = "#00F" ``` Returns **[Feature][3]<([LineString][1] | [MultiLineString][4])>** Line offset from the input line [1]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [2]: https://tools.ietf.org/html/rfc7946#section-3.1 [3]: https://tools.ietf.org/html/rfc7946#section-3.2 [4]: https://tools.ietf.org/html/rfc7946#section-3.1.5 [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [7]: https://turfjs.org/docs/api/types/Units --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/line-offset ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-line-offset/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { lineOffset } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; let fixtures = fs.readdirSync(directory).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); // fixtures = fixtures.filter(fixture => fixture.name === 'polygon'); /** * Benchmark Results * * line-horizontal x 1,816,451 ops/sec ±15.31% (62 runs sampled) * linestring-long x 144,640 ops/sec ±3.35% (82 runs sampled) * linestring-singleSegmentOnly x 2,649,959 ops/sec ±1.54% (76 runs sampled) * linestring-straight x 1,857,452 ops/sec ±5.83% (77 runs sampled) */ const suite = new Benchmark.Suite("turf-line-offset"); for (const { name, geojson } of fixtures) { suite.add(name, () => lineOffset(geojson, 100, "meters")); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-line-offset/index.ts ================================================ import { flattenEach } from "@turf/meta"; import { getCoords, getType } from "@turf/invariant"; import { isObject, lineString, multiLineString, lengthToDegrees, Units, } from "@turf/helpers"; import { intersection } from "./lib/intersection.js"; import { Feature, LineString, MultiLineString, Position } from "geojson"; /** * Takes a {@link LineString|line} and returns a {@link LineString|line} at offset by the specified distance. * * @function * @param {Geometry|Feature} geojson input GeoJSON * @param {number} distance distance to offset the line (can be of negative value) * @param {Object} [options={}] Optional parameters * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @returns {Feature} Line offset from the input line * @example * var line = turf.lineString([[-83, 30], [-84, 36], [-78, 41]], { "stroke": "#F00" }); * * var offsetLine = turf.lineOffset(line, 2, {units: 'miles'}); * * //addToMap * var addToMap = [offsetLine, line] * offsetLine.properties.stroke = "#00F" */ function lineOffset( geojson: Feature | T, distance: number, options: { units?: Units } = {} ): Feature { // Optional parameters options = options || {}; if (!isObject(options)) throw new Error("options is invalid"); const { units = "kilometers" } = options; // Valdiation if (!geojson) throw new Error("geojson is required"); if (distance === undefined || distance === null || isNaN(distance)) throw new Error("distance is required"); var type = getType(geojson); var properties = geojson.type === "Feature" ? geojson.properties : {}; switch (type) { case "LineString": return lineOffsetFeature(geojson, distance, units) as Feature; case "MultiLineString": var coords: Position[][] = []; flattenEach(geojson, function (feature) { coords.push( lineOffsetFeature(feature, distance, units).geometry.coordinates ); }); return multiLineString(coords, properties) as Feature; default: throw new Error("geometry " + type + " is not supported"); } } /** * Line Offset * * @private * @param {Geometry|Feature} line input line * @param {number} distance distance to offset the line (can be of negative value) * @param {string} [units=kilometers] units * @returns {Feature} Line offset from the input line */ function lineOffsetFeature( line: Feature | LineString | MultiLineString, distance: number, units: Units ) { var segments: [[number, number], [number, number]][] = []; var offsetDegrees = lengthToDegrees(distance, units); var coords = getCoords(line); var finalCoords: [number, number][] = []; coords.forEach(function (currentCoords, index) { if (index !== coords.length - 1) { var segment = processSegment( currentCoords, coords[index + 1], offsetDegrees ); segments.push(segment); if (index > 0) { var seg2Coords = segments[index - 1]; var intersects = intersection(segment, seg2Coords); // Handling for line segments that aren't straight if (intersects !== false) { seg2Coords[1] = intersects; segment[0] = intersects; } finalCoords.push(seg2Coords[0]); if (index === coords.length - 2) { finalCoords.push(segment[0]); finalCoords.push(segment[1]); } } // Handling for lines that only have 1 segment if (coords.length === 2) { finalCoords.push(segment[0]); finalCoords.push(segment[1]); } } }); return lineString( finalCoords, line.type === "Feature" ? line.properties : {} ); } /** * Process Segment * Inspiration taken from http://stackoverflow.com/questions/2825412/draw-a-parallel-line * * @private * @param {Array} point1 Point coordinates * @param {Array} point2 Point coordinates * @param {number} offset Offset * @returns {Array>} offset points */ function processSegment( point1: [number, number], point2: [number, number], offset: number ): [[number, number], [number, number]] { var L = Math.sqrt( (point1[0] - point2[0]) * (point1[0] - point2[0]) + (point1[1] - point2[1]) * (point1[1] - point2[1]) ); var out1x = point1[0] + (offset * (point2[1] - point1[1])) / L; var out2x = point2[0] + (offset * (point2[1] - point1[1])) / L; var out1y = point1[1] + (offset * (point1[0] - point2[0])) / L; var out2y = point2[1] + (offset * (point1[0] - point2[0])) / L; return [ [out1x, out1y], [out2x, out2y], ]; } export { lineOffset }; export default lineOffset; ================================================ FILE: packages/turf-line-offset/lib/intersection.ts ================================================ /** * https://github.com/rook2pawn/node-intersection * * Author @rook2pawn */ /** * AB * * @private * @param {Array>} segment - 2 vertex line segment * @returns {Array} coordinates [x, y] */ function ab(segment: [number, number][]): [number, number] { var start = segment[0]; var end = segment[1]; return [end[0] - start[0], end[1] - start[1]]; } /** * Cross Product * * @private * @param {Array} v1 coordinates [x, y] * @param {Array} v2 coordinates [x, y] * @returns {Array} Cross Product */ function crossProduct(v1: [number, number], v2: [number, number]) { return v1[0] * v2[1] - v2[0] * v1[1]; } /** * Add * * @private * @param {Array} v1 coordinates [x, y] * @param {Array} v2 coordinates [x, y] * @returns {Array} Add */ function add(v1: [number, number], v2: [number, number]): [number, number] { return [v1[0] + v2[0], v1[1] + v2[1]]; } /** * Sub * * @private * @param {Array} v1 coordinates [x, y] * @param {Array} v2 coordinates [x, y] * @returns {Array} Sub */ function sub(v1: [number, number], v2: [number, number]): [number, number] { return [v1[0] - v2[0], v1[1] - v2[1]]; } /** * scalarMult * * @private * @param {number} s scalar * @param {Array} v coordinates [x, y] * @returns {Array} scalarMult */ function scalarMult(s: number, v: [number, number]): [number, number] { return [s * v[0], s * v[1]]; } /** * Intersect Segments * * @private * @param {Array} a coordinates [x, y] * @param {Array} b coordinates [x, y] * @returns {Array} intersection */ function intersectSegments( a: [number, number][], b: [number, number][] ): [number, number] { var p = a[0]; var r = ab(a); var q = b[0]; var s = ab(b); var cross = crossProduct(r, s); var qmp = sub(q, p); var numerator = crossProduct(qmp, s); var t = numerator / cross; var intersection = add(p, scalarMult(t, r)); return intersection; } /** * Is Parallel * * @private * @param {Array} a coordinates [x, y] * @param {Array} b coordinates [x, y] * @returns {boolean} true if a and b are parallel (or co-linear) */ function isParallel(a: [number, number][], b: [number, number][]): boolean { var r = ab(a); var s = ab(b); return crossProduct(r, s) === 0; } /** * Intersection * * @private * @param {Array} a coordinates [x, y] * @param {Array} b coordinates [x, y] * @returns {Array|boolean} true if a and b are parallel (or co-linear) */ export function intersection( a: [number, number][], b: [number, number][] ): [number, number] | false { if (isParallel(a, b)) return false; return intersectSegments(a, b); } ================================================ FILE: packages/turf-line-offset/package.json ================================================ { "name": "@turf/line-offset", "version": "7.3.4", "description": "Takes a line and returns a line at offset by the specified distance.", "author": "Turf Authors", "contributors": [ "David Wee <@rook2pawn>", "Rowan Winsemius <@rowanwins>", "Denis Carriere <@DenisCarriere>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "line", "linestring", "turf", "offset" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tstyche" }, "devDependencies": { "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tstyche": "^6.2.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-line-offset/test/in/line-concave.geojson ================================================ { "type": "Feature", "properties": { "stroke-width": 5, "stroke": "red", "distance": 150, "units": "miles" }, "geometry": { "type": "LineString", "coordinates": [ [0.9667968749999999, 21.69826549685252], [-2.5927734375, 24.44714958973082], [0.3955078125, 29.726222319395504], [7.207031249999999, 29.916852233070173], [11.337890625, 23.079731762449878], [3.2080078125, 21.04349121680354] ] } } ================================================ FILE: packages/turf-line-offset/test/in/line-horizontal.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [10, 0], [20, 0] ] } } ================================================ FILE: packages/turf-line-offset/test/in/linestring-long.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-24.2578125, 41.244772343082076], [-6.328125, 45.336701909968134], [0.703125, 49.83798245308484], [2.8125, 44.33956524809713], [-6.328125, 39.095962936305476], [-5.44921875, 36.4566360115962], [-0.17578125, 37.3002752813443], [1.58203125, 39.36827914916014], [3.33984375, 40.58058466412761], [6.15234375, 41.244772343082076], [7.3828125, 39.50404070558415], [4.5703125, 37.020098201368114], [3.69140625, 35.31736632923788], [4.921875, 31.653381399664], [8.61328125, 32.54681317351514], [10.72265625, 34.016241889667015], [10.546875, 36.03133177633187], [10.37109375, 38.272688535980976], [10.01953125, 39.232253141714885], [9.4921875, 40.58058466412761], [9.31640625, 41.902277040963696], [11.42578125, 44.08758502824516], [13.53515625, 43.96119063892024], [14.765625, 42.8115217450979], [15.8203125, 37.71859032558816], [15.644531250000002, 36.1733569352216], [14.94140625, 34.59704151614417], [13.359375, 31.952162238024975], [11.77734375, 22.755920681486405], [15.8203125, 29.22889003019423], [16.875, 31.50362930577303], [17.2265625, 33.43144133557529], [17.402343749999996, 35.02999636902566], [19.51171875, 41.244772343082076], [21.4453125, 41.11246878918088], [20.7421875, 38.8225909761771], [21.09375, 36.1733569352216], [21.26953125, 34.016241889667015], [21.26953125, 31.353636941500987], [26.015625, 33.284619968887675] ] } } ================================================ FILE: packages/turf-line-offset/test/in/linestring-same-start-end.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [122.431640625, -19.559790136497398], [122.51953124999999, -26.902476886279807], [134.82421875, -27.215556209029675], [139.306640625, -22.998851594142913], [133.9453125, -14.434680215297268], [122.431640625, -19.559790136497398] ] } } ================================================ FILE: packages/turf-line-offset/test/in/linestring-single-segment-only.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 10] ] } } ================================================ FILE: packages/turf-line-offset/test/in/linestring-straight.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [1, -10], [1, 1], [1, 10] ] } } ================================================ FILE: packages/turf-line-offset/test/in/multi-linestring.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [10, 10], [2, 2], [0, 0] ], [ [25, 5], [20, 10], [15, 5] ] ] } } ================================================ FILE: packages/turf-line-offset/test/in/northern-line.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-93.66943359374999, 75.2782047773442], [-94.15283203125, 75.52189820596192], [-94.68017578125, 75.60133818586581], [-95.64697265625, 75.55208098028335], [-95.8447265625, 75.37837872661018], [-96.339111328125, 75.10975495781904], [-96.251220703125, 74.89940428652537], [-95.20751953125, 74.73829331009176], [-94.50439453125, 74.63965846462719], [-93.878173828125, 74.65129477919845], [-93.526611328125, 74.73250841433554], [-93.50463867187499, 75.09845822124332] ] } } ================================================ FILE: packages/turf-line-offset/test/out/line-concave.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke-width": 5, "stroke": "#00F", "distance": 150, "units": "miles" }, "geometry": { "type": "LineString", "coordinates": [ [2.2937, 23.4165], [0.2235, 25.0153], [1.6811, 27.5904], [6.0031, 27.7113], [7.9604, 24.4718], [2.6806, 23.1494] ] } }, { "type": "Feature", "properties": { "stroke-width": 5, "stroke": "red", "distance": 150, "units": "miles" }, "geometry": { "type": "LineString", "coordinates": [ [0.9667968749999999, 21.69826549685252], [-2.5927734375, 24.44714958973082], [0.3955078125, 29.726222319395504], [7.207031249999999, 29.916852233070173], [11.337890625, 23.079731762449878], [3.2080078125, 21.04349121680354] ] } } ] } ================================================ FILE: packages/turf-line-offset/test/out/line-horizontal.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [10, -0.4497], [20, -0.4497] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [10, 0], [20, 0] ] } } ] } ================================================ FILE: packages/turf-line-offset/test/out/linestring-long.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-24.1578, 40.8064], [-6.1517, 44.9157], [0.4809, 49.1618], [2.2548, 44.538], [-6.871, 39.3029], [-5.7552, 35.9523], [0.0593, 36.8825], [1.8862, 39.0318], [3.5255, 40.1624], [5.9603, 40.7374], [6.7827, 39.574], [4.2094, 37.3013], [3.2046, 35.3546], [4.6269, 31.1193], [8.8011, 32.1296], [11.1932, 33.796], [10.995, 36.0684], [10.8145, 38.3694], [10.4401, 39.3915], [9.9308, 40.6937], [9.7908, 41.7463], [11.6055, 43.6263], [13.3465, 43.522], [14.3543, 42.5805], [15.3654, 37.6979], [15.2056, 36.2931], [14.5417, 34.8048], [12.9304, 32.111], [10.9461, 20.5763], [16.2165, 29.0144], [17.3071, 31.3665], [17.6718, 33.3664], [17.8439, 34.932], [19.8263, 40.7725], [20.8491, 40.7026], [20.2835, 38.8607], [20.6465, 36.1255], [20.8199, 33.998], [20.8199, 30.6852], [26.1851, 32.8681] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-24.2578125, 41.244772343082076], [-6.328125, 45.336701909968134], [0.703125, 49.83798245308484], [2.8125, 44.33956524809713], [-6.328125, 39.095962936305476], [-5.44921875, 36.4566360115962], [-0.17578125, 37.3002752813443], [1.58203125, 39.36827914916014], [3.33984375, 40.58058466412761], [6.15234375, 41.244772343082076], [7.3828125, 39.50404070558415], [4.5703125, 37.020098201368114], [3.69140625, 35.31736632923788], [4.921875, 31.653381399664], [8.61328125, 32.54681317351514], [10.72265625, 34.016241889667015], [10.546875, 36.03133177633187], [10.37109375, 38.272688535980976], [10.01953125, 39.232253141714885], [9.4921875, 40.58058466412761], [9.31640625, 41.902277040963696], [11.42578125, 44.08758502824516], [13.53515625, 43.96119063892024], [14.765625, 42.8115217450979], [15.8203125, 37.71859032558816], [15.644531250000002, 36.1733569352216], [14.94140625, 34.59704151614417], [13.359375, 31.952162238024975], [11.77734375, 22.755920681486405], [15.8203125, 29.22889003019423], [16.875, 31.50362930577303], [17.2265625, 33.43144133557529], [17.402343749999996, 35.02999636902566], [19.51171875, 41.244772343082076], [21.4453125, 41.11246878918088], [20.7421875, 38.8225909761771], [21.09375, 36.1733569352216], [21.26953125, 34.016241889667015], [21.26953125, 31.353636941500987], [26.015625, 33.284619968887675] ] } } ] } ================================================ FILE: packages/turf-line-offset/test/out/linestring-same-start-end.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [121.982, -19.5652], [122.0751, -27.341], [134.9976, -27.6698], [139.8838, -23.0733], [134.1192, -13.8651], [122.2488, -19.149] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [122.431640625, -19.559790136497398], [122.51953124999999, -26.902476886279807], [134.82421875, -27.215556209029675], [139.306640625, -22.998851594142913], [133.9453125, -14.434680215297268], [122.431640625, -19.559790136497398] ] } } ] } ================================================ FILE: packages/turf-line-offset/test/out/linestring-single-segment-only.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [1.4497, 1], [1.4497, 10] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, 10] ] } } ] } ================================================ FILE: packages/turf-line-offset/test/out/linestring-straight.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [1.4497, -10], [1.4497, 1], [1.4497, 10] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [1, -10], [1, 1], [1, 10] ] } } ] } ================================================ FILE: packages/turf-line-offset/test/out/multi-linestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [9.682, 10.318], [1.682, 2.318], [-0.318, 0.318] ], [ [25.318, 5.318], [20, 10.6359], [14.682, 5.318] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [10, 10], [2, 2], [0, 0] ], [ [25, 5], [20, 10], [15, 5] ] ] } } ] } ================================================ FILE: packages/turf-line-offset/test/out/northern-line.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-93.467, 75.6797], [-94.0147, 75.9558], [-94.6579, 76.0527], [-95.8261, 75.9932], [-96.1036, 75.7494], [-96.9105, 75.311], [-96.5689, 74.4935], [-95.2731, 74.2934], [-94.5316, 74.1894], [-93.8228, 74.2026], [-93.0979, 74.37], [-93.0558, 75.0715] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-93.66943359374999, 75.2782047773442], [-94.15283203125, 75.52189820596192], [-94.68017578125, 75.60133818586581], [-95.64697265625, 75.55208098028335], [-95.8447265625, 75.37837872661018], [-96.339111328125, 75.10975495781904], [-96.251220703125, 74.89940428652537], [-95.20751953125, 74.73829331009176], [-94.50439453125, 74.63965846462719], [-93.878173828125, 74.65129477919845], [-93.526611328125, 74.73250841433554], [-93.50463867187499, 75.09845822124332] ] } } ] } ================================================ FILE: packages/turf-line-offset/test/types.tst.ts ================================================ import { lineOffset } from "../index.js"; import { lineString, multiLineString } from "@turf/helpers"; import type { Feature, LineString, MultiLineString } from "geojson"; import { expect } from "tstyche"; const line = lineString([ [0, 0], [10, 10], ]); const multiLine = multiLineString([ [ [0, 0], [10, 10], ], [ [5, 5], [15, 15], ], ]); /** * If the syntax below starts generating errors it's possible you've narrowed * the input arguments which is likely to be a breaking change. */ expect(lineOffset).type.toBeCallableWith(line, 50); expect(lineOffset).type.toBeCallableWith(line.geometry, 50); expect(lineOffset).type.toBeCallableWith(multiLine, 50); expect(lineOffset).type.toBeCallableWith(multiLine.geometry, 50); expect(lineOffset).type.toBeCallableWith(line, 50, { units: "miles" }); /** * If the sytax in this section starts generating errors, it's possible you've * broadened the return type which is likely to be a breaking change. */ expect(lineOffset(line, 50)).type.toBe>(); expect(lineOffset(multiLine, 50)).type.toBe>(); ================================================ FILE: packages/turf-line-offset/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { truncate } from "@turf/truncate"; import { featureCollection, lineString } from "@turf/helpers"; import { lineOffset } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; let fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); // fixtures = fixtures.filter(fixture => fixture.name === 'polygon'); test("turf-line-offset", (t) => { fixtures.forEach((fixture) => { const name = fixture.name; const geojson = fixture.geojson as any; const properties = geojson.properties || {}; const distance = properties.distance || 50; const units = properties.units; const output = truncate(lineOffset(geojson, distance, { units: units }), { precision: 4, }); output.properties!.stroke = "#00F"; const results = featureCollection([output, geojson]); if (process.env.REGEN) writeJsonFileSync(directories.out + name + ".geojson", results); t.deepEqual( results, loadJsonFileSync(directories.out + name + ".geojson"), name ); }); t.end(); }); test("turf-line-offset - Throws Errors", (t) => { const line = lineString([ [10, 10], [0, 0], ]); t.throws(() => (lineOffset as any)(), /geojson is required/); t.throws(() => (lineOffset as any)(line), /distance is required/); t.end(); }); test("turf-line-offset - Support Geometry Objects", (t) => { const line = lineString([ [10, 10], [0, 0], ]); t.ok(lineOffset(line.geometry, 10), "Geometry Object"); t.end(); }); test("turf-line-offset - Prevent Input Mutation", (t) => { const line = lineString([ [10, 10], [0, 0], ]); const before = JSON.parse(JSON.stringify(line)); lineOffset(line.geometry, 10); t.deepEqual(line, before, "input does not mutate"); t.end(); }); ================================================ FILE: packages/turf-line-offset/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-line-overlap/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-line-overlap/README.md ================================================ # @turf/line-overlap ## lineOverlap Takes any LineString or Polygon and returns the overlapping lines between both features. ### Parameters * `line1` **([Geometry][1] | [Feature][2]<([LineString][3] | [MultiLineString][4] | [Polygon][5] | [MultiPolygon][6])>)** any LineString or Polygon * `line2` **([Geometry][1] | [Feature][2]<([LineString][3] | [MultiLineString][4] | [Polygon][5] | [MultiPolygon][6])>)** any LineString or Polygon * `options` **[Object][7]** Optional parameters (optional, default `{}`) * `options.tolerance` **[number][8]** Tolerance distance to match overlapping line segments (in kilometers) (optional, default `0`) ### Examples ```javascript var line1 = turf.lineString([[115, -35], [125, -30], [135, -30], [145, -35]]); var line2 = turf.lineString([[115, -25], [125, -30], [135, -30], [145, -25]]); var overlapping = turf.lineOverlap(line1, line2); //addToMap var addToMap = [line1, line2, overlapping] ``` Returns **[FeatureCollection][9]<[LineString][3]>** lines(s) that are overlapping between both features [1]: https://tools.ietf.org/html/rfc7946#section-3.1 [2]: https://tools.ietf.org/html/rfc7946#section-3.2 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [4]: https://tools.ietf.org/html/rfc7946#section-3.1.5 [5]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [6]: https://tools.ietf.org/html/rfc7946#section-3.1.7 [7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [9]: https://tools.ietf.org/html/rfc7946#section-3.3 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/line-overlap ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-line-overlap/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { lineOverlap } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); /** * Benchmark Results * * polygons x 3,567 ops/sec ±1.61% (85 runs sampled) * simple1 x 9,013 ops/sec ±1.15% (86 runs sampled) * simple2 x 10,278 ops/sec ±1.52% (86 runs sampled) * simple3 x 13,124 ops/sec ±1.37% (85 runs sampled) */ const suite = new Benchmark.Suite("turf-line-overlap"); for (const { name, geojson } of fixtures) { suite.add(name, () => lineOverlap(geojson.features[0], geojson.features[1])); } suite .on("cycle", (e) => { console.log(String(e.target)); }) .run(); ================================================ FILE: packages/turf-line-overlap/index.ts ================================================ import { geojsonRbush as rbush } from "@turf/geojson-rbush"; import { lineSegment } from "@turf/line-segment"; import { nearestPointOnLine } from "@turf/nearest-point-on-line"; import { booleanPointOnLine } from "@turf/boolean-point-on-line"; import { getCoords } from "@turf/invariant"; import { featureEach, segmentEach } from "@turf/meta"; import { FeatureCollection, Feature, LineString, MultiLineString, Polygon, MultiPolygon, GeoJsonProperties, } from "geojson"; import { featureCollection, isObject } from "@turf/helpers"; import equal from "fast-deep-equal"; /** * Takes any LineString or Polygon and returns the overlapping lines between both features. * * @function * @param {Geometry|Feature} line1 any LineString or Polygon * @param {Geometry|Feature} line2 any LineString or Polygon * @param {Object} [options={}] Optional parameters * @param {number} [options.tolerance=0] Tolerance distance to match overlapping line segments (in kilometers) * @returns {FeatureCollection} lines(s) that are overlapping between both features * @example * var line1 = turf.lineString([[115, -35], [125, -30], [135, -30], [145, -35]]); * var line2 = turf.lineString([[115, -25], [125, -30], [135, -30], [145, -25]]); * * var overlapping = turf.lineOverlap(line1, line2); * * //addToMap * var addToMap = [line1, line2, overlapping] */ function lineOverlap< G1 extends LineString | MultiLineString | Polygon | MultiPolygon, G2 extends LineString | MultiLineString | Polygon | MultiPolygon, >( line1: Feature | G1, line2: Feature | G2, options: { tolerance?: number } = {} ): FeatureCollection { // Optional parameters options = options || {}; if (!isObject(options)) throw new Error("options is invalid"); var tolerance = options.tolerance || 0; // Containers var features: Feature[] = []; // Create Spatial Index var tree = rbush(); // To-Do -- HACK way to support typescript const line: any = lineSegment(line1); tree.load(line); var overlapSegment: Feature | undefined; let additionalSegments: Feature[] = []; // Line Intersection // Iterate over line segments segmentEach(line2, function (segment) { var doesOverlaps = false; if (!segment) { return; } // Iterate over each segments which falls within the same bounds featureEach(tree.search(segment), function (match) { if (doesOverlaps === false) { var coordsSegment = getCoords(segment).sort(); var coordsMatch: any = getCoords(match).sort(); // Segment overlaps feature if (equal(coordsSegment, coordsMatch)) { doesOverlaps = true; // Overlaps already exists - only append last coordinate of segment if (overlapSegment) { overlapSegment = concatSegment(overlapSegment, segment) || overlapSegment; } else overlapSegment = segment; // Match segments which don't share nodes (Issue #901) } else if ( tolerance === 0 ? booleanPointOnLine(coordsSegment[0], match) && booleanPointOnLine(coordsSegment[1], match) : nearestPointOnLine(match, coordsSegment[0]).properties .pointDistance! <= tolerance && nearestPointOnLine(match, coordsSegment[1]).properties .pointDistance! <= tolerance ) { doesOverlaps = true; if (overlapSegment) { overlapSegment = concatSegment(overlapSegment, segment) || overlapSegment; } else overlapSegment = segment; } else if ( tolerance === 0 ? booleanPointOnLine(coordsMatch[0], segment) && booleanPointOnLine(coordsMatch[1], segment) : nearestPointOnLine(segment, coordsMatch[0]).properties .pointDistance! <= tolerance && nearestPointOnLine(segment, coordsMatch[1]).properties .pointDistance! <= tolerance ) { // Do not define (doesOverlap = true) since more matches can occur within the same segment // doesOverlaps = true; if (overlapSegment) { const combinedSegment = concatSegment(overlapSegment, match); if (combinedSegment) { overlapSegment = combinedSegment; } else { additionalSegments.push(match); } } else overlapSegment = match; } } }); // Segment doesn't overlap - add overlaps to results & reset if (doesOverlaps === false && overlapSegment) { features.push(overlapSegment); if (additionalSegments.length) { features = features.concat(additionalSegments); additionalSegments = []; } overlapSegment = undefined; } }); // Add last segment if exists if (overlapSegment) features.push(overlapSegment); return featureCollection(features); } /** * Concat Segment * * @private * @param {Feature} line LineString * @param {Feature} segment 2-vertex LineString * @returns {Feature} concat linestring */ function concatSegment( line: Feature, segment: Feature ) { var coords = getCoords(segment); var lineCoords = getCoords(line); var start = lineCoords[0]; var end = lineCoords[lineCoords.length - 1]; var geom = line.geometry.coordinates; if (equal(coords[0], start)) geom.unshift(coords[1]); else if (equal(coords[0], end)) geom.push(coords[1]); else if (equal(coords[1], start)) geom.unshift(coords[0]); else if (equal(coords[1], end)) geom.push(coords[0]); else return; // If the overlap leaves the segment unchanged, return undefined so that this can be identified. // Otherwise return the mutated line. return line; } export { lineOverlap }; export default lineOverlap; ================================================ FILE: packages/turf-line-overlap/package.json ================================================ { "name": "@turf/line-overlap", "version": "7.3.4", "description": "Takes any LineString or Polygon and returns the overlapping lines between both features.", "author": "Turf Authors", "contributors": [ "Denis Carriere <@DenisCarriere>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "geojson", "gis", "line", "overlap" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/boolean-point-on-line": "workspace:*", "@turf/geojson-rbush": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/line-segment": "workspace:*", "@turf/meta": "workspace:*", "@turf/nearest-point-on-line": "workspace:*", "@types/geojson": "^7946.0.10", "fast-deep-equal": "^3.1.3", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-line-overlap/test/in/boolean-line-overlap.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-22.564544677734375, 46.25917013377904], [-22.559051513671875, 46.32369743336783], [-22.446441650390625, 46.352141192009334], [-22.361297607421875, 46.32891323009468], [-22.361297607421875, 46.30472670751783] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-22.570724487304688, 46.36398839132818], [-22.444381713867188, 46.357354276167015], [-22.391510009765625, 46.3291502999477], [-22.29263305664062, 46.382464893261165] ] } } ] } ================================================ FILE: packages/turf-line-overlap/test/in/issue-#901-simplified.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10, "stroke-opacity": 1 }, "geometry": { "type": "LineString", "coordinates": [ [2, 2], [4, 4] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 3, "stroke-opacity": 1 }, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [6, 6] ] } } ] } ================================================ FILE: packages/turf-line-overlap/test/in/issue-#901.geojson ================================================ { "type": "FeatureCollection", "properties": { "tolerance": 0.05 }, "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "stroke-width": 10, "stroke-opacity": 1, "fill-opacity": 0.1, "description": "output of an intersect call with a longer pipe and the other feature in this file" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-113.33847575084239, 53.52244416392682], [-113.33847394, 53.52299533509864], [-113.338470971, 53.52389165109878], [-113.338468309, 53.52469456909876], [-113.338467951, 53.5248023990988], [-113.338462214, 53.52653346709882], [-113.3384620759999, 53.52657586409872], [-113.3384619429999, 53.52661770709869], [-113.3384532659999, 53.52935323209886], [-113.338452983, 53.52944258409877], [-113.338452982, 53.52944333909876], [-113.3384522719999, 53.52962258909884], [-113.338449392, 53.53035074809878], [-113.33704111881613, 53.53215959791441], [-113.33698987543352, 53.53214475018778], [-113.33690471442213, 53.53212132654082], [-113.3382987129999, 53.53033083009888], [-113.3383022259999, 53.52944312809881], [-113.3383113299999, 53.52657569409888], [-113.3383232079999, 53.52299515809875], [-113.33832502043951, 53.52244398828247], [-113.3384152645109, 53.52244409344282], [-113.33847575084239, 53.52244416392682] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "stroke-width": 3, "stroke-opacity": 1, "fill-opacity": 0.1, "description": "shape which was intersected with a longer pipe to produce the pipe shown" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-113.34145274487872, 53.53230853007057], [-113.33797676517321, 53.53243070065233], [-113.33698987543352, 53.53214475018778], [-113.33287043896553, 53.53101169382826], [-113.33387712516304, 53.522438805202505], [-113.3384152645109, 53.52244409344282], [-113.3429534044069, 53.522449381683145], [-113.34145274487872, 53.53230853007057], [-113.34145274487872, 53.53230853007057], [-113.34145274487872, 53.53230853007057] ] ] } } ] } ================================================ FILE: packages/turf-line-overlap/test/in/polygons.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "stroke-width": 10, "stroke-opacity": 1, "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [120.14179343574, -17.48153498141], [120.1456007834, -30.96997373479], [130.34864729879, -30.96772909058], [131.64065935144, -29.20137372199], [129.5926694017, -28.04905296815], [130.34739288016, -26.68605235913], [125.76890918238, -26.68710193815], [125.76762773192, -22.1408865296], [130.52038135971, -22.13975701932], [131.37809653737, -20.30857774535], [129.67954157692, -18.92360398694], [130.51910988115, -17.47899540098], [120.14179343574, -17.48153498141] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "stroke-width": 3, "stroke-opacity": 1, "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [139.69468150776, -17.47674988707], [130.51910988115, -17.47899540098], [129.67954157692, -18.92360398694], [131.37809653737, -20.30857774535], [130.52038135971, -22.13975701932], [135.29428724786, -22.138622473], [135.29556869831, -26.68491802042], [130.34739288016, -26.68605235913], [129.5926694017, -28.04905296815], [131.64065935144, -29.20137372199], [130.34864729879, -30.96772909058], [139.69848885541, -30.96567210295], [139.69468150776, -17.47674988707] ] ] } } ] } ================================================ FILE: packages/turf-line-overlap/test/in/simple1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10, "stroke-opacity": 1 }, "geometry": { "type": "LineString", "coordinates": [ [115, -35], [125, -30], [135, -30], [145, -35] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 3, "stroke-opacity": 1 }, "geometry": { "type": "LineString", "coordinates": [ [115, -25], [125, -30], [135, -30], [145, -35], [145, -25] ] } } ] } ================================================ FILE: packages/turf-line-overlap/test/in/simple2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10, "stroke-opacity": 1 }, "geometry": { "type": "LineString", "coordinates": [ [115, -35], [125, -30], [135, -30], [145, -35] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 3, "stroke-opacity": 1 }, "geometry": { "type": "LineString", "coordinates": [ [115, -25], [125, -30], [135, -30], [145, -35] ] } } ] } ================================================ FILE: packages/turf-line-overlap/test/in/simple3.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#ff0000", "stroke-width": 10, "stroke-opacity": 1 }, "geometry": { "type": "LineString", "coordinates": [ [125, -30], [135, -30], [145, -35] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 3, "stroke-opacity": 1 }, "geometry": { "type": "LineString", "coordinates": [ [125, -30], [135, -30], [145, -35], [145, -25] ] } } ] } ================================================ FILE: packages/turf-line-overlap/test/out/boolean-line-overlap.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-22.564544677734375, 46.25917013377904], [-22.559051513671875, 46.32369743336783], [-22.446441650390625, 46.352141192009334], [-22.361297607421875, 46.32891323009468], [-22.361297607421875, 46.30472670751783] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-22.570724487304688, 46.36398839132818], [-22.444381713867188, 46.357354276167015], [-22.391510009765625, 46.3291502999477], [-22.29263305664062, 46.382464893261165] ] } } ] } ================================================ FILE: packages/turf-line-overlap/test/out/issue-#901-simplified.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#0F0", "fill": "#0F0", "stroke-width": 25 }, "geometry": { "type": "LineString", "coordinates": [ [2, 2], [4, 4] ] }, "bbox": [2, 2, 4, 4], "id": 0 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10, "stroke-opacity": 1 }, "geometry": { "type": "LineString", "coordinates": [ [2, 2], [4, 4] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 3, "stroke-opacity": 1 }, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [6, 6] ] } } ] } ================================================ FILE: packages/turf-line-overlap/test/out/issue-#901.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#0F0", "fill": "#0F0", "stroke-width": 25 }, "geometry": { "type": "LineString", "coordinates": [ [-113.33698987543352, 53.53214475018778], [-113.33690471442213, 53.53212132654082], [-113.33698987543352, 53.53214475018778], [-113.33704111881613, 53.53215959791441] ] }, "bbox": [ -113.33704111881613, 53.53214475018778, -113.33698987543352, 53.53215959791441 ], "id": 13 }, { "type": "Feature", "properties": { "stroke": "#0F0", "fill": "#0F0", "stroke-width": 25 }, "geometry": { "type": "LineString", "coordinates": [ [-113.33698987543352, 53.53214475018778], [-113.33690471442213, 53.53212132654082], [-113.33698987543352, 53.53214475018778], [-113.33704111881613, 53.53215959791441] ] }, "bbox": [ -113.33704111881613, 53.53214475018778, -113.33698987543352, 53.53215959791441 ], "id": 13 }, { "type": "Feature", "properties": { "stroke": "#0F0", "fill": "#0F0", "stroke-width": 25 }, "geometry": { "type": "LineString", "coordinates": [ [-113.33832502043951, 53.52244398828247], [-113.3384152645109, 53.52244409344282], [-113.33847575084239, 53.52244416392682], [-113.3384152645109, 53.52244409344282] ] }, "bbox": [ -113.3384152645109, 53.52244398828247, -113.33832502043951, 53.52244409344282 ], "id": 20 }, { "type": "Feature", "properties": { "stroke": "#0F0", "fill": "#0F0", "stroke-width": 25 }, "geometry": { "type": "LineString", "coordinates": [ [-113.33832502043951, 53.52244398828247], [-113.3384152645109, 53.52244409344282], [-113.33847575084239, 53.52244416392682], [-113.3384152645109, 53.52244409344282] ] }, "bbox": [ -113.3384152645109, 53.52244398828247, -113.33832502043951, 53.52244409344282 ], "id": 20 }, { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "stroke-width": 10, "stroke-opacity": 1, "fill-opacity": 0.1, "description": "output of an intersect call with a longer pipe and the other feature in this file" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-113.33847575084239, 53.52244416392682], [-113.33847394, 53.52299533509864], [-113.338470971, 53.52389165109878], [-113.338468309, 53.52469456909876], [-113.338467951, 53.5248023990988], [-113.338462214, 53.52653346709882], [-113.3384620759999, 53.52657586409872], [-113.3384619429999, 53.52661770709869], [-113.3384532659999, 53.52935323209886], [-113.338452983, 53.52944258409877], [-113.338452982, 53.52944333909876], [-113.3384522719999, 53.52962258909884], [-113.338449392, 53.53035074809878], [-113.33704111881613, 53.53215959791441], [-113.33698987543352, 53.53214475018778], [-113.33690471442213, 53.53212132654082], [-113.3382987129999, 53.53033083009888], [-113.3383022259999, 53.52944312809881], [-113.3383113299999, 53.52657569409888], [-113.3383232079999, 53.52299515809875], [-113.33832502043951, 53.52244398828247], [-113.3384152645109, 53.52244409344282], [-113.33847575084239, 53.52244416392682] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "stroke-width": 3, "stroke-opacity": 1, "fill-opacity": 0.1, "description": "shape which was intersected with a longer pipe to produce the pipe shown" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-113.34145274487872, 53.53230853007057], [-113.33797676517321, 53.53243070065233], [-113.33698987543352, 53.53214475018778], [-113.33287043896553, 53.53101169382826], [-113.33387712516304, 53.522438805202505], [-113.3384152645109, 53.52244409344282], [-113.3429534044069, 53.522449381683145], [-113.34145274487872, 53.53230853007057], [-113.34145274487872, 53.53230853007057], [-113.34145274487872, 53.53230853007057] ] ] } } ] } ================================================ FILE: packages/turf-line-overlap/test/out/polygons.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#0F0", "fill": "#0F0", "stroke-width": 25 }, "geometry": { "type": "LineString", "coordinates": [ [130.52038135971, -22.13975701932], [131.37809653737, -20.30857774535], [129.67954157692, -18.92360398694], [130.51910988115, -17.47899540098] ] } }, { "type": "Feature", "properties": { "stroke": "#0F0", "fill": "#0F0", "stroke-width": 25 }, "geometry": { "type": "LineString", "coordinates": [ [130.34864729879, -30.96772909058], [131.64065935144, -29.20137372199], [129.5926694017, -28.04905296815], [130.34739288016, -26.68605235913] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "stroke-width": 10, "stroke-opacity": 1, "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [120.14179343574, -17.48153498141], [120.1456007834, -30.96997373479], [130.34864729879, -30.96772909058], [131.64065935144, -29.20137372199], [129.5926694017, -28.04905296815], [130.34739288016, -26.68605235913], [125.76890918238, -26.68710193815], [125.76762773192, -22.1408865296], [130.52038135971, -22.13975701932], [131.37809653737, -20.30857774535], [129.67954157692, -18.92360398694], [130.51910988115, -17.47899540098], [120.14179343574, -17.48153498141] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "stroke-width": 3, "stroke-opacity": 1, "fill-opacity": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [139.69468150776, -17.47674988707], [130.51910988115, -17.47899540098], [129.67954157692, -18.92360398694], [131.37809653737, -20.30857774535], [130.52038135971, -22.13975701932], [135.29428724786, -22.138622473], [135.29556869831, -26.68491802042], [130.34739288016, -26.68605235913], [129.5926694017, -28.04905296815], [131.64065935144, -29.20137372199], [130.34864729879, -30.96772909058], [139.69848885541, -30.96567210295], [139.69468150776, -17.47674988707] ] ] } } ] } ================================================ FILE: packages/turf-line-overlap/test/out/simple1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#0F0", "fill": "#0F0", "stroke-width": 25 }, "geometry": { "type": "LineString", "coordinates": [ [125, -30], [135, -30], [145, -35] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10, "stroke-opacity": 1 }, "geometry": { "type": "LineString", "coordinates": [ [115, -35], [125, -30], [135, -30], [145, -35] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 3, "stroke-opacity": 1 }, "geometry": { "type": "LineString", "coordinates": [ [115, -25], [125, -30], [135, -30], [145, -35], [145, -25] ] } } ] } ================================================ FILE: packages/turf-line-overlap/test/out/simple2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#0F0", "fill": "#0F0", "stroke-width": 25 }, "geometry": { "type": "LineString", "coordinates": [ [125, -30], [135, -30], [145, -35] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10, "stroke-opacity": 1 }, "geometry": { "type": "LineString", "coordinates": [ [115, -35], [125, -30], [135, -30], [145, -35] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 3, "stroke-opacity": 1 }, "geometry": { "type": "LineString", "coordinates": [ [115, -25], [125, -30], [135, -30], [145, -35] ] } } ] } ================================================ FILE: packages/turf-line-overlap/test/out/simple3.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#0F0", "fill": "#0F0", "stroke-width": 25 }, "geometry": { "type": "LineString", "coordinates": [ [125, -30], [135, -30], [145, -35] ] } }, { "type": "Feature", "properties": { "stroke": "#ff0000", "stroke-width": 10, "stroke-opacity": 1 }, "geometry": { "type": "LineString", "coordinates": [ [125, -30], [135, -30], [145, -35] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 3, "stroke-opacity": 1 }, "geometry": { "type": "LineString", "coordinates": [ [125, -30], [135, -30], [145, -35], [145, -25] ] } } ] } ================================================ FILE: packages/turf-line-overlap/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { featureEach } from "@turf/meta"; import { featureCollection, lineString } from "@turf/helpers"; import { lineOverlap } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; let fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); // fixtures = fixtures.filter(({name}) => name.includes('#901')); test("turf-line-overlap", (t) => { for (const { filename, name, geojson } of fixtures) { const [source, target] = geojson.features; const shared = colorize( lineOverlap(source, target, geojson.properties), "#0F0" ); const results = featureCollection(shared.features.concat([source, target])); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEquals(results, loadJsonFileSync(directories.out + filename), name); } t.end(); }); test("turf-line-overlap - Geometry Object", (t) => { const line1 = lineString([ [115, -35], [125, -30], [135, -30], [145, -35], ]); const line2 = lineString([ [135, -30], [145, -35], ]); t.true( lineOverlap(line1.geometry, line2.geometry).features.length > 0, "support geometry object" ); t.end(); }); test("turf-line-overlap - multiple segments on same line", (t) => { const line1 = lineString([ [0, 1], [1, 1], [1, 0], [2, 0], [2, 1], [3, 1], [3, 0], [4, 0], [4, 1], [4, 0], ]); const line2 = lineString([ [0, 0], [6, 0], ]); t.true( lineOverlap(line1.geometry, line2.geometry).features.length === 2, "multiple segments on same line" ); t.true( lineOverlap(line2.geometry, line1.geometry).features.length === 2, "multiple segments on same line - swapped order" ); t.end(); }); function colorize(features, color = "#F00", width = 25) { const results = []; featureEach(features, (feature) => { feature.properties = { stroke: color, fill: color, "stroke-width": width, }; results.push(feature); }); if (features.type === "Feature") return results[0]; return featureCollection(results); } ================================================ FILE: packages/turf-line-overlap/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-line-overlap/types.ts ================================================ import { lineString, multiLineString, polygon, multiPolygon, } from "@turf/helpers"; import { lineOverlap } from "./index.js"; const line = lineString([ [0, 0], [10, 10], ]); const multiLine = multiLineString([ [ [0, 0], [10, 10], ], [ [30, 30], [50, 50], ], ]); const poly = polygon([ [ [0, 0], [10, 10], [15, 15], [0, 0], ], ]); const multiPoly = multiPolygon([ [ [ [0, 0], [10, 10], [15, 15], [0, 0], ], ], [ [ [5, 5], [30, 30], [45, 45], [5, 5], ], ], ]); lineOverlap(line, poly); lineOverlap(line, line); lineOverlap(multiPoly, line); lineOverlap(multiPoly, multiLine); lineOverlap(multiPoly, multiLine, { tolerance: 5 }); ================================================ FILE: packages/turf-line-segment/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-line-segment/README.md ================================================ # @turf/line-segment ## lineSegment Creates a [FeatureCollection][1] of 2-vertex [LineString][2] segments from a [(Multi)LineString][2] or [(Multi)Polygon][3]. ### Parameters * `geojson` **[GeoJSON][4]** GeoJSON Polygon or LineString ### Examples ```javascript var polygon = turf.polygon([[[-50, 5], [-40, -10], [-50, -10], [-40, 5], [-50, 5]]]); var segments = turf.lineSegment(polygon); //addToMap var addToMap = [polygon, segments] ``` Returns **[FeatureCollection][1]<[LineString][2]>** 2-vertex line segments [1]: https://tools.ietf.org/html/rfc7946#section-3.3 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [4]: https://tools.ietf.org/html/rfc7946#section-3 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/line-segment ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-line-segment/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { lineSegment } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); // Fixtures const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); /** * Benchmark Results * * 2-vertex-segment x 1,172,641 ops/sec ±1.89% (80 runs sampled) * feature-collection x 270,916 ops/sec ±1.49% (89 runs sampled) * linestring x 938,353 ops/sec ±1.21% (88 runs sampled) * multi-linestring x 451,359 ops/sec ±1.14% (89 runs sampled) * multi-polygon x 447,952 ops/sec ±1.37% (92 runs sampled) * polygon-with-holes x 390,985 ops/sec ±1.19% (86 runs sampled) * polygon x 873,856 ops/sec ±1.28% (88 runs sampled) */ const suite = new Benchmark.Suite("turf-line-segment"); fixtures.forEach(({ name, geojson }) => suite.add(name, () => lineSegment(geojson)) ); suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-line-segment/index.ts ================================================ import { BBox, Feature, FeatureCollection, LineString, MultiLineString, MultiPolygon, Polygon, } from "geojson"; import { featureCollection, lineString } from "@turf/helpers"; import { getCoords } from "@turf/invariant"; import { flattenEach } from "@turf/meta"; /** * Creates a {@link FeatureCollection} of 2-vertex {@link LineString} segments from a * {@link LineString|(Multi)LineString} or {@link Polygon|(Multi)Polygon}. * * @function * @param {GeoJSON} geojson GeoJSON Polygon or LineString * @returns {FeatureCollection} 2-vertex line segments * @example * var polygon = turf.polygon([[[-50, 5], [-40, -10], [-50, -10], [-40, 5], [-50, 5]]]); * var segments = turf.lineSegment(polygon); * * //addToMap * var addToMap = [polygon, segments] */ function lineSegment< G extends LineString | MultiLineString | Polygon | MultiPolygon, >( geojson: Feature | FeatureCollection | G ): FeatureCollection { if (!geojson) { throw new Error("geojson is required"); } const results: Array> = []; flattenEach(geojson, (feature: Feature) => { lineSegmentFeature(feature, results); }); return featureCollection(results); } /** * Line Segment * * @private * @param {Feature} geojson Line or polygon feature * @param {Array} results push to results * @returns {void} */ function lineSegmentFeature( geojson: Feature, results: Array> ) { let coords: number[][][] = []; const geometry = geojson.geometry; if (geometry !== null) { switch (geometry.type) { case "Polygon": coords = getCoords(geometry); break; case "LineString": coords = [getCoords(geometry)]; } coords.forEach((coord) => { const segments = createSegments(coord, geojson.properties); segments.forEach((segment) => { segment.id = results.length; results.push(segment); }); }); } } /** * Create Segments from LineString coordinates * * @private * @param {Array>} coords LineString coordinates * @param {*} properties GeoJSON properties * @returns {Array>} line segments */ function createSegments(coords: number[][], properties: any) { const segments: Array> = []; coords.reduce((previousCoords, currentCoords) => { const segment = lineString([previousCoords, currentCoords], properties); segment.bbox = bbox(previousCoords, currentCoords); segments.push(segment); return currentCoords; }); return segments; } /** * Create BBox between two coordinates (faster than @turf/bbox) * * @private * @param {Array} coords1 Point coordinate * @param {Array} coords2 Point coordinate * @returns {BBox} [west, south, east, north] */ function bbox(coords1: number[], coords2: number[]): BBox { const x1 = coords1[0]; const y1 = coords1[1]; const x2 = coords2[0]; const y2 = coords2[1]; const west = x1 < x2 ? x1 : x2; const south = y1 < y2 ? y1 : y2; const east = x1 > x2 ? x1 : x2; const north = y1 > y2 ? y1 : y2; return [west, south, east, north]; } export { lineSegment }; export default lineSegment; ================================================ FILE: packages/turf-line-segment/package.json ================================================ { "name": "@turf/line-segment", "version": "7.3.4", "description": "Creates line segments from a GeoJSON feature.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "line", "segment" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-line-segment/test/in/2-vertex-segment.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [130.60546875, -20.3034175184893], [134.12109375, -24.926294766395582] ] } } ================================================ FILE: packages/turf-line-segment/test/in/feature-collection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-77.031669, 38.878605], [-77.029609, 38.881946], [-77.020339, 38.884084], [-77.025661, 38.885821], [-77.021884, 38.889563], [-77.019824, 38.892368] ], [ [-77.041669, 38.885821], [-77.039609, 38.881946], [-77.030339, 38.884084], [-77.035661, 38.878605] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-77.0361328125, 38.8840513003232], [-77.02806472778319, 38.88602223128263], [-77.02536106109619, 38.888761400455074], [-77.02557563781738, 38.89266954433839], [-77.03368663787842, 38.88882820813984], [-77.03630447387695, 38.88769246895389], [-77.0361328125, 38.8840513003232] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-77.02810764312744, 38.883049111069546] } } ] } ================================================ FILE: packages/turf-line-segment/test/in/geometry-collection.geojson ================================================ { "type": "GeometryCollection", "geometries": [ { "type": "MultiLineString", "coordinates": [ [ [-77.031669, 38.878605], [-77.029609, 38.881946], [-77.020339, 38.884084], [-77.025661, 38.885821], [-77.021884, 38.889563], [-77.019824, 38.892368] ], [ [-77.041669, 38.885821], [-77.039609, 38.881946], [-77.030339, 38.884084], [-77.035661, 38.878605] ] ] }, { "type": "Polygon", "coordinates": [ [ [-77.0361328125, 38.8840513003232], [-77.02806472778319, 38.88602223128263], [-77.02536106109619, 38.888761400455074], [-77.02557563781738, 38.89266954433839], [-77.03368663787842, 38.88882820813984], [-77.03630447387695, 38.88769246895389], [-77.0361328125, 38.8840513003232] ] ] }, { "type": "Point", "coordinates": [-77.02810764312744, 38.883049111069546] } ] } ================================================ FILE: packages/turf-line-segment/test/in/linestring.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-51.1083984375, -2.943040910055132], [-47.6806640625, -0.8788717828324148], [-43.0224609375, -1.9771465537125645], [-41.0888671875, -4.784468966579362] ] } } ================================================ FILE: packages/turf-line-segment/test/in/multi-linestring.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-77.031669, 38.878605], [-77.029609, 38.881946], [-77.020339, 38.884084], [-77.025661, 38.885821], [-77.021884, 38.889563], [-77.019824, 38.892368] ], [ [-77.041669, 38.885821], [-77.039609, 38.881946], [-77.030339, 38.884084], [-77.035661, 38.878605] ] ] } } ================================================ FILE: packages/turf-line-segment/test/in/multi-polygon.geojson ================================================ { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-49.43847656249999, -8.798225459016345], [-39.7705078125, -8.798225459016345], [-39.7705078125, 0.4833927027896987], [-49.43847656249999, 0.4833927027896987], [-49.43847656249999, -8.798225459016345] ] ], [ [ [-45, -13.795406203132826], [-35.2001953125, -13.795406203132826], [-35.2001953125, -4.083452772038619], [-45, -4.083452772038619], [-45, -13.795406203132826] ] ] ] } } ================================================ FILE: packages/turf-line-segment/test/in/polygon-with-holes.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [111.4453125, -37.37015718405751], [153.6328125, -37.37015718405751], [153.6328125, -13.581920900545844], [111.4453125, -13.581920900545844], [111.4453125, -37.37015718405751] ], [ [121.81640624999999, -31.05293398570514], [121.81640624999999, -21.453068633086772], [145.1953125, -21.453068633086772], [145.1953125, -31.05293398570514], [121.81640624999999, -31.05293398570514] ], [ [114.873046875, -20.13847031245114], [120.05859375, -20.13847031245114], [120.05859375, -15.623036831528252], [114.873046875, -15.623036831528252], [114.873046875, -20.13847031245114] ] ] } } ] } ================================================ FILE: packages/turf-line-segment/test/in/polygon.geojson ================================================ { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-50, 5], [-40, -10], [-50, -10], [-40, 5], [-50, 5] ] ] } } ================================================ FILE: packages/turf-line-segment/test/out/2-vertex-segment.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [130.60546875, -20.3034175184893], [134.12109375, -24.926294766395582] ] }, "bbox": [130.60546875, -24.926294766395582, 134.12109375, -20.3034175184893], "id": 0 }, { "type": "Feature", "properties": { "stroke": "#000", "stroke-width": 3 }, "geometry": { "type": "LineString", "coordinates": [ [130.60546875, -20.3034175184893], [134.12109375, -24.926294766395582] ] } } ] } ================================================ FILE: packages/turf-line-segment/test/out/feature-collection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.031669, 38.878605], [-77.029609, 38.881946] ] }, "bbox": [-77.031669, 38.878605, -77.029609, 38.881946], "id": 0 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.029609, 38.881946], [-77.020339, 38.884084] ] }, "bbox": [-77.029609, 38.881946, -77.020339, 38.884084], "id": 1 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.020339, 38.884084], [-77.025661, 38.885821] ] }, "bbox": [-77.025661, 38.884084, -77.020339, 38.885821], "id": 2 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.025661, 38.885821], [-77.021884, 38.889563] ] }, "bbox": [-77.025661, 38.885821, -77.021884, 38.889563], "id": 3 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.021884, 38.889563], [-77.019824, 38.892368] ] }, "bbox": [-77.021884, 38.889563, -77.019824, 38.892368], "id": 4 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.041669, 38.885821], [-77.039609, 38.881946] ] }, "bbox": [-77.041669, 38.881946, -77.039609, 38.885821], "id": 5 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.039609, 38.881946], [-77.030339, 38.884084] ] }, "bbox": [-77.039609, 38.881946, -77.030339, 38.884084], "id": 6 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.030339, 38.884084], [-77.035661, 38.878605] ] }, "bbox": [-77.035661, 38.878605, -77.030339, 38.884084], "id": 7 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.0361328125, 38.8840513003232], [-77.02806472778319, 38.88602223128263] ] }, "bbox": [-77.0361328125, 38.8840513003232, -77.02806472778319, 38.88602223128263], "id": 8 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.02806472778319, 38.88602223128263], [-77.02536106109619, 38.888761400455074] ] }, "bbox": [ -77.02806472778319, 38.88602223128263, -77.02536106109619, 38.888761400455074 ], "id": 9 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.02536106109619, 38.888761400455074], [-77.02557563781738, 38.89266954433839] ] }, "bbox": [ -77.02557563781738, 38.888761400455074, -77.02536106109619, 38.89266954433839 ], "id": 10 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.02557563781738, 38.89266954433839], [-77.03368663787842, 38.88882820813984] ] }, "bbox": [ -77.03368663787842, 38.88882820813984, -77.02557563781738, 38.89266954433839 ], "id": 11 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.03368663787842, 38.88882820813984], [-77.03630447387695, 38.88769246895389] ] }, "bbox": [ -77.03630447387695, 38.88769246895389, -77.03368663787842, 38.88882820813984 ], "id": 12 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.03630447387695, 38.88769246895389], [-77.0361328125, 38.8840513003232] ] }, "bbox": [-77.03630447387695, 38.8840513003232, -77.0361328125, 38.88769246895389], "id": 13 }, { "type": "Feature", "properties": { "stroke": "#000", "stroke-width": 3 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-77.031669, 38.878605], [-77.029609, 38.881946], [-77.020339, 38.884084], [-77.025661, 38.885821], [-77.021884, 38.889563], [-77.019824, 38.892368] ], [ [-77.041669, 38.885821], [-77.039609, 38.881946], [-77.030339, 38.884084], [-77.035661, 38.878605] ] ] } }, { "type": "Feature", "properties": { "stroke": "#000", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-77.0361328125, 38.8840513003232], [-77.02806472778319, 38.88602223128263], [-77.02536106109619, 38.888761400455074], [-77.02557563781738, 38.89266954433839], [-77.03368663787842, 38.88882820813984], [-77.03630447387695, 38.88769246895389], [-77.0361328125, 38.8840513003232] ] ] } }, { "type": "Feature", "properties": { "stroke": "#000", "stroke-width": 3 }, "geometry": { "type": "Point", "coordinates": [-77.02810764312744, 38.883049111069546] } } ] } ================================================ FILE: packages/turf-line-segment/test/out/geometry-collection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.031669, 38.878605], [-77.029609, 38.881946] ] }, "bbox": [-77.031669, 38.878605, -77.029609, 38.881946], "id": 0 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.029609, 38.881946], [-77.020339, 38.884084] ] }, "bbox": [-77.029609, 38.881946, -77.020339, 38.884084], "id": 1 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.020339, 38.884084], [-77.025661, 38.885821] ] }, "bbox": [-77.025661, 38.884084, -77.020339, 38.885821], "id": 2 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.025661, 38.885821], [-77.021884, 38.889563] ] }, "bbox": [-77.025661, 38.885821, -77.021884, 38.889563], "id": 3 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.021884, 38.889563], [-77.019824, 38.892368] ] }, "bbox": [-77.021884, 38.889563, -77.019824, 38.892368], "id": 4 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.041669, 38.885821], [-77.039609, 38.881946] ] }, "bbox": [-77.041669, 38.881946, -77.039609, 38.885821], "id": 5 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.039609, 38.881946], [-77.030339, 38.884084] ] }, "bbox": [-77.039609, 38.881946, -77.030339, 38.884084], "id": 6 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.030339, 38.884084], [-77.035661, 38.878605] ] }, "bbox": [-77.035661, 38.878605, -77.030339, 38.884084], "id": 7 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.0361328125, 38.8840513003232], [-77.02806472778319, 38.88602223128263] ] }, "bbox": [-77.0361328125, 38.8840513003232, -77.02806472778319, 38.88602223128263], "id": 8 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.02806472778319, 38.88602223128263], [-77.02536106109619, 38.888761400455074] ] }, "bbox": [ -77.02806472778319, 38.88602223128263, -77.02536106109619, 38.888761400455074 ], "id": 9 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.02536106109619, 38.888761400455074], [-77.02557563781738, 38.89266954433839] ] }, "bbox": [ -77.02557563781738, 38.888761400455074, -77.02536106109619, 38.89266954433839 ], "id": 10 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.02557563781738, 38.89266954433839], [-77.03368663787842, 38.88882820813984] ] }, "bbox": [ -77.03368663787842, 38.88882820813984, -77.02557563781738, 38.89266954433839 ], "id": 11 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.03368663787842, 38.88882820813984], [-77.03630447387695, 38.88769246895389] ] }, "bbox": [ -77.03630447387695, 38.88769246895389, -77.03368663787842, 38.88882820813984 ], "id": 12 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.03630447387695, 38.88769246895389], [-77.0361328125, 38.8840513003232] ] }, "bbox": [-77.03630447387695, 38.8840513003232, -77.0361328125, 38.88769246895389], "id": 13 } ] } ================================================ FILE: packages/turf-line-segment/test/out/linestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-51.1083984375, -2.943040910055132], [-47.6806640625, -0.8788717828324148] ] }, "bbox": [-51.1083984375, -2.943040910055132, -47.6806640625, -0.8788717828324148], "id": 0 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-47.6806640625, -0.8788717828324148], [-43.0224609375, -1.9771465537125645] ] }, "bbox": [-47.6806640625, -1.9771465537125645, -43.0224609375, -0.8788717828324148], "id": 1 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-43.0224609375, -1.9771465537125645], [-41.0888671875, -4.784468966579362] ] }, "bbox": [-43.0224609375, -4.784468966579362, -41.0888671875, -1.9771465537125645], "id": 2 }, { "type": "Feature", "properties": { "stroke": "#000", "stroke-width": 3 }, "geometry": { "type": "LineString", "coordinates": [ [-51.1083984375, -2.943040910055132], [-47.6806640625, -0.8788717828324148], [-43.0224609375, -1.9771465537125645], [-41.0888671875, -4.784468966579362] ] } } ] } ================================================ FILE: packages/turf-line-segment/test/out/multi-linestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.031669, 38.878605], [-77.029609, 38.881946] ] }, "bbox": [-77.031669, 38.878605, -77.029609, 38.881946], "id": 0 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.029609, 38.881946], [-77.020339, 38.884084] ] }, "bbox": [-77.029609, 38.881946, -77.020339, 38.884084], "id": 1 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.020339, 38.884084], [-77.025661, 38.885821] ] }, "bbox": [-77.025661, 38.884084, -77.020339, 38.885821], "id": 2 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.025661, 38.885821], [-77.021884, 38.889563] ] }, "bbox": [-77.025661, 38.885821, -77.021884, 38.889563], "id": 3 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.021884, 38.889563], [-77.019824, 38.892368] ] }, "bbox": [-77.021884, 38.889563, -77.019824, 38.892368], "id": 4 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.041669, 38.885821], [-77.039609, 38.881946] ] }, "bbox": [-77.041669, 38.881946, -77.039609, 38.885821], "id": 5 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.039609, 38.881946], [-77.030339, 38.884084] ] }, "bbox": [-77.039609, 38.881946, -77.030339, 38.884084], "id": 6 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-77.030339, 38.884084], [-77.035661, 38.878605] ] }, "bbox": [-77.035661, 38.878605, -77.030339, 38.884084], "id": 7 }, { "type": "Feature", "properties": { "stroke": "#000", "stroke-width": 3 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-77.031669, 38.878605], [-77.029609, 38.881946], [-77.020339, 38.884084], [-77.025661, 38.885821], [-77.021884, 38.889563], [-77.019824, 38.892368] ], [ [-77.041669, 38.885821], [-77.039609, 38.881946], [-77.030339, 38.884084], [-77.035661, 38.878605] ] ] } } ] } ================================================ FILE: packages/turf-line-segment/test/out/multi-polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10, "foo": "bar" }, "geometry": { "type": "LineString", "coordinates": [ [-49.43847656249999, -8.798225459016345], [-39.7705078125, -8.798225459016345] ] }, "bbox": [ -49.43847656249999, -8.798225459016345, -39.7705078125, -8.798225459016345 ], "id": 0 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10, "foo": "bar" }, "geometry": { "type": "LineString", "coordinates": [ [-39.7705078125, -8.798225459016345], [-39.7705078125, 0.4833927027896987] ] }, "bbox": [-39.7705078125, -8.798225459016345, -39.7705078125, 0.4833927027896987], "id": 1 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10, "foo": "bar" }, "geometry": { "type": "LineString", "coordinates": [ [-39.7705078125, 0.4833927027896987], [-49.43847656249999, 0.4833927027896987] ] }, "bbox": [ -49.43847656249999, 0.4833927027896987, -39.7705078125, 0.4833927027896987 ], "id": 2 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10, "foo": "bar" }, "geometry": { "type": "LineString", "coordinates": [ [-49.43847656249999, 0.4833927027896987], [-49.43847656249999, -8.798225459016345] ] }, "bbox": [ -49.43847656249999, -8.798225459016345, -49.43847656249999, 0.4833927027896987 ], "id": 3 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10, "foo": "bar" }, "geometry": { "type": "LineString", "coordinates": [ [-45, -13.795406203132826], [-35.2001953125, -13.795406203132826] ] }, "bbox": [-45, -13.795406203132826, -35.2001953125, -13.795406203132826], "id": 4 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10, "foo": "bar" }, "geometry": { "type": "LineString", "coordinates": [ [-35.2001953125, -13.795406203132826], [-35.2001953125, -4.083452772038619] ] }, "bbox": [-35.2001953125, -13.795406203132826, -35.2001953125, -4.083452772038619], "id": 5 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10, "foo": "bar" }, "geometry": { "type": "LineString", "coordinates": [ [-35.2001953125, -4.083452772038619], [-45, -4.083452772038619] ] }, "bbox": [-45, -4.083452772038619, -35.2001953125, -4.083452772038619], "id": 6 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10, "foo": "bar" }, "geometry": { "type": "LineString", "coordinates": [ [-45, -4.083452772038619], [-45, -13.795406203132826] ] }, "bbox": [-45, -13.795406203132826, -45, -4.083452772038619], "id": 7 }, { "type": "Feature", "properties": { "stroke": "#000", "stroke-width": 3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-49.43847656249999, -8.798225459016345], [-39.7705078125, -8.798225459016345], [-39.7705078125, 0.4833927027896987], [-49.43847656249999, 0.4833927027896987], [-49.43847656249999, -8.798225459016345] ] ], [ [ [-45, -13.795406203132826], [-35.2001953125, -13.795406203132826], [-35.2001953125, -4.083452772038619], [-45, -4.083452772038619], [-45, -13.795406203132826] ] ] ] } } ] } ================================================ FILE: packages/turf-line-segment/test/out/polygon-with-holes.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [111.4453125, -37.37015718405751], [153.6328125, -37.37015718405751] ] }, "bbox": [111.4453125, -37.37015718405751, 153.6328125, -37.37015718405751], "id": 0 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [153.6328125, -37.37015718405751], [153.6328125, -13.581920900545844] ] }, "bbox": [153.6328125, -37.37015718405751, 153.6328125, -13.581920900545844], "id": 1 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [153.6328125, -13.581920900545844], [111.4453125, -13.581920900545844] ] }, "bbox": [111.4453125, -13.581920900545844, 153.6328125, -13.581920900545844], "id": 2 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [111.4453125, -13.581920900545844], [111.4453125, -37.37015718405751] ] }, "bbox": [111.4453125, -37.37015718405751, 111.4453125, -13.581920900545844], "id": 3 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [121.81640624999999, -31.05293398570514], [121.81640624999999, -21.453068633086772] ] }, "bbox": [ 121.81640624999999, -31.05293398570514, 121.81640624999999, -21.453068633086772 ], "id": 4 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [121.81640624999999, -21.453068633086772], [145.1953125, -21.453068633086772] ] }, "bbox": [121.81640624999999, -21.453068633086772, 145.1953125, -21.453068633086772], "id": 5 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [145.1953125, -21.453068633086772], [145.1953125, -31.05293398570514] ] }, "bbox": [145.1953125, -31.05293398570514, 145.1953125, -21.453068633086772], "id": 6 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [145.1953125, -31.05293398570514], [121.81640624999999, -31.05293398570514] ] }, "bbox": [121.81640624999999, -31.05293398570514, 145.1953125, -31.05293398570514], "id": 7 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [114.873046875, -20.13847031245114], [120.05859375, -20.13847031245114] ] }, "bbox": [114.873046875, -20.13847031245114, 120.05859375, -20.13847031245114], "id": 8 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [120.05859375, -20.13847031245114], [120.05859375, -15.623036831528252] ] }, "bbox": [120.05859375, -20.13847031245114, 120.05859375, -15.623036831528252], "id": 9 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [120.05859375, -15.623036831528252], [114.873046875, -15.623036831528252] ] }, "bbox": [114.873046875, -15.623036831528252, 120.05859375, -15.623036831528252], "id": 10 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [114.873046875, -15.623036831528252], [114.873046875, -20.13847031245114] ] }, "bbox": [114.873046875, -20.13847031245114, 114.873046875, -15.623036831528252], "id": 11 }, { "type": "Feature", "properties": { "stroke": "#000", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [111.4453125, -37.37015718405751], [153.6328125, -37.37015718405751], [153.6328125, -13.581920900545844], [111.4453125, -13.581920900545844], [111.4453125, -37.37015718405751] ], [ [121.81640624999999, -31.05293398570514], [121.81640624999999, -21.453068633086772], [145.1953125, -21.453068633086772], [145.1953125, -31.05293398570514], [121.81640624999999, -31.05293398570514] ], [ [114.873046875, -20.13847031245114], [120.05859375, -20.13847031245114], [120.05859375, -15.623036831528252], [114.873046875, -15.623036831528252], [114.873046875, -20.13847031245114] ] ] } } ] } ================================================ FILE: packages/turf-line-segment/test/out/polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10, "foo": "bar" }, "geometry": { "type": "LineString", "coordinates": [ [-50, 5], [-40, -10] ] }, "bbox": [-50, -10, -40, 5], "id": 0 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10, "foo": "bar" }, "geometry": { "type": "LineString", "coordinates": [ [-40, -10], [-50, -10] ] }, "bbox": [-50, -10, -40, -10], "id": 1 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10, "foo": "bar" }, "geometry": { "type": "LineString", "coordinates": [ [-50, -10], [-40, 5] ] }, "bbox": [-50, -10, -40, 5], "id": 2 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10, "foo": "bar" }, "geometry": { "type": "LineString", "coordinates": [ [-40, 5], [-50, 5] ] }, "bbox": [-50, 5, -40, 5], "id": 3 }, { "type": "Feature", "properties": { "stroke": "#000", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-50, 5], [-40, -10], [-50, -10], [-40, 5], [-50, 5] ] ] } } ] } ================================================ FILE: packages/turf-line-segment/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { featureEach } from "@turf/meta"; import { featureCollection, lineString } from "@turf/helpers"; import { lineSegment } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("turf-line-segment", (t) => { for (const { name, filename, geojson } of fixtures) { const results = colorSegments(lineSegment(geojson)); featureEach(geojson, (feature) => { feature.properties = { stroke: "#000", "stroke-width": 3, }; results.features.push(feature); }); // Save output if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEqual(results, loadJsonFileSync(directories.out + filename), name); } t.end(); }); test("turf-line-segment - Geometry Object", (t) => { const line = lineString([ [115, -35], [125, -30], [135, -30], [145, -35], ]); t.true(lineSegment(line.geometry).features.length > 0, "geometry object"); t.end(); }); // Preview 2-vertex LineStrings with colors function colorSegments(segments) { const results = featureCollection([]); featureEach(segments, (feature, index) => { const r = index % 2 === 0 ? "F" : "0"; const g = index % 2 === 0 ? "0" : "0"; const b = index % 2 === 0 ? "0" : "F"; feature.properties = Object.assign( { stroke: "#" + r + g + b, "stroke-width": 10, }, feature.properties ); results.features.push(feature); }); return results; } ================================================ FILE: packages/turf-line-segment/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-line-slice/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-line-slice/README.md ================================================ # @turf/line-slice ## lineSlice Takes a [line][1], a start [Point][2], and a stop point and returns a subsection of the line in-between those points. The start & stop points don't need to fall exactly on the line. This can be useful for extracting only the part of a route between waypoints. ### Parameters * `startPt` **[Coord][3]** starting point * `stopPt` **[Coord][3]** stopping point * `line` **([Feature][4]<[LineString][1]> | [LineString][1])** line to slice ### Examples ```javascript var line = turf.lineString([ [-77.031669, 38.878605], [-77.029609, 38.881946], [-77.020339, 38.884084], [-77.025661, 38.885821], [-77.021884, 38.889563], [-77.019824, 38.892368] ]); var start = turf.point([-77.029609, 38.881946]); var stop = turf.point([-77.021884, 38.889563]); var sliced = turf.lineSlice(start, stop, line); //addToMap var addToMap = [start, stop, line] ``` Returns **[Feature][4]<[LineString][1]>** sliced line [1]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.1 [4]: https://tools.ietf.org/html/rfc7946#section-3.2 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/line-slice ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-line-slice/bench.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import Benchmark from "benchmark"; import { point } from "@turf/helpers"; import { lineSlice } from "./index.js"; import { loadJsonFileSync } from "load-json-file"; import { Feature, FeatureCollection, LineString } from "geojson"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const route1: FeatureCollection = loadJsonFileSync( path.join(__dirname, "test", "in", "route1.geojson") ); const route2: FeatureCollection = loadJsonFileSync( path.join(__dirname, "test", "in", "route2.geojson") ); const line1: FeatureCollection = loadJsonFileSync( path.join(__dirname, "test", "in", "line1.geojson") ); const start1 = point([-97.79617309570313, 22.254624939561698]); const stop1 = point([-97.72750854492188, 22.057641623615734]); const start2 = point([-79.0850830078125, 37.60117623656667]); const stop2 = point([-77.7667236328125, 38.65119833229951]); const start3 = point([-112.60660171508789, 45.96021963947196]); const stop3 = point([-111.97265625, 48.84302835299516]); const suite = new Benchmark.Suite("turf-line-slice"); suite .add("turf-line-slice#simple", function () { lineSlice(start1, stop1, line1.features[0] as Feature); }) .add("turf-line-slice#route1", function () { lineSlice(start2, stop2, route1.features[0] as Feature); }) .add("turf-line-slice#route2", function () { lineSlice(start3, stop3, route2.features[0] as Feature); }) .on("cycle", function (event: any) { console.log(String(event.target)); }) .run(); ================================================ FILE: packages/turf-line-slice/index.ts ================================================ import { getCoords, getType } from "@turf/invariant"; import { Coord, lineString as linestring } from "@turf/helpers"; import { nearestPointOnLine } from "@turf/nearest-point-on-line"; import type { Feature, LineString, Point } from "geojson"; /** * Takes a {@link LineString|line}, a start {@link Point}, and a stop point * and returns a subsection of the line in-between those points. * The start & stop points don't need to fall exactly on the line. * * This can be useful for extracting only the part of a route between waypoints. * * @function * @param {Coord} startPt starting point * @param {Coord} stopPt stopping point * @param {Feature|LineString} line line to slice * @returns {Feature} sliced line * @example * var line = turf.lineString([ * [-77.031669, 38.878605], * [-77.029609, 38.881946], * [-77.020339, 38.884084], * [-77.025661, 38.885821], * [-77.021884, 38.889563], * [-77.019824, 38.892368] * ]); * var start = turf.point([-77.029609, 38.881946]); * var stop = turf.point([-77.021884, 38.889563]); * * var sliced = turf.lineSlice(start, stop, line); * * //addToMap * var addToMap = [start, stop, line] */ function lineSlice( startPt: Coord, stopPt: Coord, line: Feature | LineString ): Feature { // Validation const coords = getCoords(line); if (getType(line) !== "LineString") throw new Error("line must be a LineString"); const startVertex = nearestPointOnLine(line, startPt); const stopVertex = nearestPointOnLine(line, stopPt); // Workaround until we can fix backwards incompatible nearestPointOnLine bug // #3016 fixSegmentIndexBounds(line, startVertex); fixSegmentIndexBounds(line, stopVertex); const ends = startVertex.properties.segmentIndex <= stopVertex.properties.segmentIndex ? [startVertex, stopVertex] : [stopVertex, startVertex]; const clipCoords = [ends[0].geometry.coordinates]; for ( let i = ends[0].properties.segmentIndex + 1; i < ends[1].properties.segmentIndex + 1; i++ ) { clipCoords.push(coords[i]); } clipCoords.push(ends[1].geometry.coordinates); return linestring(clipCoords, line.type === "Feature" ? line.properties : {}); } function fixSegmentIndexBounds( line: Feature | LineString, vertex: Feature ) { // There is a bug in nearestPointOnLine where the returned segmentIndex can // refer to a non-existent segment (overflows). Until we can fix that bug // (see https://github.com/Turfjs/turf/issues/3016) we adjust the // segmentIndex here to make sure it's in range. let geometry: LineString = line.type === "Feature" ? line.geometry : line; if (vertex.properties.segmentIndex >= geometry.coordinates.length - 1) { // segmentIndex refers to a non-existent segment beyond the end of the // lineString. Override it. vertex.properties.segmentIndex = geometry.coordinates.length - 2; } } export { lineSlice }; export default lineSlice; ================================================ FILE: packages/turf-line-slice/package.json ================================================ { "name": "@turf/line-slice", "version": "7.3.4", "description": "Useful for extracting only the part of a route between waypoints.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "linestring", "geojson", "linear", "reference", "line", "distance" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/nearest-point-on-line": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-line-slice/test/in/avoid-duplicated-end-points.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [3, 0], [2, -1], [2, 2] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2, 2] } } ] } ================================================ FILE: packages/turf-line-slice/test/in/line1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-97.88131713867188, 22.466878364528448], [-97.82089233398438, 22.175960091218524], [-97.6190185546875, 21.8704201873689] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-97.796173, 22.254624] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-97.727508, 22.057641] } } ] } ================================================ FILE: packages/turf-line-slice/test/in/line2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [1, 1] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0.1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9, 0.8] } } ] } ================================================ FILE: packages/turf-line-slice/test/in/route1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-79.254923, 36.98394], [-79.254923, 36.983939], [-79.255326, 36.9838], [-79.255401, 36.983774], [-79.25576, 36.983664], [-79.256795, 36.984137], [-79.257537, 36.984478], [-79.258539, 36.984925], [-79.259498, 36.985353], [-79.260286, 36.985712], [-79.261405, 36.986222], [-79.262933, 36.986928], [-79.263237, 36.987071], [-79.263755, 36.987296], [-79.264086, 36.987423], [-79.264167, 36.987446], [-79.264338, 36.987486], [-79.264414, 36.987501], [-79.264618, 36.987531], [-79.2648, 36.987542], [-79.264982, 36.987537], [-79.265163, 36.987517], [-79.26703, 36.987355], [-79.267952, 36.98726], [-79.268404, 36.987226], [-79.268771, 36.987197], [-79.26955, 36.987117], [-79.271398, 36.986946], [-79.271488, 36.986941], [-79.271698, 36.986925], [-79.271936, 36.986898], [-79.272231, 36.986852], [-79.272474, 36.986785], [-79.272711, 36.986705], [-79.272895, 36.986632], [-79.273059, 36.986552], [-79.273646, 36.986245], [-79.274224, 36.985925], [-79.274887, 36.985592], [-79.275308, 36.985365], [-79.275672, 36.98517], [-79.276249, 36.984876], [-79.277101, 36.984433], [-79.277425, 36.984259], [-79.277918, 36.983982], [-79.27799, 36.98395], [-79.278179, 36.98385], [-79.278261, 36.9838], [-79.278335, 36.983745], [-79.278421, 36.983666], [-79.27844, 36.983647], [-79.278502, 36.983577], [-79.278548, 36.983511], [-79.278614, 36.983381], [-79.278654, 36.983273], [-79.278711, 36.983011], [-79.278763, 36.98269], [-79.278806, 36.982485], [-79.278866, 36.982282], [-79.278952, 36.982101], [-79.279023, 36.981984], [-79.280178, 36.980418], [-79.280259, 36.980319], [-79.280355, 36.980229], [-79.280419, 36.98018], [-79.280578, 36.980082], [-79.280666, 36.980038], [-79.280783, 36.979994], [-79.280908, 36.979963], [-79.281301, 36.979913], [-79.281646, 36.979874], [-79.282145, 36.979835], [-79.282797, 36.97977], [-79.283144, 36.979743], [-79.283618, 36.97972], [-79.28399, 36.979706], [-79.284447, 36.979695], [-79.284904, 36.979697], [-79.286913, 36.979638], [-79.287201, 36.979628], [-79.287954, 36.979612], [-79.288037, 36.979611], [-79.288397, 36.97962], [-79.288697, 36.979643], [-79.289908, 36.979722], [-79.289994, 36.979724], [-79.290136, 36.979716], [-79.290248, 36.979699], [-79.290503, 36.979632], [-79.291043, 36.979454], [-79.291563, 36.979269], [-79.292467, 36.97896], [-79.292759, 36.978877], [-79.292963, 36.978832], [-79.293286, 36.978778], [-79.293549, 36.978746], [-79.293649, 36.978738], [-79.293755, 36.978729], [-79.293858, 36.978731], [-79.294028, 36.978747], [-79.294162, 36.978771], [-79.294243, 36.9788], [-79.294439, 36.978883], [-79.294626, 36.978979], [-79.294782, 36.979072], [-79.294921, 36.979174], [-79.295023, 36.979263], [-79.295281, 36.979534], [-79.295458, 36.979739], [-79.296347, 36.980843], [-79.296549, 36.981064], [-79.296594, 36.981095], [-79.296695, 36.981144], [-79.296788, 36.98117], [-79.296916, 36.981184], [-79.297032, 36.981182], [-79.297147, 36.981165], [-79.297933, 36.980962], [-79.298145, 36.980893], [-79.298401, 36.98079], [-79.298602, 36.980696], [-79.298795, 36.980593], [-79.299134, 36.980402], [-79.299407, 36.980244], [-79.299963, 36.9799], [-79.301767, 36.97881], [-79.301976, 36.978691], [-79.3021, 36.978619], [-79.302508, 36.978369], [-79.302614, 36.978309], [-79.3028, 36.97822], [-79.302995, 36.978145], [-79.303113, 36.978114], [-79.303153, 36.978249], [-79.303232, 36.978565], [-79.303319, 36.978989], [-79.303326, 36.979184], [-79.303313, 36.979346], [-79.30324, 36.979748], [-79.303136, 36.980362], [-79.303088, 36.980609], [-79.302996, 36.981143], [-79.302982, 36.981226], [-79.302977, 36.981321], [-79.302986, 36.98144], [-79.303013, 36.981556], [-79.303057, 36.98167], [-79.303191, 36.9819], [-79.303336, 36.982126], [-79.303702, 36.982652], [-79.304322, 36.983486], [-79.304588, 36.98382], [-79.304756, 36.984051], [-79.304903, 36.984229], [-79.305059, 36.984403], [-79.305145, 36.984487], [-79.305336, 36.984648], [-79.305612, 36.98486], [-79.30569, 36.984915], [-79.305765, 36.984974], [-79.305944, 36.98513], [-79.306108, 36.985295], [-79.306259, 36.985469], [-79.306333, 36.98557], [-79.306437, 36.985737], [-79.306524, 36.985911], [-79.306595, 36.98609], [-79.306677, 36.986365], [-79.306734, 36.98662], [-79.306773, 36.986878], [-79.306759, 36.986998], [-79.306724, 36.987146], [-79.306621, 36.987426], [-79.306591, 36.987545], [-79.306555, 36.987745], [-79.306536, 36.987984], [-79.30653, 36.988172], [-79.306539, 36.988321], [-79.30655, 36.988398], [-79.306566, 36.988507], [-79.306673, 36.988967], [-79.306789, 36.989416], [-79.30681, 36.989518], [-79.306831, 36.98969], [-79.306833, 36.989828], [-79.306822, 36.989888], [-79.306771, 36.990067], [-79.306696, 36.99024], [-79.306569, 36.990463], [-79.306374, 36.99078], [-79.30633, 36.990863], [-79.306292, 36.990972], [-79.306271, 36.991084], [-79.306268, 36.991229], [-79.306282, 36.991421], [-79.306323, 36.991648], [-79.30657, 36.992516], [-79.306601, 36.992703], [-79.306614, 36.992892], [-79.306598, 36.993111], [-79.306569, 36.993287], [-79.306553, 36.993345], [-79.306526, 36.993432], [-79.306466, 36.993574], [-79.306313, 36.993848], [-79.305971, 36.994382], [-79.305826, 36.994647], [-79.305382, 36.995598], [-79.305197, 36.995963], [-79.305065, 36.996284], [-79.304983, 36.996521], [-79.304954, 36.99668], [-79.30495, 36.996815], [-79.304959, 36.996932], [-79.304988, 36.997077], [-79.305024, 36.99719], [-79.305111, 36.99739], [-79.305197, 36.997567], [-79.30532, 36.997782], [-79.305429, 36.997949], [-79.305577, 36.998153], [-79.306017, 36.99873], [-79.306204, 36.998965], [-79.306407, 36.999192], [-79.306624, 36.999411], [-79.30672, 36.999489], [-79.306828, 36.999557], [-79.306922, 36.999602], [-79.307072, 36.999656], [-79.307354, 36.999723], [-79.307628, 36.999778], [-79.308892, 36.999988], [-79.309029, 37.00002], [-79.309135, 37.000056], [-79.30926, 37.000112], [-79.309374, 37.00018], [-79.309478, 37.000259], [-79.30959, 37.000372], [-79.309743, 37.000552], [-79.31029, 37.001344], [-79.31037, 37.001451], [-79.310486, 37.001568], [-79.310598, 37.001654], [-79.310697, 37.001714], [-79.310838, 37.001785], [-79.310991, 37.001844], [-79.31115, 37.001891], [-79.311632, 37.001979], [-79.312359, 37.002135], [-79.312455, 37.002156], [-79.312915, 37.002271], [-79.313026, 37.002296], [-79.313639, 37.002422], [-79.314311, 37.002515], [-79.314769, 37.002553], [-79.315227, 37.002582], [-79.315352, 37.002604], [-79.315472, 37.002641], [-79.315543, 37.002685], [-79.315621, 37.00275], [-79.315685, 37.002824], [-79.315725, 37.002889], [-79.315888, 37.002832], [-79.316221, 37.002733], [-79.316448, 37.002678], [-79.31752, 37.002455], [-79.318524, 37.002275], [-79.319059, 37.002211], [-79.319268, 37.002199], [-79.319435, 37.0022], [-79.319651, 37.002214], [-79.319786, 37.002226], [-79.320258, 37.002279], [-79.320522, 37.002298], [-79.320786, 37.002302], [-79.320953, 37.002288], [-79.321116, 37.002258], [-79.321274, 37.002213], [-79.321381, 37.00217], [-79.321762, 37.002001], [-79.322382, 37.001698], [-79.322844, 37.001466], [-79.323023, 37.001376], [-79.323292, 37.001249], [-79.32357, 37.001134], [-79.323943, 37.001003], [-79.324098, 37.000958], [-79.324162, 37.000945], [-79.32513, 37.000843], [-79.325325, 37.000814], [-79.325517, 37.000777], [-79.325753, 37.000719], [-79.327186, 37.000266], [-79.327482, 37.000173], [-79.327802, 37.00008], [-79.328598, 36.999838], [-79.329158, 36.999654], [-79.329204, 36.999715], [-79.329343, 36.999894], [-79.32942, 36.999975], [-79.329588, 37.000125], [-79.329742, 37.000239], [-79.329777, 37.000256], [-79.329869, 37.000291], [-79.329988, 37.000315], [-79.330091, 37.000318], [-79.33027, 37.000316], [-79.330449, 37.000298], [-79.331035, 37.000223], [-79.331427, 37.000184], [-79.331855, 37.000129], [-79.333009, 37.000023], [-79.334568, 36.999869], [-79.335002, 36.999826], [-79.33552, 36.999806], [-79.33606, 36.999814], [-79.336208, 36.999833], [-79.336352, 36.999866], [-79.33649, 36.999913], [-79.336644, 36.999986], [-79.336856, 37.000123], [-79.336962, 37.000203], [-79.337096, 37.000316], [-79.337325, 37.000539], [-79.337519, 37.000761], [-79.338522, 37.001965], [-79.339126, 37.002688], [-79.339574, 37.003185], [-79.340385, 37.004106], [-79.340479, 37.004212], [-79.340603, 37.004341], [-79.340773, 37.00449], [-79.340929, 37.004602], [-79.341131, 37.004723], [-79.341632, 37.004968], [-79.341875, 37.005087], [-79.342172, 37.005233], [-79.342594, 37.00542], [-79.343189, 37.005708], [-79.343817, 37.006011], [-79.344455, 37.006335], [-79.344712, 37.00647], [-79.345697, 37.006916], [-79.345837, 37.006985], [-79.346006, 37.00708], [-79.346221, 37.007218], [-79.347403, 37.008016], [-79.347493, 37.008071], [-79.347634, 37.008171], [-79.347763, 37.008281], [-79.347971, 37.008497], [-79.348051, 37.008623], [-79.348135, 37.008786], [-79.348201, 37.008954], [-79.34825, 37.009126], [-79.348316, 37.00954], [-79.348397, 37.010196], [-79.34854, 37.01111], [-79.348616, 37.011496], [-79.348778, 37.012266], [-79.349159, 37.013946], [-79.349315, 37.014628], [-79.349636, 37.015919], [-79.349688, 37.016183], [-79.349795, 37.016628], [-79.349854, 37.016827], [-79.349915, 37.01701], [-79.350064, 37.017337], [-79.350135, 37.017464], [-79.350159, 37.017499], [-79.350325, 37.017735], [-79.35042, 37.017865], [-79.350584, 37.018129], [-79.35072, 37.01842], [-79.350808, 37.018683], [-79.35089, 37.018981], [-79.350968, 37.019317], [-79.35119, 37.020219], [-79.351251, 37.020445], [-79.351346, 37.020719], [-79.351414, 37.020888], [-79.351505, 37.021079], [-79.351682, 37.021459], [-79.351825, 37.02176], [-79.352185, 37.022473], [-79.352628, 37.023433], [-79.352751, 37.023743], [-79.35282, 37.023863], [-79.352895, 37.023965], [-79.353012, 37.024078], [-79.353078, 37.024127], [-79.353186, 37.024186], [-79.353325, 37.024244], [-79.353398, 37.024265], [-79.353421, 37.02427], [-79.353621, 37.024315], [-79.353675, 37.024321], [-79.35392, 37.024336], [-79.354286, 37.024379], [-79.354423, 37.024385], [-79.354844, 37.024375], [-79.355058, 37.024359], [-79.355214, 37.024339], [-79.355354, 37.024308], [-79.355614, 37.024238], [-79.355718, 37.024209], [-79.355965, 37.024125], [-79.356147, 37.024057], [-79.356485, 37.02394], [-79.356546, 37.023919], [-79.356797, 37.023824], [-79.356964, 37.023769], [-79.357077, 37.023757], [-79.357196, 37.023767], [-79.357262, 37.023786], [-79.357309, 37.023811], [-79.35735, 37.023849], [-79.357388, 37.023905], [-79.357541, 37.024317], [-79.357583, 37.024391], [-79.357634, 37.024438], [-79.357685, 37.024467], [-79.357747, 37.024487], [-79.35783, 37.024497], [-79.357899, 37.024495], [-79.35801, 37.02448], [-79.358102, 37.02446], [-79.358409, 37.025941], [-79.358471, 37.026316], [-79.358502, 37.026637], [-79.358517, 37.026844], [-79.358519, 37.027185], [-79.358497, 37.027679], [-79.358457, 37.028033], [-79.358398, 37.028378], [-79.358301, 37.028779], [-79.358082, 37.029574], [-79.357957, 37.030026], [-79.357813, 37.030609], [-79.357745, 37.03095], [-79.357685, 37.031344], [-79.357656, 37.031612], [-79.357621, 37.032199], [-79.357619, 37.032445], [-79.357631, 37.032766], [-79.357637, 37.032893], [-79.357666, 37.033258], [-79.357711, 37.033639], [-79.357789, 37.034066], [-79.357875, 37.034441], [-79.357922, 37.034622], [-79.358521, 37.036938], [-79.358613, 37.037315], [-79.358687, 37.037658], [-79.358786, 37.038217], [-79.358856, 37.038791], [-79.358911, 37.039356], [-79.358965, 37.0401], [-79.359051, 37.041306], [-79.359073, 37.041825], [-79.359059, 37.042471], [-79.359012, 37.042954], [-79.35899, 37.04313], [-79.358922, 37.043537], [-79.358829, 37.043973], [-79.358773, 37.044171], [-79.358704, 37.044417], [-79.358541, 37.044914], [-79.358352, 37.045429], [-79.357856, 37.04678], [-79.357794, 37.046961], [-79.357564, 37.047556], [-79.357409, 37.047915], [-79.357338, 37.048062], [-79.357278, 37.048184], [-79.356942, 37.048801], [-79.356841, 37.048967], [-79.356589, 37.049349], [-79.356363, 37.049677], [-79.354212, 37.052783], [-79.353972, 37.053148], [-79.353865, 37.053295], [-79.353452, 37.053889], [-79.352197, 37.055711], [-79.352126, 37.055808], [-79.351983, 37.056023], [-79.351596, 37.056539], [-79.351413, 37.056761], [-79.35122, 37.056979], [-79.351018, 37.057191], [-79.35075, 37.057445], [-79.350603, 37.057584], [-79.35029, 37.057856], [-79.348032, 37.059645], [-79.346954, 37.060488], [-79.345892, 37.06133], [-79.345295, 37.061797], [-79.344778, 37.062208], [-79.344716, 37.062258], [-79.343942, 37.062866], [-79.343259, 37.06342], [-79.342925, 37.063722], [-79.342732, 37.063907], [-79.342302, 37.064351], [-79.342055, 37.06463], [-79.341843, 37.064885], [-79.341424, 37.065452], [-79.341048, 37.066036], [-79.340718, 37.066647], [-79.340066, 37.068047], [-79.338982, 37.070343], [-79.336951, 37.074656], [-79.336672, 37.075265], [-79.335622, 37.077497], [-79.335265, 37.078252], [-79.33489, 37.079062], [-79.334833, 37.079182], [-79.334222, 37.080477], [-79.333262, 37.082521], [-79.333001, 37.083079], [-79.332628, 37.084028], [-79.332548, 37.084278], [-79.332388, 37.08478], [-79.332201, 37.085539], [-79.33204, 37.086421], [-79.33196, 37.086978], [-79.331907, 37.087757], [-79.331871, 37.088536], [-79.33185, 37.089317], [-79.331805, 37.090324], [-79.331772, 37.091338], [-79.331768, 37.092235], [-79.33183, 37.093576], [-79.331943, 37.095022], [-79.332045, 37.096198], [-79.332341, 37.099713], [-79.332397, 37.100421], [-79.332436, 37.101086], [-79.332443, 37.1013], [-79.332438, 37.10199], [-79.332418, 37.102426], [-79.332391, 37.102795], [-79.332337, 37.103324], [-79.332244, 37.103966], [-79.332205, 37.104185], [-79.332175, 37.104355], [-79.332056, 37.104907], [-79.332041, 37.104978], [-79.331903, 37.105494], [-79.331733, 37.106053], [-79.331559, 37.106562], [-79.33131, 37.107195], [-79.331178, 37.107501], [-79.330959, 37.107973], [-79.330748, 37.108399], [-79.330489, 37.108876], [-79.330365, 37.109093], [-79.330155, 37.10944], [-79.329757, 37.110058], [-79.328813, 37.111446], [-79.328701, 37.111611], [-79.327118, 37.113932], [-79.327107, 37.113947], [-79.326498, 37.114802], [-79.326178, 37.115223], [-79.326128, 37.115289], [-79.32568, 37.115855], [-79.325061, 37.116595], [-79.324816, 37.116878], [-79.324497, 37.117235], [-79.324161, 37.117601], [-79.323816, 37.117964], [-79.323589, 37.118194], [-79.323104, 37.118678], [-79.322015, 37.119732], [-79.320826, 37.12089], [-79.320279, 37.121415], [-79.31993, 37.121729], [-79.319276, 37.122271], [-79.318828, 37.122609], [-79.318377, 37.122925], [-79.317535, 37.123462], [-79.316595, 37.123987], [-79.315586, 37.124473], [-79.314958, 37.124742], [-79.311931, 37.125973], [-79.303986, 37.129196], [-79.303177, 37.129555], [-79.302367, 37.129915], [-79.30095, 37.130617], [-79.298871, 37.131691], [-79.298008, 37.132146], [-79.293574, 37.134491], [-79.293108, 37.134749], [-79.292712, 37.134937], [-79.292278, 37.135125], [-79.291836, 37.1353], [-79.291351, 37.135473], [-79.290905, 37.135615], [-79.290365, 37.135772], [-79.289641, 37.135941], [-79.289078, 37.136055], [-79.288222, 37.136184], [-79.287781, 37.136228], [-79.287205, 37.136269], [-79.281895, 37.136526], [-79.280512, 37.136607], [-79.279731, 37.13667], [-79.278968, 37.136747], [-79.277922, 37.136872], [-79.276244, 37.13712], [-79.273494, 37.137624], [-79.272005, 37.137904], [-79.271794, 37.137944], [-79.266159, 37.138985], [-79.265643, 37.139056], [-79.265084, 37.139119], [-79.264404, 37.139177], [-79.263826, 37.139213], [-79.263263, 37.139234], [-79.262666, 37.139241], [-79.262103, 37.139234], [-79.26149, 37.139213], [-79.260895, 37.13918], [-79.260488, 37.139149], [-79.257811, 37.138859], [-79.253283, 37.138354], [-79.251817, 37.138189], [-79.251311, 37.138138], [-79.25082, 37.138104], [-79.250344, 37.138087], [-79.249949, 37.138091], [-79.249141, 37.138125], [-79.248701, 37.138169], [-79.248255, 37.138232], [-79.247815, 37.138303], [-79.247404, 37.138388], [-79.246983, 37.138492], [-79.24619, 37.138741], [-79.246034, 37.138799], [-79.245567, 37.138991], [-79.243639, 37.139795], [-79.242121, 37.140435], [-79.241618, 37.140648], [-79.241125, 37.14089], [-79.240755, 37.141103], [-79.240471, 37.141293], [-79.240237, 37.141475], [-79.240023, 37.141661], [-79.239659, 37.142024], [-79.238717, 37.143115], [-79.238653, 37.143189], [-79.238443, 37.143404], [-79.23822, 37.14361], [-79.237972, 37.143817], [-79.237711, 37.144013], [-79.237424, 37.144206], [-79.237139, 37.144378], [-79.236846, 37.144536], [-79.23672, 37.144599], [-79.235366, 37.145185], [-79.235031, 37.145327], [-79.233118, 37.146139], [-79.232943, 37.146214], [-79.23213, 37.146559], [-79.23159, 37.146789], [-79.231268, 37.146943], [-79.230971, 37.147103], [-79.230723, 37.147248], [-79.230589, 37.147333], [-79.230303, 37.147527], [-79.230067, 37.147704], [-79.229831, 37.147902], [-79.229608, 37.148108], [-79.229398, 37.148324], [-79.229192, 37.148559], [-79.229002, 37.148802], [-79.228823, 37.149065], [-79.228683, 37.149299], [-79.228557, 37.149537], [-79.228436, 37.149807], [-79.228332, 37.15008], [-79.22824, 37.150371], [-79.228165, 37.150679], [-79.228144, 37.150787], [-79.22795, 37.1522], [-79.227939, 37.152282], [-79.227922, 37.152405], [-79.227831, 37.1531], [-79.227768, 37.153577], [-79.22775, 37.153704], [-79.227707, 37.153951], [-79.227614, 37.154338], [-79.227519, 37.154642], [-79.227394, 37.154981], [-79.227259, 37.155289], [-79.227113, 37.155579], [-79.227008, 37.155764], [-79.226979, 37.155814], [-79.226931, 37.155892], [-79.22673, 37.156196], [-79.226531, 37.156466], [-79.226359, 37.156679], [-79.226091, 37.156981], [-79.225836, 37.157239], [-79.225577, 37.157477], [-79.225307, 37.157704], [-79.225033, 37.15791], [-79.224838, 37.158043], [-79.223223, 37.159106], [-79.222625, 37.159494], [-79.222577, 37.159525], [-79.222526, 37.159559], [-79.222269, 37.159725], [-79.221758, 37.160065], [-79.219427, 37.161585], [-79.218294, 37.162324], [-79.218211, 37.162378], [-79.216923, 37.163217], [-79.216426, 37.163539], [-79.215909, 37.16389], [-79.215531, 37.164171], [-79.215221, 37.164425], [-79.214936, 37.164678], [-79.214674, 37.164929], [-79.214292, 37.165324], [-79.214244, 37.165374], [-79.213081, 37.166582], [-79.212642, 37.167038], [-79.212368, 37.167324], [-79.212048, 37.167658], [-79.211768, 37.16795], [-79.211486, 37.168245], [-79.211416, 37.168318], [-79.211008, 37.168744], [-79.210963, 37.168791], [-79.210689, 37.16908], [-79.210304, 37.16953], [-79.2101, 37.169782], [-79.209923, 37.170006], [-79.209526, 37.170538], [-79.209343, 37.170798], [-79.207037, 37.174039], [-79.206764, 37.174435], [-79.206634, 37.174641], [-79.206469, 37.174929], [-79.206273, 37.17532], [-79.20615, 37.175603], [-79.206073, 37.175802], [-79.206026, 37.175929], [-79.205916, 37.176273], [-79.205845, 37.176539], [-79.205757, 37.176917], [-79.205696, 37.177164], [-79.205658, 37.177349], [-79.205603, 37.177589], [-79.205562, 37.177759], [-79.205539, 37.177863], [-79.205487, 37.178091], [-79.205427, 37.178344], [-79.205364, 37.178607], [-79.205297, 37.178889], [-79.205253, 37.179068], [-79.20519, 37.179332], [-79.205122, 37.179618], [-79.205055, 37.179895], [-79.204997, 37.180138], [-79.204614, 37.181773], [-79.204588, 37.181883], [-79.204488, 37.182314], [-79.204319, 37.183043], [-79.204265, 37.183268], [-79.204123, 37.18388], [-79.203924, 37.184747], [-79.203855, 37.185167], [-79.203781, 37.185725], [-79.203767, 37.185869], [-79.203714, 37.186727], [-79.203688, 37.188358], [-79.203665, 37.189574], [-79.203624, 37.192626], [-79.203627, 37.192665], [-79.203588, 37.193792], [-79.203572, 37.194229], [-79.203568, 37.194309], [-79.203559, 37.194539], [-79.203553, 37.194676], [-79.203543, 37.194919], [-79.203531, 37.195199], [-79.203502, 37.195859], [-79.203483, 37.196276], [-79.203468, 37.196579], [-79.203458, 37.196792], [-79.203433, 37.197322], [-79.203422, 37.197563], [-79.20341, 37.197824], [-79.203397, 37.198095], [-79.20339, 37.198254], [-79.203379, 37.19847], [-79.203358, 37.198936], [-79.20334, 37.19935], [-79.203304, 37.200071], [-79.203262, 37.200536], [-79.203244, 37.200686], [-79.203162, 37.201241], [-79.203073, 37.201722], [-79.20306, 37.201793], [-79.203026, 37.201977], [-79.202836, 37.203003], [-79.202752, 37.203459], [-79.202563, 37.204478], [-79.202452, 37.205079], [-79.202395, 37.205385], [-79.201856, 37.208299], [-79.201805, 37.208574], [-79.201702, 37.209126], [-79.201673, 37.209268], [-79.201619, 37.209479], [-79.201573, 37.209638], [-79.201505, 37.209836], [-79.201407, 37.210085], [-79.201284, 37.210341], [-79.201114, 37.21064], [-79.201026, 37.210776], [-79.200882, 37.21098], [-79.200649, 37.211282], [-79.200396, 37.211554], [-79.199727, 37.212167], [-79.199637, 37.212249], [-79.199553, 37.212325], [-79.199391, 37.212473], [-79.199159, 37.212684], [-79.19865, 37.213144], [-79.197756, 37.213946], [-79.197588, 37.214097], [-79.197252, 37.214415], [-79.196922, 37.214731], [-79.196487, 37.215166], [-79.196055, 37.215596], [-79.195714, 37.216042], [-79.195395, 37.216449], [-79.194175, 37.218086], [-79.193942, 37.2184], [-79.193714, 37.218705], [-79.193339, 37.219208], [-79.193103, 37.219523], [-79.192804, 37.219924], [-79.192465, 37.220384], [-79.191972, 37.221056], [-79.191665, 37.221486], [-79.191271, 37.222039], [-79.191066, 37.222328], [-79.190837, 37.222648], [-79.190786, 37.222724], [-79.190591, 37.223024], [-79.190561, 37.223069], [-79.190114, 37.223762], [-79.189976, 37.223994], [-79.189786, 37.224314], [-79.189538, 37.224731], [-79.189441, 37.224896], [-79.189231, 37.225287], [-79.188873, 37.225949], [-79.188647, 37.226369], [-79.188578, 37.226497], [-79.188422, 37.22682], [-79.187747, 37.228226], [-79.187638, 37.228454], [-79.186752, 37.230317], [-79.186236, 37.23142], [-79.186183, 37.231531], [-79.186143, 37.231633], [-79.186012, 37.231905], [-79.185971, 37.232009], [-79.185901, 37.232204], [-79.185821, 37.232467], [-79.185783, 37.232629], [-79.185746, 37.232787], [-79.185712, 37.232989], [-79.185564, 37.234115], [-79.18554, 37.234342], [-79.185535, 37.234388], [-79.185527, 37.234464], [-79.185489, 37.234824], [-79.185459, 37.235133], [-79.185442, 37.235447], [-79.185444, 37.235802], [-79.185467, 37.236157], [-79.185494, 37.236478], [-79.185509, 37.236629], [-79.185568, 37.237037], [-79.185613, 37.237268], [-79.185642, 37.237403], [-79.185719, 37.237706], [-79.185791, 37.237965], [-79.185811, 37.238037], [-79.185899, 37.238345], [-79.185952, 37.238527], [-79.18597, 37.23859], [-79.186042, 37.238834], [-79.186525, 37.240494], [-79.186638, 37.240882], [-79.186786, 37.241392], [-79.186995, 37.242108], [-79.187061, 37.242336], [-79.187075, 37.242384], [-79.187298, 37.243149], [-79.187378, 37.243422], [-79.187527, 37.243936], [-79.187774, 37.244774], [-79.187853, 37.245008], [-79.187949, 37.245331], [-79.187975, 37.245426], [-79.18809, 37.245933], [-79.188158, 37.246339], [-79.188193, 37.246639], [-79.188214, 37.246935], [-79.188219, 37.247189], [-79.188219, 37.247284], [-79.188204, 37.247624], [-79.188173, 37.24795], [-79.188121, 37.248287], [-79.188078, 37.248502], [-79.188012, 37.248777], [-79.187964, 37.248948], [-79.18752, 37.250322], [-79.187502, 37.250377], [-79.187461, 37.250489], [-79.187101, 37.251604], [-79.186977, 37.251986], [-79.186803, 37.252487], [-79.186647, 37.252862], [-79.186473, 37.253233], [-79.1864, 37.253375], [-79.186369, 37.253435], [-79.186196, 37.253727], [-79.186096, 37.253883], [-79.185846, 37.254253], [-79.185619, 37.254587], [-79.184816, 37.255765], [-79.184332, 37.256471], [-79.184251, 37.256583], [-79.183919, 37.257073], [-79.183282, 37.258009], [-79.183273, 37.258023], [-79.182658, 37.258928], [-79.182428, 37.259266], [-79.182236, 37.259548], [-79.182189, 37.259617], [-79.181677, 37.260371], [-79.180889, 37.261527], [-79.180329, 37.262346], [-79.179966, 37.262877], [-79.178561, 37.264935], [-79.177834, 37.265998], [-79.17762, 37.266312], [-79.177577, 37.266375], [-79.177344, 37.266717], [-79.177268, 37.266828], [-79.175738, 37.269066], [-79.175293, 37.269718], [-79.175059, 37.270062], [-79.175024, 37.270113], [-79.174746, 37.27052], [-79.174499, 37.270885], [-79.174225, 37.271286], [-79.17318, 37.27282], [-79.172596, 37.273676], [-79.172062, 37.274457], [-79.17205, 37.274476], [-79.171892, 37.274707], [-79.171746, 37.274919], [-79.170612, 37.276581], [-79.170091, 37.277344], [-79.170074, 37.277368], [-79.169014, 37.27887], [-79.168768, 37.279279], [-79.168446, 37.279751], [-79.168095, 37.28026], [-79.167791, 37.280704], [-79.167004, 37.281854], [-79.166839, 37.282126], [-79.166686, 37.282417], [-79.166553, 37.282715], [-79.166455, 37.282978], [-79.166365, 37.283271], [-79.166331, 37.283406], [-79.166277, 37.283662], [-79.166236, 37.283934], [-79.166211, 37.284233], [-79.166208, 37.284331], [-79.16621, 37.284606], [-79.166232, 37.284894], [-79.166273, 37.28518], [-79.166341, 37.285491], [-79.166394, 37.28568], [-79.166419, 37.28576], [-79.16653, 37.286061], [-79.16656, 37.286133], [-79.166601, 37.286228], [-79.167073, 37.287187], [-79.167342, 37.287727], [-79.167647, 37.288335], [-79.167961, 37.288961], [-79.168213, 37.289466], [-79.168669, 37.290363], [-79.169252, 37.291516], [-79.169707, 37.292425], [-79.170019, 37.293049], [-79.170164, 37.293337], [-79.170762, 37.294525], [-79.171017, 37.295032], [-79.171197, 37.29539], [-79.171228, 37.295451], [-79.171707, 37.296402], [-79.171854, 37.296694], [-79.172057, 37.297099], [-79.172329, 37.297639], [-79.172756, 37.298485], [-79.172921, 37.29877], [-79.173118, 37.299071], [-79.173326, 37.299351], [-79.1734, 37.299443], [-79.173711, 37.299824], [-79.174643, 37.300928], [-79.177789, 37.304649], [-79.17841, 37.305383], [-79.179563, 37.306751], [-79.18128, 37.308787], [-79.181492, 37.309036], [-79.181949, 37.309573], [-79.182599, 37.310336], [-79.183198, 37.311046], [-79.183775, 37.311729], [-79.183964, 37.311947], [-79.18428, 37.312314], [-79.18536, 37.313557], [-79.18553, 37.313753], [-79.18588, 37.314159], [-79.186286, 37.314624], [-79.186592, 37.314975], [-79.186893, 37.31532], [-79.187155, 37.315623], [-79.187287, 37.315796], [-79.187433, 37.315958], [-79.187603, 37.316193], [-79.187705, 37.316348], [-79.187781, 37.316469], [-79.187895, 37.316666], [-79.188063, 37.316995], [-79.188211, 37.31734], [-79.188267, 37.317488], [-79.188574, 37.31828], [-79.18873, 37.318682], [-79.188773, 37.318793], [-79.188818, 37.318907], [-79.188983, 37.319332], [-79.189167, 37.319817], [-79.18919, 37.319881], [-79.189276, 37.320122], [-79.189293, 37.320183], [-79.189372, 37.320484], [-79.189407, 37.320635], [-79.189445, 37.320825], [-79.189477, 37.321015], [-79.189492, 37.321115], [-79.189533, 37.321458], [-79.189536, 37.321492], [-79.189586, 37.322119], [-79.189602, 37.322319], [-79.189637, 37.32275], [-79.189647, 37.322876], [-79.189704, 37.323523], [-79.189737, 37.323892], [-79.189747, 37.323997], [-79.189761, 37.324147], [-79.189781, 37.324375], [-79.189798, 37.324545], [-79.189823, 37.324722], [-79.189861, 37.324935], [-79.189896, 37.325095], [-79.189922, 37.3252], [-79.190034, 37.325593], [-79.190115, 37.325884], [-79.190279, 37.326471], [-79.190558, 37.327468], [-79.190626, 37.327737], [-79.190656, 37.327855], [-79.190719, 37.328102], [-79.190893, 37.328783], [-79.19093, 37.328914], [-79.19114, 37.329665], [-79.191197, 37.329849], [-79.191289, 37.330174], [-79.191411, 37.330604], [-79.191427, 37.330662], [-79.191549, 37.331144], [-79.191612, 37.331407], [-79.191674, 37.33166], [-79.191713, 37.331945], [-79.191731, 37.332216], [-79.191727, 37.3324], [-79.191718, 37.332618], [-79.191688, 37.333114], [-79.191671, 37.333265], [-79.191652, 37.333506], [-79.191625, 37.33369], [-79.191591, 37.333978], [-79.191586, 37.334109], [-79.191605, 37.334336], [-79.19161, 37.334672], [-79.191612, 37.334771], [-79.191619, 37.335165], [-79.191615, 37.335425], [-79.191612, 37.335464], [-79.191591, 37.335798], [-79.191573, 37.33597], [-79.19153, 37.336198], [-79.191511, 37.3363], [-79.191476, 37.336481], [-79.191396, 37.336901], [-79.191254, 37.33724], [-79.191108, 37.337564], [-79.190891, 37.337852], [-79.190707, 37.338004], [-79.190446, 37.338136], [-79.190159, 37.338232], [-79.189809, 37.338303], [-79.189504, 37.338343], [-79.189039, 37.338414], [-79.188663, 37.33847], [-79.188351, 37.338526], [-79.18802, 37.338571], [-79.18767, 37.338617], [-79.187276, 37.338677], [-79.18683, 37.338758], [-79.186448, 37.338854], [-79.186232, 37.338986], [-79.186034, 37.339158], [-79.185913, 37.339381], [-79.185862, 37.339654], [-79.185792, 37.339958], [-79.185735, 37.340246], [-79.185608, 37.340565], [-79.185474, 37.340849], [-79.185264, 37.341152], [-79.185009, 37.341421], [-79.184748, 37.341658], [-79.184399, 37.341989], [-79.184093, 37.342254], [-79.183658, 37.342682], [-79.18294, 37.343536], [-79.182113, 37.344505], [-79.181077, 37.345699], [-79.180004, 37.346871], [-79.178729, 37.348196], [-79.177389, 37.349407], [-79.177129, 37.349621], [-79.176626, 37.350036], [-79.173129, 37.353092], [-79.169752, 37.356318], [-79.169186, 37.356859], [-79.166439, 37.359647], [-79.165165, 37.360856], [-79.164528, 37.361444], [-79.163946, 37.361878], [-79.162943, 37.362614], [-79.161891, 37.363349], [-79.159885, 37.364693], [-79.158866, 37.365389], [-79.157915, 37.36609], [-79.156262, 37.367299], [-79.153378, 37.36939], [-79.1513, 37.370777], [-79.148798, 37.372337], [-79.146813, 37.373529], [-79.146135, 37.37394], [-79.145298, 37.374385], [-79.144399, 37.374808], [-79.143032, 37.375351], [-79.142887, 37.375396], [-79.141407, 37.375861], [-79.13952, 37.376309], [-79.137442, 37.376753], [-79.136385, 37.376976], [-79.135221, 37.37722], [-79.134065, 37.377456], [-79.132756, 37.377733], [-79.131505, 37.377997], [-79.130701, 37.378165], [-79.129655, 37.378385], [-79.128812, 37.378561], [-79.127809, 37.378776], [-79.127166, 37.378891], [-79.124907, 37.379433], [-79.122351, 37.380007], [-79.119924, 37.380555], [-79.118369, 37.380958], [-79.116892, 37.381492], [-79.11429, 37.382508], [-79.111589, 37.383564], [-79.110432, 37.384015], [-79.108723, 37.384663], [-79.107004, 37.385341], [-79.10533, 37.38597], [-79.10529, 37.385969], [-79.104874, 37.386095], [-79.104406, 37.386191], [-79.103958, 37.38624], [-79.103328, 37.386271], [-79.101681, 37.386155], [-79.101144, 37.386117], [-79.100418, 37.386038], [-79.097991, 37.385843], [-79.09636, 37.385744], [-79.095982, 37.385658], [-79.095845, 37.385614], [-79.09571, 37.385555], [-79.095567, 37.38548], [-79.095427, 37.38539], [-79.095308, 37.385296], [-79.09517, 37.385161], [-79.09509, 37.385054], [-79.094998, 37.384905], [-79.094916, 37.384737], [-79.094844, 37.384528], [-79.094656, 37.383845], [-79.094531, 37.38345], [-79.094325, 37.383054], [-79.094038, 37.38276], [-79.093621, 37.382467], [-79.093187, 37.382294], [-79.092689, 37.382201], [-79.092284, 37.382201], [-79.091903, 37.382257], [-79.091551, 37.382364], [-79.091187, 37.382541], [-79.090959, 37.382723], [-79.090789, 37.382882], [-79.090589, 37.383115], [-79.090443, 37.383376], [-79.090284, 37.383744], [-79.090225, 37.384], [-79.090179, 37.384541], [-79.090062, 37.385779], [-79.089925, 37.386644], [-79.089849, 37.387226], [-79.089779, 37.387541], [-79.089689, 37.387836], [-79.0895, 37.38838], [-79.089436, 37.388633], [-79.089405, 37.388841], [-79.089289, 37.389685], [-79.089161, 37.39093], [-79.089008, 37.392008], [-79.08881, 37.394069], [-79.088768, 37.394579], [-79.088645, 37.395885], [-79.088477, 37.397207], [-79.087956, 37.401181], [-79.087825, 37.401823], [-79.087665, 37.402308], [-79.087554, 37.402629], [-79.08736, 37.403142], [-79.087142, 37.403562], [-79.086923, 37.403937], [-79.086762, 37.404195], [-79.086439, 37.404708], [-79.086251, 37.405002], [-79.085982, 37.405393], [-79.085647, 37.405896], [-79.085037, 37.406824], [-79.084691, 37.407346], [-79.084239, 37.407998], [-79.084081, 37.408208], [-79.083969, 37.408376], [-79.083852, 37.408534], [-79.083752, 37.408705], [-79.083641, 37.408893], [-79.08253, 37.41059], [-79.082107, 37.41155], [-79.081937, 37.412163], [-79.081833, 37.412538], [-79.081757, 37.413176], [-79.08171, 37.413903], [-79.081751, 37.414774], [-79.081781, 37.415758], [-79.081777, 37.417393], [-79.081646, 37.41901], [-79.081485, 37.420256], [-79.081292, 37.421219], [-79.081057, 37.422257], [-79.080513, 37.424117], [-79.07951, 37.427155], [-79.078061, 37.431195], [-79.077269, 37.433524], [-79.076993, 37.434391], [-79.076647, 37.435495], [-79.076395, 37.436608], [-79.076304, 37.437254], [-79.076229, 37.438019], [-79.076213, 37.439312], [-79.076213, 37.439413], [-79.076155, 37.442774], [-79.07614, 37.443179], [-79.076116, 37.443841], [-79.076046, 37.446058], [-79.075976, 37.449173], [-79.076002, 37.451689], [-79.076065, 37.4523], [-79.076262, 37.453], [-79.076579, 37.453683], [-79.076982, 37.454312], [-79.077536, 37.45501], [-79.079739, 37.457229], [-79.080689, 37.458217], [-79.081531, 37.459252], [-79.082085, 37.460038], [-79.082441, 37.460738], [-79.082708, 37.461304], [-79.082968, 37.461981], [-79.083137, 37.462694], [-79.083265, 37.463513], [-79.083293, 37.464338], [-79.083287, 37.464745], [-79.083277, 37.465166], [-79.083236, 37.465743], [-79.083136, 37.466259], [-79.082678, 37.468029], [-79.082438, 37.469156], [-79.08215, 37.470371], [-79.081963, 37.471033], [-79.081827, 37.471415], [-79.081408, 37.472342], [-79.081005, 37.47309], [-79.080296, 37.474045], [-79.079641, 37.474751], [-79.078249, 37.476094], [-79.077451, 37.477058], [-79.076776, 37.477863], [-79.076213, 37.478711], [-79.075638, 37.479763], [-79.075274, 37.480624], [-79.074869, 37.481821], [-79.074675, 37.482594], [-79.074634, 37.482892], [-79.074593, 37.483204], [-79.07457, 37.483627], [-79.074448, 37.484732], [-79.074331, 37.485753], [-79.074167, 37.486518], [-79.073888, 37.487326], [-79.073467, 37.488074], [-79.07305, 37.488846], [-79.072616, 37.489619], [-79.072018, 37.490699], [-79.07163, 37.49136], [-79.070791, 37.492896], [-79.070146, 37.494186], [-79.06953, 37.495438], [-79.068703, 37.497026], [-79.067817, 37.498799], [-79.067177, 37.500098], [-79.066497, 37.501471], [-79.066168, 37.502341], [-79.065974, 37.503063], [-79.065895, 37.503746], [-79.065857, 37.504329], [-79.065851, 37.505804], [-79.065851, 37.506847], [-79.065828, 37.508187], [-79.065831, 37.509824], [-79.0658, 37.510657], [-79.065769, 37.511273], [-79.065628, 37.51191], [-79.065455, 37.512506], [-79.065165, 37.513111], [-79.064807, 37.513823], [-79.064426, 37.514512], [-79.063986, 37.515424], [-79.063804, 37.515903], [-79.063545, 37.516788], [-79.063328, 37.51796], [-79.063264, 37.519296], [-79.063311, 37.520208], [-79.063487, 37.521209], [-79.063645, 37.522214], [-79.063845, 37.523275], [-79.06425, 37.525364], [-79.064871, 37.528602], [-79.065376, 37.531264], [-79.066057, 37.534819], [-79.066725, 37.538252], [-79.0674, 37.541904], [-79.06794, 37.544546], [-79.068021, 37.545221], [-79.068093, 37.545891], [-79.068075, 37.546616], [-79.067977, 37.547323], [-79.067805, 37.547989], [-79.06729, 37.549617], [-79.066508, 37.552189], [-79.066203, 37.55312], [-79.065916, 37.554199], [-79.06571, 37.554864], [-79.065358, 37.555901], [-79.06462, 37.558162], [-79.064236, 37.559374], [-79.064086, 37.559848], [-79.063835, 37.560896], [-79.063609, 37.561383], [-79.063256, 37.561986], [-79.062896, 37.562503], [-79.062134, 37.563345], [-79.061625, 37.563753], [-79.06094, 37.564213], [-79.058641, 37.565583], [-79.05758, 37.566208], [-79.056639, 37.566768], [-79.055935, 37.567192], [-79.055742, 37.567302], [-79.055553, 37.567416], [-79.055246, 37.567615], [-79.054927, 37.567838], [-79.054748, 37.567977], [-79.054525, 37.568169], [-79.05429, 37.568391], [-79.054239, 37.568442], [-79.054034, 37.568657], [-79.053873, 37.56885], [-79.053657, 37.569143], [-79.053524, 37.569347], [-79.053368, 37.569618], [-79.053228, 37.569894], [-79.053172, 37.570026], [-79.053043, 37.570358], [-79.05286, 37.57095], [-79.052677, 37.571527], [-79.052485, 37.572133], [-79.052132, 37.573261], [-79.051632, 37.57486], [-79.051348, 37.57574], [-79.051123, 37.576286], [-79.051087, 37.576361], [-79.050788, 37.576916], [-79.050662, 37.577116], [-79.050472, 37.577395], [-79.050278, 37.577652], [-79.050057, 37.577924], [-79.049759, 37.578262], [-79.049412, 37.578608], [-79.049047, 37.578931], [-79.047001, 37.580602], [-79.046515, 37.580994], [-79.046166, 37.58126], [-79.045909, 37.581455], [-79.04561, 37.58167], [-79.045264, 37.581887], [-79.044961, 37.582077], [-79.044149, 37.582573], [-79.04353, 37.582927], [-79.04291, 37.58327], [-79.042129, 37.58371], [-79.041873, 37.583864], [-79.041806, 37.58391], [-79.041621, 37.584017], [-79.041414, 37.584155], [-79.041178, 37.58431], [-79.040635, 37.584689], [-79.039894, 37.585255], [-79.039608, 37.585491], [-79.03912, 37.585904], [-79.038845, 37.586155], [-79.038474, 37.586513], [-79.03781, 37.587198], [-79.037358, 37.587719], [-79.037086, 37.588056], [-79.036877, 37.588331], [-79.036498, 37.588836], [-79.036258, 37.589205], [-79.035926, 37.589739], [-79.034645, 37.591992], [-79.034482, 37.592286], [-79.034097, 37.592957], [-79.033913, 37.593255], [-79.033669, 37.593669], [-79.033006, 37.594819], [-79.032654, 37.595452], [-79.032044, 37.596522], [-79.031678, 37.597159], [-79.031353, 37.597735], [-79.03004, 37.600074], [-79.029644, 37.600763], [-79.028963, 37.601951], [-79.028685, 37.602397], [-79.02851, 37.602662], [-79.028221, 37.603043], [-79.027978, 37.603341], [-79.027692, 37.60368], [-79.027548, 37.60383], [-79.027306, 37.604072], [-79.027105, 37.604269], [-79.02697, 37.604392], [-79.026652, 37.60468], [-79.026083, 37.605207], [-79.026036, 37.60525], [-79.025989, 37.605294], [-79.025872, 37.605402], [-79.02555, 37.605685], [-79.025303, 37.605893], [-79.025239, 37.605951], [-79.025075, 37.606102], [-79.024795, 37.606358], [-79.024408, 37.606702], [-79.024072, 37.607013], [-79.024053, 37.607031], [-79.023787, 37.607264], [-79.023498, 37.607516], [-79.023027, 37.607911], [-79.022811, 37.60807], [-79.022583, 37.608218], [-79.022393, 37.608329], [-79.022103, 37.608478], [-79.021864, 37.608585], [-79.021424, 37.608752], [-79.020855, 37.608965], [-79.020271, 37.609195], [-79.020171, 37.609236], [-79.019921, 37.609348], [-79.019569, 37.609526], [-79.019341, 37.609661], [-79.019134, 37.609801], [-79.018938, 37.609951], [-79.018736, 37.61013], [-79.018557, 37.610318], [-79.018408, 37.6105], [-79.018273, 37.610689], [-79.018177, 37.610845], [-79.018077, 37.611005], [-79.017942, 37.61127], [-79.01775, 37.611733], [-79.017583, 37.612195], [-79.017453, 37.612536], [-79.01736, 37.612779], [-79.017077, 37.613518], [-79.016316, 37.615651], [-79.016211, 37.615921], [-79.015957, 37.616661], [-79.015442, 37.618041], [-79.015171, 37.618767], [-79.015044, 37.619085], [-79.014896, 37.619401], [-79.014725, 37.619699], [-79.014609, 37.619891], [-79.014507, 37.620046], [-79.014326, 37.620291], [-79.014076, 37.620611], [-79.013882, 37.620808], [-79.013583, 37.621079], [-79.012998, 37.621504], [-79.01238, 37.621893], [-79.010646, 37.622959], [-79.01003, 37.623323], [-79.009112, 37.623886], [-79.007841, 37.62468], [-79.007669, 37.624786], [-79.00613, 37.625753], [-79.00574, 37.625992], [-79.004933, 37.626484], [-79.004251, 37.626912], [-79.004139, 37.626981], [-79.003154, 37.627592], [-79.001641, 37.628516], [-79.001111, 37.628835], [-79.00072, 37.62907], [-79.000623, 37.62914], [-79.000217, 37.629394], [-78.998912, 37.630202], [-78.998196, 37.630645], [-78.997598, 37.631025], [-78.997526, 37.631071], [-78.997241, 37.631274], [-78.996875, 37.631534], [-78.996217, 37.63205], [-78.995656, 37.632525], [-78.995017, 37.633129], [-78.994464, 37.633668], [-78.993794, 37.634338], [-78.992582, 37.635539], [-78.99241, 37.635715], [-78.992112, 37.636], [-78.991971, 37.636127], [-78.991598, 37.636454], [-78.991319, 37.636676], [-78.991111, 37.636827], [-78.990724, 37.637089], [-78.990344, 37.637324], [-78.989967, 37.637537], [-78.989578, 37.637737], [-78.988855, 37.638052], [-78.98807, 37.638382], [-78.986736, 37.63892], [-78.986454, 37.639034], [-78.985803, 37.639316], [-78.984897, 37.639687], [-78.98388, 37.640096], [-78.983117, 37.640414], [-78.982726, 37.640573], [-78.981774, 37.640959], [-78.979687, 37.64182], [-78.978231, 37.642417], [-78.977005, 37.64291], [-78.97646, 37.643116], [-78.975777, 37.643333], [-78.975711, 37.643354], [-78.97542, 37.643425], [-78.974834, 37.643551], [-78.974604, 37.64359], [-78.974067, 37.643681], [-78.973393, 37.643752], [-78.972559, 37.643813], [-78.972242, 37.643839], [-78.970006, 37.64399], [-78.96903, 37.64406], [-78.968589, 37.644095], [-78.968224, 37.644136], [-78.967889, 37.644182], [-78.967664, 37.644226], [-78.967387, 37.644293], [-78.967224, 37.644341], [-78.966957, 37.64443], [-78.966688, 37.644536], [-78.966474, 37.644631], [-78.966164, 37.644789], [-78.965983, 37.644902], [-78.965692, 37.645098], [-78.965428, 37.645294], [-78.965238, 37.645456], [-78.965063, 37.645628], [-78.964898, 37.645816], [-78.964762, 37.645992], [-78.964605, 37.646219], [-78.964465, 37.646453], [-78.964354, 37.646672], [-78.96426, 37.646896], [-78.964184, 37.647124], [-78.964105, 37.647472], [-78.964045, 37.647822], [-78.963795, 37.650137], [-78.963771, 37.650446], [-78.963726, 37.650831], [-78.963699, 37.651104], [-78.963637, 37.651545], [-78.963559, 37.651968], [-78.963475, 37.652244], [-78.963403, 37.652439], [-78.963343, 37.65259], [-78.963259, 37.652771], [-78.963211, 37.652855], [-78.963159, 37.652948], [-78.963044, 37.653119], [-78.962876, 37.65334], [-78.962692, 37.653554], [-78.961989, 37.654258], [-78.961507, 37.654728], [-78.961039, 37.655181], [-78.960337, 37.655875], [-78.96023, 37.655972], [-78.960126, 37.656071], [-78.959777, 37.656385], [-78.959596, 37.656559], [-78.959428, 37.656733], [-78.95894, 37.657212], [-78.958347, 37.65781], [-78.957955, 37.658265], [-78.957902, 37.65834], [-78.957703, 37.658582], [-78.956957, 37.659613], [-78.956, 37.660952], [-78.95555, 37.661601], [-78.95521, 37.662149], [-78.955078, 37.662367], [-78.954742, 37.662988], [-78.954584, 37.663297], [-78.954305, 37.663917], [-78.954148, 37.6643], [-78.953981, 37.664751], [-78.953842, 37.665162], [-78.953791, 37.665348], [-78.953693, 37.665702], [-78.953658, 37.665836], [-78.953519, 37.666441], [-78.953449, 37.666806], [-78.953407, 37.667104], [-78.953324, 37.667763], [-78.953292, 37.668183], [-78.953221, 37.669156], [-78.953153, 37.670098], [-78.953142, 37.670264], [-78.953141, 37.6704], [-78.953072, 37.671177], [-78.95304, 37.671615], [-78.952995, 37.672174], [-78.952947, 37.672942], [-78.95292, 37.673225], [-78.952878, 37.673819], [-78.952829, 37.674339], [-78.952797, 37.674686], [-78.952784, 37.674804], [-78.952747, 37.675024], [-78.952692, 37.675301], [-78.952624, 37.675578], [-78.952561, 37.675784], [-78.952486, 37.675985], [-78.952442, 37.676122], [-78.952386, 37.676257], [-78.95232, 37.676433], [-78.952115, 37.676852], [-78.952045, 37.676981], [-78.951895, 37.677259], [-78.951765, 37.677478], [-78.951015, 37.678688], [-78.950642, 37.679294], [-78.950106, 37.680167], [-78.949932, 37.680439], [-78.949555, 37.681057], [-78.948514, 37.682749], [-78.948346, 37.683014], [-78.94819, 37.68327], [-78.947933, 37.683687], [-78.947735, 37.683997], [-78.946949, 37.685284], [-78.946763, 37.685577], [-78.946171, 37.686544], [-78.946077, 37.686718], [-78.945972, 37.686928], [-78.945848, 37.687201], [-78.945794, 37.687349], [-78.945689, 37.687661], [-78.945632, 37.687901], [-78.945568, 37.688266], [-78.945541, 37.688542], [-78.945537, 37.688659], [-78.945545, 37.689126], [-78.945579, 37.689434], [-78.945664, 37.689907], [-78.945683, 37.68999], [-78.945776, 37.690456], [-78.945835, 37.69071], [-78.945961, 37.691323], [-78.946182, 37.69241], [-78.946237, 37.692788], [-78.946274, 37.693085], [-78.946296, 37.693491], [-78.946303, 37.694022], [-78.946301, 37.694057], [-78.946287, 37.694387], [-78.946261, 37.694709], [-78.946249, 37.694805], [-78.946182, 37.695293], [-78.946055, 37.695876], [-78.945864, 37.696567], [-78.945405, 37.698162], [-78.945298, 37.698548], [-78.944826, 37.700186], [-78.944719, 37.700501], [-78.94458, 37.700835], [-78.944457, 37.701074], [-78.944324, 37.701307], [-78.944135, 37.701595], [-78.944026, 37.701738], [-78.943778, 37.70202], [-78.943504, 37.702305], [-78.943214, 37.702564], [-78.94302, 37.702719], [-78.942935, 37.702779], [-78.942809, 37.702868], [-78.942485, 37.703077], [-78.942218, 37.703232], [-78.9405, 37.704132], [-78.940455, 37.704155], [-78.940006, 37.704381], [-78.938227, 37.705302], [-78.93698, 37.705948], [-78.93647, 37.706225], [-78.93488, 37.707122], [-78.934646, 37.707256], [-78.93388, 37.707679], [-78.933448, 37.707924], [-78.932774, 37.708305], [-78.931107, 37.709235], [-78.929365, 37.710215], [-78.928987, 37.710423], [-78.928188, 37.710873], [-78.927848, 37.711058], [-78.927739, 37.711117], [-78.927286, 37.71134], [-78.927035, 37.711449], [-78.926705, 37.711572], [-78.926357, 37.711684], [-78.926015, 37.711773], [-78.925764, 37.711831], [-78.925742, 37.711836], [-78.925395, 37.711899], [-78.925098, 37.711943], [-78.92463, 37.712006], [-78.924358, 37.71204], [-78.9241, 37.712072], [-78.923317, 37.712168], [-78.922673, 37.712257], [-78.921644, 37.712386], [-78.920771, 37.712503], [-78.91879, 37.712755], [-78.917763, 37.712894], [-78.916758, 37.713029], [-78.916316, 37.713107], [-78.915891, 37.713204], [-78.915614, 37.71328], [-78.915324, 37.713372], [-78.915274, 37.713388], [-78.914912, 37.71352], [-78.91455, 37.71367], [-78.914179, 37.713842], [-78.913675, 37.714085], [-78.912967, 37.714415], [-78.910226, 37.715714], [-78.90939, 37.716116], [-78.908844, 37.716378], [-78.908565, 37.716525], [-78.908344, 37.716654], [-78.908223, 37.716733], [-78.907898, 37.716972], [-78.907709, 37.71712], [-78.907284, 37.717479], [-78.905705, 37.718784], [-78.905314, 37.719084], [-78.90491, 37.719372], [-78.904525, 37.719604], [-78.904033, 37.719882], [-78.903337, 37.720265], [-78.902528, 37.720722], [-78.902455, 37.720766], [-78.902055, 37.720998], [-78.901704, 37.721237], [-78.901372, 37.721492], [-78.901207, 37.721632], [-78.901102, 37.721732], [-78.90093, 37.721897], [-78.900791, 37.722043], [-78.900736, 37.722103], [-78.900601, 37.722261], [-78.900394, 37.722523], [-78.900222, 37.722764], [-78.900079, 37.722992], [-78.900004, 37.723131], [-78.899716, 37.723665], [-78.899467, 37.724145], [-78.899406, 37.724274], [-78.89922, 37.72461], [-78.899008, 37.725016], [-78.898838, 37.725322], [-78.898749, 37.725462], [-78.898619, 37.725684], [-78.898501, 37.725886], [-78.898424, 37.726009], [-78.898396, 37.726054], [-78.89823, 37.726333], [-78.897785, 37.72702], [-78.897326, 37.727687], [-78.897029, 37.728104], [-78.896755, 37.72847], [-78.896087, 37.729327], [-78.895376, 37.730223], [-78.89492, 37.73078], [-78.894224, 37.731648], [-78.893951, 37.731982], [-78.893208, 37.732922], [-78.893101, 37.733073], [-78.892951, 37.733284], [-78.892829, 37.733486], [-78.892725, 37.733694], [-78.892653, 37.733852], [-78.892395, 37.734583], [-78.892264, 37.735006], [-78.891874, 37.73617], [-78.891809, 37.736394], [-78.891615, 37.736972], [-78.891508, 37.737307], [-78.891316, 37.737819], [-78.891154, 37.738191], [-78.891075, 37.738356], [-78.891011, 37.738485], [-78.890701, 37.739024], [-78.890539, 37.739262], [-78.890353, 37.739521], [-78.890119, 37.739847], [-78.889796, 37.740253], [-78.889491, 37.740645], [-78.889217, 37.740996], [-78.888944, 37.74133], [-78.888623, 37.741743], [-78.888513, 37.741886], [-78.888267, 37.742188], [-78.887876, 37.742653], [-78.887675, 37.74287], [-78.887504, 37.743037], [-78.887277, 37.743237], [-78.887216, 37.743287], [-78.887135, 37.743353], [-78.886534, 37.743824], [-78.886162, 37.744125], [-78.8861, 37.744182], [-78.885899, 37.744355], [-78.885622, 37.744575], [-78.885356, 37.74478], [-78.884605, 37.745388], [-78.884042, 37.74585], [-78.882882, 37.746752], [-78.882051, 37.747417], [-78.880834, 37.748391], [-78.88003, 37.749038], [-78.879751, 37.749271], [-78.879568, 37.74942], [-78.879376, 37.749569], [-78.878419, 37.750353], [-78.877854, 37.750804], [-78.877584, 37.751037], [-78.877286, 37.751315], [-78.877004, 37.751598], [-78.876844, 37.751774], [-78.876626, 37.752042], [-78.876378, 37.752385], [-78.876192, 37.752665], [-78.876061, 37.752882], [-78.875814, 37.753345], [-78.875209, 37.754691], [-78.874619, 37.756931], [-78.874501, 37.757307], [-78.874339, 37.757855], [-78.873994, 37.758979], [-78.873789, 37.759637], [-78.873696, 37.75991], [-78.873541, 37.760318], [-78.873332, 37.760834], [-78.873094, 37.761337], [-78.872847, 37.761808], [-78.872451, 37.762468], [-78.872257, 37.76277], [-78.871993, 37.763172], [-78.871574, 37.763799], [-78.871327, 37.764167], [-78.871012, 37.764642], [-78.870469, 37.765468], [-78.870316, 37.765702], [-78.870042, 37.766126], [-78.869873, 37.766412], [-78.869781, 37.766589], [-78.869687, 37.766814], [-78.869585, 37.76708], [-78.869516, 37.767314], [-78.869424, 37.767698], [-78.869391, 37.767942], [-78.86938, 37.768238], [-78.869389, 37.768459], [-78.869415, 37.768673], [-78.869485, 37.768991], [-78.869567, 37.769255], [-78.86966, 37.769515], [-78.869743, 37.769714], [-78.869793, 37.769822], [-78.870127, 37.770634], [-78.870244, 37.770938], [-78.870299, 37.771157], [-78.870337, 37.771378], [-78.870379, 37.771605], [-78.870392, 37.771879], [-78.870378, 37.772127], [-78.870337, 37.772397], [-78.870272, 37.77267], [-78.870248, 37.772764], [-78.87004, 37.773562], [-78.869728, 37.774718], [-78.869574, 37.775264], [-78.869411, 37.775864], [-78.869234, 37.776522], [-78.869061, 37.777151], [-78.868889, 37.777735], [-78.868643, 37.778648], [-78.868399, 37.779571], [-78.868224, 37.780198], [-78.868067, 37.780782], [-78.867497, 37.782893], [-78.867434, 37.783141], [-78.867364, 37.783414], [-78.867185, 37.784047], [-78.867156, 37.784152], [-78.867042, 37.784562], [-78.866921, 37.785054], [-78.866779, 37.785508], [-78.866518, 37.786333], [-78.866458, 37.786501], [-78.866348, 37.786832], [-78.866066, 37.787709], [-78.865703, 37.788816], [-78.865457, 37.789659], [-78.865164, 37.790592], [-78.864927, 37.791345], [-78.864619, 37.792175], [-78.864507, 37.792484], [-78.864363, 37.792792], [-78.864228, 37.793041], [-78.864067, 37.7933], [-78.863882, 37.793548], [-78.863684, 37.793797], [-78.863319, 37.794211], [-78.863117, 37.794344], [-78.86295, 37.794541], [-78.862701, 37.794857], [-78.86248, 37.795184], [-78.862275, 37.795518], [-78.862199, 37.795651], [-78.862007, 37.796159], [-78.861989, 37.79622], [-78.861909, 37.796548], [-78.861883, 37.796687], [-78.861846, 37.796942], [-78.861828, 37.797235], [-78.861827, 37.797529], [-78.861837, 37.797754], [-78.861844, 37.797901], [-78.861878, 37.798631], [-78.861919, 37.799738], [-78.861971, 37.800826], [-78.862007, 37.801869], [-78.862081, 37.803303], [-78.862104, 37.80423], [-78.86209, 37.804437], [-78.862063, 37.804642], [-78.862038, 37.804754], [-78.862023, 37.804816], [-78.861947, 37.805046], [-78.861861, 37.805246], [-78.861771, 37.805437], [-78.86165, 37.805634], [-78.861512, 37.805817], [-78.861343, 37.806004], [-78.860353, 37.806994], [-78.859848, 37.807481], [-78.858512, 37.808821], [-78.858367, 37.808958], [-78.858079, 37.809211], [-78.857729, 37.809505], [-78.857293, 37.80986], [-78.856987, 37.81009], [-78.856658, 37.810338], [-78.855693, 37.81105], [-78.85561, 37.811115], [-78.855262, 37.811371], [-78.854965, 37.811605], [-78.853694, 37.812587], [-78.853389, 37.812818], [-78.852362, 37.813637], [-78.851981, 37.813912], [-78.851517, 37.814266], [-78.851057, 37.81462], [-78.85085, 37.814768], [-78.850729, 37.814859], [-78.850652, 37.81492], [-78.850085, 37.815369], [-78.848637, 37.81648], [-78.846503, 37.818117], [-78.846263, 37.818303], [-78.845641, 37.818784], [-78.845198, 37.81912], [-78.844287, 37.819835], [-78.843809, 37.820229], [-78.841255, 37.822413], [-78.840635, 37.822925], [-78.840114, 37.823377], [-78.839772, 37.823685], [-78.839408, 37.824047], [-78.839049, 37.824425], [-78.838766, 37.824737], [-78.838386, 37.825182], [-78.838147, 37.825481], [-78.837849, 37.82588], [-78.837407, 37.826506], [-78.837204, 37.826823], [-78.837053, 37.827081], [-78.836731, 37.827595], [-78.836452, 37.828104], [-78.836275, 37.828399], [-78.836111, 37.828667], [-78.835849, 37.82912], [-78.835504, 37.829691], [-78.835352, 37.829945], [-78.83498, 37.830568], [-78.834935, 37.830642], [-78.834826, 37.830821], [-78.834646, 37.831137], [-78.834377, 37.831577], [-78.833853, 37.832462], [-78.833724, 37.832692], [-78.833217, 37.833546], [-78.831919, 37.835713], [-78.831568, 37.836263], [-78.831293, 37.836637], [-78.831013, 37.836981], [-78.83077, 37.837252], [-78.829687, 37.838434], [-78.829526, 37.8386], [-78.829353, 37.838766], [-78.828845, 37.839208], [-78.828553, 37.839442], [-78.828248, 37.839665], [-78.827736, 37.840071], [-78.82744, 37.840316], [-78.827359, 37.840393], [-78.827219, 37.840526], [-78.827033, 37.840723], [-78.82681, 37.840985], [-78.826636, 37.841213], [-78.826324, 37.841668], [-78.825848, 37.842321], [-78.825635, 37.842569], [-78.825481, 37.842727], [-78.825276, 37.842917], [-78.825211, 37.842971], [-78.825103, 37.843062], [-78.824902, 37.843225], [-78.824735, 37.84334], [-78.824467, 37.843502], [-78.824206, 37.843652], [-78.82312, 37.844198], [-78.822611, 37.844456], [-78.821878, 37.84482], [-78.820981, 37.845244], [-78.82067, 37.845389], [-78.820264, 37.845536], [-78.820038, 37.845598], [-78.819873, 37.845635], [-78.81967, 37.845683], [-78.819501, 37.845707], [-78.819221, 37.845735], [-78.818871, 37.845752], [-78.818684, 37.845746], [-78.818377, 37.845729], [-78.818065, 37.845689], [-78.817748, 37.845635], [-78.817461, 37.845563], [-78.817089, 37.845456], [-78.81664, 37.845308], [-78.816094, 37.845137], [-78.815801, 37.845042], [-78.815106, 37.844835], [-78.814203, 37.844545], [-78.813661, 37.844372], [-78.813194, 37.844227], [-78.812793, 37.844119], [-78.812466, 37.844059], [-78.812161, 37.844015], [-78.811899, 37.843994], [-78.811692, 37.843985], [-78.81145, 37.844002], [-78.811288, 37.844022], [-78.810966, 37.84409], [-78.810704, 37.844162], [-78.810498, 37.844229], [-78.810246, 37.844336], [-78.80993, 37.84449], [-78.809727, 37.844605], [-78.809573, 37.844705], [-78.809276, 37.84492], [-78.809029, 37.845076], [-78.808807, 37.845199], [-78.808527, 37.845332], [-78.808311, 37.845419], [-78.808089, 37.845498], [-78.807811, 37.845579], [-78.807589, 37.845643], [-78.807297, 37.845708], [-78.807, 37.845759], [-78.806691, 37.845797], [-78.806302, 37.845837], [-78.805184, 37.845933], [-78.80503, 37.845945], [-78.804012, 37.846026], [-78.800837, 37.846324], [-78.800537, 37.846339], [-78.800237, 37.846355], [-78.800014, 37.846352], [-78.79976, 37.846345], [-78.799425, 37.846321], [-78.799048, 37.846276], [-78.79881, 37.846227], [-78.798587, 37.846183], [-78.798334, 37.846121], [-78.798127, 37.846044], [-78.797833, 37.845932], [-78.797473, 37.845765], [-78.797183, 37.845617], [-78.796923, 37.845465], [-78.796357, 37.845082], [-78.795818, 37.844712], [-78.795607, 37.84458], [-78.795352, 37.844427], [-78.795147, 37.84431], [-78.794915, 37.844201], [-78.794645, 37.844085], [-78.794419, 37.843996], [-78.794095, 37.843903], [-78.793805, 37.843828], [-78.793467, 37.843774], [-78.793125, 37.84374], [-78.792933, 37.843732], [-78.792722, 37.843723], [-78.792238, 37.84372], [-78.791688, 37.843732], [-78.791137, 37.843731], [-78.790713, 37.843712], [-78.790444, 37.843693], [-78.79016, 37.843657], [-78.78988, 37.843607], [-78.789604, 37.843542], [-78.789363, 37.843478], [-78.789067, 37.843389], [-78.788706, 37.843253], [-78.78839, 37.843125], [-78.788101, 37.843016], [-78.78765, 37.842857], [-78.787324, 37.842748], [-78.787056, 37.84268], [-78.786677, 37.842606], [-78.786459, 37.842568], [-78.786292, 37.842537], [-78.785994, 37.842501], [-78.785649, 37.842467], [-78.785267, 37.842457], [-78.784945, 37.842456], [-78.784589, 37.842468], [-78.782212, 37.842633], [-78.780497, 37.842776], [-78.779987, 37.842814], [-78.778924, 37.842896], [-78.77812, 37.842986], [-78.777773, 37.843042], [-78.777066, 37.843144], [-78.776444, 37.84325], [-78.775647, 37.843402], [-78.774632, 37.843601], [-78.773646, 37.843786], [-78.773282, 37.843855], [-78.772981, 37.843912], [-78.772128, 37.844091], [-78.771161, 37.844316], [-78.770651, 37.844441], [-78.769991, 37.844616], [-78.768859, 37.844941], [-78.768162, 37.845142], [-78.767015, 37.845472], [-78.76637, 37.845658], [-78.765119, 37.846012], [-78.761663, 37.84701], [-78.760903, 37.847224], [-78.760298, 37.847402], [-78.75996, 37.847506], [-78.7597, 37.847596], [-78.759532, 37.84765], [-78.759113, 37.847806], [-78.758783, 37.847948], [-78.758412, 37.84812], [-78.758057, 37.848288], [-78.757154, 37.848747], [-78.756986, 37.848829], [-78.756546, 37.849062], [-78.756115, 37.849306], [-78.755862, 37.849458], [-78.755244, 37.849843], [-78.754769, 37.85013], [-78.754377, 37.85038], [-78.753945, 37.850672], [-78.753673, 37.850873], [-78.753364, 37.851127], [-78.753217, 37.851259], [-78.752739, 37.851715], [-78.752046, 37.852374], [-78.75166, 37.852719], [-78.751401, 37.852929], [-78.751134, 37.853132], [-78.750789, 37.853376], [-78.750504, 37.853564], [-78.750081, 37.853824], [-78.74973, 37.854021], [-78.749369, 37.854207], [-78.748998, 37.85438], [-78.748624, 37.854531], [-78.748053, 37.854743], [-78.747045, 37.85508], [-78.746537, 37.855262], [-78.746473, 37.855285], [-78.745985, 37.855474], [-78.7456, 37.855635], [-78.744986, 37.855911], [-78.744673, 37.856064], [-78.744246, 37.856299], [-78.743761, 37.856591], [-78.743416, 37.856817], [-78.742954, 37.857145], [-78.742639, 37.857387], [-78.742337, 37.85764], [-78.742294, 37.85768], [-78.741896, 37.858045], [-78.741503, 37.85843], [-78.741291, 37.858648], [-78.741254, 37.858686], [-78.740963, 37.859027], [-78.740705, 37.859351], [-78.740668, 37.859398], [-78.740453, 37.85968], [-78.739901, 37.860385], [-78.739675, 37.860647], [-78.739434, 37.860902], [-78.739176, 37.861151], [-78.73895, 37.861357], [-78.738655, 37.861604], [-78.738411, 37.861795], [-78.738094, 37.862025], [-78.737733, 37.862262], [-78.737429, 37.862445], [-78.73708, 37.862638], [-78.73657, 37.862893], [-78.736186, 37.863088], [-78.735435, 37.86348], [-78.734529, 37.863942], [-78.733874, 37.864271], [-78.733562, 37.864427], [-78.733042, 37.864704], [-78.732039, 37.865214], [-78.731948, 37.865258], [-78.731785, 37.865335], [-78.731411, 37.86553], [-78.730148, 37.866169], [-78.729986, 37.866254], [-78.729722, 37.866391], [-78.728688, 37.866913], [-78.727888, 37.86733], [-78.727529, 37.86751], [-78.726765, 37.867904], [-78.726166, 37.868202], [-78.725869, 37.868361], [-78.725428, 37.868579], [-78.725084, 37.868757], [-78.724518, 37.869049], [-78.723898, 37.869354], [-78.722779, 37.869945], [-78.721592, 37.870542], [-78.720481, 37.87111], [-78.719958, 37.871373], [-78.719701, 37.871497], [-78.719365, 37.871672], [-78.718719, 37.872028], [-78.71847, 37.872183], [-78.718164, 37.872388], [-78.717945, 37.872553], [-78.717592, 37.872851], [-78.717285, 37.873139], [-78.717049, 37.873363], [-78.716739, 37.873728], [-78.716536, 37.874002], [-78.716395, 37.874221], [-78.716144, 37.874657], [-78.71604, 37.87487], [-78.715888, 37.875212], [-78.715814, 37.875401], [-78.715694, 37.87571], [-78.715495, 37.876238], [-78.715377, 37.876548], [-78.715275, 37.876817], [-78.71521, 37.877013], [-78.715136, 37.877211], [-78.715081, 37.877371], [-78.714995, 37.877587], [-78.71492, 37.877787], [-78.7148, 37.878131], [-78.714687, 37.878428], [-78.714533, 37.878796], [-78.714454, 37.879009], [-78.714417, 37.879116], [-78.714256, 37.879549], [-78.714141, 37.879854], [-78.713896, 37.880594], [-78.713756, 37.881038], [-78.713682, 37.88126], [-78.713617, 37.881457], [-78.713533, 37.881697], [-78.713446, 37.881943], [-78.713394, 37.882108], [-78.713314, 37.882336], [-78.713184, 37.882655], [-78.713006, 37.883053], [-78.712892, 37.883274], [-78.712733, 37.88355], [-78.712558, 37.88384], [-78.712369, 37.884119], [-78.712275, 37.884257], [-78.712136, 37.884449], [-78.711974, 37.884667], [-78.711814, 37.884876], [-78.711641, 37.885085], [-78.711418, 37.885345], [-78.711139, 37.885644], [-78.710798, 37.88599], [-78.710465, 37.886309], [-78.710195, 37.886555], [-78.709928, 37.886781], [-78.709577, 37.88706], [-78.709406, 37.887199], [-78.709211, 37.887345], [-78.708778, 37.887648], [-78.707968, 37.888179], [-78.707642, 37.888399], [-78.707473, 37.88851], [-78.707244, 37.888663], [-78.706965, 37.888843], [-78.706601, 37.889083], [-78.706088, 37.889425], [-78.705712, 37.889669], [-78.705189, 37.890019], [-78.704893, 37.890211], [-78.703445, 37.891162], [-78.703041, 37.891429], [-78.702721, 37.891638], [-78.702327, 37.891905], [-78.70184, 37.892223], [-78.701163, 37.892662], [-78.700778, 37.892933], [-78.70071, 37.892981], [-78.700622, 37.893046], [-78.700337, 37.893272], [-78.69999, 37.89357], [-78.699755, 37.8938], [-78.699482, 37.894099], [-78.699289, 37.894329], [-78.698787, 37.894984], [-78.698558, 37.895284], [-78.69837, 37.895519], [-78.698116, 37.895851], [-78.697966, 37.896055], [-78.697696, 37.896407], [-78.697057, 37.897242], [-78.696439, 37.898041], [-78.695681, 37.899035], [-78.695049, 37.899863], [-78.694658, 37.900403], [-78.694519, 37.900599], [-78.694429, 37.900733], [-78.693954, 37.901464], [-78.693721, 37.901862], [-78.693473, 37.902275], [-78.693102, 37.902981], [-78.692879, 37.903439], [-78.692797, 37.903623], [-78.692129, 37.905105], [-78.691808, 37.905817], [-78.691268, 37.906984], [-78.690987, 37.907549], [-78.690814, 37.907874], [-78.690688, 37.908089], [-78.690521, 37.908372], [-78.690275, 37.908767], [-78.689663, 37.909657], [-78.689078, 37.910492], [-78.685485, 37.915666], [-78.684467, 37.917131], [-78.682047, 37.920608], [-78.681785, 37.92095], [-78.681517, 37.921272], [-78.681241, 37.921578], [-78.68101, 37.921818], [-78.680605, 37.922194], [-78.68013, 37.922617], [-78.679566, 37.923137], [-78.679307, 37.923403], [-78.678986, 37.92374], [-78.678605, 37.924203], [-78.678345, 37.924561], [-78.678124, 37.924891], [-78.677903, 37.925227], [-78.677688, 37.925589], [-78.677544, 37.925878], [-78.67731, 37.926442], [-78.676551, 37.928284], [-78.676404, 37.928595], [-78.676242, 37.928949], [-78.676148, 37.929122], [-78.675977, 37.929377], [-78.675612, 37.929807], [-78.675385, 37.930086], [-78.675213, 37.930312], [-78.675004, 37.930559], [-78.674617, 37.931044], [-78.67407, 37.931702], [-78.673673, 37.932201], [-78.673281, 37.9327], [-78.672994, 37.933082], [-78.672166, 37.934227], [-78.671112, 37.935771], [-78.670762, 37.936281], [-78.670385, 37.936817], [-78.669877, 37.937599], [-78.668999, 37.93886], [-78.667671, 37.940789], [-78.666721, 37.942158], [-78.666126, 37.943118], [-78.665597, 37.944014], [-78.665125, 37.944827], [-78.664642, 37.945633], [-78.664087, 37.946602], [-78.663665, 37.947366], [-78.663523, 37.947648], [-78.663363, 37.948007], [-78.66312, 37.948581], [-78.662992, 37.948919], [-78.662788, 37.949511], [-78.662392, 37.950794], [-78.662127, 37.951686], [-78.661907, 37.952368], [-78.6618, 37.952667], [-78.661673, 37.952964], [-78.661549, 37.953229], [-78.661377, 37.953546], [-78.661172, 37.953875], [-78.660975, 37.954168], [-78.660712, 37.954527], [-78.660589, 37.954686], [-78.660525, 37.954768], [-78.660204, 37.955161], [-78.659899, 37.955515], [-78.65946, 37.956045], [-78.659107, 37.956472], [-78.658939, 37.95668], [-78.658404, 37.957325], [-78.658185, 37.957583], [-78.657413, 37.958505], [-78.65713, 37.958855], [-78.65677, 37.959264], [-78.656612, 37.959431], [-78.656439, 37.95959], [-78.656251, 37.959739], [-78.656068, 37.959867], [-78.655989, 37.959917], [-78.655752, 37.960052], [-78.655575, 37.96015], [-78.655228, 37.960289], [-78.654931, 37.960405], [-78.653275, 37.960978], [-78.652399, 37.961277], [-78.651659, 37.961545], [-78.651372, 37.96167], [-78.651131, 37.961788], [-78.650953, 37.961888], [-78.65077, 37.962003], [-78.650655, 37.962074], [-78.650545, 37.96215], [-78.650369, 37.962277], [-78.650124, 37.962492], [-78.649827, 37.962781], [-78.649528, 37.963082], [-78.649157, 37.963468], [-78.648771, 37.96385], [-78.648569, 37.964042], [-78.648236, 37.964318], [-78.647928, 37.964546], [-78.647355, 37.964951], [-78.646421, 37.965624], [-78.646034, 37.965897], [-78.645591, 37.966218], [-78.645351, 37.966376], [-78.645051, 37.966569], [-78.644735, 37.966754], [-78.644581, 37.96684], [-78.6444, 37.966936], [-78.643915, 37.967163], [-78.643555, 37.967319], [-78.643147, 37.967465], [-78.642853, 37.967561], [-78.642519, 37.96766], [-78.642395, 37.967695], [-78.642095, 37.967768], [-78.641871, 37.967823], [-78.641449, 37.967916], [-78.640993, 37.967991], [-78.640408, 37.968066], [-78.639997, 37.968103], [-78.639496, 37.96813], [-78.638995, 37.968136], [-78.638434, 37.968125], [-78.637944, 37.9681], [-78.63612, 37.967958], [-78.635136, 37.967873], [-78.633802, 37.96777], [-78.632073, 37.967631], [-78.631801, 37.967611], [-78.630935, 37.967546], [-78.630424, 37.967503], [-78.629697, 37.967442], [-78.628686, 37.967361], [-78.626167, 37.967159], [-78.623282, 37.966927], [-78.622258, 37.96685], [-78.621932, 37.966824], [-78.620819, 37.966736], [-78.620381, 37.966716], [-78.620004, 37.966712], [-78.619679, 37.966717], [-78.61937, 37.966745], [-78.619064, 37.966787], [-78.618761, 37.966844], [-78.618523, 37.9669], [-78.618222, 37.966977], [-78.617837, 37.967103], [-78.617525, 37.967224], [-78.617264, 37.967333], [-78.616866, 37.967526], [-78.61666, 37.96764], [-78.616487, 37.967735], [-78.616266, 37.967872], [-78.615844, 37.968137], [-78.615555, 37.968338], [-78.615229, 37.968577], [-78.614931, 37.968831], [-78.614607, 37.969142], [-78.614381, 37.96937], [-78.614151, 37.969646], [-78.613964, 37.96988], [-78.613494, 37.970554], [-78.61301, 37.971246], [-78.612831, 37.971512], [-78.612279, 37.972333], [-78.611229, 37.97389], [-78.610819, 37.974494], [-78.610719, 37.974624], [-78.610499, 37.974897], [-78.610319, 37.975118], [-78.610116, 37.975331], [-78.609966, 37.975469], [-78.609796, 37.975624], [-78.609591, 37.975796], [-78.609317, 37.976004], [-78.609071, 37.976176], [-78.608849, 37.976327], [-78.608744, 37.97639], [-78.608365, 37.976619], [-78.608101, 37.976752], [-78.607845, 37.976869], [-78.607584, 37.976978], [-78.60725, 37.977103], [-78.606977, 37.977192], [-78.606625, 37.977297], [-78.606266, 37.977388], [-78.606123, 37.977418], [-78.605902, 37.977465], [-78.605646, 37.97752], [-78.605621, 37.977522], [-78.605549, 37.977538], [-78.60423, 37.977756], [-78.602588, 37.978034], [-78.602162, 37.978122], [-78.601825, 37.978203], [-78.601492, 37.978293], [-78.601094, 37.978414], [-78.60071, 37.978547], [-78.600334, 37.978694], [-78.599967, 37.978854], [-78.599486, 37.979083], [-78.599163, 37.979252], [-78.598789, 37.97947], [-78.598549, 37.979624], [-78.597946, 37.980033], [-78.596889, 37.98075], [-78.595137, 37.981939], [-78.593704, 37.982911], [-78.592376, 37.98382], [-78.590854, 37.984906], [-78.590225, 37.985373], [-78.588999, 37.98631], [-78.588012, 37.9871], [-78.587089, 37.987859], [-78.586722, 37.988171], [-78.586183, 37.988631], [-78.585023, 37.989655], [-78.583908, 37.990662], [-78.583686, 37.990885], [-78.583478, 37.991116], [-78.583203, 37.991447], [-78.583057, 37.991641], [-78.582889, 37.99189], [-78.582734, 37.992152], [-78.582584, 37.992445], [-78.582451, 37.992743], [-78.582318, 37.993104], [-78.582229, 37.993396], [-78.582158, 37.993692], [-78.582061, 37.994255], [-78.581989, 37.994788], [-78.581919, 37.9952], [-78.581831, 37.99573], [-78.581596, 37.997239], [-78.581525, 37.997665], [-78.58147, 37.998088], [-78.581083, 38.000517], [-78.580993, 38.001016], [-78.580912, 38.001332], [-78.580857, 38.001514], [-78.580851, 38.001532], [-78.580827, 38.001607], [-78.580788, 38.001711], [-78.580764, 38.001783], [-78.580638, 38.002087], [-78.580501, 38.002397], [-78.580338, 38.002682], [-78.580176, 38.002939], [-78.580026, 38.003155], [-78.57984, 38.003394], [-78.579631, 38.003641], [-78.579528, 38.003748], [-78.579258, 38.004014], [-78.578985, 38.00426], [-78.578784, 38.004426], [-78.578575, 38.004584], [-78.578379, 38.004723], [-78.578122, 38.004899], [-78.577709, 38.005151], [-78.577431, 38.005306], [-78.577141, 38.005444], [-78.576923, 38.005542], [-78.576628, 38.005666], [-78.576327, 38.005766], [-78.576154, 38.005828], [-78.575371, 38.006031], [-78.574274, 38.006313], [-78.573929, 38.006397], [-78.573678, 38.006459], [-78.5731, 38.006602], [-78.572544, 38.006742], [-78.570845, 38.007165], [-78.570536, 38.007245], [-78.570147, 38.007346], [-78.569511, 38.007502], [-78.568866, 38.007677], [-78.568449, 38.007795], [-78.568216, 38.007865], [-78.567861, 38.007984], [-78.567483, 38.008116], [-78.567008, 38.00831], [-78.566642, 38.008471], [-78.566222, 38.008672], [-78.565813, 38.008887], [-78.565381, 38.009126], [-78.564818, 38.009422], [-78.564544, 38.009563], [-78.564196, 38.009735], [-78.564075, 38.009787], [-78.56369, 38.009944], [-78.56326, 38.010103], [-78.562849, 38.010238], [-78.562529, 38.010332], [-78.562124, 38.010438], [-78.561805, 38.010515], [-78.561564, 38.010564], [-78.56093, 38.010675], [-78.560028, 38.010845], [-78.558824, 38.011064], [-78.558024, 38.011219], [-78.557648, 38.011286], [-78.557386, 38.011333], [-78.557058, 38.011387], [-78.555118, 38.011755], [-78.554112, 38.011931], [-78.552878, 38.012156], [-78.552449, 38.01225], [-78.552186, 38.012316], [-78.551829, 38.012417], [-78.551365, 38.012562], [-78.55109, 38.012655], [-78.550658, 38.012829], [-78.550236, 38.013017], [-78.549599, 38.013364], [-78.549376, 38.013492], [-78.549058, 38.013698], [-78.548469, 38.01411], [-78.547659, 38.014674], [-78.547468, 38.014808], [-78.54736, 38.014884], [-78.547042, 38.015096], [-78.546611, 38.015362], [-78.546269, 38.015559], [-78.54592, 38.01574], [-78.545223, 38.016069], [-78.544841, 38.016247], [-78.543906, 38.016682], [-78.543654, 38.016806], [-78.54333, 38.016982], [-78.542733, 38.017318], [-78.542466, 38.017467], [-78.539711, 38.018979], [-78.536725, 38.020664], [-78.535885, 38.021132], [-78.535518, 38.021335], [-78.534742, 38.021766], [-78.534188, 38.022073], [-78.532955, 38.02276], [-78.532173, 38.023196], [-78.531193, 38.023747], [-78.531125, 38.023792], [-78.53075, 38.024045], [-78.530445, 38.024274], [-78.530203, 38.024476], [-78.530016, 38.024649], [-78.529931, 38.024733], [-78.52985, 38.024806], [-78.529798, 38.024854], [-78.529758, 38.024894], [-78.529598, 38.025065], [-78.529327, 38.025386], [-78.52916, 38.025608], [-78.528945, 38.025933], [-78.5288, 38.026176], [-78.528672, 38.026426], [-78.52861, 38.026566], [-78.528405, 38.027066], [-78.52833, 38.027311], [-78.528283, 38.02751], [-78.528235, 38.027689], [-78.528151, 38.028145], [-78.527582, 38.03105], [-78.527126, 38.033402], [-78.52703, 38.033972], [-78.526914, 38.034782], [-78.526868, 38.035166], [-78.52679, 38.036035], [-78.526753, 38.036647], [-78.526715, 38.03781], [-78.526642, 38.040878], [-78.526607, 38.042081], [-78.526584, 38.042473], [-78.526544, 38.042863], [-78.52645, 38.043462], [-78.526353, 38.043907], [-78.526306, 38.044099], [-78.526225, 38.044382], [-78.526103, 38.044762], [-78.525978, 38.045116], [-78.52595, 38.045183], [-78.525619, 38.045973], [-78.525226, 38.046882], [-78.524837, 38.047794], [-78.524807, 38.047861], [-78.524712, 38.048073], [-78.523664, 38.050524], [-78.523608, 38.050633], [-78.523449, 38.050945], [-78.523194, 38.051371], [-78.522992, 38.051667], [-78.522896, 38.051793], [-78.522708, 38.052033], [-78.522379, 38.052403], [-78.522049, 38.052728], [-78.521736, 38.053004], [-78.521375, 38.053289], [-78.521061, 38.053512], [-78.520792, 38.053687], [-78.520433, 38.053898], [-78.5202, 38.054028], [-78.519924, 38.054166], [-78.519561, 38.054329], [-78.519179, 38.054486], [-78.518827, 38.054612], [-78.518437, 38.054736], [-78.518106, 38.054829], [-78.517883, 38.054877], [-78.517638, 38.05494], [-78.517298, 38.055006], [-78.51674, 38.055093], [-78.515503, 38.055228], [-78.513125, 38.055506], [-78.51298, 38.05552], [-78.511721, 38.055664], [-78.510089, 38.05585], [-78.509444, 38.055931], [-78.508892, 38.056018], [-78.508324, 38.056121], [-78.50762, 38.056269], [-78.507101, 38.056364], [-78.5063, 38.056529], [-78.504207, 38.056975], [-78.503544, 38.057129], [-78.50332, 38.057173], [-78.50218, 38.05739], [-78.501769, 38.057476], [-78.501588, 38.057518], [-78.501288, 38.05758], [-78.500918, 38.057644], [-78.50053, 38.057699], [-78.50025, 38.057721], [-78.49999, 38.057731], [-78.4996, 38.057738], [-78.499258, 38.057729], [-78.499228, 38.057727], [-78.498789, 38.057695], [-78.498509, 38.057667], [-78.498249, 38.05764], [-78.497868, 38.057604], [-78.497658, 38.057584], [-78.497235, 38.057537], [-78.496848, 38.057489], [-78.495893, 38.057371], [-78.494978, 38.057279], [-78.49472, 38.057173], [-78.494659, 38.057142], [-78.494592, 38.057093], [-78.494549, 38.057047], [-78.494516, 38.056995], [-78.494502, 38.05695], [-78.494493, 38.056874], [-78.494502, 38.056798], [-78.494522, 38.056739], [-78.494562, 38.056669], [-78.494623, 38.05661], [-78.494697, 38.056562], [-78.494781, 38.056525], [-78.494872, 38.056502], [-78.49496, 38.056493], [-78.495044, 38.0565], [-78.495109, 38.056516], [-78.495169, 38.056541], [-78.495238, 38.056584], [-78.49528, 38.056617], [-78.495339, 38.05668], [-78.495381, 38.056751], [-78.495402, 38.056811], [-78.495415, 38.056894], [-78.495413, 38.056998], [-78.495388, 38.057116], [-78.49528, 38.057239], [-78.495007, 38.057577], [-78.494845, 38.057747], [-78.494782, 38.057825], [-78.494593, 38.05807], [-78.494413, 38.058298], [-78.494268, 38.05847], [-78.494235, 38.058509], [-78.494159, 38.058601], [-78.493967, 38.058833], [-78.493505, 38.059401], [-78.493364, 38.059586], [-78.492889, 38.060182], [-78.492564, 38.060616], [-78.492196, 38.061101], [-78.491916, 38.061468], [-78.491724, 38.061722], [-78.491723, 38.061722], [-78.491578, 38.061897], [-78.491244, 38.062293], [-78.490863, 38.062734], [-78.490477, 38.063153], [-78.490269, 38.06338], [-78.489937, 38.063742], [-78.48969, 38.064008], [-78.489478, 38.064259], [-78.489344, 38.064409], [-78.489289, 38.06447], [-78.489212, 38.064554], [-78.488761, 38.065053], [-78.48815, 38.065739], [-78.488116, 38.065779], [-78.487867, 38.06605], [-78.48713, 38.06686], [-78.486995, 38.067008], [-78.486825, 38.067194], [-78.486343, 38.067727], [-78.486218, 38.067866], [-78.486208, 38.067877], [-78.486134, 38.067959], [-78.48576, 38.068363], [-78.485475, 38.06867], [-78.485154, 38.069027], [-78.484295, 38.070023], [-78.484063, 38.070271], [-78.483776, 38.070614], [-78.483281, 38.071164], [-78.482433, 38.07211], [-78.480968, 38.073741], [-78.480778, 38.073943], [-78.480706, 38.07403], [-78.480376, 38.074401], [-78.479882, 38.074956], [-78.479801, 38.075034], [-78.479272, 38.075634], [-78.478606, 38.076375], [-78.478527, 38.076469], [-78.478367, 38.076647], [-78.477091, 38.078062], [-78.476397, 38.078846], [-78.475743, 38.079571], [-78.474543, 38.08091], [-78.474163, 38.081335], [-78.473969, 38.081577], [-78.473788, 38.081788], [-78.473613, 38.082014], [-78.47347, 38.082218], [-78.472971, 38.083082], [-78.472639, 38.083666], [-78.472264, 38.084319], [-78.471709, 38.085285], [-78.471146, 38.086271], [-78.47079, 38.086895], [-78.470583, 38.087258], [-78.47026, 38.087825], [-78.469568, 38.089039], [-78.468607, 38.090712], [-78.468501, 38.090897], [-78.468139, 38.091557], [-78.468043, 38.091733], [-78.467922, 38.09192], [-78.467732, 38.092218], [-78.46735, 38.0929], [-78.466766, 38.093924], [-78.466497, 38.09437], [-78.466369, 38.094558], [-78.46599, 38.095057], [-78.465526, 38.09564], [-78.465381, 38.095816], [-78.464933, 38.096381], [-78.464463, 38.096962], [-78.464049, 38.097474], [-78.463974, 38.097573], [-78.463441, 38.098232], [-78.46294, 38.098874], [-78.462231, 38.099765], [-78.461478, 38.100721], [-78.460943, 38.101395], [-78.460544, 38.101882], [-78.460009, 38.102564], [-78.459568, 38.103126], [-78.459337, 38.103403], [-78.458603, 38.10429], [-78.457804, 38.105297], [-78.45751, 38.105695], [-78.4569, 38.106619], [-78.456598, 38.107068], [-78.45544, 38.108845], [-78.454988, 38.109578], [-78.454476, 38.110311], [-78.454296, 38.110569], [-78.454206, 38.110708], [-78.454093, 38.110899], [-78.453942, 38.111128], [-78.453769, 38.111409], [-78.453294, 38.112125], [-78.453172, 38.112318], [-78.452856, 38.112817], [-78.452688, 38.11307], [-78.452602, 38.113223], [-78.451975, 38.114186], [-78.451686, 38.11461], [-78.45106, 38.115568], [-78.450908, 38.115798], [-78.450496, 38.11642], [-78.450419, 38.116537], [-78.45032, 38.116697], [-78.450137, 38.116993], [-78.449702, 38.117634], [-78.449172, 38.118448], [-78.448773, 38.119065], [-78.448006, 38.120242], [-78.447677, 38.120726], [-78.447299, 38.121219], [-78.44692, 38.121631], [-78.446411, 38.122124], [-78.4458, 38.12267], [-78.444661, 38.123687], [-78.442392, 38.125724], [-78.441529, 38.126494], [-78.440922, 38.127044], [-78.440006, 38.127866], [-78.439371, 38.128436], [-78.437997, 38.129669], [-78.437902, 38.129754], [-78.437019, 38.130549], [-78.436453, 38.131059], [-78.436187, 38.131299], [-78.435995, 38.13147], [-78.435251, 38.132172], [-78.435106, 38.132303], [-78.434673, 38.132753], [-78.434293, 38.13317], [-78.433695, 38.133887], [-78.433416, 38.134269], [-78.433195, 38.134572], [-78.432173, 38.13616], [-78.430917, 38.138131], [-78.430468, 38.138847], [-78.429836, 38.139833], [-78.429464, 38.140424], [-78.428859, 38.141359], [-78.428348, 38.142178], [-78.428275, 38.142291], [-78.427887, 38.14289], [-78.427641, 38.143278], [-78.427277, 38.143851], [-78.427263, 38.143873], [-78.425718, 38.146293], [-78.4249, 38.147586], [-78.423982, 38.149017], [-78.423879, 38.149181], [-78.4234, 38.149936], [-78.422346, 38.1516], [-78.42208, 38.151996], [-78.421684, 38.152621], [-78.421337, 38.15319], [-78.420383, 38.154692], [-78.419605, 38.155908], [-78.417659, 38.158962], [-78.415009, 38.163121], [-78.414626, 38.163716], [-78.414541, 38.163851], [-78.414293, 38.164245], [-78.412771, 38.16663], [-78.41231, 38.167345], [-78.411781, 38.168185], [-78.410521, 38.170164], [-78.410064, 38.170881], [-78.408661, 38.173081], [-78.408289, 38.173661], [-78.406754, 38.176057], [-78.405791, 38.177582], [-78.405633, 38.177824], [-78.404819, 38.179105], [-78.40451, 38.179581], [-78.403702, 38.180857], [-78.403534, 38.181116], [-78.40229, 38.183084], [-78.402, 38.183534], [-78.401567, 38.184219], [-78.401491, 38.184329], [-78.400918, 38.18523], [-78.400512, 38.185861], [-78.399321, 38.187671], [-78.399195, 38.187856], [-78.399077, 38.188041], [-78.398689, 38.188617], [-78.398558, 38.18882], [-78.397589, 38.190295], [-78.3974, 38.190566], [-78.397207, 38.19086], [-78.396877, 38.191349], [-78.396731, 38.191574], [-78.396016, 38.192652], [-78.395969, 38.192724], [-78.395198, 38.193895], [-78.395145, 38.193978], [-78.395092, 38.194057], [-78.395078, 38.194078], [-78.394787, 38.194511], [-78.394461, 38.19501], [-78.394425, 38.195065], [-78.393867, 38.195904], [-78.393697, 38.196162], [-78.392569, 38.197862], [-78.392356, 38.198186], [-78.391791, 38.199049], [-78.3916, 38.199341], [-78.391424, 38.19959], [-78.391056, 38.200141], [-78.390364, 38.201178], [-78.388697, 38.203713], [-78.387884, 38.204937], [-78.387682, 38.20524], [-78.387424, 38.205639], [-78.386997, 38.206278], [-78.386781, 38.206604], [-78.386138, 38.207581], [-78.385992, 38.207804], [-78.385531, 38.2085], [-78.38498, 38.209334], [-78.384853, 38.209537], [-78.383889, 38.210987], [-78.383519, 38.211533], [-78.383408, 38.211705], [-78.383194, 38.212041], [-78.382209, 38.213531], [-78.381949, 38.213932], [-78.381401, 38.214759], [-78.380953, 38.215433], [-78.380697, 38.215818], [-78.380472, 38.216158], [-78.379118, 38.218196], [-78.378999, 38.218384], [-78.37862, 38.21895], [-78.377882, 38.220071], [-78.377739, 38.220289], [-78.377587, 38.220523], [-78.376908, 38.221535], [-78.376698, 38.221851], [-78.376516, 38.222128], [-78.375966, 38.222959], [-78.375503, 38.223658], [-78.374143, 38.225716], [-78.373741, 38.226317], [-78.372465, 38.228246], [-78.371604, 38.229546], [-78.371224, 38.230126], [-78.37075, 38.230832], [-78.370117, 38.231792], [-78.369796, 38.23229], [-78.369344, 38.233031], [-78.369247, 38.233202], [-78.369201, 38.233285], [-78.369089, 38.233499], [-78.368757, 38.234191], [-78.368537, 38.23469], [-78.368285, 38.235273], [-78.367348, 38.237406], [-78.367125, 38.237924], [-78.366876, 38.23848], [-78.366632, 38.239054], [-78.366538, 38.239263], [-78.366315, 38.239761], [-78.365981, 38.240523], [-78.365112, 38.242495], [-78.364536, 38.243815], [-78.364277, 38.244425], [-78.363872, 38.245322], [-78.363644, 38.245831], [-78.363475, 38.246227], [-78.363324, 38.246579], [-78.363065, 38.24716], [-78.362399, 38.248697], [-78.362213, 38.249115], [-78.36185, 38.249928], [-78.360994, 38.251906], [-78.360894, 38.252122], [-78.360732, 38.252472], [-78.359818, 38.254556], [-78.359604, 38.255032], [-78.358451, 38.257672], [-78.35837, 38.257854], [-78.357235, 38.260418], [-78.35697, 38.261034], [-78.356749, 38.261526], [-78.356328, 38.262487], [-78.3557, 38.26392], [-78.355441, 38.264489], [-78.354985, 38.265534], [-78.354199, 38.267311], [-78.354014, 38.267697], [-78.353899, 38.267927], [-78.353632, 38.268419], [-78.353386, 38.268835], [-78.353012, 38.269405], [-78.352727, 38.269807], [-78.352433, 38.270193], [-78.351176, 38.271816], [-78.35069, 38.272444], [-78.350332, 38.272914], [-78.349867, 38.273496], [-78.349659, 38.273731], [-78.349448, 38.273949], [-78.349246, 38.274133], [-78.348925, 38.274393], [-78.348653, 38.274592], [-78.348309, 38.274816], [-78.346752, 38.275754], [-78.345609, 38.276449], [-78.34394, 38.277447], [-78.343411, 38.277789], [-78.343205, 38.277938], [-78.342906, 38.278167], [-78.342692, 38.278348], [-78.342621, 38.27841], [-78.342399, 38.278622], [-78.342335, 38.278686], [-78.342171, 38.278857], [-78.341631, 38.279482], [-78.341204, 38.280003], [-78.341139, 38.280089], [-78.341053, 38.280202], [-78.340551, 38.280804], [-78.34033, 38.281097], [-78.339739, 38.281771], [-78.337121, 38.284947], [-78.335554, 38.286807], [-78.334912, 38.287652], [-78.334363, 38.288479], [-78.333901, 38.289321], [-78.332891, 38.291302], [-78.33264, 38.291856], [-78.332046, 38.29316], [-78.331547, 38.294091], [-78.33002, 38.297253], [-78.328705, 38.299896], [-78.328454, 38.300437], [-78.327604, 38.302025], [-78.326529, 38.303681], [-78.325643, 38.304891], [-78.325058, 38.305662], [-78.32399, 38.30691], [-78.3236, 38.307359], [-78.323233, 38.30771], [-78.322626, 38.308335], [-78.320591, 38.310229], [-78.317859, 38.312439], [-78.317136, 38.313055], [-78.314274, 38.315396], [-78.313204, 38.316275], [-78.313084, 38.316374], [-78.312238, 38.317069], [-78.31127, 38.317874], [-78.310555, 38.318624], [-78.308339, 38.321068], [-78.307189, 38.322326], [-78.306432, 38.323147], [-78.305157, 38.324565], [-78.299683, 38.33067], [-78.296227, 38.334366], [-78.294775, 38.336025], [-78.294422, 38.336434], [-78.293518, 38.337393], [-78.292283, 38.338774], [-78.290905, 38.340301], [-78.289054, 38.34231], [-78.287698, 38.343781], [-78.286127, 38.345511], [-78.284805, 38.346961], [-78.284197, 38.347653], [-78.281261, 38.350904], [-78.27928, 38.353063], [-78.277989, 38.354462], [-78.276967, 38.355626], [-78.275482, 38.357205], [-78.275108, 38.357686], [-78.273995, 38.359116], [-78.272612, 38.361053], [-78.269402, 38.365549], [-78.268281, 38.367067], [-78.26707, 38.368543], [-78.266209, 38.369424], [-78.26463, 38.370803], [-78.263855, 38.371431], [-78.262777, 38.372178], [-78.262167, 38.372601], [-78.258589, 38.375046], [-78.253931, 38.378242], [-78.253419, 38.378585], [-78.252722, 38.379065], [-78.251038, 38.380279], [-78.249725, 38.3814], [-78.248824, 38.38242], [-78.247019, 38.384778], [-78.243045, 38.39007], [-78.242379, 38.390835], [-78.241798, 38.391304], [-78.241358, 38.391649], [-78.240659, 38.392107], [-78.239791, 38.392562], [-78.236781, 38.394134], [-78.234618, 38.395478], [-78.233524, 38.396238], [-78.231366, 38.397688], [-78.230593, 38.398159], [-78.229713, 38.398631], [-78.22927, 38.398846], [-78.227176, 38.399941], [-78.224001, 38.401573], [-78.221687, 38.402762], [-78.220927, 38.403115], [-78.219583, 38.403494], [-78.217956, 38.403869], [-78.216834, 38.404329], [-78.216198, 38.404653], [-78.215673, 38.404943], [-78.2147, 38.405692], [-78.214341, 38.406017], [-78.211846, 38.409013], [-78.211205, 38.409859], [-78.208931, 38.412831], [-78.207891, 38.413946], [-78.207388, 38.414459], [-78.206848, 38.414885], [-78.20502, 38.416246], [-78.204339, 38.416746], [-78.203587, 38.417231], [-78.201789, 38.418025], [-78.199931, 38.418788], [-78.198775, 38.419213], [-78.197516, 38.419599], [-78.196891, 38.419728], [-78.193593, 38.420311], [-78.192656, 38.420508], [-78.191772, 38.420736], [-78.190615, 38.421137], [-78.189756, 38.421485], [-78.189131, 38.421795], [-78.188009, 38.422501], [-78.186635, 38.423265], [-78.185396, 38.423841], [-78.184545, 38.424162], [-78.179643, 38.425692], [-78.176595, 38.426575], [-78.175037, 38.427149], [-78.174014, 38.427529], [-78.171007, 38.428688], [-78.169272, 38.429381], [-78.165511, 38.430827], [-78.164119, 38.431371], [-78.162591, 38.431967], [-78.161653, 38.432308], [-78.160661, 38.43271], [-78.160269, 38.432865], [-78.159874, 38.433009], [-78.157491, 38.433942], [-78.157022, 38.434133], [-78.156281, 38.434403], [-78.154122, 38.435214], [-78.152887, 38.435503], [-78.151935, 38.435645], [-78.151237, 38.435723], [-78.149391, 38.435895], [-78.145341, 38.436294], [-78.143178, 38.436516], [-78.141588, 38.436723], [-78.140742, 38.436927], [-78.139967, 38.43716], [-78.139029, 38.437478], [-78.138213, 38.437833], [-78.13673, 38.438732], [-78.135769, 38.439493], [-78.133667, 38.441543], [-78.13309, 38.442092], [-78.132637, 38.442565], [-78.131362, 38.443807], [-78.131197, 38.443972], [-78.13069, 38.444456], [-78.13004, 38.445093], [-78.129654, 38.445515], [-78.129431, 38.445788], [-78.129306, 38.445939], [-78.129135, 38.446147], [-78.126535, 38.449414], [-78.12559, 38.450596], [-78.124937, 38.451403], [-78.12463, 38.451786], [-78.122999, 38.453819], [-78.12268, 38.454222], [-78.122212, 38.454799], [-78.122012, 38.455018], [-78.121815, 38.455209], [-78.121657, 38.455346], [-78.121484, 38.455481], [-78.121283, 38.455622], [-78.121072, 38.455755], [-78.120838, 38.455889], [-78.120605, 38.456007], [-78.120411, 38.456093], [-78.120081, 38.45622], [-78.11988, 38.456286], [-78.119617, 38.456362], [-78.119481, 38.456395], [-78.119029, 38.456484], [-78.118859, 38.456513], [-78.118556, 38.456543], [-78.118252, 38.456558], [-78.117886, 38.45656], [-78.117582, 38.456545], [-78.117215, 38.456509], [-78.11691, 38.456463], [-78.116669, 38.456417], [-78.116299, 38.456332], [-78.114395, 38.455867], [-78.113075, 38.455549], [-78.112183, 38.455337], [-78.111983, 38.455288], [-78.110622, 38.454956], [-78.109647, 38.454713], [-78.109318, 38.454619], [-78.108646, 38.454427], [-78.108148, 38.454266], [-78.107826, 38.454152], [-78.107433, 38.454006], [-78.106215, 38.453523], [-78.103244, 38.452284], [-78.103113, 38.45223], [-78.101465, 38.451517], [-78.100793, 38.451267], [-78.099999, 38.450965], [-78.099633, 38.450843], [-78.099366, 38.450762], [-78.098981, 38.450649], [-78.098604, 38.450547], [-78.098262, 38.45046], [-78.09792, 38.450384], [-78.096808, 38.450181], [-78.096151, 38.450083], [-78.095446, 38.449969], [-78.093727, 38.449707], [-78.092677, 38.449547], [-78.092158, 38.449481], [-78.091766, 38.449445], [-78.091635, 38.449437], [-78.091391, 38.44943], [-78.09088, 38.449437], [-78.090541, 38.449459], [-78.090154, 38.449505], [-78.090027, 38.449526], [-78.089761, 38.44957], [-78.089091, 38.449707], [-78.08849, 38.449845], [-78.087312, 38.450134], [-78.086546, 38.450314], [-78.086092, 38.450427], [-78.085716, 38.450516], [-78.085217, 38.45064], [-78.083614, 38.45102], [-78.082588, 38.451268], [-78.081682, 38.451496], [-78.080934, 38.451707], [-78.080808, 38.451743], [-78.080252, 38.451928], [-78.080061, 38.451995], [-78.079356, 38.452244], [-78.079056, 38.452366], [-78.077758, 38.452899], [-78.07693, 38.453218], [-78.07648, 38.453363], [-78.075972, 38.453504], [-78.075519, 38.453613], [-78.075245, 38.453672], [-78.074633, 38.453773], [-78.073634, 38.453917], [-78.073086, 38.453985], [-78.071708, 38.454165], [-78.070367, 38.45434], [-78.069606, 38.454439], [-78.065196, 38.455001], [-78.0636, 38.455212], [-78.062967, 38.455296], [-78.062279, 38.455383], [-78.061807, 38.45545], [-78.061375, 38.455516], [-78.060496, 38.455651], [-78.059099, 38.455874], [-78.058415, 38.455997], [-78.057861, 38.456107], [-78.057398, 38.456211], [-78.057094, 38.456284], [-78.055369, 38.456762], [-78.054558, 38.456978], [-78.05416, 38.457057], [-78.053923, 38.4571], [-78.053692, 38.457137], [-78.053464, 38.457172], [-78.052965, 38.457229], [-78.052547, 38.457266], [-78.05168, 38.457327], [-78.051381, 38.457343], [-78.051209, 38.457356], [-78.050231, 38.457415], [-78.049522, 38.45745], [-78.049115, 38.457457], [-78.048707, 38.45745], [-78.048107, 38.457414], [-78.046583, 38.457296], [-78.045473, 38.457209], [-78.043615, 38.457066], [-78.04299, 38.457014], [-78.041948, 38.456934], [-78.041564, 38.4569], [-78.040447, 38.456809], [-78.039807, 38.456752], [-78.039565, 38.456722], [-78.038614, 38.456586], [-78.037992, 38.45648], [-78.036619, 38.456229], [-78.036312, 38.456174], [-78.035316, 38.455996], [-78.033993, 38.455756], [-78.033455, 38.455659], [-78.032995, 38.455576], [-78.032344, 38.455462], [-78.032225, 38.455441], [-78.032071, 38.455411], [-78.031918, 38.455381], [-78.030629, 38.455156], [-78.030487, 38.455136], [-78.02993, 38.455035], [-78.029397, 38.454939], [-78.027154, 38.454551], [-78.026507, 38.454439], [-78.026143, 38.454368], [-78.025005, 38.454171], [-78.024336, 38.45404], [-78.023622, 38.453878], [-78.02312, 38.453727], [-78.02273, 38.453603], [-78.022384, 38.453473], [-78.021945, 38.453293], [-78.021688, 38.453179], [-78.02141, 38.45304], [-78.020949, 38.452794], [-78.020606, 38.452593], [-78.018376, 38.451156], [-78.015052, 38.449001], [-78.013038, 38.447702], [-78.012718, 38.447476], [-78.012365, 38.447314], [-78.011913, 38.44707], [-78.011467, 38.446849], [-78.011017, 38.446646], [-78.010785, 38.446548], [-78.01041, 38.446389], [-78.009947, 38.446212], [-78.009475, 38.446047], [-78.009032, 38.44592], [-78.008198, 38.445668], [-78.007806, 38.445574], [-78.007536, 38.445509], [-78.00704, 38.445404], [-78.006541, 38.445314], [-78.006039, 38.445234], [-78.005535, 38.445168], [-78.004882, 38.445103], [-78.00427, 38.44506], [-78.003857, 38.445042], [-78.003259, 38.445032], [-77.996098, 38.445039], [-77.995524, 38.445052], [-77.995083, 38.445072], [-77.9946, 38.445108], [-77.994291, 38.44514], [-77.994119, 38.445159], [-77.993562, 38.445235], [-77.993077, 38.445314], [-77.992738, 38.44538], [-77.992304, 38.445476], [-77.991774, 38.445609], [-77.991277, 38.445754], [-77.990885, 38.44588], [-77.990401, 38.446049], [-77.989902, 38.446248], [-77.98951, 38.446417], [-77.989127, 38.446595], [-77.988671, 38.446826], [-77.988226, 38.44707], [-77.988015, 38.447193], [-77.987964, 38.447222], [-77.986229, 38.448266], [-77.982377, 38.450578], [-77.980067, 38.451965], [-77.978396, 38.452971], [-77.976723, 38.453978], [-77.971729, 38.456974], [-77.970854, 38.457513], [-77.970447, 38.457776], [-77.969812, 38.458205], [-77.969672, 38.458304], [-77.969294, 38.458571], [-77.968878, 38.458872], [-77.968162, 38.459423], [-77.967696, 38.459799], [-77.967125, 38.46028], [-77.966325, 38.460982], [-77.965258, 38.461918], [-77.964866, 38.462267], [-77.960196, 38.466376], [-77.955939, 38.470123], [-77.954947, 38.470996], [-77.954533, 38.471358], [-77.953922, 38.471893], [-77.953458, 38.472304], [-77.953176, 38.472548], [-77.952583, 38.473072], [-77.951119, 38.474355], [-77.950943, 38.474509], [-77.949669, 38.47563], [-77.948949, 38.476265], [-77.948002, 38.477098], [-77.940672, 38.483548], [-77.940481, 38.483731], [-77.940188, 38.484012], [-77.939893, 38.484318], [-77.939484, 38.484776], [-77.93926, 38.485054], [-77.939039, 38.48534], [-77.938835, 38.485618], [-77.938574, 38.486003], [-77.938385, 38.4863], [-77.938154, 38.486695], [-77.936929, 38.489071], [-77.936476, 38.48995], [-77.936307, 38.490277], [-77.936213, 38.490449], [-77.936032, 38.490779], [-77.935797, 38.491168], [-77.935515, 38.491593], [-77.935238, 38.491981], [-77.934904, 38.492412], [-77.934836, 38.492493], [-77.93462, 38.492753], [-77.934238, 38.493183], [-77.933985, 38.493449], [-77.933681, 38.493753], [-77.933395, 38.494018], [-77.933018, 38.494354], [-77.932749, 38.494585], [-77.932252, 38.494973], [-77.93171, 38.495374], [-77.931341, 38.495628], [-77.930966, 38.495866], [-77.930194, 38.496327], [-77.929795, 38.496546], [-77.929468, 38.496713], [-77.928898, 38.496989], [-77.928401, 38.497211], [-77.927814, 38.497454], [-77.927352, 38.49763], [-77.926883, 38.497792], [-77.92627, 38.497988], [-77.925745, 38.498139], [-77.925688, 38.498154], [-77.925207, 38.498279], [-77.924635, 38.498412], [-77.924059, 38.498531], [-77.923478, 38.498637], [-77.923244, 38.498675], [-77.9209, 38.499106], [-77.920407, 38.499196], [-77.916265, 38.499951], [-77.914897, 38.500194], [-77.913262, 38.500498], [-77.912906, 38.500563], [-77.911059, 38.5009], [-77.910401, 38.501012], [-77.909308, 38.501222], [-77.90816, 38.501425], [-77.906956, 38.501647], [-77.902649, 38.502433], [-77.901836, 38.502578], [-77.901383, 38.502661], [-77.899056, 38.503088], [-77.897887, 38.503302], [-77.896932, 38.503454], [-77.896481, 38.503514], [-77.896026, 38.50356], [-77.89557, 38.503592], [-77.895091, 38.503613], [-77.894605, 38.503621], [-77.894338, 38.503619], [-77.894023, 38.503612], [-77.893539, 38.503589], [-77.893152, 38.50356], [-77.891645, 38.503392], [-77.891145, 38.503351], [-77.890705, 38.503331], [-77.890264, 38.503325], [-77.89, 38.503328], [-77.889421, 38.503346], [-77.888918, 38.503375], [-77.888578, 38.503406], [-77.888318, 38.503429], [-77.887823, 38.50349], [-77.887334, 38.503566], [-77.886849, 38.503655], [-77.886369, 38.503759], [-77.885701, 38.503929], [-77.88504, 38.504114], [-77.883872, 38.504451], [-77.882026, 38.504972], [-77.880726, 38.50535], [-77.879756, 38.505628], [-77.879416, 38.505726], [-77.878734, 38.505916], [-77.87665, 38.506514], [-77.873295, 38.507467], [-77.870872, 38.508164], [-77.867574, 38.509112], [-77.86643, 38.509426], [-77.865139, 38.509804], [-77.864878, 38.509875], [-77.864614, 38.509946], [-77.864004, 38.510124], [-77.863963, 38.510136], [-77.863243, 38.510359], [-77.862776, 38.510515], [-77.862313, 38.51068], [-77.86153, 38.510992], [-77.86091, 38.511252], [-77.860341, 38.511504], [-77.860101, 38.511597], [-77.859873, 38.511706], [-77.859049, 38.512033], [-77.858596, 38.512199], [-77.85801, 38.512393], [-77.85641, 38.512859], [-77.85546, 38.513131], [-77.853636, 38.513652], [-77.852939, 38.513842], [-77.85189, 38.514117], [-77.851773, 38.514147], [-77.851155, 38.514282], [-77.850783, 38.514355], [-77.850158, 38.514468], [-77.849529, 38.514566], [-77.848611, 38.514673], [-77.847601, 38.514814], [-77.847219, 38.514874], [-77.846744, 38.514961], [-77.846275, 38.515063], [-77.845622, 38.515227], [-77.843493, 38.515828], [-77.840926, 38.516554], [-77.838953, 38.517123], [-77.838611, 38.51724], [-77.838276, 38.51737], [-77.838087, 38.517452], [-77.837878, 38.517559], [-77.837641, 38.517698], [-77.837371, 38.517879], [-77.837159, 38.518042], [-77.836631, 38.518508], [-77.833939, 38.52107], [-77.833536, 38.521444], [-77.832859, 38.52207], [-77.832618, 38.52227], [-77.832363, 38.52246], [-77.832151, 38.522605], [-77.831761, 38.52284], [-77.831645, 38.522905], [-77.831341, 38.523059], [-77.831027, 38.523201], [-77.830705, 38.52333], [-77.830375, 38.523446], [-77.82725, 38.524408], [-77.825282, 38.525005], [-77.824825, 38.525153], [-77.824766, 38.525172], [-77.82414, 38.525403], [-77.823904, 38.525501], [-77.823444, 38.525707], [-77.823161, 38.525842], [-77.822816, 38.526023], [-77.822483, 38.526216], [-77.82216, 38.526429], [-77.821905, 38.526618], [-77.821824, 38.526681], [-77.821661, 38.526816], [-77.82143, 38.527024], [-77.821026, 38.527454], [-77.820758, 38.527783], [-77.820516, 38.528112], [-77.820197, 38.52856], [-77.819895, 38.529029], [-77.81945, 38.529798], [-77.818541, 38.531386], [-77.817476, 38.533249], [-77.817174, 38.533749], [-77.815779, 38.536111], [-77.812836, 38.541042], [-77.812145, 38.542152], [-77.811443, 38.543345], [-77.81107, 38.543916], [-77.809169, 38.54677], [-77.807061, 38.549912], [-77.805801, 38.55177], [-77.803189, 38.555743], [-77.802664, 38.55653], [-77.802442, 38.556869], [-77.802253, 38.557175], [-77.802079, 38.557492], [-77.801838, 38.557971], [-77.801782, 38.55809], [-77.801657, 38.55838], [-77.801522, 38.558722], [-77.801429, 38.558994], [-77.801302, 38.559432], [-77.801209, 38.559822], [-77.801144, 38.560169], [-77.801065, 38.560727], [-77.801025, 38.56131], [-77.801027, 38.561813], [-77.801049, 38.562487], [-77.801069, 38.562893], [-77.801213, 38.565749], [-77.801305, 38.567636], [-77.80137, 38.568961], [-77.801541, 38.572402], [-77.801599, 38.573623], [-77.801669, 38.575224], [-77.801707, 38.575829], [-77.801772, 38.577117], [-77.801874, 38.579138], [-77.801902, 38.579759], [-77.801914, 38.579914], [-77.801945, 38.580642], [-77.801977, 38.581198], [-77.802036, 38.582417], [-77.802118, 38.584113], [-77.802126, 38.584391], [-77.802131, 38.584986], [-77.802118, 38.585525], [-77.802088, 38.586052], [-77.802017, 38.586791], [-77.801743, 38.589112], [-77.801725, 38.589268], [-77.801437, 38.591698], [-77.801342, 38.5925], [-77.801281, 38.593006], [-77.800994, 38.595455], [-77.800644, 38.598437], [-77.800492, 38.599704], [-77.800457, 38.599972], [-77.800268, 38.601612], [-77.800209, 38.602305], [-77.80017, 38.602992], [-77.800152, 38.603904], [-77.800152, 38.604035], [-77.800152, 38.604483], [-77.800172, 38.60559], [-77.800187, 38.606551], [-77.800205, 38.607644], [-77.80022, 38.608813], [-77.800237, 38.609384], [-77.800232, 38.610093], [-77.800248, 38.611162], [-77.80027, 38.611781], [-77.800276, 38.611972], [-77.800298, 38.612639], [-77.800312, 38.613039], [-77.800332, 38.613399], [-77.800397, 38.614527], [-77.800421, 38.615203], [-77.800432, 38.61575], [-77.800444, 38.616559], [-77.800478, 38.618723], [-77.8005, 38.619601], [-77.800525, 38.620811], [-77.800527, 38.620908], [-77.800548, 38.62192], [-77.80058, 38.623403], [-77.800594, 38.624213], [-77.800603, 38.625413], [-77.80062, 38.627386], [-77.800629, 38.627856], [-77.800651, 38.62934], [-77.800658, 38.629863], [-77.800688, 38.631295], [-77.800701, 38.63219], [-77.800708, 38.632656], [-77.800729, 38.632937], [-77.800749, 38.6331], [-77.800764, 38.633194], [-77.800824, 38.633493], [-77.8009, 38.63375], [-77.801033, 38.634132], [-77.801091, 38.634277], [-77.801339, 38.634852], [-77.801526, 38.635289], [-77.801703, 38.635692], [-77.801752, 38.635808], [-77.801965, 38.636295], [-77.802897, 38.638462], [-77.802996, 38.638693], [-77.803206, 38.639174], [-77.803351, 38.639505], [-77.803635, 38.640158], [-77.803774, 38.640485], [-77.80405, 38.641121], [-77.804137, 38.641325], [-77.804199, 38.641471], [-77.804367, 38.641868], [-77.804398, 38.641941], [-77.804535, 38.642359], [-77.804602, 38.642621], [-77.804642, 38.642832], [-77.804669, 38.643038], [-77.804677, 38.643118], [-77.804687, 38.643291], [-77.804696, 38.643722], [-77.804696, 38.644409], [-77.804677, 38.644766], [-77.804636, 38.645023], [-77.804576, 38.645279], [-77.804498, 38.645531], [-77.804445, 38.645671], [-77.804179, 38.646296], [-77.803976, 38.646795], [-77.803645, 38.647584], [-77.803607, 38.647672], [-77.803037, 38.649027], [-77.802582, 38.650099], [-77.802488, 38.65032], [-77.80226, 38.650816], [-77.802226, 38.650891], [-77.801705, 38.651973], [-77.801524, 38.652348], [-77.800517, 38.654435], [-77.800311, 38.654856], [-77.800109, 38.655223], [-77.799504, 38.656216], [-77.799258, 38.656629], [-77.799064, 38.656995], [-77.798952, 38.657238], [-77.798593, 38.658126], [-77.798524, 38.658287], [-77.798395, 38.658591], [-77.798266, 38.658901], [-77.798049, 38.659428], [-77.797829, 38.659963], [-77.79736, 38.661105], [-77.797075, 38.661795], [-77.796724, 38.662641], [-77.79625, 38.663783], [-77.796094, 38.664161], [-77.795637, 38.665271], [-77.79528, 38.666132], [-77.795248, 38.66621], [-77.794069, 38.669063], [-77.793674, 38.670024], [-77.793379, 38.670723], [-77.793244, 38.671036], [-77.793103, 38.671307], [-77.792943, 38.671571], [-77.792813, 38.671755], [-77.792641, 38.671968], [-77.792454, 38.672174], [-77.792251, 38.672371], [-77.791496, 38.673047], [-77.791134, 38.673372], [-77.790643, 38.673809], [-77.789269, 38.675032], [-77.788765, 38.675507], [-77.788692, 38.675576], [-77.788181, 38.676104], [-77.787807, 38.676549], [-77.787668, 38.676743], [-77.787501, 38.677031], [-77.78738, 38.677265], [-77.78733, 38.677383], [-77.787232, 38.677659], [-77.787165, 38.677911], [-77.787115, 38.678177], [-77.787085, 38.678445], [-77.787079, 38.678552], [-77.787095, 38.67913], [-77.787153, 38.679798], [-77.787259, 38.680924], [-77.787331, 38.681886], [-77.787363, 38.682419], [-77.787413, 38.683635], [-77.787401, 38.684203], [-77.787392, 38.684611], [-77.78735, 38.685019], [-77.787315, 38.685264], [-77.787231, 38.685728], [-77.787136, 38.686251], [-77.787114, 38.686332], [-77.78692, 38.686986], [-77.786696, 38.687619], [-77.786501, 38.688074], [-77.786277, 38.68855], [-77.786098, 38.688888], [-77.785944, 38.689154], [-77.785576, 38.689748], [-77.784818, 38.690938], [-77.784516, 38.691425], [-77.784271, 38.691807], [-77.783827, 38.692506], [-77.783401, 38.6932], [-77.783246, 38.693444], [-77.782384, 38.694802], [-77.782205, 38.695084], [-77.781593, 38.696059], [-77.781243, 38.69667], [-77.78108, 38.696994], [-77.780923, 38.697347], [-77.780812, 38.697637], [-77.780687, 38.698004], [-77.780614, 38.698231], [-77.780587, 38.698314], [-77.780392, 38.699181], [-77.780333, 38.699659], [-77.780298, 38.700094], [-77.780287, 38.700389], [-77.780289, 38.700757], [-77.780315, 38.701452], [-77.780365, 38.702797], [-77.780397, 38.703509], [-77.780462, 38.705131], [-77.780535, 38.706895], [-77.780587, 38.708144], [-77.780612, 38.708911], [-77.780675, 38.710324], [-77.780782, 38.713019], [-77.780806, 38.713639], [-77.780906, 38.716128], [-77.780923, 38.716557], [-77.780985, 38.71812], [-77.781094, 38.720811], [-77.781111, 38.721348], [-77.78117, 38.722771], [-77.781205, 38.723428], [-77.781207, 38.723933], [-77.781141, 38.724638], [-77.781062, 38.725028], [-77.780986, 38.725313], [-77.780873, 38.725651], [-77.780799, 38.725838], [-77.780763, 38.72593], [-77.780608, 38.726258], [-77.780457, 38.726537], [-77.78029, 38.726814], [-77.780067, 38.727137], [-77.779841, 38.727426], [-77.779593, 38.727712], [-77.779535, 38.727773], [-77.779432, 38.727882], [-77.779137, 38.728163], [-77.778889, 38.728379], [-77.778564, 38.728638], [-77.777988, 38.729064], [-77.777903, 38.729128], [-77.777813, 38.729195], [-77.777751, 38.72924], [-77.777544, 38.729395], [-77.776507, 38.73018], [-77.77534, 38.731069], [-77.775049, 38.73127], [-77.774364, 38.73177], [-77.774051, 38.732009], [-77.773303, 38.732554], [-77.772496, 38.733155], [-77.772444, 38.733192], [-77.771424, 38.733941], [-77.770375, 38.73472], [-77.769774, 38.735166], [-77.766501, 38.737595], [-77.766092, 38.7379], [-77.766013, 38.737957], [-77.764613, 38.738973], [-77.763699, 38.739647], [-77.760294, 38.742188], [-77.759475, 38.742805], [-77.758292, 38.743704], [-77.757242, 38.744507], [-77.756734, 38.744888], [-77.75607, 38.745394], [-77.755332, 38.74595], [-77.753869, 38.747051], [-77.753512, 38.747317], [-77.752239, 38.748266], [-77.751486, 38.748835], [-77.749304, 38.750477], [-77.747696, 38.751677], [-77.747175, 38.752069], [-77.746636, 38.752468], [-77.746089, 38.752858], [-77.745719, 38.753113], [-77.745109, 38.753534], [-77.744529, 38.753946], [-77.744441, 38.754016], [-77.743143, 38.755039], [-77.742369, 38.755648], [-77.741019, 38.756723], [-77.740302, 38.757289], [-77.74012, 38.757439], [-77.739869, 38.757633], [-77.739452, 38.757933], [-77.738896, 38.758325], [-77.738458, 38.758616], [-77.737994, 38.758912], [-77.737675, 38.759109], [-77.736928, 38.759546], [-77.736529, 38.759764], [-77.73598, 38.760062], [-77.735512, 38.760302], [-77.734641, 38.760749], [-77.731871, 38.762168], [-77.730354, 38.762946], [-77.726563, 38.764904], [-77.726297, 38.765042], [-77.725494, 38.765462], [-77.724993, 38.765717], [-77.724283, 38.76606], [-77.724155, 38.766114], [-77.723683, 38.766274], [-77.723631, 38.766287], [-77.723461, 38.76633], [-77.723208, 38.766384], [-77.722948, 38.766425], [-77.722732, 38.766449], [-77.722439, 38.766466], [-77.722204, 38.76647], [-77.721761, 38.76645], [-77.721338, 38.766416], [-77.720827, 38.766373], [-77.71958, 38.766268], [-77.718945, 38.766226], [-77.71829, 38.766214], [-77.717886, 38.766231], [-77.717644, 38.766248], [-77.717238, 38.766296], [-77.716986, 38.766333], [-77.716478, 38.766426], [-77.715933, 38.766539], [-77.71313, 38.767126], [-77.71253, 38.76725], [-77.711446, 38.767475], [-77.711213, 38.767521], [-77.709832, 38.76781], [-77.709246, 38.767933], [-77.708584, 38.768078], [-77.708134, 38.768177], [-77.707984, 38.768211], [-77.707651, 38.768287], [-77.707208, 38.768389], [-77.707037, 38.768429], [-77.706966, 38.768445], [-77.706604, 38.768529], [-77.705724, 38.768733], [-77.704884, 38.768928], [-77.704008, 38.769125], [-77.703413, 38.769266], [-77.703044, 38.769359], [-77.702667, 38.769454], [-77.702289, 38.769565], [-77.701922, 38.769687], [-77.701705, 38.769766], [-77.701294, 38.769925], [-77.700381, 38.770277], [-77.698624, 38.770957], [-77.69792, 38.771222], [-77.696779, 38.771656], [-77.696286, 38.771839], [-77.694688, 38.772451], [-77.693388, 38.772942], [-77.69338, 38.772945], [-77.69299, 38.773092], [-77.691828, 38.773541], [-77.689985, 38.774273], [-77.689184, 38.774593], [-77.687947, 38.775099], [-77.68652, 38.775696], [-77.686093, 38.775875], [-77.685013, 38.776323], [-77.684548, 38.776508], [-77.683617, 38.77688], [-77.682281, 38.77742], [-77.681906, 38.77757], [-77.680152, 38.778273], [-77.680071, 38.778309], [-77.679964, 38.778348], [-77.67944, 38.778559], [-77.679135, 38.778682], [-77.679008, 38.778733], [-77.678765, 38.778831], [-77.678322, 38.779011], [-77.677302, 38.779417], [-77.677036, 38.779514], [-77.676871, 38.779569], [-77.676375, 38.779711], [-77.675903, 38.779834], [-77.675739, 38.779874], [-77.675282, 38.779966], [-77.675165, 38.77999], [-77.673681, 38.780291], [-77.67245, 38.780538], [-77.671784, 38.780666], [-77.671623, 38.780699], [-77.671392, 38.780752], [-77.670977, 38.780857], [-77.67067, 38.780949], [-77.669909, 38.781181], [-77.669755, 38.781229], [-77.668691, 38.781557], [-77.668105, 38.781729], [-77.66717, 38.781984], [-77.665556, 38.7824], [-77.665397, 38.782443], [-77.66509, 38.782528], [-77.663117, 38.783041], [-77.662729, 38.783142], [-77.658982, 38.784122], [-77.658234, 38.784318], [-77.657487, 38.784515], [-77.656903, 38.784668], [-77.656444, 38.784785], [-77.655772, 38.784954], [-77.655488, 38.785028], [-77.654149, 38.78538], [-77.653073, 38.785665], [-77.652817, 38.785732], [-77.652723, 38.785757], [-77.652335, 38.78586], [-77.650432, 38.786358], [-77.650292, 38.786394], [-77.648546, 38.786845], [-77.648132, 38.786953], [-77.6471, 38.787217], [-77.646912, 38.787266], [-77.646792, 38.787296], [-77.646475, 38.787378], [-77.643862, 38.788066], [-77.643514, 38.788151], [-77.642956, 38.788288], [-77.641845, 38.788545], [-77.641256, 38.788678], [-77.640668, 38.788812], [-77.637878, 38.789456], [-77.637724, 38.789491], [-77.635026, 38.790112], [-77.633026, 38.790572], [-77.631672, 38.790883], [-77.630391, 38.791179], [-77.630168, 38.791231], [-77.629412, 38.791414], [-77.629006, 38.791523], [-77.628982, 38.791529], [-77.628275, 38.791722], [-77.626219, 38.792284], [-77.625465, 38.792483], [-77.624741, 38.792675], [-77.624567, 38.792721], [-77.624468, 38.792748], [-77.624067, 38.792856], [-77.622821, 38.793191], [-77.622323, 38.793326], [-77.622182, 38.793359], [-77.62157, 38.793529], [-77.621412, 38.793572], [-77.620477, 38.793825], [-77.620443, 38.793835], [-77.619193, 38.794171], [-77.619018, 38.794213], [-77.617763, 38.794556], [-77.617092, 38.79473], [-77.616747, 38.794832], [-77.614017, 38.7956], [-77.613309, 38.7958], [-77.613097, 38.795859], [-77.611965, 38.796178], [-77.611011, 38.796432], [-77.609519, 38.79683], [-77.609066, 38.796955], [-77.60887, 38.79701], [-77.608124, 38.797223], [-77.607861, 38.79729], [-77.60659, 38.797608], [-77.604759, 38.798106], [-77.603341, 38.798433], [-77.602615, 38.798623], [-77.60217, 38.798681], [-77.60178, 38.798726], [-77.60159, 38.798739], [-77.601338, 38.79876], [-77.601043, 38.798748], [-77.600761, 38.798726], [-77.600475, 38.798685], [-77.600088, 38.798626], [-77.598701, 38.798329], [-77.598447, 38.798288], [-77.598168, 38.798263], [-77.597945, 38.798266], [-77.597733, 38.798267], [-77.597515, 38.798295], [-77.597295, 38.798329], [-77.59709, 38.79838], [-77.596838, 38.798472], [-77.596056, 38.79873], [-77.595792, 38.798802], [-77.595557, 38.798839], [-77.595321, 38.798872], [-77.595123, 38.798893], [-77.594903, 38.798906], [-77.594606, 38.798902], [-77.592349, 38.798571], [-77.589853, 38.798246], [-77.587564, 38.797961], [-77.584659, 38.797708], [-77.583518, 38.797592], [-77.582596, 38.797507], [-77.581727, 38.797465], [-77.580645, 38.797422], [-77.579853, 38.797408], [-77.579381, 38.797391], [-77.579328, 38.797391], [-77.578346, 38.797391], [-77.576989, 38.797404], [-77.576007, 38.797446], [-77.575373, 38.797504], [-77.571144, 38.797797], [-77.569287, 38.79792], [-77.56555, 38.798187], [-77.561659, 38.798447], [-77.555891, 38.7988], [-77.553755, 38.798951], [-77.550887, 38.799152], [-77.550295, 38.799193], [-77.548407, 38.799331], [-77.54595, 38.799494], [-77.541063, 38.799812], [-77.539341, 38.799946], [-77.536546, 38.800151], [-77.532281, 38.800448], [-77.529135, 38.800667], [-77.525861, 38.800895], [-77.523173, 38.801079], [-77.520134, 38.801324], [-77.519426, 38.801374], [-77.518588, 38.801436], [-77.514662, 38.801698], [-77.51275, 38.801833], [-77.512257, 38.801883], [-77.51176, 38.801949], [-77.511242, 38.802033], [-77.510728, 38.802133], [-77.510237, 38.802245], [-77.509757, 38.802371], [-77.509283, 38.802511], [-77.508762, 38.802686], [-77.508249, 38.802874], [-77.503238, 38.804849], [-77.501867, 38.805383], [-77.49854, 38.806696], [-77.492854, 38.808929], [-77.492586, 38.809039], [-77.491408, 38.809499], [-77.490728, 38.809768], [-77.490387, 38.809903], [-77.489846, 38.810125], [-77.48976, 38.810159], [-77.489588, 38.810228], [-77.488128, 38.810814], [-77.487975, 38.810876], [-77.487938, 38.810891], [-77.487614, 38.811027], [-77.486889, 38.811312], [-77.485515, 38.811841], [-77.481021, 38.813606], [-77.480031, 38.813987], [-77.479528, 38.81418], [-77.478278, 38.814671], [-77.477784, 38.814859], [-77.476696, 38.815283], [-77.476308, 38.815444], [-77.470849, 38.817587], [-77.469997, 38.817934], [-77.469107, 38.818314], [-77.468263, 38.818692], [-77.467788, 38.818912], [-77.466824, 38.819384], [-77.466481, 38.819559], [-77.465978, 38.819814], [-77.465888, 38.819862], [-77.465082, 38.820299], [-77.464689, 38.820516], [-77.463916, 38.820976], [-77.463568, 38.821184], [-77.462817, 38.82165], [-77.462169, 38.822067], [-77.461524, 38.822499], [-77.460742, 38.823046], [-77.459971, 38.823615], [-77.459453, 38.824009], [-77.458829, 38.824505], [-77.458041, 38.825157], [-77.457989, 38.825199], [-77.457719, 38.825436], [-77.457456, 38.825667], [-77.457174, 38.825914], [-77.456485, 38.82655], [-77.455925, 38.827089], [-77.455609, 38.827408], [-77.455354, 38.827664], [-77.455286, 38.827736], [-77.454763, 38.828288], [-77.453687, 38.829492], [-77.45117, 38.83231], [-77.450091, 38.833546], [-77.449603, 38.834072], [-77.4484, 38.835411], [-77.448317, 38.835496], [-77.447073, 38.836883], [-77.446568, 38.837456], [-77.444983, 38.839239], [-77.444962, 38.839261], [-77.44448, 38.839771], [-77.443925, 38.840374], [-77.443121, 38.841151], [-77.442523, 38.841683], [-77.442048, 38.842083], [-77.441563, 38.842472], [-77.44121, 38.842729], [-77.440835, 38.842989], [-77.440353, 38.843301], [-77.439357, 38.843895], [-77.438808, 38.844189], [-77.438412, 38.844388], [-77.438154, 38.844513], [-77.437585, 38.844773], [-77.43695, 38.845042], [-77.436125, 38.845358], [-77.435386, 38.845611], [-77.434841, 38.845778], [-77.434461, 38.845886], [-77.434065, 38.845989], [-77.433588, 38.846102], [-77.432595, 38.846311], [-77.431976, 38.846424], [-77.431894, 38.846439], [-77.43166, 38.846482], [-77.43013, 38.84677], [-77.428638, 38.847052], [-77.427672, 38.847201], [-77.426895, 38.847336], [-77.426613, 38.847387], [-77.423954, 38.847868], [-77.42318, 38.84802], [-77.422578, 38.848129], [-77.421734, 38.848284], [-77.419777, 38.84865], [-77.418032, 38.848977], [-77.416532, 38.849246], [-77.415198, 38.849482], [-77.414151, 38.849672], [-77.413692, 38.849756], [-77.413004, 38.849886], [-77.41025, 38.850388], [-77.408348, 38.850725], [-77.406003, 38.851167], [-77.404553, 38.851419], [-77.403103, 38.851676], [-77.402433, 38.851803], [-77.401513, 38.851954], [-77.399882, 38.852249], [-77.399048, 38.852319], [-77.398718, 38.852375], [-77.397996, 38.852492], [-77.397318, 38.852624], [-77.396752, 38.852714], [-77.396348, 38.852749], [-77.395658, 38.852767], [-77.395009, 38.8528], [-77.394695, 38.852837], [-77.39433, 38.852891], [-77.393802, 38.852984], [-77.393126, 38.853114], [-77.392725, 38.85318], [-77.392095, 38.853297], [-77.391904, 38.853339], [-77.391134, 38.853478], [-77.389836, 38.853723], [-77.389215, 38.853845], [-77.38892, 38.853895], [-77.388716, 38.853941], [-77.388024, 38.854062], [-77.387165, 38.854196], [-77.386771, 38.854162], [-77.386529, 38.854111], [-77.386343, 38.854055], [-77.386187, 38.853987], [-77.386127, 38.853954], [-77.386079, 38.85392], [-77.385986, 38.853839], [-77.385938, 38.853785], [-77.385904, 38.853738], [-77.385849, 38.853638], [-77.385829, 38.853585], [-77.385812, 38.853521], [-77.3858, 38.853402], [-77.385805, 38.853336], [-77.385817, 38.853271], [-77.38586, 38.853155], [-77.385888, 38.853105], [-77.385929, 38.853047], [-77.38601, 38.852959], [-77.386068, 38.85291], [-77.386119, 38.852873], [-77.386233, 38.85281], [-77.386292, 38.852784], [-77.386367, 38.852757], [-77.386444, 38.852736], [-77.386551, 38.852715], [-77.386695, 38.852705], [-77.38684, 38.852711], [-77.386899, 38.85272], [-77.386985, 38.852739], [-77.387131, 38.852784], [-77.387234, 38.852827], [-77.387327, 38.852872], [-77.387501, 38.852977], [-77.387596, 38.853046], [-77.387689, 38.853125], [-77.387869, 38.853301], [-77.388005, 38.8535], [-77.388211, 38.853861], [-77.388248, 38.853958], [-77.38834, 38.854202], [-77.388434, 38.854509], [-77.388512, 38.85483], [-77.388556, 38.855045], [-77.388563, 38.855077], [-77.388615, 38.855398], [-77.38864, 38.855726], [-77.388657, 38.85606], [-77.388632, 38.856494], [-77.388606, 38.856728], [-77.388546, 38.857062], [-77.388494, 38.857283], [-77.388383, 38.85759], [-77.388245, 38.857898], [-77.387962, 38.858392], [-77.387722, 38.858713], [-77.387587, 38.858842], [-77.387448, 38.858992], [-77.38738, 38.859049], [-77.387049, 38.859315], [-77.387001, 38.859355], [-77.386572, 38.859616], [-77.386057, 38.859876], [-77.385696, 38.860037], [-77.385104, 38.860297], [-77.384246, 38.860678], [-77.383311, 38.861091], [-77.382484, 38.861549], [-77.381927, 38.861964], [-77.381649, 38.862271], [-77.381472, 38.862656], [-77.38114, 38.86254], [-77.380676, 38.862336], [-77.380373, 38.862167], [-77.380144, 38.862016], [-77.379932, 38.861857], [-77.379724, 38.861669], [-77.379541, 38.861495], [-77.379299, 38.861256], [-77.379174, 38.86114], [-77.378963, 38.86097], [-77.378779, 38.860822], [-77.378622, 38.860715], [-77.378375, 38.860584], [-77.37825, 38.860526], [-77.377901, 38.860354], [-77.377674, 38.860258], [-77.377503, 38.860194], [-77.376982, 38.860031], [-77.376724, 38.859968], [-77.376465, 38.859908], [-77.376139, 38.859843], [-77.375957, 38.859809], [-77.375449, 38.859704], [-77.37477, 38.859591], [-77.373992, 38.859482], [-77.373385, 38.859411], [-77.373319, 38.859405], [-77.371684, 38.859251], [-77.371331, 38.859226], [-77.37112, 38.859211], [-77.371099, 38.85942], [-77.371098, 38.859619], [-77.371033, 38.860102], [-77.370993, 38.860407], [-77.370953, 38.86073], [-77.370894, 38.86095], [-77.370816, 38.861165], [-77.370757, 38.861296], [-77.370665, 38.861443], [-77.370575, 38.861587], [-77.370384, 38.861875], [-77.370116, 38.862301], [-77.369869, 38.862675], [-77.369695, 38.862937], [-77.369553, 38.863149], [-77.369282, 38.863562], [-77.369075, 38.863878], [-77.369003, 38.863978], [-77.368943, 38.864053], [-77.368872, 38.864143], [-77.368754, 38.864281], [-77.368648, 38.864383], [-77.368548, 38.86448], [-77.368413, 38.864611], [-77.368244, 38.864751], [-77.368139, 38.86483], [-77.368096, 38.864859], [-77.367962, 38.864949], [-77.367753, 38.865087], [-77.36752, 38.865221], [-77.36716, 38.865425], [-77.366916, 38.865565], [-77.366749, 38.865664], [-77.366693, 38.865696], [-77.366603, 38.865757], [-77.36621, 38.865941], [-77.365964, 38.866096], [-77.365677, 38.866275], [-77.365412, 38.86648], [-77.365205, 38.866666], [-77.365092, 38.866802], [-77.364926, 38.867027], [-77.364819, 38.867215], [-77.364795, 38.867271], [-77.364687, 38.867526], [-77.364631, 38.867731], [-77.364602, 38.867885], [-77.364585, 38.868103], [-77.364599, 38.86833], [-77.364602, 38.868416], [-77.364653, 38.868646], [-77.364749, 38.868903], [-77.364915, 38.869232], [-77.365031, 38.869489], [-77.36519, 38.869811], [-77.365353, 38.870145], [-77.365541, 38.870577], [-77.365608, 38.870714], [-77.36564, 38.87078], [-77.365767, 38.871048], [-77.365858, 38.871232], [-77.365914, 38.871335], [-77.366032, 38.871546], [-77.366196, 38.871805], [-77.366355, 38.872046], [-77.366507, 38.872259], [-77.366678, 38.872501], [-77.366856, 38.872754], [-77.366963, 38.872925], [-77.367022, 38.873039], [-77.367081, 38.873163], [-77.367145, 38.873344], [-77.367182, 38.87346], [-77.367204, 38.873534], [-77.367233, 38.873695], [-77.36726, 38.873889], [-77.367273, 38.874003], [-77.367165, 38.874012], [-77.366994, 38.874012], [-77.366779, 38.873999], [-77.366666, 38.873986], [-77.366501, 38.873968], [-77.366313, 38.873934], [-77.366155, 38.873897], [-77.365932, 38.873832], [-77.36562, 38.873728], [-77.365375, 38.873647], [-77.36552, 38.873752], [-77.365645, 38.873824], [-77.365759, 38.873875] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-97.796173, 22.254624] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-97.727508, 22.057641] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-79.085083, 37.601176] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-77.766723, 38.651198] } } ] } ================================================ FILE: packages/turf-line-slice/test/in/route2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-113.928988, 50.814121], [-113.928993, 50.813067], [-113.928994, 50.811043], [-113.928995, 50.807418], [-113.929029, 50.804989], [-113.951995, 50.804953], [-113.956813, 50.804931], [-113.957629, 50.804917], [-113.958021, 50.804876], [-113.958575, 50.804779], [-113.959011, 50.804687], [-113.959367, 50.804572], [-113.959858, 50.804414], [-113.960433, 50.804102], [-113.960932, 50.803769], [-113.961563, 50.803306], [-113.961754, 50.803166], [-113.962486, 50.802753], [-113.9641, 50.801549], [-113.966048, 50.800154], [-113.967597, 50.799082], [-113.968657, 50.798289], [-113.969382, 50.79779], [-113.969303, 50.797653], [-113.968833, 50.797177], [-113.968399, 50.796832], [-113.96652, 50.796071], [-113.965325, 50.795579], [-113.964608, 50.795229], [-113.963373, 50.794321], [-113.962094, 50.793355], [-113.956995, 50.789049], [-113.951125, 50.784098], [-113.948573, 50.78194], [-113.941011, 50.775626], [-113.933724, 50.769538], [-113.914584, 50.753577], [-113.906521, 50.746803], [-113.896774, 50.738614], [-113.886275, 50.729779], [-113.88594, 50.729474], [-113.885307, 50.728898], [-113.884903, 50.728477], [-113.884523, 50.728028], [-113.884201, 50.727599], [-113.883986, 50.727298], [-113.883696, 50.726863], [-113.883482, 50.72648], [-113.883314, 50.726156], [-113.883153, 50.725767], [-113.883094, 50.725646], [-113.883031, 50.725465], [-113.882906, 50.725155], [-113.882792, 50.724718], [-113.882641, 50.7241], [-113.882584, 50.723735], [-113.88255, 50.723367], [-113.882523, 50.72258], [-113.882495, 50.717709], [-113.882486, 50.713302], [-113.882476, 50.712125], [-113.882468, 50.702531], [-113.882456, 50.699815], [-113.882434, 50.698229], [-113.882445, 50.693791], [-113.882419, 50.692602], [-113.882412, 50.692077], [-113.882405, 50.691705], [-113.882365, 50.691331], [-113.882289, 50.690878], [-113.882163, 50.690282], [-113.882074, 50.689985], [-113.881908, 50.689517], [-113.881705, 50.689095], [-113.881622, 50.688959], [-113.881501, 50.688721], [-113.881281, 50.688347], [-113.88097, 50.687826], [-113.880715, 50.687491], [-113.880385, 50.687085], [-113.878859, 50.685206], [-113.877456, 50.68348], [-113.875929, 50.68157], [-113.873357, 50.67843], [-113.871364, 50.675999], [-113.869142, 50.673289], [-113.868358, 50.672328], [-113.868037, 50.671943], [-113.867467, 50.671232], [-113.866987, 50.670734], [-113.866668, 50.670424], [-113.866296, 50.670141], [-113.865816, 50.669814], [-113.865451, 50.6696], [-113.8651, 50.669419], [-113.864667, 50.669203], [-113.864079, 50.668945], [-113.863436, 50.668716], [-113.862804, 50.66849], [-113.861739, 50.668114], [-113.853421, 50.665144], [-113.842891, 50.661554], [-113.842171, 50.661197], [-113.841049, 50.660571], [-113.840156, 50.659997], [-113.839716, 50.65961], [-113.839157, 50.659132], [-113.838847, 50.658805], [-113.838358, 50.658284], [-113.837938, 50.657723], [-113.837609, 50.657111], [-113.837268, 50.656259], [-113.83703, 50.655665], [-113.836937, 50.654919], [-113.836909, 50.654144], [-113.836859, 50.650724], [-113.836826, 50.647581], [-113.836828, 50.646677], [-113.836945, 50.631237], [-113.836945, 50.630338], [-113.83681, 50.620833], [-113.836809, 50.615002], [-113.836748, 50.614363], [-113.836695, 50.613902], [-113.836544, 50.613327], [-113.836395, 50.612865], [-113.836165, 50.612347], [-113.835974, 50.611908], [-113.835688, 50.611368], [-113.834199, 50.609116], [-113.831975, 50.605815], [-113.830597, 50.603738], [-113.830194, 50.603006], [-113.829862, 50.60236], [-113.829623, 50.601865], [-113.829361, 50.601178], [-113.829199, 50.600699], [-113.829001, 50.600003], [-113.828688, 50.598264], [-113.828653, 50.597525], [-113.828653, 50.596741], [-113.828659, 50.589493], [-113.828615, 50.584393], [-113.82855, 50.57625], [-113.82857, 50.572186], [-113.82858, 50.57189], [-113.828436, 50.567929], [-113.828262, 50.565198], [-113.82828, 50.550181], [-113.82829, 50.541809], [-113.828291, 50.541417], [-113.828359, 50.484565], [-113.828388, 50.473188], [-113.82839, 50.426319], [-113.828391, 50.410937], [-113.828495, 50.409031], [-113.828495, 50.408255], [-113.828326, 50.404708], [-113.827868, 50.402523], [-113.827189, 50.400367], [-113.82573, 50.397464], [-113.824909, 50.396393], [-113.823811, 50.394869], [-113.82128, 50.391895], [-113.801481, 50.376398], [-113.797907, 50.371872], [-113.796297, 50.369858], [-113.795351, 50.368139], [-113.790726, 50.359724], [-113.789384, 50.358382], [-113.78784, 50.357509], [-113.782077, 50.355219], [-113.781868, 50.355163], [-113.780696, 50.354643], [-113.779832, 50.354058], [-113.779376, 50.353709], [-113.779034, 50.353447], [-113.777779, 50.352208], [-113.776476, 50.350971], [-113.775669, 50.350156], [-113.774903, 50.349363], [-113.774528, 50.349008], [-113.774139, 50.348641], [-113.773752, 50.348267], [-113.773367, 50.347894], [-113.772991, 50.347521], [-113.77261, 50.347144], [-113.77224, 50.346771], [-113.771866, 50.346393], [-113.771491, 50.346021], [-113.771101, 50.345634], [-113.770724, 50.345257], [-113.770334, 50.344868], [-113.769256, 50.343852], [-113.767134, 50.341669], [-113.764647, 50.339182], [-113.764438, 50.338973], [-113.761597, 50.336333], [-113.758593, 50.33458], [-113.755546, 50.333429], [-113.751856, 50.33269], [-113.745118, 50.331594], [-113.742286, 50.330717], [-113.739453, 50.329347], [-113.731213, 50.32247], [-113.723532, 50.315976], [-113.722158, 50.313619], [-113.718768, 50.300682], [-113.714948, 50.295611], [-113.70452, 50.282916], [-113.688985, 50.273536], [-113.671647, 50.26314], [-113.665976, 50.259608], [-113.661862, 50.256884], [-113.66006, 50.254964], [-113.659379, 50.253877], [-113.658858, 50.252741], [-113.658676, 50.251733], [-113.656669, 50.241627], [-113.656154, 50.237592], [-113.655983, 50.234435], [-113.656026, 50.226446], [-113.656001, 50.222848], [-113.655983, 50.212634], [-113.655983, 50.198956], [-113.656026, 50.187774], [-113.655725, 50.180189], [-113.654781, 50.177056], [-113.650834, 50.16488], [-113.648988, 50.159931], [-113.648171, 50.158673], [-113.647041, 50.157055], [-113.642675, 50.151639], [-113.639814, 50.147556], [-113.634175, 50.135735], [-113.632251, 50.131741], [-113.620363, 50.106626], [-113.619376, 50.104527], [-113.61384, 50.092744], [-113.608561, 50.081675], [-113.606581, 50.077494], [-113.603669, 50.071347], [-113.596202, 50.055589], [-113.589593, 50.041645], [-113.585973, 50.034075], [-113.583284, 50.028469], [-113.578879, 50.019214], [-113.577072, 50.015416], [-113.576933, 50.015123], [-113.575461, 50.01195], [-113.56968, 49.999485], [-113.565276, 49.990109], [-113.562856, 49.984972], [-113.558388, 49.975529], [-113.556763, 49.972084], [-113.551497, 49.960982], [-113.550282, 49.958226], [-113.543115, 49.943177], [-113.537579, 49.93141], [-113.531657, 49.91895], [-113.528868, 49.913112], [-113.52852, 49.912237], [-113.528209, 49.911247], [-113.528013, 49.910313], [-113.527878, 49.909552], [-113.527877, 49.908805], [-113.528009, 49.904496], [-113.527999, 49.902765], [-113.527923, 49.890232], [-113.527923, 49.878148], [-113.527237, 49.875493], [-113.526537, 49.873052], [-113.52449, 49.865701], [-113.524447, 49.856267], [-113.52449, 49.841269], [-113.524447, 49.826764], [-113.52437, 49.815239], [-113.524361, 49.813862], [-113.524357, 49.801088], [-113.524347, 49.798401], [-113.524359, 49.795748], [-113.524362, 49.795059], [-113.524404, 49.785441], [-113.524345, 49.778892], [-113.524361, 49.771945], [-113.523632, 49.77031], [-113.522087, 49.769007], [-113.520199, 49.768287], [-113.514319, 49.76643], [-113.510629, 49.764933], [-113.50771, 49.763048], [-113.494964, 49.752901], [-113.479476, 49.742059], [-113.460012, 49.728293], [-113.455597, 49.725235], [-113.454572, 49.72442], [-113.45366, 49.723598], [-113.452976, 49.722915], [-113.45129, 49.720944], [-113.450256, 49.719782], [-113.447746, 49.716986], [-113.447289, 49.716417], [-113.443365, 49.71203], [-113.443141, 49.711789], [-113.442819, 49.711601], [-113.442606, 49.711479], [-113.44236, 49.711374], [-113.442103, 49.711279], [-113.441837, 49.711197], [-113.441458, 49.711124], [-113.441117, 49.711086], [-113.440779, 49.711071], [-113.440369, 49.71109], [-113.439978, 49.71114], [-113.439697, 49.711196], [-113.439397, 49.711273], [-113.439102, 49.71139], [-113.438862, 49.711498], [-113.438591, 49.711635], [-113.438391, 49.711766], [-113.438075, 49.712061], [-113.437745, 49.712489], [-113.43745, 49.712915], [-113.43721, 49.713212], [-113.436932, 49.713495], [-113.436629, 49.713751], [-113.436287, 49.713988], [-113.435908, 49.714204], [-113.435538, 49.714393], [-113.431814, 49.715951], [-113.423934, 49.718913], [-113.423148, 49.719208], [-113.419515, 49.720574], [-113.418553, 49.720884], [-113.417353, 49.721191], [-113.416622, 49.721378], [-113.415189, 49.721933], [-113.414887, 49.722092], [-113.414553, 49.722328], [-113.414204, 49.722586], [-113.413109, 49.723458], [-113.412313, 49.724209], [-113.412068, 49.724385], [-113.411871, 49.724508], [-113.41169, 49.724585], [-113.411456, 49.724665], [-113.411213, 49.724721], [-113.410939, 49.724758], [-113.410649, 49.724769], [-113.408706, 49.724761], [-113.405913, 49.724764], [-113.403119, 49.724754], [-113.400316, 49.724758], [-113.397541, 49.724759], [-113.396042, 49.724769], [-113.395455, 49.724758], [-113.395172, 49.724734], [-113.394938, 49.724709], [-113.394729, 49.724678], [-113.394467, 49.724619], [-113.394209, 49.724544], [-113.393974, 49.724469], [-113.393696, 49.724366], [-113.393468, 49.724249], [-113.393241, 49.72412], [-113.393012, 49.723965], [-113.39289, 49.723864], [-113.391771, 49.722807], [-113.391196, 49.722209], [-113.390266, 49.721242], [-113.389586, 49.720567], [-113.388246, 49.71917], [-113.387068, 49.717968], [-113.386688, 49.717602], [-113.386617, 49.717518], [-113.386398, 49.717254], [-113.386209, 49.717057], [-113.385914, 49.716751], [-113.385697, 49.71658], [-113.385459, 49.716404], [-113.385223, 49.716267], [-113.384941, 49.716121], [-113.384654, 49.716013], [-113.384337, 49.715925], [-113.383953, 49.715848], [-113.383617, 49.715803], [-113.383303, 49.715777], [-113.382948, 49.715769], [-113.382593, 49.71579], [-113.382269, 49.715822], [-113.381923, 49.715886], [-113.381566, 49.715981], [-113.381244, 49.716092], [-113.380957, 49.716219], [-113.380551, 49.716436], [-113.380035, 49.71673], [-113.379484, 49.717081], [-113.378419, 49.71777], [-113.377851, 49.718172], [-113.376955, 49.718849], [-113.376472, 49.719244], [-113.375953, 49.719695], [-113.375418, 49.720164], [-113.374752, 49.720812], [-113.373389, 49.722261], [-113.372553, 49.723172], [-113.371753, 49.724069], [-113.371091, 49.724816], [-113.370703, 49.725251], [-113.370292, 49.725659], [-113.36989, 49.726068], [-113.369354, 49.726543], [-113.368728, 49.727064], [-113.368135, 49.727526], [-113.367567, 49.727939], [-113.366419, 49.728699], [-113.366091, 49.728877], [-113.365827, 49.729022], [-113.365501, 49.729201], [-113.362951, 49.730439], [-113.358468, 49.732139], [-113.3397, 49.739588], [-113.335475, 49.741364], [-113.327488, 49.744425], [-113.318052, 49.748192], [-113.313869, 49.749882], [-113.31224, 49.750619], [-113.310651, 49.75165], [-113.307682, 49.753879], [-113.302921, 49.757409], [-113.297078, 49.761832], [-113.293465, 49.764507], [-113.274088, 49.778989], [-113.273227, 49.779697], [-113.272213, 49.780484], [-113.270309, 49.781807], [-113.269287, 49.782542], [-113.268506, 49.783052], [-113.267549, 49.783577], [-113.266355, 49.784155], [-113.264867, 49.784696], [-113.26421, 49.78488], [-113.263279, 49.785126], [-113.262406, 49.785321], [-113.261535, 49.785468], [-113.260247, 49.785632], [-113.2584, 49.785752], [-113.253189, 49.785761], [-113.2503, 49.785759], [-113.246741, 49.785753], [-113.243803, 49.785748], [-113.24168, 49.785746], [-113.239441, 49.785743], [-113.235416, 49.785738], [-113.232546, 49.785734], [-113.230542, 49.78573], [-113.207916, 49.785665], [-113.188962, 49.785585], [-113.187421, 49.785394], [-113.185955, 49.785084], [-113.182069, 49.784248], [-113.178433, 49.783545], [-113.175537, 49.783555], [-113.172403, 49.784002], [-113.169876, 49.784514], [-113.165425, 49.785057], [-113.162661, 49.785308], [-113.158491, 49.785468], [-113.154009, 49.785249], [-113.150706, 49.7849], [-113.138727, 49.78387], [-113.137918, 49.7838], [-113.132484, 49.783537], [-113.127139, 49.783666], [-113.121522, 49.784134], [-113.116401, 49.784873], [-113.108878, 49.786479], [-113.10643, 49.787036], [-113.100519, 49.78837], [-113.099817, 49.78851], [-113.099069, 49.788664], [-113.098414, 49.788796], [-113.097678, 49.788933], [-113.096947, 49.789058], [-113.096124, 49.78919], [-113.095087, 49.789365], [-113.093946, 49.789519], [-113.092851, 49.789655], [-113.091995, 49.789773], [-113.091108, 49.78988], [-113.090105, 49.789981], [-113.089148, 49.790064], [-113.088464, 49.790125], [-113.087728, 49.790181], [-113.08695, 49.790229], [-113.08621, 49.790281], [-113.085391, 49.790327], [-113.084622, 49.790364], [-113.083774, 49.790396], [-113.082731, 49.790426], [-113.081849, 49.790441], [-113.080915, 49.790449], [-113.080041, 49.790455], [-113.079132, 49.790458], [-113.078156, 49.790437], [-113.077306, 49.790416], [-113.076308, 49.790386], [-113.075035, 49.79033], [-113.073984, 49.790268], [-113.073014, 49.790204], [-113.072411, 49.790162], [-113.071942, 49.790123], [-113.069874, 49.789921], [-113.06869, 49.789793], [-113.067583, 49.789667], [-113.066892, 49.789578], [-113.066126, 49.789472], [-113.064972, 49.789301], [-113.04876, 49.786854], [-113.048, 49.78674], [-113.047462, 49.78667], [-113.046933, 49.786601], [-113.046365, 49.786543], [-113.041994, 49.786136], [-113.038418, 49.786047], [-113.028911, 49.786062], [-113.013026, 49.786042], [-113.003977, 49.786038], [-113.002681, 49.785962], [-113.001644, 49.785864], [-113.00048, 49.785713], [-112.999756, 49.785611], [-112.9987, 49.785408], [-112.997454, 49.785132], [-112.995534, 49.784581], [-112.99125, 49.783007], [-112.98295, 49.779625], [-112.980557, 49.778522], [-112.979018, 49.777554], [-112.976341, 49.775651], [-112.973797, 49.773044], [-112.965769, 49.764644], [-112.960895, 49.75933], [-112.960092, 49.758465], [-112.959726, 49.75808], [-112.959447, 49.757828], [-112.959069, 49.757507], [-112.958709, 49.757166], [-112.958281, 49.756793], [-112.95762, 49.756294], [-112.956931, 49.755799], [-112.956159, 49.755282], [-112.955682, 49.754998], [-112.955151, 49.754703], [-112.952858, 49.753509], [-112.949354, 49.752075], [-112.94544, 49.749962], [-112.938188, 49.743931], [-112.931304, 49.738228], [-112.926731, 49.73422], [-112.925384, 49.732989], [-112.924479, 49.731925], [-112.923468, 49.730575], [-112.922298, 49.729055], [-112.921036, 49.7277], [-112.918917, 49.725859], [-112.918155, 49.725203], [-112.916619, 49.723846], [-112.915487, 49.723018], [-112.915163, 49.72283], [-112.914796, 49.722631], [-112.914432, 49.722464], [-112.914031, 49.722286], [-112.913669, 49.722145], [-112.913246, 49.722004], [-112.912907, 49.721891], [-112.912605, 49.721797], [-112.912248, 49.721697], [-112.911203, 49.721427], [-112.910101, 49.721135], [-112.906937, 49.720299], [-112.903215, 49.719342], [-112.900165, 49.718558], [-112.897476, 49.717852], [-112.895936, 49.717459], [-112.895282, 49.717281], [-112.894243, 49.71701], [-112.893141, 49.716728], [-112.892426, 49.716529], [-112.89165, 49.716338], [-112.891198, 49.71622], [-112.890633, 49.716083], [-112.889897, 49.715934], [-112.889174, 49.715796], [-112.888532, 49.715689], [-112.887541, 49.715558], [-112.88613, 49.71536], [-112.885501, 49.715271], [-112.884833, 49.715175], [-112.884308, 49.715088], [-112.883816, 49.71495], [-112.883277, 49.714832], [-112.882696, 49.714691], [-112.88207, 49.714542], [-112.881531, 49.714385], [-112.881025, 49.714222], [-112.880522, 49.714039], [-112.879986, 49.713834], [-112.879529, 49.71365], [-112.87903, 49.713431], [-112.878502, 49.713173], [-112.877609, 49.712649], [-112.875259, 49.711284], [-112.873228, 49.710141], [-112.872763, 49.709872], [-112.87224, 49.709593], [-112.871848, 49.709384], [-112.871432, 49.709188], [-112.871061, 49.709022], [-112.870716, 49.708873], [-112.870311, 49.708723], [-112.869954, 49.708592], [-112.869443, 49.708436], [-112.868983, 49.708311], [-112.868462, 49.708183], [-112.86782, 49.708055], [-112.867368, 49.707982], [-112.866939, 49.707916], [-112.86545, 49.707716], [-112.861762, 49.707191], [-112.86017, 49.706981], [-112.85809, 49.706677], [-112.85777, 49.706622], [-112.857467, 49.706553], [-112.857076, 49.706452], [-112.856698, 49.706338], [-112.854212, 49.705528], [-112.85381, 49.705386], [-112.853466, 49.70523], [-112.853137, 49.705049], [-112.852839, 49.704853], [-112.851852, 49.704221], [-112.851516, 49.704031], [-112.851207, 49.703872], [-112.850867, 49.70373], [-112.850433, 49.703565], [-112.84992, 49.703388], [-112.847903, 49.702792], [-112.845724, 49.702167], [-112.844077, 49.701628], [-112.8432, 49.701369], [-112.842649, 49.701218], [-112.842201, 49.701114], [-112.841728, 49.701025], [-112.840794, 49.700856], [-112.838125, 49.700426], [-112.834609, 49.699873], [-112.832064, 49.699465], [-112.828981, 49.698964], [-112.828552, 49.698904], [-112.827826, 49.698813], [-112.827096, 49.698728], [-112.826436, 49.698665], [-112.825387, 49.6986], [-112.824515, 49.698555], [-112.823879, 49.698527], [-112.822719, 49.698465], [-112.820041, 49.698338], [-112.818601, 49.69826], [-112.817659, 49.698214], [-112.817451, 49.698208], [-112.816791, 49.698174], [-112.81589, 49.698112], [-112.814861, 49.698029], [-112.814224, 49.697963], [-112.813253, 49.697849], [-112.813147, 49.697836], [-112.811952, 49.697672], [-112.811842, 49.697656], [-112.811502, 49.697615], [-112.811227, 49.697581], [-112.810773, 49.697561], [-112.810352, 49.69755], [-112.810002, 49.697537], [-112.809403, 49.697532], [-112.806575, 49.697613], [-112.805437, 49.69765], [-112.804522, 49.697685], [-112.80393, 49.697707], [-112.80238, 49.69777], [-112.802025, 49.697788], [-112.801625, 49.697812], [-112.800653, 49.697888], [-112.799723, 49.697967], [-112.79867, 49.698052], [-112.798046, 49.698084], [-112.797631, 49.698102], [-112.797077, 49.698117], [-112.796376, 49.698135], [-112.79554, 49.698135], [-112.794414, 49.698135], [-112.793544, 49.698131], [-112.788404, 49.698111], [-112.787759, 49.698108], [-112.787623, 49.698109], [-112.786794, 49.698114], [-112.785574, 49.698121], [-112.784545, 49.69817], [-112.784282, 49.698206], [-112.783264, 49.698348], [-112.782977, 49.69837], [-112.782674, 49.69837], [-112.782377, 49.69836], [-112.781976, 49.698324], [-112.781573, 49.698283], [-112.780374, 49.698174], [-112.779856, 49.698084], [-112.77969, 49.698039], [-112.779534, 49.697963], [-112.779416, 49.697879], [-112.779336, 49.697779], [-112.779293, 49.697678], [-112.779266, 49.697588], [-112.779277, 49.697432], [-112.779309, 49.697054], [-112.779557, 49.695985], [-112.779657, 49.695544], [-112.779736, 49.695225], [-112.779761, 49.695101], [-112.779809, 49.694922], [-112.779952, 49.69441], [-112.780019, 49.694125], [-112.780058, 49.69387], [-112.780085, 49.693604], [-112.78011, 49.693292], [-112.780165, 49.692652], [-112.780169, 49.692372], [-112.780165, 49.692154], [-112.780164, 49.692098], [-112.780144, 49.691862], [-112.780143, 49.691843], [-112.780133, 49.69176], [-112.780037, 49.691006], [-112.779822, 49.689657], [-112.77979, 49.689308], [-112.779748, 49.688889], [-112.779749, 49.688478], [-112.779739, 49.688031], [-112.779748, 49.687622], [-112.779769, 49.687159], [-112.779816, 49.686494], [-112.779896, 49.685531], [-112.779868, 49.68512], [-112.779875, 49.684881], [-112.779863, 49.684535], [-112.77986, 49.684358], [-112.779847, 49.684121], [-112.779816, 49.683702], [-112.779801, 49.683613], [-112.779746, 49.683344], [-112.779688, 49.682957], [-112.779596, 49.68252], [-112.779542, 49.68228], [-112.7794, 49.681732], [-112.779248, 49.681225], [-112.779016, 49.680478], [-112.778857, 49.679737], [-112.778724, 49.678803], [-112.778685, 49.678481], [-112.77867, 49.678161], [-112.778679, 49.677477], [-112.778716, 49.676815], [-112.77879, 49.676373], [-112.778793, 49.676281], [-112.778809, 49.67613], [-112.778826, 49.675962], [-112.779009, 49.67502], [-112.779283, 49.674077], [-112.779324, 49.67372], [-112.779398, 49.673084], [-112.779441, 49.672708], [-112.779445, 49.672624], [-112.779457, 49.6724], [-112.779474, 49.670433], [-112.779525, 49.669583], [-112.779531, 49.668796], [-112.779522, 49.66867], [-112.779234, 49.66867], [-112.778749, 49.66867], [-112.773523, 49.668658], [-112.769369, 49.668649], [-112.763756, 49.668637], [-112.7565, 49.668622], [-112.75294, 49.668604], [-112.752507, 49.668609], [-112.751647, 49.668588], [-112.750485, 49.668477], [-112.748828, 49.668137], [-112.747424, 49.667643], [-112.746405, 49.667117], [-112.745658, 49.666544], [-112.743059, 49.663524], [-112.742076, 49.662492], [-112.741004, 49.661674], [-112.73773, 49.659519], [-112.735465, 49.657989], [-112.733655, 49.656859], [-112.718533, 49.646941], [-112.708401, 49.640314], [-112.699223, 49.634317], [-112.697367, 49.633097], [-112.696977, 49.632838], [-112.688059, 49.626979], [-112.68302, 49.623675], [-112.676625, 49.619483], [-112.667074, 49.613228], [-112.658988, 49.607908], [-112.655248, 49.605484], [-112.650972, 49.603234], [-112.646487, 49.600778], [-112.644902, 49.599632], [-112.643248, 49.598383], [-112.641103, 49.596798], [-112.639355, 49.595616], [-112.637, 49.594133], [-112.627891, 49.588425], [-112.602707, 49.572537], [-112.600552, 49.571077], [-112.598617, 49.5692], [-112.59449, 49.564228], [-112.593913, 49.5636], [-112.593075, 49.562994], [-112.592311, 49.562392], [-112.591327, 49.561818], [-112.589132, 49.56091], [-112.585717, 49.559813], [-112.580643, 49.558189], [-112.579135, 49.557557], [-112.577853, 49.55687], [-112.576584, 49.555934], [-112.573576, 49.55323], [-112.570447, 49.550424], [-112.569232, 49.549564], [-112.567477, 49.548436], [-112.556735, 49.541871], [-112.550446, 49.538028], [-112.546175, 49.535345], [-112.543195, 49.53355], [-112.541943, 49.532867], [-112.522018, 49.522571], [-112.51966, 49.521328], [-112.515058, 49.518953], [-112.512595, 49.517628], [-112.51096, 49.516524], [-112.50948, 49.515214], [-112.508358, 49.513958], [-112.507396, 49.512646], [-112.504667, 49.506398], [-112.503772, 49.504449], [-112.502829, 49.502755], [-112.502134, 49.501789], [-112.500323, 49.499793], [-112.498242, 49.497945], [-112.491937, 49.492826], [-112.472122, 49.477074], [-112.46972, 49.475443], [-112.458697, 49.468584], [-112.452076, 49.464789], [-112.441426, 49.458313], [-112.440081, 49.457555], [-112.439154, 49.45711], [-112.437692, 49.456507], [-112.428185, 49.452715], [-112.42567, 49.451509], [-112.421872, 49.448943], [-112.416852, 49.445256], [-112.415374, 49.444112], [-112.413757, 49.443067], [-112.41199, 49.442277], [-112.408866, 49.441094], [-112.403355, 49.439005], [-112.400426, 49.437907], [-112.395624, 49.436024], [-112.393366, 49.43506], [-112.391141, 49.43401], [-112.389667, 49.433278], [-112.387242, 49.431857], [-112.380495, 49.427283], [-112.377371, 49.425166], [-112.370769, 49.420228], [-112.369213, 49.419103], [-112.368029, 49.418322], [-112.366868, 49.417688], [-112.365853, 49.417109], [-112.364196, 49.416279], [-112.358645, 49.413606], [-112.345069, 49.40697], [-112.313601, 49.391666], [-112.293379, 49.381796], [-112.280866, 49.375648], [-112.275641, 49.37312], [-112.27415, 49.372357], [-112.272971, 49.371647], [-112.272087, 49.371077], [-112.271197, 49.370405], [-112.270258, 49.369532], [-112.269242, 49.36847], [-112.263635, 49.361606], [-112.261762, 49.359287], [-112.252776, 49.348158], [-112.236226, 49.327356], [-112.231602, 49.321856], [-112.231504, 49.32174], [-112.22954, 49.319363], [-112.227247, 49.316403], [-112.224225, 49.312727], [-112.22224, 49.310555], [-112.216986, 49.304836], [-112.215307, 49.3031], [-112.213887, 49.301877], [-112.213028, 49.301145], [-112.204369, 49.294474], [-112.201434, 49.291851], [-112.200807, 49.291228], [-112.200423, 49.290767], [-112.200161, 49.290419], [-112.199859, 49.289985], [-112.199566, 49.2895], [-112.199306, 49.289012], [-112.199053, 49.288493], [-112.198839, 49.287999], [-112.198721, 49.287648], [-112.198561, 49.28716], [-112.198436, 49.286692], [-112.198364, 49.286224], [-112.198303, 49.285775], [-112.198271, 49.285347], [-112.198256, 49.282987], [-112.198269, 49.279832], [-112.197949, 49.277457], [-112.196565, 49.273803], [-112.189342, 49.264663], [-112.187679, 49.262625], [-112.187029, 49.261975], [-112.185766, 49.260758], [-112.185003, 49.259994], [-112.184046, 49.259256], [-112.182999, 49.258515], [-112.181937, 49.257797], [-112.180185, 49.2566], [-112.179314, 49.25606], [-112.178353, 49.255415], [-112.177525, 49.254853], [-112.176769, 49.254313], [-112.176125, 49.253788], [-112.174746, 49.252496], [-112.173897, 49.251682], [-112.173107, 49.250905], [-112.153316, 49.231556], [-112.145266, 49.223554], [-112.137196, 49.215571], [-112.13617, 49.214714], [-112.134956, 49.213742], [-112.134168, 49.213187], [-112.132859, 49.212334], [-112.13166, 49.211607], [-112.12957, 49.210494], [-112.126976, 49.209298], [-112.123065, 49.207555], [-112.121541, 49.206848], [-112.120052, 49.206151], [-112.118948, 49.205619], [-112.117869, 49.205062], [-112.11706, 49.204623], [-112.115236, 49.203546], [-112.112919, 49.201989], [-112.111625, 49.201012], [-112.109029, 49.198836], [-112.106118, 49.195686], [-112.105716, 49.195156], [-112.10511, 49.194341], [-112.102212, 49.189769], [-112.099016, 49.184803], [-112.097293, 49.182034], [-112.09607, 49.179971], [-112.093881, 49.176527], [-112.093098, 49.175222], [-112.092754, 49.174577], [-112.092518, 49.174107], [-112.092368, 49.173658], [-112.092271, 49.173279], [-112.092175, 49.172816], [-112.092083, 49.172436], [-112.092105, 49.171924], [-112.092116, 49.171461], [-112.092153, 49.170923], [-112.092303, 49.169933], [-112.092797, 49.166924], [-112.093183, 49.164483], [-112.093425, 49.163015], [-112.094079, 49.159023], [-112.094508, 49.156383], [-112.094555, 49.155953], [-112.094556, 49.155221], [-112.094514, 49.154793], [-112.094503, 49.154492], [-112.094385, 49.153874], [-112.094213, 49.153187], [-112.094063, 49.152773], [-112.093902, 49.152351], [-112.093602, 49.151853], [-112.093237, 49.151257], [-112.092797, 49.15078], [-112.092443, 49.150366], [-112.09211, 49.150043], [-112.09144, 49.149473], [-112.090329, 49.148576], [-112.087872, 49.146674], [-112.085019, 49.144442], [-112.08445, 49.144014], [-112.083795, 49.143488], [-112.083195, 49.142934], [-112.082218, 49.142021], [-112.081255, 49.140863], [-112.080652, 49.140161], [-112.079815, 49.139052], [-112.079375, 49.138315], [-112.078935, 49.137592], [-112.078367, 49.136469], [-112.077562, 49.134475], [-112.07679, 49.132524], [-112.076328, 49.131429], [-112.07591, 49.130565], [-112.075325, 49.129377], [-112.074891, 49.128684], [-112.074472, 49.128059], [-112.073582, 49.12674], [-112.072631, 49.125499], [-112.071973, 49.124711], [-112.071054, 49.123645], [-112.069784, 49.122387], [-112.068512, 49.121237], [-112.066629, 49.119662], [-112.062677, 49.116351], [-112.055397, 49.110231], [-112.054528, 49.109557], [-112.053423, 49.108763], [-112.052461, 49.108147], [-112.045612, 49.103924], [-112.04278, 49.102161], [-112.042125, 49.101683], [-112.041514, 49.101163], [-112.040923, 49.100503], [-112.040258, 49.099716], [-112.039046, 49.09777], [-112.036761, 49.094883], [-112.034383, 49.091688], [-112.032973, 49.089733], [-112.032072, 49.088525], [-112.031257, 49.087397], [-112.027952, 49.082826], [-112.025918, 49.080115], [-112.023929, 49.077471], [-112.021412, 49.07398], [-112.01924, 49.070443], [-112.016505, 49.066092], [-112.014616, 49.062914], [-112.010898, 49.056849], [-112.010336, 49.056053], [-112.009981, 49.05549], [-112.009595, 49.055054], [-112.008383, 49.053913], [-112.004081, 49.049886], [-112.003484, 49.049323], [-112.002241, 49.048061], [-112.000186, 49.046131], [-111.998352, 49.044419], [-111.997649, 49.043715], [-111.997014, 49.042914], [-111.996531, 49.042236], [-111.996215, 49.041782], [-111.995927, 49.041307], [-111.995594, 49.040698], [-111.995321, 49.040118], [-111.994693, 49.038673], [-111.994001, 49.037108], [-111.992996, 49.034801], [-111.992369, 49.033409], [-111.99149, 49.031403], [-111.99082, 49.029866], [-111.990004, 49.02802], [-111.98936, 49.026568], [-111.988769, 49.025185], [-111.988218, 49.023936], [-111.987589, 49.022536], [-111.987371, 49.021885], [-111.987235, 49.021333], [-111.987097, 49.020858], [-111.986995, 49.020386], [-111.98692, 49.019658], [-111.986872, 49.018979], [-111.986866, 49.017199], [-111.986872, 49.015542], [-111.98686, 49.013841], [-111.986847, 49.01231], [-111.98685, 49.011137], [-111.986861, 49.010352], [-111.986797, 49.009758], [-111.986645, 49.009206], [-111.986377, 49.008696], [-111.986147, 49.008354], [-111.985836, 49.007998], [-111.985337, 49.007558], [-111.984989, 49.007266], [-111.984301, 49.006795], [-111.983474, 49.00638], [-111.982516, 49.005993], [-111.981765, 49.005715], [-111.980942, 49.005514], [-111.980129, 49.005334], [-111.979328, 49.005194], [-111.978062, 49.005092], [-111.976985, 49.005074], [-111.974918, 49.005173], [-111.973139, 49.005292], [-111.97154, 49.00538], [-111.969019, 49.005514], [-111.967562, 49.005617], [-111.966045, 49.005705], [-111.96469, 49.005725], [-111.963991, 49.005648], [-111.96346, 49.005567], [-111.96295, 49.005448], [-111.962485, 49.005296], [-111.962163, 49.005187], [-111.961761, 49.005004], [-111.961293, 49.004765], [-111.960951, 49.004554], [-111.960789, 49.004426], [-111.960561, 49.004236], [-111.960215, 49.003866], [-111.959973, 49.003571], [-111.959774, 49.003265], [-111.959681, 49.003043], [-111.959581, 49.002794], [-111.95951, 49.002452], [-111.959584, 49.002087], [-111.959768, 49.001731], [-111.96008, 49.00139], [-111.960323, 49.001097], [-111.960993, 49.000276], [-111.961147, 48.999913], [-111.961177, 48.999675], [-111.961154, 48.999405], [-111.96075, 48.998378], [-111.960537, 48.997835], [-111.960261, 48.997296], [-111.959961, 48.996969], [-111.959772, 48.996485], [-111.959789, 48.99582], [-111.959918, 48.995443], [-111.960048, 48.994907], [-111.960094, 48.994603], [-111.960084, 48.994414], [-111.960109, 48.993824], [-111.959994, 48.990856], [-111.95827, 48.98094], [-111.958253, 48.980705], [-111.958185, 48.980405], [-111.958073, 48.980015], [-111.957973, 48.979662], [-111.957788, 48.979177], [-111.957579, 48.978688], [-111.957393, 48.978342], [-111.957182, 48.977986], [-111.956929, 48.977617], [-111.956287, 48.976872], [-111.955429, 48.975932], [-111.940434, 48.960617], [-111.939756, 48.959862], [-111.939258, 48.959163], [-111.938864, 48.958475], [-111.938589, 48.957934], [-111.935242, 48.950139], [-111.933705, 48.946469], [-111.930948, 48.939956], [-111.927211, 48.931012], [-111.924522, 48.924688], [-111.916608, 48.906188], [-111.9112, 48.893335], [-111.910969, 48.892844], [-111.910694, 48.892325], [-111.910265, 48.891676], [-111.909921, 48.891247], [-111.909492, 48.890711], [-111.909046, 48.890237], [-111.908119, 48.889328], [-111.907385, 48.88863], [-111.906844, 48.888116], [-111.903694, 48.88508], [-111.903291, 48.88469], [-111.901737, 48.883161], [-111.878176, 48.860393], [-111.867242, 48.849753], [-111.866486, 48.849013], [-111.865877, 48.848301], [-111.86531, 48.847533], [-111.864675, 48.846613], [-111.86392, 48.845195], [-111.863594, 48.84437], [-111.863233, 48.843167], [-111.863139, 48.842738], [-111.863019, 48.842026], [-111.86295, 48.841071], [-111.862942, 48.830326], [-111.862942, 48.823285], [-111.86289, 48.769261], [-111.862864, 48.764515], [-111.862813, 48.763474], [-111.862718, 48.761743], [-111.861611, 48.743809], [-111.861439, 48.740289], [-111.861439, 48.739949], [-111.861594, 48.737176], [-111.862178, 48.726719], [-111.862229, 48.723792], [-111.862083, 48.656639], [-111.8621, 48.64979], [-111.861997, 48.598701], [-111.86198, 48.592185], [-111.86198, 48.57272], [-111.861912, 48.57163], [-111.861817, 48.570494], [-111.861697, 48.569205], [-111.860581, 48.557657], [-111.860077, 48.552231], [-111.859663, 48.54801], [-111.859594, 48.546805], [-111.859611, 48.545322], [-111.859792, 48.535383], [-111.8598, 48.533888], [-111.859886, 48.533121], [-111.860015, 48.532581], [-111.860246, 48.531939], [-111.860598, 48.531387], [-111.860942, 48.530899], [-111.861688, 48.530109], [-111.866109, 48.525755], [-111.875953, 48.516192], [-111.876929, 48.515247], [-111.877241, 48.514954], [-111.879228, 48.513021], [-111.879759, 48.512467], [-111.88006, 48.512124], [-111.880267, 48.511881], [-111.88042, 48.511679], [-111.880571, 48.511473], [-111.88094, 48.510956], [-111.881292, 48.510376], [-111.881653, 48.509733], [-111.881996, 48.50904], [-111.882305, 48.508346], [-111.882562, 48.507572], [-111.882777, 48.506828], [-111.882931, 48.506134], [-111.883026, 48.505588], [-111.883441, 48.502992], [-111.883604, 48.499975], [-111.883614, 48.499767], [-111.883635, 48.496433], [-111.883673, 48.495815], [-111.883734, 48.49503], [-111.883798, 48.494396], [-111.883866, 48.493802], [-111.883999, 48.493], [-111.884209, 48.492103], [-111.884377, 48.49147], [-111.884557, 48.490837], [-111.885112, 48.489088], [-111.885489, 48.48824], [-111.886605, 48.485897], [-111.88682, 48.485299], [-111.887034, 48.484679], [-111.887197, 48.484099], [-111.887389, 48.483433], [-111.88747, 48.482928], [-111.887522, 48.482349], [-111.887575, 48.481425], [-111.887554, 48.480643], [-111.887506, 48.480113], [-111.887418, 48.479516], [-111.887265, 48.478742], [-111.887056, 48.477974], [-111.886845, 48.47746], [-111.886472, 48.476607], [-111.885635, 48.474831], [-111.885441, 48.474274], [-111.885165, 48.473591], [-111.884897, 48.472862], [-111.884674, 48.47215], [-111.884502, 48.471564], [-111.884279, 48.470409], [-111.884082, 48.46926], [-111.883953, 48.468281], [-111.883906, 48.467423], [-111.883878, 48.46663], [-111.883976, 48.454446], [-111.884028, 48.447094], [-111.884036, 48.443164], [-111.884023, 48.441546], [-111.884017, 48.440681], [-111.884026, 48.43968], [-111.884018, 48.438945], [-111.88402, 48.438457], [-111.884058, 48.438059], [-111.884092, 48.43776], [-111.884134, 48.437455], [-111.884195, 48.437091], [-111.884275, 48.436739], [-111.884339, 48.436455], [-111.884422, 48.436153], [-111.884528, 48.435768], [-111.884674, 48.435354], [-111.884745, 48.435206], [-111.884871, 48.43486], [-111.885003, 48.434574], [-111.885207, 48.434157], [-111.885417, 48.433746], [-111.885596, 48.433441], [-111.88582, 48.433061], [-111.886029, 48.43273], [-111.886203, 48.432492], [-111.886412, 48.432197], [-111.886586, 48.431954], [-111.886816, 48.431663], [-111.887079, 48.431357], [-111.887401, 48.430981], [-111.887774, 48.430593], [-111.888127, 48.430257], [-111.888437, 48.429955], [-111.889099, 48.429374], [-111.889756, 48.428824], [-111.890912, 48.427857], [-111.892165, 48.426838], [-111.905659, 48.415636], [-111.90626, 48.415157], [-111.906861, 48.41457], [-111.907333, 48.414081], [-111.907814, 48.413528], [-111.908406, 48.412776], [-111.909015, 48.411824], [-111.909633, 48.410907], [-111.920752, 48.392582], [-111.927417, 48.381543], [-111.93346, 48.371538], [-111.933846, 48.37086], [-111.934235, 48.370068], [-111.934546, 48.369396], [-111.934939, 48.368399], [-111.935227, 48.367613], [-111.935586, 48.366493], [-111.935831, 48.365544], [-111.936026, 48.364601], [-111.936138, 48.363831], [-111.936258, 48.362885], [-111.936438, 48.360792], [-111.936415, 48.329088], [-111.936407, 48.310354], [-111.936413, 48.303031], [-111.936412, 48.300795], [-111.936402, 48.300483], [-111.936381, 48.271331], [-111.936384, 48.26711], [-111.936382, 48.259592], [-111.936296, 48.241832], [-111.936359, 48.224045], [-111.936352, 48.223792], [-111.936325, 48.223208], [-111.936251, 48.222646], [-111.936138, 48.222131], [-111.936009, 48.221594], [-111.935863, 48.221148], [-111.935674, 48.220724], [-111.935554, 48.220438], [-111.935323, 48.219975], [-111.934809, 48.219106], [-111.93372, 48.217503], [-111.933233, 48.216812], [-111.932738, 48.21609], [-111.932429, 48.215627], [-111.931294, 48.214006], [-111.927397, 48.208419], [-111.925603, 48.205843], [-111.925208, 48.205217], [-111.92491, 48.204712], [-111.924771, 48.204436], [-111.924661, 48.204188], [-111.924567, 48.203923], [-111.924475, 48.203592], [-111.924434, 48.203298], [-111.924418, 48.202753], [-111.924413, 48.20226], [-111.924452, 48.201981], [-111.924528, 48.20166], [-111.924607, 48.201399], [-111.924686, 48.201185], [-111.924808, 48.200887], [-111.92494, 48.200634], [-111.925143, 48.200322], [-111.925478, 48.199721], [-111.929307, 48.193399], [-111.931749, 48.18936], [-111.932143, 48.188696], [-111.932455, 48.188174], [-111.933068, 48.187161], [-111.933601, 48.186274], [-111.933896, 48.185797], [-111.934176, 48.185351], [-111.934674, 48.184441], [-111.934869, 48.184038], [-111.935015, 48.183702], [-111.935133, 48.183407], [-111.935235, 48.183131], [-111.935317, 48.182855], [-111.935435, 48.182454], [-111.935517, 48.18214], [-111.935563, 48.181903], [-111.935605, 48.181629], [-111.935654, 48.181347], [-111.935672, 48.181134], [-111.935695, 48.180837], [-111.93571, 48.180431], [-111.935711, 48.179913], [-111.935689, 48.179699], [-111.935666, 48.179392], [-111.935641, 48.179193], [-111.935605, 48.178954], [-111.935551, 48.17862], [-111.935494, 48.178341], [-111.935425, 48.178065], [-111.935362, 48.177851], [-111.935271, 48.177512], [-111.935083, 48.177015], [-111.93498, 48.176751], [-111.934859, 48.176484], [-111.934688, 48.176141], [-111.934489, 48.175789], [-111.934239, 48.175377], [-111.933859, 48.174812], [-111.933189, 48.173765], [-111.928027, 48.165762], [-111.927735, 48.165321], [-111.92603, 48.162726], [-111.925093, 48.161247], [-111.924008, 48.159611], [-111.922175, 48.156783], [-111.920615, 48.154387], [-111.919007, 48.151911], [-111.91822, 48.150663], [-111.916601, 48.148144], [-111.915551, 48.146568], [-111.914312, 48.144665], [-111.913624, 48.143606], [-111.912311, 48.141567], [-111.911974, 48.141065], [-111.911504, 48.140381], [-111.910989, 48.139656], [-111.91031, 48.138734], [-111.909273, 48.1374], [-111.907928, 48.135653], [-111.906666, 48.13405], [-111.905997, 48.133172], [-111.904722, 48.131516], [-111.901655, 48.127581], [-111.900048, 48.125516], [-111.898729, 48.123822], [-111.894029, 48.117798], [-111.893315, 48.116857], [-111.892001, 48.115177], [-111.889638, 48.112132], [-111.887413, 48.109275], [-111.884717, 48.105808], [-111.876044, 48.094626], [-111.87031, 48.087229], [-111.862959, 48.077764], [-111.861332, 48.075665], [-111.858755, 48.072362], [-111.857125, 48.070241], [-111.854834, 48.06729], [-111.850948, 48.062304], [-111.85011, 48.061229], [-111.849084, 48.059917], [-111.845348, 48.055071], [-111.836461, 48.043589], [-111.832454, 48.038401], [-111.828116, 48.032803], [-111.825147, 48.028974], [-111.816587, 48.017942], [-111.816087, 48.017289], [-111.815305, 48.016376], [-111.814473, 48.015423], [-111.813623, 48.014499], [-111.812937, 48.013816], [-111.811984, 48.012851], [-111.810868, 48.011863], [-111.809752, 48.010882], [-111.808825, 48.010101], [-111.807598, 48.009153], [-111.806388, 48.008229], [-111.805238, 48.007408], [-111.784158, 47.992286], [-111.782561, 47.991143], [-111.767146, 47.980084], [-111.766219, 47.979354], [-111.765283, 47.978504], [-111.764288, 47.977544], [-111.763404, 47.976585], [-111.762691, 47.975723], [-111.762193, 47.97501], [-111.761653, 47.974154], [-111.761121, 47.973252], [-111.753336, 47.959718], [-111.749036, 47.952205], [-111.736505, 47.930384], [-111.736106, 47.92965], [-111.735644, 47.928853], [-111.735343, 47.928305], [-111.733592, 47.925244], [-111.733306, 47.924769], [-111.732599, 47.923554], [-111.732395, 47.923205], [-111.731718, 47.922093], [-111.731538, 47.921738], [-111.73117, 47.921043], [-111.726112, 47.912262], [-111.71442, 47.89173], [-111.713776, 47.890608], [-111.713253, 47.889578], [-111.712927, 47.888864], [-111.71254, 47.888058], [-111.712146, 47.88689], [-111.711811, 47.885744], [-111.711519, 47.884564], [-111.711253, 47.883125], [-111.711124, 47.881922], [-111.71103, 47.880834], [-111.71103, 47.879792], [-111.711129, 47.869762], [-111.711004, 47.867783], [-111.710901, 47.866758], [-111.710781, 47.865716], [-111.710618, 47.864547], [-111.710438, 47.863447], [-111.710283, 47.862537], [-111.709991, 47.861213], [-111.709756, 47.860259], [-111.709335, 47.858847], [-111.708841, 47.857285], [-111.70727, 47.852822], [-111.706867, 47.851704], [-111.706498, 47.850875], [-111.706077, 47.850017], [-111.705434, 47.848819], [-111.705305, 47.848582], [-111.704816, 47.847747], [-111.704215, 47.846849], [-111.703623, 47.846054], [-111.702678, 47.844833], [-111.701983, 47.843986], [-111.700902, 47.842828], [-111.699923, 47.841889], [-111.698979, 47.841013], [-111.698052, 47.84023], [-111.696893, 47.839291], [-111.668363, 47.817267], [-111.667479, 47.816472], [-111.667042, 47.815942], [-111.666647, 47.815434], [-111.666226, 47.81476], [-111.665943, 47.814143], [-111.66578, 47.813619], [-111.665625, 47.812887], [-111.6656, 47.812391], [-111.665591, 47.811797], [-111.666429, 47.79584], [-111.666535, 47.793822], [-111.666492, 47.791308], [-111.666439, 47.750802], [-111.666442, 47.741317], [-111.666445, 47.740989], [-111.666406, 47.723306], [-111.666381, 47.72244], [-111.666295, 47.721684], [-111.666158, 47.720881], [-111.665986, 47.72024], [-111.665746, 47.719547], [-111.665419, 47.71871], [-111.665042, 47.717925], [-111.664647, 47.717243], [-111.664132, 47.716493], [-111.663789, 47.716008], [-111.663359, 47.715528], [-111.662432, 47.714581], [-111.658081, 47.710071], [-111.647285, 47.699031], [-111.646085, 47.697836], [-111.632275, 47.683698], [-111.631949, 47.683351], [-111.606663, 47.657441], [-111.60117, 47.651798], [-111.590415, 47.64073], [-111.589918, 47.640187], [-111.589463, 47.639655], [-111.589068, 47.639157], [-111.588707, 47.638689], [-111.588287, 47.638139], [-111.587849, 47.637538], [-111.587549, 47.637104], [-111.587231, 47.636624], [-111.58627, 47.63501], [-111.585369, 47.633136], [-111.570511, 47.6019], [-111.569945, 47.600818], [-111.56955, 47.600169], [-111.569224, 47.599643], [-111.568846, 47.599047], [-111.568546, 47.598607], [-111.568168, 47.598051], [-111.567747, 47.597472], [-111.567335, 47.596928], [-111.566915, 47.59643], [-111.566537, 47.595991], [-111.552899, 47.581183], [-111.552633, 47.580911], [-111.537629, 47.564691], [-111.536514, 47.563515], [-111.535904, 47.562901], [-111.535175, 47.56227], [-111.534437, 47.561691], [-111.533656, 47.561129], [-111.532711, 47.560504], [-111.531647, 47.559884], [-111.53048, 47.559311], [-111.529184, 47.558737], [-111.528008, 47.558285], [-111.526806, 47.557897], [-111.525424, 47.557503], [-111.524008, 47.557162], [-111.522824, 47.556953], [-111.521734, 47.556779], [-111.509679, 47.554952], [-111.484251, 47.551039], [-111.477299, 47.54995], [-111.455614, 47.546631], [-111.452477, 47.546143], [-111.452005, 47.546074], [-111.448496, 47.545531], [-111.445301, 47.545037], [-111.443894, 47.544799], [-111.442357, 47.544492], [-111.440907, 47.544162], [-111.439173, 47.543716], [-111.437894, 47.543368], [-111.436512, 47.542957], [-111.435045, 47.54247], [-111.385349, 47.526175], [-111.384241, 47.525793], [-111.383478, 47.52541], [-111.382928, 47.525097], [-111.382499, 47.524784], [-111.382036, 47.524384], [-111.381709, 47.524025], [-111.381452, 47.523741], [-111.380053, 47.521909], [-111.379298, 47.520959], [-111.379152, 47.520779], [-111.378714, 47.520286], [-111.378268, 47.519857], [-111.377555, 47.519394], [-111.376774, 47.518994], [-111.376096, 47.518733], [-111.375409, 47.51853], [-111.374294, 47.518234], [-111.351059, 47.512362], [-111.350081, 47.512055], [-111.348914, 47.511632], [-111.348184, 47.511255], [-111.347446, 47.510878], [-111.346914, 47.510553], [-111.346356, 47.510147], [-111.345832, 47.509759], [-111.345309, 47.509295], [-111.344914, 47.508884], [-111.344605, 47.508542], [-111.344193, 47.50802], [-111.34391, 47.507591], [-111.343618, 47.507133], [-111.343352, 47.506535], [-111.343137, 47.505921], [-111.343, 47.505254], [-111.342914, 47.504779], [-111.342871, 47.504205], [-111.342884, 47.503714], [-111.343017, 47.501337], [-111.343037, 47.500922], [-111.343074, 47.500247], [-111.343153, 47.498866], [-111.343699, 47.489338], [-111.343837, 47.488347], [-111.344051, 47.487517], [-111.344326, 47.486746], [-111.344695, 47.485795], [-111.345184, 47.484855], [-111.345493, 47.484356], [-111.346068, 47.483527], [-111.34715, 47.48221], [-111.347948, 47.481392], [-111.348765, 47.480715], [-111.349751, 47.479978], [-111.350866, 47.47913], [-111.356582, 47.475347], [-111.365214, 47.469592], [-111.367419, 47.46813], [-111.367934, 47.467829], [-111.368578, 47.467492], [-111.36923, 47.467144], [-111.369994, 47.466807], [-111.370973, 47.466407], [-111.371926, 47.466042], [-111.372818, 47.465746], [-111.373522, 47.465525], [-111.374509, 47.465258], [-111.429286, 47.452445], [-111.429621, 47.452364], [-111.473508, 47.442064], [-111.50183, 47.435384], [-111.502749, 47.435175], [-111.503701, 47.434961], [-111.504362, 47.434792], [-111.505221, 47.434543], [-111.506045, 47.434299], [-111.506663, 47.434095], [-111.507143, 47.433927], [-111.507907, 47.433648], [-111.508654, 47.433312], [-111.509255, 47.433045], [-111.509933, 47.432725], [-111.510534, 47.432412], [-111.51122, 47.432029], [-111.51183, 47.431674], [-111.512954, 47.430931], [-111.513546, 47.43049], [-111.524011, 47.422011], [-111.569141, 47.385345], [-111.6142, 47.348685], [-111.614466, 47.34847], [-111.634341, 47.332266], [-111.69101, 47.285965], [-111.692683, 47.284596], [-111.694151, 47.283461], [-111.694838, 47.282943], [-111.696432, 47.281863], [-111.698123, 47.280815], [-111.699024, 47.280297], [-111.699436, 47.280064], [-111.703522, 47.277671], [-111.704183, 47.27728], [-111.704689, 47.276966], [-111.70511, 47.276686], [-111.705436, 47.276442], [-111.705788, 47.276139], [-111.706182, 47.275766], [-111.706612, 47.275289], [-111.706989, 47.274806], [-111.707367, 47.274264], [-111.707573, 47.273856], [-111.707813, 47.273379], [-111.707933, 47.273047], [-111.708045, 47.272651], [-111.708122, 47.272307], [-111.708199, 47.271911], [-111.708234, 47.271544], [-111.708234, 47.271212], [-111.708157, 47.264538], [-111.708114, 47.262342], [-111.708122, 47.261794], [-111.708157, 47.261369], [-111.708234, 47.260851], [-111.708268, 47.260653], [-111.708337, 47.260257], [-111.708508, 47.259511], [-111.708637, 47.258923], [-111.708783, 47.258241], [-111.70898, 47.257536], [-111.709152, 47.256942], [-111.709298, 47.256383], [-111.710079, 47.25333], [-111.710328, 47.252363], [-111.710474, 47.251833], [-111.710637, 47.251332], [-111.710834, 47.250889], [-111.71104, 47.250545], [-111.711367, 47.250085], [-111.711658, 47.249753], [-111.711942, 47.249444], [-111.712345, 47.249089], [-111.712766, 47.248751], [-111.71316, 47.248494], [-111.713624, 47.248221], [-111.714147, 47.247958], [-111.714834, 47.247655], [-111.729726, 47.241112], [-111.73291, 47.239807], [-111.75169, 47.232534], [-111.754093, 47.231624], [-111.75635, 47.230861], [-111.75676, 47.230739], [-111.765002, 47.228413], [-111.765835, 47.228157], [-111.766633, 47.227877], [-111.767345, 47.227597], [-111.768092, 47.227306], [-111.768719, 47.227026], [-111.769474, 47.226676], [-111.770058, 47.226361], [-111.770727, 47.225988], [-111.771448, 47.225534], [-111.772118, 47.225096], [-111.772693, 47.224688], [-111.773405, 47.22417], [-111.773714, 47.223936], [-111.774169, 47.223575], [-111.774641, 47.223103], [-111.775104, 47.222619], [-111.775499, 47.222211], [-111.775885, 47.221774], [-111.776306, 47.221255], [-111.776658, 47.220777], [-111.77695, 47.220369], [-111.777422, 47.219611], [-111.777722, 47.219057], [-111.778014, 47.218422], [-111.778289, 47.217746], [-111.778503, 47.217104], [-111.778675, 47.216428], [-111.778881, 47.215694], [-111.779061, 47.214988], [-111.780057, 47.210796], [-111.780203, 47.210213], [-111.780323, 47.209758], [-111.780435, 47.209397], [-111.780641, 47.208808], [-111.780907, 47.208201], [-111.78113, 47.207729], [-111.781301, 47.207438], [-111.781499, 47.207129], [-111.78228, 47.205916], [-111.783293, 47.204645], [-111.783936, 47.203974], [-111.784735, 47.203146], [-111.785593, 47.202225], [-111.786314, 47.201466], [-111.786872, 47.200883], [-111.787902, 47.199845], [-111.788254, 47.199507], [-111.788674, 47.19914], [-111.789086, 47.19879], [-111.789584, 47.198387], [-111.790168, 47.197921], [-111.790605, 47.197618], [-111.791249, 47.197227], [-111.791824, 47.196877], [-111.792545, 47.196474], [-111.793198, 47.196136], [-111.79397, 47.195769], [-111.794805, 47.195425], [-111.801248, 47.192835], [-111.801575, 47.192701], [-111.802656, 47.192287], [-111.803514, 47.191937], [-111.804167, 47.191628], [-111.804665, 47.191394], [-111.8053, 47.191045], [-111.805723, 47.190797], [-111.805997, 47.190634], [-111.806478, 47.190323], [-111.806732, 47.190144], [-111.80699, 47.189955], [-111.807242, 47.189755], [-111.807499, 47.189537], [-111.807978, 47.189108], [-111.808309, 47.188784], [-111.808738, 47.188316], [-111.809145, 47.187831], [-111.809375, 47.187515], [-111.809578, 47.187207], [-111.809725, 47.186968], [-111.809941, 47.18658], [-111.810196, 47.186052], [-111.810485, 47.185392], [-111.810582, 47.185034], [-111.810757, 47.184458], [-111.81087, 47.184068], [-111.811288, 47.182591], [-111.811466, 47.182023], [-111.811592, 47.181562], [-111.811725, 47.181068], [-111.811881, 47.18053], [-111.812016, 47.179972], [-111.812133, 47.179486], [-111.812304, 47.178698], [-111.812475, 47.177933], [-111.812795, 47.176671], [-111.813022, 47.175805], [-111.813143, 47.175313], [-111.813289, 47.174743], [-111.813451, 47.174086], [-111.813587, 47.173603], [-111.813709, 47.173199], [-111.813868, 47.172742], [-111.814052, 47.172177], [-111.81431, 47.171374], [-111.814446, 47.170953], [-111.814555, 47.170592], [-111.814621, 47.170315], [-111.814724, 47.169845], [-111.814867, 47.169286], [-111.814924, 47.169023], [-111.815005, 47.168585], [-111.81512, 47.168075], [-111.815267, 47.167513], [-111.81537, 47.167124], [-111.815534, 47.166596], [-111.815743, 47.165879], [-111.815883, 47.165407], [-111.816017, 47.16497], [-111.816151, 47.164499], [-111.816299, 47.164102], [-111.816455, 47.163605], [-111.816606, 47.163233], [-111.81675, 47.162929], [-111.8169, 47.16265], [-111.817163, 47.162234], [-111.817461, 47.161792], [-111.817707, 47.161428], [-111.817918, 47.161172], [-111.818109, 47.160939], [-111.81826, 47.160773], [-111.818436, 47.160598], [-111.818713, 47.160322], [-111.819137, 47.159916], [-111.819338, 47.159742], [-111.819615, 47.159506], [-111.819811, 47.159353], [-111.820101, 47.159137], [-111.820886, 47.158653], [-111.821347, 47.158391], [-111.821709, 47.158179], [-111.82215, 47.157949], [-111.822792, 47.157656], [-111.823291, 47.157407], [-111.823951, 47.157074], [-111.824604, 47.156773], [-111.824926, 47.156618], [-111.826016, 47.156075], [-111.826777, 47.155704], [-111.827118, 47.155527], [-111.827632, 47.155278], [-111.828833, 47.154684], [-111.830331, 47.153967], [-111.83092, 47.153679], [-111.831417, 47.153485], [-111.831694, 47.153394], [-111.831937, 47.15332], [-111.832157, 47.153261], [-111.832517, 47.15318], [-111.832892, 47.153117], [-111.833253, 47.153076], [-111.833573, 47.153049], [-111.833993, 47.153025], [-111.834559, 47.153049], [-111.835126, 47.153113], [-111.835701, 47.1532], [-111.83595, 47.153259], [-111.841856, 47.154858], [-111.842362, 47.155002], [-111.842712, 47.155094], [-111.843019, 47.155158], [-111.843672, 47.155257], [-111.8438, 47.155267], [-111.844087, 47.155287], [-111.844399, 47.155286], [-111.844699, 47.15528], [-111.845058, 47.15526], [-111.845509, 47.155193], [-111.845869, 47.155122], [-111.846291, 47.155019], [-111.846644, 47.154905], [-111.846928, 47.154785], [-111.847126, 47.154685], [-111.847479, 47.154504], [-111.847736, 47.154346], [-111.847908, 47.15421], [-111.848115, 47.154036], [-111.848251, 47.153894], [-111.848342, 47.153792], [-111.84847, 47.153647], [-111.848543, 47.153546], [-111.848649, 47.153419], [-111.848764, 47.153232], [-111.848861, 47.153032], [-111.848947, 47.152823], [-111.848973, 47.152708], [-111.849021, 47.152541], [-111.849042, 47.152364], [-111.849077, 47.152131], [-111.849103, 47.151825], [-111.849333, 47.149062], [-111.849393, 47.148406], [-111.8494, 47.148192], [-111.849408, 47.147987], [-111.8494, 47.147824], [-111.84939, 47.147698], [-111.849374, 47.147556], [-111.849347, 47.147435], [-111.849331, 47.147351], [-111.849245, 47.146966], [-111.849142, 47.146674], [-111.849059, 47.146434], [-111.848943, 47.146212], [-111.84886, 47.146053], [-111.848767, 47.145896], [-111.848673, 47.145762], [-111.848566, 47.14562], [-111.847025, 47.143717], [-111.846887, 47.143525], [-111.846766, 47.143353], [-111.846661, 47.14319], [-111.846521, 47.142953], [-111.846415, 47.142749], [-111.846343, 47.142591], [-111.846269, 47.14237], [-111.846241, 47.142263], [-111.846223, 47.14217], [-111.846209, 47.142062], [-111.84619, 47.141876], [-111.846192, 47.141745], [-111.846217, 47.141528], [-111.846242, 47.141353], [-111.84627, 47.141184], [-111.846324, 47.141016], [-111.846398, 47.140797], [-111.846525, 47.140531], [-111.846604, 47.14041], [-111.846676, 47.14029], [-111.846846, 47.140059], [-111.847142, 47.139751], [-111.847281, 47.13963], [-111.84746, 47.139479], [-111.847678, 47.139323], [-111.84791, 47.139171], [-111.848186, 47.139013], [-111.848438, 47.138891], [-111.848706, 47.138772], [-111.848984, 47.138674], [-111.849267, 47.138581], [-111.849592, 47.138477], [-111.849947, 47.138393], [-111.850257, 47.138331], [-111.850556, 47.138292], [-111.850908, 47.138241], [-111.851241, 47.13822], [-111.85164, 47.138209], [-111.851974, 47.13821], [-111.852237, 47.138223], [-111.852532, 47.138247], [-111.852795, 47.138276], [-111.853123, 47.13833], [-111.853394, 47.138374], [-111.853787, 47.138457], [-111.854766, 47.138667], [-111.855826, 47.138884], [-111.856179, 47.13897], [-111.856565, 47.139029], [-111.856792, 47.139068], [-111.857173, 47.13911], [-111.857431, 47.139137], [-111.857676, 47.139157], [-111.858048, 47.139176], [-111.858338, 47.139177], [-111.858762, 47.139167], [-111.859155, 47.139148], [-111.85955, 47.139117], [-111.859805, 47.139089], [-111.860245, 47.139022], [-111.860491, 47.13898], [-111.860683, 47.138944], [-111.860973, 47.138885], [-111.861214, 47.138829], [-111.861479, 47.138758], [-111.861743, 47.138677], [-111.862069, 47.138562], [-111.862344, 47.138449], [-111.862687, 47.138297], [-111.862931, 47.138175], [-111.863114, 47.138087], [-111.863314, 47.137975], [-111.863599, 47.137807], [-111.863972, 47.13756], [-111.864261, 47.137341], [-111.864442, 47.137202], [-111.864674, 47.137005], [-111.864969, 47.136736], [-111.865258, 47.13642], [-111.867853, 47.13324], [-111.868102, 47.13296], [-111.868445, 47.132657], [-111.868909, 47.132347], [-111.869372, 47.132096], [-111.869776, 47.131938], [-111.870291, 47.131792], [-111.870754, 47.131687], [-111.871286, 47.131623], [-111.87181, 47.131605], [-111.872359, 47.131617], [-111.873389, 47.131705], [-111.875681, 47.131897], [-111.885054, 47.132785], [-111.886566, 47.132886], [-111.888607, 47.1331], [-111.888985, 47.133135], [-111.889766, 47.133217], [-111.890444, 47.133281], [-111.891225, 47.133322], [-111.891886, 47.133334], [-111.892598, 47.133334], [-111.893242, 47.133316], [-111.8938, 47.133305], [-111.894512, 47.133246], [-111.89513, 47.133194], [-111.89563, 47.133132], [-111.896274, 47.133044], [-111.89678, 47.132974], [-111.898531, 47.132636], [-111.899656, 47.132344], [-111.900711, 47.132022], [-111.901398, 47.131783], [-111.902445, 47.131403], [-111.904162, 47.130755], [-111.909034, 47.128927], [-111.913729, 47.127181], [-111.917251, 47.125878], [-111.92071, 47.1247], [-111.921698, 47.124251], [-111.922387, 47.123838], [-111.922806, 47.123526], [-111.924809, 47.121884], [-111.925527, 47.121467], [-111.926631, 47.121045], [-111.927545, 47.120838], [-111.928844, 47.120679], [-111.939954, 47.119561], [-111.940893, 47.119375], [-111.941491, 47.119193], [-111.94258, 47.118694], [-111.94328, 47.118205], [-111.943682, 47.117842], [-111.944167, 47.117216], [-111.94437, 47.116782], [-111.94452, 47.116283], [-111.944594, 47.115646], [-111.944471, 47.113184], [-111.944519, 47.112085], [-111.944699, 47.111164], [-111.9451, 47.109855], [-111.94519, 47.109613], [-111.946818, 47.104798], [-111.947185, 47.103915], [-111.94757, 47.103215], [-111.948705, 47.101708], [-111.95025, 47.099859], [-111.951568, 47.098237], [-111.952318, 47.097326], [-111.952866, 47.096646], [-111.954165, 47.094457], [-111.954536, 47.093996], [-111.955001, 47.093573], [-111.95538, 47.093283], [-111.95597, 47.092921], [-111.958022, 47.092174], [-111.958929, 47.091665], [-111.959563, 47.091145], [-111.959918, 47.090782], [-111.960199, 47.090406], [-111.960514, 47.089782], [-111.960679, 47.089121], [-111.961076, 47.083974], [-111.961218, 47.083113], [-111.961515, 47.082259], [-111.962027, 47.081188], [-111.962536, 47.080367], [-111.963148, 47.079581], [-111.964601, 47.078023], [-111.966718, 47.075826], [-111.967024, 47.075517], [-111.969094, 47.073375], [-111.970437, 47.07194], [-111.972154, 47.070032], [-111.973432, 47.068542], [-111.974103, 47.067809], [-111.974604, 47.067107], [-111.976616, 47.064731], [-111.98105, 47.059331], [-111.981811, 47.058552], [-111.982905, 47.057585], [-111.983864, 47.057007], [-111.985011, 47.056354], [-111.986314, 47.055712], [-111.986853, 47.055504], [-111.987827, 47.055224], [-111.990272, 47.054577], [-111.991627, 47.053954], [-111.992491, 47.053494], [-111.993301, 47.052977], [-111.994268, 47.05221], [-111.994901, 47.051592], [-112.00108, 47.045261], [-112.002131, 47.044014], [-112.002341, 47.043639], [-112.002459, 47.043291], [-112.00254, 47.04249], [-112.002551, 47.041633], [-112.002802, 47.040468], [-112.003031, 47.039996], [-112.003311, 47.039629], [-112.00408, 47.038901], [-112.004669, 47.038537], [-112.005381, 47.038191], [-112.006132, 47.03787], [-112.007591, 47.037508], [-112.008057, 47.037437], [-112.009475, 47.037313], [-112.012696, 47.037258], [-112.01489, 47.037245], [-112.016275, 47.037163], [-112.0192, 47.037033], [-112.020595, 47.036893], [-112.021841, 47.036661], [-112.023428, 47.036288], [-112.024543, 47.035923], [-112.025634, 47.03549], [-112.026621, 47.035004], [-112.027875, 47.034259], [-112.04368, 47.024236], [-112.044909, 47.023441], [-112.04544, 47.023036], [-112.04608, 47.022418], [-112.046528, 47.021863], [-112.046751, 47.021531], [-112.046895, 47.021189], [-112.048457, 47.017223], [-112.049379, 47.014861], [-112.04961, 47.014335], [-112.049878, 47.013819], [-112.050194, 47.013314], [-112.050556, 47.012813], [-112.050955, 47.01233], [-112.051351, 47.011873], [-112.051809, 47.011423], [-112.052303, 47.010991], [-112.05283, 47.010576], [-112.053387, 47.010182], [-112.053972, 47.009806], [-112.056998, 47.008006], [-112.058515, 47.007109], [-112.060333, 47.006031], [-112.061846, 47.00513], [-112.062472, 47.004869], [-112.062889, 47.004741], [-112.063358, 47.004645], [-112.063683, 47.004606], [-112.064074, 47.004561], [-112.064445, 47.004519], [-112.06488, 47.004576], [-112.06527, 47.004629], [-112.065565, 47.004697], [-112.065974, 47.004792], [-112.066808, 47.004991], [-112.06824, 47.005361], [-112.0686, 47.005467], [-112.069096, 47.005596], [-112.069473, 47.005688], [-112.069732, 47.005745], [-112.070266, 47.005855], [-112.070699, 47.005951], [-112.071253, 47.006048], [-112.071642, 47.006114], [-112.071928, 47.006158], [-112.072302, 47.006209], [-112.072735, 47.006263], [-112.072984, 47.006287], [-112.073367, 47.006318], [-112.073792, 47.006352], [-112.074219, 47.006372], [-112.074542, 47.006382], [-112.074829, 47.00639], [-112.075178, 47.006392], [-112.075603, 47.006393], [-112.076788, 47.006332], [-112.077271, 47.006281], [-112.077628, 47.006225], [-112.078026, 47.006153], [-112.078436, 47.006074], [-112.078755, 47.005996], [-112.079201, 47.005866], [-112.079533, 47.005747], [-112.079812, 47.00563], [-112.080082, 47.005495], [-112.080379, 47.005332], [-112.080635, 47.005164], [-112.080953, 47.004927], [-112.081049, 47.004826], [-112.081198, 47.004689], [-112.081316, 47.004562], [-112.081449, 47.004379], [-112.081568, 47.004191], [-112.081674, 47.003987], [-112.08174, 47.003858], [-112.081806, 47.003692], [-112.081884, 47.003438], [-112.08191, 47.003275], [-112.081934, 47.003066], [-112.08193, 47.002831], [-112.081896, 47.002597], [-112.081853, 47.002371], [-112.081798, 47.002194], [-112.081607, 47.00176], [-112.081184, 47.001198], [-112.079559, 46.99968], [-112.078016, 46.99838], [-112.07758, 46.997912], [-112.077288, 46.997532], [-112.076986, 46.99693], [-112.076889, 46.996514], [-112.076886, 46.996116], [-112.076984, 46.995478], [-112.07795, 46.992584], [-112.078047, 46.991994], [-112.078024, 46.991594], [-112.077935, 46.9912], [-112.077672, 46.990627], [-112.076129, 46.988425], [-112.075762, 46.987771], [-112.075646, 46.98742], [-112.075619, 46.987055], [-112.075663, 46.986679], [-112.075796, 46.986299], [-112.076008, 46.985921], [-112.076502, 46.98539], [-112.077181, 46.984932], [-112.081242, 46.982494], [-112.081853, 46.981972], [-112.082104, 46.981646], [-112.082346, 46.981245], [-112.082526, 46.98074], [-112.082567, 46.980266], [-112.082681, 46.977427], [-112.082826, 46.974499], [-112.083032, 46.973709], [-112.083438, 46.973098], [-112.083941, 46.972667], [-112.084536, 46.97225], [-112.093815, 46.965771], [-112.094034, 46.965596], [-112.094318, 46.965306], [-112.094501, 46.965085], [-112.094642, 46.964864], [-112.094785, 46.964575], [-112.094868, 46.964338], [-112.094926, 46.964081], [-112.094952, 46.963813], [-112.094963, 46.963562], [-112.094964, 46.963005], [-112.094945, 46.962147], [-112.095064, 46.961322], [-112.095315, 46.960775], [-112.095663, 46.960328], [-112.098599, 46.957746], [-112.098975, 46.957432], [-112.099726, 46.956946], [-112.100314, 46.956644], [-112.101038, 46.956326], [-112.103946, 46.955297], [-112.107802, 46.953955], [-112.108475, 46.953671], [-112.108901, 46.953445], [-112.109465, 46.953038], [-112.109979, 46.952469], [-112.110197, 46.952042], [-112.111502, 46.949682], [-112.112324, 46.948952], [-112.113184, 46.948533], [-112.114208, 46.948308], [-112.116111, 46.948021], [-112.117289, 46.947669], [-112.118334, 46.94705], [-112.119549, 46.946068], [-112.122402, 46.943642], [-112.123133, 46.943013], [-112.123553, 46.942583], [-112.12389, 46.942171], [-112.124619, 46.941266], [-112.125571, 46.939982], [-112.126015, 46.939377], [-112.1265, 46.938749], [-112.126751, 46.938397], [-112.126995, 46.938014], [-112.127231, 46.93766], [-112.127472, 46.93708], [-112.127553, 46.936521], [-112.127485, 46.935878], [-112.126037, 46.931011], [-112.125843, 46.930596], [-112.125614, 46.930288], [-112.125356, 46.930017], [-112.125, 46.92973], [-112.122981, 46.928549], [-112.122668, 46.928293], [-112.122315, 46.927871], [-112.122099, 46.927296], [-112.122093, 46.926792], [-112.122341, 46.926128], [-112.12333, 46.924835], [-112.123628, 46.924404], [-112.123835, 46.923877], [-112.123883, 46.923325], [-112.123775, 46.9228], [-112.123494, 46.922251], [-112.123242, 46.921939], [-112.123161, 46.921857], [-112.12174, 46.920823], [-112.121416, 46.920602], [-112.120977, 46.920179], [-112.120697, 46.919775], [-112.120503, 46.919327], [-112.120322, 46.918471], [-112.119667, 46.915666], [-112.11939, 46.915074], [-112.119062, 46.914644], [-112.118506, 46.91421], [-112.116708, 46.913328], [-112.116193, 46.912968], [-112.115472, 46.912187], [-112.115356, 46.911933], [-112.115279, 46.911728], [-112.115241, 46.911454], [-112.11523, 46.911175], [-112.115266, 46.910915], [-112.115368, 46.910602], [-112.115446, 46.910438], [-112.115662, 46.910084], [-112.11604, 46.909673], [-112.119395, 46.907257], [-112.119896, 46.906695], [-112.120633, 46.90538], [-112.120979, 46.904986], [-112.122506, 46.903673], [-112.12294, 46.903177], [-112.123172, 46.902727], [-112.123344, 46.902186], [-112.12337, 46.901665], [-112.12326, 46.90114], [-112.123004, 46.900542], [-112.122296, 46.899463], [-112.118791, 46.893932], [-112.118077, 46.892887], [-112.117488, 46.892253], [-112.11672, 46.891638], [-112.11608, 46.891253], [-112.114112, 46.89021], [-112.110716, 46.888379], [-112.110338, 46.888159], [-112.106096, 46.885885], [-112.101398, 46.88336], [-112.094609, 46.879651], [-112.0931, 46.878959], [-112.091311, 46.878288], [-112.089958, 46.877867], [-112.088521, 46.877511], [-112.069016, 46.872724], [-112.049279, 46.867857], [-112.047103, 46.867189], [-112.044993, 46.866382], [-112.043719, 46.865827], [-112.042541, 46.865241], [-112.040586, 46.864168], [-112.039263, 46.863298], [-112.037988, 46.862365], [-112.036738, 46.86133], [-112.014076, 46.842104], [-112.012788, 46.840941], [-112.011749, 46.839918], [-112.010445, 46.83844], [-112.009025, 46.83667], [-112.007922, 46.83499], [-112.007123, 46.833605], [-112.006361, 46.832073], [-112.005882, 46.830963], [-112.003109, 46.824179], [-112.002795, 46.823308], [-112.001559, 46.820272], [-112.001405, 46.819943], [-112.001005, 46.818846], [-112.000667, 46.817632], [-112.000578, 46.816809], [-112.000493, 46.815794], [-112.000516, 46.814928], [-112.000693, 46.813761], [-112.001162, 46.812127], [-112.001628, 46.811112], [-112.002462, 46.809713], [-112.003317, 46.808598], [-112.004049, 46.80782], [-112.005118, 46.806834], [-112.006592, 46.805739], [-112.028016, 46.792156], [-112.029741, 46.790912], [-112.030745, 46.79008], [-112.031484, 46.78938], [-112.032257, 46.788498], [-112.033266, 46.787176], [-112.033873, 46.786179], [-112.034356, 46.785153], [-112.03474, 46.784222], [-112.035041, 46.783106], [-112.035281, 46.78179], [-112.035332, 46.780429], [-112.035162, 46.778932], [-112.034994, 46.7781], [-112.034623, 46.77676], [-112.031439, 46.767593], [-112.030872, 46.766116], [-112.03058, 46.765566], [-112.0298, 46.76452], [-112.029051, 46.763776], [-112.027625, 46.762715], [-112.021142, 46.759474], [-112.019784, 46.758674], [-112.018427, 46.757701], [-112.017026, 46.756401], [-112.01646, 46.75581], [-112.015787, 46.754949], [-112.015034, 46.753726], [-112.014675, 46.752957], [-112.014369, 46.752178], [-112.014113, 46.751252], [-112.013978, 46.7503], [-112.013965, 46.748917], [-112.01407, 46.747974], [-112.014425, 46.74657], [-112.017111, 46.737855], [-112.017375, 46.736784], [-112.017607, 46.735355], [-112.017673, 46.734409], [-112.017685, 46.733581], [-112.017588, 46.732104], [-112.017413, 46.730961], [-112.016851, 46.728893], [-112.016052, 46.726997], [-112.015229, 46.725474], [-112.014031, 46.723297], [-112.013406, 46.721963], [-112.012932, 46.720654], [-112.012536, 46.719097], [-112.012339, 46.717599], [-112.012283, 46.716345], [-112.012185, 46.707222], [-112.012075, 46.70024], [-112.011602, 46.660701], [-112.011601, 46.660313], [-112.011436, 46.648193], [-112.011441, 46.648028], [-112.011427, 46.646569], [-112.011246, 46.631754], [-112.011146, 46.621062], [-112.011132, 46.619553], [-112.01109, 46.616805], [-112.011059, 46.614798], [-112.011048, 46.61406], [-112.011037, 46.613709], [-112.010993, 46.613319], [-112.010941, 46.613077], [-112.010877, 46.612674], [-112.010838, 46.612474], [-112.010746, 46.61207], [-112.01064, 46.611666], [-112.010587, 46.611464], [-112.010508, 46.611263], [-112.010314, 46.610728], [-112.010256, 46.610545], [-112.010198, 46.610369], [-112.009915, 46.609824], [-112.009739, 46.609444], [-112.009564, 46.609128], [-112.009295, 46.608718], [-112.006524, 46.603944], [-112.003906, 46.599455], [-112.002681, 46.597363], [-112.001205, 46.594784], [-112, 46.592799], [-111.999632, 46.592286], [-111.999301, 46.591861], [-111.998522, 46.590983], [-111.99828, 46.590699], [-111.997972, 46.590398], [-111.996867, 46.589396], [-111.996488, 46.589096], [-111.995735, 46.58854], [-111.988743, 46.583855], [-111.983795, 46.580551], [-111.98049, 46.578347], [-111.978312, 46.576892], [-111.976196, 46.575478], [-111.970612, 46.571744], [-111.969019, 46.570651], [-111.966637, 46.569071], [-111.957631, 46.563066], [-111.956867, 46.562459], [-111.956078, 46.56178], [-111.955528, 46.561278], [-111.95503, 46.560765], [-111.954464, 46.560133], [-111.953992, 46.559508], [-111.953623, 46.558994], [-111.953365, 46.558587], [-111.953022, 46.558003], [-111.95261, 46.557224], [-111.951443, 46.55468], [-111.946695, 46.544203], [-111.946304, 46.54331], [-111.945744, 46.542172], [-111.945185, 46.540831], [-111.944611, 46.539567], [-111.943999, 46.538252], [-111.943392, 46.536869], [-111.941186, 46.532081], [-111.940903, 46.53142], [-111.940559, 46.530629], [-111.940379, 46.530109], [-111.940293, 46.529684], [-111.940268, 46.529241], [-111.940319, 46.528857], [-111.940422, 46.528432], [-111.940568, 46.528025], [-111.94074, 46.527676], [-111.940971, 46.527322], [-111.941246, 46.527003], [-111.941667, 46.526619], [-111.943134, 46.525497], [-111.943589, 46.525125], [-111.94401, 46.524718], [-111.944344, 46.524346], [-111.944662, 46.523974], [-111.944902, 46.523625], [-111.945151, 46.52323], [-111.9454, 46.522775], [-111.945606, 46.522326], [-111.945744, 46.521966], [-111.945855, 46.521511], [-111.947984, 46.511742], [-111.948095, 46.51137], [-111.948361, 46.510661], [-111.949408, 46.508074], [-111.952344, 46.500837], [-111.952541, 46.500393], [-111.952825, 46.499944], [-111.953168, 46.49946], [-111.953494, 46.499105], [-111.953932, 46.498775], [-111.954764, 46.49819], [-111.958575, 46.495909], [-111.959245, 46.495501], [-111.960052, 46.495017], [-111.961021, 46.494414], [-111.961871, 46.493912], [-111.962729, 46.493415], [-111.963579, 46.492825], [-111.964025, 46.4925], [-111.964661, 46.492015], [-111.965124, 46.491625], [-111.965656, 46.491123], [-111.966369, 46.49042], [-111.96709, 46.489651], [-111.976325, 46.479522], [-111.976891, 46.478848], [-111.977312, 46.47834], [-111.977733, 46.477808], [-111.977973, 46.477465], [-111.978127, 46.477211], [-111.978282, 46.476974], [-111.97884, 46.475928], [-111.979217, 46.475042], [-111.980033, 46.473044], [-111.980271, 46.472374], [-111.980435, 46.471976], [-111.980677, 46.471349], [-111.980952, 46.470648], [-111.981239, 46.4699], [-111.981493, 46.46921], [-111.981736, 46.468592], [-111.981874, 46.468256], [-111.982316, 46.467018], [-111.982732, 46.465939], [-111.982851, 46.465572], [-111.983251, 46.464294], [-111.983315, 46.464025], [-111.983475, 46.463313], [-111.983818, 46.462054], [-111.98424, 46.460487], [-111.985346, 46.456259], [-111.985844, 46.45432], [-111.986814, 46.450701], [-111.986994, 46.449938], [-111.987251, 46.449004], [-111.987543, 46.4483], [-111.987809, 46.447709], [-111.988255, 46.446833], [-111.990024, 46.443882], [-111.990719, 46.44254], [-111.99283, 46.438169], [-111.995886, 46.431816], [-111.996143, 46.431165], [-111.996341, 46.430644], [-111.996598, 46.42984], [-111.996753, 46.429213], [-111.99689, 46.428609], [-111.997405, 46.425385], [-111.997642, 46.424314], [-111.997932, 46.423545], [-111.998107, 46.423114], [-111.99835, 46.422586], [-111.998575, 46.422164], [-111.998884, 46.421653], [-111.999228, 46.421145], [-111.999447, 46.420848], [-111.999923, 46.420267], [-112.000156, 46.42], [-112.000433, 46.41971], [-112.00089, 46.419258], [-112.001482, 46.418746], [-112.002113, 46.418226], [-112.00272, 46.417745], [-112.002961, 46.417554], [-112.003548, 46.417078], [-112.004211, 46.41654], [-112.004746, 46.416099], [-112.005461, 46.41553], [-112.005985, 46.415112], [-112.006394, 46.414775], [-112.006854, 46.414405], [-112.007245, 46.4141], [-112.00765, 46.413758], [-112.00797, 46.413501], [-112.008169, 46.413338], [-112.008593, 46.412997], [-112.009014, 46.412645], [-112.009385, 46.412341], [-112.009697, 46.412025], [-112.010255, 46.411528], [-112.010946, 46.410853], [-112.011431, 46.410352], [-112.011895, 46.409867], [-112.012165, 46.409569], [-112.012675, 46.408992], [-112.013067, 46.408517], [-112.013404, 46.408107], [-112.013911, 46.407447], [-112.014218, 46.407046], [-112.014492, 46.406653], [-112.015033, 46.405845], [-112.01524, 46.405542], [-112.015368, 46.405329], [-112.015741, 46.40471], [-112.015972, 46.404308], [-112.016318, 46.403688], [-112.016624, 46.403056], [-112.01703, 46.402204], [-112.017522, 46.401159], [-112.017917, 46.400311], [-112.019197, 46.397512], [-112.019961, 46.395938], [-112.020503, 46.394858], [-112.020846, 46.394173], [-112.021172, 46.393579], [-112.021321, 46.393351], [-112.021496, 46.393063], [-112.021714, 46.392713], [-112.021925, 46.392391], [-112.022307, 46.391799], [-112.022576, 46.391431], [-112.02269, 46.391255], [-112.022776, 46.391138], [-112.023072, 46.390745], [-112.023396, 46.390333], [-112.023636, 46.390016], [-112.02407, 46.389472], [-112.02447, 46.388962], [-112.025293, 46.387893], [-112.025518, 46.387587], [-112.025835, 46.387153], [-112.02604, 46.386874], [-112.026296, 46.386489], [-112.026502, 46.386192], [-112.026698, 46.385898], [-112.027204, 46.385069], [-112.027659, 46.384252], [-112.027743, 46.384088], [-112.0278, 46.383963], [-112.02782, 46.383925], [-112.027998, 46.383561], [-112.028106, 46.383379], [-112.028359, 46.382926], [-112.028737, 46.382022], [-112.029617, 46.379591], [-112.030115, 46.378271], [-112.030424, 46.377365], [-112.030767, 46.376572], [-112.031059, 46.375944], [-112.033059, 46.372077], [-112.033626, 46.37091], [-112.033917, 46.370342], [-112.034252, 46.369714], [-112.034492, 46.369293], [-112.03481, 46.368766], [-112.035136, 46.368298], [-112.035445, 46.367848], [-112.03584, 46.367386], [-112.036295, 46.366877], [-112.036879, 46.366249], [-112.043015, 46.359532], [-112.043436, 46.359053], [-112.043754, 46.358638], [-112.044011, 46.358283], [-112.044234, 46.357927], [-112.044475, 46.357501], [-112.044698, 46.357062], [-112.044852, 46.356719], [-112.044972, 46.356357], [-112.045093, 46.355972], [-112.045204, 46.355534], [-112.045281, 46.355173], [-112.04535, 46.354693], [-112.045384, 46.354284], [-112.045376, 46.353828], [-112.045359, 46.353206], [-112.045058, 46.350658], [-112.045032, 46.350072], [-112.045075, 46.349545], [-112.045178, 46.349154], [-112.045317, 46.348787], [-112.045481, 46.348449], [-112.045687, 46.348135], [-112.04591, 46.347851], [-112.046202, 46.347519], [-112.048562, 46.345392], [-112.048862, 46.34509], [-112.049146, 46.34477], [-112.04936, 46.344467], [-112.04954, 46.344153], [-112.049738, 46.343721], [-112.049849, 46.343241], [-112.049884, 46.343028], [-112.049892, 46.342755], [-112.049884, 46.3424], [-112.049806, 46.341931], [-112.049396, 46.34035], [-112.049218, 46.339673], [-112.049159, 46.33933], [-112.049143, 46.339002], [-112.049168, 46.338597], [-112.049229, 46.338284], [-112.049292, 46.338051], [-112.049341, 46.337839], [-112.049439, 46.337616], [-112.049559, 46.337404], [-112.0497, 46.337162], [-112.049936, 46.33687], [-112.05015, 46.336595], [-112.054836, 46.331763], [-112.055497, 46.33117], [-112.055875, 46.33085], [-112.056372, 46.33053], [-112.05687, 46.330263], [-112.057445, 46.330044], [-112.058132, 46.329789], [-112.060261, 46.329273], [-112.060879, 46.329137], [-112.061445, 46.328959], [-112.061994, 46.328752], [-112.062561, 46.32845], [-112.06317, 46.3281], [-112.063625, 46.327786], [-112.064054, 46.327371], [-112.064466, 46.326891], [-112.06523, 46.325741], [-112.065677, 46.325125], [-112.066028, 46.324674], [-112.06638, 46.324318], [-112.066904, 46.323868], [-112.067505, 46.323501], [-112.06826, 46.323109], [-112.069642, 46.322445], [-112.070509, 46.322007], [-112.071195, 46.321663], [-112.071728, 46.321378], [-112.07238, 46.320958], [-112.073067, 46.320519], [-112.073762, 46.320045], [-112.074277, 46.319582], [-112.074732, 46.319138], [-112.075169, 46.318705], [-112.075599, 46.318189], [-112.076053, 46.317626], [-112.076371, 46.317182], [-112.076732, 46.316589], [-112.077058, 46.315949], [-112.077616, 46.31452], [-112.077985, 46.313459], [-112.078268, 46.312795], [-112.078491, 46.31232], [-112.0788, 46.311751], [-112.079212, 46.31117], [-112.079718, 46.310435], [-112.0808, 46.308627], [-112.081126, 46.30801], [-112.081375, 46.307316], [-112.081512, 46.306724], [-112.081607, 46.306131], [-112.081735, 46.304998], [-112.081856, 46.304358], [-112.082079, 46.303688], [-112.082319, 46.303172], [-112.082594, 46.302692], [-112.082946, 46.302205], [-112.083306, 46.301814], [-112.083804, 46.301334], [-112.08447, 46.300831], [-112.085263, 46.300355], [-112.086027, 46.299964], [-112.089752, 46.298446], [-112.090979, 46.297859], [-112.091958, 46.297337], [-112.092799, 46.296756], [-112.093486, 46.296287], [-112.094104, 46.295694], [-112.09473, 46.295036], [-112.095159, 46.294538], [-112.09558, 46.293992], [-112.09594, 46.293381], [-112.096445, 46.292397], [-112.096685, 46.291614], [-112.09702, 46.290422], [-112.097449, 46.288406], [-112.097724, 46.287409], [-112.098136, 46.286312], [-112.099116, 46.284397], [-112.099274, 46.284063], [-112.10053, 46.281349], [-112.101118, 46.280084], [-112.102891, 46.276318], [-112.104027, 46.273935], [-112.104859, 46.272141], [-112.105342, 46.271125], [-112.106274, 46.269146], [-112.107087, 46.267404], [-112.111234, 46.258546], [-112.112659, 46.255466], [-112.114521, 46.251525], [-112.114976, 46.250676], [-112.115508, 46.249899], [-112.115937, 46.249329], [-112.116633, 46.248581], [-112.117748, 46.247554], [-112.11925, 46.246504], [-112.12022, 46.245934], [-112.120967, 46.245566], [-112.121954, 46.245133], [-112.124992, 46.244052], [-112.13288, 46.241298], [-112.133387, 46.24112], [-112.138622, 46.239291], [-112.145034, 46.237065], [-112.146141, 46.236745], [-112.147008, 46.236519], [-112.147806, 46.236394], [-112.148459, 46.236305], [-112.149265, 46.236246], [-112.150089, 46.236222], [-112.151042, 46.236246], [-112.151883, 46.236317], [-112.152699, 46.236436], [-112.153471, 46.236584], [-112.154474, 46.236837], [-112.15899, 46.238152], [-112.160595, 46.238543], [-112.162483, 46.238947], [-112.163367, 46.23922], [-112.164054, 46.239529], [-112.164698, 46.239897], [-112.165273, 46.24033], [-112.166844, 46.241642], [-112.167307, 46.241963], [-112.1685, 46.242669], [-112.169144, 46.243085], [-112.169659, 46.24356], [-112.170912, 46.244966], [-112.171367, 46.245364], [-112.172131, 46.245898], [-112.173204, 46.246522], [-112.174276, 46.247169], [-112.174817, 46.24762], [-112.175298, 46.24816], [-112.175555, 46.248587], [-112.17577, 46.248973], [-112.175924, 46.249424], [-112.176336, 46.250552], [-112.176517, 46.25092], [-112.17674, 46.251276], [-112.176997, 46.251626], [-112.177418, 46.252083], [-112.177787, 46.252344], [-112.178165, 46.252617], [-112.180775, 46.254129], [-112.181007, 46.254269], [-112.183097, 46.255454], [-112.183493, 46.255702], [-112.184164, 46.256171], [-112.184905, 46.256737], [-112.185365, 46.257141], [-112.185885, 46.257562], [-112.186185, 46.2578], [-112.186531, 46.258043], [-112.186972, 46.258275], [-112.187322, 46.258422], [-112.187774, 46.258598], [-112.188155, 46.258726], [-112.188842, 46.25893], [-112.190061, 46.259233], [-112.194417, 46.260296], [-112.194914, 46.260425], [-112.197467, 46.261049], [-112.198131, 46.261215], [-112.198816, 46.261348], [-112.200563, 46.261639], [-112.2012, 46.261735], [-112.201697, 46.261796], [-112.202216, 46.261831], [-112.202661, 46.261847], [-112.203293, 46.261844], [-112.203843, 46.26181], [-112.204643, 46.261713], [-112.205502, 46.261541], [-112.206283, 46.261328], [-112.207158, 46.260978], [-112.20773, 46.260725], [-112.208199, 46.260464], [-112.209872, 46.259361], [-112.210845, 46.258723], [-112.211437, 46.258407], [-112.21171, 46.258294], [-112.211974, 46.258207], [-112.212216, 46.258142], [-112.212463, 46.258092], [-112.212751, 46.258048], [-112.213051, 46.258024], [-112.213334, 46.258019], [-112.213692, 46.258035], [-112.213988, 46.258065], [-112.214247, 46.258108], [-112.214549, 46.258186], [-112.21472, 46.258241], [-112.214928, 46.258313], [-112.21526, 46.258456], [-112.215539, 46.258605], [-112.215859, 46.258826], [-112.216123, 46.259059], [-112.216344, 46.259307], [-112.216538, 46.259564], [-112.217304, 46.260578], [-112.217586, 46.260888], [-112.217887, 46.26118], [-112.218436, 46.261654], [-112.219097, 46.262058], [-112.219818, 46.262508], [-112.220179, 46.262823], [-112.220462, 46.263203], [-112.220625, 46.263654], [-112.220625, 46.264105], [-112.220513, 46.26455], [-112.220273, 46.264918], [-112.21993, 46.265238], [-112.219466, 46.265558], [-112.218514, 46.266039], [-112.218288, 46.266167], [-112.218079, 46.266291], [-112.217885, 46.266411], [-112.217737, 46.266539], [-112.217605, 46.266696], [-112.217501, 46.266818], [-112.217396, 46.266989], [-112.21734, 46.267123], [-112.217303, 46.267314], [-112.217283, 46.267445], [-112.217325, 46.267714], [-112.217476, 46.26824], [-112.217544, 46.268438], [-112.217592, 46.268538], [-112.217628, 46.268615], [-112.217724, 46.268751], [-112.217818, 46.268858], [-112.217936, 46.268959], [-112.21813, 46.269104], [-112.218353, 46.26922], [-112.218727, 46.26937], [-112.219166, 46.269489], [-112.219721, 46.269609], [-112.220202, 46.269698], [-112.220646, 46.269797], [-112.220996, 46.2699], [-112.22144, 46.27005], [-112.222711, 46.270631], [-112.223277, 46.270851], [-112.22399, 46.271017], [-112.224668, 46.271076], [-112.225371, 46.270993], [-112.227174, 46.270608], [-112.227989, 46.270507], [-112.22883, 46.270519], [-112.229611, 46.270726], [-112.232341, 46.271693], [-112.232993, 46.27186], [-112.233723, 46.271966], [-112.234744, 46.271978], [-112.239606, 46.271805], [-112.242182, 46.271693], [-112.246347, 46.271502], [-112.246967, 46.271459], [-112.247491, 46.271415], [-112.247911, 46.271379], [-112.248545, 46.271312], [-112.249143, 46.271217], [-112.250763, 46.270938], [-112.251919, 46.270715], [-112.254271, 46.270264], [-112.255138, 46.270086], [-112.255979, 46.269973], [-112.256923, 46.269854], [-112.257798, 46.269753], [-112.258871, 46.269706], [-112.259953, 46.269694], [-112.260408, 46.269688], [-112.260811, 46.269688], [-112.265927, 46.269838], [-112.266364, 46.269845], [-112.268516, 46.269903], [-112.26928, 46.269923], [-112.269822, 46.269932], [-112.270297, 46.269936], [-112.270632, 46.269932], [-112.271986, 46.269899], [-112.272496, 46.269882], [-112.272871, 46.269875], [-112.273201, 46.26988], [-112.273496, 46.269893], [-112.273848, 46.269921], [-112.274451, 46.269986], [-112.275304, 46.270084], [-112.275736, 46.270129], [-112.276214, 46.270171], [-112.276581, 46.270192], [-112.276954, 46.270201], [-112.277383, 46.270195], [-112.277783, 46.270179], [-112.278217, 46.270151], [-112.278636, 46.270112], [-112.27903, 46.270058], [-112.279521, 46.269977], [-112.280084, 46.269869], [-112.280575, 46.269771], [-112.281036, 46.269673], [-112.281492, 46.269558], [-112.281919, 46.269443], [-112.282407, 46.269304], [-112.28289, 46.269153], [-112.283292, 46.269013], [-112.283616, 46.26889], [-112.283914, 46.268764], [-112.284169, 46.268638], [-112.284394, 46.268516], [-112.284601, 46.268394], [-112.284775, 46.268275], [-112.284955, 46.268131], [-112.285087, 46.268013], [-112.285191, 46.267897], [-112.285277, 46.267793], [-112.285357, 46.267683], [-112.28543, 46.267542], [-112.285505, 46.267379], [-112.285561, 46.267208], [-112.285596, 46.267049], [-112.28561, 46.266897], [-112.285612, 46.266763], [-112.285599, 46.266613], [-112.285569, 46.266448], [-112.285505, 46.266261], [-112.28543, 46.266096], [-112.285194, 46.265664], [-112.285025, 46.265406], [-112.284866, 46.265152], [-112.284775, 46.264974], [-112.284703, 46.264813], [-112.284646, 46.264655], [-112.284614, 46.264507], [-112.284598, 46.264379], [-112.284598, 46.26421], [-112.284617, 46.264062], [-112.284665, 46.263899], [-112.284727, 46.263728], [-112.284759, 46.263669], [-112.284821, 46.263548], [-112.284909, 46.263418], [-112.284995, 46.263313], [-112.285121, 46.263177], [-112.285277, 46.263038], [-112.285408, 46.262932], [-112.285591, 46.262814], [-112.285765, 46.262716], [-112.285998, 46.262614], [-112.286237, 46.262523], [-112.286454, 46.262454], [-112.286722, 46.262397], [-112.286953, 46.262358], [-112.287205, 46.262334], [-112.287431, 46.262324], [-112.287599, 46.262324], [-112.287755, 46.262332], [-112.287908, 46.262343], [-112.28809, 46.262371], [-112.288289, 46.262408], [-112.288533, 46.262469], [-112.28878, 46.262545], [-112.289056, 46.262641], [-112.28941, 46.262779], [-112.292288, 46.263915], [-112.295423, 46.265141], [-112.295772, 46.265276], [-112.296799, 46.265681], [-112.297288, 46.265857], [-112.29766, 46.26597], [-112.297998, 46.266064], [-112.298326, 46.266135], [-112.298693, 46.266202], [-112.29902, 46.266252], [-112.299407, 46.266294], [-112.299973, 46.26635], [-112.301962, 46.266518], [-112.303677, 46.266665], [-112.30416, 46.266715], [-112.304799, 46.266799], [-112.305829, 46.266965], [-112.307302, 46.26725], [-112.307798, 46.267339], [-112.308222, 46.267413], [-112.308627, 46.267476], [-112.308997, 46.267518], [-112.309343, 46.267554], [-112.309617, 46.267578], [-112.309941, 46.267591], [-112.310258, 46.267602], [-112.310641, 46.267611], [-112.310985, 46.267613], [-112.311296, 46.267607], [-112.311658, 46.267591], [-112.312055, 46.267565], [-112.312425, 46.267535], [-112.312795, 46.267492], [-112.313219, 46.267435], [-112.313683, 46.267359], [-112.31408, 46.267281], [-112.314484, 46.267191], [-112.314867, 46.26709], [-112.315256, 46.26698], [-112.315717, 46.266837], [-112.316613, 46.266561], [-112.317018, 46.266437], [-112.317471, 46.266313], [-112.317997, 46.266179], [-112.318925, 46.265949], [-112.320151, 46.265632], [-112.321393, 46.265313], [-112.325427, 46.26428], [-112.326138, 46.264095], [-112.326859, 46.263917], [-112.327936, 46.263635], [-112.330428, 46.263002], [-112.333211, 46.262287], [-112.334007, 46.262079], [-112.335292, 46.261753], [-112.335686, 46.261652], [-112.336028, 46.261559], [-112.33637, 46.261454], [-112.33667, 46.261355], [-112.336988, 46.261243], [-112.337325, 46.261115], [-112.33768, 46.260971], [-112.338038, 46.260813], [-112.338363, 46.260662], [-112.338625, 46.26053], [-112.338933, 46.260366], [-112.340256, 46.259429], [-112.341003, 46.258829], [-112.341337, 46.25845], [-112.341646, 46.258088], [-112.342041, 46.257506], [-112.342264, 46.257085], [-112.342513, 46.256616], [-112.342736, 46.256052], [-112.343048, 46.25519], [-112.343088, 46.254628], [-112.343114, 46.25404], [-112.342997, 46.253333], [-112.342814, 46.252527], [-112.342556, 46.25188], [-112.341586, 46.249939], [-112.341209, 46.248971], [-112.340942, 46.248152], [-112.340797, 46.247393], [-112.340711, 46.246752], [-112.340698, 46.245956], [-112.340797, 46.24509], [-112.340934, 46.2443], [-112.341088, 46.243617], [-112.341363, 46.242745], [-112.343732, 46.236132], [-112.343955, 46.235443], [-112.344213, 46.23479], [-112.34459, 46.234178], [-112.345088, 46.233513], [-112.346384, 46.231827], [-112.346848, 46.231067], [-112.347062, 46.230402], [-112.347208, 46.229666], [-112.34738, 46.228247], [-112.347457, 46.227659], [-112.347706, 46.22662], [-112.348072, 46.225486], [-112.348787, 46.223592], [-112.349165, 46.22241], [-112.349268, 46.221798], [-112.349251, 46.221163], [-112.348908, 46.218621], [-112.348822, 46.218081], [-112.348822, 46.217392], [-112.348959, 46.216762], [-112.34944, 46.215301], [-112.349521, 46.214586], [-112.349491, 46.214013], [-112.349328, 46.213591], [-112.349028, 46.213021], [-112.348633, 46.212492], [-112.348169, 46.211999], [-112.34762, 46.211619], [-112.346856, 46.211156], [-112.345869, 46.21058], [-112.3452, 46.210051], [-112.344728, 46.209576], [-112.343234, 46.207925], [-112.342659, 46.207307], [-112.341921, 46.206677], [-112.340814, 46.205816], [-112.34041, 46.205465], [-112.340067, 46.205085], [-112.339802, 46.204693], [-112.339704, 46.204467], [-112.339636, 46.204269], [-112.339591, 46.204027], [-112.339612, 46.20382], [-112.339732, 46.203256], [-112.340033, 46.20262], [-112.340582, 46.201913], [-112.341621, 46.200885], [-112.342062, 46.200298], [-112.342242, 46.199944], [-112.342396, 46.199584], [-112.342597, 46.199091], [-112.342775, 46.198631], [-112.343062, 46.198034], [-112.343303, 46.197541], [-112.343792, 46.196904], [-112.344693, 46.196127], [-112.345387, 46.19542], [-112.345729, 46.194938], [-112.345917, 46.194643], [-112.346069, 46.194349], [-112.346166, 46.194045], [-112.346238, 46.193697], [-112.34623, 46.193103], [-112.345941, 46.190673], [-112.345878, 46.189902], [-112.345728, 46.189213], [-112.345709, 46.188344], [-112.345571, 46.187533], [-112.345558, 46.186912], [-112.345564, 46.185992], [-112.345749, 46.183453], [-112.346234, 46.177623], [-112.346347, 46.176821], [-112.346473, 46.176275], [-112.34671, 46.175728], [-112.347062, 46.17511], [-112.347483, 46.174486], [-112.34822, 46.173702], [-112.349208, 46.17291], [-112.3521, 46.171121], [-112.352701, 46.170843], [-112.353354, 46.170627], [-112.354238, 46.170443], [-112.355396, 46.170378], [-112.356246, 46.170461], [-112.358186, 46.170764], [-112.359293, 46.170788], [-112.360246, 46.170669], [-112.361216, 46.170425], [-112.362177, 46.170093], [-112.362941, 46.16973], [-112.363559, 46.169296], [-112.364125, 46.168743], [-112.364529, 46.168119], [-112.365267, 46.167103], [-112.365816, 46.166663], [-112.3664, 46.166336], [-112.367129, 46.166098], [-112.367868, 46.165967], [-112.368692, 46.165944], [-112.371773, 46.166039], [-112.372811, 46.166015], [-112.37367, 46.165902], [-112.374588, 46.165706], [-112.375592, 46.165379], [-112.376571, 46.164951], [-112.377318, 46.164529], [-112.378076, 46.163952], [-112.378262, 46.163762], [-112.378614, 46.163364], [-112.378914, 46.162965], [-112.379469, 46.162169], [-112.382055, 46.158245], [-112.384021, 46.155308], [-112.385566, 46.152959], [-112.387334, 46.150272], [-112.388458, 46.14862], [-112.389451, 46.147108], [-112.391789, 46.143594], [-112.398669, 46.133222], [-112.400972, 46.129712], [-112.4066, 46.121302], [-112.407393, 46.120004], [-112.408182, 46.118582], [-112.408541, 46.117899], [-112.409937, 46.114817], [-112.411055, 46.112333], [-112.412388, 46.109365], [-112.413655, 46.106653], [-112.414778, 46.10418], [-112.415206, 46.103314], [-112.415668, 46.102487], [-112.415895, 46.102106], [-112.416464, 46.101176], [-112.417083, 46.100254], [-112.418499, 46.098356], [-112.418915, 46.09769], [-112.419526, 46.096677], [-112.420233, 46.095398], [-112.422479, 46.091058], [-112.424336, 46.087469], [-112.429652, 46.0772], [-112.429822, 46.076884], [-112.431392, 46.07384], [-112.436257, 46.064391], [-112.436937, 46.063074], [-112.438079, 46.061044], [-112.438376, 46.060532], [-112.438666, 46.060066], [-112.43881, 46.05984], [-112.439098, 46.05943], [-112.43934, 46.059064], [-112.439532, 46.058774], [-112.440107, 46.058002], [-112.44038, 46.05765], [-112.441731, 46.056019], [-112.443485, 46.053949], [-112.447802, 46.048851], [-112.45155, 46.044489], [-112.452423, 46.043435], [-112.452928, 46.042858], [-112.453336, 46.042363], [-112.453672, 46.041989], [-112.454055, 46.041551], [-112.454342, 46.04125], [-112.454665, 46.040886], [-112.456067, 46.039558], [-112.457335, 46.038587], [-112.457987, 46.038059], [-112.458512, 46.037625], [-112.458842, 46.037329], [-112.459071, 46.03709], [-112.459314, 46.036842], [-112.459518, 46.03659], [-112.459678, 46.03639], [-112.4598, 46.036215], [-112.459891, 46.036045], [-112.460007, 46.03582], [-112.460114, 46.03551], [-112.460172, 46.035281], [-112.460249, 46.034999], [-112.460282, 46.034713], [-112.460289, 46.034622], [-112.460306, 46.034393], [-112.46034, 46.034001], [-112.460377, 46.033494], [-112.460788, 46.024225], [-112.460858, 46.022999], [-112.461034, 46.021707], [-112.461139, 46.019417], [-112.461174, 46.018182], [-112.461374, 46.013939], [-112.461433, 46.012326], [-112.461598, 46.009767], [-112.46173, 46.007706], [-112.461826, 46.006592], [-112.461968, 46.00602], [-112.462225, 46.00538], [-112.462565, 46.004722], [-112.463191, 46.004036], [-112.464072, 46.003225], [-112.465792, 46.001872], [-112.466856, 46.001037], [-112.469268, 45.999189], [-112.469946, 45.998682], [-112.470667, 45.998003], [-112.47113, 45.997502], [-112.47156, 45.996917], [-112.471963, 45.99622], [-112.473459, 45.993424], [-112.474051, 45.992464], [-112.474317, 45.992004], [-112.475276, 45.990233], [-112.475566, 45.989642], [-112.476695, 45.987673], [-112.477014, 45.987068], [-112.477395, 45.986399], [-112.477976, 45.985327], [-112.478243, 45.984818], [-112.478421, 45.98455], [-112.478851, 45.983744], [-112.479177, 45.983218], [-112.479374, 45.982981], [-112.479538, 45.982795], [-112.47971, 45.982636], [-112.479894, 45.982492], [-112.480132, 45.982326], [-112.48042, 45.982142], [-112.480713, 45.981993], [-112.481018, 45.981862], [-112.481235, 45.981784], [-112.481491, 45.981708], [-112.481819, 45.981612], [-112.482235, 45.981526], [-112.482576, 45.981485], [-112.482792, 45.981468], [-112.483106, 45.981448], [-112.484674, 45.981411], [-112.485533, 45.981393], [-112.486142, 45.981346], [-112.486888, 45.981343], [-112.488415, 45.981329], [-112.48942, 45.981323], [-112.489915, 45.981311], [-112.490321, 45.981291], [-112.491262, 45.981187], [-112.492077, 45.981092], [-112.492755, 45.980966], [-112.49327, 45.980829], [-112.494197, 45.980567], [-112.495345, 45.9802], [-112.496229, 45.979974], [-112.496927, 45.979831], [-112.497708, 45.979756], [-112.4986, 45.979744], [-112.499484, 45.979774], [-112.500257, 45.979863], [-112.501047, 45.980042], [-112.501432, 45.980146], [-112.501772, 45.980251], [-112.502162, 45.980391], [-112.502441, 45.980505], [-112.502715, 45.980622], [-112.503036, 45.980793], [-112.503323, 45.980946], [-112.503646, 45.981153], [-112.503934, 45.981351], [-112.504203, 45.981566], [-112.504427, 45.981757], [-112.504926, 45.982217], [-112.505529, 45.982793], [-112.505933, 45.983132], [-112.506153, 45.983296], [-112.506336, 45.983431], [-112.506571, 45.983586], [-112.506888, 45.983789], [-112.507196, 45.983956], [-112.507471, 45.984097], [-112.507799, 45.984272], [-112.508512, 45.98456], [-112.508794, 45.984651], [-112.50906, 45.984738], [-112.509415, 45.984842], [-112.509964, 45.984998], [-112.512836, 45.985714], [-112.514063, 45.986044], [-112.515749, 45.986501], [-112.516874, 45.986847], [-112.529602, 45.991803], [-112.530598, 45.992131], [-112.531516, 45.992333], [-112.5324, 45.992476], [-112.533044, 45.992536], [-112.533894, 45.992542], [-112.538675, 45.992548], [-112.539481, 45.992542], [-112.544571, 45.992548], [-112.54755, 45.9925], [-112.549472, 45.992518], [-112.552176, 45.992548], [-112.553189, 45.992614], [-112.554167, 45.992739], [-112.555008, 45.992942], [-112.559798, 45.994337], [-112.560613, 45.994587], [-112.561471, 45.994951], [-112.562235, 45.995404], [-112.562816, 45.995834], [-112.563071, 45.996064], [-112.563323, 45.996326], [-112.563586, 45.996638], [-112.563846, 45.996975], [-112.564136, 45.997384], [-112.564414, 45.997764], [-112.565162, 45.998934], [-112.565743, 45.999683], [-112.566655, 46.000955], [-112.567437, 46.001903], [-112.56802, 46.002517], [-112.568741, 46.003096], [-112.569419, 46.003525], [-112.570063, 46.003859], [-112.570964, 46.004318], [-112.571822, 46.004693], [-112.572895, 46.005009], [-112.573848, 46.00523], [-112.574775, 46.005379], [-112.575728, 46.005463], [-112.577187, 46.005504], [-112.577788, 46.005522], [-112.582056, 46.005676], [-112.594885, 46.006166], [-112.604584, 46.006524], [-112.605451, 46.006619], [-112.607283, 46.006843], [-112.610896, 46.007381], [-112.611152, 46.005948], [-112.61121, 46.005792], [-112.611238, 46.005609], [-112.608284, 46.004266], [-112.607739, 46.003921], [-112.607191, 46.003516], [-112.606953, 46.003377], [-112.606693, 46.003274], [-112.606342, 46.003193], [-112.606239, 46.00317], [-112.604638, 46.002827], [-112.603223, 46.002511], [-112.603052, 46.002473], [-112.60203, 46.002278], [-112.601516, 46.002219], [-112.601276, 46.00221], [-112.600883, 46.002212], [-112.600496, 46.00223], [-112.600404, 46.002208], [-112.60036, 46.002173], [-112.600327, 46.002117], [-112.600314, 46.002059], [-112.600333, 46.001927], [-112.600381, 46.001853], [-112.60049, 46.001777], [-112.600599, 46.001745], [-112.600713, 46.001737], [-112.600862, 46.001739], [-112.601544, 46.001798], [-112.601657, 46.001792], [-112.601804, 46.001767], [-112.601918, 46.001724], [-112.602008, 46.001673], [-112.602239, 46.001528], [-112.602389, 46.001412], [-112.602658, 46.001185], [-112.60307, 46.000822], [-112.603218, 46.000656], [-112.603405, 46.000474], [-112.60366, 46.000513], [-112.603842, 46.000532], [-112.604078, 46.000549], [-112.604254, 46.000547], [-112.605018, 46.00043], [-112.605491, 46.000395], [-112.605766, 46.000402], [-112.606076, 46.000466], [-112.606209, 46.00049], [-112.606364, 46.000494], [-112.606548, 46.000466], [-112.607005, 46.000359], [-112.607412, 46.000312], [-112.611416, 46.000299], [-112.611653, 46.000242], [-112.611812, 46.000145], [-112.611932, 45.999965], [-112.611906, 45.993731], [-112.611956, 45.990322], [-112.611963, 45.987384], [-112.611945, 45.986839], [-112.611983, 45.986517], [-112.612211, 45.985826], [-112.612974, 45.983191], [-112.613351, 45.982047], [-112.613508, 45.981723], [-112.613655, 45.98152], [-112.613973, 45.981284], [-112.61573, 45.980235], [-112.61642, 45.979923], [-112.617405, 45.979519], [-112.618068, 45.979213], [-112.618669, 45.978865], [-112.620246, 45.977619], [-112.620586, 45.977289], [-112.621106, 45.976592], [-112.622154, 45.975079], [-112.622235, 45.974699], [-112.622281, 45.973317], [-112.622078, 45.970234], [-112.619831, 45.970225], [-112.614288, 45.970203] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-112.606601, 45.960219] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-111.972656, 48.843028] } } ] } ================================================ FILE: packages/turf-line-slice/test/in/vertical.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-121.254478, 38.705824], [-121.254494, 38.709767] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-121.254478, 38.705824] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-121.254478, 38.706343] } } ] } ================================================ FILE: packages/turf-line-slice/test/out/avoid-duplicated-end-points.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [3, 0], [2, -1], [2, 2] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2, 2] } }, { "type": "Feature", "properties": { "stroke": "#f0f", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [2, 0], [2, 2] ] } } ] } ================================================ FILE: packages/turf-line-slice/test/out/line1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-97.88131713867188, 22.466878364528448], [-97.82089233398438, 22.175960091218524], [-97.6190185546875, 21.8704201873689] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-97.796173, 22.254624] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-97.727508, 22.057641] } }, { "type": "Feature", "properties": { "stroke": "#f0f", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-97.835747, 22.247595], [-97.820892, 22.17596], [-97.738477, 22.051413] ] } } ] } ================================================ FILE: packages/turf-line-slice/test/out/line2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [1, 1] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0.1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9, 0.8] } }, { "type": "Feature", "properties": { "stroke": "#f0f", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [0.05, 0.050008], [0.849981, 0.850017] ] } } ] } ================================================ FILE: packages/turf-line-slice/test/out/route1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-79.254923, 36.98394], [-79.254923, 36.983939], [-79.255326, 36.9838], [-79.255401, 36.983774], [-79.25576, 36.983664], [-79.256795, 36.984137], [-79.257537, 36.984478], [-79.258539, 36.984925], [-79.259498, 36.985353], [-79.260286, 36.985712], [-79.261405, 36.986222], [-79.262933, 36.986928], [-79.263237, 36.987071], [-79.263755, 36.987296], [-79.264086, 36.987423], [-79.264167, 36.987446], [-79.264338, 36.987486], [-79.264414, 36.987501], [-79.264618, 36.987531], [-79.2648, 36.987542], [-79.264982, 36.987537], [-79.265163, 36.987517], [-79.26703, 36.987355], [-79.267952, 36.98726], [-79.268404, 36.987226], [-79.268771, 36.987197], [-79.26955, 36.987117], [-79.271398, 36.986946], [-79.271488, 36.986941], [-79.271698, 36.986925], [-79.271936, 36.986898], [-79.272231, 36.986852], [-79.272474, 36.986785], [-79.272711, 36.986705], [-79.272895, 36.986632], [-79.273059, 36.986552], [-79.273646, 36.986245], [-79.274224, 36.985925], [-79.274887, 36.985592], [-79.275308, 36.985365], [-79.275672, 36.98517], [-79.276249, 36.984876], [-79.277101, 36.984433], [-79.277425, 36.984259], [-79.277918, 36.983982], [-79.27799, 36.98395], [-79.278179, 36.98385], [-79.278261, 36.9838], [-79.278335, 36.983745], [-79.278421, 36.983666], [-79.27844, 36.983647], [-79.278502, 36.983577], [-79.278548, 36.983511], [-79.278614, 36.983381], [-79.278654, 36.983273], [-79.278711, 36.983011], [-79.278763, 36.98269], [-79.278806, 36.982485], [-79.278866, 36.982282], [-79.278952, 36.982101], [-79.279023, 36.981984], [-79.280178, 36.980418], [-79.280259, 36.980319], [-79.280355, 36.980229], [-79.280419, 36.98018], [-79.280578, 36.980082], [-79.280666, 36.980038], [-79.280783, 36.979994], [-79.280908, 36.979963], [-79.281301, 36.979913], [-79.281646, 36.979874], [-79.282145, 36.979835], [-79.282797, 36.97977], [-79.283144, 36.979743], [-79.283618, 36.97972], [-79.28399, 36.979706], [-79.284447, 36.979695], [-79.284904, 36.979697], [-79.286913, 36.979638], [-79.287201, 36.979628], [-79.287954, 36.979612], [-79.288037, 36.979611], [-79.288397, 36.97962], [-79.288697, 36.979643], [-79.289908, 36.979722], [-79.289994, 36.979724], [-79.290136, 36.979716], [-79.290248, 36.979699], [-79.290503, 36.979632], [-79.291043, 36.979454], [-79.291563, 36.979269], [-79.292467, 36.97896], [-79.292759, 36.978877], [-79.292963, 36.978832], [-79.293286, 36.978778], [-79.293549, 36.978746], [-79.293649, 36.978738], [-79.293755, 36.978729], [-79.293858, 36.978731], [-79.294028, 36.978747], [-79.294162, 36.978771], [-79.294243, 36.9788], [-79.294439, 36.978883], [-79.294626, 36.978979], [-79.294782, 36.979072], [-79.294921, 36.979174], [-79.295023, 36.979263], [-79.295281, 36.979534], [-79.295458, 36.979739], [-79.296347, 36.980843], [-79.296549, 36.981064], [-79.296594, 36.981095], [-79.296695, 36.981144], [-79.296788, 36.98117], [-79.296916, 36.981184], [-79.297032, 36.981182], [-79.297147, 36.981165], [-79.297933, 36.980962], [-79.298145, 36.980893], [-79.298401, 36.98079], [-79.298602, 36.980696], [-79.298795, 36.980593], [-79.299134, 36.980402], [-79.299407, 36.980244], [-79.299963, 36.9799], [-79.301767, 36.97881], [-79.301976, 36.978691], [-79.3021, 36.978619], [-79.302508, 36.978369], [-79.302614, 36.978309], [-79.3028, 36.97822], [-79.302995, 36.978145], [-79.303113, 36.978114], [-79.303153, 36.978249], [-79.303232, 36.978565], [-79.303319, 36.978989], [-79.303326, 36.979184], [-79.303313, 36.979346], [-79.30324, 36.979748], [-79.303136, 36.980362], [-79.303088, 36.980609], [-79.302996, 36.981143], [-79.302982, 36.981226], [-79.302977, 36.981321], [-79.302986, 36.98144], [-79.303013, 36.981556], [-79.303057, 36.98167], [-79.303191, 36.9819], [-79.303336, 36.982126], [-79.303702, 36.982652], [-79.304322, 36.983486], [-79.304588, 36.98382], [-79.304756, 36.984051], [-79.304903, 36.984229], [-79.305059, 36.984403], [-79.305145, 36.984487], [-79.305336, 36.984648], [-79.305612, 36.98486], [-79.30569, 36.984915], [-79.305765, 36.984974], [-79.305944, 36.98513], [-79.306108, 36.985295], [-79.306259, 36.985469], [-79.306333, 36.98557], [-79.306437, 36.985737], [-79.306524, 36.985911], [-79.306595, 36.98609], [-79.306677, 36.986365], [-79.306734, 36.98662], [-79.306773, 36.986878], [-79.306759, 36.986998], [-79.306724, 36.987146], [-79.306621, 36.987426], [-79.306591, 36.987545], [-79.306555, 36.987745], [-79.306536, 36.987984], [-79.30653, 36.988172], [-79.306539, 36.988321], [-79.30655, 36.988398], [-79.306566, 36.988507], [-79.306673, 36.988967], [-79.306789, 36.989416], [-79.30681, 36.989518], [-79.306831, 36.98969], [-79.306833, 36.989828], [-79.306822, 36.989888], [-79.306771, 36.990067], [-79.306696, 36.99024], [-79.306569, 36.990463], [-79.306374, 36.99078], [-79.30633, 36.990863], [-79.306292, 36.990972], [-79.306271, 36.991084], [-79.306268, 36.991229], [-79.306282, 36.991421], [-79.306323, 36.991648], [-79.30657, 36.992516], [-79.306601, 36.992703], [-79.306614, 36.992892], [-79.306598, 36.993111], [-79.306569, 36.993287], [-79.306553, 36.993345], [-79.306526, 36.993432], [-79.306466, 36.993574], [-79.306313, 36.993848], [-79.305971, 36.994382], [-79.305826, 36.994647], [-79.305382, 36.995598], [-79.305197, 36.995963], [-79.305065, 36.996284], [-79.304983, 36.996521], [-79.304954, 36.99668], [-79.30495, 36.996815], [-79.304959, 36.996932], [-79.304988, 36.997077], [-79.305024, 36.99719], [-79.305111, 36.99739], [-79.305197, 36.997567], [-79.30532, 36.997782], [-79.305429, 36.997949], [-79.305577, 36.998153], [-79.306017, 36.99873], [-79.306204, 36.998965], [-79.306407, 36.999192], [-79.306624, 36.999411], [-79.30672, 36.999489], [-79.306828, 36.999557], [-79.306922, 36.999602], [-79.307072, 36.999656], [-79.307354, 36.999723], [-79.307628, 36.999778], [-79.308892, 36.999988], [-79.309029, 37.00002], [-79.309135, 37.000056], [-79.30926, 37.000112], [-79.309374, 37.00018], [-79.309478, 37.000259], [-79.30959, 37.000372], [-79.309743, 37.000552], [-79.31029, 37.001344], [-79.31037, 37.001451], [-79.310486, 37.001568], [-79.310598, 37.001654], [-79.310697, 37.001714], [-79.310838, 37.001785], [-79.310991, 37.001844], [-79.31115, 37.001891], [-79.311632, 37.001979], [-79.312359, 37.002135], [-79.312455, 37.002156], [-79.312915, 37.002271], [-79.313026, 37.002296], [-79.313639, 37.002422], [-79.314311, 37.002515], [-79.314769, 37.002553], [-79.315227, 37.002582], [-79.315352, 37.002604], [-79.315472, 37.002641], [-79.315543, 37.002685], [-79.315621, 37.00275], [-79.315685, 37.002824], [-79.315725, 37.002889], [-79.315888, 37.002832], [-79.316221, 37.002733], [-79.316448, 37.002678], [-79.31752, 37.002455], [-79.318524, 37.002275], [-79.319059, 37.002211], [-79.319268, 37.002199], [-79.319435, 37.0022], [-79.319651, 37.002214], [-79.319786, 37.002226], [-79.320258, 37.002279], [-79.320522, 37.002298], [-79.320786, 37.002302], [-79.320953, 37.002288], [-79.321116, 37.002258], [-79.321274, 37.002213], [-79.321381, 37.00217], [-79.321762, 37.002001], [-79.322382, 37.001698], [-79.322844, 37.001466], [-79.323023, 37.001376], [-79.323292, 37.001249], [-79.32357, 37.001134], [-79.323943, 37.001003], [-79.324098, 37.000958], [-79.324162, 37.000945], [-79.32513, 37.000843], [-79.325325, 37.000814], [-79.325517, 37.000777], [-79.325753, 37.000719], [-79.327186, 37.000266], [-79.327482, 37.000173], [-79.327802, 37.00008], [-79.328598, 36.999838], [-79.329158, 36.999654], [-79.329204, 36.999715], [-79.329343, 36.999894], [-79.32942, 36.999975], [-79.329588, 37.000125], [-79.329742, 37.000239], [-79.329777, 37.000256], [-79.329869, 37.000291], [-79.329988, 37.000315], [-79.330091, 37.000318], [-79.33027, 37.000316], [-79.330449, 37.000298], [-79.331035, 37.000223], [-79.331427, 37.000184], [-79.331855, 37.000129], [-79.333009, 37.000023], [-79.334568, 36.999869], [-79.335002, 36.999826], [-79.33552, 36.999806], [-79.33606, 36.999814], [-79.336208, 36.999833], [-79.336352, 36.999866], [-79.33649, 36.999913], [-79.336644, 36.999986], [-79.336856, 37.000123], [-79.336962, 37.000203], [-79.337096, 37.000316], [-79.337325, 37.000539], [-79.337519, 37.000761], [-79.338522, 37.001965], [-79.339126, 37.002688], [-79.339574, 37.003185], [-79.340385, 37.004106], [-79.340479, 37.004212], [-79.340603, 37.004341], [-79.340773, 37.00449], [-79.340929, 37.004602], [-79.341131, 37.004723], [-79.341632, 37.004968], [-79.341875, 37.005087], [-79.342172, 37.005233], [-79.342594, 37.00542], [-79.343189, 37.005708], [-79.343817, 37.006011], [-79.344455, 37.006335], [-79.344712, 37.00647], [-79.345697, 37.006916], [-79.345837, 37.006985], [-79.346006, 37.00708], [-79.346221, 37.007218], [-79.347403, 37.008016], [-79.347493, 37.008071], [-79.347634, 37.008171], [-79.347763, 37.008281], [-79.347971, 37.008497], [-79.348051, 37.008623], [-79.348135, 37.008786], [-79.348201, 37.008954], [-79.34825, 37.009126], [-79.348316, 37.00954], [-79.348397, 37.010196], [-79.34854, 37.01111], [-79.348616, 37.011496], [-79.348778, 37.012266], [-79.349159, 37.013946], [-79.349315, 37.014628], [-79.349636, 37.015919], [-79.349688, 37.016183], [-79.349795, 37.016628], [-79.349854, 37.016827], [-79.349915, 37.01701], [-79.350064, 37.017337], [-79.350135, 37.017464], [-79.350159, 37.017499], [-79.350325, 37.017735], [-79.35042, 37.017865], [-79.350584, 37.018129], [-79.35072, 37.01842], [-79.350808, 37.018683], [-79.35089, 37.018981], [-79.350968, 37.019317], [-79.35119, 37.020219], [-79.351251, 37.020445], [-79.351346, 37.020719], [-79.351414, 37.020888], [-79.351505, 37.021079], [-79.351682, 37.021459], [-79.351825, 37.02176], [-79.352185, 37.022473], [-79.352628, 37.023433], [-79.352751, 37.023743], [-79.35282, 37.023863], [-79.352895, 37.023965], [-79.353012, 37.024078], [-79.353078, 37.024127], [-79.353186, 37.024186], [-79.353325, 37.024244], [-79.353398, 37.024265], [-79.353421, 37.02427], [-79.353621, 37.024315], [-79.353675, 37.024321], [-79.35392, 37.024336], [-79.354286, 37.024379], [-79.354423, 37.024385], [-79.354844, 37.024375], [-79.355058, 37.024359], [-79.355214, 37.024339], [-79.355354, 37.024308], [-79.355614, 37.024238], [-79.355718, 37.024209], [-79.355965, 37.024125], [-79.356147, 37.024057], [-79.356485, 37.02394], [-79.356546, 37.023919], [-79.356797, 37.023824], [-79.356964, 37.023769], [-79.357077, 37.023757], [-79.357196, 37.023767], [-79.357262, 37.023786], [-79.357309, 37.023811], [-79.35735, 37.023849], [-79.357388, 37.023905], [-79.357541, 37.024317], [-79.357583, 37.024391], [-79.357634, 37.024438], [-79.357685, 37.024467], [-79.357747, 37.024487], [-79.35783, 37.024497], [-79.357899, 37.024495], [-79.35801, 37.02448], [-79.358102, 37.02446], [-79.358409, 37.025941], [-79.358471, 37.026316], [-79.358502, 37.026637], [-79.358517, 37.026844], [-79.358519, 37.027185], [-79.358497, 37.027679], [-79.358457, 37.028033], [-79.358398, 37.028378], [-79.358301, 37.028779], [-79.358082, 37.029574], [-79.357957, 37.030026], [-79.357813, 37.030609], [-79.357745, 37.03095], [-79.357685, 37.031344], [-79.357656, 37.031612], [-79.357621, 37.032199], [-79.357619, 37.032445], [-79.357631, 37.032766], [-79.357637, 37.032893], [-79.357666, 37.033258], [-79.357711, 37.033639], [-79.357789, 37.034066], [-79.357875, 37.034441], [-79.357922, 37.034622], [-79.358521, 37.036938], [-79.358613, 37.037315], [-79.358687, 37.037658], [-79.358786, 37.038217], [-79.358856, 37.038791], [-79.358911, 37.039356], [-79.358965, 37.0401], [-79.359051, 37.041306], [-79.359073, 37.041825], [-79.359059, 37.042471], [-79.359012, 37.042954], [-79.35899, 37.04313], [-79.358922, 37.043537], [-79.358829, 37.043973], [-79.358773, 37.044171], [-79.358704, 37.044417], [-79.358541, 37.044914], [-79.358352, 37.045429], [-79.357856, 37.04678], [-79.357794, 37.046961], [-79.357564, 37.047556], [-79.357409, 37.047915], [-79.357338, 37.048062], [-79.357278, 37.048184], [-79.356942, 37.048801], [-79.356841, 37.048967], [-79.356589, 37.049349], [-79.356363, 37.049677], [-79.354212, 37.052783], [-79.353972, 37.053148], [-79.353865, 37.053295], [-79.353452, 37.053889], [-79.352197, 37.055711], [-79.352126, 37.055808], [-79.351983, 37.056023], [-79.351596, 37.056539], [-79.351413, 37.056761], [-79.35122, 37.056979], [-79.351018, 37.057191], [-79.35075, 37.057445], [-79.350603, 37.057584], [-79.35029, 37.057856], [-79.348032, 37.059645], [-79.346954, 37.060488], [-79.345892, 37.06133], [-79.345295, 37.061797], [-79.344778, 37.062208], [-79.344716, 37.062258], [-79.343942, 37.062866], [-79.343259, 37.06342], [-79.342925, 37.063722], [-79.342732, 37.063907], [-79.342302, 37.064351], [-79.342055, 37.06463], [-79.341843, 37.064885], [-79.341424, 37.065452], [-79.341048, 37.066036], [-79.340718, 37.066647], [-79.340066, 37.068047], [-79.338982, 37.070343], [-79.336951, 37.074656], [-79.336672, 37.075265], [-79.335622, 37.077497], [-79.335265, 37.078252], [-79.33489, 37.079062], [-79.334833, 37.079182], [-79.334222, 37.080477], [-79.333262, 37.082521], [-79.333001, 37.083079], [-79.332628, 37.084028], [-79.332548, 37.084278], [-79.332388, 37.08478], [-79.332201, 37.085539], [-79.33204, 37.086421], [-79.33196, 37.086978], [-79.331907, 37.087757], [-79.331871, 37.088536], [-79.33185, 37.089317], [-79.331805, 37.090324], [-79.331772, 37.091338], [-79.331768, 37.092235], [-79.33183, 37.093576], [-79.331943, 37.095022], [-79.332045, 37.096198], [-79.332341, 37.099713], [-79.332397, 37.100421], [-79.332436, 37.101086], [-79.332443, 37.1013], [-79.332438, 37.10199], [-79.332418, 37.102426], [-79.332391, 37.102795], [-79.332337, 37.103324], [-79.332244, 37.103966], [-79.332205, 37.104185], [-79.332175, 37.104355], [-79.332056, 37.104907], [-79.332041, 37.104978], [-79.331903, 37.105494], [-79.331733, 37.106053], [-79.331559, 37.106562], [-79.33131, 37.107195], [-79.331178, 37.107501], [-79.330959, 37.107973], [-79.330748, 37.108399], [-79.330489, 37.108876], [-79.330365, 37.109093], [-79.330155, 37.10944], [-79.329757, 37.110058], [-79.328813, 37.111446], [-79.328701, 37.111611], [-79.327118, 37.113932], [-79.327107, 37.113947], [-79.326498, 37.114802], [-79.326178, 37.115223], [-79.326128, 37.115289], [-79.32568, 37.115855], [-79.325061, 37.116595], [-79.324816, 37.116878], [-79.324497, 37.117235], [-79.324161, 37.117601], [-79.323816, 37.117964], [-79.323589, 37.118194], [-79.323104, 37.118678], [-79.322015, 37.119732], [-79.320826, 37.12089], [-79.320279, 37.121415], [-79.31993, 37.121729], [-79.319276, 37.122271], [-79.318828, 37.122609], [-79.318377, 37.122925], [-79.317535, 37.123462], [-79.316595, 37.123987], [-79.315586, 37.124473], [-79.314958, 37.124742], [-79.311931, 37.125973], [-79.303986, 37.129196], [-79.303177, 37.129555], [-79.302367, 37.129915], [-79.30095, 37.130617], [-79.298871, 37.131691], [-79.298008, 37.132146], [-79.293574, 37.134491], [-79.293108, 37.134749], [-79.292712, 37.134937], [-79.292278, 37.135125], [-79.291836, 37.1353], [-79.291351, 37.135473], [-79.290905, 37.135615], [-79.290365, 37.135772], [-79.289641, 37.135941], [-79.289078, 37.136055], [-79.288222, 37.136184], [-79.287781, 37.136228], [-79.287205, 37.136269], [-79.281895, 37.136526], [-79.280512, 37.136607], [-79.279731, 37.13667], [-79.278968, 37.136747], [-79.277922, 37.136872], [-79.276244, 37.13712], [-79.273494, 37.137624], [-79.272005, 37.137904], [-79.271794, 37.137944], [-79.266159, 37.138985], [-79.265643, 37.139056], [-79.265084, 37.139119], [-79.264404, 37.139177], [-79.263826, 37.139213], [-79.263263, 37.139234], [-79.262666, 37.139241], [-79.262103, 37.139234], [-79.26149, 37.139213], [-79.260895, 37.13918], [-79.260488, 37.139149], [-79.257811, 37.138859], [-79.253283, 37.138354], [-79.251817, 37.138189], [-79.251311, 37.138138], [-79.25082, 37.138104], [-79.250344, 37.138087], [-79.249949, 37.138091], [-79.249141, 37.138125], [-79.248701, 37.138169], [-79.248255, 37.138232], [-79.247815, 37.138303], [-79.247404, 37.138388], [-79.246983, 37.138492], [-79.24619, 37.138741], [-79.246034, 37.138799], [-79.245567, 37.138991], [-79.243639, 37.139795], [-79.242121, 37.140435], [-79.241618, 37.140648], [-79.241125, 37.14089], [-79.240755, 37.141103], [-79.240471, 37.141293], [-79.240237, 37.141475], [-79.240023, 37.141661], [-79.239659, 37.142024], [-79.238717, 37.143115], [-79.238653, 37.143189], [-79.238443, 37.143404], [-79.23822, 37.14361], [-79.237972, 37.143817], [-79.237711, 37.144013], [-79.237424, 37.144206], [-79.237139, 37.144378], [-79.236846, 37.144536], [-79.23672, 37.144599], [-79.235366, 37.145185], [-79.235031, 37.145327], [-79.233118, 37.146139], [-79.232943, 37.146214], [-79.23213, 37.146559], [-79.23159, 37.146789], [-79.231268, 37.146943], [-79.230971, 37.147103], [-79.230723, 37.147248], [-79.230589, 37.147333], [-79.230303, 37.147527], [-79.230067, 37.147704], [-79.229831, 37.147902], [-79.229608, 37.148108], [-79.229398, 37.148324], [-79.229192, 37.148559], [-79.229002, 37.148802], [-79.228823, 37.149065], [-79.228683, 37.149299], [-79.228557, 37.149537], [-79.228436, 37.149807], [-79.228332, 37.15008], [-79.22824, 37.150371], [-79.228165, 37.150679], [-79.228144, 37.150787], [-79.22795, 37.1522], [-79.227939, 37.152282], [-79.227922, 37.152405], [-79.227831, 37.1531], [-79.227768, 37.153577], [-79.22775, 37.153704], [-79.227707, 37.153951], [-79.227614, 37.154338], [-79.227519, 37.154642], [-79.227394, 37.154981], [-79.227259, 37.155289], [-79.227113, 37.155579], [-79.227008, 37.155764], [-79.226979, 37.155814], [-79.226931, 37.155892], [-79.22673, 37.156196], [-79.226531, 37.156466], [-79.226359, 37.156679], [-79.226091, 37.156981], [-79.225836, 37.157239], [-79.225577, 37.157477], [-79.225307, 37.157704], [-79.225033, 37.15791], [-79.224838, 37.158043], [-79.223223, 37.159106], [-79.222625, 37.159494], [-79.222577, 37.159525], [-79.222526, 37.159559], [-79.222269, 37.159725], [-79.221758, 37.160065], [-79.219427, 37.161585], [-79.218294, 37.162324], [-79.218211, 37.162378], [-79.216923, 37.163217], [-79.216426, 37.163539], [-79.215909, 37.16389], [-79.215531, 37.164171], [-79.215221, 37.164425], [-79.214936, 37.164678], [-79.214674, 37.164929], [-79.214292, 37.165324], [-79.214244, 37.165374], [-79.213081, 37.166582], [-79.212642, 37.167038], [-79.212368, 37.167324], [-79.212048, 37.167658], [-79.211768, 37.16795], [-79.211486, 37.168245], [-79.211416, 37.168318], [-79.211008, 37.168744], [-79.210963, 37.168791], [-79.210689, 37.16908], [-79.210304, 37.16953], [-79.2101, 37.169782], [-79.209923, 37.170006], [-79.209526, 37.170538], [-79.209343, 37.170798], [-79.207037, 37.174039], [-79.206764, 37.174435], [-79.206634, 37.174641], [-79.206469, 37.174929], [-79.206273, 37.17532], [-79.20615, 37.175603], [-79.206073, 37.175802], [-79.206026, 37.175929], [-79.205916, 37.176273], [-79.205845, 37.176539], [-79.205757, 37.176917], [-79.205696, 37.177164], [-79.205658, 37.177349], [-79.205603, 37.177589], [-79.205562, 37.177759], [-79.205539, 37.177863], [-79.205487, 37.178091], [-79.205427, 37.178344], [-79.205364, 37.178607], [-79.205297, 37.178889], [-79.205253, 37.179068], [-79.20519, 37.179332], [-79.205122, 37.179618], [-79.205055, 37.179895], [-79.204997, 37.180138], [-79.204614, 37.181773], [-79.204588, 37.181883], [-79.204488, 37.182314], [-79.204319, 37.183043], [-79.204265, 37.183268], [-79.204123, 37.18388], [-79.203924, 37.184747], [-79.203855, 37.185167], [-79.203781, 37.185725], [-79.203767, 37.185869], [-79.203714, 37.186727], [-79.203688, 37.188358], [-79.203665, 37.189574], [-79.203624, 37.192626], [-79.203627, 37.192665], [-79.203588, 37.193792], [-79.203572, 37.194229], [-79.203568, 37.194309], [-79.203559, 37.194539], [-79.203553, 37.194676], [-79.203543, 37.194919], [-79.203531, 37.195199], [-79.203502, 37.195859], [-79.203483, 37.196276], [-79.203468, 37.196579], [-79.203458, 37.196792], [-79.203433, 37.197322], [-79.203422, 37.197563], [-79.20341, 37.197824], [-79.203397, 37.198095], [-79.20339, 37.198254], [-79.203379, 37.19847], [-79.203358, 37.198936], [-79.20334, 37.19935], [-79.203304, 37.200071], [-79.203262, 37.200536], [-79.203244, 37.200686], [-79.203162, 37.201241], [-79.203073, 37.201722], [-79.20306, 37.201793], [-79.203026, 37.201977], [-79.202836, 37.203003], [-79.202752, 37.203459], [-79.202563, 37.204478], [-79.202452, 37.205079], [-79.202395, 37.205385], [-79.201856, 37.208299], [-79.201805, 37.208574], [-79.201702, 37.209126], [-79.201673, 37.209268], [-79.201619, 37.209479], [-79.201573, 37.209638], [-79.201505, 37.209836], [-79.201407, 37.210085], [-79.201284, 37.210341], [-79.201114, 37.21064], [-79.201026, 37.210776], [-79.200882, 37.21098], [-79.200649, 37.211282], [-79.200396, 37.211554], [-79.199727, 37.212167], [-79.199637, 37.212249], [-79.199553, 37.212325], [-79.199391, 37.212473], [-79.199159, 37.212684], [-79.19865, 37.213144], [-79.197756, 37.213946], [-79.197588, 37.214097], [-79.197252, 37.214415], [-79.196922, 37.214731], [-79.196487, 37.215166], [-79.196055, 37.215596], [-79.195714, 37.216042], [-79.195395, 37.216449], [-79.194175, 37.218086], [-79.193942, 37.2184], [-79.193714, 37.218705], [-79.193339, 37.219208], [-79.193103, 37.219523], [-79.192804, 37.219924], [-79.192465, 37.220384], [-79.191972, 37.221056], [-79.191665, 37.221486], [-79.191271, 37.222039], [-79.191066, 37.222328], [-79.190837, 37.222648], [-79.190786, 37.222724], [-79.190591, 37.223024], [-79.190561, 37.223069], [-79.190114, 37.223762], [-79.189976, 37.223994], [-79.189786, 37.224314], [-79.189538, 37.224731], [-79.189441, 37.224896], [-79.189231, 37.225287], [-79.188873, 37.225949], [-79.188647, 37.226369], [-79.188578, 37.226497], [-79.188422, 37.22682], [-79.187747, 37.228226], [-79.187638, 37.228454], [-79.186752, 37.230317], [-79.186236, 37.23142], [-79.186183, 37.231531], [-79.186143, 37.231633], [-79.186012, 37.231905], [-79.185971, 37.232009], [-79.185901, 37.232204], [-79.185821, 37.232467], [-79.185783, 37.232629], [-79.185746, 37.232787], [-79.185712, 37.232989], [-79.185564, 37.234115], [-79.18554, 37.234342], [-79.185535, 37.234388], [-79.185527, 37.234464], [-79.185489, 37.234824], [-79.185459, 37.235133], [-79.185442, 37.235447], [-79.185444, 37.235802], [-79.185467, 37.236157], [-79.185494, 37.236478], [-79.185509, 37.236629], [-79.185568, 37.237037], [-79.185613, 37.237268], [-79.185642, 37.237403], [-79.185719, 37.237706], [-79.185791, 37.237965], [-79.185811, 37.238037], [-79.185899, 37.238345], [-79.185952, 37.238527], [-79.18597, 37.23859], [-79.186042, 37.238834], [-79.186525, 37.240494], [-79.186638, 37.240882], [-79.186786, 37.241392], [-79.186995, 37.242108], [-79.187061, 37.242336], [-79.187075, 37.242384], [-79.187298, 37.243149], [-79.187378, 37.243422], [-79.187527, 37.243936], [-79.187774, 37.244774], [-79.187853, 37.245008], [-79.187949, 37.245331], [-79.187975, 37.245426], [-79.18809, 37.245933], [-79.188158, 37.246339], [-79.188193, 37.246639], [-79.188214, 37.246935], [-79.188219, 37.247189], [-79.188219, 37.247284], [-79.188204, 37.247624], [-79.188173, 37.24795], [-79.188121, 37.248287], [-79.188078, 37.248502], [-79.188012, 37.248777], [-79.187964, 37.248948], [-79.18752, 37.250322], [-79.187502, 37.250377], [-79.187461, 37.250489], [-79.187101, 37.251604], [-79.186977, 37.251986], [-79.186803, 37.252487], [-79.186647, 37.252862], [-79.186473, 37.253233], [-79.1864, 37.253375], [-79.186369, 37.253435], [-79.186196, 37.253727], [-79.186096, 37.253883], [-79.185846, 37.254253], [-79.185619, 37.254587], [-79.184816, 37.255765], [-79.184332, 37.256471], [-79.184251, 37.256583], [-79.183919, 37.257073], [-79.183282, 37.258009], [-79.183273, 37.258023], [-79.182658, 37.258928], [-79.182428, 37.259266], [-79.182236, 37.259548], [-79.182189, 37.259617], [-79.181677, 37.260371], [-79.180889, 37.261527], [-79.180329, 37.262346], [-79.179966, 37.262877], [-79.178561, 37.264935], [-79.177834, 37.265998], [-79.17762, 37.266312], [-79.177577, 37.266375], [-79.177344, 37.266717], [-79.177268, 37.266828], [-79.175738, 37.269066], [-79.175293, 37.269718], [-79.175059, 37.270062], [-79.175024, 37.270113], [-79.174746, 37.27052], [-79.174499, 37.270885], [-79.174225, 37.271286], [-79.17318, 37.27282], [-79.172596, 37.273676], [-79.172062, 37.274457], [-79.17205, 37.274476], [-79.171892, 37.274707], [-79.171746, 37.274919], [-79.170612, 37.276581], [-79.170091, 37.277344], [-79.170074, 37.277368], [-79.169014, 37.27887], [-79.168768, 37.279279], [-79.168446, 37.279751], [-79.168095, 37.28026], [-79.167791, 37.280704], [-79.167004, 37.281854], [-79.166839, 37.282126], [-79.166686, 37.282417], [-79.166553, 37.282715], [-79.166455, 37.282978], [-79.166365, 37.283271], [-79.166331, 37.283406], [-79.166277, 37.283662], [-79.166236, 37.283934], [-79.166211, 37.284233], [-79.166208, 37.284331], [-79.16621, 37.284606], [-79.166232, 37.284894], [-79.166273, 37.28518], [-79.166341, 37.285491], [-79.166394, 37.28568], [-79.166419, 37.28576], [-79.16653, 37.286061], [-79.16656, 37.286133], [-79.166601, 37.286228], [-79.167073, 37.287187], [-79.167342, 37.287727], [-79.167647, 37.288335], [-79.167961, 37.288961], [-79.168213, 37.289466], [-79.168669, 37.290363], [-79.169252, 37.291516], [-79.169707, 37.292425], [-79.170019, 37.293049], [-79.170164, 37.293337], [-79.170762, 37.294525], [-79.171017, 37.295032], [-79.171197, 37.29539], [-79.171228, 37.295451], [-79.171707, 37.296402], [-79.171854, 37.296694], [-79.172057, 37.297099], [-79.172329, 37.297639], [-79.172756, 37.298485], [-79.172921, 37.29877], [-79.173118, 37.299071], [-79.173326, 37.299351], [-79.1734, 37.299443], [-79.173711, 37.299824], [-79.174643, 37.300928], [-79.177789, 37.304649], [-79.17841, 37.305383], [-79.179563, 37.306751], [-79.18128, 37.308787], [-79.181492, 37.309036], [-79.181949, 37.309573], [-79.182599, 37.310336], [-79.183198, 37.311046], [-79.183775, 37.311729], [-79.183964, 37.311947], [-79.18428, 37.312314], [-79.18536, 37.313557], [-79.18553, 37.313753], [-79.18588, 37.314159], [-79.186286, 37.314624], [-79.186592, 37.314975], [-79.186893, 37.31532], [-79.187155, 37.315623], [-79.187287, 37.315796], [-79.187433, 37.315958], [-79.187603, 37.316193], [-79.187705, 37.316348], [-79.187781, 37.316469], [-79.187895, 37.316666], [-79.188063, 37.316995], [-79.188211, 37.31734], [-79.188267, 37.317488], [-79.188574, 37.31828], [-79.18873, 37.318682], [-79.188773, 37.318793], [-79.188818, 37.318907], [-79.188983, 37.319332], [-79.189167, 37.319817], [-79.18919, 37.319881], [-79.189276, 37.320122], [-79.189293, 37.320183], [-79.189372, 37.320484], [-79.189407, 37.320635], [-79.189445, 37.320825], [-79.189477, 37.321015], [-79.189492, 37.321115], [-79.189533, 37.321458], [-79.189536, 37.321492], [-79.189586, 37.322119], [-79.189602, 37.322319], [-79.189637, 37.32275], [-79.189647, 37.322876], [-79.189704, 37.323523], [-79.189737, 37.323892], [-79.189747, 37.323997], [-79.189761, 37.324147], [-79.189781, 37.324375], [-79.189798, 37.324545], [-79.189823, 37.324722], [-79.189861, 37.324935], [-79.189896, 37.325095], [-79.189922, 37.3252], [-79.190034, 37.325593], [-79.190115, 37.325884], [-79.190279, 37.326471], [-79.190558, 37.327468], [-79.190626, 37.327737], [-79.190656, 37.327855], [-79.190719, 37.328102], [-79.190893, 37.328783], [-79.19093, 37.328914], [-79.19114, 37.329665], [-79.191197, 37.329849], [-79.191289, 37.330174], [-79.191411, 37.330604], [-79.191427, 37.330662], [-79.191549, 37.331144], [-79.191612, 37.331407], [-79.191674, 37.33166], [-79.191713, 37.331945], [-79.191731, 37.332216], [-79.191727, 37.3324], [-79.191718, 37.332618], [-79.191688, 37.333114], [-79.191671, 37.333265], [-79.191652, 37.333506], [-79.191625, 37.33369], [-79.191591, 37.333978], [-79.191586, 37.334109], [-79.191605, 37.334336], [-79.19161, 37.334672], [-79.191612, 37.334771], [-79.191619, 37.335165], [-79.191615, 37.335425], [-79.191612, 37.335464], [-79.191591, 37.335798], [-79.191573, 37.33597], [-79.19153, 37.336198], [-79.191511, 37.3363], [-79.191476, 37.336481], [-79.191396, 37.336901], [-79.191254, 37.33724], [-79.191108, 37.337564], [-79.190891, 37.337852], [-79.190707, 37.338004], [-79.190446, 37.338136], [-79.190159, 37.338232], [-79.189809, 37.338303], [-79.189504, 37.338343], [-79.189039, 37.338414], [-79.188663, 37.33847], [-79.188351, 37.338526], [-79.18802, 37.338571], [-79.18767, 37.338617], [-79.187276, 37.338677], [-79.18683, 37.338758], [-79.186448, 37.338854], [-79.186232, 37.338986], [-79.186034, 37.339158], [-79.185913, 37.339381], [-79.185862, 37.339654], [-79.185792, 37.339958], [-79.185735, 37.340246], [-79.185608, 37.340565], [-79.185474, 37.340849], [-79.185264, 37.341152], [-79.185009, 37.341421], [-79.184748, 37.341658], [-79.184399, 37.341989], [-79.184093, 37.342254], [-79.183658, 37.342682], [-79.18294, 37.343536], [-79.182113, 37.344505], [-79.181077, 37.345699], [-79.180004, 37.346871], [-79.178729, 37.348196], [-79.177389, 37.349407], [-79.177129, 37.349621], [-79.176626, 37.350036], [-79.173129, 37.353092], [-79.169752, 37.356318], [-79.169186, 37.356859], [-79.166439, 37.359647], [-79.165165, 37.360856], [-79.164528, 37.361444], [-79.163946, 37.361878], [-79.162943, 37.362614], [-79.161891, 37.363349], [-79.159885, 37.364693], [-79.158866, 37.365389], [-79.157915, 37.36609], [-79.156262, 37.367299], [-79.153378, 37.36939], [-79.1513, 37.370777], [-79.148798, 37.372337], [-79.146813, 37.373529], [-79.146135, 37.37394], [-79.145298, 37.374385], [-79.144399, 37.374808], [-79.143032, 37.375351], [-79.142887, 37.375396], [-79.141407, 37.375861], [-79.13952, 37.376309], [-79.137442, 37.376753], [-79.136385, 37.376976], [-79.135221, 37.37722], [-79.134065, 37.377456], [-79.132756, 37.377733], [-79.131505, 37.377997], [-79.130701, 37.378165], [-79.129655, 37.378385], [-79.128812, 37.378561], [-79.127809, 37.378776], [-79.127166, 37.378891], [-79.124907, 37.379433], [-79.122351, 37.380007], [-79.119924, 37.380555], [-79.118369, 37.380958], [-79.116892, 37.381492], [-79.11429, 37.382508], [-79.111589, 37.383564], [-79.110432, 37.384015], [-79.108723, 37.384663], [-79.107004, 37.385341], [-79.10533, 37.38597], [-79.10529, 37.385969], [-79.104874, 37.386095], [-79.104406, 37.386191], [-79.103958, 37.38624], [-79.103328, 37.386271], [-79.101681, 37.386155], [-79.101144, 37.386117], [-79.100418, 37.386038], [-79.097991, 37.385843], [-79.09636, 37.385744], [-79.095982, 37.385658], [-79.095845, 37.385614], [-79.09571, 37.385555], [-79.095567, 37.38548], [-79.095427, 37.38539], [-79.095308, 37.385296], [-79.09517, 37.385161], [-79.09509, 37.385054], [-79.094998, 37.384905], [-79.094916, 37.384737], [-79.094844, 37.384528], [-79.094656, 37.383845], [-79.094531, 37.38345], [-79.094325, 37.383054], [-79.094038, 37.38276], [-79.093621, 37.382467], [-79.093187, 37.382294], [-79.092689, 37.382201], [-79.092284, 37.382201], [-79.091903, 37.382257], [-79.091551, 37.382364], [-79.091187, 37.382541], [-79.090959, 37.382723], [-79.090789, 37.382882], [-79.090589, 37.383115], [-79.090443, 37.383376], [-79.090284, 37.383744], [-79.090225, 37.384], [-79.090179, 37.384541], [-79.090062, 37.385779], [-79.089925, 37.386644], [-79.089849, 37.387226], [-79.089779, 37.387541], [-79.089689, 37.387836], [-79.0895, 37.38838], [-79.089436, 37.388633], [-79.089405, 37.388841], [-79.089289, 37.389685], [-79.089161, 37.39093], [-79.089008, 37.392008], [-79.08881, 37.394069], [-79.088768, 37.394579], [-79.088645, 37.395885], [-79.088477, 37.397207], [-79.087956, 37.401181], [-79.087825, 37.401823], [-79.087665, 37.402308], [-79.087554, 37.402629], [-79.08736, 37.403142], [-79.087142, 37.403562], [-79.086923, 37.403937], [-79.086762, 37.404195], [-79.086439, 37.404708], [-79.086251, 37.405002], [-79.085982, 37.405393], [-79.085647, 37.405896], [-79.085037, 37.406824], [-79.084691, 37.407346], [-79.084239, 37.407998], [-79.084081, 37.408208], [-79.083969, 37.408376], [-79.083852, 37.408534], [-79.083752, 37.408705], [-79.083641, 37.408893], [-79.08253, 37.41059], [-79.082107, 37.41155], [-79.081937, 37.412163], [-79.081833, 37.412538], [-79.081757, 37.413176], [-79.08171, 37.413903], [-79.081751, 37.414774], [-79.081781, 37.415758], [-79.081777, 37.417393], [-79.081646, 37.41901], [-79.081485, 37.420256], [-79.081292, 37.421219], [-79.081057, 37.422257], [-79.080513, 37.424117], [-79.07951, 37.427155], [-79.078061, 37.431195], [-79.077269, 37.433524], [-79.076993, 37.434391], [-79.076647, 37.435495], [-79.076395, 37.436608], [-79.076304, 37.437254], [-79.076229, 37.438019], [-79.076213, 37.439312], [-79.076213, 37.439413], [-79.076155, 37.442774], [-79.07614, 37.443179], [-79.076116, 37.443841], [-79.076046, 37.446058], [-79.075976, 37.449173], [-79.076002, 37.451689], [-79.076065, 37.4523], [-79.076262, 37.453], [-79.076579, 37.453683], [-79.076982, 37.454312], [-79.077536, 37.45501], [-79.079739, 37.457229], [-79.080689, 37.458217], [-79.081531, 37.459252], [-79.082085, 37.460038], [-79.082441, 37.460738], [-79.082708, 37.461304], [-79.082968, 37.461981], [-79.083137, 37.462694], [-79.083265, 37.463513], [-79.083293, 37.464338], [-79.083287, 37.464745], [-79.083277, 37.465166], [-79.083236, 37.465743], [-79.083136, 37.466259], [-79.082678, 37.468029], [-79.082438, 37.469156], [-79.08215, 37.470371], [-79.081963, 37.471033], [-79.081827, 37.471415], [-79.081408, 37.472342], [-79.081005, 37.47309], [-79.080296, 37.474045], [-79.079641, 37.474751], [-79.078249, 37.476094], [-79.077451, 37.477058], [-79.076776, 37.477863], [-79.076213, 37.478711], [-79.075638, 37.479763], [-79.075274, 37.480624], [-79.074869, 37.481821], [-79.074675, 37.482594], [-79.074634, 37.482892], [-79.074593, 37.483204], [-79.07457, 37.483627], [-79.074448, 37.484732], [-79.074331, 37.485753], [-79.074167, 37.486518], [-79.073888, 37.487326], [-79.073467, 37.488074], [-79.07305, 37.488846], [-79.072616, 37.489619], [-79.072018, 37.490699], [-79.07163, 37.49136], [-79.070791, 37.492896], [-79.070146, 37.494186], [-79.06953, 37.495438], [-79.068703, 37.497026], [-79.067817, 37.498799], [-79.067177, 37.500098], [-79.066497, 37.501471], [-79.066168, 37.502341], [-79.065974, 37.503063], [-79.065895, 37.503746], [-79.065857, 37.504329], [-79.065851, 37.505804], [-79.065851, 37.506847], [-79.065828, 37.508187], [-79.065831, 37.509824], [-79.0658, 37.510657], [-79.065769, 37.511273], [-79.065628, 37.51191], [-79.065455, 37.512506], [-79.065165, 37.513111], [-79.064807, 37.513823], [-79.064426, 37.514512], [-79.063986, 37.515424], [-79.063804, 37.515903], [-79.063545, 37.516788], [-79.063328, 37.51796], [-79.063264, 37.519296], [-79.063311, 37.520208], [-79.063487, 37.521209], [-79.063645, 37.522214], [-79.063845, 37.523275], [-79.06425, 37.525364], [-79.064871, 37.528602], [-79.065376, 37.531264], [-79.066057, 37.534819], [-79.066725, 37.538252], [-79.0674, 37.541904], [-79.06794, 37.544546], [-79.068021, 37.545221], [-79.068093, 37.545891], [-79.068075, 37.546616], [-79.067977, 37.547323], [-79.067805, 37.547989], [-79.06729, 37.549617], [-79.066508, 37.552189], [-79.066203, 37.55312], [-79.065916, 37.554199], [-79.06571, 37.554864], [-79.065358, 37.555901], [-79.06462, 37.558162], [-79.064236, 37.559374], [-79.064086, 37.559848], [-79.063835, 37.560896], [-79.063609, 37.561383], [-79.063256, 37.561986], [-79.062896, 37.562503], [-79.062134, 37.563345], [-79.061625, 37.563753], [-79.06094, 37.564213], [-79.058641, 37.565583], [-79.05758, 37.566208], [-79.056639, 37.566768], [-79.055935, 37.567192], [-79.055742, 37.567302], [-79.055553, 37.567416], [-79.055246, 37.567615], [-79.054927, 37.567838], [-79.054748, 37.567977], [-79.054525, 37.568169], [-79.05429, 37.568391], [-79.054239, 37.568442], [-79.054034, 37.568657], [-79.053873, 37.56885], [-79.053657, 37.569143], [-79.053524, 37.569347], [-79.053368, 37.569618], [-79.053228, 37.569894], [-79.053172, 37.570026], [-79.053043, 37.570358], [-79.05286, 37.57095], [-79.052677, 37.571527], [-79.052485, 37.572133], [-79.052132, 37.573261], [-79.051632, 37.57486], [-79.051348, 37.57574], [-79.051123, 37.576286], [-79.051087, 37.576361], [-79.050788, 37.576916], [-79.050662, 37.577116], [-79.050472, 37.577395], [-79.050278, 37.577652], [-79.050057, 37.577924], [-79.049759, 37.578262], [-79.049412, 37.578608], [-79.049047, 37.578931], [-79.047001, 37.580602], [-79.046515, 37.580994], [-79.046166, 37.58126], [-79.045909, 37.581455], [-79.04561, 37.58167], [-79.045264, 37.581887], [-79.044961, 37.582077], [-79.044149, 37.582573], [-79.04353, 37.582927], [-79.04291, 37.58327], [-79.042129, 37.58371], [-79.041873, 37.583864], [-79.041806, 37.58391], [-79.041621, 37.584017], [-79.041414, 37.584155], [-79.041178, 37.58431], [-79.040635, 37.584689], [-79.039894, 37.585255], [-79.039608, 37.585491], [-79.03912, 37.585904], [-79.038845, 37.586155], [-79.038474, 37.586513], [-79.03781, 37.587198], [-79.037358, 37.587719], [-79.037086, 37.588056], [-79.036877, 37.588331], [-79.036498, 37.588836], [-79.036258, 37.589205], [-79.035926, 37.589739], [-79.034645, 37.591992], [-79.034482, 37.592286], [-79.034097, 37.592957], [-79.033913, 37.593255], [-79.033669, 37.593669], [-79.033006, 37.594819], [-79.032654, 37.595452], [-79.032044, 37.596522], [-79.031678, 37.597159], [-79.031353, 37.597735], [-79.03004, 37.600074], [-79.029644, 37.600763], [-79.028963, 37.601951], [-79.028685, 37.602397], [-79.02851, 37.602662], [-79.028221, 37.603043], [-79.027978, 37.603341], [-79.027692, 37.60368], [-79.027548, 37.60383], [-79.027306, 37.604072], [-79.027105, 37.604269], [-79.02697, 37.604392], [-79.026652, 37.60468], [-79.026083, 37.605207], [-79.026036, 37.60525], [-79.025989, 37.605294], [-79.025872, 37.605402], [-79.02555, 37.605685], [-79.025303, 37.605893], [-79.025239, 37.605951], [-79.025075, 37.606102], [-79.024795, 37.606358], [-79.024408, 37.606702], [-79.024072, 37.607013], [-79.024053, 37.607031], [-79.023787, 37.607264], [-79.023498, 37.607516], [-79.023027, 37.607911], [-79.022811, 37.60807], [-79.022583, 37.608218], [-79.022393, 37.608329], [-79.022103, 37.608478], [-79.021864, 37.608585], [-79.021424, 37.608752], [-79.020855, 37.608965], [-79.020271, 37.609195], [-79.020171, 37.609236], [-79.019921, 37.609348], [-79.019569, 37.609526], [-79.019341, 37.609661], [-79.019134, 37.609801], [-79.018938, 37.609951], [-79.018736, 37.61013], [-79.018557, 37.610318], [-79.018408, 37.6105], [-79.018273, 37.610689], [-79.018177, 37.610845], [-79.018077, 37.611005], [-79.017942, 37.61127], [-79.01775, 37.611733], [-79.017583, 37.612195], [-79.017453, 37.612536], [-79.01736, 37.612779], [-79.017077, 37.613518], [-79.016316, 37.615651], [-79.016211, 37.615921], [-79.015957, 37.616661], [-79.015442, 37.618041], [-79.015171, 37.618767], [-79.015044, 37.619085], [-79.014896, 37.619401], [-79.014725, 37.619699], [-79.014609, 37.619891], [-79.014507, 37.620046], [-79.014326, 37.620291], [-79.014076, 37.620611], [-79.013882, 37.620808], [-79.013583, 37.621079], [-79.012998, 37.621504], [-79.01238, 37.621893], [-79.010646, 37.622959], [-79.01003, 37.623323], [-79.009112, 37.623886], [-79.007841, 37.62468], [-79.007669, 37.624786], [-79.00613, 37.625753], [-79.00574, 37.625992], [-79.004933, 37.626484], [-79.004251, 37.626912], [-79.004139, 37.626981], [-79.003154, 37.627592], [-79.001641, 37.628516], [-79.001111, 37.628835], [-79.00072, 37.62907], [-79.000623, 37.62914], [-79.000217, 37.629394], [-78.998912, 37.630202], [-78.998196, 37.630645], [-78.997598, 37.631025], [-78.997526, 37.631071], [-78.997241, 37.631274], [-78.996875, 37.631534], [-78.996217, 37.63205], [-78.995656, 37.632525], [-78.995017, 37.633129], [-78.994464, 37.633668], [-78.993794, 37.634338], [-78.992582, 37.635539], [-78.99241, 37.635715], [-78.992112, 37.636], [-78.991971, 37.636127], [-78.991598, 37.636454], [-78.991319, 37.636676], [-78.991111, 37.636827], [-78.990724, 37.637089], [-78.990344, 37.637324], [-78.989967, 37.637537], [-78.989578, 37.637737], [-78.988855, 37.638052], [-78.98807, 37.638382], [-78.986736, 37.63892], [-78.986454, 37.639034], [-78.985803, 37.639316], [-78.984897, 37.639687], [-78.98388, 37.640096], [-78.983117, 37.640414], [-78.982726, 37.640573], [-78.981774, 37.640959], [-78.979687, 37.64182], [-78.978231, 37.642417], [-78.977005, 37.64291], [-78.97646, 37.643116], [-78.975777, 37.643333], [-78.975711, 37.643354], [-78.97542, 37.643425], [-78.974834, 37.643551], [-78.974604, 37.64359], [-78.974067, 37.643681], [-78.973393, 37.643752], [-78.972559, 37.643813], [-78.972242, 37.643839], [-78.970006, 37.64399], [-78.96903, 37.64406], [-78.968589, 37.644095], [-78.968224, 37.644136], [-78.967889, 37.644182], [-78.967664, 37.644226], [-78.967387, 37.644293], [-78.967224, 37.644341], [-78.966957, 37.64443], [-78.966688, 37.644536], [-78.966474, 37.644631], [-78.966164, 37.644789], [-78.965983, 37.644902], [-78.965692, 37.645098], [-78.965428, 37.645294], [-78.965238, 37.645456], [-78.965063, 37.645628], [-78.964898, 37.645816], [-78.964762, 37.645992], [-78.964605, 37.646219], [-78.964465, 37.646453], [-78.964354, 37.646672], [-78.96426, 37.646896], [-78.964184, 37.647124], [-78.964105, 37.647472], [-78.964045, 37.647822], [-78.963795, 37.650137], [-78.963771, 37.650446], [-78.963726, 37.650831], [-78.963699, 37.651104], [-78.963637, 37.651545], [-78.963559, 37.651968], [-78.963475, 37.652244], [-78.963403, 37.652439], [-78.963343, 37.65259], [-78.963259, 37.652771], [-78.963211, 37.652855], [-78.963159, 37.652948], [-78.963044, 37.653119], [-78.962876, 37.65334], [-78.962692, 37.653554], [-78.961989, 37.654258], [-78.961507, 37.654728], [-78.961039, 37.655181], [-78.960337, 37.655875], [-78.96023, 37.655972], [-78.960126, 37.656071], [-78.959777, 37.656385], [-78.959596, 37.656559], [-78.959428, 37.656733], [-78.95894, 37.657212], [-78.958347, 37.65781], [-78.957955, 37.658265], [-78.957902, 37.65834], [-78.957703, 37.658582], [-78.956957, 37.659613], [-78.956, 37.660952], [-78.95555, 37.661601], [-78.95521, 37.662149], [-78.955078, 37.662367], [-78.954742, 37.662988], [-78.954584, 37.663297], [-78.954305, 37.663917], [-78.954148, 37.6643], [-78.953981, 37.664751], [-78.953842, 37.665162], [-78.953791, 37.665348], [-78.953693, 37.665702], [-78.953658, 37.665836], [-78.953519, 37.666441], [-78.953449, 37.666806], [-78.953407, 37.667104], [-78.953324, 37.667763], [-78.953292, 37.668183], [-78.953221, 37.669156], [-78.953153, 37.670098], [-78.953142, 37.670264], [-78.953141, 37.6704], [-78.953072, 37.671177], [-78.95304, 37.671615], [-78.952995, 37.672174], [-78.952947, 37.672942], [-78.95292, 37.673225], [-78.952878, 37.673819], [-78.952829, 37.674339], [-78.952797, 37.674686], [-78.952784, 37.674804], [-78.952747, 37.675024], [-78.952692, 37.675301], [-78.952624, 37.675578], [-78.952561, 37.675784], [-78.952486, 37.675985], [-78.952442, 37.676122], [-78.952386, 37.676257], [-78.95232, 37.676433], [-78.952115, 37.676852], [-78.952045, 37.676981], [-78.951895, 37.677259], [-78.951765, 37.677478], [-78.951015, 37.678688], [-78.950642, 37.679294], [-78.950106, 37.680167], [-78.949932, 37.680439], [-78.949555, 37.681057], [-78.948514, 37.682749], [-78.948346, 37.683014], [-78.94819, 37.68327], [-78.947933, 37.683687], [-78.947735, 37.683997], [-78.946949, 37.685284], [-78.946763, 37.685577], [-78.946171, 37.686544], [-78.946077, 37.686718], [-78.945972, 37.686928], [-78.945848, 37.687201], [-78.945794, 37.687349], [-78.945689, 37.687661], [-78.945632, 37.687901], [-78.945568, 37.688266], [-78.945541, 37.688542], [-78.945537, 37.688659], [-78.945545, 37.689126], [-78.945579, 37.689434], [-78.945664, 37.689907], [-78.945683, 37.68999], [-78.945776, 37.690456], [-78.945835, 37.69071], [-78.945961, 37.691323], [-78.946182, 37.69241], [-78.946237, 37.692788], [-78.946274, 37.693085], [-78.946296, 37.693491], [-78.946303, 37.694022], [-78.946301, 37.694057], [-78.946287, 37.694387], [-78.946261, 37.694709], [-78.946249, 37.694805], [-78.946182, 37.695293], [-78.946055, 37.695876], [-78.945864, 37.696567], [-78.945405, 37.698162], [-78.945298, 37.698548], [-78.944826, 37.700186], [-78.944719, 37.700501], [-78.94458, 37.700835], [-78.944457, 37.701074], [-78.944324, 37.701307], [-78.944135, 37.701595], [-78.944026, 37.701738], [-78.943778, 37.70202], [-78.943504, 37.702305], [-78.943214, 37.702564], [-78.94302, 37.702719], [-78.942935, 37.702779], [-78.942809, 37.702868], [-78.942485, 37.703077], [-78.942218, 37.703232], [-78.9405, 37.704132], [-78.940455, 37.704155], [-78.940006, 37.704381], [-78.938227, 37.705302], [-78.93698, 37.705948], [-78.93647, 37.706225], [-78.93488, 37.707122], [-78.934646, 37.707256], [-78.93388, 37.707679], [-78.933448, 37.707924], [-78.932774, 37.708305], [-78.931107, 37.709235], [-78.929365, 37.710215], [-78.928987, 37.710423], [-78.928188, 37.710873], [-78.927848, 37.711058], [-78.927739, 37.711117], [-78.927286, 37.71134], [-78.927035, 37.711449], [-78.926705, 37.711572], [-78.926357, 37.711684], [-78.926015, 37.711773], [-78.925764, 37.711831], [-78.925742, 37.711836], [-78.925395, 37.711899], [-78.925098, 37.711943], [-78.92463, 37.712006], [-78.924358, 37.71204], [-78.9241, 37.712072], [-78.923317, 37.712168], [-78.922673, 37.712257], [-78.921644, 37.712386], [-78.920771, 37.712503], [-78.91879, 37.712755], [-78.917763, 37.712894], [-78.916758, 37.713029], [-78.916316, 37.713107], [-78.915891, 37.713204], [-78.915614, 37.71328], [-78.915324, 37.713372], [-78.915274, 37.713388], [-78.914912, 37.71352], [-78.91455, 37.71367], [-78.914179, 37.713842], [-78.913675, 37.714085], [-78.912967, 37.714415], [-78.910226, 37.715714], [-78.90939, 37.716116], [-78.908844, 37.716378], [-78.908565, 37.716525], [-78.908344, 37.716654], [-78.908223, 37.716733], [-78.907898, 37.716972], [-78.907709, 37.71712], [-78.907284, 37.717479], [-78.905705, 37.718784], [-78.905314, 37.719084], [-78.90491, 37.719372], [-78.904525, 37.719604], [-78.904033, 37.719882], [-78.903337, 37.720265], [-78.902528, 37.720722], [-78.902455, 37.720766], [-78.902055, 37.720998], [-78.901704, 37.721237], [-78.901372, 37.721492], [-78.901207, 37.721632], [-78.901102, 37.721732], [-78.90093, 37.721897], [-78.900791, 37.722043], [-78.900736, 37.722103], [-78.900601, 37.722261], [-78.900394, 37.722523], [-78.900222, 37.722764], [-78.900079, 37.722992], [-78.900004, 37.723131], [-78.899716, 37.723665], [-78.899467, 37.724145], [-78.899406, 37.724274], [-78.89922, 37.72461], [-78.899008, 37.725016], [-78.898838, 37.725322], [-78.898749, 37.725462], [-78.898619, 37.725684], [-78.898501, 37.725886], [-78.898424, 37.726009], [-78.898396, 37.726054], [-78.89823, 37.726333], [-78.897785, 37.72702], [-78.897326, 37.727687], [-78.897029, 37.728104], [-78.896755, 37.72847], [-78.896087, 37.729327], [-78.895376, 37.730223], [-78.89492, 37.73078], [-78.894224, 37.731648], [-78.893951, 37.731982], [-78.893208, 37.732922], [-78.893101, 37.733073], [-78.892951, 37.733284], [-78.892829, 37.733486], [-78.892725, 37.733694], [-78.892653, 37.733852], [-78.892395, 37.734583], [-78.892264, 37.735006], [-78.891874, 37.73617], [-78.891809, 37.736394], [-78.891615, 37.736972], [-78.891508, 37.737307], [-78.891316, 37.737819], [-78.891154, 37.738191], [-78.891075, 37.738356], [-78.891011, 37.738485], [-78.890701, 37.739024], [-78.890539, 37.739262], [-78.890353, 37.739521], [-78.890119, 37.739847], [-78.889796, 37.740253], [-78.889491, 37.740645], [-78.889217, 37.740996], [-78.888944, 37.74133], [-78.888623, 37.741743], [-78.888513, 37.741886], [-78.888267, 37.742188], [-78.887876, 37.742653], [-78.887675, 37.74287], [-78.887504, 37.743037], [-78.887277, 37.743237], [-78.887216, 37.743287], [-78.887135, 37.743353], [-78.886534, 37.743824], [-78.886162, 37.744125], [-78.8861, 37.744182], [-78.885899, 37.744355], [-78.885622, 37.744575], [-78.885356, 37.74478], [-78.884605, 37.745388], [-78.884042, 37.74585], [-78.882882, 37.746752], [-78.882051, 37.747417], [-78.880834, 37.748391], [-78.88003, 37.749038], [-78.879751, 37.749271], [-78.879568, 37.74942], [-78.879376, 37.749569], [-78.878419, 37.750353], [-78.877854, 37.750804], [-78.877584, 37.751037], [-78.877286, 37.751315], [-78.877004, 37.751598], [-78.876844, 37.751774], [-78.876626, 37.752042], [-78.876378, 37.752385], [-78.876192, 37.752665], [-78.876061, 37.752882], [-78.875814, 37.753345], [-78.875209, 37.754691], [-78.874619, 37.756931], [-78.874501, 37.757307], [-78.874339, 37.757855], [-78.873994, 37.758979], [-78.873789, 37.759637], [-78.873696, 37.75991], [-78.873541, 37.760318], [-78.873332, 37.760834], [-78.873094, 37.761337], [-78.872847, 37.761808], [-78.872451, 37.762468], [-78.872257, 37.76277], [-78.871993, 37.763172], [-78.871574, 37.763799], [-78.871327, 37.764167], [-78.871012, 37.764642], [-78.870469, 37.765468], [-78.870316, 37.765702], [-78.870042, 37.766126], [-78.869873, 37.766412], [-78.869781, 37.766589], [-78.869687, 37.766814], [-78.869585, 37.76708], [-78.869516, 37.767314], [-78.869424, 37.767698], [-78.869391, 37.767942], [-78.86938, 37.768238], [-78.869389, 37.768459], [-78.869415, 37.768673], [-78.869485, 37.768991], [-78.869567, 37.769255], [-78.86966, 37.769515], [-78.869743, 37.769714], [-78.869793, 37.769822], [-78.870127, 37.770634], [-78.870244, 37.770938], [-78.870299, 37.771157], [-78.870337, 37.771378], [-78.870379, 37.771605], [-78.870392, 37.771879], [-78.870378, 37.772127], [-78.870337, 37.772397], [-78.870272, 37.77267], [-78.870248, 37.772764], [-78.87004, 37.773562], [-78.869728, 37.774718], [-78.869574, 37.775264], [-78.869411, 37.775864], [-78.869234, 37.776522], [-78.869061, 37.777151], [-78.868889, 37.777735], [-78.868643, 37.778648], [-78.868399, 37.779571], [-78.868224, 37.780198], [-78.868067, 37.780782], [-78.867497, 37.782893], [-78.867434, 37.783141], [-78.867364, 37.783414], [-78.867185, 37.784047], [-78.867156, 37.784152], [-78.867042, 37.784562], [-78.866921, 37.785054], [-78.866779, 37.785508], [-78.866518, 37.786333], [-78.866458, 37.786501], [-78.866348, 37.786832], [-78.866066, 37.787709], [-78.865703, 37.788816], [-78.865457, 37.789659], [-78.865164, 37.790592], [-78.864927, 37.791345], [-78.864619, 37.792175], [-78.864507, 37.792484], [-78.864363, 37.792792], [-78.864228, 37.793041], [-78.864067, 37.7933], [-78.863882, 37.793548], [-78.863684, 37.793797], [-78.863319, 37.794211], [-78.863117, 37.794344], [-78.86295, 37.794541], [-78.862701, 37.794857], [-78.86248, 37.795184], [-78.862275, 37.795518], [-78.862199, 37.795651], [-78.862007, 37.796159], [-78.861989, 37.79622], [-78.861909, 37.796548], [-78.861883, 37.796687], [-78.861846, 37.796942], [-78.861828, 37.797235], [-78.861827, 37.797529], [-78.861837, 37.797754], [-78.861844, 37.797901], [-78.861878, 37.798631], [-78.861919, 37.799738], [-78.861971, 37.800826], [-78.862007, 37.801869], [-78.862081, 37.803303], [-78.862104, 37.80423], [-78.86209, 37.804437], [-78.862063, 37.804642], [-78.862038, 37.804754], [-78.862023, 37.804816], [-78.861947, 37.805046], [-78.861861, 37.805246], [-78.861771, 37.805437], [-78.86165, 37.805634], [-78.861512, 37.805817], [-78.861343, 37.806004], [-78.860353, 37.806994], [-78.859848, 37.807481], [-78.858512, 37.808821], [-78.858367, 37.808958], [-78.858079, 37.809211], [-78.857729, 37.809505], [-78.857293, 37.80986], [-78.856987, 37.81009], [-78.856658, 37.810338], [-78.855693, 37.81105], [-78.85561, 37.811115], [-78.855262, 37.811371], [-78.854965, 37.811605], [-78.853694, 37.812587], [-78.853389, 37.812818], [-78.852362, 37.813637], [-78.851981, 37.813912], [-78.851517, 37.814266], [-78.851057, 37.81462], [-78.85085, 37.814768], [-78.850729, 37.814859], [-78.850652, 37.81492], [-78.850085, 37.815369], [-78.848637, 37.81648], [-78.846503, 37.818117], [-78.846263, 37.818303], [-78.845641, 37.818784], [-78.845198, 37.81912], [-78.844287, 37.819835], [-78.843809, 37.820229], [-78.841255, 37.822413], [-78.840635, 37.822925], [-78.840114, 37.823377], [-78.839772, 37.823685], [-78.839408, 37.824047], [-78.839049, 37.824425], [-78.838766, 37.824737], [-78.838386, 37.825182], [-78.838147, 37.825481], [-78.837849, 37.82588], [-78.837407, 37.826506], [-78.837204, 37.826823], [-78.837053, 37.827081], [-78.836731, 37.827595], [-78.836452, 37.828104], [-78.836275, 37.828399], [-78.836111, 37.828667], [-78.835849, 37.82912], [-78.835504, 37.829691], [-78.835352, 37.829945], [-78.83498, 37.830568], [-78.834935, 37.830642], [-78.834826, 37.830821], [-78.834646, 37.831137], [-78.834377, 37.831577], [-78.833853, 37.832462], [-78.833724, 37.832692], [-78.833217, 37.833546], [-78.831919, 37.835713], [-78.831568, 37.836263], [-78.831293, 37.836637], [-78.831013, 37.836981], [-78.83077, 37.837252], [-78.829687, 37.838434], [-78.829526, 37.8386], [-78.829353, 37.838766], [-78.828845, 37.839208], [-78.828553, 37.839442], [-78.828248, 37.839665], [-78.827736, 37.840071], [-78.82744, 37.840316], [-78.827359, 37.840393], [-78.827219, 37.840526], [-78.827033, 37.840723], [-78.82681, 37.840985], [-78.826636, 37.841213], [-78.826324, 37.841668], [-78.825848, 37.842321], [-78.825635, 37.842569], [-78.825481, 37.842727], [-78.825276, 37.842917], [-78.825211, 37.842971], [-78.825103, 37.843062], [-78.824902, 37.843225], [-78.824735, 37.84334], [-78.824467, 37.843502], [-78.824206, 37.843652], [-78.82312, 37.844198], [-78.822611, 37.844456], [-78.821878, 37.84482], [-78.820981, 37.845244], [-78.82067, 37.845389], [-78.820264, 37.845536], [-78.820038, 37.845598], [-78.819873, 37.845635], [-78.81967, 37.845683], [-78.819501, 37.845707], [-78.819221, 37.845735], [-78.818871, 37.845752], [-78.818684, 37.845746], [-78.818377, 37.845729], [-78.818065, 37.845689], [-78.817748, 37.845635], [-78.817461, 37.845563], [-78.817089, 37.845456], [-78.81664, 37.845308], [-78.816094, 37.845137], [-78.815801, 37.845042], [-78.815106, 37.844835], [-78.814203, 37.844545], [-78.813661, 37.844372], [-78.813194, 37.844227], [-78.812793, 37.844119], [-78.812466, 37.844059], [-78.812161, 37.844015], [-78.811899, 37.843994], [-78.811692, 37.843985], [-78.81145, 37.844002], [-78.811288, 37.844022], [-78.810966, 37.84409], [-78.810704, 37.844162], [-78.810498, 37.844229], [-78.810246, 37.844336], [-78.80993, 37.84449], [-78.809727, 37.844605], [-78.809573, 37.844705], [-78.809276, 37.84492], [-78.809029, 37.845076], [-78.808807, 37.845199], [-78.808527, 37.845332], [-78.808311, 37.845419], [-78.808089, 37.845498], [-78.807811, 37.845579], [-78.807589, 37.845643], [-78.807297, 37.845708], [-78.807, 37.845759], [-78.806691, 37.845797], [-78.806302, 37.845837], [-78.805184, 37.845933], [-78.80503, 37.845945], [-78.804012, 37.846026], [-78.800837, 37.846324], [-78.800537, 37.846339], [-78.800237, 37.846355], [-78.800014, 37.846352], [-78.79976, 37.846345], [-78.799425, 37.846321], [-78.799048, 37.846276], [-78.79881, 37.846227], [-78.798587, 37.846183], [-78.798334, 37.846121], [-78.798127, 37.846044], [-78.797833, 37.845932], [-78.797473, 37.845765], [-78.797183, 37.845617], [-78.796923, 37.845465], [-78.796357, 37.845082], [-78.795818, 37.844712], [-78.795607, 37.84458], [-78.795352, 37.844427], [-78.795147, 37.84431], [-78.794915, 37.844201], [-78.794645, 37.844085], [-78.794419, 37.843996], [-78.794095, 37.843903], [-78.793805, 37.843828], [-78.793467, 37.843774], [-78.793125, 37.84374], [-78.792933, 37.843732], [-78.792722, 37.843723], [-78.792238, 37.84372], [-78.791688, 37.843732], [-78.791137, 37.843731], [-78.790713, 37.843712], [-78.790444, 37.843693], [-78.79016, 37.843657], [-78.78988, 37.843607], [-78.789604, 37.843542], [-78.789363, 37.843478], [-78.789067, 37.843389], [-78.788706, 37.843253], [-78.78839, 37.843125], [-78.788101, 37.843016], [-78.78765, 37.842857], [-78.787324, 37.842748], [-78.787056, 37.84268], [-78.786677, 37.842606], [-78.786459, 37.842568], [-78.786292, 37.842537], [-78.785994, 37.842501], [-78.785649, 37.842467], [-78.785267, 37.842457], [-78.784945, 37.842456], [-78.784589, 37.842468], [-78.782212, 37.842633], [-78.780497, 37.842776], [-78.779987, 37.842814], [-78.778924, 37.842896], [-78.77812, 37.842986], [-78.777773, 37.843042], [-78.777066, 37.843144], [-78.776444, 37.84325], [-78.775647, 37.843402], [-78.774632, 37.843601], [-78.773646, 37.843786], [-78.773282, 37.843855], [-78.772981, 37.843912], [-78.772128, 37.844091], [-78.771161, 37.844316], [-78.770651, 37.844441], [-78.769991, 37.844616], [-78.768859, 37.844941], [-78.768162, 37.845142], [-78.767015, 37.845472], [-78.76637, 37.845658], [-78.765119, 37.846012], [-78.761663, 37.84701], [-78.760903, 37.847224], [-78.760298, 37.847402], [-78.75996, 37.847506], [-78.7597, 37.847596], [-78.759532, 37.84765], [-78.759113, 37.847806], [-78.758783, 37.847948], [-78.758412, 37.84812], [-78.758057, 37.848288], [-78.757154, 37.848747], [-78.756986, 37.848829], [-78.756546, 37.849062], [-78.756115, 37.849306], [-78.755862, 37.849458], [-78.755244, 37.849843], [-78.754769, 37.85013], [-78.754377, 37.85038], [-78.753945, 37.850672], [-78.753673, 37.850873], [-78.753364, 37.851127], [-78.753217, 37.851259], [-78.752739, 37.851715], [-78.752046, 37.852374], [-78.75166, 37.852719], [-78.751401, 37.852929], [-78.751134, 37.853132], [-78.750789, 37.853376], [-78.750504, 37.853564], [-78.750081, 37.853824], [-78.74973, 37.854021], [-78.749369, 37.854207], [-78.748998, 37.85438], [-78.748624, 37.854531], [-78.748053, 37.854743], [-78.747045, 37.85508], [-78.746537, 37.855262], [-78.746473, 37.855285], [-78.745985, 37.855474], [-78.7456, 37.855635], [-78.744986, 37.855911], [-78.744673, 37.856064], [-78.744246, 37.856299], [-78.743761, 37.856591], [-78.743416, 37.856817], [-78.742954, 37.857145], [-78.742639, 37.857387], [-78.742337, 37.85764], [-78.742294, 37.85768], [-78.741896, 37.858045], [-78.741503, 37.85843], [-78.741291, 37.858648], [-78.741254, 37.858686], [-78.740963, 37.859027], [-78.740705, 37.859351], [-78.740668, 37.859398], [-78.740453, 37.85968], [-78.739901, 37.860385], [-78.739675, 37.860647], [-78.739434, 37.860902], [-78.739176, 37.861151], [-78.73895, 37.861357], [-78.738655, 37.861604], [-78.738411, 37.861795], [-78.738094, 37.862025], [-78.737733, 37.862262], [-78.737429, 37.862445], [-78.73708, 37.862638], [-78.73657, 37.862893], [-78.736186, 37.863088], [-78.735435, 37.86348], [-78.734529, 37.863942], [-78.733874, 37.864271], [-78.733562, 37.864427], [-78.733042, 37.864704], [-78.732039, 37.865214], [-78.731948, 37.865258], [-78.731785, 37.865335], [-78.731411, 37.86553], [-78.730148, 37.866169], [-78.729986, 37.866254], [-78.729722, 37.866391], [-78.728688, 37.866913], [-78.727888, 37.86733], [-78.727529, 37.86751], [-78.726765, 37.867904], [-78.726166, 37.868202], [-78.725869, 37.868361], [-78.725428, 37.868579], [-78.725084, 37.868757], [-78.724518, 37.869049], [-78.723898, 37.869354], [-78.722779, 37.869945], [-78.721592, 37.870542], [-78.720481, 37.87111], [-78.719958, 37.871373], [-78.719701, 37.871497], [-78.719365, 37.871672], [-78.718719, 37.872028], [-78.71847, 37.872183], [-78.718164, 37.872388], [-78.717945, 37.872553], [-78.717592, 37.872851], [-78.717285, 37.873139], [-78.717049, 37.873363], [-78.716739, 37.873728], [-78.716536, 37.874002], [-78.716395, 37.874221], [-78.716144, 37.874657], [-78.71604, 37.87487], [-78.715888, 37.875212], [-78.715814, 37.875401], [-78.715694, 37.87571], [-78.715495, 37.876238], [-78.715377, 37.876548], [-78.715275, 37.876817], [-78.71521, 37.877013], [-78.715136, 37.877211], [-78.715081, 37.877371], [-78.714995, 37.877587], [-78.71492, 37.877787], [-78.7148, 37.878131], [-78.714687, 37.878428], [-78.714533, 37.878796], [-78.714454, 37.879009], [-78.714417, 37.879116], [-78.714256, 37.879549], [-78.714141, 37.879854], [-78.713896, 37.880594], [-78.713756, 37.881038], [-78.713682, 37.88126], [-78.713617, 37.881457], [-78.713533, 37.881697], [-78.713446, 37.881943], [-78.713394, 37.882108], [-78.713314, 37.882336], [-78.713184, 37.882655], [-78.713006, 37.883053], [-78.712892, 37.883274], [-78.712733, 37.88355], [-78.712558, 37.88384], [-78.712369, 37.884119], [-78.712275, 37.884257], [-78.712136, 37.884449], [-78.711974, 37.884667], [-78.711814, 37.884876], [-78.711641, 37.885085], [-78.711418, 37.885345], [-78.711139, 37.885644], [-78.710798, 37.88599], [-78.710465, 37.886309], [-78.710195, 37.886555], [-78.709928, 37.886781], [-78.709577, 37.88706], [-78.709406, 37.887199], [-78.709211, 37.887345], [-78.708778, 37.887648], [-78.707968, 37.888179], [-78.707642, 37.888399], [-78.707473, 37.88851], [-78.707244, 37.888663], [-78.706965, 37.888843], [-78.706601, 37.889083], [-78.706088, 37.889425], [-78.705712, 37.889669], [-78.705189, 37.890019], [-78.704893, 37.890211], [-78.703445, 37.891162], [-78.703041, 37.891429], [-78.702721, 37.891638], [-78.702327, 37.891905], [-78.70184, 37.892223], [-78.701163, 37.892662], [-78.700778, 37.892933], [-78.70071, 37.892981], [-78.700622, 37.893046], [-78.700337, 37.893272], [-78.69999, 37.89357], [-78.699755, 37.8938], [-78.699482, 37.894099], [-78.699289, 37.894329], [-78.698787, 37.894984], [-78.698558, 37.895284], [-78.69837, 37.895519], [-78.698116, 37.895851], [-78.697966, 37.896055], [-78.697696, 37.896407], [-78.697057, 37.897242], [-78.696439, 37.898041], [-78.695681, 37.899035], [-78.695049, 37.899863], [-78.694658, 37.900403], [-78.694519, 37.900599], [-78.694429, 37.900733], [-78.693954, 37.901464], [-78.693721, 37.901862], [-78.693473, 37.902275], [-78.693102, 37.902981], [-78.692879, 37.903439], [-78.692797, 37.903623], [-78.692129, 37.905105], [-78.691808, 37.905817], [-78.691268, 37.906984], [-78.690987, 37.907549], [-78.690814, 37.907874], [-78.690688, 37.908089], [-78.690521, 37.908372], [-78.690275, 37.908767], [-78.689663, 37.909657], [-78.689078, 37.910492], [-78.685485, 37.915666], [-78.684467, 37.917131], [-78.682047, 37.920608], [-78.681785, 37.92095], [-78.681517, 37.921272], [-78.681241, 37.921578], [-78.68101, 37.921818], [-78.680605, 37.922194], [-78.68013, 37.922617], [-78.679566, 37.923137], [-78.679307, 37.923403], [-78.678986, 37.92374], [-78.678605, 37.924203], [-78.678345, 37.924561], [-78.678124, 37.924891], [-78.677903, 37.925227], [-78.677688, 37.925589], [-78.677544, 37.925878], [-78.67731, 37.926442], [-78.676551, 37.928284], [-78.676404, 37.928595], [-78.676242, 37.928949], [-78.676148, 37.929122], [-78.675977, 37.929377], [-78.675612, 37.929807], [-78.675385, 37.930086], [-78.675213, 37.930312], [-78.675004, 37.930559], [-78.674617, 37.931044], [-78.67407, 37.931702], [-78.673673, 37.932201], [-78.673281, 37.9327], [-78.672994, 37.933082], [-78.672166, 37.934227], [-78.671112, 37.935771], [-78.670762, 37.936281], [-78.670385, 37.936817], [-78.669877, 37.937599], [-78.668999, 37.93886], [-78.667671, 37.940789], [-78.666721, 37.942158], [-78.666126, 37.943118], [-78.665597, 37.944014], [-78.665125, 37.944827], [-78.664642, 37.945633], [-78.664087, 37.946602], [-78.663665, 37.947366], [-78.663523, 37.947648], [-78.663363, 37.948007], [-78.66312, 37.948581], [-78.662992, 37.948919], [-78.662788, 37.949511], [-78.662392, 37.950794], [-78.662127, 37.951686], [-78.661907, 37.952368], [-78.6618, 37.952667], [-78.661673, 37.952964], [-78.661549, 37.953229], [-78.661377, 37.953546], [-78.661172, 37.953875], [-78.660975, 37.954168], [-78.660712, 37.954527], [-78.660589, 37.954686], [-78.660525, 37.954768], [-78.660204, 37.955161], [-78.659899, 37.955515], [-78.65946, 37.956045], [-78.659107, 37.956472], [-78.658939, 37.95668], [-78.658404, 37.957325], [-78.658185, 37.957583], [-78.657413, 37.958505], [-78.65713, 37.958855], [-78.65677, 37.959264], [-78.656612, 37.959431], [-78.656439, 37.95959], [-78.656251, 37.959739], [-78.656068, 37.959867], [-78.655989, 37.959917], [-78.655752, 37.960052], [-78.655575, 37.96015], [-78.655228, 37.960289], [-78.654931, 37.960405], [-78.653275, 37.960978], [-78.652399, 37.961277], [-78.651659, 37.961545], [-78.651372, 37.96167], [-78.651131, 37.961788], [-78.650953, 37.961888], [-78.65077, 37.962003], [-78.650655, 37.962074], [-78.650545, 37.96215], [-78.650369, 37.962277], [-78.650124, 37.962492], [-78.649827, 37.962781], [-78.649528, 37.963082], [-78.649157, 37.963468], [-78.648771, 37.96385], [-78.648569, 37.964042], [-78.648236, 37.964318], [-78.647928, 37.964546], [-78.647355, 37.964951], [-78.646421, 37.965624], [-78.646034, 37.965897], [-78.645591, 37.966218], [-78.645351, 37.966376], [-78.645051, 37.966569], [-78.644735, 37.966754], [-78.644581, 37.96684], [-78.6444, 37.966936], [-78.643915, 37.967163], [-78.643555, 37.967319], [-78.643147, 37.967465], [-78.642853, 37.967561], [-78.642519, 37.96766], [-78.642395, 37.967695], [-78.642095, 37.967768], [-78.641871, 37.967823], [-78.641449, 37.967916], [-78.640993, 37.967991], [-78.640408, 37.968066], [-78.639997, 37.968103], [-78.639496, 37.96813], [-78.638995, 37.968136], [-78.638434, 37.968125], [-78.637944, 37.9681], [-78.63612, 37.967958], [-78.635136, 37.967873], [-78.633802, 37.96777], [-78.632073, 37.967631], [-78.631801, 37.967611], [-78.630935, 37.967546], [-78.630424, 37.967503], [-78.629697, 37.967442], [-78.628686, 37.967361], [-78.626167, 37.967159], [-78.623282, 37.966927], [-78.622258, 37.96685], [-78.621932, 37.966824], [-78.620819, 37.966736], [-78.620381, 37.966716], [-78.620004, 37.966712], [-78.619679, 37.966717], [-78.61937, 37.966745], [-78.619064, 37.966787], [-78.618761, 37.966844], [-78.618523, 37.9669], [-78.618222, 37.966977], [-78.617837, 37.967103], [-78.617525, 37.967224], [-78.617264, 37.967333], [-78.616866, 37.967526], [-78.61666, 37.96764], [-78.616487, 37.967735], [-78.616266, 37.967872], [-78.615844, 37.968137], [-78.615555, 37.968338], [-78.615229, 37.968577], [-78.614931, 37.968831], [-78.614607, 37.969142], [-78.614381, 37.96937], [-78.614151, 37.969646], [-78.613964, 37.96988], [-78.613494, 37.970554], [-78.61301, 37.971246], [-78.612831, 37.971512], [-78.612279, 37.972333], [-78.611229, 37.97389], [-78.610819, 37.974494], [-78.610719, 37.974624], [-78.610499, 37.974897], [-78.610319, 37.975118], [-78.610116, 37.975331], [-78.609966, 37.975469], [-78.609796, 37.975624], [-78.609591, 37.975796], [-78.609317, 37.976004], [-78.609071, 37.976176], [-78.608849, 37.976327], [-78.608744, 37.97639], [-78.608365, 37.976619], [-78.608101, 37.976752], [-78.607845, 37.976869], [-78.607584, 37.976978], [-78.60725, 37.977103], [-78.606977, 37.977192], [-78.606625, 37.977297], [-78.606266, 37.977388], [-78.606123, 37.977418], [-78.605902, 37.977465], [-78.605646, 37.97752], [-78.605621, 37.977522], [-78.605549, 37.977538], [-78.60423, 37.977756], [-78.602588, 37.978034], [-78.602162, 37.978122], [-78.601825, 37.978203], [-78.601492, 37.978293], [-78.601094, 37.978414], [-78.60071, 37.978547], [-78.600334, 37.978694], [-78.599967, 37.978854], [-78.599486, 37.979083], [-78.599163, 37.979252], [-78.598789, 37.97947], [-78.598549, 37.979624], [-78.597946, 37.980033], [-78.596889, 37.98075], [-78.595137, 37.981939], [-78.593704, 37.982911], [-78.592376, 37.98382], [-78.590854, 37.984906], [-78.590225, 37.985373], [-78.588999, 37.98631], [-78.588012, 37.9871], [-78.587089, 37.987859], [-78.586722, 37.988171], [-78.586183, 37.988631], [-78.585023, 37.989655], [-78.583908, 37.990662], [-78.583686, 37.990885], [-78.583478, 37.991116], [-78.583203, 37.991447], [-78.583057, 37.991641], [-78.582889, 37.99189], [-78.582734, 37.992152], [-78.582584, 37.992445], [-78.582451, 37.992743], [-78.582318, 37.993104], [-78.582229, 37.993396], [-78.582158, 37.993692], [-78.582061, 37.994255], [-78.581989, 37.994788], [-78.581919, 37.9952], [-78.581831, 37.99573], [-78.581596, 37.997239], [-78.581525, 37.997665], [-78.58147, 37.998088], [-78.581083, 38.000517], [-78.580993, 38.001016], [-78.580912, 38.001332], [-78.580857, 38.001514], [-78.580851, 38.001532], [-78.580827, 38.001607], [-78.580788, 38.001711], [-78.580764, 38.001783], [-78.580638, 38.002087], [-78.580501, 38.002397], [-78.580338, 38.002682], [-78.580176, 38.002939], [-78.580026, 38.003155], [-78.57984, 38.003394], [-78.579631, 38.003641], [-78.579528, 38.003748], [-78.579258, 38.004014], [-78.578985, 38.00426], [-78.578784, 38.004426], [-78.578575, 38.004584], [-78.578379, 38.004723], [-78.578122, 38.004899], [-78.577709, 38.005151], [-78.577431, 38.005306], [-78.577141, 38.005444], [-78.576923, 38.005542], [-78.576628, 38.005666], [-78.576327, 38.005766], [-78.576154, 38.005828], [-78.575371, 38.006031], [-78.574274, 38.006313], [-78.573929, 38.006397], [-78.573678, 38.006459], [-78.5731, 38.006602], [-78.572544, 38.006742], [-78.570845, 38.007165], [-78.570536, 38.007245], [-78.570147, 38.007346], [-78.569511, 38.007502], [-78.568866, 38.007677], [-78.568449, 38.007795], [-78.568216, 38.007865], [-78.567861, 38.007984], [-78.567483, 38.008116], [-78.567008, 38.00831], [-78.566642, 38.008471], [-78.566222, 38.008672], [-78.565813, 38.008887], [-78.565381, 38.009126], [-78.564818, 38.009422], [-78.564544, 38.009563], [-78.564196, 38.009735], [-78.564075, 38.009787], [-78.56369, 38.009944], [-78.56326, 38.010103], [-78.562849, 38.010238], [-78.562529, 38.010332], [-78.562124, 38.010438], [-78.561805, 38.010515], [-78.561564, 38.010564], [-78.56093, 38.010675], [-78.560028, 38.010845], [-78.558824, 38.011064], [-78.558024, 38.011219], [-78.557648, 38.011286], [-78.557386, 38.011333], [-78.557058, 38.011387], [-78.555118, 38.011755], [-78.554112, 38.011931], [-78.552878, 38.012156], [-78.552449, 38.01225], [-78.552186, 38.012316], [-78.551829, 38.012417], [-78.551365, 38.012562], [-78.55109, 38.012655], [-78.550658, 38.012829], [-78.550236, 38.013017], [-78.549599, 38.013364], [-78.549376, 38.013492], [-78.549058, 38.013698], [-78.548469, 38.01411], [-78.547659, 38.014674], [-78.547468, 38.014808], [-78.54736, 38.014884], [-78.547042, 38.015096], [-78.546611, 38.015362], [-78.546269, 38.015559], [-78.54592, 38.01574], [-78.545223, 38.016069], [-78.544841, 38.016247], [-78.543906, 38.016682], [-78.543654, 38.016806], [-78.54333, 38.016982], [-78.542733, 38.017318], [-78.542466, 38.017467], [-78.539711, 38.018979], [-78.536725, 38.020664], [-78.535885, 38.021132], [-78.535518, 38.021335], [-78.534742, 38.021766], [-78.534188, 38.022073], [-78.532955, 38.02276], [-78.532173, 38.023196], [-78.531193, 38.023747], [-78.531125, 38.023792], [-78.53075, 38.024045], [-78.530445, 38.024274], [-78.530203, 38.024476], [-78.530016, 38.024649], [-78.529931, 38.024733], [-78.52985, 38.024806], [-78.529798, 38.024854], [-78.529758, 38.024894], [-78.529598, 38.025065], [-78.529327, 38.025386], [-78.52916, 38.025608], [-78.528945, 38.025933], [-78.5288, 38.026176], [-78.528672, 38.026426], [-78.52861, 38.026566], [-78.528405, 38.027066], [-78.52833, 38.027311], [-78.528283, 38.02751], [-78.528235, 38.027689], [-78.528151, 38.028145], [-78.527582, 38.03105], [-78.527126, 38.033402], [-78.52703, 38.033972], [-78.526914, 38.034782], [-78.526868, 38.035166], [-78.52679, 38.036035], [-78.526753, 38.036647], [-78.526715, 38.03781], [-78.526642, 38.040878], [-78.526607, 38.042081], [-78.526584, 38.042473], [-78.526544, 38.042863], [-78.52645, 38.043462], [-78.526353, 38.043907], [-78.526306, 38.044099], [-78.526225, 38.044382], [-78.526103, 38.044762], [-78.525978, 38.045116], [-78.52595, 38.045183], [-78.525619, 38.045973], [-78.525226, 38.046882], [-78.524837, 38.047794], [-78.524807, 38.047861], [-78.524712, 38.048073], [-78.523664, 38.050524], [-78.523608, 38.050633], [-78.523449, 38.050945], [-78.523194, 38.051371], [-78.522992, 38.051667], [-78.522896, 38.051793], [-78.522708, 38.052033], [-78.522379, 38.052403], [-78.522049, 38.052728], [-78.521736, 38.053004], [-78.521375, 38.053289], [-78.521061, 38.053512], [-78.520792, 38.053687], [-78.520433, 38.053898], [-78.5202, 38.054028], [-78.519924, 38.054166], [-78.519561, 38.054329], [-78.519179, 38.054486], [-78.518827, 38.054612], [-78.518437, 38.054736], [-78.518106, 38.054829], [-78.517883, 38.054877], [-78.517638, 38.05494], [-78.517298, 38.055006], [-78.51674, 38.055093], [-78.515503, 38.055228], [-78.513125, 38.055506], [-78.51298, 38.05552], [-78.511721, 38.055664], [-78.510089, 38.05585], [-78.509444, 38.055931], [-78.508892, 38.056018], [-78.508324, 38.056121], [-78.50762, 38.056269], [-78.507101, 38.056364], [-78.5063, 38.056529], [-78.504207, 38.056975], [-78.503544, 38.057129], [-78.50332, 38.057173], [-78.50218, 38.05739], [-78.501769, 38.057476], [-78.501588, 38.057518], [-78.501288, 38.05758], [-78.500918, 38.057644], [-78.50053, 38.057699], [-78.50025, 38.057721], [-78.49999, 38.057731], [-78.4996, 38.057738], [-78.499258, 38.057729], [-78.499228, 38.057727], [-78.498789, 38.057695], [-78.498509, 38.057667], [-78.498249, 38.05764], [-78.497868, 38.057604], [-78.497658, 38.057584], [-78.497235, 38.057537], [-78.496848, 38.057489], [-78.495893, 38.057371], [-78.494978, 38.057279], [-78.49472, 38.057173], [-78.494659, 38.057142], [-78.494592, 38.057093], [-78.494549, 38.057047], [-78.494516, 38.056995], [-78.494502, 38.05695], [-78.494493, 38.056874], [-78.494502, 38.056798], [-78.494522, 38.056739], [-78.494562, 38.056669], [-78.494623, 38.05661], [-78.494697, 38.056562], [-78.494781, 38.056525], [-78.494872, 38.056502], [-78.49496, 38.056493], [-78.495044, 38.0565], [-78.495109, 38.056516], [-78.495169, 38.056541], [-78.495238, 38.056584], [-78.49528, 38.056617], [-78.495339, 38.05668], [-78.495381, 38.056751], [-78.495402, 38.056811], [-78.495415, 38.056894], [-78.495413, 38.056998], [-78.495388, 38.057116], [-78.49528, 38.057239], [-78.495007, 38.057577], [-78.494845, 38.057747], [-78.494782, 38.057825], [-78.494593, 38.05807], [-78.494413, 38.058298], [-78.494268, 38.05847], [-78.494235, 38.058509], [-78.494159, 38.058601], [-78.493967, 38.058833], [-78.493505, 38.059401], [-78.493364, 38.059586], [-78.492889, 38.060182], [-78.492564, 38.060616], [-78.492196, 38.061101], [-78.491916, 38.061468], [-78.491724, 38.061722], [-78.491723, 38.061722], [-78.491578, 38.061897], [-78.491244, 38.062293], [-78.490863, 38.062734], [-78.490477, 38.063153], [-78.490269, 38.06338], [-78.489937, 38.063742], [-78.48969, 38.064008], [-78.489478, 38.064259], [-78.489344, 38.064409], [-78.489289, 38.06447], [-78.489212, 38.064554], [-78.488761, 38.065053], [-78.48815, 38.065739], [-78.488116, 38.065779], [-78.487867, 38.06605], [-78.48713, 38.06686], [-78.486995, 38.067008], [-78.486825, 38.067194], [-78.486343, 38.067727], [-78.486218, 38.067866], [-78.486208, 38.067877], [-78.486134, 38.067959], [-78.48576, 38.068363], [-78.485475, 38.06867], [-78.485154, 38.069027], [-78.484295, 38.070023], [-78.484063, 38.070271], [-78.483776, 38.070614], [-78.483281, 38.071164], [-78.482433, 38.07211], [-78.480968, 38.073741], [-78.480778, 38.073943], [-78.480706, 38.07403], [-78.480376, 38.074401], [-78.479882, 38.074956], [-78.479801, 38.075034], [-78.479272, 38.075634], [-78.478606, 38.076375], [-78.478527, 38.076469], [-78.478367, 38.076647], [-78.477091, 38.078062], [-78.476397, 38.078846], [-78.475743, 38.079571], [-78.474543, 38.08091], [-78.474163, 38.081335], [-78.473969, 38.081577], [-78.473788, 38.081788], [-78.473613, 38.082014], [-78.47347, 38.082218], [-78.472971, 38.083082], [-78.472639, 38.083666], [-78.472264, 38.084319], [-78.471709, 38.085285], [-78.471146, 38.086271], [-78.47079, 38.086895], [-78.470583, 38.087258], [-78.47026, 38.087825], [-78.469568, 38.089039], [-78.468607, 38.090712], [-78.468501, 38.090897], [-78.468139, 38.091557], [-78.468043, 38.091733], [-78.467922, 38.09192], [-78.467732, 38.092218], [-78.46735, 38.0929], [-78.466766, 38.093924], [-78.466497, 38.09437], [-78.466369, 38.094558], [-78.46599, 38.095057], [-78.465526, 38.09564], [-78.465381, 38.095816], [-78.464933, 38.096381], [-78.464463, 38.096962], [-78.464049, 38.097474], [-78.463974, 38.097573], [-78.463441, 38.098232], [-78.46294, 38.098874], [-78.462231, 38.099765], [-78.461478, 38.100721], [-78.460943, 38.101395], [-78.460544, 38.101882], [-78.460009, 38.102564], [-78.459568, 38.103126], [-78.459337, 38.103403], [-78.458603, 38.10429], [-78.457804, 38.105297], [-78.45751, 38.105695], [-78.4569, 38.106619], [-78.456598, 38.107068], [-78.45544, 38.108845], [-78.454988, 38.109578], [-78.454476, 38.110311], [-78.454296, 38.110569], [-78.454206, 38.110708], [-78.454093, 38.110899], [-78.453942, 38.111128], [-78.453769, 38.111409], [-78.453294, 38.112125], [-78.453172, 38.112318], [-78.452856, 38.112817], [-78.452688, 38.11307], [-78.452602, 38.113223], [-78.451975, 38.114186], [-78.451686, 38.11461], [-78.45106, 38.115568], [-78.450908, 38.115798], [-78.450496, 38.11642], [-78.450419, 38.116537], [-78.45032, 38.116697], [-78.450137, 38.116993], [-78.449702, 38.117634], [-78.449172, 38.118448], [-78.448773, 38.119065], [-78.448006, 38.120242], [-78.447677, 38.120726], [-78.447299, 38.121219], [-78.44692, 38.121631], [-78.446411, 38.122124], [-78.4458, 38.12267], [-78.444661, 38.123687], [-78.442392, 38.125724], [-78.441529, 38.126494], [-78.440922, 38.127044], [-78.440006, 38.127866], [-78.439371, 38.128436], [-78.437997, 38.129669], [-78.437902, 38.129754], [-78.437019, 38.130549], [-78.436453, 38.131059], [-78.436187, 38.131299], [-78.435995, 38.13147], [-78.435251, 38.132172], [-78.435106, 38.132303], [-78.434673, 38.132753], [-78.434293, 38.13317], [-78.433695, 38.133887], [-78.433416, 38.134269], [-78.433195, 38.134572], [-78.432173, 38.13616], [-78.430917, 38.138131], [-78.430468, 38.138847], [-78.429836, 38.139833], [-78.429464, 38.140424], [-78.428859, 38.141359], [-78.428348, 38.142178], [-78.428275, 38.142291], [-78.427887, 38.14289], [-78.427641, 38.143278], [-78.427277, 38.143851], [-78.427263, 38.143873], [-78.425718, 38.146293], [-78.4249, 38.147586], [-78.423982, 38.149017], [-78.423879, 38.149181], [-78.4234, 38.149936], [-78.422346, 38.1516], [-78.42208, 38.151996], [-78.421684, 38.152621], [-78.421337, 38.15319], [-78.420383, 38.154692], [-78.419605, 38.155908], [-78.417659, 38.158962], [-78.415009, 38.163121], [-78.414626, 38.163716], [-78.414541, 38.163851], [-78.414293, 38.164245], [-78.412771, 38.16663], [-78.41231, 38.167345], [-78.411781, 38.168185], [-78.410521, 38.170164], [-78.410064, 38.170881], [-78.408661, 38.173081], [-78.408289, 38.173661], [-78.406754, 38.176057], [-78.405791, 38.177582], [-78.405633, 38.177824], [-78.404819, 38.179105], [-78.40451, 38.179581], [-78.403702, 38.180857], [-78.403534, 38.181116], [-78.40229, 38.183084], [-78.402, 38.183534], [-78.401567, 38.184219], [-78.401491, 38.184329], [-78.400918, 38.18523], [-78.400512, 38.185861], [-78.399321, 38.187671], [-78.399195, 38.187856], [-78.399077, 38.188041], [-78.398689, 38.188617], [-78.398558, 38.18882], [-78.397589, 38.190295], [-78.3974, 38.190566], [-78.397207, 38.19086], [-78.396877, 38.191349], [-78.396731, 38.191574], [-78.396016, 38.192652], [-78.395969, 38.192724], [-78.395198, 38.193895], [-78.395145, 38.193978], [-78.395092, 38.194057], [-78.395078, 38.194078], [-78.394787, 38.194511], [-78.394461, 38.19501], [-78.394425, 38.195065], [-78.393867, 38.195904], [-78.393697, 38.196162], [-78.392569, 38.197862], [-78.392356, 38.198186], [-78.391791, 38.199049], [-78.3916, 38.199341], [-78.391424, 38.19959], [-78.391056, 38.200141], [-78.390364, 38.201178], [-78.388697, 38.203713], [-78.387884, 38.204937], [-78.387682, 38.20524], [-78.387424, 38.205639], [-78.386997, 38.206278], [-78.386781, 38.206604], [-78.386138, 38.207581], [-78.385992, 38.207804], [-78.385531, 38.2085], [-78.38498, 38.209334], [-78.384853, 38.209537], [-78.383889, 38.210987], [-78.383519, 38.211533], [-78.383408, 38.211705], [-78.383194, 38.212041], [-78.382209, 38.213531], [-78.381949, 38.213932], [-78.381401, 38.214759], [-78.380953, 38.215433], [-78.380697, 38.215818], [-78.380472, 38.216158], [-78.379118, 38.218196], [-78.378999, 38.218384], [-78.37862, 38.21895], [-78.377882, 38.220071], [-78.377739, 38.220289], [-78.377587, 38.220523], [-78.376908, 38.221535], [-78.376698, 38.221851], [-78.376516, 38.222128], [-78.375966, 38.222959], [-78.375503, 38.223658], [-78.374143, 38.225716], [-78.373741, 38.226317], [-78.372465, 38.228246], [-78.371604, 38.229546], [-78.371224, 38.230126], [-78.37075, 38.230832], [-78.370117, 38.231792], [-78.369796, 38.23229], [-78.369344, 38.233031], [-78.369247, 38.233202], [-78.369201, 38.233285], [-78.369089, 38.233499], [-78.368757, 38.234191], [-78.368537, 38.23469], [-78.368285, 38.235273], [-78.367348, 38.237406], [-78.367125, 38.237924], [-78.366876, 38.23848], [-78.366632, 38.239054], [-78.366538, 38.239263], [-78.366315, 38.239761], [-78.365981, 38.240523], [-78.365112, 38.242495], [-78.364536, 38.243815], [-78.364277, 38.244425], [-78.363872, 38.245322], [-78.363644, 38.245831], [-78.363475, 38.246227], [-78.363324, 38.246579], [-78.363065, 38.24716], [-78.362399, 38.248697], [-78.362213, 38.249115], [-78.36185, 38.249928], [-78.360994, 38.251906], [-78.360894, 38.252122], [-78.360732, 38.252472], [-78.359818, 38.254556], [-78.359604, 38.255032], [-78.358451, 38.257672], [-78.35837, 38.257854], [-78.357235, 38.260418], [-78.35697, 38.261034], [-78.356749, 38.261526], [-78.356328, 38.262487], [-78.3557, 38.26392], [-78.355441, 38.264489], [-78.354985, 38.265534], [-78.354199, 38.267311], [-78.354014, 38.267697], [-78.353899, 38.267927], [-78.353632, 38.268419], [-78.353386, 38.268835], [-78.353012, 38.269405], [-78.352727, 38.269807], [-78.352433, 38.270193], [-78.351176, 38.271816], [-78.35069, 38.272444], [-78.350332, 38.272914], [-78.349867, 38.273496], [-78.349659, 38.273731], [-78.349448, 38.273949], [-78.349246, 38.274133], [-78.348925, 38.274393], [-78.348653, 38.274592], [-78.348309, 38.274816], [-78.346752, 38.275754], [-78.345609, 38.276449], [-78.34394, 38.277447], [-78.343411, 38.277789], [-78.343205, 38.277938], [-78.342906, 38.278167], [-78.342692, 38.278348], [-78.342621, 38.27841], [-78.342399, 38.278622], [-78.342335, 38.278686], [-78.342171, 38.278857], [-78.341631, 38.279482], [-78.341204, 38.280003], [-78.341139, 38.280089], [-78.341053, 38.280202], [-78.340551, 38.280804], [-78.34033, 38.281097], [-78.339739, 38.281771], [-78.337121, 38.284947], [-78.335554, 38.286807], [-78.334912, 38.287652], [-78.334363, 38.288479], [-78.333901, 38.289321], [-78.332891, 38.291302], [-78.33264, 38.291856], [-78.332046, 38.29316], [-78.331547, 38.294091], [-78.33002, 38.297253], [-78.328705, 38.299896], [-78.328454, 38.300437], [-78.327604, 38.302025], [-78.326529, 38.303681], [-78.325643, 38.304891], [-78.325058, 38.305662], [-78.32399, 38.30691], [-78.3236, 38.307359], [-78.323233, 38.30771], [-78.322626, 38.308335], [-78.320591, 38.310229], [-78.317859, 38.312439], [-78.317136, 38.313055], [-78.314274, 38.315396], [-78.313204, 38.316275], [-78.313084, 38.316374], [-78.312238, 38.317069], [-78.31127, 38.317874], [-78.310555, 38.318624], [-78.308339, 38.321068], [-78.307189, 38.322326], [-78.306432, 38.323147], [-78.305157, 38.324565], [-78.299683, 38.33067], [-78.296227, 38.334366], [-78.294775, 38.336025], [-78.294422, 38.336434], [-78.293518, 38.337393], [-78.292283, 38.338774], [-78.290905, 38.340301], [-78.289054, 38.34231], [-78.287698, 38.343781], [-78.286127, 38.345511], [-78.284805, 38.346961], [-78.284197, 38.347653], [-78.281261, 38.350904], [-78.27928, 38.353063], [-78.277989, 38.354462], [-78.276967, 38.355626], [-78.275482, 38.357205], [-78.275108, 38.357686], [-78.273995, 38.359116], [-78.272612, 38.361053], [-78.269402, 38.365549], [-78.268281, 38.367067], [-78.26707, 38.368543], [-78.266209, 38.369424], [-78.26463, 38.370803], [-78.263855, 38.371431], [-78.262777, 38.372178], [-78.262167, 38.372601], [-78.258589, 38.375046], [-78.253931, 38.378242], [-78.253419, 38.378585], [-78.252722, 38.379065], [-78.251038, 38.380279], [-78.249725, 38.3814], [-78.248824, 38.38242], [-78.247019, 38.384778], [-78.243045, 38.39007], [-78.242379, 38.390835], [-78.241798, 38.391304], [-78.241358, 38.391649], [-78.240659, 38.392107], [-78.239791, 38.392562], [-78.236781, 38.394134], [-78.234618, 38.395478], [-78.233524, 38.396238], [-78.231366, 38.397688], [-78.230593, 38.398159], [-78.229713, 38.398631], [-78.22927, 38.398846], [-78.227176, 38.399941], [-78.224001, 38.401573], [-78.221687, 38.402762], [-78.220927, 38.403115], [-78.219583, 38.403494], [-78.217956, 38.403869], [-78.216834, 38.404329], [-78.216198, 38.404653], [-78.215673, 38.404943], [-78.2147, 38.405692], [-78.214341, 38.406017], [-78.211846, 38.409013], [-78.211205, 38.409859], [-78.208931, 38.412831], [-78.207891, 38.413946], [-78.207388, 38.414459], [-78.206848, 38.414885], [-78.20502, 38.416246], [-78.204339, 38.416746], [-78.203587, 38.417231], [-78.201789, 38.418025], [-78.199931, 38.418788], [-78.198775, 38.419213], [-78.197516, 38.419599], [-78.196891, 38.419728], [-78.193593, 38.420311], [-78.192656, 38.420508], [-78.191772, 38.420736], [-78.190615, 38.421137], [-78.189756, 38.421485], [-78.189131, 38.421795], [-78.188009, 38.422501], [-78.186635, 38.423265], [-78.185396, 38.423841], [-78.184545, 38.424162], [-78.179643, 38.425692], [-78.176595, 38.426575], [-78.175037, 38.427149], [-78.174014, 38.427529], [-78.171007, 38.428688], [-78.169272, 38.429381], [-78.165511, 38.430827], [-78.164119, 38.431371], [-78.162591, 38.431967], [-78.161653, 38.432308], [-78.160661, 38.43271], [-78.160269, 38.432865], [-78.159874, 38.433009], [-78.157491, 38.433942], [-78.157022, 38.434133], [-78.156281, 38.434403], [-78.154122, 38.435214], [-78.152887, 38.435503], [-78.151935, 38.435645], [-78.151237, 38.435723], [-78.149391, 38.435895], [-78.145341, 38.436294], [-78.143178, 38.436516], [-78.141588, 38.436723], [-78.140742, 38.436927], [-78.139967, 38.43716], [-78.139029, 38.437478], [-78.138213, 38.437833], [-78.13673, 38.438732], [-78.135769, 38.439493], [-78.133667, 38.441543], [-78.13309, 38.442092], [-78.132637, 38.442565], [-78.131362, 38.443807], [-78.131197, 38.443972], [-78.13069, 38.444456], [-78.13004, 38.445093], [-78.129654, 38.445515], [-78.129431, 38.445788], [-78.129306, 38.445939], [-78.129135, 38.446147], [-78.126535, 38.449414], [-78.12559, 38.450596], [-78.124937, 38.451403], [-78.12463, 38.451786], [-78.122999, 38.453819], [-78.12268, 38.454222], [-78.122212, 38.454799], [-78.122012, 38.455018], [-78.121815, 38.455209], [-78.121657, 38.455346], [-78.121484, 38.455481], [-78.121283, 38.455622], [-78.121072, 38.455755], [-78.120838, 38.455889], [-78.120605, 38.456007], [-78.120411, 38.456093], [-78.120081, 38.45622], [-78.11988, 38.456286], [-78.119617, 38.456362], [-78.119481, 38.456395], [-78.119029, 38.456484], [-78.118859, 38.456513], [-78.118556, 38.456543], [-78.118252, 38.456558], [-78.117886, 38.45656], [-78.117582, 38.456545], [-78.117215, 38.456509], [-78.11691, 38.456463], [-78.116669, 38.456417], [-78.116299, 38.456332], [-78.114395, 38.455867], [-78.113075, 38.455549], [-78.112183, 38.455337], [-78.111983, 38.455288], [-78.110622, 38.454956], [-78.109647, 38.454713], [-78.109318, 38.454619], [-78.108646, 38.454427], [-78.108148, 38.454266], [-78.107826, 38.454152], [-78.107433, 38.454006], [-78.106215, 38.453523], [-78.103244, 38.452284], [-78.103113, 38.45223], [-78.101465, 38.451517], [-78.100793, 38.451267], [-78.099999, 38.450965], [-78.099633, 38.450843], [-78.099366, 38.450762], [-78.098981, 38.450649], [-78.098604, 38.450547], [-78.098262, 38.45046], [-78.09792, 38.450384], [-78.096808, 38.450181], [-78.096151, 38.450083], [-78.095446, 38.449969], [-78.093727, 38.449707], [-78.092677, 38.449547], [-78.092158, 38.449481], [-78.091766, 38.449445], [-78.091635, 38.449437], [-78.091391, 38.44943], [-78.09088, 38.449437], [-78.090541, 38.449459], [-78.090154, 38.449505], [-78.090027, 38.449526], [-78.089761, 38.44957], [-78.089091, 38.449707], [-78.08849, 38.449845], [-78.087312, 38.450134], [-78.086546, 38.450314], [-78.086092, 38.450427], [-78.085716, 38.450516], [-78.085217, 38.45064], [-78.083614, 38.45102], [-78.082588, 38.451268], [-78.081682, 38.451496], [-78.080934, 38.451707], [-78.080808, 38.451743], [-78.080252, 38.451928], [-78.080061, 38.451995], [-78.079356, 38.452244], [-78.079056, 38.452366], [-78.077758, 38.452899], [-78.07693, 38.453218], [-78.07648, 38.453363], [-78.075972, 38.453504], [-78.075519, 38.453613], [-78.075245, 38.453672], [-78.074633, 38.453773], [-78.073634, 38.453917], [-78.073086, 38.453985], [-78.071708, 38.454165], [-78.070367, 38.45434], [-78.069606, 38.454439], [-78.065196, 38.455001], [-78.0636, 38.455212], [-78.062967, 38.455296], [-78.062279, 38.455383], [-78.061807, 38.45545], [-78.061375, 38.455516], [-78.060496, 38.455651], [-78.059099, 38.455874], [-78.058415, 38.455997], [-78.057861, 38.456107], [-78.057398, 38.456211], [-78.057094, 38.456284], [-78.055369, 38.456762], [-78.054558, 38.456978], [-78.05416, 38.457057], [-78.053923, 38.4571], [-78.053692, 38.457137], [-78.053464, 38.457172], [-78.052965, 38.457229], [-78.052547, 38.457266], [-78.05168, 38.457327], [-78.051381, 38.457343], [-78.051209, 38.457356], [-78.050231, 38.457415], [-78.049522, 38.45745], [-78.049115, 38.457457], [-78.048707, 38.45745], [-78.048107, 38.457414], [-78.046583, 38.457296], [-78.045473, 38.457209], [-78.043615, 38.457066], [-78.04299, 38.457014], [-78.041948, 38.456934], [-78.041564, 38.4569], [-78.040447, 38.456809], [-78.039807, 38.456752], [-78.039565, 38.456722], [-78.038614, 38.456586], [-78.037992, 38.45648], [-78.036619, 38.456229], [-78.036312, 38.456174], [-78.035316, 38.455996], [-78.033993, 38.455756], [-78.033455, 38.455659], [-78.032995, 38.455576], [-78.032344, 38.455462], [-78.032225, 38.455441], [-78.032071, 38.455411], [-78.031918, 38.455381], [-78.030629, 38.455156], [-78.030487, 38.455136], [-78.02993, 38.455035], [-78.029397, 38.454939], [-78.027154, 38.454551], [-78.026507, 38.454439], [-78.026143, 38.454368], [-78.025005, 38.454171], [-78.024336, 38.45404], [-78.023622, 38.453878], [-78.02312, 38.453727], [-78.02273, 38.453603], [-78.022384, 38.453473], [-78.021945, 38.453293], [-78.021688, 38.453179], [-78.02141, 38.45304], [-78.020949, 38.452794], [-78.020606, 38.452593], [-78.018376, 38.451156], [-78.015052, 38.449001], [-78.013038, 38.447702], [-78.012718, 38.447476], [-78.012365, 38.447314], [-78.011913, 38.44707], [-78.011467, 38.446849], [-78.011017, 38.446646], [-78.010785, 38.446548], [-78.01041, 38.446389], [-78.009947, 38.446212], [-78.009475, 38.446047], [-78.009032, 38.44592], [-78.008198, 38.445668], [-78.007806, 38.445574], [-78.007536, 38.445509], [-78.00704, 38.445404], [-78.006541, 38.445314], [-78.006039, 38.445234], [-78.005535, 38.445168], [-78.004882, 38.445103], [-78.00427, 38.44506], [-78.003857, 38.445042], [-78.003259, 38.445032], [-77.996098, 38.445039], [-77.995524, 38.445052], [-77.995083, 38.445072], [-77.9946, 38.445108], [-77.994291, 38.44514], [-77.994119, 38.445159], [-77.993562, 38.445235], [-77.993077, 38.445314], [-77.992738, 38.44538], [-77.992304, 38.445476], [-77.991774, 38.445609], [-77.991277, 38.445754], [-77.990885, 38.44588], [-77.990401, 38.446049], [-77.989902, 38.446248], [-77.98951, 38.446417], [-77.989127, 38.446595], [-77.988671, 38.446826], [-77.988226, 38.44707], [-77.988015, 38.447193], [-77.987964, 38.447222], [-77.986229, 38.448266], [-77.982377, 38.450578], [-77.980067, 38.451965], [-77.978396, 38.452971], [-77.976723, 38.453978], [-77.971729, 38.456974], [-77.970854, 38.457513], [-77.970447, 38.457776], [-77.969812, 38.458205], [-77.969672, 38.458304], [-77.969294, 38.458571], [-77.968878, 38.458872], [-77.968162, 38.459423], [-77.967696, 38.459799], [-77.967125, 38.46028], [-77.966325, 38.460982], [-77.965258, 38.461918], [-77.964866, 38.462267], [-77.960196, 38.466376], [-77.955939, 38.470123], [-77.954947, 38.470996], [-77.954533, 38.471358], [-77.953922, 38.471893], [-77.953458, 38.472304], [-77.953176, 38.472548], [-77.952583, 38.473072], [-77.951119, 38.474355], [-77.950943, 38.474509], [-77.949669, 38.47563], [-77.948949, 38.476265], [-77.948002, 38.477098], [-77.940672, 38.483548], [-77.940481, 38.483731], [-77.940188, 38.484012], [-77.939893, 38.484318], [-77.939484, 38.484776], [-77.93926, 38.485054], [-77.939039, 38.48534], [-77.938835, 38.485618], [-77.938574, 38.486003], [-77.938385, 38.4863], [-77.938154, 38.486695], [-77.936929, 38.489071], [-77.936476, 38.48995], [-77.936307, 38.490277], [-77.936213, 38.490449], [-77.936032, 38.490779], [-77.935797, 38.491168], [-77.935515, 38.491593], [-77.935238, 38.491981], [-77.934904, 38.492412], [-77.934836, 38.492493], [-77.93462, 38.492753], [-77.934238, 38.493183], [-77.933985, 38.493449], [-77.933681, 38.493753], [-77.933395, 38.494018], [-77.933018, 38.494354], [-77.932749, 38.494585], [-77.932252, 38.494973], [-77.93171, 38.495374], [-77.931341, 38.495628], [-77.930966, 38.495866], [-77.930194, 38.496327], [-77.929795, 38.496546], [-77.929468, 38.496713], [-77.928898, 38.496989], [-77.928401, 38.497211], [-77.927814, 38.497454], [-77.927352, 38.49763], [-77.926883, 38.497792], [-77.92627, 38.497988], [-77.925745, 38.498139], [-77.925688, 38.498154], [-77.925207, 38.498279], [-77.924635, 38.498412], [-77.924059, 38.498531], [-77.923478, 38.498637], [-77.923244, 38.498675], [-77.9209, 38.499106], [-77.920407, 38.499196], [-77.916265, 38.499951], [-77.914897, 38.500194], [-77.913262, 38.500498], [-77.912906, 38.500563], [-77.911059, 38.5009], [-77.910401, 38.501012], [-77.909308, 38.501222], [-77.90816, 38.501425], [-77.906956, 38.501647], [-77.902649, 38.502433], [-77.901836, 38.502578], [-77.901383, 38.502661], [-77.899056, 38.503088], [-77.897887, 38.503302], [-77.896932, 38.503454], [-77.896481, 38.503514], [-77.896026, 38.50356], [-77.89557, 38.503592], [-77.895091, 38.503613], [-77.894605, 38.503621], [-77.894338, 38.503619], [-77.894023, 38.503612], [-77.893539, 38.503589], [-77.893152, 38.50356], [-77.891645, 38.503392], [-77.891145, 38.503351], [-77.890705, 38.503331], [-77.890264, 38.503325], [-77.89, 38.503328], [-77.889421, 38.503346], [-77.888918, 38.503375], [-77.888578, 38.503406], [-77.888318, 38.503429], [-77.887823, 38.50349], [-77.887334, 38.503566], [-77.886849, 38.503655], [-77.886369, 38.503759], [-77.885701, 38.503929], [-77.88504, 38.504114], [-77.883872, 38.504451], [-77.882026, 38.504972], [-77.880726, 38.50535], [-77.879756, 38.505628], [-77.879416, 38.505726], [-77.878734, 38.505916], [-77.87665, 38.506514], [-77.873295, 38.507467], [-77.870872, 38.508164], [-77.867574, 38.509112], [-77.86643, 38.509426], [-77.865139, 38.509804], [-77.864878, 38.509875], [-77.864614, 38.509946], [-77.864004, 38.510124], [-77.863963, 38.510136], [-77.863243, 38.510359], [-77.862776, 38.510515], [-77.862313, 38.51068], [-77.86153, 38.510992], [-77.86091, 38.511252], [-77.860341, 38.511504], [-77.860101, 38.511597], [-77.859873, 38.511706], [-77.859049, 38.512033], [-77.858596, 38.512199], [-77.85801, 38.512393], [-77.85641, 38.512859], [-77.85546, 38.513131], [-77.853636, 38.513652], [-77.852939, 38.513842], [-77.85189, 38.514117], [-77.851773, 38.514147], [-77.851155, 38.514282], [-77.850783, 38.514355], [-77.850158, 38.514468], [-77.849529, 38.514566], [-77.848611, 38.514673], [-77.847601, 38.514814], [-77.847219, 38.514874], [-77.846744, 38.514961], [-77.846275, 38.515063], [-77.845622, 38.515227], [-77.843493, 38.515828], [-77.840926, 38.516554], [-77.838953, 38.517123], [-77.838611, 38.51724], [-77.838276, 38.51737], [-77.838087, 38.517452], [-77.837878, 38.517559], [-77.837641, 38.517698], [-77.837371, 38.517879], [-77.837159, 38.518042], [-77.836631, 38.518508], [-77.833939, 38.52107], [-77.833536, 38.521444], [-77.832859, 38.52207], [-77.832618, 38.52227], [-77.832363, 38.52246], [-77.832151, 38.522605], [-77.831761, 38.52284], [-77.831645, 38.522905], [-77.831341, 38.523059], [-77.831027, 38.523201], [-77.830705, 38.52333], [-77.830375, 38.523446], [-77.82725, 38.524408], [-77.825282, 38.525005], [-77.824825, 38.525153], [-77.824766, 38.525172], [-77.82414, 38.525403], [-77.823904, 38.525501], [-77.823444, 38.525707], [-77.823161, 38.525842], [-77.822816, 38.526023], [-77.822483, 38.526216], [-77.82216, 38.526429], [-77.821905, 38.526618], [-77.821824, 38.526681], [-77.821661, 38.526816], [-77.82143, 38.527024], [-77.821026, 38.527454], [-77.820758, 38.527783], [-77.820516, 38.528112], [-77.820197, 38.52856], [-77.819895, 38.529029], [-77.81945, 38.529798], [-77.818541, 38.531386], [-77.817476, 38.533249], [-77.817174, 38.533749], [-77.815779, 38.536111], [-77.812836, 38.541042], [-77.812145, 38.542152], [-77.811443, 38.543345], [-77.81107, 38.543916], [-77.809169, 38.54677], [-77.807061, 38.549912], [-77.805801, 38.55177], [-77.803189, 38.555743], [-77.802664, 38.55653], [-77.802442, 38.556869], [-77.802253, 38.557175], [-77.802079, 38.557492], [-77.801838, 38.557971], [-77.801782, 38.55809], [-77.801657, 38.55838], [-77.801522, 38.558722], [-77.801429, 38.558994], [-77.801302, 38.559432], [-77.801209, 38.559822], [-77.801144, 38.560169], [-77.801065, 38.560727], [-77.801025, 38.56131], [-77.801027, 38.561813], [-77.801049, 38.562487], [-77.801069, 38.562893], [-77.801213, 38.565749], [-77.801305, 38.567636], [-77.80137, 38.568961], [-77.801541, 38.572402], [-77.801599, 38.573623], [-77.801669, 38.575224], [-77.801707, 38.575829], [-77.801772, 38.577117], [-77.801874, 38.579138], [-77.801902, 38.579759], [-77.801914, 38.579914], [-77.801945, 38.580642], [-77.801977, 38.581198], [-77.802036, 38.582417], [-77.802118, 38.584113], [-77.802126, 38.584391], [-77.802131, 38.584986], [-77.802118, 38.585525], [-77.802088, 38.586052], [-77.802017, 38.586791], [-77.801743, 38.589112], [-77.801725, 38.589268], [-77.801437, 38.591698], [-77.801342, 38.5925], [-77.801281, 38.593006], [-77.800994, 38.595455], [-77.800644, 38.598437], [-77.800492, 38.599704], [-77.800457, 38.599972], [-77.800268, 38.601612], [-77.800209, 38.602305], [-77.80017, 38.602992], [-77.800152, 38.603904], [-77.800152, 38.604035], [-77.800152, 38.604483], [-77.800172, 38.60559], [-77.800187, 38.606551], [-77.800205, 38.607644], [-77.80022, 38.608813], [-77.800237, 38.609384], [-77.800232, 38.610093], [-77.800248, 38.611162], [-77.80027, 38.611781], [-77.800276, 38.611972], [-77.800298, 38.612639], [-77.800312, 38.613039], [-77.800332, 38.613399], [-77.800397, 38.614527], [-77.800421, 38.615203], [-77.800432, 38.61575], [-77.800444, 38.616559], [-77.800478, 38.618723], [-77.8005, 38.619601], [-77.800525, 38.620811], [-77.800527, 38.620908], [-77.800548, 38.62192], [-77.80058, 38.623403], [-77.800594, 38.624213], [-77.800603, 38.625413], [-77.80062, 38.627386], [-77.800629, 38.627856], [-77.800651, 38.62934], [-77.800658, 38.629863], [-77.800688, 38.631295], [-77.800701, 38.63219], [-77.800708, 38.632656], [-77.800729, 38.632937], [-77.800749, 38.6331], [-77.800764, 38.633194], [-77.800824, 38.633493], [-77.8009, 38.63375], [-77.801033, 38.634132], [-77.801091, 38.634277], [-77.801339, 38.634852], [-77.801526, 38.635289], [-77.801703, 38.635692], [-77.801752, 38.635808], [-77.801965, 38.636295], [-77.802897, 38.638462], [-77.802996, 38.638693], [-77.803206, 38.639174], [-77.803351, 38.639505], [-77.803635, 38.640158], [-77.803774, 38.640485], [-77.80405, 38.641121], [-77.804137, 38.641325], [-77.804199, 38.641471], [-77.804367, 38.641868], [-77.804398, 38.641941], [-77.804535, 38.642359], [-77.804602, 38.642621], [-77.804642, 38.642832], [-77.804669, 38.643038], [-77.804677, 38.643118], [-77.804687, 38.643291], [-77.804696, 38.643722], [-77.804696, 38.644409], [-77.804677, 38.644766], [-77.804636, 38.645023], [-77.804576, 38.645279], [-77.804498, 38.645531], [-77.804445, 38.645671], [-77.804179, 38.646296], [-77.803976, 38.646795], [-77.803645, 38.647584], [-77.803607, 38.647672], [-77.803037, 38.649027], [-77.802582, 38.650099], [-77.802488, 38.65032], [-77.80226, 38.650816], [-77.802226, 38.650891], [-77.801705, 38.651973], [-77.801524, 38.652348], [-77.800517, 38.654435], [-77.800311, 38.654856], [-77.800109, 38.655223], [-77.799504, 38.656216], [-77.799258, 38.656629], [-77.799064, 38.656995], [-77.798952, 38.657238], [-77.798593, 38.658126], [-77.798524, 38.658287], [-77.798395, 38.658591], [-77.798266, 38.658901], [-77.798049, 38.659428], [-77.797829, 38.659963], [-77.79736, 38.661105], [-77.797075, 38.661795], [-77.796724, 38.662641], [-77.79625, 38.663783], [-77.796094, 38.664161], [-77.795637, 38.665271], [-77.79528, 38.666132], [-77.795248, 38.66621], [-77.794069, 38.669063], [-77.793674, 38.670024], [-77.793379, 38.670723], [-77.793244, 38.671036], [-77.793103, 38.671307], [-77.792943, 38.671571], [-77.792813, 38.671755], [-77.792641, 38.671968], [-77.792454, 38.672174], [-77.792251, 38.672371], [-77.791496, 38.673047], [-77.791134, 38.673372], [-77.790643, 38.673809], [-77.789269, 38.675032], [-77.788765, 38.675507], [-77.788692, 38.675576], [-77.788181, 38.676104], [-77.787807, 38.676549], [-77.787668, 38.676743], [-77.787501, 38.677031], [-77.78738, 38.677265], [-77.78733, 38.677383], [-77.787232, 38.677659], [-77.787165, 38.677911], [-77.787115, 38.678177], [-77.787085, 38.678445], [-77.787079, 38.678552], [-77.787095, 38.67913], [-77.787153, 38.679798], [-77.787259, 38.680924], [-77.787331, 38.681886], [-77.787363, 38.682419], [-77.787413, 38.683635], [-77.787401, 38.684203], [-77.787392, 38.684611], [-77.78735, 38.685019], [-77.787315, 38.685264], [-77.787231, 38.685728], [-77.787136, 38.686251], [-77.787114, 38.686332], [-77.78692, 38.686986], [-77.786696, 38.687619], [-77.786501, 38.688074], [-77.786277, 38.68855], [-77.786098, 38.688888], [-77.785944, 38.689154], [-77.785576, 38.689748], [-77.784818, 38.690938], [-77.784516, 38.691425], [-77.784271, 38.691807], [-77.783827, 38.692506], [-77.783401, 38.6932], [-77.783246, 38.693444], [-77.782384, 38.694802], [-77.782205, 38.695084], [-77.781593, 38.696059], [-77.781243, 38.69667], [-77.78108, 38.696994], [-77.780923, 38.697347], [-77.780812, 38.697637], [-77.780687, 38.698004], [-77.780614, 38.698231], [-77.780587, 38.698314], [-77.780392, 38.699181], [-77.780333, 38.699659], [-77.780298, 38.700094], [-77.780287, 38.700389], [-77.780289, 38.700757], [-77.780315, 38.701452], [-77.780365, 38.702797], [-77.780397, 38.703509], [-77.780462, 38.705131], [-77.780535, 38.706895], [-77.780587, 38.708144], [-77.780612, 38.708911], [-77.780675, 38.710324], [-77.780782, 38.713019], [-77.780806, 38.713639], [-77.780906, 38.716128], [-77.780923, 38.716557], [-77.780985, 38.71812], [-77.781094, 38.720811], [-77.781111, 38.721348], [-77.78117, 38.722771], [-77.781205, 38.723428], [-77.781207, 38.723933], [-77.781141, 38.724638], [-77.781062, 38.725028], [-77.780986, 38.725313], [-77.780873, 38.725651], [-77.780799, 38.725838], [-77.780763, 38.72593], [-77.780608, 38.726258], [-77.780457, 38.726537], [-77.78029, 38.726814], [-77.780067, 38.727137], [-77.779841, 38.727426], [-77.779593, 38.727712], [-77.779535, 38.727773], [-77.779432, 38.727882], [-77.779137, 38.728163], [-77.778889, 38.728379], [-77.778564, 38.728638], [-77.777988, 38.729064], [-77.777903, 38.729128], [-77.777813, 38.729195], [-77.777751, 38.72924], [-77.777544, 38.729395], [-77.776507, 38.73018], [-77.77534, 38.731069], [-77.775049, 38.73127], [-77.774364, 38.73177], [-77.774051, 38.732009], [-77.773303, 38.732554], [-77.772496, 38.733155], [-77.772444, 38.733192], [-77.771424, 38.733941], [-77.770375, 38.73472], [-77.769774, 38.735166], [-77.766501, 38.737595], [-77.766092, 38.7379], [-77.766013, 38.737957], [-77.764613, 38.738973], [-77.763699, 38.739647], [-77.760294, 38.742188], [-77.759475, 38.742805], [-77.758292, 38.743704], [-77.757242, 38.744507], [-77.756734, 38.744888], [-77.75607, 38.745394], [-77.755332, 38.74595], [-77.753869, 38.747051], [-77.753512, 38.747317], [-77.752239, 38.748266], [-77.751486, 38.748835], [-77.749304, 38.750477], [-77.747696, 38.751677], [-77.747175, 38.752069], [-77.746636, 38.752468], [-77.746089, 38.752858], [-77.745719, 38.753113], [-77.745109, 38.753534], [-77.744529, 38.753946], [-77.744441, 38.754016], [-77.743143, 38.755039], [-77.742369, 38.755648], [-77.741019, 38.756723], [-77.740302, 38.757289], [-77.74012, 38.757439], [-77.739869, 38.757633], [-77.739452, 38.757933], [-77.738896, 38.758325], [-77.738458, 38.758616], [-77.737994, 38.758912], [-77.737675, 38.759109], [-77.736928, 38.759546], [-77.736529, 38.759764], [-77.73598, 38.760062], [-77.735512, 38.760302], [-77.734641, 38.760749], [-77.731871, 38.762168], [-77.730354, 38.762946], [-77.726563, 38.764904], [-77.726297, 38.765042], [-77.725494, 38.765462], [-77.724993, 38.765717], [-77.724283, 38.76606], [-77.724155, 38.766114], [-77.723683, 38.766274], [-77.723631, 38.766287], [-77.723461, 38.76633], [-77.723208, 38.766384], [-77.722948, 38.766425], [-77.722732, 38.766449], [-77.722439, 38.766466], [-77.722204, 38.76647], [-77.721761, 38.76645], [-77.721338, 38.766416], [-77.720827, 38.766373], [-77.71958, 38.766268], [-77.718945, 38.766226], [-77.71829, 38.766214], [-77.717886, 38.766231], [-77.717644, 38.766248], [-77.717238, 38.766296], [-77.716986, 38.766333], [-77.716478, 38.766426], [-77.715933, 38.766539], [-77.71313, 38.767126], [-77.71253, 38.76725], [-77.711446, 38.767475], [-77.711213, 38.767521], [-77.709832, 38.76781], [-77.709246, 38.767933], [-77.708584, 38.768078], [-77.708134, 38.768177], [-77.707984, 38.768211], [-77.707651, 38.768287], [-77.707208, 38.768389], [-77.707037, 38.768429], [-77.706966, 38.768445], [-77.706604, 38.768529], [-77.705724, 38.768733], [-77.704884, 38.768928], [-77.704008, 38.769125], [-77.703413, 38.769266], [-77.703044, 38.769359], [-77.702667, 38.769454], [-77.702289, 38.769565], [-77.701922, 38.769687], [-77.701705, 38.769766], [-77.701294, 38.769925], [-77.700381, 38.770277], [-77.698624, 38.770957], [-77.69792, 38.771222], [-77.696779, 38.771656], [-77.696286, 38.771839], [-77.694688, 38.772451], [-77.693388, 38.772942], [-77.69338, 38.772945], [-77.69299, 38.773092], [-77.691828, 38.773541], [-77.689985, 38.774273], [-77.689184, 38.774593], [-77.687947, 38.775099], [-77.68652, 38.775696], [-77.686093, 38.775875], [-77.685013, 38.776323], [-77.684548, 38.776508], [-77.683617, 38.77688], [-77.682281, 38.77742], [-77.681906, 38.77757], [-77.680152, 38.778273], [-77.680071, 38.778309], [-77.679964, 38.778348], [-77.67944, 38.778559], [-77.679135, 38.778682], [-77.679008, 38.778733], [-77.678765, 38.778831], [-77.678322, 38.779011], [-77.677302, 38.779417], [-77.677036, 38.779514], [-77.676871, 38.779569], [-77.676375, 38.779711], [-77.675903, 38.779834], [-77.675739, 38.779874], [-77.675282, 38.779966], [-77.675165, 38.77999], [-77.673681, 38.780291], [-77.67245, 38.780538], [-77.671784, 38.780666], [-77.671623, 38.780699], [-77.671392, 38.780752], [-77.670977, 38.780857], [-77.67067, 38.780949], [-77.669909, 38.781181], [-77.669755, 38.781229], [-77.668691, 38.781557], [-77.668105, 38.781729], [-77.66717, 38.781984], [-77.665556, 38.7824], [-77.665397, 38.782443], [-77.66509, 38.782528], [-77.663117, 38.783041], [-77.662729, 38.783142], [-77.658982, 38.784122], [-77.658234, 38.784318], [-77.657487, 38.784515], [-77.656903, 38.784668], [-77.656444, 38.784785], [-77.655772, 38.784954], [-77.655488, 38.785028], [-77.654149, 38.78538], [-77.653073, 38.785665], [-77.652817, 38.785732], [-77.652723, 38.785757], [-77.652335, 38.78586], [-77.650432, 38.786358], [-77.650292, 38.786394], [-77.648546, 38.786845], [-77.648132, 38.786953], [-77.6471, 38.787217], [-77.646912, 38.787266], [-77.646792, 38.787296], [-77.646475, 38.787378], [-77.643862, 38.788066], [-77.643514, 38.788151], [-77.642956, 38.788288], [-77.641845, 38.788545], [-77.641256, 38.788678], [-77.640668, 38.788812], [-77.637878, 38.789456], [-77.637724, 38.789491], [-77.635026, 38.790112], [-77.633026, 38.790572], [-77.631672, 38.790883], [-77.630391, 38.791179], [-77.630168, 38.791231], [-77.629412, 38.791414], [-77.629006, 38.791523], [-77.628982, 38.791529], [-77.628275, 38.791722], [-77.626219, 38.792284], [-77.625465, 38.792483], [-77.624741, 38.792675], [-77.624567, 38.792721], [-77.624468, 38.792748], [-77.624067, 38.792856], [-77.622821, 38.793191], [-77.622323, 38.793326], [-77.622182, 38.793359], [-77.62157, 38.793529], [-77.621412, 38.793572], [-77.620477, 38.793825], [-77.620443, 38.793835], [-77.619193, 38.794171], [-77.619018, 38.794213], [-77.617763, 38.794556], [-77.617092, 38.79473], [-77.616747, 38.794832], [-77.614017, 38.7956], [-77.613309, 38.7958], [-77.613097, 38.795859], [-77.611965, 38.796178], [-77.611011, 38.796432], [-77.609519, 38.79683], [-77.609066, 38.796955], [-77.60887, 38.79701], [-77.608124, 38.797223], [-77.607861, 38.79729], [-77.60659, 38.797608], [-77.604759, 38.798106], [-77.603341, 38.798433], [-77.602615, 38.798623], [-77.60217, 38.798681], [-77.60178, 38.798726], [-77.60159, 38.798739], [-77.601338, 38.79876], [-77.601043, 38.798748], [-77.600761, 38.798726], [-77.600475, 38.798685], [-77.600088, 38.798626], [-77.598701, 38.798329], [-77.598447, 38.798288], [-77.598168, 38.798263], [-77.597945, 38.798266], [-77.597733, 38.798267], [-77.597515, 38.798295], [-77.597295, 38.798329], [-77.59709, 38.79838], [-77.596838, 38.798472], [-77.596056, 38.79873], [-77.595792, 38.798802], [-77.595557, 38.798839], [-77.595321, 38.798872], [-77.595123, 38.798893], [-77.594903, 38.798906], [-77.594606, 38.798902], [-77.592349, 38.798571], [-77.589853, 38.798246], [-77.587564, 38.797961], [-77.584659, 38.797708], [-77.583518, 38.797592], [-77.582596, 38.797507], [-77.581727, 38.797465], [-77.580645, 38.797422], [-77.579853, 38.797408], [-77.579381, 38.797391], [-77.579328, 38.797391], [-77.578346, 38.797391], [-77.576989, 38.797404], [-77.576007, 38.797446], [-77.575373, 38.797504], [-77.571144, 38.797797], [-77.569287, 38.79792], [-77.56555, 38.798187], [-77.561659, 38.798447], [-77.555891, 38.7988], [-77.553755, 38.798951], [-77.550887, 38.799152], [-77.550295, 38.799193], [-77.548407, 38.799331], [-77.54595, 38.799494], [-77.541063, 38.799812], [-77.539341, 38.799946], [-77.536546, 38.800151], [-77.532281, 38.800448], [-77.529135, 38.800667], [-77.525861, 38.800895], [-77.523173, 38.801079], [-77.520134, 38.801324], [-77.519426, 38.801374], [-77.518588, 38.801436], [-77.514662, 38.801698], [-77.51275, 38.801833], [-77.512257, 38.801883], [-77.51176, 38.801949], [-77.511242, 38.802033], [-77.510728, 38.802133], [-77.510237, 38.802245], [-77.509757, 38.802371], [-77.509283, 38.802511], [-77.508762, 38.802686], [-77.508249, 38.802874], [-77.503238, 38.804849], [-77.501867, 38.805383], [-77.49854, 38.806696], [-77.492854, 38.808929], [-77.492586, 38.809039], [-77.491408, 38.809499], [-77.490728, 38.809768], [-77.490387, 38.809903], [-77.489846, 38.810125], [-77.48976, 38.810159], [-77.489588, 38.810228], [-77.488128, 38.810814], [-77.487975, 38.810876], [-77.487938, 38.810891], [-77.487614, 38.811027], [-77.486889, 38.811312], [-77.485515, 38.811841], [-77.481021, 38.813606], [-77.480031, 38.813987], [-77.479528, 38.81418], [-77.478278, 38.814671], [-77.477784, 38.814859], [-77.476696, 38.815283], [-77.476308, 38.815444], [-77.470849, 38.817587], [-77.469997, 38.817934], [-77.469107, 38.818314], [-77.468263, 38.818692], [-77.467788, 38.818912], [-77.466824, 38.819384], [-77.466481, 38.819559], [-77.465978, 38.819814], [-77.465888, 38.819862], [-77.465082, 38.820299], [-77.464689, 38.820516], [-77.463916, 38.820976], [-77.463568, 38.821184], [-77.462817, 38.82165], [-77.462169, 38.822067], [-77.461524, 38.822499], [-77.460742, 38.823046], [-77.459971, 38.823615], [-77.459453, 38.824009], [-77.458829, 38.824505], [-77.458041, 38.825157], [-77.457989, 38.825199], [-77.457719, 38.825436], [-77.457456, 38.825667], [-77.457174, 38.825914], [-77.456485, 38.82655], [-77.455925, 38.827089], [-77.455609, 38.827408], [-77.455354, 38.827664], [-77.455286, 38.827736], [-77.454763, 38.828288], [-77.453687, 38.829492], [-77.45117, 38.83231], [-77.450091, 38.833546], [-77.449603, 38.834072], [-77.4484, 38.835411], [-77.448317, 38.835496], [-77.447073, 38.836883], [-77.446568, 38.837456], [-77.444983, 38.839239], [-77.444962, 38.839261], [-77.44448, 38.839771], [-77.443925, 38.840374], [-77.443121, 38.841151], [-77.442523, 38.841683], [-77.442048, 38.842083], [-77.441563, 38.842472], [-77.44121, 38.842729], [-77.440835, 38.842989], [-77.440353, 38.843301], [-77.439357, 38.843895], [-77.438808, 38.844189], [-77.438412, 38.844388], [-77.438154, 38.844513], [-77.437585, 38.844773], [-77.43695, 38.845042], [-77.436125, 38.845358], [-77.435386, 38.845611], [-77.434841, 38.845778], [-77.434461, 38.845886], [-77.434065, 38.845989], [-77.433588, 38.846102], [-77.432595, 38.846311], [-77.431976, 38.846424], [-77.431894, 38.846439], [-77.43166, 38.846482], [-77.43013, 38.84677], [-77.428638, 38.847052], [-77.427672, 38.847201], [-77.426895, 38.847336], [-77.426613, 38.847387], [-77.423954, 38.847868], [-77.42318, 38.84802], [-77.422578, 38.848129], [-77.421734, 38.848284], [-77.419777, 38.84865], [-77.418032, 38.848977], [-77.416532, 38.849246], [-77.415198, 38.849482], [-77.414151, 38.849672], [-77.413692, 38.849756], [-77.413004, 38.849886], [-77.41025, 38.850388], [-77.408348, 38.850725], [-77.406003, 38.851167], [-77.404553, 38.851419], [-77.403103, 38.851676], [-77.402433, 38.851803], [-77.401513, 38.851954], [-77.399882, 38.852249], [-77.399048, 38.852319], [-77.398718, 38.852375], [-77.397996, 38.852492], [-77.397318, 38.852624], [-77.396752, 38.852714], [-77.396348, 38.852749], [-77.395658, 38.852767], [-77.395009, 38.8528], [-77.394695, 38.852837], [-77.39433, 38.852891], [-77.393802, 38.852984], [-77.393126, 38.853114], [-77.392725, 38.85318], [-77.392095, 38.853297], [-77.391904, 38.853339], [-77.391134, 38.853478], [-77.389836, 38.853723], [-77.389215, 38.853845], [-77.38892, 38.853895], [-77.388716, 38.853941], [-77.388024, 38.854062], [-77.387165, 38.854196], [-77.386771, 38.854162], [-77.386529, 38.854111], [-77.386343, 38.854055], [-77.386187, 38.853987], [-77.386127, 38.853954], [-77.386079, 38.85392], [-77.385986, 38.853839], [-77.385938, 38.853785], [-77.385904, 38.853738], [-77.385849, 38.853638], [-77.385829, 38.853585], [-77.385812, 38.853521], [-77.3858, 38.853402], [-77.385805, 38.853336], [-77.385817, 38.853271], [-77.38586, 38.853155], [-77.385888, 38.853105], [-77.385929, 38.853047], [-77.38601, 38.852959], [-77.386068, 38.85291], [-77.386119, 38.852873], [-77.386233, 38.85281], [-77.386292, 38.852784], [-77.386367, 38.852757], [-77.386444, 38.852736], [-77.386551, 38.852715], [-77.386695, 38.852705], [-77.38684, 38.852711], [-77.386899, 38.85272], [-77.386985, 38.852739], [-77.387131, 38.852784], [-77.387234, 38.852827], [-77.387327, 38.852872], [-77.387501, 38.852977], [-77.387596, 38.853046], [-77.387689, 38.853125], [-77.387869, 38.853301], [-77.388005, 38.8535], [-77.388211, 38.853861], [-77.388248, 38.853958], [-77.38834, 38.854202], [-77.388434, 38.854509], [-77.388512, 38.85483], [-77.388556, 38.855045], [-77.388563, 38.855077], [-77.388615, 38.855398], [-77.38864, 38.855726], [-77.388657, 38.85606], [-77.388632, 38.856494], [-77.388606, 38.856728], [-77.388546, 38.857062], [-77.388494, 38.857283], [-77.388383, 38.85759], [-77.388245, 38.857898], [-77.387962, 38.858392], [-77.387722, 38.858713], [-77.387587, 38.858842], [-77.387448, 38.858992], [-77.38738, 38.859049], [-77.387049, 38.859315], [-77.387001, 38.859355], [-77.386572, 38.859616], [-77.386057, 38.859876], [-77.385696, 38.860037], [-77.385104, 38.860297], [-77.384246, 38.860678], [-77.383311, 38.861091], [-77.382484, 38.861549], [-77.381927, 38.861964], [-77.381649, 38.862271], [-77.381472, 38.862656], [-77.38114, 38.86254], [-77.380676, 38.862336], [-77.380373, 38.862167], [-77.380144, 38.862016], [-77.379932, 38.861857], [-77.379724, 38.861669], [-77.379541, 38.861495], [-77.379299, 38.861256], [-77.379174, 38.86114], [-77.378963, 38.86097], [-77.378779, 38.860822], [-77.378622, 38.860715], [-77.378375, 38.860584], [-77.37825, 38.860526], [-77.377901, 38.860354], [-77.377674, 38.860258], [-77.377503, 38.860194], [-77.376982, 38.860031], [-77.376724, 38.859968], [-77.376465, 38.859908], [-77.376139, 38.859843], [-77.375957, 38.859809], [-77.375449, 38.859704], [-77.37477, 38.859591], [-77.373992, 38.859482], [-77.373385, 38.859411], [-77.373319, 38.859405], [-77.371684, 38.859251], [-77.371331, 38.859226], [-77.37112, 38.859211], [-77.371099, 38.85942], [-77.371098, 38.859619], [-77.371033, 38.860102], [-77.370993, 38.860407], [-77.370953, 38.86073], [-77.370894, 38.86095], [-77.370816, 38.861165], [-77.370757, 38.861296], [-77.370665, 38.861443], [-77.370575, 38.861587], [-77.370384, 38.861875], [-77.370116, 38.862301], [-77.369869, 38.862675], [-77.369695, 38.862937], [-77.369553, 38.863149], [-77.369282, 38.863562], [-77.369075, 38.863878], [-77.369003, 38.863978], [-77.368943, 38.864053], [-77.368872, 38.864143], [-77.368754, 38.864281], [-77.368648, 38.864383], [-77.368548, 38.86448], [-77.368413, 38.864611], [-77.368244, 38.864751], [-77.368139, 38.86483], [-77.368096, 38.864859], [-77.367962, 38.864949], [-77.367753, 38.865087], [-77.36752, 38.865221], [-77.36716, 38.865425], [-77.366916, 38.865565], [-77.366749, 38.865664], [-77.366693, 38.865696], [-77.366603, 38.865757], [-77.36621, 38.865941], [-77.365964, 38.866096], [-77.365677, 38.866275], [-77.365412, 38.86648], [-77.365205, 38.866666], [-77.365092, 38.866802], [-77.364926, 38.867027], [-77.364819, 38.867215], [-77.364795, 38.867271], [-77.364687, 38.867526], [-77.364631, 38.867731], [-77.364602, 38.867885], [-77.364585, 38.868103], [-77.364599, 38.86833], [-77.364602, 38.868416], [-77.364653, 38.868646], [-77.364749, 38.868903], [-77.364915, 38.869232], [-77.365031, 38.869489], [-77.36519, 38.869811], [-77.365353, 38.870145], [-77.365541, 38.870577], [-77.365608, 38.870714], [-77.36564, 38.87078], [-77.365767, 38.871048], [-77.365858, 38.871232], [-77.365914, 38.871335], [-77.366032, 38.871546], [-77.366196, 38.871805], [-77.366355, 38.872046], [-77.366507, 38.872259], [-77.366678, 38.872501], [-77.366856, 38.872754], [-77.366963, 38.872925], [-77.367022, 38.873039], [-77.367081, 38.873163], [-77.367145, 38.873344], [-77.367182, 38.87346], [-77.367204, 38.873534], [-77.367233, 38.873695], [-77.36726, 38.873889], [-77.367273, 38.874003], [-77.367165, 38.874012], [-77.366994, 38.874012], [-77.366779, 38.873999], [-77.366666, 38.873986], [-77.366501, 38.873968], [-77.366313, 38.873934], [-77.366155, 38.873897], [-77.365932, 38.873832], [-77.36562, 38.873728], [-77.365375, 38.873647], [-77.36552, 38.873752], [-77.365645, 38.873824], [-77.365759, 38.873875] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-97.796173, 22.254624] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-97.727508, 22.057641] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-79.085083, 37.601176] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-77.766723, 38.651198] } }, { "type": "Feature", "properties": { "stroke": "#f0f", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-79.347763, 37.008281], [-79.347763, 37.008281] ] } } ] } ================================================ FILE: packages/turf-line-slice/test/out/route2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-113.928988, 50.814121], [-113.928993, 50.813067], [-113.928994, 50.811043], [-113.928995, 50.807418], [-113.929029, 50.804989], [-113.951995, 50.804953], [-113.956813, 50.804931], [-113.957629, 50.804917], [-113.958021, 50.804876], [-113.958575, 50.804779], [-113.959011, 50.804687], [-113.959367, 50.804572], [-113.959858, 50.804414], [-113.960433, 50.804102], [-113.960932, 50.803769], [-113.961563, 50.803306], [-113.961754, 50.803166], [-113.962486, 50.802753], [-113.9641, 50.801549], [-113.966048, 50.800154], [-113.967597, 50.799082], [-113.968657, 50.798289], [-113.969382, 50.79779], [-113.969303, 50.797653], [-113.968833, 50.797177], [-113.968399, 50.796832], [-113.96652, 50.796071], [-113.965325, 50.795579], [-113.964608, 50.795229], [-113.963373, 50.794321], [-113.962094, 50.793355], [-113.956995, 50.789049], [-113.951125, 50.784098], [-113.948573, 50.78194], [-113.941011, 50.775626], [-113.933724, 50.769538], [-113.914584, 50.753577], [-113.906521, 50.746803], [-113.896774, 50.738614], [-113.886275, 50.729779], [-113.88594, 50.729474], [-113.885307, 50.728898], [-113.884903, 50.728477], [-113.884523, 50.728028], [-113.884201, 50.727599], [-113.883986, 50.727298], [-113.883696, 50.726863], [-113.883482, 50.72648], [-113.883314, 50.726156], [-113.883153, 50.725767], [-113.883094, 50.725646], [-113.883031, 50.725465], [-113.882906, 50.725155], [-113.882792, 50.724718], [-113.882641, 50.7241], [-113.882584, 50.723735], [-113.88255, 50.723367], [-113.882523, 50.72258], [-113.882495, 50.717709], [-113.882486, 50.713302], [-113.882476, 50.712125], [-113.882468, 50.702531], [-113.882456, 50.699815], [-113.882434, 50.698229], [-113.882445, 50.693791], [-113.882419, 50.692602], [-113.882412, 50.692077], [-113.882405, 50.691705], [-113.882365, 50.691331], [-113.882289, 50.690878], [-113.882163, 50.690282], [-113.882074, 50.689985], [-113.881908, 50.689517], [-113.881705, 50.689095], [-113.881622, 50.688959], [-113.881501, 50.688721], [-113.881281, 50.688347], [-113.88097, 50.687826], [-113.880715, 50.687491], [-113.880385, 50.687085], [-113.878859, 50.685206], [-113.877456, 50.68348], [-113.875929, 50.68157], [-113.873357, 50.67843], [-113.871364, 50.675999], [-113.869142, 50.673289], [-113.868358, 50.672328], [-113.868037, 50.671943], [-113.867467, 50.671232], [-113.866987, 50.670734], [-113.866668, 50.670424], [-113.866296, 50.670141], [-113.865816, 50.669814], [-113.865451, 50.6696], [-113.8651, 50.669419], [-113.864667, 50.669203], [-113.864079, 50.668945], [-113.863436, 50.668716], [-113.862804, 50.66849], [-113.861739, 50.668114], [-113.853421, 50.665144], [-113.842891, 50.661554], [-113.842171, 50.661197], [-113.841049, 50.660571], [-113.840156, 50.659997], [-113.839716, 50.65961], [-113.839157, 50.659132], [-113.838847, 50.658805], [-113.838358, 50.658284], [-113.837938, 50.657723], [-113.837609, 50.657111], [-113.837268, 50.656259], [-113.83703, 50.655665], [-113.836937, 50.654919], [-113.836909, 50.654144], [-113.836859, 50.650724], [-113.836826, 50.647581], [-113.836828, 50.646677], [-113.836945, 50.631237], [-113.836945, 50.630338], [-113.83681, 50.620833], [-113.836809, 50.615002], [-113.836748, 50.614363], [-113.836695, 50.613902], [-113.836544, 50.613327], [-113.836395, 50.612865], [-113.836165, 50.612347], [-113.835974, 50.611908], [-113.835688, 50.611368], [-113.834199, 50.609116], [-113.831975, 50.605815], [-113.830597, 50.603738], [-113.830194, 50.603006], [-113.829862, 50.60236], [-113.829623, 50.601865], [-113.829361, 50.601178], [-113.829199, 50.600699], [-113.829001, 50.600003], [-113.828688, 50.598264], [-113.828653, 50.597525], [-113.828653, 50.596741], [-113.828659, 50.589493], [-113.828615, 50.584393], [-113.82855, 50.57625], [-113.82857, 50.572186], [-113.82858, 50.57189], [-113.828436, 50.567929], [-113.828262, 50.565198], [-113.82828, 50.550181], [-113.82829, 50.541809], [-113.828291, 50.541417], [-113.828359, 50.484565], [-113.828388, 50.473188], [-113.82839, 50.426319], [-113.828391, 50.410937], [-113.828495, 50.409031], [-113.828495, 50.408255], [-113.828326, 50.404708], [-113.827868, 50.402523], [-113.827189, 50.400367], [-113.82573, 50.397464], [-113.824909, 50.396393], [-113.823811, 50.394869], [-113.82128, 50.391895], [-113.801481, 50.376398], [-113.797907, 50.371872], [-113.796297, 50.369858], [-113.795351, 50.368139], [-113.790726, 50.359724], [-113.789384, 50.358382], [-113.78784, 50.357509], [-113.782077, 50.355219], [-113.781868, 50.355163], [-113.780696, 50.354643], [-113.779832, 50.354058], [-113.779376, 50.353709], [-113.779034, 50.353447], [-113.777779, 50.352208], [-113.776476, 50.350971], [-113.775669, 50.350156], [-113.774903, 50.349363], [-113.774528, 50.349008], [-113.774139, 50.348641], [-113.773752, 50.348267], [-113.773367, 50.347894], [-113.772991, 50.347521], [-113.77261, 50.347144], [-113.77224, 50.346771], [-113.771866, 50.346393], [-113.771491, 50.346021], [-113.771101, 50.345634], [-113.770724, 50.345257], [-113.770334, 50.344868], [-113.769256, 50.343852], [-113.767134, 50.341669], [-113.764647, 50.339182], [-113.764438, 50.338973], [-113.761597, 50.336333], [-113.758593, 50.33458], [-113.755546, 50.333429], [-113.751856, 50.33269], [-113.745118, 50.331594], [-113.742286, 50.330717], [-113.739453, 50.329347], [-113.731213, 50.32247], [-113.723532, 50.315976], [-113.722158, 50.313619], [-113.718768, 50.300682], [-113.714948, 50.295611], [-113.70452, 50.282916], [-113.688985, 50.273536], [-113.671647, 50.26314], [-113.665976, 50.259608], [-113.661862, 50.256884], [-113.66006, 50.254964], [-113.659379, 50.253877], [-113.658858, 50.252741], [-113.658676, 50.251733], [-113.656669, 50.241627], [-113.656154, 50.237592], [-113.655983, 50.234435], [-113.656026, 50.226446], [-113.656001, 50.222848], [-113.655983, 50.212634], [-113.655983, 50.198956], [-113.656026, 50.187774], [-113.655725, 50.180189], [-113.654781, 50.177056], [-113.650834, 50.16488], [-113.648988, 50.159931], [-113.648171, 50.158673], [-113.647041, 50.157055], [-113.642675, 50.151639], [-113.639814, 50.147556], [-113.634175, 50.135735], [-113.632251, 50.131741], [-113.620363, 50.106626], [-113.619376, 50.104527], [-113.61384, 50.092744], [-113.608561, 50.081675], [-113.606581, 50.077494], [-113.603669, 50.071347], [-113.596202, 50.055589], [-113.589593, 50.041645], [-113.585973, 50.034075], [-113.583284, 50.028469], [-113.578879, 50.019214], [-113.577072, 50.015416], [-113.576933, 50.015123], [-113.575461, 50.01195], [-113.56968, 49.999485], [-113.565276, 49.990109], [-113.562856, 49.984972], [-113.558388, 49.975529], [-113.556763, 49.972084], [-113.551497, 49.960982], [-113.550282, 49.958226], [-113.543115, 49.943177], [-113.537579, 49.93141], [-113.531657, 49.91895], [-113.528868, 49.913112], [-113.52852, 49.912237], [-113.528209, 49.911247], [-113.528013, 49.910313], [-113.527878, 49.909552], [-113.527877, 49.908805], [-113.528009, 49.904496], [-113.527999, 49.902765], [-113.527923, 49.890232], [-113.527923, 49.878148], [-113.527237, 49.875493], [-113.526537, 49.873052], [-113.52449, 49.865701], [-113.524447, 49.856267], [-113.52449, 49.841269], [-113.524447, 49.826764], [-113.52437, 49.815239], [-113.524361, 49.813862], [-113.524357, 49.801088], [-113.524347, 49.798401], [-113.524359, 49.795748], [-113.524362, 49.795059], [-113.524404, 49.785441], [-113.524345, 49.778892], [-113.524361, 49.771945], [-113.523632, 49.77031], [-113.522087, 49.769007], [-113.520199, 49.768287], [-113.514319, 49.76643], [-113.510629, 49.764933], [-113.50771, 49.763048], [-113.494964, 49.752901], [-113.479476, 49.742059], [-113.460012, 49.728293], [-113.455597, 49.725235], [-113.454572, 49.72442], [-113.45366, 49.723598], [-113.452976, 49.722915], [-113.45129, 49.720944], [-113.450256, 49.719782], [-113.447746, 49.716986], [-113.447289, 49.716417], [-113.443365, 49.71203], [-113.443141, 49.711789], [-113.442819, 49.711601], [-113.442606, 49.711479], [-113.44236, 49.711374], [-113.442103, 49.711279], [-113.441837, 49.711197], [-113.441458, 49.711124], [-113.441117, 49.711086], [-113.440779, 49.711071], [-113.440369, 49.71109], [-113.439978, 49.71114], [-113.439697, 49.711196], [-113.439397, 49.711273], [-113.439102, 49.71139], [-113.438862, 49.711498], [-113.438591, 49.711635], [-113.438391, 49.711766], [-113.438075, 49.712061], [-113.437745, 49.712489], [-113.43745, 49.712915], [-113.43721, 49.713212], [-113.436932, 49.713495], [-113.436629, 49.713751], [-113.436287, 49.713988], [-113.435908, 49.714204], [-113.435538, 49.714393], [-113.431814, 49.715951], [-113.423934, 49.718913], [-113.423148, 49.719208], [-113.419515, 49.720574], [-113.418553, 49.720884], [-113.417353, 49.721191], [-113.416622, 49.721378], [-113.415189, 49.721933], [-113.414887, 49.722092], [-113.414553, 49.722328], [-113.414204, 49.722586], [-113.413109, 49.723458], [-113.412313, 49.724209], [-113.412068, 49.724385], [-113.411871, 49.724508], [-113.41169, 49.724585], [-113.411456, 49.724665], [-113.411213, 49.724721], [-113.410939, 49.724758], [-113.410649, 49.724769], [-113.408706, 49.724761], [-113.405913, 49.724764], [-113.403119, 49.724754], [-113.400316, 49.724758], [-113.397541, 49.724759], [-113.396042, 49.724769], [-113.395455, 49.724758], [-113.395172, 49.724734], [-113.394938, 49.724709], [-113.394729, 49.724678], [-113.394467, 49.724619], [-113.394209, 49.724544], [-113.393974, 49.724469], [-113.393696, 49.724366], [-113.393468, 49.724249], [-113.393241, 49.72412], [-113.393012, 49.723965], [-113.39289, 49.723864], [-113.391771, 49.722807], [-113.391196, 49.722209], [-113.390266, 49.721242], [-113.389586, 49.720567], [-113.388246, 49.71917], [-113.387068, 49.717968], [-113.386688, 49.717602], [-113.386617, 49.717518], [-113.386398, 49.717254], [-113.386209, 49.717057], [-113.385914, 49.716751], [-113.385697, 49.71658], [-113.385459, 49.716404], [-113.385223, 49.716267], [-113.384941, 49.716121], [-113.384654, 49.716013], [-113.384337, 49.715925], [-113.383953, 49.715848], [-113.383617, 49.715803], [-113.383303, 49.715777], [-113.382948, 49.715769], [-113.382593, 49.71579], [-113.382269, 49.715822], [-113.381923, 49.715886], [-113.381566, 49.715981], [-113.381244, 49.716092], [-113.380957, 49.716219], [-113.380551, 49.716436], [-113.380035, 49.71673], [-113.379484, 49.717081], [-113.378419, 49.71777], [-113.377851, 49.718172], [-113.376955, 49.718849], [-113.376472, 49.719244], [-113.375953, 49.719695], [-113.375418, 49.720164], [-113.374752, 49.720812], [-113.373389, 49.722261], [-113.372553, 49.723172], [-113.371753, 49.724069], [-113.371091, 49.724816], [-113.370703, 49.725251], [-113.370292, 49.725659], [-113.36989, 49.726068], [-113.369354, 49.726543], [-113.368728, 49.727064], [-113.368135, 49.727526], [-113.367567, 49.727939], [-113.366419, 49.728699], [-113.366091, 49.728877], [-113.365827, 49.729022], [-113.365501, 49.729201], [-113.362951, 49.730439], [-113.358468, 49.732139], [-113.3397, 49.739588], [-113.335475, 49.741364], [-113.327488, 49.744425], [-113.318052, 49.748192], [-113.313869, 49.749882], [-113.31224, 49.750619], [-113.310651, 49.75165], [-113.307682, 49.753879], [-113.302921, 49.757409], [-113.297078, 49.761832], [-113.293465, 49.764507], [-113.274088, 49.778989], [-113.273227, 49.779697], [-113.272213, 49.780484], [-113.270309, 49.781807], [-113.269287, 49.782542], [-113.268506, 49.783052], [-113.267549, 49.783577], [-113.266355, 49.784155], [-113.264867, 49.784696], [-113.26421, 49.78488], [-113.263279, 49.785126], [-113.262406, 49.785321], [-113.261535, 49.785468], [-113.260247, 49.785632], [-113.2584, 49.785752], [-113.253189, 49.785761], [-113.2503, 49.785759], [-113.246741, 49.785753], [-113.243803, 49.785748], [-113.24168, 49.785746], [-113.239441, 49.785743], [-113.235416, 49.785738], [-113.232546, 49.785734], [-113.230542, 49.78573], [-113.207916, 49.785665], [-113.188962, 49.785585], [-113.187421, 49.785394], [-113.185955, 49.785084], [-113.182069, 49.784248], [-113.178433, 49.783545], [-113.175537, 49.783555], [-113.172403, 49.784002], [-113.169876, 49.784514], [-113.165425, 49.785057], [-113.162661, 49.785308], [-113.158491, 49.785468], [-113.154009, 49.785249], [-113.150706, 49.7849], [-113.138727, 49.78387], [-113.137918, 49.7838], [-113.132484, 49.783537], [-113.127139, 49.783666], [-113.121522, 49.784134], [-113.116401, 49.784873], [-113.108878, 49.786479], [-113.10643, 49.787036], [-113.100519, 49.78837], [-113.099817, 49.78851], [-113.099069, 49.788664], [-113.098414, 49.788796], [-113.097678, 49.788933], [-113.096947, 49.789058], [-113.096124, 49.78919], [-113.095087, 49.789365], [-113.093946, 49.789519], [-113.092851, 49.789655], [-113.091995, 49.789773], [-113.091108, 49.78988], [-113.090105, 49.789981], [-113.089148, 49.790064], [-113.088464, 49.790125], [-113.087728, 49.790181], [-113.08695, 49.790229], [-113.08621, 49.790281], [-113.085391, 49.790327], [-113.084622, 49.790364], [-113.083774, 49.790396], [-113.082731, 49.790426], [-113.081849, 49.790441], [-113.080915, 49.790449], [-113.080041, 49.790455], [-113.079132, 49.790458], [-113.078156, 49.790437], [-113.077306, 49.790416], [-113.076308, 49.790386], [-113.075035, 49.79033], [-113.073984, 49.790268], [-113.073014, 49.790204], [-113.072411, 49.790162], [-113.071942, 49.790123], [-113.069874, 49.789921], [-113.06869, 49.789793], [-113.067583, 49.789667], [-113.066892, 49.789578], [-113.066126, 49.789472], [-113.064972, 49.789301], [-113.04876, 49.786854], [-113.048, 49.78674], [-113.047462, 49.78667], [-113.046933, 49.786601], [-113.046365, 49.786543], [-113.041994, 49.786136], [-113.038418, 49.786047], [-113.028911, 49.786062], [-113.013026, 49.786042], [-113.003977, 49.786038], [-113.002681, 49.785962], [-113.001644, 49.785864], [-113.00048, 49.785713], [-112.999756, 49.785611], [-112.9987, 49.785408], [-112.997454, 49.785132], [-112.995534, 49.784581], [-112.99125, 49.783007], [-112.98295, 49.779625], [-112.980557, 49.778522], [-112.979018, 49.777554], [-112.976341, 49.775651], [-112.973797, 49.773044], [-112.965769, 49.764644], [-112.960895, 49.75933], [-112.960092, 49.758465], [-112.959726, 49.75808], [-112.959447, 49.757828], [-112.959069, 49.757507], [-112.958709, 49.757166], [-112.958281, 49.756793], [-112.95762, 49.756294], [-112.956931, 49.755799], [-112.956159, 49.755282], [-112.955682, 49.754998], [-112.955151, 49.754703], [-112.952858, 49.753509], [-112.949354, 49.752075], [-112.94544, 49.749962], [-112.938188, 49.743931], [-112.931304, 49.738228], [-112.926731, 49.73422], [-112.925384, 49.732989], [-112.924479, 49.731925], [-112.923468, 49.730575], [-112.922298, 49.729055], [-112.921036, 49.7277], [-112.918917, 49.725859], [-112.918155, 49.725203], [-112.916619, 49.723846], [-112.915487, 49.723018], [-112.915163, 49.72283], [-112.914796, 49.722631], [-112.914432, 49.722464], [-112.914031, 49.722286], [-112.913669, 49.722145], [-112.913246, 49.722004], [-112.912907, 49.721891], [-112.912605, 49.721797], [-112.912248, 49.721697], [-112.911203, 49.721427], [-112.910101, 49.721135], [-112.906937, 49.720299], [-112.903215, 49.719342], [-112.900165, 49.718558], [-112.897476, 49.717852], [-112.895936, 49.717459], [-112.895282, 49.717281], [-112.894243, 49.71701], [-112.893141, 49.716728], [-112.892426, 49.716529], [-112.89165, 49.716338], [-112.891198, 49.71622], [-112.890633, 49.716083], [-112.889897, 49.715934], [-112.889174, 49.715796], [-112.888532, 49.715689], [-112.887541, 49.715558], [-112.88613, 49.71536], [-112.885501, 49.715271], [-112.884833, 49.715175], [-112.884308, 49.715088], [-112.883816, 49.71495], [-112.883277, 49.714832], [-112.882696, 49.714691], [-112.88207, 49.714542], [-112.881531, 49.714385], [-112.881025, 49.714222], [-112.880522, 49.714039], [-112.879986, 49.713834], [-112.879529, 49.71365], [-112.87903, 49.713431], [-112.878502, 49.713173], [-112.877609, 49.712649], [-112.875259, 49.711284], [-112.873228, 49.710141], [-112.872763, 49.709872], [-112.87224, 49.709593], [-112.871848, 49.709384], [-112.871432, 49.709188], [-112.871061, 49.709022], [-112.870716, 49.708873], [-112.870311, 49.708723], [-112.869954, 49.708592], [-112.869443, 49.708436], [-112.868983, 49.708311], [-112.868462, 49.708183], [-112.86782, 49.708055], [-112.867368, 49.707982], [-112.866939, 49.707916], [-112.86545, 49.707716], [-112.861762, 49.707191], [-112.86017, 49.706981], [-112.85809, 49.706677], [-112.85777, 49.706622], [-112.857467, 49.706553], [-112.857076, 49.706452], [-112.856698, 49.706338], [-112.854212, 49.705528], [-112.85381, 49.705386], [-112.853466, 49.70523], [-112.853137, 49.705049], [-112.852839, 49.704853], [-112.851852, 49.704221], [-112.851516, 49.704031], [-112.851207, 49.703872], [-112.850867, 49.70373], [-112.850433, 49.703565], [-112.84992, 49.703388], [-112.847903, 49.702792], [-112.845724, 49.702167], [-112.844077, 49.701628], [-112.8432, 49.701369], [-112.842649, 49.701218], [-112.842201, 49.701114], [-112.841728, 49.701025], [-112.840794, 49.700856], [-112.838125, 49.700426], [-112.834609, 49.699873], [-112.832064, 49.699465], [-112.828981, 49.698964], [-112.828552, 49.698904], [-112.827826, 49.698813], [-112.827096, 49.698728], [-112.826436, 49.698665], [-112.825387, 49.6986], [-112.824515, 49.698555], [-112.823879, 49.698527], [-112.822719, 49.698465], [-112.820041, 49.698338], [-112.818601, 49.69826], [-112.817659, 49.698214], [-112.817451, 49.698208], [-112.816791, 49.698174], [-112.81589, 49.698112], [-112.814861, 49.698029], [-112.814224, 49.697963], [-112.813253, 49.697849], [-112.813147, 49.697836], [-112.811952, 49.697672], [-112.811842, 49.697656], [-112.811502, 49.697615], [-112.811227, 49.697581], [-112.810773, 49.697561], [-112.810352, 49.69755], [-112.810002, 49.697537], [-112.809403, 49.697532], [-112.806575, 49.697613], [-112.805437, 49.69765], [-112.804522, 49.697685], [-112.80393, 49.697707], [-112.80238, 49.69777], [-112.802025, 49.697788], [-112.801625, 49.697812], [-112.800653, 49.697888], [-112.799723, 49.697967], [-112.79867, 49.698052], [-112.798046, 49.698084], [-112.797631, 49.698102], [-112.797077, 49.698117], [-112.796376, 49.698135], [-112.79554, 49.698135], [-112.794414, 49.698135], [-112.793544, 49.698131], [-112.788404, 49.698111], [-112.787759, 49.698108], [-112.787623, 49.698109], [-112.786794, 49.698114], [-112.785574, 49.698121], [-112.784545, 49.69817], [-112.784282, 49.698206], [-112.783264, 49.698348], [-112.782977, 49.69837], [-112.782674, 49.69837], [-112.782377, 49.69836], [-112.781976, 49.698324], [-112.781573, 49.698283], [-112.780374, 49.698174], [-112.779856, 49.698084], [-112.77969, 49.698039], [-112.779534, 49.697963], [-112.779416, 49.697879], [-112.779336, 49.697779], [-112.779293, 49.697678], [-112.779266, 49.697588], [-112.779277, 49.697432], [-112.779309, 49.697054], [-112.779557, 49.695985], [-112.779657, 49.695544], [-112.779736, 49.695225], [-112.779761, 49.695101], [-112.779809, 49.694922], [-112.779952, 49.69441], [-112.780019, 49.694125], [-112.780058, 49.69387], [-112.780085, 49.693604], [-112.78011, 49.693292], [-112.780165, 49.692652], [-112.780169, 49.692372], [-112.780165, 49.692154], [-112.780164, 49.692098], [-112.780144, 49.691862], [-112.780143, 49.691843], [-112.780133, 49.69176], [-112.780037, 49.691006], [-112.779822, 49.689657], [-112.77979, 49.689308], [-112.779748, 49.688889], [-112.779749, 49.688478], [-112.779739, 49.688031], [-112.779748, 49.687622], [-112.779769, 49.687159], [-112.779816, 49.686494], [-112.779896, 49.685531], [-112.779868, 49.68512], [-112.779875, 49.684881], [-112.779863, 49.684535], [-112.77986, 49.684358], [-112.779847, 49.684121], [-112.779816, 49.683702], [-112.779801, 49.683613], [-112.779746, 49.683344], [-112.779688, 49.682957], [-112.779596, 49.68252], [-112.779542, 49.68228], [-112.7794, 49.681732], [-112.779248, 49.681225], [-112.779016, 49.680478], [-112.778857, 49.679737], [-112.778724, 49.678803], [-112.778685, 49.678481], [-112.77867, 49.678161], [-112.778679, 49.677477], [-112.778716, 49.676815], [-112.77879, 49.676373], [-112.778793, 49.676281], [-112.778809, 49.67613], [-112.778826, 49.675962], [-112.779009, 49.67502], [-112.779283, 49.674077], [-112.779324, 49.67372], [-112.779398, 49.673084], [-112.779441, 49.672708], [-112.779445, 49.672624], [-112.779457, 49.6724], [-112.779474, 49.670433], [-112.779525, 49.669583], [-112.779531, 49.668796], [-112.779522, 49.66867], [-112.779234, 49.66867], [-112.778749, 49.66867], [-112.773523, 49.668658], [-112.769369, 49.668649], [-112.763756, 49.668637], [-112.7565, 49.668622], [-112.75294, 49.668604], [-112.752507, 49.668609], [-112.751647, 49.668588], [-112.750485, 49.668477], [-112.748828, 49.668137], [-112.747424, 49.667643], [-112.746405, 49.667117], [-112.745658, 49.666544], [-112.743059, 49.663524], [-112.742076, 49.662492], [-112.741004, 49.661674], [-112.73773, 49.659519], [-112.735465, 49.657989], [-112.733655, 49.656859], [-112.718533, 49.646941], [-112.708401, 49.640314], [-112.699223, 49.634317], [-112.697367, 49.633097], [-112.696977, 49.632838], [-112.688059, 49.626979], [-112.68302, 49.623675], [-112.676625, 49.619483], [-112.667074, 49.613228], [-112.658988, 49.607908], [-112.655248, 49.605484], [-112.650972, 49.603234], [-112.646487, 49.600778], [-112.644902, 49.599632], [-112.643248, 49.598383], [-112.641103, 49.596798], [-112.639355, 49.595616], [-112.637, 49.594133], [-112.627891, 49.588425], [-112.602707, 49.572537], [-112.600552, 49.571077], [-112.598617, 49.5692], [-112.59449, 49.564228], [-112.593913, 49.5636], [-112.593075, 49.562994], [-112.592311, 49.562392], [-112.591327, 49.561818], [-112.589132, 49.56091], [-112.585717, 49.559813], [-112.580643, 49.558189], [-112.579135, 49.557557], [-112.577853, 49.55687], [-112.576584, 49.555934], [-112.573576, 49.55323], [-112.570447, 49.550424], [-112.569232, 49.549564], [-112.567477, 49.548436], [-112.556735, 49.541871], [-112.550446, 49.538028], [-112.546175, 49.535345], [-112.543195, 49.53355], [-112.541943, 49.532867], [-112.522018, 49.522571], [-112.51966, 49.521328], [-112.515058, 49.518953], [-112.512595, 49.517628], [-112.51096, 49.516524], [-112.50948, 49.515214], [-112.508358, 49.513958], [-112.507396, 49.512646], [-112.504667, 49.506398], [-112.503772, 49.504449], [-112.502829, 49.502755], [-112.502134, 49.501789], [-112.500323, 49.499793], [-112.498242, 49.497945], [-112.491937, 49.492826], [-112.472122, 49.477074], [-112.46972, 49.475443], [-112.458697, 49.468584], [-112.452076, 49.464789], [-112.441426, 49.458313], [-112.440081, 49.457555], [-112.439154, 49.45711], [-112.437692, 49.456507], [-112.428185, 49.452715], [-112.42567, 49.451509], [-112.421872, 49.448943], [-112.416852, 49.445256], [-112.415374, 49.444112], [-112.413757, 49.443067], [-112.41199, 49.442277], [-112.408866, 49.441094], [-112.403355, 49.439005], [-112.400426, 49.437907], [-112.395624, 49.436024], [-112.393366, 49.43506], [-112.391141, 49.43401], [-112.389667, 49.433278], [-112.387242, 49.431857], [-112.380495, 49.427283], [-112.377371, 49.425166], [-112.370769, 49.420228], [-112.369213, 49.419103], [-112.368029, 49.418322], [-112.366868, 49.417688], [-112.365853, 49.417109], [-112.364196, 49.416279], [-112.358645, 49.413606], [-112.345069, 49.40697], [-112.313601, 49.391666], [-112.293379, 49.381796], [-112.280866, 49.375648], [-112.275641, 49.37312], [-112.27415, 49.372357], [-112.272971, 49.371647], [-112.272087, 49.371077], [-112.271197, 49.370405], [-112.270258, 49.369532], [-112.269242, 49.36847], [-112.263635, 49.361606], [-112.261762, 49.359287], [-112.252776, 49.348158], [-112.236226, 49.327356], [-112.231602, 49.321856], [-112.231504, 49.32174], [-112.22954, 49.319363], [-112.227247, 49.316403], [-112.224225, 49.312727], [-112.22224, 49.310555], [-112.216986, 49.304836], [-112.215307, 49.3031], [-112.213887, 49.301877], [-112.213028, 49.301145], [-112.204369, 49.294474], [-112.201434, 49.291851], [-112.200807, 49.291228], [-112.200423, 49.290767], [-112.200161, 49.290419], [-112.199859, 49.289985], [-112.199566, 49.2895], [-112.199306, 49.289012], [-112.199053, 49.288493], [-112.198839, 49.287999], [-112.198721, 49.287648], [-112.198561, 49.28716], [-112.198436, 49.286692], [-112.198364, 49.286224], [-112.198303, 49.285775], [-112.198271, 49.285347], [-112.198256, 49.282987], [-112.198269, 49.279832], [-112.197949, 49.277457], [-112.196565, 49.273803], [-112.189342, 49.264663], [-112.187679, 49.262625], [-112.187029, 49.261975], [-112.185766, 49.260758], [-112.185003, 49.259994], [-112.184046, 49.259256], [-112.182999, 49.258515], [-112.181937, 49.257797], [-112.180185, 49.2566], [-112.179314, 49.25606], [-112.178353, 49.255415], [-112.177525, 49.254853], [-112.176769, 49.254313], [-112.176125, 49.253788], [-112.174746, 49.252496], [-112.173897, 49.251682], [-112.173107, 49.250905], [-112.153316, 49.231556], [-112.145266, 49.223554], [-112.137196, 49.215571], [-112.13617, 49.214714], [-112.134956, 49.213742], [-112.134168, 49.213187], [-112.132859, 49.212334], [-112.13166, 49.211607], [-112.12957, 49.210494], [-112.126976, 49.209298], [-112.123065, 49.207555], [-112.121541, 49.206848], [-112.120052, 49.206151], [-112.118948, 49.205619], [-112.117869, 49.205062], [-112.11706, 49.204623], [-112.115236, 49.203546], [-112.112919, 49.201989], [-112.111625, 49.201012], [-112.109029, 49.198836], [-112.106118, 49.195686], [-112.105716, 49.195156], [-112.10511, 49.194341], [-112.102212, 49.189769], [-112.099016, 49.184803], [-112.097293, 49.182034], [-112.09607, 49.179971], [-112.093881, 49.176527], [-112.093098, 49.175222], [-112.092754, 49.174577], [-112.092518, 49.174107], [-112.092368, 49.173658], [-112.092271, 49.173279], [-112.092175, 49.172816], [-112.092083, 49.172436], [-112.092105, 49.171924], [-112.092116, 49.171461], [-112.092153, 49.170923], [-112.092303, 49.169933], [-112.092797, 49.166924], [-112.093183, 49.164483], [-112.093425, 49.163015], [-112.094079, 49.159023], [-112.094508, 49.156383], [-112.094555, 49.155953], [-112.094556, 49.155221], [-112.094514, 49.154793], [-112.094503, 49.154492], [-112.094385, 49.153874], [-112.094213, 49.153187], [-112.094063, 49.152773], [-112.093902, 49.152351], [-112.093602, 49.151853], [-112.093237, 49.151257], [-112.092797, 49.15078], [-112.092443, 49.150366], [-112.09211, 49.150043], [-112.09144, 49.149473], [-112.090329, 49.148576], [-112.087872, 49.146674], [-112.085019, 49.144442], [-112.08445, 49.144014], [-112.083795, 49.143488], [-112.083195, 49.142934], [-112.082218, 49.142021], [-112.081255, 49.140863], [-112.080652, 49.140161], [-112.079815, 49.139052], [-112.079375, 49.138315], [-112.078935, 49.137592], [-112.078367, 49.136469], [-112.077562, 49.134475], [-112.07679, 49.132524], [-112.076328, 49.131429], [-112.07591, 49.130565], [-112.075325, 49.129377], [-112.074891, 49.128684], [-112.074472, 49.128059], [-112.073582, 49.12674], [-112.072631, 49.125499], [-112.071973, 49.124711], [-112.071054, 49.123645], [-112.069784, 49.122387], [-112.068512, 49.121237], [-112.066629, 49.119662], [-112.062677, 49.116351], [-112.055397, 49.110231], [-112.054528, 49.109557], [-112.053423, 49.108763], [-112.052461, 49.108147], [-112.045612, 49.103924], [-112.04278, 49.102161], [-112.042125, 49.101683], [-112.041514, 49.101163], [-112.040923, 49.100503], [-112.040258, 49.099716], [-112.039046, 49.09777], [-112.036761, 49.094883], [-112.034383, 49.091688], [-112.032973, 49.089733], [-112.032072, 49.088525], [-112.031257, 49.087397], [-112.027952, 49.082826], [-112.025918, 49.080115], [-112.023929, 49.077471], [-112.021412, 49.07398], [-112.01924, 49.070443], [-112.016505, 49.066092], [-112.014616, 49.062914], [-112.010898, 49.056849], [-112.010336, 49.056053], [-112.009981, 49.05549], [-112.009595, 49.055054], [-112.008383, 49.053913], [-112.004081, 49.049886], [-112.003484, 49.049323], [-112.002241, 49.048061], [-112.000186, 49.046131], [-111.998352, 49.044419], [-111.997649, 49.043715], [-111.997014, 49.042914], [-111.996531, 49.042236], [-111.996215, 49.041782], [-111.995927, 49.041307], [-111.995594, 49.040698], [-111.995321, 49.040118], [-111.994693, 49.038673], [-111.994001, 49.037108], [-111.992996, 49.034801], [-111.992369, 49.033409], [-111.99149, 49.031403], [-111.99082, 49.029866], [-111.990004, 49.02802], [-111.98936, 49.026568], [-111.988769, 49.025185], [-111.988218, 49.023936], [-111.987589, 49.022536], [-111.987371, 49.021885], [-111.987235, 49.021333], [-111.987097, 49.020858], [-111.986995, 49.020386], [-111.98692, 49.019658], [-111.986872, 49.018979], [-111.986866, 49.017199], [-111.986872, 49.015542], [-111.98686, 49.013841], [-111.986847, 49.01231], [-111.98685, 49.011137], [-111.986861, 49.010352], [-111.986797, 49.009758], [-111.986645, 49.009206], [-111.986377, 49.008696], [-111.986147, 49.008354], [-111.985836, 49.007998], [-111.985337, 49.007558], [-111.984989, 49.007266], [-111.984301, 49.006795], [-111.983474, 49.00638], [-111.982516, 49.005993], [-111.981765, 49.005715], [-111.980942, 49.005514], [-111.980129, 49.005334], [-111.979328, 49.005194], [-111.978062, 49.005092], [-111.976985, 49.005074], [-111.974918, 49.005173], [-111.973139, 49.005292], [-111.97154, 49.00538], [-111.969019, 49.005514], [-111.967562, 49.005617], [-111.966045, 49.005705], [-111.96469, 49.005725], [-111.963991, 49.005648], [-111.96346, 49.005567], [-111.96295, 49.005448], [-111.962485, 49.005296], [-111.962163, 49.005187], [-111.961761, 49.005004], [-111.961293, 49.004765], [-111.960951, 49.004554], [-111.960789, 49.004426], [-111.960561, 49.004236], [-111.960215, 49.003866], [-111.959973, 49.003571], [-111.959774, 49.003265], [-111.959681, 49.003043], [-111.959581, 49.002794], [-111.95951, 49.002452], [-111.959584, 49.002087], [-111.959768, 49.001731], [-111.96008, 49.00139], [-111.960323, 49.001097], [-111.960993, 49.000276], [-111.961147, 48.999913], [-111.961177, 48.999675], [-111.961154, 48.999405], [-111.96075, 48.998378], [-111.960537, 48.997835], [-111.960261, 48.997296], [-111.959961, 48.996969], [-111.959772, 48.996485], [-111.959789, 48.99582], [-111.959918, 48.995443], [-111.960048, 48.994907], [-111.960094, 48.994603], [-111.960084, 48.994414], [-111.960109, 48.993824], [-111.959994, 48.990856], [-111.95827, 48.98094], [-111.958253, 48.980705], [-111.958185, 48.980405], [-111.958073, 48.980015], [-111.957973, 48.979662], [-111.957788, 48.979177], [-111.957579, 48.978688], [-111.957393, 48.978342], [-111.957182, 48.977986], [-111.956929, 48.977617], [-111.956287, 48.976872], [-111.955429, 48.975932], [-111.940434, 48.960617], [-111.939756, 48.959862], [-111.939258, 48.959163], [-111.938864, 48.958475], [-111.938589, 48.957934], [-111.935242, 48.950139], [-111.933705, 48.946469], [-111.930948, 48.939956], [-111.927211, 48.931012], [-111.924522, 48.924688], [-111.916608, 48.906188], [-111.9112, 48.893335], [-111.910969, 48.892844], [-111.910694, 48.892325], [-111.910265, 48.891676], [-111.909921, 48.891247], [-111.909492, 48.890711], [-111.909046, 48.890237], [-111.908119, 48.889328], [-111.907385, 48.88863], [-111.906844, 48.888116], [-111.903694, 48.88508], [-111.903291, 48.88469], [-111.901737, 48.883161], [-111.878176, 48.860393], [-111.867242, 48.849753], [-111.866486, 48.849013], [-111.865877, 48.848301], [-111.86531, 48.847533], [-111.864675, 48.846613], [-111.86392, 48.845195], [-111.863594, 48.84437], [-111.863233, 48.843167], [-111.863139, 48.842738], [-111.863019, 48.842026], [-111.86295, 48.841071], [-111.862942, 48.830326], [-111.862942, 48.823285], [-111.86289, 48.769261], [-111.862864, 48.764515], [-111.862813, 48.763474], [-111.862718, 48.761743], [-111.861611, 48.743809], [-111.861439, 48.740289], [-111.861439, 48.739949], [-111.861594, 48.737176], [-111.862178, 48.726719], [-111.862229, 48.723792], [-111.862083, 48.656639], [-111.8621, 48.64979], [-111.861997, 48.598701], [-111.86198, 48.592185], [-111.86198, 48.57272], [-111.861912, 48.57163], [-111.861817, 48.570494], [-111.861697, 48.569205], [-111.860581, 48.557657], [-111.860077, 48.552231], [-111.859663, 48.54801], [-111.859594, 48.546805], [-111.859611, 48.545322], [-111.859792, 48.535383], [-111.8598, 48.533888], [-111.859886, 48.533121], [-111.860015, 48.532581], [-111.860246, 48.531939], [-111.860598, 48.531387], [-111.860942, 48.530899], [-111.861688, 48.530109], [-111.866109, 48.525755], [-111.875953, 48.516192], [-111.876929, 48.515247], [-111.877241, 48.514954], [-111.879228, 48.513021], [-111.879759, 48.512467], [-111.88006, 48.512124], [-111.880267, 48.511881], [-111.88042, 48.511679], [-111.880571, 48.511473], [-111.88094, 48.510956], [-111.881292, 48.510376], [-111.881653, 48.509733], [-111.881996, 48.50904], [-111.882305, 48.508346], [-111.882562, 48.507572], [-111.882777, 48.506828], [-111.882931, 48.506134], [-111.883026, 48.505588], [-111.883441, 48.502992], [-111.883604, 48.499975], [-111.883614, 48.499767], [-111.883635, 48.496433], [-111.883673, 48.495815], [-111.883734, 48.49503], [-111.883798, 48.494396], [-111.883866, 48.493802], [-111.883999, 48.493], [-111.884209, 48.492103], [-111.884377, 48.49147], [-111.884557, 48.490837], [-111.885112, 48.489088], [-111.885489, 48.48824], [-111.886605, 48.485897], [-111.88682, 48.485299], [-111.887034, 48.484679], [-111.887197, 48.484099], [-111.887389, 48.483433], [-111.88747, 48.482928], [-111.887522, 48.482349], [-111.887575, 48.481425], [-111.887554, 48.480643], [-111.887506, 48.480113], [-111.887418, 48.479516], [-111.887265, 48.478742], [-111.887056, 48.477974], [-111.886845, 48.47746], [-111.886472, 48.476607], [-111.885635, 48.474831], [-111.885441, 48.474274], [-111.885165, 48.473591], [-111.884897, 48.472862], [-111.884674, 48.47215], [-111.884502, 48.471564], [-111.884279, 48.470409], [-111.884082, 48.46926], [-111.883953, 48.468281], [-111.883906, 48.467423], [-111.883878, 48.46663], [-111.883976, 48.454446], [-111.884028, 48.447094], [-111.884036, 48.443164], [-111.884023, 48.441546], [-111.884017, 48.440681], [-111.884026, 48.43968], [-111.884018, 48.438945], [-111.88402, 48.438457], [-111.884058, 48.438059], [-111.884092, 48.43776], [-111.884134, 48.437455], [-111.884195, 48.437091], [-111.884275, 48.436739], [-111.884339, 48.436455], [-111.884422, 48.436153], [-111.884528, 48.435768], [-111.884674, 48.435354], [-111.884745, 48.435206], [-111.884871, 48.43486], [-111.885003, 48.434574], [-111.885207, 48.434157], [-111.885417, 48.433746], [-111.885596, 48.433441], [-111.88582, 48.433061], [-111.886029, 48.43273], [-111.886203, 48.432492], [-111.886412, 48.432197], [-111.886586, 48.431954], [-111.886816, 48.431663], [-111.887079, 48.431357], [-111.887401, 48.430981], [-111.887774, 48.430593], [-111.888127, 48.430257], [-111.888437, 48.429955], [-111.889099, 48.429374], [-111.889756, 48.428824], [-111.890912, 48.427857], [-111.892165, 48.426838], [-111.905659, 48.415636], [-111.90626, 48.415157], [-111.906861, 48.41457], [-111.907333, 48.414081], [-111.907814, 48.413528], [-111.908406, 48.412776], [-111.909015, 48.411824], [-111.909633, 48.410907], [-111.920752, 48.392582], [-111.927417, 48.381543], [-111.93346, 48.371538], [-111.933846, 48.37086], [-111.934235, 48.370068], [-111.934546, 48.369396], [-111.934939, 48.368399], [-111.935227, 48.367613], [-111.935586, 48.366493], [-111.935831, 48.365544], [-111.936026, 48.364601], [-111.936138, 48.363831], [-111.936258, 48.362885], [-111.936438, 48.360792], [-111.936415, 48.329088], [-111.936407, 48.310354], [-111.936413, 48.303031], [-111.936412, 48.300795], [-111.936402, 48.300483], [-111.936381, 48.271331], [-111.936384, 48.26711], [-111.936382, 48.259592], [-111.936296, 48.241832], [-111.936359, 48.224045], [-111.936352, 48.223792], [-111.936325, 48.223208], [-111.936251, 48.222646], [-111.936138, 48.222131], [-111.936009, 48.221594], [-111.935863, 48.221148], [-111.935674, 48.220724], [-111.935554, 48.220438], [-111.935323, 48.219975], [-111.934809, 48.219106], [-111.93372, 48.217503], [-111.933233, 48.216812], [-111.932738, 48.21609], [-111.932429, 48.215627], [-111.931294, 48.214006], [-111.927397, 48.208419], [-111.925603, 48.205843], [-111.925208, 48.205217], [-111.92491, 48.204712], [-111.924771, 48.204436], [-111.924661, 48.204188], [-111.924567, 48.203923], [-111.924475, 48.203592], [-111.924434, 48.203298], [-111.924418, 48.202753], [-111.924413, 48.20226], [-111.924452, 48.201981], [-111.924528, 48.20166], [-111.924607, 48.201399], [-111.924686, 48.201185], [-111.924808, 48.200887], [-111.92494, 48.200634], [-111.925143, 48.200322], [-111.925478, 48.199721], [-111.929307, 48.193399], [-111.931749, 48.18936], [-111.932143, 48.188696], [-111.932455, 48.188174], [-111.933068, 48.187161], [-111.933601, 48.186274], [-111.933896, 48.185797], [-111.934176, 48.185351], [-111.934674, 48.184441], [-111.934869, 48.184038], [-111.935015, 48.183702], [-111.935133, 48.183407], [-111.935235, 48.183131], [-111.935317, 48.182855], [-111.935435, 48.182454], [-111.935517, 48.18214], [-111.935563, 48.181903], [-111.935605, 48.181629], [-111.935654, 48.181347], [-111.935672, 48.181134], [-111.935695, 48.180837], [-111.93571, 48.180431], [-111.935711, 48.179913], [-111.935689, 48.179699], [-111.935666, 48.179392], [-111.935641, 48.179193], [-111.935605, 48.178954], [-111.935551, 48.17862], [-111.935494, 48.178341], [-111.935425, 48.178065], [-111.935362, 48.177851], [-111.935271, 48.177512], [-111.935083, 48.177015], [-111.93498, 48.176751], [-111.934859, 48.176484], [-111.934688, 48.176141], [-111.934489, 48.175789], [-111.934239, 48.175377], [-111.933859, 48.174812], [-111.933189, 48.173765], [-111.928027, 48.165762], [-111.927735, 48.165321], [-111.92603, 48.162726], [-111.925093, 48.161247], [-111.924008, 48.159611], [-111.922175, 48.156783], [-111.920615, 48.154387], [-111.919007, 48.151911], [-111.91822, 48.150663], [-111.916601, 48.148144], [-111.915551, 48.146568], [-111.914312, 48.144665], [-111.913624, 48.143606], [-111.912311, 48.141567], [-111.911974, 48.141065], [-111.911504, 48.140381], [-111.910989, 48.139656], [-111.91031, 48.138734], [-111.909273, 48.1374], [-111.907928, 48.135653], [-111.906666, 48.13405], [-111.905997, 48.133172], [-111.904722, 48.131516], [-111.901655, 48.127581], [-111.900048, 48.125516], [-111.898729, 48.123822], [-111.894029, 48.117798], [-111.893315, 48.116857], [-111.892001, 48.115177], [-111.889638, 48.112132], [-111.887413, 48.109275], [-111.884717, 48.105808], [-111.876044, 48.094626], [-111.87031, 48.087229], [-111.862959, 48.077764], [-111.861332, 48.075665], [-111.858755, 48.072362], [-111.857125, 48.070241], [-111.854834, 48.06729], [-111.850948, 48.062304], [-111.85011, 48.061229], [-111.849084, 48.059917], [-111.845348, 48.055071], [-111.836461, 48.043589], [-111.832454, 48.038401], [-111.828116, 48.032803], [-111.825147, 48.028974], [-111.816587, 48.017942], [-111.816087, 48.017289], [-111.815305, 48.016376], [-111.814473, 48.015423], [-111.813623, 48.014499], [-111.812937, 48.013816], [-111.811984, 48.012851], [-111.810868, 48.011863], [-111.809752, 48.010882], [-111.808825, 48.010101], [-111.807598, 48.009153], [-111.806388, 48.008229], [-111.805238, 48.007408], [-111.784158, 47.992286], [-111.782561, 47.991143], [-111.767146, 47.980084], [-111.766219, 47.979354], [-111.765283, 47.978504], [-111.764288, 47.977544], [-111.763404, 47.976585], [-111.762691, 47.975723], [-111.762193, 47.97501], [-111.761653, 47.974154], [-111.761121, 47.973252], [-111.753336, 47.959718], [-111.749036, 47.952205], [-111.736505, 47.930384], [-111.736106, 47.92965], [-111.735644, 47.928853], [-111.735343, 47.928305], [-111.733592, 47.925244], [-111.733306, 47.924769], [-111.732599, 47.923554], [-111.732395, 47.923205], [-111.731718, 47.922093], [-111.731538, 47.921738], [-111.73117, 47.921043], [-111.726112, 47.912262], [-111.71442, 47.89173], [-111.713776, 47.890608], [-111.713253, 47.889578], [-111.712927, 47.888864], [-111.71254, 47.888058], [-111.712146, 47.88689], [-111.711811, 47.885744], [-111.711519, 47.884564], [-111.711253, 47.883125], [-111.711124, 47.881922], [-111.71103, 47.880834], [-111.71103, 47.879792], [-111.711129, 47.869762], [-111.711004, 47.867783], [-111.710901, 47.866758], [-111.710781, 47.865716], [-111.710618, 47.864547], [-111.710438, 47.863447], [-111.710283, 47.862537], [-111.709991, 47.861213], [-111.709756, 47.860259], [-111.709335, 47.858847], [-111.708841, 47.857285], [-111.70727, 47.852822], [-111.706867, 47.851704], [-111.706498, 47.850875], [-111.706077, 47.850017], [-111.705434, 47.848819], [-111.705305, 47.848582], [-111.704816, 47.847747], [-111.704215, 47.846849], [-111.703623, 47.846054], [-111.702678, 47.844833], [-111.701983, 47.843986], [-111.700902, 47.842828], [-111.699923, 47.841889], [-111.698979, 47.841013], [-111.698052, 47.84023], [-111.696893, 47.839291], [-111.668363, 47.817267], [-111.667479, 47.816472], [-111.667042, 47.815942], [-111.666647, 47.815434], [-111.666226, 47.81476], [-111.665943, 47.814143], [-111.66578, 47.813619], [-111.665625, 47.812887], [-111.6656, 47.812391], [-111.665591, 47.811797], [-111.666429, 47.79584], [-111.666535, 47.793822], [-111.666492, 47.791308], [-111.666439, 47.750802], [-111.666442, 47.741317], [-111.666445, 47.740989], [-111.666406, 47.723306], [-111.666381, 47.72244], [-111.666295, 47.721684], [-111.666158, 47.720881], [-111.665986, 47.72024], [-111.665746, 47.719547], [-111.665419, 47.71871], [-111.665042, 47.717925], [-111.664647, 47.717243], [-111.664132, 47.716493], [-111.663789, 47.716008], [-111.663359, 47.715528], [-111.662432, 47.714581], [-111.658081, 47.710071], [-111.647285, 47.699031], [-111.646085, 47.697836], [-111.632275, 47.683698], [-111.631949, 47.683351], [-111.606663, 47.657441], [-111.60117, 47.651798], [-111.590415, 47.64073], [-111.589918, 47.640187], [-111.589463, 47.639655], [-111.589068, 47.639157], [-111.588707, 47.638689], [-111.588287, 47.638139], [-111.587849, 47.637538], [-111.587549, 47.637104], [-111.587231, 47.636624], [-111.58627, 47.63501], [-111.585369, 47.633136], [-111.570511, 47.6019], [-111.569945, 47.600818], [-111.56955, 47.600169], [-111.569224, 47.599643], [-111.568846, 47.599047], [-111.568546, 47.598607], [-111.568168, 47.598051], [-111.567747, 47.597472], [-111.567335, 47.596928], [-111.566915, 47.59643], [-111.566537, 47.595991], [-111.552899, 47.581183], [-111.552633, 47.580911], [-111.537629, 47.564691], [-111.536514, 47.563515], [-111.535904, 47.562901], [-111.535175, 47.56227], [-111.534437, 47.561691], [-111.533656, 47.561129], [-111.532711, 47.560504], [-111.531647, 47.559884], [-111.53048, 47.559311], [-111.529184, 47.558737], [-111.528008, 47.558285], [-111.526806, 47.557897], [-111.525424, 47.557503], [-111.524008, 47.557162], [-111.522824, 47.556953], [-111.521734, 47.556779], [-111.509679, 47.554952], [-111.484251, 47.551039], [-111.477299, 47.54995], [-111.455614, 47.546631], [-111.452477, 47.546143], [-111.452005, 47.546074], [-111.448496, 47.545531], [-111.445301, 47.545037], [-111.443894, 47.544799], [-111.442357, 47.544492], [-111.440907, 47.544162], [-111.439173, 47.543716], [-111.437894, 47.543368], [-111.436512, 47.542957], [-111.435045, 47.54247], [-111.385349, 47.526175], [-111.384241, 47.525793], [-111.383478, 47.52541], [-111.382928, 47.525097], [-111.382499, 47.524784], [-111.382036, 47.524384], [-111.381709, 47.524025], [-111.381452, 47.523741], [-111.380053, 47.521909], [-111.379298, 47.520959], [-111.379152, 47.520779], [-111.378714, 47.520286], [-111.378268, 47.519857], [-111.377555, 47.519394], [-111.376774, 47.518994], [-111.376096, 47.518733], [-111.375409, 47.51853], [-111.374294, 47.518234], [-111.351059, 47.512362], [-111.350081, 47.512055], [-111.348914, 47.511632], [-111.348184, 47.511255], [-111.347446, 47.510878], [-111.346914, 47.510553], [-111.346356, 47.510147], [-111.345832, 47.509759], [-111.345309, 47.509295], [-111.344914, 47.508884], [-111.344605, 47.508542], [-111.344193, 47.50802], [-111.34391, 47.507591], [-111.343618, 47.507133], [-111.343352, 47.506535], [-111.343137, 47.505921], [-111.343, 47.505254], [-111.342914, 47.504779], [-111.342871, 47.504205], [-111.342884, 47.503714], [-111.343017, 47.501337], [-111.343037, 47.500922], [-111.343074, 47.500247], [-111.343153, 47.498866], [-111.343699, 47.489338], [-111.343837, 47.488347], [-111.344051, 47.487517], [-111.344326, 47.486746], [-111.344695, 47.485795], [-111.345184, 47.484855], [-111.345493, 47.484356], [-111.346068, 47.483527], [-111.34715, 47.48221], [-111.347948, 47.481392], [-111.348765, 47.480715], [-111.349751, 47.479978], [-111.350866, 47.47913], [-111.356582, 47.475347], [-111.365214, 47.469592], [-111.367419, 47.46813], [-111.367934, 47.467829], [-111.368578, 47.467492], [-111.36923, 47.467144], [-111.369994, 47.466807], [-111.370973, 47.466407], [-111.371926, 47.466042], [-111.372818, 47.465746], [-111.373522, 47.465525], [-111.374509, 47.465258], [-111.429286, 47.452445], [-111.429621, 47.452364], [-111.473508, 47.442064], [-111.50183, 47.435384], [-111.502749, 47.435175], [-111.503701, 47.434961], [-111.504362, 47.434792], [-111.505221, 47.434543], [-111.506045, 47.434299], [-111.506663, 47.434095], [-111.507143, 47.433927], [-111.507907, 47.433648], [-111.508654, 47.433312], [-111.509255, 47.433045], [-111.509933, 47.432725], [-111.510534, 47.432412], [-111.51122, 47.432029], [-111.51183, 47.431674], [-111.512954, 47.430931], [-111.513546, 47.43049], [-111.524011, 47.422011], [-111.569141, 47.385345], [-111.6142, 47.348685], [-111.614466, 47.34847], [-111.634341, 47.332266], [-111.69101, 47.285965], [-111.692683, 47.284596], [-111.694151, 47.283461], [-111.694838, 47.282943], [-111.696432, 47.281863], [-111.698123, 47.280815], [-111.699024, 47.280297], [-111.699436, 47.280064], [-111.703522, 47.277671], [-111.704183, 47.27728], [-111.704689, 47.276966], [-111.70511, 47.276686], [-111.705436, 47.276442], [-111.705788, 47.276139], [-111.706182, 47.275766], [-111.706612, 47.275289], [-111.706989, 47.274806], [-111.707367, 47.274264], [-111.707573, 47.273856], [-111.707813, 47.273379], [-111.707933, 47.273047], [-111.708045, 47.272651], [-111.708122, 47.272307], [-111.708199, 47.271911], [-111.708234, 47.271544], [-111.708234, 47.271212], [-111.708157, 47.264538], [-111.708114, 47.262342], [-111.708122, 47.261794], [-111.708157, 47.261369], [-111.708234, 47.260851], [-111.708268, 47.260653], [-111.708337, 47.260257], [-111.708508, 47.259511], [-111.708637, 47.258923], [-111.708783, 47.258241], [-111.70898, 47.257536], [-111.709152, 47.256942], [-111.709298, 47.256383], [-111.710079, 47.25333], [-111.710328, 47.252363], [-111.710474, 47.251833], [-111.710637, 47.251332], [-111.710834, 47.250889], [-111.71104, 47.250545], [-111.711367, 47.250085], [-111.711658, 47.249753], [-111.711942, 47.249444], [-111.712345, 47.249089], [-111.712766, 47.248751], [-111.71316, 47.248494], [-111.713624, 47.248221], [-111.714147, 47.247958], [-111.714834, 47.247655], [-111.729726, 47.241112], [-111.73291, 47.239807], [-111.75169, 47.232534], [-111.754093, 47.231624], [-111.75635, 47.230861], [-111.75676, 47.230739], [-111.765002, 47.228413], [-111.765835, 47.228157], [-111.766633, 47.227877], [-111.767345, 47.227597], [-111.768092, 47.227306], [-111.768719, 47.227026], [-111.769474, 47.226676], [-111.770058, 47.226361], [-111.770727, 47.225988], [-111.771448, 47.225534], [-111.772118, 47.225096], [-111.772693, 47.224688], [-111.773405, 47.22417], [-111.773714, 47.223936], [-111.774169, 47.223575], [-111.774641, 47.223103], [-111.775104, 47.222619], [-111.775499, 47.222211], [-111.775885, 47.221774], [-111.776306, 47.221255], [-111.776658, 47.220777], [-111.77695, 47.220369], [-111.777422, 47.219611], [-111.777722, 47.219057], [-111.778014, 47.218422], [-111.778289, 47.217746], [-111.778503, 47.217104], [-111.778675, 47.216428], [-111.778881, 47.215694], [-111.779061, 47.214988], [-111.780057, 47.210796], [-111.780203, 47.210213], [-111.780323, 47.209758], [-111.780435, 47.209397], [-111.780641, 47.208808], [-111.780907, 47.208201], [-111.78113, 47.207729], [-111.781301, 47.207438], [-111.781499, 47.207129], [-111.78228, 47.205916], [-111.783293, 47.204645], [-111.783936, 47.203974], [-111.784735, 47.203146], [-111.785593, 47.202225], [-111.786314, 47.201466], [-111.786872, 47.200883], [-111.787902, 47.199845], [-111.788254, 47.199507], [-111.788674, 47.19914], [-111.789086, 47.19879], [-111.789584, 47.198387], [-111.790168, 47.197921], [-111.790605, 47.197618], [-111.791249, 47.197227], [-111.791824, 47.196877], [-111.792545, 47.196474], [-111.793198, 47.196136], [-111.79397, 47.195769], [-111.794805, 47.195425], [-111.801248, 47.192835], [-111.801575, 47.192701], [-111.802656, 47.192287], [-111.803514, 47.191937], [-111.804167, 47.191628], [-111.804665, 47.191394], [-111.8053, 47.191045], [-111.805723, 47.190797], [-111.805997, 47.190634], [-111.806478, 47.190323], [-111.806732, 47.190144], [-111.80699, 47.189955], [-111.807242, 47.189755], [-111.807499, 47.189537], [-111.807978, 47.189108], [-111.808309, 47.188784], [-111.808738, 47.188316], [-111.809145, 47.187831], [-111.809375, 47.187515], [-111.809578, 47.187207], [-111.809725, 47.186968], [-111.809941, 47.18658], [-111.810196, 47.186052], [-111.810485, 47.185392], [-111.810582, 47.185034], [-111.810757, 47.184458], [-111.81087, 47.184068], [-111.811288, 47.182591], [-111.811466, 47.182023], [-111.811592, 47.181562], [-111.811725, 47.181068], [-111.811881, 47.18053], [-111.812016, 47.179972], [-111.812133, 47.179486], [-111.812304, 47.178698], [-111.812475, 47.177933], [-111.812795, 47.176671], [-111.813022, 47.175805], [-111.813143, 47.175313], [-111.813289, 47.174743], [-111.813451, 47.174086], [-111.813587, 47.173603], [-111.813709, 47.173199], [-111.813868, 47.172742], [-111.814052, 47.172177], [-111.81431, 47.171374], [-111.814446, 47.170953], [-111.814555, 47.170592], [-111.814621, 47.170315], [-111.814724, 47.169845], [-111.814867, 47.169286], [-111.814924, 47.169023], [-111.815005, 47.168585], [-111.81512, 47.168075], [-111.815267, 47.167513], [-111.81537, 47.167124], [-111.815534, 47.166596], [-111.815743, 47.165879], [-111.815883, 47.165407], [-111.816017, 47.16497], [-111.816151, 47.164499], [-111.816299, 47.164102], [-111.816455, 47.163605], [-111.816606, 47.163233], [-111.81675, 47.162929], [-111.8169, 47.16265], [-111.817163, 47.162234], [-111.817461, 47.161792], [-111.817707, 47.161428], [-111.817918, 47.161172], [-111.818109, 47.160939], [-111.81826, 47.160773], [-111.818436, 47.160598], [-111.818713, 47.160322], [-111.819137, 47.159916], [-111.819338, 47.159742], [-111.819615, 47.159506], [-111.819811, 47.159353], [-111.820101, 47.159137], [-111.820886, 47.158653], [-111.821347, 47.158391], [-111.821709, 47.158179], [-111.82215, 47.157949], [-111.822792, 47.157656], [-111.823291, 47.157407], [-111.823951, 47.157074], [-111.824604, 47.156773], [-111.824926, 47.156618], [-111.826016, 47.156075], [-111.826777, 47.155704], [-111.827118, 47.155527], [-111.827632, 47.155278], [-111.828833, 47.154684], [-111.830331, 47.153967], [-111.83092, 47.153679], [-111.831417, 47.153485], [-111.831694, 47.153394], [-111.831937, 47.15332], [-111.832157, 47.153261], [-111.832517, 47.15318], [-111.832892, 47.153117], [-111.833253, 47.153076], [-111.833573, 47.153049], [-111.833993, 47.153025], [-111.834559, 47.153049], [-111.835126, 47.153113], [-111.835701, 47.1532], [-111.83595, 47.153259], [-111.841856, 47.154858], [-111.842362, 47.155002], [-111.842712, 47.155094], [-111.843019, 47.155158], [-111.843672, 47.155257], [-111.8438, 47.155267], [-111.844087, 47.155287], [-111.844399, 47.155286], [-111.844699, 47.15528], [-111.845058, 47.15526], [-111.845509, 47.155193], [-111.845869, 47.155122], [-111.846291, 47.155019], [-111.846644, 47.154905], [-111.846928, 47.154785], [-111.847126, 47.154685], [-111.847479, 47.154504], [-111.847736, 47.154346], [-111.847908, 47.15421], [-111.848115, 47.154036], [-111.848251, 47.153894], [-111.848342, 47.153792], [-111.84847, 47.153647], [-111.848543, 47.153546], [-111.848649, 47.153419], [-111.848764, 47.153232], [-111.848861, 47.153032], [-111.848947, 47.152823], [-111.848973, 47.152708], [-111.849021, 47.152541], [-111.849042, 47.152364], [-111.849077, 47.152131], [-111.849103, 47.151825], [-111.849333, 47.149062], [-111.849393, 47.148406], [-111.8494, 47.148192], [-111.849408, 47.147987], [-111.8494, 47.147824], [-111.84939, 47.147698], [-111.849374, 47.147556], [-111.849347, 47.147435], [-111.849331, 47.147351], [-111.849245, 47.146966], [-111.849142, 47.146674], [-111.849059, 47.146434], [-111.848943, 47.146212], [-111.84886, 47.146053], [-111.848767, 47.145896], [-111.848673, 47.145762], [-111.848566, 47.14562], [-111.847025, 47.143717], [-111.846887, 47.143525], [-111.846766, 47.143353], [-111.846661, 47.14319], [-111.846521, 47.142953], [-111.846415, 47.142749], [-111.846343, 47.142591], [-111.846269, 47.14237], [-111.846241, 47.142263], [-111.846223, 47.14217], [-111.846209, 47.142062], [-111.84619, 47.141876], [-111.846192, 47.141745], [-111.846217, 47.141528], [-111.846242, 47.141353], [-111.84627, 47.141184], [-111.846324, 47.141016], [-111.846398, 47.140797], [-111.846525, 47.140531], [-111.846604, 47.14041], [-111.846676, 47.14029], [-111.846846, 47.140059], [-111.847142, 47.139751], [-111.847281, 47.13963], [-111.84746, 47.139479], [-111.847678, 47.139323], [-111.84791, 47.139171], [-111.848186, 47.139013], [-111.848438, 47.138891], [-111.848706, 47.138772], [-111.848984, 47.138674], [-111.849267, 47.138581], [-111.849592, 47.138477], [-111.849947, 47.138393], [-111.850257, 47.138331], [-111.850556, 47.138292], [-111.850908, 47.138241], [-111.851241, 47.13822], [-111.85164, 47.138209], [-111.851974, 47.13821], [-111.852237, 47.138223], [-111.852532, 47.138247], [-111.852795, 47.138276], [-111.853123, 47.13833], [-111.853394, 47.138374], [-111.853787, 47.138457], [-111.854766, 47.138667], [-111.855826, 47.138884], [-111.856179, 47.13897], [-111.856565, 47.139029], [-111.856792, 47.139068], [-111.857173, 47.13911], [-111.857431, 47.139137], [-111.857676, 47.139157], [-111.858048, 47.139176], [-111.858338, 47.139177], [-111.858762, 47.139167], [-111.859155, 47.139148], [-111.85955, 47.139117], [-111.859805, 47.139089], [-111.860245, 47.139022], [-111.860491, 47.13898], [-111.860683, 47.138944], [-111.860973, 47.138885], [-111.861214, 47.138829], [-111.861479, 47.138758], [-111.861743, 47.138677], [-111.862069, 47.138562], [-111.862344, 47.138449], [-111.862687, 47.138297], [-111.862931, 47.138175], [-111.863114, 47.138087], [-111.863314, 47.137975], [-111.863599, 47.137807], [-111.863972, 47.13756], [-111.864261, 47.137341], [-111.864442, 47.137202], [-111.864674, 47.137005], [-111.864969, 47.136736], [-111.865258, 47.13642], [-111.867853, 47.13324], [-111.868102, 47.13296], [-111.868445, 47.132657], [-111.868909, 47.132347], [-111.869372, 47.132096], [-111.869776, 47.131938], [-111.870291, 47.131792], [-111.870754, 47.131687], [-111.871286, 47.131623], [-111.87181, 47.131605], [-111.872359, 47.131617], [-111.873389, 47.131705], [-111.875681, 47.131897], [-111.885054, 47.132785], [-111.886566, 47.132886], [-111.888607, 47.1331], [-111.888985, 47.133135], [-111.889766, 47.133217], [-111.890444, 47.133281], [-111.891225, 47.133322], [-111.891886, 47.133334], [-111.892598, 47.133334], [-111.893242, 47.133316], [-111.8938, 47.133305], [-111.894512, 47.133246], [-111.89513, 47.133194], [-111.89563, 47.133132], [-111.896274, 47.133044], [-111.89678, 47.132974], [-111.898531, 47.132636], [-111.899656, 47.132344], [-111.900711, 47.132022], [-111.901398, 47.131783], [-111.902445, 47.131403], [-111.904162, 47.130755], [-111.909034, 47.128927], [-111.913729, 47.127181], [-111.917251, 47.125878], [-111.92071, 47.1247], [-111.921698, 47.124251], [-111.922387, 47.123838], [-111.922806, 47.123526], [-111.924809, 47.121884], [-111.925527, 47.121467], [-111.926631, 47.121045], [-111.927545, 47.120838], [-111.928844, 47.120679], [-111.939954, 47.119561], [-111.940893, 47.119375], [-111.941491, 47.119193], [-111.94258, 47.118694], [-111.94328, 47.118205], [-111.943682, 47.117842], [-111.944167, 47.117216], [-111.94437, 47.116782], [-111.94452, 47.116283], [-111.944594, 47.115646], [-111.944471, 47.113184], [-111.944519, 47.112085], [-111.944699, 47.111164], [-111.9451, 47.109855], [-111.94519, 47.109613], [-111.946818, 47.104798], [-111.947185, 47.103915], [-111.94757, 47.103215], [-111.948705, 47.101708], [-111.95025, 47.099859], [-111.951568, 47.098237], [-111.952318, 47.097326], [-111.952866, 47.096646], [-111.954165, 47.094457], [-111.954536, 47.093996], [-111.955001, 47.093573], [-111.95538, 47.093283], [-111.95597, 47.092921], [-111.958022, 47.092174], [-111.958929, 47.091665], [-111.959563, 47.091145], [-111.959918, 47.090782], [-111.960199, 47.090406], [-111.960514, 47.089782], [-111.960679, 47.089121], [-111.961076, 47.083974], [-111.961218, 47.083113], [-111.961515, 47.082259], [-111.962027, 47.081188], [-111.962536, 47.080367], [-111.963148, 47.079581], [-111.964601, 47.078023], [-111.966718, 47.075826], [-111.967024, 47.075517], [-111.969094, 47.073375], [-111.970437, 47.07194], [-111.972154, 47.070032], [-111.973432, 47.068542], [-111.974103, 47.067809], [-111.974604, 47.067107], [-111.976616, 47.064731], [-111.98105, 47.059331], [-111.981811, 47.058552], [-111.982905, 47.057585], [-111.983864, 47.057007], [-111.985011, 47.056354], [-111.986314, 47.055712], [-111.986853, 47.055504], [-111.987827, 47.055224], [-111.990272, 47.054577], [-111.991627, 47.053954], [-111.992491, 47.053494], [-111.993301, 47.052977], [-111.994268, 47.05221], [-111.994901, 47.051592], [-112.00108, 47.045261], [-112.002131, 47.044014], [-112.002341, 47.043639], [-112.002459, 47.043291], [-112.00254, 47.04249], [-112.002551, 47.041633], [-112.002802, 47.040468], [-112.003031, 47.039996], [-112.003311, 47.039629], [-112.00408, 47.038901], [-112.004669, 47.038537], [-112.005381, 47.038191], [-112.006132, 47.03787], [-112.007591, 47.037508], [-112.008057, 47.037437], [-112.009475, 47.037313], [-112.012696, 47.037258], [-112.01489, 47.037245], [-112.016275, 47.037163], [-112.0192, 47.037033], [-112.020595, 47.036893], [-112.021841, 47.036661], [-112.023428, 47.036288], [-112.024543, 47.035923], [-112.025634, 47.03549], [-112.026621, 47.035004], [-112.027875, 47.034259], [-112.04368, 47.024236], [-112.044909, 47.023441], [-112.04544, 47.023036], [-112.04608, 47.022418], [-112.046528, 47.021863], [-112.046751, 47.021531], [-112.046895, 47.021189], [-112.048457, 47.017223], [-112.049379, 47.014861], [-112.04961, 47.014335], [-112.049878, 47.013819], [-112.050194, 47.013314], [-112.050556, 47.012813], [-112.050955, 47.01233], [-112.051351, 47.011873], [-112.051809, 47.011423], [-112.052303, 47.010991], [-112.05283, 47.010576], [-112.053387, 47.010182], [-112.053972, 47.009806], [-112.056998, 47.008006], [-112.058515, 47.007109], [-112.060333, 47.006031], [-112.061846, 47.00513], [-112.062472, 47.004869], [-112.062889, 47.004741], [-112.063358, 47.004645], [-112.063683, 47.004606], [-112.064074, 47.004561], [-112.064445, 47.004519], [-112.06488, 47.004576], [-112.06527, 47.004629], [-112.065565, 47.004697], [-112.065974, 47.004792], [-112.066808, 47.004991], [-112.06824, 47.005361], [-112.0686, 47.005467], [-112.069096, 47.005596], [-112.069473, 47.005688], [-112.069732, 47.005745], [-112.070266, 47.005855], [-112.070699, 47.005951], [-112.071253, 47.006048], [-112.071642, 47.006114], [-112.071928, 47.006158], [-112.072302, 47.006209], [-112.072735, 47.006263], [-112.072984, 47.006287], [-112.073367, 47.006318], [-112.073792, 47.006352], [-112.074219, 47.006372], [-112.074542, 47.006382], [-112.074829, 47.00639], [-112.075178, 47.006392], [-112.075603, 47.006393], [-112.076788, 47.006332], [-112.077271, 47.006281], [-112.077628, 47.006225], [-112.078026, 47.006153], [-112.078436, 47.006074], [-112.078755, 47.005996], [-112.079201, 47.005866], [-112.079533, 47.005747], [-112.079812, 47.00563], [-112.080082, 47.005495], [-112.080379, 47.005332], [-112.080635, 47.005164], [-112.080953, 47.004927], [-112.081049, 47.004826], [-112.081198, 47.004689], [-112.081316, 47.004562], [-112.081449, 47.004379], [-112.081568, 47.004191], [-112.081674, 47.003987], [-112.08174, 47.003858], [-112.081806, 47.003692], [-112.081884, 47.003438], [-112.08191, 47.003275], [-112.081934, 47.003066], [-112.08193, 47.002831], [-112.081896, 47.002597], [-112.081853, 47.002371], [-112.081798, 47.002194], [-112.081607, 47.00176], [-112.081184, 47.001198], [-112.079559, 46.99968], [-112.078016, 46.99838], [-112.07758, 46.997912], [-112.077288, 46.997532], [-112.076986, 46.99693], [-112.076889, 46.996514], [-112.076886, 46.996116], [-112.076984, 46.995478], [-112.07795, 46.992584], [-112.078047, 46.991994], [-112.078024, 46.991594], [-112.077935, 46.9912], [-112.077672, 46.990627], [-112.076129, 46.988425], [-112.075762, 46.987771], [-112.075646, 46.98742], [-112.075619, 46.987055], [-112.075663, 46.986679], [-112.075796, 46.986299], [-112.076008, 46.985921], [-112.076502, 46.98539], [-112.077181, 46.984932], [-112.081242, 46.982494], [-112.081853, 46.981972], [-112.082104, 46.981646], [-112.082346, 46.981245], [-112.082526, 46.98074], [-112.082567, 46.980266], [-112.082681, 46.977427], [-112.082826, 46.974499], [-112.083032, 46.973709], [-112.083438, 46.973098], [-112.083941, 46.972667], [-112.084536, 46.97225], [-112.093815, 46.965771], [-112.094034, 46.965596], [-112.094318, 46.965306], [-112.094501, 46.965085], [-112.094642, 46.964864], [-112.094785, 46.964575], [-112.094868, 46.964338], [-112.094926, 46.964081], [-112.094952, 46.963813], [-112.094963, 46.963562], [-112.094964, 46.963005], [-112.094945, 46.962147], [-112.095064, 46.961322], [-112.095315, 46.960775], [-112.095663, 46.960328], [-112.098599, 46.957746], [-112.098975, 46.957432], [-112.099726, 46.956946], [-112.100314, 46.956644], [-112.101038, 46.956326], [-112.103946, 46.955297], [-112.107802, 46.953955], [-112.108475, 46.953671], [-112.108901, 46.953445], [-112.109465, 46.953038], [-112.109979, 46.952469], [-112.110197, 46.952042], [-112.111502, 46.949682], [-112.112324, 46.948952], [-112.113184, 46.948533], [-112.114208, 46.948308], [-112.116111, 46.948021], [-112.117289, 46.947669], [-112.118334, 46.94705], [-112.119549, 46.946068], [-112.122402, 46.943642], [-112.123133, 46.943013], [-112.123553, 46.942583], [-112.12389, 46.942171], [-112.124619, 46.941266], [-112.125571, 46.939982], [-112.126015, 46.939377], [-112.1265, 46.938749], [-112.126751, 46.938397], [-112.126995, 46.938014], [-112.127231, 46.93766], [-112.127472, 46.93708], [-112.127553, 46.936521], [-112.127485, 46.935878], [-112.126037, 46.931011], [-112.125843, 46.930596], [-112.125614, 46.930288], [-112.125356, 46.930017], [-112.125, 46.92973], [-112.122981, 46.928549], [-112.122668, 46.928293], [-112.122315, 46.927871], [-112.122099, 46.927296], [-112.122093, 46.926792], [-112.122341, 46.926128], [-112.12333, 46.924835], [-112.123628, 46.924404], [-112.123835, 46.923877], [-112.123883, 46.923325], [-112.123775, 46.9228], [-112.123494, 46.922251], [-112.123242, 46.921939], [-112.123161, 46.921857], [-112.12174, 46.920823], [-112.121416, 46.920602], [-112.120977, 46.920179], [-112.120697, 46.919775], [-112.120503, 46.919327], [-112.120322, 46.918471], [-112.119667, 46.915666], [-112.11939, 46.915074], [-112.119062, 46.914644], [-112.118506, 46.91421], [-112.116708, 46.913328], [-112.116193, 46.912968], [-112.115472, 46.912187], [-112.115356, 46.911933], [-112.115279, 46.911728], [-112.115241, 46.911454], [-112.11523, 46.911175], [-112.115266, 46.910915], [-112.115368, 46.910602], [-112.115446, 46.910438], [-112.115662, 46.910084], [-112.11604, 46.909673], [-112.119395, 46.907257], [-112.119896, 46.906695], [-112.120633, 46.90538], [-112.120979, 46.904986], [-112.122506, 46.903673], [-112.12294, 46.903177], [-112.123172, 46.902727], [-112.123344, 46.902186], [-112.12337, 46.901665], [-112.12326, 46.90114], [-112.123004, 46.900542], [-112.122296, 46.899463], [-112.118791, 46.893932], [-112.118077, 46.892887], [-112.117488, 46.892253], [-112.11672, 46.891638], [-112.11608, 46.891253], [-112.114112, 46.89021], [-112.110716, 46.888379], [-112.110338, 46.888159], [-112.106096, 46.885885], [-112.101398, 46.88336], [-112.094609, 46.879651], [-112.0931, 46.878959], [-112.091311, 46.878288], [-112.089958, 46.877867], [-112.088521, 46.877511], [-112.069016, 46.872724], [-112.049279, 46.867857], [-112.047103, 46.867189], [-112.044993, 46.866382], [-112.043719, 46.865827], [-112.042541, 46.865241], [-112.040586, 46.864168], [-112.039263, 46.863298], [-112.037988, 46.862365], [-112.036738, 46.86133], [-112.014076, 46.842104], [-112.012788, 46.840941], [-112.011749, 46.839918], [-112.010445, 46.83844], [-112.009025, 46.83667], [-112.007922, 46.83499], [-112.007123, 46.833605], [-112.006361, 46.832073], [-112.005882, 46.830963], [-112.003109, 46.824179], [-112.002795, 46.823308], [-112.001559, 46.820272], [-112.001405, 46.819943], [-112.001005, 46.818846], [-112.000667, 46.817632], [-112.000578, 46.816809], [-112.000493, 46.815794], [-112.000516, 46.814928], [-112.000693, 46.813761], [-112.001162, 46.812127], [-112.001628, 46.811112], [-112.002462, 46.809713], [-112.003317, 46.808598], [-112.004049, 46.80782], [-112.005118, 46.806834], [-112.006592, 46.805739], [-112.028016, 46.792156], [-112.029741, 46.790912], [-112.030745, 46.79008], [-112.031484, 46.78938], [-112.032257, 46.788498], [-112.033266, 46.787176], [-112.033873, 46.786179], [-112.034356, 46.785153], [-112.03474, 46.784222], [-112.035041, 46.783106], [-112.035281, 46.78179], [-112.035332, 46.780429], [-112.035162, 46.778932], [-112.034994, 46.7781], [-112.034623, 46.77676], [-112.031439, 46.767593], [-112.030872, 46.766116], [-112.03058, 46.765566], [-112.0298, 46.76452], [-112.029051, 46.763776], [-112.027625, 46.762715], [-112.021142, 46.759474], [-112.019784, 46.758674], [-112.018427, 46.757701], [-112.017026, 46.756401], [-112.01646, 46.75581], [-112.015787, 46.754949], [-112.015034, 46.753726], [-112.014675, 46.752957], [-112.014369, 46.752178], [-112.014113, 46.751252], [-112.013978, 46.7503], [-112.013965, 46.748917], [-112.01407, 46.747974], [-112.014425, 46.74657], [-112.017111, 46.737855], [-112.017375, 46.736784], [-112.017607, 46.735355], [-112.017673, 46.734409], [-112.017685, 46.733581], [-112.017588, 46.732104], [-112.017413, 46.730961], [-112.016851, 46.728893], [-112.016052, 46.726997], [-112.015229, 46.725474], [-112.014031, 46.723297], [-112.013406, 46.721963], [-112.012932, 46.720654], [-112.012536, 46.719097], [-112.012339, 46.717599], [-112.012283, 46.716345], [-112.012185, 46.707222], [-112.012075, 46.70024], [-112.011602, 46.660701], [-112.011601, 46.660313], [-112.011436, 46.648193], [-112.011441, 46.648028], [-112.011427, 46.646569], [-112.011246, 46.631754], [-112.011146, 46.621062], [-112.011132, 46.619553], [-112.01109, 46.616805], [-112.011059, 46.614798], [-112.011048, 46.61406], [-112.011037, 46.613709], [-112.010993, 46.613319], [-112.010941, 46.613077], [-112.010877, 46.612674], [-112.010838, 46.612474], [-112.010746, 46.61207], [-112.01064, 46.611666], [-112.010587, 46.611464], [-112.010508, 46.611263], [-112.010314, 46.610728], [-112.010256, 46.610545], [-112.010198, 46.610369], [-112.009915, 46.609824], [-112.009739, 46.609444], [-112.009564, 46.609128], [-112.009295, 46.608718], [-112.006524, 46.603944], [-112.003906, 46.599455], [-112.002681, 46.597363], [-112.001205, 46.594784], [-112, 46.592799], [-111.999632, 46.592286], [-111.999301, 46.591861], [-111.998522, 46.590983], [-111.99828, 46.590699], [-111.997972, 46.590398], [-111.996867, 46.589396], [-111.996488, 46.589096], [-111.995735, 46.58854], [-111.988743, 46.583855], [-111.983795, 46.580551], [-111.98049, 46.578347], [-111.978312, 46.576892], [-111.976196, 46.575478], [-111.970612, 46.571744], [-111.969019, 46.570651], [-111.966637, 46.569071], [-111.957631, 46.563066], [-111.956867, 46.562459], [-111.956078, 46.56178], [-111.955528, 46.561278], [-111.95503, 46.560765], [-111.954464, 46.560133], [-111.953992, 46.559508], [-111.953623, 46.558994], [-111.953365, 46.558587], [-111.953022, 46.558003], [-111.95261, 46.557224], [-111.951443, 46.55468], [-111.946695, 46.544203], [-111.946304, 46.54331], [-111.945744, 46.542172], [-111.945185, 46.540831], [-111.944611, 46.539567], [-111.943999, 46.538252], [-111.943392, 46.536869], [-111.941186, 46.532081], [-111.940903, 46.53142], [-111.940559, 46.530629], [-111.940379, 46.530109], [-111.940293, 46.529684], [-111.940268, 46.529241], [-111.940319, 46.528857], [-111.940422, 46.528432], [-111.940568, 46.528025], [-111.94074, 46.527676], [-111.940971, 46.527322], [-111.941246, 46.527003], [-111.941667, 46.526619], [-111.943134, 46.525497], [-111.943589, 46.525125], [-111.94401, 46.524718], [-111.944344, 46.524346], [-111.944662, 46.523974], [-111.944902, 46.523625], [-111.945151, 46.52323], [-111.9454, 46.522775], [-111.945606, 46.522326], [-111.945744, 46.521966], [-111.945855, 46.521511], [-111.947984, 46.511742], [-111.948095, 46.51137], [-111.948361, 46.510661], [-111.949408, 46.508074], [-111.952344, 46.500837], [-111.952541, 46.500393], [-111.952825, 46.499944], [-111.953168, 46.49946], [-111.953494, 46.499105], [-111.953932, 46.498775], [-111.954764, 46.49819], [-111.958575, 46.495909], [-111.959245, 46.495501], [-111.960052, 46.495017], [-111.961021, 46.494414], [-111.961871, 46.493912], [-111.962729, 46.493415], [-111.963579, 46.492825], [-111.964025, 46.4925], [-111.964661, 46.492015], [-111.965124, 46.491625], [-111.965656, 46.491123], [-111.966369, 46.49042], [-111.96709, 46.489651], [-111.976325, 46.479522], [-111.976891, 46.478848], [-111.977312, 46.47834], [-111.977733, 46.477808], [-111.977973, 46.477465], [-111.978127, 46.477211], [-111.978282, 46.476974], [-111.97884, 46.475928], [-111.979217, 46.475042], [-111.980033, 46.473044], [-111.980271, 46.472374], [-111.980435, 46.471976], [-111.980677, 46.471349], [-111.980952, 46.470648], [-111.981239, 46.4699], [-111.981493, 46.46921], [-111.981736, 46.468592], [-111.981874, 46.468256], [-111.982316, 46.467018], [-111.982732, 46.465939], [-111.982851, 46.465572], [-111.983251, 46.464294], [-111.983315, 46.464025], [-111.983475, 46.463313], [-111.983818, 46.462054], [-111.98424, 46.460487], [-111.985346, 46.456259], [-111.985844, 46.45432], [-111.986814, 46.450701], [-111.986994, 46.449938], [-111.987251, 46.449004], [-111.987543, 46.4483], [-111.987809, 46.447709], [-111.988255, 46.446833], [-111.990024, 46.443882], [-111.990719, 46.44254], [-111.99283, 46.438169], [-111.995886, 46.431816], [-111.996143, 46.431165], [-111.996341, 46.430644], [-111.996598, 46.42984], [-111.996753, 46.429213], [-111.99689, 46.428609], [-111.997405, 46.425385], [-111.997642, 46.424314], [-111.997932, 46.423545], [-111.998107, 46.423114], [-111.99835, 46.422586], [-111.998575, 46.422164], [-111.998884, 46.421653], [-111.999228, 46.421145], [-111.999447, 46.420848], [-111.999923, 46.420267], [-112.000156, 46.42], [-112.000433, 46.41971], [-112.00089, 46.419258], [-112.001482, 46.418746], [-112.002113, 46.418226], [-112.00272, 46.417745], [-112.002961, 46.417554], [-112.003548, 46.417078], [-112.004211, 46.41654], [-112.004746, 46.416099], [-112.005461, 46.41553], [-112.005985, 46.415112], [-112.006394, 46.414775], [-112.006854, 46.414405], [-112.007245, 46.4141], [-112.00765, 46.413758], [-112.00797, 46.413501], [-112.008169, 46.413338], [-112.008593, 46.412997], [-112.009014, 46.412645], [-112.009385, 46.412341], [-112.009697, 46.412025], [-112.010255, 46.411528], [-112.010946, 46.410853], [-112.011431, 46.410352], [-112.011895, 46.409867], [-112.012165, 46.409569], [-112.012675, 46.408992], [-112.013067, 46.408517], [-112.013404, 46.408107], [-112.013911, 46.407447], [-112.014218, 46.407046], [-112.014492, 46.406653], [-112.015033, 46.405845], [-112.01524, 46.405542], [-112.015368, 46.405329], [-112.015741, 46.40471], [-112.015972, 46.404308], [-112.016318, 46.403688], [-112.016624, 46.403056], [-112.01703, 46.402204], [-112.017522, 46.401159], [-112.017917, 46.400311], [-112.019197, 46.397512], [-112.019961, 46.395938], [-112.020503, 46.394858], [-112.020846, 46.394173], [-112.021172, 46.393579], [-112.021321, 46.393351], [-112.021496, 46.393063], [-112.021714, 46.392713], [-112.021925, 46.392391], [-112.022307, 46.391799], [-112.022576, 46.391431], [-112.02269, 46.391255], [-112.022776, 46.391138], [-112.023072, 46.390745], [-112.023396, 46.390333], [-112.023636, 46.390016], [-112.02407, 46.389472], [-112.02447, 46.388962], [-112.025293, 46.387893], [-112.025518, 46.387587], [-112.025835, 46.387153], [-112.02604, 46.386874], [-112.026296, 46.386489], [-112.026502, 46.386192], [-112.026698, 46.385898], [-112.027204, 46.385069], [-112.027659, 46.384252], [-112.027743, 46.384088], [-112.0278, 46.383963], [-112.02782, 46.383925], [-112.027998, 46.383561], [-112.028106, 46.383379], [-112.028359, 46.382926], [-112.028737, 46.382022], [-112.029617, 46.379591], [-112.030115, 46.378271], [-112.030424, 46.377365], [-112.030767, 46.376572], [-112.031059, 46.375944], [-112.033059, 46.372077], [-112.033626, 46.37091], [-112.033917, 46.370342], [-112.034252, 46.369714], [-112.034492, 46.369293], [-112.03481, 46.368766], [-112.035136, 46.368298], [-112.035445, 46.367848], [-112.03584, 46.367386], [-112.036295, 46.366877], [-112.036879, 46.366249], [-112.043015, 46.359532], [-112.043436, 46.359053], [-112.043754, 46.358638], [-112.044011, 46.358283], [-112.044234, 46.357927], [-112.044475, 46.357501], [-112.044698, 46.357062], [-112.044852, 46.356719], [-112.044972, 46.356357], [-112.045093, 46.355972], [-112.045204, 46.355534], [-112.045281, 46.355173], [-112.04535, 46.354693], [-112.045384, 46.354284], [-112.045376, 46.353828], [-112.045359, 46.353206], [-112.045058, 46.350658], [-112.045032, 46.350072], [-112.045075, 46.349545], [-112.045178, 46.349154], [-112.045317, 46.348787], [-112.045481, 46.348449], [-112.045687, 46.348135], [-112.04591, 46.347851], [-112.046202, 46.347519], [-112.048562, 46.345392], [-112.048862, 46.34509], [-112.049146, 46.34477], [-112.04936, 46.344467], [-112.04954, 46.344153], [-112.049738, 46.343721], [-112.049849, 46.343241], [-112.049884, 46.343028], [-112.049892, 46.342755], [-112.049884, 46.3424], [-112.049806, 46.341931], [-112.049396, 46.34035], [-112.049218, 46.339673], [-112.049159, 46.33933], [-112.049143, 46.339002], [-112.049168, 46.338597], [-112.049229, 46.338284], [-112.049292, 46.338051], [-112.049341, 46.337839], [-112.049439, 46.337616], [-112.049559, 46.337404], [-112.0497, 46.337162], [-112.049936, 46.33687], [-112.05015, 46.336595], [-112.054836, 46.331763], [-112.055497, 46.33117], [-112.055875, 46.33085], [-112.056372, 46.33053], [-112.05687, 46.330263], [-112.057445, 46.330044], [-112.058132, 46.329789], [-112.060261, 46.329273], [-112.060879, 46.329137], [-112.061445, 46.328959], [-112.061994, 46.328752], [-112.062561, 46.32845], [-112.06317, 46.3281], [-112.063625, 46.327786], [-112.064054, 46.327371], [-112.064466, 46.326891], [-112.06523, 46.325741], [-112.065677, 46.325125], [-112.066028, 46.324674], [-112.06638, 46.324318], [-112.066904, 46.323868], [-112.067505, 46.323501], [-112.06826, 46.323109], [-112.069642, 46.322445], [-112.070509, 46.322007], [-112.071195, 46.321663], [-112.071728, 46.321378], [-112.07238, 46.320958], [-112.073067, 46.320519], [-112.073762, 46.320045], [-112.074277, 46.319582], [-112.074732, 46.319138], [-112.075169, 46.318705], [-112.075599, 46.318189], [-112.076053, 46.317626], [-112.076371, 46.317182], [-112.076732, 46.316589], [-112.077058, 46.315949], [-112.077616, 46.31452], [-112.077985, 46.313459], [-112.078268, 46.312795], [-112.078491, 46.31232], [-112.0788, 46.311751], [-112.079212, 46.31117], [-112.079718, 46.310435], [-112.0808, 46.308627], [-112.081126, 46.30801], [-112.081375, 46.307316], [-112.081512, 46.306724], [-112.081607, 46.306131], [-112.081735, 46.304998], [-112.081856, 46.304358], [-112.082079, 46.303688], [-112.082319, 46.303172], [-112.082594, 46.302692], [-112.082946, 46.302205], [-112.083306, 46.301814], [-112.083804, 46.301334], [-112.08447, 46.300831], [-112.085263, 46.300355], [-112.086027, 46.299964], [-112.089752, 46.298446], [-112.090979, 46.297859], [-112.091958, 46.297337], [-112.092799, 46.296756], [-112.093486, 46.296287], [-112.094104, 46.295694], [-112.09473, 46.295036], [-112.095159, 46.294538], [-112.09558, 46.293992], [-112.09594, 46.293381], [-112.096445, 46.292397], [-112.096685, 46.291614], [-112.09702, 46.290422], [-112.097449, 46.288406], [-112.097724, 46.287409], [-112.098136, 46.286312], [-112.099116, 46.284397], [-112.099274, 46.284063], [-112.10053, 46.281349], [-112.101118, 46.280084], [-112.102891, 46.276318], [-112.104027, 46.273935], [-112.104859, 46.272141], [-112.105342, 46.271125], [-112.106274, 46.269146], [-112.107087, 46.267404], [-112.111234, 46.258546], [-112.112659, 46.255466], [-112.114521, 46.251525], [-112.114976, 46.250676], [-112.115508, 46.249899], [-112.115937, 46.249329], [-112.116633, 46.248581], [-112.117748, 46.247554], [-112.11925, 46.246504], [-112.12022, 46.245934], [-112.120967, 46.245566], [-112.121954, 46.245133], [-112.124992, 46.244052], [-112.13288, 46.241298], [-112.133387, 46.24112], [-112.138622, 46.239291], [-112.145034, 46.237065], [-112.146141, 46.236745], [-112.147008, 46.236519], [-112.147806, 46.236394], [-112.148459, 46.236305], [-112.149265, 46.236246], [-112.150089, 46.236222], [-112.151042, 46.236246], [-112.151883, 46.236317], [-112.152699, 46.236436], [-112.153471, 46.236584], [-112.154474, 46.236837], [-112.15899, 46.238152], [-112.160595, 46.238543], [-112.162483, 46.238947], [-112.163367, 46.23922], [-112.164054, 46.239529], [-112.164698, 46.239897], [-112.165273, 46.24033], [-112.166844, 46.241642], [-112.167307, 46.241963], [-112.1685, 46.242669], [-112.169144, 46.243085], [-112.169659, 46.24356], [-112.170912, 46.244966], [-112.171367, 46.245364], [-112.172131, 46.245898], [-112.173204, 46.246522], [-112.174276, 46.247169], [-112.174817, 46.24762], [-112.175298, 46.24816], [-112.175555, 46.248587], [-112.17577, 46.248973], [-112.175924, 46.249424], [-112.176336, 46.250552], [-112.176517, 46.25092], [-112.17674, 46.251276], [-112.176997, 46.251626], [-112.177418, 46.252083], [-112.177787, 46.252344], [-112.178165, 46.252617], [-112.180775, 46.254129], [-112.181007, 46.254269], [-112.183097, 46.255454], [-112.183493, 46.255702], [-112.184164, 46.256171], [-112.184905, 46.256737], [-112.185365, 46.257141], [-112.185885, 46.257562], [-112.186185, 46.2578], [-112.186531, 46.258043], [-112.186972, 46.258275], [-112.187322, 46.258422], [-112.187774, 46.258598], [-112.188155, 46.258726], [-112.188842, 46.25893], [-112.190061, 46.259233], [-112.194417, 46.260296], [-112.194914, 46.260425], [-112.197467, 46.261049], [-112.198131, 46.261215], [-112.198816, 46.261348], [-112.200563, 46.261639], [-112.2012, 46.261735], [-112.201697, 46.261796], [-112.202216, 46.261831], [-112.202661, 46.261847], [-112.203293, 46.261844], [-112.203843, 46.26181], [-112.204643, 46.261713], [-112.205502, 46.261541], [-112.206283, 46.261328], [-112.207158, 46.260978], [-112.20773, 46.260725], [-112.208199, 46.260464], [-112.209872, 46.259361], [-112.210845, 46.258723], [-112.211437, 46.258407], [-112.21171, 46.258294], [-112.211974, 46.258207], [-112.212216, 46.258142], [-112.212463, 46.258092], [-112.212751, 46.258048], [-112.213051, 46.258024], [-112.213334, 46.258019], [-112.213692, 46.258035], [-112.213988, 46.258065], [-112.214247, 46.258108], [-112.214549, 46.258186], [-112.21472, 46.258241], [-112.214928, 46.258313], [-112.21526, 46.258456], [-112.215539, 46.258605], [-112.215859, 46.258826], [-112.216123, 46.259059], [-112.216344, 46.259307], [-112.216538, 46.259564], [-112.217304, 46.260578], [-112.217586, 46.260888], [-112.217887, 46.26118], [-112.218436, 46.261654], [-112.219097, 46.262058], [-112.219818, 46.262508], [-112.220179, 46.262823], [-112.220462, 46.263203], [-112.220625, 46.263654], [-112.220625, 46.264105], [-112.220513, 46.26455], [-112.220273, 46.264918], [-112.21993, 46.265238], [-112.219466, 46.265558], [-112.218514, 46.266039], [-112.218288, 46.266167], [-112.218079, 46.266291], [-112.217885, 46.266411], [-112.217737, 46.266539], [-112.217605, 46.266696], [-112.217501, 46.266818], [-112.217396, 46.266989], [-112.21734, 46.267123], [-112.217303, 46.267314], [-112.217283, 46.267445], [-112.217325, 46.267714], [-112.217476, 46.26824], [-112.217544, 46.268438], [-112.217592, 46.268538], [-112.217628, 46.268615], [-112.217724, 46.268751], [-112.217818, 46.268858], [-112.217936, 46.268959], [-112.21813, 46.269104], [-112.218353, 46.26922], [-112.218727, 46.26937], [-112.219166, 46.269489], [-112.219721, 46.269609], [-112.220202, 46.269698], [-112.220646, 46.269797], [-112.220996, 46.2699], [-112.22144, 46.27005], [-112.222711, 46.270631], [-112.223277, 46.270851], [-112.22399, 46.271017], [-112.224668, 46.271076], [-112.225371, 46.270993], [-112.227174, 46.270608], [-112.227989, 46.270507], [-112.22883, 46.270519], [-112.229611, 46.270726], [-112.232341, 46.271693], [-112.232993, 46.27186], [-112.233723, 46.271966], [-112.234744, 46.271978], [-112.239606, 46.271805], [-112.242182, 46.271693], [-112.246347, 46.271502], [-112.246967, 46.271459], [-112.247491, 46.271415], [-112.247911, 46.271379], [-112.248545, 46.271312], [-112.249143, 46.271217], [-112.250763, 46.270938], [-112.251919, 46.270715], [-112.254271, 46.270264], [-112.255138, 46.270086], [-112.255979, 46.269973], [-112.256923, 46.269854], [-112.257798, 46.269753], [-112.258871, 46.269706], [-112.259953, 46.269694], [-112.260408, 46.269688], [-112.260811, 46.269688], [-112.265927, 46.269838], [-112.266364, 46.269845], [-112.268516, 46.269903], [-112.26928, 46.269923], [-112.269822, 46.269932], [-112.270297, 46.269936], [-112.270632, 46.269932], [-112.271986, 46.269899], [-112.272496, 46.269882], [-112.272871, 46.269875], [-112.273201, 46.26988], [-112.273496, 46.269893], [-112.273848, 46.269921], [-112.274451, 46.269986], [-112.275304, 46.270084], [-112.275736, 46.270129], [-112.276214, 46.270171], [-112.276581, 46.270192], [-112.276954, 46.270201], [-112.277383, 46.270195], [-112.277783, 46.270179], [-112.278217, 46.270151], [-112.278636, 46.270112], [-112.27903, 46.270058], [-112.279521, 46.269977], [-112.280084, 46.269869], [-112.280575, 46.269771], [-112.281036, 46.269673], [-112.281492, 46.269558], [-112.281919, 46.269443], [-112.282407, 46.269304], [-112.28289, 46.269153], [-112.283292, 46.269013], [-112.283616, 46.26889], [-112.283914, 46.268764], [-112.284169, 46.268638], [-112.284394, 46.268516], [-112.284601, 46.268394], [-112.284775, 46.268275], [-112.284955, 46.268131], [-112.285087, 46.268013], [-112.285191, 46.267897], [-112.285277, 46.267793], [-112.285357, 46.267683], [-112.28543, 46.267542], [-112.285505, 46.267379], [-112.285561, 46.267208], [-112.285596, 46.267049], [-112.28561, 46.266897], [-112.285612, 46.266763], [-112.285599, 46.266613], [-112.285569, 46.266448], [-112.285505, 46.266261], [-112.28543, 46.266096], [-112.285194, 46.265664], [-112.285025, 46.265406], [-112.284866, 46.265152], [-112.284775, 46.264974], [-112.284703, 46.264813], [-112.284646, 46.264655], [-112.284614, 46.264507], [-112.284598, 46.264379], [-112.284598, 46.26421], [-112.284617, 46.264062], [-112.284665, 46.263899], [-112.284727, 46.263728], [-112.284759, 46.263669], [-112.284821, 46.263548], [-112.284909, 46.263418], [-112.284995, 46.263313], [-112.285121, 46.263177], [-112.285277, 46.263038], [-112.285408, 46.262932], [-112.285591, 46.262814], [-112.285765, 46.262716], [-112.285998, 46.262614], [-112.286237, 46.262523], [-112.286454, 46.262454], [-112.286722, 46.262397], [-112.286953, 46.262358], [-112.287205, 46.262334], [-112.287431, 46.262324], [-112.287599, 46.262324], [-112.287755, 46.262332], [-112.287908, 46.262343], [-112.28809, 46.262371], [-112.288289, 46.262408], [-112.288533, 46.262469], [-112.28878, 46.262545], [-112.289056, 46.262641], [-112.28941, 46.262779], [-112.292288, 46.263915], [-112.295423, 46.265141], [-112.295772, 46.265276], [-112.296799, 46.265681], [-112.297288, 46.265857], [-112.29766, 46.26597], [-112.297998, 46.266064], [-112.298326, 46.266135], [-112.298693, 46.266202], [-112.29902, 46.266252], [-112.299407, 46.266294], [-112.299973, 46.26635], [-112.301962, 46.266518], [-112.303677, 46.266665], [-112.30416, 46.266715], [-112.304799, 46.266799], [-112.305829, 46.266965], [-112.307302, 46.26725], [-112.307798, 46.267339], [-112.308222, 46.267413], [-112.308627, 46.267476], [-112.308997, 46.267518], [-112.309343, 46.267554], [-112.309617, 46.267578], [-112.309941, 46.267591], [-112.310258, 46.267602], [-112.310641, 46.267611], [-112.310985, 46.267613], [-112.311296, 46.267607], [-112.311658, 46.267591], [-112.312055, 46.267565], [-112.312425, 46.267535], [-112.312795, 46.267492], [-112.313219, 46.267435], [-112.313683, 46.267359], [-112.31408, 46.267281], [-112.314484, 46.267191], [-112.314867, 46.26709], [-112.315256, 46.26698], [-112.315717, 46.266837], [-112.316613, 46.266561], [-112.317018, 46.266437], [-112.317471, 46.266313], [-112.317997, 46.266179], [-112.318925, 46.265949], [-112.320151, 46.265632], [-112.321393, 46.265313], [-112.325427, 46.26428], [-112.326138, 46.264095], [-112.326859, 46.263917], [-112.327936, 46.263635], [-112.330428, 46.263002], [-112.333211, 46.262287], [-112.334007, 46.262079], [-112.335292, 46.261753], [-112.335686, 46.261652], [-112.336028, 46.261559], [-112.33637, 46.261454], [-112.33667, 46.261355], [-112.336988, 46.261243], [-112.337325, 46.261115], [-112.33768, 46.260971], [-112.338038, 46.260813], [-112.338363, 46.260662], [-112.338625, 46.26053], [-112.338933, 46.260366], [-112.340256, 46.259429], [-112.341003, 46.258829], [-112.341337, 46.25845], [-112.341646, 46.258088], [-112.342041, 46.257506], [-112.342264, 46.257085], [-112.342513, 46.256616], [-112.342736, 46.256052], [-112.343048, 46.25519], [-112.343088, 46.254628], [-112.343114, 46.25404], [-112.342997, 46.253333], [-112.342814, 46.252527], [-112.342556, 46.25188], [-112.341586, 46.249939], [-112.341209, 46.248971], [-112.340942, 46.248152], [-112.340797, 46.247393], [-112.340711, 46.246752], [-112.340698, 46.245956], [-112.340797, 46.24509], [-112.340934, 46.2443], [-112.341088, 46.243617], [-112.341363, 46.242745], [-112.343732, 46.236132], [-112.343955, 46.235443], [-112.344213, 46.23479], [-112.34459, 46.234178], [-112.345088, 46.233513], [-112.346384, 46.231827], [-112.346848, 46.231067], [-112.347062, 46.230402], [-112.347208, 46.229666], [-112.34738, 46.228247], [-112.347457, 46.227659], [-112.347706, 46.22662], [-112.348072, 46.225486], [-112.348787, 46.223592], [-112.349165, 46.22241], [-112.349268, 46.221798], [-112.349251, 46.221163], [-112.348908, 46.218621], [-112.348822, 46.218081], [-112.348822, 46.217392], [-112.348959, 46.216762], [-112.34944, 46.215301], [-112.349521, 46.214586], [-112.349491, 46.214013], [-112.349328, 46.213591], [-112.349028, 46.213021], [-112.348633, 46.212492], [-112.348169, 46.211999], [-112.34762, 46.211619], [-112.346856, 46.211156], [-112.345869, 46.21058], [-112.3452, 46.210051], [-112.344728, 46.209576], [-112.343234, 46.207925], [-112.342659, 46.207307], [-112.341921, 46.206677], [-112.340814, 46.205816], [-112.34041, 46.205465], [-112.340067, 46.205085], [-112.339802, 46.204693], [-112.339704, 46.204467], [-112.339636, 46.204269], [-112.339591, 46.204027], [-112.339612, 46.20382], [-112.339732, 46.203256], [-112.340033, 46.20262], [-112.340582, 46.201913], [-112.341621, 46.200885], [-112.342062, 46.200298], [-112.342242, 46.199944], [-112.342396, 46.199584], [-112.342597, 46.199091], [-112.342775, 46.198631], [-112.343062, 46.198034], [-112.343303, 46.197541], [-112.343792, 46.196904], [-112.344693, 46.196127], [-112.345387, 46.19542], [-112.345729, 46.194938], [-112.345917, 46.194643], [-112.346069, 46.194349], [-112.346166, 46.194045], [-112.346238, 46.193697], [-112.34623, 46.193103], [-112.345941, 46.190673], [-112.345878, 46.189902], [-112.345728, 46.189213], [-112.345709, 46.188344], [-112.345571, 46.187533], [-112.345558, 46.186912], [-112.345564, 46.185992], [-112.345749, 46.183453], [-112.346234, 46.177623], [-112.346347, 46.176821], [-112.346473, 46.176275], [-112.34671, 46.175728], [-112.347062, 46.17511], [-112.347483, 46.174486], [-112.34822, 46.173702], [-112.349208, 46.17291], [-112.3521, 46.171121], [-112.352701, 46.170843], [-112.353354, 46.170627], [-112.354238, 46.170443], [-112.355396, 46.170378], [-112.356246, 46.170461], [-112.358186, 46.170764], [-112.359293, 46.170788], [-112.360246, 46.170669], [-112.361216, 46.170425], [-112.362177, 46.170093], [-112.362941, 46.16973], [-112.363559, 46.169296], [-112.364125, 46.168743], [-112.364529, 46.168119], [-112.365267, 46.167103], [-112.365816, 46.166663], [-112.3664, 46.166336], [-112.367129, 46.166098], [-112.367868, 46.165967], [-112.368692, 46.165944], [-112.371773, 46.166039], [-112.372811, 46.166015], [-112.37367, 46.165902], [-112.374588, 46.165706], [-112.375592, 46.165379], [-112.376571, 46.164951], [-112.377318, 46.164529], [-112.378076, 46.163952], [-112.378262, 46.163762], [-112.378614, 46.163364], [-112.378914, 46.162965], [-112.379469, 46.162169], [-112.382055, 46.158245], [-112.384021, 46.155308], [-112.385566, 46.152959], [-112.387334, 46.150272], [-112.388458, 46.14862], [-112.389451, 46.147108], [-112.391789, 46.143594], [-112.398669, 46.133222], [-112.400972, 46.129712], [-112.4066, 46.121302], [-112.407393, 46.120004], [-112.408182, 46.118582], [-112.408541, 46.117899], [-112.409937, 46.114817], [-112.411055, 46.112333], [-112.412388, 46.109365], [-112.413655, 46.106653], [-112.414778, 46.10418], [-112.415206, 46.103314], [-112.415668, 46.102487], [-112.415895, 46.102106], [-112.416464, 46.101176], [-112.417083, 46.100254], [-112.418499, 46.098356], [-112.418915, 46.09769], [-112.419526, 46.096677], [-112.420233, 46.095398], [-112.422479, 46.091058], [-112.424336, 46.087469], [-112.429652, 46.0772], [-112.429822, 46.076884], [-112.431392, 46.07384], [-112.436257, 46.064391], [-112.436937, 46.063074], [-112.438079, 46.061044], [-112.438376, 46.060532], [-112.438666, 46.060066], [-112.43881, 46.05984], [-112.439098, 46.05943], [-112.43934, 46.059064], [-112.439532, 46.058774], [-112.440107, 46.058002], [-112.44038, 46.05765], [-112.441731, 46.056019], [-112.443485, 46.053949], [-112.447802, 46.048851], [-112.45155, 46.044489], [-112.452423, 46.043435], [-112.452928, 46.042858], [-112.453336, 46.042363], [-112.453672, 46.041989], [-112.454055, 46.041551], [-112.454342, 46.04125], [-112.454665, 46.040886], [-112.456067, 46.039558], [-112.457335, 46.038587], [-112.457987, 46.038059], [-112.458512, 46.037625], [-112.458842, 46.037329], [-112.459071, 46.03709], [-112.459314, 46.036842], [-112.459518, 46.03659], [-112.459678, 46.03639], [-112.4598, 46.036215], [-112.459891, 46.036045], [-112.460007, 46.03582], [-112.460114, 46.03551], [-112.460172, 46.035281], [-112.460249, 46.034999], [-112.460282, 46.034713], [-112.460289, 46.034622], [-112.460306, 46.034393], [-112.46034, 46.034001], [-112.460377, 46.033494], [-112.460788, 46.024225], [-112.460858, 46.022999], [-112.461034, 46.021707], [-112.461139, 46.019417], [-112.461174, 46.018182], [-112.461374, 46.013939], [-112.461433, 46.012326], [-112.461598, 46.009767], [-112.46173, 46.007706], [-112.461826, 46.006592], [-112.461968, 46.00602], [-112.462225, 46.00538], [-112.462565, 46.004722], [-112.463191, 46.004036], [-112.464072, 46.003225], [-112.465792, 46.001872], [-112.466856, 46.001037], [-112.469268, 45.999189], [-112.469946, 45.998682], [-112.470667, 45.998003], [-112.47113, 45.997502], [-112.47156, 45.996917], [-112.471963, 45.99622], [-112.473459, 45.993424], [-112.474051, 45.992464], [-112.474317, 45.992004], [-112.475276, 45.990233], [-112.475566, 45.989642], [-112.476695, 45.987673], [-112.477014, 45.987068], [-112.477395, 45.986399], [-112.477976, 45.985327], [-112.478243, 45.984818], [-112.478421, 45.98455], [-112.478851, 45.983744], [-112.479177, 45.983218], [-112.479374, 45.982981], [-112.479538, 45.982795], [-112.47971, 45.982636], [-112.479894, 45.982492], [-112.480132, 45.982326], [-112.48042, 45.982142], [-112.480713, 45.981993], [-112.481018, 45.981862], [-112.481235, 45.981784], [-112.481491, 45.981708], [-112.481819, 45.981612], [-112.482235, 45.981526], [-112.482576, 45.981485], [-112.482792, 45.981468], [-112.483106, 45.981448], [-112.484674, 45.981411], [-112.485533, 45.981393], [-112.486142, 45.981346], [-112.486888, 45.981343], [-112.488415, 45.981329], [-112.48942, 45.981323], [-112.489915, 45.981311], [-112.490321, 45.981291], [-112.491262, 45.981187], [-112.492077, 45.981092], [-112.492755, 45.980966], [-112.49327, 45.980829], [-112.494197, 45.980567], [-112.495345, 45.9802], [-112.496229, 45.979974], [-112.496927, 45.979831], [-112.497708, 45.979756], [-112.4986, 45.979744], [-112.499484, 45.979774], [-112.500257, 45.979863], [-112.501047, 45.980042], [-112.501432, 45.980146], [-112.501772, 45.980251], [-112.502162, 45.980391], [-112.502441, 45.980505], [-112.502715, 45.980622], [-112.503036, 45.980793], [-112.503323, 45.980946], [-112.503646, 45.981153], [-112.503934, 45.981351], [-112.504203, 45.981566], [-112.504427, 45.981757], [-112.504926, 45.982217], [-112.505529, 45.982793], [-112.505933, 45.983132], [-112.506153, 45.983296], [-112.506336, 45.983431], [-112.506571, 45.983586], [-112.506888, 45.983789], [-112.507196, 45.983956], [-112.507471, 45.984097], [-112.507799, 45.984272], [-112.508512, 45.98456], [-112.508794, 45.984651], [-112.50906, 45.984738], [-112.509415, 45.984842], [-112.509964, 45.984998], [-112.512836, 45.985714], [-112.514063, 45.986044], [-112.515749, 45.986501], [-112.516874, 45.986847], [-112.529602, 45.991803], [-112.530598, 45.992131], [-112.531516, 45.992333], [-112.5324, 45.992476], [-112.533044, 45.992536], [-112.533894, 45.992542], [-112.538675, 45.992548], [-112.539481, 45.992542], [-112.544571, 45.992548], [-112.54755, 45.9925], [-112.549472, 45.992518], [-112.552176, 45.992548], [-112.553189, 45.992614], [-112.554167, 45.992739], [-112.555008, 45.992942], [-112.559798, 45.994337], [-112.560613, 45.994587], [-112.561471, 45.994951], [-112.562235, 45.995404], [-112.562816, 45.995834], [-112.563071, 45.996064], [-112.563323, 45.996326], [-112.563586, 45.996638], [-112.563846, 45.996975], [-112.564136, 45.997384], [-112.564414, 45.997764], [-112.565162, 45.998934], [-112.565743, 45.999683], [-112.566655, 46.000955], [-112.567437, 46.001903], [-112.56802, 46.002517], [-112.568741, 46.003096], [-112.569419, 46.003525], [-112.570063, 46.003859], [-112.570964, 46.004318], [-112.571822, 46.004693], [-112.572895, 46.005009], [-112.573848, 46.00523], [-112.574775, 46.005379], [-112.575728, 46.005463], [-112.577187, 46.005504], [-112.577788, 46.005522], [-112.582056, 46.005676], [-112.594885, 46.006166], [-112.604584, 46.006524], [-112.605451, 46.006619], [-112.607283, 46.006843], [-112.610896, 46.007381], [-112.611152, 46.005948], [-112.61121, 46.005792], [-112.611238, 46.005609], [-112.608284, 46.004266], [-112.607739, 46.003921], [-112.607191, 46.003516], [-112.606953, 46.003377], [-112.606693, 46.003274], [-112.606342, 46.003193], [-112.606239, 46.00317], [-112.604638, 46.002827], [-112.603223, 46.002511], [-112.603052, 46.002473], [-112.60203, 46.002278], [-112.601516, 46.002219], [-112.601276, 46.00221], [-112.600883, 46.002212], [-112.600496, 46.00223], [-112.600404, 46.002208], [-112.60036, 46.002173], [-112.600327, 46.002117], [-112.600314, 46.002059], [-112.600333, 46.001927], [-112.600381, 46.001853], [-112.60049, 46.001777], [-112.600599, 46.001745], [-112.600713, 46.001737], [-112.600862, 46.001739], [-112.601544, 46.001798], [-112.601657, 46.001792], [-112.601804, 46.001767], [-112.601918, 46.001724], [-112.602008, 46.001673], [-112.602239, 46.001528], [-112.602389, 46.001412], [-112.602658, 46.001185], [-112.60307, 46.000822], [-112.603218, 46.000656], [-112.603405, 46.000474], [-112.60366, 46.000513], [-112.603842, 46.000532], [-112.604078, 46.000549], [-112.604254, 46.000547], [-112.605018, 46.00043], [-112.605491, 46.000395], [-112.605766, 46.000402], [-112.606076, 46.000466], [-112.606209, 46.00049], [-112.606364, 46.000494], [-112.606548, 46.000466], [-112.607005, 46.000359], [-112.607412, 46.000312], [-112.611416, 46.000299], [-112.611653, 46.000242], [-112.611812, 46.000145], [-112.611932, 45.999965], [-112.611906, 45.993731], [-112.611956, 45.990322], [-112.611963, 45.987384], [-112.611945, 45.986839], [-112.611983, 45.986517], [-112.612211, 45.985826], [-112.612974, 45.983191], [-112.613351, 45.982047], [-112.613508, 45.981723], [-112.613655, 45.98152], [-112.613973, 45.981284], [-112.61573, 45.980235], [-112.61642, 45.979923], [-112.617405, 45.979519], [-112.618068, 45.979213], [-112.618669, 45.978865], [-112.620246, 45.977619], [-112.620586, 45.977289], [-112.621106, 45.976592], [-112.622154, 45.975079], [-112.622235, 45.974699], [-112.622281, 45.973317], [-112.622078, 45.970234], [-112.619831, 45.970225], [-112.614288, 45.970203] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-112.606601, 45.960219] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-111.972656, 48.843028] } }, { "type": "Feature", "properties": { "stroke": "#f0f", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-111.895843, 48.877468], [-111.878176, 48.860393], [-111.867242, 48.849753], [-111.866486, 48.849013], [-111.865877, 48.848301], [-111.86531, 48.847533], [-111.864675, 48.846613], [-111.86392, 48.845195], [-111.863594, 48.84437], [-111.863233, 48.843167], [-111.863139, 48.842738], [-111.863019, 48.842026], [-111.86295, 48.841071], [-111.862942, 48.830326], [-111.862942, 48.823285], [-111.86289, 48.769261], [-111.862864, 48.764515], [-111.862813, 48.763474], [-111.862718, 48.761743], [-111.861611, 48.743809], [-111.861439, 48.740289], [-111.861439, 48.739949], [-111.861594, 48.737176], [-111.862178, 48.726719], [-111.862229, 48.723792], [-111.862083, 48.656639], [-111.8621, 48.64979], [-111.861997, 48.598701], [-111.86198, 48.592185], [-111.86198, 48.57272], [-111.861912, 48.57163], [-111.861817, 48.570494], [-111.861697, 48.569205], [-111.860581, 48.557657], [-111.860077, 48.552231], [-111.859663, 48.54801], [-111.859594, 48.546805], [-111.859611, 48.545322], [-111.859792, 48.535383], [-111.8598, 48.533888], [-111.859886, 48.533121], [-111.860015, 48.532581], [-111.860246, 48.531939], [-111.860598, 48.531387], [-111.860942, 48.530899], [-111.861688, 48.530109], [-111.866109, 48.525755], [-111.875953, 48.516192], [-111.876929, 48.515247], [-111.877241, 48.514954], [-111.879228, 48.513021], [-111.879759, 48.512467], [-111.88006, 48.512124], [-111.880267, 48.511881], [-111.88042, 48.511679], [-111.880571, 48.511473], [-111.88094, 48.510956], [-111.881292, 48.510376], [-111.881653, 48.509733], [-111.881996, 48.50904], [-111.882305, 48.508346], [-111.882562, 48.507572], [-111.882777, 48.506828], [-111.882931, 48.506134], [-111.883026, 48.505588], [-111.883441, 48.502992], [-111.883604, 48.499975], [-111.883614, 48.499767], [-111.883635, 48.496433], [-111.883673, 48.495815], [-111.883734, 48.49503], [-111.883798, 48.494396], [-111.883866, 48.493802], [-111.883999, 48.493], [-111.884209, 48.492103], [-111.884377, 48.49147], [-111.884557, 48.490837], [-111.885112, 48.489088], [-111.885489, 48.48824], [-111.886605, 48.485897], [-111.88682, 48.485299], [-111.887034, 48.484679], [-111.887197, 48.484099], [-111.887389, 48.483433], [-111.88747, 48.482928], [-111.887522, 48.482349], [-111.887575, 48.481425], [-111.887554, 48.480643], [-111.887506, 48.480113], [-111.887418, 48.479516], [-111.887265, 48.478742], [-111.887056, 48.477974], [-111.886845, 48.47746], [-111.886472, 48.476607], [-111.885635, 48.474831], [-111.885441, 48.474274], [-111.885165, 48.473591], [-111.884897, 48.472862], [-111.884674, 48.47215], [-111.884502, 48.471564], [-111.884279, 48.470409], [-111.884082, 48.46926], [-111.883953, 48.468281], [-111.883906, 48.467423], [-111.883878, 48.46663], [-111.883976, 48.454446], [-111.884028, 48.447094], [-111.884036, 48.443164], [-111.884023, 48.441546], [-111.884017, 48.440681], [-111.884026, 48.43968], [-111.884018, 48.438945], [-111.88402, 48.438457], [-111.884058, 48.438059], [-111.884092, 48.43776], [-111.884134, 48.437455], [-111.884195, 48.437091], [-111.884275, 48.436739], [-111.884339, 48.436455], [-111.884422, 48.436153], [-111.884528, 48.435768], [-111.884674, 48.435354], [-111.884745, 48.435206], [-111.884871, 48.43486], [-111.885003, 48.434574], [-111.885207, 48.434157], [-111.885417, 48.433746], [-111.885596, 48.433441], [-111.88582, 48.433061], [-111.886029, 48.43273], [-111.886203, 48.432492], [-111.886412, 48.432197], [-111.886586, 48.431954], [-111.886816, 48.431663], [-111.887079, 48.431357], [-111.887401, 48.430981], [-111.887774, 48.430593], [-111.888127, 48.430257], [-111.888437, 48.429955], [-111.889099, 48.429374], [-111.889756, 48.428824], [-111.890912, 48.427857], [-111.892165, 48.426838], [-111.905659, 48.415636], [-111.90626, 48.415157], [-111.906861, 48.41457], [-111.907333, 48.414081], [-111.907814, 48.413528], [-111.908406, 48.412776], [-111.909015, 48.411824], [-111.909633, 48.410907], [-111.920752, 48.392582], [-111.927417, 48.381543], [-111.93346, 48.371538], [-111.933846, 48.37086], [-111.934235, 48.370068], [-111.934546, 48.369396], [-111.934939, 48.368399], [-111.935227, 48.367613], [-111.935586, 48.366493], [-111.935831, 48.365544], [-111.936026, 48.364601], [-111.936138, 48.363831], [-111.936258, 48.362885], [-111.936438, 48.360792], [-111.936415, 48.329088], [-111.936407, 48.310354], [-111.936413, 48.303031], [-111.936412, 48.300795], [-111.936402, 48.300483], [-111.936381, 48.271331], [-111.936384, 48.26711], [-111.936382, 48.259592], [-111.936296, 48.241832], [-111.936359, 48.224045], [-111.936352, 48.223792], [-111.936325, 48.223208], [-111.936251, 48.222646], [-111.936138, 48.222131], [-111.936009, 48.221594], [-111.935863, 48.221148], [-111.935674, 48.220724], [-111.935554, 48.220438], [-111.935323, 48.219975], [-111.934809, 48.219106], [-111.93372, 48.217503], [-111.933233, 48.216812], [-111.932738, 48.21609], [-111.932429, 48.215627], [-111.931294, 48.214006], [-111.927397, 48.208419], [-111.925603, 48.205843], [-111.925208, 48.205217], [-111.92491, 48.204712], [-111.924771, 48.204436], [-111.924661, 48.204188], [-111.924567, 48.203923], [-111.924475, 48.203592], [-111.924434, 48.203298], [-111.924418, 48.202753], [-111.924413, 48.20226], [-111.924452, 48.201981], [-111.924528, 48.20166], [-111.924607, 48.201399], [-111.924686, 48.201185], [-111.924808, 48.200887], [-111.92494, 48.200634], [-111.925143, 48.200322], [-111.925478, 48.199721], [-111.929307, 48.193399], [-111.931749, 48.18936], [-111.932143, 48.188696], [-111.932455, 48.188174], [-111.933068, 48.187161], [-111.933601, 48.186274], [-111.933896, 48.185797], [-111.934176, 48.185351], [-111.934674, 48.184441], [-111.934869, 48.184038], [-111.935015, 48.183702], [-111.935133, 48.183407], [-111.935235, 48.183131], [-111.935317, 48.182855], [-111.935435, 48.182454], [-111.935517, 48.18214], [-111.935563, 48.181903], [-111.935605, 48.181629], [-111.935654, 48.181347], [-111.935672, 48.181134], [-111.935695, 48.180837], [-111.93571, 48.180431], [-111.935711, 48.179913], [-111.935689, 48.179699], [-111.935666, 48.179392], [-111.935641, 48.179193], [-111.935605, 48.178954], [-111.935551, 48.17862], [-111.935494, 48.178341], [-111.935425, 48.178065], [-111.935362, 48.177851], [-111.935271, 48.177512], [-111.935083, 48.177015], [-111.93498, 48.176751], [-111.934859, 48.176484], [-111.934688, 48.176141], [-111.934489, 48.175789], [-111.934239, 48.175377], [-111.933859, 48.174812], [-111.933189, 48.173765], [-111.928027, 48.165762], [-111.927735, 48.165321], [-111.92603, 48.162726], [-111.925093, 48.161247], [-111.924008, 48.159611], [-111.922175, 48.156783], [-111.920615, 48.154387], [-111.919007, 48.151911], [-111.91822, 48.150663], [-111.916601, 48.148144], [-111.915551, 48.146568], [-111.914312, 48.144665], [-111.913624, 48.143606], [-111.912311, 48.141567], [-111.911974, 48.141065], [-111.911504, 48.140381], [-111.910989, 48.139656], [-111.91031, 48.138734], [-111.909273, 48.1374], [-111.907928, 48.135653], [-111.906666, 48.13405], [-111.905997, 48.133172], [-111.904722, 48.131516], [-111.901655, 48.127581], [-111.900048, 48.125516], [-111.898729, 48.123822], [-111.894029, 48.117798], [-111.893315, 48.116857], [-111.892001, 48.115177], [-111.889638, 48.112132], [-111.887413, 48.109275], [-111.884717, 48.105808], [-111.876044, 48.094626], [-111.87031, 48.087229], [-111.862959, 48.077764], [-111.861332, 48.075665], [-111.858755, 48.072362], [-111.857125, 48.070241], [-111.854834, 48.06729], [-111.850948, 48.062304], [-111.85011, 48.061229], [-111.849084, 48.059917], [-111.845348, 48.055071], [-111.836461, 48.043589], [-111.832454, 48.038401], [-111.828116, 48.032803], [-111.825147, 48.028974], [-111.816587, 48.017942], [-111.816087, 48.017289], [-111.815305, 48.016376], [-111.814473, 48.015423], [-111.813623, 48.014499], [-111.812937, 48.013816], [-111.811984, 48.012851], [-111.810868, 48.011863], [-111.809752, 48.010882], [-111.808825, 48.010101], [-111.807598, 48.009153], [-111.806388, 48.008229], [-111.805238, 48.007408], [-111.784158, 47.992286], [-111.782561, 47.991143], [-111.767146, 47.980084], [-111.766219, 47.979354], [-111.765283, 47.978504], [-111.764288, 47.977544], [-111.763404, 47.976585], [-111.762691, 47.975723], [-111.762193, 47.97501], [-111.761653, 47.974154], [-111.761121, 47.973252], [-111.753336, 47.959718], [-111.749036, 47.952205], [-111.736505, 47.930384], [-111.736106, 47.92965], [-111.735644, 47.928853], [-111.735343, 47.928305], [-111.733592, 47.925244], [-111.733306, 47.924769], [-111.732599, 47.923554], [-111.732395, 47.923205], [-111.731718, 47.922093], [-111.731538, 47.921738], [-111.73117, 47.921043], [-111.726112, 47.912262], [-111.71442, 47.89173], [-111.713776, 47.890608], [-111.713253, 47.889578], [-111.712927, 47.888864], [-111.71254, 47.888058], [-111.712146, 47.88689], [-111.711811, 47.885744], [-111.711519, 47.884564], [-111.711253, 47.883125], [-111.711124, 47.881922], [-111.71103, 47.880834], [-111.71103, 47.879792], [-111.711129, 47.869762], [-111.711004, 47.867783], [-111.710901, 47.866758], [-111.710781, 47.865716], [-111.710618, 47.864547], [-111.710438, 47.863447], [-111.710283, 47.862537], [-111.709991, 47.861213], [-111.709756, 47.860259], [-111.709335, 47.858847], [-111.708841, 47.857285], [-111.70727, 47.852822], [-111.706867, 47.851704], [-111.706498, 47.850875], [-111.706077, 47.850017], [-111.705434, 47.848819], [-111.705305, 47.848582], [-111.704816, 47.847747], [-111.704215, 47.846849], [-111.703623, 47.846054], [-111.702678, 47.844833], [-111.701983, 47.843986], [-111.700902, 47.842828], [-111.699923, 47.841889], [-111.698979, 47.841013], [-111.698052, 47.84023], [-111.696893, 47.839291], [-111.668363, 47.817267], [-111.667479, 47.816472], [-111.667042, 47.815942], [-111.666647, 47.815434], [-111.666226, 47.81476], [-111.665943, 47.814143], [-111.66578, 47.813619], [-111.665625, 47.812887], [-111.6656, 47.812391], [-111.665591, 47.811797], [-111.666429, 47.79584], [-111.666535, 47.793822], [-111.666492, 47.791308], [-111.666439, 47.750802], [-111.666442, 47.741317], [-111.666445, 47.740989], [-111.666406, 47.723306], [-111.666381, 47.72244], [-111.666295, 47.721684], [-111.666158, 47.720881], [-111.665986, 47.72024], [-111.665746, 47.719547], [-111.665419, 47.71871], [-111.665042, 47.717925], [-111.664647, 47.717243], [-111.664132, 47.716493], [-111.663789, 47.716008], [-111.663359, 47.715528], [-111.662432, 47.714581], [-111.658081, 47.710071], [-111.647285, 47.699031], [-111.646085, 47.697836], [-111.632275, 47.683698], [-111.631949, 47.683351], [-111.606663, 47.657441], [-111.60117, 47.651798], [-111.590415, 47.64073], [-111.589918, 47.640187], [-111.589463, 47.639655], [-111.589068, 47.639157], [-111.588707, 47.638689], [-111.588287, 47.638139], [-111.587849, 47.637538], [-111.587549, 47.637104], [-111.587231, 47.636624], [-111.58627, 47.63501], [-111.585369, 47.633136], [-111.570511, 47.6019], [-111.569945, 47.600818], [-111.56955, 47.600169], [-111.569224, 47.599643], [-111.568846, 47.599047], [-111.568546, 47.598607], [-111.568168, 47.598051], [-111.567747, 47.597472], [-111.567335, 47.596928], [-111.566915, 47.59643], [-111.566537, 47.595991], [-111.552899, 47.581183], [-111.552633, 47.580911], [-111.537629, 47.564691], [-111.536514, 47.563515], [-111.535904, 47.562901], [-111.535175, 47.56227], [-111.534437, 47.561691], [-111.533656, 47.561129], [-111.532711, 47.560504], [-111.531647, 47.559884], [-111.53048, 47.559311], [-111.529184, 47.558737], [-111.528008, 47.558285], [-111.526806, 47.557897], [-111.525424, 47.557503], [-111.524008, 47.557162], [-111.522824, 47.556953], [-111.521734, 47.556779], [-111.509679, 47.554952], [-111.484251, 47.551039], [-111.477299, 47.54995], [-111.455614, 47.546631], [-111.452477, 47.546143], [-111.452005, 47.546074], [-111.448496, 47.545531], [-111.445301, 47.545037], [-111.443894, 47.544799], [-111.442357, 47.544492], [-111.440907, 47.544162], [-111.439173, 47.543716], [-111.437894, 47.543368], [-111.436512, 47.542957], [-111.435045, 47.54247], [-111.385349, 47.526175], [-111.384241, 47.525793], [-111.383478, 47.52541], [-111.382928, 47.525097], [-111.382499, 47.524784], [-111.382036, 47.524384], [-111.381709, 47.524025], [-111.381452, 47.523741], [-111.380053, 47.521909], [-111.379298, 47.520959], [-111.379152, 47.520779], [-111.378714, 47.520286], [-111.378268, 47.519857], [-111.377555, 47.519394], [-111.376774, 47.518994], [-111.376096, 47.518733], [-111.375409, 47.51853], [-111.374294, 47.518234], [-111.351059, 47.512362], [-111.350081, 47.512055], [-111.348914, 47.511632], [-111.348184, 47.511255], [-111.347446, 47.510878], [-111.346914, 47.510553], [-111.346356, 47.510147], [-111.345832, 47.509759], [-111.345309, 47.509295], [-111.344914, 47.508884], [-111.344605, 47.508542], [-111.344193, 47.50802], [-111.34391, 47.507591], [-111.343618, 47.507133], [-111.343352, 47.506535], [-111.343137, 47.505921], [-111.343, 47.505254], [-111.342914, 47.504779], [-111.342871, 47.504205], [-111.342884, 47.503714], [-111.343017, 47.501337], [-111.343037, 47.500922], [-111.343074, 47.500247], [-111.343153, 47.498866], [-111.343699, 47.489338], [-111.343837, 47.488347], [-111.344051, 47.487517], [-111.344326, 47.486746], [-111.344695, 47.485795], [-111.345184, 47.484855], [-111.345493, 47.484356], [-111.346068, 47.483527], [-111.34715, 47.48221], [-111.347948, 47.481392], [-111.348765, 47.480715], [-111.349751, 47.479978], [-111.350866, 47.47913], [-111.356582, 47.475347], [-111.365214, 47.469592], [-111.367419, 47.46813], [-111.367934, 47.467829], [-111.368578, 47.467492], [-111.36923, 47.467144], [-111.369994, 47.466807], [-111.370973, 47.466407], [-111.371926, 47.466042], [-111.372818, 47.465746], [-111.373522, 47.465525], [-111.374509, 47.465258], [-111.429286, 47.452445], [-111.429621, 47.452364], [-111.473508, 47.442064], [-111.50183, 47.435384], [-111.502749, 47.435175], [-111.503701, 47.434961], [-111.504362, 47.434792], [-111.505221, 47.434543], [-111.506045, 47.434299], [-111.506663, 47.434095], [-111.507143, 47.433927], [-111.507907, 47.433648], [-111.508654, 47.433312], [-111.509255, 47.433045], [-111.509933, 47.432725], [-111.510534, 47.432412], [-111.51122, 47.432029], [-111.51183, 47.431674], [-111.512954, 47.430931], [-111.513546, 47.43049], [-111.524011, 47.422011], [-111.569141, 47.385345], [-111.6142, 47.348685], [-111.614466, 47.34847], [-111.634341, 47.332266], [-111.69101, 47.285965], [-111.692683, 47.284596], [-111.694151, 47.283461], [-111.694838, 47.282943], [-111.696432, 47.281863], [-111.698123, 47.280815], [-111.699024, 47.280297], [-111.699436, 47.280064], [-111.703522, 47.277671], [-111.704183, 47.27728], [-111.704689, 47.276966], [-111.70511, 47.276686], [-111.705436, 47.276442], [-111.705788, 47.276139], [-111.706182, 47.275766], [-111.706612, 47.275289], [-111.706989, 47.274806], [-111.707367, 47.274264], [-111.707573, 47.273856], [-111.707813, 47.273379], [-111.707933, 47.273047], [-111.708045, 47.272651], [-111.708122, 47.272307], [-111.708199, 47.271911], [-111.708234, 47.271544], [-111.708234, 47.271212], [-111.708157, 47.264538], [-111.708114, 47.262342], [-111.708122, 47.261794], [-111.708157, 47.261369], [-111.708234, 47.260851], [-111.708268, 47.260653], [-111.708337, 47.260257], [-111.708508, 47.259511], [-111.708637, 47.258923], [-111.708783, 47.258241], [-111.70898, 47.257536], [-111.709152, 47.256942], [-111.709298, 47.256383], [-111.710079, 47.25333], [-111.710328, 47.252363], [-111.710474, 47.251833], [-111.710637, 47.251332], [-111.710834, 47.250889], [-111.71104, 47.250545], [-111.711367, 47.250085], [-111.711658, 47.249753], [-111.711942, 47.249444], [-111.712345, 47.249089], [-111.712766, 47.248751], [-111.71316, 47.248494], [-111.713624, 47.248221], [-111.714147, 47.247958], [-111.714834, 47.247655], [-111.729726, 47.241112], [-111.73291, 47.239807], [-111.75169, 47.232534], [-111.754093, 47.231624], [-111.75635, 47.230861], [-111.75676, 47.230739], [-111.765002, 47.228413], [-111.765835, 47.228157], [-111.766633, 47.227877], [-111.767345, 47.227597], [-111.768092, 47.227306], [-111.768719, 47.227026], [-111.769474, 47.226676], [-111.770058, 47.226361], [-111.770727, 47.225988], [-111.771448, 47.225534], [-111.772118, 47.225096], [-111.772693, 47.224688], [-111.773405, 47.22417], [-111.773714, 47.223936], [-111.774169, 47.223575], [-111.774641, 47.223103], [-111.775104, 47.222619], [-111.775499, 47.222211], [-111.775885, 47.221774], [-111.776306, 47.221255], [-111.776658, 47.220777], [-111.77695, 47.220369], [-111.777422, 47.219611], [-111.777722, 47.219057], [-111.778014, 47.218422], [-111.778289, 47.217746], [-111.778503, 47.217104], [-111.778675, 47.216428], [-111.778881, 47.215694], [-111.779061, 47.214988], [-111.780057, 47.210796], [-111.780203, 47.210213], [-111.780323, 47.209758], [-111.780435, 47.209397], [-111.780641, 47.208808], [-111.780907, 47.208201], [-111.78113, 47.207729], [-111.781301, 47.207438], [-111.781499, 47.207129], [-111.78228, 47.205916], [-111.783293, 47.204645], [-111.783936, 47.203974], [-111.784735, 47.203146], [-111.785593, 47.202225], [-111.786314, 47.201466], [-111.786872, 47.200883], [-111.787902, 47.199845], [-111.788254, 47.199507], [-111.788674, 47.19914], [-111.789086, 47.19879], [-111.789584, 47.198387], [-111.790168, 47.197921], [-111.790605, 47.197618], [-111.791249, 47.197227], [-111.791824, 47.196877], [-111.792545, 47.196474], [-111.793198, 47.196136], [-111.79397, 47.195769], [-111.794805, 47.195425], [-111.801248, 47.192835], [-111.801575, 47.192701], [-111.802656, 47.192287], [-111.803514, 47.191937], [-111.804167, 47.191628], [-111.804665, 47.191394], [-111.8053, 47.191045], [-111.805723, 47.190797], [-111.805997, 47.190634], [-111.806478, 47.190323], [-111.806732, 47.190144], [-111.80699, 47.189955], [-111.807242, 47.189755], [-111.807499, 47.189537], [-111.807978, 47.189108], [-111.808309, 47.188784], [-111.808738, 47.188316], [-111.809145, 47.187831], [-111.809375, 47.187515], [-111.809578, 47.187207], [-111.809725, 47.186968], [-111.809941, 47.18658], [-111.810196, 47.186052], [-111.810485, 47.185392], [-111.810582, 47.185034], [-111.810757, 47.184458], [-111.81087, 47.184068], [-111.811288, 47.182591], [-111.811466, 47.182023], [-111.811592, 47.181562], [-111.811725, 47.181068], [-111.811881, 47.18053], [-111.812016, 47.179972], [-111.812133, 47.179486], [-111.812304, 47.178698], [-111.812475, 47.177933], [-111.812795, 47.176671], [-111.813022, 47.175805], [-111.813143, 47.175313], [-111.813289, 47.174743], [-111.813451, 47.174086], [-111.813587, 47.173603], [-111.813709, 47.173199], [-111.813868, 47.172742], [-111.814052, 47.172177], [-111.81431, 47.171374], [-111.814446, 47.170953], [-111.814555, 47.170592], [-111.814621, 47.170315], [-111.814724, 47.169845], [-111.814867, 47.169286], [-111.814924, 47.169023], [-111.815005, 47.168585], [-111.81512, 47.168075], [-111.815267, 47.167513], [-111.81537, 47.167124], [-111.815534, 47.166596], [-111.815743, 47.165879], [-111.815883, 47.165407], [-111.816017, 47.16497], [-111.816151, 47.164499], [-111.816299, 47.164102], [-111.816455, 47.163605], [-111.816606, 47.163233], [-111.81675, 47.162929], [-111.8169, 47.16265], [-111.817163, 47.162234], [-111.817461, 47.161792], [-111.817707, 47.161428], [-111.817918, 47.161172], [-111.818109, 47.160939], [-111.81826, 47.160773], [-111.818436, 47.160598], [-111.818713, 47.160322], [-111.819137, 47.159916], [-111.819338, 47.159742], [-111.819615, 47.159506], [-111.819811, 47.159353], [-111.820101, 47.159137], [-111.820886, 47.158653], [-111.821347, 47.158391], [-111.821709, 47.158179], [-111.82215, 47.157949], [-111.822792, 47.157656], [-111.823291, 47.157407], [-111.823951, 47.157074], [-111.824604, 47.156773], [-111.824926, 47.156618], [-111.826016, 47.156075], [-111.826777, 47.155704], [-111.827118, 47.155527], [-111.827632, 47.155278], [-111.828833, 47.154684], [-111.830331, 47.153967], [-111.83092, 47.153679], [-111.831417, 47.153485], [-111.831694, 47.153394], [-111.831937, 47.15332], [-111.832157, 47.153261], [-111.832517, 47.15318], [-111.832892, 47.153117], [-111.833253, 47.153076], [-111.833573, 47.153049], [-111.833993, 47.153025], [-111.834559, 47.153049], [-111.835126, 47.153113], [-111.835701, 47.1532], [-111.83595, 47.153259], [-111.841856, 47.154858], [-111.842362, 47.155002], [-111.842712, 47.155094], [-111.843019, 47.155158], [-111.843672, 47.155257], [-111.8438, 47.155267], [-111.844087, 47.155287], [-111.844399, 47.155286], [-111.844699, 47.15528], [-111.845058, 47.15526], [-111.845509, 47.155193], [-111.845869, 47.155122], [-111.846291, 47.155019], [-111.846644, 47.154905], [-111.846928, 47.154785], [-111.847126, 47.154685], [-111.847479, 47.154504], [-111.847736, 47.154346], [-111.847908, 47.15421], [-111.848115, 47.154036], [-111.848251, 47.153894], [-111.848342, 47.153792], [-111.84847, 47.153647], [-111.848543, 47.153546], [-111.848649, 47.153419], [-111.848764, 47.153232], [-111.848861, 47.153032], [-111.848947, 47.152823], [-111.848973, 47.152708], [-111.849021, 47.152541], [-111.849042, 47.152364], [-111.849077, 47.152131], [-111.849103, 47.151825], [-111.849333, 47.149062], [-111.849393, 47.148406], [-111.8494, 47.148192], [-111.849408, 47.147987], [-111.8494, 47.147824], [-111.84939, 47.147698], [-111.849374, 47.147556], [-111.849347, 47.147435], [-111.849331, 47.147351], [-111.849245, 47.146966], [-111.849142, 47.146674], [-111.849059, 47.146434], [-111.848943, 47.146212], [-111.84886, 47.146053], [-111.848767, 47.145896], [-111.848673, 47.145762], [-111.848566, 47.14562], [-111.847025, 47.143717], [-111.846887, 47.143525], [-111.846766, 47.143353], [-111.846661, 47.14319], [-111.846521, 47.142953], [-111.846415, 47.142749], [-111.846343, 47.142591], [-111.846269, 47.14237], [-111.846241, 47.142263], [-111.846223, 47.14217], [-111.846209, 47.142062], [-111.84619, 47.141876], [-111.846192, 47.141745], [-111.846217, 47.141528], [-111.846242, 47.141353], [-111.84627, 47.141184], [-111.846324, 47.141016], [-111.846398, 47.140797], [-111.846525, 47.140531], [-111.846604, 47.14041], [-111.846676, 47.14029], [-111.846846, 47.140059], [-111.847142, 47.139751], [-111.847281, 47.13963], [-111.84746, 47.139479], [-111.847678, 47.139323], [-111.84791, 47.139171], [-111.848186, 47.139013], [-111.848438, 47.138891], [-111.848706, 47.138772], [-111.848984, 47.138674], [-111.849267, 47.138581], [-111.849592, 47.138477], [-111.849947, 47.138393], [-111.850257, 47.138331], [-111.850556, 47.138292], [-111.850908, 47.138241], [-111.851241, 47.13822], [-111.85164, 47.138209], [-111.851974, 47.13821], [-111.852237, 47.138223], [-111.852532, 47.138247], [-111.852795, 47.138276], [-111.853123, 47.13833], [-111.853394, 47.138374], [-111.853787, 47.138457], [-111.854766, 47.138667], [-111.855826, 47.138884], [-111.856179, 47.13897], [-111.856565, 47.139029], [-111.856792, 47.139068], [-111.857173, 47.13911], [-111.857431, 47.139137], [-111.857676, 47.139157], [-111.858048, 47.139176], [-111.858338, 47.139177], [-111.858762, 47.139167], [-111.859155, 47.139148], [-111.85955, 47.139117], [-111.859805, 47.139089], [-111.860245, 47.139022], [-111.860491, 47.13898], [-111.860683, 47.138944], [-111.860973, 47.138885], [-111.861214, 47.138829], [-111.861479, 47.138758], [-111.861743, 47.138677], [-111.862069, 47.138562], [-111.862344, 47.138449], [-111.862687, 47.138297], [-111.862931, 47.138175], [-111.863114, 47.138087], [-111.863314, 47.137975], [-111.863599, 47.137807], [-111.863972, 47.13756], [-111.864261, 47.137341], [-111.864442, 47.137202], [-111.864674, 47.137005], [-111.864969, 47.136736], [-111.865258, 47.13642], [-111.867853, 47.13324], [-111.868102, 47.13296], [-111.868445, 47.132657], [-111.868909, 47.132347], [-111.869372, 47.132096], [-111.869776, 47.131938], [-111.870291, 47.131792], [-111.870754, 47.131687], [-111.871286, 47.131623], [-111.87181, 47.131605], [-111.872359, 47.131617], [-111.873389, 47.131705], [-111.875681, 47.131897], [-111.885054, 47.132785], [-111.886566, 47.132886], [-111.888607, 47.1331], [-111.888985, 47.133135], [-111.889766, 47.133217], [-111.890444, 47.133281], [-111.891225, 47.133322], [-111.891886, 47.133334], [-111.892598, 47.133334], [-111.893242, 47.133316], [-111.8938, 47.133305], [-111.894512, 47.133246], [-111.89513, 47.133194], [-111.89563, 47.133132], [-111.896274, 47.133044], [-111.89678, 47.132974], [-111.898531, 47.132636], [-111.899656, 47.132344], [-111.900711, 47.132022], [-111.901398, 47.131783], [-111.902445, 47.131403], [-111.904162, 47.130755], [-111.909034, 47.128927], [-111.913729, 47.127181], [-111.917251, 47.125878], [-111.92071, 47.1247], [-111.921698, 47.124251], [-111.922387, 47.123838], [-111.922806, 47.123526], [-111.924809, 47.121884], [-111.925527, 47.121467], [-111.926631, 47.121045], [-111.927545, 47.120838], [-111.928844, 47.120679], [-111.939954, 47.119561], [-111.940893, 47.119375], [-111.941491, 47.119193], [-111.94258, 47.118694], [-111.94328, 47.118205], [-111.943682, 47.117842], [-111.944167, 47.117216], [-111.94437, 47.116782], [-111.94452, 47.116283], [-111.944594, 47.115646], [-111.944471, 47.113184], [-111.944519, 47.112085], [-111.944699, 47.111164], [-111.9451, 47.109855], [-111.94519, 47.109613], [-111.946818, 47.104798], [-111.947185, 47.103915], [-111.94757, 47.103215], [-111.948705, 47.101708], [-111.95025, 47.099859], [-111.951568, 47.098237], [-111.952318, 47.097326], [-111.952866, 47.096646], [-111.954165, 47.094457], [-111.954536, 47.093996], [-111.955001, 47.093573], [-111.95538, 47.093283], [-111.95597, 47.092921], [-111.958022, 47.092174], [-111.958929, 47.091665], [-111.959563, 47.091145], [-111.959918, 47.090782], [-111.960199, 47.090406], [-111.960514, 47.089782], [-111.960679, 47.089121], [-111.961076, 47.083974], [-111.961218, 47.083113], [-111.961515, 47.082259], [-111.962027, 47.081188], [-111.962536, 47.080367], [-111.963148, 47.079581], [-111.964601, 47.078023], [-111.966718, 47.075826], [-111.967024, 47.075517], [-111.969094, 47.073375], [-111.970437, 47.07194], [-111.972154, 47.070032], [-111.973432, 47.068542], [-111.974103, 47.067809], [-111.974604, 47.067107], [-111.976616, 47.064731], [-111.98105, 47.059331], [-111.981811, 47.058552], [-111.982905, 47.057585], [-111.983864, 47.057007], [-111.985011, 47.056354], [-111.986314, 47.055712], [-111.986853, 47.055504], [-111.987827, 47.055224], [-111.990272, 47.054577], [-111.991627, 47.053954], [-111.992491, 47.053494], [-111.993301, 47.052977], [-111.994268, 47.05221], [-111.994901, 47.051592], [-112.00108, 47.045261], [-112.002131, 47.044014], [-112.002341, 47.043639], [-112.002459, 47.043291], [-112.00254, 47.04249], [-112.002551, 47.041633], [-112.002802, 47.040468], [-112.003031, 47.039996], [-112.003311, 47.039629], [-112.00408, 47.038901], [-112.004669, 47.038537], [-112.005381, 47.038191], [-112.006132, 47.03787], [-112.007591, 47.037508], [-112.008057, 47.037437], [-112.009475, 47.037313], [-112.012696, 47.037258], [-112.01489, 47.037245], [-112.016275, 47.037163], [-112.0192, 47.037033], [-112.020595, 47.036893], [-112.021841, 47.036661], [-112.023428, 47.036288], [-112.024543, 47.035923], [-112.025634, 47.03549], [-112.026621, 47.035004], [-112.027875, 47.034259], [-112.04368, 47.024236], [-112.044909, 47.023441], [-112.04544, 47.023036], [-112.04608, 47.022418], [-112.046528, 47.021863], [-112.046751, 47.021531], [-112.046895, 47.021189], [-112.048457, 47.017223], [-112.049379, 47.014861], [-112.04961, 47.014335], [-112.049878, 47.013819], [-112.050194, 47.013314], [-112.050556, 47.012813], [-112.050955, 47.01233], [-112.051351, 47.011873], [-112.051809, 47.011423], [-112.052303, 47.010991], [-112.05283, 47.010576], [-112.053387, 47.010182], [-112.053972, 47.009806], [-112.056998, 47.008006], [-112.058515, 47.007109], [-112.060333, 47.006031], [-112.061846, 47.00513], [-112.062472, 47.004869], [-112.062889, 47.004741], [-112.063358, 47.004645], [-112.063683, 47.004606], [-112.064074, 47.004561], [-112.064445, 47.004519], [-112.06488, 47.004576], [-112.06527, 47.004629], [-112.065565, 47.004697], [-112.065974, 47.004792], [-112.066808, 47.004991], [-112.06824, 47.005361], [-112.0686, 47.005467], [-112.069096, 47.005596], [-112.069473, 47.005688], [-112.069732, 47.005745], [-112.070266, 47.005855], [-112.070699, 47.005951], [-112.071253, 47.006048], [-112.071642, 47.006114], [-112.071928, 47.006158], [-112.072302, 47.006209], [-112.072735, 47.006263], [-112.072984, 47.006287], [-112.073367, 47.006318], [-112.073792, 47.006352], [-112.074219, 47.006372], [-112.074542, 47.006382], [-112.074829, 47.00639], [-112.075178, 47.006392], [-112.075603, 47.006393], [-112.076788, 47.006332], [-112.077271, 47.006281], [-112.077628, 47.006225], [-112.078026, 47.006153], [-112.078436, 47.006074], [-112.078755, 47.005996], [-112.079201, 47.005866], [-112.079533, 47.005747], [-112.079812, 47.00563], [-112.080082, 47.005495], [-112.080379, 47.005332], [-112.080635, 47.005164], [-112.080953, 47.004927], [-112.081049, 47.004826], [-112.081198, 47.004689], [-112.081316, 47.004562], [-112.081449, 47.004379], [-112.081568, 47.004191], [-112.081674, 47.003987], [-112.08174, 47.003858], [-112.081806, 47.003692], [-112.081884, 47.003438], [-112.08191, 47.003275], [-112.081934, 47.003066], [-112.08193, 47.002831], [-112.081896, 47.002597], [-112.081853, 47.002371], [-112.081798, 47.002194], [-112.081607, 47.00176], [-112.081184, 47.001198], [-112.079559, 46.99968], [-112.078016, 46.99838], [-112.07758, 46.997912], [-112.077288, 46.997532], [-112.076986, 46.99693], [-112.076889, 46.996514], [-112.076886, 46.996116], [-112.076984, 46.995478], [-112.07795, 46.992584], [-112.078047, 46.991994], [-112.078024, 46.991594], [-112.077935, 46.9912], [-112.077672, 46.990627], [-112.076129, 46.988425], [-112.075762, 46.987771], [-112.075646, 46.98742], [-112.075619, 46.987055], [-112.075663, 46.986679], [-112.075796, 46.986299], [-112.076008, 46.985921], [-112.076502, 46.98539], [-112.077181, 46.984932], [-112.081242, 46.982494], [-112.081853, 46.981972], [-112.082104, 46.981646], [-112.082346, 46.981245], [-112.082526, 46.98074], [-112.082567, 46.980266], [-112.082681, 46.977427], [-112.082826, 46.974499], [-112.083032, 46.973709], [-112.083438, 46.973098], [-112.083941, 46.972667], [-112.084536, 46.97225], [-112.093815, 46.965771], [-112.094034, 46.965596], [-112.094318, 46.965306], [-112.094501, 46.965085], [-112.094642, 46.964864], [-112.094785, 46.964575], [-112.094868, 46.964338], [-112.094926, 46.964081], [-112.094952, 46.963813], [-112.094963, 46.963562], [-112.094964, 46.963005], [-112.094945, 46.962147], [-112.095064, 46.961322], [-112.095315, 46.960775], [-112.095663, 46.960328], [-112.098599, 46.957746], [-112.098975, 46.957432], [-112.099726, 46.956946], [-112.100314, 46.956644], [-112.101038, 46.956326], [-112.103946, 46.955297], [-112.107802, 46.953955], [-112.108475, 46.953671], [-112.108901, 46.953445], [-112.109465, 46.953038], [-112.109979, 46.952469], [-112.110197, 46.952042], [-112.111502, 46.949682], [-112.112324, 46.948952], [-112.113184, 46.948533], [-112.114208, 46.948308], [-112.116111, 46.948021], [-112.117289, 46.947669], [-112.118334, 46.94705], [-112.119549, 46.946068], [-112.122402, 46.943642], [-112.123133, 46.943013], [-112.123553, 46.942583], [-112.12389, 46.942171], [-112.124619, 46.941266], [-112.125571, 46.939982], [-112.126015, 46.939377], [-112.1265, 46.938749], [-112.126751, 46.938397], [-112.126995, 46.938014], [-112.127231, 46.93766], [-112.127472, 46.93708], [-112.127553, 46.936521], [-112.127485, 46.935878], [-112.126037, 46.931011], [-112.125843, 46.930596], [-112.125614, 46.930288], [-112.125356, 46.930017], [-112.125, 46.92973], [-112.122981, 46.928549], [-112.122668, 46.928293], [-112.122315, 46.927871], [-112.122099, 46.927296], [-112.122093, 46.926792], [-112.122341, 46.926128], [-112.12333, 46.924835], [-112.123628, 46.924404], [-112.123835, 46.923877], [-112.123883, 46.923325], [-112.123775, 46.9228], [-112.123494, 46.922251], [-112.123242, 46.921939], [-112.123161, 46.921857], [-112.12174, 46.920823], [-112.121416, 46.920602], [-112.120977, 46.920179], [-112.120697, 46.919775], [-112.120503, 46.919327], [-112.120322, 46.918471], [-112.119667, 46.915666], [-112.11939, 46.915074], [-112.119062, 46.914644], [-112.118506, 46.91421], [-112.116708, 46.913328], [-112.116193, 46.912968], [-112.115472, 46.912187], [-112.115356, 46.911933], [-112.115279, 46.911728], [-112.115241, 46.911454], [-112.11523, 46.911175], [-112.115266, 46.910915], [-112.115368, 46.910602], [-112.115446, 46.910438], [-112.115662, 46.910084], [-112.11604, 46.909673], [-112.119395, 46.907257], [-112.119896, 46.906695], [-112.120633, 46.90538], [-112.120979, 46.904986], [-112.122506, 46.903673], [-112.12294, 46.903177], [-112.123172, 46.902727], [-112.123344, 46.902186], [-112.12337, 46.901665], [-112.12326, 46.90114], [-112.123004, 46.900542], [-112.122296, 46.899463], [-112.118791, 46.893932], [-112.118077, 46.892887], [-112.117488, 46.892253], [-112.11672, 46.891638], [-112.11608, 46.891253], [-112.114112, 46.89021], [-112.110716, 46.888379], [-112.110338, 46.888159], [-112.106096, 46.885885], [-112.101398, 46.88336], [-112.094609, 46.879651], [-112.0931, 46.878959], [-112.091311, 46.878288], [-112.089958, 46.877867], [-112.088521, 46.877511], [-112.069016, 46.872724], [-112.049279, 46.867857], [-112.047103, 46.867189], [-112.044993, 46.866382], [-112.043719, 46.865827], [-112.042541, 46.865241], [-112.040586, 46.864168], [-112.039263, 46.863298], [-112.037988, 46.862365], [-112.036738, 46.86133], [-112.014076, 46.842104], [-112.012788, 46.840941], [-112.011749, 46.839918], [-112.010445, 46.83844], [-112.009025, 46.83667], [-112.007922, 46.83499], [-112.007123, 46.833605], [-112.006361, 46.832073], [-112.005882, 46.830963], [-112.003109, 46.824179], [-112.002795, 46.823308], [-112.001559, 46.820272], [-112.001405, 46.819943], [-112.001005, 46.818846], [-112.000667, 46.817632], [-112.000578, 46.816809], [-112.000493, 46.815794], [-112.000516, 46.814928], [-112.000693, 46.813761], [-112.001162, 46.812127], [-112.001628, 46.811112], [-112.002462, 46.809713], [-112.003317, 46.808598], [-112.004049, 46.80782], [-112.005118, 46.806834], [-112.006592, 46.805739], [-112.028016, 46.792156], [-112.029741, 46.790912], [-112.030745, 46.79008], [-112.031484, 46.78938], [-112.032257, 46.788498], [-112.033266, 46.787176], [-112.033873, 46.786179], [-112.034356, 46.785153], [-112.03474, 46.784222], [-112.035041, 46.783106], [-112.035281, 46.78179], [-112.035332, 46.780429], [-112.035162, 46.778932], [-112.034994, 46.7781], [-112.034623, 46.77676], [-112.031439, 46.767593], [-112.030872, 46.766116], [-112.03058, 46.765566], [-112.0298, 46.76452], [-112.029051, 46.763776], [-112.027625, 46.762715], [-112.021142, 46.759474], [-112.019784, 46.758674], [-112.018427, 46.757701], [-112.017026, 46.756401], [-112.01646, 46.75581], [-112.015787, 46.754949], [-112.015034, 46.753726], [-112.014675, 46.752957], [-112.014369, 46.752178], [-112.014113, 46.751252], [-112.013978, 46.7503], [-112.013965, 46.748917], [-112.01407, 46.747974], [-112.014425, 46.74657], [-112.017111, 46.737855], [-112.017375, 46.736784], [-112.017607, 46.735355], [-112.017673, 46.734409], [-112.017685, 46.733581], [-112.017588, 46.732104], [-112.017413, 46.730961], [-112.016851, 46.728893], [-112.016052, 46.726997], [-112.015229, 46.725474], [-112.014031, 46.723297], [-112.013406, 46.721963], [-112.012932, 46.720654], [-112.012536, 46.719097], [-112.012339, 46.717599], [-112.012283, 46.716345], [-112.012185, 46.707222], [-112.012075, 46.70024], [-112.011602, 46.660701], [-112.011601, 46.660313], [-112.011436, 46.648193], [-112.011441, 46.648028], [-112.011427, 46.646569], [-112.011246, 46.631754], [-112.011146, 46.621062], [-112.011132, 46.619553], [-112.01109, 46.616805], [-112.011059, 46.614798], [-112.011048, 46.61406], [-112.011037, 46.613709], [-112.010993, 46.613319], [-112.010941, 46.613077], [-112.010877, 46.612674], [-112.010838, 46.612474], [-112.010746, 46.61207], [-112.01064, 46.611666], [-112.010587, 46.611464], [-112.010508, 46.611263], [-112.010314, 46.610728], [-112.010256, 46.610545], [-112.010198, 46.610369], [-112.009915, 46.609824], [-112.009739, 46.609444], [-112.009564, 46.609128], [-112.009295, 46.608718], [-112.006524, 46.603944], [-112.003906, 46.599455], [-112.002681, 46.597363], [-112.001205, 46.594784], [-112, 46.592799], [-111.999632, 46.592286], [-111.999301, 46.591861], [-111.998522, 46.590983], [-111.99828, 46.590699], [-111.997972, 46.590398], [-111.996867, 46.589396], [-111.996488, 46.589096], [-111.995735, 46.58854], [-111.988743, 46.583855], [-111.983795, 46.580551], [-111.98049, 46.578347], [-111.978312, 46.576892], [-111.976196, 46.575478], [-111.970612, 46.571744], [-111.969019, 46.570651], [-111.966637, 46.569071], [-111.957631, 46.563066], [-111.956867, 46.562459], [-111.956078, 46.56178], [-111.955528, 46.561278], [-111.95503, 46.560765], [-111.954464, 46.560133], [-111.953992, 46.559508], [-111.953623, 46.558994], [-111.953365, 46.558587], [-111.953022, 46.558003], [-111.95261, 46.557224], [-111.951443, 46.55468], [-111.946695, 46.544203], [-111.946304, 46.54331], [-111.945744, 46.542172], [-111.945185, 46.540831], [-111.944611, 46.539567], [-111.943999, 46.538252], [-111.943392, 46.536869], [-111.941186, 46.532081], [-111.940903, 46.53142], [-111.940559, 46.530629], [-111.940379, 46.530109], [-111.940293, 46.529684], [-111.940268, 46.529241], [-111.940319, 46.528857], [-111.940422, 46.528432], [-111.940568, 46.528025], [-111.94074, 46.527676], [-111.940971, 46.527322], [-111.941246, 46.527003], [-111.941667, 46.526619], [-111.943134, 46.525497], [-111.943589, 46.525125], [-111.94401, 46.524718], [-111.944344, 46.524346], [-111.944662, 46.523974], [-111.944902, 46.523625], [-111.945151, 46.52323], [-111.9454, 46.522775], [-111.945606, 46.522326], [-111.945744, 46.521966], [-111.945855, 46.521511], [-111.947984, 46.511742], [-111.948095, 46.51137], [-111.948361, 46.510661], [-111.949408, 46.508074], [-111.952344, 46.500837], [-111.952541, 46.500393], [-111.952825, 46.499944], [-111.953168, 46.49946], [-111.953494, 46.499105], [-111.953932, 46.498775], [-111.954764, 46.49819], [-111.958575, 46.495909], [-111.959245, 46.495501], [-111.960052, 46.495017], [-111.961021, 46.494414], [-111.961871, 46.493912], [-111.962729, 46.493415], [-111.963579, 46.492825], [-111.964025, 46.4925], [-111.964661, 46.492015], [-111.965124, 46.491625], [-111.965656, 46.491123], [-111.966369, 46.49042], [-111.96709, 46.489651], [-111.976325, 46.479522], [-111.976891, 46.478848], [-111.977312, 46.47834], [-111.977733, 46.477808], [-111.977973, 46.477465], [-111.978127, 46.477211], [-111.978282, 46.476974], [-111.97884, 46.475928], [-111.979217, 46.475042], [-111.980033, 46.473044], [-111.980271, 46.472374], [-111.980435, 46.471976], [-111.980677, 46.471349], [-111.980952, 46.470648], [-111.981239, 46.4699], [-111.981493, 46.46921], [-111.981736, 46.468592], [-111.981874, 46.468256], [-111.982316, 46.467018], [-111.982732, 46.465939], [-111.982851, 46.465572], [-111.983251, 46.464294], [-111.983315, 46.464025], [-111.983475, 46.463313], [-111.983818, 46.462054], [-111.98424, 46.460487], [-111.985346, 46.456259], [-111.985844, 46.45432], [-111.986814, 46.450701], [-111.986994, 46.449938], [-111.987251, 46.449004], [-111.987543, 46.4483], [-111.987809, 46.447709], [-111.988255, 46.446833], [-111.990024, 46.443882], [-111.990719, 46.44254], [-111.99283, 46.438169], [-111.995886, 46.431816], [-111.996143, 46.431165], [-111.996341, 46.430644], [-111.996598, 46.42984], [-111.996753, 46.429213], [-111.99689, 46.428609], [-111.997405, 46.425385], [-111.997642, 46.424314], [-111.997932, 46.423545], [-111.998107, 46.423114], [-111.99835, 46.422586], [-111.998575, 46.422164], [-111.998884, 46.421653], [-111.999228, 46.421145], [-111.999447, 46.420848], [-111.999923, 46.420267], [-112.000156, 46.42], [-112.000433, 46.41971], [-112.00089, 46.419258], [-112.001482, 46.418746], [-112.002113, 46.418226], [-112.00272, 46.417745], [-112.002961, 46.417554], [-112.003548, 46.417078], [-112.004211, 46.41654], [-112.004746, 46.416099], [-112.005461, 46.41553], [-112.005985, 46.415112], [-112.006394, 46.414775], [-112.006854, 46.414405], [-112.007245, 46.4141], [-112.00765, 46.413758], [-112.00797, 46.413501], [-112.008169, 46.413338], [-112.008593, 46.412997], [-112.009014, 46.412645], [-112.009385, 46.412341], [-112.009697, 46.412025], [-112.010255, 46.411528], [-112.010946, 46.410853], [-112.011431, 46.410352], [-112.011895, 46.409867], [-112.012165, 46.409569], [-112.012675, 46.408992], [-112.013067, 46.408517], [-112.013404, 46.408107], [-112.013911, 46.407447], [-112.014218, 46.407046], [-112.014492, 46.406653], [-112.015033, 46.405845], [-112.01524, 46.405542], [-112.015368, 46.405329], [-112.015741, 46.40471], [-112.015972, 46.404308], [-112.016318, 46.403688], [-112.016624, 46.403056], [-112.01703, 46.402204], [-112.017522, 46.401159], [-112.017917, 46.400311], [-112.019197, 46.397512], [-112.019961, 46.395938], [-112.020503, 46.394858], [-112.020846, 46.394173], [-112.021172, 46.393579], [-112.021321, 46.393351], [-112.021496, 46.393063], [-112.021714, 46.392713], [-112.021925, 46.392391], [-112.022307, 46.391799], [-112.022576, 46.391431], [-112.02269, 46.391255], [-112.022776, 46.391138], [-112.023072, 46.390745], [-112.023396, 46.390333], [-112.023636, 46.390016], [-112.02407, 46.389472], [-112.02447, 46.388962], [-112.025293, 46.387893], [-112.025518, 46.387587], [-112.025835, 46.387153], [-112.02604, 46.386874], [-112.026296, 46.386489], [-112.026502, 46.386192], [-112.026698, 46.385898], [-112.027204, 46.385069], [-112.027659, 46.384252], [-112.027743, 46.384088], [-112.0278, 46.383963], [-112.02782, 46.383925], [-112.027998, 46.383561], [-112.028106, 46.383379], [-112.028359, 46.382926], [-112.028737, 46.382022], [-112.029617, 46.379591], [-112.030115, 46.378271], [-112.030424, 46.377365], [-112.030767, 46.376572], [-112.031059, 46.375944], [-112.033059, 46.372077], [-112.033626, 46.37091], [-112.033917, 46.370342], [-112.034252, 46.369714], [-112.034492, 46.369293], [-112.03481, 46.368766], [-112.035136, 46.368298], [-112.035445, 46.367848], [-112.03584, 46.367386], [-112.036295, 46.366877], [-112.036879, 46.366249], [-112.043015, 46.359532], [-112.043436, 46.359053], [-112.043754, 46.358638], [-112.044011, 46.358283], [-112.044234, 46.357927], [-112.044475, 46.357501], [-112.044698, 46.357062], [-112.044852, 46.356719], [-112.044972, 46.356357], [-112.045093, 46.355972], [-112.045204, 46.355534], [-112.045281, 46.355173], [-112.04535, 46.354693], [-112.045384, 46.354284], [-112.045376, 46.353828], [-112.045359, 46.353206], [-112.045058, 46.350658], [-112.045032, 46.350072], [-112.045075, 46.349545], [-112.045178, 46.349154], [-112.045317, 46.348787], [-112.045481, 46.348449], [-112.045687, 46.348135], [-112.04591, 46.347851], [-112.046202, 46.347519], [-112.048562, 46.345392], [-112.048862, 46.34509], [-112.049146, 46.34477], [-112.04936, 46.344467], [-112.04954, 46.344153], [-112.049738, 46.343721], [-112.049849, 46.343241], [-112.049884, 46.343028], [-112.049892, 46.342755], [-112.049884, 46.3424], [-112.049806, 46.341931], [-112.049396, 46.34035], [-112.049218, 46.339673], [-112.049159, 46.33933], [-112.049143, 46.339002], [-112.049168, 46.338597], [-112.049229, 46.338284], [-112.049292, 46.338051], [-112.049341, 46.337839], [-112.049439, 46.337616], [-112.049559, 46.337404], [-112.0497, 46.337162], [-112.049936, 46.33687], [-112.05015, 46.336595], [-112.054836, 46.331763], [-112.055497, 46.33117], [-112.055875, 46.33085], [-112.056372, 46.33053], [-112.05687, 46.330263], [-112.057445, 46.330044], [-112.058132, 46.329789], [-112.060261, 46.329273], [-112.060879, 46.329137], [-112.061445, 46.328959], [-112.061994, 46.328752], [-112.062561, 46.32845], [-112.06317, 46.3281], [-112.063625, 46.327786], [-112.064054, 46.327371], [-112.064466, 46.326891], [-112.06523, 46.325741], [-112.065677, 46.325125], [-112.066028, 46.324674], [-112.06638, 46.324318], [-112.066904, 46.323868], [-112.067505, 46.323501], [-112.06826, 46.323109], [-112.069642, 46.322445], [-112.070509, 46.322007], [-112.071195, 46.321663], [-112.071728, 46.321378], [-112.07238, 46.320958], [-112.073067, 46.320519], [-112.073762, 46.320045], [-112.074277, 46.319582], [-112.074732, 46.319138], [-112.075169, 46.318705], [-112.075599, 46.318189], [-112.076053, 46.317626], [-112.076371, 46.317182], [-112.076732, 46.316589], [-112.077058, 46.315949], [-112.077616, 46.31452], [-112.077985, 46.313459], [-112.078268, 46.312795], [-112.078491, 46.31232], [-112.0788, 46.311751], [-112.079212, 46.31117], [-112.079718, 46.310435], [-112.0808, 46.308627], [-112.081126, 46.30801], [-112.081375, 46.307316], [-112.081512, 46.306724], [-112.081607, 46.306131], [-112.081735, 46.304998], [-112.081856, 46.304358], [-112.082079, 46.303688], [-112.082319, 46.303172], [-112.082594, 46.302692], [-112.082946, 46.302205], [-112.083306, 46.301814], [-112.083804, 46.301334], [-112.08447, 46.300831], [-112.085263, 46.300355], [-112.086027, 46.299964], [-112.089752, 46.298446], [-112.090979, 46.297859], [-112.091958, 46.297337], [-112.092799, 46.296756], [-112.093486, 46.296287], [-112.094104, 46.295694], [-112.09473, 46.295036], [-112.095159, 46.294538], [-112.09558, 46.293992], [-112.09594, 46.293381], [-112.096445, 46.292397], [-112.096685, 46.291614], [-112.09702, 46.290422], [-112.097449, 46.288406], [-112.097724, 46.287409], [-112.098136, 46.286312], [-112.099116, 46.284397], [-112.099274, 46.284063], [-112.10053, 46.281349], [-112.101118, 46.280084], [-112.102891, 46.276318], [-112.104027, 46.273935], [-112.104859, 46.272141], [-112.105342, 46.271125], [-112.106274, 46.269146], [-112.107087, 46.267404], [-112.111234, 46.258546], [-112.112659, 46.255466], [-112.114521, 46.251525], [-112.114976, 46.250676], [-112.115508, 46.249899], [-112.115937, 46.249329], [-112.116633, 46.248581], [-112.117748, 46.247554], [-112.11925, 46.246504], [-112.12022, 46.245934], [-112.120967, 46.245566], [-112.121954, 46.245133], [-112.124992, 46.244052], [-112.13288, 46.241298], [-112.133387, 46.24112], [-112.138622, 46.239291], [-112.145034, 46.237065], [-112.146141, 46.236745], [-112.147008, 46.236519], [-112.147806, 46.236394], [-112.148459, 46.236305], [-112.149265, 46.236246], [-112.150089, 46.236222], [-112.151042, 46.236246], [-112.151883, 46.236317], [-112.152699, 46.236436], [-112.153471, 46.236584], [-112.154474, 46.236837], [-112.15899, 46.238152], [-112.160595, 46.238543], [-112.162483, 46.238947], [-112.163367, 46.23922], [-112.164054, 46.239529], [-112.164698, 46.239897], [-112.165273, 46.24033], [-112.166844, 46.241642], [-112.167307, 46.241963], [-112.1685, 46.242669], [-112.169144, 46.243085], [-112.169659, 46.24356], [-112.170912, 46.244966], [-112.171367, 46.245364], [-112.172131, 46.245898], [-112.173204, 46.246522], [-112.174276, 46.247169], [-112.174817, 46.24762], [-112.175298, 46.24816], [-112.175555, 46.248587], [-112.17577, 46.248973], [-112.175924, 46.249424], [-112.176336, 46.250552], [-112.176517, 46.25092], [-112.17674, 46.251276], [-112.176997, 46.251626], [-112.177418, 46.252083], [-112.177787, 46.252344], [-112.178165, 46.252617], [-112.180775, 46.254129], [-112.181007, 46.254269], [-112.183097, 46.255454], [-112.183493, 46.255702], [-112.184164, 46.256171], [-112.184905, 46.256737], [-112.185365, 46.257141], [-112.185885, 46.257562], [-112.186185, 46.2578], [-112.186531, 46.258043], [-112.186972, 46.258275], [-112.187322, 46.258422], [-112.187774, 46.258598], [-112.188155, 46.258726], [-112.188842, 46.25893], [-112.190061, 46.259233], [-112.194417, 46.260296], [-112.194914, 46.260425], [-112.197467, 46.261049], [-112.198131, 46.261215], [-112.198816, 46.261348], [-112.200563, 46.261639], [-112.2012, 46.261735], [-112.201697, 46.261796], [-112.202216, 46.261831], [-112.202661, 46.261847], [-112.203293, 46.261844], [-112.203843, 46.26181], [-112.204643, 46.261713], [-112.205502, 46.261541], [-112.206283, 46.261328], [-112.207158, 46.260978], [-112.20773, 46.260725], [-112.208199, 46.260464], [-112.209872, 46.259361], [-112.210845, 46.258723], [-112.211437, 46.258407], [-112.21171, 46.258294], [-112.211974, 46.258207], [-112.212216, 46.258142], [-112.212463, 46.258092], [-112.212751, 46.258048], [-112.213051, 46.258024], [-112.213334, 46.258019], [-112.213692, 46.258035], [-112.213988, 46.258065], [-112.214247, 46.258108], [-112.214549, 46.258186], [-112.21472, 46.258241], [-112.214928, 46.258313], [-112.21526, 46.258456], [-112.215539, 46.258605], [-112.215859, 46.258826], [-112.216123, 46.259059], [-112.216344, 46.259307], [-112.216538, 46.259564], [-112.217304, 46.260578], [-112.217586, 46.260888], [-112.217887, 46.26118], [-112.218436, 46.261654], [-112.219097, 46.262058], [-112.219818, 46.262508], [-112.220179, 46.262823], [-112.220462, 46.263203], [-112.220625, 46.263654], [-112.220625, 46.264105], [-112.220513, 46.26455], [-112.220273, 46.264918], [-112.21993, 46.265238], [-112.219466, 46.265558], [-112.218514, 46.266039], [-112.218288, 46.266167], [-112.218079, 46.266291], [-112.217885, 46.266411], [-112.217737, 46.266539], [-112.217605, 46.266696], [-112.217501, 46.266818], [-112.217396, 46.266989], [-112.21734, 46.267123], [-112.217303, 46.267314], [-112.217283, 46.267445], [-112.217325, 46.267714], [-112.217476, 46.26824], [-112.217544, 46.268438], [-112.217592, 46.268538], [-112.217628, 46.268615], [-112.217724, 46.268751], [-112.217818, 46.268858], [-112.217936, 46.268959], [-112.21813, 46.269104], [-112.218353, 46.26922], [-112.218727, 46.26937], [-112.219166, 46.269489], [-112.219721, 46.269609], [-112.220202, 46.269698], [-112.220646, 46.269797], [-112.220996, 46.2699], [-112.22144, 46.27005], [-112.222711, 46.270631], [-112.223277, 46.270851], [-112.22399, 46.271017], [-112.224668, 46.271076], [-112.225371, 46.270993], [-112.227174, 46.270608], [-112.227989, 46.270507], [-112.22883, 46.270519], [-112.229611, 46.270726], [-112.232341, 46.271693], [-112.232993, 46.27186], [-112.233723, 46.271966], [-112.234744, 46.271978], [-112.239606, 46.271805], [-112.242182, 46.271693], [-112.246347, 46.271502], [-112.246967, 46.271459], [-112.247491, 46.271415], [-112.247911, 46.271379], [-112.248545, 46.271312], [-112.249143, 46.271217], [-112.250763, 46.270938], [-112.251919, 46.270715], [-112.254271, 46.270264], [-112.255138, 46.270086], [-112.255979, 46.269973], [-112.256923, 46.269854], [-112.257798, 46.269753], [-112.258871, 46.269706], [-112.259953, 46.269694], [-112.260408, 46.269688], [-112.260811, 46.269688], [-112.265927, 46.269838], [-112.266364, 46.269845], [-112.268516, 46.269903], [-112.26928, 46.269923], [-112.269822, 46.269932], [-112.270297, 46.269936], [-112.270632, 46.269932], [-112.271986, 46.269899], [-112.272496, 46.269882], [-112.272871, 46.269875], [-112.273201, 46.26988], [-112.273496, 46.269893], [-112.273848, 46.269921], [-112.274451, 46.269986], [-112.275304, 46.270084], [-112.275736, 46.270129], [-112.276214, 46.270171], [-112.276581, 46.270192], [-112.276954, 46.270201], [-112.277383, 46.270195], [-112.277783, 46.270179], [-112.278217, 46.270151], [-112.278636, 46.270112], [-112.27903, 46.270058], [-112.279521, 46.269977], [-112.280084, 46.269869], [-112.280575, 46.269771], [-112.281036, 46.269673], [-112.281492, 46.269558], [-112.281919, 46.269443], [-112.282407, 46.269304], [-112.28289, 46.269153], [-112.283292, 46.269013], [-112.283616, 46.26889], [-112.283914, 46.268764], [-112.284169, 46.268638], [-112.284394, 46.268516], [-112.284601, 46.268394], [-112.284775, 46.268275], [-112.284955, 46.268131], [-112.285087, 46.268013], [-112.285191, 46.267897], [-112.285277, 46.267793], [-112.285357, 46.267683], [-112.28543, 46.267542], [-112.285505, 46.267379], [-112.285561, 46.267208], [-112.285596, 46.267049], [-112.28561, 46.266897], [-112.285612, 46.266763], [-112.285599, 46.266613], [-112.285569, 46.266448], [-112.285505, 46.266261], [-112.28543, 46.266096], [-112.285194, 46.265664], [-112.285025, 46.265406], [-112.284866, 46.265152], [-112.284775, 46.264974], [-112.284703, 46.264813], [-112.284646, 46.264655], [-112.284614, 46.264507], [-112.284598, 46.264379], [-112.284598, 46.26421], [-112.284617, 46.264062], [-112.284665, 46.263899], [-112.284727, 46.263728], [-112.284759, 46.263669], [-112.284821, 46.263548], [-112.284909, 46.263418], [-112.284995, 46.263313], [-112.285121, 46.263177], [-112.285277, 46.263038], [-112.285408, 46.262932], [-112.285591, 46.262814], [-112.285765, 46.262716], [-112.285998, 46.262614], [-112.286237, 46.262523], [-112.286454, 46.262454], [-112.286722, 46.262397], [-112.286953, 46.262358], [-112.287205, 46.262334], [-112.287431, 46.262324], [-112.287599, 46.262324], [-112.287755, 46.262332], [-112.287908, 46.262343], [-112.28809, 46.262371], [-112.288289, 46.262408], [-112.288533, 46.262469], [-112.28878, 46.262545], [-112.289056, 46.262641], [-112.28941, 46.262779], [-112.292288, 46.263915], [-112.295423, 46.265141], [-112.295772, 46.265276], [-112.296799, 46.265681], [-112.297288, 46.265857], [-112.29766, 46.26597], [-112.297998, 46.266064], [-112.298326, 46.266135], [-112.298693, 46.266202], [-112.29902, 46.266252], [-112.299407, 46.266294], [-112.299973, 46.26635], [-112.301962, 46.266518], [-112.303677, 46.266665], [-112.30416, 46.266715], [-112.304799, 46.266799], [-112.305829, 46.266965], [-112.307302, 46.26725], [-112.307798, 46.267339], [-112.308222, 46.267413], [-112.308627, 46.267476], [-112.308997, 46.267518], [-112.309343, 46.267554], [-112.309617, 46.267578], [-112.309941, 46.267591], [-112.310258, 46.267602], [-112.310641, 46.267611], [-112.310985, 46.267613], [-112.311296, 46.267607], [-112.311658, 46.267591], [-112.312055, 46.267565], [-112.312425, 46.267535], [-112.312795, 46.267492], [-112.313219, 46.267435], [-112.313683, 46.267359], [-112.31408, 46.267281], [-112.314484, 46.267191], [-112.314867, 46.26709], [-112.315256, 46.26698], [-112.315717, 46.266837], [-112.316613, 46.266561], [-112.317018, 46.266437], [-112.317471, 46.266313], [-112.317997, 46.266179], [-112.318925, 46.265949], [-112.320151, 46.265632], [-112.321393, 46.265313], [-112.325427, 46.26428], [-112.326138, 46.264095], [-112.326859, 46.263917], [-112.327936, 46.263635], [-112.330428, 46.263002], [-112.333211, 46.262287], [-112.334007, 46.262079], [-112.335292, 46.261753], [-112.335686, 46.261652], [-112.336028, 46.261559], [-112.33637, 46.261454], [-112.33667, 46.261355], [-112.336988, 46.261243], [-112.337325, 46.261115], [-112.33768, 46.260971], [-112.338038, 46.260813], [-112.338363, 46.260662], [-112.338625, 46.26053], [-112.338933, 46.260366], [-112.340256, 46.259429], [-112.341003, 46.258829], [-112.341337, 46.25845], [-112.341646, 46.258088], [-112.342041, 46.257506], [-112.342264, 46.257085], [-112.342513, 46.256616], [-112.342736, 46.256052], [-112.343048, 46.25519], [-112.343088, 46.254628], [-112.343114, 46.25404], [-112.342997, 46.253333], [-112.342814, 46.252527], [-112.342556, 46.25188], [-112.341586, 46.249939], [-112.341209, 46.248971], [-112.340942, 46.248152], [-112.340797, 46.247393], [-112.340711, 46.246752], [-112.340698, 46.245956], [-112.340797, 46.24509], [-112.340934, 46.2443], [-112.341088, 46.243617], [-112.341363, 46.242745], [-112.343732, 46.236132], [-112.343955, 46.235443], [-112.344213, 46.23479], [-112.34459, 46.234178], [-112.345088, 46.233513], [-112.346384, 46.231827], [-112.346848, 46.231067], [-112.347062, 46.230402], [-112.347208, 46.229666], [-112.34738, 46.228247], [-112.347457, 46.227659], [-112.347706, 46.22662], [-112.348072, 46.225486], [-112.348787, 46.223592], [-112.349165, 46.22241], [-112.349268, 46.221798], [-112.349251, 46.221163], [-112.348908, 46.218621], [-112.348822, 46.218081], [-112.348822, 46.217392], [-112.348959, 46.216762], [-112.34944, 46.215301], [-112.349521, 46.214586], [-112.349491, 46.214013], [-112.349328, 46.213591], [-112.349028, 46.213021], [-112.348633, 46.212492], [-112.348169, 46.211999], [-112.34762, 46.211619], [-112.346856, 46.211156], [-112.345869, 46.21058], [-112.3452, 46.210051], [-112.344728, 46.209576], [-112.343234, 46.207925], [-112.342659, 46.207307], [-112.341921, 46.206677], [-112.340814, 46.205816], [-112.34041, 46.205465], [-112.340067, 46.205085], [-112.339802, 46.204693], [-112.339704, 46.204467], [-112.339636, 46.204269], [-112.339591, 46.204027], [-112.339612, 46.20382], [-112.339732, 46.203256], [-112.340033, 46.20262], [-112.340582, 46.201913], [-112.341621, 46.200885], [-112.342062, 46.200298], [-112.342242, 46.199944], [-112.342396, 46.199584], [-112.342597, 46.199091], [-112.342775, 46.198631], [-112.343062, 46.198034], [-112.343303, 46.197541], [-112.343792, 46.196904], [-112.344693, 46.196127], [-112.345387, 46.19542], [-112.345729, 46.194938], [-112.345917, 46.194643], [-112.346069, 46.194349], [-112.346166, 46.194045], [-112.346238, 46.193697], [-112.34623, 46.193103], [-112.345941, 46.190673], [-112.345878, 46.189902], [-112.345728, 46.189213], [-112.345709, 46.188344], [-112.345571, 46.187533], [-112.345558, 46.186912], [-112.345564, 46.185992], [-112.345749, 46.183453], [-112.346234, 46.177623], [-112.346347, 46.176821], [-112.346473, 46.176275], [-112.34671, 46.175728], [-112.347062, 46.17511], [-112.347483, 46.174486], [-112.34822, 46.173702], [-112.349208, 46.17291], [-112.3521, 46.171121], [-112.352701, 46.170843], [-112.353354, 46.170627], [-112.354238, 46.170443], [-112.355396, 46.170378], [-112.356246, 46.170461], [-112.358186, 46.170764], [-112.359293, 46.170788], [-112.360246, 46.170669], [-112.361216, 46.170425], [-112.362177, 46.170093], [-112.362941, 46.16973], [-112.363559, 46.169296], [-112.364125, 46.168743], [-112.364529, 46.168119], [-112.365267, 46.167103], [-112.365816, 46.166663], [-112.3664, 46.166336], [-112.367129, 46.166098], [-112.367868, 46.165967], [-112.368692, 46.165944], [-112.371773, 46.166039], [-112.372811, 46.166015], [-112.37367, 46.165902], [-112.374588, 46.165706], [-112.375592, 46.165379], [-112.376571, 46.164951], [-112.377318, 46.164529], [-112.378076, 46.163952], [-112.378262, 46.163762], [-112.378614, 46.163364], [-112.378914, 46.162965], [-112.379469, 46.162169], [-112.382055, 46.158245], [-112.384021, 46.155308], [-112.385566, 46.152959], [-112.387334, 46.150272], [-112.388458, 46.14862], [-112.389451, 46.147108], [-112.391789, 46.143594], [-112.398669, 46.133222], [-112.400972, 46.129712], [-112.4066, 46.121302], [-112.407393, 46.120004], [-112.408182, 46.118582], [-112.408541, 46.117899], [-112.409937, 46.114817], [-112.411055, 46.112333], [-112.412388, 46.109365], [-112.413655, 46.106653], [-112.414778, 46.10418], [-112.415206, 46.103314], [-112.415668, 46.102487], [-112.415895, 46.102106], [-112.416464, 46.101176], [-112.417083, 46.100254], [-112.418499, 46.098356], [-112.418915, 46.09769], [-112.419526, 46.096677], [-112.420233, 46.095398], [-112.422479, 46.091058], [-112.424336, 46.087469], [-112.429652, 46.0772], [-112.429822, 46.076884], [-112.431392, 46.07384], [-112.436257, 46.064391], [-112.436937, 46.063074], [-112.438079, 46.061044], [-112.438376, 46.060532], [-112.438666, 46.060066], [-112.43881, 46.05984], [-112.439098, 46.05943], [-112.43934, 46.059064], [-112.439532, 46.058774], [-112.440107, 46.058002], [-112.44038, 46.05765], [-112.441731, 46.056019], [-112.443485, 46.053949], [-112.447802, 46.048851], [-112.45155, 46.044489], [-112.452423, 46.043435], [-112.452928, 46.042858], [-112.453336, 46.042363], [-112.453672, 46.041989], [-112.454055, 46.041551], [-112.454342, 46.04125], [-112.454665, 46.040886], [-112.456067, 46.039558], [-112.457335, 46.038587], [-112.457987, 46.038059], [-112.458512, 46.037625], [-112.458842, 46.037329], [-112.459071, 46.03709], [-112.459314, 46.036842], [-112.459518, 46.03659], [-112.459678, 46.03639], [-112.4598, 46.036215], [-112.459891, 46.036045], [-112.460007, 46.03582], [-112.460114, 46.03551], [-112.460172, 46.035281], [-112.460249, 46.034999], [-112.460282, 46.034713], [-112.460289, 46.034622], [-112.460306, 46.034393], [-112.46034, 46.034001], [-112.460377, 46.033494], [-112.460788, 46.024225], [-112.460858, 46.022999], [-112.461034, 46.021707], [-112.461139, 46.019417], [-112.461174, 46.018182], [-112.461374, 46.013939], [-112.461433, 46.012326], [-112.461598, 46.009767], [-112.46173, 46.007706], [-112.461826, 46.006592], [-112.461968, 46.00602], [-112.462225, 46.00538], [-112.462565, 46.004722], [-112.463191, 46.004036], [-112.464072, 46.003225], [-112.465792, 46.001872], [-112.466856, 46.001037], [-112.469268, 45.999189], [-112.469946, 45.998682], [-112.470667, 45.998003], [-112.47113, 45.997502], [-112.47156, 45.996917], [-112.471963, 45.99622], [-112.473459, 45.993424], [-112.474051, 45.992464], [-112.474317, 45.992004], [-112.475276, 45.990233], [-112.475566, 45.989642], [-112.476695, 45.987673], [-112.477014, 45.987068], [-112.477395, 45.986399], [-112.477976, 45.985327], [-112.478243, 45.984818], [-112.478421, 45.98455], [-112.478851, 45.983744], [-112.479177, 45.983218], [-112.479374, 45.982981], [-112.479538, 45.982795], [-112.47971, 45.982636], [-112.479894, 45.982492], [-112.480132, 45.982326], [-112.48042, 45.982142], [-112.480713, 45.981993], [-112.481018, 45.981862], [-112.481235, 45.981784], [-112.481491, 45.981708], [-112.481819, 45.981612], [-112.482235, 45.981526], [-112.482576, 45.981485], [-112.482792, 45.981468], [-112.483106, 45.981448], [-112.484674, 45.981411], [-112.485533, 45.981393], [-112.486142, 45.981346], [-112.486888, 45.981343], [-112.488415, 45.981329], [-112.48942, 45.981323], [-112.489915, 45.981311], [-112.490321, 45.981291], [-112.491262, 45.981187], [-112.492077, 45.981092], [-112.492755, 45.980966], [-112.49327, 45.980829], [-112.494197, 45.980567], [-112.495345, 45.9802], [-112.496229, 45.979974], [-112.496927, 45.979831], [-112.497708, 45.979756], [-112.4986, 45.979744], [-112.499484, 45.979774], [-112.500257, 45.979863], [-112.501047, 45.980042], [-112.501432, 45.980146], [-112.501772, 45.980251], [-112.502162, 45.980391], [-112.502441, 45.980505], [-112.502715, 45.980622], [-112.503036, 45.980793], [-112.503323, 45.980946], [-112.503646, 45.981153], [-112.503934, 45.981351], [-112.504203, 45.981566], [-112.504427, 45.981757], [-112.504926, 45.982217], [-112.505529, 45.982793], [-112.505933, 45.983132], [-112.506153, 45.983296], [-112.506336, 45.983431], [-112.506571, 45.983586], [-112.506888, 45.983789], [-112.507196, 45.983956], [-112.507471, 45.984097], [-112.507799, 45.984272], [-112.508512, 45.98456], [-112.508794, 45.984651], [-112.50906, 45.984738], [-112.509415, 45.984842], [-112.509964, 45.984998], [-112.512836, 45.985714], [-112.514063, 45.986044], [-112.515749, 45.986501], [-112.516874, 45.986847], [-112.529602, 45.991803], [-112.530598, 45.992131], [-112.531516, 45.992333], [-112.5324, 45.992476], [-112.533044, 45.992536], [-112.533894, 45.992542], [-112.538675, 45.992548], [-112.539481, 45.992542], [-112.544571, 45.992548], [-112.54755, 45.9925], [-112.549472, 45.992518], [-112.552176, 45.992548], [-112.553189, 45.992614], [-112.554167, 45.992739], [-112.555008, 45.992942], [-112.559798, 45.994337], [-112.560613, 45.994587], [-112.561471, 45.994951], [-112.562235, 45.995404], [-112.562816, 45.995834], [-112.563071, 45.996064], [-112.563323, 45.996326], [-112.563586, 45.996638], [-112.563846, 45.996975], [-112.564136, 45.997384], [-112.564414, 45.997764], [-112.565162, 45.998934], [-112.565743, 45.999683], [-112.566655, 46.000955], [-112.567437, 46.001903], [-112.56802, 46.002517], [-112.568741, 46.003096], [-112.569419, 46.003525], [-112.570063, 46.003859], [-112.570964, 46.004318], [-112.571822, 46.004693], [-112.572895, 46.005009], [-112.573848, 46.00523], [-112.574775, 46.005379], [-112.575728, 46.005463], [-112.577187, 46.005504], [-112.577788, 46.005522], [-112.582056, 46.005676], [-112.594885, 46.006166], [-112.604584, 46.006524], [-112.605451, 46.006619], [-112.607283, 46.006843], [-112.610896, 46.007381], [-112.611152, 46.005948], [-112.61121, 46.005792], [-112.611238, 46.005609], [-112.608284, 46.004266], [-112.607739, 46.003921], [-112.607191, 46.003516], [-112.606953, 46.003377], [-112.606693, 46.003274], [-112.606342, 46.003193], [-112.606239, 46.00317], [-112.604638, 46.002827], [-112.603223, 46.002511], [-112.603052, 46.002473], [-112.60203, 46.002278], [-112.601516, 46.002219], [-112.601276, 46.00221], [-112.600883, 46.002212], [-112.600496, 46.00223], [-112.600404, 46.002208], [-112.60036, 46.002173], [-112.600327, 46.002117], [-112.600314, 46.002059], [-112.600333, 46.001927], [-112.600381, 46.001853], [-112.60049, 46.001777], [-112.600599, 46.001745], [-112.600713, 46.001737], [-112.600862, 46.001739], [-112.601544, 46.001798], [-112.601657, 46.001792], [-112.601804, 46.001767], [-112.601918, 46.001724], [-112.602008, 46.001673], [-112.602239, 46.001528], [-112.602389, 46.001412], [-112.602658, 46.001185], [-112.60307, 46.000822], [-112.603218, 46.000656], [-112.603405, 46.000474], [-112.60366, 46.000513], [-112.603842, 46.000532], [-112.604078, 46.000549], [-112.604254, 46.000547], [-112.605018, 46.00043], [-112.605491, 46.000395], [-112.605766, 46.000402], [-112.606076, 46.000466], [-112.606209, 46.00049], [-112.606364, 46.000494], [-112.606548, 46.000466], [-112.607005, 46.000359], [-112.607412, 46.000312], [-112.611416, 46.000299], [-112.611653, 46.000242], [-112.611812, 46.000145], [-112.611932, 45.999965], [-112.611906, 45.993731], [-112.611956, 45.990322], [-112.611963, 45.987384], [-112.611945, 45.986839], [-112.611983, 45.986517], [-112.612211, 45.985826], [-112.612974, 45.983191], [-112.613351, 45.982047], [-112.613508, 45.981723], [-112.613655, 45.98152], [-112.613973, 45.981284], [-112.61573, 45.980235], [-112.61642, 45.979923], [-112.617405, 45.979519], [-112.618068, 45.979213], [-112.618669, 45.978865], [-112.620246, 45.977619], [-112.620586, 45.977289], [-112.621106, 45.976592], [-112.622154, 45.975079], [-112.622235, 45.974699], [-112.622281, 45.973317], [-112.622078, 45.970234], [-112.619831, 45.970225], [-112.614288, 45.970203] ] } } ] } ================================================ FILE: packages/turf-line-slice/test/out/vertical.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-121.254478, 38.705824], [-121.254494, 38.709767] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-121.254478, 38.705824] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-121.254478, 38.706343] } }, { "type": "Feature", "properties": { "stroke": "#f0f", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-121.254478, 38.705824], [-121.25448, 38.706343] ] } } ] } ================================================ FILE: packages/turf-line-slice/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { truncate } from "@turf/truncate"; import { featureCollection, point, lineString } from "@turf/helpers"; import { lineSlice } from "./index.js"; import { Feature, FeatureCollection, LineString, Point } from "geojson"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename) as FeatureCollection, }; }); test("turf-line-slice", (t) => { for (const { filename, geojson, name } of fixtures) { const [linestring, start, stop] = geojson.features as [ Feature, Feature, Feature, ]; const sliced = truncate(lineSlice(start, stop, linestring)); sliced.properties!["stroke"] = "#f0f"; sliced.properties!["stroke-width"] = 6; const results = featureCollection(geojson.features); results.features.push(sliced); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEquals(results, loadJsonFileSync(directories.out + filename), name); } t.end(); }); test("turf-nearest-point-on-line -- issue 2023", (t) => { const ptStart = point([3.69140625, 51.72702815704774]); const ptEnd = point([0.31936718356317106, 47.93913163509963]); const line = lineString([ [3.69140625, 51.72702815704774], [-5.3173828125, 41.60722821271717], ]); const slice = lineSlice(ptStart, ptEnd, line); t.deepEqual( truncate(slice, { precision: 8 }).geometry.coordinates, [ [3.69140625, 51.72702816], [-0.03079923, 48.08596086], ], "slice should be [[3.69140625, 51.72702816], [-0.03079923, 48.08596086]]" ); t.end(); }); test("issue 2946 - lineSlice didn't introduce duplicate points", (t) => { // Test case copied from https://github.com/Turfjs/turf/issues/2946 // Values rounded to lower precision for realism. Same behaviour as // originally reported though. const startPt = point([2, 0]); const endPt = point([2, 2]); const line = lineString([ [2.999848, 0.000152], [2, -1], [2, 2], ]); const r1 = lineSlice(startPt, endPt, line); t.equal( r1.geometry.coordinates.length, 2, "Two points only in the linestring" ); // This part of the issue report should have already been fixed by the // recent PR #2940. t.doesNotThrow(() => { const r2 = lineSlice(startPt, endPt, r1); }, "Does not throw when called again on first result"); t.end(); }); ================================================ FILE: packages/turf-line-slice/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-line-slice-along/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-line-slice-along/README.md ================================================ # @turf/line-slice-along ## lineSliceAlong Takes a [line][1], a specified distance along the line to a start [Point][2], and a specified distance along the line to a stop point and returns a subsection of the line in-between those points. This can be useful for extracting only the part of a route between two distances. ### Parameters * `line` **([Feature][3]<[LineString][1]> | [LineString][1])** input line * `startDist` **[number][4]** distance along the line to starting point * `stopDist` **[number][4]** distance along the line to ending point * `options` **[Object][5]** Optional parameters (optional, default `{}`) * `options.units` **Units** Supports all valid Turf [Units][6] (optional, default `'kilometers'`) ### Examples ```javascript var line = turf.lineString([[7, 45], [9, 45], [14, 40], [14, 41]]); var start = 12.5; var stop = 25; var sliced = turf.lineSliceAlong(line, start, stop, {units: 'miles'}); //addToMap var addToMap = [line, start, stop, sliced] ``` Returns **[Feature][3]<[LineString][1]>** sliced line [1]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [3]: https://tools.ietf.org/html/rfc7946#section-3.2 [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [6]: https://turfjs.org/docs/api/types/Units --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/line-slice-along ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-line-slice-along/bench.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import Benchmark from "benchmark"; import { lineSliceAlong } from "./index.js"; import { loadJsonFileSync } from "load-json-file"; import { Feature, LineString } from "geojson"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); var line1: Feature = loadJsonFileSync( path.join(__dirname, "test", "fixtures", "line1.geojson") ); var route1: Feature = loadJsonFileSync( path.join(__dirname, "test", "fixtures", "route1.geojson") ); var route2: Feature = loadJsonFileSync( path.join(__dirname, "test", "fixtures", "route2.geojson") ); const options = { units: "miles" } as const; var suite = new Benchmark.Suite("turf-line-slice-along"); suite .add("turf-line-slice-along#line1 5-15 miles", function () { lineSliceAlong(line1, 5, 15, options); }) .add("turf-line-slice-along#line1 50-250 miles", function () { lineSliceAlong(line1, 50, 250, options); }) .add("turf-line-slice-along#line1 250-500 miles", function () { lineSliceAlong(line1, 250, 500, options); }) .add("turf-line-slice-along#route1 5-15 miles", function () { lineSliceAlong(route1, 5, 15, options); }) .add("turf-line-slice-along#route1 50-250 miles", function () { lineSliceAlong(route1, 50, 250, options); }) .add("turf-line-slice-along#route1 250-500 miles", function () { lineSliceAlong(route1, 250, 500, options); }) .add("turf-line-slice-along#route2 5-15 miles", function () { lineSliceAlong(route2, 5, 15, options); }) .add("turf-line-slice-along#route2 15-25 miles", function () { lineSliceAlong(route2, 15, 25, options); }) .add("turf-line-slice-along#route2 25-35 miles", function () { lineSliceAlong(route2, 25, 35, options); }) .on("cycle", function (event: any) { console.log(String(event.target)); }) .run(); ================================================ FILE: packages/turf-line-slice-along/index.ts ================================================ import { bearing } from "@turf/bearing"; import { distance } from "@turf/distance"; import { destination } from "@turf/destination"; import { lineString, isObject, Units } from "@turf/helpers"; import { Feature, LineString, Point, Position } from "geojson"; /** * Takes a {@link LineString|line}, a specified distance along the line to a start {@link Point}, * and a specified distance along the line to a stop point * and returns a subsection of the line in-between those points. * * This can be useful for extracting only the part of a route between two distances. * * @function * @param {Feature|LineString} line input line * @param {number} startDist distance along the line to starting point * @param {number} stopDist distance along the line to ending point * @param {Object} [options={}] Optional parameters * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @returns {Feature} sliced line * @example * var line = turf.lineString([[7, 45], [9, 45], [14, 40], [14, 41]]); * var start = 12.5; * var stop = 25; * var sliced = turf.lineSliceAlong(line, start, stop, {units: 'miles'}); * * //addToMap * var addToMap = [line, start, stop, sliced] */ function lineSliceAlong( line: Feature | LineString, startDist: number, stopDist: number, options: { units?: Units } = {} ): Feature { // Optional parameters if (!isObject(options)) throw new Error("options is invalid"); const { units = "kilometers" } = options; var coords: Position[]; var slice: Position[] = []; // Validation if (line.type === "Feature") coords = line.geometry.coordinates; else if (line.type === "LineString") coords = line.coordinates; else throw new Error("input must be a LineString Feature or Geometry"); const origCoordsLength = coords.length; let travelled = 0; let overshot: number, direction: number, interpolated: Feature; for (let i = 0; i < coords.length; i++) { if (startDist >= travelled && i === coords.length - 1) break; else if (travelled > startDist && slice.length === 0) { let overshot = startDist - travelled; if (!overshot) { slice.push(coords[i]); return lineString(slice); } direction = bearing(coords[i], coords[i - 1]) - 180; interpolated = destination(coords[i], overshot, direction, { units }); slice.push(interpolated.geometry.coordinates); } if (travelled >= stopDist) { overshot = stopDist - travelled; if (!overshot) { slice.push(coords[i]); return lineString(slice); } direction = bearing(coords[i], coords[i - 1]) - 180; interpolated = destination(coords[i], overshot, direction, { units }); slice.push(interpolated.geometry.coordinates); return lineString(slice); } if (travelled >= startDist) { slice.push(coords[i]); } if (i === coords.length - 1) { return lineString(slice); } travelled += distance(coords[i], coords[i + 1], { units }); } if (travelled < startDist && coords.length === origCoordsLength) throw new Error("Start position is beyond line"); var last = coords[coords.length - 1]; return lineString([last, last]); } export { lineSliceAlong }; export default lineSliceAlong; ================================================ FILE: packages/turf-line-slice-along/package.json ================================================ { "name": "@turf/line-slice-along", "version": "7.3.4", "description": "Useful for extracting only the part of a route between two distances.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "along", "line-slice" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@turf/along": "workspace:*", "@turf/length": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/bearing": "workspace:*", "@turf/destination": "workspace:*", "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-line-slice-along/test/fixtures/line1.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [113.99414062499999, 22.350075806124867], [116.76269531249999, 23.241346102386135], [117.7734375, 24.367113562651276], [118.828125, 25.20494115356912], [119.794921875, 26.78484736105119], [120.80566406250001, 28.110748760633534], [121.59667968749999, 29.49698759653577], [121.59667968749999, 31.12819929911196], [120.84960937499999, 32.84267363195431], [119.83886718750001, 34.125447565116126], [118.69628906249999, 35.31736632923788], [121.4208984375, 36.80928470205937], [122.82714843749999, 37.37015718405753] ] } } ================================================ FILE: packages/turf-line-slice-along/test/fixtures/route1.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-122.41349, 37.77561], [-122.41323, 37.77582], [-122.41217, 37.77665], [-122.41187, 37.77642], [-122.41162, 37.77621], [-122.41108, 37.77579], [-122.41062, 37.77542], [-122.41008, 37.77499], [-122.40953, 37.77455], [-122.40909, 37.7742], [-122.40854, 37.77376], [-122.40845, 37.77369], [-122.40777, 37.77315], [-122.40725, 37.77273], [-122.40697, 37.77254], [-122.40667, 37.77278], [-122.40664, 37.77311], [-122.40664, 37.77337], [-122.40663, 37.77356], [-122.40661, 37.77372], [-122.40657, 37.77389], [-122.40652, 37.77407], [-122.40644, 37.77424], [-122.40636, 37.77441], [-122.40624, 37.77459], [-122.40613, 37.77476], [-122.40601, 37.77492], [-122.40588, 37.77507], [-122.40575, 37.77522], [-122.40561, 37.77536], [-122.40544, 37.77552], [-122.40525, 37.7757], [-122.40508, 37.77585], [-122.40491, 37.77599], [-122.40474, 37.77611], [-122.40434, 37.77638], [-122.40411, 37.77653], [-122.40391, 37.77665], [-122.40367, 37.77678], [-122.40161, 37.77784], [-122.40138, 37.77796], [-122.40115, 37.7781], [-122.40092, 37.77825], [-122.40066, 37.77842], [-122.40042, 37.77859], [-122.40016, 37.77879], [-122.39993, 37.77899], [-122.39967, 37.77921], [-122.39933, 37.7795], [-122.3981, 37.78054], [-122.39665, 37.78178], [-122.39593, 37.7824], [-122.39545, 37.7828], [-122.39497, 37.78321], [-122.39418, 37.78383], [-122.39349, 37.78437], [-122.3933, 37.7845], [-122.39283, 37.78481], [-122.39214, 37.78517], [-122.3915, 37.78549], [-122.39094, 37.78592], [-122.39037, 37.78641], [-122.36744, 37.80781], [-122.36721, 37.80812], [-122.36675, 37.80856], [-122.36504, 37.81018], [-122.36436, 37.81078], [-122.36343, 37.81159], [-122.36294, 37.81206], [-122.36238, 37.81256], [-122.36173, 37.81305], [-122.36122, 37.81341], [-122.36085, 37.81366], [-122.36057, 37.81385], [-122.36028, 37.81402], [-122.35481, 37.81714], [-122.35456, 37.81728], [-122.3543, 37.81742], [-122.35405, 37.81755], [-122.35379, 37.81767], [-122.35354, 37.81778], [-122.3533, 37.81788], [-122.35304, 37.81799], [-122.35276, 37.8181], [-122.35251, 37.81819], [-122.35226, 37.81828], [-122.35199, 37.81836], [-122.35169, 37.81844], [-122.35138, 37.81853], [-122.35106, 37.81861], [-122.35071, 37.81868], [-122.35036, 37.81874], [-122.35002, 37.8188], [-122.33359, 37.82117], [-122.33288, 37.82127], [-122.3322, 37.82136], [-122.3314, 37.82145], [-122.33075, 37.82153], [-122.33005, 37.8216], [-122.32773, 37.82183], [-122.32492, 37.82206], [-122.32351, 37.82218], [-122.32304, 37.82223], [-122.32222, 37.82234], [-122.32056, 37.82263], [-122.31861, 37.82297], [-122.31593, 37.82344], [-122.31434, 37.82372], [-122.31366, 37.82384], [-122.312, 37.82412], [-122.31138, 37.82423], [-122.31065, 37.82434], [-122.30992, 37.82443], [-122.3079, 37.82464], [-122.30728, 37.8247], [-122.30665, 37.82478], [-122.30607, 37.82488], [-122.30564, 37.82496], [-122.3031, 37.8254], [-122.30261, 37.82548], [-122.30145, 37.82569], [-122.30062, 37.82585], [-122.29972, 37.82604], [-122.29775, 37.82646], [-122.29711, 37.82663], [-122.29667, 37.82676], [-122.29624, 37.82691], [-122.29568, 37.82714], [-122.29525, 37.82731], [-122.29494, 37.82739], [-122.29463, 37.82746], [-122.29433, 37.8275], [-122.29401, 37.82753], [-122.2937, 37.82753], [-122.29337, 37.82752], [-122.29306, 37.82748], [-122.29275, 37.82741], [-122.29244, 37.82733], [-122.29215, 37.82723], [-122.29189, 37.82712], [-122.29138, 37.82688], [-122.2911, 37.82676], [-122.29078, 37.82665], [-122.29048, 37.82655], [-122.29008, 37.82646], [-122.28965, 37.82639], [-122.28925, 37.82634], [-122.2889, 37.82633], [-122.2885, 37.82632], [-122.28811, 37.82634], [-122.28774, 37.82638], [-122.28686, 37.8265], [-122.28436, 37.82702], [-122.2834, 37.82721], [-122.2831, 37.82726], [-122.28278, 37.82729], [-122.28246, 37.82731], [-122.28216, 37.82732], [-122.28184, 37.82731], [-122.28153, 37.82729], [-122.28121, 37.82724], [-122.28088, 37.82719], [-122.27993, 37.82697], [-122.27872, 37.82668], [-122.2781, 37.82653], [-122.27776, 37.82646], [-122.27548, 37.82593], [-122.27499, 37.82581], [-122.27367, 37.82548], [-122.27252, 37.82521], [-122.27204, 37.8251], [-122.27062, 37.82476], [-122.26998, 37.82461], [-122.26952, 37.8245], [-122.26877, 37.82432], [-122.26776, 37.82408], [-122.26623, 37.82372], [-122.26568, 37.82359], [-122.26531, 37.82351], [-122.26387, 37.8232], [-122.26221, 37.82285], [-122.26175, 37.82274], [-122.26136, 37.82264], [-122.26097, 37.82252], [-122.26057, 37.82239], [-122.26018, 37.82225], [-122.25989, 37.82215], [-122.2596, 37.82204], [-122.2593, 37.82192], [-122.25887, 37.82174], [-122.25842, 37.82155], [-122.25792, 37.82132], [-122.25743, 37.82108], [-122.25698, 37.82085], [-122.25658, 37.82063], [-122.25617, 37.8204], [-122.25571, 37.82013], [-122.25528, 37.81987], [-122.25489, 37.81961], [-122.25436, 37.81925], [-122.25413, 37.81908], [-122.25389, 37.8189], [-122.25365, 37.81871], [-122.25339, 37.8185], [-122.25312, 37.81827], [-122.25288, 37.81802], [-122.25267, 37.81778], [-122.25246, 37.81752], [-122.25226, 37.81726], [-122.25207, 37.81696], [-122.2519, 37.81666], [-122.25175, 37.81636], [-122.25163, 37.81606], [-122.25153, 37.81579], [-122.25144, 37.8155], [-122.25127, 37.81481], [-122.25078, 37.81315], [-122.25059, 37.81248], [-122.25053, 37.81229], [-122.25046, 37.81209], [-122.25038, 37.81191], [-122.25028, 37.81173], [-122.25016, 37.81154], [-122.25003, 37.81137], [-122.24986, 37.81117], [-122.24967, 37.81098], [-122.2495, 37.81083], [-122.24929, 37.81069], [-122.24906, 37.81055], [-122.24876, 37.81039], [-122.24846, 37.81026], [-122.24809, 37.81011], [-122.24772, 37.80999], [-122.24632, 37.8096], [-122.24562, 37.8094], [-122.24433, 37.80904], [-122.24288, 37.80864], [-122.24239, 37.80849], [-122.24194, 37.80833], [-122.24148, 37.80817], [-122.24104, 37.808], [-122.24063, 37.80783], [-122.24023, 37.80765], [-122.2385, 37.80685], [-122.23617, 37.80577], [-122.23577, 37.80557], [-122.2354, 37.80538], [-122.23499, 37.80516], [-122.23459, 37.80493], [-122.23418, 37.80469], [-122.23379, 37.80444], [-122.23349, 37.80421], [-122.2332, 37.804], [-122.23283, 37.80371], [-122.23088, 37.80212], [-122.23063, 37.80193], [-122.2304, 37.80176], [-122.23017, 37.80161], [-122.22994, 37.80147], [-122.22968, 37.80133], [-122.22943, 37.8012], [-122.22914, 37.80106], [-122.22883, 37.80093], [-122.22852, 37.80081], [-122.22822, 37.80071], [-122.22793, 37.80062], [-122.2276, 37.80054], [-122.22725, 37.80045], [-122.22666, 37.80033], [-122.22329, 37.79964], [-122.22147, 37.79926], [-122.22012, 37.79897], [-122.21937, 37.79879], [-122.21856, 37.7986], [-122.2173, 37.79828], [-122.21538, 37.7978], [-122.21256, 37.79709], [-122.21216, 37.79699], [-122.21173, 37.79686], [-122.21133, 37.79673], [-122.21093, 37.79658], [-122.21054, 37.79642], [-122.21022, 37.79628], [-122.20757, 37.79504], [-122.2072, 37.79487], [-122.20685, 37.79471], [-122.20636, 37.79446], [-122.20578, 37.79414], [-122.20548, 37.79394], [-122.20517, 37.79373], [-122.20487, 37.79351], [-122.20455, 37.79324], [-122.20429, 37.79303], [-122.20404, 37.79279], [-122.20378, 37.79251], [-122.2017, 37.79026], [-122.20136, 37.78992], [-122.20099, 37.78958], [-122.20065, 37.78928], [-122.20026, 37.78899], [-122.19989, 37.78874], [-122.19949, 37.78849], [-122.19912, 37.78827], [-122.19867, 37.78804], [-122.19617, 37.7868], [-122.19586, 37.78664], [-122.19495, 37.78619], [-122.19443, 37.78593], [-122.19388, 37.78569], [-122.19354, 37.78555], [-122.19318, 37.78541], [-122.19285, 37.78529], [-122.19248, 37.78516], [-122.19206, 37.78502], [-122.19166, 37.7849], [-122.19122, 37.78478], [-122.19082, 37.78467], [-122.19044, 37.78458], [-122.1901, 37.78451], [-122.18971, 37.78443], [-122.18932, 37.78436], [-122.18895, 37.7843], [-122.1886, 37.78425], [-122.18817, 37.7842], [-122.18778, 37.78415], [-122.18725, 37.78411], [-122.18687, 37.78409], [-122.18643, 37.78406], [-122.18505, 37.78402], [-122.1809, 37.78388], [-122.18052, 37.78387], [-122.17996, 37.78385], [-122.17964, 37.78382], [-122.17932, 37.78379], [-122.179, 37.78373], [-122.17866, 37.78366], [-122.17832, 37.78357], [-122.17801, 37.78346], [-122.17771, 37.78334], [-122.17742, 37.78321], [-122.17717, 37.78308], [-122.17689, 37.78292], [-122.17529, 37.78189], [-122.17482, 37.78159], [-122.17437, 37.78132], [-122.17398, 37.78109], [-122.1737, 37.78094], [-122.17342, 37.78078], [-122.17283, 37.78047], [-122.17081, 37.77943], [-122.16901, 37.77849], [-122.16857, 37.77826], [-122.16811, 37.77804], [-122.16764, 37.77783], [-122.16438, 37.77635], [-122.16404, 37.77619], [-122.16359, 37.77598], [-122.16313, 37.77575], [-122.16259, 37.77549], [-122.16176, 37.77507], [-122.16016, 37.77425], [-122.15929, 37.7738], [-122.1589, 37.7736], [-122.15856, 37.77339], [-122.15818, 37.77316], [-122.15783, 37.77293], [-122.15747, 37.77268], [-122.15714, 37.77243], [-122.15682, 37.77217], [-122.15652, 37.77191], [-122.15622, 37.77163], [-122.15594, 37.77136], [-122.15566, 37.77106], [-122.15541, 37.77078], [-122.15519, 37.77051], [-122.15496, 37.77022], [-122.15476, 37.76994], [-122.15458, 37.76969], [-122.15442, 37.76943], [-122.1541, 37.76891], [-122.15378, 37.76838], [-122.15351, 37.76793], [-122.1528, 37.76677], [-122.15263, 37.76649], [-122.15243, 37.76619], [-122.15222, 37.7659], [-122.15199, 37.76562], [-122.15179, 37.76537], [-122.15111, 37.76456], [-122.15087, 37.76427], [-122.15068, 37.76402], [-122.1505, 37.76378], [-122.15031, 37.76352], [-122.15013, 37.76326], [-122.14908, 37.76167], [-122.14892, 37.76142], [-122.14878, 37.7612], [-122.14863, 37.76092], [-122.14848, 37.76063], [-122.14835, 37.76035], [-122.14825, 37.76012], [-122.14816, 37.75987], [-122.14808, 37.75961], [-122.14802, 37.75936], [-122.14798, 37.75909], [-122.14796, 37.75883], [-122.14797, 37.75853], [-122.148, 37.75824], [-122.14805, 37.75796], [-122.14812, 37.75768], [-122.14822, 37.75743], [-122.14833, 37.75717], [-122.14847, 37.75691], [-122.14862, 37.75667], [-122.14879, 37.75644], [-122.14898, 37.75623], [-122.14917, 37.75603], [-122.14938, 37.75582], [-122.15053, 37.75477], [-122.15073, 37.75458], [-122.15092, 37.75439], [-122.15109, 37.75418], [-122.15125, 37.75398], [-122.15139, 37.75376], [-122.15152, 37.75354], [-122.15163, 37.75327], [-122.15172, 37.75304], [-122.15178, 37.75281], [-122.15185, 37.75257], [-122.15191, 37.75231], [-122.15194, 37.75206], [-122.15196, 37.75182], [-122.15196, 37.75159], [-122.15193, 37.75134], [-122.15189, 37.75111], [-122.15184, 37.75088], [-122.15179, 37.75068], [-122.15172, 37.75048], [-122.15164, 37.75026], [-122.15154, 37.75004], [-122.14978, 37.74645], [-122.14964, 37.74616], [-122.14953, 37.74595], [-122.1494, 37.74574], [-122.14926, 37.74552], [-122.1491, 37.7453], [-122.1489, 37.74506], [-122.14869, 37.74484], [-122.14848, 37.74464], [-122.14826, 37.74443], [-122.14802, 37.74424], [-122.14777, 37.74405], [-122.1475, 37.74386], [-122.14677, 37.74334], [-122.14656, 37.74319], [-122.1464, 37.74307], [-122.14624, 37.74294], [-122.1461, 37.74281], [-122.14597, 37.74269], [-122.14584, 37.74256], [-122.14571, 37.74243], [-122.14559, 37.74228], [-122.14547, 37.74212], [-122.14534, 37.74196], [-122.14445, 37.74076], [-122.14427, 37.74054], [-122.14407, 37.74032], [-122.14389, 37.74012], [-122.1437, 37.73993], [-122.14347, 37.73973], [-122.14322, 37.73952], [-122.14184, 37.73843], [-122.14165, 37.73826], [-122.14146, 37.73809], [-122.14129, 37.7379], [-122.14118, 37.73778], [-122.14109, 37.73766], [-122.14098, 37.73752], [-122.14083, 37.73731], [-122.14068, 37.73707], [-122.14056, 37.73684], [-122.14045, 37.73661], [-122.14036, 37.73637], [-122.14029, 37.73613], [-122.14023, 37.7359], [-122.13995, 37.73469], [-122.13987, 37.73432], [-122.13969, 37.73355], [-122.13956, 37.73298], [-122.13945, 37.73257], [-122.13934, 37.73215], [-122.13905, 37.73115], [-122.13887, 37.73049], [-122.1387, 37.72991], [-122.1386, 37.72955], [-122.13852, 37.72925], [-122.13845, 37.72899], [-122.13839, 37.72874], [-122.13835, 37.72859], [-122.13832, 37.72842], [-122.13828, 37.72819], [-122.13823, 37.72793], [-122.13797, 37.72621], [-122.13794, 37.72599], [-122.1379, 37.72579], [-122.13785, 37.72559], [-122.13779, 37.72539], [-122.13773, 37.7252], [-122.13766, 37.72499], [-122.13758, 37.72479], [-122.13749, 37.72458], [-122.13738, 37.72439], [-122.13727, 37.72418], [-122.13714, 37.72396], [-122.13701, 37.72376], [-122.13687, 37.72356], [-122.13599, 37.72242], [-122.13523, 37.72145], [-122.135, 37.72114], [-122.13479, 37.72085], [-122.1346, 37.72058], [-122.13441, 37.72031], [-122.13425, 37.72004], [-122.13409, 37.71979], [-122.13394, 37.71954], [-122.13378, 37.71929], [-122.13364, 37.71905], [-122.13349, 37.71878], [-122.13326, 37.71833], [-122.13299, 37.71779], [-122.13267, 37.71708], [-122.13201, 37.71563], [-122.13188, 37.71537], [-122.13173, 37.7151], [-122.1316, 37.71487], [-122.13145, 37.71464], [-122.1313, 37.71442], [-122.13111, 37.71416], [-122.13091, 37.71391], [-122.13072, 37.71369], [-122.13049, 37.71344], [-122.13026, 37.71321], [-122.13, 37.71297], [-122.12975, 37.71275], [-122.12948, 37.71254], [-122.12921, 37.71234], [-122.12894, 37.71215], [-122.12867, 37.71197], [-122.12842, 37.71182], [-122.12814, 37.71166], [-122.12787, 37.71152], [-122.12759, 37.71137], [-122.12726, 37.71121], [-122.12621, 37.71073], [-122.12589, 37.71057], [-122.12558, 37.71041], [-122.1253, 37.71025], [-122.12501, 37.71009], [-122.12474, 37.70991], [-122.12452, 37.70976], [-122.1243, 37.7096], [-122.12409, 37.70944], [-122.12307, 37.70865], [-122.12216, 37.70792], [-122.1219, 37.70772], [-122.12162, 37.7075], [-122.12132, 37.7073], [-122.12103, 37.70712], [-122.12073, 37.70696], [-122.12042, 37.70681], [-122.11956, 37.70643], [-122.11862, 37.70601], [-122.11823, 37.70583], [-122.11784, 37.70565], [-122.1175, 37.70549], [-122.11714, 37.70531], [-122.11673, 37.70509], [-122.11635, 37.70489], [-122.11596, 37.70467], [-122.11556, 37.70444], [-122.11513, 37.70418], [-122.11463, 37.70387], [-122.11391, 37.70342], [-122.11345, 37.70313], [-122.11295, 37.70281], [-122.11253, 37.70255], [-122.10999, 37.70097], [-122.10968, 37.70078], [-122.10939, 37.70057], [-122.10911, 37.70036], [-122.10886, 37.70016], [-122.10861, 37.69994], [-122.10845, 37.69979], [-122.1083, 37.69965], [-122.10816, 37.69951], [-122.10798, 37.69933], [-122.10781, 37.69914], [-122.10623, 37.6974], [-122.10524, 37.69629], [-122.10469, 37.69569], [-122.10434, 37.69531], [-122.10295, 37.69377], [-122.10191, 37.69261], [-122.1016, 37.69227], [-122.10141, 37.69208], [-122.10123, 37.6919], [-122.10103, 37.69173], [-122.10084, 37.69156], [-122.10063, 37.69139], [-122.10041, 37.69123], [-122.10017, 37.69108], [-122.09993, 37.69093], [-122.09966, 37.69079], [-122.09939, 37.69066], [-122.09914, 37.69055], [-122.09887, 37.69045], [-122.09859, 37.69035], [-122.0983, 37.69026], [-122.09801, 37.69018], [-122.09772, 37.69012], [-122.09743, 37.69006], [-122.09716, 37.69002], [-122.0969, 37.68998], [-122.09664, 37.68996], [-122.09636, 37.68993], [-122.09608, 37.68992], [-122.09578, 37.68992], [-122.0955, 37.68992], [-122.09524, 37.68994], [-122.09496, 37.68996], [-122.0947, 37.68998], [-122.09343, 37.69012], [-122.09247, 37.69022], [-122.09168, 37.6903], [-122.09069, 37.69037], [-122.08944, 37.69044], [-122.08856, 37.69042], [-122.08733, 37.69043], [-122.08224, 37.69049], [-122.0804, 37.69051], [-122.07876, 37.69052], [-122.07403, 37.69056], [-122.07341, 37.69056], [-122.07205, 37.6906], [-122.06974, 37.69081], [-122.06863, 37.69097], [-122.06823, 37.69103], [-122.06672, 37.69134], [-122.06486, 37.69184], [-122.06468, 37.69189], [-122.06421, 37.69203], [-122.06096, 37.69295], [-122.06034, 37.69311], [-122.0595, 37.69331], [-122.05892, 37.69342], [-122.05826, 37.6935], [-122.05767, 37.69355], [-122.05718, 37.69356], [-122.05669, 37.69356], [-122.05599, 37.69353], [-122.05539, 37.69349], [-122.0535, 37.69327], [-122.05225, 37.69321], [-122.05156, 37.69323], [-122.05093, 37.69328], [-122.05027, 37.69335], [-122.04962, 37.69348], [-122.04903, 37.69361], [-122.04839, 37.69379], [-122.04784, 37.69397], [-122.04725, 37.69419], [-122.04668, 37.69443], [-122.04614, 37.69469], [-122.04568, 37.69493], [-122.0452, 37.69522], [-122.04488, 37.69545], [-122.04457, 37.69568], [-122.04424, 37.69595], [-122.04346, 37.69666], [-122.04235, 37.6977], [-122.04067, 37.69924], [-122.04034, 37.69953], [-122.03999, 37.6998], [-122.03962, 37.70007], [-122.03924, 37.7003], [-122.03884, 37.70053], [-122.03843, 37.70075], [-122.03798, 37.70096], [-122.03756, 37.70114], [-122.03708, 37.70131], [-122.03657, 37.70147], [-122.03614, 37.70159], [-122.0357, 37.70169], [-122.03515, 37.70179], [-122.03468, 37.70187], [-122.0342, 37.70192], [-122.03378, 37.70195], [-122.03329, 37.70197], [-122.03276, 37.70199], [-122.03214, 37.70197], [-122.03133, 37.7019], [-122.0306, 37.70177], [-122.03018, 37.70166], [-122.02972, 37.70155], [-122.02825, 37.70114], [-122.02779, 37.70102], [-122.02724, 37.7009], [-122.02663, 37.70079], [-122.02596, 37.70071], [-122.0253, 37.70067], [-122.02464, 37.70065], [-122.02399, 37.70067], [-122.02333, 37.70071], [-122.02269, 37.7008], [-122.02204, 37.70091], [-122.02137, 37.70106], [-122.0211, 37.70114], [-122.02084, 37.70121], [-122.0202, 37.70143], [-122.01871, 37.70199], [-122.0181, 37.7022], [-122.01749, 37.70237], [-122.01685, 37.70252], [-122.01621, 37.70263], [-122.01557, 37.70271], [-122.01491, 37.70275], [-122.00291, 37.70332], [-122.00228, 37.70335], [-122.00162, 37.70336], [-122.00097, 37.70335], [-122.00028, 37.70332], [-121.99965, 37.70327], [-121.99898, 37.70321], [-121.99834, 37.70313], [-121.99768, 37.70303], [-121.99705, 37.70291], [-121.99641, 37.70277], [-121.99578, 37.70262], [-121.99515, 37.70245], [-121.99455, 37.70226], [-121.99394, 37.70206], [-121.99334, 37.70183], [-121.99276, 37.7016], [-121.99217, 37.70134], [-121.99015, 37.70046], [-121.98957, 37.70021], [-121.98896, 37.7], [-121.98835, 37.69982], [-121.98772, 37.69966], [-121.98707, 37.69954], [-121.98642, 37.69944], [-121.98397, 37.69918], [-121.98332, 37.6991], [-121.98267, 37.69901], [-121.98203, 37.69891], [-121.98136, 37.6988], [-121.97974, 37.69852], [-121.97925, 37.69844], [-121.9747, 37.69765], [-121.97347, 37.69744], [-121.97216, 37.69727], [-121.97083, 37.69714], [-121.96958, 37.69707], [-121.96829, 37.69704], [-121.96703, 37.69706], [-121.96571, 37.69712], [-121.96439, 37.69724], [-121.96302, 37.69742], [-121.96165, 37.69765], [-121.95922, 37.69807], [-121.9586, 37.69816], [-121.95794, 37.69822], [-121.95732, 37.69825], [-121.95664, 37.69825], [-121.94579, 37.69817], [-121.94217, 37.69811], [-121.93963, 37.69814], [-121.93682, 37.69811], [-121.93629, 37.6981], [-121.93578, 37.69811], [-121.93526, 37.69814], [-121.93475, 37.69818], [-121.93425, 37.69824], [-121.93378, 37.6983], [-121.9333, 37.69838], [-121.93281, 37.69848], [-121.93237, 37.69858], [-121.93187, 37.6987], [-121.9312, 37.69887], [-121.93098, 37.6989], [-121.92842, 37.69949], [-121.92654, 37.69992], [-121.92512, 37.70025], [-121.92424, 37.70046], [-121.92326, 37.70068], [-121.92244, 37.70087], [-121.92051, 37.70129], [-121.92012, 37.70137], [-121.91971, 37.70146], [-121.91933, 37.70152], [-121.91898, 37.70158], [-121.9176, 37.7017], [-121.91737, 37.70171], [-121.91651, 37.70174], [-121.91185, 37.70168], [-121.91161, 37.70163], [-121.91047, 37.70159], [-121.90728, 37.70156], [-121.90656, 37.70155], [-121.90403, 37.70149], [-121.90014, 37.70147], [-121.89813, 37.70147], [-121.89754, 37.70146], [-121.89304, 37.70141], [-121.89094, 37.70143], [-121.88845, 37.70138], [-121.88778, 37.70136], [-121.88659, 37.70135], [-121.88311, 37.70134], [-121.87927, 37.70136], [-121.8789, 37.70137], [-121.87699, 37.70136], [-121.87107, 37.70135], [-121.86904, 37.70132], [-121.86672, 37.70129], [-121.85395, 37.70114], [-121.84905, 37.70111], [-121.84759, 37.70111], [-121.8436, 37.7011], [-121.83673, 37.70104], [-121.83297, 37.701], [-121.82285, 37.70087], [-121.82031, 37.70089], [-121.81611, 37.70081], [-121.80909, 37.70077], [-121.80825, 37.70077], [-121.80429, 37.70076], [-121.80325, 37.70075], [-121.80163, 37.70073], [-121.7999, 37.7007], [-121.79903, 37.70069], [-121.79747, 37.7007], [-121.79682, 37.70069], [-121.79589, 37.70066], [-121.79528, 37.70067], [-121.79452, 37.70063], [-121.79417, 37.70058], [-121.79386, 37.70053], [-121.79356, 37.70047], [-121.79018, 37.69973], [-121.78976, 37.69964], [-121.78944, 37.69958], [-121.7891, 37.69953], [-121.78873, 37.69949], [-121.7884, 37.69946], [-121.78808, 37.69944], [-121.78773, 37.69942], [-121.7874, 37.69942], [-121.78706, 37.69943], [-121.78668, 37.69945], [-121.7863, 37.69947], [-121.78591, 37.6995], [-121.78497, 37.69959], [-121.78436, 37.69964], [-121.78261, 37.69979], [-121.77863, 37.70014], [-121.77752, 37.70023], [-121.77637, 37.70036], [-121.77522, 37.70051], [-121.77407, 37.70068], [-121.77352, 37.70077], [-121.7699, 37.70136], [-121.76421, 37.70232], [-121.7633, 37.70246], [-121.76231, 37.70259], [-121.76138, 37.70268], [-121.76047, 37.70275], [-121.75952, 37.70279], [-121.75906, 37.7028], [-121.75793, 37.7028], [-121.75662, 37.70276], [-121.75525, 37.70271], [-121.7499, 37.70248], [-121.74527, 37.70226], [-121.74427, 37.70224], [-121.74344, 37.70223], [-121.74252, 37.70225], [-121.74169, 37.7023], [-121.74093, 37.70239], [-121.7402, 37.7025], [-121.73952, 37.70264], [-121.7389, 37.70277], [-121.73818, 37.70295], [-121.73753, 37.70315], [-121.73689, 37.70337], [-121.73666, 37.70345], [-121.73324, 37.70491], [-121.72971, 37.7064], [-121.72837, 37.70693], [-121.72781, 37.70718], [-121.72464, 37.70851], [-121.72156, 37.70985], [-121.71981, 37.71055], [-121.719, 37.71089], [-121.71599, 37.71218], [-121.71448, 37.71283], [-121.71167, 37.714], [-121.70948, 37.71496], [-121.70719, 37.71594], [-121.70587, 37.71644], [-121.70469, 37.71679], [-121.7033, 37.71711], [-121.70113, 37.71759], [-121.70013, 37.7178], [-121.69698, 37.71845], [-121.69545, 37.71875], [-121.6879, 37.72026], [-121.68716, 37.72043], [-121.68642, 37.72061], [-121.68351, 37.72136], [-121.6829, 37.72151], [-121.68227, 37.72163], [-121.6816, 37.72172], [-121.68098, 37.72176], [-121.68035, 37.72175], [-121.67969, 37.7217], [-121.67678, 37.72138], [-121.67613, 37.7213], [-121.67552, 37.72117], [-121.67495, 37.721], [-121.6744, 37.72079], [-121.67383, 37.72051], [-121.6733, 37.72019], [-121.67232, 37.71953], [-121.67178, 37.71918], [-121.67123, 37.71888], [-121.67064, 37.71861], [-121.67004, 37.71839], [-121.66938, 37.71819], [-121.66875, 37.71804], [-121.66807, 37.71793], [-121.66745, 37.71787], [-121.66678, 37.71784], [-121.66605, 37.71786], [-121.66537, 37.71793], [-121.66471, 37.71804], [-121.66405, 37.71819], [-121.66338, 37.71838], [-121.65867, 37.7197], [-121.65679, 37.72026], [-121.65344, 37.72135], [-121.65051, 37.72229], [-121.64289, 37.72477], [-121.63713, 37.72666], [-121.63544, 37.72745], [-121.63419, 37.7285], [-121.63354, 37.72933], [-121.63286, 37.73023], [-121.63208, 37.73107], [-121.63117, 37.73178], [-121.63046, 37.73226], [-121.62916, 37.73295], [-121.62871, 37.73315], [-121.62806, 37.73341], [-121.62739, 37.73353], [-121.62633, 37.7337], [-121.61917, 37.73415], [-121.61243, 37.73464], [-121.6104, 37.73492], [-121.60809, 37.73542], [-121.60614, 37.73594], [-121.60224, 37.73701], [-121.6011, 37.73734], [-121.60009, 37.73757], [-121.59781, 37.73802], [-121.59115, 37.73926], [-121.58606, 37.74022], [-121.58557, 37.74031], [-121.58192, 37.74092], [-121.58124, 37.74104], [-121.5803, 37.74118], [-121.57847, 37.74137], [-121.57699, 37.74151], [-121.57549, 37.74165], [-121.57404, 37.74174], [-121.57354, 37.7417], [-121.57252, 37.74172], [-121.57214, 37.74174], [-121.57058, 37.7418], [-121.56971, 37.74184], [-121.56865, 37.74181], [-121.56758, 37.74173], [-121.56489, 37.74135], [-121.56302, 37.74109], [-121.56221, 37.74095], [-121.5614, 37.74078], [-121.56073, 37.74056], [-121.55986, 37.74024], [-121.55903, 37.73988], [-121.55826, 37.73941], [-121.55758, 37.73898], [-121.55709, 37.7386], [-121.55634, 37.73797], [-121.555, 37.73686], [-121.55276, 37.73496], [-121.55201, 37.73431], [-121.55144, 37.73377], [-121.55082, 37.73325], [-121.54851, 37.73114], [-121.54699, 37.72981], [-121.54385, 37.72699], [-121.54214, 37.72543], [-121.54155, 37.72493], [-121.54016, 37.72363], [-121.53876, 37.72237], [-121.53682, 37.72064], [-121.53606, 37.72001], [-121.53491, 37.71918], [-121.5334, 37.71816], [-121.53234, 37.71749], [-121.53164, 37.71706], [-121.53038, 37.71631], [-121.52796, 37.71483], [-121.5251, 37.71311], [-121.52439, 37.71267], [-121.52154, 37.71095], [-121.51694, 37.70821], [-121.51561, 37.70738], [-121.51502, 37.70701], [-121.51391, 37.70634], [-121.51368, 37.7062], [-121.51123, 37.70472], [-121.5091, 37.70345], [-121.50801, 37.70279], [-121.50739, 37.70243], [-121.50666, 37.70199], [-121.50616, 37.70168], [-121.50328, 37.69991], [-121.50299, 37.69975], [-121.49915, 37.69745], [-121.49459, 37.69464], [-121.49229, 37.69325], [-121.48998, 37.69188], [-121.48278, 37.68753], [-121.48017, 37.68596], [-121.47996, 37.68583], [-121.47803, 37.68468], [-121.4753, 37.68305], [-121.47446, 37.68253], [-121.47219, 37.68117], [-121.46815, 37.67871], [-121.4649, 37.67674], [-121.46394, 37.67615], [-121.46006, 37.67375], [-121.45916, 37.67324], [-121.45506, 37.67072], [-121.45378, 37.66995], [-121.45341, 37.66975], [-121.45251, 37.66922], [-121.45088, 37.66821], [-121.44996, 37.66766], [-121.44892, 37.667], [-121.44598, 37.66521], [-121.4401, 37.6617], [-121.43935, 37.66122], [-121.43852, 37.66073], [-121.43596, 37.65917], [-121.42303, 37.65133], [-121.42122, 37.65022], [-121.4198, 37.64937], [-121.41444, 37.6461], [-121.40338, 37.63941], [-121.40296, 37.63915], [-121.402, 37.63857], [-121.39527, 37.63449], [-121.39397, 37.63369], [-121.39081, 37.63179], [-121.38578, 37.62874], [-121.38456, 37.628], [-121.38393, 37.62765], [-121.38154, 37.62618], [-121.3795, 37.62496], [-121.37853, 37.62435], [-121.37613, 37.62291], [-121.37414, 37.62168], [-121.37356, 37.62131], [-121.37263, 37.62068], [-121.37197, 37.62021], [-121.37053, 37.61918], [-121.36953, 37.61839], [-121.36507, 37.61495], [-121.365, 37.61489], [-121.3647, 37.61465], [-121.36248, 37.61293], [-121.36141, 37.61213], [-121.35369, 37.60619], [-121.35321, 37.60582], [-121.34924, 37.60277], [-121.3454, 37.59982], [-121.34328, 37.59816], [-121.3403, 37.59589], [-121.33796, 37.59404], [-121.33769, 37.59384], [-121.33331, 37.59045], [-121.33104, 37.58872], [-121.32881, 37.58699], [-121.32757, 37.58605], [-121.32624, 37.58502], [-121.32361, 37.58299], [-121.31983, 37.58008], [-121.31956, 37.57987], [-121.30514, 37.56876], [-121.30116, 37.56572], [-121.30084, 37.56546], [-121.29891, 37.56396], [-121.29641, 37.56203], [-121.29456, 37.56059], [-121.29333, 37.55966], [-121.28332, 37.55193], [-121.27876, 37.54842], [-121.27073, 37.54223], [-121.26899, 37.54087], [-121.2687, 37.54064], [-121.26803, 37.54013], [-121.26766, 37.53985], [-121.26634, 37.53884], [-121.26581, 37.53844], [-121.26472, 37.53759], [-121.26326, 37.53647], [-121.2601, 37.53401], [-121.25921, 37.5333], [-121.25822, 37.53247], [-121.25533, 37.53001], [-121.25471, 37.52949], [-121.25034, 37.52577], [-121.2475, 37.52336], [-121.2436, 37.52006], [-121.23877, 37.51595], [-121.23859, 37.5158], [-121.23522, 37.51293], [-121.23042, 37.50885], [-121.22808, 37.50685], [-121.22448, 37.50386], [-121.22375, 37.5033], [-121.22209, 37.50207], [-121.21723, 37.49851], [-121.21236, 37.49494], [-121.21156, 37.49429], [-121.21062, 37.49347], [-121.20853, 37.49143], [-121.20832, 37.49121], [-121.20417, 37.4871], [-121.19645, 37.47944], [-121.19625, 37.47924], [-121.19064, 37.47368], [-121.18928, 37.47231], [-121.18842, 37.47151], [-121.1877, 37.47071], [-121.18691, 37.46991], [-121.1861, 37.46903], [-121.18551, 37.46845], [-121.18495, 37.46794], [-121.18358, 37.46662], [-121.18259, 37.46562], [-121.18066, 37.46374], [-121.18043, 37.46347], [-121.17982, 37.46279], [-121.17924, 37.46209], [-121.17867, 37.46135], [-121.17806, 37.46045], [-121.17744, 37.45956], [-121.17512, 37.4563], [-121.1738, 37.45436], [-121.17313, 37.45341], [-121.17241, 37.45246], [-121.17205, 37.45201], [-121.17175, 37.45157], [-121.17146, 37.45108], [-121.17055, 37.44982], [-121.16986, 37.44886], [-121.16928, 37.44804], [-121.16819, 37.4467], [-121.16754, 37.44591], [-121.16437, 37.44157], [-121.16381, 37.44079], [-121.16269, 37.43923], [-121.16182, 37.43794], [-121.16081, 37.43613], [-121.15938, 37.43339], [-121.15854, 37.43143], [-121.15748, 37.42949], [-121.1563, 37.42721], [-121.15571, 37.42589], [-121.15441, 37.42324], [-121.15412, 37.42267], [-121.15336, 37.42113], [-121.15315, 37.42077], [-121.15081, 37.41608], [-121.15021, 37.41488], [-121.1494, 37.41343], [-121.14858, 37.41203], [-121.14738, 37.41018], [-121.14594, 37.40812], [-121.14475, 37.40642], [-121.14296, 37.40385], [-121.14082, 37.40079], [-121.13859, 37.39758], [-121.13832, 37.39719], [-121.13708, 37.39543], [-121.13626, 37.39423], [-121.13577, 37.39355], [-121.13454, 37.39176], [-121.13183, 37.38789], [-121.13059, 37.38607], [-121.13028, 37.38555], [-121.12987, 37.38485], [-121.12939, 37.38393], [-121.12882, 37.3826], [-121.12787, 37.3797], [-121.12697, 37.37698], [-121.12499, 37.37091], [-121.12232, 37.3627], [-121.11831, 37.35045], [-121.11783, 37.34905], [-121.11765, 37.34843], [-121.11698, 37.34621], [-121.11623, 37.34386], [-121.11594, 37.3431], [-121.11572, 37.34243], [-121.11482, 37.33981], [-121.1145, 37.33893], [-121.11372, 37.33626], [-121.11283, 37.3336], [-121.11141, 37.32926], [-121.11117, 37.32849], [-121.11102, 37.32805], [-121.10971, 37.32399], [-121.10926, 37.32264], [-121.10802, 37.31899], [-121.10792, 37.31865], [-121.10756, 37.31718], [-121.10735, 37.31645], [-121.10711, 37.31572], [-121.10647, 37.31362], [-121.10584, 37.31152], [-121.10508, 37.30864], [-121.104, 37.30441], [-121.10391, 37.30407], [-121.10382, 37.30379], [-121.10314, 37.30064], [-121.10287, 37.29974], [-121.10227, 37.29768], [-121.0985, 37.28281], [-121.09845, 37.28258], [-121.09569, 37.27185], [-121.09449, 37.26702], [-121.09411, 37.26577], [-121.09285, 37.26087], [-121.09211, 37.25785], [-121.09075, 37.25265], [-121.09033, 37.25098], [-121.09008, 37.25], [-121.08909, 37.24612], [-121.08854, 37.24395], [-121.08823, 37.24274], [-121.08811, 37.24229], [-121.08788, 37.24138], [-121.08756, 37.24013], [-121.08723, 37.23885], [-121.08687, 37.23741], [-121.08654, 37.23617], [-121.08634, 37.23535], [-121.08602, 37.23411], [-121.0857, 37.23288], [-121.08541, 37.23176], [-121.08521, 37.23097], [-121.08487, 37.22966], [-121.08426, 37.2272], [-121.08392, 37.22592], [-121.0837, 37.22505], [-121.08327, 37.22338], [-121.08294, 37.2221], [-121.08262, 37.22083], [-121.08232, 37.21965], [-121.08209, 37.21874], [-121.08189, 37.21797], [-121.08106, 37.21472], [-121.08073, 37.21342], [-121.08039, 37.21207], [-121.08006, 37.21083], [-121.07972, 37.20952], [-121.0791, 37.20704], [-121.07862, 37.20515], [-121.07802, 37.20285], [-121.07772, 37.20167], [-121.07739, 37.20041], [-121.07723, 37.19984], [-121.07705, 37.19928], [-121.07685, 37.19876], [-121.07657, 37.19803], [-121.076, 37.19681], [-121.0753, 37.19555], [-121.07445, 37.19421], [-121.07362, 37.19294], [-121.07195, 37.19039], [-121.07111, 37.18912], [-121.0699, 37.18726], [-121.06907, 37.186], [-121.06823, 37.18471], [-121.06743, 37.18348], [-121.06652, 37.18207], [-121.06576, 37.18093], [-121.06492, 37.17966], [-121.06351, 37.17748], [-121.06335, 37.17724], [-121.06286, 37.17646], [-121.06202, 37.17517], [-121.06122, 37.17398], [-121.06041, 37.17274], [-121.05959, 37.17147], [-121.05876, 37.17023], [-121.05788, 37.16888], [-121.05748, 37.16829], [-121.05611, 37.16616], [-121.05541, 37.16507], [-121.05463, 37.16388], [-121.05376, 37.1626], [-121.05298, 37.16138], [-121.05219, 37.16017], [-121.05147, 37.15912], [-121.05118, 37.15864], [-121.05084, 37.15813], [-121.04793, 37.15367], [-121.04724, 37.1526], [-121.04675, 37.15187], [-121.04598, 37.15069], [-121.04515, 37.14941], [-121.04435, 37.1482], [-121.04365, 37.14711], [-121.04234, 37.14512], [-121.04186, 37.14436], [-121.0402, 37.14184], [-121.03779, 37.13815], [-121.03698, 37.13691], [-121.03549, 37.13461], [-121.03443, 37.133], [-121.03293, 37.1307], [-121.03235, 37.1298], [-121.03221, 37.12959], [-121.0321, 37.12942], [-121.03159, 37.12865], [-121.03101, 37.12776], [-121.0305, 37.12699], [-121.02956, 37.12554], [-121.02904, 37.12476], [-121.02869, 37.1242], [-121.02843, 37.12378], [-121.02761, 37.12255], [-121.02586, 37.11991], [-121.02344, 37.11615], [-121.02269, 37.11501], [-121.02172, 37.11357], [-121.02066, 37.11206], [-121.01963, 37.11076], [-121.01879, 37.10971], [-121.01805, 37.1088], [-121.01782, 37.10854], [-121.01563, 37.10581], [-121.01502, 37.10506], [-121.01466, 37.10464], [-121.01431, 37.1042], [-121.01213, 37.10155], [-121.01179, 37.10113], [-121.00716, 37.09546], [-121.00671, 37.0949], [-121.00613, 37.09421], [-121.00541, 37.09336], [-121.00479, 37.09265], [-121.00372, 37.0915], [-121.00263, 37.09036], [-120.99893, 37.08655], [-120.99319, 37.08062], [-120.99293, 37.08034], [-120.99257, 37.07996], [-120.99202, 37.07938], [-120.99037, 37.07767], [-120.99017, 37.07748], [-120.98512, 37.07226], [-120.98096, 37.06797], [-120.97984, 37.06682], [-120.97295, 37.0597], [-120.97065, 37.05731], [-120.97047, 37.05709], [-120.97037, 37.05699], [-120.96977, 37.05639], [-120.96817, 37.05476], [-120.96624, 37.05278], [-120.96064, 37.04696], [-120.96035, 37.04668], [-120.95816, 37.0444], [-120.95254, 37.03858], [-120.94742, 37.03336], [-120.94288, 37.02866], [-120.94263, 37.02839], [-120.94223, 37.02799], [-120.94065, 37.02636], [-120.93988, 37.02557], [-120.93911, 37.02481], [-120.93799, 37.02359], [-120.93766, 37.02324], [-120.93664, 37.02219], [-120.93588, 37.02142], [-120.93548, 37.02101], [-120.93513, 37.02064], [-120.9332, 37.01864], [-120.93237, 37.01777], [-120.93051, 37.01587], [-120.92896, 37.01425], [-120.92875, 37.01404], [-120.92666, 37.01187], [-120.92566, 37.01083], [-120.92415, 37.00927], [-120.92317, 37.00823], [-120.92266, 37.00772], [-120.92202, 37.00708], [-120.92102, 37.00606], [-120.91943, 37.0044], [-120.91887, 37.00381], [-120.91729, 37.00219], [-120.91658, 37.00144], [-120.91568, 37.00041], [-120.91425, 36.99876], [-120.91303, 36.99743], [-120.911, 36.99511], [-120.91003, 36.99401], [-120.90952, 36.99336], [-120.9086, 36.99228], [-120.90772, 36.9913], [-120.90684, 36.99033], [-120.9061, 36.98946], [-120.90369, 36.98669], [-120.90263, 36.98555], [-120.9014, 36.98413], [-120.90032, 36.9829], [-120.89849, 36.98078], [-120.89748, 36.97958], [-120.89524, 36.97702], [-120.89353, 36.9751], [-120.89295, 36.97444], [-120.89198, 36.97333], [-120.89021, 36.97131], [-120.88997, 36.97103], [-120.88969, 36.97073], [-120.88919, 36.97022], [-120.88873, 36.96977], [-120.8884, 36.96945], [-120.888, 36.9691], [-120.88754, 36.96867], [-120.88724, 36.96842], [-120.88675, 36.96802], [-120.8862, 36.96756], [-120.88511, 36.96667], [-120.88267, 36.96468], [-120.88085, 36.96319], [-120.87963, 36.96219], [-120.87909, 36.96175], [-120.87843, 36.9612], [-120.87384, 36.95746], [-120.87348, 36.95716], [-120.87305, 36.95682], [-120.87239, 36.95623], [-120.8697, 36.95407], [-120.86857, 36.95314], [-120.86715, 36.95198], [-120.86642, 36.95138], [-120.86556, 36.9507], [-120.86486, 36.95012], [-120.86438, 36.94972], [-120.86374, 36.94922], [-120.86324, 36.94878], [-120.86258, 36.94825], [-120.86228, 36.94801], [-120.86089, 36.94688], [-120.86016, 36.94628], [-120.85996, 36.94612], [-120.85976, 36.94596], [-120.85955, 36.94578], [-120.85913, 36.94544], [-120.85892, 36.94527], [-120.85867, 36.94506], [-120.85817, 36.94466], [-120.85791, 36.94444], [-120.85748, 36.94409], [-120.8572, 36.94386], [-120.85692, 36.94364], [-120.85669, 36.94345], [-120.85654, 36.94332], [-120.85637, 36.94319], [-120.85596, 36.94286], [-120.85487, 36.94194], [-120.85433, 36.9415], [-120.85203, 36.93959], [-120.84962, 36.93763], [-120.84782, 36.93615], [-120.8474, 36.93586], [-120.84678, 36.93535], [-120.84621, 36.93488], [-120.8455, 36.93429], [-120.8447, 36.93362], [-120.84431, 36.9333], [-120.84361, 36.93272], [-120.84208, 36.93147], [-120.84189, 36.93131], [-120.84147, 36.93092], [-120.83943, 36.92911], [-120.83859, 36.92833], [-120.8375, 36.92726], [-120.83743, 36.92719], [-120.83642, 36.92622], [-120.83557, 36.9254], [-120.83344, 36.92326], [-120.83255, 36.92242], [-120.83205, 36.92192], [-120.8306, 36.92047], [-120.83019, 36.92008], [-120.82904, 36.91892], [-120.8283, 36.91823], [-120.82798, 36.9179], [-120.8275, 36.91745], [-120.82721, 36.91719], [-120.82692, 36.91696], [-120.82681, 36.91685], [-120.82661, 36.91666], [-120.82632, 36.91637], [-120.8254, 36.91555], [-120.82437, 36.91462], [-120.82406, 36.91435], [-120.8225, 36.91296], [-120.82207, 36.91259], [-120.82172, 36.91227], [-120.8213, 36.91192], [-120.82097, 36.91161], [-120.8206, 36.91127], [-120.82035, 36.91102], [-120.81999, 36.91069], [-120.81947, 36.91017], [-120.81908, 36.9098], [-120.81858, 36.90927], [-120.81832, 36.90901], [-120.81769, 36.90832], [-120.81704, 36.90757], [-120.81615, 36.90652], [-120.81532, 36.9056], [-120.81166, 36.90141], [-120.80618, 36.89511], [-120.80431, 36.89298], [-120.80288, 36.89131], [-120.80267, 36.89108], [-120.80234, 36.8907], [-120.8003, 36.88817], [-120.79876, 36.88605], [-120.79722, 36.88376], [-120.79578, 36.88167], [-120.79406, 36.87919], [-120.79228, 36.87664], [-120.79074, 36.87436], [-120.78925, 36.87219], [-120.78781, 36.8701], [-120.78556, 36.86687], [-120.78427, 36.86497], [-120.7829, 36.86296], [-120.78126, 36.86058], [-120.78073, 36.85982], [-120.78051, 36.8595], [-120.7795, 36.85807], [-120.7782, 36.85616], [-120.77733, 36.85495], [-120.77697, 36.85441], [-120.77645, 36.85365], [-120.77303, 36.8487], [-120.77251, 36.84795], [-120.76374, 36.83521], [-120.74303, 36.80509], [-120.74273, 36.80466], [-120.72679, 36.78147], [-120.72324, 36.77627], [-120.72167, 36.774], [-120.71317, 36.76154], [-120.70986, 36.75672], [-120.68493, 36.72037], [-120.68046, 36.71421], [-120.67422, 36.70618], [-120.67116, 36.70219], [-120.67008, 36.7008], [-120.66602, 36.69546], [-120.66249, 36.69091], [-120.66021, 36.6879], [-120.65985, 36.68745], [-120.65832, 36.68547], [-120.65698, 36.68369], [-120.65676, 36.68337], [-120.65631, 36.68285], [-120.65118, 36.67616], [-120.65078, 36.67564], [-120.65003, 36.67468], [-120.64267, 36.66504], [-120.64064, 36.66244], [-120.63842, 36.65957], [-120.63269, 36.65207], [-120.63234, 36.65162], [-120.62565, 36.6429], [-120.62536, 36.64252], [-120.62066, 36.63639], [-120.62033, 36.63596], [-120.61537, 36.62943], [-120.61239, 36.62555], [-120.61103, 36.62396], [-120.60971, 36.62262], [-120.6083, 36.62145], [-120.60588, 36.61957], [-120.6021, 36.61676], [-120.59527, 36.61159], [-120.58953, 36.60727], [-120.58897, 36.60686], [-120.58805, 36.60617], [-120.58741, 36.6057], [-120.58553, 36.60429], [-120.58462, 36.60362], [-120.58368, 36.60287], [-120.5832, 36.6025], [-120.58153, 36.60128], [-120.5748, 36.59617], [-120.54183, 36.57127], [-120.53884, 36.56901], [-120.53545, 36.56646], [-120.51828, 36.55349], [-120.51262, 36.54921], [-120.50984, 36.5471], [-120.50669, 36.54473], [-120.5043, 36.54293], [-120.50139, 36.54071], [-120.49729, 36.53762], [-120.49478, 36.53573], [-120.49403, 36.53515], [-120.49154, 36.53327], [-120.49114, 36.53295], [-120.48942, 36.53166], [-120.48797, 36.53059], [-120.48649, 36.52947], [-120.48612, 36.52919], [-120.4855, 36.52871], [-120.48509, 36.5284], [-120.48205, 36.52609], [-120.47572, 36.5213], [-120.47362, 36.51948], [-120.47165, 36.51752], [-120.46698, 36.51295], [-120.4599, 36.50593], [-120.45079, 36.49684], [-120.45003, 36.49607], [-120.44927, 36.49534], [-120.44828, 36.49432], [-120.44598, 36.49169], [-120.44185, 36.48697], [-120.43827, 36.48276], [-120.43359, 36.47758], [-120.43165, 36.47569], [-120.43079, 36.4748], [-120.42805, 36.47191], [-120.42635, 36.47018], [-120.41944, 36.4629], [-120.41388, 36.45713], [-120.41126, 36.45434], [-120.41093, 36.454], [-120.40788, 36.45072], [-120.4026, 36.44488], [-120.40046, 36.44251], [-120.39655, 36.43814], [-120.39568, 36.43716], [-120.3953, 36.43675], [-120.39377, 36.43507], [-120.39262, 36.43381], [-120.39186, 36.43291], [-120.39157, 36.4326], [-120.38993, 36.43073], [-120.38544, 36.42569], [-120.37927, 36.4188], [-120.37897, 36.41842], [-120.37765, 36.41703], [-120.37445, 36.41343], [-120.37064, 36.40915], [-120.3672, 36.40529], [-120.36145, 36.3989], [-120.36114, 36.39854], [-120.35705, 36.394], [-120.35288, 36.38929], [-120.34965, 36.38573], [-120.34544, 36.381], [-120.34087, 36.37589], [-120.33639, 36.37089], [-120.33377, 36.36796], [-120.32968, 36.36339], [-120.32564, 36.35887], [-120.31991, 36.35244], [-120.31956, 36.35206], [-120.31699, 36.34918], [-120.31344, 36.34518], [-120.3109, 36.34236], [-120.30764, 36.33869], [-120.30456, 36.33525], [-120.30025, 36.33042], [-120.29536, 36.32475], [-120.28988, 36.31816], [-120.2858, 36.31333], [-120.28288, 36.30989], [-120.27967, 36.30641], [-120.27633, 36.30264], [-120.27276, 36.29874], [-120.27129, 36.29705], [-120.27086, 36.29653], [-120.2702, 36.29558], [-120.26893, 36.29353], [-120.26759, 36.29147], [-120.2673, 36.29102], [-120.26423, 36.28615], [-120.25735, 36.27529], [-120.25612, 36.27327], [-120.24643, 36.2579], [-120.24319, 36.25276], [-120.24188, 36.25069], [-120.24099, 36.24927], [-120.24026, 36.24814], [-120.23476, 36.23939], [-120.2298, 36.23156], [-120.2295, 36.23105], [-120.22041, 36.21657], [-120.21612, 36.20973], [-120.21146, 36.20234], [-120.20707, 36.19539], [-120.19842, 36.18165], [-120.19814, 36.1812], [-120.1972, 36.1797], [-120.19644, 36.17869], [-120.19571, 36.17776], [-120.19485, 36.17681], [-120.19433, 36.17624], [-120.18584, 36.16698], [-120.18527, 36.16635], [-120.16213, 36.14107], [-120.15745, 36.13593], [-120.15711, 36.13556], [-120.1346, 36.11096], [-120.12485, 36.1003], [-120.11877, 36.09362], [-120.11845, 36.09328], [-120.11832, 36.09314], [-120.11287, 36.08715], [-120.11194, 36.08612], [-120.10633, 36.08003], [-120.10518, 36.07896], [-120.10453, 36.07841], [-120.10392, 36.07794], [-120.10322, 36.07742], [-120.10252, 36.07694], [-120.10192, 36.07655], [-120.10078, 36.07586], [-120.09905, 36.07483], [-120.0984, 36.07441], [-120.0954, 36.07261], [-120.09261, 36.07094], [-120.08976, 36.06921], [-120.08674, 36.06742], [-120.08371, 36.06557], [-120.07771, 36.06196], [-120.07325, 36.05927], [-120.0708, 36.05778], [-120.06761, 36.05587], [-120.06401, 36.05371], [-120.06104, 36.0519], [-120.05837, 36.0503], [-120.05666, 36.04927], [-120.05404, 36.04769], [-120.05258, 36.04682], [-120.04582, 36.0431], [-120.04166, 36.04079], [-120.03827, 36.03891], [-120.03453, 36.03686], [-120.03118, 36.03504], [-120.02769, 36.0331], [-120.02502, 36.03164], [-120.02304, 36.03047], [-120.02138, 36.02945], [-120.01969, 36.02837], [-120.01862, 36.02769], [-120.0175, 36.02692], [-120.01583, 36.02588], [-120.01421, 36.02483], [-120.01318, 36.02415], [-120.01116, 36.02286], [-120.00992, 36.02205], [-120.00816, 36.02094], [-120.00395, 36.01821], [-120.00009, 36.01572], [-119.99922, 36.01515], [-119.99767, 36.01416], [-119.99617, 36.0132], [-119.99411, 36.01191], [-119.99218, 36.01062], [-119.9893, 36.00879], [-119.98863, 36.00839], [-119.98811, 36.00803], [-119.98772, 36.00776], [-119.98724, 36.00742], [-119.9868, 36.00707], [-119.98624, 36.00662], [-119.98572, 36.00618], [-119.98542, 36.00589], [-119.98496, 36.00547], [-119.98453, 36.00506], [-119.98399, 36.00455], [-119.98352, 36.0041], [-119.98313, 36.00371], [-119.98286, 36.00346], [-119.98264, 36.00324], [-119.9821, 36.00271], [-119.98172, 36.00232], [-119.98152, 36.00211], [-119.98078, 36.00143], [-119.98024, 36.00089], [-119.97971, 36.0004], [-119.97844, 35.99914], [-119.97639, 35.99708], [-119.97539, 35.99613], [-119.97458, 35.99535], [-119.97382, 35.9946], [-119.97334, 35.99412], [-119.97275, 35.99358], [-119.9724, 35.99325], [-119.96679, 35.98774], [-119.96316, 35.98421], [-119.96076, 35.98187], [-119.96011, 35.98124], [-119.95783, 35.97904], [-119.95681, 35.97797], [-119.94846, 35.96985], [-119.94666, 35.9681], [-119.94592, 35.96739], [-119.94454, 35.96604], [-119.94275, 35.96427], [-119.94181, 35.96336], [-119.94127, 35.96283], [-119.93535, 35.95713], [-119.93017, 35.95201], [-119.92864, 35.95053], [-119.92566, 35.94767], [-119.92255, 35.94457], [-119.92052, 35.94259], [-119.91941, 35.94152], [-119.91828, 35.9404], [-119.91655, 35.93873], [-119.9155, 35.93771], [-119.91516, 35.9374], [-119.91453, 35.93685], [-119.91387, 35.9362], [-119.91243, 35.9347], [-119.91087, 35.93325], [-119.91037, 35.93275], [-119.90985, 35.93219], [-119.90898, 35.93132], [-119.90544, 35.92787], [-119.90192, 35.92443], [-119.89657, 35.91919], [-119.89414, 35.9168], [-119.89162, 35.91436], [-119.88977, 35.91253], [-119.88756, 35.91036], [-119.88565, 35.90848], [-119.88375, 35.90667], [-119.88298, 35.90592], [-119.88214, 35.90509], [-119.87987, 35.90287], [-119.87857, 35.90163], [-119.87684, 35.89994], [-119.87565, 35.89878], [-119.87433, 35.89746], [-119.87268, 35.89586], [-119.87165, 35.89485], [-119.87072, 35.89396], [-119.86951, 35.89276], [-119.8688, 35.89208], [-119.86691, 35.89022], [-119.86583, 35.88914], [-119.86339, 35.88665], [-119.86136, 35.88447], [-119.85757, 35.88047], [-119.85564, 35.87843], [-119.85308, 35.87577], [-119.85118, 35.87378], [-119.84943, 35.87191], [-119.84898, 35.87146], [-119.84514, 35.86743], [-119.84246, 35.86453], [-119.84159, 35.8636], [-119.83733, 35.85912], [-119.8338, 35.85536], [-119.83001, 35.85134], [-119.82596, 35.84647], [-119.82326, 35.84316], [-119.82144, 35.84098], [-119.81969, 35.83877], [-119.81442, 35.83227], [-119.78278, 35.78987], [-119.77537, 35.77997], [-119.75825, 35.75702], [-119.74235, 35.73574], [-119.73702, 35.72866], [-119.73027, 35.71949], [-119.71769, 35.70258], [-119.69062, 35.6663], [-119.65687, 35.62089], [-119.65121, 35.61329], [-119.64662, 35.60706], [-119.64579, 35.60601], [-119.64516, 35.60528], [-119.64453, 35.60461], [-119.64379, 35.60381], [-119.64304, 35.60305], [-119.64027, 35.60017], [-119.6387, 35.59856], [-119.63396, 35.59362], [-119.62672, 35.58603], [-119.6138, 35.5725], [-119.61075, 35.56948], [-119.60724, 35.56625], [-119.59628, 35.55629], [-119.58664, 35.54743], [-119.57178, 35.5337], [-119.56671, 35.52914], [-119.55891, 35.52187], [-119.55165, 35.51525], [-119.5441, 35.50829], [-119.53946, 35.50406], [-119.5377, 35.50243], [-119.53414, 35.49915], [-119.53279, 35.49791], [-119.53036, 35.49568], [-119.52924, 35.49477], [-119.52876, 35.49439], [-119.52819, 35.49395], [-119.52687, 35.49296], [-119.51708, 35.48588], [-119.50384, 35.47627], [-119.47787, 35.4574], [-119.4756, 35.45581], [-119.47053, 35.45207], [-119.4643, 35.44757], [-119.45779, 35.44282], [-119.45624, 35.44168], [-119.45276, 35.43915], [-119.42732, 35.42065], [-119.42179, 35.41663], [-119.41986, 35.41521], [-119.40235, 35.40237], [-119.39948, 35.40023], [-119.39893, 35.39983], [-119.3978, 35.399], [-119.39695, 35.39841], [-119.39504, 35.39702], [-119.38732, 35.39139], [-119.38137, 35.38709], [-119.37626, 35.38341], [-119.37108, 35.37971], [-119.36665, 35.37647], [-119.36244, 35.37346], [-119.35809, 35.3704], [-119.35351, 35.36716], [-119.34909, 35.36402], [-119.34346, 35.36002], [-119.34003, 35.35763], [-119.33971, 35.35734], [-119.33947, 35.35714], [-119.3391, 35.35685], [-119.33868, 35.35646], [-119.33847, 35.35624], [-119.33829, 35.35598], [-119.33818, 35.35571], [-119.33811, 35.35543], [-119.3381, 35.355], [-119.3381, 35.35494], [-119.33751, 35.35495], [-119.33667, 35.35495], [-119.33541, 35.35495], [-119.33463, 35.35494], [-119.33381, 35.35488], [-119.33305, 35.35486], [-119.33222, 35.35484], [-119.33058, 35.35485], [-119.3236, 35.35481], [-119.30562, 35.35469], [-119.29678, 35.35464], [-119.26946, 35.3545], [-119.25213, 35.35437], [-119.23705, 35.35432], [-119.23434, 35.35431], [-119.23212, 35.35431], [-119.21655, 35.35434], [-119.20764, 35.35436], [-119.19875, 35.35441], [-119.19595, 35.35443], [-119.18988, 35.35445], [-119.18748, 35.35443], [-119.18426, 35.35444], [-119.18098, 35.35441], [-119.18024, 35.35441], [-119.17922, 35.35441], [-119.17824, 35.35449], [-119.17701, 35.35466], [-119.17583, 35.35497], [-119.17501, 35.35529], [-119.17448, 35.35549], [-119.17032, 35.35778], [-119.16879, 35.35845], [-119.16728, 35.35888], [-119.16562, 35.35921], [-119.16441, 35.35937], [-119.16298, 35.35946], [-119.15483, 35.35945], [-119.15348, 35.35953], [-119.15226, 35.35966], [-119.15082, 35.35992], [-119.14553, 35.36096], [-119.14248, 35.36163], [-119.1413, 35.36181], [-119.13973, 35.36187], [-119.13819, 35.36185], [-119.12644, 35.36186], [-119.12329, 35.36185], [-119.11929, 35.36185], [-119.11481, 35.3618], [-119.11303, 35.36179], [-119.11066, 35.36178], [-119.10857, 35.36185], [-119.10171, 35.36186], [-119.10033, 35.36188], [-119.09934, 35.36195], [-119.09824, 35.36215], [-119.09741, 35.36239], [-119.09673, 35.3627], [-119.09595, 35.36311], [-119.09524, 35.36356], [-119.09467, 35.36391], [-119.09401, 35.36439], [-119.09354, 35.36477], [-119.09331, 35.36488], [-119.09312, 35.36494], [-119.09287, 35.365], [-119.09198, 35.36507], [-119.09189, 35.36406], [-119.09184, 35.36311], [-119.09183, 35.363], [-119.09183, 35.3629], [-119.09183, 35.36267], [-119.09186, 35.3624], [-119.0919, 35.36204], [-119.09194, 35.36189], [-119.09211, 35.36125], [-119.09222, 35.36079], [-119.09227, 35.3605], [-119.09231, 35.3602], [-119.09233, 35.35992], [-119.09234, 35.35957], [-119.09233, 35.35895], [-119.09233, 35.35794], [-119.09238, 35.35445], [-119.09237, 35.3543], [-119.09218, 35.3543], [-119.09207, 35.3543], [-119.0899, 35.3543], [-119.08738, 35.35429], [-119.08652, 35.35429], [-119.08293, 35.35428], [-119.08275, 35.35428], [-119.07877, 35.35426], [-119.07827, 35.35426], [-119.07779, 35.35427], [-119.07576, 35.35425], [-119.07565, 35.35425], [-119.07469, 35.35425], [-119.07443, 35.35424], [-119.07365, 35.35423], [-119.07344, 35.35423], [-119.07212, 35.35423], [-119.06942, 35.35421], [-119.06927, 35.35421], [-119.06714, 35.3542], [-119.06405, 35.35419], [-119.06397, 35.35419], [-119.06308, 35.35419], [-119.06242, 35.35417], [-119.06138, 35.35416], [-119.06126, 35.35416], [-119.06107, 35.35416], [-119.06094, 35.35416], [-119.05767, 35.35416], [-119.05752, 35.35415], [-119.0547, 35.35415], [-119.05461, 35.35415], [-119.05452, 35.35415], [-119.0524, 35.35413], [-119.05229, 35.35413], [-119.05219, 35.35413], [-119.05151, 35.35413], [-119.05122, 35.35412], [-119.05096, 35.35413], [-119.05049, 35.35414], [-119.04997, 35.35412], [-119.04954, 35.35412], [-119.04895, 35.35412], [-119.04802, 35.35412], [-119.04787, 35.35411], [-119.04771, 35.35411], [-119.04672, 35.35411], [-119.04507, 35.3541], [-119.04358, 35.35409], [-119.04341, 35.35409], [-119.04347, 35.35399], [-119.04346, 35.3528], [-119.0434, 35.35269], [-119.0425, 35.35268], [-119.04208, 35.35266], [-119.04145, 35.3526], [-119.0412, 35.35258], [-119.04091, 35.35256], [-119.04006, 35.35256], [-119.03849, 35.35255], [-119.03513, 35.35253], [-119.03425, 35.35251], [-119.02978, 35.35247], [-119.02755, 35.35246], [-119.02696, 35.35246], [-119.02561, 35.35245], [-119.02527, 35.35245], [-119.02246, 35.35243], [-119.01526, 35.35238], [-119.01216, 35.35236], [-119.01161, 35.35235], [-119.00747, 35.35233], [-119.00214, 35.35227], [-118.99958, 35.35227], [-118.99444, 35.35226], [-118.99393, 35.35226], [-118.98952, 35.35227], [-118.98889, 35.35228], [-118.98563, 35.35227], [-118.98497, 35.35227], [-118.98097, 35.3523], [-118.97952, 35.35229], [-118.97867, 35.35229], [-118.97675, 35.35228], [-118.97659, 35.35228], [-118.97615, 35.35229], [-118.97556, 35.3523], [-118.97454, 35.35233], [-118.97402, 35.35236], [-118.9737, 35.35238], [-118.97307, 35.35242], [-118.97216, 35.35249], [-118.97113, 35.3526], [-118.97061, 35.35265], [-118.96975, 35.35272], [-118.9689, 35.35278], [-118.96785, 35.35285], [-118.96722, 35.35287], [-118.9665, 35.35287], [-118.9653, 35.35289], [-118.96428, 35.35285], [-118.96316, 35.35279], [-118.96229, 35.35274], [-118.96211, 35.35273], [-118.96125, 35.35268], [-118.96023, 35.35262], [-118.95931, 35.35257], [-118.95789, 35.35247], [-118.9565, 35.35237], [-118.95606, 35.35234], [-118.95563, 35.35232], [-118.95534, 35.3523], [-118.9541, 35.35223], [-118.95254, 35.35215], [-118.95143, 35.3521], [-118.95013, 35.35208], [-118.94952, 35.35208], [-118.94829, 35.3521], [-118.94289, 35.35211], [-118.94138, 35.35212], [-118.94051, 35.35213], [-118.93618, 35.35213], [-118.92736, 35.35219], [-118.9235, 35.3522], [-118.92299, 35.3522], [-118.92001, 35.35223], [-118.91708, 35.35223], [-118.91606, 35.35221], [-118.91504, 35.35218], [-118.9144, 35.35215], [-118.91392, 35.35211], [-118.91308, 35.35206], [-118.90853, 35.35173], [-118.90536, 35.35153], [-118.90028, 35.35118], [-118.89977, 35.35113], [-118.89926, 35.35106], [-118.89875, 35.35099], [-118.89825, 35.3509], [-118.89775, 35.35079], [-118.89726, 35.35068], [-118.89677, 35.35055], [-118.89623, 35.35039], [-118.88327, 35.34658], [-118.88199, 35.34618], [-118.88133, 35.34599], [-118.88067, 35.34582], [-118.87999, 35.34567], [-118.87914, 35.3455], [-118.87407, 35.34471], [-118.87294, 35.34453], [-118.8698, 35.34402], [-118.86406, 35.34311], [-118.86322, 35.34296], [-118.86255, 35.34283], [-118.86188, 35.34268], [-118.86066, 35.34238], [-118.85657, 35.34139], [-118.85225, 35.34035], [-118.84698, 35.3391], [-118.8436, 35.33827], [-118.84282, 35.33808], [-118.83751, 35.33682], [-118.82492, 35.33377], [-118.81121, 35.33044], [-118.80805, 35.32969], [-118.80711, 35.32947], [-118.80686, 35.32941], [-118.80653, 35.32932], [-118.8062, 35.32924], [-118.80587, 35.32914], [-118.80554, 35.32904], [-118.80522, 35.32894], [-118.8049, 35.32883], [-118.80458, 35.32872], [-118.80396, 35.32849], [-118.80331, 35.3282], [-118.80303, 35.32807], [-118.80273, 35.32792], [-118.80244, 35.32777], [-118.80215, 35.32762], [-118.80186, 35.32746], [-118.80157, 35.32729], [-118.80129, 35.32712], [-118.80102, 35.32695], [-118.80075, 35.32677], [-118.80048, 35.32659], [-118.80022, 35.3264], [-118.79996, 35.32621], [-118.7997, 35.32602], [-118.79945, 35.32581], [-118.79921, 35.32561], [-118.79854, 35.32503], [-118.79111, 35.31864], [-118.78638, 35.31449], [-118.7855, 35.31376], [-118.78235, 35.31101], [-118.77969, 35.30873], [-118.7791, 35.30822], [-118.77074, 35.30097], [-118.77056, 35.30082], [-118.76959, 35.29997], [-118.76924, 35.29973], [-118.76863, 35.29929], [-118.76798, 35.29887], [-118.76731, 35.29846], [-118.76663, 35.29808], [-118.76608, 35.29779], [-118.76521, 35.29736], [-118.76353, 35.29666], [-118.76347, 35.29664], [-118.75774, 35.29439], [-118.75713, 35.29415], [-118.75681, 35.29403], [-118.75484, 35.29326], [-118.75299, 35.29252], [-118.75239, 35.29227], [-118.74907, 35.29097], [-118.74754, 35.29035], [-118.74697, 35.29012], [-118.74205, 35.28813], [-118.73447, 35.28511], [-118.73409, 35.28493], [-118.73364, 35.2847], [-118.733, 35.28436], [-118.73059, 35.28299], [-118.7281, 35.28153], [-118.72548, 35.28004], [-118.72441, 35.27952], [-118.72316, 35.27902], [-118.72176, 35.27858], [-118.72017, 35.27822], [-118.71982, 35.27815], [-118.7194, 35.27809], [-118.7178, 35.27788], [-118.71727, 35.27781], [-118.71695, 35.27776], [-118.71623, 35.27764], [-118.71551, 35.27749], [-118.71485, 35.27733], [-118.71451, 35.27723], [-118.71354, 35.27692], [-118.71294, 35.2767], [-118.71237, 35.27646], [-118.71185, 35.27623], [-118.71132, 35.27597], [-118.71074, 35.27567], [-118.70719, 35.27359], [-118.70683, 35.27338], [-118.70636, 35.2731], [-118.7044, 35.27196], [-118.70232, 35.27072], [-118.70009, 35.26943], [-118.69997, 35.26934], [-118.69975, 35.26922], [-118.69952, 35.26911], [-118.69923, 35.26898], [-118.69869, 35.26877], [-118.6984, 35.26868], [-118.69771, 35.26849], [-118.69726, 35.26839], [-118.69671, 35.2683], [-118.69638, 35.26827], [-118.696, 35.26824], [-118.69547, 35.26821], [-118.69517, 35.26822], [-118.69463, 35.26824], [-118.69411, 35.26828], [-118.69383, 35.26832], [-118.69312, 35.26844], [-118.69282, 35.26852], [-118.69248, 35.26861], [-118.69201, 35.26876], [-118.69139, 35.26898], [-118.69038, 35.26932], [-118.68978, 35.26951], [-118.68935, 35.26962], [-118.68874, 35.26976], [-118.68847, 35.26981], [-118.68748, 35.26995], [-118.68679, 35.27001], [-118.68577, 35.27006], [-118.68542, 35.27005], [-118.68441, 35.27002], [-118.6828, 35.26992], [-118.68206, 35.26988], [-118.68158, 35.26986], [-118.68127, 35.26985], [-118.68017, 35.26979], [-118.67924, 35.2697], [-118.6788, 35.26964], [-118.678, 35.2695], [-118.67714, 35.2693], [-118.6739, 35.26837], [-118.67218, 35.26784], [-118.66801, 35.2666], [-118.66754, 35.26646], [-118.66706, 35.26632], [-118.66601, 35.266], [-118.66213, 35.26488], [-118.66116, 35.26462], [-118.66021, 35.26441], [-118.65952, 35.26429], [-118.65834, 35.26416], [-118.65792, 35.26413], [-118.65565, 35.26403], [-118.65517, 35.26402], [-118.64781, 35.26375], [-118.64632, 35.2637], [-118.64574, 35.26365], [-118.64546, 35.26361], [-118.64491, 35.26352], [-118.64396, 35.26328], [-118.64237, 35.26291], [-118.64191, 35.26281], [-118.64122, 35.26272], [-118.64073, 35.2627], [-118.64034, 35.2627], [-118.64004, 35.26271], [-118.63973, 35.26272], [-118.63945, 35.26274], [-118.63927, 35.26275], [-118.63909, 35.26277], [-118.63892, 35.26279], [-118.63854, 35.26285], [-118.63545, 35.26351], [-118.63509, 35.26356], [-118.63475, 35.26359], [-118.63378, 35.26364], [-118.63322, 35.26365], [-118.63049, 35.26369], [-118.62989, 35.26371], [-118.62851, 35.26374], [-118.62807, 35.26373], [-118.62784, 35.2637], [-118.62756, 35.26366], [-118.62741, 35.26362], [-118.62729, 35.26359], [-118.62637, 35.26334], [-118.62499, 35.26292], [-118.62467, 35.26283], [-118.62416, 35.26271], [-118.62355, 35.26259], [-118.62251, 35.26241], [-118.622, 35.26232], [-118.6215, 35.2622], [-118.62122, 35.26212], [-118.62059, 35.26189], [-118.62044, 35.26182], [-118.62027, 35.26173], [-118.61989, 35.26147], [-118.61928, 35.26099], [-118.61884, 35.26066], [-118.61854, 35.26046], [-118.61813, 35.26021], [-118.61748, 35.25984], [-118.61645, 35.2593], [-118.61539, 35.25868], [-118.6151, 35.2585], [-118.6148, 35.25827], [-118.61407, 35.25764], [-118.61368, 35.25733], [-118.61301, 35.25683], [-118.61273, 35.25664], [-118.61238, 35.25645], [-118.61215, 35.25634], [-118.61194, 35.25625], [-118.61164, 35.25615], [-118.61152, 35.25612], [-118.61035, 35.25592], [-118.60978, 35.25581], [-118.60946, 35.25571], [-118.6092, 35.25561], [-118.60883, 35.25542], [-118.60848, 35.25519], [-118.60817, 35.25497], [-118.60765, 35.25453], [-118.60748, 35.2544], [-118.60626, 35.25338], [-118.60488, 35.25216], [-118.60415, 35.25158], [-118.60225, 35.25025], [-118.60184, 35.24999], [-118.6015, 35.24984], [-118.60108, 35.24967], [-118.6007, 35.24955], [-118.59635, 35.24855], [-118.59587, 35.2484], [-118.59566, 35.24834], [-118.59551, 35.24828], [-118.59511, 35.24808], [-118.59467, 35.24779], [-118.5944, 35.24757], [-118.59413, 35.24727], [-118.59387, 35.24692], [-118.59353, 35.24654], [-118.59297, 35.24589], [-118.59258, 35.2455], [-118.59237, 35.24532], [-118.59214, 35.24515], [-118.59134, 35.24467], [-118.59087, 35.2444], [-118.59042, 35.24411], [-118.59016, 35.24387], [-118.58981, 35.24346], [-118.58962, 35.24319], [-118.58944, 35.24291], [-118.58922, 35.24254], [-118.58868, 35.24181], [-118.58829, 35.24144], [-118.58802, 35.24123], [-118.58764, 35.24098], [-118.58724, 35.24076], [-118.58691, 35.24066], [-118.58644, 35.24051], [-118.58448, 35.24018], [-118.58233, 35.23985], [-118.58006, 35.23951], [-118.57989, 35.23947], [-118.57943, 35.23936], [-118.57927, 35.23931], [-118.57898, 35.2392], [-118.57869, 35.23906], [-118.57861, 35.23902], [-118.57826, 35.23881], [-118.57793, 35.23856], [-118.57766, 35.23833], [-118.57746, 35.2381], [-118.57723, 35.23779], [-118.57664, 35.23669], [-118.57604, 35.23557], [-118.57545, 35.23453], [-118.57527, 35.23426], [-118.57513, 35.23406], [-118.57485, 35.23375], [-118.57458, 35.2335], [-118.57427, 35.23329], [-118.5739, 35.23309], [-118.57321, 35.23276], [-118.57055, 35.23135], [-118.57018, 35.23114], [-118.56985, 35.23089], [-118.56964, 35.23071], [-118.56946, 35.23055], [-118.56928, 35.23035], [-118.5691, 35.2301], [-118.56897, 35.22988], [-118.56885, 35.22961], [-118.56873, 35.22928], [-118.56866, 35.22883], [-118.56858, 35.22692], [-118.56853, 35.22604], [-118.56852, 35.22587], [-118.56845, 35.22555], [-118.56841, 35.22542], [-118.56838, 35.22529], [-118.56831, 35.2251], [-118.56822, 35.22491], [-118.56811, 35.22474], [-118.56793, 35.22445], [-118.56777, 35.22426], [-118.56764, 35.22412], [-118.5675, 35.22398], [-118.56734, 35.22384], [-118.56719, 35.22372], [-118.56707, 35.22363], [-118.56673, 35.22343], [-118.56657, 35.22335], [-118.56636, 35.22325], [-118.56623, 35.2232], [-118.56602, 35.22312], [-118.56582, 35.22305], [-118.56564, 35.22301], [-118.56536, 35.22294], [-118.56515, 35.2229], [-118.56492, 35.22287], [-118.5634, 35.22268], [-118.56168, 35.22247], [-118.56121, 35.22243], [-118.56086, 35.22238], [-118.56055, 35.22231], [-118.56016, 35.22222], [-118.55987, 35.22212], [-118.55969, 35.22205], [-118.55952, 35.22198], [-118.55926, 35.22187], [-118.55891, 35.2217], [-118.55858, 35.2215], [-118.55817, 35.2212], [-118.55771, 35.22087], [-118.55669, 35.22015], [-118.55497, 35.21895], [-118.55443, 35.21856], [-118.55422, 35.21839], [-118.55391, 35.21813], [-118.55356, 35.21777], [-118.5533, 35.21749], [-118.55314, 35.21729], [-118.55241, 35.21631], [-118.55184, 35.21559], [-118.55155, 35.21527], [-118.55139, 35.21512], [-118.55123, 35.215], [-118.5509, 35.21478], [-118.55031, 35.21445], [-118.5489, 35.21373], [-118.54617, 35.21233], [-118.54393, 35.21123], [-118.54125, 35.20985], [-118.54021, 35.20935], [-118.53954, 35.20909], [-118.53733, 35.2083], [-118.53711, 35.20822], [-118.53644, 35.208], [-118.53572, 35.20773], [-118.53539, 35.20756], [-118.53496, 35.20728], [-118.53322, 35.20591], [-118.53113, 35.20428], [-118.53033, 35.20367], [-118.53011, 35.20354], [-118.52899, 35.20299], [-118.52827, 35.20268], [-118.52485, 35.20121], [-118.52367, 35.20072], [-118.52217, 35.20005], [-118.51991, 35.19906], [-118.51953, 35.19884], [-118.51921, 35.19865], [-118.51887, 35.19842], [-118.51359, 35.1948], [-118.51058, 35.19275], [-118.50658, 35.19007], [-118.50624, 35.18981], [-118.50592, 35.18952], [-118.50587, 35.18947], [-118.50551, 35.1891], [-118.50539, 35.18894], [-118.50464, 35.1878], [-118.50421, 35.18719], [-118.504, 35.18695], [-118.50359, 35.18652], [-118.50316, 35.18613], [-118.50269, 35.18576], [-118.50166, 35.18507], [-118.50108, 35.18471], [-118.50047, 35.18433], [-118.4994, 35.18379], [-118.49675, 35.18254], [-118.49608, 35.18225], [-118.49582, 35.18214], [-118.49556, 35.18207], [-118.49508, 35.18195], [-118.4948, 35.1819], [-118.49446, 35.18186], [-118.49299, 35.18171], [-118.49111, 35.18148], [-118.49049, 35.18141], [-118.49006, 35.18134], [-118.4898, 35.1813], [-118.48948, 35.18122], [-118.48922, 35.18114], [-118.48897, 35.18105], [-118.48854, 35.18083], [-118.48832, 35.18069], [-118.48811, 35.18053], [-118.48689, 35.17966], [-118.48655, 35.17944], [-118.48625, 35.17929], [-118.4858, 35.17908], [-118.48394, 35.17837], [-118.48301, 35.17796], [-118.48266, 35.17778], [-118.48238, 35.1776], [-118.48209, 35.17739], [-118.4818, 35.17716], [-118.48159, 35.17697], [-118.48121, 35.17656], [-118.48106, 35.17639], [-118.4808, 35.176], [-118.48063, 35.17571], [-118.47999, 35.17465], [-118.47972, 35.17423], [-118.47969, 35.1742], [-118.47949, 35.17393], [-118.47932, 35.17372], [-118.47909, 35.17349], [-118.47757, 35.17218], [-118.47714, 35.17179], [-118.47674, 35.17139], [-118.47575, 35.17037], [-118.47572, 35.17033], [-118.47475, 35.16934], [-118.47458, 35.16915], [-118.47441, 35.16896], [-118.47419, 35.16867], [-118.47405, 35.16843], [-118.47393, 35.16818], [-118.47385, 35.16797], [-118.47374, 35.1675], [-118.4737, 35.16701], [-118.47339, 35.16416], [-118.47339, 35.16408], [-118.47339, 35.1639], [-118.47342, 35.16344], [-118.47348, 35.16307], [-118.47385, 35.16183], [-118.47391, 35.16162], [-118.474, 35.16116], [-118.47402, 35.16093], [-118.47403, 35.16065], [-118.47396, 35.15788], [-118.47395, 35.1571], [-118.47394, 35.15693], [-118.47388, 35.15661], [-118.47379, 35.15628], [-118.47367, 35.15598], [-118.47356, 35.15576], [-118.4706, 35.15146], [-118.47053, 35.15136], [-118.47012, 35.15077], [-118.46989, 35.15035], [-118.46971, 35.14994], [-118.46962, 35.14965], [-118.46957, 35.14946], [-118.46949, 35.14905], [-118.46948, 35.14899], [-118.46947, 35.14887], [-118.46946, 35.14872], [-118.46946, 35.14838], [-118.46946, 35.14831], [-118.46948, 35.14818], [-118.46953, 35.1478], [-118.4697, 35.14695], [-118.46978, 35.14659], [-118.46987, 35.14619], [-118.46993, 35.1459], [-118.46996, 35.14565], [-118.46998, 35.14523], [-118.46995, 35.14484], [-118.4699, 35.14452], [-118.4698, 35.1441], [-118.4697, 35.14384], [-118.46961, 35.14362], [-118.46944, 35.14329], [-118.46927, 35.14297], [-118.46902, 35.14265], [-118.46884, 35.14245], [-118.46842, 35.14201], [-118.46814, 35.14178], [-118.46781, 35.14154], [-118.46754, 35.14136], [-118.4673, 35.14123], [-118.46702, 35.14109], [-118.46662, 35.14091], [-118.46626, 35.14078], [-118.46582, 35.14065], [-118.46533, 35.14055], [-118.4644, 35.14039], [-118.46348, 35.14023], [-118.46132, 35.13987], [-118.46058, 35.13976], [-118.4599, 35.13969], [-118.45923, 35.13965], [-118.4581, 35.13964], [-118.45558, 35.13964], [-118.44595, 35.13963], [-118.43658, 35.13962], [-118.43606, 35.13961], [-118.4354, 35.13955], [-118.43485, 35.13947], [-118.43424, 35.13934], [-118.43357, 35.13916], [-118.43318, 35.13902], [-118.43241, 35.1387], [-118.41476, 35.13103], [-118.41446, 35.13089], [-118.41419, 35.13075], [-118.41381, 35.13052], [-118.41339, 35.13022], [-118.41308, 35.12996], [-118.41282, 35.12972], [-118.41249, 35.12936], [-118.41222, 35.12901], [-118.41204, 35.12873], [-118.41188, 35.12846], [-118.41172, 35.1281], [-118.4116, 35.12782], [-118.41127, 35.127], [-118.41106, 35.12648], [-118.41075, 35.1259], [-118.41057, 35.12563], [-118.41032, 35.12529], [-118.41009, 35.12502], [-118.40985, 35.12476], [-118.40952, 35.12444], [-118.40911, 35.1241], [-118.40886, 35.12391], [-118.40845, 35.12364], [-118.40821, 35.1235], [-118.40787, 35.12332], [-118.40714, 35.12298], [-118.40691, 35.12291], [-118.40645, 35.12275], [-118.40537, 35.12247], [-118.40288, 35.1218], [-118.37913, 35.1155], [-118.37846, 35.11535], [-118.37786, 35.11526], [-118.37747, 35.11522], [-118.37705, 35.11519], [-118.37587, 35.11514], [-118.37386, 35.11507], [-118.37244, 35.11503], [-118.37016, 35.11496], [-118.36819, 35.1149], [-118.36694, 35.11477], [-118.3664, 35.11467], [-118.36572, 35.1145], [-118.36025, 35.11293], [-118.35715, 35.11204], [-118.35304, 35.11087], [-118.35251, 35.11074], [-118.35189, 35.11061], [-118.35121, 35.11049], [-118.35051, 35.11039], [-118.34978, 35.11032], [-118.34899, 35.11027], [-118.34816, 35.11025], [-118.32717, 35.11022], [-118.32682, 35.11022], [-118.32605, 35.11022], [-118.32514, 35.11022], [-118.32491, 35.11022], [-118.32469, 35.11022], [-118.32445, 35.11021], [-118.32419, 35.11019], [-118.324, 35.11017], [-118.3238, 35.11015], [-118.3236, 35.11013], [-118.32341, 35.1101], [-118.32321, 35.11006], [-118.32299, 35.11001], [-118.32281, 35.10997], [-118.32263, 35.10993], [-118.3224, 35.10986], [-118.32196, 35.10974], [-118.32158, 35.10959], [-118.32118, 35.10942], [-118.32086, 35.10927], [-118.32053, 35.10909], [-118.31995, 35.10871], [-118.31806, 35.10743], [-118.31773, 35.10721], [-118.31603, 35.10605], [-118.31595, 35.106], [-118.31529, 35.10555], [-118.31522, 35.1055], [-118.31455, 35.10505], [-118.31447, 35.10499], [-118.3139, 35.1046], [-118.31379, 35.10453], [-118.31258, 35.10371], [-118.31185, 35.10322], [-118.3112, 35.10278], [-118.3108, 35.1025], [-118.31046, 35.10222], [-118.31027, 35.10206], [-118.31008, 35.10187], [-118.3097, 35.10143], [-118.30952, 35.10121], [-118.30935, 35.10097], [-118.30865, 35.09992], [-118.3084, 35.09957], [-118.3082, 35.09928], [-118.30797, 35.099], [-118.30778, 35.09879], [-118.30753, 35.09856], [-118.30718, 35.09828], [-118.30674, 35.09799], [-118.30649, 35.09784], [-118.30621, 35.09769], [-118.30595, 35.09757], [-118.30563, 35.09745], [-118.30533, 35.09734], [-118.30503, 35.09726], [-118.30472, 35.09718], [-118.30439, 35.09712], [-118.3041, 35.09707], [-118.30378, 35.09704], [-118.30332, 35.09701], [-118.30298, 35.09701], [-118.30244, 35.09705], [-118.30197, 35.09711], [-118.3017, 35.09717], [-118.30138, 35.09724], [-118.30031, 35.0975], [-118.29825, 35.09801], [-118.29662, 35.09841], [-118.29575, 35.09863], [-118.28984, 35.10008], [-118.2876, 35.10063], [-118.28666, 35.10086], [-118.28576, 35.10106], [-118.28458, 35.10133], [-118.28381, 35.10151], [-118.28235, 35.10187], [-118.28136, 35.10213], [-118.27714, 35.10316], [-118.2733, 35.10409], [-118.27208, 35.10435], [-118.27135, 35.10447], [-118.27092, 35.10455], [-118.2705, 35.10461], [-118.26892, 35.10481], [-118.26828, 35.10487], [-118.26704, 35.10497], [-118.26587, 35.10502], [-118.26447, 35.10503], [-118.26374, 35.10502], [-118.26238, 35.10497], [-118.26086, 35.10488], [-118.26012, 35.10485], [-118.25936, 35.10482], [-118.25855, 35.10483], [-118.25766, 35.10487], [-118.25681, 35.10494], [-118.25624, 35.105], [-118.25546, 35.10512], [-118.25442, 35.10532], [-118.2539, 35.10544], [-118.25337, 35.10557], [-118.25185, 35.106], [-118.24996, 35.10654], [-118.24934, 35.10673], [-118.24884, 35.1069], [-118.24835, 35.10709], [-118.24772, 35.10735], [-118.24645, 35.10794], [-118.24423, 35.10896], [-118.24091, 35.11049], [-118.24008, 35.11087], [-118.2388, 35.11146], [-118.23727, 35.11216], [-118.23659, 35.11247], [-118.23536, 35.11304], [-118.23393, 35.1137], [-118.23058, 35.11525], [-118.22712, 35.11684], [-118.22668, 35.11704], [-118.22625, 35.11722], [-118.22579, 35.11739], [-118.22542, 35.11751], [-118.22507, 35.11762], [-118.22473, 35.11771], [-118.22418, 35.11784], [-118.22371, 35.11793], [-118.22329, 35.118], [-118.22291, 35.11805], [-118.22251, 35.11809], [-118.2221, 35.11813], [-118.22176, 35.11814], [-118.22145, 35.11815], [-118.22102, 35.11816], [-118.22036, 35.11813], [-118.21989, 35.11809], [-118.2192, 35.11803], [-118.21762, 35.11789], [-118.21613, 35.11775], [-118.21471, 35.11764], [-118.21338, 35.11755], [-118.21103, 35.11738], [-118.2016, 35.11672], [-118.20048, 35.11664], [-118.19667, 35.11637], [-118.19396, 35.11618], [-118.19218, 35.11601], [-118.19014, 35.11578], [-118.1877, 35.11544], [-118.18649, 35.11523], [-118.18542, 35.11503], [-118.18411, 35.11478], [-118.18309, 35.11455], [-118.17335, 35.11173], [-118.17122, 35.11092], [-118.17017, 35.1105], [-118.16913, 35.11006], [-118.16741, 35.10928], [-118.15873, 35.10526], [-118.15021, 35.10132], [-118.14446, 35.09865], [-118.13804, 35.09566], [-118.13435, 35.09397], [-118.13344, 35.09355], [-118.13134, 35.09258], [-118.12926, 35.09161], [-118.12762, 35.09074], [-118.12624, 35.08993], [-118.12535, 35.08934], [-118.12435, 35.08865], [-118.12224, 35.08696], [-118.12143, 35.08624], [-118.12068, 35.08551], [-118.12013, 35.08494], [-118.11959, 35.08437], [-118.11886, 35.0835], [-118.11813, 35.08258], [-118.11745, 35.08162], [-118.11659, 35.0803], [-118.11602, 35.0793], [-118.11572, 35.07875], [-118.11533, 35.07792], [-118.11488, 35.07691], [-118.11459, 35.07616], [-118.11432, 35.07541], [-118.11383, 35.07371], [-118.11369, 35.07307], [-118.11323, 35.07011], [-118.11316, 35.06898], [-118.11315, 35.06784], [-118.11312, 35.06037], [-118.11309, 35.05126], [-118.11304, 35.05023], [-118.11297, 35.04958], [-118.11289, 35.04893], [-118.11279, 35.04837], [-118.11271, 35.04794], [-118.11255, 35.04724], [-118.11219, 35.04598], [-118.11159, 35.04438], [-118.11129, 35.04373], [-118.11099, 35.0431], [-118.11052, 35.04225], [-118.11003, 35.04142], [-118.10968, 35.04089], [-118.10933, 35.04039], [-118.10864, 35.03948], [-118.10822, 35.03898], [-118.10707, 35.03772], [-118.1065, 35.03716], [-118.1061, 35.03679], [-118.10569, 35.03643], [-118.10496, 35.03582], [-118.1042, 35.03524], [-118.10309, 35.03446], [-118.1025, 35.03408], [-118.10102, 35.03329], [-118.09911, 35.03235], [-118.09715, 35.03153], [-118.09529, 35.03091], [-118.09346, 35.03038], [-118.09158, 35.03002], [-118.0895, 35.02966], [-118.08685, 35.02925], [-118.08211, 35.02854], [-118.07841, 35.02797], [-118.07486, 35.02743], [-118.06909, 35.02655], [-118.06601, 35.02609], [-118.06295, 35.02563], [-118.06192, 35.02547], [-118.06028, 35.02522], [-118.05966, 35.02512], [-118.05843, 35.02489], [-118.05802, 35.0248], [-118.0564, 35.02444], [-118.05578, 35.02431], [-118.05489, 35.02414], [-118.05396, 35.02398], [-118.05341, 35.0239], [-118.05166, 35.02363], [-118.04897, 35.02323], [-118.04591, 35.02277], [-118.04447, 35.02254], [-118.04251, 35.02224], [-118.03358, 35.02087], [-118.0305, 35.02042], [-118.0276, 35.01997], [-118.02605, 35.01973], [-118.02487, 35.01956], [-118.02356, 35.01939], [-118.0225, 35.0193], [-118.01939, 35.01908], [-118.0189, 35.01905], [-118.01788, 35.01898], [-118.01638, 35.01889], [-118.01557, 35.01882], [-118.01328, 35.01866], [-118.0081, 35.0183], [-118.0054, 35.01812], [-118.00242, 35.01792], [-118.00167, 35.01787], [-118.00001, 35.01776], [-117.99729, 35.01756], [-117.99433, 35.01736], [-117.99304, 35.01728], [-117.99136, 35.01718], [-117.99097, 35.01714], [-117.98941, 35.01703], [-117.98652, 35.0168], [-117.98169, 35.01651], [-117.97711, 35.01619], [-117.97609, 35.01612], [-117.97396, 35.01596], [-117.97246, 35.01586], [-117.97136, 35.01578], [-117.97072, 35.01573], [-117.96401, 35.01528], [-117.95585, 35.01472], [-117.95415, 35.0146], [-117.95191, 35.01444], [-117.94151, 35.01373], [-117.93202, 35.01307], [-117.92916, 35.01287], [-117.92127, 35.01233], [-117.91692, 35.01202], [-117.9152, 35.01191], [-117.91107, 35.01163], [-117.9089, 35.01149], [-117.90277, 35.01105], [-117.89868, 35.01077], [-117.89665, 35.01062], [-117.89051, 35.0102], [-117.88676, 35.00995], [-117.88549, 35.00984], [-117.88149, 35.00958], [-117.88077, 35.00953], [-117.87825, 35.00937], [-117.87663, 35.00924], [-117.86419, 35.00839], [-117.8631, 35.00832], [-117.85742, 35.00794], [-117.85065, 35.00746], [-117.84555, 35.0071], [-117.84006, 35.00671], [-117.83917, 35.00664], [-117.83752, 35.00653], [-117.8359, 35.00642], [-117.83385, 35.00627], [-117.83002, 35.006], [-117.82005, 35.0053], [-117.8169, 35.00507], [-117.8105, 35.00463], [-117.80859, 35.0045], [-117.80411, 35.00421], [-117.79767, 35.00375], [-117.79385, 35.00349], [-117.79129, 35.00329], [-117.78824, 35.00308], [-117.77992, 35.0025], [-117.77795, 35.00238], [-117.77622, 35.00239], [-117.77503, 35.00247], [-117.77435, 35.00252], [-117.77353, 35.00262], [-117.77038, 35.00298], [-117.76795, 35.00324], [-117.76247, 35.00392], [-117.75751, 35.00448], [-117.75413, 35.0049], [-117.75174, 35.00518], [-117.75027, 35.00537], [-117.74621, 35.00583], [-117.74396, 35.0061], [-117.74182, 35.00636], [-117.74041, 35.00654], [-117.73973, 35.00662], [-117.73949, 35.00664], [-117.73875, 35.00668], [-117.73864, 35.00669], [-117.73785, 35.00671], [-117.73463, 35.00668], [-117.73283, 35.00667], [-117.72312, 35.00664], [-117.72201, 35.00665], [-117.71897, 35.00665], [-117.71418, 35.00664], [-117.71164, 35.00661], [-117.70861, 35.00661], [-117.70393, 35.00661], [-117.70369, 35.00661], [-117.70304, 35.0066], [-117.7029, 35.0066], [-117.70236, 35.00659], [-117.70021, 35.00658], [-117.69743, 35.00658], [-117.69463, 35.00657], [-117.69398, 35.00656], [-117.69128, 35.00658], [-117.69041, 35.00656], [-117.68718, 35.00656], [-117.67934, 35.00653], [-117.67346, 35.00652], [-117.67278, 35.00651], [-117.66854, 35.00648], [-117.66761, 35.00648], [-117.66744, 35.00649], [-117.66614, 35.00654], [-117.66531, 35.00663], [-117.66492, 35.00668], [-117.6641, 35.00681], [-117.66327, 35.00698], [-117.66258, 35.00714], [-117.662, 35.0073], [-117.66148, 35.00747], [-117.66036, 35.00788], [-117.65761, 35.00892], [-117.65681, 35.00918], [-117.65651, 35.0093], [-117.65627, 35.00938], [-117.65536, 35.0096], [-117.6548, 35.00973], [-117.65433, 35.00981], [-117.65312, 35.00999], [-117.65267, 35.01003], [-117.65206, 35.01007], [-117.6515, 35.01008], [-117.6509, 35.01008], [-117.65026, 35.01007], [-117.64948, 35.01006], [-117.64887, 35.01005], [-117.64776, 35.01005], [-117.64767, 35.01005], [-117.64632, 35.01004], [-117.6447, 35.01003], [-117.64209, 35.01001], [-117.63519, 35.01], [-117.63253, 35.00999], [-117.62768, 35.00998], [-117.62738, 35.00998], [-117.62696, 35.00997], [-117.62639, 35.00994], [-117.62575, 35.00988], [-117.62499, 35.00979], [-117.62434, 35.00965], [-117.62351, 35.00941], [-117.62278, 35.00912], [-117.62198, 35.00875], [-117.6211, 35.00824], [-117.62033, 35.00771], [-117.61968, 35.00712], [-117.61919, 35.00662], [-117.61866, 35.00596], [-117.61841, 35.00556], [-117.61798, 35.00485], [-117.61766, 35.00411], [-117.61731, 35.00319], [-117.61699, 35.00243], [-117.61668, 35.00188], [-117.61631, 35.00131], [-117.61599, 35.00089], [-117.61556, 35.00042], [-117.61508, 34.99997], [-117.61467, 34.99963], [-117.61394, 34.99912], [-117.61309, 34.99861], [-117.61276, 34.99846], [-117.6126, 34.99839], [-117.612, 34.99814], [-117.61148, 34.99794], [-117.61097, 34.99777], [-117.61047, 34.99765], [-117.60983, 34.99753], [-117.60933, 34.99744], [-117.60848, 34.99734], [-117.60719, 34.99726], [-117.60585, 34.99718], [-117.59704, 34.99669], [-117.59018, 34.99631], [-117.5895, 34.99622], [-117.58899, 34.9961], [-117.58844, 34.9959], [-117.5884, 34.99587], [-117.58808, 34.9957], [-117.58752, 34.99533], [-117.5873, 34.99518], [-117.5867, 34.99486], [-117.58607, 34.99463], [-117.58545, 34.9945], [-117.58448, 34.99443], [-117.58256, 34.99434], [-117.58043, 34.99426], [-117.57941, 34.99422], [-117.57779, 34.99412], [-117.5764, 34.99407], [-117.57158, 34.99384], [-117.56254, 34.9934], [-117.56184, 34.99336], [-117.55893, 34.99321], [-117.5569, 34.99311], [-117.55359, 34.99295], [-117.55306, 34.99293], [-117.54838, 34.99269], [-117.54784, 34.99267], [-117.54601, 34.99257], [-117.54498, 34.99251], [-117.54404, 34.99247], [-117.5416, 34.99235], [-117.53959, 34.9922], [-117.53631, 34.99188], [-117.53474, 34.99173], [-117.52679, 34.99092], [-117.52633, 34.99088], [-117.5242, 34.99066], [-117.52321, 34.9906], [-117.52216, 34.99054], [-117.51981, 34.9904], [-117.51798, 34.99029], [-117.51725, 34.99026], [-117.51494, 34.99011], [-117.51119, 34.98989], [-117.5085, 34.98974], [-117.50742, 34.98968], [-117.50182, 34.98934], [-117.49922, 34.98919], [-117.49653, 34.98904], [-117.4958, 34.98896], [-117.4952, 34.98886], [-117.49464, 34.98869], [-117.49411, 34.98851], [-117.48609, 34.98437], [-117.47707, 34.97968], [-117.46673, 34.97432], [-117.45728, 34.96944], [-117.45368, 34.96758], [-117.44516, 34.96319], [-117.44435, 34.96283], [-117.44174, 34.96175], [-117.44017, 34.96108], [-117.43935, 34.96066], [-117.43442, 34.95806], [-117.43232, 34.95703], [-117.42729, 34.95438], [-117.42514, 34.95327], [-117.42448, 34.95293], [-117.42338, 34.95237], [-117.42275, 34.95204], [-117.42186, 34.9515], [-117.42021, 34.95053], [-117.4196, 34.95019], [-117.41873, 34.94972], [-117.4181, 34.94944], [-117.41728, 34.9491], [-117.41619, 34.94868], [-117.4148, 34.94819], [-117.40421, 34.94481], [-117.40148, 34.94387], [-117.39799, 34.94265], [-117.39746, 34.94248], [-117.38371, 34.93814], [-117.37592, 34.93567], [-117.37153, 34.93426], [-117.37068, 34.93399], [-117.36625, 34.9326], [-117.36466, 34.93208], [-117.36121, 34.93103], [-117.35677, 34.92959], [-117.35441, 34.92884], [-117.34365, 34.92542], [-117.34289, 34.92521], [-117.34218, 34.92503], [-117.34134, 34.92487], [-117.34045, 34.92473], [-117.33965, 34.92465], [-117.33839, 34.92457], [-117.32988, 34.92433], [-117.3245, 34.92417], [-117.31808, 34.92398], [-117.31214, 34.92382], [-117.30959, 34.92377], [-117.30494, 34.9236], [-117.30342, 34.92352], [-117.30075, 34.92334], [-117.29769, 34.92322], [-117.2943, 34.92311], [-117.29187, 34.92305], [-117.28904, 34.92295], [-117.28846, 34.92293], [-117.27658, 34.92258], [-117.26955, 34.92236], [-117.26795, 34.9223], [-117.26404, 34.92219], [-117.26324, 34.92217], [-117.26242, 34.92215], [-117.26029, 34.92209], [-117.25944, 34.92208], [-117.25858, 34.92212], [-117.25643, 34.92227], [-117.25489, 34.9223], [-117.25211, 34.92223], [-117.25096, 34.92218], [-117.25073, 34.92218], [-117.25036, 34.92216], [-117.24157, 34.92192], [-117.23105, 34.92177], [-117.22747, 34.92175], [-117.22418, 34.92174], [-117.2198, 34.92172], [-117.21833, 34.92171], [-117.21534, 34.92168], [-117.21308, 34.92167], [-117.21102, 34.92168], [-117.20858, 34.92169], [-117.20663, 34.9217], [-117.20337, 34.92171], [-117.19778, 34.92171], [-117.19561, 34.92171], [-117.19328, 34.92175], [-117.18904, 34.92174], [-117.18018, 34.9219], [-117.17798, 34.92191], [-117.17673, 34.92193], [-117.17586, 34.92194], [-117.1714, 34.922], [-117.16262, 34.92203], [-117.15821, 34.92203], [-117.15377, 34.92203], [-117.14488, 34.92206], [-117.14292, 34.922], [-117.14244, 34.92199], [-117.14212, 34.92196], [-117.1417, 34.92189], [-117.14126, 34.92181], [-117.13524, 34.92049], [-117.12076, 34.91727], [-117.1191, 34.9169], [-117.11897, 34.91687], [-117.11884, 34.91684], [-117.11839, 34.91674], [-117.11095, 34.91512], [-117.10934, 34.91477], [-117.10778, 34.91443], [-117.10718, 34.91425], [-117.10581, 34.91388], [-117.10456, 34.91352], [-117.10442, 34.91348], [-117.1032, 34.91315], [-117.10221, 34.91291], [-117.1015, 34.91274], [-117.10087, 34.91255], [-117.10015, 34.91229], [-117.09956, 34.91203], [-117.09892, 34.9117], [-117.09828, 34.91128], [-117.09771, 34.91088], [-117.09729, 34.91051], [-117.09689, 34.91012], [-117.0965, 34.90969], [-117.09616, 34.90931], [-117.09584, 34.90888], [-117.09549, 34.90831], [-117.09528, 34.90792], [-117.09499, 34.90721], [-117.09478, 34.90668], [-117.0945, 34.90595], [-117.09428, 34.90521], [-117.09414, 34.90459], [-117.09406, 34.90397], [-117.09401, 34.90327], [-117.09395, 34.90216], [-117.09397, 34.89917], [-117.09404, 34.8969], [-117.09403, 34.89507], [-117.09404, 34.89333], [-117.09404, 34.89279], [-117.09405, 34.89227], [-117.09403, 34.89124], [-117.09403, 34.89015], [-117.094, 34.88963], [-117.09391, 34.88912], [-117.09374, 34.88851], [-117.09349, 34.88789], [-117.09322, 34.88742], [-117.09297, 34.88698], [-117.09259, 34.88639], [-117.09189, 34.88551], [-117.09145, 34.88496], [-117.09071, 34.88424], [-117.09006, 34.88364], [-117.08951, 34.88311], [-117.08829, 34.88194], [-117.08731, 34.88101], [-117.08624, 34.88002], [-117.08551, 34.87926], [-117.08425, 34.87806], [-117.08295, 34.87677], [-117.08222, 34.87608], [-117.08125, 34.87513], [-117.08048, 34.87434], [-117.0792, 34.87311], [-117.07845, 34.87241], [-117.0775, 34.87153], [-117.07686, 34.8709], [-117.07629, 34.87043], [-117.07598, 34.87022], [-117.07551, 34.87001], [-117.07508, 34.86987], [-117.07468, 34.86979], [-117.07421, 34.86975], [-117.07369, 34.86973], [-117.07326, 34.86977], [-117.07272, 34.86988], [-117.07222, 34.87007], [-117.07178, 34.87028], [-117.07135, 34.87057], [-117.07092, 34.87096], [-117.07066, 34.87131], [-117.07041, 34.87177], [-117.07027, 34.87223], [-117.07021, 34.8727], [-117.07027, 34.87325], [-117.07038, 34.87417], [-117.07041, 34.87482], [-117.07031, 34.87535], [-117.0701, 34.87582], [-117.06978, 34.87628], [-117.06935, 34.87678], [-117.06885, 34.87726], [-117.06825, 34.8778], [-117.06758, 34.87846], [-117.06375, 34.88175], [-117.06284, 34.88251], [-117.0624, 34.8828], [-117.06185, 34.88311], [-117.06118, 34.88342], [-117.0605, 34.88369], [-117.06005, 34.88384], [-117.05959, 34.88398], [-117.05906, 34.8841], [-117.05851, 34.88421], [-117.05673, 34.8845], [-117.05597, 34.88462], [-117.05385, 34.88492], [-117.05005, 34.88533], [-117.0478, 34.88557], [-117.04733, 34.88562], [-117.04666, 34.88569], [-117.04523, 34.88584], [-117.04292, 34.88596], [-117.03559, 34.88597], [-117.02945, 34.88592], [-117.02231, 34.88584], [-117.01758, 34.88581], [-117.01316, 34.88581], [-117.01183, 34.88578], [-117.01057, 34.88583], [-117.00962, 34.88594], [-117.00782, 34.88623], [-117.00663, 34.88642], [-117.00535, 34.88656], [-117.00401, 34.88664], [-117.00212, 34.88664], [-116.9987, 34.88662], [-116.99816, 34.88661], [-116.99667, 34.88658], [-116.99558, 34.88652], [-116.99392, 34.88636], [-116.99369, 34.88633], [-116.99285, 34.8862], [-116.99206, 34.88606], [-116.9885, 34.88521], [-116.97586, 34.88196], [-116.97392, 34.88144], [-116.97333, 34.88125], [-116.97246, 34.8809], [-116.97184, 34.88062], [-116.97133, 34.88036], [-116.97058, 34.87992], [-116.97007, 34.87958], [-116.96873, 34.87857], [-116.96825, 34.87822], [-116.96645, 34.87686], [-116.96486, 34.87563], [-116.96172, 34.87323], [-116.95805, 34.87042], [-116.9554, 34.86887], [-116.95476, 34.86858], [-116.95414, 34.86832], [-116.9537, 34.86816], [-116.95274, 34.86785], [-116.95166, 34.86755], [-116.93667, 34.86445], [-116.9355, 34.86421], [-116.93246, 34.86358], [-116.93205, 34.8635], [-116.9075, 34.85835], [-116.90208, 34.85731], [-116.89555, 34.85595], [-116.89504, 34.85584], [-116.88426, 34.85362], [-116.88204, 34.85316], [-116.87795, 34.85231], [-116.87415, 34.85152], [-116.86562, 34.84977], [-116.85603, 34.84778], [-116.85505, 34.8476], [-116.85097, 34.84706], [-116.82199, 34.84336], [-116.80884, 34.84172], [-116.80694, 34.84148], [-116.80674, 34.84145], [-116.80369, 34.84106], [-116.80313, 34.84099], [-116.79874, 34.84043], [-116.79728, 34.84025], [-116.79562, 34.84004], [-116.79038, 34.83936], [-116.78618, 34.83884], [-116.7821, 34.83831], [-116.78023, 34.83808], [-116.77984, 34.83803], [-116.77473, 34.83737], [-116.76165, 34.83571], [-116.76144, 34.83568], [-116.75887, 34.83538], [-116.75468, 34.83502], [-116.74788, 34.83443], [-116.74745, 34.83439], [-116.73897, 34.83368], [-116.73848, 34.83364], [-116.71823, 34.8319], [-116.71782, 34.83184], [-116.70796, 34.83101], [-116.70191, 34.83048], [-116.7016, 34.83045], [-116.69884, 34.83021], [-116.6945, 34.82983], [-116.69372, 34.82976], [-116.69091, 34.82952], [-116.6896, 34.82941], [-116.68824, 34.82926], [-116.6739, 34.82747], [-116.6724, 34.82728], [-116.67143, 34.82712], [-116.66723, 34.82638], [-116.66539, 34.82605], [-116.66333, 34.82568], [-116.65916, 34.82494], [-116.65506, 34.82421], [-116.65092, 34.82347], [-116.64679, 34.82273], [-116.64264, 34.82199], [-116.63849, 34.82125], [-116.6344, 34.82051], [-116.63029, 34.81978], [-116.62621, 34.81905], [-116.62214, 34.81832], [-116.61805, 34.81759], [-116.61629, 34.81727], [-116.614, 34.81686], [-116.6121, 34.81652], [-116.61142, 34.8164], [-116.60654, 34.81553], [-116.60337, 34.81496], [-116.52948, 34.8017], [-116.5262, 34.80111], [-116.52201, 34.80036], [-116.51795, 34.79961], [-116.51383, 34.79889], [-116.51075, 34.79833], [-116.50663, 34.79725], [-116.50284, 34.79621], [-116.49465, 34.79397], [-116.48773, 34.79209], [-116.48677, 34.79185], [-116.48575, 34.79166], [-116.4776, 34.7907], [-116.47197, 34.79007], [-116.47121, 34.78998], [-116.45725, 34.78839], [-116.45296, 34.78789], [-116.45256, 34.78785], [-116.45112, 34.78768], [-116.44808, 34.78733], [-116.44701, 34.78721], [-116.44458, 34.78693], [-116.43628, 34.78597], [-116.428, 34.78501], [-116.41997, 34.78409], [-116.41895, 34.78397], [-116.4176, 34.78374], [-116.41618, 34.78345], [-116.40794, 34.78157], [-116.4061, 34.78114], [-116.40388, 34.78064], [-116.39582, 34.77879], [-116.39169, 34.77785], [-116.386, 34.77655], [-116.38196, 34.77564], [-116.37794, 34.77471], [-116.37126, 34.77317], [-116.37067, 34.77304], [-116.3684, 34.77251], [-116.36798, 34.7724], [-116.36757, 34.77227], [-116.36719, 34.77216], [-116.36646, 34.77191], [-116.36581, 34.77166], [-116.36524, 34.77143], [-116.36456, 34.77111], [-116.36363, 34.77065], [-116.36237, 34.76991], [-116.36174, 34.76948], [-116.361, 34.76894], [-116.3594, 34.76775], [-116.3554, 34.76477], [-116.35186, 34.76214], [-116.34788, 34.75916], [-116.34704, 34.75856], [-116.34677, 34.75835], [-116.3441, 34.75634], [-116.34018, 34.75344], [-116.33805, 34.75193], [-116.33656, 34.75102], [-116.32911, 34.74717], [-116.32196, 34.74346], [-116.31513, 34.74005], [-116.31364, 34.73941], [-116.31236, 34.73891], [-116.31136, 34.73856], [-116.31046, 34.73828], [-116.30893, 34.73784], [-116.3078, 34.73756], [-116.30533, 34.737], [-116.30134, 34.73608], [-116.2888, 34.73319], [-116.2859, 34.73252], [-116.2833, 34.73193], [-116.27768, 34.73067], [-116.27561, 34.73025], [-116.2728, 34.72984], [-116.24575, 34.72665], [-116.2429, 34.72634], [-116.2348, 34.72588], [-116.23132, 34.72568], [-116.2272, 34.72546], [-116.21929, 34.72504], [-116.21913, 34.72503], [-116.21891, 34.72502], [-116.20512, 34.72427], [-116.20383, 34.7242], [-116.20367, 34.7242], [-116.20246, 34.72413], [-116.19771, 34.72388], [-116.19734, 34.72386], [-116.19712, 34.72385], [-116.19698, 34.72385], [-116.19627, 34.72385], [-116.19528, 34.72385], [-116.18701, 34.72421], [-116.18098, 34.7245], [-116.17988, 34.72455], [-116.17939, 34.72456], [-116.17563, 34.72474], [-116.16867, 34.72506], [-116.16818, 34.72508], [-116.16784, 34.72509], [-116.16336, 34.7253], [-116.16294, 34.72532], [-116.15811, 34.72554], [-116.14609, 34.72609], [-116.14442, 34.72616], [-116.14269, 34.72624], [-116.14199, 34.72626], [-116.14141, 34.72628], [-116.14089, 34.72629], [-116.09125, 34.72728], [-116.09079, 34.72728], [-116.08505, 34.7274], [-116.08427, 34.7274], [-116.08389, 34.72738], [-116.08332, 34.72737], [-116.0824, 34.7273], [-116.08205, 34.72726], [-116.08158, 34.7272], [-116.08119, 34.72714], [-116.08079, 34.72705], [-116.07944, 34.72676], [-116.07903, 34.72665], [-116.07855, 34.72651], [-116.07757, 34.72617], [-116.07724, 34.72606], [-116.07649, 34.72573], [-116.07568, 34.72535], [-116.07337, 34.72424], [-116.07005, 34.72267], [-116.06716, 34.72128], [-116.06497, 34.72031], [-116.06408, 34.71994], [-116.06205, 34.71921], [-116.05863, 34.71823], [-116.05171, 34.71629], [-116.04655, 34.71484], [-116.04425, 34.71444], [-116.04193, 34.71428], [-116.03245, 34.71491], [-116.03197, 34.71495], [-116.03087, 34.71502], [-116.02992, 34.71511], [-116.02889, 34.71526], [-116.02794, 34.71545], [-116.02198, 34.71679], [-116.01894, 34.71746], [-116.01729, 34.71782], [-116.01608, 34.71809], [-116.01515, 34.7183], [-116.01372, 34.71862], [-116.01252, 34.71889], [-116.01158, 34.71911], [-116.01105, 34.71925], [-116.01044, 34.71945], [-116.00962, 34.71974], [-116.00893, 34.72004], [-116.00667, 34.721], [-116.00562, 34.72144], [-116.00462, 34.72178], [-116.00395, 34.72196], [-116.00315, 34.72214], [-116.00239, 34.72227], [-116.00143, 34.72238], [-116.0006, 34.72243], [-115.99956, 34.72243], [-115.99857, 34.72237], [-115.9976, 34.72224], [-115.99717, 34.72216], [-115.99641, 34.72201], [-115.99541, 34.72174], [-115.99411, 34.72132], [-115.99325, 34.72107], [-115.9924, 34.72087], [-115.99178, 34.72074], [-115.9911, 34.72062], [-115.9908, 34.72056], [-115.99004, 34.72045], [-115.98899, 34.72034], [-115.98808, 34.72029], [-115.98711, 34.72026], [-115.98606, 34.72027], [-115.98246, 34.72041], [-115.98093, 34.72047], [-115.97959, 34.72051], [-115.97843, 34.72057], [-115.9774, 34.72066], [-115.97708, 34.7207], [-115.97585, 34.72084], [-115.96786, 34.72196], [-115.96453, 34.72244], [-115.96261, 34.72272], [-115.96096, 34.72295], [-115.95993, 34.72308], [-115.95923, 34.72317], [-115.95842, 34.72326], [-115.95751, 34.72335], [-115.95642, 34.72343], [-115.95506, 34.72351], [-115.95392, 34.72354], [-115.95157, 34.72361], [-115.94759, 34.7237], [-115.94333, 34.72381], [-115.94033, 34.72388], [-115.93741, 34.72396], [-115.93533, 34.72401], [-115.93265, 34.72407], [-115.92989, 34.72413], [-115.92782, 34.72418], [-115.92683, 34.72421], [-115.92574, 34.72427], [-115.92417, 34.72443], [-115.92292, 34.72463], [-115.92183, 34.72482], [-115.92091, 34.72501], [-115.91961, 34.72535], [-115.91762, 34.72596], [-115.9152, 34.72678], [-115.91291, 34.72756], [-115.91141, 34.72805], [-115.90973, 34.72854], [-115.90853, 34.72882], [-115.90708, 34.72913], [-115.90454, 34.72966], [-115.90239, 34.73014], [-115.90057, 34.7306], [-115.89914, 34.73099], [-115.89756, 34.73146], [-115.89624, 34.73189], [-115.89562, 34.73209], [-115.89439, 34.73249], [-115.89226, 34.73321], [-115.89123, 34.73351], [-115.89026, 34.73376], [-115.88936, 34.73395], [-115.88857, 34.73409], [-115.88761, 34.73424], [-115.88669, 34.73436], [-115.88578, 34.73444], [-115.8847, 34.7345], [-115.88373, 34.7345], [-115.88298, 34.73449], [-115.882, 34.73445], [-115.88108, 34.73436], [-115.88019, 34.73427], [-115.8793, 34.73411], [-115.8781, 34.73392], [-115.8768, 34.73368], [-115.87542, 34.73349], [-115.87401, 34.73335], [-115.87282, 34.73329], [-115.87142, 34.73326], [-115.86904, 34.73323], [-115.86813, 34.7332], [-115.867, 34.73313], [-115.86589, 34.73303], [-115.86503, 34.73292], [-115.86392, 34.73276], [-115.86089, 34.73229], [-115.8584, 34.7319], [-115.85429, 34.73126], [-115.85022, 34.73062], [-115.84627, 34.73], [-115.84216, 34.72936], [-115.83814, 34.72872], [-115.83398, 34.72807], [-115.83202, 34.72775], [-115.82918, 34.72732], [-115.82722, 34.72702], [-115.82577, 34.72675], [-115.8247, 34.72653], [-115.82346, 34.72623], [-115.82226, 34.7259], [-115.82072, 34.72541], [-115.81927, 34.72493], [-115.81531, 34.72363], [-115.81129, 34.72232], [-115.81038, 34.72203], [-115.80923, 34.72164], [-115.80848, 34.72141], [-115.80725, 34.72105], [-115.80619, 34.72076], [-115.80513, 34.72053], [-115.80368, 34.72023], [-115.80216, 34.71999], [-115.80104, 34.71985], [-115.79984, 34.71974], [-115.79801, 34.71964], [-115.79575, 34.71953], [-115.79177, 34.71936], [-115.79107, 34.71931], [-115.79043, 34.71927], [-115.78948, 34.71921], [-115.7872, 34.71911], [-115.78616, 34.71902], [-115.78483, 34.71889], [-115.78294, 34.71862], [-115.78188, 34.71847], [-115.77901, 34.71798], [-115.77724, 34.71769], [-115.77523, 34.71741], [-115.7741, 34.71728], [-115.77248, 34.71712], [-115.77099, 34.717], [-115.76983, 34.71693], [-115.76844, 34.71686], [-115.76707, 34.71682], [-115.76289, 34.71674], [-115.76106, 34.7167], [-115.75881, 34.71666], [-115.75466, 34.71658], [-115.75266, 34.71654], [-115.75058, 34.7165], [-115.74649, 34.71643], [-115.74466, 34.71639], [-115.74278, 34.71634], [-115.74244, 34.71634], [-115.74085, 34.71634], [-115.73943, 34.71637], [-115.73696, 34.71648], [-115.73482, 34.71662], [-115.73075, 34.71692], [-115.72661, 34.71722], [-115.72546, 34.7173], [-115.72517, 34.71733], [-115.72429, 34.71739], [-115.72049, 34.71765], [-115.71724, 34.71788], [-115.71305, 34.71818], [-115.70895, 34.71848], [-115.70794, 34.71855], [-115.70752, 34.71858], [-115.70081, 34.71907], [-115.6991, 34.71918], [-115.69781, 34.71926], [-115.69268, 34.71965], [-115.69201, 34.71969], [-115.68938, 34.71989], [-115.68731, 34.72003], [-115.68561, 34.72015], [-115.68443, 34.72025], [-115.68174, 34.72046], [-115.67863, 34.72071], [-115.67818, 34.72074], [-115.67093, 34.72136], [-115.67055, 34.72139], [-115.66685, 34.7217], [-115.66521, 34.72184], [-115.6624, 34.72224], [-115.66045, 34.72264], [-115.65802, 34.72312], [-115.65688, 34.72336], [-115.65601, 34.72351], [-115.65477, 34.72364], [-115.65361, 34.72372], [-115.6446, 34.72339], [-115.64158, 34.72328], [-115.64086, 34.72326], [-115.64007, 34.72325], [-115.63934, 34.72326], [-115.63868, 34.72328], [-115.63829, 34.7233], [-115.63767, 34.72334], [-115.63595, 34.72347], [-115.63211, 34.72399], [-115.63051, 34.72422], [-115.62409, 34.72513], [-115.61886, 34.72585], [-115.61621, 34.72621], [-115.61051, 34.72701], [-115.60194, 34.72821], [-115.60165, 34.72825], [-115.58936, 34.72997], [-115.58413, 34.73067], [-115.58182, 34.73099], [-115.57968, 34.73116], [-115.57661, 34.73129], [-115.56417, 34.73186], [-115.56203, 34.73214], [-115.56078, 34.73237], [-115.55899, 34.73272], [-115.55819, 34.73291], [-115.55691, 34.73328], [-115.55617, 34.73352], [-115.55543, 34.73378], [-115.55399, 34.73431], [-115.55267, 34.73482], [-115.54913, 34.73616], [-115.52818, 34.74407], [-115.50239, 34.75385], [-115.48644, 34.75985], [-115.48297, 34.76125], [-115.48074, 34.76236], [-115.47919, 34.76327], [-115.47268, 34.76726], [-115.47216, 34.76755], [-115.47075, 34.76841], [-115.46674, 34.77084], [-115.46552, 34.77144], [-115.46434, 34.77198], [-115.46322, 34.77244], [-115.46038, 34.77345], [-115.45794, 34.77431], [-115.45515, 34.77523], [-115.45447, 34.77547], [-115.43171, 34.78324], [-115.42369, 34.78599], [-115.42318, 34.78617], [-115.42161, 34.78684], [-115.42082, 34.78721], [-115.41874, 34.78826], [-115.41244, 34.79214], [-115.41197, 34.79237], [-115.41089, 34.79285], [-115.4093, 34.79339], [-115.40706, 34.79392], [-115.40305, 34.79472], [-115.39972, 34.79539], [-115.39925, 34.79549], [-115.38745, 34.7979], [-115.3857, 34.79832], [-115.38345, 34.7989], [-115.38143, 34.79952], [-115.37895, 34.80037], [-115.37647, 34.80121], [-115.3749, 34.80175], [-115.37439, 34.80192], [-115.37352, 34.80219], [-115.37249, 34.80246], [-115.37157, 34.80269], [-115.37088, 34.80284], [-115.37021, 34.80296], [-115.36931, 34.80311], [-115.36828, 34.80324], [-115.36632, 34.8034], [-115.36602, 34.80339], [-115.36546, 34.80341], [-115.36115, 34.80343], [-115.35754, 34.80343], [-115.35701, 34.80343], [-115.35546, 34.80345], [-115.35462, 34.80344], [-115.34975, 34.80336], [-115.34615, 34.8032], [-115.34557, 34.80315], [-115.33475, 34.8021], [-115.33081, 34.8017], [-115.32858, 34.80145], [-115.32794, 34.80139], [-115.32666, 34.80125], [-115.32468, 34.80105], [-115.32311, 34.80089], [-115.3208, 34.80078], [-115.31993, 34.80076], [-115.31895, 34.80074], [-115.31785, 34.80077], [-115.31708, 34.80079], [-115.31465, 34.80096], [-115.31403, 34.80099], [-115.30754, 34.80156], [-115.30665, 34.80164], [-115.29263, 34.80284], [-115.2917, 34.8029], [-115.27913, 34.80398], [-115.2778, 34.80408], [-115.2771, 34.80413], [-115.27591, 34.80424], [-115.27219, 34.80457], [-115.27013, 34.80475], [-115.26845, 34.80488], [-115.26175, 34.80545], [-115.25752, 34.80579], [-115.25658, 34.80588], [-115.25557, 34.80596], [-115.25501, 34.806], [-115.25465, 34.80604], [-115.24857, 34.80656], [-115.24294, 34.80703], [-115.24217, 34.8071], [-115.24149, 34.80716], [-115.23425, 34.80777], [-115.2304, 34.80808], [-115.22953, 34.80815], [-115.22741, 34.80832], [-115.22536, 34.8085], [-115.22421, 34.80861], [-115.2236, 34.80866], [-115.22324, 34.80869], [-115.21997, 34.80897], [-115.21799, 34.80914], [-115.21663, 34.80924], [-115.21629, 34.80927], [-115.21575, 34.80932], [-115.21518, 34.80936], [-115.21393, 34.80947], [-115.21333, 34.80951], [-115.21058, 34.80974], [-115.2069, 34.81007], [-115.1999, 34.81075], [-115.19961, 34.81078], [-115.19837, 34.81091], [-115.1972, 34.81105], [-115.19682, 34.81111], [-115.19616, 34.81119], [-115.19331, 34.81154], [-115.1905, 34.81188], [-115.19003, 34.81194], [-115.18706, 34.81232], [-115.18472, 34.81259], [-115.18396, 34.81268], [-115.18358, 34.81273], [-115.17243, 34.81414], [-115.15171, 34.81671], [-115.14251, 34.81785], [-115.13945, 34.81824], [-115.13402, 34.8189], [-115.12702, 34.81978], [-115.09937, 34.8232], [-115.08571, 34.82491], [-115.07196, 34.82661], [-115.06263, 34.82783], [-115.05768, 34.82873], [-115.05674, 34.82892], [-115.05662, 34.82894], [-115.05578, 34.82911], [-115.05539, 34.8292], [-115.05379, 34.82951], [-115.05253, 34.82977], [-115.05195, 34.82989], [-115.0515, 34.82997], [-115.05125, 34.83002], [-115.05067, 34.83013], [-115.05058, 34.83014], [-115.04967, 34.83026], [-115.04877, 34.83034], [-115.04815, 34.83038], [-115.04741, 34.83039], [-115.0463, 34.83037], [-115.046, 34.83035], [-115.04542, 34.8303], [-115.04493, 34.83026], [-115.04408, 34.83019], [-115.04045, 34.8299], [-115.03781, 34.8297], [-115.03443, 34.82942], [-115.03275, 34.8293], [-115.02988, 34.82913], [-115.02853, 34.82917], [-115.02793, 34.82924], [-115.02738, 34.82929], [-115.02674, 34.82938], [-115.02592, 34.82952], [-115.02521, 34.8297], [-115.02449, 34.82988], [-115.01795, 34.8317], [-115.01435, 34.8327], [-115.0124, 34.83325], [-115.01089, 34.83367], [-115.00409, 34.83558], [-115.00065, 34.83654], [-114.99742, 34.83743], [-114.99259, 34.83878], [-114.99203, 34.83893], [-114.9917, 34.83902], [-114.99067, 34.83932], [-114.98633, 34.84053], [-114.98299, 34.84144], [-114.97958, 34.84242], [-114.97796, 34.84286], [-114.97761, 34.84296], [-114.9754, 34.84357], [-114.97478, 34.84375], [-114.97123, 34.84475], [-114.96983, 34.84512], [-114.96634, 34.8461], [-114.96617, 34.84614], [-114.96517, 34.84642], [-114.96203, 34.8473], [-114.9611, 34.84757], [-114.94056, 34.85327], [-114.92549, 34.85747], [-114.92381, 34.85779], [-114.92279, 34.85791], [-114.92176, 34.85799], [-114.92095, 34.85801], [-114.91969, 34.85797], [-114.91824, 34.85784], [-114.9163, 34.85763], [-114.91078, 34.85705], [-114.9089, 34.85685], [-114.90668, 34.85661], [-114.90551, 34.85648], [-114.90318, 34.85624], [-114.90269, 34.85618], [-114.89781, 34.85567], [-114.89677, 34.85556], [-114.89487, 34.85536], [-114.89166, 34.85501], [-114.89096, 34.85495], [-114.89033, 34.85493], [-114.88977, 34.85492], [-114.88926, 34.85493], [-114.88875, 34.85496], [-114.88785, 34.85504], [-114.88724, 34.85513], [-114.88649, 34.85527], [-114.88413, 34.85584], [-114.8765, 34.85771], [-114.87536, 34.85798], [-114.87438, 34.85817], [-114.87371, 34.85826], [-114.8731, 34.85832], [-114.87235, 34.85836], [-114.87043, 34.85835], [-114.86966, 34.85836], [-114.86911, 34.85839], [-114.86835, 34.85846], [-114.86735, 34.85863], [-114.86394, 34.85922], [-114.86196, 34.85958], [-114.86149, 34.85966], [-114.86092, 34.85976], [-114.86045, 34.85987], [-114.85963, 34.86007], [-114.85886, 34.8603], [-114.85822, 34.86051], [-114.85744, 34.86081], [-114.85664, 34.86117], [-114.85538, 34.86177], [-114.85433, 34.8623], [-114.85324, 34.86283], [-114.85014, 34.86437], [-114.8482, 34.86531], [-114.84716, 34.86578], [-114.84621, 34.86615], [-114.84557, 34.86636], [-114.84492, 34.86655], [-114.84425, 34.86673], [-114.84351, 34.8669], [-114.84275, 34.86702], [-114.84158, 34.86719], [-114.83997, 34.86731], [-114.83948, 34.86734], [-114.83705, 34.8675], [-114.83611, 34.86757], [-114.83505, 34.86767], [-114.83416, 34.86781], [-114.83316, 34.86801], [-114.83253, 34.86816], [-114.83151, 34.86845], [-114.83047, 34.86879], [-114.83014, 34.86889], [-114.82871, 34.86935], [-114.82696, 34.86989], [-114.8253, 34.87041], [-114.82466, 34.87061], [-114.82411, 34.87079], [-114.82228, 34.87136], [-114.82045, 34.87194], [-114.81871, 34.87248], [-114.81701, 34.87302], [-114.80789, 34.87587], [-114.8071, 34.87612], [-114.80477, 34.87685], [-114.80434, 34.87698], [-114.80328, 34.87732], [-114.79788, 34.87901], [-114.79543, 34.87978], [-114.79248, 34.8807], [-114.79046, 34.88134], [-114.78949, 34.88161], [-114.78858, 34.88183], [-114.78779, 34.882], [-114.78716, 34.88213], [-114.78643, 34.88224], [-114.78508, 34.88243], [-114.7837, 34.88254], [-114.78291, 34.88258], [-114.78197, 34.88261], [-114.78108, 34.8826], [-114.78006, 34.88257], [-114.77895, 34.8825], [-114.77811, 34.88241], [-114.77724, 34.8823], [-114.77644, 34.88218], [-114.7753, 34.88196], [-114.77406, 34.88168], [-114.77319, 34.88144], [-114.76514, 34.87915], [-114.76396, 34.87882], [-114.76282, 34.87854], [-114.76187, 34.87835], [-114.76047, 34.87812], [-114.75942, 34.87801], [-114.75885, 34.87795], [-114.75801, 34.87789], [-114.75671, 34.87786], [-114.75548, 34.87788], [-114.75449, 34.87792], [-114.75348, 34.87804], [-114.75231, 34.87818], [-114.75171, 34.87827], [-114.75098, 34.87841], [-114.7503, 34.87856], [-114.74986, 34.87866], [-114.74892, 34.87886], [-114.74506, 34.87971], [-114.73387, 34.88222], [-114.73348, 34.8823], [-114.73074, 34.88292], [-114.72667, 34.88382], [-114.71975, 34.8855], [-114.71111, 34.88806], [-114.70353, 34.89037], [-114.70242, 34.89071], [-114.70153, 34.89095], [-114.70068, 34.89111], [-114.70009, 34.89119], [-114.69997, 34.8912], [-114.69965, 34.89122], [-114.69906, 34.89126], [-114.69838, 34.89128], [-114.69752, 34.89126], [-114.69657, 34.89116], [-114.69578, 34.89102], [-114.69489, 34.89083], [-114.69406, 34.89054], [-114.68045, 34.88615], [-114.67362, 34.88393], [-114.67163, 34.88322], [-114.66947, 34.88226], [-114.66753, 34.8813], [-114.66425, 34.87923], [-114.66386, 34.87896], [-114.66092, 34.87698], [-114.66052, 34.87672], [-114.65866, 34.87548], [-114.65807, 34.87508], [-114.65779, 34.87489], [-114.6544, 34.87261], [-114.65105, 34.87037], [-114.6505, 34.87], [-114.64044, 34.86322], [-114.64005, 34.86295], [-114.63904, 34.86228], [-114.63866, 34.86202], [-114.63071, 34.85668], [-114.63001, 34.85621], [-114.62801, 34.85489], [-114.62732, 34.85441], [-114.62672, 34.85401], [-114.62458, 34.85257], [-114.62184, 34.85083], [-114.62127, 34.85046], [-114.6202, 34.84977], [-114.6198, 34.84953], [-114.61835, 34.84864], [-114.6177, 34.84824], [-114.61651, 34.84752], [-114.61625, 34.84735], [-114.61602, 34.84722], [-114.61554, 34.84686], [-114.61514, 34.84652], [-114.61451, 34.84581], [-114.6141, 34.84519], [-114.61374, 34.84441], [-114.61295, 34.8427], [-114.61257, 34.84188], [-114.61243, 34.84156], [-114.61151, 34.83956], [-114.61134, 34.83921], [-114.61093, 34.83831], [-114.61048, 34.83734], [-114.61025, 34.83694], [-114.61, 34.83656], [-114.60964, 34.83606], [-114.60917, 34.83553], [-114.60888, 34.83523], [-114.60858, 34.83496], [-114.6081, 34.83456], [-114.60761, 34.83421], [-114.60715, 34.83392], [-114.60667, 34.83365], [-114.606, 34.83331], [-114.60452, 34.83261], [-114.60384, 34.83228], [-114.60344, 34.83205], [-114.6033, 34.83198], [-114.60295, 34.83175], [-114.60252, 34.83144], [-114.60206, 34.83107], [-114.6018, 34.83084], [-114.6015, 34.83055], [-114.60116, 34.83018], [-114.60102, 34.83002], [-114.6007, 34.82962], [-114.60037, 34.82915], [-114.60004, 34.82871], [-114.5998, 34.82837], [-114.59957, 34.82804], [-114.59949, 34.82792], [-114.5994, 34.82779], [-114.59922, 34.82754], [-114.59877, 34.82692], [-114.59824, 34.8262], [-114.59784, 34.8256], [-114.59755, 34.82514], [-114.59723, 34.82454], [-114.59707, 34.82422], [-114.59683, 34.82356], [-114.59662, 34.82294], [-114.59614, 34.82148], [-114.59592, 34.82075], [-114.59563, 34.81972], [-114.59432, 34.81553], [-114.59419, 34.81512], [-114.58881, 34.79812], [-114.58863, 34.79755], [-114.5874, 34.79369], [-114.58661, 34.79112], [-114.58645, 34.79065], [-114.58318, 34.78034], [-114.58158, 34.77519], [-114.58143, 34.7747], [-114.58023, 34.77123], [-114.57973, 34.77014], [-114.57943, 34.76953], [-114.57906, 34.76883], [-114.57861, 34.768], [-114.57838, 34.76764], [-114.57748, 34.76627], [-114.57713, 34.76581], [-114.57679, 34.76535], [-114.57621, 34.76462], [-114.57412, 34.76213], [-114.57302, 34.76082], [-114.57176, 34.75935], [-114.56787, 34.75472], [-114.56766, 34.75446], [-114.56742, 34.75417], [-114.56398, 34.75006], [-114.56394, 34.75001], [-114.56375, 34.74979], [-114.56275, 34.74861], [-114.55814, 34.74318], [-114.55787, 34.74286], [-114.55412, 34.7384], [-114.5539, 34.73813], [-114.5496, 34.73302], [-114.54947, 34.73288], [-114.54571, 34.72839], [-114.54445, 34.72694], [-114.54383, 34.72631], [-114.54323, 34.72579], [-114.54221, 34.72502], [-114.54131, 34.72448], [-114.54045, 34.72399], [-114.53877, 34.72306], [-114.53696, 34.72205], [-114.53633, 34.72167], [-114.53161, 34.71899], [-114.53066, 34.71856], [-114.52984, 34.71822], [-114.52881, 34.71785], [-114.5275, 34.71748], [-114.52541, 34.71705], [-114.5225, 34.71691], [-114.51515, 34.71716], [-114.50869, 34.71744], [-114.50623, 34.71752], [-114.50042, 34.71778], [-114.49956, 34.71776], [-114.49853, 34.71769], [-114.49764, 34.71758], [-114.49643, 34.71744], [-114.49529, 34.7173], [-114.49414, 34.71716], [-114.49298, 34.71702], [-114.4925, 34.71698], [-114.49193, 34.71695], [-114.49147, 34.71695], [-114.49098, 34.71697], [-114.4899, 34.71703], [-114.48785, 34.71714], [-114.48565, 34.71726], [-114.48363, 34.71739], [-114.4828, 34.71747], [-114.48158, 34.71759], [-114.48034, 34.71776], [-114.47981, 34.71782], [-114.47934, 34.71789], [-114.47736, 34.71808], [-114.47652, 34.71813], [-114.4758, 34.71815], [-114.47508, 34.71816], [-114.4743, 34.71816], [-114.47333, 34.71815], [-114.47215, 34.71816], [-114.47122, 34.71818], [-114.47009, 34.71821], [-114.46803, 34.71831], [-114.46576, 34.71846], [-114.46369, 34.71865], [-114.46104, 34.71896], [-114.45915, 34.71918], [-114.45471, 34.7197], [-114.44996, 34.72025], [-114.44886, 34.72038], [-114.4474, 34.72056], [-114.44477, 34.72087], [-114.44323, 34.72105], [-114.44192, 34.7212], [-114.44127, 34.72129], [-114.44059, 34.72136], [-114.4397, 34.72146], [-114.43873, 34.72157], [-114.43588, 34.72191], [-114.43484, 34.72204], [-114.43122, 34.72246], [-114.42907, 34.72271], [-114.42811, 34.72282], [-114.42765, 34.72287], [-114.4272, 34.72292], [-114.42693, 34.72295], [-114.426, 34.72308], [-114.42405, 34.72329], [-114.42203, 34.72354], [-114.42099, 34.72367], [-114.41944, 34.72385], [-114.41852, 34.72395], [-114.41702, 34.72413], [-114.41651, 34.72419], [-114.4157, 34.72428], [-114.41498, 34.72437], [-114.41434, 34.72444], [-114.41327, 34.72457], [-114.41217, 34.7247], [-114.41085, 34.72486], [-114.40923, 34.72504], [-114.40636, 34.72538], [-114.4042, 34.72563], [-114.40155, 34.72594], [-114.3988, 34.72624], [-114.3968, 34.72641], [-114.3951, 34.72651], [-114.39465, 34.72653], [-114.39461, 34.72653], [-114.39147, 34.72665], [-114.39141, 34.72666], [-114.39047, 34.72669], [-114.38802, 34.72678], [-114.38686, 34.72683], [-114.38588, 34.72686], [-114.38582, 34.72686], [-114.38329, 34.72696], [-114.38075, 34.72706], [-114.3807, 34.72706], [-114.37907, 34.72712], [-114.37901, 34.72712], [-114.37723, 34.72719], [-114.37719, 34.72719], [-114.37553, 34.72725], [-114.37546, 34.72725], [-114.37335, 34.72733], [-114.37328, 34.72733], [-114.37151, 34.7274], [-114.37144, 34.7274], [-114.36971, 34.72747], [-114.36963, 34.72747], [-114.36767, 34.72755], [-114.36271, 34.72773], [-114.36238, 34.72775], [-114.35811, 34.7279], [-114.3557, 34.72799], [-114.35554, 34.72799], [-114.3527, 34.7281], [-114.34799, 34.72828], [-114.34776, 34.72829], [-114.34768, 34.72829], [-114.34347, 34.72845], [-114.34333, 34.72845], [-114.34016, 34.72856], [-114.33992, 34.72857], [-114.33513, 34.72875], [-114.33505, 34.72876], [-114.33234, 34.72885], [-114.32963, 34.72895], [-114.32958, 34.72896], [-114.32733, 34.72904], [-114.32522, 34.72912], [-114.32515, 34.72912], [-114.32421, 34.72916], [-114.32311, 34.7292], [-114.32205, 34.72923], [-114.32097, 34.72927], [-114.32069, 34.72928], [-114.32042, 34.72929], [-114.31987, 34.72932], [-114.3186, 34.72937], [-114.31683, 34.72943], [-114.31342, 34.72954], [-114.31316, 34.72955], [-114.31246, 34.72957], [-114.31025, 34.72963], [-114.3099, 34.72964], [-114.30145, 34.72989], [-114.30113, 34.7299], [-114.29896, 34.72995], [-114.29452, 34.73008], [-114.29399, 34.7301], [-114.28856, 34.73025], [-114.28801, 34.73027], [-114.28524, 34.73035], [-114.27897, 34.73056], [-114.27595, 34.73078], [-114.27396, 34.73096], [-114.27151, 34.73126], [-114.27058, 34.73139], [-114.26772, 34.73186], [-114.26361, 34.73269], [-114.26334, 34.73275], [-114.26268, 34.73291], [-114.26171, 34.73315], [-114.25954, 34.73371], [-114.25773, 34.73423], [-114.25531, 34.73502], [-114.25316, 34.73578], [-114.25243, 34.73604], [-114.25211, 34.73615], [-114.25066, 34.73672], [-114.25011, 34.73693], [-114.24845, 34.73761], [-114.2464, 34.73859], [-114.24408, 34.73969], [-114.23072, 34.74667], [-114.23032, 34.74688], [-114.22951, 34.7473], [-114.22491, 34.74972], [-114.22268, 34.75088], [-114.21984, 34.75247], [-114.21655, 34.75447], [-114.20722, 34.76111], [-114.20634, 34.76175], [-114.19367, 34.77083], [-114.19345, 34.77099], [-114.18445, 34.7774], [-114.18416, 34.77761], [-114.18161, 34.77947], [-114.17509, 34.78413], [-114.17159, 34.78662], [-114.16823, 34.78903], [-114.1641, 34.79198], [-114.16277, 34.79296], [-114.16213, 34.79347], [-114.16196, 34.7936], [-114.16174, 34.79378], [-114.16145, 34.79402], [-114.16081, 34.79457], [-114.16029, 34.79499], [-114.15916, 34.79601], [-114.15803, 34.79708], [-114.15637, 34.79873], [-114.15598, 34.79916], [-114.15541, 34.79985], [-114.15435, 34.80103], [-114.15248, 34.80352], [-114.15106, 34.80564], [-114.15082, 34.80602], [-114.15009, 34.80724], [-114.14869, 34.8099], [-114.14816, 34.81101], [-114.14767, 34.81213], [-114.1469, 34.81415], [-114.14654, 34.81517], [-114.14622, 34.81619], [-114.14609, 34.81667], [-114.14578, 34.81783], [-114.14537, 34.81945], [-114.14527, 34.82], [-114.14516, 34.82055], [-114.14485, 34.82257], [-114.14472, 34.82388], [-114.14461, 34.82529], [-114.14458, 34.82583], [-114.14455, 34.82694], [-114.14455, 34.82809], [-114.14457, 34.82887], [-114.14466, 34.83068], [-114.14474, 34.83183], [-114.14482, 34.83318], [-114.14499, 34.83548], [-114.14508, 34.83676], [-114.14545, 34.84194], [-114.14549, 34.84256], [-114.14601, 34.85048], [-114.14612, 34.85205], [-114.14641, 34.85626], [-114.14641, 34.85632], [-114.14656, 34.85835], [-114.14664, 34.85949], [-114.1467, 34.86042], [-114.14671, 34.86064], [-114.14682, 34.86231], [-114.14687, 34.86299], [-114.14687, 34.86308], [-114.14708, 34.86614], [-114.14709, 34.8662], [-114.14719, 34.86765], [-114.14735, 34.87022], [-114.14746, 34.87162], [-114.14755, 34.87294], [-114.14763, 34.87399], [-114.14768, 34.87502], [-114.14771, 34.87528], [-114.14773, 34.87563], [-114.14777, 34.87623], [-114.14785, 34.87732], [-114.14791, 34.87844], [-114.14808, 34.88058], [-114.14818, 34.88127], [-114.14831, 34.88196], [-114.14843, 34.88254], [-114.14852, 34.88303], [-114.14854, 34.88311], [-114.14857, 34.88322], [-114.14874, 34.88369], [-114.14892, 34.8843], [-114.14931, 34.88522], [-114.14974, 34.88614], [-114.15003, 34.88672], [-114.15046, 34.88744], [-114.15085, 34.88806], [-114.15144, 34.88893], [-114.15184, 34.88955], [-114.15255, 34.89069], [-114.1529, 34.89126], [-114.15322, 34.89183], [-114.15381, 34.89303], [-114.15406, 34.89368], [-114.15426, 34.89426], [-114.15444, 34.89486], [-114.15459, 34.89548], [-114.15474, 34.8961], [-114.15484, 34.89673], [-114.15494, 34.89739], [-114.155, 34.89836], [-114.15501, 34.89923], [-114.15495, 34.90029], [-114.15485, 34.90107], [-114.15472, 34.90175], [-114.15464, 34.90223], [-114.15323, 34.90989], [-114.15274, 34.91254], [-114.15249, 34.91386], [-114.15236, 34.91451], [-114.15224, 34.91515], [-114.15157, 34.91878], [-114.15149, 34.91917], [-114.15123, 34.92049], [-114.1482, 34.93676], [-114.14817, 34.93695], [-114.14656, 34.94556], [-114.14656, 34.94559], [-114.14508, 34.95348], [-114.14507, 34.95351], [-114.14324, 34.96338], [-114.14315, 34.96387], [-114.14199, 34.97006], [-114.14198, 34.97011], [-114.14122, 34.97418], [-114.14121, 34.97424], [-114.13976, 34.98203], [-114.13974, 34.9821], [-114.13816, 34.9906], [-114.13815, 34.99066], [-114.1364, 34.99998], [-114.13601, 35.00209], [-114.13593, 35.00251], [-114.13391, 35.01336], [-114.13246, 35.02111], [-114.13192, 35.02401], [-114.1319, 35.0241], [-114.131, 35.02896], [-114.1307, 35.03055], [-114.13025, 35.03292], [-114.12971, 35.0358], [-114.1295, 35.03696], [-114.12914, 35.03885], [-114.12913, 35.03893], [-114.12906, 35.03935], [-114.12886, 35.04038], [-114.12865, 35.04146], [-114.12864, 35.04153], [-114.128, 35.04492], [-114.12754, 35.04741], [-114.12692, 35.05064], [-114.12673, 35.0517], [-114.12647, 35.05307], [-114.12644, 35.05322], [-114.12595, 35.05592], [-114.12479, 35.06213], [-114.12389, 35.06691], [-114.12388, 35.06695], [-114.12354, 35.06874], [-114.12308, 35.07124], [-114.12304, 35.07141], [-114.12248, 35.07444], [-114.12246, 35.07453], [-114.12195, 35.07724], [-114.12149, 35.07969], [-114.12107, 35.08193], [-114.12099, 35.08236], [-114.11981, 35.08875], [-114.11979, 35.08884], [-114.11912, 35.09242], [-114.1183, 35.09679], [-114.11753, 35.10084], [-114.11687, 35.10442], [-114.11662, 35.10545], [-114.11661, 35.1055], [-114.11627, 35.10694], [-114.11535, 35.11037], [-114.11532, 35.1105], [-114.11509, 35.11121], [-114.11486, 35.11199], [-114.1148, 35.11218], [-114.11465, 35.1127], [-114.11422, 35.11403], [-114.11357, 35.11601], [-114.11355, 35.11608], [-114.11348, 35.1163], [-114.11261, 35.11861], [-114.11185, 35.12038], [-114.11147, 35.12123], [-114.11109, 35.12204], [-114.11057, 35.12309], [-114.10998, 35.12421], [-114.10947, 35.12513], [-114.10902, 35.1259], [-114.10796, 35.12768], [-114.10785, 35.12784], [-114.10766, 35.12811], [-114.1071, 35.129], [-114.1065, 35.12989], [-114.10631, 35.13017], [-114.10562, 35.13114], [-114.10545, 35.13138], [-114.10498, 35.13205], [-114.1045, 35.13273], [-114.10402, 35.13342], [-114.10358, 35.13403], [-114.10337, 35.13433], [-114.10315, 35.13465], [-114.10266, 35.13535], [-114.10234, 35.13577], [-114.10203, 35.13621], [-114.10037, 35.13861], [-114.10031, 35.13871], [-114.09991, 35.13928], [-114.09949, 35.13988], [-114.09916, 35.14037], [-114.09885, 35.14079], [-114.09839, 35.14146], [-114.09736, 35.14292], [-114.09516, 35.14608], [-114.09467, 35.14679], [-114.09326, 35.14878], [-114.09246, 35.14977], [-114.09192, 35.1504], [-114.09165, 35.15072], [-114.09136, 35.15104], [-114.09081, 35.15162], [-114.09037, 35.15207], [-114.08978, 35.15265], [-114.08964, 35.15278], [-114.08859, 35.15374], [-114.08769, 35.15447], [-114.08718, 35.15489], [-114.08618, 35.15564], [-114.08534, 35.15624], [-114.08415, 35.15703], [-114.08367, 35.15732], [-114.08315, 35.15764], [-114.08259, 35.15797], [-114.08178, 35.15841], [-114.08121, 35.15872], [-114.08012, 35.15927], [-114.0785, 35.16], [-114.07693, 35.1607], [-114.07608, 35.1612], [-114.07544, 35.16169], [-114.07503, 35.16209], [-114.07458, 35.16263], [-114.07416, 35.16337], [-114.07391, 35.16415], [-114.07379, 35.16479], [-114.07377, 35.16538], [-114.0738, 35.166], [-114.07403, 35.16689], [-114.0746, 35.16895], [-114.07491, 35.17013], [-114.07512, 35.17125], [-114.07522, 35.1723], [-114.07523, 35.17343], [-114.07518, 35.1739], [-114.07503, 35.17488], [-114.07467, 35.17616], [-114.07432, 35.17701], [-114.07395, 35.17774], [-114.07346, 35.17858], [-114.07285, 35.17945], [-114.0715, 35.18094], [-114.07026, 35.18238], [-114.06899, 35.184], [-114.06836, 35.18501], [-114.06816, 35.18538], [-114.06774, 35.18627], [-114.06744, 35.18697], [-114.06729, 35.18773], [-114.0672, 35.18824], [-114.06702, 35.18934], [-114.06698, 35.19064], [-114.06695, 35.19109], [-114.06692, 35.19234], [-114.06683, 35.19525], [-114.06675, 35.19751], [-114.06668, 35.19809], [-114.06653, 35.19869], [-114.0663, 35.19942], [-114.06603, 35.20001], [-114.06569, 35.2006], [-114.06509, 35.20143], [-114.06429, 35.2023], [-114.06356, 35.20312], [-114.06311, 35.20361], [-114.06103, 35.20593], [-114.06002, 35.20706], [-114.0596, 35.20751], [-114.05838, 35.20875], [-114.05768, 35.20937], [-114.056, 35.21057], [-114.05455, 35.21141], [-114.05361, 35.21187], [-114.05208, 35.21263], [-114.05061, 35.21329], [-114.04894, 35.21395], [-114.04774, 35.21436], [-114.04584, 35.21493], [-114.04425, 35.21536], [-114.04231, 35.21579], [-114.04125, 35.21601], [-114.03922, 35.21643], [-114.03737, 35.21682], [-114.03633, 35.21699], [-114.03572, 35.21707], [-114.03516, 35.21713], [-114.03405, 35.21724], [-114.03253, 35.2173], [-114.031, 35.2173], [-114.02941, 35.2172], [-114.02741, 35.21705], [-114.02625, 35.21697], [-114.02499, 35.2169], [-114.02458, 35.21688], [-114.02322, 35.21685], [-114.0222, 35.21685], [-114.01924, 35.2169], [-114.01568, 35.21696], [-114.01124, 35.21703], [-114.01055, 35.21704], [-114.00766, 35.21711], [-114.00648, 35.21714], [-114.00404, 35.21718], [-114.00093, 35.21723], [-113.99861, 35.21718], [-113.99851, 35.21717], [-113.99676, 35.21706], [-113.99507, 35.21687], [-113.99306, 35.21657], [-113.99146, 35.21627], [-113.98877, 35.21564], [-113.98587, 35.21496], [-113.98321, 35.21428], [-113.98008, 35.21354], [-113.97729, 35.21286], [-113.97428, 35.21211], [-113.97026, 35.21112], [-113.96109, 35.20892], [-113.95596, 35.20766], [-113.94191, 35.20423], [-113.93065, 35.20148], [-113.92456, 35.20001], [-113.92277, 35.19957], [-113.91988, 35.1989], [-113.91872, 35.1987], [-113.91731, 35.19843], [-113.9161, 35.19827], [-113.91443, 35.1981], [-113.9138, 35.19805], [-113.91232, 35.19797], [-113.90884, 35.19778], [-113.90441, 35.19756], [-113.90162, 35.1974], [-113.89925, 35.19728], [-113.89798, 35.19722], [-113.89756, 35.19719], [-113.89569, 35.1971], [-113.85364, 35.19487], [-113.84855, 35.1946], [-113.84766, 35.19455], [-113.8421, 35.19431], [-113.84023, 35.19418], [-113.83738, 35.19405], [-113.83525, 35.19391], [-113.8342, 35.19381], [-113.83214, 35.19355], [-113.83133, 35.19344], [-113.83017, 35.19323], [-113.82852, 35.19292], [-113.82715, 35.19251], [-113.82559, 35.19207], [-113.82439, 35.19168], [-113.82266, 35.19105], [-113.81876, 35.18934], [-113.81647, 35.18833], [-113.79919, 35.18059], [-113.79532, 35.17885], [-113.79088, 35.17685], [-113.79059, 35.17672], [-113.78775, 35.17546], [-113.78591, 35.17463], [-113.78541, 35.1744], [-113.78514, 35.17428], [-113.7848, 35.17413], [-113.78424, 35.17389], [-113.78384, 35.17372], [-113.78358, 35.17362], [-113.78334, 35.17352], [-113.78298, 35.17338], [-113.78228, 35.1731], [-113.78194, 35.17299], [-113.78064, 35.17253], [-113.77961, 35.17222], [-113.77922, 35.17209], [-113.77883, 35.17199], [-113.77835, 35.17186], [-113.77799, 35.17175], [-113.77758, 35.17165], [-113.77724, 35.17157], [-113.77687, 35.17149], [-113.77623, 35.17135], [-113.77569, 35.17123], [-113.77528, 35.17116], [-113.77481, 35.17106], [-113.77398, 35.17092], [-113.77333, 35.17082], [-113.77069, 35.17041], [-113.76551, 35.1696], [-113.73561, 35.16493], [-113.71215, 35.16129], [-113.70813, 35.16065], [-113.70525, 35.1602], [-113.70101, 35.15955], [-113.70009, 35.15941], [-113.69945, 35.15932], [-113.69888, 35.15925], [-113.69764, 35.15916], [-113.69694, 35.15912], [-113.69661, 35.15911], [-113.6962, 35.1591], [-113.69573, 35.1591], [-113.6953, 35.15911], [-113.69501, 35.15911], [-113.69451, 35.15913], [-113.6941, 35.15915], [-113.69358, 35.15917], [-113.69305, 35.15921], [-113.69243, 35.15928], [-113.69138, 35.15939], [-113.69062, 35.15947], [-113.68976, 35.15956], [-113.68588, 35.15995], [-113.66992, 35.16166], [-113.66903, 35.16176], [-113.66692, 35.16198], [-113.66575, 35.16208], [-113.6645, 35.16215], [-113.6631, 35.1622], [-113.66188, 35.16218], [-113.66037, 35.1621], [-113.65877, 35.16197], [-113.65742, 35.1618], [-113.65607, 35.16157], [-113.655, 35.16137], [-113.65351, 35.16104], [-113.65194, 35.16067], [-113.65009, 35.16034], [-113.64831, 35.16014], [-113.6463, 35.16], [-113.64393, 35.15999], [-113.6376, 35.16002], [-113.63647, 35.16002], [-113.63593, 35.16002], [-113.63552, 35.16003], [-113.63151, 35.16005], [-113.61887, 35.1601], [-113.61584, 35.16011], [-113.61305, 35.16014], [-113.61082, 35.1602], [-113.60855, 35.1603], [-113.60652, 35.16043], [-113.60496, 35.16054], [-113.60106, 35.16085], [-113.59704, 35.16117], [-113.59172, 35.16159], [-113.58629, 35.16202], [-113.58443, 35.1621], [-113.58337, 35.16211], [-113.58229, 35.16209], [-113.58071, 35.16205], [-113.57881, 35.16192], [-113.57753, 35.16179], [-113.57666, 35.16168], [-113.57523, 35.16147], [-113.57372, 35.16121], [-113.57258, 35.16098], [-113.57139, 35.1607], [-113.57092, 35.16059], [-113.57021, 35.16041], [-113.5672, 35.15957], [-113.5668, 35.15944], [-113.56557, 35.15913], [-113.56436, 35.1589], [-113.56271, 35.15866], [-113.56188, 35.15861], [-113.56084, 35.15855], [-113.55975, 35.15857], [-113.55868, 35.15862], [-113.55768, 35.15871], [-113.5567, 35.15885], [-113.55534, 35.1591], [-113.54863, 35.16047], [-113.54767, 35.16066], [-113.54641, 35.16092], [-113.54517, 35.1611], [-113.54428, 35.16119], [-113.54331, 35.16125], [-113.53878, 35.16128], [-113.53774, 35.1613], [-113.5372, 35.16134], [-113.53667, 35.1614], [-113.53575, 35.16157], [-113.53512, 35.16174], [-113.53461, 35.1619], [-113.53399, 35.16213], [-113.53338, 35.16242], [-113.53288, 35.16268], [-113.53239, 35.16297], [-113.53137, 35.16373], [-113.52736, 35.16706], [-113.52588, 35.16831], [-113.52485, 35.1691], [-113.52431, 35.16947], [-113.52389, 35.16972], [-113.52348, 35.16993], [-113.52246, 35.17033], [-113.52177, 35.1705], [-113.52111, 35.17064], [-113.52039, 35.17071], [-113.51953, 35.17073], [-113.51875, 35.17069], [-113.5159, 35.17049], [-113.51489, 35.17044], [-113.5139, 35.17047], [-113.51294, 35.17056], [-113.51212, 35.17068], [-113.5112, 35.17087], [-113.51044, 35.17108], [-113.50977, 35.1713], [-113.5083, 35.17178], [-113.50778, 35.17193], [-113.50714, 35.17207], [-113.50654, 35.17221], [-113.50585, 35.17233], [-113.50454, 35.17258], [-113.50333, 35.17284], [-113.50253, 35.17309], [-113.50178, 35.1734], [-113.50103, 35.17372], [-113.50008, 35.17413], [-113.49965, 35.17429], [-113.49908, 35.17446], [-113.4982, 35.17465], [-113.49715, 35.17482], [-113.49568, 35.17509], [-113.49445, 35.1754], [-113.49348, 35.17568], [-113.49208, 35.17616], [-113.49127, 35.17646], [-113.4905, 35.1767], [-113.48962, 35.17693], [-113.48867, 35.17712], [-113.48777, 35.17726], [-113.48669, 35.17736], [-113.48566, 35.1774], [-113.48446, 35.17738], [-113.48324, 35.17727], [-113.48198, 35.17708], [-113.4801, 35.17669], [-113.47917, 35.17656], [-113.47828, 35.17654], [-113.47752, 35.17661], [-113.47671, 35.17676], [-113.47599, 35.17698], [-113.4753, 35.17729], [-113.47465, 35.17764], [-113.47398, 35.17804], [-113.47307, 35.17863], [-113.47204, 35.17923], [-113.47133, 35.17962], [-113.47066, 35.17993], [-113.47008, 35.18015], [-113.46894, 35.18052], [-113.46809, 35.18074], [-113.4664, 35.18104], [-113.46439, 35.18109], [-113.4629, 35.18099], [-113.46127, 35.18086], [-113.46041, 35.18086], [-113.46009, 35.18087], [-113.45975, 35.18088], [-113.45932, 35.1809], [-113.45902, 35.18093], [-113.45876, 35.18095], [-113.4585, 35.18097], [-113.45817, 35.18101], [-113.45787, 35.18106], [-113.45748, 35.18112], [-113.45724, 35.18116], [-113.45703, 35.1812], [-113.45649, 35.18131], [-113.4561, 35.1814], [-113.45578, 35.18148], [-113.45529, 35.18162], [-113.45474, 35.1818], [-113.45397, 35.18203], [-113.4528, 35.18258], [-113.45187, 35.18308], [-113.45071, 35.1838], [-113.44881, 35.18536], [-113.44644, 35.18729], [-113.44588, 35.18772], [-113.44532, 35.18811], [-113.44477, 35.18845], [-113.44432, 35.18871], [-113.44363, 35.18905], [-113.44307, 35.1893], [-113.44212, 35.18964], [-113.44114, 35.18995], [-113.44068, 35.19007], [-113.44009, 35.19019], [-113.43916, 35.19032], [-113.43843, 35.19042], [-113.43606, 35.1904], [-113.43455, 35.19023], [-113.43362, 35.19014], [-113.43263, 35.19004], [-113.42973, 35.18976], [-113.42771, 35.18959], [-113.42627, 35.18947], [-113.42496, 35.18932], [-113.4244, 35.18925], [-113.42271, 35.18898], [-113.42154, 35.1887], [-113.4202, 35.18836], [-113.41757, 35.18767], [-113.40607, 35.18561], [-113.40294, 35.18503], [-113.39481, 35.18362], [-113.39341, 35.18347], [-113.39229, 35.18339], [-113.39121, 35.18336], [-113.39003, 35.1834], [-113.38892, 35.18348], [-113.38691, 35.18376], [-113.38496, 35.18424], [-113.38342, 35.18472], [-113.38227, 35.18518], [-113.3814, 35.18559], [-113.38034, 35.18616], [-113.37595, 35.1885], [-113.3746, 35.18909], [-113.37384, 35.18937], [-113.37235, 35.18985], [-113.37169, 35.19003], [-113.37091, 35.19019], [-113.37019, 35.19034], [-113.36957, 35.19044], [-113.36924, 35.19049], [-113.36845, 35.19059], [-113.36745, 35.19065], [-113.36617, 35.19068], [-113.36531, 35.19069], [-113.36166, 35.19072], [-113.35938, 35.19074], [-113.35226, 35.19081], [-113.33737, 35.19092], [-113.33571, 35.19091], [-113.33378, 35.19081], [-113.33208, 35.19061], [-113.33047, 35.1904], [-113.32678, 35.18967], [-113.32366, 35.18906], [-113.32241, 35.1889], [-113.32068, 35.18884], [-113.31964, 35.18889], [-113.31833, 35.18902], [-113.31759, 35.18918], [-113.31699, 35.18931], [-113.3164, 35.18946], [-113.31481, 35.18995], [-113.3137, 35.19041], [-113.31258, 35.19094], [-113.31145, 35.19162], [-113.31053, 35.19232], [-113.30967, 35.19302], [-113.30882, 35.19389], [-113.30763, 35.19528], [-113.30292, 35.2007], [-113.3012, 35.20247], [-113.3008, 35.2028], [-113.30037, 35.20318], [-113.2989, 35.20424], [-113.29754, 35.205], [-113.29719, 35.20519], [-113.29528, 35.20606], [-113.29344, 35.20666], [-113.29228, 35.20694], [-113.29155, 35.2071], [-113.29073, 35.20723], [-113.2904, 35.20727], [-113.28947, 35.20739], [-113.28829, 35.20749], [-113.28715, 35.20753], [-113.27931, 35.20727], [-113.27819, 35.20723], [-113.27734, 35.20724], [-113.27606, 35.20727], [-113.27456, 35.20739], [-113.27298, 35.2076], [-113.27181, 35.20781], [-113.27066, 35.20805], [-113.26951, 35.20835], [-113.26829, 35.20871], [-113.26703, 35.20917], [-113.26546, 35.20982], [-113.26403, 35.21051], [-113.26081, 35.21231], [-113.25555, 35.2152], [-113.24707, 35.21981], [-113.2451, 35.22091], [-113.24319, 35.2219], [-113.24097, 35.22317], [-113.23948, 35.22399], [-113.2384, 35.22453], [-113.23621, 35.22554], [-113.23448, 35.22617], [-113.23337, 35.22657], [-113.21963, 35.23132], [-113.21428, 35.23315], [-113.21282, 35.2337], [-113.21157, 35.23424], [-113.20904, 35.23549], [-113.20588, 35.23716], [-113.19215, 35.24459], [-113.18762, 35.24701], [-113.18722, 35.24721], [-113.18348, 35.24927], [-113.18097, 35.25062], [-113.17849, 35.25194], [-113.17694, 35.25279], [-113.17523, 35.25373], [-113.17418, 35.25426], [-113.17092, 35.25604], [-113.16379, 35.25989], [-113.16317, 35.26023], [-113.13124, 35.27748], [-113.13019, 35.27811], [-113.12833, 35.27948], [-113.12726, 35.28047], [-113.12594, 35.28176], [-113.12451, 35.28298], [-113.12323, 35.28399], [-113.12199, 35.28472], [-113.12103, 35.28523], [-113.12005, 35.28566], [-113.11932, 35.28599], [-113.11811, 35.28644], [-113.11723, 35.28673], [-113.11567, 35.28712], [-113.11383, 35.28739], [-113.11212, 35.28749], [-113.1109, 35.28749], [-113.10921, 35.28736], [-113.10791, 35.28718], [-113.10539, 35.28664], [-113.1005, 35.28568], [-113.09914, 35.28552], [-113.09752, 35.28553], [-113.09597, 35.28576], [-113.09453, 35.28612], [-113.0929, 35.28682], [-113.09169, 35.28741], [-113.09079, 35.28785], [-113.08983, 35.28828], [-113.08846, 35.28882], [-113.08716, 35.28928], [-113.08518, 35.28993], [-113.08342, 35.29042], [-113.08094, 35.29096], [-113.08, 35.29112], [-113.0793, 35.29123], [-113.07796, 35.29142], [-113.07545, 35.29167], [-113.07365, 35.29176], [-113.07211, 35.29178], [-113.05478, 35.29198], [-113.04321, 35.29212], [-113.04103, 35.29215], [-113.03689, 35.2922], [-113.03611, 35.29224], [-113.0354, 35.29231], [-113.03465, 35.29243], [-113.03376, 35.2926], [-113.03246, 35.29298], [-113.0316, 35.2933], [-113.03099, 35.29355], [-113.03014, 35.29401], [-113.02932, 35.29448], [-113.02843, 35.29511], [-113.02733, 35.29594], [-113.02476, 35.29784], [-113.02306, 35.29902], [-113.02131, 35.29996], [-113.02005, 35.30052], [-113.01897, 35.30092], [-113.01797, 35.30122], [-113.01708, 35.30144], [-113.01565, 35.30174], [-113.01379, 35.302], [-113.01227, 35.30208], [-113.00648, 35.30231], [-113.00533, 35.30239], [-113.00402, 35.30252], [-113.0024, 35.30273], [-113.00027, 35.3031], [-112.99815, 35.30357], [-112.99692, 35.30392], [-112.99597, 35.30419], [-112.98879, 35.30668], [-112.98858, 35.30675], [-112.9836, 35.30848], [-112.97423, 35.31176], [-112.97398, 35.31185], [-112.96957, 35.31339], [-112.96238, 35.31591], [-112.95871, 35.31703], [-112.95541, 35.31797], [-112.95309, 35.31854], [-112.94964, 35.3194], [-112.94724, 35.31987], [-112.94507, 35.32027], [-112.94168, 35.32085], [-112.93669, 35.32156], [-112.93227, 35.32202], [-112.92904, 35.32226], [-112.92511, 35.32247], [-112.92282, 35.32253], [-112.91871, 35.32256], [-112.91525, 35.32248], [-112.91084, 35.32226], [-112.90683, 35.32194], [-112.90302, 35.32154], [-112.89711, 35.32069], [-112.89358, 35.32012], [-112.88746, 35.319], [-112.86827, 35.31531], [-112.86675, 35.31492], [-112.86531, 35.31449], [-112.86427, 35.31413], [-112.86257, 35.31352], [-112.8613, 35.31299], [-112.85948, 35.31213], [-112.8585, 35.31167], [-112.85722, 35.31097], [-112.85605, 35.31031], [-112.8557, 35.31011], [-112.85196, 35.30793], [-112.85162, 35.30773], [-112.84879, 35.30615], [-112.84841, 35.30593], [-112.83502, 35.29824], [-112.83354, 35.2974], [-112.83324, 35.29723], [-112.82791, 35.29426], [-112.82665, 35.29361], [-112.82443, 35.29255], [-112.82296, 35.29188], [-112.82139, 35.29122], [-112.8199, 35.29061], [-112.81841, 35.29005], [-112.81749, 35.28972], [-112.81709, 35.28957], [-112.816, 35.2892], [-112.81504, 35.28889], [-112.8134, 35.28837], [-112.81162, 35.28786], [-112.8076, 35.28672], [-112.80184, 35.28507], [-112.79462, 35.28301], [-112.79384, 35.28279], [-112.78629, 35.28066], [-112.76641, 35.275], [-112.76315, 35.27407], [-112.76151, 35.27367], [-112.7597, 35.27328], [-112.75781, 35.27298], [-112.75657, 35.27282], [-112.75542, 35.2727], [-112.75324, 35.27255], [-112.74996, 35.27249], [-112.74153, 35.27235], [-112.74003, 35.27232], [-112.73893, 35.27228], [-112.73765, 35.27214], [-112.73703, 35.27206], [-112.7363, 35.27193], [-112.73555, 35.27179], [-112.7349, 35.27162], [-112.73444, 35.2715], [-112.73356, 35.27125], [-112.73249, 35.27087], [-112.7313, 35.27038], [-112.72984, 35.26965], [-112.72913, 35.26923], [-112.72715, 35.26784], [-112.72635, 35.26715], [-112.72367, 35.26473], [-112.7222, 35.26352], [-112.72027, 35.26208], [-112.71763, 35.26045], [-112.71613, 35.25964], [-112.71398, 35.25861], [-112.71202, 35.25779], [-112.70953, 35.2569], [-112.68898, 35.24937], [-112.66767, 35.24155], [-112.66462, 35.24056], [-112.6612, 35.23955], [-112.65982, 35.23918], [-112.65638, 35.23832], [-112.65372, 35.23774], [-112.65128, 35.23727], [-112.64807, 35.23673], [-112.64492, 35.2363], [-112.63736, 35.2354], [-112.62721, 35.23425], [-112.60998, 35.23227], [-112.60969, 35.23223], [-112.60783, 35.23202], [-112.60336, 35.2315], [-112.59653, 35.23071], [-112.59333, 35.23034], [-112.58977, 35.22992], [-112.58807, 35.22971], [-112.58679, 35.22952], [-112.5856, 35.22932], [-112.58315, 35.22888], [-112.58088, 35.22842], [-112.57333, 35.22693], [-112.56723, 35.22572], [-112.56625, 35.22553], [-112.55146, 35.2226], [-112.54342, 35.22103], [-112.54231, 35.2209], [-112.53972, 35.22085], [-112.53918, 35.22085], [-112.52757, 35.22084], [-112.52267, 35.22082], [-112.51205, 35.2208], [-112.51045, 35.22079], [-112.50836, 35.22075], [-112.50788, 35.22073], [-112.50522, 35.22066], [-112.50372, 35.22062], [-112.50088, 35.22052], [-112.49928, 35.22042], [-112.49801, 35.22029], [-112.49734, 35.22021], [-112.49666, 35.22012], [-112.49581, 35.22], [-112.4928, 35.21944], [-112.49178, 35.21926], [-112.49042, 35.21909], [-112.48884, 35.21895], [-112.4884, 35.21892], [-112.48773, 35.21889], [-112.48645, 35.21888], [-112.48496, 35.2189], [-112.48376, 35.21898], [-112.4824, 35.2191], [-112.48079, 35.21934], [-112.48013, 35.21945], [-112.47815, 35.21987], [-112.47611, 35.22045], [-112.47551, 35.22064], [-112.47447, 35.22093], [-112.47378, 35.22109], [-112.47288, 35.22126], [-112.47201, 35.22139], [-112.47097, 35.22149], [-112.46994, 35.22151], [-112.46884, 35.22147], [-112.46791, 35.2214], [-112.46701, 35.22126], [-112.46604, 35.22107], [-112.46512, 35.2209], [-112.46441, 35.22077], [-112.46427, 35.22074], [-112.46273, 35.22046], [-112.46169, 35.2203], [-112.46082, 35.22017], [-112.45932, 35.22001], [-112.45811, 35.21991], [-112.45643, 35.21982], [-112.4541, 35.21974], [-112.45285, 35.21969], [-112.45016, 35.21949], [-112.44769, 35.21918], [-112.44561, 35.21881], [-112.44474, 35.2186], [-112.44322, 35.21822], [-112.44028, 35.21736], [-112.43901, 35.21696], [-112.43879, 35.21689], [-112.43449, 35.21559], [-112.43383, 35.21539], [-112.4326, 35.21504], [-112.4314, 35.21476], [-112.42949, 35.21447], [-112.42833, 35.21438], [-112.42808, 35.21436], [-112.42788, 35.21434], [-112.42458, 35.2141], [-112.42425, 35.21407], [-112.41157, 35.21319], [-112.41073, 35.21315], [-112.40997, 35.21316], [-112.40882, 35.21323], [-112.40755, 35.2134], [-112.40682, 35.21355], [-112.40611, 35.21373], [-112.40532, 35.21396], [-112.40454, 35.21425], [-112.40132, 35.21557], [-112.40066, 35.21582], [-112.39974, 35.2161], [-112.39894, 35.21631], [-112.39819, 35.21646], [-112.39742, 35.21656], [-112.39641, 35.21665], [-112.39582, 35.21667], [-112.39525, 35.21666], [-112.39406, 35.21659], [-112.39315, 35.21645], [-112.39216, 35.21627], [-112.3907, 35.21599], [-112.38996, 35.21586], [-112.38919, 35.21577], [-112.38857, 35.21572], [-112.38793, 35.21571], [-112.38319, 35.21583], [-112.38144, 35.21588], [-112.37989, 35.21599], [-112.37856, 35.21613], [-112.37845, 35.21614], [-112.37809, 35.21618], [-112.37738, 35.21627], [-112.37666, 35.21635], [-112.37377, 35.2167], [-112.37293, 35.2168], [-112.3721, 35.21686], [-112.37136, 35.21686], [-112.37056, 35.21682], [-112.36965, 35.21674], [-112.36894, 35.21664], [-112.36815, 35.21647], [-112.36281, 35.21523], [-112.36198, 35.21505], [-112.36126, 35.21493], [-112.36047, 35.21481], [-112.35961, 35.21473], [-112.35855, 35.21469], [-112.35732, 35.21472], [-112.35649, 35.21478], [-112.35581, 35.21486], [-112.35502, 35.21498], [-112.35448, 35.21509], [-112.35386, 35.21522], [-112.35348, 35.21531], [-112.35241, 35.21565], [-112.34979, 35.21668], [-112.34877, 35.21706], [-112.34768, 35.21736], [-112.3468, 35.21756], [-112.34584, 35.21771], [-112.3408, 35.21856], [-112.33964, 35.21882], [-112.33895, 35.21902], [-112.33809, 35.21931], [-112.3374, 35.21959], [-112.3367, 35.21991], [-112.33591, 35.22033], [-112.33478, 35.22091], [-112.33365, 35.2214], [-112.33283, 35.22169], [-112.33216, 35.22188], [-112.33154, 35.22204], [-112.33084, 35.22218], [-112.32929, 35.22244], [-112.32778, 35.22269], [-112.32669, 35.22284], [-112.32578, 35.22292], [-112.32451, 35.22294], [-112.32432, 35.22294], [-112.3234, 35.22288], [-112.32256, 35.22279], [-112.32175, 35.22266], [-112.31954, 35.22219], [-112.31326, 35.22081], [-112.31008, 35.22012], [-112.30879, 35.21985], [-112.3077, 35.21968], [-112.30662, 35.21958], [-112.30533, 35.21953], [-112.30406, 35.21959], [-112.3026, 35.21975], [-112.30023, 35.22018], [-112.29909, 35.2203], [-112.29791, 35.22036], [-112.29677, 35.22035], [-112.29537, 35.22024], [-112.29378, 35.21999], [-112.29159, 35.2195], [-112.29004, 35.21921], [-112.28808, 35.21895], [-112.28648, 35.21883], [-112.2852, 35.21881], [-112.28312, 35.21888], [-112.28171, 35.21899], [-112.28037, 35.21917], [-112.27964, 35.2193], [-112.27873, 35.21947], [-112.27762, 35.21972], [-112.27626, 35.2201], [-112.27616, 35.22012], [-112.27585, 35.22021], [-112.27417, 35.2207], [-112.27219, 35.22114], [-112.2706, 35.22139], [-112.2693, 35.22156], [-112.26811, 35.22165], [-112.2661, 35.22173], [-112.25496, 35.22214], [-112.2511, 35.22229], [-112.24947, 35.22235], [-112.24444, 35.22253], [-112.24337, 35.2226], [-112.2423, 35.22276], [-112.24114, 35.22306], [-112.24017, 35.22342], [-112.23938, 35.22381], [-112.23889, 35.22408], [-112.23843, 35.22438], [-112.23783, 35.22483], [-112.23755, 35.22507], [-112.23726, 35.22534], [-112.23682, 35.22583], [-112.23639, 35.22636], [-112.23612, 35.22673], [-112.23583, 35.22716], [-112.23572, 35.22731], [-112.23456, 35.22909], [-112.23303, 35.23096], [-112.23229, 35.23171], [-112.23172, 35.23223], [-112.23117, 35.23269], [-112.23059, 35.23315], [-112.22989, 35.23364], [-112.22913, 35.23412], [-112.22823, 35.23463], [-112.2275, 35.23501], [-112.227, 35.23526], [-112.22604, 35.23567], [-112.22472, 35.23621], [-112.22206, 35.23736], [-112.22118, 35.23785], [-112.22043, 35.23833], [-112.21984, 35.23879], [-112.21939, 35.23916], [-112.21908, 35.23941], [-112.21869, 35.23977], [-112.21799, 35.24056], [-112.21595, 35.24335], [-112.21547, 35.24399], [-112.21516, 35.24438], [-112.2147, 35.2449], [-112.21413, 35.24549], [-112.21328, 35.24628], [-112.21278, 35.24669], [-112.21182, 35.24748], [-112.21094, 35.24814], [-112.21034, 35.24863], [-112.20984, 35.24898], [-112.20922, 35.24951], [-112.20863, 35.24999], [-112.20791, 35.25054], [-112.20673, 35.2515], [-112.20585, 35.25213], [-112.20454, 35.25305], [-112.20361, 35.25359], [-112.20246, 35.25422], [-112.20204, 35.25442], [-112.20152, 35.25467], [-112.19983, 35.2555], [-112.19845, 35.25617], [-112.19664, 35.25708], [-112.19432, 35.25823], [-112.1929, 35.25893], [-112.19247, 35.25914], [-112.19193, 35.25941], [-112.19031, 35.26021], [-112.18902, 35.26086], [-112.18766, 35.26154], [-112.18652, 35.26209], [-112.1861, 35.26228], [-112.18534, 35.26257], [-112.18453, 35.26289], [-112.18354, 35.26317], [-112.18284, 35.26336], [-112.1816, 35.26359], [-112.18085, 35.26367], [-112.17994, 35.26375], [-112.17901, 35.26378], [-112.17682, 35.2638], [-112.17588, 35.26382], [-112.17419, 35.26384], [-112.17311, 35.26386], [-112.17275, 35.26387], [-112.17223, 35.26387], [-112.16815, 35.2639], [-112.16675, 35.26393], [-112.1656, 35.26394], [-112.16455, 35.26395], [-112.16367, 35.26391], [-112.16298, 35.26386], [-112.16259, 35.26382], [-112.162, 35.26375], [-112.16136, 35.26366], [-112.16052, 35.2635], [-112.1599, 35.26337], [-112.15949, 35.26327], [-112.15866, 35.26305], [-112.1571, 35.26253], [-112.15672, 35.26239], [-112.15609, 35.26216], [-112.15481, 35.26167], [-112.15336, 35.26112], [-112.15241, 35.26077], [-112.15162, 35.26047], [-112.15105, 35.26025], [-112.14928, 35.25962], [-112.14825, 35.25924], [-112.14727, 35.25891], [-112.14641, 35.25866], [-112.14584, 35.25851], [-112.14551, 35.25844], [-112.14444, 35.25823], [-112.14355, 35.25809], [-112.1423, 35.25795], [-112.14086, 35.25789], [-112.1397, 35.25789], [-112.13538, 35.25792], [-112.12952, 35.25799], [-112.12805, 35.25798], [-112.12543, 35.258], [-112.12262, 35.25805], [-112.12077, 35.25808], [-112.11704, 35.25811], [-112.11494, 35.25812], [-112.11149, 35.25818], [-112.10649, 35.25822], [-112.10122, 35.25828], [-112.096, 35.25831], [-112.09408, 35.25822], [-112.08851, 35.25797], [-112.08543, 35.25782], [-112.08407, 35.25777], [-112.08279, 35.25782], [-112.08132, 35.25795], [-112.08013, 35.25814], [-112.07888, 35.25839], [-112.07784, 35.25868], [-112.07632, 35.25916], [-112.07518, 35.25962], [-112.07239, 35.26091], [-112.07156, 35.26126], [-112.07036, 35.2618], [-112.06795, 35.26274], [-112.0661, 35.26332], [-112.06385, 35.26388], [-112.06238, 35.26417], [-112.06074, 35.26444], [-112.05863, 35.26464], [-112.05722, 35.26471], [-112.05646, 35.26472], [-112.05589, 35.26474], [-112.05412, 35.2647], [-112.05282, 35.26463], [-112.05178, 35.26452], [-112.05039, 35.26435], [-112.04935, 35.26418], [-112.04678, 35.26365], [-112.04351, 35.26284], [-112.04109, 35.26227], [-112.03899, 35.26177], [-112.03511, 35.26085], [-112.03333, 35.26043], [-112.03057, 35.25976], [-112.02656, 35.25882], [-112.0217, 35.25766], [-112.01669, 35.25646], [-112.01077, 35.25503], [-112.00844, 35.25448], [-112.00266, 35.25309], [-112.00152, 35.25281], [-112.00049, 35.25252], [-111.99942, 35.25222], [-111.99828, 35.25183], [-111.99609, 35.25109], [-111.99334, 35.25011], [-111.99068, 35.24921], [-111.98804, 35.24853], [-111.98683, 35.24825], [-111.98555, 35.248], [-111.98304, 35.24763], [-111.98106, 35.24744], [-111.97937, 35.24733], [-111.97779, 35.24731], [-111.97634, 35.24732], [-111.97457, 35.24738], [-111.97227, 35.24759], [-111.97025, 35.24787], [-111.96845, 35.24817], [-111.96452, 35.24909], [-111.96166, 35.24977], [-111.96007, 35.25016], [-111.95839, 35.25059], [-111.95682, 35.25095], [-111.95344, 35.25178], [-111.95033, 35.25253], [-111.9483, 35.25309], [-111.947, 35.25344], [-111.94553, 35.25382], [-111.94411, 35.25416], [-111.9436, 35.25428], [-111.94231, 35.25459], [-111.94148, 35.25479], [-111.94068, 35.25499], [-111.93975, 35.25521], [-111.93901, 35.25539], [-111.93734, 35.2558], [-111.93652, 35.256], [-111.9357, 35.25619], [-111.9344, 35.2565], [-111.93326, 35.25671], [-111.93204, 35.25686], [-111.93127, 35.25691], [-111.93029, 35.25696], [-111.9291, 35.25695], [-111.92786, 35.25687], [-111.92675, 35.25675], [-111.92563, 35.25654], [-111.92452, 35.25629], [-111.92306, 35.25592], [-111.91158, 35.25305], [-111.90886, 35.25262], [-111.90698, 35.25245], [-111.90438, 35.25235], [-111.90267, 35.25221], [-111.9011, 35.25195], [-111.89987, 35.25166], [-111.89872, 35.25132], [-111.8973, 35.25083], [-111.89645, 35.25048], [-111.89542, 35.24998], [-111.89358, 35.2491], [-111.8923, 35.24849], [-111.89152, 35.24818], [-111.89046, 35.2478], [-111.88922, 35.24745], [-111.88819, 35.2472], [-111.88697, 35.24698], [-111.88595, 35.24685], [-111.88481, 35.24676], [-111.88367, 35.24672], [-111.88287, 35.24673], [-111.88196, 35.24676], [-111.88115, 35.24682], [-111.87987, 35.24699], [-111.87614, 35.24767], [-111.87466, 35.2479], [-111.87274, 35.24814], [-111.87015, 35.24839], [-111.86822, 35.24852], [-111.86675, 35.24856], [-111.86487, 35.2486], [-111.86278, 35.24857], [-111.86082, 35.24848], [-111.85925, 35.24838], [-111.85808, 35.24827], [-111.85582, 35.24801], [-111.85382, 35.24772], [-111.85187, 35.24739], [-111.85001, 35.24701], [-111.84805, 35.24655], [-111.84609, 35.24603], [-111.84407, 35.24542], [-111.84222, 35.2448], [-111.84037, 35.24412], [-111.83848, 35.24335], [-111.83633, 35.2424], [-111.83468, 35.24161], [-111.8323, 35.2405], [-111.82821, 35.23857], [-111.82763, 35.23829], [-111.82022, 35.2348], [-111.81925, 35.23433], [-111.8187, 35.23406], [-111.81795, 35.23371], [-111.79922, 35.22487], [-111.79752, 35.22401], [-111.79608, 35.2232], [-111.79526, 35.22272], [-111.79375, 35.2218], [-111.7926, 35.22103], [-111.79113, 35.21997], [-111.78943, 35.2186], [-111.78833, 35.21773], [-111.78759, 35.21721], [-111.78688, 35.21674], [-111.78599, 35.21622], [-111.78499, 35.2157], [-111.78389, 35.21521], [-111.78298, 35.21486], [-111.77981, 35.2138], [-111.77915, 35.21359], [-111.7776, 35.21308], [-111.77639, 35.21266], [-111.77574, 35.21238], [-111.77511, 35.21203], [-111.77419, 35.21138], [-111.77364, 35.21092], [-111.77312, 35.21037], [-111.77265, 35.20977], [-111.77207, 35.20882], [-111.77153, 35.20797], [-111.77106, 35.20719], [-111.77045, 35.20636], [-111.76969, 35.20555], [-111.76906, 35.20498], [-111.76831, 35.2044], [-111.7675, 35.20389], [-111.76649, 35.20336], [-111.76572, 35.20305], [-111.76427, 35.20253], [-111.76211, 35.20186], [-111.76104, 35.20149], [-111.75463, 35.19947], [-111.75294, 35.1991], [-111.75173, 35.19891], [-111.75069, 35.19882], [-111.74916, 35.19866], [-111.74709, 35.19846], [-111.7456, 35.19823], [-111.74456, 35.19802], [-111.74337, 35.19769], [-111.74203, 35.19718], [-111.741, 35.19674], [-111.73985, 35.19609], [-111.73892, 35.19545], [-111.73845, 35.19514], [-111.73709, 35.19421], [-111.73625, 35.19376], [-111.73535, 35.19337], [-111.73019, 35.19175], [-111.72729, 35.19085], [-111.72619, 35.19052], [-111.72511, 35.19019], [-111.72461, 35.19002], [-111.72398, 35.18983], [-111.71559, 35.1872], [-111.7139, 35.1867], [-111.71251, 35.18625], [-111.71032, 35.18555], [-111.70963, 35.18533], [-111.70424, 35.18365], [-111.70268, 35.18318], [-111.70186, 35.18293], [-111.69935, 35.18228], [-111.69579, 35.18145], [-111.69489, 35.18123], [-111.69399, 35.18101], [-111.68677, 35.1793], [-111.68526, 35.17895], [-111.68427, 35.17873], [-111.6794, 35.17759], [-111.67615, 35.17677], [-111.67553, 35.17658], [-111.67491, 35.17638], [-111.67377, 35.17599], [-111.67306, 35.17573], [-111.67195, 35.1753], [-111.67156, 35.17513], [-111.67001, 35.17452], [-111.66956, 35.17433], [-111.66908, 35.17414], [-111.66823, 35.17379], [-111.66763, 35.17355], [-111.66704, 35.17331], [-111.66595, 35.17286], [-111.66484, 35.17242], [-111.66436, 35.17224], [-111.66409, 35.17215], [-111.66386, 35.17206], [-111.66356, 35.17197], [-111.66318, 35.17186], [-111.66282, 35.17176], [-111.66274, 35.17173], [-111.662, 35.17154], [-111.66125, 35.17138], [-111.66089, 35.17129], [-111.66045, 35.17123], [-111.65988, 35.17114], [-111.65956, 35.17109], [-111.65903, 35.17104], [-111.6586, 35.171], [-111.6573, 35.17094], [-111.65663, 35.17092], [-111.6561, 35.17094], [-111.65519, 35.17099], [-111.65441, 35.17104], [-111.65315, 35.17121], [-111.65256, 35.17131], [-111.65198, 35.17143], [-111.65148, 35.17154], [-111.65112, 35.17163], [-111.65068, 35.17174], [-111.65022, 35.17186], [-111.64997, 35.17194], [-111.6493, 35.17217], [-111.6488, 35.17236], [-111.64841, 35.17251], [-111.64805, 35.17266], [-111.64743, 35.17292], [-111.647, 35.17313], [-111.64629, 35.17349], [-111.64579, 35.17377], [-111.64538, 35.174], [-111.64493, 35.17429], [-111.6444, 35.17464], [-111.64381, 35.17506], [-111.64319, 35.17554], [-111.64284, 35.17583], [-111.64247, 35.17609], [-111.64143, 35.17701], [-111.64124, 35.17718], [-111.64073, 35.17761], [-111.64026, 35.178], [-111.63979, 35.17839], [-111.63942, 35.1787], [-111.6389, 35.17913], [-111.63814, 35.17978], [-111.63758, 35.18026], [-111.63694, 35.18082], [-111.63624, 35.18143], [-111.63553, 35.18203], [-111.63506, 35.18244], [-111.63439, 35.18301], [-111.63378, 35.18353], [-111.63328, 35.18393], [-111.63241, 35.18468], [-111.63197, 35.18505], [-111.63136, 35.18553], [-111.63068, 35.18603], [-111.6302, 35.18637], [-111.62959, 35.18679], [-111.62919, 35.18705], [-111.62862, 35.1874], [-111.62804, 35.18774], [-111.62767, 35.18795], [-111.62728, 35.18818], [-111.62663, 35.18855], [-111.62596, 35.18891], [-111.62531, 35.18927], [-111.62494, 35.18948], [-111.62428, 35.18987], [-111.62377, 35.19015], [-111.62332, 35.19042], [-111.62273, 35.19078], [-111.62232, 35.19103], [-111.62169, 35.19143], [-111.62139, 35.19163], [-111.62056, 35.19219], [-111.62004, 35.19259], [-111.61953, 35.19297], [-111.619, 35.19337], [-111.61843, 35.1938], [-111.6173, 35.19465], [-111.6168, 35.19504], [-111.61614, 35.19554], [-111.61574, 35.19584], [-111.61557, 35.19596], [-111.61523, 35.19622], [-111.61478, 35.19657], [-111.61442, 35.19684], [-111.61397, 35.19718], [-111.61358, 35.19747], [-111.61299, 35.19793], [-111.61222, 35.19852], [-111.61156, 35.19901], [-111.61084, 35.19955], [-111.61009, 35.20012], [-111.60941, 35.20063], [-111.60884, 35.20106], [-111.60824, 35.20153], [-111.60774, 35.2019], [-111.60726, 35.20227], [-111.60686, 35.20257], [-111.60613, 35.20311], [-111.60545, 35.20363], [-111.60476, 35.20416], [-111.60381, 35.20487], [-111.60315, 35.20538], [-111.60265, 35.20575], [-111.60208, 35.20618], [-111.6016, 35.20655], [-111.60116, 35.20688], [-111.60059, 35.20731], [-111.60008, 35.2077], [-111.5995, 35.20815], [-111.59887, 35.2086], [-111.5983, 35.20901], [-111.59761, 35.20948], [-111.59698, 35.20989], [-111.59631, 35.21032], [-111.59577, 35.21065], [-111.59503, 35.21109], [-111.59434, 35.21148], [-111.59358, 35.21189], [-111.59287, 35.21227], [-111.59233, 35.21255], [-111.59166, 35.21287], [-111.59102, 35.21318], [-111.59029, 35.21352], [-111.58941, 35.2139], [-111.58875, 35.21417], [-111.58815, 35.21441], [-111.58736, 35.21472], [-111.58673, 35.21496], [-111.58635, 35.21508], [-111.58625, 35.21511], [-111.58589, 35.21524], [-111.58536, 35.21542], [-111.58475, 35.21562], [-111.58429, 35.21577], [-111.58383, 35.21591], [-111.58344, 35.21602], [-111.58308, 35.21613], [-111.58257, 35.21628], [-111.58203, 35.21642], [-111.58159, 35.21653], [-111.58076, 35.21674], [-111.58012, 35.21688], [-111.57959, 35.217], [-111.57893, 35.21715], [-111.57853, 35.21722], [-111.57759, 35.21739], [-111.57687, 35.21751], [-111.57579, 35.21767], [-111.57488, 35.21781], [-111.57445, 35.21787], [-111.574, 35.21792], [-111.57334, 35.21799], [-111.57276, 35.21804], [-111.57227, 35.21808], [-111.57173, 35.21809], [-111.56955, 35.21823], [-111.56521, 35.21821], [-111.56233, 35.21804], [-111.5581, 35.21751], [-111.55427, 35.21673], [-111.55297, 35.21647], [-111.54238, 35.21424], [-111.53166, 35.21176], [-111.52817, 35.21095], [-111.52395, 35.20997], [-111.52335, 35.20981], [-111.52286, 35.20971], [-111.52058, 35.20917], [-111.51841, 35.20867], [-111.517, 35.20833], [-111.51334, 35.20748], [-111.51244, 35.20729], [-111.51129, 35.20707], [-111.51066, 35.20696], [-111.50996, 35.20686], [-111.50956, 35.20681], [-111.50891, 35.20671], [-111.50826, 35.20665], [-111.50759, 35.20658], [-111.50637, 35.20646], [-111.50472, 35.20631], [-111.50318, 35.20616], [-111.50262, 35.2061], [-111.50223, 35.20605], [-111.50189, 35.20602], [-111.50155, 35.20597], [-111.50069, 35.20586], [-111.49907, 35.20557], [-111.49821, 35.20542], [-111.49721, 35.20522], [-111.49512, 35.20481], [-111.49306, 35.20443], [-111.4912, 35.20407], [-111.48826, 35.20351], [-111.4854, 35.20297], [-111.48369, 35.20263], [-111.48106, 35.20213], [-111.48012, 35.20195], [-111.4791, 35.20179], [-111.47866, 35.20174], [-111.47808, 35.20167], [-111.47706, 35.20158], [-111.47591, 35.2015], [-111.47485, 35.20149], [-111.47409, 35.20149], [-111.47308, 35.20153], [-111.47136, 35.20167], [-111.47061, 35.20177], [-111.46996, 35.20185], [-111.46856, 35.20201], [-111.46787, 35.20207], [-111.46741, 35.2021], [-111.46523, 35.20222], [-111.46327, 35.20223], [-111.46, 35.20213], [-111.45639, 35.20202], [-111.44928, 35.20183], [-111.44254, 35.20163], [-111.43301, 35.20135], [-111.42862, 35.20122], [-111.42603, 35.20116], [-111.42477, 35.20118], [-111.42364, 35.20124], [-111.42251, 35.20138], [-111.4187, 35.20202], [-111.41655, 35.20235], [-111.41518, 35.20248], [-111.41402, 35.20252], [-111.41192, 35.20246], [-111.41081, 35.20234], [-111.40989, 35.2022], [-111.40895, 35.20203], [-111.4076, 35.2017], [-111.40599, 35.2012], [-111.40099, 35.19914], [-111.40005, 35.19875], [-111.39791, 35.19789], [-111.3933, 35.196], [-111.38235, 35.19151], [-111.37686, 35.18929], [-111.37135, 35.18712], [-111.31893, 35.16642], [-111.30109, 35.15939], [-111.29824, 35.15827], [-111.2967, 35.15785], [-111.29515, 35.15757], [-111.29348, 35.15749], [-111.29186, 35.15755], [-111.29013, 35.15781], [-111.28848, 35.15828], [-111.28643, 35.15904], [-111.28538, 35.15944], [-111.28497, 35.15961], [-111.28432, 35.15987], [-111.28068, 35.16125], [-111.27899, 35.16161], [-111.27867, 35.16167], [-111.27836, 35.16172], [-111.27799, 35.16176], [-111.27776, 35.16179], [-111.27687, 35.16184], [-111.2761, 35.16186], [-111.27546, 35.16185], [-111.27466, 35.16179], [-111.27371, 35.16166], [-111.27313, 35.16155], [-111.27223, 35.16132], [-111.27082, 35.16086], [-111.26598, 35.15907], [-111.26536, 35.15885], [-111.26463, 35.15857], [-111.25503, 35.15505], [-111.25024, 35.15329], [-111.20576, 35.13698], [-111.19669, 35.13365], [-111.19397, 35.13265], [-111.19014, 35.13124], [-111.1899, 35.13115], [-111.18813, 35.13053], [-111.18653, 35.12994], [-111.18392, 35.12896], [-111.18357, 35.12885], [-111.18162, 35.12813], [-111.17878, 35.12707], [-111.17603, 35.12607], [-111.17268, 35.12485], [-111.17202, 35.12461], [-111.17151, 35.12443], [-111.17087, 35.12421], [-111.17022, 35.124], [-111.16941, 35.12374], [-111.16878, 35.12355], [-111.16818, 35.12336], [-111.16638, 35.12284], [-111.16556, 35.12262], [-111.16513, 35.12251], [-111.16452, 35.12235], [-111.16362, 35.12213], [-111.16302, 35.12199], [-111.16228, 35.12182], [-111.16106, 35.12155], [-111.16057, 35.12145], [-111.16002, 35.12133], [-111.15971, 35.12127], [-111.15934, 35.1212], [-111.1588, 35.1211], [-111.15817, 35.12098], [-111.15753, 35.12088], [-111.15698, 35.12079], [-111.15451, 35.12039], [-111.14263, 35.11922], [-111.12744, 35.11778], [-111.11402, 35.11655], [-111.11153, 35.11634], [-111.11046, 35.11628], [-111.10938, 35.11628], [-111.10823, 35.11634], [-111.1072, 35.11645], [-111.10016, 35.11746], [-111.09941, 35.11756], [-111.09852, 35.11767], [-111.09776, 35.11776], [-111.09709, 35.11782], [-111.09675, 35.11783], [-111.09621, 35.11785], [-111.09555, 35.11785], [-111.09516, 35.11785], [-111.09444, 35.11782], [-111.09383, 35.11777], [-111.09321, 35.11772], [-111.09269, 35.11766], [-111.09047, 35.11732], [-111.09, 35.11724], [-111.08937, 35.11715], [-111.08682, 35.11677], [-111.08544, 35.11655], [-111.08473, 35.11643], [-111.082, 35.11602], [-111.07984, 35.11568], [-111.07156, 35.11442], [-111.06465, 35.11366], [-111.03633, 35.11069], [-111.03077, 35.11011], [-111.02952, 35.10997], [-111.02843, 35.10985], [-111.02687, 35.10966], [-111.02472, 35.10936], [-111.02264, 35.10904], [-111.02098, 35.10878], [-111.02021, 35.10864], [-111.0189, 35.10839], [-111.01686, 35.10799], [-111.01257, 35.10707], [-111.00931, 35.10637], [-111.00781, 35.10605], [-110.99747, 35.10383], [-110.99449, 35.10318], [-110.99316, 35.10289], [-110.98999, 35.10221], [-110.98926, 35.10205], [-110.98808, 35.1018], [-110.98626, 35.10141], [-110.98246, 35.10059], [-110.98114, 35.10031], [-110.98064, 35.10021], [-110.9799, 35.10008], [-110.97884, 35.0999], [-110.97787, 35.09977], [-110.97709, 35.09967], [-110.97606, 35.09955], [-110.97533, 35.09947], [-110.97399, 35.09936], [-110.97322, 35.0993], [-110.97168, 35.09917], [-110.96814, 35.09888], [-110.96483, 35.09861], [-110.96395, 35.09854], [-110.96118, 35.09833], [-110.95476, 35.09764], [-110.94502, 35.09622], [-110.93537, 35.09478], [-110.93449, 35.09464], [-110.93093, 35.09413], [-110.93059, 35.09408], [-110.92523, 35.0933], [-110.92446, 35.09317], [-110.92297, 35.09293], [-110.92163, 35.0927], [-110.92046, 35.09249], [-110.91993, 35.09241], [-110.91472, 35.0913], [-110.90828, 35.08961], [-110.90325, 35.08807], [-110.89499, 35.08524], [-110.88805, 35.08287], [-110.88489, 35.0818], [-110.8817, 35.08081], [-110.86093, 35.07475], [-110.85822, 35.07396], [-110.85606, 35.07332], [-110.85347, 35.07257], [-110.85201, 35.07214], [-110.85076, 35.07177], [-110.84758, 35.07084], [-110.84474, 35.07001], [-110.84308, 35.06953], [-110.84138, 35.06902], [-110.84007, 35.06865], [-110.83827, 35.06813], [-110.83546, 35.0673], [-110.83035, 35.06579], [-110.83013, 35.06573], [-110.82901, 35.0654], [-110.82742, 35.06494], [-110.8257, 35.06445], [-110.82492, 35.06421], [-110.82416, 35.06399], [-110.82302, 35.06366], [-110.81783, 35.06214], [-110.8171, 35.06193], [-110.81339, 35.06084], [-110.81152, 35.06029], [-110.81064, 35.06002], [-110.80717, 35.05902], [-110.80312, 35.05783], [-110.79987, 35.05689], [-110.79771, 35.05625], [-110.79636, 35.05585], [-110.79006, 35.05401], [-110.77829, 35.05057], [-110.76917, 35.04788], [-110.75597, 35.04402], [-110.75441, 35.04356], [-110.75155, 35.04272], [-110.75012, 35.0423], [-110.74868, 35.0419], [-110.74653, 35.04134], [-110.74434, 35.04079], [-110.74214, 35.0403], [-110.74008, 35.03985], [-110.73462, 35.0387], [-110.73267, 35.03836], [-110.73148, 35.03819], [-110.73031, 35.03802], [-110.72833, 35.03785], [-110.72674, 35.03775], [-110.72515, 35.03767], [-110.72265, 35.03769], [-110.72067, 35.03777], [-110.71903, 35.0379], [-110.71749, 35.03803], [-110.71438, 35.03844], [-110.71108, 35.03888], [-110.70969, 35.03906], [-110.70927, 35.0391], [-110.70842, 35.03917], [-110.70823, 35.03918], [-110.70763, 35.03921], [-110.70734, 35.03922], [-110.70678, 35.03925], [-110.70584, 35.03927], [-110.70462, 35.03928], [-110.70402, 35.03928], [-110.70179, 35.03931], [-110.69898, 35.03933], [-110.69845, 35.03934], [-110.69738, 35.03932], [-110.69699, 35.03932], [-110.69634, 35.03927], [-110.69549, 35.03916], [-110.69469, 35.03904], [-110.69405, 35.03887], [-110.69372, 35.03878], [-110.69347, 35.03871], [-110.69324, 35.03865], [-110.69298, 35.03856], [-110.69269, 35.03845], [-110.69225, 35.03829], [-110.6918, 35.03809], [-110.69121, 35.03781], [-110.69073, 35.03755], [-110.69039, 35.03736], [-110.69034, 35.03732], [-110.68985, 35.037], [-110.68959, 35.03682], [-110.68938, 35.03668], [-110.68921, 35.03655], [-110.68894, 35.03635], [-110.68862, 35.03607], [-110.68828, 35.03577], [-110.68805, 35.03554], [-110.68784, 35.03532], [-110.68762, 35.03506], [-110.68736, 35.03477], [-110.68705, 35.03438], [-110.68665, 35.03378], [-110.68648, 35.03349], [-110.68629, 35.03315], [-110.68611, 35.03284], [-110.68583, 35.03223], [-110.68523, 35.03106], [-110.68505, 35.03067], [-110.68479, 35.03018], [-110.68452, 35.02963], [-110.68421, 35.029], [-110.68352, 35.02763], [-110.68313, 35.02683], [-110.68232, 35.0252], [-110.68197, 35.02448], [-110.6818, 35.02417], [-110.68162, 35.02386], [-110.68148, 35.02359], [-110.68128, 35.0233], [-110.68106, 35.02293], [-110.68079, 35.02255], [-110.68042, 35.02208], [-110.67998, 35.0216], [-110.67997, 35.02159], [-110.67977, 35.02136], [-110.67952, 35.02109], [-110.67908, 35.02067], [-110.67879, 35.0204], [-110.67847, 35.02013], [-110.67805, 35.0198], [-110.67762, 35.01949], [-110.6772, 35.01921], [-110.67689, 35.01902], [-110.67642, 35.01873], [-110.67604, 35.01852], [-110.67555, 35.01827], [-110.67511, 35.01805], [-110.67483, 35.01794], [-110.67448, 35.01778], [-110.67412, 35.01764], [-110.67379, 35.01752], [-110.67345, 35.0174], [-110.67311, 35.01729], [-110.6726, 35.01714], [-110.67117, 35.01675], [-110.67061, 35.01659], [-110.66994, 35.01642], [-110.66924, 35.01623], [-110.66793, 35.01587], [-110.66561, 35.01524], [-110.66332, 35.01461], [-110.66241, 35.01437], [-110.66001, 35.01372], [-110.65786, 35.01314], [-110.65474, 35.01227], [-110.65152, 35.01141], [-110.64937, 35.01082], [-110.6485, 35.01059], [-110.64542, 35.00974], [-110.64213, 35.00885], [-110.63612, 35.00723], [-110.6337, 35.00675], [-110.63294, 35.00665], [-110.63114, 35.00649], [-110.62974, 35.00642], [-110.62842, 35.00642], [-110.62704, 35.00649], [-110.62346, 35.00671], [-110.6223, 35.00676], [-110.62115, 35.00673], [-110.62028, 35.00667], [-110.61906, 35.00654], [-110.61777, 35.00631], [-110.61645, 35.006], [-110.61485, 35.00549], [-110.61072, 35.00411], [-110.60949, 35.00368], [-110.60726, 35.00291], [-110.57987, 34.99356], [-110.56589, 34.98875], [-110.55241, 34.98418], [-110.54465, 34.98153], [-110.54314, 34.98101], [-110.54166, 34.9805], [-110.54049, 34.98012], [-110.53942, 34.97975], [-110.53843, 34.9794], [-110.5377, 34.97915], [-110.5371, 34.97895], [-110.53636, 34.9787], [-110.53537, 34.97837], [-110.53416, 34.97796], [-110.53349, 34.97773], [-110.53242, 34.97736], [-110.53127, 34.97697], [-110.52991, 34.97655], [-110.52897, 34.97626], [-110.52792, 34.97596], [-110.52709, 34.97574], [-110.52589, 34.97542], [-110.52551, 34.97533], [-110.52349, 34.97484], [-110.52184, 34.9745], [-110.52098, 34.97434], [-110.51737, 34.97371], [-110.51641, 34.97356], [-110.51561, 34.97345], [-110.51498, 34.97338], [-110.51497, 34.97338], [-110.51428, 34.9733], [-110.5134, 34.9732], [-110.51237, 34.97309], [-110.51156, 34.97301], [-110.51096, 34.97297], [-110.50979, 34.97287], [-110.50931, 34.97285], [-110.50819, 34.97279], [-110.5066, 34.97271], [-110.50393, 34.97259], [-110.49993, 34.97242], [-110.49774, 34.97231], [-110.49632, 34.97225], [-110.495, 34.9722], [-110.49319, 34.97212], [-110.49154, 34.97205], [-110.48927, 34.97194], [-110.4879, 34.97187], [-110.48625, 34.9718], [-110.48499, 34.97175], [-110.48395, 34.9717], [-110.48243, 34.97163], [-110.47988, 34.97152], [-110.47719, 34.97139], [-110.47459, 34.97128], [-110.47312, 34.97121], [-110.47095, 34.97111], [-110.47016, 34.97107], [-110.46811, 34.97099], [-110.46547, 34.97087], [-110.46053, 34.97064], [-110.45641, 34.97045], [-110.45396, 34.97034], [-110.44716, 34.97004], [-110.44602, 34.96999], [-110.44452, 34.96992], [-110.44361, 34.96988], [-110.44271, 34.96984], [-110.44189, 34.9698], [-110.43938, 34.96967], [-110.43791, 34.96956], [-110.43658, 34.96943], [-110.43565, 34.96933], [-110.43488, 34.96925], [-110.43399, 34.96914], [-110.43362, 34.96909], [-110.43168, 34.96882], [-110.43071, 34.96866], [-110.42992, 34.96854], [-110.42936, 34.96845], [-110.4286, 34.96833], [-110.42738, 34.96813], [-110.42531, 34.96781], [-110.42204, 34.96729], [-110.41958, 34.96691], [-110.41768, 34.9666], [-110.41544, 34.96625], [-110.4147, 34.96613], [-110.41101, 34.96555], [-110.4078, 34.96504], [-110.40742, 34.96498], [-110.40211, 34.96414], [-110.40081, 34.96393], [-110.39537, 34.96306], [-110.39221, 34.96256], [-110.39054, 34.96231], [-110.38785, 34.96188], [-110.3863, 34.96163], [-110.37942, 34.96054], [-110.37426, 34.95972], [-110.37223, 34.9594], [-110.36349, 34.95801], [-110.3604, 34.95751], [-110.35918, 34.95733], [-110.35828, 34.95718], [-110.35719, 34.95701], [-110.35146, 34.9561], [-110.35072, 34.95598], [-110.34924, 34.95574], [-110.34832, 34.95559], [-110.34319, 34.95478], [-110.34254, 34.95468], [-110.342, 34.95459], [-110.34143, 34.9545], [-110.34101, 34.95445], [-110.3406, 34.9544], [-110.33992, 34.95434], [-110.3395, 34.9543], [-110.33859, 34.95427], [-110.33795, 34.95426], [-110.33285, 34.95426], [-110.33141, 34.95426], [-110.33012, 34.95427], [-110.32847, 34.95426], [-110.32767, 34.9543], [-110.32688, 34.95435], [-110.32591, 34.95445], [-110.32542, 34.95453], [-110.32394, 34.9548], [-110.3226, 34.95505], [-110.32167, 34.9552], [-110.32102, 34.95526], [-110.32021, 34.95529], [-110.31965, 34.95527], [-110.31872, 34.95519], [-110.31768, 34.95502], [-110.31653, 34.95475], [-110.31577, 34.9545], [-110.31335, 34.95352], [-110.30882, 34.95164], [-110.30565, 34.95028], [-110.29602, 34.94632], [-110.29529, 34.94601], [-110.29157, 34.94448], [-110.28841, 34.94318], [-110.2869, 34.94254], [-110.28485, 34.94169], [-110.28265, 34.94077], [-110.28182, 34.94037], [-110.28109, 34.93995], [-110.28024, 34.93936], [-110.2796, 34.93885], [-110.2792, 34.93849], [-110.27774, 34.93696], [-110.27591, 34.9347], [-110.27487, 34.93348], [-110.2739, 34.93234], [-110.2734, 34.93182], [-110.27281, 34.93129], [-110.27218, 34.93079], [-110.27131, 34.93017], [-110.26966, 34.92902], [-110.26679, 34.92702], [-110.26355, 34.92478], [-110.25874, 34.92142], [-110.25692, 34.92014], [-110.25592, 34.91944], [-110.25445, 34.91842], [-110.25294, 34.91744], [-110.25117, 34.91632], [-110.24934, 34.91528], [-110.24826, 34.91469], [-110.24715, 34.91411], [-110.24541, 34.91327], [-110.24464, 34.91291], [-110.2437, 34.91252], [-110.24295, 34.91223], [-110.24221, 34.91194], [-110.24065, 34.9114], [-110.23964, 34.91109], [-110.23875, 34.91083], [-110.23794, 34.91062], [-110.23708, 34.9104], [-110.23615, 34.9102], [-110.23537, 34.91004], [-110.23434, 34.90986], [-110.2334, 34.90971], [-110.23134, 34.90945], [-110.22832, 34.90909], [-110.21844, 34.90792], [-110.21718, 34.90776], [-110.21464, 34.90745], [-110.21262, 34.90724], [-110.20693, 34.90656], [-110.20119, 34.90588], [-110.19914, 34.90564], [-110.19371, 34.905], [-110.1929, 34.90492], [-110.19229, 34.90488], [-110.19141, 34.90486], [-110.19052, 34.90489], [-110.18949, 34.90497], [-110.18887, 34.90505], [-110.18832, 34.90514], [-110.18731, 34.90534], [-110.18598, 34.9057], [-110.18548, 34.90587], [-110.18488, 34.90609], [-110.18287, 34.9069], [-110.1795, 34.90826], [-110.17853, 34.90864], [-110.17785, 34.9089], [-110.17715, 34.90915], [-110.17598, 34.90952], [-110.17499, 34.90977], [-110.17428, 34.90995], [-110.17355, 34.91011], [-110.17259, 34.91028], [-110.1715, 34.91045], [-110.17047, 34.91057], [-110.16927, 34.91069], [-110.16881, 34.91073], [-110.16554, 34.91104], [-110.16161, 34.91146], [-110.15959, 34.91178], [-110.15828, 34.91204], [-110.15731, 34.91226], [-110.15669, 34.91241], [-110.15421, 34.91311], [-110.15305, 34.91349], [-110.15169, 34.91399], [-110.15054, 34.91446], [-110.14906, 34.91511], [-110.14835, 34.91544], [-110.14636, 34.91649], [-110.14547, 34.91701], [-110.14415, 34.91783], [-110.14347, 34.91829], [-110.14195, 34.91937], [-110.14046, 34.92054], [-110.13934, 34.92155], [-110.13847, 34.92238], [-110.13731, 34.92357], [-110.13558, 34.92564], [-110.13441, 34.92725], [-110.13353, 34.92862], [-110.13277, 34.92995], [-110.1319, 34.93173], [-110.13149, 34.93269], [-110.13092, 34.93425], [-110.13048, 34.93557], [-110.13015, 34.93643], [-110.12979, 34.93728], [-110.1294, 34.93805], [-110.12869, 34.93928], [-110.12812, 34.94017], [-110.12739, 34.94116], [-110.12669, 34.942], [-110.12567, 34.94308], [-110.12471, 34.94399], [-110.12385, 34.94474], [-110.12225, 34.9461], [-110.12141, 34.94684], [-110.11719, 34.9505], [-110.11515, 34.95227], [-110.11353, 34.95367], [-110.11118, 34.9557], [-110.10762, 34.95879], [-110.10365, 34.96226], [-110.10284, 34.96295], [-110.10019, 34.9652], [-110.09883, 34.96627], [-110.09721, 34.96747], [-110.09581, 34.96841], [-110.09405, 34.96952], [-110.09143, 34.97101], [-110.09002, 34.97174], [-110.08691, 34.97318], [-110.08653, 34.97333], [-110.08457, 34.97412], [-110.08183, 34.97508], [-110.08067, 34.97543], [-110.08001, 34.97563], [-110.07899, 34.97594], [-110.07776, 34.97625], [-110.07579, 34.97672], [-110.074, 34.97708], [-110.06692, 34.97834], [-110.06326, 34.979], [-110.05988, 34.97959], [-110.05748, 34.98002], [-110.05253, 34.98088], [-110.05158, 34.98106], [-110.03977, 34.98317], [-110.03245, 34.98443], [-110.0247, 34.98581], [-110.00232, 34.98977], [-110.00011, 34.99016], [-109.99821, 34.99045], [-109.99715, 34.99059], [-109.99686, 34.99062], [-109.99528, 34.99079], [-109.99333, 34.99095], [-109.99099, 34.99106], [-109.98921, 34.9911], [-109.98664, 34.99108], [-109.98357, 34.99093], [-109.98301, 34.99091], [-109.97886, 34.99071], [-109.97694, 34.99061], [-109.97472, 34.99055], [-109.97254, 34.99054], [-109.97033, 34.99057], [-109.96798, 34.99068], [-109.96651, 34.99077], [-109.95626, 34.99174], [-109.95003, 34.99234], [-109.94862, 34.99248], [-109.943, 34.99306], [-109.94173, 34.99321], [-109.93848, 34.99365], [-109.93625, 34.99399], [-109.93302, 34.99455], [-109.929, 34.99528], [-109.92303, 34.99635], [-109.9154, 34.99772], [-109.91267, 34.99821], [-109.91251, 34.99824], [-109.90907, 34.99884], [-109.9072, 34.99917], [-109.90466, 34.99963], [-109.90142, 35.00021], [-109.9007, 35.00035], [-109.90056, 35.00037], [-109.89746, 35.00093], [-109.89415, 35.00157], [-109.89122, 35.00218], [-109.88785, 35.003], [-109.88214, 35.00467], [-109.88015, 35.00532], [-109.87643, 35.00668], [-109.8741, 35.00759], [-109.87167, 35.00863], [-109.86711, 35.01077], [-109.86514, 35.01179], [-109.86305, 35.01293], [-109.86172, 35.0137], [-109.85801, 35.0159], [-109.85072, 35.02032], [-109.84873, 35.02151], [-109.84726, 35.02235], [-109.84499, 35.02362], [-109.84276, 35.02493], [-109.82047, 35.0377], [-109.80089, 35.04892], [-109.78724, 35.05673], [-109.78367, 35.05878], [-109.78262, 35.05937], [-109.78128, 35.06015], [-109.77957, 35.0611], [-109.77798, 35.06194], [-109.77648, 35.06269], [-109.77567, 35.06307], [-109.77484, 35.06344], [-109.77289, 35.06432], [-109.77109, 35.06508], [-109.76867, 35.06601], [-109.76604, 35.06692], [-109.76278, 35.06793], [-109.75911, 35.06902], [-109.7553, 35.07015], [-109.75167, 35.07122], [-109.74888, 35.07204], [-109.74486, 35.07324], [-109.74124, 35.0743], [-109.73894, 35.07497], [-109.73726, 35.07548], [-109.73591, 35.07589], [-109.73178, 35.0771], [-109.72989, 35.07767], [-109.72758, 35.07834], [-109.72547, 35.07897], [-109.72337, 35.07958], [-109.71954, 35.08072], [-109.71576, 35.08182], [-109.71385, 35.08241], [-109.71173, 35.08303], [-109.7085, 35.08399], [-109.70784, 35.08418], [-109.70688, 35.08446], [-109.70637, 35.08462], [-109.70298, 35.08561], [-109.68473, 35.09099], [-109.6775, 35.0931], [-109.67378, 35.09412], [-109.67051, 35.09487], [-109.66876, 35.09523], [-109.6668, 35.09557], [-109.65361, 35.0975], [-109.64723, 35.09842], [-109.64654, 35.09854], [-109.64571, 35.09864], [-109.64511, 35.09872], [-109.64446, 35.09883], [-109.64219, 35.09916], [-109.64058, 35.0994], [-109.63716, 35.09986], [-109.63654, 35.09995], [-109.63123, 35.10072], [-109.62999, 35.10089], [-109.62807, 35.10118], [-109.62556, 35.10157], [-109.6203, 35.10235], [-109.61772, 35.10278], [-109.61595, 35.10311], [-109.61201, 35.104], [-109.60803, 35.1051], [-109.60468, 35.10619], [-109.60132, 35.10735], [-109.59678, 35.10892], [-109.5923, 35.11047], [-109.58946, 35.11144], [-109.5889, 35.11164], [-109.57586, 35.11616], [-109.57122, 35.11776], [-109.56798, 35.11887], [-109.56406, 35.12023], [-109.562, 35.12094], [-109.55734, 35.12254], [-109.55105, 35.12475], [-109.54909, 35.12557], [-109.54822, 35.12592], [-109.54727, 35.12632], [-109.54501, 35.12734], [-109.54352, 35.12803], [-109.54236, 35.12859], [-109.54184, 35.12886], [-109.54096, 35.1293], [-109.53721, 35.13129], [-109.53656, 35.13166], [-109.53539, 35.13236], [-109.5336, 35.13345], [-109.53132, 35.1349], [-109.52943, 35.13614], [-109.52786, 35.13716], [-109.52589, 35.13844], [-109.5245, 35.13934], [-109.52101, 35.14162], [-109.51718, 35.14412], [-109.51113, 35.14804], [-109.50897, 35.14945], [-109.50696, 35.15076], [-109.5067, 35.15093], [-109.50455, 35.15233], [-109.50288, 35.15342], [-109.50137, 35.1544], [-109.49961, 35.15554], [-109.49763, 35.15683], [-109.49585, 35.15798], [-109.49411, 35.15912], [-109.49056, 35.16142], [-109.48904, 35.16242], [-109.48818, 35.16298], [-109.48677, 35.1639], [-109.48564, 35.16463], [-109.48386, 35.16578], [-109.48266, 35.16656], [-109.48094, 35.16768], [-109.479, 35.16893], [-109.47666, 35.17046], [-109.47498, 35.17155], [-109.47311, 35.17277], [-109.47115, 35.17404], [-109.46933, 35.17523], [-109.46436, 35.17845], [-109.46264, 35.17953], [-109.46092, 35.18055], [-109.45922, 35.18151], [-109.45827, 35.18202], [-109.45735, 35.1825], [-109.45536, 35.18348], [-109.45356, 35.18431], [-109.45162, 35.18515], [-109.44971, 35.18592], [-109.4477, 35.18667], [-109.44544, 35.18746], [-109.44352, 35.18806], [-109.44178, 35.18859], [-109.44087, 35.18886], [-109.44005, 35.18909], [-109.43897, 35.1894], [-109.43804, 35.18965], [-109.43629, 35.19011], [-109.43557, 35.19028], [-109.43494, 35.19045], [-109.43301, 35.19091], [-109.43103, 35.19135], [-109.42682, 35.19224], [-109.42562, 35.19249], [-109.42143, 35.19338], [-109.38373, 35.20131], [-109.37898, 35.20231], [-109.37498, 35.20315], [-109.36787, 35.20464], [-109.36261, 35.20575], [-109.35939, 35.20642], [-109.35429, 35.20755], [-109.35308, 35.20788], [-109.34936, 35.20892], [-109.34629, 35.20993], [-109.34385, 35.21078], [-109.34308, 35.21108], [-109.34013, 35.21229], [-109.33805, 35.21321], [-109.33689, 35.21376], [-109.33528, 35.21455], [-109.33385, 35.21529], [-109.33213, 35.21618], [-109.33063, 35.21702], [-109.32902, 35.21799], [-109.32794, 35.21866], [-109.3277, 35.2188], [-109.32491, 35.22066], [-109.32201, 35.22276], [-109.31952, 35.22474], [-109.31885, 35.22527], [-109.31835, 35.22566], [-109.31225, 35.23045], [-109.30682, 35.23469], [-109.30541, 35.23583], [-109.30487, 35.23627], [-109.29878, 35.24105], [-109.29853, 35.24124], [-109.29169, 35.24659], [-109.2914, 35.24682], [-109.28929, 35.24846], [-109.28731, 35.25006], [-109.28064, 35.25587], [-109.28011, 35.25638], [-109.27888, 35.25742], [-109.27813, 35.25804], [-109.27705, 35.25898], [-109.27355, 35.26203], [-109.27103, 35.26417], [-109.2597, 35.27414], [-109.25871, 35.275], [-109.25768, 35.27578], [-109.25569, 35.27685], [-109.25418, 35.27752], [-109.25276, 35.278], [-109.25065, 35.27851], [-109.24612, 35.27975], [-109.24347, 35.28046], [-109.24, 35.28142], [-109.23974, 35.2815], [-109.23772, 35.282], [-109.23595, 35.28233], [-109.23499, 35.28244], [-109.2341, 35.28256], [-109.23305, 35.28264], [-109.23123, 35.28271], [-109.21628, 35.28271], [-109.21562, 35.28271], [-109.21323, 35.2827], [-109.21231, 35.28268], [-109.21176, 35.28266], [-109.21084, 35.28263], [-109.20978, 35.28259], [-109.20893, 35.28255], [-109.20801, 35.28251], [-109.20725, 35.28245], [-109.20642, 35.2824], [-109.20475, 35.28227], [-109.20027, 35.28183], [-109.19643, 35.28142], [-109.1943, 35.2812], [-109.19133, 35.28092], [-109.1865, 35.28039], [-109.18299, 35.28006], [-109.18217, 35.27999], [-109.18127, 35.27992], [-109.18046, 35.27991], [-109.17967, 35.27996], [-109.17873, 35.28005], [-109.17788, 35.28019], [-109.17717, 35.28034], [-109.17642, 35.28055], [-109.1757, 35.28079], [-109.175, 35.28107], [-109.17424, 35.28138], [-109.16744, 35.28429], [-109.1671, 35.28444], [-109.16237, 35.28641], [-109.16155, 35.28676], [-109.15785, 35.28833], [-109.15402, 35.28995], [-109.15346, 35.29018], [-109.15046, 35.29144], [-109.14599, 35.29336], [-109.14025, 35.29587], [-109.13675, 35.29739], [-109.1323, 35.29932], [-109.132, 35.29944], [-109.12771, 35.30132], [-109.12099, 35.30423], [-109.12072, 35.30433], [-109.11753, 35.30574], [-109.11024, 35.30889], [-109.10697, 35.31034], [-109.10664, 35.31049], [-109.10384, 35.3117], [-109.09948, 35.31374], [-109.09641, 35.31539], [-109.09475, 35.3163], [-109.09305, 35.3173], [-109.09152, 35.31824], [-109.08959, 35.31949], [-109.08936, 35.31964], [-109.08829, 35.32036], [-109.08698, 35.32127], [-109.08495, 35.32274], [-109.08088, 35.32597], [-109.07902, 35.32758], [-109.07878, 35.32779], [-109.07677, 35.32972], [-109.07315, 35.3331], [-109.07148, 35.3347], [-109.07068, 35.33545], [-109.06818, 35.33781], [-109.06797, 35.33804], [-109.06545, 35.34057], [-109.06421, 35.34191], [-109.06349, 35.34276], [-109.06203, 35.34466], [-109.06075, 35.34647], [-109.05791, 35.35067], [-109.05676, 35.35235], [-109.05592, 35.35363], [-109.05538, 35.35436], [-109.05468, 35.35511], [-109.05426, 35.35554], [-109.05383, 35.35595], [-109.05339, 35.35634], [-109.05306, 35.35662], [-109.05231, 35.35721], [-109.05186, 35.35753], [-109.05139, 35.35786], [-109.05041, 35.35859], [-109.04959, 35.35928], [-109.04932, 35.35953], [-109.04855, 35.36028], [-109.04765, 35.36132], [-109.04679, 35.36245], [-109.0463, 35.3631], [-109.0458, 35.3639], [-109.0454, 35.3647], [-109.04507, 35.36549], [-109.04478, 35.36617], [-109.04433, 35.36723], [-109.04416, 35.36759], [-109.04396, 35.36792], [-109.04371, 35.36829], [-109.04349, 35.36858], [-109.04315, 35.369], [-109.04266, 35.3695], [-109.04223, 35.3699], [-109.04189, 35.37017], [-109.04147, 35.37047], [-109.04112, 35.37069], [-109.04052, 35.37102], [-109.04003, 35.37125], [-109.03857, 35.37196], [-109.03526, 35.37353], [-109.03425, 35.37401], [-109.03384, 35.37419], [-109.02805, 35.37689], [-109.02496, 35.37834], [-109.02404, 35.37875], [-109.01931, 35.381], [-109.01821, 35.38151], [-109.01722, 35.38204], [-109.01618, 35.38269], [-109.0156, 35.38312], [-109.01495, 35.38362], [-109.01428, 35.38419], [-109.01357, 35.38484], [-109.01296, 35.38551], [-109.01234, 35.38625], [-109.01189, 35.38681], [-109.01148, 35.38742], [-109.01063, 35.38883], [-109.00937, 35.391], [-109.00768, 35.39388], [-109.00669, 35.39553], [-109.0059, 35.39685], [-109.00524, 35.39802], [-109.00321, 35.40148], [-109.00226, 35.40308], [-109.0021, 35.40336], [-109.00122, 35.40485], [-108.99975, 35.40732], [-108.99863, 35.40914], [-108.99753, 35.41067], [-108.99703, 35.41133], [-108.9965, 35.41197], [-108.99586, 35.41271], [-108.9951, 35.41361], [-108.99444, 35.41438], [-108.99422, 35.41463], [-108.99351, 35.41546], [-108.99301, 35.41603], [-108.99135, 35.41795], [-108.99, 35.41954], [-108.98915, 35.42048], [-108.98876, 35.42087], [-108.98821, 35.42136], [-108.98777, 35.42174], [-108.98703, 35.42234], [-108.98633, 35.42282], [-108.98294, 35.42512], [-108.9769, 35.42921], [-108.97195, 35.43256], [-108.97006, 35.43384], [-108.96618, 35.43644], [-108.96438, 35.43769], [-108.96347, 35.43829], [-108.96271, 35.43881], [-108.96215, 35.43919], [-108.96156, 35.4396], [-108.96083, 35.44016], [-108.96014, 35.44074], [-108.95953, 35.44131], [-108.95879, 35.4421], [-108.95835, 35.44262], [-108.95742, 35.44384], [-108.95625, 35.44531], [-108.9558, 35.4459], [-108.95539, 35.44649], [-108.95499, 35.44695], [-108.95397, 35.44826], [-108.95233, 35.45038], [-108.95184, 35.45102], [-108.95122, 35.45183], [-108.95043, 35.45283], [-108.94926, 35.45431], [-108.94871, 35.45497], [-108.948, 35.45577], [-108.94746, 35.45633], [-108.94577, 35.45802], [-108.94462, 35.45913], [-108.94287, 35.46079], [-108.94206, 35.46156], [-108.93963, 35.46391], [-108.93863, 35.46483], [-108.93759, 35.46574], [-108.93663, 35.46652], [-108.93569, 35.46723], [-108.93461, 35.468], [-108.93295, 35.46905], [-108.93166, 35.46979], [-108.93019, 35.47063], [-108.92883, 35.4714], [-108.9278, 35.472], [-108.92599, 35.47302], [-108.9257, 35.47319], [-108.92182, 35.47541], [-108.91936, 35.47681], [-108.91293, 35.48048], [-108.91241, 35.48077], [-108.91128, 35.48142], [-108.91028, 35.48197], [-108.90963, 35.48232], [-108.90806, 35.48326], [-108.9065, 35.48407], [-108.90504, 35.4848], [-108.90381, 35.48535], [-108.90289, 35.48572], [-108.9015, 35.48625], [-108.90021, 35.48668], [-108.89887, 35.4871], [-108.89733, 35.48754], [-108.89518, 35.48807], [-108.894, 35.48837], [-108.89263, 35.48871], [-108.89218, 35.48883], [-108.89115, 35.48909], [-108.88733, 35.49005], [-108.88317, 35.49108], [-108.88166, 35.49146], [-108.8774, 35.49252], [-108.87219, 35.49383], [-108.86687, 35.49515], [-108.86579, 35.49542], [-108.86472, 35.4957], [-108.86333, 35.49604], [-108.86275, 35.49618], [-108.86209, 35.49633], [-108.86087, 35.49657], [-108.85957, 35.49676], [-108.85888, 35.49684], [-108.85833, 35.4969], [-108.85681, 35.49701], [-108.85518, 35.49711], [-108.85392, 35.49719], [-108.85268, 35.49729], [-108.85169, 35.4974], [-108.85072, 35.49752], [-108.84952, 35.49771], [-108.84781, 35.49801], [-108.84735, 35.4981], [-108.84626, 35.49829], [-108.84412, 35.49867], [-108.84219, 35.49901], [-108.84055, 35.49928], [-108.83928, 35.49952], [-108.8385, 35.49969], [-108.83773, 35.49991], [-108.83689, 35.50021], [-108.8363, 35.50048], [-108.83556, 35.5009], [-108.83492, 35.50134], [-108.83437, 35.50176], [-108.83397, 35.50211], [-108.83328, 35.5028], [-108.83271, 35.50341], [-108.83205, 35.50412], [-108.83139, 35.5048], [-108.83122, 35.50497], [-108.83073, 35.50549], [-108.83037, 35.50588], [-108.82774, 35.50868], [-108.82732, 35.50913], [-108.82696, 35.50953], [-108.82673, 35.50977], [-108.82654, 35.50996], [-108.82639, 35.51011], [-108.82623, 35.51026], [-108.82599, 35.51046], [-108.82577, 35.51063], [-108.82553, 35.51079], [-108.82522, 35.51098], [-108.82488, 35.51118], [-108.82461, 35.51133], [-108.82423, 35.51152], [-108.8239, 35.51167], [-108.82348, 35.51185], [-108.82308, 35.51199], [-108.82257, 35.51215], [-108.82211, 35.51227], [-108.82167, 35.51237], [-108.82128, 35.51243], [-108.82105, 35.51247], [-108.82085, 35.51249], [-108.8205, 35.51253], [-108.82008, 35.51255], [-108.81947, 35.51258], [-108.81742, 35.51266], [-108.8136, 35.51282], [-108.81314, 35.51283], [-108.80993, 35.51297], [-108.80924, 35.51303], [-108.80854, 35.51311], [-108.80801, 35.51319], [-108.80737, 35.5133], [-108.80673, 35.51342], [-108.80626, 35.51352], [-108.8054, 35.51373], [-108.80468, 35.51394], [-108.80408, 35.51414], [-108.8035, 35.51434], [-108.80292, 35.51455], [-108.80232, 35.51481], [-108.80173, 35.51506], [-108.80071, 35.51558], [-108.79945, 35.51619], [-108.79834, 35.51672], [-108.79786, 35.51698], [-108.79747, 35.51718], [-108.79706, 35.51739], [-108.79669, 35.51755], [-108.79618, 35.51774], [-108.79526, 35.51803], [-108.79326, 35.51863], [-108.78744, 35.52035], [-108.78302, 35.52166], [-108.77961, 35.52266], [-108.77918, 35.52278], [-108.77241, 35.52481], [-108.76816, 35.52607], [-108.76614, 35.52665], [-108.76468, 35.52706], [-108.76305, 35.52757], [-108.76202, 35.52784], [-108.76074, 35.5281], [-108.76034, 35.52818], [-108.7595, 35.52829], [-108.75832, 35.52842], [-108.75773, 35.52845], [-108.75706, 35.52848], [-108.75588, 35.52848], [-108.7543, 35.52849], [-108.7535, 35.52849], [-108.75312, 35.52848], [-108.75237, 35.52849], [-108.75182, 35.52849], [-108.75138, 35.52852], [-108.75097, 35.52856], [-108.75052, 35.52862], [-108.75003, 35.52871], [-108.74952, 35.52882], [-108.74909, 35.52894], [-108.74854, 35.5291], [-108.74709, 35.52956], [-108.7457, 35.53], [-108.74535, 35.53011], [-108.74414, 35.53046], [-108.7438, 35.53055], [-108.74327, 35.53067], [-108.74265, 35.53078], [-108.74189, 35.53087], [-108.74074, 35.53096], [-108.74037, 35.531], [-108.73995, 35.53106], [-108.73954, 35.53113], [-108.7391, 35.53122], [-108.73865, 35.53133], [-108.73822, 35.53146], [-108.7351, 35.53247], [-108.73478, 35.53256], [-108.73428, 35.5327], [-108.73371, 35.53284], [-108.73324, 35.53292], [-108.73273, 35.533], [-108.73216, 35.53307], [-108.73176, 35.53311], [-108.73072, 35.53316], [-108.72425, 35.53316], [-108.72174, 35.53316], [-108.72093, 35.53316], [-108.72033, 35.53315], [-108.71965, 35.53312], [-108.71907, 35.53308], [-108.7183, 35.53301], [-108.71783, 35.53294], [-108.71687, 35.5328], [-108.71578, 35.53264], [-108.7139, 35.53236], [-108.71295, 35.53224], [-108.71232, 35.53218], [-108.71152, 35.53213], [-108.71081, 35.5321], [-108.71027, 35.53211], [-108.70948, 35.53213], [-108.70884, 35.53216], [-108.7066, 35.53235], [-108.69918, 35.53292], [-108.6906, 35.53363], [-108.68244, 35.53432], [-108.68182, 35.53436], [-108.68138, 35.53439], [-108.68083, 35.5344], [-108.68019, 35.53437], [-108.67955, 35.53431], [-108.67889, 35.53421], [-108.67834, 35.53409], [-108.67781, 35.53396], [-108.67736, 35.53382], [-108.67686, 35.53364], [-108.67636, 35.53343], [-108.67594, 35.53323], [-108.6755, 35.53299], [-108.67496, 35.53268], [-108.67398, 35.53203], [-108.67179, 35.53068], [-108.67155, 35.53053], [-108.67051, 35.52988], [-108.67013, 35.52966], [-108.66977, 35.52947], [-108.66942, 35.52932], [-108.66905, 35.52918], [-108.66861, 35.52906], [-108.66811, 35.52892], [-108.6676, 35.52884], [-108.66717, 35.52879], [-108.66713, 35.52878], [-108.66655, 35.52876], [-108.66607, 35.52877], [-108.66561, 35.52882], [-108.66512, 35.52888], [-108.66469, 35.52898], [-108.66412, 35.52912], [-108.6629, 35.52946], [-108.65955, 35.53043], [-108.65516, 35.53162], [-108.65468, 35.53173], [-108.65405, 35.53186], [-108.65345, 35.53196], [-108.65277, 35.53207], [-108.6519, 35.53216], [-108.65087, 35.53225], [-108.64994, 35.53228], [-108.64906, 35.53227], [-108.64834, 35.53225], [-108.64533, 35.53209], [-108.63577, 35.53148], [-108.62594, 35.5309], [-108.61547, 35.53025], [-108.60494, 35.52963], [-108.60438, 35.5296], [-108.60262, 35.52949], [-108.60191, 35.52943], [-108.60133, 35.52937], [-108.60067, 35.52927], [-108.59997, 35.52916], [-108.59938, 35.52904], [-108.59878, 35.52891], [-108.59817, 35.52876], [-108.5974, 35.52852], [-108.59635, 35.52822], [-108.59442, 35.52763], [-108.5938, 35.52744], [-108.59351, 35.52736], [-108.59304, 35.52721], [-108.59165, 35.5268], [-108.58407, 35.5245], [-108.5837, 35.52438], [-108.58208, 35.52389], [-108.57285, 35.52111], [-108.57263, 35.52105], [-108.56217, 35.51787], [-108.55258, 35.51496], [-108.54779, 35.51352], [-108.54645, 35.5131], [-108.54532, 35.51273], [-108.54427, 35.51236], [-108.54108, 35.51114], [-108.53605, 35.50923], [-108.5343, 35.50857], [-108.52463, 35.50488], [-108.51758, 35.5022], [-108.5168, 35.50192], [-108.51416, 35.50091], [-108.50381, 35.49701], [-108.49674, 35.49432], [-108.49562, 35.49392], [-108.49472, 35.49358], [-108.49395, 35.49333], [-108.49287, 35.493], [-108.49173, 35.49268], [-108.4909, 35.49246], [-108.49024, 35.49232], [-108.48823, 35.49186], [-108.48609, 35.4914], [-108.48437, 35.49098], [-108.48126, 35.49028], [-108.47259, 35.4883], [-108.462, 35.48593], [-108.45087, 35.4834], [-108.44108, 35.48119], [-108.43656, 35.48017], [-108.43373, 35.47953], [-108.42935, 35.47855], [-108.42869, 35.47839], [-108.42778, 35.47815], [-108.42707, 35.47795], [-108.42634, 35.4777], [-108.42572, 35.47748], [-108.42506, 35.4772], [-108.42455, 35.47696], [-108.4241, 35.47675], [-108.42348, 35.4764], [-108.42288, 35.47608], [-108.42233, 35.47576], [-108.42176, 35.47537], [-108.42124, 35.47499], [-108.42075, 35.47464], [-108.41507, 35.4703], [-108.41065, 35.46693], [-108.41, 35.46647], [-108.40911, 35.4659], [-108.40855, 35.46558], [-108.40798, 35.46528], [-108.40731, 35.46494], [-108.40653, 35.46457], [-108.40557, 35.46413], [-108.39959, 35.46135], [-108.38999, 35.45688], [-108.38854, 35.45625], [-108.38753, 35.45582], [-108.3836, 35.45423], [-108.37978, 35.4527], [-108.36942, 35.44854], [-108.3653, 35.44691], [-108.36273, 35.44586], [-108.36018, 35.44475], [-108.35921, 35.44431], [-108.35096, 35.44072], [-108.34095, 35.43634], [-108.33119, 35.43208], [-108.32554, 35.42961], [-108.32411, 35.42887], [-108.32304, 35.4283], [-108.32229, 35.42795], [-108.32105, 35.42739], [-108.31565, 35.42502], [-108.31261, 35.42368], [-108.30943, 35.4223], [-108.30758, 35.42149], [-108.29764, 35.41716], [-108.28747, 35.41271], [-108.27705, 35.40815], [-108.27568, 35.40757], [-108.27405, 35.40695], [-108.27246, 35.40641], [-108.27082, 35.40593], [-108.26955, 35.4056], [-108.26835, 35.40532], [-108.26716, 35.40509], [-108.26566, 35.40477], [-108.25628, 35.40287], [-108.24534, 35.40061], [-108.23439, 35.39836], [-108.23015, 35.39749], [-108.22458, 35.39634], [-108.22418, 35.39626], [-108.22013, 35.39543], [-108.2138, 35.39414], [-108.20829, 35.39302], [-108.20787, 35.39292], [-108.19806, 35.39089], [-108.19387, 35.39002], [-108.19272, 35.38978], [-108.19175, 35.38959], [-108.19093, 35.38943], [-108.19031, 35.38934], [-108.18947, 35.38922], [-108.18879, 35.38916], [-108.18813, 35.38912], [-108.18723, 35.38908], [-108.17654, 35.38867], [-108.16599, 35.38824], [-108.16525, 35.38821], [-108.16457, 35.38816], [-108.16358, 35.38808], [-108.16263, 35.38798], [-108.16146, 35.38782], [-108.15981, 35.38762], [-108.15939, 35.38757], [-108.15616, 35.3871], [-108.14601, 35.38561], [-108.1458, 35.38558], [-108.13101, 35.38347], [-108.13021, 35.38334], [-108.12958, 35.38322], [-108.12902, 35.38309], [-108.12827, 35.38291], [-108.12747, 35.38268], [-108.12675, 35.38243], [-108.1196, 35.37999], [-108.1195, 35.37995], [-108.11677, 35.379], [-108.11511, 35.37844], [-108.11403, 35.3781], [-108.11313, 35.37783], [-108.11216, 35.37756], [-108.11143, 35.3774], [-108.1099, 35.37706], [-108.10938, 35.37698], [-108.10744, 35.37658], [-108.10084, 35.37534], [-108.08041, 35.37153], [-108.08002, 35.37144], [-108.0712, 35.36976], [-108.07006, 35.36957], [-108.06891, 35.36934], [-108.06818, 35.36919], [-108.06758, 35.36906], [-108.06689, 35.36888], [-108.06619, 35.36866], [-108.06537, 35.36838], [-108.06442, 35.36802], [-108.06349, 35.36765], [-108.06024, 35.36633], [-108.0559, 35.36458], [-108.05252, 35.36322], [-108.04839, 35.36155], [-108.04531, 35.36031], [-108.03468, 35.35601], [-108.01568, 35.34831], [-108.01497, 35.34799], [-108.0145, 35.34778], [-108.01383, 35.34743], [-108.01317, 35.34705], [-108.01261, 35.34672], [-108.01205, 35.34636], [-108.01147, 35.34594], [-108.01091, 35.34551], [-108.01018, 35.34488], [-108.00954, 35.34429], [-108.00908, 35.34381], [-108.00842, 35.34303], [-108.00775, 35.34216], [-108.00719, 35.34128], [-108.00674, 35.34048], [-108.00173, 35.33158], [-107.99913, 35.32701], [-107.99669, 35.32264], [-107.99402, 35.31791], [-107.99295, 35.31603], [-107.99278, 35.31568], [-107.99262, 35.31533], [-107.99246, 35.31497], [-107.99229, 35.31452], [-107.99217, 35.31414], [-107.99206, 35.31374], [-107.99192, 35.31321], [-107.99179, 35.31253], [-107.99001, 35.30162], [-107.98982, 35.30048], [-107.98872, 35.29531], [-107.9877, 35.29068], [-107.98666, 35.28598], [-107.98572, 35.2816], [-107.9849, 35.27779], [-107.98478, 35.27738], [-107.98466, 35.27701], [-107.98453, 35.27659], [-107.98439, 35.27617], [-107.98424, 35.27581], [-107.98403, 35.27533], [-107.98379, 35.27481], [-107.98351, 35.27425], [-107.9831, 35.27351], [-107.98069, 35.26901], [-107.97859, 35.26504], [-107.97822, 35.26441], [-107.97803, 35.26416], [-107.97728, 35.26301], [-107.97682, 35.2624], [-107.97602, 35.26136], [-107.97565, 35.26092], [-107.97522, 35.26041], [-107.97462, 35.25973], [-107.97408, 35.25918], [-107.97324, 35.25834], [-107.97166, 35.25684], [-107.96669, 35.25228], [-107.96169, 35.24764], [-107.95812, 35.24376], [-107.95766, 35.24328], [-107.91245, 35.1957], [-107.90801, 35.19102], [-107.90352, 35.18633], [-107.90336, 35.18616], [-107.90299, 35.18573], [-107.90264, 35.18523], [-107.90237, 35.18482], [-107.90217, 35.18448], [-107.90197, 35.18409], [-107.9018, 35.18371], [-107.90162, 35.18326], [-107.90146, 35.1826], [-107.90135, 35.18206], [-107.90111, 35.18021], [-107.90093, 35.17855], [-107.90027, 35.17259], [-107.90018, 35.17211], [-107.90012, 35.17167], [-107.90001, 35.17118], [-107.89988, 35.17077], [-107.89973, 35.17031], [-107.8995, 35.16966], [-107.89926, 35.16911], [-107.89888, 35.16842], [-107.89858, 35.16796], [-107.89826, 35.16751], [-107.898, 35.16717], [-107.89768, 35.16676], [-107.89731, 35.16633], [-107.89682, 35.16585], [-107.8963, 35.16537], [-107.8959, 35.16501], [-107.89549, 35.16469], [-107.89494, 35.16433], [-107.89443, 35.16398], [-107.89371, 35.16355], [-107.89308, 35.16322], [-107.89234, 35.16286], [-107.88612, 35.15974], [-107.87945, 35.15639], [-107.87827, 35.1558], [-107.8762, 35.15478], [-107.87555, 35.15446], [-107.87467, 35.15401], [-107.87351, 35.15344], [-107.87161, 35.15245], [-107.87039, 35.15176], [-107.86722, 35.1499], [-107.86544, 35.14884], [-107.85941, 35.14579], [-107.85623, 35.14422], [-107.85467, 35.14338], [-107.85355, 35.14269], [-107.8523, 35.14176], [-107.85106, 35.14068], [-107.84877, 35.1386], [-107.8466, 35.13664], [-107.84407, 35.13438], [-107.84244, 35.13291], [-107.84152, 35.13207], [-107.84053, 35.1312], [-107.83941, 35.13036], [-107.83475, 35.12726], [-107.82988, 35.12401], [-107.82382, 35.12007], [-107.77473, 35.08777], [-107.7736, 35.08708], [-107.77226, 35.08609], [-107.77022, 35.08454], [-107.76837, 35.08306], [-107.76689, 35.08189], [-107.76607, 35.08123], [-107.76348, 35.07921], [-107.76095, 35.0772], [-107.76024, 35.07664], [-107.75969, 35.07623], [-107.75905, 35.07583], [-107.75844, 35.07549], [-107.75787, 35.07516], [-107.75735, 35.07488], [-107.75679, 35.07461], [-107.75619, 35.07434], [-107.75563, 35.07412], [-107.75529, 35.07398], [-107.75414, 35.0736], [-107.74597, 35.07108], [-107.73652, 35.06819], [-107.73525, 35.0678], [-107.73455, 35.06759], [-107.73404, 35.06747], [-107.73345, 35.06733], [-107.73286, 35.06721], [-107.73224, 35.06709], [-107.73155, 35.06699], [-107.73088, 35.06692], [-107.7299, 35.06683], [-107.72876, 35.06676], [-107.72154, 35.06618], [-107.72066, 35.0661], [-107.71995, 35.06601], [-107.71925, 35.06589], [-107.71857, 35.06575], [-107.70834, 35.06348], [-107.70481, 35.06265], [-107.70343, 35.06236], [-107.70266, 35.06218], [-107.70194, 35.06204], [-107.7014, 35.06195], [-107.7007, 35.06184], [-107.69997, 35.06179], [-107.69922, 35.06176], [-107.69853, 35.06176], [-107.69777, 35.06179], [-107.69696, 35.06185], [-107.69631, 35.06192], [-107.69542, 35.06204], [-107.6946, 35.0622], [-107.69385, 35.06238], [-107.69311, 35.06261], [-107.6925, 35.06283], [-107.6919, 35.06307], [-107.69134, 35.0633], [-107.69069, 35.06361], [-107.68988, 35.06403], [-107.68405, 35.06738], [-107.68285, 35.06805], [-107.68221, 35.06838], [-107.68145, 35.06875], [-107.68072, 35.06909], [-107.67988, 35.06941], [-107.67915, 35.06966], [-107.67847, 35.06987], [-107.67775, 35.07006], [-107.67694, 35.07026], [-107.67562, 35.07053], [-107.67423, 35.07081], [-107.66879, 35.07187], [-107.6631, 35.073], [-107.66175, 35.07328], [-107.65596, 35.07443], [-107.65303, 35.07498], [-107.65179, 35.07521], [-107.65085, 35.0754], [-107.64966, 35.07561], [-107.64825, 35.07582], [-107.64709, 35.07595], [-107.64608, 35.07605], [-107.64478, 35.07615], [-107.64219, 35.07618], [-107.64001, 35.07613], [-107.63449, 35.07603], [-107.62458, 35.07574], [-107.61457, 35.07549], [-107.6045, 35.07522], [-107.59819, 35.07506], [-107.59763, 35.07504], [-107.59718, 35.07502], [-107.59367, 35.07496], [-107.58878, 35.07483], [-107.58485, 35.07472], [-107.57509, 35.07447], [-107.56776, 35.0743], [-107.56632, 35.07426], [-107.56475, 35.07422], [-107.56233, 35.07415], [-107.5603, 35.07411], [-107.55861, 35.07406], [-107.55638, 35.07401], [-107.55586, 35.074], [-107.55318, 35.07393], [-107.55159, 35.07388], [-107.5489, 35.07381], [-107.54132, 35.07361], [-107.54042, 35.0736], [-107.53968, 35.07356], [-107.53895, 35.07349], [-107.53802, 35.07337], [-107.53706, 35.07318], [-107.53628, 35.07298], [-107.53557, 35.07276], [-107.53496, 35.07255], [-107.5343, 35.07228], [-107.53386, 35.07208], [-107.53313, 35.07172], [-107.53263, 35.07146], [-107.53173, 35.07089], [-107.53123, 35.07055], [-107.53089, 35.07028], [-107.53054, 35.07], [-107.53003, 35.0695], [-107.52963, 35.06909], [-107.52912, 35.06853], [-107.52882, 35.0682], [-107.52856, 35.06786], [-107.52826, 35.0674], [-107.52798, 35.06696], [-107.52774, 35.06655], [-107.52751, 35.06606], [-107.52722, 35.06542], [-107.52702, 35.06489], [-107.52648, 35.06365], [-107.52585, 35.06221], [-107.5253, 35.06094], [-107.52498, 35.06019], [-107.52474, 35.05968], [-107.52443, 35.05911], [-107.52396, 35.05842], [-107.52342, 35.05768], [-107.52272, 35.05681], [-107.5218, 35.05584], [-107.52094, 35.05505], [-107.52005, 35.05435], [-107.51886, 35.05353], [-107.51748, 35.05271], [-107.51629, 35.05208], [-107.51142, 35.0495], [-107.50677, 35.04695], [-107.50602, 35.04655], [-107.50427, 35.04563], [-107.50146, 35.04412], [-107.499, 35.04278], [-107.49868, 35.04262], [-107.49536, 35.0408], [-107.49352, 35.03993], [-107.49217, 35.03931], [-107.4911, 35.03887], [-107.49006, 35.03845], [-107.48892, 35.03805], [-107.48759, 35.03765], [-107.48616, 35.03724], [-107.48101, 35.0358], [-107.47734, 35.03475], [-107.4734, 35.03363], [-107.47034, 35.03278], [-107.46338, 35.03083], [-107.45728, 35.02911], [-107.45555, 35.02863], [-107.45424, 35.0283], [-107.45316, 35.02807], [-107.45233, 35.0279], [-107.45138, 35.02772], [-107.45032, 35.02755], [-107.44921, 35.02741], [-107.44818, 35.02731], [-107.4468, 35.02718], [-107.44528, 35.02711], [-107.44404, 35.02706], [-107.436, 35.0269], [-107.42662, 35.02669], [-107.41662, 35.02649], [-107.40586, 35.02627], [-107.40225, 35.02617], [-107.40191, 35.02616], [-107.39906, 35.02611], [-107.39766, 35.02609], [-107.39695, 35.02608], [-107.39622, 35.02612], [-107.39542, 35.02619], [-107.39473, 35.02626], [-107.39404, 35.02636], [-107.39325, 35.02649], [-107.39254, 35.02664], [-107.39188, 35.0268], [-107.3911, 35.02703], [-107.39037, 35.02724], [-107.38977, 35.02745], [-107.38916, 35.02767], [-107.38838, 35.02799], [-107.38768, 35.02833], [-107.38477, 35.02976], [-107.37942, 35.03233], [-107.37379, 35.03514], [-107.37058, 35.0367], [-107.36897, 35.0375], [-107.36807, 35.03794], [-107.36747, 35.03818], [-107.36695, 35.03839], [-107.36634, 35.03857], [-107.36558, 35.03873], [-107.36485, 35.03882], [-107.36414, 35.03891], [-107.36351, 35.03892], [-107.36277, 35.0389], [-107.36215, 35.03886], [-107.36131, 35.03873], [-107.3595, 35.03835], [-107.35775, 35.03799], [-107.35263, 35.03695], [-107.34603, 35.0356], [-107.34401, 35.03518], [-107.34312, 35.03495], [-107.34229, 35.03467], [-107.34145, 35.03425], [-107.34082, 35.03389], [-107.34024, 35.03345], [-107.33969, 35.03293], [-107.33923, 35.0324], [-107.33827, 35.03107], [-107.33785, 35.03048], [-107.33641, 35.02839], [-107.3347, 35.02595], [-107.3332, 35.02383], [-107.3315, 35.02143], [-107.33046, 35.01993], [-107.32984, 35.01904], [-107.32921, 35.01819], [-107.32878, 35.01765], [-107.32825, 35.01704], [-107.32771, 35.0165], [-107.32712, 35.01596], [-107.32617, 35.01519], [-107.32445, 35.01377], [-107.32285, 35.01246], [-107.32158, 35.01141], [-107.31952, 35.00973], [-107.31623, 35.007], [-107.31079, 35.00252], [-107.30699, 34.99932], [-107.30562, 34.99821], [-107.30481, 34.99759], [-107.3042, 34.99716], [-107.30362, 34.99677], [-107.30293, 34.99637], [-107.30212, 34.99598], [-107.30123, 34.99554], [-107.30048, 34.99521], [-107.29966, 34.99491], [-107.29895, 34.99467], [-107.29821, 34.99444], [-107.29752, 34.99426], [-107.29682, 34.9941], [-107.29617, 34.99396], [-107.29552, 34.99386], [-107.29477, 34.99375], [-107.29392, 34.99367], [-107.29318, 34.99361], [-107.29259, 34.99359], [-107.29182, 34.99358], [-107.29072, 34.99357], [-107.286, 34.99352], [-107.2853, 34.99351], [-107.27414, 34.99337], [-107.26348, 34.99323], [-107.25776, 34.99316], [-107.25689, 34.99314], [-107.25254, 34.99307], [-107.24355, 34.99295], [-107.23709, 34.99287], [-107.23589, 34.99284], [-107.23493, 34.9928], [-107.23405, 34.99272], [-107.2332, 34.99263], [-107.23223, 34.99253], [-107.23104, 34.99237], [-107.22995, 34.99221], [-107.22307, 34.99114], [-107.21259, 34.98951], [-107.20252, 34.98798], [-107.19265, 34.98647], [-107.18241, 34.98489], [-107.17603, 34.9839], [-107.17419, 34.98363], [-107.17109, 34.98311], [-107.16591, 34.98234], [-107.15863, 34.98122], [-107.14819, 34.9796], [-107.14021, 34.97835], [-107.13863, 34.97812], [-107.13763, 34.97795], [-107.13686, 34.97788], [-107.13615, 34.97779], [-107.1353, 34.97774], [-107.13409, 34.97773], [-107.13192, 34.97789], [-107.12982, 34.97821], [-107.12787, 34.9787], [-107.11495, 34.98283], [-107.10007, 34.9876], [-107.09135, 34.99039], [-107.08406, 34.99273], [-107.08219, 34.99334], [-107.07834, 34.99454], [-107.07494, 34.99562], [-107.07164, 34.99668], [-107.06848, 34.99768], [-107.06523, 34.99872], [-107.0619, 34.99978], [-107.05875, 35.00075], [-107.0556, 35.00177], [-107.05328, 35.00256], [-107.0509, 35.00327], [-107.04942, 35.00372], [-107.04696, 35.00453], [-107.04497, 35.00518], [-107.04099, 35.00643], [-107.03893, 35.0071], [-107.03685, 35.00775], [-107.03538, 35.00824], [-107.03208, 35.00928], [-107.02438, 35.01174], [-107.02205, 35.01247], [-107.02036, 35.01301], [-107.01551, 35.01454], [-107.01414, 35.015], [-107.01207, 35.01567], [-107.01015, 35.01627], [-107.00491, 35.01792], [-107.00369, 35.01832], [-107.00311, 35.0185], [-107.00192, 35.01888], [-106.99901, 35.01979], [-106.99748, 35.02023], [-106.99646, 35.02046], [-106.98877, 35.02221], [-106.98621, 35.02278], [-106.98345, 35.02342], [-106.98057, 35.02408], [-106.97733, 35.02482], [-106.97414, 35.02551], [-106.97044, 35.02636], [-106.96712, 35.02711], [-106.96409, 35.0278], [-106.96191, 35.02831], [-106.9581, 35.02916], [-106.95758, 35.0293], [-106.95508, 35.02987], [-106.94948, 35.03114], [-106.94631, 35.03186], [-106.94239, 35.03274], [-106.9414, 35.03297], [-106.93756, 35.03387], [-106.92119, 35.03761], [-106.87629, 35.04773], [-106.86678, 35.04983], [-106.86202, 35.05088], [-106.86196, 35.05089], [-106.8061, 35.05951], [-106.80235, 35.06007], [-106.80022, 35.06038], [-106.79825, 35.0607], [-106.79763, 35.06081], [-106.79701, 35.06094], [-106.79634, 35.0611], [-106.79564, 35.06128], [-106.79496, 35.06149], [-106.79462, 35.0616], [-106.79377, 35.06192], [-106.79361, 35.06199], [-106.79252, 35.06244], [-106.79137, 35.06299], [-106.79112, 35.06311], [-106.7873, 35.06505], [-106.78411, 35.06665], [-106.78146, 35.06798], [-106.78056, 35.06844], [-106.77069, 35.07341], [-106.76977, 35.07387], [-106.76656, 35.07549], [-106.76349, 35.07704], [-106.76324, 35.07717], [-106.75998, 35.07881], [-106.75665, 35.08049], [-106.75332, 35.08214], [-106.74744, 35.08512], [-106.7468, 35.08542], [-106.74439, 35.08663], [-106.74225, 35.08773], [-106.74148, 35.08809], [-106.74079, 35.08844], [-106.73795, 35.08988], [-106.73738, 35.09017], [-106.73723, 35.09025], [-106.73538, 35.09117], [-106.73072, 35.0935], [-106.72992, 35.09391], [-106.72803, 35.09488], [-106.72621, 35.09577], [-106.72262, 35.09759], [-106.71843, 35.09969], [-106.71653, 35.10065], [-106.71496, 35.10144], [-106.71127, 35.10329], [-106.71068, 35.10359], [-106.70984, 35.104], [-106.70736, 35.10525], [-106.70643, 35.10572], [-106.70602, 35.10591], [-106.7055, 35.10613], [-106.70479, 35.10637], [-106.70417, 35.10654], [-106.7036, 35.10666], [-106.70294, 35.10678], [-106.70233, 35.10685], [-106.70156, 35.1069], [-106.70091, 35.10692], [-106.7005, 35.10693], [-106.7, 35.10691], [-106.6975, 35.10671], [-106.69637, 35.10662], [-106.69437, 35.10643], [-106.69013, 35.10608], [-106.68454, 35.10565], [-106.68408, 35.10562], [-106.68156, 35.10542], [-106.67826, 35.10514], [-106.6775, 35.10507], [-106.67732, 35.10505], [-106.67574, 35.10489], [-106.67407, 35.10483], [-106.67338, 35.10481], [-106.67304, 35.10482], [-106.67283, 35.10482], [-106.67175, 35.10491], [-106.67106, 35.10498], [-106.67038, 35.1051], [-106.6669, 35.10577], [-106.66658, 35.10583], [-106.66613, 35.10592], [-106.66548, 35.10605], [-106.66522, 35.10609], [-106.66476, 35.10615], [-106.6645, 35.10618], [-106.66402, 35.10624], [-106.6633, 35.10627], [-106.66269, 35.10624], [-106.66057, 35.10617], [-106.65988, 35.10615], [-106.6593, 35.10614], [-106.65877, 35.10615], [-106.6585, 35.10617], [-106.65819, 35.10618], [-106.65789, 35.10621], [-106.65767, 35.10623], [-106.65681, 35.10635], [-106.65668, 35.10637], [-106.65613, 35.10647], [-106.65524, 35.10663], [-106.65345, 35.10691], [-106.6533, 35.10692], [-106.65278, 35.10697], [-106.65245, 35.10698], [-106.65181, 35.10692], [-106.65054, 35.10671], [-106.6499, 35.10657], [-106.64948, 35.10647], [-106.64927, 35.10642], [-106.64858, 35.10628], [-106.6478, 35.10611], [-106.64708, 35.10595], [-106.64692, 35.10592], [-106.64617, 35.10581], [-106.6456, 35.10572], [-106.64194, 35.10528], [-106.64089, 35.10519], [-106.64042, 35.10516], [-106.63734, 35.10503], [-106.63689, 35.10501], [-106.63464, 35.10496], [-106.63325, 35.10496], [-106.63197, 35.105], [-106.63145, 35.10502], [-106.62915, 35.10519], [-106.62795, 35.10533], [-106.62739, 35.10541], [-106.62485, 35.10581], [-106.62418, 35.10595], [-106.62353, 35.10609], [-106.62106, 35.1067], [-106.61981, 35.10702], [-106.61873, 35.10723], [-106.61786, 35.10736], [-106.61665, 35.10741], [-106.61536, 35.1074], [-106.61429, 35.10725], [-106.61328, 35.10702], [-106.61309, 35.10699], [-106.61231, 35.10681], [-106.61118, 35.10656], [-106.60957, 35.10618], [-106.6084, 35.1059], [-106.60811, 35.10583], [-106.6042, 35.10496], [-106.60275, 35.10463], [-106.60199, 35.10446], [-106.60129, 35.10433], [-106.60072, 35.10422], [-106.59929, 35.10403], [-106.5988, 35.10399], [-106.59823, 35.10396], [-106.59547, 35.10389], [-106.59336, 35.10377], [-106.5916, 35.1037], [-106.58718, 35.10362], [-106.58652, 35.10361], [-106.58596, 35.10358], [-106.58549, 35.10355], [-106.58505, 35.1035], [-106.5847, 35.10345], [-106.58425, 35.10336], [-106.58395, 35.10329], [-106.58354, 35.10318], [-106.58304, 35.10302], [-106.58243, 35.1028], [-106.5813, 35.10233], [-106.57975, 35.10171], [-106.57342, 35.09914], [-106.573, 35.09896], [-106.57052, 35.09802], [-106.56884, 35.09735], [-106.56868, 35.09728], [-106.56854, 35.09723], [-106.56413, 35.09539], [-106.56361, 35.09518], [-106.56226, 35.09463], [-106.56069, 35.09402], [-106.55653, 35.09229], [-106.55405, 35.09134], [-106.55063, 35.08993], [-106.5466, 35.08841], [-106.54599, 35.08818], [-106.54363, 35.08724], [-106.54019, 35.0859], [-106.53738, 35.08481], [-106.53519, 35.08401], [-106.53263, 35.08303], [-106.52858, 35.08146], [-106.52721, 35.08093], [-106.52457, 35.07994], [-106.52379, 35.07965], [-106.52267, 35.07921], [-106.5205, 35.0784], [-106.51096, 35.07475], [-106.50438, 35.07225], [-106.49954, 35.07044], [-106.49731, 35.06959], [-106.49652, 35.06929], [-106.49429, 35.06843], [-106.49348, 35.06813], [-106.48718, 35.06568], [-106.48671, 35.06547], [-106.48597, 35.06512], [-106.48515, 35.06471], [-106.48484, 35.06454], [-106.48424, 35.06422], [-106.4837, 35.06392], [-106.48313, 35.06362], [-106.48259, 35.06339], [-106.48219, 35.06324], [-106.48179, 35.06311], [-106.48122, 35.06295], [-106.48067, 35.06282], [-106.48015, 35.06274], [-106.47943, 35.06265], [-106.47875, 35.06261], [-106.47803, 35.06262], [-106.47739, 35.06265], [-106.47616, 35.06275], [-106.47539, 35.06281], [-106.47529, 35.06281], [-106.47368, 35.06296], [-106.47201, 35.06306], [-106.47154, 35.06308], [-106.47111, 35.06308], [-106.47063, 35.06307], [-106.47025, 35.06305], [-106.46991, 35.06304], [-106.46957, 35.063], [-106.46935, 35.06298], [-106.46913, 35.06296], [-106.46894, 35.06294], [-106.46881, 35.06293], [-106.46879, 35.06293], [-106.4684, 35.06287], [-106.46829, 35.06285], [-106.46799, 35.0628], [-106.46728, 35.06266], [-106.46686, 35.06256], [-106.46611, 35.06237], [-106.46586, 35.06228], [-106.46503, 35.06199], [-106.46428, 35.06173], [-106.46391, 35.06159], [-106.46343, 35.06142], [-106.46295, 35.06128], [-106.46235, 35.06112], [-106.46206, 35.06106], [-106.46179, 35.061], [-106.46128, 35.06091], [-106.46097, 35.06089], [-106.46068, 35.06086], [-106.4604, 35.06083], [-106.46015, 35.06083], [-106.45992, 35.06082], [-106.45908, 35.06084], [-106.45883, 35.06085], [-106.45813, 35.06088], [-106.45663, 35.06097], [-106.45608, 35.06099], [-106.45508, 35.06106], [-106.45452, 35.06111], [-106.45449, 35.06111], [-106.454, 35.06114], [-106.45375, 35.06115], [-106.45298, 35.06119], [-106.45187, 35.06123], [-106.45036, 35.06132], [-106.45025, 35.06132], [-106.4488, 35.06141], [-106.44778, 35.06145], [-106.44694, 35.06149], [-106.44637, 35.06153], [-106.44612, 35.06155], [-106.44574, 35.06159], [-106.44529, 35.06166], [-106.44487, 35.06174], [-106.44472, 35.06178], [-106.44439, 35.06187], [-106.44382, 35.062], [-106.44354, 35.06208], [-106.44346, 35.06211], [-106.44221, 35.06251], [-106.4415, 35.06274], [-106.44097, 35.06292], [-106.44035, 35.06309], [-106.43976, 35.06325], [-106.43906, 35.06343], [-106.43828, 35.06362], [-106.43808, 35.06367], [-106.43776, 35.06375], [-106.43751, 35.0638], [-106.43708, 35.06389], [-106.43691, 35.06393], [-106.43678, 35.06396], [-106.43647, 35.06402], [-106.43537, 35.06421], [-106.43431, 35.06437], [-106.43336, 35.06448], [-106.43242, 35.06459], [-106.43046, 35.06476], [-106.42989, 35.0648], [-106.42888, 35.06487], [-106.42786, 35.06495], [-106.42755, 35.06499], [-106.42715, 35.06505], [-106.42696, 35.06508], [-106.42679, 35.06511], [-106.42668, 35.06513], [-106.42642, 35.06519], [-106.42625, 35.06523], [-106.42609, 35.06527], [-106.42572, 35.06536], [-106.4254, 35.06545], [-106.42507, 35.06556], [-106.42498, 35.0656], [-106.42479, 35.06568], [-106.42444, 35.06582], [-106.42413, 35.06597], [-106.42375, 35.06616], [-106.42342, 35.06635], [-106.42303, 35.0666], [-106.42269, 35.06686], [-106.42242, 35.06709], [-106.42211, 35.06738], [-106.42185, 35.06761], [-106.42165, 35.06777], [-106.4214, 35.06797], [-106.42103, 35.06831], [-106.41823, 35.0707], [-106.41747, 35.07135], [-106.41698, 35.0718], [-106.41563, 35.07294], [-106.41493, 35.07356], [-106.41346, 35.07481], [-106.41242, 35.0757], [-106.41135, 35.07661], [-106.41012, 35.07766], [-106.40954, 35.07818], [-106.40919, 35.07849], [-106.40877, 35.07886], [-106.40843, 35.07916], [-106.40816, 35.07938], [-106.40782, 35.07962], [-106.40746, 35.07985], [-106.40717, 35.08001], [-106.40688, 35.08015], [-106.40659, 35.08028], [-106.40633, 35.08038], [-106.40603, 35.08049], [-106.40574, 35.08058], [-106.40534, 35.08067], [-106.40488, 35.08077], [-106.40439, 35.08084], [-106.40395, 35.08087], [-106.40366, 35.08088], [-106.40331, 35.08088], [-106.40309, 35.08087], [-106.40284, 35.08086], [-106.40235, 35.08081], [-106.40182, 35.08072], [-106.40113, 35.08063], [-106.40054, 35.08056], [-106.40009, 35.08052], [-106.3996, 35.08049], [-106.39914, 35.08047], [-106.3983, 35.08046], [-106.39682, 35.08048], [-106.39625, 35.08049], [-106.39613, 35.08049], [-106.39349, 35.08054], [-106.39207, 35.08055], [-106.39115, 35.08057], [-106.39055, 35.0806], [-106.38991, 35.08067], [-106.38929, 35.08077], [-106.38858, 35.08091], [-106.38808, 35.08104], [-106.38789, 35.08109], [-106.3872, 35.08132], [-106.38683, 35.08147], [-106.38627, 35.08171], [-106.38597, 35.08185], [-106.38561, 35.08203], [-106.38522, 35.08224], [-106.38501, 35.08237], [-106.38464, 35.08261], [-106.38419, 35.08292], [-106.384, 35.08306], [-106.38387, 35.08315], [-106.38369, 35.08328], [-106.38328, 35.08357], [-106.38294, 35.08381], [-106.38271, 35.08398], [-106.38215, 35.08437], [-106.38187, 35.08457], [-106.3814, 35.08491], [-106.38063, 35.08546], [-106.3801, 35.08584], [-106.37995, 35.08594], [-106.37946, 35.08629], [-106.37906, 35.08657], [-106.3784, 35.08706], [-106.37803, 35.08733], [-106.37793, 35.08741], [-106.37771, 35.08761], [-106.37757, 35.08778], [-106.37732, 35.08806], [-106.37721, 35.08819], [-106.3767, 35.08879], [-106.37668, 35.08881], [-106.37658, 35.08894], [-106.37634, 35.08924], [-106.37615, 35.08945], [-106.376, 35.08964], [-106.37583, 35.08981], [-106.37567, 35.08997], [-106.37527, 35.0903], [-106.37495, 35.09052], [-106.3747, 35.09068], [-106.37418, 35.091], [-106.37394, 35.09114], [-106.37362, 35.09132], [-106.37331, 35.09151], [-106.37303, 35.0917], [-106.37269, 35.09197], [-106.37252, 35.09214], [-106.37233, 35.09234], [-106.37214, 35.09252], [-106.37194, 35.09274], [-106.37172, 35.09303], [-106.37153, 35.0933], [-106.37136, 35.09362], [-106.37121, 35.09394], [-106.37103, 35.09438], [-106.37086, 35.09479], [-106.37057, 35.09549], [-106.37032, 35.09605], [-106.37018, 35.09634], [-106.37003, 35.09657], [-106.36988, 35.0968], [-106.36977, 35.09694], [-106.36949, 35.09727], [-106.36932, 35.09746], [-106.36915, 35.09763], [-106.36888, 35.09788], [-106.36849, 35.09819], [-106.36803, 35.09847], [-106.36783, 35.09858], [-106.36733, 35.09882], [-106.36711, 35.09891], [-106.36691, 35.09899], [-106.36642, 35.09914], [-106.36607, 35.09922], [-106.36599, 35.09923], [-106.36549, 35.09933], [-106.36522, 35.09938], [-106.36434, 35.09952], [-106.36401, 35.09957], [-106.36394, 35.09958], [-106.36327, 35.09968], [-106.36316, 35.0997], [-106.35999, 35.10022], [-106.3594, 35.10032], [-106.35859, 35.10044], [-106.35705, 35.10068], [-106.3559, 35.10087], [-106.3555, 35.10093], [-106.35456, 35.1011], [-106.3541, 35.10117], [-106.35398, 35.10119], [-106.35343, 35.10128], [-106.35291, 35.10136], [-106.35205, 35.10151], [-106.35138, 35.10165], [-106.35099, 35.10176], [-106.3507, 35.10183], [-106.35022, 35.10198], [-106.34983, 35.1021], [-106.34952, 35.10221], [-106.34926, 35.10228], [-106.34868, 35.10251], [-106.34794, 35.10284], [-106.34725, 35.10316], [-106.34678, 35.1034], [-106.34579, 35.10388], [-106.34512, 35.10418], [-106.3443, 35.10457], [-106.34389, 35.10479], [-106.34342, 35.10503], [-106.34265, 35.10544], [-106.34178, 35.10593], [-106.34103, 35.10637], [-106.34037, 35.1068], [-106.33949, 35.10739], [-106.339, 35.10773], [-106.33843, 35.10813], [-106.33749, 35.10886], [-106.33686, 35.10935], [-106.33615, 35.10994], [-106.33544, 35.11048], [-106.33481, 35.11095], [-106.33338, 35.11196], [-106.33249, 35.11253], [-106.33182, 35.11299], [-106.33126, 35.11337], [-106.33077, 35.11369], [-106.33041, 35.11393], [-106.33009, 35.11412], [-106.32971, 35.11435], [-106.32945, 35.11448], [-106.32909, 35.11465], [-106.32882, 35.11477], [-106.32855, 35.11486], [-106.32827, 35.11495], [-106.32793, 35.11505], [-106.32754, 35.11513], [-106.32713, 35.11521], [-106.32702, 35.11522], [-106.32701, 35.11522], [-106.32656, 35.11525], [-106.32629, 35.11526], [-106.32595, 35.11526], [-106.32556, 35.11525], [-106.32449, 35.11516], [-106.32397, 35.11513], [-106.32327, 35.11507], [-106.32229, 35.11499], [-106.32154, 35.11493], [-106.32091, 35.11487], [-106.32054, 35.11482], [-106.32009, 35.11476], [-106.31981, 35.11469], [-106.31954, 35.11462], [-106.31924, 35.11452], [-106.31891, 35.1144], [-106.3186, 35.11427], [-106.31829, 35.11412], [-106.318, 35.11396], [-106.31771, 35.11379], [-106.31724, 35.11346], [-106.31676, 35.11314], [-106.31649, 35.11299], [-106.31603, 35.11275], [-106.31578, 35.11265], [-106.31539, 35.1125], [-106.31491, 35.11233], [-106.3126, 35.11157], [-106.31157, 35.11123], [-106.31141, 35.11118], [-106.3112, 35.1111], [-106.31099, 35.11104], [-106.31076, 35.11095], [-106.31042, 35.11085], [-106.31004, 35.11071], [-106.30929, 35.11047], [-106.30908, 35.11038], [-106.30896, 35.11034], [-106.30853, 35.11019], [-106.30829, 35.11013], [-106.30787, 35.10999], [-106.30759, 35.10988], [-106.30705, 35.10963], [-106.30662, 35.10942], [-106.30639, 35.1093], [-106.30584, 35.10896], [-106.30558, 35.10877], [-106.30529, 35.10856], [-106.30497, 35.1083], [-106.30468, 35.10804], [-106.30423, 35.10766], [-106.30401, 35.10745], [-106.30365, 35.10713], [-106.30335, 35.10691], [-106.30312, 35.10671], [-106.30265, 35.10631], [-106.3025, 35.10617], [-106.30197, 35.10574], [-106.30158, 35.10545], [-106.30105, 35.1051], [-106.30028, 35.1047], [-106.3001, 35.10459], [-106.29986, 35.10451], [-106.29946, 35.10434], [-106.29925, 35.10427], [-106.29898, 35.10417], [-106.29856, 35.10404], [-106.29818, 35.10394], [-106.29781, 35.10385], [-106.29741, 35.10373], [-106.29717, 35.10368], [-106.29558, 35.10326], [-106.29463, 35.10303], [-106.29437, 35.10296], [-106.29352, 35.10276], [-106.29294, 35.10261], [-106.29238, 35.10247], [-106.29184, 35.10236], [-106.29154, 35.10229], [-106.29099, 35.1022], [-106.29069, 35.10217], [-106.29029, 35.10213], [-106.28998, 35.10211], [-106.28972, 35.10208], [-106.28887, 35.10202], [-106.28839, 35.10199], [-106.28793, 35.10194], [-106.28762, 35.1019], [-106.28733, 35.10185], [-106.28695, 35.10179], [-106.28645, 35.10168], [-106.28594, 35.10157], [-106.28503, 35.1013], [-106.28467, 35.10118], [-106.28392, 35.10091], [-106.28377, 35.10085], [-106.28337, 35.10068], [-106.28231, 35.10021], [-106.28071, 35.09944], [-106.27971, 35.09894], [-106.27891, 35.09854], [-106.27882, 35.09849], [-106.27784, 35.09798], [-106.27738, 35.09775], [-106.27704, 35.09757], [-106.27663, 35.09735], [-106.27601, 35.09703], [-106.27565, 35.09685], [-106.27464, 35.09638], [-106.27384, 35.09602], [-106.27177, 35.0952], [-106.27114, 35.09498], [-106.27023, 35.09461], [-106.26891, 35.09409], [-106.26764, 35.09356], [-106.26614, 35.09295], [-106.26398, 35.09208], [-106.26232, 35.0914], [-106.26018, 35.09052], [-106.25929, 35.09017], [-106.25829, 35.08978], [-106.25776, 35.08957], [-106.2572, 35.08935], [-106.25644, 35.08902], [-106.25327, 35.08775], [-106.25284, 35.08758], [-106.25223, 35.08733], [-106.25154, 35.08707], [-106.25082, 35.08676], [-106.25002, 35.08643], [-106.24795, 35.08561], [-106.24642, 35.08499], [-106.2455, 35.0846], [-106.24428, 35.08412], [-106.24129, 35.08281], [-106.2324, 35.0792], [-106.22868, 35.07775], [-106.21598, 35.07262], [-106.20519, 35.06865], [-106.19631, 35.0654], [-106.19176, 35.06376], [-106.19111, 35.06351], [-106.18928, 35.06285], [-106.18921, 35.06282], [-106.18791, 35.06234], [-106.18595, 35.06159], [-106.17657, 35.05816], [-106.17241, 35.05659], [-106.16811, 35.0549], [-106.1614, 35.0522], [-106.15403, 35.0492], [-106.13948, 35.04328], [-106.12785, 35.03854], [-106.12245, 35.0362], [-106.11204, 35.03155], [-106.09786, 35.02525], [-106.08916, 35.02135], [-106.08602, 35.01998], [-106.08404, 35.01921], [-106.07423, 35.01575], [-106.07078, 35.01455], [-106.06874, 35.01383], [-106.06477, 35.01245], [-106.06095, 35.01112], [-106.05885, 35.01038], [-106.05702, 35.00982], [-106.05505, 35.00932], [-106.05296, 35.00887], [-106.05067, 35.00852], [-106.04905, 35.00833], [-106.0482, 35.00826], [-106.0396, 35.00775], [-106.03719, 35.00762], [-106.02747, 35.00706], [-106.0257, 35.00693], [-106.02348, 35.00657], [-106.01614, 35.00485], [-106.01474, 35.00466], [-106.01228, 35.00444], [-106.00401, 35.0045], [-106.00283, 35.0045], [-105.98791, 35.00452], [-105.9794, 35.00457], [-105.97329, 35.00458], [-105.95886, 35.00459], [-105.94461, 35.00464], [-105.94044, 35.00468], [-105.93825, 35.0048], [-105.93569, 35.00508], [-105.93359, 35.00541], [-105.93118, 35.00583], [-105.92901, 35.00622], [-105.92748, 35.0064], [-105.92511, 35.0066], [-105.92329, 35.00666], [-105.91757, 35.00652], [-105.91112, 35.00637], [-105.90965, 35.00633], [-105.89977, 35.00609], [-105.88633, 35.00572], [-105.87278, 35.00536], [-105.86495, 35.00516], [-105.86155, 35.0051], [-105.8588, 35.00513], [-105.85549, 35.00513], [-105.8472, 35.00513], [-105.84469, 35.00513], [-105.8313, 35.00504], [-105.829, 35.00502], [-105.82047, 35.00496], [-105.81868, 35.00494], [-105.81219, 35.00487], [-105.79839, 35.00475], [-105.78464, 35.00463], [-105.77088, 35.00449], [-105.75714, 35.00437], [-105.74343, 35.00424], [-105.73052, 35.00412], [-105.7234, 35.00405], [-105.72192, 35.0042], [-105.72034, 35.00459], [-105.7168, 35.00632], [-105.7128, 35.00849], [-105.71155, 35.00914], [-105.71023, 35.00967], [-105.7087, 35.01011], [-105.70775, 35.01034], [-105.70607, 35.01053], [-105.70379, 35.0105], [-105.69996, 35.01027], [-105.69459, 35.00998], [-105.68918, 35.00967], [-105.67579, 35.00889], [-105.6746, 35.00883], [-105.67332, 35.00879], [-105.67125, 35.00868], [-105.66922, 35.00856], [-105.66584, 35.00837], [-105.66286, 35.00819], [-105.66078, 35.00808], [-105.65873, 35.00796], [-105.65056, 35.00745], [-105.6378, 35.0067], [-105.6262, 35.00604], [-105.6222, 35.0058], [-105.61539, 35.00538], [-105.60123, 35.00457], [-105.58762, 35.00374], [-105.57374, 35.00297], [-105.55966, 35.00213], [-105.55588, 35.00189], [-105.555, 35.00183], [-105.55418, 35.00181], [-105.55338, 35.00185], [-105.55233, 35.00194], [-105.5516, 35.00201], [-105.55068, 35.00218], [-105.54997, 35.00234], [-105.54918, 35.00256], [-105.54797, 35.00296], [-105.54676, 35.0035], [-105.54579, 35.00402], [-105.54467, 35.00457], [-105.54371, 35.005], [-105.54264, 35.00541], [-105.54173, 35.00561], [-105.54009, 35.00579], [-105.53307, 35.00619], [-105.5318, 35.00621], [-105.53024, 35.00622], [-105.52844, 35.00615], [-105.52462, 35.00596], [-105.5162, 35.00556], [-105.50235, 35.00484], [-105.49607, 35.00454], [-105.49422, 35.00441], [-105.49248, 35.0042], [-105.48959, 35.00374], [-105.47564, 35.00154], [-105.47149, 35.0009], [-105.46413, 34.99974], [-105.46237, 34.99954], [-105.46189, 34.99949], [-105.46136, 34.99945], [-105.46036, 34.99938], [-105.45861, 34.9993], [-105.45681, 34.99921], [-105.45238, 34.99901], [-105.44797, 34.9988], [-105.44414, 34.99862], [-105.44277, 34.99855], [-105.44163, 34.9985], [-105.44045, 34.99844], [-105.4384, 34.99835], [-105.43639, 34.99825], [-105.42989, 34.99794], [-105.42664, 34.99778], [-105.42343, 34.99763], [-105.42036, 34.99748], [-105.41724, 34.99733], [-105.4111, 34.99705], [-105.40936, 34.99696], [-105.4024, 34.99663], [-105.3955, 34.9963], [-105.386, 34.99584], [-105.38312, 34.9957], [-105.38164, 34.99563], [-105.38012, 34.99556], [-105.37707, 34.9954], [-105.37143, 34.99514], [-105.35754, 34.99446], [-105.34331, 34.99378], [-105.33112, 34.9932], [-105.31736, 34.99251], [-105.30399, 34.99188], [-105.29802, 34.99159], [-105.29195, 34.99131], [-105.28933, 34.99116], [-105.28709, 34.99103], [-105.26194, 34.98979], [-105.23362, 34.98841], [-105.22442, 34.988], [-105.21865, 34.98772], [-105.21729, 34.98763], [-105.20592, 34.98709], [-105.1782, 34.98568], [-105.16763, 34.98522], [-105.15088, 34.98439], [-105.12314, 34.98299], [-105.09554, 34.98158], [-105.09006, 34.98136], [-105.0889, 34.98132], [-105.08719, 34.98123], [-105.07938, 34.98083], [-105.07873, 34.98079], [-105.06993, 34.98033], [-105.06261, 34.97998], [-105.05814, 34.97968], [-105.03061, 34.97826], [-105.00737, 34.97714], [-105.00042, 34.9768], [-104.99596, 34.97657], [-104.99491, 34.97652], [-104.98723, 34.97613], [-104.98351, 34.97593], [-104.97982, 34.97574], [-104.95487, 34.97442], [-104.92776, 34.97302], [-104.89946, 34.97155], [-104.87369, 34.97023], [-104.87138, 34.97017], [-104.86497, 34.96984], [-104.85908, 34.96946], [-104.8399, 34.96925], [-104.81193, 34.96898], [-104.79513, 34.96882], [-104.78796, 34.96875], [-104.7874, 34.96871], [-104.78596, 34.96856], [-104.78431, 34.96827], [-104.77989, 34.96723], [-104.7774, 34.96676], [-104.77595, 34.9666], [-104.76862, 34.96652], [-104.76722, 34.96645], [-104.75423, 34.96524], [-104.74605, 34.96437], [-104.74427, 34.96412], [-104.74176, 34.96358], [-104.73863, 34.96268], [-104.73623, 34.96179], [-104.72434, 34.95514], [-104.71776, 34.95129], [-104.71743, 34.95109], [-104.71297, 34.94849], [-104.71155, 34.94769], [-104.71031, 34.9471], [-104.70995, 34.94695], [-104.70892, 34.94655], [-104.70787, 34.9462], [-104.70665, 34.94588], [-104.70616, 34.94577], [-104.70562, 34.94566], [-104.705, 34.94556], [-104.70443, 34.94547], [-104.70365, 34.94537], [-104.70179, 34.94522], [-104.69921, 34.94531], [-104.69525, 34.94599], [-104.6871, 34.9477], [-104.68667, 34.94778], [-104.68414, 34.94836], [-104.68355, 34.94847], [-104.68314, 34.9485], [-104.68252, 34.94849], [-104.68181, 34.94842], [-104.68113, 34.9483], [-104.68032, 34.94809], [-104.67967, 34.94783], [-104.6789, 34.94745], [-104.67828, 34.94713], [-104.67344, 34.94482], [-104.67262, 34.94445], [-104.67135, 34.94389], [-104.67072, 34.94368], [-104.67002, 34.94351], [-104.6694, 34.94339], [-104.66892, 34.94333], [-104.66863, 34.94329], [-104.668, 34.94324], [-104.66739, 34.9432], [-104.66679, 34.94323], [-104.66624, 34.94326], [-104.66574, 34.94332], [-104.66464, 34.94351], [-104.64851, 34.94628], [-104.64478, 34.94689], [-104.64194, 34.94753], [-104.6413, 34.94769], [-104.64032, 34.94795], [-104.63875, 34.94842], [-104.63782, 34.94875], [-104.63669, 34.94915], [-104.635, 34.94987], [-104.6285, 34.95292], [-104.62214, 34.95596], [-104.61236, 34.96061], [-104.60261, 34.96533], [-104.59962, 34.96676], [-104.59203, 34.9704], [-104.58736, 34.97263], [-104.57838, 34.97693], [-104.56947, 34.98119], [-104.55486, 34.98819], [-104.5435, 34.99361], [-104.54049, 34.99505], [-104.53284, 34.99878], [-104.523, 35.00348], [-104.52269, 35.00363], [-104.5185, 35.00561], [-104.51762, 35.006], [-104.51595, 35.00665], [-104.5146, 35.00705], [-104.50671, 35.009], [-104.50221, 35.01017], [-104.4986, 35.01106], [-104.49745, 35.01127], [-104.49631, 35.01141], [-104.49514, 35.0115], [-104.49416, 35.01152], [-104.4924, 35.0115], [-104.4781, 35.01129], [-104.46726, 35.01115], [-104.46639, 35.01117], [-104.4658, 35.01121], [-104.46522, 35.01128], [-104.46455, 35.01139], [-104.46255, 35.01181], [-104.45719, 35.0129], [-104.44695, 35.01501], [-104.44476, 35.01565], [-104.44357, 35.01614], [-104.44231, 35.01659], [-104.44093, 35.01715], [-104.43944, 35.01779], [-104.43242, 35.02096], [-104.42546, 35.02408], [-104.41731, 35.02767], [-104.41539, 35.02857], [-104.4123, 35.02991], [-104.41202, 35.03004], [-104.40495, 35.03304], [-104.39933, 35.03551], [-104.39774, 35.03626], [-104.39685, 35.0367], [-104.39444, 35.03796], [-104.38901, 35.04087], [-104.38331, 35.0439], [-104.37915, 35.04612], [-104.378, 35.04671], [-104.37727, 35.047], [-104.37658, 35.04723], [-104.37574, 35.04744], [-104.37498, 35.04756], [-104.37336, 35.04775], [-104.36483, 35.04868], [-104.34888, 35.05054], [-104.33886, 35.05172], [-104.33672, 35.05207], [-104.33492, 35.05249], [-104.32831, 35.05428], [-104.31678, 35.0575], [-104.30357, 35.06106], [-104.30155, 35.06157], [-104.2997, 35.06194], [-104.29777, 35.06226], [-104.29419, 35.06264], [-104.28638, 35.06343], [-104.277, 35.06445], [-104.27252, 35.06496], [-104.27091, 35.06513], [-104.26772, 35.06548], [-104.26321, 35.06596], [-104.25985, 35.06632], [-104.2593, 35.06637], [-104.25222, 35.06713], [-104.2421, 35.0682], [-104.23446, 35.06902], [-104.22801, 35.06968], [-104.22612, 35.06983], [-104.22371, 35.06997], [-104.22118, 35.07003], [-104.21953, 35.06997], [-104.21743, 35.06985], [-104.2123, 35.06924], [-104.21193, 35.0692], [-104.18999, 35.06644], [-104.18792, 35.06627], [-104.18659, 35.06623], [-104.1837, 35.06618], [-104.18018, 35.06644], [-104.17848, 35.06665], [-104.17683, 35.0669], [-104.17535, 35.0672], [-104.15915, 35.07126], [-104.14799, 35.07407], [-104.13837, 35.07644], [-104.12785, 35.07905], [-104.11927, 35.08112], [-104.10769, 35.08409], [-104.10325, 35.08519], [-104.09713, 35.0867], [-104.09347, 35.08761], [-104.08798, 35.08896], [-104.08426, 35.08988], [-104.07713, 35.09164], [-104.07649, 35.09179], [-104.07612, 35.09189], [-104.07294, 35.09265], [-104.07221, 35.09282], [-104.07052, 35.09314], [-104.06929, 35.09325], [-104.06463, 35.09354], [-104.06313, 35.09377], [-104.06149, 35.09419], [-104.05982, 35.0948], [-104.0589, 35.09524], [-104.05169, 35.0987], [-104.05027, 35.09928], [-104.04909, 35.0997], [-104.04746, 35.10014], [-104.03768, 35.10276], [-104.0227, 35.10674], [-104.00491, 35.1115], [-103.98622, 35.1165], [-103.96816, 35.12132], [-103.96783, 35.12141], [-103.96663, 35.12173], [-103.96118, 35.1232], [-103.95712, 35.12437], [-103.95534, 35.12485], [-103.95322, 35.12523], [-103.95097, 35.12556], [-103.94731, 35.1258], [-103.94466, 35.12584], [-103.94318, 35.12576], [-103.94103, 35.12559], [-103.93852, 35.12527], [-103.9272, 35.12368], [-103.91519, 35.12188], [-103.90423, 35.12035], [-103.89898, 35.11955], [-103.89728, 35.11931], [-103.89025, 35.11829], [-103.88886, 35.11811], [-103.88178, 35.11709], [-103.875, 35.11606], [-103.87403, 35.11596], [-103.87321, 35.11594], [-103.87208, 35.11601], [-103.87017, 35.11634], [-103.86937, 35.11655], [-103.869, 35.11666], [-103.86858, 35.11679], [-103.86818, 35.11692], [-103.86776, 35.11709], [-103.86745, 35.11721], [-103.86714, 35.11735], [-103.86678, 35.11752], [-103.86632, 35.11776], [-103.86564, 35.11813], [-103.86512, 35.11842], [-103.86082, 35.12077], [-103.85901, 35.12166], [-103.84858, 35.12741], [-103.83189, 35.13663], [-103.82842, 35.13854], [-103.82759, 35.13899], [-103.82727, 35.13916], [-103.82695, 35.13932], [-103.8266, 35.1395], [-103.82624, 35.13966], [-103.82586, 35.13983], [-103.82549, 35.13999], [-103.8251, 35.14014], [-103.82468, 35.1403], [-103.82431, 35.14042], [-103.82388, 35.14056], [-103.82343, 35.1407], [-103.82287, 35.14086], [-103.82007, 35.14159], [-103.81696, 35.1424], [-103.81149, 35.14383], [-103.80821, 35.14467], [-103.80585, 35.14528], [-103.80298, 35.14604], [-103.80124, 35.14649], [-103.8008, 35.14659], [-103.80039, 35.14668], [-103.79993, 35.14677], [-103.79934, 35.14687], [-103.79902, 35.14691], [-103.79836, 35.14701], [-103.79484, 35.14743], [-103.79434, 35.14749], [-103.79196, 35.14779], [-103.79079, 35.14794], [-103.79024, 35.14801], [-103.78522, 35.14865], [-103.78389, 35.14882], [-103.78351, 35.14887], [-103.78317, 35.14892], [-103.78287, 35.14897], [-103.7827, 35.149], [-103.78241, 35.14905], [-103.78218, 35.1491], [-103.78193, 35.14915], [-103.78169, 35.1492], [-103.78146, 35.14926], [-103.78122, 35.14931], [-103.78096, 35.14938], [-103.78066, 35.14946], [-103.78042, 35.14953], [-103.78016, 35.14961], [-103.77991, 35.14968], [-103.77969, 35.14975], [-103.77946, 35.14983], [-103.77925, 35.1499], [-103.779, 35.14998], [-103.77874, 35.15008], [-103.77847, 35.15019], [-103.77813, 35.15033], [-103.77777, 35.15048], [-103.77732, 35.15068], [-103.77685, 35.1509], [-103.77648, 35.15109], [-103.77604, 35.15132], [-103.77528, 35.15171], [-103.77161, 35.15359], [-103.76907, 35.1549], [-103.76842, 35.15524], [-103.76816, 35.15538], [-103.76792, 35.1555], [-103.76768, 35.15561], [-103.76747, 35.1557], [-103.76723, 35.15581], [-103.76699, 35.15591], [-103.76676, 35.15599], [-103.76653, 35.15607], [-103.76628, 35.15615], [-103.76601, 35.15623], [-103.76573, 35.15631], [-103.76549, 35.15636], [-103.76522, 35.15642], [-103.765, 35.15646], [-103.76479, 35.1565], [-103.76456, 35.15654], [-103.76434, 35.15657], [-103.76414, 35.1566], [-103.76393, 35.15662], [-103.76374, 35.15663], [-103.76354, 35.15664], [-103.76335, 35.15665], [-103.76306, 35.15665], [-103.76279, 35.15664], [-103.76257, 35.15664], [-103.76235, 35.15663], [-103.76211, 35.15661], [-103.76187, 35.15659], [-103.76168, 35.15657], [-103.76155, 35.15656], [-103.76138, 35.15653], [-103.76124, 35.15651], [-103.76103, 35.15648], [-103.76082, 35.15644], [-103.76055, 35.15639], [-103.76035, 35.15634], [-103.76015, 35.1563], [-103.75995, 35.15625], [-103.75974, 35.15619], [-103.7596, 35.15615], [-103.75471, 35.15461], [-103.75327, 35.15415], [-103.75146, 35.15359], [-103.74906, 35.15284], [-103.74795, 35.1525], [-103.74726, 35.15231], [-103.7468, 35.15218], [-103.74632, 35.15207], [-103.74598, 35.152], [-103.74541, 35.15189], [-103.74478, 35.15179], [-103.74442, 35.15173], [-103.74401, 35.15168], [-103.74363, 35.15163], [-103.74323, 35.15159], [-103.74278, 35.15156], [-103.74231, 35.15153], [-103.74188, 35.15152], [-103.74145, 35.15151], [-103.7391, 35.15149], [-103.7311, 35.15144], [-103.72534, 35.1514], [-103.72466, 35.1514], [-103.71873, 35.15136], [-103.71767, 35.15136], [-103.7172, 35.15136], [-103.71666, 35.15138], [-103.71619, 35.1514], [-103.71576, 35.15143], [-103.71539, 35.15146], [-103.71505, 35.15149], [-103.71475, 35.15153], [-103.71437, 35.15158], [-103.71403, 35.15163], [-103.71365, 35.15168], [-103.71324, 35.15176], [-103.71279, 35.15185], [-103.71242, 35.15192], [-103.71195, 35.15203], [-103.71157, 35.15213], [-103.71118, 35.15224], [-103.71076, 35.15237], [-103.71016, 35.15256], [-103.70961, 35.15275], [-103.70926, 35.15289], [-103.70902, 35.15299], [-103.70876, 35.15309], [-103.70847, 35.15322], [-103.70774, 35.15354], [-103.70662, 35.15405], [-103.70632, 35.15419], [-103.69765, 35.15824], [-103.69632, 35.15887], [-103.6946, 35.15966], [-103.6882, 35.16263], [-103.68657, 35.1634], [-103.68609, 35.16364], [-103.68568, 35.16385], [-103.68543, 35.16399], [-103.68516, 35.16414], [-103.68483, 35.16433], [-103.68443, 35.16459], [-103.68409, 35.16481], [-103.68242, 35.16592], [-103.68157, 35.1665], [-103.6806, 35.16715], [-103.67895, 35.16826], [-103.67854, 35.16853], [-103.67819, 35.16875], [-103.6779, 35.16895], [-103.67764, 35.16911], [-103.67741, 35.16924], [-103.67705, 35.16946], [-103.67661, 35.1697], [-103.6763, 35.16985], [-103.67607, 35.16997], [-103.67582, 35.17009], [-103.67545, 35.17026], [-103.67497, 35.17047], [-103.67441, 35.1707], [-103.67405, 35.17084], [-103.6737, 35.17096], [-103.67323, 35.17111], [-103.6728, 35.17125], [-103.67248, 35.17134], [-103.67217, 35.17142], [-103.67183, 35.17151], [-103.67124, 35.17164], [-103.67081, 35.17173], [-103.67057, 35.17177], [-103.67001, 35.17187], [-103.66966, 35.17193], [-103.66939, 35.17197], [-103.66886, 35.17203], [-103.66841, 35.17207], [-103.66802, 35.1721], [-103.66759, 35.17213], [-103.66708, 35.17215], [-103.66665, 35.17216], [-103.66624, 35.17217], [-103.66382, 35.17218], [-103.64896, 35.17224], [-103.63683, 35.1723], [-103.62824, 35.17232], [-103.62464, 35.17234], [-103.61927, 35.17237], [-103.61881, 35.17237], [-103.61378, 35.17239], [-103.61363, 35.17239], [-103.59036, 35.17249], [-103.57829, 35.17257], [-103.57792, 35.17259], [-103.57151, 35.17284], [-103.56346, 35.17323], [-103.55743, 35.17335], [-103.54548, 35.1731], [-103.52966, 35.17314], [-103.52053, 35.17318], [-103.50054, 35.17324], [-103.49711, 35.17324], [-103.49088, 35.17327], [-103.48984, 35.17323], [-103.48812, 35.17304], [-103.48624, 35.17273], [-103.48451, 35.17226], [-103.48344, 35.17186], [-103.48232, 35.17142], [-103.48085, 35.17073], [-103.47882, 35.1694], [-103.47648, 35.16801], [-103.47447, 35.16673], [-103.46834, 35.16282], [-103.46265, 35.15919], [-103.45878, 35.15678], [-103.45529, 35.1546], [-103.45427, 35.15383], [-103.45254, 35.15255], [-103.44831, 35.1501], [-103.4453, 35.14819], [-103.44386, 35.14735], [-103.44253, 35.14666], [-103.44048, 35.14582], [-103.43763, 35.14465], [-103.43722, 35.14449], [-103.43008, 35.14143], [-103.42519, 35.1394], [-103.42016, 35.13737], [-103.41973, 35.1372], [-103.41146, 35.13385], [-103.40601, 35.13174], [-103.40315, 35.13056], [-103.40053, 35.12949], [-103.39824, 35.12856], [-103.39202, 35.126], [-103.38967, 35.12506], [-103.38318, 35.12239], [-103.37551, 35.11924], [-103.36367, 35.11441], [-103.36132, 35.11344], [-103.36102, 35.11333], [-103.36075, 35.11322], [-103.3604, 35.11308], [-103.3601, 35.11297], [-103.35981, 35.11287], [-103.35951, 35.11277], [-103.3592, 35.11267], [-103.35891, 35.11258], [-103.35861, 35.11249], [-103.35827, 35.1124], [-103.3579, 35.1123], [-103.35758, 35.11223], [-103.35719, 35.11214], [-103.35677, 35.11206], [-103.35635, 35.11198], [-103.35597, 35.11192], [-103.35557, 35.11186], [-103.35504, 35.11179], [-103.35457, 35.11174], [-103.3541, 35.1117], [-103.35367, 35.11167], [-103.35325, 35.11165], [-103.35282, 35.11164], [-103.35229, 35.11163], [-103.35173, 35.11164], [-103.34512, 35.11174], [-103.33647, 35.11188], [-103.33468, 35.1119], [-103.33141, 35.11196], [-103.33082, 35.11197], [-103.32658, 35.11203], [-103.32553, 35.11205], [-103.32154, 35.11211], [-103.31631, 35.11219], [-103.31354, 35.11223], [-103.31052, 35.11228], [-103.30653, 35.11234], [-103.30612, 35.11234], [-103.29617, 35.11249], [-103.29112, 35.11258], [-103.28762, 35.11263], [-103.28546, 35.11276], [-103.28339, 35.11297], [-103.28168, 35.11321], [-103.27939, 35.11364], [-103.27753, 35.11408], [-103.27509, 35.1147], [-103.26999, 35.11622], [-103.25301, 35.12103], [-103.25051, 35.12177], [-103.24909, 35.1222], [-103.24628, 35.12306], [-103.24321, 35.12421], [-103.23862, 35.12599], [-103.23839, 35.1261], [-103.2362, 35.12714], [-103.23015, 35.12988], [-103.22657, 35.13134], [-103.20926, 35.13731], [-103.17417, 35.14931], [-103.15233, 35.15683], [-103.13831, 35.16163], [-103.12627, 35.16577], [-103.12127, 35.16746], [-103.11769, 35.16847], [-103.10892, 35.17081], [-103.10859, 35.1709], [-103.10743, 35.1712], [-103.10506, 35.17182], [-103.10322, 35.17231], [-103.10166, 35.17275], [-103.10071, 35.17304], [-103.09849, 35.17375], [-103.09638, 35.17443], [-103.09417, 35.17509], [-103.08112, 35.17933], [-103.07551, 35.18115], [-103.07311, 35.18181], [-103.07054, 35.18232], [-103.06881, 35.18262], [-103.06715, 35.18286], [-103.06587, 35.18299], [-103.06379, 35.18313], [-103.06155, 35.18316], [-103.05775, 35.18299], [-103.0569, 35.18296], [-103.04246, 35.1824], [-103.03945, 35.18229], [-103.03854, 35.18223], [-103.03726, 35.18214], [-103.03583, 35.18198], [-103.02806, 35.18093], [-103.02726, 35.18087], [-103.02596, 35.18083], [-103.02503, 35.18084], [-103.02383, 35.18091], [-103.02035, 35.18132], [-103.01793, 35.1816], [-103.01544, 35.18189], [-103.00958, 35.18257], [-103.0083, 35.18271], [-103.00486, 35.18311], [-103.00426, 35.18318], [-103.00122, 35.18354], [-103.00035, 35.18363], [-103.00031, 35.18363], [-102.99262, 35.18452], [-102.9899, 35.18483], [-102.98904, 35.18494], [-102.98747, 35.18514], [-102.98642, 35.1853], [-102.9856, 35.18547], [-102.98397, 35.18587], [-102.98258, 35.18629], [-102.98132, 35.18673], [-102.97691, 35.1883], [-102.97394, 35.18935], [-102.97137, 35.19026], [-102.9679, 35.19151], [-102.96299, 35.19324], [-102.96018, 35.19427], [-102.95754, 35.19519], [-102.95547, 35.19588], [-102.95314, 35.19672], [-102.95075, 35.19759], [-102.94821, 35.19848], [-102.94513, 35.19955], [-102.94298, 35.20033], [-102.94223, 35.2006], [-102.94147, 35.20091], [-102.94089, 35.20118], [-102.939, 35.20203], [-102.93449, 35.20407], [-102.93067, 35.2058], [-102.92567, 35.20806], [-102.92387, 35.20888], [-102.92129, 35.21005], [-102.91935, 35.21093], [-102.9178, 35.21162], [-102.91638, 35.21227], [-102.91017, 35.21507], [-102.90862, 35.21576], [-102.90778, 35.21605], [-102.90679, 35.21632], [-102.90396, 35.21703], [-102.89905, 35.21824], [-102.8895, 35.22061], [-102.88643, 35.22137], [-102.87955, 35.22308], [-102.87534, 35.22411], [-102.87246, 35.22482], [-102.86883, 35.22571], [-102.86795, 35.22595], [-102.86734, 35.22613], [-102.86658, 35.22639], [-102.8626, 35.22784], [-102.85871, 35.22922], [-102.85399, 35.23093], [-102.85254, 35.23145], [-102.84944, 35.23255], [-102.84459, 35.2343], [-102.84136, 35.23548], [-102.83807, 35.23666], [-102.83752, 35.23686], [-102.83709, 35.23701], [-102.83496, 35.23777], [-102.83235, 35.23872], [-102.83163, 35.23894], [-102.82518, 35.24128], [-102.82389, 35.24174], [-102.81921, 35.24342], [-102.81821, 35.24379], [-102.81732, 35.24408], [-102.81668, 35.24425], [-102.81579, 35.24444], [-102.8149, 35.24459], [-102.81403, 35.24469], [-102.81264, 35.2448], [-102.81178, 35.24488], [-102.81083, 35.24494], [-102.80934, 35.2451], [-102.80687, 35.24529], [-102.80562, 35.24539], [-102.80483, 35.24545], [-102.80343, 35.2456], [-102.80253, 35.24566], [-102.80161, 35.24573], [-102.80086, 35.2458], [-102.80034, 35.24589], [-102.79962, 35.24606], [-102.79728, 35.24676], [-102.79584, 35.24715], [-102.79476, 35.24749], [-102.79249, 35.24809], [-102.79166, 35.24834], [-102.79139, 35.24843], [-102.79089, 35.24859], [-102.78917, 35.24908], [-102.78886, 35.24916], [-102.7886, 35.24923], [-102.78747, 35.24953], [-102.78675, 35.24965], [-102.78469, 35.24993], [-102.78268, 35.25018], [-102.77994, 35.2506], [-102.77882, 35.25076], [-102.77749, 35.25095], [-102.77668, 35.2511], [-102.77588, 35.25129], [-102.7749, 35.25155], [-102.77402, 35.25183], [-102.77323, 35.25212], [-102.7722, 35.25256], [-102.7709, 35.25316], [-102.77039, 35.25339], [-102.76573, 35.2555], [-102.76288, 35.25678], [-102.76194, 35.25722], [-102.76114, 35.25757], [-102.76032, 35.2579], [-102.75963, 35.25816], [-102.75788, 35.25879], [-102.75458, 35.25996], [-102.75245, 35.26071], [-102.75113, 35.26118], [-102.75034, 35.26145], [-102.74911, 35.26189], [-102.74866, 35.26205], [-102.74791, 35.26231], [-102.74695, 35.26264], [-102.74516, 35.26328], [-102.74372, 35.26379], [-102.74326, 35.26395], [-102.74016, 35.26503], [-102.73883, 35.2655], [-102.73725, 35.26607], [-102.73569, 35.26661], [-102.73436, 35.26709], [-102.7332, 35.26747], [-102.73148, 35.26799], [-102.7306, 35.26822], [-102.72981, 35.26842], [-102.72902, 35.2686], [-102.72774, 35.26885], [-102.72667, 35.26904], [-102.72589, 35.26915], [-102.72508, 35.26926], [-102.72399, 35.26939], [-102.72339, 35.26945], [-102.72231, 35.26954], [-102.7216, 35.26958], [-102.71961, 35.26964], [-102.7177, 35.2697], [-102.71506, 35.26978], [-102.68547, 35.27064], [-102.68463, 35.27064], [-102.6833, 35.27056], [-102.68269, 35.2705], [-102.68222, 35.27044], [-102.68161, 35.27036], [-102.6808, 35.27021], [-102.67962, 35.26997], [-102.67878, 35.2698], [-102.67805, 35.26968], [-102.67709, 35.26955], [-102.67664, 35.2695], [-102.6759, 35.26945], [-102.67472, 35.26941], [-102.66682, 35.26963], [-102.66654, 35.26963], [-102.66245, 35.26975], [-102.66024, 35.26982], [-102.65833, 35.26987], [-102.6564, 35.26994], [-102.6552, 35.26996], [-102.65437, 35.27002], [-102.65354, 35.27011], [-102.65289, 35.27019], [-102.65121, 35.2705], [-102.65043, 35.27071], [-102.64959, 35.27094], [-102.64923, 35.27104], [-102.64882, 35.27115], [-102.6482, 35.2713], [-102.64729, 35.27147], [-102.64678, 35.27156], [-102.6458, 35.27169], [-102.64497, 35.27177], [-102.64431, 35.27181], [-102.64278, 35.27185], [-102.64016, 35.27193], [-102.6357, 35.27207], [-102.63291, 35.27214], [-102.63136, 35.27219], [-102.62643, 35.27234], [-102.62534, 35.27235], [-102.62243, 35.27245], [-102.61509, 35.27266], [-102.60844, 35.27284], [-102.6002, 35.2731], [-102.59636, 35.27319], [-102.59133, 35.27335], [-102.58779, 35.27347], [-102.58599, 35.27346], [-102.58429, 35.2734], [-102.58421, 35.27339], [-102.58297, 35.27331], [-102.58175, 35.27319], [-102.5801, 35.27298], [-102.57857, 35.27274], [-102.56515, 35.27019], [-102.56486, 35.27014], [-102.56396, 35.26993], [-102.56273, 35.26961], [-102.56148, 35.26921], [-102.56044, 35.26889], [-102.55963, 35.26869], [-102.55882, 35.26852], [-102.55736, 35.26831], [-102.55635, 35.26819], [-102.55492, 35.2681], [-102.55385, 35.268], [-102.5523, 35.26776], [-102.55129, 35.26755], [-102.55028, 35.26733], [-102.54668, 35.26667], [-102.54441, 35.26626], [-102.53617, 35.26471], [-102.53181, 35.2639], [-102.52215, 35.26207], [-102.51924, 35.26152], [-102.5108, 35.25993], [-102.50645, 35.25911], [-102.50492, 35.25881], [-102.50415, 35.25865], [-102.504, 35.25862], [-102.50307, 35.25836], [-102.50167, 35.25798], [-102.50102, 35.25779], [-102.50033, 35.25763], [-102.50007, 35.25757], [-102.49951, 35.25746], [-102.49874, 35.25732], [-102.49512, 35.25679], [-102.49069, 35.25614], [-102.48842, 35.25571], [-102.48832, 35.25569], [-102.48624, 35.2553], [-102.48606, 35.25527], [-102.47894, 35.25392], [-102.47647, 35.25345], [-102.47399, 35.25299], [-102.47153, 35.25252], [-102.46905, 35.25205], [-102.46653, 35.25157], [-102.46402, 35.2511], [-102.46152, 35.25061], [-102.45912, 35.25017], [-102.45779, 35.24993], [-102.45707, 35.24978], [-102.45666, 35.2497], [-102.4552, 35.2494], [-102.45437, 35.24921], [-102.45349, 35.24897], [-102.45324, 35.2489], [-102.45228, 35.24858], [-102.45131, 35.24822], [-102.45026, 35.24776], [-102.4494, 35.24734], [-102.4489, 35.24706], [-102.44781, 35.24644], [-102.44388, 35.24437], [-102.44259, 35.24365], [-102.44127, 35.24293], [-102.43992, 35.24222], [-102.43862, 35.24151], [-102.43726, 35.24079], [-102.43658, 35.24042], [-102.4359, 35.24005], [-102.4345, 35.2393], [-102.43448, 35.23929], [-102.43356, 35.23882], [-102.43318, 35.23862], [-102.43207, 35.2381], [-102.43081, 35.23761], [-102.43007, 35.23734], [-102.42959, 35.2372], [-102.4285, 35.23692], [-102.42759, 35.23671], [-102.42656, 35.23652], [-102.42553, 35.23637], [-102.42449, 35.23628], [-102.42329, 35.23623], [-102.42212, 35.23622], [-102.42093, 35.23625], [-102.42085, 35.23626], [-102.4196, 35.23639], [-102.417, 35.23681], [-102.41695, 35.23682], [-102.41558, 35.23705], [-102.41283, 35.23749], [-102.41144, 35.23771], [-102.41006, 35.23792], [-102.40865, 35.23814], [-102.40583, 35.23858], [-102.40526, 35.23867], [-102.40504, 35.2387], [-102.40473, 35.23874], [-102.40399, 35.23882], [-102.40343, 35.23886], [-102.40267, 35.2389], [-102.40215, 35.23891], [-102.40077, 35.2389], [-102.39995, 35.23885], [-102.39862, 35.23869], [-102.39809, 35.23862], [-102.39679, 35.23838], [-102.39388, 35.23782], [-102.39247, 35.23756], [-102.39106, 35.23728], [-102.38963, 35.23701], [-102.38818, 35.23672], [-102.38526, 35.23619], [-102.38378, 35.23592], [-102.38231, 35.23565], [-102.38083, 35.23537], [-102.37935, 35.23508], [-102.37787, 35.2348], [-102.37639, 35.23452], [-102.37533, 35.23433], [-102.37336, 35.23396], [-102.37125, 35.23357], [-102.36915, 35.23316], [-102.36705, 35.23278], [-102.36498, 35.23238], [-102.36425, 35.23225], [-102.36389, 35.23217], [-102.36309, 35.23203], [-102.36106, 35.23165], [-102.35904, 35.23127], [-102.35501, 35.2305], [-102.349, 35.22939], [-102.347, 35.229], [-102.34098, 35.22787], [-102.33898, 35.22749], [-102.33276, 35.22633], [-102.32711, 35.22527], [-102.32498, 35.22485], [-102.32401, 35.22468], [-102.32285, 35.22446], [-102.32072, 35.22406], [-102.31859, 35.22367], [-102.31434, 35.22286], [-102.30796, 35.22167], [-102.3016, 35.22046], [-102.29524, 35.21927], [-102.29312, 35.21887], [-102.28889, 35.21808], [-102.28812, 35.21793], [-102.28678, 35.21768], [-102.28043, 35.21648], [-102.26774, 35.21411], [-102.26562, 35.21371], [-102.2635, 35.21332], [-102.26139, 35.21292], [-102.25927, 35.21252], [-102.25724, 35.21212], [-102.25524, 35.21177], [-102.25328, 35.21139], [-102.24897, 35.21057], [-102.24827, 35.21048], [-102.24785, 35.21043], [-102.24737, 35.21039], [-102.2463, 35.21034], [-102.24361, 35.21027], [-102.24094, 35.21021], [-102.23874, 35.21016], [-102.23669, 35.21012], [-102.23574, 35.21011], [-102.23037, 35.20997], [-102.22776, 35.20992], [-102.2252, 35.20987], [-102.22272, 35.20981], [-102.2204, 35.20974], [-102.21984, 35.20974], [-102.21804, 35.20971], [-102.21658, 35.20966], [-102.21633, 35.20965], [-102.21557, 35.20959], [-102.21426, 35.20943], [-102.21393, 35.20941], [-102.21315, 35.20936], [-102.21226, 35.20934], [-102.20988, 35.20929], [-102.20761, 35.20923], [-102.20534, 35.20918], [-102.20237, 35.2091], [-102.20159, 35.20909], [-102.19874, 35.20903], [-102.19672, 35.20898], [-102.196, 35.20898], [-102.19557, 35.20899], [-102.19396, 35.20908], [-102.19281, 35.20916], [-102.19221, 35.2092], [-102.19149, 35.2092], [-102.19015, 35.20919], [-102.18579, 35.20909], [-102.18491, 35.20906], [-102.17896, 35.20892], [-102.1767, 35.20886], [-102.17444, 35.20882], [-102.17222, 35.20876], [-102.16964, 35.20872], [-102.16858, 35.20865], [-102.16795, 35.20858], [-102.16746, 35.2085], [-102.16713, 35.20845], [-102.16663, 35.20837], [-102.16592, 35.20823], [-102.16357, 35.20768], [-102.16128, 35.20713], [-102.15901, 35.20659], [-102.15679, 35.20604], [-102.1546, 35.20552], [-102.15063, 35.20456], [-102.15027, 35.20447], [-102.14863, 35.20406], [-102.14591, 35.20339], [-102.1359, 35.201], [-102.13353, 35.20043], [-102.13125, 35.19987], [-102.12929, 35.1994], [-102.12533, 35.19844], [-102.12383, 35.19808], [-102.12219, 35.19769], [-102.11921, 35.19698], [-102.11766, 35.1966], [-102.11522, 35.196], [-102.11343, 35.19557], [-102.11159, 35.19512], [-102.10871, 35.19445], [-102.10752, 35.19415], [-102.10579, 35.19372], [-102.10448, 35.19332], [-102.10312, 35.19288], [-102.10191, 35.19253], [-102.10076, 35.19228], [-102.10002, 35.19217], [-102.09914, 35.19207], [-102.09835, 35.192], [-102.09529, 35.19193], [-102.09222, 35.19187], [-102.08315, 35.19165], [-102.07414, 35.19145], [-102.07117, 35.19137], [-102.07064, 35.19136], [-102.06826, 35.19132], [-102.0643, 35.19122], [-102.06357, 35.1912], [-102.06138, 35.19116], [-102.06006, 35.19112], [-102.05814, 35.19107], [-102.057, 35.19104], [-102.05405, 35.19098], [-102.05111, 35.1909], [-102.04799, 35.19083], [-102.04485, 35.19075], [-102.04173, 35.1907], [-102.03552, 35.19053], [-102.0293, 35.19039], [-102.0262, 35.19033], [-102.0231, 35.19025], [-102.02001, 35.19016], [-102.01618, 35.19008], [-102.01391, 35.19003], [-102.01058, 35.18998], [-102.00974, 35.18995], [-102.00405, 35.18977], [-102.00033, 35.18968], [-101.99789, 35.18961], [-101.98309, 35.18927], [-101.98114, 35.18921], [-101.98052, 35.18917], [-101.98019, 35.18913], [-101.97985, 35.18908], [-101.97922, 35.18896], [-101.9785, 35.18878], [-101.97787, 35.18856], [-101.97736, 35.18835], [-101.97577, 35.18767], [-101.97528, 35.18749], [-101.97466, 35.18731], [-101.97362, 35.18709], [-101.97318, 35.18703], [-101.97194, 35.18698], [-101.97119, 35.18699], [-101.97024, 35.18706], [-101.96895, 35.1872], [-101.9685, 35.18724], [-101.96766, 35.18732], [-101.96533, 35.18753], [-101.96474, 35.18757], [-101.96404, 35.18759], [-101.96304, 35.1876], [-101.96222, 35.18758], [-101.96093, 35.18754], [-101.95851, 35.1875], [-101.95663, 35.18746], [-101.95593, 35.18744], [-101.9556, 35.18744], [-101.95374, 35.18737], [-101.95138, 35.1873], [-101.94846, 35.18723], [-101.94283, 35.1871], [-101.94224, 35.18708], [-101.94201, 35.18708], [-101.93788, 35.18697], [-101.9371, 35.18695], [-101.9359, 35.18695], [-101.93411, 35.1869], [-101.92961, 35.1868], [-101.92905, 35.18677], [-101.92622, 35.18669], [-101.9248, 35.18666], [-101.9217, 35.18658], [-101.92086, 35.18656], [-101.91989, 35.18654], [-101.91947, 35.18654], [-101.919, 35.18655], [-101.91854, 35.18657], [-101.91787, 35.18662], [-101.91717, 35.18668], [-101.91638, 35.18678], [-101.91543, 35.18694], [-101.91492, 35.18705], [-101.91424, 35.1872], [-101.91351, 35.1874], [-101.91288, 35.18758], [-101.9121, 35.18784], [-101.91189, 35.18792], [-101.91105, 35.18822], [-101.91052, 35.18842], [-101.90883, 35.18901], [-101.90797, 35.18931], [-101.9077, 35.18939], [-101.90727, 35.18952], [-101.90657, 35.18972], [-101.90596, 35.18985], [-101.9055, 35.18995], [-101.90481, 35.19008], [-101.90407, 35.19019], [-101.90349, 35.19025], [-101.90296, 35.19031], [-101.90195, 35.1904], [-101.90106, 35.19046], [-101.90033, 35.19055], [-101.89951, 35.19062], [-101.89814, 35.19073], [-101.89599, 35.19093], [-101.89515, 35.19099], [-101.89415, 35.19107], [-101.89373, 35.1911], [-101.89186, 35.19128], [-101.89071, 35.19138], [-101.89013, 35.1914], [-101.8891, 35.1914], [-101.88791, 35.19141], [-101.88438, 35.19139], [-101.88364, 35.19139], [-101.88128, 35.19138], [-101.88013, 35.19138], [-101.87953, 35.19138], [-101.87919, 35.19137], [-101.87802, 35.19137], [-101.87746, 35.19137], [-101.87692, 35.19141], [-101.87632, 35.19151], [-101.87574, 35.19163], [-101.87534, 35.19174], [-101.87484, 35.19191], [-101.87449, 35.19208], [-101.87395, 35.19238], [-101.87238, 35.19331], [-101.87203, 35.19352], [-101.87132, 35.19396], [-101.87095, 35.19417], [-101.87057, 35.19437], [-101.87035, 35.19447], [-101.86993, 35.19463], [-101.86956, 35.19476], [-101.86916, 35.19488], [-101.86877, 35.19498], [-101.86835, 35.19506], [-101.86796, 35.19512], [-101.86724, 35.19517], [-101.86664, 35.19519], [-101.86588, 35.19519], [-101.86479, 35.19519], [-101.86283, 35.19519], [-101.8605, 35.19519], [-101.85986, 35.19519], [-101.85819, 35.19519], [-101.85755, 35.19519], [-101.85544, 35.19518], [-101.85492, 35.19517], [-101.8543, 35.19511], [-101.85197, 35.19482], [-101.85038, 35.19463], [-101.84779, 35.19435], [-101.84518, 35.19399], [-101.84385, 35.19382], [-101.84277, 35.19369], [-101.8412, 35.19347], [-101.84069, 35.19339], [-101.83955, 35.19323], [-101.83446, 35.19247], [-101.83403, 35.1924], [-101.83355, 35.19235], [-101.8332, 35.19233], [-101.83273, 35.19233], [-101.83223, 35.19233], [-101.82965, 35.19231], [-101.82729, 35.19232], [-101.82654, 35.19233], [-101.82487, 35.19233], [-101.82417, 35.19233], [-101.82353, 35.19234], [-101.81934, 35.1924], [-101.81762, 35.19252], [-101.81691, 35.19257], [-101.81441, 35.1928], [-101.81259, 35.19292], [-101.80982, 35.19313], [-101.80978, 35.19313], [-101.80875, 35.19319], [-101.80797, 35.19321], [-101.80745, 35.19321], [-101.80599, 35.19324], [-101.80539, 35.19324], [-101.80197, 35.19325], [-101.80021, 35.19325], [-101.79976, 35.19325], [-101.79795, 35.19325], [-101.79742, 35.19323], [-101.79696, 35.1932], [-101.79639, 35.19313], [-101.79574, 35.19304], [-101.79305, 35.1927], [-101.79172, 35.19253], [-101.79166, 35.19252], [-101.79143, 35.19251], [-101.79103, 35.19248], [-101.7873, 35.19247], [-101.78664, 35.19247], [-101.78558, 35.19247], [-101.78367, 35.19249], [-101.78305, 35.1925], [-101.7806, 35.19248], [-101.77914, 35.19251], [-101.77847, 35.19253], [-101.77557, 35.19257], [-101.77341, 35.19258], [-101.76885, 35.19261], [-101.76431, 35.19259], [-101.76278, 35.19259], [-101.76031, 35.19258], [-101.75979, 35.19258], [-101.755, 35.19264], [-101.74643, 35.19266], [-101.74262, 35.19264], [-101.74192, 35.19264], [-101.73849, 35.19267], [-101.73713, 35.19267], [-101.73661, 35.19267], [-101.73506, 35.19267], [-101.73125, 35.1927], [-101.73096, 35.1927], [-101.72926, 35.19271], [-101.72465, 35.19274], [-101.72432, 35.19275], [-101.72404, 35.19275], [-101.72013, 35.19272], [-101.71757, 35.19272], [-101.71441, 35.19273], [-101.7131, 35.19271], [-101.71252, 35.19267], [-101.71225, 35.19266], [-101.71079, 35.19263], [-101.70944, 35.19259], [-101.70727, 35.19258], [-101.70673, 35.19258], [-101.70407, 35.1926], [-101.70108, 35.19261], [-101.70081, 35.19261], [-101.70065, 35.19261], [-101.69901, 35.19263], [-101.6985, 35.19262], [-101.6983, 35.19263], [-101.69661, 35.19265], [-101.69613, 35.1927], [-101.69565, 35.19278], [-101.69532, 35.19286], [-101.69489, 35.19295], [-101.69446, 35.19305], [-101.69393, 35.19323], [-101.69319, 35.19349], [-101.69289, 35.19361], [-101.69168, 35.1943], [-101.69152, 35.19441], [-101.69121, 35.19464], [-101.69002, 35.19567], [-101.68947, 35.19611], [-101.68886, 35.19661], [-101.68761, 35.19769], [-101.68611, 35.19892], [-101.68457, 35.20024], [-101.68223, 35.20218], [-101.68187, 35.20241], [-101.68145, 35.20268], [-101.68115, 35.20284], [-101.68068, 35.20309], [-101.6801, 35.20335], [-101.67963, 35.20352], [-101.67891, 35.20375], [-101.6785, 35.20385], [-101.67794, 35.20397], [-101.67751, 35.20404], [-101.67648, 35.20418], [-101.6719, 35.20481], [-101.67136, 35.20488], [-101.66792, 35.20538], [-101.6669, 35.20552], [-101.6667, 35.20554], [-101.66045, 35.20642], [-101.65859, 35.20669], [-101.65788, 35.20676], [-101.65744, 35.2068], [-101.65677, 35.20683], [-101.65392, 35.20685], [-101.65335, 35.20684], [-101.65249, 35.20683], [-101.6484, 35.20682], [-101.62299, 35.20677], [-101.62259, 35.2068], [-101.62093, 35.20705], [-101.62025, 35.20724], [-101.61906, 35.20767], [-101.61795, 35.20824], [-101.61731, 35.20865], [-101.60346, 35.21892], [-101.60232, 35.21962], [-101.60113, 35.22013], [-101.60071, 35.22027], [-101.59944, 35.22057], [-101.59851, 35.22071], [-101.5977, 35.22076], [-101.58681, 35.22067], [-101.57772, 35.22057], [-101.57282, 35.2206], [-101.57133, 35.22061], [-101.5692, 35.22063], [-101.56876, 35.22063], [-101.56492, 35.22065], [-101.56277, 35.22067], [-101.56053, 35.22068], [-101.55634, 35.22071], [-101.55198, 35.22073], [-101.54774, 35.22075], [-101.5456, 35.22077], [-101.54396, 35.22078], [-101.54212, 35.22079], [-101.53912, 35.22081], [-101.53834, 35.22081], [-101.53693, 35.22083], [-101.53474, 35.22086], [-101.53255, 35.22088], [-101.53035, 35.22091], [-101.52815, 35.22094], [-101.52375, 35.22101], [-101.51711, 35.22107], [-101.51318, 35.22113], [-101.50826, 35.22119], [-101.5063, 35.22121], [-101.50387, 35.22124], [-101.50166, 35.22127], [-101.50109, 35.22127], [-101.50034, 35.2213], [-101.49955, 35.22132], [-101.49642, 35.22137], [-101.49214, 35.22138], [-101.4855, 35.22138], [-101.48326, 35.22139], [-101.47554, 35.22139], [-101.47244, 35.22141], [-101.47065, 35.22141], [-101.46877, 35.22142], [-101.46542, 35.22143], [-101.4587, 35.22145], [-101.44859, 35.22148], [-101.44522, 35.22149], [-101.44185, 35.22148], [-101.42624, 35.22153], [-101.42004, 35.22154], [-101.41692, 35.22156], [-101.4138, 35.22156], [-101.40121, 35.2216], [-101.39856, 35.22161], [-101.39781, 35.22157], [-101.39748, 35.22154], [-101.39676, 35.22148], [-101.39615, 35.22141], [-101.39576, 35.22135], [-101.39497, 35.22121], [-101.39408, 35.22103], [-101.39343, 35.22087], [-101.39284, 35.2207], [-101.39198, 35.22043], [-101.39095, 35.22006], [-101.38931, 35.2194], [-101.38744, 35.21866], [-101.38344, 35.21706], [-101.38141, 35.21624], [-101.38021, 35.21576], [-101.37767, 35.21475], [-101.37535, 35.21384], [-101.36829, 35.21103], [-101.36542, 35.20988], [-101.36372, 35.2092], [-101.36246, 35.20873], [-101.36151, 35.20844], [-101.36006, 35.20809], [-101.35969, 35.20802], [-101.35881, 35.20787], [-101.35746, 35.20771], [-101.35598, 35.20763], [-101.35428, 35.20762], [-101.34983, 35.20763], [-101.34695, 35.20762], [-101.33563, 35.20761], [-101.32895, 35.20761], [-101.3276, 35.20761], [-101.31684, 35.20759], [-101.30798, 35.20757], [-101.30373, 35.20757], [-101.29919, 35.20755], [-101.29429, 35.20756], [-101.28492, 35.20755], [-101.28051, 35.20754], [-101.27657, 35.20755], [-101.27526, 35.20754], [-101.27104, 35.20753], [-101.26662, 35.20753], [-101.25798, 35.20752], [-101.25364, 35.20752], [-101.25035, 35.20751], [-101.24715, 35.20752], [-101.24169, 35.20752], [-101.24035, 35.20752], [-101.23205, 35.20751], [-101.22375, 35.2075], [-101.22293, 35.20751], [-101.22217, 35.20754], [-101.22095, 35.20764], [-101.21997, 35.20773], [-101.21905, 35.20778], [-101.21901, 35.20778], [-101.21767, 35.2078], [-101.21668, 35.20778], [-101.21557, 35.2077], [-101.21409, 35.20756], [-101.21352, 35.20752], [-101.21295, 35.20751], [-101.21066, 35.20748], [-101.20598, 35.20748], [-101.2014, 35.20747], [-101.19659, 35.20747], [-101.19162, 35.20746], [-101.18189, 35.20743], [-101.17927, 35.20743], [-101.17683, 35.20742], [-101.17501, 35.20743], [-101.17196, 35.20743], [-101.17047, 35.20742], [-101.16908, 35.20742], [-101.16774, 35.20741], [-101.16489, 35.20741], [-101.16138, 35.2074], [-101.15791, 35.2074], [-101.15, 35.20739], [-101.14883, 35.20742], [-101.14723, 35.20749], [-101.14513, 35.20765], [-101.14404, 35.20775], [-101.14296, 35.2079], [-101.14192, 35.20806], [-101.14066, 35.20829], [-101.13994, 35.20844], [-101.13569, 35.20925], [-101.13314, 35.20973], [-101.13106, 35.21013], [-101.12523, 35.21123], [-101.12348, 35.21156], [-101.12039, 35.21215], [-101.11744, 35.2127], [-101.11678, 35.21282], [-101.11505, 35.21315], [-101.11484, 35.21319], [-101.11418, 35.21328], [-101.11355, 35.21336], [-101.1128, 35.21341], [-101.11201, 35.21343], [-101.11101, 35.21342], [-101.10986, 35.21333], [-101.10904, 35.21322], [-101.10893, 35.2132], [-101.10819, 35.21307], [-101.10758, 35.21294], [-101.10679, 35.21273], [-101.10648, 35.21264], [-101.10606, 35.21251], [-101.10563, 35.21236], [-101.10539, 35.21228], [-101.10466, 35.21197], [-101.10367, 35.2115], [-101.10252, 35.21085], [-101.09975, 35.20927], [-101.09916, 35.20893], [-101.09878, 35.20871], [-101.09855, 35.20858], [-101.09662, 35.20747], [-101.09531, 35.20668], [-101.09451, 35.20615], [-101.09373, 35.20559], [-101.09296, 35.20504], [-101.09172, 35.20406], [-101.0901, 35.2027], [-101.08993, 35.20256], [-101.08901, 35.20178], [-101.08836, 35.20121], [-101.08738, 35.20039], [-101.08622, 35.19936], [-101.08491, 35.19841], [-101.08454, 35.19815], [-101.08339, 35.19737], [-101.08274, 35.19702], [-101.08203, 35.19666], [-101.08137, 35.19637], [-101.08044, 35.19598], [-101.07947, 35.19563], [-101.07852, 35.19533], [-101.07791, 35.19516], [-101.07715, 35.19498], [-101.0746, 35.19451], [-101.07112, 35.19389], [-101.06151, 35.19214], [-101.05793, 35.19148], [-101.05058, 35.19018], [-101.03495, 35.18733], [-101.02178, 35.18494], [-101.01515, 35.18374], [-101.01388, 35.1835], [-101.01326, 35.18341], [-101.01248, 35.18332], [-101.01161, 35.18323], [-101.01033, 35.18309], [-101.00876, 35.18296], [-101.00777, 35.18287], [-101.00707, 35.1828], [-101.00627, 35.18271], [-101.00446, 35.18254], [-101.00229, 35.18235], [-101.00119, 35.18224], [-101.00062, 35.18218], [-101.00033, 35.18213], [-100.99739, 35.18191], [-100.99251, 35.18145], [-100.98931, 35.18115], [-100.98866, 35.18111], [-100.98802, 35.18109], [-100.98737, 35.18109], [-100.98672, 35.18112], [-100.98608, 35.18116], [-100.98544, 35.18123], [-100.98483, 35.18131], [-100.98092, 35.18192], [-100.97981, 35.1821], [-100.97618, 35.18268], [-100.97555, 35.18276], [-100.97497, 35.18282], [-100.97438, 35.18285], [-100.97399, 35.18289], [-100.97391, 35.1829], [-100.97376, 35.18289], [-100.95951, 35.18292], [-100.93932, 35.18293], [-100.92, 35.18293], [-100.91782, 35.18293], [-100.9169, 35.18293], [-100.91442, 35.18292], [-100.9143, 35.18292], [-100.91122, 35.18292], [-100.90984, 35.18289], [-100.90939, 35.18285], [-100.90911, 35.18283], [-100.90839, 35.18274], [-100.9082, 35.18272], [-100.90766, 35.18264], [-100.9075, 35.18261], [-100.90697, 35.18252], [-100.90665, 35.18246], [-100.90618, 35.18237], [-100.9053, 35.18212], [-100.90414, 35.1818], [-100.90215, 35.18118], [-100.90163, 35.18101], [-100.89989, 35.18047], [-100.89728, 35.17965], [-100.89684, 35.17953], [-100.89593, 35.17934], [-100.89496, 35.17914], [-100.89388, 35.17899], [-100.89247, 35.17886], [-100.89138, 35.17884], [-100.88871, 35.17882], [-100.88668, 35.17882], [-100.8853, 35.17881], [-100.88453, 35.17884], [-100.88419, 35.17888], [-100.88273, 35.17904], [-100.87971, 35.17975], [-100.87789, 35.18037], [-100.87383, 35.18184], [-100.87223, 35.18236], [-100.87209, 35.18241], [-100.87138, 35.18265], [-100.87089, 35.1828], [-100.86976, 35.18306], [-100.86924, 35.18317], [-100.86818, 35.18337], [-100.86631, 35.18356], [-100.86505, 35.18361], [-100.86359, 35.18358], [-100.863, 35.18353], [-100.86132, 35.18335], [-100.86054, 35.18323], [-100.85967, 35.18309], [-100.8591, 35.18301], [-100.85561, 35.18253], [-100.85277, 35.18215], [-100.85014, 35.18179], [-100.84794, 35.18139], [-100.84681, 35.18119], [-100.84554, 35.18095], [-100.8433, 35.18054], [-100.84114, 35.18013], [-100.83969, 35.17989], [-100.83777, 35.17956], [-100.83715, 35.17947], [-100.83562, 35.17927], [-100.83355, 35.1792], [-100.8317, 35.17928], [-100.83033, 35.17944], [-100.82894, 35.17972], [-100.82718, 35.18015], [-100.825, 35.18094], [-100.82314, 35.18185], [-100.8204, 35.18324], [-100.81488, 35.18611], [-100.81233, 35.18746], [-100.80961, 35.1889], [-100.80844, 35.18961], [-100.80784, 35.18998], [-100.80728, 35.19041], [-100.80655, 35.19099], [-100.80466, 35.19257], [-100.80198, 35.19477], [-100.8014, 35.19524], [-100.79788, 35.19815], [-100.79529, 35.2002], [-100.79454, 35.20069], [-100.79383, 35.20111], [-100.79367, 35.2012], [-100.79225, 35.20198], [-100.78996, 35.20292], [-100.78901, 35.2033], [-100.78856, 35.20349], [-100.78701, 35.20416], [-100.78589, 35.20463], [-100.78402, 35.20543], [-100.78264, 35.20621], [-100.78209, 35.20658], [-100.78152, 35.20692], [-100.78126, 35.2071], [-100.78116, 35.20717], [-100.78038, 35.20776], [-100.77998, 35.20809], [-100.77879, 35.20924], [-100.7779, 35.21017], [-100.77684, 35.21132], [-100.77634, 35.21184], [-100.77581, 35.21236], [-100.77551, 35.21263], [-100.77516, 35.21286], [-100.77476, 35.21314], [-100.77431, 35.21343], [-100.77385, 35.21368], [-100.7737, 35.21375], [-100.77314, 35.21402], [-100.77238, 35.21429], [-100.7719, 35.21442], [-100.77131, 35.21459], [-100.77078, 35.21467], [-100.76957, 35.2148], [-100.76894, 35.2148], [-100.76808, 35.21478], [-100.76748, 35.21474], [-100.76683, 35.21463], [-100.765, 35.21417], [-100.76298, 35.21363], [-100.76096, 35.21309], [-100.75911, 35.21272], [-100.75749, 35.2125], [-100.75691, 35.21247], [-100.75565, 35.21241], [-100.75507, 35.21242], [-100.75368, 35.21248], [-100.75299, 35.21254], [-100.75234, 35.21261], [-100.7518, 35.21268], [-100.75033, 35.21296], [-100.74933, 35.21318], [-100.74567, 35.21406], [-100.74523, 35.21416], [-100.74337, 35.2146], [-100.74248, 35.21483], [-100.74171, 35.21496], [-100.74104, 35.21506], [-100.74055, 35.21512], [-100.7398, 35.21517], [-100.73848, 35.21518], [-100.73768, 35.21517], [-100.73713, 35.21516], [-100.7369, 35.21517], [-100.73333, 35.21517], [-100.73309, 35.21518], [-100.73218, 35.21517], [-100.73039, 35.21517], [-100.72974, 35.21514], [-100.72911, 35.21509], [-100.72811, 35.21494], [-100.72702, 35.21471], [-100.72431, 35.21407], [-100.723, 35.21377], [-100.72207, 35.21358], [-100.72182, 35.21354], [-100.72055, 35.21338], [-100.71976, 35.21334], [-100.71941, 35.21333], [-100.71903, 35.21333], [-100.71801, 35.21335], [-100.71767, 35.21338], [-100.71497, 35.21367], [-100.71026, 35.21408], [-100.70861, 35.21423], [-100.70562, 35.21451], [-100.7031, 35.21473], [-100.70093, 35.21491], [-100.699, 35.21507], [-100.69641, 35.21529], [-100.69611, 35.21532], [-100.69401, 35.21551], [-100.6748, 35.21722], [-100.67365, 35.21732], [-100.67329, 35.21735], [-100.67286, 35.2174], [-100.67207, 35.2175], [-100.67162, 35.21757], [-100.67129, 35.21762], [-100.67052, 35.21777], [-100.66832, 35.2184], [-100.66781, 35.21858], [-100.66372, 35.21984], [-100.65757, 35.22176], [-100.65269, 35.22327], [-100.65162, 35.2236], [-100.64804, 35.22472], [-100.64285, 35.22633], [-100.64121, 35.22684], [-100.64114, 35.22686], [-100.64018, 35.22715], [-100.63887, 35.22756], [-100.63864, 35.22763], [-100.63673, 35.22822], [-100.63672, 35.22822], [-100.6355, 35.22854], [-100.63494, 35.22864], [-100.63401, 35.22878], [-100.63317, 35.22886], [-100.63215, 35.22891], [-100.63171, 35.22892], [-100.6315, 35.22892], [-100.63047, 35.22889], [-100.62958, 35.22881], [-100.62565, 35.22826], [-100.62229, 35.22781], [-100.62151, 35.2277], [-100.61929, 35.22742], [-100.61839, 35.22729], [-100.61814, 35.22727], [-100.6169, 35.22709], [-100.61581, 35.22694], [-100.61518, 35.22687], [-100.61456, 35.22682], [-100.61369, 35.22679], [-100.60873, 35.2268], [-100.60621, 35.22678], [-100.60491, 35.22678], [-100.6033, 35.22675], [-100.60114, 35.22676], [-100.59841, 35.22674], [-100.59723, 35.22674], [-100.59712, 35.22674], [-100.59678, 35.22673], [-100.59604, 35.2267], [-100.59507, 35.22667], [-100.59453, 35.22665], [-100.59393, 35.22662], [-100.59221, 35.22654], [-100.59211, 35.22654], [-100.59189, 35.22653], [-100.59151, 35.22651], [-100.59002, 35.22646], [-100.58792, 35.22646], [-100.58701, 35.22647], [-100.5791, 35.22651], [-100.57419, 35.2265], [-100.56683, 35.22657], [-100.55634, 35.2266], [-100.55437, 35.2266], [-100.54607, 35.22659], [-100.54006, 35.22658], [-100.53757, 35.22659], [-100.53293, 35.22662], [-100.53064, 35.22667], [-100.52961, 35.22672], [-100.52554, 35.2268], [-100.52375, 35.22681], [-100.5098, 35.22681], [-100.50413, 35.22681], [-100.50301, 35.22681], [-100.50172, 35.22681], [-100.50034, 35.2268], [-100.49828, 35.22679], [-100.4896, 35.22681], [-100.48524, 35.22681], [-100.44612, 35.22683], [-100.43764, 35.22683], [-100.43348, 35.22682], [-100.43221, 35.22681], [-100.43072, 35.22682], [-100.42723, 35.22681], [-100.41354, 35.22686], [-100.39083, 35.22682], [-100.3858, 35.22681], [-100.38495, 35.22683], [-100.38422, 35.22689], [-100.38366, 35.22698], [-100.38313, 35.22708], [-100.38255, 35.22723], [-100.38175, 35.22748], [-100.37978, 35.22821], [-100.37899, 35.22846], [-100.3783, 35.22867], [-100.37809, 35.22872], [-100.37714, 35.22893], [-100.37637, 35.22905], [-100.37534, 35.22915], [-100.37476, 35.22918], [-100.37441, 35.22919], [-100.37396, 35.2292], [-100.37362, 35.22919], [-100.37302, 35.22917], [-100.37184, 35.22906], [-100.37062, 35.22896], [-100.36814, 35.22875], [-100.36603, 35.22858], [-100.36483, 35.22847], [-100.36048, 35.22813], [-100.3565, 35.22779], [-100.35624, 35.22776], [-100.35587, 35.22769], [-100.35555, 35.22762], [-100.35526, 35.22754], [-100.35421, 35.22728], [-100.35316, 35.22702], [-100.35245, 35.22689], [-100.35216, 35.22686], [-100.35179, 35.22681], [-100.35025, 35.22681], [-100.34816, 35.22678], [-100.34489, 35.22677], [-100.34409, 35.22677], [-100.34236, 35.22676], [-100.34199, 35.22676], [-100.33851, 35.22678], [-100.33754, 35.22679], [-100.33535, 35.22679], [-100.33306, 35.22679], [-100.32846, 35.2268], [-100.32268, 35.2268], [-100.31578, 35.22677], [-100.31358, 35.22676], [-100.30686, 35.22677], [-100.3045, 35.22677], [-100.30219, 35.22675], [-100.29877, 35.22675], [-100.29535, 35.22674], [-100.29349, 35.22675], [-100.28859, 35.22675], [-100.28529, 35.22674], [-100.28167, 35.22675], [-100.28103, 35.22678], [-100.28029, 35.22684], [-100.27874, 35.22701], [-100.27755, 35.22716], [-100.27614, 35.22736], [-100.27524, 35.22748], [-100.27097, 35.22807], [-100.26968, 35.22826], [-100.26876, 35.22838], [-100.26638, 35.22871], [-100.26513, 35.22887], [-100.26405, 35.22901], [-100.26318, 35.22911], [-100.26177, 35.22927], [-100.26079, 35.22939], [-100.25953, 35.22956], [-100.25946, 35.22957], [-100.25714, 35.22984], [-100.25523, 35.23008], [-100.25194, 35.23049], [-100.25034, 35.23067], [-100.24996, 35.23071], [-100.24951, 35.23077], [-100.24818, 35.2309], [-100.24762, 35.23096], [-100.24599, 35.23119], [-100.24547, 35.23124], [-100.24465, 35.23131], [-100.24394, 35.23133], [-100.24301, 35.23135], [-100.24228, 35.23131], [-100.24192, 35.23128], [-100.24041, 35.23116], [-100.24007, 35.23112], [-100.23953, 35.231], [-100.23864, 35.23084], [-100.23708, 35.23048], [-100.23685, 35.23043], [-100.23158, 35.22918], [-100.23148, 35.22916], [-100.23073, 35.22899], [-100.23001, 35.22883], [-100.22749, 35.22828], [-100.2269, 35.22814], [-100.22605, 35.22794], [-100.22361, 35.22736], [-100.22281, 35.22719], [-100.22235, 35.22711], [-100.22203, 35.22705], [-100.22125, 35.22693], [-100.22047, 35.22683], [-100.21968, 35.22675], [-100.21914, 35.22671], [-100.21862, 35.22668], [-100.2181, 35.22666], [-100.2173, 35.22665], [-100.21071, 35.22667], [-100.19167, 35.22674], [-100.17345, 35.22672], [-100.16696, 35.22671], [-100.16589, 35.22671], [-100.16468, 35.2267], [-100.1599, 35.22667], [-100.15844, 35.22667], [-100.1578, 35.22667], [-100.15151, 35.2267], [-100.13994, 35.22669], [-100.13823, 35.22669], [-100.13111, 35.22665], [-100.12974, 35.22664], [-100.12934, 35.22664], [-100.12534, 35.22662], [-100.12168, 35.22663], [-100.12001, 35.22664], [-100.1126, 35.22663], [-100.10917, 35.22663], [-100.10253, 35.22662], [-100.10162, 35.22662], [-100.09008, 35.22659], [-100.08295, 35.22662], [-100.07723, 35.22662], [-100.0766, 35.22662], [-100.06164, 35.2266], [-100.0579, 35.22658], [-100.05097, 35.22661], [-100.04622, 35.2266], [-100.04153, 35.22664], [-100.03677, 35.22664], [-100.03214, 35.22666], [-100.03113, 35.22667], [-100.02754, 35.22668], [-100.02297, 35.22666], [-100.00232, 35.22673], [-100.00029, 35.2268], [-99.99924, 35.22684], [-99.99821, 35.22689], [-99.99717, 35.22696], [-99.99614, 35.22703], [-99.99507, 35.22712], [-99.99416, 35.2272], [-99.99339, 35.22727], [-99.99169, 35.22745], [-99.99124, 35.2275], [-99.98727, 35.22803], [-99.98688, 35.22808], [-99.96496, 35.2311], [-99.96383, 35.23125], [-99.96287, 35.23136], [-99.96209, 35.23144], [-99.9611, 35.23153], [-99.96019, 35.23159], [-99.95936, 35.23165], [-99.95858, 35.23169], [-99.95779, 35.23173], [-99.95664, 35.23176], [-99.95548, 35.23177], [-99.95417, 35.23176], [-99.95326, 35.23174], [-99.9524, 35.23171], [-99.95118, 35.23165], [-99.95023, 35.23159], [-99.94962, 35.23154], [-99.94903, 35.23149], [-99.9479, 35.23138], [-99.94732, 35.23131], [-99.94655, 35.23122], [-99.94554, 35.23108], [-99.9448, 35.23097], [-99.94392, 35.23083], [-99.94317, 35.2307], [-99.94221, 35.23053], [-99.92871, 35.22787], [-99.92703, 35.22756], [-99.92569, 35.22734], [-99.92437, 35.22714], [-99.92279, 35.22693], [-99.92138, 35.22677], [-99.9198, 35.22661], [-99.91816, 35.22648], [-99.91763, 35.22645], [-99.91661, 35.22639], [-99.9156, 35.22634], [-99.91448, 35.2263], [-99.91212, 35.22627], [-99.91175, 35.22627], [-99.90838, 35.22626], [-99.90768, 35.22625], [-99.89422, 35.2262], [-99.89375, 35.2262], [-99.8774, 35.22614], [-99.87556, 35.22614], [-99.87501, 35.22612], [-99.87136, 35.22612], [-99.87065, 35.22612], [-99.86636, 35.22611], [-99.86541, 35.2261], [-99.86062, 35.22608], [-99.85765, 35.22608], [-99.85568, 35.22611], [-99.85461, 35.22614], [-99.85356, 35.22616], [-99.85086, 35.22627], [-99.84922, 35.22635], [-99.84881, 35.22638], [-99.84727, 35.22647], [-99.8452, 35.22663], [-99.84379, 35.22675], [-99.84244, 35.22687], [-99.8413, 35.22698], [-99.83989, 35.22713], [-99.83816, 35.22731], [-99.835, 35.22765], [-99.83377, 35.22778], [-99.83371, 35.22779], [-99.8323, 35.22794], [-99.82592, 35.22862], [-99.82447, 35.22878], [-99.82324, 35.2289], [-99.82203, 35.22903], [-99.82089, 35.22913], [-99.81977, 35.22923], [-99.81902, 35.22928], [-99.81762, 35.22939], [-99.81597, 35.2295], [-99.81447, 35.22959], [-99.81303, 35.22965], [-99.81158, 35.22971], [-99.80978, 35.22976], [-99.80675, 35.22981], [-99.80476, 35.22981], [-99.8033, 35.22981], [-99.80159, 35.22981], [-99.80019, 35.22982], [-99.7982, 35.22982], [-99.79725, 35.22981], [-99.79659, 35.22982], [-99.79478, 35.22981], [-99.79445, 35.22981], [-99.79406, 35.22982], [-99.79295, 35.22983], [-99.79184, 35.22986], [-99.79075, 35.22991], [-99.78983, 35.22997], [-99.78945, 35.23001], [-99.78839, 35.2301], [-99.7877, 35.23017], [-99.78669, 35.23029], [-99.78585, 35.2304], [-99.7848, 35.23056], [-99.78368, 35.23075], [-99.78269, 35.23094], [-99.78235, 35.23101], [-99.78133, 35.23123], [-99.78015, 35.23151], [-99.7792, 35.23176], [-99.77818, 35.23204], [-99.77681, 35.23246], [-99.77573, 35.23282], [-99.77467, 35.23318], [-99.77284, 35.23388], [-99.77148, 35.23445], [-99.77008, 35.23509], [-99.76869, 35.23577], [-99.76699, 35.23668], [-99.76636, 35.23703], [-99.76281, 35.23902], [-99.75683, 35.24233], [-99.75317, 35.24436], [-99.75271, 35.24462], [-99.74899, 35.2467], [-99.74086, 35.25122], [-99.73976, 35.25182], [-99.73886, 35.25232], [-99.73773, 35.25292], [-99.73562, 35.25397], [-99.73358, 35.25491], [-99.73186, 35.25565], [-99.73029, 35.25628], [-99.72872, 35.25688], [-99.72717, 35.25742], [-99.7258, 35.25788], [-99.72504, 35.25813], [-99.72422, 35.25838], [-99.72364, 35.25855], [-99.72272, 35.25881], [-99.72178, 35.25907], [-99.72043, 35.25942], [-99.71919, 35.25972], [-99.71758, 35.26008], [-99.71635, 35.26033], [-99.71518, 35.26056], [-99.71392, 35.26078], [-99.71286, 35.26096], [-99.71159, 35.26114], [-99.71032, 35.26131], [-99.70908, 35.26146], [-99.70786, 35.26159], [-99.7063, 35.26173], [-99.7052, 35.2618], [-99.70402, 35.26188], [-99.70305, 35.26192], [-99.70172, 35.26197], [-99.7005, 35.26199], [-99.68217, 35.26194], [-99.65838, 35.26185], [-99.65767, 35.26185], [-99.652, 35.26183], [-99.65126, 35.26184], [-99.6505, 35.26184], [-99.64989, 35.26187], [-99.64884, 35.26193], [-99.64818, 35.26198], [-99.64729, 35.26208], [-99.6463, 35.26222], [-99.64541, 35.26237], [-99.64433, 35.26257], [-99.64318, 35.26284], [-99.64247, 35.26302], [-99.64155, 35.26328], [-99.64074, 35.26354], [-99.64001, 35.26379], [-99.63908, 35.26415], [-99.6382, 35.2645], [-99.63698, 35.26506], [-99.63595, 35.26557], [-99.63517, 35.266], [-99.63424, 35.26654], [-99.63346, 35.26704], [-99.63249, 35.26771], [-99.63175, 35.26825], [-99.63115, 35.26874], [-99.63052, 35.26927], [-99.62979, 35.26992], [-99.62904, 35.27067], [-99.62827, 35.27149], [-99.62762, 35.27225], [-99.62676, 35.27338], [-99.62644, 35.27382], [-99.62597, 35.27454], [-99.62555, 35.27522], [-99.625, 35.27622], [-99.62477, 35.2767], [-99.62452, 35.27721], [-99.62418, 35.27798], [-99.62379, 35.279], [-99.62353, 35.27985], [-99.62262, 35.28281], [-99.62151, 35.28646], [-99.62103, 35.28805], [-99.62075, 35.28898], [-99.61992, 35.29169], [-99.61918, 35.2941], [-99.61906, 35.29447], [-99.61888, 35.29507], [-99.61565, 35.30572], [-99.61501, 35.30788], [-99.61443, 35.30974], [-99.6142, 35.31046], [-99.61365, 35.31229], [-99.61338, 35.31308], [-99.61254, 35.31517], [-99.61222, 35.31585], [-99.61202, 35.31626], [-99.6118, 35.31666], [-99.61128, 35.31758], [-99.61104, 35.31799], [-99.61063, 35.31866], [-99.61015, 35.31941], [-99.60962, 35.32019], [-99.60919, 35.32078], [-99.6087, 35.3214], [-99.60796, 35.3223], [-99.6073, 35.32306], [-99.6065, 35.32401], [-99.60452, 35.32635], [-99.60254, 35.3287], [-99.60056, 35.33103], [-99.59858, 35.33336], [-99.59816, 35.33386], [-99.59777, 35.3343], [-99.59739, 35.33468], [-99.5972, 35.33486], [-99.59708, 35.33498], [-99.59663, 35.33538], [-99.5962, 35.33575], [-99.59561, 35.33622], [-99.59496, 35.33671], [-99.59418, 35.3373], [-99.5934, 35.33788], [-99.5927, 35.33836], [-99.59212, 35.33874], [-99.59158, 35.33909], [-99.59108, 35.33939], [-99.59027, 35.33989], [-99.5898, 35.34015], [-99.58943, 35.34036], [-99.5811, 35.3449], [-99.5804, 35.34529], [-99.57613, 35.34762], [-99.56513, 35.35363], [-99.56252, 35.35506], [-99.56145, 35.3557], [-99.56027, 35.35644], [-99.55904, 35.3573], [-99.55829, 35.35783], [-99.55749, 35.3584], [-99.556, 35.35946], [-99.55485, 35.3603], [-99.54645, 35.36632], [-99.54491, 35.36741], [-99.5441, 35.36795], [-99.54336, 35.36842], [-99.54254, 35.36892], [-99.54161, 35.36945], [-99.54037, 35.37013], [-99.53823, 35.37128], [-99.52505, 35.37845], [-99.5199, 35.38124], [-99.5187, 35.38189], [-99.51807, 35.38223], [-99.51738, 35.38259], [-99.51662, 35.38295], [-99.516, 35.38321], [-99.51538, 35.38347], [-99.51463, 35.38376], [-99.51413, 35.38394], [-99.51377, 35.38406], [-99.51293, 35.38433], [-99.51223, 35.38452], [-99.51131, 35.38476], [-99.51057, 35.38493], [-99.50993, 35.38506], [-99.50911, 35.3852], [-99.5083, 35.38532], [-99.50744, 35.38543], [-99.50658, 35.3855], [-99.50576, 35.38555], [-99.50524, 35.38557], [-99.50443, 35.38559], [-99.50181, 35.38559], [-99.50092, 35.38559], [-99.47631, 35.3856], [-99.47453, 35.38561], [-99.47269, 35.38566], [-99.47027, 35.38573], [-99.46927, 35.38577], [-99.46803, 35.38583], [-99.46642, 35.38592], [-99.46544, 35.38599], [-99.4636, 35.38611], [-99.46204, 35.38624], [-99.46061, 35.38632], [-99.4593, 35.38637], [-99.458, 35.3864], [-99.4564, 35.38642], [-99.45547, 35.38641], [-99.45421, 35.38638], [-99.45302, 35.38635], [-99.45248, 35.38633], [-99.45173, 35.38629], [-99.45089, 35.38624], [-99.44995, 35.38618], [-99.44877, 35.38608], [-99.44625, 35.38591], [-99.44474, 35.38582], [-99.44364, 35.38577], [-99.4425, 35.38572], [-99.44012, 35.38564], [-99.43843, 35.38561], [-99.43754, 35.3856], [-99.43089, 35.38559], [-99.42976, 35.38558], [-99.42883, 35.38558], [-99.42789, 35.38558], [-99.42688, 35.38558], [-99.42598, 35.38558], [-99.42106, 35.38557], [-99.41744, 35.38558], [-99.41447, 35.38558], [-99.4136, 35.38561], [-99.41274, 35.38567], [-99.41198, 35.38574], [-99.41105, 35.38587], [-99.41026, 35.38601], [-99.40943, 35.38619], [-99.40897, 35.3863], [-99.40857, 35.38641], [-99.40804, 35.38656], [-99.40746, 35.38674], [-99.40721, 35.38682], [-99.40697, 35.3869], [-99.40654, 35.38707], [-99.40565, 35.38743], [-99.40551, 35.38749], [-99.40484, 35.3878], [-99.4042, 35.38813], [-99.40357, 35.38847], [-99.40297, 35.38883], [-99.40249, 35.38914], [-99.40204, 35.38946], [-99.4016, 35.38978], [-99.40116, 35.39012], [-99.40042, 35.39074], [-99.39993, 35.39121], [-99.39905, 35.39206], [-99.39752, 35.39354], [-99.39709, 35.39395], [-99.39404, 35.39695], [-99.39101, 35.3999], [-99.38901, 35.40183], [-99.38868, 35.40215], [-99.38645, 35.40433], [-99.38583, 35.40494], [-99.38521, 35.40554], [-99.38279, 35.40791], [-99.38251, 35.40818], [-99.37929, 35.41132], [-99.37879, 35.41181], [-99.37796, 35.4126], [-99.37743, 35.41313], [-99.3769, 35.41361], [-99.37624, 35.41417], [-99.37569, 35.41464], [-99.37553, 35.41477], [-99.37517, 35.41505], [-99.37438, 35.41562], [-99.37402, 35.41589], [-99.37349, 35.41624], [-99.37288, 35.41661], [-99.37256, 35.41681], [-99.3718, 35.41725], [-99.37076, 35.41778], [-99.36931, 35.4185], [-99.36804, 35.41904], [-99.36763, 35.4192], [-99.36662, 35.41956], [-99.36528, 35.41997], [-99.36438, 35.42023], [-99.36395, 35.42034], [-99.36263, 35.42065], [-99.36198, 35.42077], [-99.36121, 35.42091], [-99.36049, 35.42102], [-99.35981, 35.42111], [-99.359, 35.4212], [-99.35834, 35.42126], [-99.35765, 35.42131], [-99.35695, 35.42135], [-99.35619, 35.42137], [-99.35542, 35.42138], [-99.32926, 35.42145], [-99.31145, 35.42152], [-99.30701, 35.42153], [-99.30611, 35.42156], [-99.30564, 35.42159], [-99.3051, 35.42163], [-99.30454, 35.42169], [-99.30405, 35.42176], [-99.30332, 35.42187], [-99.30248, 35.42204], [-99.30178, 35.4222], [-99.30103, 35.42239], [-99.30044, 35.42257], [-99.29987, 35.42276], [-99.29933, 35.42294], [-99.29872, 35.42318], [-99.29807, 35.42345], [-99.29732, 35.42377], [-99.29654, 35.4241], [-99.29588, 35.42436], [-99.29516, 35.42463], [-99.29448, 35.42486], [-99.29394, 35.42504], [-99.29351, 35.42517], [-99.29291, 35.42534], [-99.29233, 35.42549], [-99.29159, 35.42567], [-99.29099, 35.4258], [-99.28998, 35.42599], [-99.289, 35.42615], [-99.28804, 35.42627], [-99.28728, 35.42635], [-99.28655, 35.4264], [-99.28578, 35.42644], [-99.285, 35.42647], [-99.28426, 35.42648], [-99.28324, 35.42646], [-99.28248, 35.42643], [-99.28178, 35.42638], [-99.28111, 35.42632], [-99.2805, 35.42626], [-99.27983, 35.42618], [-99.27924, 35.42609], [-99.27825, 35.42593], [-99.27762, 35.4258], [-99.27692, 35.42565], [-99.27603, 35.42544], [-99.2755, 35.42529], [-99.2745, 35.425], [-99.27368, 35.42473], [-99.27294, 35.42447], [-99.27181, 35.42405], [-99.27028, 35.4235], [-99.26906, 35.42306], [-99.26796, 35.42268], [-99.26722, 35.42245], [-99.26648, 35.42225], [-99.26561, 35.42205], [-99.26442, 35.42184], [-99.26351, 35.42172], [-99.26278, 35.42165], [-99.26202, 35.4216], [-99.26126, 35.42157], [-99.25109, 35.42157], [-99.24099, 35.42158], [-99.23241, 35.42157], [-99.23126, 35.42159], [-99.23042, 35.4216], [-99.22973, 35.42163], [-99.22903, 35.42168], [-99.22829, 35.42175], [-99.22732, 35.42185], [-99.22663, 35.42194], [-99.22572, 35.42207], [-99.22491, 35.42221], [-99.22397, 35.4224], [-99.22319, 35.42256], [-99.22277, 35.42266], [-99.22169, 35.42294], [-99.22078, 35.4232], [-99.21989, 35.42348], [-99.219, 35.42379], [-99.21783, 35.42424], [-99.21697, 35.42459], [-99.21621, 35.42492], [-99.21564, 35.42519], [-99.21527, 35.42537], [-99.2144, 35.42582], [-99.21408, 35.42599], [-99.2134, 35.42638], [-99.21277, 35.42674], [-99.21078, 35.42794], [-99.20094, 35.43388], [-99.20017, 35.43434], [-99.19936, 35.4348], [-99.19864, 35.43518], [-99.19781, 35.43561], [-99.19681, 35.4361], [-99.1959, 35.43653], [-99.19477, 35.43703], [-99.19378, 35.43744], [-99.1926, 35.4379], [-99.19175, 35.4382], [-99.19098, 35.43848], [-99.19019, 35.43874], [-99.18936, 35.439], [-99.18836, 35.43929], [-99.18744, 35.43955], [-99.1863, 35.43984], [-99.18541, 35.44005], [-99.18371, 35.44041], [-99.18049, 35.44105], [-99.17867, 35.44142], [-99.17727, 35.44172], [-99.17637, 35.44193], [-99.17515, 35.44226], [-99.17435, 35.44249], [-99.17366, 35.44269], [-99.17302, 35.44291], [-99.1723, 35.44317], [-99.17098, 35.44365], [-99.17035, 35.44391], [-99.16883, 35.44457], [-99.16815, 35.44488], [-99.16749, 35.44522], [-99.16689, 35.44553], [-99.16604, 35.44599], [-99.16516, 35.44649], [-99.16426, 35.44703], [-99.16347, 35.44753], [-99.16255, 35.44816], [-99.16147, 35.44895], [-99.16044, 35.44976], [-99.1595, 35.45056], [-99.15854, 35.45141], [-99.15068, 35.45836], [-99.14724, 35.4614], [-99.14472, 35.46363], [-99.1423, 35.46575], [-99.14116, 35.46675], [-99.14048, 35.46732], [-99.13966, 35.46795], [-99.13872, 35.46865], [-99.1377, 35.46933], [-99.13679, 35.46992], [-99.13603, 35.47038], [-99.1351, 35.47092], [-99.1341, 35.47145], [-99.13308, 35.47196], [-99.132, 35.47246], [-99.13056, 35.47309], [-99.12672, 35.47474], [-99.12315, 35.47627], [-99.12188, 35.47681], [-99.11967, 35.47776], [-99.11872, 35.47818], [-99.11791, 35.47851], [-99.11733, 35.47872], [-99.11678, 35.4789], [-99.11624, 35.47907], [-99.11558, 35.47925], [-99.11496, 35.47941], [-99.11427, 35.47956], [-99.11387, 35.47964], [-99.11327, 35.47974], [-99.11269, 35.47982], [-99.11212, 35.47989], [-99.11144, 35.47995], [-99.11058, 35.48], [-99.10962, 35.48001], [-99.10512, 35.48], [-99.10173, 35.48], [-99.08166, 35.47996], [-99.06394, 35.47994], [-99.05665, 35.47993], [-99.05419, 35.47993], [-99.05131, 35.47991], [-99.05084, 35.47991], [-99.04778, 35.47992], [-99.03849, 35.4799], [-99.03197, 35.47989], [-99.03129, 35.47991], [-99.03042, 35.47994], [-99.02963, 35.47998], [-99.02897, 35.48003], [-99.02783, 35.48015], [-99.02704, 35.48025], [-99.02629, 35.48035], [-99.02583, 35.48043], [-99.02524, 35.48054], [-99.02465, 35.48065], [-99.02423, 35.48074], [-99.02391, 35.48081], [-99.02321, 35.48097], [-99.02261, 35.48112], [-99.02214, 35.48124], [-99.02147, 35.48144], [-99.0203, 35.4818], [-99.01965, 35.48202], [-99.01885, 35.48231], [-99.01781, 35.48272], [-99.0167, 35.4832], [-99.01601, 35.48353], [-99.01507, 35.484], [-99.0141, 35.48452], [-99.01306, 35.48513], [-99.01225, 35.48564], [-99.01138, 35.48623], [-99.01057, 35.48682], [-99.00946, 35.48768], [-99.00808, 35.48878], [-99.00685, 35.48975], [-99.00601, 35.49036], [-99.00535, 35.49081], [-99.00459, 35.4913], [-99.00371, 35.49184], [-99.00285, 35.49231], [-99.00196, 35.49278], [-99.00116, 35.49317], [-99.00002, 35.49368], [-98.99902, 35.49408], [-98.9979, 35.4945], [-98.99695, 35.49482], [-98.9958, 35.49517], [-98.99485, 35.49543], [-98.99391, 35.49565], [-98.99309, 35.49584], [-98.99251, 35.49595], [-98.99107, 35.49622], [-98.99023, 35.49638], [-98.98537, 35.49732], [-98.98261, 35.49785], [-98.98167, 35.49803], [-98.97924, 35.4985], [-98.97856, 35.49863], [-98.97719, 35.49889], [-98.97591, 35.49914], [-98.97479, 35.49935], [-98.97359, 35.49959], [-98.97241, 35.49981], [-98.97164, 35.49994], [-98.97112, 35.50003], [-98.97043, 35.50012], [-98.9699, 35.50019], [-98.96913, 35.50027], [-98.96795, 35.50038], [-98.96723, 35.50043], [-98.96664, 35.50046], [-98.96595, 35.50048], [-98.96504, 35.5005], [-98.96488, 35.5005], [-98.96443, 35.5005], [-98.96353, 35.50049], [-98.96273, 35.50046], [-98.96207, 35.50043], [-98.96129, 35.50037], [-98.96046, 35.50032], [-98.95875, 35.50019], [-98.9566, 35.50002], [-98.95531, 35.49993], [-98.95448, 35.49989], [-98.95371, 35.49988], [-98.95311, 35.49989], [-98.95225, 35.49993], [-98.95155, 35.49998], [-98.95097, 35.50004], [-98.95023, 35.50014], [-98.94972, 35.50022], [-98.94932, 35.5003], [-98.94841, 35.50049], [-98.94774, 35.50066], [-98.94693, 35.5009], [-98.94628, 35.50111], [-98.94544, 35.50142], [-98.94478, 35.50169], [-98.94406, 35.50201], [-98.9431, 35.50246], [-98.94128, 35.50331], [-98.92355, 35.51161], [-98.92131, 35.51265], [-98.92076, 35.51291], [-98.9202, 35.51317], [-98.91964, 35.51342], [-98.91906, 35.51366], [-98.91841, 35.51392], [-98.9178, 35.51414], [-98.91724, 35.51434], [-98.91668, 35.51453], [-98.91594, 35.51475], [-98.91507, 35.51499], [-98.91418, 35.51521], [-98.91321, 35.51543], [-98.9124, 35.51558], [-98.91158, 35.51572], [-98.91081, 35.51583], [-98.91017, 35.51591], [-98.90978, 35.51595], [-98.90929, 35.516], [-98.9087, 35.51604], [-98.90781, 35.51609], [-98.90692, 35.51612], [-98.90583, 35.51613], [-98.87634, 35.51608], [-98.87402, 35.51608], [-98.87079, 35.51608], [-98.86967, 35.51607], [-98.86645, 35.51607], [-98.86466, 35.51606], [-98.8593, 35.51606], [-98.85661, 35.51605], [-98.85517, 35.51605], [-98.854, 35.51605], [-98.85323, 35.51607], [-98.85249, 35.5161], [-98.85173, 35.51616], [-98.85095, 35.51624], [-98.85049, 35.5163], [-98.85001, 35.51636], [-98.84912, 35.51651], [-98.84805, 35.51672], [-98.84684, 35.51702], [-98.846, 35.51722], [-98.84509, 35.51747], [-98.84056, 35.51867], [-98.83835, 35.51926], [-98.83708, 35.5196], [-98.8358, 35.51994], [-98.83489, 35.52018], [-98.83308, 35.52065], [-98.83198, 35.52091], [-98.8313, 35.52107], [-98.83067, 35.5212], [-98.82982, 35.52137], [-98.82894, 35.52152], [-98.82819, 35.52165], [-98.82737, 35.52177], [-98.82649, 35.52189], [-98.82563, 35.522], [-98.82467, 35.5221], [-98.82374, 35.52218], [-98.8226, 35.52226], [-98.82158, 35.52232], [-98.82061, 35.52235], [-98.81947, 35.52237], [-98.80782, 35.52231], [-98.80203, 35.52227], [-98.79624, 35.52224], [-98.79123, 35.52222], [-98.78663, 35.52219], [-98.78227, 35.52216], [-98.78194, 35.52216], [-98.76443, 35.5221], [-98.75001, 35.52204], [-98.74137, 35.52201], [-98.74053, 35.522], [-98.73967, 35.52198], [-98.739, 35.52194], [-98.73841, 35.5219], [-98.73788, 35.52186], [-98.73727, 35.5218], [-98.73693, 35.52177], [-98.73636, 35.5217], [-98.73525, 35.52157], [-98.73449, 35.52145], [-98.7323, 35.5211], [-98.7308, 35.52085], [-98.7289, 35.52055], [-98.7279, 35.5204], [-98.72721, 35.52032], [-98.72678, 35.52028], [-98.72604, 35.52024], [-98.72525, 35.52023], [-98.72461, 35.52023], [-98.72398, 35.52024], [-98.72327, 35.52028], [-98.72231, 35.52038], [-98.72162, 35.52046], [-98.72083, 35.52057], [-98.71903, 35.52085], [-98.71817, 35.52099], [-98.71764, 35.52107], [-98.71699, 35.52116], [-98.71639, 35.52124], [-98.71535, 35.52134], [-98.71497, 35.52138], [-98.71434, 35.52143], [-98.71325, 35.5215], [-98.71277, 35.52152], [-98.71228, 35.52154], [-98.71129, 35.52156], [-98.70915, 35.52156], [-98.70797, 35.52155], [-98.7075, 35.52156], [-98.70079, 35.52156], [-98.69988, 35.52157], [-98.69937, 35.52157], [-98.69882, 35.5216], [-98.69806, 35.52168], [-98.69779, 35.52172], [-98.69748, 35.52177], [-98.69708, 35.52185], [-98.69677, 35.52192], [-98.69627, 35.52206], [-98.69582, 35.52221], [-98.69541, 35.52236], [-98.69502, 35.52251], [-98.69463, 35.52269], [-98.69441, 35.52281], [-98.69414, 35.52295], [-98.69392, 35.52308], [-98.6937, 35.52321], [-98.69338, 35.52343], [-98.69304, 35.52366], [-98.69277, 35.52387], [-98.69254, 35.52407], [-98.69219, 35.52438], [-98.692, 35.52457], [-98.69162, 35.52497], [-98.69109, 35.52555], [-98.69065, 35.52602], [-98.69001, 35.52675], [-98.68917, 35.5277], [-98.68862, 35.52828], [-98.68819, 35.52872], [-98.68791, 35.52898], [-98.6875, 35.52937], [-98.68692, 35.52985], [-98.68635, 35.53028], [-98.68587, 35.53063], [-98.68544, 35.53092], [-98.6852, 35.53108], [-98.68294, 35.5326], [-98.68057, 35.5342], [-98.6799, 35.53463], [-98.67939, 35.53493], [-98.67908, 35.53509], [-98.67878, 35.53523], [-98.6784, 35.53539], [-98.67803, 35.53553], [-98.67775, 35.53564], [-98.67741, 35.53574], [-98.67712, 35.53582], [-98.67684, 35.5359], [-98.67649, 35.53598], [-98.67617, 35.53604], [-98.67567, 35.53613], [-98.67517, 35.53618], [-98.6748, 35.5362], [-98.67441, 35.53622], [-98.67346, 35.53623], [-98.66536, 35.53623], [-98.66297, 35.53623], [-98.66202, 35.53623], [-98.65878, 35.53624], [-98.6552, 35.53624], [-98.65488, 35.53624], [-98.65365, 35.53625], [-98.64243, 35.53626], [-98.63993, 35.53626], [-98.62637, 35.53627], [-98.62012, 35.53627], [-98.60052, 35.53625], [-98.59025, 35.53625], [-98.58728, 35.53625], [-98.58636, 35.53625], [-98.58277, 35.53626], [-98.57957, 35.53626], [-98.57911, 35.53626], [-98.5711, 35.53627], [-98.57063, 35.53627], [-98.56686, 35.53628], [-98.56382, 35.53629], [-98.56105, 35.5363], [-98.56013, 35.5363], [-98.5595, 35.53629], [-98.55889, 35.53627], [-98.55842, 35.53626], [-98.55759, 35.53622], [-98.55687, 35.53618], [-98.55618, 35.53613], [-98.55518, 35.53604], [-98.55439, 35.53597], [-98.55366, 35.53588], [-98.55305, 35.53581], [-98.55219, 35.53568], [-98.55122, 35.53554], [-98.55022, 35.53537], [-98.54931, 35.53519], [-98.54831, 35.53498], [-98.54766, 35.53484], [-98.54674, 35.53462], [-98.54521, 35.53423], [-98.54373, 35.53384], [-98.5357, 35.53174], [-98.53527, 35.53163], [-98.53437, 35.53139], [-98.53339, 35.53114], [-98.53274, 35.53096], [-98.53197, 35.53076], [-98.53108, 35.53054], [-98.53021, 35.53033], [-98.52916, 35.53011], [-98.52859, 35.53], [-98.52801, 35.5299], [-98.52716, 35.52977], [-98.52603, 35.52962], [-98.52555, 35.52958], [-98.52504, 35.52953], [-98.52401, 35.52946], [-98.52317, 35.52941], [-98.52252, 35.52939], [-98.52105, 35.52939], [-98.5198, 35.52938], [-98.51846, 35.52938], [-98.51041, 35.52937], [-98.48265, 35.52934], [-98.46986, 35.52932], [-98.46923, 35.52932], [-98.46617, 35.52931], [-98.46494, 35.52931], [-98.46447, 35.52931], [-98.46359, 35.5293], [-98.46213, 35.52927], [-98.46067, 35.52922], [-98.45931, 35.52917], [-98.45826, 35.52913], [-98.45724, 35.52911], [-98.45611, 35.52908], [-98.45444, 35.52907], [-98.45289, 35.52907], [-98.4511, 35.52906], [-98.44721, 35.52905], [-98.44057, 35.52904], [-98.43844, 35.52904], [-98.43747, 35.52905], [-98.43676, 35.52907], [-98.43612, 35.52908], [-98.43552, 35.5291], [-98.43447, 35.52915], [-98.43342, 35.52918], [-98.43257, 35.5292], [-98.43141, 35.52922], [-98.43003, 35.52923], [-98.41148, 35.5292], [-98.40993, 35.52919], [-98.40909, 35.52919], [-98.40851, 35.52918], [-98.40753, 35.52917], [-98.40638, 35.52915], [-98.40546, 35.52913], [-98.40471, 35.52911], [-98.40403, 35.52908], [-98.40317, 35.52905], [-98.4021, 35.52902], [-98.40175, 35.52902], [-98.40045, 35.529], [-98.39937, 35.52901], [-98.39842, 35.52903], [-98.39741, 35.52905], [-98.3966, 35.52908], [-98.39537, 35.52911], [-98.39453, 35.52913], [-98.39367, 35.52914], [-98.3912, 35.52915], [-98.39009, 35.52915], [-98.38804, 35.52915], [-98.38596, 35.52914], [-98.38561, 35.52914], [-98.375, 35.52912], [-98.36433, 35.5291], [-98.35848, 35.52908], [-98.35648, 35.52908], [-98.35398, 35.52907], [-98.35085, 35.52906], [-98.35047, 35.52906], [-98.347, 35.52906], [-98.33681, 35.52902], [-98.33528, 35.52901], [-98.33433, 35.52899], [-98.33356, 35.52895], [-98.33281, 35.5289], [-98.33198, 35.52883], [-98.33136, 35.52877], [-98.33037, 35.52864], [-98.32958, 35.52851], [-98.32889, 35.52839], [-98.32788, 35.52819], [-98.32686, 35.52796], [-98.31957, 35.52614], [-98.31568, 35.52516], [-98.31192, 35.52423], [-98.31058, 35.52388], [-98.30901, 35.5235], [-98.30791, 35.52322], [-98.30705, 35.52303], [-98.30647, 35.52293], [-98.30606, 35.52286], [-98.30513, 35.52273], [-98.30471, 35.52268], [-98.30425, 35.52264], [-98.30377, 35.52262], [-98.30303, 35.52259], [-98.30259, 35.52258], [-98.30173, 35.52259], [-98.30119, 35.52262], [-98.30055, 35.52266], [-98.29985, 35.52273], [-98.2993, 35.52279], [-98.29864, 35.52289], [-98.29772, 35.52306], [-98.29714, 35.5232], [-98.29643, 35.52337], [-98.29584, 35.52354], [-98.29515, 35.52376], [-98.2946, 35.52395], [-98.2942, 35.5241], [-98.29383, 35.52425], [-98.29309, 35.52456], [-98.29223, 35.52498], [-98.29146, 35.52539], [-98.29057, 35.52591], [-98.28795, 35.52745], [-98.28104, 35.53152], [-98.27543, 35.53483], [-98.27479, 35.5352], [-98.27428, 35.53547], [-98.27377, 35.53571], [-98.27324, 35.53593], [-98.27268, 35.53614], [-98.27212, 35.53631], [-98.27154, 35.53647], [-98.27096, 35.5366], [-98.27039, 35.53671], [-98.27009, 35.53675], [-98.2695, 35.53683], [-98.26889, 35.53687], [-98.2683, 35.53689], [-98.26769, 35.5369], [-98.25774, 35.53669], [-98.25714, 35.53667], [-98.25653, 35.53665], [-98.25574, 35.5366], [-98.25503, 35.53654], [-98.25443, 35.53648], [-98.25354, 35.53637], [-98.25264, 35.53624], [-98.25205, 35.53615], [-98.25088, 35.53593], [-98.24519, 35.53471], [-98.24196, 35.53402], [-98.23802, 35.53318], [-98.23283, 35.53206], [-98.22808, 35.53105], [-98.22569, 35.53053], [-98.22341, 35.53004], [-98.22195, 35.52973], [-98.22075, 35.52947], [-98.21932, 35.52919], [-98.21813, 35.52899], [-98.21723, 35.52885], [-98.21635, 35.52873], [-98.21545, 35.52861], [-98.21455, 35.52851], [-98.21304, 35.52838], [-98.21153, 35.52829], [-98.21031, 35.52824], [-98.20913, 35.52822], [-98.2079, 35.52822], [-98.2067, 35.52825], [-98.20247, 35.52838], [-98.20193, 35.52839], [-98.20066, 35.52844], [-98.19914, 35.52852], [-98.19733, 35.52863], [-98.19614, 35.52872], [-98.19458, 35.52886], [-98.19235, 35.52907], [-98.19178, 35.52912], [-98.19103, 35.52918], [-98.19012, 35.52925], [-98.18922, 35.5293], [-98.18831, 35.52935], [-98.18741, 35.52938], [-98.18651, 35.52941], [-98.1858, 35.52943], [-98.18412, 35.52945], [-98.18288, 35.52946], [-98.18075, 35.5295], [-98.17878, 35.52958], [-98.17764, 35.52965], [-98.17609, 35.52975], [-98.17475, 35.52983], [-98.17359, 35.52989], [-98.17232, 35.52993], [-98.17142, 35.52996], [-98.17051, 35.52998], [-98.16881, 35.52997], [-98.16749, 35.52995], [-98.16712, 35.52994], [-98.16678, 35.52993], [-98.16235, 35.52977], [-98.15811, 35.52964], [-98.1563, 35.52959], [-98.15449, 35.52956], [-98.15267, 35.52953], [-98.15086, 35.52951], [-98.14845, 35.5295], [-98.13186, 35.52955], [-98.12362, 35.52957], [-98.12211, 35.52956], [-98.12076, 35.52954], [-98.11794, 35.52947], [-98.11726, 35.52945], [-98.11531, 35.52936], [-98.11423, 35.52931], [-98.11075, 35.5291], [-98.10907, 35.529], [-98.10729, 35.52888], [-98.10397, 35.52868], [-98.10247, 35.52859], [-98.10095, 35.52853], [-98.09944, 35.52849], [-98.09792, 35.52848], [-98.09651, 35.5285], [-98.09549, 35.52853], [-98.09417, 35.52859], [-98.09291, 35.52866], [-98.09157, 35.52876], [-98.08976, 35.52894], [-98.08767, 35.52916], [-98.08585, 35.52931], [-98.08465, 35.5294], [-98.08375, 35.52946], [-98.08253, 35.52952], [-98.08085, 35.5296], [-98.07885, 35.52965], [-98.06115, 35.5297], [-98.05826, 35.5297], [-98.05472, 35.52971], [-98.05386, 35.52971], [-98.04983, 35.52972], [-98.04807, 35.52973], [-98.04717, 35.52972], [-98.04628, 35.5297], [-98.04603, 35.52968], [-98.04558, 35.52965], [-98.04508, 35.52961], [-98.04434, 35.52952], [-98.04397, 35.52947], [-98.04373, 35.52943], [-98.04329, 35.52935], [-98.04249, 35.52919], [-98.04173, 35.52901], [-98.04128, 35.52889], [-98.04076, 35.52874], [-98.03996, 35.52849], [-98.03484, 35.52661], [-98.02697, 35.52372], [-98.0232, 35.52234], [-98.02161, 35.52176], [-98.00926, 35.51722], [-98.00636, 35.51616], [-98.0042, 35.51537], [-98.0032, 35.515], [-98.00224, 35.51466], [-98.00097, 35.51425], [-98.00032, 35.51406], [-97.99961, 35.51387], [-97.99854, 35.5136], [-97.99763, 35.5134], [-97.99648, 35.51318], [-97.99555, 35.51304], [-97.99437, 35.51287], [-97.9929, 35.51267], [-97.99151, 35.51246], [-97.98974, 35.51216], [-97.98798, 35.51184], [-97.9866, 35.51156], [-97.98521, 35.51126], [-97.98412, 35.51103], [-97.98329, 35.51083], [-97.9825, 35.51064], [-97.98144, 35.51038], [-97.97973, 35.50993], [-97.9783, 35.50953], [-97.97696, 35.50914], [-97.97595, 35.50883], [-97.97434, 35.50833], [-97.97275, 35.50779], [-97.97088, 35.50713], [-97.96902, 35.50643], [-97.9601, 35.50305], [-97.95932, 35.50275], [-97.95849, 35.50244], [-97.95754, 35.50211], [-97.95684, 35.5019], [-97.956, 35.50169], [-97.95508, 35.50148], [-97.95474, 35.50142], [-97.9539, 35.5013], [-97.95328, 35.50123], [-97.95253, 35.50115], [-97.95173, 35.50111], [-97.95098, 35.5011], [-97.95047, 35.5011], [-97.94978, 35.5011], [-97.94626, 35.50111], [-97.94303, 35.50111], [-97.93826, 35.50113], [-97.93755, 35.50112], [-97.93677, 35.50112], [-97.93534, 35.50113], [-97.93213, 35.50114], [-97.92531, 35.50115], [-97.92476, 35.50115], [-97.9194, 35.50116], [-97.91797, 35.50114], [-97.91646, 35.50109], [-97.91531, 35.50106], [-97.91419, 35.501], [-97.9129, 35.50093], [-97.91092, 35.50079], [-97.90893, 35.50064], [-97.9067, 35.50052], [-97.90452, 35.50046], [-97.90343, 35.50044], [-97.90278, 35.50043], [-97.90226, 35.50042], [-97.90163, 35.50042], [-97.8997, 35.50044], [-97.89852, 35.50046], [-97.89674, 35.50053], [-97.89372, 35.50069], [-97.89235, 35.50079], [-97.89138, 35.50087], [-97.89009, 35.50097], [-97.88872, 35.50106], [-97.88701, 35.50115], [-97.88616, 35.50118], [-97.88535, 35.5012], [-97.88388, 35.50122], [-97.88273, 35.50122], [-97.88151, 35.50121], [-97.87975, 35.50115], [-97.87862, 35.5011], [-97.87445, 35.50084], [-97.87359, 35.50079], [-97.86645, 35.50033], [-97.86117, 35.5], [-97.85963, 35.49993], [-97.85809, 35.49989], [-97.85663, 35.49987], [-97.85519, 35.49988], [-97.8539, 35.4999], [-97.85244, 35.49995], [-97.84879, 35.50008], [-97.84501, 35.50021], [-97.84425, 35.50024], [-97.84361, 35.50026], [-97.83095, 35.5007], [-97.8242, 35.50094], [-97.82163, 35.50099], [-97.81918, 35.50102], [-97.8181, 35.50101], [-97.81672, 35.501], [-97.81306, 35.50099], [-97.80964, 35.50098], [-97.79943, 35.50095], [-97.79822, 35.50093], [-97.7976, 35.5009], [-97.79693, 35.50086], [-97.79628, 35.50081], [-97.79556, 35.50074], [-97.79502, 35.50069], [-97.79431, 35.5006], [-97.79368, 35.50052], [-97.79281, 35.50039], [-97.79194, 35.50024], [-97.79132, 35.50012], [-97.79069, 35.49999], [-97.78976, 35.49979], [-97.78872, 35.49953], [-97.78782, 35.49927], [-97.78686, 35.49898], [-97.78591, 35.49867], [-97.7852, 35.49841], [-97.78449, 35.49815], [-97.78356, 35.49778], [-97.7825, 35.49732], [-97.78009, 35.49621], [-97.7781, 35.49529], [-97.77769, 35.4951], [-97.77616, 35.49439], [-97.77478, 35.49376], [-97.76796, 35.4906], [-97.76663, 35.48997], [-97.76529, 35.48932], [-97.76429, 35.4888], [-97.76352, 35.48842], [-97.76251, 35.4879], [-97.76115, 35.48718], [-97.76052, 35.48684], [-97.75997, 35.48654], [-97.75858, 35.48577], [-97.75721, 35.485], [-97.75649, 35.48458], [-97.75474, 35.48355], [-97.7504, 35.48088], [-97.7497, 35.48046], [-97.74903, 35.48007], [-97.74774, 35.47935], [-97.74714, 35.47901], [-97.74642, 35.47862], [-97.7454, 35.47809], [-97.74405, 35.47739], [-97.74267, 35.47672], [-97.73895, 35.47496], [-97.73586, 35.47351], [-97.73357, 35.47244], [-97.73133, 35.47137], [-97.72972, 35.47057], [-97.72823, 35.46982], [-97.72621, 35.46875], [-97.72487, 35.46802], [-97.72469, 35.46793], [-97.72418, 35.46765], [-97.72331, 35.46716], [-97.7222, 35.46653], [-97.72049, 35.46553], [-97.71961, 35.46504], [-97.71873, 35.46457], [-97.71783, 35.46412], [-97.71708, 35.46377], [-97.71621, 35.46339], [-97.71526, 35.463], [-97.71474, 35.4628], [-97.71393, 35.4625], [-97.7131, 35.46221], [-97.71149, 35.46172], [-97.7112, 35.46164], [-97.71029, 35.4614], [-97.70961, 35.46122], [-97.70804, 35.46089], [-97.70749, 35.46078], [-97.70693, 35.46068], [-97.70602, 35.46053], [-97.70514, 35.46041], [-97.70433, 35.46032], [-97.70354, 35.46024], [-97.70204, 35.46013], [-97.70043, 35.46007], [-97.69954, 35.46005], [-97.69838, 35.46006], [-97.69608, 35.46007], [-97.6896, 35.4601], [-97.68863, 35.46011], [-97.68188, 35.46015], [-97.68007, 35.46015], [-97.67729, 35.46017], [-97.67211, 35.46019], [-97.67015, 35.4602], [-97.66732, 35.46021], [-97.65921, 35.46025], [-97.65817, 35.46026], [-97.65024, 35.4603], [-97.64978, 35.4603], [-97.63863, 35.46035], [-97.63769, 35.46035], [-97.63436, 35.46036], [-97.63364, 35.46036], [-97.6328, 35.46035], [-97.63189, 35.46033], [-97.63071, 35.4603], [-97.62913, 35.46024], [-97.62765, 35.46019], [-97.62607, 35.46014], [-97.62428, 35.46008], [-97.62365, 35.46006], [-97.62221, 35.46003], [-97.62115, 35.46001], [-97.61921, 35.46001], [-97.61851, 35.46001], [-97.61514, 35.46001], [-97.60568, 35.46], [-97.60439, 35.46], [-97.60147, 35.46], [-97.60077, 35.46], [-97.5945, 35.45999], [-97.58895, 35.45999], [-97.58652, 35.45999], [-97.58369, 35.45999], [-97.58299, 35.45999], [-97.58181, 35.45999], [-97.58062, 35.45999], [-97.58027, 35.45999], [-97.57901, 35.45999], [-97.57848, 35.45999], [-97.57778, 35.46001], [-97.5749, 35.46013], [-97.57178, 35.46028], [-97.57047, 35.46037], [-97.57002, 35.4604], [-97.56863, 35.46049], [-97.56777, 35.46053], [-97.5674, 35.46055], [-97.56602, 35.46061], [-97.56525, 35.46064], [-97.56371, 35.4607], [-97.56245, 35.46076], [-97.56143, 35.46084], [-97.56045, 35.46093], [-97.55987, 35.46099], [-97.55936, 35.46106], [-97.55884, 35.46112], [-97.5582, 35.46121], [-97.55705, 35.46135], [-97.55667, 35.4614], [-97.5561, 35.46146], [-97.55518, 35.46153], [-97.55428, 35.46159], [-97.55301, 35.46163], [-97.55205, 35.46164], [-97.55135, 35.46164], [-97.54806, 35.46163], [-97.54713, 35.46161], [-97.5462, 35.4616], [-97.54568, 35.46156], [-97.54497, 35.4615], [-97.5445, 35.46143], [-97.54381, 35.46129], [-97.54312, 35.46115], [-97.54288, 35.46108], [-97.54185, 35.46084], [-97.54102, 35.46063], [-97.53993, 35.46037], [-97.53952, 35.46027], [-97.5387, 35.46007], [-97.53601, 35.45943], [-97.53454, 35.45907], [-97.53337, 35.45879], [-97.53185, 35.45841], [-97.53119, 35.45826], [-97.53055, 35.45811], [-97.53028, 35.45804], [-97.52977, 35.45792], [-97.52906, 35.45775], [-97.52841, 35.45759], [-97.52711, 35.45728], [-97.52555, 35.45689], [-97.52523, 35.45682], [-97.5247, 35.4567], [-97.52398, 35.45653], [-97.52354, 35.45645], [-97.52335, 35.45641], [-97.5229, 35.45635], [-97.52254, 35.4563], [-97.52217, 35.45626], [-97.52176, 35.45623], [-97.52134, 35.45621], [-97.52067, 35.4562], [-97.51968, 35.45618], [-97.51789, 35.45623], [-97.51749, 35.45622], [-97.51632, 35.4562], [-97.51365, 35.45616], [-97.51283, 35.45615], [-97.51248, 35.45616], [-97.5122, 35.45618], [-97.51172, 35.45622], [-97.51115, 35.45629], [-97.51075, 35.45636], [-97.51024, 35.45647], [-97.51002, 35.45652], [-97.50975, 35.4566], [-97.5093, 35.45673], [-97.50879, 35.45692], [-97.50841, 35.45707], [-97.50803, 35.45724], [-97.50754, 35.45748], [-97.50708, 35.45776], [-97.50656, 35.4581], [-97.50618, 35.45839], [-97.50584, 35.45866], [-97.50543, 35.45903], [-97.50449, 35.45989], [-97.50422, 35.46013], [-97.50401, 35.4603], [-97.50377, 35.46049], [-97.50352, 35.46069], [-97.50311, 35.46095], [-97.50272, 35.46118], [-97.50224, 35.46142], [-97.50203, 35.46151], [-97.50177, 35.46162], [-97.50162, 35.46168], [-97.50134, 35.46179], [-97.50104, 35.46188], [-97.50057, 35.46202], [-97.5002, 35.4621], [-97.49983, 35.46218], [-97.49948, 35.46223], [-97.49934, 35.46225], [-97.499, 35.46229], [-97.49865, 35.46232], [-97.49836, 35.46233], [-97.4981, 35.46233], [-97.49754, 35.46233], [-97.49705, 35.46231], [-97.49574, 35.46227], [-97.4944, 35.46228], [-97.49387, 35.46227], [-97.49276, 35.46226], [-97.4919, 35.46225], [-97.49124, 35.46224], [-97.48958, 35.46221], [-97.48924, 35.46221], [-97.48776, 35.46219], [-97.48683, 35.46219], [-97.48589, 35.46221], [-97.4851, 35.46224], [-97.48439, 35.46227], [-97.4839, 35.46231], [-97.48334, 35.46235], [-97.48196, 35.46247], [-97.48071, 35.46259], [-97.47892, 35.46274], [-97.47846, 35.46279], [-97.47722, 35.4629], [-97.47644, 35.46296], [-97.47545, 35.46305], [-97.47508, 35.46308], [-97.47427, 35.46315], [-97.47376, 35.46321], [-97.47345, 35.46325], [-97.47292, 35.46334], [-97.47242, 35.46345], [-97.47199, 35.46359], [-97.47179, 35.46367], [-97.47163, 35.46373], [-97.47149, 35.46379], [-97.47139, 35.46384], [-97.4711, 35.464], [-97.47079, 35.46419], [-97.47051, 35.46436], [-97.46944, 35.46501], [-97.4692, 35.46516], [-97.46894, 35.46528], [-97.46868, 35.46539], [-97.46853, 35.46544], [-97.46839, 35.46548], [-97.46828, 35.46551], [-97.46791, 35.46558], [-97.46781, 35.4656], [-97.46757, 35.46562], [-97.46737, 35.46563], [-97.46721, 35.46564], [-97.46702, 35.46564], [-97.46677, 35.46562], [-97.46644, 35.46557], [-97.46614, 35.4655], [-97.46586, 35.46541], [-97.46565, 35.46533], [-97.46537, 35.46521], [-97.46492, 35.46498], [-97.46478, 35.46491], [-97.46393, 35.46446], [-97.4629, 35.46384], [-97.4625, 35.46359], [-97.46186, 35.46315], [-97.46136, 35.46279], [-97.46077, 35.46235], [-97.45852, 35.46049], [-97.45783, 35.45995], [-97.45701, 35.45928], [-97.45669, 35.45901], [-97.4564, 35.45878], [-97.45601, 35.45851], [-97.45587, 35.45841], [-97.45558, 35.45823], [-97.45516, 35.458], [-97.45483, 35.45783], [-97.45449, 35.45767], [-97.45422, 35.45756], [-97.45395, 35.45745], [-97.45358, 35.45731], [-97.45325, 35.4572], [-97.45272, 35.45705], [-97.45217, 35.45693], [-97.45157, 35.45681], [-97.44687, 35.4559], [-97.44521, 35.45558], [-97.44316, 35.45519], [-97.44272, 35.4551], [-97.44225, 35.45499], [-97.44174, 35.45484], [-97.44135, 35.45472], [-97.44111, 35.45463], [-97.44059, 35.45442], [-97.44022, 35.45424], [-97.4399, 35.45407], [-97.43863, 35.45339], [-97.43812, 35.4531], [-97.43506, 35.45144], [-97.43462, 35.4512], [-97.4341, 35.45092], [-97.43213, 35.44987], [-97.43149, 35.44952], [-97.42964, 35.44849], [-97.42918, 35.44824], [-97.42824, 35.44772], [-97.42679, 35.44694], [-97.42531, 35.44613], [-97.42385, 35.44534], [-97.42344, 35.44512], [-97.42308, 35.44492], [-97.42253, 35.44462], [-97.42196, 35.44428], [-97.42145, 35.44395], [-97.42115, 35.44375], [-97.42091, 35.44356], [-97.42062, 35.44337], [-97.41932, 35.44243], [-97.41804, 35.44149], [-97.41634, 35.44025], [-97.41532, 35.43952], [-97.41341, 35.43813], [-97.41305, 35.43784], [-97.41261, 35.43747], [-97.41209, 35.437], [-97.41174, 35.43664], [-97.41086, 35.4357], [-97.41068, 35.43551], [-97.41041, 35.43527], [-97.41013, 35.43504], [-97.40993, 35.4349], [-97.40963, 35.43472], [-97.40939, 35.4346], [-97.40914, 35.4345], [-97.40886, 35.4344], [-97.40863, 35.43434], [-97.40835, 35.43429], [-97.40804, 35.43425], [-97.40782, 35.43423], [-97.40752, 35.43421], [-97.40694, 35.43421], [-97.40638, 35.43421], [-97.40564, 35.43421], [-97.40368, 35.43421], [-97.40115, 35.4342], [-97.4002, 35.43422], [-97.39763, 35.4342], [-97.39688, 35.43422], [-97.3965, 35.43427], [-97.39612, 35.43436], [-97.39557, 35.43455], [-97.3953, 35.43465], [-97.39509, 35.43471], [-97.39486, 35.43478], [-97.39462, 35.43484], [-97.39441, 35.43488], [-97.39412, 35.43492], [-97.39395, 35.43493], [-97.39373, 35.43494], [-97.39309, 35.43494], [-97.38837, 35.43493], [-97.38748, 35.43491], [-97.38684, 35.43488], [-97.38627, 35.43484], [-97.38552, 35.43479], [-97.38476, 35.43474], [-97.38354, 35.43466], [-97.38274, 35.43461], [-97.38147, 35.43453], [-97.38067, 35.43448], [-97.37944, 35.4344], [-97.3789, 35.43435], [-97.37854, 35.4343], [-97.37815, 35.43423], [-97.37768, 35.43414], [-97.3771, 35.43401], [-97.37663, 35.43388], [-97.3762, 35.43375], [-97.37567, 35.43358], [-97.37526, 35.43343], [-97.3747, 35.43323], [-97.36712, 35.4305], [-97.36656, 35.4303], [-97.36207, 35.4287], [-97.36065, 35.42819], [-97.35967, 35.42785], [-97.35861, 35.42748], [-97.35679, 35.42686], [-97.35425, 35.42603], [-97.35324, 35.42571], [-97.33519, 35.41999], [-97.33196, 35.41897], [-97.33112, 35.4187], [-97.33017, 35.4184], [-97.32112, 35.41552], [-97.31814, 35.41457], [-97.31777, 35.41446], [-97.31325, 35.41302], [-97.31283, 35.41288], [-97.312, 35.41261], [-97.31075, 35.41217], [-97.30953, 35.41173], [-97.30831, 35.41127], [-97.30588, 35.4103], [-97.30471, 35.40982], [-97.30356, 35.40932], [-97.29578, 35.40597], [-97.29192, 35.40431], [-97.2914, 35.40408], [-97.28563, 35.40158], [-97.28149, 35.3998], [-97.26506, 35.39272], [-97.2647, 35.39257], [-97.26383, 35.39219], [-97.2636, 35.39209], [-97.26, 35.39053], [-97.25974, 35.39042], [-97.25531, 35.38851], [-97.25324, 35.38761], [-97.25207, 35.38711], [-97.25126, 35.38677], [-97.25051, 35.38649], [-97.24987, 35.38626], [-97.24919, 35.38604], [-97.24842, 35.3858], [-97.24744, 35.38554], [-97.24655, 35.38531], [-97.24566, 35.38512], [-97.2447, 35.38494], [-97.24288, 35.38468], [-97.2419, 35.38457], [-97.24185, 35.38457], [-97.2408, 35.3845], [-97.23994, 35.38446], [-97.23898, 35.38445], [-97.23056, 35.38442], [-97.22005, 35.38439], [-97.21857, 35.38438], [-97.21307, 35.38435], [-97.21273, 35.38435], [-97.20712, 35.38434], [-97.20655, 35.38434], [-97.19518, 35.3843], [-97.19447, 35.3843], [-97.19356, 35.38429], [-97.19242, 35.38426], [-97.19126, 35.38421], [-97.19018, 35.38415], [-97.18826, 35.38402], [-97.18723, 35.38395], [-97.18634, 35.38391], [-97.18498, 35.38385], [-97.18385, 35.38383], [-97.17836, 35.38379], [-97.1783, 35.38379], [-97.17681, 35.38379], [-97.17545, 35.38381], [-97.17421, 35.38383], [-97.17304, 35.38388], [-97.17185, 35.38396], [-97.17032, 35.38405], [-97.16882, 35.38412], [-97.16734, 35.38417], [-97.1661, 35.38419], [-97.16512, 35.3842], [-97.16428, 35.3842], [-97.16104, 35.38419], [-97.16057, 35.38419], [-97.14207, 35.3841], [-97.1249, 35.38404], [-97.10897, 35.38397], [-97.10784, 35.38394], [-97.10724, 35.38392], [-97.10672, 35.3839], [-97.10565, 35.38385], [-97.1042, 35.38375], [-97.10305, 35.38369], [-97.10217, 35.38364], [-97.1011, 35.38361], [-97.1003, 35.38359], [-97.09956, 35.3836], [-97.09873, 35.38362], [-97.09766, 35.38367], [-97.09646, 35.38374], [-97.09539, 35.38379], [-97.09462, 35.38382], [-97.09397, 35.38385], [-97.09168, 35.38389], [-97.08965, 35.38389], [-97.08929, 35.38389], [-97.08654, 35.38387], [-97.0861, 35.38387], [-97.08383, 35.38384], [-97.08273, 35.3838], [-97.08207, 35.38377], [-97.08142, 35.38374], [-97.08001, 35.38364], [-97.07858, 35.3835], [-97.07698, 35.38332], [-97.0759, 35.38319], [-97.07498, 35.38305], [-97.07367, 35.38283], [-97.07236, 35.3826], [-97.0717, 35.38247], [-97.0715, 35.38243], [-97.07068, 35.38225], [-97.06928, 35.38192], [-97.06849, 35.38173], [-97.06731, 35.38143], [-97.06612, 35.38108], [-97.06519, 35.3808], [-97.06347, 35.38024], [-97.06175, 35.37963], [-97.06137, 35.37948], [-97.05964, 35.3788], [-97.05943, 35.37872], [-97.05797, 35.37818], [-97.0569, 35.37783], [-97.0557, 35.37749], [-97.05483, 35.37727], [-97.05437, 35.37716], [-97.05395, 35.37707], [-97.05248, 35.37679], [-97.05164, 35.37667], [-97.05081, 35.37656], [-97.04968, 35.37645], [-97.04861, 35.37637], [-97.04786, 35.37635], [-97.04683, 35.37633], [-97.04601, 35.37634], [-97.04528, 35.37636], [-97.0447, 35.37639], [-97.04414, 35.37644], [-97.04329, 35.37651], [-97.04226, 35.37662], [-97.04134, 35.37676], [-97.03888, 35.37717], [-97.03636, 35.3776], [-97.03549, 35.37774], [-97.03091, 35.37852], [-97.02823, 35.37896], [-97.01841, 35.38061], [-97.00971, 35.38206], [-97.00908, 35.38217], [-97.00805, 35.38234], [-97.00627, 35.38263], [-97.00393, 35.38302], [-97.00306, 35.38315], [-97.00213, 35.38327], [-97.00145, 35.38335], [-97.00095, 35.3834], [-97.00036, 35.38345], [-96.99971, 35.38349], [-96.99905, 35.38353], [-96.99879, 35.38355], [-96.99781, 35.38359], [-96.99532, 35.38361], [-96.96529, 35.38381], [-96.96431, 35.38383], [-96.96209, 35.3838], [-96.96062, 35.38377], [-96.95813, 35.38366], [-96.95691, 35.3836], [-96.95569, 35.38355], [-96.95313, 35.38349], [-96.95112, 35.38352], [-96.94318, 35.38369], [-96.93885, 35.38379], [-96.93577, 35.38384], [-96.93441, 35.38385], [-96.9335, 35.38386], [-96.9299, 35.38385], [-96.92577, 35.38383], [-96.92451, 35.38383], [-96.92205, 35.38382], [-96.9171, 35.3838], [-96.91649, 35.38379], [-96.9159, 35.38379], [-96.91571, 35.38379], [-96.9126, 35.38378], [-96.91159, 35.38378], [-96.90893, 35.38376], [-96.90675, 35.38376], [-96.90534, 35.38375], [-96.90204, 35.38373], [-96.89876, 35.38373], [-96.89835, 35.38372], [-96.89747, 35.38373], [-96.89648, 35.38375], [-96.89547, 35.38378], [-96.89454, 35.38382], [-96.89341, 35.38388], [-96.89283, 35.38392], [-96.89227, 35.38396], [-96.89121, 35.38405], [-96.89, 35.38415], [-96.88907, 35.38426], [-96.88808, 35.38437], [-96.88708, 35.3845], [-96.88595, 35.38465], [-96.88503, 35.38479], [-96.88346, 35.38505], [-96.88149, 35.38539], [-96.87838, 35.38592], [-96.87667, 35.38622], [-96.87411, 35.38668], [-96.87155, 35.38716], [-96.86845, 35.38777], [-96.86617, 35.38824], [-96.86504, 35.38847], [-96.8619, 35.38912], [-96.8605, 35.3894], [-96.85978, 35.38954], [-96.85891, 35.38969], [-96.85792, 35.38983], [-96.85707, 35.38994], [-96.85641, 35.39001], [-96.8556, 35.39007], [-96.85498, 35.39011], [-96.8541, 35.39016], [-96.85339, 35.39017], [-96.85255, 35.39017], [-96.85192, 35.39017], [-96.85142, 35.39015], [-96.85066, 35.39012], [-96.85014, 35.39008], [-96.84957, 35.39004], [-96.84876, 35.38997], [-96.84823, 35.38991], [-96.84753, 35.38982], [-96.84677, 35.38971], [-96.84583, 35.38955], [-96.84479, 35.38935], [-96.84362, 35.38911], [-96.83691, 35.38773], [-96.83339, 35.38701], [-96.82878, 35.38606], [-96.82637, 35.38556], [-96.82496, 35.38528], [-96.82366, 35.38505], [-96.82276, 35.38492], [-96.82186, 35.38478], [-96.82088, 35.38464], [-96.81916, 35.38446], [-96.81779, 35.38434], [-96.81637, 35.38424], [-96.81507, 35.38418], [-96.81379, 35.38414], [-96.81252, 35.38412], [-96.81109, 35.3841], [-96.80729, 35.38406], [-96.80686, 35.38405], [-96.80223, 35.38401], [-96.79581, 35.38393], [-96.78945, 35.38386], [-96.78575, 35.38382], [-96.78371, 35.38383], [-96.78203, 35.38384], [-96.77979, 35.3839], [-96.77753, 35.38397], [-96.77674, 35.384], [-96.77393, 35.3841], [-96.77113, 35.38419], [-96.76968, 35.38422], [-96.76824, 35.38425], [-96.76706, 35.38427], [-96.76314, 35.38431], [-96.76114, 35.38431], [-96.75943, 35.38431], [-96.75482, 35.3843], [-96.7441, 35.3843], [-96.74239, 35.3843], [-96.74173, 35.3843], [-96.73867, 35.38427], [-96.73719, 35.38423], [-96.73643, 35.38421], [-96.73566, 35.38417], [-96.7343, 35.3841], [-96.73297, 35.38401], [-96.73199, 35.38395], [-96.73136, 35.38392], [-96.73026, 35.38388], [-96.72969, 35.38386], [-96.72912, 35.38385], [-96.72745, 35.38385], [-96.72636, 35.38387], [-96.72384, 35.38395], [-96.72252, 35.38398], [-96.71692, 35.38415], [-96.71552, 35.38419], [-96.71375, 35.3842], [-96.71213, 35.38418], [-96.71094, 35.38415], [-96.70976, 35.3841], [-96.70838, 35.38403], [-96.70768, 35.38398], [-96.70678, 35.38393], [-96.70582, 35.38386], [-96.70467, 35.38379], [-96.70374, 35.38376], [-96.70277, 35.38373], [-96.70218, 35.38371], [-96.70103, 35.3837], [-96.70023, 35.38369], [-96.69945, 35.3837], [-96.69791, 35.38374], [-96.69654, 35.3838], [-96.69481, 35.38389], [-96.69256, 35.38407], [-96.69143, 35.38416], [-96.69059, 35.38422], [-96.68984, 35.38426], [-96.68921, 35.38428], [-96.6887, 35.3843], [-96.68811, 35.3843], [-96.68747, 35.38431], [-96.687, 35.3843], [-96.6862, 35.38429], [-96.68538, 35.38425], [-96.68437, 35.38419], [-96.6838, 35.38415], [-96.68307, 35.38408], [-96.68133, 35.38389], [-96.68045, 35.3838], [-96.6793, 35.3837], [-96.67857, 35.38365], [-96.67783, 35.38361], [-96.67637, 35.38354], [-96.67515, 35.38351], [-96.67161, 35.38349], [-96.66936, 35.38348], [-96.66686, 35.38347], [-96.66649, 35.38347], [-96.6633, 35.38346], [-96.66188, 35.38345], [-96.65766, 35.38344], [-96.65652, 35.38345], [-96.65538, 35.38347], [-96.65426, 35.3835], [-96.65325, 35.38355], [-96.65247, 35.38359], [-96.65169, 35.38364], [-96.65063, 35.38372], [-96.64963, 35.3838], [-96.64846, 35.38391], [-96.64727, 35.38405], [-96.64649, 35.38414], [-96.64572, 35.38425], [-96.63857, 35.38522], [-96.63775, 35.38533], [-96.63649, 35.38549], [-96.6347, 35.38565], [-96.63406, 35.38569], [-96.63261, 35.38574], [-96.6317, 35.38575], [-96.63082, 35.38574], [-96.62995, 35.38572], [-96.62913, 35.38568], [-96.62836, 35.38563], [-96.62733, 35.38554], [-96.62529, 35.38533], [-96.62457, 35.38526], [-96.62371, 35.38519], [-96.62277, 35.38511], [-96.62117, 35.385], [-96.61958, 35.38491], [-96.61818, 35.38485], [-96.61737, 35.38483], [-96.61581, 35.38479], [-96.61423, 35.38478], [-96.61325, 35.38477], [-96.61135, 35.38478], [-96.60825, 35.38478], [-96.60606, 35.38477], [-96.60069, 35.38477], [-96.60033, 35.38477], [-96.5971, 35.38477], [-96.59425, 35.38476], [-96.59188, 35.38476], [-96.59036, 35.38475], [-96.58766, 35.38472], [-96.58587, 35.38468], [-96.58362, 35.38463], [-96.57936, 35.38448], [-96.56545, 35.38382], [-96.56497, 35.38381], [-96.56341, 35.38372], [-96.56213, 35.38363], [-96.5607, 35.38351], [-96.55926, 35.38335], [-96.55839, 35.38325], [-96.5573, 35.38312], [-96.55625, 35.38297], [-96.55506, 35.38279], [-96.5545, 35.3827], [-96.55381, 35.38258], [-96.5526, 35.38236], [-96.55199, 35.38224], [-96.55133, 35.3821], [-96.55056, 35.38194], [-96.54982, 35.38178], [-96.5493, 35.38166], [-96.54822, 35.38142], [-96.54719, 35.38121], [-96.54551, 35.38091], [-96.54429, 35.38073], [-96.54325, 35.38059], [-96.5422, 35.38047], [-96.54087, 35.38035], [-96.53974, 35.38027], [-96.53894, 35.38022], [-96.53817, 35.38019], [-96.53715, 35.38017], [-96.53561, 35.38017], [-96.53476, 35.38018], [-96.53404, 35.38019], [-96.53323, 35.38023], [-96.53211, 35.3803], [-96.53139, 35.38035], [-96.53072, 35.38041], [-96.52985, 35.3805], [-96.52893, 35.3806], [-96.52809, 35.38072], [-96.52677, 35.38092], [-96.52553, 35.38112], [-96.52448, 35.3813], [-96.52335, 35.38149], [-96.5211, 35.38187], [-96.51764, 35.38245], [-96.51467, 35.38295], [-96.5117, 35.38345], [-96.50881, 35.38394], [-96.50599, 35.3844], [-96.50476, 35.3846], [-96.50323, 35.38483], [-96.50249, 35.38493], [-96.5014, 35.38505], [-96.50057, 35.38513], [-96.49991, 35.38519], [-96.49908, 35.38525], [-96.49847, 35.38528], [-96.49802, 35.38531], [-96.49762, 35.38532], [-96.49694, 35.38534], [-96.49593, 35.38536], [-96.4949, 35.38536], [-96.4934, 35.38534], [-96.49215, 35.38528], [-96.49116, 35.38522], [-96.48727, 35.38496], [-96.48342, 35.38471], [-96.48121, 35.38462], [-96.479, 35.38457], [-96.47765, 35.38456], [-96.47681, 35.38456], [-96.47589, 35.38457], [-96.47416, 35.3846], [-96.47249, 35.38466], [-96.47081, 35.38474], [-96.46872, 35.38488], [-96.46764, 35.38496], [-96.46656, 35.38505], [-96.46504, 35.3852], [-96.46409, 35.38531], [-96.46315, 35.38542], [-96.45593, 35.38643], [-96.4549, 35.38659], [-96.45349, 35.38679], [-96.45278, 35.38688], [-96.45205, 35.38697], [-96.45126, 35.38704], [-96.45052, 35.3871], [-96.44956, 35.38717], [-96.44877, 35.3872], [-96.44785, 35.38723], [-96.44718, 35.38725], [-96.4465, 35.38725], [-96.44552, 35.38723], [-96.44456, 35.3872], [-96.44385, 35.38716], [-96.44276, 35.38709], [-96.44173, 35.387], [-96.44062, 35.3869], [-96.43854, 35.38672], [-96.43741, 35.38662], [-96.43374, 35.38629], [-96.43289, 35.38621], [-96.43054, 35.386], [-96.42988, 35.38595], [-96.42924, 35.38592], [-96.42836, 35.38588], [-96.42757, 35.38588], [-96.42655, 35.38588], [-96.42589, 35.38591], [-96.42497, 35.38595], [-96.42401, 35.38603], [-96.42356, 35.38607], [-96.4227, 35.38616], [-96.42198, 35.38626], [-96.42143, 35.38634], [-96.4208, 35.38644], [-96.4198, 35.38662], [-96.41906, 35.38678], [-96.41832, 35.38695], [-96.41751, 35.38716], [-96.41673, 35.38737], [-96.4162, 35.38753], [-96.41555, 35.38773], [-96.4148, 35.38798], [-96.41378, 35.38836], [-96.41315, 35.38861], [-96.41262, 35.38883], [-96.40821, 35.39078], [-96.4063, 35.39164], [-96.40539, 35.39205], [-96.40226, 35.39344], [-96.39723, 35.39569], [-96.39632, 35.39608], [-96.39493, 35.39671], [-96.39391, 35.39716], [-96.39285, 35.39763], [-96.39121, 35.39835], [-96.39037, 35.39871], [-96.38936, 35.39912], [-96.38788, 35.39968], [-96.38663, 35.40012], [-96.38516, 35.40061], [-96.38411, 35.40094], [-96.38335, 35.40115], [-96.38257, 35.40137], [-96.38159, 35.40163], [-96.38046, 35.40191], [-96.37924, 35.40219], [-96.37809, 35.40244], [-96.37612, 35.40289], [-96.37307, 35.40358], [-96.37256, 35.40369], [-96.37093, 35.40406], [-96.36937, 35.40442], [-96.36882, 35.40455], [-96.36816, 35.40471], [-96.36748, 35.40488], [-96.367, 35.405], [-96.3663, 35.40518], [-96.36544, 35.40541], [-96.36451, 35.40565], [-96.36359, 35.4059], [-96.36286, 35.4061], [-96.36241, 35.40623], [-96.36165, 35.40644], [-96.36062, 35.40675], [-96.35943, 35.4071], [-96.35896, 35.40724], [-96.35833, 35.40744], [-96.3568, 35.40792], [-96.35535, 35.40839], [-96.35393, 35.40887], [-96.35294, 35.40919], [-96.35085, 35.40991], [-96.3499, 35.41023], [-96.348, 35.41088], [-96.34625, 35.41147], [-96.34497, 35.41189], [-96.34273, 35.41266], [-96.34103, 35.41324], [-96.33981, 35.41365], [-96.33913, 35.41388], [-96.33859, 35.41406], [-96.33787, 35.41427], [-96.33738, 35.41441], [-96.33651, 35.41464], [-96.33566, 35.41484], [-96.33511, 35.41496], [-96.3345, 35.41509], [-96.33374, 35.41523], [-96.33283, 35.41539], [-96.33198, 35.41551], [-96.33145, 35.41558], [-96.33116, 35.41561], [-96.33029, 35.4157], [-96.32973, 35.41576], [-96.32896, 35.41581], [-96.32834, 35.41585], [-96.32721, 35.41589], [-96.32602, 35.41592], [-96.32508, 35.41596], [-96.32431, 35.41601], [-96.32336, 35.41611], [-96.32234, 35.41624], [-96.32131, 35.4164], [-96.32042, 35.41657], [-96.31968, 35.41674], [-96.31888, 35.41694], [-96.31822, 35.41711], [-96.31763, 35.41728], [-96.31726, 35.41739], [-96.3165, 35.41765], [-96.31511, 35.41818], [-96.31452, 35.41843], [-96.31395, 35.41869], [-96.31253, 35.41935], [-96.31182, 35.41967], [-96.31128, 35.4199], [-96.31072, 35.42013], [-96.31024, 35.4203], [-96.3097, 35.4205], [-96.30916, 35.42067], [-96.30809, 35.421], [-96.30736, 35.4212], [-96.30671, 35.42136], [-96.30565, 35.42158], [-96.30515, 35.42168], [-96.30396, 35.42187], [-96.30295, 35.42199], [-96.30234, 35.42205], [-96.30178, 35.42209], [-96.29989, 35.42219], [-96.29951, 35.4222], [-96.29521, 35.42231], [-96.29316, 35.42237], [-96.29132, 35.42241], [-96.28951, 35.42247], [-96.28827, 35.42251], [-96.28734, 35.42254], [-96.28619, 35.42261], [-96.28526, 35.42268], [-96.2841, 35.42278], [-96.28313, 35.42287], [-96.28225, 35.42297], [-96.28097, 35.42314], [-96.28001, 35.42328], [-96.27901, 35.42345], [-96.27784, 35.42366], [-96.27672, 35.42388], [-96.275, 35.42425], [-96.27361, 35.42455], [-96.27323, 35.42464], [-96.26776, 35.42582], [-96.26658, 35.42607], [-96.26546, 35.42629], [-96.26456, 35.42646], [-96.26422, 35.42652], [-96.26347, 35.42665], [-96.26284, 35.42675], [-96.26145, 35.42699], [-96.26056, 35.42713], [-96.25964, 35.42727], [-96.25821, 35.42746], [-96.25712, 35.42759], [-96.25595, 35.42772], [-96.25486, 35.42783], [-96.25358, 35.42794], [-96.25174, 35.42808], [-96.25106, 35.42813], [-96.25, 35.42819], [-96.24833, 35.42829], [-96.24705, 35.42833], [-96.2467, 35.42833], [-96.24493, 35.42836], [-96.24371, 35.42836], [-96.24261, 35.42836], [-96.2414, 35.42835], [-96.24018, 35.42831], [-96.23775, 35.42824], [-96.23289, 35.42811], [-96.22715, 35.42795], [-96.22369, 35.42785], [-96.2224, 35.42782], [-96.221, 35.42782], [-96.21991, 35.42784], [-96.21902, 35.42786], [-96.21823, 35.4279], [-96.2176, 35.42793], [-96.21668, 35.42799], [-96.21634, 35.42801], [-96.21526, 35.4281], [-96.21437, 35.42819], [-96.21312, 35.42832], [-96.21171, 35.42851], [-96.21147, 35.42854], [-96.21035, 35.42869], [-96.20966, 35.42878], [-96.2081, 35.42897], [-96.20703, 35.42912], [-96.2056, 35.4293], [-96.20458, 35.42943], [-96.20324, 35.42961], [-96.20212, 35.42975], [-96.20116, 35.42986], [-96.20009, 35.42996], [-96.19938, 35.43003], [-96.19873, 35.43008], [-96.19777, 35.43014], [-96.19641, 35.4302], [-96.19566, 35.43023], [-96.1944, 35.43027], [-96.19377, 35.43026], [-96.19238, 35.43025], [-96.19122, 35.43021], [-96.19021, 35.43017], [-96.1893, 35.43011], [-96.18789, 35.43], [-96.1872, 35.42992], [-96.18639, 35.42981], [-96.18556, 35.42971], [-96.18433, 35.42953], [-96.1833, 35.42935], [-96.18227, 35.42919], [-96.18131, 35.42902], [-96.1805, 35.42887], [-96.17921, 35.42867], [-96.17802, 35.42851], [-96.17686, 35.42836], [-96.17605, 35.42827], [-96.17506, 35.42818], [-96.1734, 35.42805], [-96.17235, 35.428], [-96.17157, 35.42796], [-96.17081, 35.42792], [-96.17002, 35.42789], [-96.16839, 35.42779], [-96.16661, 35.42771], [-96.1649, 35.42762], [-96.16311, 35.42752], [-96.16249, 35.42749], [-96.16078, 35.42743], [-96.15942, 35.42741], [-96.1582, 35.42742], [-96.1568, 35.42745], [-96.15584, 35.42749], [-96.15493, 35.42753], [-96.15404, 35.42759], [-96.15341, 35.42764], [-96.15228, 35.42774], [-96.15097, 35.42788], [-96.14992, 35.42801], [-96.14875, 35.42817], [-96.14769, 35.42834], [-96.14668, 35.42851], [-96.14575, 35.42867], [-96.14488, 35.42882], [-96.14474, 35.42885], [-96.14371, 35.42903], [-96.14144, 35.42941], [-96.13927, 35.42978], [-96.13522, 35.43048], [-96.13446, 35.43062], [-96.13364, 35.43075], [-96.1325, 35.43095], [-96.13138, 35.43112], [-96.13051, 35.43123], [-96.12963, 35.43133], [-96.12901, 35.4314], [-96.12817, 35.43147], [-96.12757, 35.43152], [-96.12648, 35.43159], [-96.12572, 35.43162], [-96.125, 35.43164], [-96.12417, 35.43167], [-96.12333, 35.43167], [-96.12295, 35.43167], [-96.12152, 35.43164], [-96.12069, 35.43162], [-96.11985, 35.43157], [-96.11873, 35.43149], [-96.1171, 35.43133], [-96.11576, 35.43118], [-96.11499, 35.43107], [-96.11411, 35.43094], [-96.11306, 35.43077], [-96.11185, 35.43054], [-96.10888, 35.42996], [-96.10763, 35.42972], [-96.10552, 35.42932], [-96.10156, 35.42856], [-96.10042, 35.42836], [-96.09967, 35.42824], [-96.09827, 35.42804], [-96.09755, 35.42796], [-96.0966, 35.42786], [-96.09551, 35.42776], [-96.09433, 35.42767], [-96.09275, 35.42759], [-96.09223, 35.42758], [-96.09162, 35.42757], [-96.08781, 35.42754], [-96.08746, 35.42754], [-96.08165, 35.4275], [-96.07244, 35.42746], [-96.07078, 35.42744], [-96.06917, 35.42744], [-96.06811, 35.42743], [-96.06715, 35.42745], [-96.06635, 35.42747], [-96.06558, 35.42749], [-96.06471, 35.42753], [-96.06386, 35.42759], [-96.06285, 35.42766], [-96.06203, 35.42773], [-96.06115, 35.42782], [-96.05996, 35.42795], [-96.05925, 35.42804], [-96.05885, 35.4281], [-96.05798, 35.42822], [-96.05713, 35.42835], [-96.0561, 35.42853], [-96.05359, 35.42901], [-96.05226, 35.42926], [-96.05056, 35.42958], [-96.04889, 35.4299], [-96.04564, 35.43052], [-96.04431, 35.43077], [-96.04296, 35.43103], [-96.04125, 35.43137], [-96.03984, 35.43162], [-96.03909, 35.43174], [-96.03842, 35.43184], [-96.03782, 35.43192], [-96.03718, 35.432], [-96.03629, 35.43209], [-96.03565, 35.43215], [-96.03497, 35.43221], [-96.03398, 35.43226], [-96.03312, 35.4323], [-96.03219, 35.43233], [-96.03111, 35.43233], [-96.0282, 35.43231], [-96.02585, 35.43229], [-96.02476, 35.43229], [-96.02366, 35.43232], [-96.02256, 35.43238], [-96.02118, 35.43247], [-96.02026, 35.43255], [-96.01926, 35.43265], [-96.01841, 35.43275], [-96.01748, 35.43287], [-96.01716, 35.43292], [-96.01659, 35.433], [-96.01546, 35.43318], [-96.01464, 35.4333], [-96.01238, 35.43364], [-96.01081, 35.43382], [-96.01023, 35.43387], [-96.00966, 35.43392], [-96.00874, 35.43396], [-96.00773, 35.434], [-96.00706, 35.43401], [-96.00594, 35.43401], [-96.00492, 35.43398], [-96.00383, 35.43392], [-96.00274, 35.43384], [-96.00128, 35.43371], [-95.99981, 35.43359], [-95.99808, 35.43344], [-95.99424, 35.4331], [-95.99365, 35.43305], [-95.993, 35.433], [-95.99236, 35.43294], [-95.99116, 35.43285], [-95.99023, 35.4328], [-95.98873, 35.43271], [-95.98795, 35.43268], [-95.98611, 35.43262], [-95.98552, 35.43261], [-95.98536, 35.43261], [-95.98461, 35.4326], [-95.98306, 35.43259], [-95.98169, 35.43259], [-95.98113, 35.43259], [-95.97876, 35.43258], [-95.97824, 35.43257], [-95.97726, 35.43254], [-95.97606, 35.43249], [-95.97511, 35.43242], [-95.97464, 35.43239], [-95.97419, 35.43236], [-95.97345, 35.43229], [-95.97265, 35.43222], [-95.97185, 35.43213], [-95.97129, 35.43206], [-95.97046, 35.43194], [-95.9664, 35.43137], [-95.96521, 35.43119], [-95.96071, 35.43054], [-95.96011, 35.43047], [-95.95952, 35.43041], [-95.95931, 35.43039], [-95.95872, 35.43035], [-95.95805, 35.43031], [-95.95748, 35.43029], [-95.95642, 35.43029], [-95.95576, 35.4303], [-95.95522, 35.43033], [-95.95448, 35.43037], [-95.95406, 35.43041], [-95.95331, 35.43049], [-95.95261, 35.43058], [-95.95222, 35.43064], [-95.95183, 35.43071], [-95.95101, 35.43086], [-95.94963, 35.43117], [-95.94871, 35.43138], [-95.94769, 35.43161], [-95.94666, 35.43182], [-95.94537, 35.43206], [-95.94481, 35.43215], [-95.94403, 35.43227], [-95.94314, 35.43239], [-95.94236, 35.43247], [-95.94138, 35.43256], [-95.94059, 35.43262], [-95.93981, 35.43267], [-95.93911, 35.4327], [-95.93838, 35.43273], [-95.93766, 35.43273], [-95.93681, 35.43274], [-95.93549, 35.43271], [-95.93466, 35.43268], [-95.93374, 35.43262], [-95.93305, 35.43257], [-95.93224, 35.4325], [-95.93136, 35.4324], [-95.93037, 35.43228], [-95.91925, 35.43081], [-95.91563, 35.43033], [-95.91517, 35.43027], [-95.91084, 35.4297], [-95.90995, 35.4296], [-95.90925, 35.42954], [-95.90863, 35.42949], [-95.90807, 35.42945], [-95.90744, 35.42941], [-95.9069, 35.42939], [-95.90603, 35.42936], [-95.90518, 35.42935], [-95.90399, 35.42937], [-95.90335, 35.42939], [-95.90272, 35.42942], [-95.90192, 35.42946], [-95.90127, 35.42951], [-95.90022, 35.42961], [-95.89966, 35.42967], [-95.89913, 35.42973], [-95.89838, 35.42984], [-95.89769, 35.42995], [-95.89713, 35.43004], [-95.89286, 35.4308], [-95.89207, 35.43093], [-95.89127, 35.43105], [-95.89055, 35.43116], [-95.88968, 35.43127], [-95.88886, 35.43137], [-95.88818, 35.43145], [-95.88655, 35.43162], [-95.88561, 35.4317], [-95.88449, 35.43178], [-95.88247, 35.43189], [-95.8816, 35.43192], [-95.88059, 35.43195], [-95.87982, 35.43197], [-95.87875, 35.43198], [-95.87744, 35.43197], [-95.87553, 35.43193], [-95.87534, 35.43192], [-95.87254, 35.43187], [-95.87127, 35.43187], [-95.86954, 35.4319], [-95.86775, 35.43199], [-95.86624, 35.43209], [-95.865, 35.4322], [-95.86379, 35.43232], [-95.86243, 35.43247], [-95.86156, 35.43255], [-95.86038, 35.43262], [-95.85945, 35.43267], [-95.85848, 35.43271], [-95.85757, 35.43272], [-95.85691, 35.43273], [-95.8563, 35.43272], [-95.85459, 35.43268], [-95.85323, 35.43262], [-95.85233, 35.4326], [-95.85167, 35.43261], [-95.85098, 35.43263], [-95.85006, 35.43269], [-95.84947, 35.43275], [-95.84872, 35.43284], [-95.84808, 35.43293], [-95.84753, 35.43303], [-95.84688, 35.43316], [-95.84641, 35.43327], [-95.84596, 35.43338], [-95.84556, 35.43349], [-95.84471, 35.43373], [-95.84387, 35.43397], [-95.84055, 35.43493], [-95.84007, 35.43507], [-95.83871, 35.43547], [-95.83805, 35.43565], [-95.83764, 35.43576], [-95.83718, 35.43587], [-95.83661, 35.436], [-95.83599, 35.43613], [-95.83533, 35.43624], [-95.83472, 35.43635], [-95.83409, 35.43643], [-95.83353, 35.4365], [-95.83309, 35.43655], [-95.83239, 35.43661], [-95.83191, 35.43664], [-95.83054, 35.4367], [-95.82961, 35.4367], [-95.82885, 35.43669], [-95.82785, 35.43664], [-95.82702, 35.43657], [-95.82608, 35.43647], [-95.82529, 35.43637], [-95.82447, 35.43624], [-95.82333, 35.43601], [-95.82224, 35.43576], [-95.81884, 35.43488], [-95.81624, 35.43422], [-95.81356, 35.43354], [-95.81281, 35.43337], [-95.81196, 35.4332], [-95.81149, 35.43312], [-95.81085, 35.43301], [-95.81001, 35.43289], [-95.80945, 35.43283], [-95.80894, 35.43278], [-95.80813, 35.43271], [-95.80744, 35.43267], [-95.80687, 35.43265], [-95.80631, 35.43264], [-95.8055, 35.43264], [-95.80495, 35.43265], [-95.80442, 35.43267], [-95.8037, 35.4327], [-95.80314, 35.43275], [-95.80246, 35.4328], [-95.80189, 35.43287], [-95.80134, 35.43294], [-95.80065, 35.43304], [-95.79996, 35.43316], [-95.79922, 35.4333], [-95.79878, 35.4334], [-95.79802, 35.43357], [-95.79734, 35.43374], [-95.79664, 35.43394], [-95.7961, 35.4341], [-95.79537, 35.43433], [-95.7946, 35.43459], [-95.794, 35.43483], [-95.79341, 35.43506], [-95.79305, 35.43522], [-95.79265, 35.43539], [-95.79203, 35.43568], [-95.79165, 35.43586], [-95.79135, 35.43601], [-95.79042, 35.43649], [-95.78898, 35.43726], [-95.78761, 35.43797], [-95.78656, 35.43852], [-95.78517, 35.43925], [-95.78381, 35.43996], [-95.78323, 35.44025], [-95.78249, 35.44058], [-95.78185, 35.44086], [-95.78118, 35.44111], [-95.78025, 35.44144], [-95.77962, 35.44165], [-95.77904, 35.44182], [-95.77814, 35.44207], [-95.77742, 35.44226], [-95.77644, 35.44255], [-95.77544, 35.44286], [-95.77461, 35.44314], [-95.77372, 35.44346], [-95.77291, 35.44377], [-95.77179, 35.44421], [-95.76757, 35.44589], [-95.76653, 35.44629], [-95.76526, 35.44673], [-95.76425, 35.44706], [-95.76311, 35.4474], [-95.7617, 35.44779], [-95.76088, 35.448], [-95.76001, 35.44821], [-95.7594, 35.44834], [-95.75855, 35.44852], [-95.75768, 35.44869], [-95.75638, 35.44891], [-95.7555, 35.44905], [-95.75413, 35.44923], [-95.75333, 35.44933], [-95.75286, 35.44938], [-95.75216, 35.44944], [-95.75144, 35.4495], [-95.75074, 35.44955], [-95.75003, 35.44959], [-95.74892, 35.44964], [-95.74607, 35.44971], [-95.74321, 35.44978], [-95.74035, 35.44986], [-95.73754, 35.44997], [-95.73639, 35.45002], [-95.73327, 35.45019], [-95.73201, 35.45027], [-95.72981, 35.45043], [-95.72761, 35.45061], [-95.72415, 35.45093], [-95.72241, 35.45109], [-95.72178, 35.45115], [-95.72064, 35.45125], [-95.71964, 35.45133], [-95.7189, 35.45138], [-95.7181, 35.45144], [-95.71656, 35.45153], [-95.71621, 35.45154], [-95.71504, 35.4516], [-95.71387, 35.45164], [-95.71198, 35.45169], [-95.71137, 35.4517], [-95.70972, 35.45171], [-95.70835, 35.45173], [-95.70664, 35.45177], [-95.70577, 35.4518], [-95.70489, 35.45183], [-95.70261, 35.45195], [-95.70147, 35.45203], [-95.70036, 35.4521], [-95.69909, 35.45221], [-95.69776, 35.45233], [-95.69606, 35.4525], [-95.69361, 35.45277], [-95.69054, 35.45311], [-95.689, 35.45328], [-95.68821, 35.45335], [-95.68731, 35.45344], [-95.68557, 35.45359], [-95.68462, 35.45367], [-95.68388, 35.45372], [-95.68241, 35.45382], [-95.6809, 35.45391], [-95.67937, 35.45399], [-95.67784, 35.45406], [-95.6764, 35.45411], [-95.67494, 35.45415], [-95.67348, 35.45417], [-95.67203, 35.45418], [-95.66429, 35.45418], [-95.66041, 35.45417], [-95.65656, 35.45417], [-95.65523, 35.45419], [-95.65455, 35.45421], [-95.65394, 35.45423], [-95.65274, 35.45429], [-95.65167, 35.45436], [-95.65078, 35.45442], [-95.64956, 35.45452], [-95.64875, 35.45459], [-95.64741, 35.45474], [-95.64611, 35.4549], [-95.64562, 35.45496], [-95.64429, 35.45515], [-95.64352, 35.45528], [-95.64268, 35.45541], [-95.64238, 35.45547], [-95.64032, 35.45585], [-95.6389, 35.45615], [-95.63756, 35.45645], [-95.63554, 35.45691], [-95.63372, 35.45732], [-95.63204, 35.45771], [-95.63081, 35.45798], [-95.62927, 35.45833], [-95.62859, 35.45847], [-95.62786, 35.45861], [-95.62701, 35.45876], [-95.62603, 35.45892], [-95.62511, 35.45905], [-95.62423, 35.45915], [-95.62334, 35.45926], [-95.62249, 35.45934], [-95.62176, 35.4594], [-95.62113, 35.45944], [-95.62, 35.4595], [-95.61864, 35.45955], [-95.61759, 35.45956], [-95.61629, 35.45955], [-95.61517, 35.45952], [-95.61429, 35.45949], [-95.61339, 35.45943], [-95.61258, 35.45937], [-95.61151, 35.45927], [-95.61017, 35.45915], [-95.60862, 35.459], [-95.59848, 35.45804], [-95.59733, 35.45793], [-95.59637, 35.45783], [-95.59438, 35.45764], [-95.59273, 35.45749], [-95.58869, 35.45711], [-95.58822, 35.45708], [-95.5872, 35.45701], [-95.58626, 35.45694], [-95.58496, 35.45689], [-95.58368, 35.45684], [-95.5824, 35.45683], [-95.57994, 35.45683], [-95.57866, 35.45686], [-95.57734, 35.45691], [-95.57461, 35.45705], [-95.57298, 35.45715], [-95.57014, 35.4573], [-95.56639, 35.45751], [-95.56342, 35.45767], [-95.56043, 35.45783], [-95.55764, 35.45798], [-95.55721, 35.458], [-95.55555, 35.4581], [-95.55396, 35.45818], [-95.55337, 35.45821], [-95.55145, 35.45829], [-95.55024, 35.45833], [-95.5493, 35.45835], [-95.54783, 35.45838], [-95.54541, 35.45839], [-95.54433, 35.45839], [-95.54293, 35.45838], [-95.54048, 35.45832], [-95.53989, 35.45831], [-95.53807, 35.45823], [-95.53553, 35.45812], [-95.53471, 35.45807], [-95.53389, 35.45801], [-95.52989, 35.45772], [-95.52903, 35.45766], [-95.52813, 35.45761], [-95.52785, 35.45758], [-95.52656, 35.4575], [-95.52536, 35.45745], [-95.52409, 35.45741], [-95.52283, 35.4574], [-95.52223, 35.45741], [-95.52132, 35.45742], [-95.52037, 35.45745], [-95.51937, 35.45749], [-95.5184, 35.45756], [-95.51728, 35.45765], [-95.51459, 35.45786], [-95.51295, 35.45794], [-95.51166, 35.45798], [-95.50997, 35.45798], [-95.50907, 35.45795], [-95.50813, 35.45792], [-95.50703, 35.45786], [-95.50583, 35.45776], [-95.50475, 35.45767], [-95.50395, 35.45758], [-95.50294, 35.45745], [-95.50125, 35.4572], [-95.4996, 35.45696], [-95.49869, 35.45684], [-95.49757, 35.45672], [-95.49672, 35.45664], [-95.49579, 35.45656], [-95.49437, 35.45647], [-95.49374, 35.45644], [-95.49301, 35.45641], [-95.49176, 35.45638], [-95.49022, 35.45637], [-95.4788, 35.45642], [-95.468, 35.45648], [-95.46319, 35.4565], [-95.46191, 35.45652], [-95.46066, 35.45655], [-95.45896, 35.4566], [-95.45777, 35.45664], [-95.45694, 35.45668], [-95.45551, 35.45674], [-95.45167, 35.45693], [-95.44807, 35.4571], [-95.44744, 35.45713], [-95.44573, 35.45722], [-95.44062, 35.4574], [-95.43952, 35.45741], [-95.43644, 35.45747], [-95.43337, 35.45747], [-95.43164, 35.45747], [-95.42916, 35.45742], [-95.42643, 35.45735], [-95.42533, 35.45731], [-95.42439, 35.45727], [-95.42299, 35.45721], [-95.42258, 35.45719], [-95.42145, 35.45714], [-95.42036, 35.45708], [-95.41933, 35.45702], [-95.41698, 35.45687], [-95.41573, 35.4568], [-95.41494, 35.45676], [-95.41417, 35.45671], [-95.41276, 35.45663], [-95.41184, 35.45657], [-95.41106, 35.45652], [-95.4102, 35.45647], [-95.40905, 35.4564], [-95.40792, 35.45634], [-95.40677, 35.45627], [-95.40574, 35.45622], [-95.40406, 35.45616], [-95.40235, 35.45612], [-95.40025, 35.45611], [-95.39893, 35.45612], [-95.39715, 35.45616], [-95.39603, 35.45619], [-95.39346, 35.45632], [-95.39221, 35.45641], [-95.39105, 35.4565], [-95.3898, 35.45661], [-95.38837, 35.45675], [-95.38623, 35.45696], [-95.38495, 35.4571], [-95.38364, 35.45723], [-95.38112, 35.45749], [-95.38055, 35.45755], [-95.3802, 35.45759], [-95.37788, 35.45783], [-95.3766, 35.45796], [-95.37567, 35.45805], [-95.37482, 35.45815], [-95.37398, 35.45823], [-95.3733, 35.4583], [-95.37242, 35.45841], [-95.37136, 35.45856], [-95.37047, 35.4587], [-95.36962, 35.45885], [-95.36864, 35.45903], [-95.36783, 35.45919], [-95.36641, 35.45951], [-95.36534, 35.45978], [-95.36468, 35.45996], [-95.36363, 35.46026], [-95.36207, 35.46073], [-95.36102, 35.46108], [-95.36031, 35.46134], [-95.35969, 35.46157], [-95.35875, 35.46195], [-95.35759, 35.46242], [-95.35673, 35.46279], [-95.354, 35.46406], [-95.35327, 35.46441], [-95.35149, 35.46524], [-95.35062, 35.46565], [-95.34989, 35.46597], [-95.34923, 35.46626], [-95.34848, 35.46657], [-95.34762, 35.46691], [-95.34688, 35.4672], [-95.34591, 35.46756], [-95.34496, 35.46789], [-95.34377, 35.46829], [-95.34255, 35.46867], [-95.34176, 35.4689], [-95.34103, 35.46911], [-95.3403, 35.46931], [-95.33945, 35.46952], [-95.33836, 35.46979], [-95.3371, 35.47006], [-95.33636, 35.47022], [-95.32925, 35.47177], [-95.32768, 35.47211], [-95.32734, 35.47218], [-95.32623, 35.47243], [-95.31338, 35.47523], [-95.31208, 35.47551], [-95.30817, 35.47637], [-95.30669, 35.47669], [-95.30662, 35.47671], [-95.30592, 35.47686], [-95.30031, 35.47808], [-95.30008, 35.47813], [-95.29932, 35.47829], [-95.2976, 35.47866], [-95.29686, 35.47882], [-95.29547, 35.47913], [-95.29436, 35.47937], [-95.29313, 35.47963], [-95.29196, 35.47988], [-95.2905, 35.48017], [-95.28893, 35.48047], [-95.28809, 35.48061], [-95.28728, 35.48074], [-95.28615, 35.48092], [-95.28477, 35.48112], [-95.28345, 35.4813], [-95.28175, 35.48151], [-95.28058, 35.48164], [-95.27941, 35.48175], [-95.27786, 35.48188], [-95.27659, 35.48198], [-95.27614, 35.48201], [-95.27436, 35.48212], [-95.27402, 35.48213], [-95.27266, 35.48218], [-95.27137, 35.48222], [-95.26922, 35.48226], [-95.26378, 35.48227], [-95.25598, 35.4823], [-95.25404, 35.4823], [-95.24667, 35.48232], [-95.24593, 35.48233], [-95.24262, 35.48234], [-95.24084, 35.48235], [-95.24046, 35.48235], [-95.23884, 35.48236], [-95.23799, 35.48236], [-95.23701, 35.48236], [-95.23604, 35.48235], [-95.23521, 35.48234], [-95.23445, 35.48232], [-95.234, 35.4823], [-95.23326, 35.48227], [-95.23245, 35.48222], [-95.23163, 35.48217], [-95.23085, 35.48212], [-95.23002, 35.48205], [-95.22863, 35.48193], [-95.2279, 35.48185], [-95.22721, 35.48178], [-95.22606, 35.48164], [-95.22495, 35.48152], [-95.22393, 35.4814], [-95.22305, 35.4813], [-95.22223, 35.48122], [-95.2214, 35.48116], [-95.22057, 35.48112], [-95.21973, 35.48109], [-95.21893, 35.48109], [-95.21814, 35.48109], [-95.21677, 35.48112], [-95.21583, 35.48117], [-95.21524, 35.48122], [-95.21466, 35.48127], [-95.21384, 35.48135], [-95.21282, 35.48148], [-95.21196, 35.4816], [-95.21112, 35.48174], [-95.21025, 35.48191], [-95.20939, 35.48209], [-95.20784, 35.48242], [-95.20668, 35.48267], [-95.20554, 35.48292], [-95.20493, 35.48305], [-95.20436, 35.48317], [-95.20388, 35.48328], [-95.2035, 35.48336], [-95.20302, 35.48346], [-95.20096, 35.48391], [-95.19907, 35.48432], [-95.19564, 35.48506], [-95.18931, 35.48644], [-95.18802, 35.48671], [-95.187, 35.48693], [-95.18616, 35.48711], [-95.18533, 35.48728], [-95.18458, 35.4874], [-95.18375, 35.48752], [-95.18271, 35.48765], [-95.18209, 35.48771], [-95.18117, 35.48778], [-95.18031, 35.48783], [-95.17951, 35.48786], [-95.17854, 35.48787], [-95.17753, 35.48786], [-95.17633, 35.48781], [-95.1757, 35.48777], [-95.17509, 35.48772], [-95.17432, 35.48764], [-95.17367, 35.48756], [-95.17308, 35.48749], [-95.17247, 35.48739], [-95.17208, 35.48733], [-95.17163, 35.48725], [-95.17076, 35.48708], [-95.17007, 35.48693], [-95.16835, 35.48656], [-95.16695, 35.48624], [-95.16505, 35.48583], [-95.16131, 35.48503], [-95.15949, 35.48459], [-95.15732, 35.48411], [-95.15624, 35.48386], [-95.15515, 35.48364], [-95.15366, 35.48335], [-95.15301, 35.48323], [-95.15232, 35.48311], [-95.15111, 35.48291], [-95.14985, 35.48273], [-95.14913, 35.48263], [-95.14787, 35.48248], [-95.14664, 35.48234], [-95.14517, 35.48221], [-95.14311, 35.48206], [-95.14115, 35.48196], [-95.13965, 35.48191], [-95.13622, 35.48188], [-95.13223, 35.48187], [-95.1237, 35.48183], [-95.12003, 35.48181], [-95.11866, 35.48182], [-95.11769, 35.48184], [-95.11683, 35.48188], [-95.11596, 35.48193], [-95.11524, 35.48198], [-95.11477, 35.48202], [-95.114, 35.4821], [-95.11316, 35.48219], [-95.11217, 35.48233], [-95.11156, 35.48243], [-95.11076, 35.48256], [-95.11004, 35.48269], [-95.10909, 35.48288], [-95.10822, 35.48307], [-95.10744, 35.48326], [-95.1067, 35.48345], [-95.10581, 35.4837], [-95.10494, 35.48395], [-95.10379, 35.48432], [-95.10292, 35.48462], [-95.10156, 35.48512], [-95.10034, 35.48559], [-95.09392, 35.48798], [-95.09283, 35.48837], [-95.09225, 35.48856], [-95.0916, 35.48877], [-95.09109, 35.48891], [-95.09055, 35.48904], [-95.08997, 35.48917], [-95.08938, 35.48929], [-95.08878, 35.4894], [-95.08806, 35.4895], [-95.08728, 35.48958], [-95.08659, 35.48964], [-95.08589, 35.48967], [-95.08504, 35.48968], [-95.08454, 35.48968], [-95.08355, 35.48963], [-95.0825, 35.48954], [-95.08179, 35.48945], [-95.08109, 35.48934], [-95.08015, 35.4892], [-95.07958, 35.48912], [-95.07906, 35.48907], [-95.07842, 35.489], [-95.07749, 35.48892], [-95.07686, 35.48887], [-95.07616, 35.48883], [-95.0756, 35.48881], [-95.07508, 35.48879], [-95.0746, 35.48878], [-95.07388, 35.48877], [-95.07313, 35.48878], [-95.07193, 35.48881], [-95.07116, 35.48884], [-95.07056, 35.48888], [-95.06999, 35.48892], [-95.06943, 35.48897], [-95.06891, 35.48902], [-95.06847, 35.48907], [-95.06783, 35.48914], [-95.06702, 35.48925], [-95.06641, 35.48935], [-95.06579, 35.48945], [-95.06464, 35.48964], [-95.06327, 35.48988], [-95.06159, 35.49017], [-95.05888, 35.49063], [-95.05774, 35.49082], [-95.0569, 35.49094], [-95.05629, 35.49102], [-95.05553, 35.49109], [-95.0547, 35.49115], [-95.05393, 35.49119], [-95.05301, 35.49122], [-95.05225, 35.49121], [-95.0514, 35.49118], [-95.05066, 35.49114], [-95.04995, 35.49109], [-95.04928, 35.49103], [-95.04871, 35.49096], [-95.04797, 35.49086], [-95.04714, 35.49071], [-95.04623, 35.49054], [-95.04528, 35.49032], [-95.04438, 35.49011], [-95.04368, 35.48995], [-95.04305, 35.48983], [-95.04232, 35.4897], [-95.04163, 35.48959], [-95.04086, 35.48947], [-95.03998, 35.48936], [-95.03904, 35.48927], [-95.03838, 35.48922], [-95.03771, 35.48917], [-95.03694, 35.48914], [-95.03614, 35.48912], [-95.03545, 35.48911], [-95.03459, 35.48913], [-95.03378, 35.48916], [-95.0331, 35.4892], [-95.03244, 35.48925], [-95.03175, 35.4893], [-95.03103, 35.48939], [-95.02905, 35.48965], [-95.02707, 35.48992], [-95.02626, 35.49003], [-95.0254, 35.49015], [-95.02298, 35.4905], [-95.02162, 35.49068], [-95.0209, 35.49077], [-95.01999, 35.4909], [-95.01858, 35.49109], [-95.01738, 35.49126], [-95.01635, 35.49141], [-95.01583, 35.49151], [-95.01531, 35.4916], [-95.01435, 35.49179], [-95.01362, 35.49195], [-95.01302, 35.49209], [-95.01243, 35.49223], [-95.01188, 35.49237], [-95.01119, 35.49257], [-95.01051, 35.49275], [-95.00996, 35.49289], [-95.00951, 35.49299], [-95.00906, 35.49308], [-95.00871, 35.49314], [-95.00815, 35.4932], [-95.00763, 35.49324], [-95.00716, 35.49325], [-95.00667, 35.49324], [-95.00623, 35.49322], [-95.00572, 35.49317], [-95.00524, 35.49311], [-95.00474, 35.49302], [-95.00427, 35.49292], [-95.00371, 35.49277], [-95.00319, 35.49259], [-95.00265, 35.49238], [-95.00208, 35.49213], [-95.00127, 35.49171], [-95.00046, 35.4913], [-94.99999, 35.49106], [-94.99957, 35.49084], [-94.99918, 35.49066], [-94.99877, 35.49048], [-94.99826, 35.49027], [-94.9977, 35.49006], [-94.9972, 35.48989], [-94.99634, 35.48963], [-94.99586, 35.48951], [-94.99535, 35.4894], [-94.99477, 35.48928], [-94.9942, 35.48918], [-94.99322, 35.48904], [-94.99276, 35.48899], [-94.99225, 35.48896], [-94.99147, 35.48893], [-94.99075, 35.48893], [-94.99006, 35.48894], [-94.98956, 35.48897], [-94.98879, 35.48904], [-94.98769, 35.48914], [-94.9862, 35.48925], [-94.98555, 35.48929], [-94.98502, 35.48932], [-94.98453, 35.48934], [-94.98413, 35.48935], [-94.98348, 35.48937], [-94.98231, 35.48938], [-94.98123, 35.48937], [-94.98016, 35.48934], [-94.97905, 35.48929], [-94.97878, 35.48927], [-94.97754, 35.4892], [-94.97692, 35.48916], [-94.97639, 35.48912], [-94.97569, 35.48906], [-94.97488, 35.48896], [-94.9741, 35.48886], [-94.97347, 35.48876], [-94.9731, 35.4887], [-94.9726, 35.48861], [-94.9719, 35.48847], [-94.97112, 35.48831], [-94.97034, 35.48812], [-94.96932, 35.48786], [-94.96845, 35.4876], [-94.96738, 35.48726], [-94.9668, 35.48705], [-94.96627, 35.48686], [-94.9653, 35.48648], [-94.96463, 35.48619], [-94.964, 35.48591], [-94.96365, 35.48575], [-94.96286, 35.48537], [-94.9624, 35.48513], [-94.96193, 35.48488], [-94.96096, 35.48432], [-94.96028, 35.48393], [-94.95956, 35.48347], [-94.95912, 35.48317], [-94.95854, 35.48277], [-94.95646, 35.48131], [-94.95582, 35.48086], [-94.95412, 35.47967], [-94.95227, 35.47836], [-94.94485, 35.47316], [-94.94335, 35.47211], [-94.93749, 35.46801], [-94.93688, 35.4676], [-94.93626, 35.46719], [-94.9358, 35.46688], [-94.93532, 35.46658], [-94.93478, 35.46623], [-94.93403, 35.46577], [-94.93257, 35.4649], [-94.93103, 35.46404], [-94.93023, 35.46362], [-94.9294, 35.46318], [-94.92853, 35.46274], [-94.92768, 35.46232], [-94.92588, 35.46148], [-94.92455, 35.46089], [-94.92326, 35.46036], [-94.92258, 35.46009], [-94.92195, 35.45983], [-94.92081, 35.4594], [-94.92031, 35.45922], [-94.9191, 35.4588], [-94.91791, 35.45839], [-94.9163, 35.45788], [-94.91547, 35.45763], [-94.91468, 35.45741], [-94.91352, 35.45708], [-94.912, 35.45669], [-94.91103, 35.45645], [-94.91001, 35.45621], [-94.90869, 35.45593], [-94.90739, 35.45567], [-94.90605, 35.45542], [-94.90486, 35.45523], [-94.90427, 35.45513], [-94.9037, 35.45505], [-94.90264, 35.4549], [-94.90157, 35.45476], [-94.90092, 35.45469], [-94.90025, 35.45461], [-94.8988, 35.45447], [-94.89808, 35.45441], [-94.89736, 35.45435], [-94.89625, 35.45428], [-94.89481, 35.4542], [-94.89408, 35.45418], [-94.89332, 35.45415], [-94.8904, 35.45409], [-94.88924, 35.45406], [-94.88833, 35.45404], [-94.88761, 35.45403], [-94.88537, 35.45398], [-94.88486, 35.45397], [-94.88175, 35.4539], [-94.88065, 35.45388], [-94.88034, 35.45387], [-94.87826, 35.45383], [-94.87667, 35.45382], [-94.87508, 35.45383], [-94.87352, 35.45387], [-94.87205, 35.45392], [-94.8707, 35.45399], [-94.86956, 35.45405], [-94.86738, 35.4542], [-94.86628, 35.4543], [-94.86528, 35.45439], [-94.86432, 35.45449], [-94.86247, 35.45469], [-94.85862, 35.45511], [-94.85685, 35.4553], [-94.85626, 35.45536], [-94.8552, 35.45546], [-94.85433, 35.45552], [-94.85355, 35.45555], [-94.85267, 35.45557], [-94.85178, 35.45558], [-94.85086, 35.45556], [-94.85011, 35.45553], [-94.84961, 35.4555], [-94.8491, 35.45547], [-94.84839, 35.45541], [-94.84765, 35.45534], [-94.84719, 35.45528], [-94.84681, 35.45524], [-94.84601, 35.45513], [-94.84521, 35.455], [-94.84441, 35.45485], [-94.84354, 35.45468], [-94.84211, 35.45436], [-94.84081, 35.45406], [-94.8398, 35.45382], [-94.83815, 35.45344], [-94.83455, 35.45261], [-94.83307, 35.45227], [-94.83194, 35.45199], [-94.83076, 35.45173], [-94.82922, 35.45139], [-94.82813, 35.45113], [-94.82583, 35.4506], [-94.8248, 35.45035], [-94.82258, 35.44985], [-94.82127, 35.44955], [-94.82018, 35.4493], [-94.81902, 35.44906], [-94.81796, 35.44886], [-94.81741, 35.44877], [-94.81684, 35.44867], [-94.8156, 35.44849], [-94.8144, 35.44834], [-94.81293, 35.44819], [-94.81198, 35.44812], [-94.81119, 35.44807], [-94.81004, 35.44802], [-94.80967, 35.448], [-94.8093, 35.44799], [-94.80795, 35.44797], [-94.80575, 35.44797], [-94.8053, 35.44797], [-94.80199, 35.44798], [-94.80106, 35.44798], [-94.80057, 35.44798], [-94.79974, 35.44797], [-94.79908, 35.44795], [-94.79879, 35.44794], [-94.79835, 35.44791], [-94.79782, 35.44788], [-94.79707, 35.44782], [-94.7966, 35.44778], [-94.79616, 35.44774], [-94.79562, 35.44767], [-94.79493, 35.44759], [-94.79392, 35.44744], [-94.79305, 35.44729], [-94.7922, 35.44712], [-94.79145, 35.44699], [-94.79092, 35.4469], [-94.79029, 35.44682], [-94.78972, 35.44676], [-94.78909, 35.44671], [-94.78828, 35.44669], [-94.78777, 35.44669], [-94.78701, 35.44671], [-94.78618, 35.44677], [-94.78532, 35.44688], [-94.78467, 35.44697], [-94.78417, 35.44707], [-94.78349, 35.44722], [-94.78275, 35.44742], [-94.78201, 35.44764], [-94.78092, 35.44798], [-94.77987, 35.44829], [-94.77947, 35.44839], [-94.77874, 35.44855], [-94.77785, 35.44871], [-94.77733, 35.44879], [-94.77672, 35.44887], [-94.77591, 35.44894], [-94.77498, 35.44901], [-94.77346, 35.44904], [-94.77173, 35.44912], [-94.77059, 35.44918], [-94.76956, 35.44926], [-94.7669, 35.44951], [-94.76463, 35.44977], [-94.76411, 35.44983], [-94.76285, 35.44998], [-94.76155, 35.45014], [-94.76063, 35.45025], [-94.7587, 35.45047], [-94.75833, 35.45052], [-94.7578, 35.45058], [-94.75714, 35.45065], [-94.75666, 35.45069], [-94.75613, 35.45073], [-94.75565, 35.45075], [-94.75522, 35.45074], [-94.75486, 35.45074], [-94.75423, 35.4507], [-94.75373, 35.45066], [-94.7533, 35.45062], [-94.75278, 35.45056], [-94.75232, 35.45049], [-94.75166, 35.45036], [-94.75096, 35.4502], [-94.75041, 35.45005], [-94.74999, 35.44993], [-94.74925, 35.44969], [-94.74875, 35.4495], [-94.74821, 35.44927], [-94.7478, 35.44908], [-94.74741, 35.4489], [-94.7468, 35.44858], [-94.74613, 35.44819], [-94.74569, 35.44792], [-94.74534, 35.44767], [-94.74353, 35.44637], [-94.74135, 35.44486], [-94.74042, 35.44419], [-94.73983, 35.44377], [-94.73907, 35.44323], [-94.73792, 35.44241], [-94.73724, 35.44193], [-94.7362, 35.4412], [-94.73548, 35.4407], [-94.73331, 35.43917], [-94.73096, 35.43751], [-94.72945, 35.43645], [-94.72871, 35.43592], [-94.72749, 35.43506], [-94.72712, 35.4348], [-94.72616, 35.43412], [-94.7254, 35.43359], [-94.7247, 35.43312], [-94.72345, 35.43232], [-94.7222, 35.43155], [-94.72089, 35.4308], [-94.72006, 35.43035], [-94.71881, 35.42969], [-94.71801, 35.42929], [-94.7148, 35.42762], [-94.71378, 35.42708], [-94.71266, 35.42647], [-94.71007, 35.42506], [-94.7091, 35.42451], [-94.70881, 35.42435], [-94.70724, 35.42347], [-94.70578, 35.42265], [-94.70426, 35.4218], [-94.702, 35.42054], [-94.70096, 35.41994], [-94.69969, 35.4192], [-94.6987, 35.41862], [-94.69862, 35.41858], [-94.69823, 35.41835], [-94.69729, 35.41777], [-94.69609, 35.41706], [-94.69502, 35.41639], [-94.69244, 35.41477], [-94.69134, 35.41409], [-94.68987, 35.41318], [-94.68791, 35.41196], [-94.68623, 35.41094], [-94.68594, 35.41077], [-94.6849, 35.41014], [-94.68382, 35.40949], [-94.68294, 35.40897], [-94.67892, 35.40661], [-94.67792, 35.40602], [-94.67696, 35.40545], [-94.67637, 35.40511], [-94.67585, 35.4048], [-94.67499, 35.4043], [-94.67366, 35.40353], [-94.67279, 35.403], [-94.67223, 35.40266], [-94.67097, 35.40187], [-94.66836, 35.40019], [-94.66667, 35.39908], [-94.66556, 35.39834], [-94.66509, 35.39803], [-94.66438, 35.39756], [-94.66378, 35.39717], [-94.66294, 35.39666], [-94.66253, 35.39644], [-94.66183, 35.39609], [-94.66139, 35.39587], [-94.66089, 35.39565], [-94.65957, 35.39513], [-94.65889, 35.39489], [-94.65795, 35.39461], [-94.6573, 35.39443], [-94.65647, 35.39423], [-94.65563, 35.39406], [-94.65515, 35.39398], [-94.65439, 35.39388], [-94.65365, 35.39379], [-94.65268, 35.39372], [-94.65213, 35.39369], [-94.65159, 35.39367], [-94.64991, 35.39367], [-94.63782, 35.39366], [-94.63767, 35.39366], [-94.62276, 35.39364], [-94.62222, 35.39364], [-94.61837, 35.39363], [-94.61677, 35.39362], [-94.61535, 35.39361], [-94.61364, 35.39358], [-94.60596, 35.3934], [-94.60335, 35.39333], [-94.60226, 35.39331], [-94.60119, 35.39328], [-94.60067, 35.39327], [-94.59795, 35.39321], [-94.59757, 35.3932], [-94.59377, 35.3931], [-94.58451, 35.39288], [-94.57804, 35.39271], [-94.57712, 35.39271], [-94.5764, 35.39271], [-94.57547, 35.39275], [-94.57482, 35.39279], [-94.57425, 35.39284], [-94.57343, 35.39292], [-94.5729, 35.39299], [-94.57234, 35.39307], [-94.57186, 35.39314], [-94.57129, 35.39325], [-94.57045, 35.39342], [-94.56978, 35.39357], [-94.56917, 35.39372], [-94.56856, 35.39389], [-94.56774, 35.39414], [-94.56715, 35.39433], [-94.56658, 35.39452], [-94.56376, 35.39544], [-94.56336, 35.39557], [-94.5625, 35.39584], [-94.56167, 35.39606], [-94.56073, 35.39631], [-94.5597, 35.39655], [-94.55889, 35.39672], [-94.55766, 35.39694], [-94.55673, 35.39709], [-94.55561, 35.39724], [-94.5542, 35.39739], [-94.55252, 35.3975], [-94.55112, 35.39753], [-94.54893, 35.39754], [-94.54849, 35.39754], [-94.54675, 35.39755], [-94.5459, 35.39757], [-94.54506, 35.39763], [-94.54397, 35.39773], [-94.54314, 35.39782], [-94.54244, 35.39793], [-94.54176, 35.39804], [-94.54086, 35.39822], [-94.54017, 35.39837], [-94.5396, 35.3985], [-94.53903, 35.39866], [-94.53834, 35.39885], [-94.53755, 35.3991], [-94.53643, 35.39948], [-94.53559, 35.39982], [-94.53457, 35.40027], [-94.53405, 35.40052], [-94.53342, 35.40083], [-94.53272, 35.4012], [-94.53207, 35.40157], [-94.53101, 35.40217], [-94.52957, 35.40298], [-94.52866, 35.40351], [-94.52751, 35.40419], [-94.5262, 35.40495], [-94.52539, 35.4054], [-94.52398, 35.40619], [-94.52288, 35.40683], [-94.52202, 35.40731], [-94.52086, 35.40797], [-94.51997, 35.40849], [-94.51882, 35.40915], [-94.51728, 35.41004], [-94.51611, 35.41075], [-94.5148, 35.41155], [-94.51359, 35.41229], [-94.51228, 35.41311], [-94.51056, 35.41419], [-94.50896, 35.41519], [-94.50747, 35.41613], [-94.50666, 35.41663], [-94.50572, 35.41723], [-94.50487, 35.41776], [-94.50397, 35.41831], [-94.50332, 35.41872], [-94.50279, 35.41907], [-94.50213, 35.41949], [-94.50119, 35.42014], [-94.50049, 35.42065], [-94.49943, 35.42144], [-94.49862, 35.4221], [-94.49799, 35.42263], [-94.49726, 35.42326], [-94.49676, 35.42369], [-94.49595, 35.42441], [-94.49492, 35.42534], [-94.49391, 35.42625], [-94.49281, 35.42723], [-94.49149, 35.4284], [-94.4907, 35.42912], [-94.49011, 35.42965], [-94.48951, 35.43016], [-94.48892, 35.43064], [-94.48831, 35.43109], [-94.48767, 35.43154], [-94.48707, 35.43193], [-94.48642, 35.43231], [-94.4858, 35.43267], [-94.48543, 35.43287], [-94.48516, 35.43301], [-94.4845, 35.43334], [-94.48395, 35.43358], [-94.48338, 35.43383], [-94.48265, 35.43413], [-94.48204, 35.43436], [-94.48143, 35.43457], [-94.48069, 35.4348], [-94.48, 35.435], [-94.47946, 35.43515], [-94.47839, 35.43545], [-94.47775, 35.43563], [-94.47613, 35.43607], [-94.4701, 35.43775], [-94.46907, 35.43806], [-94.46837, 35.43827], [-94.4677, 35.43851], [-94.46701, 35.43877], [-94.46635, 35.43904], [-94.46568, 35.43933], [-94.46509, 35.4396], [-94.46448, 35.4399], [-94.46393, 35.4402], [-94.46324, 35.44058], [-94.46234, 35.44112], [-94.46165, 35.44157], [-94.46095, 35.44207], [-94.46038, 35.44248], [-94.45976, 35.44298], [-94.45922, 35.44341], [-94.45874, 35.44379], [-94.45826, 35.44413], [-94.45779, 35.44446], [-94.45727, 35.4448], [-94.45672, 35.44513], [-94.45625, 35.44539], [-94.45574, 35.44565], [-94.45519, 35.44591], [-94.45468, 35.44614], [-94.45401, 35.44642], [-94.45346, 35.44663], [-94.45295, 35.4468], [-94.45229, 35.44701], [-94.45166, 35.44719], [-94.45075, 35.44742], [-94.44848, 35.44799], [-94.44777, 35.44816], [-94.44711, 35.44835], [-94.4465, 35.44855], [-94.44583, 35.44879], [-94.44554, 35.4489], [-94.44492, 35.44918], [-94.44419, 35.44952], [-94.44382, 35.44971], [-94.44349, 35.44989], [-94.44307, 35.45014], [-94.44269, 35.45037], [-94.44236, 35.4506], [-94.44196, 35.45088], [-94.44168, 35.45109], [-94.44138, 35.45131], [-94.44099, 35.45163], [-94.44071, 35.45187], [-94.4399, 35.45265], [-94.43901, 35.45348], [-94.43849, 35.45398], [-94.43518, 35.4571], [-94.43459, 35.45762], [-94.43403, 35.45806], [-94.43354, 35.45842], [-94.43304, 35.45876], [-94.43256, 35.45905], [-94.43204, 35.45937], [-94.43162, 35.4596], [-94.43097, 35.45992], [-94.43021, 35.46027], [-94.42901, 35.46075], [-94.42766, 35.46115], [-94.42635, 35.46149], [-94.4254, 35.46166], [-94.42426, 35.46181], [-94.42064, 35.46209], [-94.41573, 35.46246], [-94.41158, 35.46278], [-94.41007, 35.4629], [-94.40904, 35.46292], [-94.40791, 35.46281], [-94.40682, 35.46256], [-94.40574, 35.46216], [-94.40417, 35.46133], [-94.4025, 35.46046], [-94.40109, 35.45994], [-94.39998, 35.45961], [-94.39872, 35.45933], [-94.39707, 35.45914], [-94.39596, 35.45906], [-94.39554, 35.45908], [-94.39475, 35.4591], [-94.39375, 35.45919], [-94.39258, 35.45937], [-94.39122, 35.45968], [-94.38989, 35.46011], [-94.389, 35.46043], [-94.38796, 35.46097], [-94.38718, 35.4614], [-94.38556, 35.46257], [-94.38422, 35.46357], [-94.38309, 35.46436], [-94.38221, 35.46484], [-94.38092, 35.46526], [-94.37994, 35.46544], [-94.37882, 35.46551], [-94.37761, 35.46543], [-94.37312, 35.46482], [-94.3655, 35.46375], [-94.36043, 35.46305], [-94.35702, 35.46259], [-94.35612, 35.46248], [-94.3527, 35.46205], [-94.3515, 35.46189], [-94.34284, 35.46106], [-94.33813, 35.4606], [-94.33673, 35.46045], [-94.33545, 35.46023], [-94.33343, 35.45975], [-94.33224, 35.45934], [-94.33102, 35.45886], [-94.32755, 35.45735], [-94.32668, 35.45697], [-94.32443, 35.45601], [-94.32362, 35.45567], [-94.32272, 35.45541], [-94.32167, 35.45522], [-94.32099, 35.45517], [-94.32048, 35.45515], [-94.31994, 35.45517], [-94.31957, 35.45519], [-94.31911, 35.45525], [-94.31834, 35.45535], [-94.31785, 35.45542], [-94.31595, 35.45568], [-94.30986, 35.45655], [-94.30322, 35.45742], [-94.30188, 35.45765], [-94.30033, 35.45805], [-94.2992, 35.45829], [-94.29785, 35.45863], [-94.29598, 35.4592], [-94.29151, 35.4609], [-94.28823, 35.46215], [-94.28569, 35.46307], [-94.27906, 35.46557], [-94.26922, 35.46929], [-94.26252, 35.47186], [-94.26024, 35.4727], [-94.2588, 35.47319], [-94.25708, 35.47379], [-94.25513, 35.47445], [-94.25426, 35.4748], [-94.25323, 35.47531], [-94.25245, 35.47579], [-94.25099, 35.47677], [-94.24861, 35.47842], [-94.24782, 35.47893], [-94.24666, 35.47973], [-94.24525, 35.48062], [-94.24228, 35.48249], [-94.24029, 35.48374], [-94.23738, 35.48561], [-94.23688, 35.4859], [-94.23632, 35.48623], [-94.23524, 35.48674], [-94.23413, 35.48718], [-94.23283, 35.48752], [-94.23174, 35.48775], [-94.23108, 35.48789], [-94.23078, 35.48795], [-94.22845, 35.48841], [-94.22646, 35.48882], [-94.22568, 35.48899], [-94.22476, 35.48916], [-94.22384, 35.48934], [-94.2211, 35.48987], [-94.20729, 35.49255], [-94.20613, 35.49272], [-94.20491, 35.49284], [-94.2039, 35.49288], [-94.2029, 35.49287], [-94.20183, 35.49282], [-94.20003, 35.49269], [-94.19831, 35.49247], [-94.18989, 35.49151], [-94.18876, 35.49142], [-94.18778, 35.49136], [-94.1865, 35.49135], [-94.18512, 35.4914], [-94.1839, 35.49154], [-94.18256, 35.49175], [-94.18137, 35.492], [-94.18018, 35.49233], [-94.17912, 35.49267], [-94.17731, 35.49339], [-94.17281, 35.49527], [-94.17187, 35.4956], [-94.17104, 35.49586], [-94.17035, 35.49606], [-94.16917, 35.49634], [-94.16854, 35.49646], [-94.16754, 35.49661], [-94.16629, 35.49675], [-94.16153, 35.49713], [-94.1588, 35.49736], [-94.15769, 35.49747], [-94.15648, 35.49764], [-94.15536, 35.49786], [-94.15393, 35.49823], [-94.15279, 35.4986], [-94.15159, 35.49905], [-94.14989, 35.49988], [-94.14674, 35.50149], [-94.14244, 35.50368], [-94.14112, 35.50434], [-94.13994, 35.50488], [-94.1393, 35.50516], [-94.13814, 35.50563], [-94.13603, 35.50647], [-94.13122, 35.50836], [-94.12713, 35.50998], [-94.12386, 35.51127], [-94.11972, 35.51291], [-94.11908, 35.51317], [-94.11645, 35.51421], [-94.11016, 35.51669], [-94.10741, 35.51779], [-94.10629, 35.51829], [-94.10446, 35.51916], [-94.10342, 35.51964], [-94.10213, 35.52023], [-94.10014, 35.52109], [-94.09888, 35.52157], [-94.09746, 35.5221], [-94.09638, 35.52247], [-94.09515, 35.52287], [-94.09369, 35.52332], [-94.0919, 35.5238], [-94.0896, 35.52435], [-94.08794, 35.52473], [-94.08269, 35.52593], [-94.07605, 35.52746], [-94.07479, 35.52774], [-94.07352, 35.52801], [-94.07281, 35.52812], [-94.07196, 35.52823], [-94.07098, 35.5283], [-94.06999, 35.52833], [-94.06855, 35.52832], [-94.06453, 35.52825], [-94.05709, 35.52815], [-94.0525, 35.52807], [-94.04149, 35.5279], [-94.03816, 35.52786], [-94.03624, 35.52783], [-94.03158, 35.52775], [-94.01681, 35.52754], [-94.01623, 35.52753], [-94.01049, 35.52744], [-94.00976, 35.52742], [-94.00884, 35.52736], [-94.00756, 35.52727], [-94.00599, 35.5271], [-94.0001, 35.52649], [-93.98999, 35.52543], [-93.98938, 35.52536], [-93.98864, 35.5253], [-93.98769, 35.52528], [-93.98701, 35.5253], [-93.98614, 35.52537], [-93.98544, 35.52546], [-93.98491, 35.52555], [-93.98433, 35.52567], [-93.98373, 35.52582], [-93.98297, 35.52606], [-93.98174, 35.52652], [-93.97525, 35.52922], [-93.97426, 35.52959], [-93.97332, 35.52989], [-93.97242, 35.53014], [-93.97165, 35.53035], [-93.9709, 35.53052], [-93.9703, 35.53063], [-93.96942, 35.53079], [-93.9683, 35.53094], [-93.96744, 35.53103], [-93.96678, 35.53108], [-93.96643, 35.53111], [-93.96531, 35.53114], [-93.96468, 35.53115], [-93.9633, 35.5311], [-93.96237, 35.53105], [-93.96164, 35.53097], [-93.96092, 35.53089], [-93.95747, 35.53035], [-93.95684, 35.53026], [-93.95636, 35.5302], [-93.95568, 35.53015], [-93.95518, 35.53013], [-93.95457, 35.53013], [-93.95403, 35.53015], [-93.95347, 35.53019], [-93.95266, 35.53028], [-93.95219, 35.53036], [-93.95139, 35.53051], [-93.94186, 35.53269], [-93.94111, 35.53285], [-93.94023, 35.533], [-93.93968, 35.53307], [-93.939, 35.53314], [-93.93841, 35.53318], [-93.93776, 35.5332], [-93.93698, 35.53319], [-93.93605, 35.53315], [-93.93539, 35.53309], [-93.93457, 35.53299], [-93.93362, 35.53283], [-93.93272, 35.53262], [-93.93191, 35.53239], [-93.9314, 35.53223], [-93.93076, 35.53201], [-93.9301, 35.53175], [-93.92504, 35.52942], [-93.92449, 35.52915], [-93.92303, 35.52849], [-93.92234, 35.52821], [-93.92182, 35.528], [-93.92071, 35.5276], [-93.92, 35.52737], [-93.91943, 35.52721], [-93.91854, 35.52697], [-93.91789, 35.52682], [-93.91712, 35.52665], [-93.91629, 35.52649], [-93.9155, 35.52636], [-93.91448, 35.52624], [-93.91348, 35.52614], [-93.91228, 35.52605], [-93.91134, 35.52604], [-93.91012, 35.52605], [-93.90934, 35.52608], [-93.90845, 35.52614], [-93.90729, 35.52625], [-93.90584, 35.52646], [-93.90228, 35.52706], [-93.89543, 35.52821], [-93.89431, 35.52839], [-93.89334, 35.52855], [-93.89276, 35.52861], [-93.89204, 35.52866], [-93.89075, 35.52869], [-93.8897, 35.52862], [-93.889, 35.52853], [-93.88836, 35.52843], [-93.88777, 35.52831], [-93.88682, 35.52806], [-93.88583, 35.52771], [-93.88513, 35.52743], [-93.88399, 35.52686], [-93.88284, 35.52621], [-93.87931, 35.52424], [-93.8763, 35.52257], [-93.87574, 35.52227], [-93.87519, 35.52201], [-93.87457, 35.52175], [-93.87382, 35.52148], [-93.8727, 35.52117], [-93.87181, 35.52098], [-93.87099, 35.52086], [-93.8702, 35.52078], [-93.86967, 35.52076], [-93.86912, 35.52074], [-93.86856, 35.52074], [-93.86565, 35.52095], [-93.86458, 35.52102], [-93.85981, 35.52137], [-93.85467, 35.52175], [-93.85389, 35.52175], [-93.85346, 35.52173], [-93.85297, 35.52166], [-93.8523, 35.52153], [-93.85174, 35.52137], [-93.85116, 35.52113], [-93.85052, 35.52084], [-93.85007, 35.52057], [-93.84946, 35.52008], [-93.84797, 35.51863], [-93.84733, 35.51801], [-93.84661, 35.51748], [-93.84569, 35.51693], [-93.84463, 35.51652], [-93.8435, 35.51625], [-93.84276, 35.51616], [-93.84183, 35.51613], [-93.83896, 35.51635], [-93.83821, 35.51641], [-93.83609, 35.51659], [-93.83007, 35.51705], [-93.82908, 35.51708], [-93.82802, 35.51703], [-93.82667, 35.51692], [-93.82569, 35.51678], [-93.82474, 35.51662], [-93.82383, 35.51641], [-93.82268, 35.5161], [-93.82176, 35.5158], [-93.81777, 35.5144], [-93.81417, 35.51315], [-93.8125, 35.51257], [-93.80882, 35.51131], [-93.8077, 35.51093], [-93.8057, 35.51037], [-93.80279, 35.50972], [-93.80239, 35.50964], [-93.79865, 35.50886], [-93.79378, 35.50786], [-93.79128, 35.50737], [-93.7897, 35.50716], [-93.78841, 35.50706], [-93.7853, 35.50693], [-93.77818, 35.50658], [-93.76757, 35.50605], [-93.76624, 35.50599], [-93.7637, 35.50571], [-93.76155, 35.50542], [-93.75398, 35.50444], [-93.74516, 35.50329], [-93.74231, 35.50295], [-93.74099, 35.50285], [-93.73969, 35.50281], [-93.73875, 35.50281], [-93.73182, 35.50298], [-93.73028, 35.50284], [-93.72989, 35.50277], [-93.72948, 35.50268], [-93.72854, 35.50242], [-93.72628, 35.50158], [-93.72425, 35.50087], [-93.7222, 35.50037], [-93.72036, 35.50002], [-93.71788, 35.49972], [-93.71578, 35.49962], [-93.71404, 35.49966], [-93.71047, 35.49983], [-93.70825, 35.49994], [-93.70549, 35.5001], [-93.69908, 35.50042], [-93.69157, 35.50083], [-93.6874, 35.50102], [-93.68317, 35.50124], [-93.67994, 35.50138], [-93.67858, 35.5014], [-93.67713, 35.50131], [-93.67609, 35.50117], [-93.67494, 35.50097], [-93.67389, 35.50075], [-93.67274, 35.50042], [-93.67207, 35.50022], [-93.67172, 35.50009], [-93.67109, 35.49984], [-93.6704, 35.4996], [-93.66955, 35.49925], [-93.66912, 35.49906], [-93.66706, 35.49825], [-93.66583, 35.4978], [-93.66493, 35.49752], [-93.66392, 35.49733], [-93.66317, 35.49724], [-93.66277, 35.4972], [-93.6623, 35.49719], [-93.66201, 35.4972], [-93.66073, 35.49722], [-93.66027, 35.49723], [-93.65954, 35.49725], [-93.65704, 35.49739], [-93.65424, 35.49751], [-93.65198, 35.49759], [-93.65035, 35.49762], [-93.64798, 35.49772], [-93.64442, 35.49782], [-93.64291, 35.49783], [-93.64238, 35.49781], [-93.64124, 35.49775], [-93.64038, 35.49766], [-93.63933, 35.4975], [-93.6376, 35.49714], [-93.63648, 35.49687], [-93.63518, 35.49657], [-93.63452, 35.49642], [-93.63229, 35.49593], [-93.63053, 35.49553], [-93.62926, 35.49524], [-93.62726, 35.49482], [-93.62606, 35.49455], [-93.62566, 35.49447], [-93.625, 35.49436], [-93.62389, 35.49416], [-93.62329, 35.49409], [-93.62171, 35.49388], [-93.62109, 35.49379], [-93.61974, 35.49361], [-93.61678, 35.49324], [-93.61589, 35.49311], [-93.61547, 35.49306], [-93.61381, 35.49286], [-93.61284, 35.49272], [-93.61203, 35.4926], [-93.60981, 35.49233], [-93.60953, 35.49229], [-93.60835, 35.49211], [-93.60638, 35.49188], [-93.60473, 35.49167], [-93.60404, 35.49159], [-93.60194, 35.49131], [-93.60115, 35.49118], [-93.60042, 35.49102], [-93.5999, 35.49092], [-93.59961, 35.49084], [-93.59923, 35.49074], [-93.59893, 35.49066], [-93.5971, 35.49004], [-93.59635, 35.48975], [-93.59512, 35.48917], [-93.59422, 35.48869], [-93.59337, 35.48824], [-93.59014, 35.48642], [-93.58994, 35.48631], [-93.58982, 35.48624], [-93.58796, 35.48536], [-93.58713, 35.48503], [-93.58553, 35.48447], [-93.5847, 35.48423], [-93.58375, 35.48394], [-93.58367, 35.48392], [-93.58137, 35.48345], [-93.57979, 35.48322], [-93.57726, 35.48285], [-93.57503, 35.48252], [-93.57326, 35.48226], [-93.57008, 35.48181], [-93.56564, 35.48118], [-93.56301, 35.48081], [-93.56029, 35.4804], [-93.55796, 35.48004], [-93.55758, 35.48], [-93.55603, 35.47981], [-93.55461, 35.47961], [-93.55447, 35.47959], [-93.55361, 35.47944], [-93.55289, 35.47925], [-93.5522, 35.47906], [-93.55168, 35.47891], [-93.5506, 35.47851], [-93.55033, 35.4784], [-93.5501, 35.47831], [-93.54885, 35.47772], [-93.54641, 35.4766], [-93.54595, 35.47639], [-93.5453, 35.47608], [-93.54346, 35.47518], [-93.54258, 35.47478], [-93.53662, 35.47201], [-93.53372, 35.47066], [-93.53184, 35.46978], [-93.53136, 35.46955], [-93.53118, 35.46947], [-93.52766, 35.46786], [-93.52443, 35.46634], [-93.52216, 35.46529], [-93.52169, 35.46508], [-93.52131, 35.46491], [-93.52024, 35.46438], [-93.51793, 35.46334], [-93.51726, 35.46301], [-93.51705, 35.46291], [-93.51497, 35.46193], [-93.5134, 35.46123], [-93.51262, 35.46088], [-93.51221, 35.46071], [-93.51104, 35.46028], [-93.51015, 35.46002], [-93.50937, 35.45983], [-93.50817, 35.45955], [-93.50716, 35.4594], [-93.50652, 35.45933], [-93.50602, 35.45927], [-93.5053, 35.45923], [-93.50434, 35.4592], [-93.50206, 35.45919], [-93.49746, 35.45922], [-93.49663, 35.45924], [-93.49602, 35.45925], [-93.49269, 35.45926], [-93.49011, 35.45927], [-93.48894, 35.45925], [-93.48862, 35.45925], [-93.48837, 35.45925], [-93.4876, 35.45921], [-93.48662, 35.45912], [-93.48604, 35.45906], [-93.48442, 35.45876], [-93.48337, 35.45849], [-93.48308, 35.45841], [-93.48246, 35.45821], [-93.48212, 35.45811], [-93.48138, 35.45787], [-93.4798, 35.45733], [-93.47857, 35.45688], [-93.47642, 35.45615], [-93.46915, 35.45372], [-93.46785, 35.45327], [-93.4659, 35.45258], [-93.46556, 35.45248], [-93.46473, 35.4522], [-93.4637, 35.45186], [-93.463, 35.4516], [-93.4614, 35.45107], [-93.46005, 35.45061], [-93.45951, 35.45046], [-93.4586, 35.45025], [-93.45766, 35.45003], [-93.45692, 35.44989], [-93.45659, 35.44984], [-93.45631, 35.44979], [-93.45465, 35.44955], [-93.45394, 35.44949], [-93.4527, 35.4494], [-93.45222, 35.44936], [-93.45048, 35.44934], [-93.44927, 35.44938], [-93.44822, 35.44944], [-93.44711, 35.44954], [-93.44568, 35.44973], [-93.44516, 35.44982], [-93.4437, 35.45011], [-93.44165, 35.4506], [-93.44047, 35.45081], [-93.43857, 35.45122], [-93.43824, 35.45128], [-93.43793, 35.45132], [-93.43756, 35.45138], [-93.4365, 35.45146], [-93.43558, 35.45146], [-93.43452, 35.45138], [-93.43396, 35.45131], [-93.4334, 35.4512], [-93.43267, 35.45103], [-93.43201, 35.45083], [-93.43124, 35.45055], [-93.43069, 35.45029], [-93.43057, 35.45023], [-93.43007, 35.44998], [-93.42949, 35.4496], [-93.4289, 35.44919], [-93.42829, 35.44869], [-93.42794, 35.44836], [-93.42713, 35.44751], [-93.42646, 35.44685], [-93.42587, 35.4462], [-93.42531, 35.44561], [-93.42486, 35.44515], [-93.42377, 35.44397], [-93.42293, 35.44305], [-93.42269, 35.4428], [-93.42253, 35.44264], [-93.42123, 35.44127], [-93.421, 35.44104], [-93.4202, 35.44023], [-93.41981, 35.4398], [-93.41943, 35.43941], [-93.41934, 35.43932], [-93.41895, 35.43896], [-93.41857, 35.43859], [-93.41816, 35.43824], [-93.41729, 35.43752], [-93.41679, 35.4371], [-93.4166, 35.43696], [-93.4163, 35.43673], [-93.41493, 35.43571], [-93.41487, 35.43567], [-93.41347, 35.43471], [-93.41289, 35.4343], [-93.41055, 35.43265], [-93.40821, 35.43099], [-93.40561, 35.42914], [-93.4034, 35.4276], [-93.40255, 35.42701], [-93.4007, 35.42568], [-93.39634, 35.42257], [-93.39562, 35.42209], [-93.39469, 35.42138], [-93.39413, 35.42097], [-93.39359, 35.42058], [-93.39263, 35.41997], [-93.39066, 35.41858], [-93.38719, 35.4161], [-93.38623, 35.41543], [-93.38563, 35.41498], [-93.38531, 35.41474], [-93.3846, 35.41425], [-93.38393, 35.41378], [-93.3836, 35.41355], [-93.38294, 35.41303], [-93.38261, 35.41274], [-93.3823, 35.41246], [-93.38199, 35.41214], [-93.38176, 35.41189], [-93.38151, 35.41158], [-93.38084, 35.41064], [-93.3805, 35.41008], [-93.38014, 35.40931], [-93.37985, 35.40861], [-93.37975, 35.40832], [-93.37969, 35.40815], [-93.37958, 35.40771], [-93.37945, 35.40708], [-93.37933, 35.40577], [-93.37926, 35.40517], [-93.37921, 35.40471], [-93.37913, 35.404], [-93.37896, 35.40277], [-93.37882, 35.40187], [-93.37873, 35.40102], [-93.37864, 35.40052], [-93.37849, 35.40004], [-93.3783, 35.39956], [-93.37814, 35.39921], [-93.37802, 35.39893], [-93.37784, 35.39867], [-93.37759, 35.39828], [-93.3773, 35.39798], [-93.37701, 35.39767], [-93.37689, 35.39754], [-93.37656, 35.39723], [-93.37582, 35.39672], [-93.3755, 35.39653], [-93.37502, 35.39627], [-93.374, 35.39577], [-93.37208, 35.39486], [-93.37011, 35.39393], [-93.36737, 35.39264], [-93.36632, 35.39214], [-93.36571, 35.39187], [-93.36439, 35.39125], [-93.3633, 35.39073], [-93.36245, 35.39021], [-93.36203, 35.38992], [-93.3617, 35.38966], [-93.36122, 35.38929], [-93.36074, 35.38881], [-93.36029, 35.38837], [-93.3601, 35.38814], [-93.35916, 35.387], [-93.35888, 35.38664], [-93.35842, 35.38607], [-93.35832, 35.38593], [-93.35675, 35.38403], [-93.35628, 35.38345], [-93.35574, 35.38279], [-93.35543, 35.38239], [-93.35527, 35.38217], [-93.35478, 35.38156], [-93.35438, 35.38107], [-93.35391, 35.38048], [-93.35219, 35.37839], [-93.35135, 35.37732], [-93.34941, 35.37495], [-93.34841, 35.37374], [-93.34737, 35.3724], [-93.34691, 35.37182], [-93.34513, 35.36967], [-93.34504, 35.36956], [-93.34477, 35.36922], [-93.34416, 35.36849], [-93.34329, 35.36743], [-93.34316, 35.36727], [-93.34282, 35.36677], [-93.34251, 35.36638], [-93.34125, 35.36482], [-93.34121, 35.36477], [-93.34121, 35.36477], [-93.34075, 35.36414], [-93.34068, 35.36404], [-93.3404, 35.36363], [-93.34006, 35.36302], [-93.33977, 35.36242], [-93.3395, 35.36181], [-93.33947, 35.36173], [-93.33851, 35.35919], [-93.33631, 35.35337], [-93.33552, 35.35127], [-93.33534, 35.35083], [-93.33499, 35.35027], [-93.33474, 35.34991], [-93.33436, 35.34945], [-93.33375, 35.34886], [-93.33331, 35.34852], [-93.33273, 35.34816], [-93.3327, 35.34814], [-93.33226, 35.34789], [-93.33188, 35.34773], [-93.33138, 35.34754], [-93.33077, 35.34733], [-93.32988, 35.34708], [-93.3275, 35.34647], [-93.32678, 35.34629], [-93.32511, 35.34586], [-93.32268, 35.3452], [-93.32238, 35.34512], [-93.32031, 35.34459], [-93.31923, 35.34428], [-93.3184, 35.34395], [-93.3172, 35.34346], [-93.31649, 35.34312], [-93.3156, 35.34265], [-93.31504, 35.34236], [-93.3128, 35.34122], [-93.31024, 35.33993], [-93.30925, 35.33946], [-93.30849, 35.33917], [-93.30789, 35.33895], [-93.30702, 35.33865], [-93.3061, 35.33839], [-93.30513, 35.33818], [-93.30353, 35.33783], [-93.30305, 35.33774], [-93.30128, 35.33739], [-93.29949, 35.33704], [-93.29884, 35.3369], [-93.2957, 35.33627], [-93.29403, 35.33593], [-93.29055, 35.33542], [-93.28837, 35.33523], [-93.28634, 35.33515], [-93.28243, 35.33523], [-93.27882, 35.33538], [-93.27534, 35.33551], [-93.27307, 35.33559], [-93.26931, 35.33575], [-93.26627, 35.33586], [-93.26286, 35.33598], [-93.25981, 35.33609], [-93.25833, 35.33617], [-93.25557, 35.33625], [-93.25486, 35.33625], [-93.25356, 35.33621], [-93.25064, 35.33606], [-93.24937, 35.3359], [-93.24794, 35.33572], [-93.24512, 35.33521], [-93.24266, 35.33459], [-93.23262, 35.33139], [-93.22148, 35.32789], [-93.21586, 35.32612], [-93.21411, 35.32564], [-93.2127, 35.32531], [-93.21012, 35.32482], [-93.20697, 35.32429], [-93.20581, 35.3241], [-93.20246, 35.32357], [-93.19986, 35.32313], [-93.19534, 35.32234], [-93.19043, 35.32151], [-93.1874, 35.3211], [-93.18638, 35.32097], [-93.1855, 35.32085], [-93.18232, 35.32059], [-93.18015, 35.32047], [-93.17425, 35.32025], [-93.17043, 35.32008], [-93.16909, 35.31991], [-93.16763, 35.31957], [-93.16627, 35.31905], [-93.16498, 35.31842], [-93.16383, 35.31762], [-93.16265, 35.31658], [-93.16008, 35.31411], [-93.15836, 35.31253], [-93.15716, 35.31153], [-93.15617, 35.31093], [-93.15548, 35.3106], [-93.15406, 35.31005], [-93.15272, 35.30966], [-93.15111, 35.3092], [-93.14931, 35.30876], [-93.14233, 35.30692], [-93.13932, 35.30613], [-93.13728, 35.30554], [-93.13436, 35.30453], [-93.13381, 35.30431], [-93.13106, 35.30307], [-93.12933, 35.30214], [-93.12835, 35.30154], [-93.1267, 35.30045], [-93.12408, 35.29869], [-93.12174, 35.29713], [-93.11988, 35.29589], [-93.11865, 35.29509], [-93.118, 35.29472], [-93.1171, 35.29426], [-93.11657, 35.294], [-93.11565, 35.29361], [-93.11472, 35.29327], [-93.11185, 35.29234], [-93.10799, 35.2911], [-93.10588, 35.29041], [-93.1051, 35.29013], [-93.10434, 35.28982], [-93.10359, 35.28949], [-93.10267, 35.28901], [-93.10191, 35.28858], [-93.0991, 35.28676], [-93.09629, 35.28494], [-93.09441, 35.28372], [-93.09288, 35.28272], [-93.0921, 35.28222], [-93.08913, 35.28028], [-93.08862, 35.27998], [-93.08799, 35.27963], [-93.08739, 35.27932], [-93.08478, 35.27802], [-93.07655, 35.274], [-93.07516, 35.27322], [-93.07398, 35.27247], [-93.07283, 35.27154], [-93.07196, 35.27079], [-93.07124, 35.27003], [-93.07038, 35.26899], [-93.06958, 35.26792], [-93.06939, 35.26767], [-93.06818, 35.26605], [-93.0667, 35.26423], [-93.06594, 35.26353], [-93.06535, 35.26301], [-93.06463, 35.2625], [-93.06404, 35.26216], [-93.06352, 35.26184], [-93.0621, 35.26116], [-93.05877, 35.26006], [-93.05695, 35.25948], [-93.05553, 35.25887], [-93.05295, 35.25759], [-93.04893, 35.2556], [-93.04827, 35.25528], [-93.04038, 35.25146], [-93.03931, 35.25102], [-93.03787, 35.25048], [-93.03579, 35.24979], [-93.03475, 35.24949], [-93.03368, 35.24921], [-93.0326, 35.24895], [-93.03155, 35.24873], [-93.03028, 35.2485], [-93.02855, 35.24823], [-93.02629, 35.24796], [-93.02523, 35.2479], [-93.02263, 35.24781], [-93.02013, 35.24778], [-93.01675, 35.24773], [-93.01134, 35.24768], [-93.00986, 35.24756], [-93.0093, 35.2475], [-93.00846, 35.2474], [-93.00645, 35.24706], [-93.00026, 35.24584], [-92.99804, 35.24547], [-92.99621, 35.24527], [-92.99414, 35.24509], [-92.99101, 35.24497], [-92.98698, 35.24491], [-92.965, 35.24457], [-92.95962, 35.24444], [-92.95779, 35.24443], [-92.95626, 35.24451], [-92.95477, 35.24468], [-92.95348, 35.24493], [-92.95239, 35.24522], [-92.9515, 35.24547], [-92.95074, 35.24575], [-92.9495, 35.24623], [-92.94914, 35.24637], [-92.94797, 35.24692], [-92.94719, 35.24733], [-92.94512, 35.24868], [-92.9437, 35.24969], [-92.94243, 35.25053], [-92.94135, 35.25117], [-92.94065, 35.25152], [-92.93981, 35.25191], [-92.93834, 35.25244], [-92.93682, 35.25283], [-92.93598, 35.25299], [-92.93465, 35.25317], [-92.93391, 35.25319], [-92.93316, 35.25319], [-92.93142, 35.25314], [-92.9287, 35.25304], [-92.92488, 35.25288], [-92.9198, 35.25265], [-92.91126, 35.25225], [-92.90172, 35.25181], [-92.89915, 35.25169], [-92.89551, 35.25152], [-92.89288, 35.25128], [-92.89085, 35.25096], [-92.88927, 35.25067], [-92.88606, 35.25008], [-92.88456, 35.2498], [-92.87527, 35.24806], [-92.87299, 35.24765], [-92.87086, 35.24727], [-92.86967, 35.24695], [-92.86849, 35.24657], [-92.86675, 35.24593], [-92.86544, 35.24528], [-92.86383, 35.24436], [-92.85705, 35.2393], [-92.85541, 35.23808], [-92.85422, 35.23719], [-92.8464, 35.23137], [-92.8437, 35.22934], [-92.84022, 35.22677], [-92.83443, 35.22245], [-92.83399, 35.22212], [-92.83342, 35.22163], [-92.83153, 35.22021], [-92.83037, 35.21934], [-92.8299, 35.21899], [-92.82708, 35.21688], [-92.82584, 35.21604], [-92.82537, 35.2157], [-92.82297, 35.21391], [-92.82036, 35.21197], [-92.81881, 35.21079], [-92.81804, 35.21018], [-92.81505, 35.20775], [-92.80184, 35.19701], [-92.80129, 35.19659], [-92.80126, 35.19658], [-92.80071, 35.19621], [-92.80013, 35.19585], [-92.79955, 35.19554], [-92.79896, 35.19525], [-92.79837, 35.19498], [-92.79682, 35.19437], [-92.79118, 35.19226], [-92.7715, 35.1849], [-92.7714, 35.18486], [-92.7713, 35.18483], [-92.75612, 35.17915], [-92.75524, 35.17882], [-92.75253, 35.1778], [-92.749, 35.17647], [-92.74846, 35.17625], [-92.74617, 35.17549], [-92.74579, 35.17535], [-92.74575, 35.17534], [-92.74466, 35.17501], [-92.74379, 35.1748], [-92.7432, 35.17468], [-92.74254, 35.17457], [-92.74191, 35.17448], [-92.74067, 35.17435], [-92.73955, 35.1743], [-92.73876, 35.17428], [-92.73794, 35.17426], [-92.73583, 35.17423], [-92.73527, 35.17423], [-92.73516, 35.17423], [-92.72696, 35.17414], [-92.72385, 35.17411], [-92.71958, 35.17405], [-92.71836, 35.17403], [-92.71291, 35.17395], [-92.71126, 35.17397], [-92.70763, 35.17393], [-92.70755, 35.17393], [-92.70689, 35.17391], [-92.70622, 35.17387], [-92.70589, 35.17385], [-92.70524, 35.17378], [-92.70458, 35.1737], [-92.70334, 35.17349], [-92.70242, 35.17329], [-92.70121, 35.17296], [-92.70032, 35.17267], [-92.69915, 35.17222], [-92.68781, 35.1673], [-92.68507, 35.16611], [-92.68073, 35.16426], [-92.68001, 35.16396], [-92.67897, 35.16362], [-92.6782, 35.1634], [-92.67734, 35.16319], [-92.6764, 35.16301], [-92.67574, 35.1629], [-92.67474, 35.16278], [-92.67407, 35.16272], [-92.67339, 35.16268], [-92.67109, 35.16263], [-92.6648, 35.1625], [-92.66022, 35.16241], [-92.65877, 35.1624], [-92.65733, 35.16241], [-92.64822, 35.16263], [-92.64721, 35.16265], [-92.64632, 35.16266], [-92.64172, 35.16282], [-92.6408, 35.16282], [-92.63641, 35.16292], [-92.63454, 35.16295], [-92.63392, 35.16297], [-92.63296, 35.16299], [-92.62997, 35.16306], [-92.62951, 35.16307], [-92.62519, 35.16317], [-92.62412, 35.16317], [-92.62376, 35.16316], [-92.62304, 35.16314], [-92.62125, 35.16304], [-92.6188, 35.1628], [-92.61219, 35.16213], [-92.60792, 35.16169], [-92.60128, 35.16101], [-92.5903, 35.15988], [-92.57721, 35.15854], [-92.57404, 35.15821], [-92.5727, 35.15804], [-92.57104, 35.15779], [-92.56973, 35.15754], [-92.56812, 35.15718], [-92.56757, 35.15704], [-92.56718, 35.15695], [-92.56638, 35.15674], [-92.56495, 35.15634], [-92.56101, 35.15523], [-92.55804, 35.15436], [-92.55131, 35.15243], [-92.55035, 35.15211], [-92.54877, 35.15158], [-92.54804, 35.15128], [-92.54714, 35.1509], [-92.54613, 35.15043], [-92.5447, 35.14975], [-92.54105, 35.14784], [-92.53502, 35.14469], [-92.52535, 35.13963], [-92.52496, 35.13942], [-92.52415, 35.13898], [-92.52329, 35.13847], [-92.52247, 35.13791], [-92.52195, 35.13753], [-92.5212, 35.13692], [-92.52049, 35.13628], [-92.51964, 35.13541], [-92.51546, 35.13104], [-92.51435, 35.12987], [-92.51142, 35.1268], [-92.51094, 35.12638], [-92.50972, 35.12553], [-92.5088, 35.12495], [-92.50791, 35.12446], [-92.50607, 35.12365], [-92.50414, 35.12308], [-92.50171, 35.12268], [-92.49969, 35.12237], [-92.49829, 35.12215], [-92.49226, 35.12122], [-92.49048, 35.12096], [-92.48892, 35.12077], [-92.48746, 35.12061], [-92.486, 35.1205], [-92.48391, 35.12034], [-92.48117, 35.12017], [-92.47627, 35.11986], [-92.47247, 35.11962], [-92.46833, 35.11936], [-92.46695, 35.11926], [-92.46539, 35.11917], [-92.46343, 35.11905], [-92.45963, 35.11879], [-92.45653, 35.1186], [-92.45466, 35.11847], [-92.45385, 35.11842], [-92.45313, 35.11833], [-92.4525, 35.11823], [-92.45185, 35.11804], [-92.45119, 35.11779], [-92.4507, 35.11755], [-92.45019, 35.11726], [-92.44977, 35.11693], [-92.44917, 35.11646], [-92.44846, 35.11587], [-92.44787, 35.11537], [-92.44704, 35.11469], [-92.44657, 35.11434], [-92.44615, 35.11408], [-92.44566, 35.11386], [-92.44514, 35.11364], [-92.44447, 35.11342], [-92.44363, 35.11326], [-92.44269, 35.11313], [-92.44174, 35.11304], [-92.43943, 35.1128], [-92.43796, 35.11263], [-92.43719, 35.11248], [-92.43667, 35.11232], [-92.43619, 35.11216], [-92.4357, 35.11192], [-92.4353, 35.1117], [-92.43496, 35.11149], [-92.4344, 35.11107], [-92.43394, 35.11063], [-92.43367, 35.11031], [-92.4334, 35.10992], [-92.43314, 35.10946], [-92.43293, 35.10901], [-92.43278, 35.10847], [-92.43266, 35.10782], [-92.43266, 35.1073], [-92.43268, 35.10649], [-92.43275, 35.1041], [-92.43272, 35.10355], [-92.43265, 35.10298], [-92.43248, 35.10224], [-92.43225, 35.10167], [-92.43199, 35.1011], [-92.43166, 35.10054], [-92.43124, 35.09992], [-92.43094, 35.09956], [-92.43059, 35.09919], [-92.42987, 35.09846], [-92.42908, 35.09771], [-92.42718, 35.09584], [-92.42639, 35.09506], [-92.42594, 35.09462], [-92.42456, 35.09325], [-92.42317, 35.0919], [-92.4225, 35.09125], [-92.42156, 35.09032], [-92.42051, 35.08928], [-92.41956, 35.08836], [-92.41885, 35.08763], [-92.41795, 35.08675], [-92.41721, 35.08604], [-92.41626, 35.08511], [-92.41572, 35.08458], [-92.41522, 35.08402], [-92.41491, 35.08361], [-92.41444, 35.08283], [-92.41401, 35.08187], [-92.41383, 35.08107], [-92.41373, 35.08047], [-92.41369, 35.07998], [-92.41369, 35.07944], [-92.41374, 35.07886], [-92.41385, 35.07829], [-92.41396, 35.07782], [-92.41419, 35.07717], [-92.41456, 35.07642], [-92.41599, 35.07364], [-92.41635, 35.07294], [-92.41669, 35.07219], [-92.41698, 35.07148], [-92.41729, 35.07064], [-92.41755, 35.06974], [-92.41772, 35.06907], [-92.41789, 35.06816], [-92.41802, 35.06736], [-92.4181, 35.06659], [-92.41815, 35.06528], [-92.41812, 35.06436], [-92.4181, 35.06395], [-92.41801, 35.06307], [-92.41788, 35.06221], [-92.41773, 35.06143], [-92.41741, 35.06023], [-92.41663, 35.05768], [-92.41581, 35.05488], [-92.41513, 35.05253], [-92.41434, 35.04993], [-92.41406, 35.04893], [-92.41336, 35.0465], [-92.41238, 35.0432], [-92.41127, 35.03931], [-92.41001, 35.03503], [-92.4095, 35.03338], [-92.40919, 35.03231], [-92.40894, 35.03034], [-92.40891, 35.02917], [-92.40897, 35.0283], [-92.40914, 35.02684], [-92.4095, 35.02459], [-92.4096, 35.02382], [-92.40981, 35.02246], [-92.40999, 35.02118], [-92.41013, 35.01945], [-92.41029, 35.01666], [-92.41032, 35.01357], [-92.41033, 35.01126], [-92.41035, 35.00984], [-92.41048, 35.00835], [-92.41064, 35.00702], [-92.41101, 35.00536], [-92.41128, 35.00419], [-92.41161, 35.00314], [-92.4121, 35.00172], [-92.41287, 34.99969], [-92.41308, 34.99909], [-92.4135, 34.99792], [-92.41415, 34.9963], [-92.4148, 34.99443], [-92.41544, 34.99207], [-92.41553, 34.99177], [-92.41578, 34.99095], [-92.41603, 34.98988], [-92.41628, 34.98866], [-92.41643, 34.98777], [-92.41653, 34.98687], [-92.41665, 34.98564], [-92.41679, 34.98344], [-92.41692, 34.98183], [-92.41703, 34.98007], [-92.41719, 34.97855], [-92.41734, 34.97732], [-92.41756, 34.97611], [-92.41794, 34.97465], [-92.41818, 34.97367], [-92.41843, 34.9729], [-92.419, 34.97122], [-92.41971, 34.96919], [-92.42031, 34.96747], [-92.42045, 34.96704], [-92.42094, 34.96561], [-92.42123, 34.96453], [-92.42183, 34.96232], [-92.42209, 34.96075], [-92.4223, 34.95942], [-92.42248, 34.95773], [-92.42247, 34.95599], [-92.4226, 34.95146], [-92.42267, 34.94881], [-92.42279, 34.94608], [-92.42279, 34.94486], [-92.42269, 34.94365], [-92.42252, 34.94255], [-92.42221, 34.9414], [-92.42181, 34.94036], [-92.42135, 34.93944], [-92.42114, 34.93899], [-92.42067, 34.93814], [-92.42002, 34.93717], [-92.41932, 34.93629], [-92.41877, 34.93567], [-92.41829, 34.93519], [-92.41747, 34.9344], [-92.41617, 34.93319], [-92.4145, 34.93162], [-92.41419, 34.93133], [-92.41382, 34.93098], [-92.41295, 34.93017], [-92.41218, 34.92946], [-92.41133, 34.92865], [-92.41108, 34.92839], [-92.41082, 34.92812], [-92.41054, 34.9278], [-92.41027, 34.92749], [-92.40992, 34.92705], [-92.40961, 34.92662], [-92.40937, 34.92629], [-92.40917, 34.92599], [-92.40899, 34.92569], [-92.40879, 34.92533], [-92.40859, 34.92499], [-92.40841, 34.92463], [-92.40821, 34.92423], [-92.40808, 34.92394], [-92.40788, 34.92347], [-92.40779, 34.92324], [-92.40768, 34.92294], [-92.40753, 34.9225], [-92.4074, 34.92204], [-92.40702, 34.92053], [-92.40652, 34.91848], [-92.40627, 34.91747], [-92.4052, 34.91311], [-92.4043, 34.90946], [-92.40414, 34.90881], [-92.40393, 34.90795], [-92.40265, 34.90274], [-92.40244, 34.90189], [-92.40234, 34.90148], [-92.40232, 34.9014], [-92.40222, 34.901], [-92.40209, 34.90046], [-92.4019, 34.89971], [-92.40182, 34.89935], [-92.40128, 34.8972], [-92.40119, 34.89689], [-92.40107, 34.89658], [-92.40096, 34.8963], [-92.40083, 34.89603], [-92.40064, 34.89567], [-92.40048, 34.8954], [-92.40017, 34.89495], [-92.39996, 34.89467], [-92.39973, 34.89439], [-92.39948, 34.89413], [-92.39922, 34.89387], [-92.3989, 34.89358], [-92.39857, 34.8933], [-92.39827, 34.89308], [-92.39796, 34.89286], [-92.39775, 34.89273], [-92.39744, 34.89254], [-92.39707, 34.89234], [-92.39666, 34.89214], [-92.39642, 34.89203], [-92.39611, 34.8919], [-92.39579, 34.89179], [-92.39543, 34.89167], [-92.39493, 34.89152], [-92.39422, 34.89135], [-92.39403, 34.89131], [-92.39311, 34.8911], [-92.39124, 34.89067], [-92.39119, 34.89066], [-92.38704, 34.88972], [-92.38611, 34.8895], [-92.38583, 34.88943], [-92.3854, 34.8893], [-92.38513, 34.88921], [-92.3847, 34.88906], [-92.38432, 34.8889], [-92.38394, 34.88873], [-92.38359, 34.88854], [-92.38324, 34.88835], [-92.38308, 34.88825], [-92.38291, 34.88814], [-92.3828, 34.88807], [-92.38246, 34.88783], [-92.38224, 34.88767], [-92.38193, 34.88742], [-92.38172, 34.88724], [-92.38153, 34.88706], [-92.3793, 34.88485], [-92.37899, 34.88455], [-92.37829, 34.88386], [-92.37762, 34.88317], [-92.37631, 34.88191], [-92.37527, 34.88088], [-92.37518, 34.88079], [-92.37425, 34.87986], [-92.37342, 34.87901], [-92.37263, 34.87814], [-92.37202, 34.87741], [-92.37151, 34.87677], [-92.37071, 34.87571], [-92.36912, 34.87354], [-92.36878, 34.8731], [-92.36842, 34.87267], [-92.36821, 34.87244], [-92.36816, 34.87239], [-92.36769, 34.87189], [-92.36734, 34.87153], [-92.36697, 34.87119], [-92.36678, 34.87102], [-92.36659, 34.87086], [-92.36605, 34.87042], [-92.36551, 34.87001], [-92.36512, 34.86973], [-92.36221, 34.86772], [-92.35765, 34.86458], [-92.35683, 34.86402], [-92.35539, 34.86303], [-92.35489, 34.86267], [-92.3546, 34.86244], [-92.35432, 34.86221], [-92.35405, 34.86197], [-92.35375, 34.86168], [-92.35352, 34.86144], [-92.35327, 34.86116], [-92.35302, 34.86083], [-92.35276, 34.86049], [-92.35253, 34.86013], [-92.35239, 34.85989], [-92.35219, 34.85953], [-92.35206, 34.85928], [-92.3519, 34.85891], [-92.35171, 34.85841], [-92.35159, 34.85802], [-92.35149, 34.85763], [-92.35143, 34.85737], [-92.35132, 34.85668], [-92.35117, 34.85527], [-92.35108, 34.85446], [-92.35092, 34.85283], [-92.35085, 34.85222], [-92.35075, 34.85139], [-92.35029, 34.84739], [-92.35014, 34.84611], [-92.35007, 34.84546], [-92.34989, 34.84397], [-92.34984, 34.84353], [-92.34978, 34.84304], [-92.34975, 34.84275], [-92.34966, 34.84199], [-92.34954, 34.84125], [-92.3494, 34.8405], [-92.34924, 34.83971], [-92.3491, 34.83914], [-92.34905, 34.83892], [-92.34899, 34.8387], [-92.34888, 34.8383], [-92.34851, 34.83691], [-92.34814, 34.83562], [-92.34803, 34.83523], [-92.34665, 34.82996], [-92.34584, 34.82704], [-92.34572, 34.82661], [-92.34559, 34.82615], [-92.34547, 34.8258], [-92.34537, 34.82557], [-92.34522, 34.82523], [-92.34511, 34.82505], [-92.34503, 34.82491], [-92.3449, 34.82469], [-92.34468, 34.82438], [-92.34453, 34.82417], [-92.34429, 34.82387], [-92.34402, 34.82358], [-92.34375, 34.82332], [-92.34337, 34.82299], [-92.34307, 34.82275], [-92.34287, 34.8226], [-92.34245, 34.82233], [-92.34212, 34.82214], [-92.34178, 34.82197], [-92.3414, 34.82179], [-92.34002, 34.82118], [-92.33975, 34.82107], [-92.33931, 34.82088], [-92.3383, 34.82044], [-92.33662, 34.81971], [-92.33395, 34.81853], [-92.33324, 34.8182], [-92.33234, 34.81781], [-92.33153, 34.81747], [-92.33014, 34.81686], [-92.32856, 34.81617], [-92.32817, 34.816], [-92.32753, 34.81573], [-92.32697, 34.81547], [-92.32634, 34.81521], [-92.32566, 34.81491], [-92.32507, 34.81465], [-92.32443, 34.81438], [-92.32392, 34.81414], [-92.32303, 34.81367], [-92.32265, 34.81344], [-92.32235, 34.81324], [-92.32191, 34.81296], [-92.32117, 34.8124], [-92.3204, 34.81175], [-92.31982, 34.81118], [-92.31932, 34.81065], [-92.31874, 34.80992], [-92.31869, 34.80987], [-92.31865, 34.80981], [-92.31849, 34.80959], [-92.31585, 34.80601], [-92.3153, 34.80524], [-92.31461, 34.80438], [-92.31372, 34.8034], [-92.31307, 34.8028], [-92.31231, 34.80216], [-92.31143, 34.80152], [-92.31094, 34.80118], [-92.30996, 34.80059], [-92.30918, 34.80018], [-92.30861, 34.7999], [-92.30783, 34.79956], [-92.30733, 34.79932], [-92.3057, 34.79866], [-92.30395, 34.79794], [-92.30297, 34.79751], [-92.30249, 34.79727], [-92.30183, 34.79689], [-92.30143, 34.7966], [-92.30079, 34.79612], [-92.30029, 34.79564], [-92.29988, 34.79519], [-92.29966, 34.79489], [-92.29946, 34.79459], [-92.29842, 34.79314], [-92.2977, 34.7922], [-92.29722, 34.79155], [-92.29615, 34.79008], [-92.29585, 34.78968], [-92.29565, 34.78946], [-92.29552, 34.78933], [-92.29544, 34.78922], [-92.29534, 34.78913], [-92.29516, 34.78895], [-92.2949, 34.78872], [-92.29468, 34.78853], [-92.29446, 34.78837], [-92.29422, 34.7882], [-92.29386, 34.78796], [-92.29355, 34.78778], [-92.29329, 34.78764], [-92.29298, 34.78749], [-92.29265, 34.78735], [-92.29233, 34.78722], [-92.29225, 34.78719], [-92.29206, 34.78712], [-92.29173, 34.78701], [-92.29152, 34.78695], [-92.29128, 34.78689], [-92.29117, 34.78686], [-92.29088, 34.7868], [-92.29046, 34.78672], [-92.28988, 34.78664], [-92.28942, 34.78661], [-92.28904, 34.78659], [-92.28818, 34.78657], [-92.28756, 34.78656], [-92.28438, 34.7865], [-92.28324, 34.78648], [-92.28279, 34.78647], [-92.28221, 34.78646], [-92.28184, 34.78643], [-92.28147, 34.7864], [-92.28119, 34.78636], [-92.28096, 34.78634], [-92.28076, 34.78631], [-92.2805, 34.78626], [-92.28026, 34.78621], [-92.2797, 34.78607], [-92.27923, 34.78593], [-92.27881, 34.78578], [-92.27842, 34.78563], [-92.27797, 34.78542], [-92.27772, 34.7853], [-92.27743, 34.78515], [-92.27697, 34.78489], [-92.2766, 34.78464], [-92.27607, 34.78425], [-92.27497, 34.78341], [-92.27472, 34.78323], [-92.27449, 34.78308], [-92.27433, 34.78299], [-92.27405, 34.78284], [-92.27377, 34.7827], [-92.27352, 34.78259], [-92.27333, 34.78252], [-92.273, 34.7824], [-92.27234, 34.7822], [-92.26916, 34.78162], [-92.2687, 34.78155], [-92.26834, 34.78147], [-92.26792, 34.78137], [-92.26759, 34.78128], [-92.26713, 34.78113], [-92.2668, 34.781], [-92.26641, 34.78084], [-92.26563, 34.78048], [-92.26545, 34.78039], [-92.26522, 34.78028], [-92.26508, 34.7802], [-92.26482, 34.78006], [-92.26433, 34.77977], [-92.26399, 34.77956], [-92.26368, 34.77935], [-92.26348, 34.77921], [-92.26335, 34.7791], [-92.26316, 34.77899], [-92.26279, 34.77873], [-92.26262, 34.77861], [-92.26241, 34.77847], [-92.26225, 34.77835], [-92.26204, 34.77821], [-92.26182, 34.77808], [-92.26158, 34.77795], [-92.26137, 34.77784], [-92.26108, 34.77771], [-92.26076, 34.7776], [-92.26045, 34.77753], [-92.26014, 34.77746], [-92.2598, 34.7774], [-92.2596, 34.77737], [-92.25938, 34.77735], [-92.25927, 34.77735], [-92.25906, 34.77734], [-92.25853, 34.77736], [-92.25792, 34.77741], [-92.25746, 34.77746], [-92.25699, 34.77753], [-92.25645, 34.77763], [-92.25407, 34.77803], [-92.25359, 34.77811], [-92.2533, 34.77815], [-92.25304, 34.77818], [-92.25276, 34.77821], [-92.25252, 34.77823], [-92.25227, 34.77824], [-92.25223, 34.77824], [-92.25184, 34.77825], [-92.25138, 34.77825], [-92.25114, 34.77824], [-92.25067, 34.77822], [-92.24606, 34.77782], [-92.24194, 34.77746], [-92.24088, 34.77737], [-92.2391, 34.77721], [-92.23625, 34.77697], [-92.23426, 34.77677], [-92.23363, 34.77673], [-92.23285, 34.77671], [-92.23255, 34.77671], [-92.23214, 34.77672], [-92.23179, 34.77673], [-92.23108, 34.77677], [-92.23082, 34.77679], [-92.23069, 34.7768], [-92.23016, 34.77685], [-92.22978, 34.77689], [-92.22937, 34.77695], [-92.22866, 34.77706], [-92.22826, 34.77713], [-92.22781, 34.77723], [-92.22649, 34.77751], [-92.22285, 34.77834], [-92.2226, 34.7784], [-92.22189, 34.77857], [-92.21848, 34.77935], [-92.21844, 34.77936], [-92.21808, 34.77944], [-92.21776, 34.7795], [-92.21737, 34.77955], [-92.21691, 34.77961], [-92.21625, 34.77967], [-92.21608, 34.77969], [-92.21555, 34.77971], [-92.21513, 34.77972], [-92.21473, 34.77971], [-92.21431, 34.7797], [-92.21407, 34.77968], [-92.21393, 34.77967], [-92.21271, 34.77954], [-92.20995, 34.7793], [-92.20827, 34.77915], [-92.20756, 34.7791], [-92.2039, 34.77876], [-92.20282, 34.77866], [-92.19756, 34.77813], [-92.19724, 34.77811], [-92.19526, 34.77793], [-92.19502, 34.77792], [-92.19396, 34.77787], [-92.19327, 34.77786], [-92.19279, 34.77787], [-92.19208, 34.7779], [-92.19163, 34.77792], [-92.19114, 34.77797], [-92.18586, 34.77853], [-92.18326, 34.77882], [-92.18123, 34.77904], [-92.17103, 34.78014], [-92.16274, 34.78104], [-92.15719, 34.78164], [-92.15314, 34.78208], [-92.14911, 34.78252], [-92.14871, 34.78256], [-92.14645, 34.78281], [-92.14192, 34.7833], [-92.14014, 34.7835], [-92.13683, 34.78386], [-92.13446, 34.78411], [-92.13377, 34.78418], [-92.12854, 34.78476], [-92.12449, 34.78518], [-92.12088, 34.78558], [-92.12005, 34.78567], [-92.11869, 34.78582], [-92.1178, 34.78592], [-92.11445, 34.78628], [-92.10982, 34.78679], [-92.10768, 34.78702], [-92.10266, 34.78756], [-92.10216, 34.78762], [-92.10074, 34.78777], [-92.09638, 34.78824], [-92.09103, 34.78882], [-92.0888, 34.78906], [-92.08428, 34.78955], [-92.08168, 34.78983], [-92.0791, 34.79011], [-92.07737, 34.79029], [-92.07653, 34.79038], [-92.0755, 34.79046], [-92.06318, 34.79121], [-92.05652, 34.79159], [-92.04721, 34.79216], [-92.04562, 34.79231], [-92.04469, 34.79244], [-92.0437, 34.79257], [-92.04201, 34.79287], [-92.04065, 34.79319], [-92.0397, 34.79342], [-92.03867, 34.79369], [-92.03542, 34.79471], [-92.03337, 34.79539], [-92.02598, 34.79775], [-92.02468, 34.79818], [-92.0219, 34.79909], [-92.02044, 34.7995], [-92.01961, 34.79971], [-92.01721, 34.80022], [-92.01487, 34.80057], [-92.01229, 34.80079], [-92.00311, 34.80121], [-91.9998, 34.80134], [-91.99575, 34.80151], [-91.9937, 34.8016], [-91.99153, 34.80168], [-91.98954, 34.80174], [-91.9867, 34.80186], [-91.97857, 34.80222], [-91.97641, 34.80233], [-91.96816, 34.80268], [-91.96589, 34.80276], [-91.95495, 34.80322], [-91.95138, 34.80339], [-91.94919, 34.80346], [-91.93307, 34.80345], [-91.93208, 34.80345], [-91.92318, 34.80345], [-91.92068, 34.80345], [-91.91606, 34.80344], [-91.91329, 34.80344], [-91.90866, 34.80348], [-91.90844, 34.80348], [-91.89951, 34.80369], [-91.89844, 34.80372], [-91.89365, 34.80383], [-91.89257, 34.80385], [-91.88738, 34.80399], [-91.88594, 34.80402], [-91.88322, 34.80408], [-91.87735, 34.80423], [-91.87392, 34.8043], [-91.87034, 34.80439], [-91.86853, 34.80437], [-91.867, 34.80431], [-91.86531, 34.80418], [-91.86353, 34.80397], [-91.86184, 34.8037], [-91.85814, 34.80303], [-91.8525, 34.80199], [-91.85008, 34.80154], [-91.84713, 34.80099], [-91.84365, 34.80036], [-91.84112, 34.79989], [-91.83976, 34.79971], [-91.83824, 34.79952], [-91.83706, 34.79943], [-91.83586, 34.79936], [-91.83457, 34.79933], [-91.83248, 34.79931], [-91.82585, 34.79931], [-91.824, 34.79929], [-91.82033, 34.79917], [-91.81367, 34.79895], [-91.81171, 34.79888], [-91.80733, 34.79873], [-91.80287, 34.79864], [-91.79501, 34.79857], [-91.79312, 34.79852], [-91.78799, 34.79839], [-91.78242, 34.79825], [-91.78214, 34.79824], [-91.77505, 34.79797], [-91.77245, 34.79794], [-91.77019, 34.79803], [-91.76822, 34.79821], [-91.76341, 34.79875], [-91.7563, 34.79958], [-91.75414, 34.79982], [-91.75325, 34.79991], [-91.75251, 34.80001], [-91.7514, 34.80013], [-91.75042, 34.80024], [-91.749, 34.8004], [-91.74771, 34.80056], [-91.746, 34.80076], [-91.7447, 34.8009], [-91.74263, 34.80114], [-91.73426, 34.80205], [-91.73154, 34.80239], [-91.729, 34.80258], [-91.72747, 34.80264], [-91.72571, 34.80264], [-91.71362, 34.80231], [-91.70264, 34.802], [-91.69871, 34.8019], [-91.69798, 34.80191], [-91.69712, 34.80196], [-91.69519, 34.80223], [-91.69323, 34.80261], [-91.69084, 34.80333], [-91.68798, 34.80457], [-91.67637, 34.80964], [-91.67235, 34.81139], [-91.668, 34.81328], [-91.66328, 34.81536], [-91.66138, 34.81619], [-91.66083, 34.8164], [-91.66035, 34.81658], [-91.66006, 34.81668], [-91.65962, 34.81682], [-91.65924, 34.81694], [-91.65884, 34.81706], [-91.65819, 34.81722], [-91.65759, 34.81735], [-91.65703, 34.81748], [-91.6557, 34.81766], [-91.65526, 34.81772], [-91.65472, 34.81777], [-91.65428, 34.8178], [-91.6539, 34.81782], [-91.65347, 34.81783], [-91.6481, 34.81787], [-91.64496, 34.81789], [-91.64342, 34.8179], [-91.64121, 34.8179], [-91.63884, 34.81792], [-91.63757, 34.81793], [-91.63262, 34.81797], [-91.63007, 34.81798], [-91.62844, 34.81799], [-91.6259, 34.81798], [-91.62452, 34.81801], [-91.62311, 34.81802], [-91.62048, 34.81803], [-91.61836, 34.81804], [-91.61686, 34.81805], [-91.61574, 34.81806], [-91.61464, 34.81806], [-91.60646, 34.8181], [-91.60519, 34.81811], [-91.60466, 34.81813], [-91.60419, 34.81815], [-91.60356, 34.81817], [-91.60122, 34.81829], [-91.59914, 34.81838], [-91.59575, 34.81854], [-91.59281, 34.81869], [-91.58986, 34.81883], [-91.58699, 34.81898], [-91.58599, 34.81903], [-91.58475, 34.81907], [-91.58421, 34.81908], [-91.58371, 34.81908], [-91.58191, 34.81906], [-91.57588, 34.81901], [-91.5743, 34.819], [-91.5726, 34.81895], [-91.57062, 34.81895], [-91.56889, 34.81894], [-91.56663, 34.81892], [-91.5655, 34.8189], [-91.56345, 34.81889], [-91.55871, 34.81882], [-91.54615, 34.81874], [-91.54569, 34.81873], [-91.53762, 34.81862], [-91.53198, 34.81859], [-91.52851, 34.81856], [-91.5242, 34.81853], [-91.52332, 34.81854], [-91.52255, 34.81858], [-91.52179, 34.81862], [-91.5212, 34.81869], [-91.52055, 34.81878], [-91.51985, 34.81889], [-91.51926, 34.819], [-91.51872, 34.81912], [-91.518, 34.81932], [-91.51677, 34.8197], [-91.51362, 34.82066], [-91.51252, 34.82102], [-91.51046, 34.82166], [-91.50767, 34.82255], [-91.50013, 34.8249], [-91.49844, 34.82542], [-91.4945, 34.82665], [-91.4924, 34.82743], [-91.49034, 34.82833], [-91.48846, 34.82925], [-91.48154, 34.83315], [-91.48106, 34.83339], [-91.48063, 34.8336], [-91.48018, 34.83379], [-91.47941, 34.83409], [-91.479, 34.83425], [-91.47835, 34.83446], [-91.478, 34.83458], [-91.47746, 34.83473], [-91.47692, 34.83487], [-91.47536, 34.83524], [-91.46898, 34.8368], [-91.46828, 34.83694], [-91.46715, 34.83722], [-91.46637, 34.83741], [-91.46469, 34.8378], [-91.46359, 34.83807], [-91.4615, 34.83857], [-91.45274, 34.84066], [-91.43945, 34.84376], [-91.4339, 34.84511], [-91.4327, 34.84537], [-91.43202, 34.8455], [-91.42982, 34.84585], [-91.42849, 34.84597], [-91.42621, 34.84614], [-91.4238, 34.8462], [-91.41877, 34.84614], [-91.41013, 34.846], [-91.39287, 34.84575], [-91.38693, 34.84566], [-91.38215, 34.84557], [-91.37961, 34.84561], [-91.37773, 34.84576], [-91.37593, 34.84596], [-91.37431, 34.84619], [-91.37171, 34.84666], [-91.36127, 34.84852], [-91.35874, 34.84896], [-91.35532, 34.84957], [-91.35365, 34.84979], [-91.352, 34.84996], [-91.34405, 34.85078], [-91.3422, 34.85106], [-91.34066, 34.85137], [-91.33792, 34.85214], [-91.33633, 34.85269], [-91.33507, 34.85321], [-91.33382, 34.85379], [-91.33232, 34.85454], [-91.33105, 34.85517], [-91.3161, 34.86238], [-91.31467, 34.86306], [-91.313, 34.86382], [-91.31157, 34.86439], [-91.3099, 34.86494], [-91.30789, 34.86544], [-91.30142, 34.86703], [-91.30083, 34.86717], [-91.29442, 34.8687], [-91.28963, 34.86984], [-91.28234, 34.87156], [-91.28017, 34.8722], [-91.27808, 34.87295], [-91.27574, 34.87395], [-91.27348, 34.87506], [-91.27138, 34.87627], [-91.26957, 34.87748], [-91.2679, 34.87869], [-91.25961, 34.88492], [-91.25901, 34.88537], [-91.25897, 34.8854], [-91.24989, 34.89229], [-91.24431, 34.89648], [-91.24279, 34.89755], [-91.24073, 34.89887], [-91.23824, 34.90032], [-91.23589, 34.90155], [-91.23383, 34.90251], [-91.23144, 34.90353], [-91.22917, 34.90438], [-91.22689, 34.90518], [-91.22453, 34.90583], [-91.22223, 34.90642], [-91.21946, 34.90704], [-91.21784, 34.90734], [-91.21641, 34.90755], [-91.21416, 34.9078], [-91.21174, 34.90804], [-91.20922, 34.90818], [-91.20291, 34.90842], [-91.19679, 34.90869], [-91.19401, 34.90879], [-91.19141, 34.90891], [-91.19031, 34.90894], [-91.18673, 34.90906], [-91.18418, 34.90925], [-91.18185, 34.90953], [-91.1793, 34.90992], [-91.17705, 34.9104], [-91.17517, 34.91087], [-91.17314, 34.91143], [-91.17111, 34.91208], [-91.16873, 34.91296], [-91.16367, 34.91496], [-91.16178, 34.91566], [-91.16091, 34.91593], [-91.1591, 34.91646], [-91.15721, 34.9169], [-91.15529, 34.91728], [-91.15243, 34.91776], [-91.15099, 34.91799], [-91.14585, 34.91883], [-91.14374, 34.91925], [-91.14128, 34.91991], [-91.13889, 34.92067], [-91.13709, 34.92137], [-91.13015, 34.92403], [-91.12628, 34.92558], [-91.12561, 34.92582], [-91.12407, 34.92641], [-91.12186, 34.92712], [-91.11992, 34.92762], [-91.11788, 34.92799], [-91.11227, 34.9288], [-91.10428, 34.92998], [-91.09071, 34.93191], [-91.08806, 34.93239], [-91.08613, 34.93282], [-91.08439, 34.93331], [-91.08273, 34.93382], [-91.08101, 34.93444], [-91.0787, 34.93529], [-91.07257, 34.93757], [-91.06448, 34.94056], [-91.06231, 34.9413], [-91.06043, 34.9418], [-91.05793, 34.94239], [-91.04938, 34.94394], [-91.04747, 34.94435], [-91.04556, 34.94483], [-91.04375, 34.94535], [-91.041, 34.94618], [-91.02144, 34.95219], [-91.01916, 34.95288], [-91.01402, 34.95448], [-90.9995, 34.95891], [-90.98793, 34.96248], [-90.97875, 34.96528], [-90.96934, 34.96816], [-90.95419, 34.97281], [-90.95227, 34.97331], [-90.94973, 34.97382], [-90.94784, 34.97412], [-90.94509, 34.97444], [-90.9356, 34.97541], [-90.92403, 34.97662], [-90.92225, 34.97686], [-90.92064, 34.97721], [-90.91863, 34.97782], [-90.91509, 34.97929], [-90.90859, 34.98199], [-90.90208, 34.9847], [-90.89498, 34.98764], [-90.88875, 34.99022], [-90.88621, 34.99128], [-90.87839, 34.99454], [-90.87629, 34.99537], [-90.8735, 34.99637], [-90.8711, 34.99719], [-90.85967, 35.00122], [-90.85761, 35.00198], [-90.85578, 35.00278], [-90.85411, 35.0036], [-90.8522, 35.00467], [-90.85026, 35.00587], [-90.84523, 35.00894], [-90.83473, 35.01543], [-90.8255, 35.02111], [-90.82153, 35.02358], [-90.82058, 35.02417], [-90.81532, 35.02731], [-90.81412, 35.02806], [-90.81082, 35.03014], [-90.80928, 35.03101], [-90.80772, 35.03182], [-90.80697, 35.03217], [-90.8048, 35.03314], [-90.80334, 35.03367], [-90.80226, 35.03404], [-90.79988, 35.03476], [-90.79725, 35.03534], [-90.79565, 35.03563], [-90.79476, 35.03577], [-90.79399, 35.03586], [-90.79315, 35.03596], [-90.79225, 35.03605], [-90.7904, 35.03622], [-90.79022, 35.03623], [-90.78923, 35.03632], [-90.78913, 35.03632], [-90.78338, 35.03682], [-90.7779, 35.03733], [-90.77715, 35.03738], [-90.77501, 35.03748], [-90.77228, 35.03749], [-90.77166, 35.03748], [-90.76862, 35.03743], [-90.76298, 35.03736], [-90.75986, 35.03731], [-90.7586, 35.03722], [-90.75725, 35.03707], [-90.75488, 35.0366], [-90.75052, 35.03558], [-90.74945, 35.03534], [-90.74527, 35.03438], [-90.73999, 35.03315], [-90.73689, 35.03243], [-90.73495, 35.03214], [-90.73318, 35.03203], [-90.73148, 35.03202], [-90.72976, 35.03214], [-90.72797, 35.03242], [-90.72608, 35.03283], [-90.72406, 35.03351], [-90.72267, 35.03417], [-90.72169, 35.03468], [-90.72105, 35.03505], [-90.71903, 35.03636], [-90.71566, 35.03874], [-90.71284, 35.0407], [-90.70693, 35.0448], [-90.70321, 35.04738], [-90.69867, 35.05057], [-90.69687, 35.05175], [-90.69499, 35.05285], [-90.69008, 35.05576], [-90.68731, 35.05742], [-90.68578, 35.05833], [-90.68352, 35.05966], [-90.68057, 35.06141], [-90.67912, 35.06232], [-90.66545, 35.07184], [-90.6643, 35.07261], [-90.6527, 35.08066], [-90.64882, 35.08331], [-90.64742, 35.08421], [-90.64596, 35.08509], [-90.64434, 35.08596], [-90.64266, 35.08675], [-90.64072, 35.08757], [-90.63873, 35.08829], [-90.63023, 35.09104], [-90.62292, 35.09348], [-90.61512, 35.09601], [-90.60709, 35.09862], [-90.58804, 35.10481], [-90.58421, 35.10606], [-90.57571, 35.1088], [-90.5752, 35.10896], [-90.56337, 35.11311], [-90.56253, 35.1134], [-90.55641, 35.11554], [-90.55432, 35.11628], [-90.54826, 35.11841], [-90.54784, 35.11855], [-90.54199, 35.12057], [-90.53553, 35.12284], [-90.52857, 35.12526], [-90.52325, 35.12713], [-90.52054, 35.12808], [-90.52014, 35.12822], [-90.51657, 35.12948], [-90.51471, 35.13008], [-90.51305, 35.13054], [-90.51134, 35.13096], [-90.5094, 35.13132], [-90.50729, 35.13164], [-90.50551, 35.13181], [-90.5047, 35.1319], [-90.502, 35.13202], [-90.49971, 35.13211], [-90.49419, 35.13228], [-90.48969, 35.13242], [-90.4896, 35.13243], [-90.48749, 35.1325], [-90.48728, 35.13251], [-90.4859, 35.13254], [-90.48104, 35.1327], [-90.47993, 35.13275], [-90.46813, 35.13315], [-90.46379, 35.1333], [-90.45476, 35.13361], [-90.45234, 35.13367], [-90.44201, 35.134], [-90.44028, 35.13413], [-90.43888, 35.13434], [-90.43742, 35.13464], [-90.4359, 35.13506], [-90.43463, 35.13552], [-90.43326, 35.1361], [-90.43104, 35.13719], [-90.42563, 35.13979], [-90.41363, 35.14554], [-90.40905, 35.14772], [-90.4065, 35.14895], [-90.40493, 35.14966], [-90.4042, 35.14993], [-90.40264, 35.15043], [-90.40156, 35.15074], [-90.40004, 35.15102], [-90.39862, 35.15118], [-90.39775, 35.15123], [-90.3968, 35.15128], [-90.39049, 35.151], [-90.37579, 35.1503], [-90.35548, 35.14934], [-90.35494, 35.14931], [-90.33743, 35.14851], [-90.33693, 35.14849], [-90.32862, 35.14806], [-90.32798, 35.14804], [-90.32404, 35.14789], [-90.31985, 35.14784], [-90.31937, 35.14784], [-90.30191, 35.14776], [-90.30143, 35.14775], [-90.29761, 35.14774], [-90.29491, 35.14776], [-90.29325, 35.14774], [-90.29227, 35.14773], [-90.28945, 35.1477], [-90.28685, 35.14765], [-90.28161, 35.14756], [-90.27164, 35.14744], [-90.26807, 35.14737], [-90.26659, 35.14761], [-90.26464, 35.14821], [-90.26451, 35.14825], [-90.26406, 35.14839], [-90.25553, 35.15103], [-90.25349, 35.15166], [-90.24921, 35.15293], [-90.24663, 35.15369], [-90.24623, 35.15382], [-90.23949, 35.15589], [-90.23306, 35.15786], [-90.23048, 35.15867], [-90.22992, 35.15884], [-90.22869, 35.15919], [-90.223, 35.16094], [-90.21968, 35.16196], [-90.2144, 35.16356], [-90.21088, 35.16463], [-90.21014, 35.16486], [-90.20756, 35.16563], [-90.20626, 35.16602], [-90.20291, 35.16704], [-90.20058, 35.16776], [-90.19984, 35.16805], [-90.19897, 35.16842], [-90.19815, 35.16893], [-90.19686, 35.16974], [-90.19613, 35.17014], [-90.19552, 35.17042], [-90.19517, 35.17054], [-90.19458, 35.17073], [-90.19418, 35.17082], [-90.1936, 35.17091], [-90.19297, 35.17094], [-90.19244, 35.17092], [-90.1916, 35.17082], [-90.19111, 35.17071], [-90.19093, 35.17064], [-90.19053, 35.17051], [-90.18995, 35.17032], [-90.18642, 35.16898], [-90.18597, 35.16884], [-90.18419, 35.16819], [-90.18308, 35.16775], [-90.18118, 35.16699], [-90.17939, 35.16629], [-90.17785, 35.16572], [-90.17692, 35.16535], [-90.17533, 35.16476], [-90.17456, 35.16448], [-90.17386, 35.16422], [-90.17064, 35.16297], [-90.16654, 35.16138], [-90.16459, 35.16066], [-90.16421, 35.16052], [-90.16262, 35.1599], [-90.15818, 35.15819], [-90.15766, 35.15799], [-90.15417, 35.15665], [-90.15282, 35.15613], [-90.1518, 35.15577], [-90.15087, 35.15551], [-90.15008, 35.15534], [-90.14902, 35.15518], [-90.14836, 35.15514], [-90.14784, 35.15512], [-90.1474, 35.15513], [-90.14689, 35.15516], [-90.14639, 35.15523], [-90.14583, 35.15531], [-90.14491, 35.15548], [-90.14426, 35.1556], [-90.14357, 35.15571], [-90.14313, 35.15575], [-90.14252, 35.15579], [-90.14107, 35.15587], [-90.1368, 35.15613], [-90.13575, 35.15618], [-90.133, 35.15632], [-90.13227, 35.15637], [-90.12701, 35.15667], [-90.12516, 35.15677], [-90.12399, 35.15677], [-90.12272, 35.15664], [-90.11572, 35.15541], [-90.11341, 35.15499], [-90.11033, 35.15444], [-90.10737, 35.1539], [-90.10645, 35.15374], [-90.10352, 35.15323], [-90.10187, 35.15306], [-90.10085, 35.15301], [-90.09812, 35.15301], [-90.08918, 35.153], [-90.0853, 35.153], [-90.07819, 35.15304], [-90.06848, 35.15304], [-90.05789, 35.15304], [-90.05688, 35.15305], [-90.05405, 35.15303], [-90.05231, 35.15305], [-90.05084, 35.15305], [-90.04948, 35.15307], [-90.04889, 35.15306], [-90.04872, 35.15305], [-90.04847, 35.15303], [-90.04819, 35.15297], [-90.04812, 35.15295], [-90.04802, 35.15293], [-90.04791, 35.15292], [-90.04758, 35.15285], [-90.04738, 35.15281], [-90.04707, 35.15273], [-90.0467, 35.15262], [-90.04585, 35.1523], [-90.04522, 35.15208], [-90.04478, 35.15193], [-90.04428, 35.1518], [-90.04382, 35.15171], [-90.04343, 35.15167], [-90.04265, 35.15161], [-90.04169, 35.15154], [-90.04104, 35.15147], [-90.04042, 35.1514], [-90.04003, 35.15124], [-90.03992, 35.15118], [-90.03985, 35.15113], [-90.0398, 35.15106], [-90.03976, 35.15097], [-90.03974, 35.1509], [-90.03974, 35.15083], [-90.03974, 35.15074], [-90.03979, 35.15066], [-90.03984, 35.1506], [-90.0399, 35.15054], [-90.03999, 35.15046], [-90.04011, 35.1504], [-90.04025, 35.15036], [-90.04039, 35.15034], [-90.04054, 35.15034], [-90.04069, 35.15036], [-90.04081, 35.1504], [-90.04092, 35.15044], [-90.04101, 35.15054], [-90.04108, 35.15063], [-90.04112, 35.15074], [-90.04111, 35.15083], [-90.04105, 35.15102], [-90.04095, 35.15127], [-90.04087, 35.15134], [-90.04066, 35.15153], [-90.04052, 35.15171], [-90.03985, 35.15231], [-90.03945, 35.15269], [-90.03919, 35.15296], [-90.03909, 35.15305], [-90.03882, 35.15331], [-90.03864, 35.15349], [-90.03857, 35.15357], [-90.03828, 35.1539], [-90.0381, 35.15417], [-90.03792, 35.15449], [-90.03779, 35.15486], [-90.0377, 35.15517], [-90.03759, 35.1557], [-90.0367, 35.15559], [-90.03535, 35.15548], [-90.03348, 35.1555], [-90.03269, 35.15544], [-90.03196, 35.15538], [-90.03118, 35.15515], [-90.02868, 35.15495], [-90.02511, 35.15464], [-90.02219, 35.1544], [-90.02152, 35.15435], [-90.02066, 35.15427], [-90.02056, 35.15425], [-90.01962, 35.15413], [-90.01776, 35.15396], [-90.01628, 35.15383], [-90.01575, 35.15378], [-90.01438, 35.15374], [-90.01318, 35.15364], [-90.01269, 35.15356], [-90.01147, 35.15325], [-90.01095, 35.1532], [-90.01042, 35.15326], [-90.00934, 35.15343], [-90.00891, 35.1535], [-90.00837, 35.15353], [-90.00792, 35.15349], [-90.00723, 35.15343], [-90.00562, 35.15326], [-90.00384, 35.15307], [-90.00209, 35.15291], [-90.002, 35.15291], [-90.00191, 35.1529], [-89.99956, 35.15266], [-89.99763, 35.15246], [-89.99754, 35.15246], [-89.99745, 35.15245], [-89.99232, 35.15195], [-89.99215, 35.15193], [-89.98775, 35.1515], [-89.98709, 35.15144], [-89.98599, 35.15133], [-89.98271, 35.15104], [-89.98202, 35.15094], [-89.98177, 35.15089], [-89.98162, 35.1508], [-89.98156, 35.15073], [-89.98146, 35.15045], [-89.98151, 35.1502], [-89.98164, 35.1494], [-89.98175, 35.1488], [-89.98178, 35.14864], [-89.98167, 35.14858], [-89.98157, 35.14854], [-89.98129, 35.14848], [-89.981, 35.14845], [-89.98059, 35.1484], [-89.98002, 35.14832], [-89.97962, 35.14824], [-89.97907, 35.14808], [-89.97862, 35.14793], [-89.97759, 35.14748], [-89.97694, 35.14723], [-89.97638, 35.14706], [-89.97579, 35.14694], [-89.97515, 35.14685], [-89.97393, 35.14674], [-89.97335, 35.14666], [-89.97282, 35.14656], [-89.97214, 35.14638], [-89.97168, 35.14627], [-89.97119, 35.14615], [-89.9707, 35.14606], [-89.97023, 35.14601], [-89.96697, 35.14582], [-89.96551, 35.14572], [-89.96481, 35.14571], [-89.96432, 35.14573], [-89.96375, 35.14584], [-89.96338, 35.14594], [-89.96309, 35.14602], [-89.96254, 35.14619], [-89.9621, 35.14628], [-89.96131, 35.14638], [-89.95802, 35.14675], [-89.95709, 35.14687], [-89.95673, 35.14694], [-89.9564, 35.14701], [-89.95602, 35.1471], [-89.95545, 35.14725], [-89.95445, 35.14752], [-89.95383, 35.14767], [-89.9528, 35.14791], [-89.95222, 35.14801], [-89.95166, 35.14807], [-89.95118, 35.14809], [-89.94996, 35.14808], [-89.94694, 35.14803], [-89.94686, 35.14803], [-89.94481, 35.148], [-89.94428, 35.14799], [-89.94253, 35.14796], [-89.94128, 35.14792], [-89.94056, 35.14783], [-89.94003, 35.14769], [-89.93992, 35.14767], [-89.93919, 35.14742], [-89.93815, 35.14702], [-89.93763, 35.14686], [-89.93708, 35.14671], [-89.9365, 35.14662], [-89.93572, 35.14658], [-89.93327, 35.14655], [-89.93198, 35.14654], [-89.929, 35.1465], [-89.92786, 35.14647], [-89.92671, 35.14641], [-89.92406, 35.14619], [-89.92264, 35.14607], [-89.92224, 35.14604], [-89.91897, 35.14573], [-89.91801, 35.14566], [-89.91706, 35.14561], [-89.91634, 35.14558], [-89.91587, 35.14557], [-89.91265, 35.14547], [-89.91151, 35.14544], [-89.91031, 35.14541], [-89.90955, 35.14544], [-89.9088, 35.1455], [-89.9081, 35.14558], [-89.90698, 35.14575], [-89.90474, 35.14609], [-89.90279, 35.1464], [-89.89916, 35.14697], [-89.89809, 35.14713], [-89.89709, 35.14727], [-89.89484, 35.14761], [-89.89314, 35.14787], [-89.89086, 35.14822], [-89.88981, 35.1484], [-89.88908, 35.14855], [-89.88826, 35.1488], [-89.8876, 35.1491], [-89.88701, 35.14945], [-89.88644, 35.14987], [-89.88545, 35.15073], [-89.88427, 35.15184], [-89.8835, 35.15256], [-89.88285, 35.15316], [-89.88204, 35.15391], [-89.88101, 35.1549], [-89.88026, 35.15554], [-89.87984, 35.15593], [-89.87887, 35.1568], [-89.87779, 35.15776], [-89.87711, 35.15831], [-89.87626, 35.15891], [-89.87606, 35.15905], [-89.8751, 35.15965], [-89.87412, 35.16017], [-89.87264, 35.16086], [-89.86761, 35.16282], [-89.86646, 35.16325], [-89.86172, 35.16509], [-89.86106, 35.16537], [-89.8577, 35.16663], [-89.85046, 35.1694], [-89.85001, 35.16958], [-89.84465, 35.17168], [-89.84255, 35.17245], [-89.84035, 35.17336], [-89.83714, 35.17479], [-89.83375, 35.17631], [-89.82808, 35.17886], [-89.82641, 35.17959], [-89.82315, 35.18108], [-89.81926, 35.18282], [-89.81755, 35.18362], [-89.81732, 35.18372], [-89.81438, 35.18502], [-89.81353, 35.18539], [-89.81292, 35.18567], [-89.81118, 35.18645], [-89.80864, 35.18758], [-89.80426, 35.1895], [-89.80358, 35.18981], [-89.80276, 35.19021], [-89.80204, 35.19057], [-89.8003, 35.19134], [-89.79764, 35.19252], [-89.79307, 35.19458], [-89.79222, 35.19496], [-89.7879, 35.19688], [-89.78767, 35.19697], [-89.77975, 35.20055], [-89.77769, 35.20154], [-89.77509, 35.20285], [-89.77276, 35.20402], [-89.77162, 35.2046], [-89.7698, 35.20553], [-89.7676, 35.20666], [-89.76698, 35.20697], [-89.75975, 35.21067], [-89.75745, 35.21184], [-89.74971, 35.2157], [-89.74715, 35.21716], [-89.74412, 35.2189], [-89.74129, 35.22063], [-89.73932, 35.22179], [-89.73704, 35.22315], [-89.73447, 35.22468], [-89.73115, 35.22665], [-89.72473, 35.23057], [-89.71565, 35.23586], [-89.70519, 35.24127], [-89.70281, 35.24258], [-89.69446, 35.24692], [-89.6942, 35.24707], [-89.68543, 35.25152], [-89.68497, 35.25176], [-89.68428, 35.25211], [-89.67733, 35.25567], [-89.67627, 35.25618], [-89.67567, 35.25649], [-89.66982, 35.25963], [-89.66806, 35.26053], [-89.66495, 35.26211], [-89.662, 35.26371], [-89.6611, 35.26417], [-89.65689, 35.26637], [-89.65043, 35.26971], [-89.65012, 35.26989], [-89.6381, 35.27622], [-89.63736, 35.27656], [-89.62513, 35.28303], [-89.61874, 35.28637], [-89.61663, 35.28741], [-89.61531, 35.28822], [-89.61209, 35.29037], [-89.60114, 35.2983], [-89.60018, 35.29896], [-89.59905, 35.2998], [-89.59791, 35.30063], [-89.59316, 35.30403], [-89.59276, 35.30432], [-89.58439, 35.31037], [-89.58397, 35.31066], [-89.5821, 35.31202], [-89.5816, 35.31238], [-89.56179, 35.32669], [-89.55699, 35.33011], [-89.55523, 35.33131], [-89.55346, 35.33242], [-89.54946, 35.33445], [-89.54908, 35.33464], [-89.54472, 35.33664], [-89.53264, 35.34224], [-89.53209, 35.34247], [-89.52168, 35.34728], [-89.51605, 35.34988], [-89.47793, 35.36746], [-89.47161, 35.37039], [-89.46924, 35.37142], [-89.46872, 35.37164], [-89.4682, 35.37185], [-89.46729, 35.3722], [-89.4653, 35.37288], [-89.45872, 35.37493], [-89.4522, 35.3769], [-89.43412, 35.38238], [-89.4323, 35.38293], [-89.42473, 35.38542], [-89.42295, 35.38614], [-89.42075, 35.38707], [-89.41688, 35.38911], [-89.41441, 35.39057], [-89.40951, 35.3936], [-89.3987, 35.40027], [-89.39141, 35.40478], [-89.37863, 35.41268], [-89.36428, 35.4215], [-89.36381, 35.42177], [-89.35713, 35.42592], [-89.34239, 35.43501], [-89.34108, 35.43579], [-89.33265, 35.44101], [-89.32651, 35.44498], [-89.32278, 35.44754], [-89.31858, 35.45041], [-89.31581, 35.45226], [-89.31413, 35.45327], [-89.31288, 35.45403], [-89.30752, 35.45725], [-89.29797, 35.46295], [-89.29166, 35.46671], [-89.28764, 35.46912], [-89.28142, 35.47286], [-89.27846, 35.47459], [-89.27696, 35.4757], [-89.27596, 35.47665], [-89.27493, 35.47788], [-89.27443, 35.4786], [-89.27384, 35.47948], [-89.27323, 35.4809], [-89.27287, 35.48179], [-89.27179, 35.48654], [-89.27134, 35.48813], [-89.27065, 35.49022], [-89.26922, 35.49455], [-89.26788, 35.49875], [-89.26649, 35.50303], [-89.26586, 35.50484], [-89.26565, 35.50548], [-89.26432, 35.50952], [-89.26418, 35.51001], [-89.26333, 35.51256], [-89.26297, 35.51361], [-89.25957, 35.52404], [-89.25925, 35.52496], [-89.25815, 35.52838], [-89.2568, 35.53247], [-89.25648, 35.53345], [-89.25589, 35.53457], [-89.25531, 35.5353], [-89.25458, 35.53598], [-89.25366, 35.53662], [-89.25298, 35.53697], [-89.25237, 35.53722], [-89.25207, 35.5373], [-89.25064, 35.53766], [-89.25023, 35.53774], [-89.24628, 35.53864], [-89.24577, 35.53875], [-89.23783, 35.54045], [-89.22453, 35.54334], [-89.2227, 35.54398], [-89.20616, 35.55045], [-89.19965, 35.55297], [-89.19405, 35.55523], [-89.19225, 35.55589], [-89.1913, 35.55622], [-89.18679, 35.55755], [-89.1751, 35.561], [-89.17098, 35.5621], [-89.15426, 35.56708], [-89.12986, 35.57426], [-89.12029, 35.57709], [-89.11883, 35.57755], [-89.10278, 35.58232], [-89.09967, 35.58321], [-89.09632, 35.58413], [-89.0946, 35.58463], [-89.09013, 35.58599], [-89.08293, 35.58812], [-89.07281, 35.59107], [-89.06077, 35.59462], [-89.05874, 35.59531], [-89.05704, 35.59595], [-89.05215, 35.59788], [-89.03483, 35.60469], [-89.02655, 35.60792], [-89.02096, 35.61011], [-89.01742, 35.61141], [-89.00414, 35.61562], [-89.00006, 35.61698], [-88.99753, 35.61779], [-88.99225, 35.61948], [-88.9823, 35.62266], [-88.98022, 35.62333], [-88.97434, 35.62521], [-88.96342, 35.62872], [-88.95239, 35.63205], [-88.94856, 35.63317], [-88.94518, 35.63414], [-88.93648, 35.63673], [-88.92463, 35.64013], [-88.91785, 35.64207], [-88.90009, 35.6472], [-88.89894, 35.64754], [-88.89509, 35.64873], [-88.89026, 35.65053], [-88.8889, 35.65107], [-88.87697, 35.65569], [-88.87661, 35.65583], [-88.87529, 35.65638], [-88.87453, 35.65669], [-88.8738, 35.65699], [-88.87063, 35.65821], [-88.85766, 35.66243], [-88.85451, 35.66345], [-88.85373, 35.6637], [-88.85054, 35.66474], [-88.83764, 35.66892], [-88.8365, 35.66929], [-88.83591, 35.66946], [-88.83551, 35.66956], [-88.83488, 35.66971], [-88.83389, 35.66991], [-88.83015, 35.67054], [-88.82987, 35.67059], [-88.82962, 35.67063], [-88.82937, 35.67067], [-88.82605, 35.67124], [-88.82336, 35.6717], [-88.81373, 35.67334], [-88.80608, 35.67465], [-88.8024, 35.67529], [-88.79871, 35.67592], [-88.79809, 35.67602], [-88.79006, 35.67741], [-88.78969, 35.67748], [-88.78756, 35.67783], [-88.77302, 35.68033], [-88.77211, 35.68045], [-88.77113, 35.68054], [-88.77023, 35.68058], [-88.74542, 35.68084], [-88.74226, 35.68091], [-88.73966, 35.68093], [-88.73733, 35.68099], [-88.73607, 35.68107], [-88.73475, 35.68126], [-88.73335, 35.68155], [-88.73125, 35.68213], [-88.72989, 35.6827], [-88.71869, 35.68759], [-88.71267, 35.69001], [-88.70715, 35.69215], [-88.68872, 35.69933], [-88.67936, 35.70296], [-88.67055, 35.70638], [-88.66619, 35.70802], [-88.66289, 35.70905], [-88.65042, 35.71292], [-88.63715, 35.71707], [-88.6309, 35.71902], [-88.62497, 35.72084], [-88.61769, 35.7231], [-88.61014, 35.72542], [-88.60725, 35.7263], [-88.60166, 35.72805], [-88.59911, 35.72898], [-88.59648, 35.73017], [-88.59207, 35.73245], [-88.58558, 35.73591], [-88.57449, 35.74179], [-88.5729, 35.7426], [-88.57004, 35.74384], [-88.56832, 35.74445], [-88.56689, 35.7449], [-88.56548, 35.74531], [-88.56373, 35.74575], [-88.55824, 35.74675], [-88.5487, 35.74838], [-88.54021, 35.74985], [-88.53424, 35.75087], [-88.52431, 35.7526], [-88.51671, 35.7539], [-88.50952, 35.75515], [-88.50791, 35.75541], [-88.50532, 35.75593], [-88.4974, 35.75795], [-88.49475, 35.75862], [-88.48771, 35.7604], [-88.47471, 35.76372], [-88.47093, 35.76469], [-88.46568, 35.76601], [-88.45022, 35.76997], [-88.44206, 35.77201], [-88.43877, 35.77284], [-88.43517, 35.7739], [-88.43127, 35.77532], [-88.41643, 35.78087], [-88.4091, 35.78364], [-88.40128, 35.78653], [-88.39844, 35.78755], [-88.39654, 35.78816], [-88.39542, 35.78845], [-88.38811, 35.78968], [-88.38544, 35.79016], [-88.3823, 35.79067], [-88.3813, 35.7909], [-88.38005, 35.79125], [-88.37836, 35.79187], [-88.37348, 35.79373], [-88.36471, 35.79711], [-88.36268, 35.79779], [-88.36073, 35.79831], [-88.35858, 35.7988], [-88.35245, 35.79968], [-88.34728, 35.80039], [-88.34507, 35.80069], [-88.3302, 35.80283], [-88.32965, 35.8029], [-88.32522, 35.8035], [-88.32314, 35.80381], [-88.32077, 35.80426], [-88.31864, 35.8049], [-88.31615, 35.80576], [-88.30988, 35.80798], [-88.30779, 35.80863], [-88.30574, 35.80919], [-88.3031, 35.80981], [-88.30015, 35.81044], [-88.29701, 35.81116], [-88.29386, 35.81186], [-88.28477, 35.8139], [-88.27898, 35.81522], [-88.27408, 35.81634], [-88.26964, 35.81734], [-88.26696, 35.81793], [-88.26582, 35.8182], [-88.26427, 35.81846], [-88.26304, 35.81857], [-88.26057, 35.81863], [-88.25761, 35.81839], [-88.25629, 35.81826], [-88.2483, 35.81746], [-88.24466, 35.8171], [-88.2362, 35.81619], [-88.22861, 35.81545], [-88.22003, 35.81459], [-88.21636, 35.81436], [-88.21279, 35.81425], [-88.20929, 35.81437], [-88.20572, 35.81467], [-88.19809, 35.81577], [-88.19213, 35.81666], [-88.1885, 35.81722], [-88.17903, 35.81858], [-88.17809, 35.81872], [-88.17766, 35.81879], [-88.17191, 35.81969], [-88.16998, 35.81986], [-88.16765, 35.81989], [-88.15208, 35.81865], [-88.14939, 35.81853], [-88.14799, 35.81861], [-88.14673, 35.81874], [-88.14419, 35.81916], [-88.1372, 35.82098], [-88.13161, 35.82241], [-88.12586, 35.82392], [-88.12169, 35.82499], [-88.11825, 35.82591], [-88.11511, 35.82671], [-88.10981, 35.82811], [-88.10754, 35.82886], [-88.10537, 35.82988], [-88.10311, 35.83114], [-88.10001, 35.83278], [-88.08859, 35.83896], [-88.08247, 35.84226], [-88.0744, 35.84662], [-88.0594, 35.8547], [-88.05418, 35.85752], [-88.04929, 35.86016], [-88.03785, 35.86634], [-88.03532, 35.86767], [-88.03345, 35.86867], [-88.03218, 35.86922], [-88.031, 35.86961], [-88.02995, 35.86995], [-88.02784, 35.87039], [-88.02624, 35.8706], [-88.02435, 35.87072], [-88.02153, 35.87062], [-88.00012, 35.86946], [-87.99011, 35.86889], [-87.98242, 35.86847], [-87.98057, 35.86842], [-87.9761, 35.86853], [-87.97166, 35.86859], [-87.96984, 35.86859], [-87.96608, 35.8686], [-87.96429, 35.86865], [-87.96261, 35.86882], [-87.95993, 35.86934], [-87.95767, 35.86978], [-87.95584, 35.87001], [-87.95419, 35.87008], [-87.95182, 35.87003], [-87.94988, 35.8698], [-87.94786, 35.86937], [-87.9454, 35.86861], [-87.93691, 35.8661], [-87.93541, 35.86568], [-87.93439, 35.86547], [-87.93325, 35.86537], [-87.93203, 35.86548], [-87.92962, 35.86592], [-87.9259, 35.86659], [-87.92466, 35.86673], [-87.92273, 35.8667], [-87.92051, 35.86656], [-87.91869, 35.8664], [-87.91692, 35.86599], [-87.9138, 35.86461], [-87.91199, 35.86399], [-87.91083, 35.86378], [-87.9095, 35.86369], [-87.90826, 35.86365], [-87.90776, 35.86371], [-87.90751, 35.86375], [-87.90323, 35.86439], [-87.90094, 35.8646], [-87.89867, 35.86467], [-87.89445, 35.86459], [-87.89222, 35.86467], [-87.89031, 35.86493], [-87.88865, 35.86527], [-87.88651, 35.86589], [-87.88178, 35.86749], [-87.88039, 35.86794], [-87.87901, 35.86827], [-87.87755, 35.86845], [-87.87599, 35.86849], [-87.87075, 35.86822], [-87.86944, 35.86833], [-87.86823, 35.86855], [-87.86717, 35.86882], [-87.86641, 35.8691], [-87.86605, 35.86927], [-87.86549, 35.86954], [-87.86508, 35.86973], [-87.86206, 35.8716], [-87.85946, 35.87313], [-87.85795, 35.87401], [-87.85644, 35.87479], [-87.85505, 35.87538], [-87.85225, 35.87633], [-87.85074, 35.8769], [-87.84928, 35.87755], [-87.84737, 35.87868], [-87.84518, 35.88015], [-87.84385, 35.8808], [-87.84223, 35.88127], [-87.84082, 35.8815], [-87.83974, 35.88154], [-87.83937, 35.88154], [-87.83885, 35.88154], [-87.83511, 35.88152], [-87.83294, 35.88154], [-87.82469, 35.88162], [-87.81297, 35.8817], [-87.81113, 35.88165], [-87.8095, 35.88149], [-87.80769, 35.88114], [-87.80503, 35.88045], [-87.8, 35.87914], [-87.79875, 35.87889], [-87.79772, 35.87878], [-87.79719, 35.87875], [-87.79494, 35.87883], [-87.78257, 35.88095], [-87.77376, 35.88251], [-87.76704, 35.8837], [-87.76477, 35.88376], [-87.76248, 35.88334], [-87.7611, 35.88284], [-87.75341, 35.87953], [-87.75102, 35.87853], [-87.74952, 35.87799], [-87.74798, 35.87764], [-87.74621, 35.87731], [-87.74154, 35.87678], [-87.73126, 35.87569], [-87.7142, 35.87386], [-87.71262, 35.87377], [-87.71021, 35.8739], [-87.70875, 35.87413], [-87.70697, 35.87457], [-87.70611, 35.87482], [-87.70407, 35.87569], [-87.69848, 35.87862], [-87.69306, 35.88149], [-87.69173, 35.88218], [-87.68982, 35.88296], [-87.68767, 35.88355], [-87.68575, 35.88385], [-87.68356, 35.88398], [-87.66987, 35.88449], [-87.66724, 35.88469], [-87.66543, 35.885], [-87.66362, 35.88543], [-87.66091, 35.88628], [-87.65743, 35.88764], [-87.65673, 35.88793], [-87.65438, 35.8889], [-87.64448, 35.89294], [-87.64372, 35.89325], [-87.6422, 35.89383], [-87.64186, 35.89397], [-87.64012, 35.89472], [-87.63845, 35.89555], [-87.63807, 35.89574], [-87.63684, 35.89647], [-87.63588, 35.89704], [-87.63071, 35.90002], [-87.6247, 35.90349], [-87.61852, 35.90709], [-87.61616, 35.90863], [-87.61427, 35.9101], [-87.60904, 35.91439], [-87.60682, 35.91621], [-87.60457, 35.918], [-87.6003, 35.92153], [-87.59828, 35.92316], [-87.59705, 35.924], [-87.59581, 35.92469], [-87.59437, 35.92538], [-87.59249, 35.92607], [-87.59115, 35.92646], [-87.58786, 35.9272], [-87.58697, 35.9275], [-87.58617, 35.92788], [-87.58514, 35.92847], [-87.58396, 35.92937], [-87.58298, 35.93049], [-87.58218, 35.9317], [-87.58092, 35.93357], [-87.57972, 35.93465], [-87.57884, 35.93531], [-87.57779, 35.93581], [-87.57637, 35.93632], [-87.57382, 35.9369], [-87.57226, 35.93743], [-87.57095, 35.93808], [-87.56992, 35.93882], [-87.5687, 35.93993], [-87.56742, 35.94158], [-87.56621, 35.94284], [-87.56498, 35.94399], [-87.5634, 35.94511], [-87.56037, 35.94698], [-87.55829, 35.94833], [-87.55704, 35.94933], [-87.55588, 35.95041], [-87.55483, 35.95172], [-87.55403, 35.95287], [-87.55226, 35.95623], [-87.55082, 35.95873], [-87.55029, 35.95947], [-87.54982, 35.95999], [-87.5494, 35.96045], [-87.549, 35.96086], [-87.54859, 35.96128], [-87.54763, 35.96212], [-87.54628, 35.96307], [-87.54483, 35.96393], [-87.54374, 35.96447], [-87.5425, 35.96501], [-87.53996, 35.96586], [-87.5387, 35.96636], [-87.53747, 35.96694], [-87.53547, 35.96807], [-87.53426, 35.96892], [-87.53307, 35.96991], [-87.53191, 35.9708], [-87.53088, 35.97153], [-87.53007, 35.97202], [-87.52792, 35.97309], [-87.52648, 35.97367], [-87.52483, 35.97413], [-87.51618, 35.97634], [-87.50587, 35.97886], [-87.50516, 35.97907], [-87.50444, 35.97929], [-87.50404, 35.97945], [-87.50368, 35.97958], [-87.50302, 35.97984], [-87.50194, 35.98031], [-87.50013, 35.9813], [-87.49799, 35.98282], [-87.49589, 35.98455], [-87.49384, 35.98621], [-87.49287, 35.98692], [-87.49148, 35.98772], [-87.4899, 35.98847], [-87.48813, 35.98916], [-87.48519, 35.99026], [-87.47699, 35.99333], [-87.47006, 35.99591], [-87.46894, 35.99626], [-87.46761, 35.99662], [-87.46666, 35.99685], [-87.465, 35.9971], [-87.4634, 35.99723], [-87.46194, 35.99726], [-87.46048, 35.99721], [-87.45722, 35.99679], [-87.45056, 35.99579], [-87.446, 35.99511], [-87.44278, 35.99466], [-87.44102, 35.99446], [-87.43994, 35.99441], [-87.43884, 35.99439], [-87.43746, 35.99438], [-87.43481, 35.9947], [-87.43298, 35.99508], [-87.43102, 35.99571], [-87.42784, 35.99707], [-87.42294, 35.99937], [-87.41863, 36.00136], [-87.40935, 36.00566], [-87.40796, 36.00618], [-87.40642, 36.00663], [-87.40478, 36.00696], [-87.40329, 36.00716], [-87.40141, 36.00735], [-87.40078, 36.00743], [-87.39938, 36.00759], [-87.39749, 36.00779], [-87.3896, 36.00863], [-87.38692, 36.0091], [-87.38477, 36.00961], [-87.37952, 36.01134], [-87.37451, 36.01313], [-87.37334, 36.01355], [-87.37133, 36.01444], [-87.36797, 36.01609], [-87.36586, 36.0171], [-87.36422, 36.0178], [-87.36217, 36.01841], [-87.36019, 36.01868], [-87.35631, 36.01871], [-87.35291, 36.0187], [-87.34827, 36.01864], [-87.3431, 36.01862], [-87.34176, 36.0187], [-87.33962, 36.01893], [-87.3371, 36.01936], [-87.33532, 36.01964], [-87.33223, 36.02014], [-87.32326, 36.0216], [-87.31305, 36.02313], [-87.30962, 36.02338], [-87.30658, 36.02351], [-87.29783, 36.02371], [-87.29734, 36.02371], [-87.29659, 36.02369], [-87.29228, 36.02359], [-87.29126, 36.02358], [-87.29076, 36.02358], [-87.29033, 36.02359], [-87.28991, 36.0236], [-87.28952, 36.02362], [-87.28913, 36.02365], [-87.28873, 36.02368], [-87.28831, 36.02372], [-87.28781, 36.02378], [-87.28729, 36.02386], [-87.28639, 36.02401], [-87.28527, 36.02421], [-87.28437, 36.02437], [-87.28179, 36.02484], [-87.28134, 36.02491], [-87.28097, 36.02496], [-87.28068, 36.02499], [-87.28036, 36.02502], [-87.28004, 36.02505], [-87.27975, 36.02506], [-87.27943, 36.02506], [-87.27916, 36.02505], [-87.27886, 36.02504], [-87.27857, 36.02502], [-87.27825, 36.02499], [-87.27786, 36.02494], [-87.27752, 36.02489], [-87.27718, 36.02483], [-87.27687, 36.02476], [-87.27659, 36.0247], [-87.27631, 36.02462], [-87.27547, 36.02438], [-87.27078, 36.023], [-87.26587, 36.02157], [-87.26457, 36.02119], [-87.26397, 36.021], [-87.26297, 36.02071], [-87.2622, 36.02047], [-87.26013, 36.01987], [-87.25838, 36.01935], [-87.25744, 36.01905], [-87.25648, 36.01877], [-87.25534, 36.01844], [-87.25462, 36.01823], [-87.25414, 36.0181], [-87.25365, 36.01798], [-87.25307, 36.01785], [-87.25265, 36.01777], [-87.25206, 36.01766], [-87.25153, 36.01757], [-87.25089, 36.01748], [-87.25033, 36.01743], [-87.24972, 36.01737], [-87.24913, 36.01732], [-87.24832, 36.01729], [-87.24753, 36.01728], [-87.24705, 36.01729], [-87.24656, 36.0173], [-87.24605, 36.01733], [-87.2455, 36.01737], [-87.24451, 36.01747], [-87.24414, 36.01751], [-87.24384, 36.01755], [-87.24326, 36.01765], [-87.24281, 36.01773], [-87.24253, 36.01778], [-87.24187, 36.01791], [-87.24072, 36.01816], [-87.23918, 36.01849], [-87.23459, 36.01946], [-87.23398, 36.0196], [-87.23342, 36.01973], [-87.23298, 36.01984], [-87.23262, 36.01994], [-87.2321, 36.0201], [-87.2317, 36.02023], [-87.23123, 36.02039], [-87.23085, 36.02053], [-87.23051, 36.02067], [-87.23004, 36.02086], [-87.22961, 36.02105], [-87.22806, 36.02177], [-87.22628, 36.02261], [-87.22546, 36.02299], [-87.22496, 36.02321], [-87.22452, 36.0234], [-87.22373, 36.02372], [-87.21921, 36.02547], [-87.21847, 36.02577], [-87.21793, 36.026], [-87.21734, 36.02626], [-87.21678, 36.02651], [-87.21624, 36.02677], [-87.21576, 36.027], [-87.2152, 36.02728], [-87.21333, 36.02821], [-87.21146, 36.02915], [-87.21114, 36.0293], [-87.21081, 36.02946], [-87.21049, 36.0296], [-87.21017, 36.02971], [-87.20994, 36.02979], [-87.20973, 36.02985], [-87.20943, 36.02993], [-87.20921, 36.02998], [-87.20901, 36.03002], [-87.20884, 36.03004], [-87.20849, 36.03008], [-87.20811, 36.03011], [-87.20774, 36.03012], [-87.20741, 36.03012], [-87.20705, 36.0301], [-87.20671, 36.03007], [-87.20645, 36.03003], [-87.2061, 36.02997], [-87.20578, 36.0299], [-87.20542, 36.0298], [-87.20518, 36.02972], [-87.20485, 36.0296], [-87.20459, 36.02949], [-87.20434, 36.02938], [-87.20372, 36.0291], [-87.20307, 36.02881], [-87.19988, 36.02734], [-87.19915, 36.02701], [-87.19867, 36.02679], [-87.1981, 36.02656], [-87.19757, 36.02635], [-87.19711, 36.02619], [-87.19672, 36.02605], [-87.19626, 36.02589], [-87.19214, 36.02456], [-87.19, 36.02387], [-87.18945, 36.02371], [-87.18909, 36.02361], [-87.18874, 36.02353], [-87.1884, 36.02347], [-87.1881, 36.02342], [-87.18788, 36.0234], [-87.18772, 36.02339], [-87.1876, 36.02337], [-87.18737, 36.02337], [-87.18708, 36.02337], [-87.18684, 36.02337], [-87.18665, 36.02338], [-87.18642, 36.02339], [-87.18615, 36.02342], [-87.1859, 36.02346], [-87.18568, 36.0235], [-87.18538, 36.02356], [-87.18502, 36.02365], [-87.18474, 36.02373], [-87.18444, 36.02383], [-87.18413, 36.02395], [-87.18377, 36.02411], [-87.18329, 36.02435], [-87.18242, 36.02479], [-87.1762, 36.02796], [-87.1718, 36.0302], [-87.17063, 36.0308], [-87.17007, 36.03105], [-87.16905, 36.0315], [-87.16853, 36.03173], [-87.16788, 36.03205], [-87.16714, 36.03242], [-87.16567, 36.03317], [-87.16103, 36.03554], [-87.15869, 36.03673], [-87.15553, 36.03833], [-87.15419, 36.03901], [-87.1512, 36.04054], [-87.15055, 36.04087], [-87.15016, 36.0411], [-87.14976, 36.04134], [-87.14934, 36.0416], [-87.14879, 36.04197], [-87.14837, 36.04227], [-87.14787, 36.04265], [-87.14738, 36.04306], [-87.14704, 36.04335], [-87.14645, 36.04389], [-87.14594, 36.04442], [-87.14548, 36.04493], [-87.14512, 36.04538], [-87.14478, 36.04582], [-87.14446, 36.04626], [-87.14412, 36.04676], [-87.14385, 36.04719], [-87.1434, 36.04795], [-87.14324, 36.04822], [-87.14245, 36.04954], [-87.14025, 36.05318], [-87.13968, 36.05412], [-87.1394, 36.05456], [-87.13909, 36.055], [-87.1388, 36.05539], [-87.13851, 36.05575], [-87.13817, 36.05615], [-87.13785, 36.05651], [-87.13746, 36.05691], [-87.13706, 36.05729], [-87.13669, 36.05765], [-87.13586, 36.05843], [-87.13213, 36.06191], [-87.13158, 36.06243], [-87.1312, 36.06281], [-87.13062, 36.06339], [-87.13007, 36.06399], [-87.12878, 36.06543], [-87.12765, 36.0667], [-87.12576, 36.06881], [-87.12359, 36.07123], [-87.12318, 36.0717], [-87.12296, 36.07194], [-87.12259, 36.07233], [-87.12222, 36.07269], [-87.12184, 36.07304], [-87.12148, 36.07335], [-87.12107, 36.07369], [-87.12058, 36.07406], [-87.12013, 36.07439], [-87.11965, 36.07471], [-87.11933, 36.07492], [-87.11865, 36.07532], [-87.11704, 36.07622], [-87.11409, 36.07788], [-87.11226, 36.07893], [-87.10992, 36.08025], [-87.10953, 36.08047], [-87.10892, 36.08077], [-87.10833, 36.08104], [-87.10783, 36.08126], [-87.10745, 36.08142], [-87.10684, 36.08164], [-87.10637, 36.0818], [-87.10592, 36.08195], [-87.10527, 36.08214], [-87.10466, 36.08229], [-87.10406, 36.08243], [-87.10363, 36.08252], [-87.10309, 36.08262], [-87.1024, 36.08274], [-87.10194, 36.08282], [-87.09814, 36.08344], [-87.09645, 36.08372], [-87.09516, 36.08393], [-87.09433, 36.08407], [-87.09283, 36.08432], [-87.09122, 36.08458], [-87.09041, 36.08471], [-87.08841, 36.08504], [-87.0759, 36.08723], [-87.07217, 36.08765], [-87.06875, 36.08782], [-87.06556, 36.08777], [-87.06304, 36.08761], [-87.06088, 36.0875], [-87.05656, 36.08735], [-87.05353, 36.0871], [-87.05182, 36.08655], [-87.05031, 36.08575], [-87.04863, 36.08474], [-87.04159, 36.08055], [-87.03838, 36.0787], [-87.03641, 36.07795], [-87.03488, 36.07756], [-87.03333, 36.07738], [-87.03315, 36.07735], [-87.03136, 36.07718], [-87.02883, 36.07694], [-87.02724, 36.07682], [-87.02529, 36.07682], [-87.02418, 36.07683], [-87.02057, 36.07692], [-87.01993, 36.07693], [-87.01817, 36.07698], [-87.01597, 36.07696], [-87.00995, 36.07715], [-87.0079, 36.0772], [-87.00429, 36.07736], [-87.00108, 36.07751], [-86.99746, 36.07768], [-86.99481, 36.07784], [-86.99412, 36.07787], [-86.99239, 36.07792], [-86.99052, 36.07794], [-86.98867, 36.07782], [-86.98708, 36.07757], [-86.98505, 36.07701], [-86.98333, 36.0764], [-86.98241, 36.07606], [-86.98114, 36.07561], [-86.97882, 36.0748], [-86.97717, 36.07425], [-86.97547, 36.07392], [-86.97457, 36.07386], [-86.97361, 36.07389], [-86.97268, 36.07399], [-86.9718, 36.07411], [-86.97043, 36.07448], [-86.96916, 36.07499], [-86.96798, 36.07553], [-86.9653, 36.07684], [-86.96009, 36.07938], [-86.9566, 36.08105], [-86.956, 36.08134], [-86.95143, 36.08352], [-86.94982, 36.08427], [-86.94419, 36.08705], [-86.94356, 36.0874], [-86.94252, 36.0881], [-86.94158, 36.08889], [-86.94049, 36.08984], [-86.93986, 36.09056], [-86.9393, 36.09132], [-86.93863, 36.09235], [-86.93793, 36.09374], [-86.93623, 36.09748], [-86.9348, 36.10052], [-86.9341, 36.1017], [-86.93333, 36.10269], [-86.93264, 36.10351], [-86.93182, 36.1043], [-86.93164, 36.10446], [-86.93102, 36.10499], [-86.93026, 36.10564], [-86.92593, 36.10884], [-86.92288, 36.11111], [-86.92241, 36.11145], [-86.91981, 36.1134], [-86.91729, 36.1153], [-86.91507, 36.11696], [-86.91379, 36.11807], [-86.91166, 36.12027], [-86.90905, 36.12305], [-86.90778, 36.12405], [-86.90574, 36.12514], [-86.90336, 36.1263], [-86.90264, 36.12668], [-86.90243, 36.12682], [-86.90195, 36.12716], [-86.90127, 36.12781], [-86.8988, 36.13045], [-86.89826, 36.13106], [-86.89732, 36.13207], [-86.89637, 36.13307], [-86.89548, 36.13389], [-86.89471, 36.13449], [-86.88804, 36.13944], [-86.88521, 36.14154], [-86.88474, 36.1419], [-86.88031, 36.1452], [-86.87683, 36.14771], [-86.87523, 36.14857], [-86.87478, 36.14877], [-86.87362, 36.14921], [-86.87323, 36.14934], [-86.87219, 36.1496], [-86.87123, 36.14982], [-86.87019, 36.15], [-86.86921, 36.15012], [-86.86598, 36.15049], [-86.86488, 36.15067], [-86.86396, 36.15085], [-86.86242, 36.15117], [-86.86186, 36.15129], [-86.85897, 36.15197], [-86.85738, 36.15233], [-86.85603, 36.15262], [-86.85512, 36.1528], [-86.8544, 36.15291], [-86.8537, 36.15303], [-86.85249, 36.1532], [-86.85195, 36.15328], [-86.85056, 36.15344], [-86.8498, 36.15349], [-86.84888, 36.15353], [-86.84835, 36.15355], [-86.84568, 36.1536], [-86.84258, 36.15372], [-86.84199, 36.15374], [-86.83703, 36.15391], [-86.8368, 36.15392], [-86.83612, 36.15393], [-86.83491, 36.15401], [-86.83439, 36.15406], [-86.83307, 36.15426], [-86.83153, 36.1546], [-86.82995, 36.15505], [-86.82862, 36.15542], [-86.82802, 36.1556], [-86.82729, 36.15581], [-86.82602, 36.15617], [-86.82503, 36.15645], [-86.82408, 36.15672], [-86.82334, 36.15706], [-86.82292, 36.15739], [-86.82232, 36.15809], [-86.82183, 36.15898], [-86.82165, 36.15935], [-86.8214, 36.15987], [-86.82124, 36.16012], [-86.82092, 36.16077], [-86.82067, 36.16128], [-86.81995, 36.16267], [-86.81946, 36.16354], [-86.81842, 36.16499], [-86.81804, 36.16537], [-86.81785, 36.16558], [-86.81758, 36.16589], [-86.81703, 36.16648], [-86.81668, 36.16679], [-86.81602, 36.16739], [-86.81531, 36.1679], [-86.81468, 36.16828], [-86.81405, 36.16861], [-86.81338, 36.16888], [-86.81287, 36.16907], [-86.81229, 36.16925], [-86.81212, 36.1693], [-86.8112, 36.16949], [-86.81067, 36.16957], [-86.80998, 36.16967], [-86.80954, 36.16973], [-86.80651, 36.17014], [-86.8054, 36.17034], [-86.80496, 36.17044], [-86.80437, 36.17064], [-86.80376, 36.1709], [-86.80334, 36.17114], [-86.80302, 36.17133], [-86.80283, 36.17145], [-86.80201, 36.17189], [-86.80178, 36.17198], [-86.80149, 36.17205], [-86.80117, 36.1721], [-86.80087, 36.17212], [-86.80055, 36.1721], [-86.8002, 36.17203], [-86.79989, 36.17194], [-86.79933, 36.17169], [-86.79893, 36.17144], [-86.79863, 36.17116], [-86.79844, 36.17097], [-86.7981, 36.17054], [-86.796, 36.16753], [-86.79538, 36.16668], [-86.79489, 36.16597], [-86.79455, 36.16542], [-86.79441, 36.16515], [-86.79428, 36.16491], [-86.79413, 36.16458], [-86.79402, 36.1643], [-86.79397, 36.16412], [-86.7939, 36.16396], [-86.79383, 36.16372], [-86.79372, 36.16326], [-86.79364, 36.16275], [-86.7935, 36.16199], [-86.79339, 36.16143], [-86.79334, 36.16121], [-86.79324, 36.16098], [-86.79312, 36.16071], [-86.79303, 36.16053], [-86.79289, 36.16027], [-86.79267, 36.15992], [-86.79247, 36.15965], [-86.7921, 36.15919], [-86.79144, 36.15843], [-86.79073, 36.1576], [-86.79013, 36.15685], [-86.78983, 36.15647], [-86.78945, 36.15592], [-86.78885, 36.15499], [-86.7884, 36.15431], [-86.78797, 36.15364], [-86.78741, 36.15278], [-86.78701, 36.15216], [-86.78674, 36.1518], [-86.78651, 36.15153], [-86.7862, 36.15119], [-86.78599, 36.15101], [-86.78545, 36.1505], [-86.78495, 36.15014], [-86.78465, 36.14994], [-86.78408, 36.1496], [-86.78373, 36.14942], [-86.78314, 36.14914], [-86.78264, 36.14895], [-86.78225, 36.14881], [-86.78172, 36.14864], [-86.78125, 36.14853], [-86.78047, 36.1484], [-86.78015, 36.14837], [-86.77973, 36.14831], [-86.77934, 36.14828], [-86.77881, 36.14826], [-86.77846, 36.14827], [-86.77773, 36.1483], [-86.77702, 36.14837], [-86.77626, 36.14849], [-86.77588, 36.14857], [-86.77517, 36.14875], [-86.77482, 36.14884], [-86.77436, 36.14899], [-86.77412, 36.14907], [-86.77328, 36.14943], [-86.77298, 36.14955], [-86.77279, 36.14962], [-86.77062, 36.15056], [-86.76828, 36.15157], [-86.7645, 36.15322], [-86.76328, 36.1537], [-86.7623, 36.15406], [-86.7615, 36.15431], [-86.76108, 36.15441], [-86.76075, 36.15446], [-86.76035, 36.15446], [-86.75993, 36.15442], [-86.7593, 36.15426], [-86.75808, 36.15389], [-86.75715, 36.15357], [-86.75649, 36.15332], [-86.75605, 36.15315], [-86.75515, 36.15277], [-86.75432, 36.15243], [-86.7535, 36.15211], [-86.75243, 36.1517], [-86.75106, 36.15117], [-86.75071, 36.15103], [-86.74994, 36.15069], [-86.74947, 36.15047], [-86.749, 36.15027], [-86.74802, 36.14974], [-86.74699, 36.14917], [-86.74656, 36.14891], [-86.74593, 36.14852], [-86.74334, 36.14683], [-86.74088, 36.14529], [-86.73926, 36.14434], [-86.73801, 36.14361], [-86.73643, 36.14274], [-86.73516, 36.14205], [-86.73386, 36.14139], [-86.73311, 36.14106], [-86.73226, 36.14072], [-86.73193, 36.1406], [-86.73067, 36.14023], [-86.73, 36.14008], [-86.72943, 36.13999], [-86.72806, 36.13986], [-86.72734, 36.13984], [-86.72538, 36.13989], [-86.72406, 36.13999], [-86.72153, 36.14038], [-86.71763, 36.14098], [-86.7135, 36.14166], [-86.70377, 36.14323], [-86.70154, 36.14358], [-86.69873, 36.144], [-86.69695, 36.14417], [-86.69575, 36.14419], [-86.69434, 36.14416], [-86.693, 36.14403], [-86.69218, 36.14392], [-86.68762, 36.14328], [-86.68547, 36.14297], [-86.68524, 36.14293], [-86.68481, 36.14287], [-86.68201, 36.14243], [-86.6799, 36.14214], [-86.67793, 36.14195], [-86.67685, 36.14187], [-86.67608, 36.14181], [-86.67127, 36.14149], [-86.66961, 36.14138], [-86.66618, 36.14111], [-86.66445, 36.14101], [-86.6603, 36.14079], [-86.65902, 36.14078], [-86.65826, 36.14081], [-86.65704, 36.14091], [-86.65576, 36.14109], [-86.65412, 36.14143], [-86.65288, 36.14175], [-86.65157, 36.14218], [-86.65064, 36.14253], [-86.64962, 36.143], [-86.64864, 36.14353], [-86.64738, 36.14424], [-86.64494, 36.14584], [-86.64162, 36.1478], [-86.63842, 36.14986], [-86.63627, 36.15119], [-86.63391, 36.15271], [-86.63332, 36.15308], [-86.62901, 36.15567], [-86.62464, 36.15846], [-86.6217, 36.16028], [-86.62005, 36.16129], [-86.6192, 36.16181], [-86.61482, 36.16454], [-86.61432, 36.16485], [-86.61351, 36.16533], [-86.61122, 36.16678], [-86.61046, 36.16725], [-86.60982, 36.16758], [-86.60862, 36.16819], [-86.60641, 36.16905], [-86.60543, 36.16933], [-86.60404, 36.16969], [-86.60241, 36.16995], [-86.60145, 36.17006], [-86.59983, 36.17016], [-86.59744, 36.17009], [-86.596, 36.17003], [-86.59425, 36.16997], [-86.59072, 36.16978], [-86.58756, 36.16962], [-86.58438, 36.16948], [-86.58034, 36.16928], [-86.5763, 36.16908], [-86.57147, 36.16884], [-86.57085, 36.16881], [-86.56867, 36.1687], [-86.56186, 36.16838], [-86.55359, 36.16796], [-86.54453, 36.16751], [-86.53465, 36.16702], [-86.53334, 36.16703], [-86.532, 36.16709], [-86.5301, 36.16732], [-86.52747, 36.1679], [-86.52278, 36.16905], [-86.52214, 36.16919], [-86.52157, 36.16934], [-86.51764, 36.17026], [-86.51278, 36.17136], [-86.50688, 36.17209], [-86.50415, 36.17236], [-86.49683, 36.17311], [-86.49115, 36.17371], [-86.46157, 36.17758], [-86.45651, 36.17826], [-86.45164, 36.17891], [-86.41332, 36.18405], [-86.40631, 36.1849], [-86.40533, 36.18496], [-86.39912, 36.18483], [-86.38611, 36.18446], [-86.37516, 36.18419], [-86.36697, 36.18398], [-86.36229, 36.18385], [-86.35616, 36.18368], [-86.34618, 36.18342], [-86.34159, 36.18329], [-86.33812, 36.1832], [-86.33762, 36.18319], [-86.33352, 36.18307], [-86.33231, 36.18301], [-86.32122, 36.18272], [-86.32054, 36.1827], [-86.31524, 36.18257], [-86.30527, 36.18229], [-86.30241, 36.18222], [-86.30192, 36.18221], [-86.30044, 36.18217], [-86.29825, 36.18211], [-86.29592, 36.18221], [-86.29555, 36.18223], [-86.29407, 36.18248], [-86.29001, 36.18338], [-86.28221, 36.18514], [-86.27668, 36.1864], [-86.27265, 36.18728], [-86.27072, 36.18773], [-86.27023, 36.18785], [-86.26948, 36.18802], [-86.26882, 36.18816], [-86.26616, 36.18878], [-86.24748, 36.193], [-86.24649, 36.19318], [-86.24545, 36.19333], [-86.24414, 36.19344], [-86.24324, 36.19348], [-86.23832, 36.19356], [-86.23739, 36.19357], [-86.22866, 36.19373], [-86.22786, 36.19374], [-86.22004, 36.19387], [-86.20467, 36.19413], [-86.20295, 36.19416], [-86.20199, 36.19407], [-86.19986, 36.19387], [-86.19458, 36.19305], [-86.18147, 36.19118], [-86.18091, 36.1911], [-86.17291, 36.1899], [-86.171, 36.18966], [-86.16894, 36.18921], [-86.16807, 36.18897], [-86.16747, 36.18878], [-86.1659, 36.18818], [-86.16167, 36.18625], [-86.15386, 36.18263], [-86.14109, 36.1766], [-86.13068, 36.17173], [-86.1291, 36.17116], [-86.12792, 36.17083], [-86.12667, 36.17066], [-86.12487, 36.17057], [-86.11871, 36.17066], [-86.11699, 36.17048], [-86.11562, 36.17017], [-86.11013, 36.16847], [-86.10425, 36.16674], [-86.1027, 36.16645], [-86.10137, 36.16643], [-86.10008, 36.16653], [-86.0986, 36.16678], [-86.09751, 36.16714], [-86.09418, 36.16851], [-86.08176, 36.17391], [-86.07972, 36.17457], [-86.07801, 36.17487], [-86.07614, 36.17497], [-86.07446, 36.17488], [-86.0727, 36.17461], [-86.07204, 36.17446], [-86.06693, 36.17338], [-86.06545, 36.17301], [-86.06393, 36.17237], [-86.06298, 36.17182], [-86.05996, 36.16986], [-86.05914, 36.16941], [-86.05809, 36.16903], [-86.05698, 36.1687], [-86.05605, 36.16854], [-86.05432, 36.16846], [-86.05294, 36.16858], [-86.05118, 36.16889], [-86.04395, 36.17035], [-86.02758, 36.17372], [-86.02385, 36.1745], [-86.02086, 36.17502], [-86.0176, 36.17554], [-86.01648, 36.1757], [-86.01061, 36.17655], [-86.00719, 36.17705], [-86.00498, 36.17748], [-86.00461, 36.17757], [-86.00383, 36.17775], [-85.99747, 36.17921], [-85.9932, 36.18024], [-85.99187, 36.18044], [-85.99054, 36.18048], [-85.98891, 36.18039], [-85.98222, 36.17984], [-85.9695, 36.17888], [-85.96873, 36.17882], [-85.96267, 36.17833], [-85.96149, 36.17833], [-85.96052, 36.17845], [-85.95623, 36.1793], [-85.95443, 36.17958], [-85.95316, 36.17961], [-85.95179, 36.17953], [-85.95085, 36.17938], [-85.94794, 36.17899], [-85.94732, 36.17889], [-85.94405, 36.17835], [-85.93553, 36.17707], [-85.93472, 36.17693], [-85.92806, 36.17584], [-85.92445, 36.17513], [-85.92222, 36.17452], [-85.92123, 36.17426], [-85.92068, 36.17405], [-85.91796, 36.17301], [-85.91028, 36.16975], [-85.90922, 36.16928], [-85.90394, 36.16698], [-85.90092, 36.16579], [-85.89849, 36.16502], [-85.89535, 36.16424], [-85.89396, 36.16394], [-85.89348, 36.16382], [-85.8907, 36.16316], [-85.88786, 36.1625], [-85.88728, 36.16231], [-85.88675, 36.16209], [-85.88618, 36.16182], [-85.88569, 36.16154], [-85.88471, 36.16078], [-85.88277, 36.15873], [-85.88067, 36.15651], [-85.875, 36.15167], [-85.87015, 36.14762], [-85.86909, 36.14706], [-85.86835, 36.14673], [-85.86782, 36.14657], [-85.86727, 36.14643], [-85.86642, 36.14628], [-85.86567, 36.14621], [-85.86508, 36.14619], [-85.86411, 36.1462], [-85.86257, 36.14621], [-85.85488, 36.14631], [-85.8542, 36.14629], [-85.85366, 36.14624], [-85.85302, 36.14613], [-85.85255, 36.14602], [-85.85217, 36.14589], [-85.85144, 36.14562], [-85.84897, 36.1445], [-85.84437, 36.14247], [-85.84338, 36.14208], [-85.84194, 36.14161], [-85.84159, 36.1415], [-85.84071, 36.14125], [-85.83971, 36.14101], [-85.83845, 36.14075], [-85.83734, 36.14057], [-85.83617, 36.14042], [-85.83414, 36.14023], [-85.83196, 36.14004], [-85.8306, 36.13992], [-85.82028, 36.13898], [-85.81864, 36.13883], [-85.81624, 36.13861], [-85.81272, 36.13832], [-85.81099, 36.13829], [-85.81019, 36.13833], [-85.8089, 36.13843], [-85.80652, 36.13883], [-85.80328, 36.13971], [-85.80296, 36.13982], [-85.80193, 36.14007], [-85.79938, 36.14074], [-85.79796, 36.14096], [-85.79609, 36.14107], [-85.79446, 36.14096], [-85.79296, 36.14072], [-85.7915, 36.14022], [-85.79066, 36.13984], [-85.79003, 36.13952], [-85.78838, 36.13837], [-85.78799, 36.13804], [-85.78625, 36.13643], [-85.78213, 36.13264], [-85.77996, 36.1306], [-85.77884, 36.12911], [-85.77813, 36.12763], [-85.77777, 36.12651], [-85.77755, 36.12524], [-85.77746, 36.12391], [-85.77773, 36.12036], [-85.77766, 36.11959], [-85.77738, 36.11862], [-85.77678, 36.11758], [-85.7761, 36.11665], [-85.77492, 36.11561], [-85.77193, 36.1129], [-85.7714, 36.11217], [-85.77075, 36.11101], [-85.76977, 36.10921], [-85.76912, 36.10841], [-85.76826, 36.10775], [-85.76648, 36.10673], [-85.76517, 36.10607], [-85.76432, 36.10579], [-85.7623, 36.10533], [-85.76009, 36.105], [-85.75723, 36.10458], [-85.75565, 36.1042], [-85.75221, 36.10337], [-85.74994, 36.10269], [-85.74833, 36.10205], [-85.74599, 36.10096], [-85.74384, 36.09978], [-85.73344, 36.09385], [-85.72799, 36.09078], [-85.72687, 36.09029], [-85.72642, 36.09014], [-85.72591, 36.09002], [-85.72531, 36.08992], [-85.72478, 36.08986], [-85.72432, 36.08984], [-85.72383, 36.08985], [-85.72329, 36.0899], [-85.72275, 36.08999], [-85.72236, 36.09008], [-85.72168, 36.09026], [-85.72052, 36.09074], [-85.71983, 36.09123], [-85.71801, 36.09279], [-85.71533, 36.09506], [-85.71395, 36.09614], [-85.71187, 36.09754], [-85.70956, 36.09888], [-85.70473, 36.10151], [-85.693, 36.10809], [-85.68962, 36.10996], [-85.68874, 36.11052], [-85.6882, 36.11094], [-85.68726, 36.11184], [-85.68662, 36.11278], [-85.68611, 36.11365], [-85.68578, 36.11449], [-85.68556, 36.1153], [-85.68512, 36.11919], [-85.68481, 36.12011], [-85.6843, 36.12134], [-85.68372, 36.12223], [-85.6828, 36.12342], [-85.68185, 36.12422], [-85.68037, 36.12519], [-85.67917, 36.12573], [-85.67728, 36.12635], [-85.66949, 36.12862], [-85.65861, 36.13183], [-85.64928, 36.13469], [-85.6488, 36.13482], [-85.64563, 36.13557], [-85.6428, 36.13602], [-85.63761, 36.13647], [-85.63234, 36.13706], [-85.62897, 36.13736], [-85.62831, 36.13742], [-85.62511, 36.13774], [-85.62248, 36.13793], [-85.61823, 36.13836], [-85.61583, 36.13873], [-85.61332, 36.13923], [-85.60943, 36.13996], [-85.60617, 36.14037], [-85.60336, 36.14053], [-85.60124, 36.14051], [-85.59531, 36.1402], [-85.58841, 36.13982], [-85.57484, 36.13907], [-85.57229, 36.1388], [-85.57042, 36.1384], [-85.56815, 36.13769], [-85.56628, 36.13714], [-85.56596, 36.13703], [-85.56186, 36.13576], [-85.56012, 36.13535], [-85.55819, 36.13512], [-85.55665, 36.13503], [-85.55399, 36.1351], [-85.54976, 36.13543], [-85.54598, 36.13573], [-85.54289, 36.13588], [-85.53661, 36.13595], [-85.5344, 36.13603], [-85.53321, 36.13603], [-85.5269, 36.13614], [-85.52335, 36.13614], [-85.51759, 36.13625], [-85.51579, 36.1362], [-85.50691, 36.13539], [-85.50552, 36.1353], [-85.50336, 36.13522], [-85.5025, 36.1352], [-85.50137, 36.13522], [-85.49938, 36.13527], [-85.49734, 36.13531], [-85.4929, 36.1355], [-85.49105, 36.13543], [-85.48562, 36.13497], [-85.48469, 36.13488], [-85.48135, 36.13457], [-85.47889, 36.13446], [-85.47659, 36.13443], [-85.47473, 36.13453], [-85.47427, 36.13455], [-85.47179, 36.13484], [-85.47099, 36.13493], [-85.46331, 36.13588], [-85.46067, 36.13612], [-85.45902, 36.13618], [-85.45741, 36.13613], [-85.45448, 36.136], [-85.45269, 36.13594], [-85.4509, 36.13599], [-85.44918, 36.13632], [-85.44652, 36.13709], [-85.4419, 36.1384], [-85.43899, 36.13918], [-85.4364, 36.1396], [-85.43114, 36.13982], [-85.42852, 36.13994], [-85.42722, 36.14], [-85.42639, 36.14004], [-85.42494, 36.1401], [-85.42398, 36.14021], [-85.42312, 36.14038], [-85.42243, 36.14057], [-85.42181, 36.1408], [-85.42115, 36.14109], [-85.42045, 36.14148], [-85.41983, 36.14194], [-85.41704, 36.14412], [-85.41644, 36.14453], [-85.41574, 36.14493], [-85.41501, 36.1453], [-85.4142, 36.14565], [-85.41332, 36.14597], [-85.4124, 36.14618], [-85.41141, 36.14639], [-85.41012, 36.14649], [-85.40892, 36.14649], [-85.40794, 36.14642], [-85.4069, 36.14625], [-85.40599, 36.14604], [-85.39663, 36.14311], [-85.39395, 36.14222], [-85.39183, 36.14164], [-85.39011, 36.14139], [-85.38201, 36.14155], [-85.38023, 36.14168], [-85.37945, 36.14181], [-85.3785, 36.14208], [-85.37497, 36.14331], [-85.37383, 36.14368], [-85.3728, 36.14388], [-85.37185, 36.14395], [-85.37104, 36.1439], [-85.37025, 36.1438], [-85.36954, 36.14363], [-85.3685, 36.14325], [-85.36782, 36.1429], [-85.36721, 36.14245], [-85.36669, 36.14196], [-85.3663, 36.14153], [-85.36593, 36.14097], [-85.36504, 36.13935], [-85.36467, 36.13868], [-85.36422, 36.13802], [-85.36378, 36.13752], [-85.36202, 36.13566], [-85.36146, 36.13507], [-85.3603, 36.13369], [-85.3596, 36.13283], [-85.35892, 36.1321], [-85.35828, 36.13154], [-85.35759, 36.13104], [-85.35687, 36.13062], [-85.35607, 36.13022], [-85.35523, 36.12989], [-85.35444, 36.12966], [-85.35343, 36.12944], [-85.35264, 36.12935], [-85.35169, 36.12929], [-85.35085, 36.12932], [-85.34978, 36.1294], [-85.34877, 36.1296], [-85.34777, 36.12987], [-85.34713, 36.13009], [-85.34639, 36.13043], [-85.34452, 36.13135], [-85.34188, 36.13263], [-85.34075, 36.13318], [-85.33973, 36.13369], [-85.33858, 36.13425], [-85.33755, 36.1347], [-85.33666, 36.13505], [-85.33571, 36.13535], [-85.33475, 36.13564], [-85.33376, 36.13588], [-85.33301, 36.13602], [-85.33184, 36.1362], [-85.33062, 36.13633], [-85.32963, 36.13638], [-85.32864, 36.1364], [-85.32763, 36.13637], [-85.32666, 36.13631], [-85.32458, 36.13604], [-85.31901, 36.13526], [-85.31788, 36.1351], [-85.31707, 36.13501], [-85.31637, 36.13498], [-85.31574, 36.135], [-85.31491, 36.13509], [-85.31425, 36.13524], [-85.3136, 36.13544], [-85.31301, 36.13571], [-85.31256, 36.13594], [-85.31209, 36.13621], [-85.31161, 36.13657], [-85.31125, 36.13689], [-85.30891, 36.13919], [-85.30845, 36.13957], [-85.30801, 36.13988], [-85.30754, 36.14015], [-85.30697, 36.14041], [-85.30648, 36.1406], [-85.30581, 36.14078], [-85.30525, 36.14089], [-85.30464, 36.14096], [-85.30403, 36.14098], [-85.30322, 36.14093], [-85.30254, 36.14083], [-85.30154, 36.14063], [-85.29928, 36.14017], [-85.29773, 36.13985], [-85.29685, 36.13973], [-85.29608, 36.13967], [-85.29529, 36.13966], [-85.29457, 36.1397], [-85.29291, 36.13985], [-85.29124, 36.14003], [-85.29047, 36.14009], [-85.28971, 36.14011], [-85.28882, 36.14006], [-85.28808, 36.13997], [-85.28721, 36.13985], [-85.28653, 36.13977], [-85.28634, 36.13975], [-85.28533, 36.13961], [-85.28397, 36.13944], [-85.28336, 36.13939], [-85.28275, 36.13939], [-85.28216, 36.13942], [-85.28142, 36.1395], [-85.28041, 36.13966], [-85.27863, 36.13993], [-85.27851, 36.13995], [-85.27746, 36.1401], [-85.27662, 36.1402], [-85.27539, 36.14027], [-85.27434, 36.14026], [-85.2734, 36.1402], [-85.2726, 36.14012], [-85.27146, 36.13994], [-85.27001, 36.13959], [-85.26902, 36.13928], [-85.26833, 36.13903], [-85.26726, 36.13856], [-85.26674, 36.1383], [-85.26592, 36.13785], [-85.26475, 36.13711], [-85.26448, 36.13685], [-85.26363, 36.13616], [-85.2631, 36.13568], [-85.26259, 36.13515], [-85.26215, 36.13465], [-85.25927, 36.13079], [-85.25846, 36.12969], [-85.25712, 36.12791], [-85.25506, 36.12506], [-85.25248, 36.12168], [-85.2518, 36.1209], [-85.24997, 36.1192], [-85.24523, 36.11494], [-85.24442, 36.11423], [-85.24375, 36.11364], [-85.24272, 36.11272], [-85.24199, 36.11199], [-85.24139, 36.11122], [-85.24111, 36.11077], [-85.24066, 36.11006], [-85.24019, 36.10886], [-85.23983, 36.10763], [-85.23971, 36.10712], [-85.23908, 36.10478], [-85.23856, 36.1034], [-85.23807, 36.10237], [-85.23748, 36.10136], [-85.23704, 36.10073], [-85.23658, 36.10009], [-85.23628, 36.0997], [-85.23593, 36.09933], [-85.23397, 36.09734], [-85.22988, 36.09321], [-85.22813, 36.09145], [-85.2272, 36.09059], [-85.22605, 36.08961], [-85.22493, 36.08873], [-85.22425, 36.08823], [-85.22365, 36.08781], [-85.2231, 36.08746], [-85.22176, 36.08664], [-85.21244, 36.08104], [-85.21135, 36.08032], [-85.20859, 36.07879], [-85.20782, 36.07833], [-85.20691, 36.07779], [-85.20521, 36.07678], [-85.20377, 36.07593], [-85.203, 36.07549], [-85.20221, 36.07506], [-85.2006, 36.07422], [-85.19839, 36.07312], [-85.19677, 36.07223], [-85.19417, 36.07067], [-85.19349, 36.07022], [-85.19282, 36.06975], [-85.19149, 36.06879], [-85.19031, 36.06782], [-85.18973, 36.06732], [-85.18918, 36.06682], [-85.188, 36.06573], [-85.18684, 36.06457], [-85.1844, 36.06201], [-85.18212, 36.05986], [-85.1807, 36.05857], [-85.1791, 36.05724], [-85.17732, 36.05607], [-85.17615, 36.05536], [-85.17488, 36.05472], [-85.17348, 36.05408], [-85.1725, 36.0537], [-85.1715, 36.05333], [-85.17041, 36.05298], [-85.1693, 36.05267], [-85.16748, 36.05226], [-85.16358, 36.0516], [-85.15865, 36.05079], [-85.15295, 36.04988], [-85.14882, 36.04921], [-85.14562, 36.04865], [-85.14086, 36.04789], [-85.13849, 36.04748], [-85.1361, 36.047], [-85.13055, 36.04585], [-85.12504, 36.04471], [-85.11835, 36.04332], [-85.11634, 36.04275], [-85.11464, 36.04207], [-85.11324, 36.0414], [-85.10952, 36.03958], [-85.10761, 36.03852], [-85.09801, 36.03267], [-85.08801, 36.02654], [-85.08303, 36.0235], [-85.08054, 36.02197], [-85.07808, 36.02037], [-85.06925, 36.01454], [-85.06867, 36.01416], [-85.06811, 36.01375], [-85.0635, 36.01071], [-85.06122, 36.00919], [-85.05888, 36.00769], [-85.05719, 36.00671], [-85.05513, 36.00565], [-85.05493, 36.00555], [-85.04898, 36.00249], [-85.04845, 36.00223], [-85.04268, 35.99914], [-85.04116, 35.99834], [-85.04015, 35.99779], [-85.036, 35.99567], [-85.03544, 35.99538], [-85.03424, 35.99477], [-85.0313, 35.99313], [-85.02643, 35.99059], [-85.02398, 35.98929], [-85.01997, 35.98681], [-85.01671, 35.98465], [-85.01354, 35.98255], [-85.01184, 35.98144], [-85.01137, 35.98113], [-85.00987, 35.98014], [-85.00474, 35.97674], [-85.00078, 35.97413], [-84.99402, 35.96967], [-84.99176, 35.96823], [-84.98985, 35.96692], [-84.98518, 35.96383], [-84.9794, 35.96003], [-84.979, 35.95976], [-84.97827, 35.95932], [-84.97761, 35.95897], [-84.97692, 35.95866], [-84.97622, 35.95838], [-84.97522, 35.95805], [-84.97446, 35.95786], [-84.97341, 35.95765], [-84.97252, 35.95753], [-84.97172, 35.95746], [-84.97068, 35.95742], [-84.96492, 35.95728], [-84.96318, 35.95723], [-84.96261, 35.9572], [-84.96196, 35.95711], [-84.96139, 35.95699], [-84.96079, 35.95681], [-84.96026, 35.9566], [-84.95979, 35.95638], [-84.95609, 35.95442], [-84.95394, 35.9533], [-84.95165, 35.9522], [-84.94972, 35.95136], [-84.94579, 35.94943], [-84.94558, 35.94933], [-84.9442, 35.94866], [-84.94293, 35.94807], [-84.94125, 35.94727], [-84.94003, 35.94667], [-84.93538, 35.94449], [-84.93245, 35.94265], [-84.92965, 35.93979], [-84.92862, 35.93853], [-84.92678, 35.9367], [-84.9235, 35.93332], [-84.91902, 35.92943], [-84.91625, 35.92686], [-84.91477, 35.92571], [-84.91389, 35.92492], [-84.91122, 35.92251], [-84.90744, 35.91915], [-84.90376, 35.9165], [-84.90251, 35.91577], [-84.90151, 35.91537], [-84.89641, 35.91313], [-84.89373, 35.91209], [-84.89282, 35.91174], [-84.89201, 35.91142], [-84.89, 35.91058], [-84.88925, 35.91026], [-84.87963, 35.90624], [-84.87657, 35.90496], [-84.87405, 35.90407], [-84.87333, 35.90377], [-84.87222, 35.9033], [-84.87078, 35.90271], [-84.87021, 35.9025], [-84.86967, 35.90234], [-84.86909, 35.90217], [-84.86852, 35.90199], [-84.86809, 35.90189], [-84.86689, 35.90169], [-84.86631, 35.90162], [-84.8657, 35.90156], [-84.86521, 35.90152], [-84.86472, 35.90151], [-84.86431, 35.90152], [-84.86353, 35.9015], [-84.86251, 35.90154], [-84.86177, 35.90157], [-84.86085, 35.90158], [-84.86026, 35.9016], [-84.8597, 35.90162], [-84.85902, 35.90154], [-84.85864, 35.90146], [-84.85826, 35.90137], [-84.85775, 35.90118], [-84.85728, 35.90097], [-84.8547, 35.8994], [-84.85339, 35.8986], [-84.85271, 35.89819], [-84.85228, 35.89793], [-84.85181, 35.89769], [-84.85138, 35.8975], [-84.85093, 35.89733], [-84.85044, 35.89718], [-84.84994, 35.89707], [-84.84931, 35.89695], [-84.84879, 35.89689], [-84.84757, 35.89678], [-84.84662, 35.89665], [-84.84585, 35.89648], [-84.84509, 35.89619], [-84.84472, 35.89601], [-84.84437, 35.89581], [-84.84382, 35.89541], [-84.84343, 35.89504], [-84.84316, 35.89471], [-84.84255, 35.89372], [-84.84218, 35.89308], [-84.84112, 35.89126], [-84.84044, 35.89025], [-84.83974, 35.88947], [-84.83882, 35.88882], [-84.83829, 35.88853], [-84.83773, 35.88832], [-84.8367, 35.88803], [-84.83388, 35.88759], [-84.82957, 35.88692], [-84.8276, 35.8865], [-84.82625, 35.88613], [-84.82497, 35.88572], [-84.82208, 35.88459], [-84.81919, 35.88343], [-84.81838, 35.88317], [-84.81768, 35.883], [-84.81696, 35.88292], [-84.81654, 35.88287], [-84.81565, 35.88291], [-84.81457, 35.88307], [-84.81376, 35.88333], [-84.8113, 35.88426], [-84.81074, 35.88448], [-84.8082, 35.88543], [-84.80696, 35.8859], [-84.80637, 35.88619], [-84.80581, 35.8865], [-84.80471, 35.88724], [-84.8038, 35.88806], [-84.80297, 35.88885], [-84.80213, 35.88961], [-84.80144, 35.89013], [-84.80094, 35.89045], [-84.79997, 35.89092], [-84.79862, 35.89169], [-84.79801, 35.89217], [-84.79749, 35.89273], [-84.79717, 35.89318], [-84.79691, 35.89365], [-84.7967, 35.89423], [-84.79659, 35.89484], [-84.79642, 35.89612], [-84.7964, 35.89648], [-84.7963, 35.89702], [-84.79613, 35.89753], [-84.79573, 35.8982], [-84.79523, 35.8988], [-84.79482, 35.89917], [-84.7944, 35.89947], [-84.79382, 35.8998], [-84.79323, 35.90006], [-84.79253, 35.90025], [-84.79182, 35.90036], [-84.79106, 35.90041], [-84.79027, 35.90042], [-84.78923, 35.90043], [-84.77662, 35.90048], [-84.77511, 35.90044], [-84.77395, 35.90023], [-84.77316, 35.90001], [-84.77075, 35.89933], [-84.76508, 35.89756], [-84.76213, 35.89665], [-84.76055, 35.89617], [-84.75549, 35.89459], [-84.75402, 35.89413], [-84.75269, 35.89372], [-84.75122, 35.89327], [-84.75016, 35.89295], [-84.74984, 35.89286], [-84.74855, 35.89255], [-84.74731, 35.8923], [-84.74607, 35.89212], [-84.74481, 35.89199], [-84.74253, 35.89184], [-84.74041, 35.89184], [-84.738, 35.89209], [-84.73745, 35.89216], [-84.73585, 35.89243], [-84.73377, 35.89291], [-84.73232, 35.89333], [-84.73094, 35.89375], [-84.73068, 35.89385], [-84.7284, 35.89476], [-84.72733, 35.89513], [-84.7271, 35.89521], [-84.72686, 35.8953], [-84.72403, 35.89628], [-84.72205, 35.89701], [-84.72029, 35.89757], [-84.71851, 35.89792], [-84.71679, 35.89819], [-84.71572, 35.89829], [-84.71463, 35.89836], [-84.71267, 35.89837], [-84.7115, 35.89829], [-84.71029, 35.89818], [-84.70803, 35.89783], [-84.70643, 35.89745], [-84.70488, 35.89698], [-84.70423, 35.89676], [-84.70212, 35.89593], [-84.70121, 35.89545], [-84.69998, 35.89475], [-84.69834, 35.89369], [-84.69755, 35.89304], [-84.69655, 35.89215], [-84.69509, 35.89057], [-84.69344, 35.88873], [-84.69216, 35.88738], [-84.69144, 35.88678], [-84.6907, 35.88632], [-84.6899, 35.88595], [-84.68946, 35.88577], [-84.68895, 35.8856], [-84.68844, 35.88547], [-84.68805, 35.8854], [-84.68748, 35.88532], [-84.68683, 35.88528], [-84.68629, 35.8853], [-84.68564, 35.88536], [-84.68498, 35.88543], [-84.68399, 35.88565], [-84.68313, 35.8859], [-84.68239, 35.88619], [-84.68161, 35.88649], [-84.67911, 35.88774], [-84.67593, 35.8894], [-84.67488, 35.88996], [-84.67446, 35.89023], [-84.6737, 35.89085], [-84.67294, 35.89135], [-84.67249, 35.89162], [-84.67198, 35.89183], [-84.67122, 35.89213], [-84.66951, 35.89272], [-84.66874, 35.893], [-84.66813, 35.89331], [-84.66713, 35.89382], [-84.66652, 35.89412], [-84.66589, 35.89437], [-84.66541, 35.89449], [-84.66495, 35.89457], [-84.66439, 35.89464], [-84.66319, 35.89472], [-84.66199, 35.89483], [-84.66126, 35.895], [-84.66053, 35.8952], [-84.65892, 35.89565], [-84.65776, 35.89586], [-84.65667, 35.89605], [-84.65587, 35.89621], [-84.65516, 35.89638], [-84.65442, 35.89663], [-84.65368, 35.89698], [-84.65285, 35.89739], [-84.65225, 35.89768], [-84.65164, 35.89792], [-84.6509, 35.89816], [-84.65024, 35.89832], [-84.64966, 35.89844], [-84.64911, 35.89851], [-84.64725, 35.89869], [-84.64352, 35.89903], [-84.63905, 35.89942], [-84.63794, 35.89961], [-84.63574, 35.89995], [-84.63424, 35.90021], [-84.63129, 35.90109], [-84.62954, 35.90161], [-84.62853, 35.90202], [-84.62768, 35.90252], [-84.62604, 35.9035], [-84.62537, 35.90379], [-84.62446, 35.90407], [-84.62335, 35.90421], [-84.6223, 35.90433], [-84.62145, 35.90449], [-84.62069, 35.90466], [-84.61973, 35.90499], [-84.6189, 35.90534], [-84.61729, 35.90621], [-84.61474, 35.90765], [-84.61246, 35.90911], [-84.6111, 35.90993], [-84.60946, 35.91087], [-84.60849, 35.91128], [-84.60758, 35.91156], [-84.60643, 35.91184], [-84.60458, 35.91228], [-84.60304, 35.91265], [-84.60237, 35.91279], [-84.60155, 35.91287], [-84.60018, 35.91284], [-84.59769, 35.9127], [-84.59665, 35.91259], [-84.59578, 35.91243], [-84.59535, 35.91233], [-84.59501, 35.91222], [-84.5944, 35.91199], [-84.5935, 35.91162], [-84.59203, 35.91089], [-84.59136, 35.9106], [-84.59064, 35.91039], [-84.5894, 35.91008], [-84.58884, 35.90995], [-84.58682, 35.90951], [-84.58653, 35.90944], [-84.58558, 35.90925], [-84.58478, 35.90915], [-84.58405, 35.90912], [-84.58313, 35.90916], [-84.58163, 35.90927], [-84.58081, 35.9093], [-84.57994, 35.90928], [-84.5791, 35.90914], [-84.57819, 35.90884], [-84.5774, 35.90846], [-84.57673, 35.90793], [-84.57618, 35.9074], [-84.57567, 35.90667], [-84.57481, 35.90507], [-84.57435, 35.90441], [-84.57375, 35.90379], [-84.57306, 35.9033], [-84.57221, 35.90286], [-84.57117, 35.90253], [-84.57013, 35.90237], [-84.56091, 35.90113], [-84.55976, 35.90098], [-84.55637, 35.90052], [-84.55549, 35.90039], [-84.55476, 35.90025], [-84.55411, 35.90003], [-84.55337, 35.89968], [-84.55263, 35.8992], [-84.55211, 35.89873], [-84.55166, 35.89817], [-84.55101, 35.89728], [-84.55066, 35.89684], [-84.55035, 35.89652], [-84.54988, 35.89615], [-84.54933, 35.8958], [-84.54869, 35.89549], [-84.54795, 35.89525], [-84.54725, 35.89509], [-84.54661, 35.89501], [-84.5459, 35.89501], [-84.54522, 35.89507], [-84.54452, 35.89518], [-84.54186, 35.89566], [-84.54113, 35.89578], [-84.54057, 35.89584], [-84.53993, 35.89587], [-84.5393, 35.89585], [-84.53859, 35.89578], [-84.53796, 35.89567], [-84.53726, 35.89551], [-84.53663, 35.89529], [-84.53594, 35.89499], [-84.53512, 35.89459], [-84.53468, 35.89437], [-84.52918, 35.89169], [-84.52653, 35.89039], [-84.52242, 35.88838], [-84.51934, 35.88686], [-84.51418, 35.88429], [-84.51297, 35.88361], [-84.50908, 35.88138], [-84.50868, 35.88113], [-84.50819, 35.88085], [-84.50729, 35.88035], [-84.50496, 35.87907], [-84.50369, 35.87832], [-84.50272, 35.87767], [-84.50187, 35.87697], [-84.49983, 35.87498], [-84.49884, 35.8741], [-84.49795, 35.87353], [-84.49684, 35.87297], [-84.49561, 35.87248], [-84.49452, 35.87216], [-84.49319, 35.8719], [-84.49163, 35.87178], [-84.49015, 35.87185], [-84.48592, 35.87203], [-84.48094, 35.87228], [-84.47676, 35.87247], [-84.47149, 35.87272], [-84.46672, 35.87291], [-84.4594, 35.87324], [-84.45842, 35.87328], [-84.45639, 35.87339], [-84.45502, 35.87339], [-84.45385, 35.87338], [-84.45254, 35.87331], [-84.45104, 35.87316], [-84.45, 35.87301], [-84.44833, 35.8727], [-84.44711, 35.87242], [-84.44536, 35.87194], [-84.44423, 35.87153], [-84.44359, 35.87129], [-84.44178, 35.87054], [-84.44071, 35.87002], [-84.43705, 35.86812], [-84.4344, 35.86673], [-84.43338, 35.86634], [-84.43233, 35.86601], [-84.43124, 35.86579], [-84.42639, 35.86509], [-84.41684, 35.86376], [-84.41569, 35.86357], [-84.41431, 35.86324], [-84.41342, 35.86294], [-84.41151, 35.8621], [-84.41005, 35.86144], [-84.40874, 35.86095], [-84.40749, 35.86058], [-84.40685, 35.86043], [-84.4055, 35.86021], [-84.40423, 35.86008], [-84.40308, 35.86005], [-84.40165, 35.86015], [-84.40057, 35.86028], [-84.39926, 35.86056], [-84.39815, 35.86088], [-84.39701, 35.86129], [-84.39572, 35.86189], [-84.39078, 35.86429], [-84.38704, 35.86612], [-84.38452, 35.86735], [-84.37891, 35.87013], [-84.37355, 35.87271], [-84.37231, 35.87331], [-84.37066, 35.87409], [-84.36612, 35.87626], [-84.36406, 35.87731], [-84.36178, 35.87833], [-84.3565, 35.87991], [-84.35504, 35.88024], [-84.35335, 35.88053], [-84.35178, 35.88073], [-84.35027, 35.88087], [-84.34868, 35.88096], [-84.34716, 35.88099], [-84.34549, 35.88097], [-84.34366, 35.88085], [-84.34179, 35.88067], [-84.33958, 35.88033], [-84.338, 35.87999], [-84.33588, 35.87946], [-84.33481, 35.87914], [-84.33348, 35.8787], [-84.33297, 35.87851], [-84.33221, 35.87822], [-84.32909, 35.87683], [-84.32766, 35.8762], [-84.32464, 35.87484], [-84.32412, 35.8746], [-84.32112, 35.87327], [-84.32034, 35.87289], [-84.32012, 35.87278], [-84.31998, 35.87272], [-84.3191, 35.87234], [-84.31682, 35.87129], [-84.31585, 35.87088], [-84.31262, 35.86977], [-84.31162, 35.86948], [-84.30993, 35.86909], [-84.30793, 35.86877], [-84.30649, 35.86863], [-84.30499, 35.86855], [-84.30346, 35.86853], [-84.30196, 35.86859], [-84.30037, 35.86871], [-84.29976, 35.86876], [-84.29499, 35.86918], [-84.28103, 35.87033], [-84.27477, 35.87087], [-84.26993, 35.87126], [-84.2693, 35.87131], [-84.26861, 35.87136], [-84.26789, 35.87138], [-84.26715, 35.87138], [-84.26629, 35.87133], [-84.26516, 35.87117], [-84.26426, 35.87099], [-84.26318, 35.87069], [-84.26269, 35.87055], [-84.26196, 35.8703], [-84.2604, 35.8698], [-84.25919, 35.86939], [-84.25844, 35.86918], [-84.258, 35.86909], [-84.25735, 35.86899], [-84.25672, 35.86897], [-84.25628, 35.86898], [-84.25551, 35.86906], [-84.25471, 35.86921], [-84.25406, 35.86941], [-84.25355, 35.86963], [-84.25235, 35.87027], [-84.25109, 35.87111], [-84.24998, 35.87177], [-84.2484, 35.87272], [-84.2437, 35.87508], [-84.24281, 35.8755], [-84.24061, 35.87656], [-84.23996, 35.87688], [-84.23613, 35.87871], [-84.23384, 35.87982], [-84.2326, 35.88039], [-84.2323, 35.88054], [-84.22523, 35.88393], [-84.22351, 35.88468], [-84.2221, 35.88522], [-84.221, 35.88566], [-84.21803, 35.88678], [-84.21634, 35.88738], [-84.21508, 35.88781], [-84.21358, 35.88837], [-84.21267, 35.88871], [-84.21199, 35.88896], [-84.21052, 35.8895], [-84.20814, 35.89027], [-84.20659, 35.89072], [-84.20527, 35.89109], [-84.2029, 35.89169], [-84.1961, 35.89338], [-84.19422, 35.89381], [-84.19032, 35.89483], [-84.18558, 35.89599], [-84.18139, 35.89702], [-84.1813, 35.89705], [-84.17863, 35.89772], [-84.17535, 35.89856], [-84.17488, 35.89868], [-84.17172, 35.89944], [-84.17129, 35.89954], [-84.16917, 35.90008], [-84.16415, 35.90134], [-84.16058, 35.90221], [-84.15693, 35.90312], [-84.15382, 35.9039], [-84.15037, 35.90476], [-84.14884, 35.90513], [-84.14644, 35.90574], [-84.14489, 35.90611], [-84.14293, 35.90655], [-84.13907, 35.9074], [-84.13844, 35.90751], [-84.13566, 35.90813], [-84.13224, 35.90888], [-84.12948, 35.90951], [-84.12631, 35.9102], [-84.12456, 35.91058], [-84.1228, 35.91098], [-84.11744, 35.91215], [-84.11663, 35.91232], [-84.11166, 35.9134], [-84.10906, 35.91397], [-84.10751, 35.91431], [-84.10344, 35.91522], [-84.09746, 35.91652], [-84.09655, 35.91674], [-84.09112, 35.91797], [-84.09022, 35.91814], [-84.08215, 35.91991], [-84.07588, 35.9213], [-84.07459, 35.92159], [-84.06957, 35.92269], [-84.06884, 35.92286], [-84.06424, 35.92388], [-84.0639, 35.92395], [-84.05663, 35.92553], [-84.05334, 35.92625], [-84.05235, 35.92647], [-84.05162, 35.92663], [-84.04335, 35.92846], [-84.04256, 35.92863], [-84.03977, 35.92925], [-84.03914, 35.92939], [-84.03717, 35.92982], [-84.03658, 35.92995], [-84.03362, 35.9306], [-84.0321, 35.93093], [-84.03018, 35.93135], [-84.02312, 35.93291], [-84.02256, 35.93303], [-84.01859, 35.9339], [-84.01706, 35.93432], [-84.0164, 35.93454], [-84.01577, 35.93476], [-84.0149, 35.93512], [-84.0143, 35.93538], [-84.0137, 35.93568], [-84.00955, 35.93785], [-84.00883, 35.93823], [-84.00662, 35.93941], [-84.00263, 35.94149], [-84.00213, 35.94175], [-84.00099, 35.94234], [-83.99972, 35.94313], [-83.99907, 35.94358], [-83.99873, 35.94384], [-83.99821, 35.94425], [-83.99757, 35.94477], [-83.99682, 35.94535], [-83.99634, 35.94568], [-83.99575, 35.94607], [-83.99517, 35.94642], [-83.9942, 35.94691], [-83.99338, 35.9473], [-83.99235, 35.94772], [-83.99124, 35.94816], [-83.98906, 35.94883], [-83.98697, 35.94948], [-83.98458, 35.95021], [-83.98379, 35.95047], [-83.98243, 35.95099], [-83.98204, 35.95116], [-83.98106, 35.95161], [-83.97704, 35.95376], [-83.97461, 35.95503], [-83.97274, 35.95594], [-83.97166, 35.9565], [-83.96958, 35.95759], [-83.96852, 35.95811], [-83.96785, 35.95838], [-83.96709, 35.95862], [-83.96632, 35.9588], [-83.96561, 35.95892], [-83.9648, 35.95899], [-83.96418, 35.95903], [-83.96243, 35.95908], [-83.96082, 35.95916], [-83.95999, 35.95926], [-83.959, 35.95948], [-83.95806, 35.95975], [-83.9572, 35.96008], [-83.95559, 35.96085], [-83.95331, 35.96198], [-83.95219, 35.96252], [-83.95121, 35.963], [-83.95049, 35.96329], [-83.94972, 35.96349], [-83.94894, 35.9636], [-83.94834, 35.96362], [-83.94774, 35.96359], [-83.94719, 35.96353], [-83.94645, 35.9634], [-83.94602, 35.96331], [-83.94578, 35.96326], [-83.94538, 35.96318], [-83.94505, 35.96311], [-83.94286, 35.96265], [-83.94255, 35.9626], [-83.94217, 35.96255], [-83.94144, 35.96255], [-83.94081, 35.96262], [-83.94015, 35.96276], [-83.93958, 35.96294], [-83.93917, 35.96305], [-83.93657, 35.96393], [-83.93617, 35.96407], [-83.93564, 35.96426], [-83.93433, 35.96471], [-83.93373, 35.96496], [-83.93309, 35.96531], [-83.93263, 35.96562], [-83.93217, 35.96598], [-83.93155, 35.96653], [-83.93088, 35.96718], [-83.93049, 35.96751], [-83.93007, 35.96781], [-83.9296, 35.9681], [-83.92915, 35.96836], [-83.92866, 35.96858], [-83.92818, 35.96879], [-83.92771, 35.96898], [-83.92659, 35.9694], [-83.9251, 35.96994], [-83.92381, 35.97037], [-83.92326, 35.97062], [-83.9227, 35.97092], [-83.92204, 35.97137], [-83.92145, 35.97187], [-83.92099, 35.97235], [-83.92078, 35.97261], [-83.92031, 35.97315], [-83.91945, 35.97414], [-83.9189, 35.97483], [-83.91858, 35.97527], [-83.91845, 35.97547], [-83.91834, 35.97569], [-83.91815, 35.97618], [-83.91806, 35.97659], [-83.91803, 35.97699], [-83.91805, 35.97738], [-83.9181, 35.97791], [-83.91838, 35.97906], [-83.91844, 35.97942], [-83.91847, 35.9796], [-83.91851, 35.97984], [-83.91855, 35.98032], [-83.91851, 35.98078], [-83.91842, 35.98118], [-83.91822, 35.98175], [-83.91803, 35.98214], [-83.91777, 35.98253], [-83.91749, 35.98286], [-83.91715, 35.98323], [-83.91674, 35.98355], [-83.91615, 35.98389], [-83.91572, 35.98409], [-83.91515, 35.98429], [-83.91475, 35.98443], [-83.91425, 35.98457], [-83.9135, 35.98478], [-83.9124, 35.9851], [-83.91091, 35.98548], [-83.91017, 35.98573], [-83.9095, 35.98597], [-83.90861, 35.98635], [-83.9074, 35.98695], [-83.90679, 35.98733], [-83.90606, 35.98785], [-83.90411, 35.98929], [-83.90362, 35.98964], [-83.90237, 35.99051], [-83.90107, 35.99145], [-83.90069, 35.99175], [-83.9002, 35.99209], [-83.89809, 35.99362], [-83.894, 35.99653], [-83.89019, 35.99927], [-83.88878, 36.00024], [-83.88754, 36.001], [-83.88646, 36.00161], [-83.8857, 36.00201], [-83.88479, 36.00247], [-83.88418, 36.00274], [-83.87792, 36.00548], [-83.87405, 36.00715], [-83.8736, 36.00734], [-83.87339, 36.00743], [-83.87091, 36.00857], [-83.86914, 36.00934], [-83.8674, 36.01008], [-83.86598, 36.01072], [-83.86501, 36.01114], [-83.86298, 36.01203], [-83.86111, 36.01289], [-83.8602, 36.01322], [-83.85952, 36.01339], [-83.85916, 36.01346], [-83.85882, 36.01349], [-83.85827, 36.01351], [-83.85768, 36.01349], [-83.85676, 36.01338], [-83.85454, 36.01299], [-83.85415, 36.01292], [-83.85063, 36.01238], [-83.84862, 36.0121], [-83.84666, 36.01186], [-83.84479, 36.01163], [-83.844, 36.01146], [-83.84335, 36.01126], [-83.84272, 36.01103], [-83.84182, 36.01058], [-83.8414, 36.01036], [-83.8388, 36.00899], [-83.83853, 36.00886], [-83.83779, 36.00848], [-83.837, 36.00808], [-83.836, 36.00761], [-83.83509, 36.00732], [-83.83428, 36.00715], [-83.83352, 36.00707], [-83.83289, 36.00705], [-83.83212, 36.00711], [-83.83137, 36.00721], [-83.83066, 36.00739], [-83.82952, 36.00769], [-83.82843, 36.00798], [-83.82748, 36.00826], [-83.82563, 36.00875], [-83.82458, 36.009], [-83.82387, 36.00918], [-83.82337, 36.00929], [-83.8228, 36.00937], [-83.82242, 36.00941], [-83.82171, 36.00946], [-83.82113, 36.00946], [-83.82028, 36.00943], [-83.81935, 36.00932], [-83.8187, 36.00918], [-83.81735, 36.00883], [-83.81451, 36.00802], [-83.8134, 36.00771], [-83.81267, 36.00751], [-83.81134, 36.00718], [-83.81024, 36.00694], [-83.80866, 36.00664], [-83.80769, 36.0065], [-83.80399, 36.00594], [-83.80024, 36.00539], [-83.79492, 36.0046], [-83.79068, 36.00397], [-83.78487, 36.00313], [-83.78305, 36.00291], [-83.78096, 36.00275], [-83.78019, 36.00272], [-83.77804, 36.0027], [-83.7758, 36.00277], [-83.7748, 36.00283], [-83.77394, 36.00291], [-83.77187, 36.00311], [-83.77116, 36.00322], [-83.76835, 36.00354], [-83.76705, 36.00368], [-83.76641, 36.00375], [-83.76568, 36.00383], [-83.75747, 36.00475], [-83.75456, 36.00498], [-83.75183, 36.00505], [-83.75043, 36.00502], [-83.74934, 36.00495], [-83.74752, 36.00482], [-83.74631, 36.00468], [-83.74524, 36.00454], [-83.74362, 36.00424], [-83.74233, 36.00399], [-83.74083, 36.00364], [-83.73982, 36.00337], [-83.73851, 36.003], [-83.73679, 36.00242], [-83.73538, 36.0019], [-83.73414, 36.0014], [-83.72983, 35.99968], [-83.72872, 35.99927], [-83.72774, 35.99893], [-83.72632, 35.99849], [-83.725, 35.99813], [-83.72267, 35.99759], [-83.7221, 35.99747], [-83.72156, 35.99737], [-83.72011, 35.99714], [-83.71912, 35.99699], [-83.71728, 35.99681], [-83.71594, 35.9967], [-83.71415, 35.99662], [-83.71241, 35.99662], [-83.70696, 35.99658], [-83.7041, 35.99656], [-83.6999, 35.99654], [-83.6993, 35.99654], [-83.69459, 35.99649], [-83.69186, 35.99638], [-83.69002, 35.99624], [-83.68928, 35.99618], [-83.68839, 35.9961], [-83.68598, 35.99585], [-83.6846, 35.99566], [-83.68275, 35.99539], [-83.68114, 35.99513], [-83.68053, 35.99503], [-83.67864, 35.99466], [-83.67628, 35.99415], [-83.67475, 35.99378], [-83.67247, 35.99319], [-83.67106, 35.99279], [-83.66941, 35.99229], [-83.66791, 35.99179], [-83.66002, 35.98907], [-83.65841, 35.98852], [-83.65645, 35.98791], [-83.65494, 35.98747], [-83.65293, 35.98695], [-83.65145, 35.98657], [-83.65016, 35.98629], [-83.64866, 35.98596], [-83.64673, 35.98558], [-83.64488, 35.98526], [-83.64435, 35.98518], [-83.63495, 35.98364], [-83.63258, 35.98326], [-83.63174, 35.98313], [-83.628, 35.98251], [-83.62733, 35.98241], [-83.62671, 35.98233], [-83.62601, 35.98225], [-83.62536, 35.98218], [-83.62444, 35.9821], [-83.62339, 35.98203], [-83.62228, 35.98198], [-83.62128, 35.98196], [-83.62019, 35.98196], [-83.61876, 35.982], [-83.61757, 35.98207], [-83.61681, 35.98212], [-83.61495, 35.98233], [-83.61387, 35.98251], [-83.61214, 35.9827], [-83.60292, 35.98397], [-83.59976, 35.98437], [-83.59648, 35.98459], [-83.59392, 35.98474], [-83.59136, 35.98491], [-83.58992, 35.98504], [-83.58903, 35.98517], [-83.58827, 35.9853], [-83.58723, 35.98549], [-83.58639, 35.98566], [-83.58485, 35.98608], [-83.58435, 35.98624], [-83.58207, 35.98706], [-83.57679, 35.98914], [-83.56481, 35.99385], [-83.56434, 35.99404], [-83.53415, 36.00585], [-83.52515, 36.00941], [-83.52267, 36.01036], [-83.52055, 36.0111], [-83.51924, 36.01151], [-83.51786, 36.01192], [-83.51597, 36.01243], [-83.50698, 36.01477], [-83.49688, 36.0174], [-83.48646, 36.02012], [-83.48007, 36.02179], [-83.47654, 36.02272], [-83.47575, 36.02293], [-83.47053, 36.02427], [-83.46785, 36.02507], [-83.46447, 36.02635], [-83.46215, 36.02754], [-83.45973, 36.02894], [-83.45734, 36.03068], [-83.45547, 36.03179], [-83.45446, 36.03244], [-83.45258, 36.0332], [-83.45112, 36.0338], [-83.44527, 36.03625], [-83.44078, 36.03819], [-83.43966, 36.03866], [-83.43605, 36.04015], [-83.43059, 36.0425], [-83.42759, 36.04382], [-83.42543, 36.04486], [-83.42246, 36.04637], [-83.41858, 36.04853], [-83.41807, 36.04883], [-83.41631, 36.04989], [-83.41426, 36.05121], [-83.4095, 36.05427], [-83.3972, 36.06215], [-83.39658, 36.06255], [-83.39431, 36.064], [-83.39138, 36.06587], [-83.39091, 36.06616], [-83.39058, 36.06635], [-83.39031, 36.06649], [-83.38998, 36.06663], [-83.38957, 36.06678], [-83.38927, 36.06688], [-83.38901, 36.06695], [-83.38876, 36.06702], [-83.38835, 36.06715], [-83.38783, 36.06729], [-83.38751, 36.06737], [-83.38696, 36.06751], [-83.38666, 36.06761], [-83.38629, 36.06774], [-83.38606, 36.06784], [-83.3856, 36.06806], [-83.38525, 36.06824], [-83.38493, 36.06842], [-83.3846, 36.06864], [-83.38431, 36.06885], [-83.38408, 36.06903], [-83.38378, 36.06929], [-83.38351, 36.06956], [-83.38323, 36.06989], [-83.38285, 36.07039], [-83.38236, 36.07105], [-83.38209, 36.0714], [-83.38184, 36.07171], [-83.38154, 36.07201], [-83.38133, 36.0722], [-83.38106, 36.07242], [-83.38072, 36.07266], [-83.38008, 36.07308], [-83.37496, 36.07636], [-83.37379, 36.07711], [-83.37221, 36.07813], [-83.37034, 36.07931], [-83.36965, 36.07974], [-83.36613, 36.08187], [-83.36375, 36.08331], [-83.36302, 36.08379], [-83.36225, 36.08429], [-83.36127, 36.08497], [-83.36048, 36.08552], [-83.35981, 36.08603], [-83.35855, 36.08696], [-83.3576, 36.08771], [-83.35699, 36.08821], [-83.35616, 36.08891], [-83.35518, 36.08974], [-83.3543, 36.09051], [-83.35366, 36.09109], [-83.353, 36.0917], [-83.35196, 36.09271], [-83.35076, 36.09393], [-83.34933, 36.09539], [-83.34806, 36.09667], [-83.34632, 36.09846], [-83.34491, 36.09988], [-83.34265, 36.10221], [-83.33887, 36.10606], [-83.33767, 36.10726], [-83.3364, 36.10856], [-83.33589, 36.10908], [-83.33384, 36.11113], [-83.33184, 36.11317], [-83.33089, 36.11411], [-83.32742, 36.11762], [-83.32671, 36.11831], [-83.32602, 36.11896], [-83.32536, 36.11956], [-83.32469, 36.12015], [-83.32404, 36.1207], [-83.32329, 36.12132], [-83.3224, 36.12201], [-83.32156, 36.12266], [-83.32084, 36.12318], [-83.31982, 36.1239], [-83.31905, 36.12441], [-83.31798, 36.12511], [-83.31677, 36.12584], [-83.31603, 36.12628], [-83.31517, 36.12676], [-83.3145, 36.12712], [-83.31362, 36.12759], [-83.31281, 36.128], [-83.31177, 36.12851], [-83.31109, 36.12882], [-83.31027, 36.1292], [-83.30949, 36.12954], [-83.30853, 36.12993], [-83.30742, 36.13037], [-83.30709, 36.13049], [-83.30617, 36.13084], [-83.30536, 36.13113], [-83.30426, 36.1315], [-83.30329, 36.13181], [-83.30228, 36.13212], [-83.30097, 36.13249], [-83.29994, 36.13277], [-83.29859, 36.13311], [-83.2976, 36.13335], [-83.29673, 36.13355], [-83.29539, 36.13384], [-83.29438, 36.13403], [-83.29329, 36.13421], [-83.28752, 36.13523], [-83.28656, 36.13539], [-83.28546, 36.13559], [-83.28303, 36.13602], [-83.2826, 36.1361], [-83.28022, 36.13652], [-83.27856, 36.13685], [-83.2768, 36.13724], [-83.27529, 36.13761], [-83.2739, 36.13797], [-83.27287, 36.13825], [-83.27205, 36.13848], [-83.27158, 36.13862], [-83.27032, 36.13899], [-83.26915, 36.13937], [-83.26804, 36.13974], [-83.26696, 36.14011], [-83.26571, 36.14056], [-83.26483, 36.14089], [-83.26354, 36.1414], [-83.26282, 36.14169], [-83.26169, 36.14217], [-83.26034, 36.14276], [-83.25946, 36.14317], [-83.25806, 36.14383], [-83.25709, 36.14432], [-83.2562, 36.14477], [-83.25527, 36.14525], [-83.25494, 36.14543], [-83.25368, 36.14612], [-83.25273, 36.14667], [-83.25159, 36.14734], [-83.25034, 36.14811], [-83.24738, 36.14995], [-83.24453, 36.15173], [-83.23784, 36.15589], [-83.2334, 36.15865], [-83.22898, 36.16139], [-83.22311, 36.16504], [-83.22255, 36.1654], [-83.22181, 36.16584], [-83.21548, 36.16977], [-83.21167, 36.17214], [-83.20285, 36.17762], [-83.19331, 36.18352], [-83.19284, 36.18382], [-83.18958, 36.18585], [-83.18775, 36.18698], [-83.18705, 36.18741], [-83.18639, 36.18779], [-83.18544, 36.18833], [-83.18465, 36.18876], [-83.18377, 36.18922], [-83.183, 36.18961], [-83.18209, 36.19005], [-83.18127, 36.19044], [-83.18032, 36.19086], [-83.17938, 36.19127], [-83.17873, 36.19154], [-83.17797, 36.19184], [-83.17713, 36.19216], [-83.17602, 36.19257], [-83.17532, 36.19282], [-83.17466, 36.19304], [-83.17367, 36.19336], [-83.17318, 36.19351], [-83.17225, 36.19378], [-83.17127, 36.19406], [-83.17017, 36.19435], [-83.1691, 36.19462], [-83.16801, 36.19488], [-83.16709, 36.19508], [-83.16626, 36.19524], [-83.16541, 36.1954], [-83.16446, 36.19558], [-83.16335, 36.19575], [-83.16226, 36.19591], [-83.16078, 36.1961], [-83.16009, 36.19619], [-83.15803, 36.19644], [-83.15701, 36.19657], [-83.15257, 36.19712], [-83.15192, 36.1972], [-83.14638, 36.19787], [-83.14079, 36.19857], [-83.13237, 36.1996], [-83.13219, 36.19962], [-83.12421, 36.2006], [-83.12371, 36.20067], [-83.12007, 36.20112], [-83.11682, 36.20152], [-83.11054, 36.20229], [-83.10953, 36.20242], [-83.10854, 36.20255], [-83.10731, 36.20274], [-83.10566, 36.20299], [-83.09968, 36.20389], [-83.0988, 36.20402], [-83.09768, 36.20422], [-83.09696, 36.20437], [-83.09604, 36.20456], [-83.09509, 36.20479], [-83.0938, 36.20513], [-83.09305, 36.20534], [-83.09208, 36.20564], [-83.09155, 36.20582], [-83.09086, 36.20607], [-83.08947, 36.20655], [-83.08645, 36.20763], [-83.08104, 36.20954], [-83.07919, 36.21019], [-83.07655, 36.21112], [-83.06649, 36.2147], [-83.06591, 36.21489], [-83.04477, 36.22235], [-83.03997, 36.22404], [-83.03923, 36.2243], [-83.03864, 36.22452], [-83.03769, 36.22485], [-83.03615, 36.22539], [-83.03341, 36.22636], [-83.03129, 36.22711], [-83.02612, 36.22892], [-83.02096, 36.23075], [-83.01655, 36.2323], [-83.00452, 36.23654], [-83.00221, 36.23735], [-82.99383, 36.2403], [-82.99194, 36.24096], [-82.98969, 36.24176], [-82.98739, 36.24257], [-82.98436, 36.24364], [-82.98123, 36.24474], [-82.97732, 36.24612], [-82.97673, 36.24634], [-82.97599, 36.24663], [-82.97491, 36.24708], [-82.97389, 36.24754], [-82.97278, 36.24807], [-82.97227, 36.24833], [-82.97116, 36.24892], [-82.96894, 36.25011], [-82.96671, 36.25131], [-82.96245, 36.2536], [-82.95803, 36.25596], [-82.95299, 36.25867], [-82.94352, 36.26374], [-82.93981, 36.26573], [-82.93912, 36.26609], [-82.93849, 36.26642], [-82.93795, 36.2667], [-82.93737, 36.26698], [-82.93663, 36.26734], [-82.93573, 36.26777], [-82.93476, 36.2682], [-82.9339, 36.26859], [-82.92797, 36.27121], [-82.92211, 36.27382], [-82.91919, 36.27511], [-82.917, 36.27609], [-82.91613, 36.27647], [-82.91512, 36.27694], [-82.91402, 36.27746], [-82.91331, 36.27781], [-82.91135, 36.27882], [-82.91045, 36.27932], [-82.90972, 36.27972], [-82.90866, 36.28033], [-82.90708, 36.28127], [-82.90599, 36.28194], [-82.90456, 36.28284], [-82.89357, 36.28974], [-82.88468, 36.29532], [-82.87728, 36.29995], [-82.87692, 36.30018], [-82.87621, 36.30058], [-82.87565, 36.3009], [-82.87505, 36.30123], [-82.87426, 36.30163], [-82.87333, 36.30208], [-82.87202, 36.30268], [-82.86555, 36.30565], [-82.86086, 36.3078], [-82.85599, 36.31003], [-82.85403, 36.31094], [-82.853, 36.31144], [-82.85177, 36.31208], [-82.85112, 36.31245], [-82.85001, 36.31311], [-82.84044, 36.31879], [-82.83865, 36.31985], [-82.83334, 36.32299], [-82.83066, 36.32459], [-82.82941, 36.32532], [-82.82798, 36.32612], [-82.8248, 36.32783], [-82.81984, 36.33052], [-82.81495, 36.33316], [-82.81097, 36.3353], [-82.81052, 36.33554], [-82.81015, 36.33573], [-82.80923, 36.33621], [-82.80835, 36.33664], [-82.80718, 36.33719], [-82.80625, 36.33762], [-82.80489, 36.33822], [-82.8039, 36.33865], [-82.80284, 36.33908], [-82.80166, 36.33955], [-82.80022, 36.34008], [-82.7993, 36.34041], [-82.79778, 36.34093], [-82.7969, 36.34122], [-82.79539, 36.34169], [-82.78473, 36.34495], [-82.77512, 36.34789], [-82.769, 36.34975], [-82.76725, 36.35028], [-82.76633, 36.35055], [-82.76522, 36.35085], [-82.76403, 36.35116], [-82.76261, 36.35151], [-82.76194, 36.35167], [-82.76113, 36.35185], [-82.76, 36.35209], [-82.75891, 36.3523], [-82.75784, 36.3525], [-82.75672, 36.3527], [-82.75558, 36.35288], [-82.75478, 36.353], [-82.75391, 36.35313], [-82.75347, 36.35319], [-82.75263, 36.35329], [-82.7513, 36.35345], [-82.75042, 36.35354], [-82.74957, 36.35362], [-82.74846, 36.35372], [-82.74768, 36.35377], [-82.74644, 36.35385], [-82.74543, 36.35391], [-82.7441, 36.35397], [-82.73296, 36.35453], [-82.72393, 36.35498], [-82.72289, 36.35501], [-82.72177, 36.35507], [-82.71905, 36.35521], [-82.71829, 36.35525], [-82.71751, 36.3553], [-82.71687, 36.35534], [-82.71621, 36.35539], [-82.71551, 36.35545], [-82.71498, 36.3555], [-82.71421, 36.35558], [-82.71325, 36.35569], [-82.71244, 36.35579], [-82.7117, 36.35589], [-82.7107, 36.35604], [-82.70983, 36.35618], [-82.70898, 36.35632], [-82.70825, 36.35645], [-82.70718, 36.35666], [-82.70651, 36.35679], [-82.70562, 36.35699], [-82.70475, 36.35719], [-82.70421, 36.35731], [-82.70324, 36.35755], [-82.7021, 36.35786], [-82.70105, 36.35817], [-82.70029, 36.35839], [-82.69968, 36.35858], [-82.69915, 36.35875], [-82.69867, 36.35889], [-82.69795, 36.35913], [-82.69669, 36.35956], [-82.69534, 36.36006], [-82.69463, 36.36033], [-82.69332, 36.36085], [-82.69203, 36.36139], [-82.69073, 36.36197], [-82.68992, 36.36234], [-82.68935, 36.36262], [-82.68808, 36.36325], [-82.68675, 36.36394], [-82.68556, 36.3646], [-82.68419, 36.3654], [-82.68301, 36.36612], [-82.6818, 36.3669], [-82.68049, 36.36777], [-82.67892, 36.36889], [-82.6778, 36.36975], [-82.67664, 36.37066], [-82.67553, 36.37159], [-82.67425, 36.37271], [-82.67352, 36.37339], [-82.67254, 36.37433], [-82.67185, 36.37502], [-82.67084, 36.37607], [-82.66993, 36.37704], [-82.66564, 36.38163], [-82.66302, 36.38442], [-82.66125, 36.38632], [-82.65949, 36.38819], [-82.6592, 36.3885], [-82.65213, 36.39603], [-82.6497, 36.39862], [-82.6484, 36.40003], [-82.64807, 36.40037], [-82.64771, 36.40071], [-82.64725, 36.40112], [-82.64675, 36.4015], [-82.64631, 36.40181], [-82.64587, 36.4021], [-82.64538, 36.40239], [-82.64485, 36.40267], [-82.64429, 36.40295], [-82.64382, 36.40315], [-82.64322, 36.40338], [-82.64266, 36.40356], [-82.64198, 36.40376], [-82.64138, 36.40391], [-82.64077, 36.40403], [-82.64015, 36.40412], [-82.63953, 36.4042], [-82.63889, 36.40425], [-82.63834, 36.40427], [-82.63781, 36.40428], [-82.63723, 36.40426], [-82.6367, 36.40423], [-82.63616, 36.40417], [-82.63542, 36.40408], [-82.6318, 36.40358], [-82.63043, 36.4034], [-82.62761, 36.40301], [-82.62103, 36.40211], [-82.6202, 36.40201], [-82.61951, 36.40193], [-82.61899, 36.4019], [-82.61836, 36.40187], [-82.61784, 36.40185], [-82.61731, 36.40185], [-82.61672, 36.40186], [-82.61627, 36.40188], [-82.61555, 36.40192], [-82.61507, 36.40197], [-82.61472, 36.402], [-82.61412, 36.40208], [-82.61351, 36.40218], [-82.61303, 36.40226], [-82.61236, 36.4024], [-82.61184, 36.40252], [-82.61135, 36.40264], [-82.61083, 36.40279], [-82.61031, 36.40294], [-82.60992, 36.40307], [-82.60943, 36.40324], [-82.60896, 36.40342], [-82.60852, 36.40359], [-82.608, 36.40382], [-82.60747, 36.40406], [-82.60707, 36.40427], [-82.60651, 36.40456], [-82.60581, 36.40495], [-82.59876, 36.40912], [-82.59674, 36.41031], [-82.5949, 36.4114], [-82.59387, 36.412], [-82.59289, 36.41254], [-82.5916, 36.41321], [-82.58846, 36.41484], [-82.58763, 36.41529], [-82.5865, 36.41592], [-82.58577, 36.41636], [-82.58505, 36.4168], [-82.58429, 36.4173], [-82.58334, 36.41798], [-82.58198, 36.41896], [-82.57633, 36.42303], [-82.57481, 36.42412], [-82.57378, 36.42487], [-82.57324, 36.42527], [-82.57281, 36.42558], [-82.5722, 36.42601], [-82.57122, 36.42673], [-82.57049, 36.4273], [-82.5701, 36.42762], [-82.56944, 36.42817], [-82.56904, 36.42852], [-82.5683, 36.4292], [-82.56758, 36.42986], [-82.56316, 36.43393], [-82.5625, 36.43453], [-82.56224, 36.43477], [-82.55673, 36.43983], [-82.5563, 36.44022], [-82.55589, 36.44059], [-82.55555, 36.44086], [-82.55527, 36.44107], [-82.55499, 36.44125], [-82.55473, 36.4414], [-82.55438, 36.44159], [-82.55403, 36.44176], [-82.55374, 36.44188], [-82.55344, 36.442], [-82.55309, 36.44211], [-82.55277, 36.44221], [-82.55236, 36.44231], [-82.55206, 36.44237], [-82.55147, 36.44248], [-82.549, 36.44292], [-82.54376, 36.44387], [-82.54089, 36.44438], [-82.54034, 36.44449], [-82.53975, 36.44461], [-82.53917, 36.44474], [-82.53863, 36.44488], [-82.53802, 36.44505], [-82.53756, 36.4452], [-82.53718, 36.44533], [-82.53676, 36.44548], [-82.53644, 36.44559], [-82.5361, 36.44571], [-82.53554, 36.44595], [-82.53506, 36.44618], [-82.53454, 36.44643], [-82.53404, 36.44669], [-82.53342, 36.44704], [-82.53317, 36.44718], [-82.53274, 36.44745], [-82.53215, 36.44784], [-82.52819, 36.45042], [-82.52649, 36.45152], [-82.52608, 36.45181], [-82.52348, 36.45351], [-82.52326, 36.45363], [-82.5224, 36.45419], [-82.52199, 36.45447], [-82.52031, 36.45557], [-82.51811, 36.45702], [-82.51126, 36.46147], [-82.50838, 36.46337], [-82.50463, 36.46588], [-82.50228, 36.46743], [-82.49892, 36.46962], [-82.49848, 36.46992], [-82.49793, 36.47028], [-82.4953, 36.4721], [-82.4936, 36.47328], [-82.4931, 36.47363], [-82.49221, 36.47425], [-82.49159, 36.47464], [-82.49106, 36.47496], [-82.49032, 36.47537], [-82.48962, 36.47577], [-82.48599, 36.47781], [-82.48355, 36.47919], [-82.48255, 36.47978], [-82.48153, 36.48042], [-82.48048, 36.48112], [-82.47826, 36.48264], [-82.47747, 36.48316], [-82.47484, 36.48496], [-82.47405, 36.48551], [-82.46929, 36.48877], [-82.46803, 36.48962], [-82.46631, 36.49081], [-82.46375, 36.49254], [-82.46243, 36.49345], [-82.45835, 36.49624], [-82.4578, 36.49663], [-82.4574, 36.49691], [-82.45641, 36.49754], [-82.45528, 36.49824], [-82.45404, 36.49896], [-82.45351, 36.49926], [-82.45182, 36.50017], [-82.45091, 36.50063], [-82.45011, 36.50102], [-82.44898, 36.50154], [-82.44784, 36.50205], [-82.44676, 36.5025], [-82.44511, 36.50315], [-82.44362, 36.50369], [-82.44296, 36.50392], [-82.44207, 36.50422], [-82.44101, 36.50455], [-82.44021, 36.50479], [-82.43922, 36.50508], [-82.43814, 36.50538], [-82.4362, 36.50592], [-82.43199, 36.50709], [-82.42868, 36.50802], [-82.42658, 36.5086], [-82.42232, 36.50979], [-82.42187, 36.50992], [-82.42133, 36.51008], [-82.42081, 36.51024], [-82.42035, 36.51039], [-82.41967, 36.51061], [-82.41899, 36.51085], [-82.41837, 36.51109], [-82.4177, 36.51134], [-82.41717, 36.51156], [-82.41649, 36.51185], [-82.41577, 36.51218], [-82.41517, 36.51246], [-82.41454, 36.51277], [-82.41393, 36.51309], [-82.41315, 36.5135], [-82.41261, 36.51381], [-82.41201, 36.51415], [-82.41125, 36.51461], [-82.41055, 36.51507], [-82.40996, 36.51546], [-82.40938, 36.51586], [-82.40884, 36.51625], [-82.4079, 36.51696], [-82.40695, 36.51773], [-82.40553, 36.51888], [-82.40412, 36.52004], [-82.40287, 36.52105], [-82.40173, 36.52196], [-82.40018, 36.52322], [-82.39863, 36.52448], [-82.39734, 36.52552], [-82.39593, 36.52667], [-82.39435, 36.52796], [-82.39266, 36.52933], [-82.39185, 36.53], [-82.39138, 36.53039], [-82.39047, 36.53111], [-82.38919, 36.53215], [-82.38868, 36.53255], [-82.38805, 36.53302], [-82.38765, 36.53331], [-82.38698, 36.53376], [-82.38643, 36.53411], [-82.3858, 36.5345], [-82.38523, 36.53482], [-82.38457, 36.53518], [-82.38406, 36.53545], [-82.38369, 36.53563], [-82.38324, 36.53585], [-82.38274, 36.53608], [-82.38218, 36.53632], [-82.38162, 36.53656], [-82.38096, 36.53681], [-82.38028, 36.53706], [-82.37965, 36.53727], [-82.37893, 36.53751], [-82.3783, 36.53769], [-82.37765, 36.53787], [-82.37693, 36.53806], [-82.37619, 36.53823], [-82.37559, 36.53836], [-82.37493, 36.53848], [-82.37436, 36.53858], [-82.37371, 36.53868], [-82.37306, 36.53877], [-82.37236, 36.53886], [-82.3717, 36.53892], [-82.3709, 36.53898], [-82.37018, 36.53903], [-82.36949, 36.53904], [-82.36865, 36.53906], [-82.36803, 36.53905], [-82.36753, 36.53904], [-82.36682, 36.53902], [-82.36625, 36.53898], [-82.36558, 36.53894], [-82.36493, 36.53888], [-82.36424, 36.53882], [-82.36252, 36.53866], [-82.36207, 36.53862], [-82.35893, 36.53833], [-82.35848, 36.53829], [-82.35798, 36.53826], [-82.35737, 36.53823], [-82.35679, 36.5382], [-82.35601, 36.53819], [-82.35527, 36.53819], [-82.35462, 36.53821], [-82.35413, 36.53823], [-82.35349, 36.53826], [-82.35283, 36.53831], [-82.35216, 36.53837], [-82.35166, 36.53842], [-82.35092, 36.53851], [-82.35021, 36.53861], [-82.34957, 36.53872], [-82.34913, 36.53879], [-82.3485, 36.53892], [-82.34804, 36.53902], [-82.34771, 36.53909], [-82.34706, 36.53924], [-82.34656, 36.53937], [-82.3459, 36.53955], [-82.34528, 36.53974], [-82.34464, 36.53994], [-82.344, 36.54016], [-82.34338, 36.54039], [-82.34293, 36.54056], [-82.34232, 36.54081], [-82.34163, 36.5411], [-82.34062, 36.54156], [-82.33979, 36.54197], [-82.33588, 36.54393], [-82.33525, 36.54424], [-82.3345, 36.54462], [-82.33199, 36.54587], [-82.33015, 36.54679], [-82.32842, 36.54765], [-82.32693, 36.54839], [-82.3233, 36.55021], [-82.322, 36.55085], [-82.32123, 36.55124], [-82.32085, 36.55144], [-82.3203, 36.55176], [-82.31989, 36.552], [-82.31926, 36.55241], [-82.31888, 36.55266], [-82.3184, 36.55302], [-82.31808, 36.55326], [-82.31755, 36.5537], [-82.31722, 36.55399], [-82.31673, 36.55444], [-82.31638, 36.5548], [-82.31604, 36.55515], [-82.31571, 36.55553], [-82.31533, 36.55598], [-82.31508, 36.5563], [-82.31451, 36.55708], [-82.31406, 36.55771], [-82.31342, 36.55859], [-82.31315, 36.55896], [-82.31279, 36.55943], [-82.31253, 36.55973], [-82.31224, 36.56006], [-82.312, 36.56032], [-82.3117, 36.56063], [-82.3114, 36.56093], [-82.31109, 36.56121], [-82.31071, 36.56156], [-82.31031, 36.56189], [-82.30983, 36.56227], [-82.30947, 36.56254], [-82.30906, 36.56283], [-82.30861, 36.56311], [-82.30822, 36.56336], [-82.30784, 36.56359], [-82.30744, 36.56381], [-82.30708, 36.564], [-82.30667, 36.56421], [-82.30639, 36.56434], [-82.30593, 36.56456], [-82.296, 36.56921], [-82.29119, 36.57146], [-82.28628, 36.57376], [-82.27644, 36.57835], [-82.27561, 36.57874], [-82.27443, 36.57931], [-82.2734, 36.57984], [-82.27206, 36.58054], [-82.27114, 36.58105], [-82.27011, 36.58163], [-82.26848, 36.58259], [-82.26692, 36.5835], [-82.26602, 36.58404], [-82.26566, 36.58425], [-82.26523, 36.5845], [-82.26341, 36.58564], [-82.2607, 36.58725], [-82.25932, 36.58805], [-82.25883, 36.58833], [-82.2583, 36.58862], [-82.25794, 36.5888], [-82.257, 36.58929], [-82.25598, 36.58982], [-82.25525, 36.5902], [-82.25317, 36.5912], [-82.25114, 36.59216], [-82.24955, 36.59292], [-82.24855, 36.59338], [-82.24683, 36.59414], [-82.24507, 36.59492], [-82.24468, 36.59508], [-82.24338, 36.59565], [-82.24333, 36.59568], [-82.24323, 36.59572], [-82.24291, 36.59586], [-82.24171, 36.5964], [-82.23942, 36.59741], [-82.23757, 36.59823], [-82.23712, 36.59843], [-82.23698, 36.5985], [-82.23631, 36.5988], [-82.23537, 36.59921], [-82.23514, 36.59932], [-82.23482, 36.59946], [-82.23377, 36.59992], [-82.23344, 36.60007], [-82.23305, 36.60024], [-82.23215, 36.60064], [-82.2315, 36.60094], [-82.23087, 36.60122], [-82.22992, 36.60165], [-82.22908, 36.60201], [-82.22846, 36.6023], [-82.22394, 36.60429], [-82.22334, 36.60456], [-82.22253, 36.6049], [-82.21956, 36.60622], [-82.21792, 36.60697], [-82.21724, 36.60726], [-82.2165, 36.60759], [-82.21429, 36.60857], [-82.21364, 36.60885], [-82.21308, 36.60911], [-82.21221, 36.6095], [-82.21022, 36.61037], [-82.20984, 36.61054], [-82.20929, 36.61077], [-82.20891, 36.61093], [-82.20722, 36.61171], [-82.20682, 36.61188], [-82.20635, 36.61207], [-82.20259, 36.61374], [-82.20183, 36.61408], [-82.2008, 36.61457], [-82.20004, 36.61496], [-82.19955, 36.61523], [-82.19854, 36.61583], [-82.19805, 36.61613], [-82.19741, 36.61649], [-82.19704, 36.61673], [-82.19671, 36.61698], [-82.19533, 36.61791], [-82.19492, 36.61818], [-82.19296, 36.61949], [-82.19233, 36.61989], [-82.19187, 36.62016], [-82.19138, 36.62041], [-82.19082, 36.62068], [-82.19038, 36.62088], [-82.1897, 36.6211], [-82.18933, 36.62125], [-82.18854, 36.62155], [-82.18799, 36.62176], [-82.18644, 36.62234], [-82.18518, 36.62288], [-82.1847, 36.62305], [-82.18436, 36.62318], [-82.18376, 36.62339], [-82.18252, 36.62382], [-82.18166, 36.62412], [-82.18056, 36.62453], [-82.17981, 36.62481], [-82.17898, 36.62514], [-82.17797, 36.62553], [-82.17736, 36.62574], [-82.17699, 36.62587], [-82.1764, 36.62604], [-82.17594, 36.62616], [-82.17588, 36.62618], [-82.17473, 36.62643], [-82.17395, 36.62658], [-82.1738, 36.6266], [-82.17269, 36.62677], [-82.17245, 36.62679], [-82.17204, 36.62683], [-82.17148, 36.62687], [-82.17082, 36.62691], [-82.17037, 36.62692], [-82.16985, 36.62693], [-82.1695, 36.62692], [-82.16938, 36.62692], [-82.16877, 36.62688], [-82.16823, 36.62684], [-82.16743, 36.62675], [-82.16639, 36.62663], [-82.16546, 36.62653], [-82.16502, 36.62647], [-82.16442, 36.62641], [-82.1636, 36.62633], [-82.16291, 36.6263], [-82.16215, 36.62628], [-82.16136, 36.62627], [-82.15876, 36.62626], [-82.15717, 36.62625], [-82.15648, 36.62623], [-82.15619, 36.62621], [-82.15524, 36.62616], [-82.15417, 36.62606], [-82.15352, 36.62602], [-82.15188, 36.62588], [-82.15046, 36.62575], [-82.15017, 36.62572], [-82.14961, 36.62565], [-82.14935, 36.62563], [-82.1482, 36.62552], [-82.14748, 36.62546], [-82.14685, 36.62542], [-82.14535, 36.62528], [-82.14454, 36.6252], [-82.14413, 36.62516], [-82.14311, 36.62508], [-82.14196, 36.62497], [-82.14106, 36.62489], [-82.14039, 36.62485], [-82.13985, 36.62483], [-82.13916, 36.62483], [-82.13875, 36.62483], [-82.13806, 36.62486], [-82.13748, 36.62489], [-82.13718, 36.62492], [-82.13688, 36.62496], [-82.1362, 36.62507], [-82.13558, 36.62517], [-82.13484, 36.62529], [-82.13408, 36.62545], [-82.13357, 36.62557], [-82.1328, 36.62578], [-82.1323, 36.62593], [-82.13181, 36.62605], [-82.13145, 36.62617], [-82.13113, 36.62628], [-82.12993, 36.62681], [-82.12918, 36.62712], [-82.12844, 36.62741], [-82.12707, 36.62797], [-82.12697, 36.62801], [-82.1267, 36.62813], [-82.12312, 36.6296], [-82.12264, 36.62979], [-82.12183, 36.63012], [-82.12131, 36.63032], [-82.12074, 36.63058], [-82.11759, 36.63181], [-82.1168, 36.63217], [-82.1163, 36.63238], [-82.1157, 36.63263], [-82.11393, 36.63335], [-82.11334, 36.63359], [-82.1126, 36.63389], [-82.11209, 36.63412], [-82.11198, 36.63416], [-82.11081, 36.63466], [-82.11021, 36.63489], [-82.10835, 36.63561], [-82.10558, 36.63675], [-82.10208, 36.63818], [-82.10019, 36.63895], [-82.09933, 36.63931], [-82.0983, 36.63977], [-82.0973, 36.64028], [-82.09641, 36.64078], [-82.09608, 36.64096], [-82.09593, 36.64105], [-82.09535, 36.64143], [-82.09438, 36.64209], [-82.09392, 36.64243], [-82.09379, 36.64253], [-82.09322, 36.64298], [-82.0926, 36.6435], [-82.092, 36.64403], [-82.09073, 36.64519], [-82.09002, 36.64585], [-82.08928, 36.64652], [-82.0879, 36.64778], [-82.08726, 36.64835], [-82.08675, 36.64878], [-82.08649, 36.64899], [-82.08625, 36.64917], [-82.08565, 36.64962], [-82.08519, 36.64995], [-82.08468, 36.65029], [-82.08405, 36.65069], [-82.08389, 36.65079], [-82.08314, 36.65123], [-82.08272, 36.65145], [-82.08221, 36.65173], [-82.08128, 36.65218], [-82.08047, 36.65254], [-82.07993, 36.65276], [-82.07926, 36.65302], [-82.07867, 36.65324], [-82.07832, 36.65336], [-82.0772, 36.65376], [-82.0757, 36.65428], [-82.07474, 36.65463], [-82.07404, 36.6549], [-82.07349, 36.65512], [-82.07284, 36.65541], [-82.07198, 36.65581], [-82.07112, 36.65625], [-82.07044, 36.65663], [-82.06955, 36.65717], [-82.06872, 36.6577], [-82.06792, 36.65828], [-82.06712, 36.65889], [-82.06658, 36.65935], [-82.06596, 36.65987], [-82.06553, 36.6603], [-82.06329, 36.66246], [-82.06239, 36.66331], [-82.06184, 36.6638], [-82.06099, 36.66452], [-82.06022, 36.66513], [-82.05948, 36.66568], [-82.05869, 36.66625], [-82.05812, 36.66664], [-82.05766, 36.66694], [-82.05659, 36.66762], [-82.05486, 36.66863], [-82.05324, 36.66957], [-82.05194, 36.67033], [-82.05126, 36.67072], [-82.04551, 36.67407], [-82.04502, 36.67437], [-82.04444, 36.67472], [-82.04364, 36.67522], [-82.04273, 36.67581], [-82.04138, 36.67672], [-82.03992, 36.67778], [-82.03935, 36.67819], [-82.03854, 36.67874], [-82.03812, 36.67903], [-82.03796, 36.67915], [-82.03721, 36.67969], [-82.03439, 36.68171], [-82.03382, 36.68211], [-82.03221, 36.6832], [-82.03114, 36.68389], [-82.03096, 36.68401], [-82.03034, 36.6844], [-82.02962, 36.68483], [-82.02881, 36.68532], [-82.02811, 36.68572], [-82.02733, 36.68616], [-82.02503, 36.68744], [-82.02406, 36.68799], [-82.02328, 36.68843], [-82.0231, 36.68853], [-82.0201, 36.6902], [-82.01825, 36.69123], [-82.01742, 36.69168], [-82.01694, 36.69192], [-82.0165, 36.69212], [-82.01615, 36.69228], [-82.01574, 36.69245], [-82.01532, 36.69262], [-82.01442, 36.69295], [-82.01392, 36.69311], [-82.01342, 36.69326], [-82.01294, 36.69339], [-82.01266, 36.69346], [-82.01255, 36.69349], [-82.01172, 36.69366], [-82.01165, 36.69368], [-82.01142, 36.69374], [-82.01111, 36.6938], [-82.01055, 36.6939], [-82.01038, 36.69392], [-82.01011, 36.69396], [-82.00887, 36.6941], [-82.00834, 36.69416], [-82.00795, 36.69421], [-82.00647, 36.69437], [-82.00594, 36.69443], [-82.00454, 36.69458], [-82.00397, 36.69464], [-82.00352, 36.69469], [-82.00189, 36.69488], [-82.00096, 36.69498], [-81.99955, 36.69514], [-81.99835, 36.69526], [-81.9957, 36.69556], [-81.99416, 36.69573], [-81.99308, 36.69586], [-81.99244, 36.69595], [-81.99194, 36.69604], [-81.99138, 36.69615], [-81.99106, 36.69622], [-81.99057, 36.69633], [-81.99029, 36.69641], [-81.99004, 36.69647], [-81.98958, 36.6966], [-81.98902, 36.69678], [-81.98848, 36.69696], [-81.9881, 36.6971], [-81.98725, 36.69743], [-81.98649, 36.69773], [-81.98566, 36.69806], [-81.98508, 36.69827], [-81.98467, 36.69842], [-81.98422, 36.69856], [-81.98403, 36.69862], [-81.98386, 36.69867], [-81.9836, 36.69875], [-81.98308, 36.69889], [-81.98258, 36.69901], [-81.98209, 36.69912], [-81.98138, 36.69925], [-81.98091, 36.69933], [-81.9804, 36.6994], [-81.97987, 36.69946], [-81.97912, 36.69954], [-81.97898, 36.69955], [-81.97886, 36.69956], [-81.97854, 36.69958], [-81.97797, 36.6996], [-81.97763, 36.69961], [-81.97715, 36.69962], [-81.97676, 36.69961], [-81.97622, 36.6996], [-81.9759, 36.69958], [-81.97544, 36.69955], [-81.97488, 36.6995], [-81.97425, 36.69945], [-81.97285, 36.69934], [-81.97259, 36.69931], [-81.97146, 36.69922], [-81.97089, 36.69919], [-81.97061, 36.69918], [-81.97042, 36.69918], [-81.96955, 36.69917], [-81.96914, 36.69918], [-81.96853, 36.69921], [-81.96782, 36.69926], [-81.9674, 36.6993], [-81.96694, 36.69935], [-81.96648, 36.69941], [-81.96616, 36.69946], [-81.96544, 36.69958], [-81.96501, 36.69966], [-81.96439, 36.6998], [-81.96375, 36.69996], [-81.96332, 36.70008], [-81.9629, 36.70021], [-81.96254, 36.70032], [-81.9622, 36.70043], [-81.96155, 36.70067], [-81.96118, 36.70081], [-81.96061, 36.70105], [-81.96009, 36.70128], [-81.95957, 36.70152], [-81.95921, 36.70172], [-81.95893, 36.70185], [-81.95855, 36.70208], [-81.95788, 36.70247], [-81.9542, 36.70484], [-81.95388, 36.70506], [-81.95245, 36.70594], [-81.95225, 36.70607], [-81.95196, 36.70626], [-81.95173, 36.7064], [-81.95107, 36.70677], [-81.95014, 36.70727], [-81.94906, 36.70783], [-81.94812, 36.70827], [-81.94777, 36.70842], [-81.94751, 36.70855], [-81.9469, 36.70881], [-81.94618, 36.7091], [-81.94609, 36.70914], [-81.94537, 36.70941], [-81.94378, 36.71], [-81.94003, 36.71137], [-81.93979, 36.71145], [-81.93855, 36.71189], [-81.93815, 36.71203], [-81.9377, 36.7122], [-81.93705, 36.71245], [-81.93622, 36.71276], [-81.93585, 36.71289], [-81.9356, 36.71299], [-81.93522, 36.71312], [-81.9348, 36.71326], [-81.93467, 36.7133], [-81.9344, 36.71341], [-81.93431, 36.71346], [-81.93338, 36.71379], [-81.9329, 36.71395], [-81.93232, 36.71416], [-81.93203, 36.71428], [-81.93142, 36.71451], [-81.93065, 36.7148], [-81.9303, 36.71492], [-81.92999, 36.71503], [-81.92967, 36.71513], [-81.92904, 36.71538], [-81.92829, 36.71566], [-81.92778, 36.71584], [-81.92766, 36.71589], [-81.92753, 36.71594], [-81.92704, 36.71611], [-81.92678, 36.7162], [-81.92478, 36.71694], [-81.92293, 36.71761], [-81.92238, 36.71782], [-81.92182, 36.71805], [-81.92123, 36.71831], [-81.92051, 36.71865], [-81.91958, 36.71911], [-81.91901, 36.71943], [-81.91878, 36.71956], [-81.91843, 36.71976], [-81.91811, 36.71994], [-81.91735, 36.72043], [-81.91712, 36.72058], [-81.9166, 36.72095], [-81.91607, 36.72133], [-81.91558, 36.72171], [-81.9151, 36.7221], [-81.91455, 36.72258], [-81.91409, 36.72299], [-81.91387, 36.72319], [-81.913, 36.724], [-81.91255, 36.72442], [-81.9121, 36.72484], [-81.91175, 36.72517], [-81.91157, 36.72532], [-81.91139, 36.7255], [-81.91122, 36.72565], [-81.91104, 36.72582], [-81.91088, 36.72597], [-81.91033, 36.72648], [-81.90981, 36.72699], [-81.90964, 36.72716], [-81.90898, 36.72787], [-81.90859, 36.72832], [-81.90813, 36.7289], [-81.90797, 36.7291], [-81.90752, 36.72972], [-81.90697, 36.73054], [-81.90657, 36.7312], [-81.90629, 36.73169], [-81.90618, 36.7319], [-81.90596, 36.73227], [-81.9057, 36.73268], [-81.90549, 36.73298], [-81.9052, 36.73339], [-81.90483, 36.73382], [-81.90461, 36.73407], [-81.90446, 36.73422], [-81.90417, 36.73452], [-81.90399, 36.73469], [-81.90361, 36.73503], [-81.90329, 36.7353], [-81.90293, 36.73557], [-81.90268, 36.73576], [-81.9024, 36.73595], [-81.90219, 36.73609], [-81.90161, 36.73645], [-81.90112, 36.73672], [-81.90072, 36.73692], [-81.89935, 36.73757], [-81.89836, 36.73803], [-81.89617, 36.73907], [-81.89533, 36.73948], [-81.89458, 36.73987], [-81.89401, 36.74017], [-81.8933, 36.74058], [-81.89252, 36.74104], [-81.89214, 36.74128], [-81.89175, 36.74152], [-81.89095, 36.74205], [-81.89021, 36.74256], [-81.88937, 36.74317], [-81.88863, 36.74375], [-81.88655, 36.74537], [-81.88628, 36.74558], [-81.8859, 36.74588], [-81.88546, 36.74622], [-81.88336, 36.74786], [-81.88266, 36.74839], [-81.88219, 36.74874], [-81.88178, 36.74901], [-81.88154, 36.74917], [-81.88112, 36.74942], [-81.88057, 36.74973], [-81.87999, 36.75003], [-81.87942, 36.75028], [-81.87886, 36.75052], [-81.87839, 36.7507], [-81.87787, 36.75088], [-81.87664, 36.75127], [-81.8752, 36.75172], [-81.87383, 36.75215], [-81.86709, 36.75428], [-81.8658, 36.75468], [-81.86287, 36.75561], [-81.8572, 36.7574], [-81.85675, 36.75754], [-81.85322, 36.75865], [-81.8476, 36.76043], [-81.84668, 36.76073], [-81.84508, 36.76127], [-81.83749, 36.7638], [-81.83442, 36.76482], [-81.83317, 36.76524], [-81.83303, 36.76529], [-81.83275, 36.76539], [-81.83163, 36.76576], [-81.8304, 36.76617], [-81.82928, 36.76654], [-81.82883, 36.76668], [-81.8278, 36.76698], [-81.82689, 36.76723], [-81.82598, 36.76746], [-81.82516, 36.76765], [-81.82496, 36.76769], [-81.82426, 36.76783], [-81.82346, 36.76799], [-81.82262, 36.76813], [-81.82217, 36.7682], [-81.82115, 36.76834], [-81.82063, 36.76841], [-81.82015, 36.76847], [-81.8196, 36.76852], [-81.81899, 36.76858], [-81.81849, 36.76862], [-81.81791, 36.76866], [-81.81743, 36.76868], [-81.81411, 36.76885], [-81.80888, 36.7691], [-81.80775, 36.76916], [-81.80478, 36.76931], [-81.80363, 36.76937], [-81.79381, 36.76985], [-81.79278, 36.76994], [-81.79216, 36.76998], [-81.79158, 36.77002], [-81.79026, 36.77014], [-81.78976, 36.7702], [-81.7891, 36.77029], [-81.7884, 36.77038], [-81.78733, 36.77056], [-81.7866, 36.77069], [-81.78425, 36.77115], [-81.78122, 36.77178], [-81.78068, 36.77189], [-81.77743, 36.7725], [-81.77631, 36.77273], [-81.77522, 36.77293], [-81.77367, 36.77324], [-81.773, 36.77338], [-81.77262, 36.77347], [-81.7721, 36.77359], [-81.77171, 36.77369], [-81.77072, 36.77395], [-81.76992, 36.77418], [-81.76916, 36.77441], [-81.76837, 36.77468], [-81.76828, 36.77471], [-81.76757, 36.77496], [-81.76499, 36.77595], [-81.76182, 36.77715], [-81.76121, 36.77737], [-81.76061, 36.77757], [-81.75993, 36.77778], [-81.7594, 36.77793], [-81.7588, 36.77809], [-81.75823, 36.77823], [-81.75762, 36.77837], [-81.75683, 36.77853], [-81.75628, 36.77863], [-81.75431, 36.77893], [-81.75381, 36.779], [-81.75116, 36.7794], [-81.74945, 36.77965], [-81.7466, 36.78007], [-81.74634, 36.78011], [-81.74596, 36.78017], [-81.74434, 36.78041], [-81.74414, 36.78044], [-81.74397, 36.78047], [-81.74294, 36.78062], [-81.74233, 36.78072], [-81.74164, 36.78084], [-81.741, 36.78097], [-81.74044, 36.78108], [-81.73974, 36.78124], [-81.73909, 36.78139], [-81.73856, 36.78153], [-81.73786, 36.78172], [-81.73762, 36.7818], [-81.7372, 36.78194], [-81.73696, 36.78203], [-81.73668, 36.78214], [-81.73634, 36.78228], [-81.73599, 36.78244], [-81.73565, 36.7826], [-81.73549, 36.78268], [-81.73531, 36.78277], [-81.7348, 36.78304], [-81.73454, 36.78318], [-81.73429, 36.78332], [-81.73292, 36.78406], [-81.73229, 36.7844], [-81.7319, 36.7846], [-81.7314, 36.78484], [-81.73073, 36.78513], [-81.73033, 36.7853], [-81.72997, 36.78544], [-81.72986, 36.78548], [-81.72933, 36.78567], [-81.72886, 36.78583], [-81.72824, 36.78601], [-81.72769, 36.78616], [-81.72726, 36.78627], [-81.72691, 36.78635], [-81.72634, 36.78648], [-81.72552, 36.78662], [-81.7243, 36.78682], [-81.72364, 36.78692], [-81.71994, 36.78749], [-81.71933, 36.78758], [-81.71872, 36.78768], [-81.71462, 36.78831], [-81.71401, 36.7884], [-81.71351, 36.78846], [-81.71288, 36.78853], [-81.71245, 36.78856], [-81.71206, 36.78859], [-81.7117, 36.78861], [-81.71117, 36.78862], [-81.71074, 36.78862], [-81.71037, 36.78862], [-81.70979, 36.78861], [-81.70927, 36.78858], [-81.70869, 36.78854], [-81.70819, 36.78849], [-81.70765, 36.78843], [-81.707, 36.78833], [-81.70649, 36.78824], [-81.70557, 36.78806], [-81.70479, 36.78788], [-81.70437, 36.78776], [-81.70373, 36.78758], [-81.70341, 36.78748], [-81.7029, 36.7873], [-81.7025, 36.78716], [-81.70162, 36.78681], [-81.70119, 36.78663], [-81.7007, 36.78644], [-81.70044, 36.78634], [-81.70018, 36.78625], [-81.69996, 36.78618], [-81.69964, 36.78609], [-81.6992, 36.78598], [-81.69891, 36.78592], [-81.69889, 36.78592], [-81.69851, 36.78585], [-81.69807, 36.7858], [-81.69752, 36.78575], [-81.69723, 36.78574], [-81.69684, 36.78573], [-81.69654, 36.78574], [-81.69616, 36.78576], [-81.69573, 36.7858], [-81.69531, 36.78586], [-81.6949, 36.78593], [-81.69455, 36.786], [-81.69413, 36.7861], [-81.69384, 36.78619], [-81.69336, 36.78634], [-81.69288, 36.7865], [-81.69228, 36.78671], [-81.69166, 36.78695], [-81.69104, 36.7872], [-81.69051, 36.78743], [-81.68983, 36.78774], [-81.68928, 36.78801], [-81.68862, 36.78835], [-81.68811, 36.78864], [-81.68752, 36.78898], [-81.68706, 36.78926], [-81.68695, 36.78933], [-81.68684, 36.7894], [-81.68639, 36.78969], [-81.68583, 36.79007], [-81.6854, 36.79039], [-81.68484, 36.79082], [-81.68453, 36.79107], [-81.68399, 36.79151], [-81.68358, 36.79185], [-81.68324, 36.79215], [-81.68284, 36.79251], [-81.6826, 36.79272], [-81.68082, 36.79428], [-81.68036, 36.79468], [-81.67998, 36.79501], [-81.67957, 36.79538], [-81.67901, 36.79585], [-81.67878, 36.79603], [-81.67868, 36.79612], [-81.67829, 36.79646], [-81.67676, 36.79779], [-81.67596, 36.7985], [-81.67521, 36.79914], [-81.67475, 36.79952], [-81.67402, 36.80008], [-81.67209, 36.80149], [-81.66881, 36.80387], [-81.66812, 36.80436], [-81.66766, 36.80466], [-81.66708, 36.80504], [-81.66627, 36.80555], [-81.66568, 36.8059], [-81.66365, 36.80707], [-81.66324, 36.80728], [-81.66284, 36.80753], [-81.66264, 36.80765], [-81.66238, 36.80779], [-81.66189, 36.80805], [-81.66156, 36.80821], [-81.66115, 36.80839], [-81.66062, 36.8086], [-81.66017, 36.80876], [-81.65972, 36.80891], [-81.65918, 36.80907], [-81.65873, 36.80918], [-81.65847, 36.80924], [-81.65802, 36.80933], [-81.65738, 36.80944], [-81.65691, 36.8095], [-81.65644, 36.80955], [-81.65597, 36.80958], [-81.65546, 36.8096], [-81.65495, 36.80961], [-81.65493, 36.80961], [-81.65161, 36.80958], [-81.65062, 36.80955], [-81.64996, 36.80953], [-81.64908, 36.80948], [-81.64826, 36.80941], [-81.64745, 36.80934], [-81.64636, 36.80922], [-81.6446, 36.80897], [-81.64298, 36.80873], [-81.64204, 36.80859], [-81.64003, 36.80829], [-81.63719, 36.80786], [-81.63613, 36.80769], [-81.63384, 36.80731], [-81.63278, 36.80713], [-81.63192, 36.80699], [-81.62962, 36.8066], [-81.62852, 36.80644], [-81.62817, 36.8064], [-81.62758, 36.80634], [-81.62701, 36.8063], [-81.62644, 36.80627], [-81.62633, 36.80627], [-81.6252, 36.80626], [-81.62432, 36.80629], [-81.62323, 36.8064], [-81.622, 36.80656], [-81.62097, 36.80678], [-81.62078, 36.80682], [-81.62044, 36.8069], [-81.61967, 36.80711], [-81.61925, 36.80724], [-81.61866, 36.80744], [-81.61764, 36.80783], [-81.61722, 36.808], [-81.61658, 36.8083], [-81.61617, 36.8085], [-81.61574, 36.80873], [-81.61555, 36.80884], [-81.61537, 36.80894], [-81.61484, 36.80925], [-81.61455, 36.80944], [-81.61405, 36.80976], [-81.61377, 36.80994], [-81.61227, 36.81091], [-81.61188, 36.81115], [-81.6115, 36.81136], [-81.61117, 36.81154], [-81.61076, 36.81173], [-81.61046, 36.81185], [-81.61008, 36.812], [-81.60967, 36.81214], [-81.60937, 36.81223], [-81.60901, 36.81233], [-81.60864, 36.81241], [-81.60821, 36.81249], [-81.60787, 36.81255], [-81.60694, 36.81265], [-81.60628, 36.81268], [-81.60269, 36.81275], [-81.59525, 36.8129], [-81.59264, 36.81294], [-81.59004, 36.81299], [-81.58901, 36.813], [-81.5881, 36.81299], [-81.58726, 36.81297], [-81.58619, 36.81292], [-81.58575, 36.81289], [-81.58544, 36.81286], [-81.5843, 36.81277], [-81.58361, 36.8127], [-81.58247, 36.81255], [-81.58157, 36.81243], [-81.58091, 36.81232], [-81.58065, 36.81227], [-81.57868, 36.81196], [-81.57834, 36.8119], [-81.57594, 36.81152], [-81.57492, 36.81136], [-81.5741, 36.81126], [-81.57362, 36.81123], [-81.57311, 36.8112], [-81.57262, 36.8112], [-81.57215, 36.8112], [-81.57169, 36.81123], [-81.57122, 36.81126], [-81.57072, 36.81132], [-81.57021, 36.81139], [-81.56969, 36.81148], [-81.56917, 36.81158], [-81.56844, 36.81174], [-81.56552, 36.81235], [-81.56362, 36.81274], [-81.56311, 36.81285], [-81.56266, 36.81297], [-81.56226, 36.81309], [-81.56211, 36.81314], [-81.56163, 36.8133], [-81.56109, 36.81351], [-81.56073, 36.81367], [-81.56037, 36.81384], [-81.55985, 36.81412], [-81.55936, 36.81441], [-81.55913, 36.81456], [-81.559, 36.81465], [-81.55821, 36.81523], [-81.55807, 36.81534], [-81.5567, 36.81634], [-81.55619, 36.81666], [-81.5559, 36.81684], [-81.55556, 36.81703], [-81.55539, 36.81712], [-81.55475, 36.81743], [-81.55421, 36.81767], [-81.55387, 36.81779], [-81.55343, 36.81796], [-81.5521, 36.8184], [-81.55172, 36.81852], [-81.55028, 36.81899], [-81.54967, 36.8192], [-81.54872, 36.81949], [-81.54813, 36.81968], [-81.54721, 36.82], [-81.54685, 36.82012], [-81.54646, 36.82025], [-81.54519, 36.82066], [-81.54485, 36.82077], [-81.54406, 36.821], [-81.54327, 36.8212], [-81.54254, 36.82137], [-81.54233, 36.82141], [-81.54169, 36.82154], [-81.54115, 36.82164], [-81.54058, 36.82173], [-81.54041, 36.82176], [-81.54022, 36.82178], [-81.53954, 36.82187], [-81.53892, 36.82193], [-81.53764, 36.82204], [-81.53729, 36.82207], [-81.53589, 36.82218], [-81.53586, 36.82218], [-81.53558, 36.82219], [-81.53425, 36.82228], [-81.53393, 36.8223], [-81.53355, 36.82234], [-81.53037, 36.82257], [-81.52949, 36.82264], [-81.52855, 36.82269], [-81.52799, 36.82271], [-81.52745, 36.82272], [-81.52725, 36.82273], [-81.52609, 36.82273], [-81.52551, 36.82273], [-81.52511, 36.82272], [-81.51875, 36.82267], [-81.51831, 36.82267], [-81.51806, 36.82267], [-81.5173, 36.82268], [-81.51679, 36.82271], [-81.51641, 36.82274], [-81.51558, 36.82283], [-81.51504, 36.82291], [-81.51467, 36.82296], [-81.51409, 36.82307], [-81.51355, 36.82319], [-81.51307, 36.82332], [-81.51261, 36.82345], [-81.51256, 36.82346], [-81.51207, 36.82362], [-81.51168, 36.82375], [-81.5113, 36.82389], [-81.51095, 36.82403], [-81.51033, 36.82425], [-81.50956, 36.82464], [-81.50893, 36.82502], [-81.50845, 36.8253], [-81.50809, 36.82553], [-81.50773, 36.82577], [-81.50742, 36.82599], [-81.50736, 36.82603], [-81.50707, 36.82626], [-81.50684, 36.8264], [-81.50636, 36.82683], [-81.50619, 36.82701], [-81.50448, 36.82865], [-81.50389, 36.82921], [-81.50341, 36.82968], [-81.50323, 36.82984], [-81.50303, 36.83002], [-81.50287, 36.83018], [-81.50265, 36.83038], [-81.50249, 36.83054], [-81.50188, 36.83111], [-81.50153, 36.83146], [-81.50114, 36.83185], [-81.50088, 36.83215], [-81.5004, 36.83272], [-81.50023, 36.83293], [-81.5001, 36.83311], [-81.50002, 36.83321], [-81.49965, 36.83374], [-81.49958, 36.83385], [-81.49929, 36.8343], [-81.49852, 36.83548], [-81.49827, 36.83583], [-81.49788, 36.83634], [-81.49758, 36.83671], [-81.4973, 36.83703], [-81.49703, 36.83732], [-81.4967, 36.83767], [-81.49633, 36.83802], [-81.49504, 36.83928], [-81.49497, 36.83934], [-81.49464, 36.83966], [-81.49407, 36.84023], [-81.49276, 36.8415], [-81.49212, 36.84213], [-81.49121, 36.84303], [-81.49093, 36.84328], [-81.48709, 36.84704], [-81.48677, 36.84735], [-81.48653, 36.84759], [-81.48407, 36.84997], [-81.48381, 36.85022], [-81.48348, 36.85052], [-81.48338, 36.8506], [-81.48313, 36.85079], [-81.48288, 36.85096], [-81.48261, 36.85113], [-81.48232, 36.85129], [-81.48203, 36.85143], [-81.48173, 36.85156], [-81.48143, 36.85168], [-81.48117, 36.85177], [-81.48085, 36.85186], [-81.48053, 36.85195], [-81.48013, 36.85202], [-81.47979, 36.85207], [-81.47946, 36.85211], [-81.47905, 36.85213], [-81.47864, 36.85214], [-81.47834, 36.85212], [-81.47796, 36.85209], [-81.47758, 36.85205], [-81.4772, 36.85199], [-81.47698, 36.85195], [-81.47495, 36.8516], [-81.47467, 36.85156], [-81.47425, 36.85151], [-81.47408, 36.8515], [-81.47367, 36.85148], [-81.47339, 36.85148], [-81.47303, 36.8515], [-81.47267, 36.85152], [-81.47232, 36.85156], [-81.47196, 36.85162], [-81.47161, 36.85168], [-81.47134, 36.85175], [-81.471, 36.85184], [-81.47066, 36.85194], [-81.47034, 36.85206], [-81.47002, 36.85219], [-81.46946, 36.85245], [-81.46748, 36.8535], [-81.46689, 36.85381], [-81.46564, 36.85445], [-81.46448, 36.85501], [-81.46351, 36.85544], [-81.46267, 36.8558], [-81.462, 36.85608], [-81.46179, 36.85616], [-81.46146, 36.85629], [-81.46097, 36.85648], [-81.45595, 36.85848], [-81.45536, 36.85874], [-81.45003, 36.86086], [-81.44909, 36.86121], [-81.44884, 36.86129], [-81.44854, 36.86138], [-81.44804, 36.86153], [-81.44771, 36.86161], [-81.44718, 36.86173], [-81.44657, 36.86184], [-81.44616, 36.86191], [-81.44581, 36.86195], [-81.44524, 36.86201], [-81.44085, 36.86237], [-81.43824, 36.86259], [-81.43648, 36.86274], [-81.43445, 36.86291], [-81.4338, 36.86299], [-81.43287, 36.86305], [-81.43156, 36.86318], [-81.43084, 36.86326], [-81.4296, 36.86342], [-81.42934, 36.86345], [-81.42778, 36.86367], [-81.4268, 36.86383], [-81.42541, 36.86406], [-81.42425, 36.86428], [-81.42322, 36.86448], [-81.42299, 36.86452], [-81.4224, 36.86465], [-81.42177, 36.86478], [-81.42059, 36.86504], [-81.41929, 36.86535], [-81.41837, 36.86558], [-81.41721, 36.86589], [-81.41613, 36.86619], [-81.41512, 36.86648], [-81.41451, 36.86667], [-81.41339, 36.86701], [-81.41226, 36.86738], [-81.41148, 36.86764], [-81.41026, 36.86807], [-81.40974, 36.86826], [-81.40891, 36.86857], [-81.40859, 36.8687], [-81.40815, 36.86886], [-81.40558, 36.86988], [-81.40507, 36.87007], [-81.40356, 36.87068], [-81.40317, 36.87084], [-81.40275, 36.87103], [-81.40237, 36.87123], [-81.40192, 36.87148], [-81.40143, 36.87179], [-81.40112, 36.872], [-81.40069, 36.87233], [-81.40004, 36.8729], [-81.39957, 36.87337], [-81.39933, 36.87365], [-81.39909, 36.87394], [-81.39881, 36.87433], [-81.39796, 36.87548], [-81.39721, 36.87642], [-81.39688, 36.87681], [-81.39668, 36.87705], [-81.39632, 36.87741], [-81.39596, 36.87775], [-81.39567, 36.87801], [-81.39526, 36.87835], [-81.39483, 36.87867], [-81.39444, 36.87893], [-81.39411, 36.87914], [-81.39378, 36.87934], [-81.39331, 36.87959], [-81.39284, 36.87984], [-81.39236, 36.88005], [-81.39207, 36.88018], [-81.39127, 36.88049], [-81.39121, 36.88052], [-81.38976, 36.88108], [-81.38481, 36.88305], [-81.38395, 36.88339], [-81.37705, 36.88612], [-81.37569, 36.88666], [-81.37491, 36.88696], [-81.37222, 36.88803], [-81.3716, 36.88828], [-81.37106, 36.88849], [-81.37075, 36.88861], [-81.36756, 36.88988], [-81.36395, 36.89131], [-81.3587, 36.89338], [-81.35826, 36.89355], [-81.35808, 36.89362], [-81.35745, 36.89385], [-81.35655, 36.89416], [-81.35569, 36.89445], [-81.3548, 36.89473], [-81.35391, 36.895], [-81.35287, 36.89529], [-81.35199, 36.89552], [-81.35116, 36.89573], [-81.35026, 36.89594], [-81.34903, 36.8962], [-81.34851, 36.89631], [-81.34828, 36.89635], [-81.34772, 36.89646], [-81.34063, 36.89777], [-81.33766, 36.89831], [-81.33333, 36.89911], [-81.33213, 36.89933], [-81.33103, 36.89955], [-81.32981, 36.8998], [-81.32804, 36.90017], [-81.32778, 36.90023], [-81.32749, 36.90029], [-81.32659, 36.90049], [-81.32513, 36.90084], [-81.32328, 36.90131], [-81.32194, 36.90166], [-81.31971, 36.90227], [-81.31841, 36.90263], [-81.31747, 36.90291], [-81.31643, 36.90323], [-81.31477, 36.90375], [-81.31308, 36.90432], [-81.31232, 36.90459], [-81.31133, 36.90494], [-81.31045, 36.90527], [-81.30961, 36.90558], [-81.30925, 36.90572], [-81.30818, 36.90612], [-81.30677, 36.90664], [-81.30566, 36.90704], [-81.30431, 36.9075], [-81.30332, 36.90783], [-81.30237, 36.90813], [-81.30102, 36.90855], [-81.29956, 36.90898], [-81.29793, 36.90945], [-81.29667, 36.90981], [-81.29497, 36.9103], [-81.29422, 36.91051], [-81.2937, 36.91067], [-81.29268, 36.91096], [-81.29254, 36.91099], [-81.29049, 36.91158], [-81.28971, 36.9118], [-81.2892, 36.91195], [-81.28882, 36.91205], [-81.28814, 36.91225], [-81.28778, 36.91236], [-81.28083, 36.91434], [-81.2798, 36.91463], [-81.27916, 36.91479], [-81.27825, 36.91502], [-81.27816, 36.91504], [-81.27707, 36.91527], [-81.27626, 36.91543], [-81.27533, 36.91559], [-81.27467, 36.9157], [-81.274, 36.91579], [-81.27347, 36.91587], [-81.27307, 36.91592], [-81.27283, 36.91594], [-81.27204, 36.91603], [-81.2712, 36.9161], [-81.27027, 36.91619], [-81.26966, 36.91624], [-81.26742, 36.91645], [-81.26593, 36.91658], [-81.26291, 36.91685], [-81.25984, 36.91713], [-81.2597, 36.91714], [-81.25943, 36.91717], [-81.2578, 36.91732], [-81.25659, 36.91743], [-81.25537, 36.91756], [-81.25387, 36.91773], [-81.25293, 36.91785], [-81.25091, 36.91813], [-81.24862, 36.91845], [-81.24849, 36.91847], [-81.24145, 36.91946], [-81.23621, 36.9202], [-81.23464, 36.92043], [-81.23323, 36.92065], [-81.23232, 36.9208], [-81.23136, 36.92098], [-81.23031, 36.92117], [-81.22965, 36.9213], [-81.22819, 36.9216], [-81.22665, 36.92193], [-81.22582, 36.92211], [-81.22508, 36.92228], [-81.21173, 36.92523], [-81.20118, 36.92756], [-81.20069, 36.92767], [-81.19795, 36.92828], [-81.18991, 36.93005], [-81.18845, 36.93038], [-81.18793, 36.9305], [-81.18701, 36.93072], [-81.18623, 36.93092], [-81.17834, 36.93305], [-81.17599, 36.93368], [-81.16907, 36.93555], [-81.16846, 36.93571], [-81.16825, 36.93576], [-81.16758, 36.93593], [-81.16583, 36.93632], [-81.16553, 36.93638], [-81.16494, 36.93649], [-81.16393, 36.93666], [-81.16342, 36.93674], [-81.15987, 36.93722], [-81.1591, 36.93733], [-81.15847, 36.93745], [-81.15795, 36.93756], [-81.15744, 36.93769], [-81.15714, 36.93777], [-81.1566, 36.93793], [-81.15656, 36.93795], [-81.15623, 36.93806], [-81.15568, 36.93826], [-81.15521, 36.93845], [-81.15484, 36.93861], [-81.15438, 36.93883], [-81.1542, 36.93892], [-81.15404, 36.93901], [-81.15376, 36.93915], [-81.15333, 36.9394], [-81.15302, 36.93959], [-81.15263, 36.93984], [-81.15239, 36.94001], [-81.15203, 36.94026], [-81.15167, 36.94054], [-81.15129, 36.94087], [-81.15074, 36.94136], [-81.15069, 36.94141], [-81.14966, 36.94241], [-81.14795, 36.94413], [-81.14777, 36.94428], [-81.14736, 36.94468], [-81.14729, 36.94475], [-81.14723, 36.94481], [-81.14677, 36.94528], [-81.14656, 36.94546], [-81.14621, 36.94578], [-81.14592, 36.94603], [-81.14567, 36.94624], [-81.14525, 36.94656], [-81.14483, 36.94685], [-81.14463, 36.94698], [-81.14419, 36.94725], [-81.1438, 36.94747], [-81.14346, 36.94765], [-81.14342, 36.94767], [-81.14289, 36.94792], [-81.14238, 36.94814], [-81.14224, 36.9482], [-81.14184, 36.94834], [-81.1413, 36.94853], [-81.14072, 36.9487], [-81.14024, 36.94882], [-81.13981, 36.94892], [-81.13947, 36.94899], [-81.139, 36.94907], [-81.13839, 36.94915], [-81.13774, 36.94922], [-81.13528, 36.94942], [-81.13451, 36.9495], [-81.13412, 36.94955], [-81.13359, 36.94963], [-81.13292, 36.94974], [-81.13239, 36.94985], [-81.13187, 36.94997], [-81.13161, 36.95003], [-81.13122, 36.95013], [-81.13063, 36.9503], [-81.13044, 36.95036], [-81.12967, 36.95061], [-81.12891, 36.95086], [-81.12324, 36.95272], [-81.12191, 36.95316], [-81.11983, 36.95384], [-81.11887, 36.95413], [-81.11712, 36.95465], [-81.11307, 36.95582], [-81.10427, 36.95838], [-81.10353, 36.95858], [-81.10299, 36.95873], [-81.1023, 36.95894], [-81.1019, 36.95907], [-81.10106, 36.95932], [-81.10063, 36.95944], [-81.10002, 36.95962], [-81.09912, 36.95988], [-81.0983, 36.96013], [-81.09353, 36.96151], [-81.09186, 36.96199], [-81.09177, 36.96202], [-81.09083, 36.96229], [-81.08954, 36.96267], [-81.08933, 36.96273], [-81.08626, 36.96362], [-81.08561, 36.96381], [-81.08455, 36.96412], [-81.08373, 36.96436], [-81.08342, 36.96446], [-81.08213, 36.96483], [-81.08044, 36.96531], [-81.07994, 36.96543], [-81.07992, 36.96543], [-81.07971, 36.96547], [-81.07954, 36.96551], [-81.07932, 36.96555], [-81.07894, 36.96559], [-81.07838, 36.96561], [-81.07813, 36.96561], [-81.07811, 36.96561], [-81.07768, 36.9656], [-81.07722, 36.96556], [-81.07696, 36.96553], [-81.07666, 36.96548], [-81.07624, 36.9654], [-81.07601, 36.96534], [-81.07555, 36.96521], [-81.07516, 36.96507], [-81.075, 36.96501], [-81.07453, 36.96482], [-81.07276, 36.96407], [-81.07232, 36.96388], [-81.07145, 36.96351], [-81.07137, 36.96347], [-81.07086, 36.96326], [-81.06893, 36.96244], [-81.06868, 36.96233], [-81.06651, 36.96141], [-81.06568, 36.96106], [-81.06514, 36.96084], [-81.06424, 36.96045], [-81.06219, 36.95957], [-81.0607, 36.95894], [-81.06013, 36.95869], [-81.05962, 36.95845], [-81.0594, 36.95833], [-81.05897, 36.95809], [-81.05856, 36.95784], [-81.05824, 36.95762], [-81.05812, 36.95754], [-81.05793, 36.9574], [-81.05769, 36.95721], [-81.05729, 36.9568], [-81.05714, 36.95668], [-81.05691, 36.95646], [-81.05672, 36.95627], [-81.05657, 36.9561], [-81.05655, 36.95608], [-81.05634, 36.95583], [-81.05612, 36.95555], [-81.056, 36.95539], [-81.05597, 36.95535], [-81.05582, 36.95514], [-81.05565, 36.95489], [-81.05537, 36.9544], [-81.05525, 36.95419], [-81.05511, 36.9539], [-81.05496, 36.95357], [-81.05488, 36.95337], [-81.05474, 36.95298], [-81.05465, 36.95269], [-81.05455, 36.9523], [-81.0545, 36.95209], [-81.05417, 36.95087], [-81.05409, 36.95057], [-81.05398, 36.95018], [-81.0539, 36.94995], [-81.05379, 36.94969], [-81.05366, 36.9494], [-81.05352, 36.94912], [-81.05345, 36.94902], [-81.0534, 36.94892], [-81.05338, 36.9489], [-81.05322, 36.94869], [-81.05317, 36.94863], [-81.05311, 36.94856], [-81.05297, 36.94839], [-81.05268, 36.94808], [-81.05252, 36.94793], [-81.05227, 36.94771], [-81.05204, 36.94753], [-81.05182, 36.94737], [-81.05144, 36.94713], [-81.05112, 36.94694], [-81.05077, 36.94677], [-81.05069, 36.94673], [-81.0504, 36.94661], [-81.05008, 36.94649], [-81.04974, 36.94638], [-81.04906, 36.94621], [-81.04804, 36.94604], [-81.04785, 36.94601], [-81.0466, 36.94581], [-81.04626, 36.94576], [-81.04559, 36.94569], [-81.04507, 36.94566], [-81.04442, 36.94563], [-81.04406, 36.94563], [-81.0436, 36.94564], [-81.04304, 36.94567], [-81.04267, 36.9457], [-81.04219, 36.94575], [-81.0418, 36.9458], [-81.04095, 36.94594], [-81.04049, 36.94602], [-81.03808, 36.94642], [-81.03741, 36.94651], [-81.03703, 36.94654], [-81.03668, 36.94655], [-81.03638, 36.94656], [-81.03596, 36.94656], [-81.03558, 36.94654], [-81.03522, 36.94651], [-81.03482, 36.94647], [-81.0343, 36.9464], [-81.03367, 36.94628], [-81.03235, 36.94595], [-81.03169, 36.94581], [-81.0294, 36.94527], [-81.02858, 36.94506], [-81.02828, 36.94496], [-81.02786, 36.94481], [-81.02751, 36.94466], [-81.02703, 36.94441], [-81.02682, 36.94429], [-81.02656, 36.94412], [-81.02616, 36.94381], [-81.02595, 36.94364], [-81.02572, 36.94342], [-81.02532, 36.94306], [-81.02443, 36.94222], [-81.02403, 36.94188], [-81.02379, 36.94171], [-81.02375, 36.94168], [-81.0236, 36.94158], [-81.02356, 36.94155], [-81.02328, 36.9414], [-81.02304, 36.94128], [-81.02276, 36.94116], [-81.02248, 36.94105], [-81.02225, 36.94098], [-81.02194, 36.9409], [-81.02173, 36.94085], [-81.02142, 36.9408], [-81.02116, 36.94077], [-81.02087, 36.94074], [-81.02058, 36.94073], [-81.02022, 36.94073], [-81.01546, 36.94083], [-81.01468, 36.94084], [-81.01449, 36.94084], [-81.01268, 36.94085], [-81.01083, 36.94085], [-81.00941, 36.94085], [-81.00883, 36.94084], [-81.0086, 36.94083], [-81.00793, 36.94076], [-81.00771, 36.94072], [-81.00726, 36.94062], [-81.00698, 36.94054], [-81.00663, 36.94044], [-81.00639, 36.94035], [-81.00609, 36.94023], [-81.00546, 36.93995], [-81.00323, 36.93892], [-81.00291, 36.93878], [-81.00246, 36.93861], [-81.00217, 36.93851], [-81.0018, 36.93839], [-81.00141, 36.93828], [-81.00107, 36.9382], [-81.00065, 36.93811], [-81.00036, 36.93806], [-80.99992, 36.93798], [-80.99689, 36.9375], [-80.99559, 36.9373], [-80.99503, 36.93723], [-80.99437, 36.93716], [-80.994, 36.93713], [-80.9933, 36.93709], [-80.99058, 36.93699], [-80.9898, 36.93696], [-80.98916, 36.93695], [-80.98841, 36.93695], [-80.98788, 36.93696], [-80.98736, 36.93699], [-80.98677, 36.93703], [-80.98608, 36.93709], [-80.98557, 36.93715], [-80.98478, 36.93727], [-80.9843, 36.93736], [-80.98357, 36.93751], [-80.98285, 36.93767], [-80.98239, 36.93779], [-80.98187, 36.93794], [-80.98124, 36.93814], [-80.98095, 36.93823], [-80.98071, 36.93832], [-80.97949, 36.93877], [-80.97898, 36.93896], [-80.97754, 36.93949], [-80.9739, 36.94085], [-80.97283, 36.94125], [-80.9727, 36.9413], [-80.9724, 36.94141], [-80.97178, 36.94161], [-80.97117, 36.94179], [-80.97066, 36.94193], [-80.97028, 36.94203], [-80.96988, 36.94212], [-80.96875, 36.94233], [-80.96153, 36.94356], [-80.9613, 36.9436], [-80.96085, 36.94367], [-80.95809, 36.94415], [-80.95675, 36.94437], [-80.9547, 36.94472], [-80.95393, 36.94485], [-80.95351, 36.94492], [-80.95339, 36.94494], [-80.95165, 36.94524], [-80.95122, 36.94531], [-80.95062, 36.94541], [-80.9499, 36.94553], [-80.9489, 36.9457], [-80.94867, 36.94574], [-80.94815, 36.94583], [-80.94805, 36.94585], [-80.94772, 36.9459], [-80.94733, 36.94597], [-80.9464, 36.94612], [-80.94537, 36.94626], [-80.94503, 36.94629], [-80.94471, 36.9463], [-80.94381, 36.94636], [-80.94313, 36.94638], [-80.94258, 36.94642], [-80.94229, 36.94643], [-80.94115, 36.94648], [-80.94078, 36.94649], [-80.94014, 36.94652], [-80.93963, 36.94655], [-80.93877, 36.94663], [-80.93798, 36.94674], [-80.93729, 36.94685], [-80.93302, 36.94751], [-80.92965, 36.94802], [-80.92902, 36.94812], [-80.92854, 36.94821], [-80.92824, 36.94825], [-80.92784, 36.9483], [-80.92725, 36.94837], [-80.92692, 36.9484], [-80.92614, 36.94845], [-80.92575, 36.94846], [-80.92476, 36.94845], [-80.92393, 36.94842], [-80.92324, 36.94837], [-80.9228, 36.94833], [-80.92168, 36.9482], [-80.92125, 36.94814], [-80.92074, 36.94805], [-80.92032, 36.94797], [-80.9197, 36.94784], [-80.91965, 36.94783], [-80.91912, 36.9477], [-80.9153, 36.94679], [-80.91425, 36.94655], [-80.91372, 36.94643], [-80.9133, 36.94635], [-80.91262, 36.94623], [-80.91203, 36.94615], [-80.9117, 36.94611], [-80.91115, 36.94605], [-80.91038, 36.94599], [-80.90952, 36.94595], [-80.90875, 36.94594], [-80.90789, 36.94596], [-80.90734, 36.94598], [-80.90625, 36.94607], [-80.90164, 36.94647], [-80.90111, 36.94652], [-80.90053, 36.94658], [-80.89974, 36.94669], [-80.89961, 36.94671], [-80.89852, 36.94691], [-80.89675, 36.94726], [-80.8962, 36.94737], [-80.89363, 36.94788], [-80.89267, 36.94806], [-80.89144, 36.94831], [-80.89142, 36.94831], [-80.88934, 36.94872], [-80.88446, 36.94969], [-80.884, 36.94978], [-80.88342, 36.94989], [-80.88168, 36.95023], [-80.88072, 36.95042], [-80.87798, 36.95096], [-80.87305, 36.95193], [-80.87246, 36.95205], [-80.8721, 36.95212], [-80.87115, 36.95231], [-80.86937, 36.95266], [-80.86864, 36.95282], [-80.86796, 36.95299], [-80.8673, 36.95317], [-80.86692, 36.95329], [-80.8663, 36.9535], [-80.86568, 36.95372], [-80.8652, 36.95391], [-80.8648, 36.95408], [-80.86422, 36.95434], [-80.86375, 36.95457], [-80.86329, 36.9548], [-80.86314, 36.95488], [-80.86262, 36.95518], [-80.86242, 36.95529], [-80.86196, 36.95558], [-80.86142, 36.95593], [-80.86106, 36.95619], [-80.86081, 36.95637], [-80.86032, 36.95674], [-80.86003, 36.95697], [-80.8596, 36.95734], [-80.85929, 36.95762], [-80.85902, 36.95788], [-80.859, 36.9579], [-80.85867, 36.95823], [-80.8574, 36.95957], [-80.85685, 36.96016], [-80.85509, 36.96203], [-80.85429, 36.96289], [-80.85412, 36.96307], [-80.85353, 36.9637], [-80.85234, 36.96497], [-80.85096, 36.96643], [-80.85044, 36.96699], [-80.84915, 36.96837], [-80.84592, 36.9718], [-80.84568, 36.97206], [-80.84534, 36.97241], [-80.84499, 36.97275], [-80.8449, 36.97283], [-80.84445, 36.97324], [-80.84416, 36.97348], [-80.84385, 36.97373], [-80.84358, 36.97395], [-80.84328, 36.97417], [-80.84266, 36.97461], [-80.84234, 36.97481], [-80.84202, 36.97502], [-80.84168, 36.97522], [-80.84136, 36.97541], [-80.8408, 36.97571], [-80.84064, 36.9758], [-80.83728, 36.97759], [-80.83644, 36.97804], [-80.83501, 36.97882], [-80.83481, 36.97892], [-80.83412, 36.97929], [-80.83336, 36.97969], [-80.82725, 36.98295], [-80.82631, 36.98345], [-80.82154, 36.986], [-80.82065, 36.98648], [-80.81856, 36.98759], [-80.81793, 36.9879], [-80.81741, 36.98814], [-80.81672, 36.98843], [-80.81621, 36.98864], [-80.81571, 36.98882], [-80.81522, 36.98899], [-80.8145, 36.9892], [-80.81397, 36.98935], [-80.81321, 36.98954], [-80.81277, 36.98963], [-80.812, 36.98978], [-80.81159, 36.98984], [-80.8104, 36.99001], [-80.80884, 36.99022], [-80.80762, 36.99039], [-80.80725, 36.99044], [-80.80206, 36.99114], [-80.80067, 36.99133], [-80.80014, 36.99142], [-80.79962, 36.99152], [-80.79929, 36.99159], [-80.79866, 36.99173], [-80.79813, 36.99187], [-80.79761, 36.99202], [-80.79756, 36.99204], [-80.79625, 36.99245], [-80.79318, 36.99344], [-80.79236, 36.9937], [-80.78921, 36.99471], [-80.78584, 36.99581], [-80.78553, 36.99592], [-80.7784, 36.99822], [-80.77752, 36.9985], [-80.77188, 37.00032], [-80.77126, 37.00051], [-80.77058, 37.00069], [-80.77009, 37.00082], [-80.76985, 37.00088], [-80.7616, 37.00285], [-80.76113, 37.00297], [-80.76073, 37.00308], [-80.76066, 37.0031], [-80.75993, 37.00333], [-80.75932, 37.00353], [-80.75898, 37.00365], [-80.75851, 37.00383], [-80.75806, 37.00402], [-80.75734, 37.00435], [-80.75686, 37.00458], [-80.75641, 37.00481], [-80.75627, 37.00489], [-80.75582, 37.00514], [-80.75471, 37.00576], [-80.75213, 37.00721], [-80.74913, 37.0089], [-80.74831, 37.00935], [-80.74779, 37.00962], [-80.74728, 37.00987], [-80.74677, 37.01011], [-80.74617, 37.01036], [-80.7457, 37.01055], [-80.74521, 37.01072], [-80.74121, 37.01212], [-80.74067, 37.01231], [-80.7403, 37.01247], [-80.73993, 37.01263], [-80.73958, 37.0128], [-80.73932, 37.01295], [-80.73893, 37.01317], [-80.73859, 37.0134], [-80.73817, 37.0137], [-80.73789, 37.01391], [-80.73765, 37.01412], [-80.73727, 37.01447], [-80.73708, 37.01466], [-80.7369, 37.01486], [-80.73651, 37.01532], [-80.73257, 37.02006], [-80.73228, 37.02041], [-80.73193, 37.02086], [-80.73166, 37.02123], [-80.7314, 37.02162], [-80.73112, 37.02206], [-80.73074, 37.02274], [-80.73066, 37.02288], [-80.73056, 37.02307], [-80.73043, 37.02336], [-80.73021, 37.02384], [-80.72998, 37.0244], [-80.72983, 37.02482], [-80.72968, 37.0253], [-80.72956, 37.02575], [-80.72939, 37.02641], [-80.72902, 37.02789], [-80.72878, 37.02883], [-80.72863, 37.02942], [-80.72846, 37.03014], [-80.72835, 37.03053], [-80.72809, 37.03155], [-80.72797, 37.03198], [-80.72782, 37.03243], [-80.72774, 37.03264], [-80.72753, 37.03315], [-80.72733, 37.03357], [-80.72699, 37.0342], [-80.72678, 37.03455], [-80.72659, 37.03484], [-80.72634, 37.03521], [-80.72607, 37.03557], [-80.72572, 37.036], [-80.72539, 37.03637], [-80.72514, 37.03664], [-80.72469, 37.03708], [-80.72446, 37.03729], [-80.72349, 37.03812], [-80.72097, 37.04025], [-80.71939, 37.04161], [-80.71886, 37.04209], [-80.71843, 37.0425], [-80.71808, 37.04287], [-80.71779, 37.04319], [-80.71749, 37.04353], [-80.7172, 37.04389], [-80.71688, 37.04431], [-80.71651, 37.04483], [-80.71611, 37.04542], [-80.71581, 37.04589], [-80.71557, 37.04637], [-80.71529, 37.04706], [-80.715, 37.04776], [-80.71475, 37.04845], [-80.71444, 37.0493], [-80.71397, 37.05055], [-80.71381, 37.05096], [-80.71344, 37.05181], [-80.71326, 37.05219], [-80.713, 37.05273], [-80.71286, 37.05302], [-80.71254, 37.05363], [-80.7122, 37.05423], [-80.71098, 37.05636], [-80.70962, 37.05872], [-80.70912, 37.05962], [-80.70892, 37.06003], [-80.70873, 37.06043], [-80.70834, 37.06127], [-80.70811, 37.06182], [-80.7079, 37.06236], [-80.70769, 37.06291], [-80.70724, 37.06423], [-80.70682, 37.06545], [-80.70664, 37.06599], [-80.70579, 37.0685], [-80.70559, 37.06906], [-80.70551, 37.06921], [-80.70535, 37.06954], [-80.70518, 37.06988], [-80.70506, 37.07009], [-80.7049, 37.07041], [-80.7047, 37.07077], [-80.70455, 37.071], [-80.70438, 37.07123], [-80.70415, 37.07153], [-80.70334, 37.07244], [-80.70281, 37.07293], [-80.70256, 37.07316], [-80.7023, 37.07336], [-80.70212, 37.0735], [-80.70182, 37.07372], [-80.7013, 37.07408], [-80.70098, 37.07428], [-80.70063, 37.07448], [-80.7003, 37.07466], [-80.70025, 37.07468], [-80.69967, 37.07498], [-80.69926, 37.07519], [-80.69799, 37.07583], [-80.6954, 37.07715], [-80.69456, 37.07757], [-80.69413, 37.07778], [-80.69375, 37.07795], [-80.69308, 37.07824], [-80.6923, 37.07853], [-80.69219, 37.07857], [-80.69127, 37.07889], [-80.69078, 37.07902], [-80.69023, 37.07917], [-80.6898, 37.07928], [-80.68937, 37.07938], [-80.68894, 37.07947], [-80.68853, 37.07955], [-80.68815, 37.07961], [-80.6875, 37.07971], [-80.68733, 37.07973], [-80.68708, 37.07976], [-80.68659, 37.07982], [-80.68555, 37.07989], [-80.68465, 37.07993], [-80.68403, 37.07992], [-80.68269, 37.07989], [-80.68236, 37.07987], [-80.68017, 37.07976], [-80.67752, 37.07965], [-80.66901, 37.07927], [-80.6682, 37.07925], [-80.66747, 37.07926], [-80.66675, 37.07929], [-80.66598, 37.07935], [-80.66514, 37.07944], [-80.66471, 37.0795], [-80.66426, 37.07957], [-80.6637, 37.07966], [-80.66329, 37.07975], [-80.66224, 37.07997], [-80.66123, 37.0802], [-80.66087, 37.08029], [-80.65811, 37.0809], [-80.65699, 37.08116], [-80.65575, 37.08151], [-80.65441, 37.08196], [-80.65333, 37.08238], [-80.65289, 37.08263], [-80.65184, 37.08317], [-80.65067, 37.08379], [-80.64854, 37.08491], [-80.64761, 37.08535], [-80.64655, 37.08579], [-80.64612, 37.08592], [-80.6459, 37.08602], [-80.64501, 37.08632], [-80.64422, 37.08658], [-80.64253, 37.08705], [-80.64127, 37.08731], [-80.63968, 37.08758], [-80.63843, 37.08773], [-80.63735, 37.08781], [-80.63675, 37.08784], [-80.63603, 37.08787], [-80.63578, 37.08787], [-80.63499, 37.08788], [-80.63379, 37.08785], [-80.63249, 37.08782], [-80.63146, 37.08778], [-80.63089, 37.08773], [-80.62973, 37.08763], [-80.6285, 37.08747], [-80.62713, 37.08723], [-80.62558, 37.08691], [-80.6255, 37.08689], [-80.62479, 37.08677], [-80.62402, 37.08667], [-80.62298, 37.08657], [-80.62169, 37.08649], [-80.62022, 37.0865], [-80.61859, 37.08659], [-80.61747, 37.08665], [-80.61593, 37.08674], [-80.60899, 37.08712], [-80.60842, 37.08715], [-80.60786, 37.08717], [-80.60731, 37.08718], [-80.60654, 37.08718], [-80.60597, 37.08718], [-80.6054, 37.08717], [-80.60462, 37.08715], [-80.6035, 37.08709], [-80.60269, 37.08703], [-80.60198, 37.08697], [-80.60036, 37.0868], [-80.5976, 37.08648], [-80.59436, 37.0861], [-80.59358, 37.08602], [-80.59331, 37.08599], [-80.5931, 37.08598], [-80.59242, 37.08595], [-80.5918, 37.08593], [-80.59126, 37.08594], [-80.59072, 37.08596], [-80.59003, 37.08601], [-80.58961, 37.08605], [-80.58907, 37.08612], [-80.58877, 37.08617], [-80.58836, 37.08623], [-80.58797, 37.08631], [-80.58745, 37.08642], [-80.58691, 37.08655], [-80.5864, 37.08669], [-80.586, 37.08681], [-80.58537, 37.08703], [-80.5851, 37.08713], [-80.5847, 37.08728], [-80.58437, 37.08743], [-80.58358, 37.08777], [-80.58267, 37.0881], [-80.57876, 37.0898], [-80.57784, 37.09019], [-80.57539, 37.09125], [-80.57313, 37.09216], [-80.57259, 37.09235], [-80.57209, 37.09252], [-80.57175, 37.09265], [-80.57158, 37.09272], [-80.57152, 37.09274], [-80.57121, 37.09287], [-80.56916, 37.09365], [-80.56868, 37.09383], [-80.56831, 37.09398], [-80.56522, 37.09515], [-80.56514, 37.09518], [-80.565, 37.09523], [-80.56458, 37.09539], [-80.56385, 37.09569], [-80.5632, 37.09597], [-80.56237, 37.09635], [-80.56155, 37.09676], [-80.56121, 37.09694], [-80.55748, 37.09898], [-80.55715, 37.09915], [-80.5568, 37.09932], [-80.55677, 37.09934], [-80.55669, 37.09937], [-80.55643, 37.09948], [-80.55626, 37.09955], [-80.55605, 37.09964], [-80.55564, 37.09979], [-80.55504, 37.09998], [-80.55448, 37.10009], [-80.55361, 37.10026], [-80.55299, 37.10032], [-80.55219, 37.10036], [-80.55159, 37.10036], [-80.55101, 37.10032], [-80.54982, 37.10022], [-80.54819, 37.10006], [-80.5457, 37.09985], [-80.54444, 37.09974], [-80.54308, 37.09956], [-80.54181, 37.0994], [-80.53884, 37.0989], [-80.53712, 37.09859], [-80.53549, 37.09841], [-80.53462, 37.09835], [-80.53364, 37.09832], [-80.5325, 37.09835], [-80.52904, 37.09852], [-80.52748, 37.09856], [-80.52617, 37.09857], [-80.52473, 37.09855], [-80.52286, 37.09848], [-80.52138, 37.09838], [-80.51974, 37.09825], [-80.5188, 37.09815], [-80.51583, 37.09779], [-80.51447, 37.09758], [-80.51297, 37.09732], [-80.51114, 37.09695], [-80.51071, 37.09687], [-80.51043, 37.09681], [-80.50426, 37.09538], [-80.50282, 37.09504], [-80.50131, 37.09469], [-80.49958, 37.0944], [-80.49883, 37.0943], [-80.49768, 37.09421], [-80.49703, 37.09416], [-80.49634, 37.09411], [-80.49377, 37.0941], [-80.49198, 37.09414], [-80.48902, 37.09421], [-80.4854, 37.09429], [-80.483, 37.09435], [-80.48169, 37.09441], [-80.48087, 37.09449], [-80.47979, 37.09467], [-80.4793, 37.09479], [-80.47845, 37.09501], [-80.47772, 37.09527], [-80.47685, 37.0956], [-80.47618, 37.09593], [-80.47567, 37.09619], [-80.47335, 37.09744], [-80.46821, 37.10028], [-80.46643, 37.10124], [-80.46503, 37.10204], [-80.46321, 37.10305], [-80.4618, 37.10378], [-80.46004, 37.10464], [-80.45659, 37.10611], [-80.45262, 37.10791], [-80.44726, 37.1103], [-80.44277, 37.1123], [-80.44039, 37.11333], [-80.43968, 37.11362], [-80.43893, 37.11388], [-80.43736, 37.11439], [-80.43644, 37.11461], [-80.4357, 37.11476], [-80.43491, 37.1149], [-80.43393, 37.11502], [-80.42522, 37.11571], [-80.42314, 37.1159], [-80.42234, 37.11596], [-80.41881, 37.11627], [-80.41779, 37.11635], [-80.41693, 37.11648], [-80.4159, 37.11669], [-80.41494, 37.11691], [-80.41393, 37.1172], [-80.40792, 37.1193], [-80.39916, 37.12244], [-80.3961, 37.12353], [-80.39516, 37.12383], [-80.39449, 37.12401], [-80.39379, 37.12416], [-80.39307, 37.12427], [-80.39181, 37.12432], [-80.38622, 37.1244], [-80.3853, 37.12444], [-80.38459, 37.1245], [-80.38348, 37.12461], [-80.38256, 37.12475], [-80.3817, 37.12491], [-80.3811, 37.12506], [-80.38005, 37.12532], [-80.3792, 37.12558], [-80.37841, 37.12587], [-80.37532, 37.12706], [-80.37233, 37.12819], [-80.37049, 37.1289], [-80.3698, 37.12918], [-80.36782, 37.12993], [-80.36221, 37.1325], [-80.36022, 37.1334], [-80.35951, 37.13379], [-80.35891, 37.13417], [-80.35808, 37.13484], [-80.35752, 37.13552], [-80.35692, 37.13642], [-80.35642, 37.13722], [-80.3561, 37.13776], [-80.35577, 37.13824], [-80.35508, 37.13938], [-80.3542, 37.14047], [-80.35368, 37.14096], [-80.35315, 37.14139], [-80.35245, 37.14186], [-80.35183, 37.14219], [-80.35167, 37.14228], [-80.35074, 37.14269], [-80.3496, 37.14315], [-80.34861, 37.14354], [-80.34785, 37.14385], [-80.34714, 37.14414], [-80.34264, 37.14593], [-80.33617, 37.1485], [-80.3351, 37.14895], [-80.333, 37.14988], [-80.33074, 37.15102], [-80.32736, 37.1529], [-80.32666, 37.15331], [-80.3261, 37.15375], [-80.32542, 37.15447], [-80.32495, 37.15507], [-80.32458, 37.15564], [-80.32412, 37.15652], [-80.32362, 37.15748], [-80.32331, 37.15803], [-80.32176, 37.16111], [-80.32052, 37.1633], [-80.31994, 37.16404], [-80.3193, 37.16473], [-80.31868, 37.16532], [-80.31752, 37.16621], [-80.31669, 37.16671], [-80.31457, 37.16765], [-80.31366, 37.16799], [-80.30519, 37.17101], [-80.30443, 37.17137], [-80.3039, 37.17166], [-80.30306, 37.17222], [-80.30243, 37.17269], [-80.3011, 37.17378], [-80.30012, 37.17487], [-80.29694, 37.1801], [-80.2964, 37.18076], [-80.29597, 37.18123], [-80.29522, 37.18182], [-80.29446, 37.18223], [-80.29389, 37.18248], [-80.29328, 37.18271], [-80.29248, 37.18298], [-80.29116, 37.18334], [-80.28827, 37.18414], [-80.28599, 37.1848], [-80.28464, 37.18531], [-80.2834, 37.18598], [-80.28272, 37.18641], [-80.28018, 37.18816], [-80.27871, 37.18917], [-80.27762, 37.18987], [-80.27373, 37.1926], [-80.27297, 37.19312], [-80.27153, 37.19406], [-80.26995, 37.19522], [-80.26953, 37.19562], [-80.26929, 37.19593], [-80.26895, 37.1963], [-80.2687, 37.19669], [-80.26842, 37.19715], [-80.2682, 37.19763], [-80.26804, 37.19807], [-80.26779, 37.19889], [-80.26756, 37.19965], [-80.26723, 37.20057], [-80.26701, 37.20114], [-80.26675, 37.20201], [-80.26639, 37.2031], [-80.26618, 37.20375], [-80.26593, 37.20429], [-80.26569, 37.20473], [-80.26533, 37.20521], [-80.26481, 37.20583], [-80.26411, 37.20637], [-80.26321, 37.20696], [-80.26237, 37.20741], [-80.26166, 37.20786], [-80.26101, 37.20835], [-80.26046, 37.20892], [-80.26007, 37.20955], [-80.25974, 37.21014], [-80.2596, 37.21067], [-80.25942, 37.21241], [-80.25927, 37.21514], [-80.25919, 37.21566], [-80.259, 37.21635], [-80.25862, 37.21731], [-80.25817, 37.21829], [-80.25554, 37.22318], [-80.2552, 37.22374], [-80.25472, 37.22429], [-80.25391, 37.22491], [-80.2529, 37.22552], [-80.25195, 37.22595], [-80.25122, 37.22617], [-80.25047, 37.22634], [-80.24952, 37.22643], [-80.24843, 37.22652], [-80.24719, 37.2267], [-80.24627, 37.2269], [-80.24521, 37.22721], [-80.2446, 37.22743], [-80.24335, 37.22794], [-80.24265, 37.22832], [-80.24192, 37.22872], [-80.24053, 37.22973], [-80.23971, 37.23047], [-80.23909, 37.23124], [-80.2388, 37.23157], [-80.23814, 37.23236], [-80.23719, 37.23344], [-80.2362, 37.23466], [-80.23593, 37.23502], [-80.23562, 37.23536], [-80.23512, 37.23588], [-80.23397, 37.23676], [-80.23275, 37.23751], [-80.23137, 37.23811], [-80.23029, 37.23848], [-80.22926, 37.23874], [-80.2203, 37.24072], [-80.21477, 37.24199], [-80.21323, 37.24229], [-80.21198, 37.24282], [-80.21144, 37.24307], [-80.21087, 37.24343], [-80.20987, 37.24431], [-80.20832, 37.24595], [-80.20719, 37.24686], [-80.20604, 37.24759], [-80.20469, 37.24828], [-80.20415, 37.24852], [-80.20382, 37.24864], [-80.20335, 37.2488], [-80.20282, 37.24896], [-80.2025, 37.24905], [-80.20174, 37.24923], [-80.20128, 37.24932], [-80.20083, 37.2494], [-80.20027, 37.24947], [-80.19976, 37.24952], [-80.1993, 37.24956], [-80.19849, 37.24959], [-80.19341, 37.2498], [-80.18903, 37.24997], [-80.18863, 37.24999], [-80.18822, 37.25003], [-80.18766, 37.25009], [-80.18716, 37.25016], [-80.18672, 37.25024], [-80.18602, 37.25038], [-80.18562, 37.25049], [-80.18513, 37.25062], [-80.18469, 37.25076], [-80.18427, 37.25091], [-80.18383, 37.25108], [-80.18338, 37.25127], [-80.18304, 37.25143], [-80.1827, 37.25159], [-80.18229, 37.25181], [-80.18198, 37.25198], [-80.18147, 37.2523], [-80.18128, 37.25243], [-80.18053, 37.25294], [-80.17893, 37.25404], [-80.17757, 37.25497], [-80.17742, 37.25507], [-80.17717, 37.25524], [-80.17678, 37.25552], [-80.17608, 37.25597], [-80.17559, 37.25634], [-80.17447, 37.25711], [-80.17377, 37.25756], [-80.17338, 37.25781], [-80.17281, 37.25814], [-80.17231, 37.25843], [-80.17188, 37.25866], [-80.17174, 37.25873], [-80.17126, 37.25897], [-80.17071, 37.25924], [-80.16964, 37.25972], [-80.16914, 37.25993], [-80.16852, 37.26017], [-80.16837, 37.26022], [-80.16813, 37.26031], [-80.16778, 37.26044], [-80.16624, 37.26103], [-80.16574, 37.26122], [-80.16521, 37.26143], [-80.16453, 37.26168], [-80.16363, 37.26203], [-80.16261, 37.26242], [-80.16234, 37.26253], [-80.16015, 37.26336], [-80.15726, 37.26447], [-80.1556, 37.2651], [-80.15531, 37.26521], [-80.1496, 37.2674], [-80.14921, 37.26754], [-80.14858, 37.26779], [-80.14754, 37.26818], [-80.1471, 37.26835], [-80.14676, 37.26848], [-80.14631, 37.26867], [-80.146, 37.26881], [-80.14586, 37.26887], [-80.14552, 37.26904], [-80.14513, 37.26922], [-80.14482, 37.2694], [-80.14444, 37.26963], [-80.14403, 37.2699], [-80.14361, 37.27023], [-80.14331, 37.27046], [-80.1431, 37.27063], [-80.14294, 37.27077], [-80.14273, 37.27095], [-80.14238, 37.27128], [-80.14205, 37.27162], [-80.14174, 37.27197], [-80.14136, 37.27242], [-80.14011, 37.27393], [-80.13981, 37.27429], [-80.13912, 37.27521], [-80.13877, 37.27561], [-80.13855, 37.27585], [-80.13829, 37.27611], [-80.13801, 37.27636], [-80.13772, 37.2766], [-80.13742, 37.27683], [-80.13711, 37.27705], [-80.13668, 37.27732], [-80.13567, 37.27793], [-80.13436, 37.27872], [-80.13303, 37.27953], [-80.13259, 37.27979], [-80.13241, 37.2799], [-80.1307, 37.28093], [-80.12788, 37.28263], [-80.12767, 37.28275], [-80.12741, 37.28292], [-80.12596, 37.28379], [-80.12507, 37.28433], [-80.12412, 37.2849], [-80.12307, 37.28553], [-80.12123, 37.28664], [-80.12064, 37.28696], [-80.12033, 37.28713], [-80.12015, 37.28723], [-80.11992, 37.28735], [-80.11961, 37.28749], [-80.11927, 37.28765], [-80.11916, 37.2877], [-80.11856, 37.28796], [-80.11805, 37.28816], [-80.11753, 37.28835], [-80.1169, 37.28856], [-80.11652, 37.28868], [-80.11562, 37.28893], [-80.11291, 37.28969], [-80.1115, 37.29008], [-80.11045, 37.29037], [-80.11011, 37.29046], [-80.10626, 37.29154], [-80.10612, 37.29158], [-80.1046, 37.292], [-80.10386, 37.29221], [-80.10141, 37.29289], [-80.10127, 37.29293], [-80.09982, 37.29332], [-80.09918, 37.2935], [-80.0981, 37.29381], [-80.09667, 37.2942], [-80.09524, 37.29458], [-80.09293, 37.29516], [-80.09154, 37.29551], [-80.09113, 37.29559], [-80.09064, 37.29572], [-80.08999, 37.2959], [-80.08876, 37.29621], [-80.08857, 37.29625], [-80.08661, 37.29675], [-80.08587, 37.29695], [-80.08518, 37.29716], [-80.08452, 37.29739], [-80.08422, 37.2975], [-80.0838, 37.29767], [-80.08316, 37.29794], [-80.08295, 37.29803], [-80.08228, 37.29834], [-80.08192, 37.29853], [-80.08161, 37.29869], [-80.08107, 37.29899], [-80.08054, 37.29931], [-80.08022, 37.29952], [-80.07887, 37.30041], [-80.07852, 37.30064], [-80.07759, 37.30126], [-80.07737, 37.3014], [-80.07631, 37.3021], [-80.07416, 37.30352], [-80.07343, 37.30401], [-80.07294, 37.30433], [-80.07253, 37.30461], [-80.06882, 37.30706], [-80.0675, 37.30793], [-80.06681, 37.30838], [-80.06532, 37.30928], [-80.06433, 37.30988], [-80.06363, 37.31025], [-80.06273, 37.31075], [-80.06201, 37.31112], [-80.06125, 37.3115], [-80.06079, 37.31173], [-80.05921, 37.31247], [-80.05897, 37.31259], [-80.05815, 37.31297], [-80.05466, 37.31462], [-80.05449, 37.3147], [-80.05414, 37.31487], [-80.05396, 37.31496], [-80.0531, 37.31536], [-80.05263, 37.31558], [-80.05211, 37.31583], [-80.05174, 37.31601], [-80.05132, 37.3162], [-80.05112, 37.31629], [-80.05072, 37.31647], [-80.05043, 37.31661], [-80.04938, 37.31708], [-80.04895, 37.31725], [-80.04841, 37.31748], [-80.04773, 37.31773], [-80.04728, 37.31789], [-80.04683, 37.31804], [-80.04613, 37.31825], [-80.04578, 37.31835], [-80.04501, 37.31855], [-80.04424, 37.31874], [-80.04378, 37.31884], [-80.04305, 37.31898], [-80.04125, 37.3193], [-80.04071, 37.3194], [-80.04037, 37.31948], [-80.04009, 37.31955], [-80.03955, 37.31971], [-80.03914, 37.31986], [-80.03882, 37.31998], [-80.03873, 37.32002], [-80.03854, 37.32011], [-80.03807, 37.32033], [-80.03793, 37.3204], [-80.03773, 37.32049], [-80.03764, 37.32055], [-80.03741, 37.32068], [-80.03702, 37.32093], [-80.0367, 37.32115], [-80.03647, 37.32132], [-80.03614, 37.32158], [-80.03593, 37.32177], [-80.03573, 37.32195], [-80.03549, 37.32219], [-80.03541, 37.32227], [-80.03505, 37.32266], [-80.03425, 37.32357], [-80.0341, 37.32373], [-80.03339, 37.32451], [-80.03309, 37.3248], [-80.03277, 37.32513], [-80.03248, 37.32544], [-80.03194, 37.32595], [-80.03154, 37.32632], [-80.03124, 37.32659], [-80.03084, 37.32691], [-80.03043, 37.32724], [-80.02998, 37.32761], [-80.02966, 37.3279], [-80.02905, 37.32836], [-80.02827, 37.32892], [-80.02783, 37.32923], [-80.02743, 37.3295], [-80.02662, 37.33002], [-80.02585, 37.3305], [-80.02489, 37.33104], [-80.02445, 37.33129], [-80.02367, 37.33169], [-80.023, 37.33202], [-80.02251, 37.33226], [-80.02175, 37.33261], [-80.02106, 37.33291], [-80.02033, 37.33321], [-80.0195, 37.33354], [-80.01911, 37.33368], [-80.01819, 37.334], [-80.01506, 37.33506], [-80.01391, 37.33545], [-80.01282, 37.33582], [-80.00827, 37.33736], [-80.00736, 37.33767], [-80.00669, 37.33789], [-80.00627, 37.33803], [-80.00618, 37.33806], [-80.00598, 37.33811], [-80.00436, 37.33864], [-80.00336, 37.33895], [-80.00249, 37.33919], [-80.00226, 37.33926], [-80.00206, 37.33931], [-80.0017, 37.33943], [-80.00148, 37.3395], [-80.0006, 37.33973], [-79.99955, 37.34001], [-79.99898, 37.34017], [-79.99856, 37.34031], [-79.99816, 37.34046], [-79.99785, 37.34058], [-79.99762, 37.34068], [-79.99724, 37.34086], [-79.99681, 37.34109], [-79.99647, 37.34127], [-79.99627, 37.34139], [-79.99605, 37.34152], [-79.99561, 37.34182], [-79.99528, 37.34206], [-79.99497, 37.34231], [-79.9946, 37.34263], [-79.99386, 37.34332], [-79.99372, 37.34343], [-79.99361, 37.34351], [-79.99291, 37.34415], [-79.99224, 37.34474], [-79.99165, 37.34524], [-79.99138, 37.34547], [-79.99109, 37.3457], [-79.99085, 37.34589], [-79.99054, 37.34615], [-79.99005, 37.34653], [-79.98937, 37.34703], [-79.9888, 37.34744], [-79.98821, 37.34786], [-79.98525, 37.34997], [-79.98457, 37.35046], [-79.9835, 37.35121], [-79.98329, 37.35136], [-79.98122, 37.35284], [-79.981, 37.353], [-79.98063, 37.35326], [-79.98048, 37.35337], [-79.98015, 37.3536], [-79.97939, 37.35415], [-79.97565, 37.35682], [-79.97486, 37.35739], [-79.97446, 37.35767], [-79.97426, 37.35781], [-79.97375, 37.35814], [-79.97343, 37.35833], [-79.97312, 37.35851], [-79.9729, 37.35864], [-79.97254, 37.35882], [-79.9722, 37.359], [-79.9717, 37.35922], [-79.97121, 37.35943], [-79.97071, 37.35963], [-79.97019, 37.35981], [-79.9698, 37.35993], [-79.96941, 37.36005], [-79.96875, 37.36023], [-79.96834, 37.36032], [-79.96793, 37.36041], [-79.9674, 37.36051], [-79.96684, 37.3606], [-79.96642, 37.36065], [-79.96601, 37.3607], [-79.96586, 37.36071], [-79.96544, 37.36075], [-79.96516, 37.36076], [-79.96474, 37.36078], [-79.96376, 37.36082], [-79.9628, 37.36085], [-79.96224, 37.36087], [-79.96197, 37.36087], [-79.96157, 37.36089], [-79.96129, 37.3609], [-79.96074, 37.36091], [-79.95996, 37.36094], [-79.95858, 37.36098], [-79.95733, 37.36103], [-79.95662, 37.36107], [-79.95607, 37.36112], [-79.95536, 37.36118], [-79.95467, 37.36125], [-79.95399, 37.36132], [-79.95316, 37.36143], [-79.95261, 37.36152], [-79.95219, 37.36158], [-79.9515, 37.3617], [-79.95138, 37.36171], [-79.95068, 37.36184], [-79.95, 37.36198], [-79.94933, 37.36212], [-79.94826, 37.36236], [-79.94739, 37.36257], [-79.94598, 37.36291], [-79.94512, 37.36312], [-79.94186, 37.36389], [-79.94124, 37.36404], [-79.94017, 37.36429], [-79.93975, 37.36438], [-79.93897, 37.36455], [-79.93888, 37.36457], [-79.9384, 37.36466], [-79.93763, 37.36478], [-79.9369, 37.36489], [-79.93641, 37.36495], [-79.93564, 37.36503], [-79.9349, 37.3651], [-79.93121, 37.36538], [-79.93023, 37.36546], [-79.92958, 37.36551], [-79.92892, 37.36556], [-79.92863, 37.36559], [-79.92822, 37.36564], [-79.92777, 37.36571], [-79.92694, 37.36586], [-79.92642, 37.36597], [-79.92602, 37.36607], [-79.92545, 37.36623], [-79.92495, 37.36638], [-79.92466, 37.36648], [-79.92434, 37.36659], [-79.9239, 37.36675], [-79.92355, 37.3669], [-79.92353, 37.36691], [-79.92318, 37.36706], [-79.92269, 37.36728], [-79.92226, 37.3675], [-79.92183, 37.36773], [-79.92147, 37.36794], [-79.92107, 37.36818], [-79.92074, 37.36839], [-79.92066, 37.36844], [-79.92044, 37.3686], [-79.91915, 37.36951], [-79.9158, 37.37189], [-79.91548, 37.37211], [-79.91485, 37.37256], [-79.91455, 37.37278], [-79.91394, 37.37325], [-79.91325, 37.37381], [-79.91269, 37.37431], [-79.91242, 37.37456], [-79.91215, 37.37481], [-79.91188, 37.37508], [-79.91162, 37.37534], [-79.91129, 37.3757], [-79.91103, 37.37598], [-79.91056, 37.37652], [-79.91018, 37.37699], [-79.90999, 37.37725], [-79.90967, 37.37766], [-79.90959, 37.37779], [-79.90948, 37.37792], [-79.90926, 37.37826], [-79.90924, 37.37828], [-79.90912, 37.37847], [-79.90892, 37.3788], [-79.9086, 37.37931], [-79.90843, 37.37962], [-79.90826, 37.37993], [-79.9081, 37.38025], [-79.90794, 37.38056], [-79.9077, 37.38108], [-79.90609, 37.38482], [-79.90583, 37.38544], [-79.90556, 37.38606], [-79.90505, 37.38722], [-79.90474, 37.38799], [-79.90446, 37.38855], [-79.90435, 37.38878], [-79.90391, 37.38969], [-79.90365, 37.3902], [-79.90339, 37.39072], [-79.90297, 37.39148], [-79.90274, 37.39189], [-79.90239, 37.39251], [-79.90198, 37.39323], [-79.90166, 37.39378], [-79.89982, 37.3969], [-79.89863, 37.39891], [-79.89722, 37.40132], [-79.89655, 37.40244], [-79.89637, 37.40275], [-79.89592, 37.40345], [-79.89565, 37.40384], [-79.89529, 37.40434], [-79.89486, 37.40493], [-79.89441, 37.40553], [-79.89393, 37.40612], [-79.8934, 37.40676], [-79.89323, 37.40697], [-79.89178, 37.40872], [-79.88866, 37.41247], [-79.88707, 37.41437], [-79.88519, 37.41664], [-79.88426, 37.41777], [-79.88342, 37.41883], [-79.88062, 37.42239], [-79.88015, 37.42297], [-79.87897, 37.42448], [-79.87808, 37.42561], [-79.87694, 37.42705], [-79.87317, 37.43182], [-79.87294, 37.43212], [-79.87271, 37.43241], [-79.87165, 37.43376], [-79.87125, 37.43425], [-79.87085, 37.43477], [-79.87056, 37.43513], [-79.87023, 37.43555], [-79.87001, 37.43584], [-79.86954, 37.43642], [-79.86931, 37.43672], [-79.86746, 37.43906], [-79.86684, 37.43983], [-79.86652, 37.44021], [-79.86638, 37.44036], [-79.86619, 37.44058], [-79.86559, 37.44124], [-79.86533, 37.44151], [-79.86453, 37.44233], [-79.86388, 37.44294], [-79.86359, 37.4432], [-79.86321, 37.44354], [-79.86282, 37.44388], [-79.86243, 37.44421], [-79.86209, 37.44449], [-79.86176, 37.44475], [-79.86137, 37.44506], [-79.86107, 37.44529], [-79.86102, 37.44532], [-79.86025, 37.44588], [-79.85954, 37.44638], [-79.859, 37.44673], [-79.85858, 37.44701], [-79.85792, 37.44741], [-79.85748, 37.44768], [-79.85735, 37.44775], [-79.85715, 37.44787], [-79.85681, 37.44807], [-79.8562, 37.44841], [-79.85579, 37.44863], [-79.85534, 37.44887], [-79.85469, 37.44922], [-79.85416, 37.44945], [-79.84957, 37.45169], [-79.84639, 37.45322], [-79.84625, 37.45329], [-79.84262, 37.45505], [-79.84097, 37.45585], [-79.84014, 37.45625], [-79.83896, 37.45679], [-79.83848, 37.45701], [-79.83714, 37.45758], [-79.83652, 37.45784], [-79.83575, 37.45815], [-79.83539, 37.45829], [-79.83425, 37.45874], [-79.83338, 37.45907], [-79.83317, 37.45915], [-79.83189, 37.45961], [-79.8317, 37.45968], [-79.83093, 37.45994], [-79.82939, 37.46048], [-79.82744, 37.46114], [-79.82639, 37.46152], [-79.82433, 37.46223], [-79.82343, 37.46255], [-79.82141, 37.46324], [-79.82063, 37.46354], [-79.81973, 37.4639], [-79.81889, 37.46428], [-79.81806, 37.46467], [-79.81769, 37.46487], [-79.81717, 37.46514], [-79.81711, 37.46518], [-79.81669, 37.46542], [-79.81631, 37.46564], [-79.81532, 37.46625], [-79.81417, 37.46699], [-79.81414, 37.467], [-79.81281, 37.46784], [-79.81225, 37.46818], [-79.81179, 37.46843], [-79.81129, 37.46871], [-79.81121, 37.46875], [-79.81038, 37.46919], [-79.80965, 37.46954], [-79.80892, 37.46988], [-79.8083, 37.47015], [-79.80779, 37.47037], [-79.80718, 37.4706], [-79.80654, 37.47084], [-79.80576, 37.47112], [-79.8044, 37.47159], [-79.8037, 37.47184], [-79.80294, 37.4721], [-79.80254, 37.47225], [-79.80137, 37.47265], [-79.80045, 37.47298], [-79.80008, 37.47311], [-79.79945, 37.47333], [-79.79869, 37.47366], [-79.79705, 37.47433], [-79.79571, 37.47492], [-79.79483, 37.47529], [-79.79324, 37.47598], [-79.79199, 37.4765], [-79.79124, 37.4768], [-79.79036, 37.47716], [-79.788, 37.4781], [-79.78573, 37.47901], [-79.78472, 37.47945], [-79.78454, 37.47953], [-79.78429, 37.47964], [-79.78377, 37.47989], [-79.78296, 37.48029], [-79.78228, 37.48063], [-79.78131, 37.48116], [-79.78028, 37.48176], [-79.77962, 37.48216], [-79.77731, 37.48366], [-79.77678, 37.48401], [-79.77602, 37.48452], [-79.77526, 37.48501], [-79.77425, 37.48569], [-79.7733, 37.4863], [-79.76991, 37.48854], [-79.76927, 37.48896], [-79.76829, 37.4896], [-79.76697, 37.49046], [-79.76641, 37.49081], [-79.76572, 37.49121], [-79.76503, 37.49161], [-79.7642, 37.49205], [-79.76343, 37.49244], [-79.76278, 37.49277], [-79.76192, 37.49316], [-79.76131, 37.49343], [-79.76047, 37.49378], [-79.75912, 37.49433], [-79.75811, 37.49473], [-79.75382, 37.49645], [-79.75282, 37.49686], [-79.75245, 37.49702], [-79.75187, 37.49734], [-79.75141, 37.49761], [-79.75086, 37.49798], [-79.75057, 37.49819], [-79.75038, 37.49834], [-79.75019, 37.49849], [-79.75015, 37.49852], [-79.74996, 37.49868], [-79.74976, 37.49886], [-79.74948, 37.49914], [-79.74922, 37.49941], [-79.74905, 37.4996], [-79.74897, 37.49969], [-79.7488, 37.4999], [-79.74854, 37.50025], [-79.74821, 37.5007], [-79.74773, 37.50131], [-79.74737, 37.5018], [-79.74605, 37.50355], [-79.74567, 37.50402], [-79.74514, 37.50475], [-79.74431, 37.50585], [-79.744, 37.50626], [-79.74312, 37.50741], [-79.74255, 37.50808], [-79.74214, 37.50854], [-79.74171, 37.509], [-79.74119, 37.50952], [-79.74082, 37.50987], [-79.74054, 37.51013], [-79.74016, 37.51045], [-79.73976, 37.51079], [-79.73926, 37.51118], [-79.73884, 37.5115], [-79.7382, 37.51196], [-79.73766, 37.51232], [-79.73722, 37.51261], [-79.73666, 37.51295], [-79.73614, 37.51325], [-79.7356, 37.51356], [-79.73498, 37.51389], [-79.73428, 37.51428], [-79.73399, 37.51443], [-79.73341, 37.51475], [-79.73268, 37.51513], [-79.73234, 37.51531], [-79.73184, 37.51555], [-79.7311, 37.5159], [-79.73047, 37.51618], [-79.72973, 37.5165], [-79.72899, 37.5168], [-79.72845, 37.51701], [-79.72785, 37.51723], [-79.72655, 37.51769], [-79.72588, 37.51791], [-79.72539, 37.51806], [-79.72485, 37.51823], [-79.72121, 37.51936], [-79.7179, 37.5204], [-79.71685, 37.52074], [-79.71542, 37.52123], [-79.71374, 37.52183], [-79.71213, 37.52244], [-79.71178, 37.52257], [-79.71027, 37.52315], [-79.70767, 37.52412], [-79.70742, 37.52423], [-79.70596, 37.52478], [-79.70522, 37.52505], [-79.70406, 37.5255], [-79.70261, 37.52605], [-79.70134, 37.52652], [-79.70056, 37.52679], [-79.69926, 37.52724], [-79.69744, 37.52785], [-79.69452, 37.52883], [-79.69353, 37.52916], [-79.69302, 37.52934], [-79.69251, 37.52952], [-79.69188, 37.52976], [-79.69138, 37.52997], [-79.69077, 37.53025], [-79.69074, 37.53026], [-79.69039, 37.53043], [-79.68982, 37.53073], [-79.68946, 37.53092], [-79.68901, 37.53118], [-79.68892, 37.53123], [-79.68851, 37.53149], [-79.68791, 37.53189], [-79.68722, 37.53238], [-79.68718, 37.53241], [-79.68665, 37.53283], [-79.68537, 37.53391], [-79.68502, 37.53423], [-79.68456, 37.53461], [-79.68403, 37.53507], [-79.68395, 37.53514], [-79.6838, 37.53527], [-79.68364, 37.53539], [-79.68271, 37.53617], [-79.68233, 37.53648], [-79.68112, 37.5374], [-79.68066, 37.53773], [-79.67996, 37.53821], [-79.67865, 37.53909], [-79.67759, 37.5398], [-79.67705, 37.54016], [-79.67636, 37.54059], [-79.67567, 37.541], [-79.67521, 37.54125], [-79.67463, 37.54155], [-79.67415, 37.54177], [-79.67202, 37.5428], [-79.67114, 37.54322], [-79.6708, 37.54338], [-79.67047, 37.54355], [-79.67006, 37.54377], [-79.66974, 37.54396], [-79.66963, 37.54403], [-79.66929, 37.54426], [-79.66889, 37.54456], [-79.66849, 37.54489], [-79.66804, 37.54532], [-79.66789, 37.54547], [-79.66755, 37.54585], [-79.66728, 37.54619], [-79.66701, 37.54658], [-79.66683, 37.54688], [-79.66657, 37.54739], [-79.66628, 37.54808], [-79.66617, 37.54835], [-79.66602, 37.54877], [-79.66587, 37.54913], [-79.66583, 37.54923], [-79.66575, 37.54945], [-79.66552, 37.55003], [-79.66539, 37.55032], [-79.66533, 37.55044], [-79.66525, 37.55058], [-79.66512, 37.55079], [-79.66497, 37.551], [-79.66483, 37.55117], [-79.6646, 37.55142], [-79.6644, 37.55162], [-79.66383, 37.55213], [-79.66291, 37.55299], [-79.66245, 37.55345], [-79.6622, 37.55373], [-79.66181, 37.5542], [-79.6616, 37.55446], [-79.66118, 37.55502], [-79.66109, 37.55515], [-79.66024, 37.55625], [-79.65961, 37.55707], [-79.65909, 37.5578], [-79.65847, 37.5587], [-79.65824, 37.55906], [-79.65776, 37.55976], [-79.6573, 37.56045], [-79.65705, 37.56077], [-79.65679, 37.56109], [-79.65668, 37.56122], [-79.65617, 37.56172], [-79.65482, 37.56288], [-79.65448, 37.56319], [-79.65429, 37.56338], [-79.65402, 37.56368], [-79.65387, 37.56387], [-79.65365, 37.56417], [-79.65164, 37.56699], [-79.65135, 37.56739], [-79.65045, 37.56866], [-79.65017, 37.56905], [-79.6499, 37.56944], [-79.64957, 37.56994], [-79.64908, 37.57074], [-79.64881, 37.5712], [-79.64722, 37.57382], [-79.64624, 37.57544], [-79.64605, 37.57575], [-79.64588, 37.57604], [-79.64522, 37.57712], [-79.64476, 37.57789], [-79.64426, 37.57871], [-79.64407, 37.57903], [-79.64382, 37.57943], [-79.64333, 37.58026], [-79.64319, 37.58047], [-79.64289, 37.58096], [-79.64264, 37.58137], [-79.64231, 37.58186], [-79.64197, 37.58238], [-79.64169, 37.58277], [-79.64141, 37.58316], [-79.64113, 37.58352], [-79.64058, 37.58421], [-79.64027, 37.58458], [-79.63964, 37.58532], [-79.63878, 37.58624], [-79.63845, 37.58659], [-79.63817, 37.58686], [-79.6379, 37.58712], [-79.63745, 37.58756], [-79.63707, 37.5879], [-79.63669, 37.58823], [-79.63611, 37.58874], [-79.6352, 37.58947], [-79.63489, 37.58972], [-79.63427, 37.59018], [-79.63418, 37.59025], [-79.63313, 37.591], [-79.6328, 37.59122], [-79.63269, 37.5913], [-79.62945, 37.59355], [-79.62678, 37.59542], [-79.62638, 37.59573], [-79.626, 37.59607], [-79.62582, 37.59624], [-79.62555, 37.59651], [-79.62521, 37.59687], [-79.62496, 37.59715], [-79.62469, 37.59742], [-79.62414, 37.59801], [-79.62368, 37.5985], [-79.62341, 37.59878], [-79.62323, 37.59898], [-79.62212, 37.60015], [-79.62162, 37.60069], [-79.6209, 37.60139], [-79.61959, 37.60258], [-79.61941, 37.60275], [-79.61914, 37.60303], [-79.61889, 37.60329], [-79.6185, 37.60376], [-79.61813, 37.60425], [-79.61787, 37.60464], [-79.61759, 37.60506], [-79.61717, 37.6057], [-79.61701, 37.60593], [-79.61613, 37.60726], [-79.61592, 37.60755], [-79.61561, 37.60794], [-79.61527, 37.60831], [-79.61502, 37.60854], [-79.61486, 37.60868], [-79.61457, 37.60891], [-79.61421, 37.60917], [-79.61406, 37.60927], [-79.61373, 37.60947], [-79.61343, 37.60963], [-79.61304, 37.60982], [-79.6127, 37.60997], [-79.6123, 37.61012], [-79.61198, 37.61023], [-79.61161, 37.61033], [-79.61123, 37.61043], [-79.61089, 37.61049], [-79.61035, 37.61058], [-79.6101, 37.61061], [-79.61, 37.61062], [-79.60947, 37.61065], [-79.60694, 37.61074], [-79.60483, 37.6108], [-79.6038, 37.61084], [-79.60263, 37.61088], [-79.60201, 37.6109], [-79.60076, 37.61094], [-79.60003, 37.61097], [-79.59932, 37.61099], [-79.59806, 37.611], [-79.59765, 37.61101], [-79.59725, 37.61102], [-79.59686, 37.61105], [-79.59646, 37.6111], [-79.59605, 37.61116], [-79.59563, 37.61124], [-79.59538, 37.6113], [-79.59523, 37.61134], [-79.59451, 37.61157], [-79.59432, 37.61164], [-79.59414, 37.61171], [-79.59366, 37.61192], [-79.59337, 37.61206], [-79.59292, 37.61231], [-79.59262, 37.61251], [-79.59249, 37.6126], [-79.59189, 37.61305], [-79.59182, 37.61311], [-79.59132, 37.6136], [-79.5913, 37.61361], [-79.59007, 37.61485], [-79.5893, 37.61572], [-79.58877, 37.6164], [-79.58838, 37.61693], [-79.58789, 37.61762], [-79.58739, 37.61845], [-79.58621, 37.62053], [-79.58484, 37.62299], [-79.5844, 37.6237], [-79.58425, 37.6239], [-79.58412, 37.62405], [-79.5839, 37.62431], [-79.58375, 37.62446], [-79.58341, 37.6248], [-79.58318, 37.625], [-79.5828, 37.62528], [-79.58264, 37.62539], [-79.58229, 37.62562], [-79.58194, 37.62582], [-79.58159, 37.626], [-79.58125, 37.62614], [-79.58051, 37.62642], [-79.58008, 37.62655], [-79.57964, 37.62666], [-79.57928, 37.62675], [-79.57694, 37.62723], [-79.57648, 37.62734], [-79.57604, 37.62746], [-79.57559, 37.6276], [-79.57507, 37.62778], [-79.57482, 37.62788], [-79.57475, 37.62791], [-79.57423, 37.62814], [-79.57365, 37.62841], [-79.57297, 37.62876], [-79.57267, 37.62892], [-79.57236, 37.6291], [-79.57173, 37.62954], [-79.5714, 37.62979], [-79.57115, 37.63002], [-79.57089, 37.63024], [-79.5706, 37.63051], [-79.57024, 37.63085], [-79.56989, 37.63121], [-79.56919, 37.632], [-79.56849, 37.63278], [-79.56702, 37.63441], [-79.56499, 37.63671], [-79.56203, 37.63983], [-79.56175, 37.64012], [-79.56125, 37.64062], [-79.56039, 37.64153], [-79.55737, 37.64468], [-79.55618, 37.64592], [-79.55568, 37.64644], [-79.55506, 37.6471], [-79.55461, 37.64755], [-79.5541, 37.6481], [-79.55356, 37.64863], [-79.55311, 37.64906], [-79.55287, 37.64927], [-79.55256, 37.64953], [-79.55188, 37.65006], [-79.55161, 37.65027], [-79.55119, 37.65056], [-79.55084, 37.65079], [-79.55034, 37.65111], [-79.55006, 37.65128], [-79.5494, 37.65165], [-79.54882, 37.65195], [-79.54824, 37.65223], [-79.54773, 37.65246], [-79.54634, 37.65306], [-79.54605, 37.65318], [-79.54519, 37.65355], [-79.54438, 37.6539], [-79.54246, 37.65474], [-79.54104, 37.65536], [-79.54022, 37.65571], [-79.53956, 37.656], [-79.53817, 37.65661], [-79.53726, 37.657], [-79.53439, 37.65824], [-79.53284, 37.65892], [-79.53074, 37.65981], [-79.53019, 37.66006], [-79.52795, 37.66101], [-79.52757, 37.66116], [-79.52739, 37.66124], [-79.52672, 37.6615], [-79.52506, 37.66213], [-79.52382, 37.66258], [-79.5226, 37.66299], [-79.52138, 37.66339], [-79.52012, 37.6638], [-79.51818, 37.66444], [-79.51433, 37.6657], [-79.51368, 37.66592], [-79.51199, 37.66647], [-79.51133, 37.6667], [-79.51084, 37.66689], [-79.50991, 37.66727], [-79.50941, 37.66749], [-79.50937, 37.66751], [-79.50858, 37.66789], [-79.5079, 37.66824], [-79.50753, 37.66843], [-79.50684, 37.66881], [-79.50593, 37.66932], [-79.50527, 37.66976], [-79.50507, 37.66989], [-79.50453, 37.67027], [-79.50385, 37.67079], [-79.50345, 37.67111], [-79.50222, 37.67217], [-79.50118, 37.67309], [-79.50071, 37.6735], [-79.49805, 37.67584], [-79.49714, 37.67665], [-79.49575, 37.67788], [-79.49438, 37.67912], [-79.49401, 37.67946], [-79.49191, 37.68138], [-79.49145, 37.6818], [-79.48716, 37.68574], [-79.48542, 37.68734], [-79.48488, 37.68784], [-79.48368, 37.68892], [-79.48262, 37.68982], [-79.48205, 37.6903], [-79.48145, 37.69076], [-79.48053, 37.69144], [-79.47978, 37.69195], [-79.47925, 37.69231], [-79.4785, 37.69279], [-79.47772, 37.69326], [-79.47739, 37.69346], [-79.47706, 37.69364], [-79.4766, 37.69391], [-79.47549, 37.69453], [-79.47439, 37.69519], [-79.47245, 37.6964], [-79.47201, 37.69668], [-79.47093, 37.69739], [-79.47016, 37.69798], [-79.46963, 37.69833], [-79.46807, 37.69939], [-79.46759, 37.69971], [-79.46665, 37.70037], [-79.4658, 37.70096], [-79.46516, 37.70141], [-79.46481, 37.70165], [-79.46411, 37.70214], [-79.46229, 37.70341], [-79.46089, 37.70441], [-79.46071, 37.70454], [-79.46057, 37.70464], [-79.46043, 37.70474], [-79.45946, 37.70544], [-79.45873, 37.70598], [-79.45814, 37.70642], [-79.45743, 37.70695], [-79.45621, 37.7079], [-79.45566, 37.70833], [-79.45509, 37.70878], [-79.45443, 37.70929], [-79.45338, 37.71013], [-79.45218, 37.71104], [-79.45161, 37.71149], [-79.4509, 37.71202], [-79.44967, 37.713], [-79.44844, 37.71395], [-79.44775, 37.7145], [-79.44738, 37.71479], [-79.44671, 37.71532], [-79.44619, 37.71572], [-79.44551, 37.71625], [-79.44484, 37.71677], [-79.44434, 37.71718], [-79.4442, 37.71728], [-79.44347, 37.71783], [-79.44325, 37.71801], [-79.44252, 37.71855], [-79.44196, 37.71896], [-79.44161, 37.71922], [-79.4401, 37.72036], [-79.43908, 37.72111], [-79.43776, 37.72207], [-79.437, 37.72265], [-79.4367, 37.72289], [-79.4363, 37.72324], [-79.436, 37.72351], [-79.43552, 37.72398], [-79.4353, 37.7242], [-79.43492, 37.72462], [-79.4346, 37.72499], [-79.43398, 37.72575], [-79.43369, 37.72613], [-79.43332, 37.7266], [-79.4332, 37.72676], [-79.43318, 37.72678], [-79.43295, 37.72706], [-79.43266, 37.72744], [-79.43236, 37.72781], [-79.43213, 37.72811], [-79.43161, 37.72876], [-79.4313, 37.72917], [-79.43117, 37.72933], [-79.42916, 37.73187], [-79.42833, 37.73293], [-79.42722, 37.73431], [-79.42681, 37.73483], [-79.42498, 37.73709], [-79.42313, 37.73935], [-79.42209, 37.74064], [-79.42187, 37.74091], [-79.42139, 37.74151], [-79.42056, 37.7425], [-79.4199, 37.74331], [-79.41924, 37.74414], [-79.41844, 37.74515], [-79.41771, 37.74606], [-79.41586, 37.74839], [-79.41471, 37.74981], [-79.41335, 37.75151], [-79.41291, 37.75207], [-79.41224, 37.75289], [-79.41148, 37.75382], [-79.41097, 37.75451], [-79.41083, 37.75472], [-79.41015, 37.75574], [-79.40963, 37.75658], [-79.40933, 37.75715], [-79.408, 37.75968], [-79.40763, 37.76047], [-79.40719, 37.76137], [-79.40691, 37.76199], [-79.40661, 37.76261], [-79.40636, 37.76315], [-79.40621, 37.76345], [-79.40592, 37.76408], [-79.40529, 37.7654], [-79.40382, 37.7685], [-79.40327, 37.76964], [-79.40303, 37.77017], [-79.40249, 37.77129], [-79.40189, 37.77257], [-79.40171, 37.77296], [-79.40135, 37.77388], [-79.40121, 37.77438], [-79.40098, 37.77491], [-79.40074, 37.77562], [-79.40063, 37.7762], [-79.40053, 37.77703], [-79.40048, 37.77926], [-79.40045, 37.78152], [-79.40046, 37.78267], [-79.40038, 37.78322], [-79.40037, 37.78328], [-79.40019, 37.78415], [-79.39994, 37.78506], [-79.39977, 37.78553], [-79.3995, 37.78621], [-79.39924, 37.78678], [-79.39858, 37.78804], [-79.39814, 37.78892], [-79.39793, 37.78931], [-79.3972, 37.79056], [-79.39621, 37.79237], [-79.39589, 37.79297], [-79.39493, 37.79472], [-79.39452, 37.79549], [-79.39406, 37.79633], [-79.39344, 37.79765], [-79.39333, 37.79784], [-79.3922, 37.79991], [-79.39019, 37.80358], [-79.38991, 37.80411], [-79.3897, 37.80448], [-79.38953, 37.80478], [-79.38933, 37.80516], [-79.38827, 37.80713], [-79.38796, 37.80769], [-79.38757, 37.80837], [-79.38724, 37.80894], [-79.38694, 37.80941], [-79.38652, 37.81009], [-79.38615, 37.81068], [-79.38602, 37.81086], [-79.38556, 37.81157], [-79.38479, 37.81269], [-79.38455, 37.81303], [-79.38443, 37.8132], [-79.38408, 37.81368], [-79.38336, 37.81464], [-79.38292, 37.81522], [-79.38137, 37.81718], [-79.38101, 37.81763], [-79.38066, 37.81808], [-79.38033, 37.81849], [-79.37545, 37.82467], [-79.37538, 37.82476], [-79.37427, 37.82617], [-79.37382, 37.82678], [-79.37338, 37.82742], [-79.37311, 37.8278], [-79.37267, 37.8285], [-79.37231, 37.82909], [-79.37228, 37.82914], [-79.37213, 37.82939], [-79.3718, 37.83], [-79.37158, 37.83041], [-79.37127, 37.83102], [-79.37093, 37.83175], [-79.37, 37.83377], [-79.36894, 37.83607], [-79.36881, 37.83636], [-79.36787, 37.83841], [-79.36736, 37.8395], [-79.36701, 37.84023], [-79.36683, 37.84063], [-79.36665, 37.841], [-79.3665, 37.84131], [-79.36623, 37.84194], [-79.36612, 37.84218], [-79.36589, 37.84263], [-79.36573, 37.84297], [-79.36565, 37.84315], [-79.36521, 37.8441], [-79.36462, 37.84532], [-79.36446, 37.84571], [-79.36402, 37.84667], [-79.36388, 37.84694], [-79.36339, 37.84796], [-79.3631, 37.84845], [-79.36275, 37.84896], [-79.36246, 37.8493], [-79.36199, 37.84981], [-79.36151, 37.85026], [-79.36092, 37.85071], [-79.3604, 37.85109], [-79.35976, 37.8515], [-79.35886, 37.852], [-79.35797, 37.85251], [-79.35776, 37.85262], [-79.35679, 37.85316], [-79.35613, 37.85351], [-79.35435, 37.85451], [-79.35339, 37.85507], [-79.35187, 37.85591], [-79.35003, 37.85694], [-79.34932, 37.85733], [-79.3484, 37.85785], [-79.34744, 37.8584], [-79.34612, 37.85917], [-79.3453, 37.85965], [-79.34456, 37.8601], [-79.34365, 37.86065], [-79.34219, 37.86156], [-79.34143, 37.86205], [-79.34105, 37.86229], [-79.3403, 37.86278], [-79.33963, 37.86322], [-79.33907, 37.86359], [-79.33841, 37.86405], [-79.33749, 37.86465], [-79.33688, 37.86506], [-79.33563, 37.8659], [-79.33525, 37.86615], [-79.3348, 37.86645], [-79.33402, 37.86692], [-79.33321, 37.86735], [-79.33232, 37.86779], [-79.33086, 37.86839], [-79.33004, 37.86868], [-79.32914, 37.86896], [-79.32831, 37.86919], [-79.32775, 37.86932], [-79.32717, 37.86943], [-79.32665, 37.86952], [-79.32591, 37.86964], [-79.32497, 37.86976], [-79.32354, 37.86989], [-79.32212, 37.87006], [-79.32076, 37.8703], [-79.31989, 37.87048], [-79.31884, 37.87074], [-79.31786, 37.87107], [-79.3175, 37.8712], [-79.31675, 37.87147], [-79.31643, 37.8716], [-79.31636, 37.87163], [-79.31562, 37.87196], [-79.3154, 37.87206], [-79.31445, 37.87248], [-79.31253, 37.87332], [-79.3101, 37.87442], [-79.30843, 37.87517], [-79.30686, 37.87582], [-79.3066, 37.87593], [-79.30627, 37.87609], [-79.30545, 37.87645], [-79.3041, 37.87708], [-79.30335, 37.87741], [-79.30301, 37.87754], [-79.30265, 37.87771], [-79.30155, 37.87819], [-79.3002, 37.8788], [-79.29975, 37.87901], [-79.29947, 37.87914], [-79.29843, 37.87961], [-79.2981, 37.87975], [-79.29716, 37.88017], [-79.29611, 37.88064], [-79.29392, 37.8816], [-79.29307, 37.88198], [-79.29197, 37.88247], [-79.29125, 37.88276], [-79.29034, 37.88317], [-79.28937, 37.8836], [-79.28846, 37.88403], [-79.28576, 37.88524], [-79.2856, 37.88531], [-79.28526, 37.88545], [-79.28489, 37.88562], [-79.28421, 37.88592], [-79.28375, 37.88614], [-79.28307, 37.88648], [-79.28216, 37.88697], [-79.28153, 37.88734], [-79.28112, 37.88756], [-79.2809, 37.8877], [-79.28069, 37.88784], [-79.27991, 37.88839], [-79.27927, 37.88888], [-79.27882, 37.88923], [-79.27833, 37.88965], [-79.27787, 37.89006], [-79.27737, 37.89054], [-79.27709, 37.89082], [-79.27651, 37.89145], [-79.27619, 37.89185], [-79.27579, 37.89238], [-79.27537, 37.89296], [-79.27474, 37.89385], [-79.27442, 37.89436], [-79.27403, 37.89492], [-79.27363, 37.89549], [-79.27351, 37.89565], [-79.27332, 37.89591], [-79.27287, 37.8965], [-79.27252, 37.89694], [-79.27209, 37.89744], [-79.27153, 37.89808], [-79.27114, 37.89852], [-79.27062, 37.89906], [-79.27029, 37.8994], [-79.26993, 37.89976], [-79.26948, 37.90019], [-79.26913, 37.90052], [-79.26463, 37.90451], [-79.26416, 37.90492], [-79.26363, 37.90541], [-79.26303, 37.90593], [-79.26063, 37.90806], [-79.2596, 37.90898], [-79.25926, 37.90928], [-79.25787, 37.91054], [-79.25687, 37.91137], [-79.2558, 37.91227], [-79.25479, 37.91312], [-79.25387, 37.91386], [-79.25351, 37.91414], [-79.25253, 37.91492], [-79.25135, 37.91584], [-79.25095, 37.91614], [-79.25058, 37.91642], [-79.24982, 37.917], [-79.24925, 37.91741], [-79.24859, 37.9179], [-79.24809, 37.91827], [-79.24788, 37.91842], [-79.24726, 37.91884], [-79.24524, 37.92025], [-79.2431, 37.92169], [-79.24216, 37.92231], [-79.24055, 37.92336], [-79.23989, 37.9238], [-79.23914, 37.92429], [-79.239, 37.92438], [-79.23814, 37.92499], [-79.2372, 37.92561], [-79.23637, 37.92617], [-79.2356, 37.92668], [-79.23479, 37.92721], [-79.23372, 37.92792], [-79.23344, 37.9281], [-79.23283, 37.92852], [-79.23152, 37.92945], [-79.23096, 37.9299], [-79.23007, 37.93057], [-79.22903, 37.93139], [-79.22859, 37.93175], [-79.22846, 37.93185], [-79.22793, 37.93228], [-79.22571, 37.93419], [-79.22515, 37.93468], [-79.22392, 37.93583], [-79.22353, 37.93621], [-79.22253, 37.93723], [-79.22231, 37.93748], [-79.22164, 37.93821], [-79.22081, 37.93911], [-79.2195, 37.94055], [-79.2191, 37.94102], [-79.21878, 37.94139], [-79.21832, 37.94195], [-79.21783, 37.94249], [-79.21674, 37.94376], [-79.21647, 37.94407], [-79.21455, 37.94631], [-79.21365, 37.94736], [-79.21241, 37.94881], [-79.21199, 37.94929], [-79.21169, 37.94964], [-79.21135, 37.95004], [-79.2107, 37.95078], [-79.2093, 37.95242], [-79.20866, 37.95319], [-79.20856, 37.95329], [-79.20787, 37.95408], [-79.20714, 37.95495], [-79.20697, 37.95515], [-79.20644, 37.95575], [-79.20594, 37.95634], [-79.20527, 37.95712], [-79.20487, 37.95757], [-79.20407, 37.9585], [-79.20378, 37.95883], [-79.20334, 37.95933], [-79.20294, 37.95982], [-79.20251, 37.96031], [-79.20208, 37.96082], [-79.20165, 37.96131], [-79.19938, 37.96397], [-79.19879, 37.96463], [-79.19795, 37.96556], [-79.19735, 37.9662], [-79.197, 37.96657], [-79.19597, 37.96763], [-79.19511, 37.96848], [-79.19263, 37.97076], [-79.19232, 37.97105], [-79.19135, 37.97193], [-79.18975, 37.97337], [-79.18808, 37.97488], [-79.18719, 37.97573], [-79.18668, 37.97624], [-79.18617, 37.97678], [-79.1856, 37.9774], [-79.18513, 37.97794], [-79.18477, 37.97838], [-79.18436, 37.97889], [-79.18417, 37.97911], [-79.18408, 37.97921], [-79.1832, 37.98046], [-79.18283, 37.98102], [-79.18256, 37.98143], [-79.18232, 37.98182], [-79.18209, 37.9822], [-79.18185, 37.98261], [-79.18132, 37.9836], [-79.18096, 37.98433], [-79.18062, 37.98506], [-79.17981, 37.98701], [-79.17922, 37.98842], [-79.17875, 37.98962], [-79.17811, 37.99117], [-79.17797, 37.99148], [-79.17773, 37.99212], [-79.17681, 37.99436], [-79.17637, 37.99542], [-79.17628, 37.99563], [-79.17586, 37.99656], [-79.17545, 37.9974], [-79.17491, 37.9984], [-79.17456, 37.99901], [-79.17425, 37.9995], [-79.17394, 38], [-79.17353, 38.00059], [-79.17341, 38.00077], [-79.173, 38.00134], [-79.17251, 38.002], [-79.17198, 38.00266], [-79.17129, 38.00348], [-79.17095, 38.00386], [-79.17072, 38.00411], [-79.17036, 38.00449], [-79.16976, 38.0051], [-79.16898, 38.00586], [-79.16833, 38.00644], [-79.1676, 38.00708], [-79.16701, 38.00756], [-79.16653, 38.00795], [-79.16583, 38.00848], [-79.16542, 38.00878], [-79.1648, 38.00921], [-79.16417, 38.00964], [-79.16367, 38.00995], [-79.16329, 38.0102], [-79.15736, 38.01402], [-79.15554, 38.01519], [-79.15112, 38.01802], [-79.15046, 38.01845], [-79.14759, 38.02029], [-79.14694, 38.02071], [-79.14604, 38.02128], [-79.14579, 38.02143], [-79.14551, 38.0216], [-79.14507, 38.02189], [-79.14454, 38.02223], [-79.14413, 38.02249], [-79.14327, 38.02306], [-79.14297, 38.02325], [-79.14259, 38.02348], [-79.1422, 38.02374], [-79.14122, 38.02438], [-79.14101, 38.02451], [-79.14013, 38.02507], [-79.13932, 38.02559], [-79.13918, 38.02568], [-79.13784, 38.02654], [-79.13722, 38.02694], [-79.13687, 38.02716], [-79.13633, 38.0275], [-79.13554, 38.02804], [-79.13502, 38.0284], [-79.13467, 38.02866], [-79.13396, 38.02919], [-79.13371, 38.0294], [-79.13315, 38.02985], [-79.13251, 38.03038], [-79.13172, 38.03108], [-79.1309, 38.03186], [-79.13032, 38.03244], [-79.1298, 38.03298], [-79.12922, 38.03361], [-79.12868, 38.03423], [-79.12823, 38.03477], [-79.12778, 38.03532], [-79.12718, 38.03611], [-79.1268, 38.03669], [-79.12636, 38.03735], [-79.12569, 38.0384], [-79.1248, 38.03981], [-79.12419, 38.04076], [-79.12375, 38.04143], [-79.12357, 38.04172], [-79.12294, 38.04273], [-79.12269, 38.04313], [-79.12158, 38.04487], [-79.12146, 38.04503], [-79.12091, 38.04588], [-79.12051, 38.04653], [-79.12014, 38.04709], [-79.11965, 38.04788], [-79.1185, 38.0497], [-79.11731, 38.05156], [-79.11599, 38.05365], [-79.11563, 38.05421], [-79.11516, 38.05496], [-79.11424, 38.05636], [-79.11395, 38.05679], [-79.11364, 38.05721], [-79.11275, 38.05836], [-79.11189, 38.05942], [-79.11146, 38.0599], [-79.11128, 38.06009], [-79.1108, 38.06059], [-79.11042, 38.06097], [-79.10959, 38.06178], [-79.10891, 38.06241], [-79.10826, 38.06297], [-79.10725, 38.06379], [-79.10649, 38.06438], [-79.10518, 38.06533], [-79.1049, 38.06553], [-79.10392, 38.06615], [-79.10328, 38.06654], [-79.10223, 38.06714], [-79.10115, 38.06773], [-79.10015, 38.06829], [-79.09816, 38.06939], [-79.09743, 38.0698], [-79.09551, 38.07088], [-79.09491, 38.07122], [-79.09442, 38.07149], [-79.0934, 38.07204], [-79.09215, 38.0727], [-79.09148, 38.07308], [-79.09123, 38.07322], [-79.09107, 38.07332], [-79.09046, 38.0737], [-79.08958, 38.07426], [-79.08866, 38.07487], [-79.08813, 38.07523], [-79.0876, 38.07561], [-79.08721, 38.07591], [-79.08656, 38.07641], [-79.08555, 38.07724], [-79.08489, 38.07782], [-79.08462, 38.07807], [-79.08452, 38.07817], [-79.08416, 38.07849], [-79.0837, 38.07895], [-79.08339, 38.07924], [-79.0831, 38.07956], [-79.08264, 38.08004], [-79.08212, 38.08062], [-79.08175, 38.08105], [-79.08147, 38.0814], [-79.08116, 38.08176], [-79.08084, 38.08216], [-79.08038, 38.08279], [-79.07996, 38.08339], [-79.07913, 38.08461], [-79.07908, 38.08471], [-79.07867, 38.08538], [-79.07829, 38.08605], [-79.07819, 38.08628], [-79.0779, 38.08682], [-79.0774, 38.08785], [-79.07674, 38.08923], [-79.07611, 38.09053], [-79.07584, 38.0911], [-79.07539, 38.09203], [-79.07512, 38.0926], [-79.07475, 38.09336], [-79.07455, 38.09376], [-79.07432, 38.09419], [-79.07382, 38.09507], [-79.0735, 38.09558], [-79.07325, 38.09596], [-79.07299, 38.09634], [-79.07272, 38.09673], [-79.07238, 38.0972], [-79.07193, 38.09777], [-79.07163, 38.09814], [-79.07125, 38.09858], [-79.07088, 38.099], [-79.07041, 38.09949], [-79.06966, 38.10024], [-79.06916, 38.10072], [-79.06878, 38.10107], [-79.06777, 38.10202], [-79.06658, 38.1031], [-79.06617, 38.10348], [-79.06535, 38.1043], [-79.06507, 38.10456], [-79.06445, 38.10514], [-79.06391, 38.10565], [-79.06338, 38.10615], [-79.06294, 38.10657], [-79.06251, 38.10697], [-79.0618, 38.10762], [-79.06066, 38.10868], [-79.05955, 38.10976], [-79.0574, 38.11178], [-79.05705, 38.11211], [-79.05681, 38.11234], [-79.05659, 38.11253], [-79.0557, 38.11337], [-79.05386, 38.11511], [-79.05291, 38.116], [-79.05235, 38.11654], [-79.0521, 38.11677], [-79.05083, 38.11796], [-79.05001, 38.11873], [-79.04972, 38.119], [-79.04851, 38.12014], [-79.0483, 38.12034], [-79.04778, 38.12082], [-79.04764, 38.12094], [-79.0472, 38.12135], [-79.0464, 38.12205], [-79.04601, 38.12237], [-79.04547, 38.1228], [-79.04499, 38.12317], [-79.0445, 38.12354], [-79.0438, 38.12403], [-79.04288, 38.12465], [-79.04221, 38.12507], [-79.04153, 38.12548], [-79.04051, 38.12608], [-79.03947, 38.12667], [-79.03895, 38.12698], [-79.03838, 38.1273], [-79.03674, 38.12823], [-79.03612, 38.12858], [-79.03566, 38.12884], [-79.03302, 38.13035], [-79.03159, 38.13117], [-79.03108, 38.13146], [-79.03039, 38.13185], [-79.02961, 38.13232], [-79.02872, 38.13293], [-79.02792, 38.13357], [-79.02743, 38.13398], [-79.02678, 38.13446], [-79.02639, 38.13487], [-79.026, 38.1353], [-79.02548, 38.1359], [-79.02477, 38.13677], [-79.02405, 38.13765], [-79.02304, 38.13887], [-79.02212, 38.13999], [-79.02116, 38.14116], [-79.02041, 38.14208], [-79.0202, 38.14236], [-79.01912, 38.14382], [-79.01851, 38.14488], [-79.018, 38.14587], [-79.01764, 38.14707], [-79.01721, 38.14853], [-79.01679, 38.14998], [-79.01611, 38.15236], [-79.01593, 38.15301], [-79.01556, 38.15433], [-79.01506, 38.15608], [-79.01469, 38.15736], [-79.01455, 38.15815], [-79.01441, 38.1587], [-79.01408, 38.1597], [-79.01352, 38.16137], [-79.01308, 38.16262], [-79.01274, 38.16332], [-79.01212, 38.16436], [-79.0114, 38.16526], [-79.01113, 38.16552], [-79.01091, 38.16573], [-79.01033, 38.16629], [-79.00997, 38.16662], [-79.00817, 38.16828], [-79.00758, 38.16882], [-79.00668, 38.16966], [-79.00632, 38.16998], [-79.00608, 38.17017], [-79.00555, 38.17067], [-79.00489, 38.17128], [-79.00451, 38.17166], [-79.0038, 38.17243], [-79.0035, 38.17278], [-79.00321, 38.17312], [-79.0031, 38.17326], [-79.00273, 38.17372], [-79.00244, 38.17411], [-79.00227, 38.17435], [-79.00174, 38.17514], [-79.00127, 38.17593], [-79.00099, 38.17644], [-79.00074, 38.17692], [-79.00049, 38.17745], [-79.00023, 38.17802], [-79.00012, 38.17832], [-78.99997, 38.17869], [-78.99971, 38.17944], [-78.99953, 38.18004], [-78.99944, 38.1804], [-78.99891, 38.18255], [-78.99885, 38.18276], [-78.99873, 38.18329], [-78.99844, 38.18446], [-78.99803, 38.18613], [-78.99786, 38.18684], [-78.99737, 38.18881], [-78.99725, 38.1893], [-78.99715, 38.18965], [-78.99707, 38.19], [-78.99698, 38.19042], [-78.99678, 38.19119], [-78.99673, 38.19136], [-78.99666, 38.19171], [-78.99607, 38.19404], [-78.99592, 38.19464], [-78.99571, 38.19553], [-78.99552, 38.19627], [-78.99545, 38.19651], [-78.99514, 38.1978], [-78.99491, 38.1988], [-78.99481, 38.19926], [-78.99462, 38.20003], [-78.99412, 38.20206], [-78.99401, 38.20246], [-78.99365, 38.20391], [-78.99361, 38.20409], [-78.99347, 38.20463], [-78.99273, 38.20764], [-78.99209, 38.21025], [-78.99202, 38.21053], [-78.99188, 38.21114], [-78.99156, 38.21238], [-78.99153, 38.21245], [-78.99139, 38.2129], [-78.99117, 38.21352], [-78.99099, 38.21396], [-78.99084, 38.21429], [-78.99064, 38.21472], [-78.99046, 38.21506], [-78.99017, 38.21557], [-78.98998, 38.21587], [-78.98963, 38.2164], [-78.98935, 38.2168], [-78.98911, 38.21711], [-78.98886, 38.21742], [-78.98859, 38.21774], [-78.98822, 38.21816], [-78.98781, 38.21859], [-78.98743, 38.21896], [-78.98694, 38.2194], [-78.98613, 38.22009], [-78.98577, 38.22041], [-78.98308, 38.2227], [-78.98199, 38.22362], [-78.98169, 38.22387], [-78.98113, 38.22436], [-78.98047, 38.22492], [-78.97983, 38.22545], [-78.97937, 38.22585], [-78.97778, 38.22721], [-78.97643, 38.22836], [-78.97581, 38.22888], [-78.97542, 38.22922], [-78.97494, 38.22962], [-78.97214, 38.23202], [-78.97131, 38.23272], [-78.96992, 38.2339], [-78.96743, 38.23601], [-78.9672, 38.23622], [-78.96629, 38.23699], [-78.96584, 38.23739], [-78.96537, 38.23782], [-78.96463, 38.23857], [-78.9639, 38.23932], [-78.9635, 38.23973], [-78.96317, 38.24011], [-78.96279, 38.24054], [-78.96202, 38.24147], [-78.96116, 38.24253], [-78.96053, 38.24328], [-78.96011, 38.24381], [-78.95903, 38.24514], [-78.95869, 38.24554], [-78.95815, 38.24621], [-78.95764, 38.24685], [-78.95715, 38.24743], [-78.95699, 38.24764], [-78.95674, 38.24797], [-78.95569, 38.24927], [-78.95479, 38.25035], [-78.95366, 38.2516], [-78.95329, 38.25203], [-78.95268, 38.25267], [-78.95243, 38.2529], [-78.95218, 38.25314], [-78.95186, 38.25347], [-78.95138, 38.25398], [-78.95097, 38.25442], [-78.95081, 38.25462], [-78.9505, 38.25492], [-78.95002, 38.25538], [-78.94886, 38.25646], [-78.94822, 38.25704], [-78.9476, 38.25762], [-78.94613, 38.25896], [-78.9455, 38.25955], [-78.94369, 38.26122], [-78.94348, 38.2614], [-78.943, 38.26185], [-78.94245, 38.26235], [-78.94199, 38.26277], [-78.94149, 38.26325], [-78.94119, 38.26355], [-78.94079, 38.26398], [-78.94056, 38.26425], [-78.9401, 38.26481], [-78.93979, 38.26522], [-78.93968, 38.26538], [-78.93939, 38.26582], [-78.93927, 38.266], [-78.93918, 38.26616], [-78.93886, 38.26668], [-78.93869, 38.267], [-78.93843, 38.26753], [-78.93826, 38.2679], [-78.9381, 38.26829], [-78.93789, 38.26887], [-78.93765, 38.26961], [-78.93748, 38.27029], [-78.93739, 38.27078], [-78.9373, 38.27132], [-78.93701, 38.27319], [-78.93696, 38.27372], [-78.9369, 38.27408], [-78.93674, 38.27503], [-78.93666, 38.27544], [-78.93646, 38.27635], [-78.93644, 38.27645], [-78.93639, 38.27663], [-78.93611, 38.27765], [-78.93486, 38.28198], [-78.9341, 38.28455], [-78.93374, 38.28575], [-78.93367, 38.28596], [-78.93349, 38.28667], [-78.93271, 38.28934], [-78.932, 38.29179], [-78.93191, 38.29207], [-78.93183, 38.29234], [-78.93166, 38.29287], [-78.93154, 38.29332], [-78.93144, 38.29369], [-78.93136, 38.29402], [-78.93021, 38.29797], [-78.93002, 38.29867], [-78.92995, 38.29897], [-78.92983, 38.29958], [-78.92971, 38.30028], [-78.92966, 38.30071], [-78.92963, 38.30099], [-78.92958, 38.30163], [-78.92956, 38.30197], [-78.92955, 38.30272], [-78.92958, 38.30358], [-78.92978, 38.30688], [-78.92978, 38.30693], [-78.92979, 38.30702], [-78.92994, 38.30957], [-78.93018, 38.31335], [-78.93024, 38.31426], [-78.93039, 38.31671], [-78.93053, 38.31879], [-78.93062, 38.31977], [-78.93068, 38.32034], [-78.93072, 38.32074], [-78.93079, 38.32128], [-78.93099, 38.32258], [-78.93111, 38.3233], [-78.93125, 38.3242], [-78.93142, 38.32528], [-78.93194, 38.32845], [-78.93205, 38.32921], [-78.93234, 38.33096], [-78.93238, 38.33128], [-78.93248, 38.33183], [-78.93252, 38.33216], [-78.93257, 38.33243], [-78.93268, 38.3331], [-78.93284, 38.33406], [-78.93301, 38.33507], [-78.93352, 38.33826], [-78.93367, 38.33925], [-78.9337, 38.33947], [-78.93378, 38.34023], [-78.9338, 38.34067], [-78.93381, 38.34111], [-78.93382, 38.34166], [-78.93381, 38.3421], [-78.93379, 38.34243], [-78.93377, 38.34274], [-78.93375, 38.34303], [-78.93373, 38.34319], [-78.93369, 38.34352], [-78.93364, 38.34385], [-78.93358, 38.34429], [-78.9335, 38.34472], [-78.93346, 38.34492], [-78.93339, 38.34526], [-78.93333, 38.34551], [-78.93327, 38.34573], [-78.93318, 38.34603], [-78.93302, 38.34656], [-78.93288, 38.34698], [-78.93276, 38.3473], [-78.93257, 38.34779], [-78.93234, 38.34835], [-78.93215, 38.34876], [-78.93195, 38.34917], [-78.93183, 38.34939], [-78.93173, 38.34959], [-78.93127, 38.35041], [-78.93119, 38.35053], [-78.93102, 38.35081], [-78.93069, 38.35131], [-78.93046, 38.35163], [-78.92906, 38.35376], [-78.92884, 38.35411], [-78.92864, 38.35443], [-78.92857, 38.35453], [-78.92721, 38.3566], [-78.92631, 38.35796], [-78.92511, 38.35977], [-78.92499, 38.35994], [-78.92482, 38.36019], [-78.92391, 38.36155], [-78.9237, 38.36188], [-78.92296, 38.36299], [-78.92258, 38.3636], [-78.92227, 38.36418], [-78.92203, 38.3646], [-78.92176, 38.3651], [-78.9215, 38.36561], [-78.92127, 38.3661], [-78.92106, 38.36655], [-78.92074, 38.36728], [-78.92057, 38.36771], [-78.92029, 38.36845], [-78.91996, 38.36941], [-78.91982, 38.36984], [-78.9197, 38.37027], [-78.91953, 38.37092], [-78.91942, 38.37136], [-78.91811, 38.37704], [-78.91777, 38.37852], [-78.91678, 38.38278], [-78.9166, 38.3835], [-78.9164, 38.38418], [-78.9163, 38.3845], [-78.91605, 38.38525], [-78.9159, 38.38568], [-78.91562, 38.38641], [-78.91549, 38.38673], [-78.91535, 38.38705], [-78.91501, 38.3878], [-78.91467, 38.3885], [-78.91409, 38.3897], [-78.91405, 38.38977], [-78.91385, 38.39019], [-78.91238, 38.39317], [-78.91206, 38.39383], [-78.91187, 38.3942], [-78.91176, 38.3944], [-78.91165, 38.39461], [-78.91151, 38.3949], [-78.91097, 38.39601], [-78.91062, 38.39676], [-78.91035, 38.39732], [-78.91014, 38.39774], [-78.90999, 38.39805], [-78.90984, 38.39836], [-78.90962, 38.39877], [-78.90945, 38.39907], [-78.90922, 38.39947], [-78.90903, 38.39978], [-78.90886, 38.40004], [-78.90878, 38.40017], [-78.90859, 38.40045], [-78.90847, 38.40062], [-78.90846, 38.40063], [-78.90814, 38.40105], [-78.908, 38.40124], [-78.90784, 38.40145], [-78.90769, 38.40164], [-78.90758, 38.40178], [-78.90724, 38.40218], [-78.90704, 38.40241], [-78.90692, 38.40255], [-78.90685, 38.40263], [-78.90663, 38.40286], [-78.90636, 38.40315], [-78.90576, 38.40376], [-78.90565, 38.40387], [-78.90536, 38.40413], [-78.90532, 38.40418], [-78.90507, 38.4044], [-78.90485, 38.40459], [-78.90465, 38.40476], [-78.90448, 38.40491], [-78.90418, 38.40515], [-78.904, 38.40529], [-78.90376, 38.40547], [-78.90371, 38.40552], [-78.90338, 38.40576], [-78.90307, 38.40598], [-78.90277, 38.40619], [-78.90245, 38.40641], [-78.90205, 38.40667], [-78.90169, 38.4069], [-78.9014, 38.40708], [-78.90105, 38.40729], [-78.90072, 38.40748], [-78.90036, 38.40767], [-78.90001, 38.40787], [-78.89943, 38.40817], [-78.89906, 38.40835], [-78.89873, 38.40852], [-78.89837, 38.40871], [-78.89779, 38.40901], [-78.89743, 38.4092], [-78.89698, 38.40943], [-78.89674, 38.40955], [-78.89615, 38.40986], [-78.8958, 38.41004], [-78.89511, 38.41039], [-78.8944, 38.41076], [-78.89367, 38.41114], [-78.89332, 38.41132], [-78.89287, 38.41156], [-78.8924, 38.4118], [-78.89171, 38.41215], [-78.89082, 38.41261], [-78.8903, 38.41287], [-78.88996, 38.41306], [-78.8895, 38.41332], [-78.8893, 38.41344], [-78.88901, 38.41362], [-78.88872, 38.4138], [-78.88853, 38.41393], [-78.88835, 38.41405], [-78.88825, 38.41412], [-78.88798, 38.41431], [-78.8877, 38.41451], [-78.88761, 38.41458], [-78.88743, 38.41471], [-78.88726, 38.41485], [-78.88708, 38.41499], [-78.8868, 38.41523], [-78.88633, 38.41564], [-78.88606, 38.41589], [-78.88568, 38.41626], [-78.88539, 38.41656], [-78.88529, 38.41667], [-78.88511, 38.41686], [-78.88504, 38.41693], [-78.88488, 38.41712], [-78.88464, 38.41741], [-78.8845, 38.41758], [-78.88428, 38.41785], [-78.88424, 38.4179], [-78.88394, 38.41829], [-78.88376, 38.41852], [-78.88326, 38.41916], [-78.88296, 38.41954], [-78.88178, 38.42106], [-78.88144, 38.42149], [-78.88106, 38.42198], [-78.88046, 38.42275], [-78.88034, 38.42291], [-78.88015, 38.42316], [-78.87994, 38.42342], [-78.87989, 38.42349], [-78.87956, 38.42388], [-78.87942, 38.42406], [-78.87884, 38.4248], [-78.87869, 38.425], [-78.87837, 38.42541], [-78.87817, 38.42566], [-78.87756, 38.42644], [-78.87735, 38.42672], [-78.87692, 38.4273], [-78.87671, 38.42756], [-78.87614, 38.42829], [-78.87593, 38.42856], [-78.87563, 38.42895], [-78.87557, 38.42903], [-78.87548, 38.42916], [-78.87519, 38.42951], [-78.87499, 38.42976], [-78.87494, 38.42982], [-78.87474, 38.43005], [-78.8745, 38.43032], [-78.87445, 38.43037], [-78.87424, 38.43058], [-78.87404, 38.43079], [-78.87376, 38.43105], [-78.87348, 38.43131], [-78.87319, 38.43155], [-78.87298, 38.43172], [-78.87285, 38.43182], [-78.87261, 38.43201], [-78.8722, 38.4323], [-78.87188, 38.43252], [-78.87165, 38.43266], [-78.87123, 38.43292], [-78.87101, 38.43305], [-78.87062, 38.43326], [-78.87042, 38.43337], [-78.87004, 38.43356], [-78.86956, 38.43378], [-78.86907, 38.43399], [-78.86889, 38.43406], [-78.86871, 38.43413], [-78.86832, 38.43428], [-78.86802, 38.43438], [-78.86777, 38.43447], [-78.86751, 38.43455], [-78.86712, 38.43466], [-78.86694, 38.43471], [-78.86672, 38.43477], [-78.86632, 38.43487], [-78.86578, 38.43499], [-78.86537, 38.43507], [-78.86497, 38.43514], [-78.8647, 38.43518], [-78.86442, 38.43522], [-78.86405, 38.43527], [-78.86373, 38.4353], [-78.86359, 38.43531], [-78.8633, 38.43534], [-78.86304, 38.43535], [-78.86276, 38.43537], [-78.86234, 38.43539], [-78.86192, 38.4354], [-78.8615, 38.4354], [-78.85969, 38.43542], [-78.85941, 38.43543], [-78.85891, 38.43545], [-78.85853, 38.43547], [-78.85814, 38.4355], [-78.85788, 38.43552], [-78.85744, 38.43556], [-78.85722, 38.43558], [-78.85703, 38.43561], [-78.85658, 38.43567], [-78.85612, 38.43575], [-78.85558, 38.43586], [-78.85492, 38.43601], [-78.8546, 38.4361], [-78.85431, 38.43618], [-78.85417, 38.43623], [-78.85351, 38.43644], [-78.85313, 38.43658], [-78.85264, 38.43676], [-78.85217, 38.43695], [-78.85182, 38.4371], [-78.85109, 38.43745], [-78.85075, 38.43762], [-78.85058, 38.4377], [-78.85027, 38.43788], [-78.85022, 38.43791], [-78.85012, 38.43798], [-78.85008, 38.438], [-78.85002, 38.43804], [-78.84998, 38.43807], [-78.84956, 38.43833], [-78.84914, 38.43861], [-78.84884, 38.43883], [-78.84843, 38.43911], [-78.84804, 38.43943], [-78.84796, 38.43949], [-78.84747, 38.43993], [-78.84743, 38.43997], [-78.84697, 38.44042], [-78.84691, 38.44049], [-78.84673, 38.44068], [-78.84646, 38.44096], [-78.84622, 38.44123], [-78.84589, 38.44156], [-78.84555, 38.44192], [-78.84522, 38.44225], [-78.84488, 38.44261], [-78.84412, 38.44339], [-78.84386, 38.44367], [-78.84335, 38.4442], [-78.843, 38.44455], [-78.84283, 38.44472], [-78.84264, 38.44493], [-78.84225, 38.44532], [-78.84207, 38.44551], [-78.84115, 38.44646], [-78.84098, 38.44664], [-78.84085, 38.44677], [-78.84061, 38.44701], [-78.8403, 38.44734], [-78.84002, 38.44763], [-78.8398, 38.44784], [-78.83938, 38.44827], [-78.83915, 38.4485], [-78.83901, 38.44864], [-78.83869, 38.44895], [-78.83814, 38.44948], [-78.83738, 38.45022], [-78.83708, 38.4505], [-78.83689, 38.45068], [-78.83644, 38.4511], [-78.83618, 38.45133], [-78.836, 38.4515], [-78.83537, 38.45207], [-78.83484, 38.45255], [-78.83463, 38.45272], [-78.83435, 38.45297], [-78.83392, 38.45335], [-78.83258, 38.45453], [-78.82574, 38.46052], [-78.82569, 38.46056], [-78.82523, 38.46097], [-78.82496, 38.46123], [-78.8246, 38.46159], [-78.8244, 38.46179], [-78.82372, 38.46252], [-78.82128, 38.46521], [-78.81821, 38.46859], [-78.81722, 38.46969], [-78.81586, 38.47118], [-78.81554, 38.47154], [-78.8153, 38.47182], [-78.81494, 38.47227], [-78.81457, 38.47274], [-78.81409, 38.47341], [-78.81371, 38.474], [-78.81335, 38.47459], [-78.81323, 38.4748], [-78.81312, 38.47499], [-78.81295, 38.4753], [-78.81275, 38.4757], [-78.8126, 38.47601], [-78.81236, 38.47653], [-78.81214, 38.47705], [-78.81201, 38.47737], [-78.81186, 38.47778], [-78.81087, 38.48065], [-78.8104, 38.48192], [-78.81014, 38.48254], [-78.80975, 38.48336], [-78.80958, 38.48368], [-78.80942, 38.48397], [-78.8092, 38.48437], [-78.80902, 38.48466], [-78.80883, 38.48496], [-78.80864, 38.48526], [-78.80836, 38.48566], [-78.80798, 38.48618], [-78.80737, 38.48691], [-78.80715, 38.48717], [-78.80678, 38.48759], [-78.8061, 38.4883], [-78.80518, 38.48925], [-78.80456, 38.4899], [-78.80424, 38.49025], [-78.80391, 38.49058], [-78.80354, 38.49097], [-78.80313, 38.49139], [-78.80235, 38.4922], [-78.80209, 38.49245], [-78.80169, 38.49288], [-78.80146, 38.49311], [-78.80129, 38.49329], [-78.80068, 38.49392], [-78.80023, 38.49439], [-78.79919, 38.49545], [-78.79849, 38.49617], [-78.79759, 38.49704], [-78.79707, 38.49752], [-78.79651, 38.49803], [-78.79578, 38.49867], [-78.7951, 38.49925], [-78.79471, 38.49956], [-78.79425, 38.49993], [-78.7913, 38.5023], [-78.79098, 38.50256], [-78.7891, 38.50408], [-78.7889, 38.50424], [-78.78851, 38.50456], [-78.7877, 38.50523], [-78.78737, 38.50551], [-78.78691, 38.50593], [-78.78673, 38.50609], [-78.78618, 38.50661], [-78.78558, 38.50721], [-78.78523, 38.50756], [-78.78496, 38.50786], [-78.78458, 38.50826], [-78.78426, 38.50862], [-78.78342, 38.50962], [-78.78326, 38.50982], [-78.78312, 38.50999], [-78.7826, 38.51069], [-78.78254, 38.51076], [-78.78214, 38.51132], [-78.78151, 38.51224], [-78.78134, 38.51251], [-78.78103, 38.51301], [-78.78095, 38.51316], [-78.78073, 38.51354], [-78.77909, 38.51636], [-78.77892, 38.51666], [-78.77827, 38.51778], [-78.77697, 38.52003], [-78.77653, 38.52077], [-78.77437, 38.52451], [-78.77389, 38.52533], [-78.77368, 38.52569], [-78.77295, 38.52696], [-78.77275, 38.5273], [-78.77237, 38.52796], [-78.77097, 38.53038], [-78.77064, 38.53096], [-78.76991, 38.53217], [-78.7693, 38.53312], [-78.76894, 38.53364], [-78.76847, 38.53428], [-78.76809, 38.53478], [-78.76755, 38.53545], [-78.76679, 38.53634], [-78.76619, 38.53699], [-78.76543, 38.53778], [-78.76459, 38.53863], [-78.76381, 38.53941], [-78.76367, 38.53956], [-78.76324, 38.54], [-78.76271, 38.54051], [-78.76218, 38.54106], [-78.76198, 38.54126], [-78.75952, 38.54374], [-78.75789, 38.54536], [-78.75773, 38.54553], [-78.75744, 38.54583], [-78.7567, 38.54658], [-78.75559, 38.54768], [-78.75486, 38.54844], [-78.75357, 38.54973], [-78.75279, 38.55053], [-78.75203, 38.55129], [-78.75157, 38.55175], [-78.75059, 38.55274], [-78.75016, 38.55318], [-78.74936, 38.55402], [-78.74889, 38.55456], [-78.74866, 38.55484], [-78.7483, 38.5553], [-78.74788, 38.55585], [-78.74761, 38.55623], [-78.74729, 38.55672], [-78.74694, 38.55729], [-78.74687, 38.5574], [-78.74671, 38.5577], [-78.74644, 38.55819], [-78.74599, 38.55906], [-78.74591, 38.55922], [-78.74581, 38.55945], [-78.74542, 38.56045], [-78.74526, 38.56092], [-78.74516, 38.56129], [-78.74507, 38.56159], [-78.74475, 38.56265], [-78.74458, 38.56317], [-78.7444, 38.56379], [-78.7437, 38.56604], [-78.74356, 38.56643], [-78.74343, 38.56685], [-78.74315, 38.56772], [-78.74291, 38.56839], [-78.74266, 38.56905], [-78.74244, 38.56958], [-78.74188, 38.57083], [-78.74171, 38.5712], [-78.74129, 38.57201], [-78.74107, 38.5724], [-78.74084, 38.57281], [-78.74054, 38.5733], [-78.74026, 38.57375], [-78.74017, 38.5739], [-78.73943, 38.57497], [-78.73927, 38.57519], [-78.73853, 38.57619], [-78.73758, 38.57742], [-78.73625, 38.57916], [-78.73562, 38.57997], [-78.73532, 38.58036], [-78.73101, 38.58599], [-78.73062, 38.58651], [-78.73042, 38.58675], [-78.7282, 38.58965], [-78.72769, 38.59032], [-78.72712, 38.59107], [-78.72659, 38.59175], [-78.72561, 38.59303], [-78.72483, 38.59405], [-78.72319, 38.59619], [-78.72204, 38.59768], [-78.72161, 38.59825], [-78.72075, 38.59937], [-78.71742, 38.6037], [-78.71697, 38.60427], [-78.71634, 38.60502], [-78.7157, 38.60573], [-78.71518, 38.60628], [-78.71479, 38.60668], [-78.71409, 38.60736], [-78.71283, 38.60852], [-78.71064, 38.61053], [-78.70922, 38.61184], [-78.70784, 38.61312], [-78.70732, 38.61364], [-78.70674, 38.61425], [-78.70642, 38.61461], [-78.70597, 38.61515], [-78.70559, 38.61562], [-78.70517, 38.6162], [-78.70469, 38.61689], [-78.70431, 38.61751], [-78.70415, 38.61776], [-78.70136, 38.62242], [-78.701, 38.62301], [-78.70088, 38.62322], [-78.70079, 38.62337], [-78.70034, 38.62411], [-78.70016, 38.6244], [-78.69989, 38.62479], [-78.69954, 38.62526], [-78.69916, 38.62574], [-78.69871, 38.62626], [-78.69845, 38.62654], [-78.69767, 38.62731], [-78.69711, 38.62781], [-78.69694, 38.62795], [-78.69662, 38.62821], [-78.69631, 38.62845], [-78.69568, 38.6289], [-78.69493, 38.62941], [-78.69376, 38.63019], [-78.68709, 38.63461], [-78.6865, 38.63503], [-78.68635, 38.63513], [-78.68596, 38.63542], [-78.68575, 38.63558], [-78.68508, 38.63611], [-78.68467, 38.63645], [-78.6838, 38.63724], [-78.68335, 38.6377], [-78.68323, 38.63782], [-78.68274, 38.63833], [-78.68228, 38.63886], [-78.68189, 38.63933], [-78.6811, 38.64038], [-78.68024, 38.64167], [-78.67994, 38.64214], [-78.67797, 38.64512], [-78.67741, 38.64598], [-78.67614, 38.64793], [-78.67575, 38.64853], [-78.67422, 38.65089], [-78.67255, 38.6534], [-78.6704, 38.65672], [-78.67017, 38.65706], [-78.66986, 38.65754], [-78.66798, 38.66042], [-78.66738, 38.66137], [-78.66684, 38.66232], [-78.6665, 38.66294], [-78.66625, 38.66345], [-78.66527, 38.66563], [-78.66313, 38.67093], [-78.66111, 38.67581], [-78.66074, 38.67669], [-78.65913, 38.68069], [-78.65829, 38.68267], [-78.65827, 38.68271], [-78.65805, 38.6833], [-78.65767, 38.68425], [-78.65759, 38.68446], [-78.65743, 38.68484], [-78.65626, 38.68766], [-78.65593, 38.6885], [-78.65517, 38.6903], [-78.65467, 38.69185], [-78.65439, 38.69326], [-78.65437, 38.69337], [-78.65425, 38.69424], [-78.65413, 38.69576], [-78.65415, 38.69655], [-78.65419, 38.69731], [-78.65425, 38.69806], [-78.65434, 38.69865], [-78.65447, 38.6994], [-78.65458, 38.69991], [-78.65459, 38.69998], [-78.65461, 38.70006], [-78.65476, 38.7006], [-78.65494, 38.70122], [-78.65501, 38.70146], [-78.65539, 38.70249], [-78.65573, 38.7034], [-78.65627, 38.70483], [-78.65648, 38.70538], [-78.65669, 38.70591], [-78.65681, 38.70629], [-78.65705, 38.7069], [-78.65757, 38.70829], [-78.65793, 38.7092], [-78.65875, 38.71139], [-78.65956, 38.71361], [-78.65971, 38.71409], [-78.65983, 38.71447], [-78.65987, 38.71465], [-78.65993, 38.71489], [-78.6601, 38.71567], [-78.66021, 38.71646], [-78.66024, 38.71678], [-78.66026, 38.71758], [-78.66024, 38.7186], [-78.66021, 38.71894], [-78.66013, 38.71963], [-78.66008, 38.71991], [-78.65999, 38.72036], [-78.65982, 38.72103], [-78.65945, 38.72215], [-78.6593, 38.72252], [-78.65908, 38.72301], [-78.65902, 38.72315], [-78.65884, 38.72352], [-78.65849, 38.72414], [-78.65846, 38.72419], [-78.65823, 38.72453], [-78.65796, 38.72493], [-78.65743, 38.7257], [-78.65696, 38.7263], [-78.65637, 38.72696], [-78.65624, 38.7271], [-78.65574, 38.72762], [-78.65379, 38.7297], [-78.6523, 38.73128], [-78.65204, 38.73157], [-78.6518, 38.73187], [-78.65163, 38.73213], [-78.65158, 38.7322], [-78.65134, 38.73253], [-78.65096, 38.73314], [-78.65072, 38.73371], [-78.65055, 38.73423], [-78.65041, 38.73492], [-78.65037, 38.73531], [-78.65036, 38.73576], [-78.65039, 38.73671], [-78.65041, 38.73704], [-78.65049, 38.73798], [-78.6508, 38.74077], [-78.65092, 38.7423], [-78.65093, 38.74285], [-78.6509, 38.7435], [-78.65088, 38.74376], [-78.65081, 38.74437], [-78.65068, 38.7451], [-78.65047, 38.74594], [-78.65036, 38.74632], [-78.65011, 38.74699], [-78.64991, 38.74748], [-78.6497, 38.74793], [-78.64944, 38.74844], [-78.64919, 38.74883], [-78.64856, 38.7498], [-78.6485, 38.74989], [-78.64823, 38.75026], [-78.64797, 38.7506], [-78.64794, 38.75064], [-78.64767, 38.75096], [-78.64739, 38.75127], [-78.64647, 38.75218], [-78.64646, 38.75219], [-78.64613, 38.75248], [-78.64566, 38.75286], [-78.64346, 38.75453], [-78.63656, 38.75979], [-78.63437, 38.76148], [-78.63367, 38.76202], [-78.63291, 38.7626], [-78.63014, 38.76469], [-78.62819, 38.76621], [-78.62745, 38.76677], [-78.62618, 38.76785], [-78.62502, 38.76887], [-78.6246, 38.76924], [-78.62394, 38.76984], [-78.62315, 38.77058], [-78.62294, 38.77077], [-78.62248, 38.77122], [-78.62195, 38.77174], [-78.62128, 38.77243], [-78.62101, 38.77269], [-78.62054, 38.77319], [-78.61994, 38.77384], [-78.61886, 38.77505], [-78.61879, 38.77512], [-78.61794, 38.77612], [-78.61721, 38.777], [-78.61629, 38.77817], [-78.61594, 38.77864], [-78.61525, 38.77957], [-78.61424, 38.781], [-78.61351, 38.78212], [-78.61311, 38.78275], [-78.61226, 38.78413], [-78.61218, 38.78426], [-78.61186, 38.78484], [-78.61139, 38.78567], [-78.61103, 38.78638], [-78.61094, 38.78655], [-78.6102, 38.78796], [-78.60899, 38.79054], [-78.6072, 38.79436], [-78.60717, 38.79442], [-78.60598, 38.79696], [-78.60424, 38.80071], [-78.60358, 38.80213], [-78.60338, 38.80254], [-78.60303, 38.80321], [-78.60266, 38.80387], [-78.60186, 38.80516], [-78.60138, 38.80587], [-78.6011, 38.80628], [-78.60056, 38.80701], [-78.59988, 38.80783], [-78.59925, 38.8086], [-78.59834, 38.80961], [-78.59809, 38.80986], [-78.59792, 38.81003], [-78.59746, 38.8105], [-78.59724, 38.81071], [-78.59694, 38.81099], [-78.59584, 38.81202], [-78.59446, 38.81339], [-78.59132, 38.81617], [-78.58737, 38.81979], [-78.58448, 38.82242], [-78.58251, 38.82423], [-78.58128, 38.82533], [-78.58098, 38.82561], [-78.57821, 38.82819], [-78.57754, 38.82881], [-78.57712, 38.82917], [-78.57603, 38.83016], [-78.57513, 38.83099], [-78.57438, 38.83162], [-78.57397, 38.83195], [-78.57319, 38.83253], [-78.573, 38.83266], [-78.57227, 38.83316], [-78.57138, 38.83369], [-78.57102, 38.83391], [-78.5702, 38.83441], [-78.56917, 38.83507], [-78.56903, 38.83516], [-78.56678, 38.83653], [-78.5636, 38.83847], [-78.56333, 38.83864], [-78.56243, 38.83921], [-78.55957, 38.84097], [-78.55803, 38.84189], [-78.5568, 38.84266], [-78.5555, 38.84347], [-78.5534, 38.84476], [-78.54879, 38.84758], [-78.54783, 38.84815], [-78.54585, 38.84935], [-78.54531, 38.8497], [-78.54472, 38.85006], [-78.54438, 38.85029], [-78.54339, 38.8509], [-78.54244, 38.85154], [-78.54126, 38.8524], [-78.54023, 38.85319], [-78.53878, 38.85445], [-78.53814, 38.85504], [-78.53779, 38.85541], [-78.53725, 38.85595], [-78.53644, 38.85678], [-78.53584, 38.85744], [-78.53486, 38.85864], [-78.53375, 38.86021], [-78.53318, 38.86108], [-78.5331, 38.8612], [-78.53271, 38.86186], [-78.53269, 38.8619], [-78.53243, 38.86234], [-78.53167, 38.8637], [-78.53111, 38.8647], [-78.53088, 38.86512], [-78.53014, 38.86651], [-78.52885, 38.86889], [-78.52826, 38.86995], [-78.5279, 38.87054], [-78.5276, 38.87114], [-78.52755, 38.87124], [-78.5272, 38.87187], [-78.52666, 38.87294], [-78.52656, 38.87311], [-78.52556, 38.8749], [-78.52466, 38.87659], [-78.52426, 38.8773], [-78.52408, 38.87761], [-78.52354, 38.87861], [-78.52331, 38.87904], [-78.52254, 38.88043], [-78.52177, 38.88189], [-78.52027, 38.88461], [-78.51973, 38.88547], [-78.5196, 38.8857], [-78.51938, 38.88606], [-78.51901, 38.88664], [-78.51872, 38.88707], [-78.5187, 38.88711], [-78.51776, 38.88849], [-78.51757, 38.88877], [-78.51667, 38.89005], [-78.51477, 38.89247], [-78.51444, 38.89287], [-78.51401, 38.89338], [-78.51362, 38.89383], [-78.51275, 38.89482], [-78.51105, 38.89663], [-78.50968, 38.89801], [-78.50793, 38.89971], [-78.50308, 38.90442], [-78.50183, 38.90569], [-78.50126, 38.90629], [-78.50015, 38.9075], [-78.49912, 38.90866], [-78.49832, 38.9096], [-78.49682, 38.91141], [-78.49634, 38.912], [-78.49536, 38.91321], [-78.49505, 38.91362], [-78.49465, 38.91408], [-78.48979, 38.9201], [-78.4888, 38.92144], [-78.48847, 38.92185], [-78.48802, 38.92235], [-78.4873, 38.92322], [-78.48701, 38.92347], [-78.48569, 38.92497], [-78.48475, 38.92595], [-78.48434, 38.92638], [-78.48356, 38.9272], [-78.48179, 38.92891], [-78.48048, 38.93009], [-78.47925, 38.93113], [-78.47879, 38.93153], [-78.47727, 38.93286], [-78.47617, 38.93383], [-78.47573, 38.93419], [-78.47528, 38.9346], [-78.47483, 38.93496], [-78.47457, 38.93521], [-78.47348, 38.93614], [-78.47257, 38.9369], [-78.46889, 38.94011], [-78.46754, 38.94123], [-78.46505, 38.94337], [-78.46459, 38.94377], [-78.46286, 38.94529], [-78.4619, 38.94612], [-78.46, 38.94776], [-78.45871, 38.94888], [-78.45752, 38.9499], [-78.45636, 38.95089], [-78.45537, 38.9517], [-78.45484, 38.95211], [-78.45402, 38.95278], [-78.45301, 38.95353], [-78.45283, 38.95366], [-78.45214, 38.95417], [-78.45197, 38.95428], [-78.45161, 38.95454], [-78.45081, 38.9551], [-78.45051, 38.95532], [-78.44591, 38.95854], [-78.43996, 38.96276], [-78.43683, 38.96494], [-78.43624, 38.96538], [-78.43545, 38.96595], [-78.43453, 38.96662], [-78.4334, 38.96749], [-78.43251, 38.96819], [-78.43166, 38.96889], [-78.43048, 38.96989], [-78.4301, 38.97021], [-78.42958, 38.97067], [-78.42931, 38.97092], [-78.428, 38.97212], [-78.42702, 38.97309], [-78.42638, 38.97372], [-78.42514, 38.97502], [-78.42393, 38.97633], [-78.4234, 38.97695], [-78.42259, 38.97791], [-78.41926, 38.98207], [-78.41909, 38.98228], [-78.41842, 38.98306], [-78.4175, 38.98405], [-78.4168, 38.98475], [-78.41595, 38.98556], [-78.41551, 38.98595], [-78.41443, 38.98687], [-78.41385, 38.98734], [-78.41286, 38.98808], [-78.41246, 38.98837], [-78.41204, 38.98866], [-78.41129, 38.98917], [-78.41015, 38.9899], [-78.40936, 38.99037], [-78.40876, 38.99071], [-78.40798, 38.99113], [-78.40754, 38.99136], [-78.40713, 38.99157], [-78.40598, 38.99213], [-78.40482, 38.99267], [-78.40453, 38.9928], [-78.40367, 38.99321], [-78.40256, 38.99372], [-78.39758, 38.99603], [-78.39569, 38.99692], [-78.39407, 38.99768], [-78.38861, 39.00022], [-78.38582, 39.00152], [-78.38426, 39.00225], [-78.38317, 39.00275], [-78.37767, 39.00531], [-78.37333, 39.00731], [-78.37273, 39.00759], [-78.36842, 39.0096], [-78.36447, 39.01144], [-78.36256, 39.01234], [-78.36187, 39.01266], [-78.36107, 39.01303], [-78.36099, 39.01306], [-78.36098, 39.01307], [-78.35931, 39.01384], [-78.35888, 39.01403], [-78.35846, 39.01417], [-78.35806, 39.01429], [-78.35749, 39.01446], [-78.35682, 39.0146], [-78.35619, 39.01471], [-78.35552, 39.01479], [-78.35461, 39.01482], [-78.35387, 39.01481], [-78.35293, 39.01474], [-78.35215, 39.01463], [-78.35142, 39.01447], [-78.35037, 39.01417], [-78.34878, 39.01357], [-78.34807, 39.0133], [-78.34507, 39.0121], [-78.3447, 39.01196], [-78.34072, 39.0104], [-78.33873, 39.00962], [-78.33676, 39.00885], [-78.33636, 39.0087], [-78.33489, 39.00812], [-78.33336, 39.00752], [-78.33256, 39.0072], [-78.32934, 39.00595], [-78.32718, 39.0051], [-78.32635, 39.0048], [-78.32583, 39.00463], [-78.32535, 39.00448], [-78.32458, 39.00427], [-78.32411, 39.00415], [-78.32287, 39.00387], [-78.32225, 39.00377], [-78.32193, 39.00372], [-78.32173, 39.00369], [-78.32115, 39.00362], [-78.32028, 39.00354], [-78.3197, 39.0035], [-78.31909, 39.00347], [-78.31851, 39.00346], [-78.3178, 39.00346], [-78.31737, 39.00347], [-78.3165, 39.00351], [-78.31566, 39.00358], [-78.31495, 39.00366], [-78.31439, 39.00374], [-78.31383, 39.00383], [-78.31341, 39.00391], [-78.3132, 39.00395], [-78.31256, 39.00408], [-78.31176, 39.00428], [-78.31136, 39.00439], [-78.31069, 39.00459], [-78.31016, 39.00477], [-78.30818, 39.00545], [-78.30752, 39.00568], [-78.30599, 39.00623], [-78.30454, 39.00674], [-78.30372, 39.00703], [-78.30152, 39.00779], [-78.30102, 39.00798], [-78.3001, 39.00824], [-78.29966, 39.00837], [-78.29893, 39.00842], [-78.29806, 39.00845], [-78.29679, 39.00821], [-78.29603, 39.00798], [-78.29573, 39.00782], [-78.29554, 39.00773], [-78.29535, 39.00762], [-78.29468, 39.00725], [-78.29429, 39.00699], [-78.29384, 39.00669], [-78.29339, 39.00636], [-78.29277, 39.00595], [-78.28974, 39.00395], [-78.28891, 39.00341], [-78.28818, 39.00294], [-78.28776, 39.00268], [-78.28742, 39.0025], [-78.28685, 39.00221], [-78.28626, 39.00194], [-78.28602, 39.00184], [-78.28561, 39.00168], [-78.28524, 39.00154], [-78.2847, 39.00137], [-78.28419, 39.00122], [-78.283, 39.00092], [-78.28103, 39.00044], [-78.2805, 39.00031], [-78.27923, 39], [-78.27398, 38.9987], [-78.27322, 38.99851], [-78.27208, 38.99823], [-78.27157, 38.99811], [-78.27092, 38.99794], [-78.2704, 38.99782], [-78.27014, 38.99775], [-78.26941, 38.99757], [-78.26766, 38.99714], [-78.26656, 38.99686], [-78.26574, 38.99666], [-78.26535, 38.99657], [-78.26414, 38.99628], [-78.26337, 38.99612], [-78.26244, 38.99594], [-78.26151, 38.99577], [-78.26046, 38.99561], [-78.2571, 38.99512], [-78.25658, 38.99503], [-78.25592, 38.99491], [-78.25585, 38.99489], [-78.25561, 38.99484], [-78.255, 38.9947], [-78.25461, 38.99461], [-78.25411, 38.99447], [-78.25373, 38.99436], [-78.2531, 38.99417], [-78.25266, 38.99402], [-78.25236, 38.99391], [-78.25165, 38.99363], [-78.25093, 38.99333], [-78.25036, 38.99306], [-78.25016, 38.99296], [-78.25002, 38.99289], [-78.24957, 38.99266], [-78.24912, 38.99241], [-78.24803, 38.99181], [-78.2466, 38.99101], [-78.24495, 38.99009], [-78.24155, 38.9882], [-78.24053, 38.98764], [-78.23858, 38.98654], [-78.23781, 38.98613], [-78.23637, 38.98533], [-78.23536, 38.98476], [-78.23385, 38.98392], [-78.23165, 38.9827], [-78.23021, 38.98193], [-78.22872, 38.98114], [-78.22834, 38.98094], [-78.22752, 38.98052], [-78.22673, 38.98012], [-78.22575, 38.97962], [-78.22438, 38.97893], [-78.22147, 38.97744], [-78.21975, 38.97656], [-78.21485, 38.97407], [-78.21393, 38.97359], [-78.21303, 38.97312], [-78.21178, 38.97244], [-78.21149, 38.97228], [-78.2109, 38.97194], [-78.21014, 38.9715], [-78.20966, 38.97121], [-78.20907, 38.97086], [-78.20674, 38.96942], [-78.20648, 38.96926], [-78.20307, 38.96712], [-78.20135, 38.96605], [-78.20012, 38.96528], [-78.1995, 38.9649], [-78.19907, 38.96463], [-78.19661, 38.96309], [-78.19654, 38.96304], [-78.19553, 38.96243], [-78.19544, 38.96237], [-78.19476, 38.96194], [-78.19318, 38.96095], [-78.19256, 38.96056], [-78.19064, 38.95937], [-78.18965, 38.95874], [-78.18877, 38.95816], [-78.18813, 38.95773], [-78.18684, 38.95685], [-78.18622, 38.95642], [-78.1857, 38.95606], [-78.18509, 38.95564], [-78.18468, 38.95535], [-78.18466, 38.95534], [-78.18429, 38.95508], [-78.18354, 38.95455], [-78.18257, 38.95391], [-78.18213, 38.95363], [-78.18144, 38.95323], [-78.18095, 38.95298], [-78.18051, 38.95277], [-78.17988, 38.95248], [-78.17967, 38.9524], [-78.17924, 38.95223], [-78.17873, 38.95204], [-78.17834, 38.95191], [-78.17795, 38.95179], [-78.17754, 38.95168], [-78.17713, 38.95157], [-78.17646, 38.95141], [-78.17507, 38.95113], [-78.1748, 38.95108], [-78.17413, 38.95094], [-78.1737, 38.95085], [-78.17279, 38.95067], [-78.17095, 38.95029], [-78.16908, 38.94991], [-78.1688, 38.94985], [-78.16769, 38.94962], [-78.16339, 38.94873], [-78.16212, 38.94848], [-78.16102, 38.94825], [-78.15864, 38.94778], [-78.15261, 38.94656], [-78.15146, 38.94632], [-78.15105, 38.94623], [-78.15018, 38.94602], [-78.14938, 38.94581], [-78.14874, 38.94564], [-78.1478, 38.94535], [-78.14689, 38.94508], [-78.14044, 38.94293], [-78.13844, 38.94226], [-78.13618, 38.94151], [-78.13594, 38.94142], [-78.13555, 38.94127], [-78.13501, 38.94104], [-78.13463, 38.94085], [-78.13426, 38.94066], [-78.13389, 38.94044], [-78.13352, 38.94021], [-78.13316, 38.93997], [-78.13286, 38.93975], [-78.1325, 38.93946], [-78.13223, 38.93923], [-78.13199, 38.939], [-78.13169, 38.93871], [-78.1315, 38.93851], [-78.13118, 38.93814], [-78.13096, 38.93786], [-78.13077, 38.9376], [-78.13069, 38.93748], [-78.1304, 38.937], [-78.13027, 38.93678], [-78.13008, 38.93641], [-78.12999, 38.9362], [-78.12984, 38.93583], [-78.12971, 38.93547], [-78.1296, 38.93509], [-78.12951, 38.9347], [-78.12946, 38.93436], [-78.1294, 38.93394], [-78.1294, 38.9339], [-78.12938, 38.93364], [-78.12938, 38.93327], [-78.12938, 38.93296], [-78.12941, 38.93256], [-78.12977, 38.92931], [-78.12986, 38.92832], [-78.12988, 38.92797], [-78.12988, 38.92756], [-78.12986, 38.92723], [-78.12983, 38.92695], [-78.12982, 38.92688], [-78.12978, 38.92656], [-78.12969, 38.92614], [-78.12961, 38.92581], [-78.12949, 38.92541], [-78.12939, 38.92514], [-78.12917, 38.92464], [-78.12896, 38.9242], [-78.12887, 38.92404], [-78.12862, 38.92363], [-78.12839, 38.92329], [-78.12818, 38.92302], [-78.1281, 38.92291], [-78.12754, 38.92227], [-78.1274, 38.92213], [-78.12713, 38.92186], [-78.12674, 38.92152], [-78.12635, 38.9212], [-78.12601, 38.92095], [-78.12549, 38.9206], [-78.12506, 38.92034], [-78.12469, 38.92014], [-78.12436, 38.91997], [-78.12368, 38.91966], [-78.12355, 38.9196], [-78.1234, 38.91954], [-78.12322, 38.91947], [-78.12258, 38.91926], [-78.12241, 38.9192], [-78.12185, 38.91903], [-78.12136, 38.91891], [-78.12092, 38.91882], [-78.12045, 38.91873], [-78.11994, 38.91865], [-78.11935, 38.91856], [-78.11568, 38.91797], [-78.11143, 38.9173], [-78.10523, 38.91631], [-78.10426, 38.91616], [-78.10399, 38.91611], [-78.10371, 38.91607], [-78.09955, 38.91541], [-78.09897, 38.91531], [-78.09456, 38.91461], [-78.09408, 38.91452], [-78.09371, 38.91444], [-78.09318, 38.9143], [-78.0927, 38.91415], [-78.09222, 38.91399], [-78.09172, 38.9138], [-78.09147, 38.91369], [-78.09092, 38.91343], [-78.08803, 38.91204], [-78.08752, 38.91181], [-78.08716, 38.91166], [-78.08695, 38.91158], [-78.08643, 38.91141], [-78.08603, 38.91129], [-78.08565, 38.9112], [-78.08522, 38.9111], [-78.08475, 38.91102], [-78.08443, 38.91097], [-78.08398, 38.91092], [-78.08352, 38.91088], [-78.08315, 38.91086], [-78.08275, 38.91085], [-78.08239, 38.91086], [-78.08192, 38.91088], [-78.08154, 38.91091], [-78.08111, 38.91095], [-78.08098, 38.91097], [-78.07786, 38.91139], [-78.0773, 38.91145], [-78.07686, 38.91149], [-78.07609, 38.91154], [-78.07592, 38.91155], [-78.07547, 38.91157], [-78.07503, 38.91157], [-78.07446, 38.91157], [-78.0738, 38.91155], [-78.07359, 38.91155], [-78.07293, 38.91151], [-78.0718, 38.9114], [-78.07068, 38.91128], [-78.06985, 38.91119], [-78.06557, 38.91075], [-78.06533, 38.91073], [-78.0648, 38.91068], [-78.06179, 38.91036], [-78.0609, 38.91028], [-78.0601, 38.91023], [-78.05941, 38.91019], [-78.05857, 38.91015], [-78.05774, 38.91014], [-78.05671, 38.91012], [-78.05649, 38.91012], [-78.05579, 38.91011], [-78.05534, 38.91011], [-78.05353, 38.91009], [-78.05302, 38.91008], [-78.05245, 38.91007], [-78.05202, 38.91007], [-78.05103, 38.91006], [-78.05042, 38.91006], [-78.04677, 38.91002], [-78.04424, 38.90997], [-78.04342, 38.90995], [-78.04259, 38.90991], [-78.04201, 38.90988], [-78.04136, 38.90982], [-78.04067, 38.90976], [-78.04011, 38.90971], [-78.03927, 38.90961], [-78.03835, 38.90949], [-78.03815, 38.90946], [-78.03782, 38.90941], [-78.03709, 38.9093], [-78.0364, 38.90918], [-78.03551, 38.90904], [-78.0322, 38.90851], [-78.03155, 38.9084], [-78.03046, 38.90823], [-78.02964, 38.90809], [-78.02881, 38.90796], [-78.02796, 38.90781], [-78.0279, 38.9078], [-78.02708, 38.90768], [-78.02606, 38.90752], [-78.02503, 38.90735], [-78.02275, 38.90698], [-78.02167, 38.90679], [-78.02082, 38.90666], [-78.01999, 38.90654], [-78.01878, 38.90639], [-78.01857, 38.90636], [-78.01832, 38.90635], [-78.01828, 38.90635], [-78.01775, 38.9063], [-78.01656, 38.90624], [-78.01572, 38.90621], [-78.01453, 38.90621], [-78.0134, 38.90626], [-78.01079, 38.9064], [-78.00976, 38.90645], [-78.00951, 38.90647], [-78.00723, 38.90658], [-78.00589, 38.90665], [-78.00571, 38.90666], [-78.00568, 38.90666], [-78.00509, 38.90669], [-78.00388, 38.90675], [-78.00302, 38.9068], [-78.00131, 38.90689], [-77.99893, 38.907], [-77.9981, 38.90705], [-77.99748, 38.90708], [-77.99489, 38.90722], [-77.99395, 38.90726], [-77.99377, 38.90727], [-77.99264, 38.90733], [-77.99223, 38.90735], [-77.98944, 38.9075], [-77.98805, 38.90763], [-77.98693, 38.90779], [-77.98645, 38.90786], [-77.98622, 38.9079], [-77.98558, 38.90802], [-77.98474, 38.90819], [-77.98366, 38.90845], [-77.9818, 38.90889], [-77.98139, 38.90899], [-77.98088, 38.90909], [-77.98026, 38.9092], [-77.97978, 38.90928], [-77.97947, 38.90932], [-77.97847, 38.9094], [-77.97827, 38.90942], [-77.97757, 38.90943], [-77.97716, 38.90944], [-77.97686, 38.90943], [-77.97627, 38.90941], [-77.97528, 38.90933], [-77.97478, 38.90926], [-77.97471, 38.90925], [-77.97426, 38.90918], [-77.97353, 38.90906], [-77.97324, 38.909], [-77.97276, 38.90889], [-77.97221, 38.90875], [-77.9715, 38.90856], [-77.97048, 38.9083], [-77.97032, 38.90827], [-77.96955, 38.90809], [-77.96921, 38.90803], [-77.96894, 38.90799], [-77.96864, 38.90795], [-77.968, 38.9079], [-77.96756, 38.90789], [-77.96712, 38.90789], [-77.96654, 38.90792], [-77.9662, 38.90795], [-77.96563, 38.90802], [-77.9655, 38.90804], [-77.96515, 38.9081], [-77.96488, 38.90816], [-77.96467, 38.90819], [-77.96387, 38.90833], [-77.96306, 38.90846], [-77.96268, 38.9085], [-77.9622, 38.90854], [-77.96182, 38.90856], [-77.96127, 38.90854], [-77.96058, 38.9085], [-77.96014, 38.90843], [-77.95977, 38.90837], [-77.95966, 38.90835], [-77.9592, 38.90825], [-77.95855, 38.90806], [-77.9563, 38.90735], [-77.95551, 38.9071], [-77.9524, 38.90612], [-77.95055, 38.90553], [-77.94923, 38.90511], [-77.94791, 38.90469], [-77.94734, 38.90451], [-77.94682, 38.90435], [-77.94554, 38.90395], [-77.94513, 38.90382], [-77.94406, 38.90348], [-77.94372, 38.90337], [-77.94277, 38.90307], [-77.94249, 38.90298], [-77.94214, 38.90287], [-77.94182, 38.90279], [-77.94106, 38.90259], [-77.93984, 38.90237], [-77.93952, 38.90232], [-77.9391, 38.90226], [-77.93833, 38.9022], [-77.93811, 38.90218], [-77.93744, 38.90216], [-77.93614, 38.90218], [-77.93554, 38.90218], [-77.93415, 38.9022], [-77.93356, 38.9022], [-77.93293, 38.90217], [-77.93232, 38.90215], [-77.93209, 38.90214], [-77.93126, 38.90208], [-77.92958, 38.90191], [-77.9288, 38.90179], [-77.92807, 38.90167], [-77.92744, 38.90155], [-77.92682, 38.90142], [-77.92608, 38.90123], [-77.92566, 38.90112], [-77.92511, 38.90099], [-77.92439, 38.90079], [-77.92382, 38.90061], [-77.92312, 38.90037], [-77.92242, 38.90012], [-77.92173, 38.89984], [-77.92092, 38.8995], [-77.92027, 38.8992], [-77.91946, 38.8988], [-77.91878, 38.89845], [-77.91811, 38.89807], [-77.91768, 38.89781], [-77.91698, 38.89738], [-77.91646, 38.89704], [-77.91603, 38.89673], [-77.91562, 38.89644], [-77.91503, 38.89599], [-77.91449, 38.89555], [-77.91381, 38.89496], [-77.91299, 38.8942], [-77.91113, 38.89244], [-77.90903, 38.89042], [-77.9087, 38.89007], [-77.90853, 38.88988], [-77.90838, 38.88971], [-77.90827, 38.88957], [-77.90815, 38.88943], [-77.90791, 38.88911], [-77.90768, 38.88878], [-77.90743, 38.88838], [-77.90724, 38.88805], [-77.90703, 38.88763], [-77.90688, 38.88728], [-77.90686, 38.88724], [-77.90668, 38.88677], [-77.90655, 38.88639], [-77.90648, 38.88617], [-77.90636, 38.88567], [-77.90628, 38.88523], [-77.90623, 38.8849], [-77.90621, 38.88463], [-77.90621, 38.88455], [-77.90613, 38.88389], [-77.90605, 38.88297], [-77.90589, 38.88137], [-77.90581, 38.88076], [-77.90574, 38.88039], [-77.90567, 38.88014], [-77.90557, 38.87984], [-77.90542, 38.87947], [-77.90528, 38.87917], [-77.90515, 38.87892], [-77.90498, 38.87866], [-77.90481, 38.8784], [-77.90462, 38.87816], [-77.90443, 38.87793], [-77.90426, 38.87775], [-77.90401, 38.8775], [-77.90373, 38.87726], [-77.90344, 38.87702], [-77.90317, 38.87682], [-77.90289, 38.87664], [-77.90232, 38.8763], [-77.90197, 38.8761], [-77.90137, 38.87577], [-77.89913, 38.87449], [-77.89787, 38.87379], [-77.89737, 38.8735], [-77.8953, 38.87233], [-77.8942, 38.8717], [-77.894, 38.87159], [-77.89287, 38.87093], [-77.89215, 38.8705], [-77.89107, 38.86988], [-77.88943, 38.86895], [-77.88908, 38.86875], [-77.88883, 38.86861], [-77.88815, 38.86822], [-77.88485, 38.86635], [-77.88399, 38.86587], [-77.88313, 38.86537], [-77.88074, 38.86402], [-77.87913, 38.8631], [-77.87856, 38.86279], [-77.87797, 38.8625], [-77.87738, 38.86221], [-77.87678, 38.86193], [-77.87617, 38.86167], [-77.87555, 38.86142], [-77.87488, 38.86117], [-77.87421, 38.86093], [-77.87352, 38.86071], [-77.87263, 38.86045], [-77.87201, 38.86027], [-77.87167, 38.86018], [-77.86497, 38.8583], [-77.86436, 38.85814], [-77.86386, 38.85803], [-77.86336, 38.85792], [-77.86278, 38.8578], [-77.86223, 38.85771], [-77.86179, 38.85764], [-77.86123, 38.85757], [-77.86057, 38.8575], [-77.86002, 38.85745], [-77.85947, 38.85742], [-77.85876, 38.8574], [-77.85814, 38.85739], [-77.85752, 38.8574], [-77.85635, 38.85745], [-77.85614, 38.85746], [-77.85413, 38.85757], [-77.85112, 38.85774], [-77.84734, 38.85795], [-77.84466, 38.8581], [-77.84332, 38.85816], [-77.84181, 38.85825], [-77.84076, 38.85831], [-77.83989, 38.85834], [-77.83824, 38.85839], [-77.83741, 38.8584], [-77.83648, 38.8584], [-77.83537, 38.8584], [-77.83403, 38.85838], [-77.83367, 38.85837], [-77.83324, 38.85836], [-77.83224, 38.85833], [-77.83048, 38.85825], [-77.82948, 38.85819], [-77.8282, 38.85809], [-77.81887, 38.85741], [-77.8172, 38.85729], [-77.81574, 38.85719], [-77.81102, 38.85683], [-77.80981, 38.85671], [-77.80862, 38.85655], [-77.80791, 38.85645], [-77.8076, 38.8564], [-77.80703, 38.85631], [-77.8063, 38.85618], [-77.80482, 38.85587], [-77.8042, 38.85573], [-77.8025, 38.85531], [-77.80117, 38.85492], [-77.80025, 38.85463], [-77.80006, 38.85457], [-77.79955, 38.8544], [-77.79879, 38.85414], [-77.79782, 38.85377], [-77.79733, 38.85358], [-77.79652, 38.85324], [-77.7959, 38.85297], [-77.7957, 38.85288], [-77.79526, 38.85268], [-77.79384, 38.852], [-77.79276, 38.85148], [-77.78992, 38.85008], [-77.78926, 38.84976], [-77.78795, 38.84912], [-77.78717, 38.84875], [-77.78676, 38.84858], [-77.78628, 38.84839], [-77.786, 38.84828], [-77.78595, 38.84826], [-77.78552, 38.84811], [-77.78502, 38.84795], [-77.78459, 38.84782], [-77.78452, 38.84781], [-77.78394, 38.84766], [-77.78348, 38.84755], [-77.78289, 38.84743], [-77.7823, 38.84733], [-77.78182, 38.84726], [-77.78122, 38.84719], [-77.78079, 38.84715], [-77.78025, 38.84711], [-77.7797, 38.84709], [-77.77905, 38.84709], [-77.77487, 38.84716], [-77.76843, 38.84729], [-77.76655, 38.84732], [-77.76456, 38.84737], [-77.76353, 38.84736], [-77.76242, 38.84732], [-77.7618, 38.8473], [-77.76137, 38.84728], [-77.76106, 38.84725], [-77.76042, 38.84718], [-77.76007, 38.84713], [-77.75949, 38.84704], [-77.75889, 38.84694], [-77.75828, 38.84681], [-77.7578, 38.8467], [-77.75769, 38.84668], [-77.75716, 38.84654], [-77.7568, 38.84645], [-77.75652, 38.84637], [-77.75576, 38.84612], [-77.7557, 38.8461], [-77.75493, 38.84583], [-77.7545, 38.84567], [-77.75349, 38.84525], [-77.7531, 38.84507], [-77.75246, 38.84475], [-77.75201, 38.84451], [-77.75156, 38.84425], [-77.75119, 38.84403], [-77.75072, 38.84373], [-77.75036, 38.84349], [-77.74965, 38.84298], [-77.74525, 38.83955], [-77.74428, 38.83877], [-77.74334, 38.83798], [-77.7426, 38.83734], [-77.74186, 38.8367], [-77.74178, 38.83661], [-77.74078, 38.83571], [-77.73989, 38.83488], [-77.73894, 38.83395], [-77.73772, 38.83274], [-77.7373, 38.83235], [-77.73677, 38.83189], [-77.73638, 38.83158], [-77.73596, 38.83126], [-77.7355, 38.83093], [-77.73502, 38.83061], [-77.73445, 38.83025], [-77.73384, 38.82989], [-77.73354, 38.82973], [-77.73307, 38.82947], [-77.73266, 38.82928], [-77.73218, 38.82906], [-77.73201, 38.82898], [-77.73147, 38.82876], [-77.73085, 38.82851], [-77.73043, 38.82836], [-77.7299, 38.82818], [-77.72944, 38.82804], [-77.72898, 38.8279], [-77.72823, 38.8277], [-77.72295, 38.82635], [-77.72247, 38.82622], [-77.71983, 38.82555], [-77.71623, 38.82462], [-77.71593, 38.82455], [-77.7149, 38.82429], [-77.71457, 38.82422], [-77.71413, 38.82413], [-77.71358, 38.82403], [-77.71303, 38.82395], [-77.71246, 38.82389], [-77.712, 38.82384], [-77.71143, 38.8238], [-77.71095, 38.82379], [-77.71056, 38.82377], [-77.71012, 38.82376], [-77.70992, 38.82376], [-77.7096, 38.82376], [-77.70931, 38.82377], [-77.70869, 38.82378], [-77.7077, 38.82383], [-77.70715, 38.82386], [-77.70659, 38.82391], [-77.70575, 38.82399], [-77.70481, 38.82411], [-77.70364, 38.82428], [-77.70317, 38.82434], [-77.70267, 38.82438], [-77.70225, 38.82441], [-77.70182, 38.82442], [-77.70128, 38.82443], [-77.70086, 38.82442], [-77.70035, 38.82439], [-77.69991, 38.82436], [-77.69984, 38.82435], [-77.69933, 38.8243], [-77.6988, 38.82422], [-77.69827, 38.82413], [-77.69796, 38.82407], [-77.69562, 38.82359], [-77.69316, 38.82307], [-77.69194, 38.82284], [-77.69159, 38.82277], [-77.69084, 38.82264], [-77.69071, 38.82262], [-77.68966, 38.82245], [-77.68859, 38.82229], [-77.6876, 38.82216], [-77.68642, 38.82202], [-77.68589, 38.82197], [-77.68544, 38.82192], [-77.68441, 38.82183], [-77.68339, 38.82175], [-77.68258, 38.8217], [-77.68133, 38.82164], [-77.68024, 38.8216], [-77.67977, 38.82159], [-77.67856, 38.82156], [-77.67779, 38.82155], [-77.67692, 38.82154], [-77.67562, 38.82151], [-77.67515, 38.82151], [-77.66688, 38.82138], [-77.66557, 38.82136], [-77.66444, 38.82134], [-77.66415, 38.82134], [-77.65878, 38.82125], [-77.65861, 38.82125], [-77.65803, 38.82125], [-77.65759, 38.82124], [-77.65753, 38.82124], [-77.65471, 38.82119], [-77.65345, 38.82117], [-77.65253, 38.82112], [-77.65149, 38.82103], [-77.65107, 38.821], [-77.65047, 38.82093], [-77.64962, 38.82081], [-77.649, 38.82072], [-77.64845, 38.82062], [-77.64779, 38.82049], [-77.64727, 38.82038], [-77.64638, 38.82017], [-77.64603, 38.82008], [-77.64521, 38.81985], [-77.64458, 38.81967], [-77.64375, 38.81939], [-77.64312, 38.81916], [-77.64241, 38.81888], [-77.64179, 38.81863], [-77.64117, 38.81836], [-77.64059, 38.81808], [-77.64033, 38.81796], [-77.64021, 38.8179], [-77.63985, 38.81773], [-77.63672, 38.81623], [-77.6357, 38.81573], [-77.63371, 38.81478], [-77.63271, 38.8143], [-77.63185, 38.81389], [-77.62981, 38.81291], [-77.62891, 38.81248], [-77.62703, 38.81158], [-77.6236, 38.80993], [-77.62218, 38.80924], [-77.62086, 38.80859], [-77.61946, 38.80788], [-77.61817, 38.80722], [-77.61451, 38.80531], [-77.61341, 38.80473], [-77.61338, 38.80472], [-77.61245, 38.80426], [-77.61199, 38.80405], [-77.61143, 38.80379], [-77.61138, 38.80376], [-77.61105, 38.80361], [-77.60983, 38.80308], [-77.60942, 38.80291], [-77.60841, 38.8025], [-77.60742, 38.80212], [-77.60639, 38.80175], [-77.60567, 38.8015], [-77.60526, 38.80136], [-77.60473, 38.80119], [-77.60381, 38.80091], [-77.60302, 38.80068], [-77.60251, 38.80054], [-77.60165, 38.80033], [-77.60137, 38.80026], [-77.60056, 38.80007], [-77.59976, 38.7999], [-77.59957, 38.79987], [-77.59933, 38.79982], [-77.59796, 38.79958], [-77.59771, 38.79954], [-77.59704, 38.79943], [-77.59121, 38.7986], [-77.58869, 38.79827], [-77.58637, 38.79794], [-77.58524, 38.79779], [-77.58466, 38.79771], [-77.58352, 38.79759], [-77.5826, 38.79751], [-77.58173, 38.79747], [-77.58065, 38.79742], [-77.57985, 38.79741], [-77.57938, 38.79739], [-77.57933, 38.79739], [-77.57835, 38.79739], [-77.57699, 38.7974], [-77.57601, 38.79745], [-77.57537, 38.7975], [-77.57114, 38.7978], [-77.56929, 38.79792], [-77.56555, 38.79819], [-77.56166, 38.79845], [-77.55589, 38.7988], [-77.55376, 38.79895], [-77.55089, 38.79915], [-77.5503, 38.79919], [-77.54841, 38.79933], [-77.54595, 38.79949], [-77.54106, 38.79981], [-77.53934, 38.79995], [-77.53655, 38.80015], [-77.53228, 38.80045], [-77.52914, 38.80067], [-77.52586, 38.8009], [-77.52317, 38.80108], [-77.52013, 38.80132], [-77.51943, 38.80137], [-77.51859, 38.80144], [-77.51466, 38.8017], [-77.51275, 38.80183], [-77.51226, 38.80188], [-77.51176, 38.80195], [-77.51124, 38.80203], [-77.51073, 38.80213], [-77.51024, 38.80225], [-77.50976, 38.80237], [-77.50928, 38.80251], [-77.50876, 38.80269], [-77.50825, 38.80287], [-77.50324, 38.80485], [-77.50187, 38.80538], [-77.49854, 38.8067], [-77.49285, 38.80893], [-77.49259, 38.80904], [-77.49141, 38.8095], [-77.49073, 38.80977], [-77.49039, 38.8099], [-77.48985, 38.81013], [-77.48976, 38.81016], [-77.48959, 38.81023], [-77.48813, 38.81081], [-77.48798, 38.81088], [-77.48794, 38.81089], [-77.48761, 38.81103], [-77.48689, 38.81131], [-77.48552, 38.81184], [-77.48102, 38.81361], [-77.48003, 38.81399], [-77.47953, 38.81418], [-77.47828, 38.81467], [-77.47778, 38.81486], [-77.4767, 38.81528], [-77.47631, 38.81544], [-77.47085, 38.81759], [-77.47, 38.81793], [-77.46911, 38.81831], [-77.46826, 38.81869], [-77.46779, 38.81891], [-77.46682, 38.81938], [-77.46648, 38.81956], [-77.46598, 38.81981], [-77.46589, 38.81986], [-77.46508, 38.8203], [-77.46469, 38.82052], [-77.46392, 38.82098], [-77.46357, 38.82118], [-77.46282, 38.82165], [-77.46217, 38.82207], [-77.46152, 38.8225], [-77.46074, 38.82305], [-77.45997, 38.82362], [-77.45945, 38.82401], [-77.45883, 38.82451], [-77.45804, 38.82516], [-77.45799, 38.8252], [-77.45772, 38.82544], [-77.45746, 38.82567], [-77.45717, 38.82591], [-77.45649, 38.82655], [-77.45593, 38.82709], [-77.45561, 38.82741], [-77.45535, 38.82766], [-77.45529, 38.82774], [-77.45476, 38.82829], [-77.45369, 38.82949], [-77.45117, 38.83231], [-77.45009, 38.83355], [-77.4496, 38.83407], [-77.4484, 38.83541], [-77.44832, 38.8355], [-77.44707, 38.83688], [-77.44657, 38.83746], [-77.44498, 38.83924], [-77.44496, 38.83926], [-77.44448, 38.83977], [-77.44393, 38.84037], [-77.44312, 38.84115], [-77.44252, 38.84168], [-77.44205, 38.84208], [-77.44156, 38.84247], [-77.44121, 38.84273], [-77.44084, 38.84299], [-77.44035, 38.8433], [-77.43936, 38.8439], [-77.43881, 38.84419], [-77.43841, 38.84439], [-77.43815, 38.84451], [-77.43759, 38.84477], [-77.43695, 38.84504], [-77.43613, 38.84536], [-77.43539, 38.84561], [-77.43484, 38.84578], [-77.43446, 38.84589], [-77.43407, 38.84599], [-77.43359, 38.8461], [-77.4326, 38.84631], [-77.43198, 38.84642], [-77.43189, 38.84644], [-77.43166, 38.84648], [-77.43013, 38.84677], [-77.42864, 38.84705], [-77.42767, 38.8472], [-77.4269, 38.84734], [-77.42661, 38.84739], [-77.42395, 38.84787], [-77.42318, 38.84802], [-77.42258, 38.84813], [-77.42173, 38.84828], [-77.41978, 38.84865], [-77.41803, 38.84898], [-77.41653, 38.84925], [-77.4152, 38.84948], [-77.41415, 38.84967], [-77.41369, 38.84976], [-77.413, 38.84989], [-77.41025, 38.85039], [-77.40835, 38.85073], [-77.406, 38.85117], [-77.40455, 38.85142], [-77.4031, 38.85168], [-77.40243, 38.8518], [-77.40151, 38.85195], [-77.39988, 38.85225], [-77.39953, 38.85231], [-77.39879, 38.85244], [-77.39845, 38.85251], [-77.39809, 38.85258], [-77.39709, 38.85277], [-77.39683, 38.85282], [-77.39635, 38.85291], [-77.39443, 38.85328], [-77.3938, 38.85339], [-77.39306, 38.85351], [-77.39283, 38.85356], [-77.38886, 38.85427], [-77.38813, 38.85441], [-77.38446, 38.85506], [-77.38378, 38.85519], [-77.38334, 38.85526], [-77.38219, 38.85546], [-77.38134, 38.85561], [-77.38007, 38.85583], [-77.37979, 38.85588], [-77.37892, 38.85605], [-77.3788, 38.85608], [-77.37828, 38.85618], [-77.37814, 38.8562], [-77.37761, 38.8563], [-77.37631, 38.85654], [-77.37544, 38.85671], [-77.37471, 38.85684], [-77.37175, 38.85738], [-77.37131, 38.85746], [-77.37029, 38.85764], [-77.36979, 38.85774], [-77.36937, 38.85781], [-77.3651, 38.85859], [-77.36447, 38.85871], [-77.36395, 38.8588], [-77.36383, 38.85881], [-77.36369, 38.85883], [-77.36306, 38.85896], [-77.35875, 38.85973], [-77.35804, 38.85987], [-77.35711, 38.86004], [-77.3552, 38.86038], [-77.35387, 38.86064], [-77.35356, 38.8607], [-77.3534, 38.86072], [-77.35322, 38.86075], [-77.35231, 38.8609], [-77.3513, 38.8611], [-77.35087, 38.86117], [-77.34989, 38.86135], [-77.34898, 38.86153], [-77.34853, 38.86163], [-77.34602, 38.86207], [-77.34561, 38.86215], [-77.34473, 38.86231], [-77.34385, 38.86246], [-77.34265, 38.86266], [-77.34257, 38.86268], [-77.3415, 38.86288], [-77.34009, 38.86315], [-77.33821, 38.8635], [-77.33769, 38.86359], [-77.33677, 38.86374], [-77.33654, 38.86377], [-77.33646, 38.86379], [-77.33633, 38.86381], [-77.3348, 38.86407], [-77.33369, 38.86427], [-77.33299, 38.86441], [-77.33258, 38.86448], [-77.32922, 38.86511], [-77.3264, 38.86558], [-77.32482, 38.86586], [-77.32217, 38.86634], [-77.32201, 38.86637], [-77.32168, 38.86643], [-77.32058, 38.86664], [-77.32, 38.86675], [-77.31902, 38.86693], [-77.31862, 38.867], [-77.31795, 38.86712], [-77.31752, 38.8672], [-77.31591, 38.86749], [-77.31461, 38.86773], [-77.31223, 38.86815], [-77.31021, 38.8685], [-77.30984, 38.86857], [-77.30924, 38.86867], [-77.30916, 38.86869], [-77.30884, 38.86875], [-77.30877, 38.86876], [-77.30859, 38.8688], [-77.30749, 38.86899], [-77.3054, 38.86937], [-77.30388, 38.86963], [-77.3029, 38.86981], [-77.30129, 38.8701], [-77.30068, 38.8702], [-77.29933, 38.87043], [-77.29835, 38.8706], [-77.2975, 38.87077], [-77.29724, 38.87082], [-77.2968, 38.8709], [-77.29631, 38.871], [-77.2959, 38.87109], [-77.29533, 38.87121], [-77.29452, 38.87141], [-77.29403, 38.87155], [-77.29281, 38.8719], [-77.29113, 38.87239], [-77.29091, 38.87246], [-77.29003, 38.87272], [-77.28909, 38.87299], [-77.28753, 38.87345], [-77.28685, 38.87365], [-77.28582, 38.87396], [-77.28455, 38.87432], [-77.28319, 38.87471], [-77.28285, 38.87481], [-77.28277, 38.87484], [-77.28176, 38.87514], [-77.28087, 38.8754], [-77.28022, 38.8756], [-77.27973, 38.87574], [-77.27912, 38.87592], [-77.2784, 38.87613], [-77.2782, 38.87619], [-77.27737, 38.87643], [-77.27696, 38.87654], [-77.27625, 38.87671], [-77.27547, 38.87687], [-77.27499, 38.87696], [-77.27479, 38.877], [-77.27464, 38.87703], [-77.27353, 38.87722], [-77.27141, 38.87757], [-77.27133, 38.87759], [-77.27064, 38.8777], [-77.26961, 38.87788], [-77.26858, 38.87805], [-77.26796, 38.87814], [-77.26746, 38.87821], [-77.2674, 38.87821], [-77.26695, 38.87826], [-77.26689, 38.87827], [-77.26633, 38.87832], [-77.266, 38.87835], [-77.2653, 38.87839], [-77.2644, 38.87845], [-77.2636, 38.87849], [-77.26281, 38.87854], [-77.26204, 38.87858], [-77.26077, 38.87866], [-77.2595, 38.87873], [-77.25776, 38.87883], [-77.25523, 38.87897], [-77.25361, 38.87907], [-77.25301, 38.8791], [-77.25212, 38.87915], [-77.25155, 38.87919], [-77.24971, 38.87929], [-77.24858, 38.87935], [-77.24842, 38.87936], [-77.24689, 38.87946], [-77.24676, 38.87946], [-77.2465, 38.87948], [-77.24549, 38.87954], [-77.2451, 38.87956], [-77.24438, 38.8796], [-77.24404, 38.87962], [-77.24377, 38.87963], [-77.24331, 38.87966], [-77.24264, 38.8797], [-77.24244, 38.8797], [-77.24206, 38.87972], [-77.24176, 38.87974], [-77.24155, 38.87976], [-77.24134, 38.87977], [-77.24066, 38.87983], [-77.24022, 38.87988], [-77.23977, 38.87993], [-77.23933, 38.88], [-77.23871, 38.8801], [-77.23856, 38.88013], [-77.23798, 38.88024], [-77.23757, 38.88033], [-77.2371, 38.88044], [-77.23659, 38.88057], [-77.23599, 38.88074], [-77.23442, 38.88122], [-77.2331, 38.88162], [-77.23268, 38.88176], [-77.23187, 38.882], [-77.23148, 38.88212], [-77.22966, 38.88267], [-77.22887, 38.88291], [-77.22861, 38.88299], [-77.22858, 38.88301], [-77.22852, 38.88302], [-77.22818, 38.88312], [-77.22793, 38.8832], [-77.22715, 38.88343], [-77.22646, 38.88363], [-77.22616, 38.88374], [-77.2257, 38.88388], [-77.22536, 38.88398], [-77.2247, 38.88419], [-77.22448, 38.88426], [-77.22405, 38.88439], [-77.22338, 38.88461], [-77.22266, 38.88484], [-77.22185, 38.88512], [-77.22078, 38.8855], [-77.21939, 38.88607], [-77.2189, 38.88629], [-77.21837, 38.88654], [-77.2179, 38.88676], [-77.21759, 38.88691], [-77.21727, 38.88708], [-77.21681, 38.88731], [-77.21605, 38.88767], [-77.21533, 38.88807], [-77.21487, 38.88833], [-77.21483, 38.88834], [-77.21459, 38.88848], [-77.21366, 38.889], [-77.21304, 38.88936], [-77.2127, 38.88956], [-77.21104, 38.89052], [-77.21045, 38.89086], [-77.21032, 38.89093], [-77.20953, 38.89139], [-77.20774, 38.89242], [-77.20714, 38.89277], [-77.207, 38.89285], [-77.20608, 38.89338], [-77.20541, 38.89374], [-77.20464, 38.89417], [-77.20436, 38.89434], [-77.20379, 38.89466], [-77.20342, 38.89487], [-77.20204, 38.89568], [-77.20093, 38.89632], [-77.20016, 38.89673], [-77.19974, 38.89698], [-77.19935, 38.89721], [-77.19889, 38.89749], [-77.19838, 38.89779], [-77.19797, 38.89803], [-77.19717, 38.89849], [-77.19703, 38.89856], [-77.19639, 38.89889], [-77.19596, 38.89909], [-77.19536, 38.89934], [-77.19495, 38.89949], [-77.19451, 38.89965], [-77.19403, 38.8998], [-77.19361, 38.89992], [-77.19328, 38.9], [-77.19297, 38.90008], [-77.19259, 38.90016], [-77.19211, 38.90025], [-77.19175, 38.90031], [-77.19152, 38.90034], [-77.19134, 38.90036], [-77.19113, 38.90039], [-77.19085, 38.90042], [-77.19052, 38.90045], [-77.1901, 38.90048], [-77.18959, 38.9005], [-77.18921, 38.90051], [-77.18899, 38.90051], [-77.18896, 38.90051], [-77.1889, 38.90051], [-77.18871, 38.90051], [-77.18833, 38.90051], [-77.18793, 38.90049], [-77.18791, 38.90049], [-77.18771, 38.90047], [-77.18748, 38.90045], [-77.1871, 38.90041], [-77.18662, 38.90036], [-77.18602, 38.90028], [-77.1858, 38.90025], [-77.18526, 38.90015], [-77.18468, 38.90002], [-77.18419, 38.89989], [-77.18399, 38.89982], [-77.18377, 38.89975], [-77.18367, 38.89972], [-77.18333, 38.89959], [-77.1829, 38.89944], [-77.18258, 38.89934], [-77.1816, 38.89902], [-77.18043, 38.89863], [-77.17826, 38.89792], [-77.178, 38.89783], [-77.17715, 38.89753], [-77.1766, 38.89735], [-77.17569, 38.89703], [-77.1752, 38.89687], [-77.17451, 38.89664], [-77.17433, 38.89657], [-77.17399, 38.89645], [-77.17303, 38.89612], [-77.17256, 38.89593], [-77.17224, 38.8958], [-77.17199, 38.89568], [-77.17161, 38.8955], [-77.17115, 38.89524], [-77.17099, 38.89515], [-77.17084, 38.89506], [-77.17052, 38.89485], [-77.17037, 38.89474], [-77.17011, 38.89455], [-77.1696, 38.89414], [-77.16915, 38.89377], [-77.168, 38.8928], [-77.16779, 38.89262], [-77.16663, 38.89162], [-77.16597, 38.89109], [-77.16456, 38.88988], [-77.16393, 38.88938], [-77.16263, 38.88837], [-77.16215, 38.88802], [-77.16183, 38.88783], [-77.16158, 38.88767], [-77.16141, 38.88758], [-77.16089, 38.88727], [-77.1605, 38.8871], [-77.16038, 38.88704], [-77.16018, 38.88695], [-77.15965, 38.88672], [-77.15923, 38.88656], [-77.15816, 38.8862], [-77.1576, 38.88602], [-77.15662, 38.88568], [-77.15598, 38.88548], [-77.15418, 38.88489], [-77.1532, 38.88457], [-77.15157, 38.88401], [-77.14624, 38.88225], [-77.14599, 38.88216], [-77.14308, 38.88123], [-77.13922, 38.87994], [-77.139, 38.87987], [-77.13797, 38.87953], [-77.13735, 38.87939], [-77.13668, 38.87927], [-77.13612, 38.87922], [-77.1356, 38.87919], [-77.13469, 38.87916], [-77.12855, 38.87931], [-77.12816, 38.87933], [-77.12798, 38.87935], [-77.1278, 38.87938], [-77.12751, 38.87942], [-77.12685, 38.87956], [-77.12582, 38.87986], [-77.1253, 38.88004], [-77.12491, 38.88021], [-77.12447, 38.88043], [-77.12373, 38.88084], [-77.1222, 38.88167], [-77.12216, 38.88169], [-77.12195, 38.88183], [-77.12144, 38.88216], [-77.1208, 38.88267], [-77.12066, 38.8828], [-77.12062, 38.88283], [-77.12058, 38.88287], [-77.12054, 38.8829], [-77.12042, 38.88302], [-77.12004, 38.88347], [-77.11972, 38.88389], [-77.11947, 38.88423], [-77.11924, 38.88456], [-77.11872, 38.88527], [-77.11858, 38.88545], [-77.11838, 38.88572], [-77.11811, 38.886], [-77.11786, 38.88624], [-77.11776, 38.88633], [-77.11758, 38.88649], [-77.11692, 38.88698], [-77.11624, 38.8874], [-77.11585, 38.88758], [-77.11543, 38.88774], [-77.11516, 38.88782], [-77.11466, 38.88796], [-77.11436, 38.88803], [-77.11423, 38.88807], [-77.11405, 38.88811], [-77.11326, 38.88832], [-77.11238, 38.88854], [-77.11132, 38.88876], [-77.11117, 38.88879], [-77.111, 38.88883], [-77.11093, 38.88885], [-77.10858, 38.88945], [-77.10841, 38.88949], [-77.10817, 38.88955], [-77.10704, 38.88983], [-77.10574, 38.89015], [-77.10474, 38.89039], [-77.10419, 38.89052], [-77.1038, 38.89063], [-77.10363, 38.89068], [-77.10348, 38.89071], [-77.10322, 38.89082], [-77.10278, 38.89101], [-77.10226, 38.89131], [-77.10209, 38.89144], [-77.10203, 38.89149], [-77.10142, 38.89202], [-77.10112, 38.89238], [-77.10088, 38.89275], [-77.10062, 38.89347], [-77.10027, 38.89417], [-77.09986, 38.89489], [-77.09937, 38.8955], [-77.09907, 38.89579], [-77.09889, 38.89594], [-77.09853, 38.89622], [-77.0983, 38.89638], [-77.09786, 38.89665], [-77.09727, 38.89693], [-77.09672, 38.89713], [-77.09578, 38.89737], [-77.09481, 38.89758], [-77.09379, 38.89774], [-77.09293, 38.89785], [-77.09192, 38.89797], [-77.08929, 38.89825], [-77.08867, 38.89829], [-77.088, 38.89831], [-77.0874, 38.89825], [-77.08665, 38.89808], [-77.08583, 38.89781], [-77.08499, 38.8974], [-77.08447, 38.89715], [-77.08411, 38.897], [-77.08369, 38.89685], [-77.08324, 38.89675], [-77.08284, 38.89669], [-77.08242, 38.89667], [-77.08202, 38.89669], [-77.08163, 38.89675], [-77.08123, 38.89682], [-77.08087, 38.89693], [-77.07929, 38.8976], [-77.07853, 38.89792], [-77.07792, 38.89814], [-77.07756, 38.89826], [-77.07707, 38.89839], [-77.07649, 38.89851], [-77.07593, 38.89861], [-77.07533, 38.89868], [-77.07461, 38.89872], [-77.07374, 38.89869], [-77.0736, 38.89869], [-77.07333, 38.89867], [-77.07313, 38.89866], [-77.07298, 38.89865], [-77.07261, 38.89862], [-77.07249, 38.89862], [-77.07237, 38.89861], [-77.07203, 38.89859], [-77.07202, 38.89859], [-77.07149, 38.89856], [-77.07124, 38.89854], [-77.07103, 38.89852], [-77.07099, 38.89851], [-77.07076, 38.89848], [-77.07072, 38.89898], [-77.07072, 38.89906], [-77.07072, 38.89917], [-77.07072, 38.89927], [-77.07072, 38.89945], [-77.07072, 38.89968], [-77.07073, 38.8998], [-77.07076, 38.89989], [-77.07079, 38.9], [-77.07082, 38.90012], [-77.07083, 38.90023], [-77.07077, 38.90048], [-77.06935, 38.90346], [-77.06916, 38.90387], [-77.06904, 38.90393], [-77.06899, 38.90394], [-77.06888, 38.90395], [-77.06872, 38.90395], [-77.06858, 38.90394], [-77.06794, 38.90381], [-77.06712, 38.90365], [-77.06629, 38.90347], [-77.06595, 38.90339], [-77.06541, 38.9032], [-77.06478, 38.90297], [-77.06445, 38.90287], [-77.06393, 38.90275], [-77.06329, 38.90261], [-77.06285, 38.90255], [-77.06252, 38.90253], [-77.06202, 38.90253], [-77.06062, 38.90253], [-77.05933, 38.90253], [-77.05877, 38.90253], [-77.05865, 38.90253], [-77.05843, 38.9025], [-77.05813, 38.90242], [-77.05802, 38.90242], [-77.05789, 38.90241], [-77.05726, 38.90241], [-77.05682, 38.90241], [-77.05628, 38.90241], [-77.05608, 38.90241], [-77.05591, 38.90241], [-77.05564, 38.90244], [-77.05541, 38.90248], [-77.05532, 38.90248], [-77.05481, 38.90248], [-77.05347, 38.90248], [-77.05291, 38.90249], [-77.05152, 38.90249], [-77.05131, 38.90249], [-77.05103, 38.90249], [-77.04978, 38.90249], [-77.04919, 38.90249], [-77.04892, 38.90248], [-77.04855, 38.90248], [-77.04707, 38.90249], [-77.04665, 38.90253], [-77.04647, 38.90253], [-77.04629, 38.90253], [-77.04612, 38.90253], [-77.04582, 38.90253], [-77.04528, 38.90253], [-77.04507, 38.90253], [-77.0449, 38.90253], [-77.04442, 38.90253], [-77.0438, 38.90252], [-77.04353, 38.90252], [-77.04346, 38.90252], [-77.04332, 38.90252], [-77.04295, 38.90252], [-77.04219, 38.90252], [-77.04209, 38.90252], [-77.04171, 38.90252], [-77.04155, 38.90252], [-77.04123, 38.90252], [-77.04045, 38.90252], [-77.03949, 38.90252], [-77.03939, 38.90252], [-77.03872, 38.90252], [-77.03852, 38.90252], [-77.03701, 38.90252], [-77.03668, 38.90252], [-77.03654, 38.90252], [-77.03641, 38.90252], [-77.03551, 38.90252], [-77.03474, 38.90252], [-77.0347, 38.90252], [-77.03458, 38.90252], [-77.03445, 38.90252], [-77.03391, 38.90253], [-77.03379, 38.90253], [-77.03362, 38.90253], [-77.03349, 38.90241], [-77.03309, 38.90241], [-77.03269, 38.90241], [-77.03213, 38.90241], [-77.03195, 38.90252], [-77.03195, 38.90264], [-77.03195, 38.90271], [-77.03195, 38.90313], [-77.03195, 38.90317], [-77.03195, 38.90331], [-77.03195, 38.90365], [-77.03195, 38.90374], [-77.03194, 38.90383], [-77.03193, 38.90411], [-77.03193, 38.90418], [-77.03193, 38.90429], [-77.0319, 38.90456], [-77.03191, 38.90467], [-77.03191, 38.90485], [-77.0319, 38.90492], [-77.03191, 38.90507], [-77.03189, 38.90519], [-77.03187, 38.90523], [-77.03186, 38.90524], [-77.03183, 38.90528], [-77.03179, 38.90531], [-77.03175, 38.90534], [-77.03172, 38.90536], [-77.03161, 38.90543], [-77.03157, 38.90548], [-77.03153, 38.90555], [-77.03152, 38.90558], [-77.03151, 38.90562], [-77.03151, 38.90568], [-77.03154, 38.90578], [-77.03157, 38.90585], [-77.03167, 38.906], [-77.03176, 38.90614], [-77.03182, 38.90622], [-77.03186, 38.90629], [-77.03195, 38.90652], [-77.03195, 38.90724], [-77.03195, 38.90872], [-77.03195, 38.90884], [-77.03195, 38.90895], [-77.03195, 38.90956], [-77.03195, 38.90967], [-77.03195, 38.90973], [-77.03195, 38.91039], [-77.03195, 38.91072], [-77.03195, 38.91105], [-77.03195, 38.91113], [-77.03195, 38.91121], [-77.03195, 38.9118], [-77.03195, 38.91187], [-77.03195, 38.91193], [-77.03195, 38.91213], [-77.03195, 38.91253], [-77.03195, 38.91253], [-77.03195, 38.91261], [-77.03204, 38.91261], [-77.03212, 38.91261], [-77.0326, 38.91261], [-77.03267, 38.91261], [-77.03267, 38.91263], [-77.03267, 38.91315], [-77.03267, 38.91318] ] } } ================================================ FILE: packages/turf-line-slice-along/test/fixtures/route2.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [12.63097, 41.85251], [12.631, 41.85242], [12.63114, 41.85197], [12.63114, 41.8519], [12.63112, 41.85184], [12.63109, 41.8518], [12.63103, 41.85176], [12.63096, 41.85172], [12.62699, 41.851], [12.62733, 41.84999], [12.62745, 41.84969], [12.62756, 41.84943], [12.62762, 41.84928], [12.62768, 41.84916], [12.62774, 41.849], [12.62785, 41.84876], [12.62833, 41.84762], [12.62836, 41.84753], [12.62881, 41.84646], [12.62884, 41.8464], [12.62911, 41.8458], [12.62937, 41.84523], [12.62961, 41.84469], [12.62977, 41.84435], [12.62993, 41.84401], [12.63001, 41.84382], [12.63023, 41.84343], [12.63033, 41.8433], [12.63045, 41.84308], [12.63054, 41.84297], [12.63068, 41.8428], [12.63083, 41.84262], [12.63123, 41.84226], [12.63141, 41.84205], [12.63152, 41.84183], [12.63155, 41.84164], [12.63151, 41.84142], [12.63138, 41.84118], [12.63128, 41.84104], [12.63112, 41.84082], [12.63103, 41.84067], [12.63095, 41.84051], [12.63093, 41.84045], [12.63092, 41.84038], [12.63091, 41.84033], [12.63091, 41.84028], [12.63092, 41.8402], [12.63092, 41.84013], [12.63093, 41.84008], [12.63096, 41.84001], [12.63098, 41.83996], [12.63101, 41.83991], [12.63105, 41.83989], [12.63108, 41.83988], [12.63111, 41.83988], [12.63114, 41.83988], [12.63118, 41.83988], [12.63121, 41.83989], [12.63127, 41.83992], [12.63141, 41.84001], [12.63152, 41.84009], [12.6316, 41.84013], [12.63168, 41.84016], [12.63174, 41.84017], [12.63182, 41.84019], [12.63191, 41.84021], [12.63202, 41.84023], [12.63219, 41.84025], [12.63229, 41.84026], [12.6324, 41.84027], [12.63248, 41.84026], [12.63259, 41.84025], [12.6327, 41.84024], [12.63293, 41.84019], [12.63337, 41.84011], [12.63649, 41.83896], [12.6391, 41.83801], [12.64152, 41.83714], [12.64187, 41.83701], [12.64541, 41.83574], [12.64762, 41.83493], [12.64884, 41.83449], [12.64927, 41.83432], [12.6499, 41.83405], [12.65045, 41.83378], [12.65128, 41.83322], [12.65161, 41.83308], [12.65203, 41.83292], [12.65236, 41.8328], [12.65269, 41.83271], [12.65293, 41.83265], [12.6532, 41.8326], [12.65373, 41.83254], [12.65406, 41.83248], [12.6544, 41.83238], [12.65488, 41.83226], [12.65523, 41.83215], [12.65942, 41.83066], [12.66143, 41.82993], [12.66176, 41.82981], [12.66187, 41.82978], [12.66359, 41.82916], [12.66781, 41.82761], [12.67087, 41.82651], [12.67151, 41.8263], [12.67207, 41.82614], [12.6727, 41.826], [12.67335, 41.8259], [12.67396, 41.82584], [12.67465, 41.8258], [12.67556, 41.8258], [12.67619, 41.82584], [12.67697, 41.82594], [12.67781, 41.82608], [12.68367, 41.82733], [12.68929, 41.82853], [12.69119, 41.82886], [12.69344, 41.82909], [12.69424, 41.8291], [12.69444, 41.8291], [12.6954, 41.82909], [12.69615, 41.82906], [12.69696, 41.82899], [12.7006, 41.82855], [12.70205, 41.82836], [12.70417, 41.82809], [12.70669, 41.82776], [12.70863, 41.82751], [12.71088, 41.82722], [12.71719, 41.8264], [12.71927, 41.82615], [12.72107, 41.82601], [12.72232, 41.82597], [12.72371, 41.82596], [12.72511, 41.82601], [12.72725, 41.82617], [12.73209, 41.82668], [12.73461, 41.82691], [12.73565, 41.82692], [12.73653, 41.82685], [12.73767, 41.82663], [12.73915, 41.82628], [12.74832, 41.824], [12.75704, 41.82181], [12.75718, 41.82178], [12.76177, 41.82064], [12.76336, 41.82024], [12.76368, 41.82016], [12.76472, 41.81991], [12.76604, 41.81958], [12.76645, 41.81947], [12.76658, 41.81944], [12.76685, 41.81938], [12.76818, 41.81905], [12.76891, 41.81886], [12.76973, 41.81868], [12.77039, 41.81853], [12.77077, 41.81847], [12.77115, 41.81841], [12.77243, 41.81826], [12.77352, 41.81818], [12.77468, 41.81815], [12.77806, 41.8181], [12.77983, 41.81807], [12.78311, 41.81801], [12.78591, 41.81797], [12.78807, 41.81793], [12.78867, 41.81789], [12.7892, 41.81784], [12.78975, 41.81777], [12.79026, 41.81768], [12.79111, 41.81751], [12.79191, 41.81729], [12.79284, 41.81697], [12.79371, 41.81661], [12.79491, 41.816], [12.79612, 41.81537], [12.79919, 41.81378], [12.80095, 41.81287], [12.80327, 41.81167], [12.80383, 41.81138], [12.80474, 41.8109], [12.80606, 41.81022], [12.80801, 41.80922], [12.80995, 41.80821], [12.81132, 41.80748], [12.81266, 41.8067], [12.81414, 41.8059], [12.81555, 41.80518], [12.81596, 41.80508], [12.81832, 41.80385], [12.81879, 41.80361], [12.8204, 41.80277], [12.82226, 41.8018], [12.8235, 41.80117], [12.82586, 41.79994], [12.82713, 41.79928], [12.82914, 41.79824], [12.83238, 41.79656], [12.83294, 41.79627], [12.83464, 41.79539], [12.84175, 41.79138], [12.8438, 41.79025], [12.85039, 41.78647], [12.85278, 41.78519], [12.85857, 41.78186], [12.85975, 41.78127], [12.86072, 41.78081], [12.86193, 41.78031], [12.86378, 41.77963], [12.8652, 41.7792], [12.8699, 41.77808], [12.88569, 41.77465], [12.89252, 41.77313], [12.89842, 41.77182], [12.90725, 41.76985], [12.91029, 41.76927], [12.91899, 41.76733], [12.92009, 41.76709], [12.92321, 41.76639], [12.93002, 41.76488], [12.9357, 41.76359], [12.94322, 41.76197], [12.95308, 41.7598], [12.95947, 41.75838], [12.96181, 41.75786], [12.96296, 41.75758], [12.96416, 41.75726], [12.96883, 41.75591], [12.97297, 41.75472], [12.97713, 41.7535], [12.98082, 41.75245], [12.98332, 41.7517], [12.98677, 41.75072], [12.98803, 41.75033], [12.99056, 41.74965], [12.99128, 41.74948], [12.99189, 41.74935], [12.99234, 41.74927], [12.99278, 41.74921], [12.99371, 41.74909], [12.99438, 41.74903], [12.99513, 41.74898], [12.99622, 41.74894], [12.99919, 41.74892], [13.01471, 41.74878], [13.02366, 41.74871], [13.02993, 41.74866], [13.0323, 41.74864], [13.03988, 41.7486], [13.04657, 41.74856], [13.05417, 41.74849], [13.05826, 41.74846], [13.05867, 41.74844], [13.0593, 41.7484], [13.05998, 41.74832], [13.06087, 41.74817], [13.06158, 41.748], [13.06247, 41.74774], [13.0635, 41.74734], [13.064, 41.74711], [13.06828, 41.74499], [13.07144, 41.74345], [13.07303, 41.74272], [13.07937, 41.73963], [13.08618, 41.73629], [13.08961, 41.73462], [13.09063, 41.73412], [13.09714, 41.73098], [13.10295, 41.7281], [13.10759, 41.72587], [13.11072, 41.72437], [13.11202, 41.72374], [13.11215, 41.72367], [13.11348, 41.72302], [13.11374, 41.7229], [13.11387, 41.72283], [13.11806, 41.72079], [13.11865, 41.7205], [13.11974, 41.71997], [13.12384, 41.71797], [13.12537, 41.71723], [13.12546, 41.71718], [13.12599, 41.71692], [13.12699, 41.71644], [13.12736, 41.71626], [13.13079, 41.71458], [13.13614, 41.71196], [13.14261, 41.70879], [13.15196, 41.70422], [13.16082, 41.6999], [13.16728, 41.69675], [13.171, 41.69495], [13.17114, 41.69488], [13.17457, 41.69321], [13.17651, 41.69226], [13.17662, 41.69221], [13.18093, 41.6901], [13.18323, 41.68896], [13.18365, 41.68873], [13.18396, 41.68858], [13.18638, 41.68718], [13.19196, 41.68349], [13.19358, 41.68241], [13.20103, 41.67745], [13.20967, 41.67168], [13.21452, 41.66845], [13.22776, 41.65965], [13.23029, 41.65797], [13.23067, 41.65771], [13.2327, 41.65637], [13.23668, 41.65373], [13.23703, 41.6535], [13.23737, 41.65328], [13.23986, 41.65162], [13.24085, 41.65097], [13.24258, 41.64993], [13.24397, 41.64924], [13.24594, 41.64841], [13.2475, 41.64776], [13.2489, 41.64717], [13.25143, 41.64615], [13.25406, 41.64509], [13.25513, 41.64466], [13.25683, 41.64397], [13.25758, 41.64367], [13.25833, 41.64338], [13.25985, 41.64272], [13.26068, 41.64231], [13.26076, 41.64227], [13.26177, 41.64174], [13.26289, 41.64107], [13.26405, 41.64025], [13.26518, 41.63937], [13.26789, 41.63725], [13.26896, 41.63643], [13.27107, 41.63482], [13.27284, 41.6337], [13.27475, 41.6328], [13.27909, 41.63121], [13.28278, 41.62992], [13.28434, 41.62937], [13.28445, 41.62933], [13.29168, 41.62679], [13.29703, 41.62491], [13.30388, 41.62249], [13.30451, 41.62227], [13.30696, 41.62142], [13.30843, 41.6209], [13.31017, 41.62027], [13.31201, 41.61961], [13.31235, 41.6195], [13.31794, 41.61755], [13.32221, 41.61605], [13.32303, 41.61575], [13.32439, 41.61526], [13.32524, 41.6149], [13.32606, 41.61448], [13.32695, 41.61393], [13.32765, 41.6134], [13.32835, 41.61278], [13.32885, 41.61225], [13.32928, 41.61172], [13.32962, 41.61122], [13.32996, 41.6106], [13.33043, 41.60958], [13.33079, 41.60875], [13.33099, 41.60829], [13.33175, 41.60648], [13.33284, 41.60386], [13.33422, 41.60057], [13.33452, 41.59986], [13.33479, 41.59921], [13.33515, 41.59834], [13.33575, 41.59696], [13.33596, 41.59651], [13.33642, 41.59569], [13.33694, 41.59492], [13.33767, 41.59402], [13.33853, 41.59317], [13.33926, 41.59255], [13.3398, 41.59212], [13.34039, 41.59173], [13.3439, 41.58956], [13.34626, 41.58812], [13.34926, 41.58628], [13.35144, 41.58498], [13.35472, 41.58297], [13.35604, 41.58217], [13.35692, 41.58162], [13.35988, 41.58003], [13.36379, 41.57827], [13.3647, 41.57789], [13.36709, 41.57689], [13.37257, 41.57467], [13.37577, 41.57333], [13.37861, 41.57217], [13.38005, 41.57156], [13.3816, 41.57092], [13.38458, 41.56965], [13.38632, 41.56891], [13.38851, 41.56795], [13.3924, 41.5663], [13.39731, 41.56425], [13.40315, 41.5618], [13.40544, 41.56085], [13.40709, 41.56016], [13.40734, 41.56004], [13.40866, 41.55951], [13.41037, 41.55886], [13.41214, 41.55828], [13.41418, 41.55774], [13.41626, 41.55728], [13.41752, 41.55704], [13.42011, 41.55658], [13.42495, 41.55573], [13.43744, 41.55354], [13.4408, 41.55294], [13.44934, 41.55142], [13.45591, 41.55026], [13.4583, 41.54984], [13.46856, 41.54803], [13.47848, 41.54628], [13.48394, 41.54531], [13.48605, 41.54494], [13.49397, 41.54354], [13.49508, 41.54333], [13.4969, 41.54305], [13.49846, 41.54284], [13.49932, 41.54275], [13.50005, 41.54269], [13.50125, 41.54261], [13.50245, 41.54256], [13.50435, 41.54253], [13.51214, 41.54277], [13.51224, 41.54277], [13.51263, 41.54279], [13.51507, 41.54286], [13.51756, 41.54294], [13.5188, 41.54298], [13.52422, 41.54314], [13.52564, 41.54319], [13.52585, 41.54319], [13.52823, 41.54327], [13.53048, 41.54334], [13.53313, 41.54341], [13.53546, 41.54349], [13.54351, 41.54373], [13.54772, 41.54385], [13.55129, 41.54396], [13.55416, 41.54405], [13.555, 41.54408], [13.55705, 41.54411], [13.55892, 41.54409], [13.56117, 41.54402], [13.56278, 41.54393], [13.56464, 41.54378], [13.56651, 41.54359], [13.56869, 41.54331], [13.57103, 41.54292], [13.57416, 41.54231], [13.57672, 41.54169], [13.5791, 41.54104], [13.58089, 41.54049], [13.58195, 41.54014], [13.58349, 41.53961], [13.58522, 41.53894], [13.58667, 41.53836], [13.58807, 41.53775], [13.59175, 41.53621], [13.59382, 41.53531], [13.59538, 41.53466], [13.59733, 41.53384], [13.59952, 41.5329], [13.60347, 41.53122], [13.6053, 41.53045], [13.60579, 41.53025], [13.6072, 41.52964], [13.60958, 41.52864], [13.6108, 41.5281], [13.61182, 41.52768], [13.61363, 41.52691], [13.61716, 41.52542], [13.61819, 41.52498], [13.62063, 41.52395], [13.62195, 41.52339], [13.62526, 41.52197], [13.62675, 41.52134], [13.62906, 41.52036], [13.63385, 41.51832], [13.63608, 41.51739], [13.63978, 41.51579], [13.64059, 41.51544], [13.64329, 41.51429], [13.64612, 41.51308], [13.64665, 41.51284], [13.64897, 41.51185], [13.65184, 41.51063], [13.65532, 41.50913], [13.65738, 41.50825], [13.6599, 41.50716], [13.66305, 41.50581], [13.66363, 41.50556], [13.66815, 41.50362], [13.67185, 41.50203], [13.67254, 41.50173], [13.67471, 41.5008], [13.67599, 41.50026], [13.67884, 41.49903], [13.6804, 41.49837], [13.68159, 41.49786], [13.68746, 41.49533], [13.68845, 41.49491], [13.69012, 41.49419], [13.69375, 41.49265], [13.69671, 41.49137], [13.69708, 41.4912], [13.69891, 41.49041], [13.70016, 41.48988], [13.70271, 41.48876], [13.70518, 41.48769], [13.7067, 41.48702], [13.71161, 41.48495], [13.7146, 41.48368], [13.71553, 41.48328], [13.71702, 41.48265], [13.72209, 41.48047], [13.72601, 41.47877], [13.72793, 41.47795], [13.73948, 41.473], [13.74309, 41.47144], [13.74518, 41.47054], [13.74612, 41.47016], [13.74677, 41.46992], [13.74755, 41.46965], [13.7488, 41.46927], [13.7502, 41.46893], [13.7527, 41.46837], [13.75363, 41.46816], [13.75503, 41.46786], [13.75843, 41.46712], [13.76874, 41.46483], [13.77852, 41.46267], [13.77894, 41.46258], [13.77915, 41.46253], [13.78108, 41.4621], [13.78862, 41.46044], [13.79132, 41.45985], [13.79302, 41.45947], [13.79534, 41.45897], [13.79574, 41.45888], [13.79819, 41.45834], [13.80126, 41.45763], [13.81136, 41.45541], [13.81542, 41.4545], [13.81734, 41.45407], [13.81953, 41.45362], [13.82135, 41.45321], [13.8226, 41.45291], [13.82565, 41.45226], [13.82816, 41.4517], [13.82924, 41.45146], [13.83054, 41.45118], [13.83197, 41.45086], [13.83313, 41.45061], [13.83548, 41.45007], [13.83654, 41.44985], [13.83692, 41.44976], [13.84132, 41.44879], [13.8426, 41.44851], [13.84397, 41.44822], [13.84683, 41.44758], [13.8485, 41.4472], [13.85316, 41.44615], [13.8557, 41.44561], [13.85771, 41.44514], [13.86078, 41.44449], [13.86221, 41.44417], [13.86818, 41.44285], [13.87021, 41.4424], [13.87036, 41.44237], [13.87095, 41.44224], [13.87135, 41.44215], [13.87199, 41.44202], [13.87293, 41.44179], [13.87386, 41.44155], [13.87562, 41.44106], [13.87647, 41.4408], [13.87774, 41.44038], [13.87961, 41.43975], [13.88041, 41.43943], [13.88199, 41.43884], [13.88379, 41.43813], [13.88589, 41.43733], [13.88809, 41.43646], [13.88972, 41.43581], [13.89254, 41.43472], [13.8936, 41.43431], [13.89468, 41.43389], [13.89988, 41.43187], [13.90074, 41.43152], [13.90485, 41.42993], [13.90775, 41.4288], [13.91523, 41.42587], [13.92039, 41.42386], [13.92216, 41.42317], [13.92662, 41.42142], [13.93827, 41.4169], [13.94661, 41.41363], [13.95218, 41.41146], [13.96323, 41.40715], [13.97167, 41.40386], [13.97283, 41.40329], [13.97355, 41.40292], [13.97475, 41.4023], [13.97547, 41.40186], [13.97618, 41.40137], [13.97728, 41.40055], [13.98137, 41.39749], [13.98857, 41.39212], [13.98957, 41.39136], [13.9909, 41.39036], [13.99856, 41.38464], [14.00471, 41.38017], [14.00908, 41.3769], [14.01188, 41.3748], [14.01243, 41.37438], [14.01333, 41.37366], [14.02159, 41.36756], [14.02849, 41.36237], [14.03211, 41.35965], [14.0383, 41.35501], [14.04363, 41.35102], [14.04746, 41.34822], [14.04898, 41.34706], [14.05003, 41.34626], [14.05334, 41.34383], [14.05468, 41.34282], [14.05571, 41.34204], [14.05891, 41.33965], [14.05994, 41.33887], [14.06009, 41.33876], [14.06042, 41.33851], [14.06409, 41.33575], [14.06991, 41.33145], [14.07311, 41.32902], [14.07976, 41.32399], [14.08082, 41.32321], [14.08121, 41.3229], [14.08194, 41.32219], [14.08232, 41.3218], [14.08272, 41.32136], [14.08326, 41.32075], [14.08363, 41.32027], [14.08389, 41.31987], [14.08432, 41.31919], [14.0847, 41.31837], [14.08496, 41.3176], [14.08728, 41.3117], [14.08819, 41.30936], [14.08833, 41.30899], [14.0889, 41.30758], [14.08923, 41.30675], [14.08956, 41.30588], [14.08971, 41.30548], [14.08982, 41.30515], [14.09, 41.30463], [14.09028, 41.3037], [14.09041, 41.30317], [14.09054, 41.3026], [14.09064, 41.3021], [14.09076, 41.3014], [14.09086, 41.30063], [14.09093, 41.29983], [14.09098, 41.29903], [14.09102, 41.29786], [14.09163, 41.26883], [14.09172, 41.26516], [14.09185, 41.25927], [14.09201, 41.25412], [14.09223, 41.24276], [14.09236, 41.23823], [14.09243, 41.23722], [14.09245, 41.23681], [14.09245, 41.2363], [14.09244, 41.23551], [14.09257, 41.23446], [14.09279, 41.23349], [14.09304, 41.2327], [14.09329, 41.2321], [14.094, 41.2304], [14.09624, 41.22501], [14.09672, 41.22399], [14.09752, 41.22212], [14.09804, 41.22084], [14.09863, 41.21957], [14.09907, 41.2189], [14.09973, 41.21806], [14.10052, 41.21724], [14.10156, 41.21644], [14.10275, 41.21575], [14.11392, 41.21059], [14.12323, 41.20625], [14.12388, 41.20595], [14.13156, 41.20242], [14.13275, 41.20187], [14.13444, 41.20108], [14.1355, 41.20057], [14.13694, 41.1999], [14.13948, 41.19871], [14.14197, 41.19755], [14.14248, 41.19731], [14.14497, 41.19614], [14.14575, 41.19577], [14.14807, 41.19472], [14.1492, 41.19419], [14.15019, 41.19363], [14.15143, 41.19287], [14.15208, 41.19234], [14.15266, 41.19191], [14.1534, 41.19118], [14.15455, 41.18994], [14.15746, 41.18678], [14.16252, 41.18129], [14.1631, 41.18069], [14.16338, 41.18039], [14.16964, 41.17354], [14.17859, 41.16377], [14.18313, 41.15884], [14.18532, 41.15649], [14.18789, 41.15375], [14.18958, 41.15189], [14.19322, 41.1479], [14.19708, 41.14368], [14.19788, 41.1428], [14.20039, 41.14009], [14.20126, 41.13926], [14.20216, 41.13851], [14.20397, 41.1372], [14.20486, 41.1366], [14.21, 41.13317], [14.21257, 41.13148], [14.2148, 41.13004], [14.21805, 41.12785], [14.2193, 41.12704], [14.22275, 41.12475], [14.22531, 41.12305], [14.22741, 41.12162], [14.22807, 41.12112], [14.22923, 41.12014], [14.23164, 41.11787], [14.23289, 41.11669], [14.23344, 41.11619], [14.23429, 41.11541], [14.23516, 41.1147], [14.23599, 41.11414], [14.23683, 41.11362], [14.23723, 41.1134], [14.23833, 41.11283], [14.2422, 41.11103], [14.24677, 41.10891], [14.25332, 41.1059], [14.2569, 41.10425], [14.25815, 41.1036], [14.26117, 41.10202], [14.26684, 41.0987], [14.26809, 41.09799], [14.27266, 41.0954], [14.27789, 41.09241], [14.27958, 41.09145], [14.28308, 41.08943], [14.2842, 41.08879], [14.28499, 41.08834], [14.28596, 41.08778], [14.28691, 41.08705], [14.28781, 41.08623], [14.29157, 41.08268], [14.29343, 41.08086], [14.29545, 41.07892], [14.29651, 41.0779], [14.2988, 41.07572], [14.29924, 41.07529], [14.30216, 41.07251], [14.3029, 41.07177], [14.30351, 41.07116], [14.30392, 41.07068], [14.30449, 41.06995], [14.30486, 41.06947], [14.30569, 41.06836], [14.30582, 41.06819], [14.30644, 41.06733], [14.30752, 41.06588], [14.30813, 41.06509], [14.30858, 41.06442], [14.30976, 41.06288], [14.31017, 41.06238], [14.31066, 41.0618], [14.31118, 41.0612], [14.31189, 41.06046], [14.31499, 41.05752], [14.3162, 41.05645], [14.31662, 41.05606], [14.31848, 41.05432], [14.31955, 41.05336], [14.32045, 41.05239], [14.32099, 41.05174], [14.32157, 41.05085], [14.32188, 41.05025], [14.32216, 41.04956], [14.32233, 41.04891], [14.32244, 41.0481], [14.32243, 41.04726], [14.32242, 41.04536], [14.32242, 41.04273], [14.32241, 41.04216], [14.32242, 41.04081], [14.32239, 41.03961], [14.32237, 41.03841], [14.32234, 41.03678], [14.32234, 41.03461], [14.32229, 41.03215], [14.32226, 41.03056], [14.32222, 41.0288], [14.32198, 41.02765], [14.32217, 41.02577], [14.32215, 41.0249], [14.32215, 41.01887], [14.32247, 41.01492], [14.32279, 41.01142], [14.32335, 41.0054], [14.32355, 41.00324], [14.32379, 41.00083], [14.32411, 40.9972], [14.32426, 40.99564], [14.32471, 40.99059], [14.32511, 40.9862], [14.32524, 40.98495], [14.32533, 40.98387], [14.32585, 40.97834], [14.32624, 40.9738], [14.3263, 40.9732], [14.32639, 40.97222], [14.3268, 40.96791], [14.32714, 40.96425], [14.32724, 40.96314], [14.3275, 40.96044], [14.32765, 40.95851], [14.32769, 40.95782], [14.3277, 40.9572], [14.32763, 40.95593], [14.32752, 40.95531], [14.32662, 40.94954], [14.32593, 40.9449], [14.3259, 40.94455], [14.32546, 40.9417], [14.32446, 40.93524], [14.32396, 40.93194], [14.32387, 40.93135], [14.32351, 40.92882], [14.32331, 40.92755], [14.32319, 40.92682], [14.32305, 40.92598], [14.3229, 40.92482], [14.32277, 40.92399], [14.32255, 40.92257], [14.3224, 40.92149], [14.32237, 40.92129], [14.32231, 40.92085], [14.32215, 40.91985], [14.32202, 40.91902], [14.32185, 40.91796], [14.32165, 40.91665], [14.32154, 40.91598], [14.32138, 40.91502], [14.3208, 40.91127], [14.32056, 40.90966], [14.32024, 40.90758], [14.31969, 40.90421], [14.31915, 40.901], [14.31895, 40.89983], [14.31885, 40.89892], [14.31864, 40.89758], [14.3186, 40.89725], [14.31855, 40.8969], [14.31852, 40.8966], [14.31834, 40.89565], [14.31801, 40.89329], [14.31763, 40.89097], [14.31748, 40.8899], [14.31737, 40.88917], [14.31731, 40.88862], [14.31733, 40.88723], [14.31734, 40.88705], [14.31743, 40.88641], [14.31779, 40.88487], [14.318, 40.88404], [14.3181, 40.8836], [14.31846, 40.88227], [14.31881, 40.88081], [14.31913, 40.87945], [14.31915, 40.87937], [14.31938, 40.87838], [14.31955, 40.87771], [14.31983, 40.87661], [14.31995, 40.87611], [14.32006, 40.87558], [14.3202, 40.87506], [14.32032, 40.87447], [14.32061, 40.87304], [14.32081, 40.87217], [14.32099, 40.87141], [14.32118, 40.87035], [14.32124, 40.86983], [14.32129, 40.86937], [14.3213, 40.86889], [14.3213, 40.86868], [14.32121, 40.86808], [14.32109, 40.86749], [14.32029, 40.86449], [14.32017, 40.86406], [14.31975, 40.86262], [14.31944, 40.86146], [14.31853, 40.85807], [14.31824, 40.85701], [14.31811, 40.85639], [14.3181, 40.85619], [14.31813, 40.85578], [14.3183, 40.85502], [14.31835, 40.8546], [14.31831, 40.8542], [14.31819, 40.8538], [14.31799, 40.85342], [14.31774, 40.85303], [14.31754, 40.85272], [14.3173, 40.85236], [14.31706, 40.85198], [14.31663, 40.85124], [14.31644, 40.85085], [14.31627, 40.85044], [14.31619, 40.85018], [14.31613, 40.84988], [14.31612, 40.84959], [14.31614, 40.8493], [14.31618, 40.84904], [14.3163, 40.84868], [14.31647, 40.84833], [14.31666, 40.84803], [14.31692, 40.84774], [14.31718, 40.84748], [14.31752, 40.84721], [14.31787, 40.84698], [14.31823, 40.8468], [14.31859, 40.84664], [14.31902, 40.84647], [14.31949, 40.8463], [14.31983, 40.84617], [14.32014, 40.84602], [14.32068, 40.84574], [14.32127, 40.84544], [14.32206, 40.84499], [14.32309, 40.84443], [14.32371, 40.8441], [14.32403, 40.84392], [14.32455, 40.84365], [14.32488, 40.84347], [14.32628, 40.84275], [14.32669, 40.84253], [14.328, 40.84185], [14.32873, 40.84147], [14.32933, 40.84115], [14.32958, 40.84102], [14.33041, 40.84057], [14.33192, 40.83977], [14.33424, 40.83853], [14.33834, 40.83636], [14.34024, 40.8351], [14.34096, 40.83456], [14.3416, 40.83404], [14.34266, 40.83311], [14.34329, 40.83251], [14.34383, 40.83192], [14.34402, 40.8317], [14.34435, 40.83128], [14.3448, 40.83069], [14.34506, 40.83033], [14.34602, 40.82893], [14.34747, 40.82687], [14.34766, 40.82659], [14.3494, 40.8242], [14.35171, 40.82103], [14.35197, 40.8207], [14.35222, 40.82032], [14.35238, 40.82008], [14.35418, 40.81744], [14.35489, 40.81664], [14.35545, 40.81592], [14.35574, 40.8156], [14.35605, 40.81529], [14.35742, 40.81397], [14.35944, 40.81224], [14.35963, 40.81206], [14.36241, 40.80951], [14.36304, 40.80897], [14.36367, 40.80829], [14.36592, 40.8055], [14.36793, 40.80297], [14.37159, 40.79851], [14.37243, 40.79748], [14.37273, 40.79711], [14.37312, 40.79665], [14.37342, 40.79632], [14.37474, 40.79479], [14.37497, 40.7945], [14.37628, 40.79284], [14.37744, 40.79133], [14.37799, 40.79072], [14.37841, 40.79033], [14.3789, 40.78995], [14.37929, 40.78972], [14.38105, 40.78865], [14.38145, 40.78841], [14.38307, 40.78743], [14.38323, 40.78733], [14.38364, 40.78708], [14.38505, 40.78628], [14.38569, 40.78593], [14.38607, 40.78571], [14.38671, 40.78522], [14.38716, 40.78489], [14.38758, 40.78456], [14.38817, 40.78402], [14.38867, 40.78345], [14.39068, 40.78125], [14.3914, 40.78054], [14.39182, 40.78017], [14.39253, 40.77972], [14.39278, 40.77957], [14.39331, 40.77932], [14.39388, 40.77909], [14.39419, 40.77901], [14.39491, 40.77876], [14.39556, 40.77851], [14.3964, 40.77819], [14.39814, 40.77758], [14.40325, 40.77589], [14.40426, 40.77554], [14.4067, 40.77469], [14.40895, 40.77388], [14.4092, 40.77378], [14.41046, 40.77332], [14.41144, 40.7729], [14.41303, 40.7723], [14.41473, 40.77164], [14.41565, 40.77129], [14.41595, 40.77118], [14.41684, 40.77083], [14.41871, 40.77015], [14.42101, 40.76939], [14.42199, 40.7691], [14.42288, 40.76871], [14.42397, 40.76833], [14.42466, 40.76811], [14.42601, 40.7678], [14.42744, 40.7673], [14.42853, 40.76693], [14.42936, 40.76665], [14.42976, 40.76652], [14.4312, 40.76602], [14.43161, 40.76588], [14.432, 40.76573], [14.43296, 40.7654], [14.43349, 40.76521], [14.43386, 40.76509], [14.43896, 40.76344], [14.44282, 40.76218], [14.44371, 40.76198], [14.44426, 40.76191], [14.44477, 40.76189], [14.44602, 40.76185], [14.44651, 40.76183], [14.44935, 40.76173], [14.45001, 40.76169], [14.45064, 40.76164], [14.45107, 40.76159], [14.45148, 40.76149], [14.45192, 40.76135], [14.45256, 40.76112], [14.45327, 40.7608], [14.45409, 40.76043], [14.45665, 40.75926], [14.45712, 40.75905], [14.45736, 40.75893], [14.4581, 40.75858], [14.46309, 40.75608], [14.46564, 40.75482], [14.46819, 40.75367], [14.46843, 40.75356], [14.46963, 40.75301], [14.47063, 40.75255], [14.47332, 40.75129], [14.47389, 40.751], [14.47667, 40.74966], [14.47823, 40.74893], [14.47884, 40.74859], [14.47921, 40.74831], [14.47952, 40.748], [14.47964, 40.74783], [14.47985, 40.74746], [14.48026, 40.7466], [14.48049, 40.74599], [14.48069, 40.74553], [14.48076, 40.74539], [14.48088, 40.74504], [14.48135, 40.74413], [14.48248, 40.74174], [14.48257, 40.74155], [14.48273, 40.74117], [14.48281, 40.74101], [14.48297, 40.7408], [14.48315, 40.74063], [14.48332, 40.74051], [14.4834, 40.74045], [14.48361, 40.74014], [14.4839, 40.73969], [14.48403, 40.7395], [14.48418, 40.73929], [14.48425, 40.73914], [14.48433, 40.73892], [14.48448, 40.73858], [14.48457, 40.73836], [14.48466, 40.73816], [14.4848, 40.73796], [14.48491, 40.7378], [14.485, 40.73765], [14.48505, 40.73753], [14.48511, 40.73736], [14.48521, 40.73714], [14.4875, 40.73124], [14.48954, 40.72597], [14.49034, 40.72395], [14.49056, 40.72321], [14.49104, 40.72173], [14.49121, 40.72131], [14.49136, 40.72106], [14.49172, 40.7206], [14.49203, 40.72031], [14.49304, 40.71945], [14.49358, 40.71892], [14.49387, 40.71855], [14.49418, 40.71805], [14.49523, 40.71595], [14.49543, 40.71558], [14.49675, 40.71339], [14.4971, 40.71268], [14.49725, 40.71232], [14.49747, 40.71168], [14.49837, 40.70889], [14.49857, 40.70833], [14.4988, 40.70785], [14.49898, 40.70762], [14.49918, 40.7074], [14.49953, 40.70713], [14.50009, 40.7068], [14.50108, 40.70633], [14.50233, 40.70572], [14.50278, 40.70544], [14.50334, 40.70505], [14.50387, 40.70453], [14.50416, 40.70417], [14.50439, 40.70386], [14.50454, 40.70355], [14.50473, 40.7031], [14.50481, 40.70256], [14.50489, 40.70171], [14.50482, 40.7012], [14.50424, 40.69916], [14.50389, 40.69842], [14.50343, 40.69779], [14.50289, 40.69736], [14.50216, 40.69704], [14.50118, 40.6968], [14.50005, 40.69663], [14.49908, 40.69648], [14.49836, 40.69632], [14.49795, 40.69617], [14.49768, 40.69599], [14.49726, 40.69571], [14.49702, 40.69555], [14.49684, 40.6954], [14.49663, 40.69521], [14.4964, 40.69497], [14.49621, 40.69469], [14.4961, 40.69451], [14.49597, 40.69427], [14.49586, 40.69394], [14.49582, 40.69375], [14.4958, 40.69354], [14.49579, 40.69327], [14.4958, 40.69303], [14.49585, 40.69281], [14.49594, 40.69225], [14.49607, 40.69143], [14.49608, 40.69136], [14.49609, 40.6913], [14.4961, 40.69125], [14.49627, 40.69041], [14.49629, 40.68985], [14.49623, 40.68915], [14.4961, 40.68841], [14.49574, 40.68768], [14.49477, 40.68638], [14.49354, 40.68514], [14.49159, 40.68425], [14.49045, 40.68392], [14.48891, 40.68371], [14.48826, 40.68373], [14.48756, 40.68376], [14.48544, 40.68416], [14.48376, 40.6849], [14.48247, 40.6856], [14.48187, 40.68603], [14.48082, 40.68677], [14.48033, 40.68712], [14.48026, 40.68716], [14.48004, 40.68731], [14.47972, 40.68755], [14.47956, 40.68764], [14.47933, 40.68773], [14.47916, 40.68779], [14.47899, 40.68784], [14.47772, 40.68793], [14.47729, 40.68796], [14.47642, 40.68799], [14.47437, 40.68804], [14.47425, 40.68804], [14.47407, 40.68805], [14.47393, 40.68808], [14.47373, 40.68822], [14.47362, 40.68832], [14.47349, 40.68844], [14.47317, 40.68862], [14.47285, 40.68877], [14.47251, 40.68885], [14.47216, 40.68888], [14.47174, 40.68889], [14.47087, 40.68887], [14.46962, 40.68884], [14.46917, 40.68887], [14.4687, 40.68888], [14.46817, 40.68886], [14.4669, 40.68882], [14.46585, 40.68877], [14.46526, 40.68875], [14.46508, 40.68871], [14.46482, 40.68863], [14.46416, 40.68835], [14.46147, 40.68778], [14.45801, 40.68742], [14.45079, 40.68511], [14.44584, 40.68242], [14.44254, 40.68039], [14.4417, 40.67988], [14.44129, 40.67917], [14.44125, 40.678], [14.44071, 40.67666], [14.43536, 40.67078], [14.43281, 40.66779], [14.42961, 40.65753], [14.42946, 40.65728], [14.4293, 40.65709], [14.42907, 40.6569], [14.42867, 40.65662], [14.42838, 40.65643], [14.42769, 40.65594], [14.42757, 40.65588], [14.42748, 40.65587], [14.42734, 40.65588], [14.42714, 40.65594], [14.42695, 40.65601], [14.42685, 40.65607], [14.42683, 40.65609], [14.4268, 40.65612], [14.42674, 40.65619], [14.42666, 40.65631], [14.4266, 40.65639], [14.42653, 40.65644], [14.42643, 40.65648], [14.42631, 40.65651], [14.42628, 40.65652], [14.42617, 40.65655], [14.42601, 40.65662], [14.42584, 40.65674], [14.42567, 40.6569], [14.42559, 40.65694], [14.4255, 40.65695], [14.42542, 40.65695], [14.4253, 40.65691], [14.4251, 40.65685], [14.42495, 40.65685], [14.42469, 40.65688], [14.42463, 40.65689], [14.42452, 40.65696], [14.42446, 40.65702], [14.42443, 40.65711], [14.42444, 40.65723], [14.42447, 40.65742], [14.42448, 40.6575], [14.42445, 40.6576], [14.4244, 40.65767], [14.42429, 40.65771], [14.42418, 40.65772], [14.42407, 40.65771], [14.42381, 40.65761], [14.42359, 40.65754], [14.42331, 40.65749], [14.42304, 40.65745], [14.42296, 40.65745], [14.42266, 40.65741], [14.42255, 40.65739], [14.42245, 40.65736], [14.42238, 40.65733], [14.4223, 40.65725], [14.42214, 40.65724], [14.42203, 40.65715], [14.42193, 40.65696], [14.42188, 40.65676], [14.42187, 40.65668], [14.42185, 40.65658], [14.42182, 40.65651], [14.4218, 40.65648], [14.42159, 40.65629], [14.42136, 40.65614], [14.42095, 40.65587], [14.42086, 40.65582], [14.42076, 40.65576], [14.42051, 40.65563], [14.42034, 40.65564], [14.42017, 40.65565], [14.4198, 40.65583], [14.41896, 40.65612], [14.41882, 40.65598], [14.41844, 40.65602], [14.41803, 40.65596], [14.41776, 40.65575], [14.41745, 40.6553], [14.41764, 40.65511], [14.41778, 40.65503], [14.41765, 40.65486], [14.41758, 40.65417], [14.41743, 40.65384], [14.41733, 40.65365], [14.41693, 40.6532], [14.41713, 40.6532], [14.4173, 40.6533], [14.41751, 40.65332], [14.41783, 40.65303], [14.41797, 40.65275], [14.41812, 40.65267], [14.41853, 40.65258], [14.41864, 40.65254], [14.41913, 40.65227], [14.41942, 40.65206], [14.41954, 40.652], [14.41967, 40.65195], [14.41996, 40.65193], [14.42079, 40.65192], [14.42119, 40.65183], [14.42142, 40.65179], [14.42162, 40.65168], [14.42183, 40.65145], [14.42193, 40.6513], [14.42201, 40.65072], [14.42198, 40.65], [14.42219, 40.64924], [14.42222, 40.64901], [14.4222, 40.64864], [14.42215, 40.64818], [14.42211, 40.6478], [14.42222, 40.64745], [14.42227, 40.64709], [14.42246, 40.64635], [14.42251, 40.64611], [14.42246, 40.64596], [14.42231, 40.64571], [14.42221, 40.64544], [14.42225, 40.6452], [14.42218, 40.64496], [14.42218, 40.64457], [14.42175, 40.64415], [14.42175, 40.64391], [14.42179, 40.64369], [14.42147, 40.64322], [14.42142, 40.64314], [14.42142, 40.64303], [14.42155, 40.64291], [14.42185, 40.64272], [14.42192, 40.64266], [14.42194, 40.64246], [14.42194, 40.64223], [14.42194, 40.64205], [14.42196, 40.64199], [14.42192, 40.64198], [14.42191, 40.64194], [14.42197, 40.64098], [14.42204, 40.64041], [14.42215, 40.63978], [14.42216, 40.63911], [14.42225, 40.6389], [14.42206, 40.63845], [14.42195, 40.6382], [14.42197, 40.63799], [14.42209, 40.63794], [14.42215, 40.63786], [14.42218, 40.63784], [14.42235, 40.63761], [14.42275, 40.63707], [14.42284, 40.63693], [14.42312, 40.63658], [14.42359, 40.63596], [14.42376, 40.63577], [14.42395, 40.63564], [14.42418, 40.63556], [14.42451, 40.63548], [14.42471, 40.63544], [14.42486, 40.63534], [14.425, 40.63511], [14.42503, 40.63506], [14.42513, 40.63494], [14.42518, 40.63487], [14.42534, 40.63478], [14.42565, 40.63459], [14.42583, 40.63446], [14.42608, 40.63437], [14.42657, 40.63423], [14.42667, 40.6342], [14.42674, 40.63415], [14.42675, 40.634], [14.4267, 40.6339], [14.42659, 40.63387], [14.42644, 40.63387], [14.42636, 40.63382], [14.42631, 40.63375], [14.4263, 40.63369], [14.4263, 40.63366], [14.42634, 40.63361], [14.42637, 40.63358], [14.42644, 40.63352], [14.42654, 40.63342], [14.42656, 40.63333], [14.42656, 40.63327], [14.42653, 40.63317], [14.42648, 40.63308], [14.42645, 40.63294], [14.42643, 40.63282], [14.42644, 40.63261], [14.42647, 40.63231], [14.42651, 40.63202], [14.42659, 40.63184], [14.42666, 40.6317], [14.42673, 40.6316], [14.42688, 40.6314], [14.42698, 40.63124], [14.42703, 40.63107], [14.42704, 40.63082], [14.42704, 40.63069], [14.42705, 40.63058], [14.42703, 40.63046], [14.427, 40.63038], [14.42693, 40.63033], [14.42668, 40.63021], [14.42647, 40.63015], [14.42628, 40.6301], [14.42609, 40.63008], [14.426, 40.63008], [14.42592, 40.6301], [14.42579, 40.63015], [14.42563, 40.63017], [14.4253, 40.6302], [14.42497, 40.63022], [14.42491, 40.63022], [14.42456, 40.63022], [14.42451, 40.6302], [14.42448, 40.63018], [14.42444, 40.63012], [14.42439, 40.63002], [14.42435, 40.62992], [14.42431, 40.62985], [14.42421, 40.62975], [14.42421, 40.62974], [14.42417, 40.62967], [14.42408, 40.62956], [14.42396, 40.62941], [14.42392, 40.62932], [14.42389, 40.62926], [14.42384, 40.6291], [14.42382, 40.62904], [14.4238, 40.62898], [14.42379, 40.62886], [14.42386, 40.62871], [14.42398, 40.62854], [14.42399, 40.62843], [14.42392, 40.62826], [14.42391, 40.62806], [14.42394, 40.62789], [14.42402, 40.62773], [14.42461, 40.6269], [14.42463, 40.62679], [14.4246, 40.62671], [14.42403, 40.62627], [14.42377, 40.62603], [14.42366, 40.62565], [14.42375, 40.62396], [14.42379, 40.62375], [14.42385, 40.62337], [14.42402, 40.62289], [14.42402, 40.62273], [14.42379, 40.6223], [14.42377, 40.62217], [14.42383, 40.62202], [14.42415, 40.62173], [14.42419, 40.62159], [14.42408, 40.62148], [14.42382, 40.62147], [14.4227, 40.62158], [14.42259, 40.62158], [14.42243, 40.62156], [14.42218, 40.62154], [14.42192, 40.62156], [14.42152, 40.62161], [14.42142, 40.62163], [14.42097, 40.62169], [14.42042, 40.62186], [14.42026, 40.6219], [14.41998, 40.62192], [14.41967, 40.62187], [14.41916, 40.62166], [14.41859, 40.62155], [14.41795, 40.62127], [14.41734, 40.62116], [14.4168, 40.62108], [14.41654, 40.62114], [14.41546, 40.62155], [14.41532, 40.62156], [14.41526, 40.62154], [14.4152, 40.62151], [14.41516, 40.62141], [14.41523, 40.62131], [14.41557, 40.62119], [14.41675, 40.62081], [14.41735, 40.62048], [14.41766, 40.62038], [14.4179, 40.62039], [14.41847, 40.62058], [14.41853, 40.62059], [14.4187, 40.62064], [14.41943, 40.62062], [14.41969, 40.62063], [14.42019, 40.62075], [14.42056, 40.62091], [14.42099, 40.62105], [14.4214, 40.621], [14.42162, 40.6209], [14.42189, 40.6207], [14.4221, 40.62048], [14.42267, 40.62009], [14.42286, 40.61989], [14.42311, 40.61952], [14.4233, 40.61933], [14.42409, 40.61906], [14.42461, 40.61856], [14.42498, 40.61834], [14.42536, 40.61814], [14.4257, 40.61806], [14.42604, 40.61802], [14.42633, 40.61794], [14.42694, 40.61776], [14.42731, 40.61765], [14.42764, 40.61756], [14.42787, 40.61748], [14.42792, 40.61747], [14.42826, 40.61738], [14.4286, 40.61727], [14.42888, 40.61717], [14.42902, 40.6171], [14.42912, 40.61701], [14.42988, 40.61618], [14.43004, 40.61606], [14.43034, 40.61594], [14.43057, 40.61591], [14.4308, 40.61594], [14.43103, 40.616], [14.4316, 40.61631], [14.43173, 40.61634], [14.43187, 40.61633], [14.43195, 40.61628], [14.43228, 40.61606], [14.43248, 40.61604], [14.43268, 40.6161], [14.43286, 40.61624], [14.43346, 40.61672], [14.43361, 40.61682], [14.43379, 40.61687], [14.43518, 40.61688], [14.43527, 40.61683], [14.4353, 40.61675], [14.43526, 40.61666], [14.4351, 40.61661], [14.43413, 40.61663], [14.43401, 40.61659], [14.43391, 40.6165], [14.43387, 40.61643], [14.43379, 40.61601], [14.43367, 40.6158], [14.43325, 40.61548], [14.43293, 40.61511], [14.43288, 40.61501], [14.4329, 40.61494], [14.43296, 40.61488], [14.43312, 40.61486], [14.43324, 40.61497], [14.43334, 40.61521], [14.43349, 40.61544], [14.43402, 40.61575], [14.43421, 40.61609], [14.43435, 40.61618], [14.43455, 40.61619], [14.43557, 40.61597], [14.43577, 40.61585], [14.43588, 40.61574], [14.43619, 40.61537], [14.43629, 40.6153], [14.43641, 40.61531], [14.43653, 40.61538], [14.43653, 40.61553], [14.4364, 40.616], [14.43641, 40.61628], [14.43652, 40.61654], [14.43664, 40.61664], [14.43678, 40.61672], [14.43693, 40.61674], [14.43713, 40.61673], [14.4373, 40.61669], [14.43751, 40.61669], [14.43768, 40.6167], [14.43785, 40.61667], [14.43804, 40.61661], [14.43821, 40.61657], [14.43839, 40.6166], [14.43848, 40.61664], [14.43875, 40.61676], [14.43884, 40.61683], [14.4389, 40.61696], [14.43898, 40.61712], [14.43905, 40.6172], [14.43917, 40.61726], [14.4394, 40.61731], [14.43965, 40.61733], [14.44015, 40.61728], [14.44026, 40.61731], [14.44036, 40.61737], [14.4405, 40.61762], [14.44061, 40.61783], [14.44067, 40.61791], [14.44076, 40.61793], [14.44088, 40.61792], [14.44113, 40.61782], [14.44126, 40.61782], [14.44138, 40.61788], [14.44154, 40.61797], [14.44163, 40.61799], [14.44174, 40.61798], [14.44186, 40.61793], [14.44208, 40.61781], [14.4422, 40.61776], [14.44236, 40.61775], [14.44251, 40.61776], [14.4427, 40.61778], [14.44289, 40.61776], [14.44303, 40.61776], [14.44314, 40.61777], [14.44322, 40.61782], [14.44358, 40.61824], [14.4437, 40.61831], [14.44384, 40.61833], [14.4442, 40.61829], [14.44443, 40.61827], [14.44467, 40.61831], [14.44494, 40.61841], [14.44559, 40.61884], [14.44576, 40.61889], [14.44595, 40.61891], [14.44654, 40.61892], [14.44698, 40.61886], [14.44727, 40.61885], [14.44741, 40.61888], [14.44752, 40.61896], [14.44766, 40.61914], [14.44776, 40.61919], [14.4479, 40.6192], [14.44807, 40.61919], [14.44826, 40.61921], [14.44841, 40.61929], [14.44861, 40.61955], [14.44873, 40.61962], [14.44889, 40.61967], [14.44908, 40.61967], [14.44939, 40.61962], [14.44958, 40.61962], [14.44974, 40.61966], [14.44985, 40.61973], [14.45013, 40.62015], [14.45024, 40.62024], [14.45034, 40.62027], [14.45081, 40.62028], [14.45095, 40.6203], [14.45106, 40.62035], [14.45122, 40.62053], [14.45138, 40.6208], [14.45148, 40.62087], [14.45166, 40.62093], [14.4519, 40.62098], [14.45219, 40.62113], [14.45235, 40.62117], [14.45271, 40.62119], [14.45285, 40.62122], [14.45291, 40.62127], [14.45295, 40.62135], [14.45296, 40.62148], [14.45274, 40.62192], [14.45276, 40.62198], [14.45285, 40.62202], [14.45294, 40.62202], [14.4531, 40.62191], [14.45331, 40.62176], [14.4535, 40.62167], [14.454, 40.62163], [14.4545, 40.62153], [14.45473, 40.62143], [14.45494, 40.62133], [14.45514, 40.62116], [14.45539, 40.62102], [14.45647, 40.62077], [14.45666, 40.62075], [14.45693, 40.62077], [14.4572, 40.62083], [14.45734, 40.6209], [14.45743, 40.621], [14.4575, 40.62141], [14.45758, 40.62149], [14.45773, 40.6215], [14.45784, 40.62147], [14.45797, 40.62141], [14.45809, 40.6212], [14.4582, 40.62106], [14.45954, 40.62019], [14.45963, 40.62011], [14.4597, 40.61986], [14.45986, 40.61964], [14.46012, 40.61952], [14.4604, 40.61943], [14.46053, 40.61933], [14.46068, 40.61898], [14.46078, 40.61889], [14.46097, 40.61882], [14.46182, 40.6188], [14.46202, 40.61879], [14.4622, 40.61873], [14.46252, 40.61856], [14.46276, 40.61834], [14.46289, 40.6183], [14.46308, 40.61837], [14.46317, 40.61852], [14.46341, 40.61912], [14.4635, 40.61921], [14.4636, 40.61927], [14.46382, 40.61935], [14.46394, 40.61942], [14.46406, 40.61953], [14.4642, 40.61966], [14.46432, 40.61969], [14.46445, 40.61967], [14.46462, 40.61964], [14.46491, 40.61955], [14.46508, 40.61949], [14.46519, 40.61946], [14.46549, 40.61951], [14.46571, 40.61952], [14.46596, 40.61956], [14.4662, 40.61962], [14.46641, 40.61976], [14.46677, 40.62022], [14.46679, 40.62031], [14.46673, 40.62038], [14.46631, 40.62065], [14.46587, 40.62105], [14.46566, 40.62138], [14.46556, 40.62162], [14.4656, 40.62171], [14.46587, 40.6219], [14.46595, 40.62192], [14.46606, 40.6219], [14.46642, 40.62176], [14.4667, 40.62171], [14.46691, 40.62171], [14.46715, 40.62175], [14.46752, 40.6219], [14.46769, 40.62195], [14.46786, 40.62196], [14.46807, 40.6219], [14.46825, 40.62183], [14.46841, 40.62179], [14.46852, 40.62176], [14.46865, 40.62177], [14.46887, 40.62186], [14.46905, 40.6219], [14.46921, 40.6219], [14.46937, 40.62188], [14.46958, 40.62183], [14.46971, 40.62185], [14.46983, 40.6219], [14.46988, 40.62201], [14.46987, 40.62216], [14.46991, 40.62227], [14.46999, 40.62234], [14.47015, 40.62238], [14.47069, 40.62247], [14.47089, 40.62254], [14.47105, 40.62265], [14.47117, 40.62283], [14.47128, 40.62311], [14.47131, 40.62331], [14.47135, 40.62343], [14.47144, 40.62354], [14.47151, 40.62359], [14.47153, 40.62368], [14.47143, 40.6238], [14.47119, 40.62395], [14.47108, 40.62407], [14.47106, 40.62416], [14.4711, 40.62424], [14.47119, 40.6243], [14.47135, 40.62438], [14.47146, 40.62441], [14.47161, 40.62445], [14.47173, 40.62447], [14.47189, 40.62448], [14.47196, 40.62451], [14.47199, 40.62459], [14.47207, 40.62476], [14.47213, 40.62483], [14.47224, 40.62487], [14.47241, 40.62487], [14.47253, 40.62483], [14.47269, 40.62476], [14.47284, 40.62476], [14.473, 40.62481], [14.47341, 40.625], [14.47348, 40.62508], [14.47351, 40.6252], [14.47354, 40.62531], [14.47361, 40.62538], [14.47378, 40.62544], [14.474, 40.6255], [14.47433, 40.62557], [14.47443, 40.62556], [14.47453, 40.62551], [14.47471, 40.62535], [14.47489, 40.6252], [14.47501, 40.62511], [14.47512, 40.62509], [14.47527, 40.62509], [14.47546, 40.62513], [14.47595, 40.62523], [14.47631, 40.62533], [14.47659, 40.62541], [14.47678, 40.62544], [14.47692, 40.62548], [14.47704, 40.62557], [14.47718, 40.62569], [14.47731, 40.62575], [14.47772, 40.6259], [14.47782, 40.62596], [14.4781, 40.6262], [14.47823, 40.62633], [14.47834, 40.62647], [14.47846, 40.62656], [14.47869, 40.62672], [14.47881, 40.62683], [14.47886, 40.62693], [14.47891, 40.62707], [14.47907, 40.62735], [14.47914, 40.62754], [14.47916, 40.62771], [14.47914, 40.62786], [14.47906, 40.62802], [14.47893, 40.62817], [14.4788, 40.62832], [14.47865, 40.62848], [14.47855, 40.62864], [14.47845, 40.62873], [14.4783, 40.62883], [14.4781, 40.62892], [14.47788, 40.62903], [14.47774, 40.62915], [14.47755, 40.62933], [14.47738, 40.62955], [14.47732, 40.6297], [14.4773, 40.62982], [14.47733, 40.63], [14.47738, 40.63014], [14.47747, 40.63019], [14.47755, 40.63018], [14.47763, 40.63015], [14.47777, 40.63007], [14.47798, 40.62993], [14.47815, 40.62986], [14.4783, 40.62983], [14.479, 40.62985], [14.47958, 40.62993], [14.47992, 40.62996], [14.48003, 40.62996], [14.48014, 40.62994], [14.48023, 40.62991], [14.48048, 40.62981], [14.48075, 40.62969], [14.48083, 40.62964], [14.4809, 40.6296], [14.48097, 40.62957], [14.48104, 40.62955], [14.48116, 40.62954], [14.48131, 40.62953], [14.48145, 40.62952], [14.48156, 40.6295], [14.48166, 40.62945], [14.48172, 40.62941], [14.48181, 40.62937], [14.48191, 40.62935], [14.48209, 40.62933], [14.48221, 40.62933], [14.48228, 40.62936], [14.48233, 40.6294], [14.48243, 40.62938], [14.48253, 40.62935], [14.48276, 40.62923], [14.48314, 40.62903], [14.4833, 40.62897], [14.48335, 40.62898], [14.48337, 40.62901], [14.48336, 40.62904], [14.48329, 40.62909], [14.48317, 40.62916], [14.48294, 40.62929], [14.48269, 40.62946], [14.48243, 40.6296], [14.48228, 40.62971], [14.4822, 40.62985], [14.4822, 40.62989], [14.48222, 40.62991], [14.48225, 40.62991], [14.48229, 40.6299], [14.48233, 40.62984], [14.48236, 40.62978], [14.48243, 40.62971], [14.4826, 40.62963], [14.48275, 40.62954], [14.48297, 40.62938], [14.48318, 40.62926], [14.4834, 40.62921], [14.48358, 40.62916], [14.48371, 40.6291], [14.48378, 40.62897], [14.48382, 40.6288], [14.48384, 40.62869], [14.48393, 40.62863], [14.48408, 40.6286], [14.48414, 40.62855], [14.4842, 40.62848], [14.48419, 40.62841], [14.48415, 40.62837], [14.48406, 40.62834], [14.48394, 40.62834], [14.48379, 40.62834], [14.48359, 40.62833], [14.48341, 40.62834], [14.48316, 40.62834], [14.48292, 40.62837], [14.48265, 40.62847], [14.48227, 40.62863], [14.48207, 40.62872], [14.48189, 40.62877], [14.48173, 40.6288], [14.48151, 40.62881], [14.48113, 40.62884], [14.48082, 40.62884], [14.48069, 40.62886], [14.48063, 40.62888], [14.48055, 40.6289], [14.48033, 40.62898], [14.48014, 40.62905], [14.48006, 40.62907], [14.47999, 40.62906], [14.47994, 40.629], [14.47993, 40.62894], [14.47995, 40.62882], [14.48005, 40.62873], [14.48014, 40.62863], [14.48017, 40.62855], [14.48016, 40.62845], [14.48014, 40.62838], [14.48013, 40.62832], [14.48012, 40.62827], [14.48011, 40.62823], [14.48015, 40.62819], [14.48022, 40.62819], [14.48026, 40.62822], [14.48028, 40.62832], [14.48031, 40.62838], [14.48035, 40.62842], [14.48043, 40.62848], [14.4805, 40.6285], [14.48055, 40.62851], [14.48058, 40.62851], [14.48061, 40.62852], [14.48069, 40.62851], [14.4808, 40.62849], [14.48094, 40.62845], [14.48118, 40.62834], [14.48155, 40.62822], [14.48184, 40.62817], [14.4821, 40.62813], [14.48232, 40.62809], [14.48248, 40.62802], [14.4832, 40.62776], [14.48326, 40.62773], [14.4835, 40.62763], [14.48376, 40.62743], [14.48389, 40.62738], [14.48404, 40.62739], [14.48417, 40.62741], [14.48437, 40.62747], [14.48474, 40.62758], [14.48488, 40.62762], [14.485, 40.62771], [14.48505, 40.62778], [14.48507, 40.62785], [14.48509, 40.62795], [14.48506, 40.62815], [14.48506, 40.62825], [14.48504, 40.6285], [14.48497, 40.62864] ] } } ================================================ FILE: packages/turf-line-slice-along/test.ts ================================================ import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { along } from "@turf/along"; import { length } from "@turf/length"; import { lineSliceAlong } from "./index.js"; import { Feature, LineString } from "geojson"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); var line1: Feature = loadJsonFileSync( path.join(__dirname, "test", "fixtures", "line1.geojson") ); var route1: Feature = loadJsonFileSync( path.join(__dirname, "test", "fixtures", "route1.geojson") ); var route2: Feature = loadJsonFileSync( path.join(__dirname, "test", "fixtures", "route2.geojson") ); test("turf-line-slice-along -- line1", function (t) { var start = 500; var stop = 750; var options = { units: "miles" } as const; var start_point = along(line1, start, options); var end_point = along(line1, stop, options); var sliced = lineSliceAlong(line1, start, stop, options); t.equal(sliced.type, "Feature"); t.equal(sliced.geometry.type, "LineString"); t.deepEqual(sliced.geometry.coordinates[0], start_point.geometry.coordinates); t.deepEqual( sliced.geometry.coordinates[sliced.geometry.coordinates.length - 1], end_point.geometry.coordinates ); t.end(); }); test("turf-line-slice-along -- line1 overshoot", function (t) { var start = 500; var stop = 1500; var options = { units: "miles" } as const; var start_point = along(line1, start, options); var end_point = along(line1, stop, options); var sliced = lineSliceAlong(line1, start, stop, options); t.equal(sliced.type, "Feature"); t.equal(sliced.geometry.type, "LineString"); t.deepEqual(sliced.geometry.coordinates[0], start_point.geometry.coordinates); t.deepEqual( sliced.geometry.coordinates[sliced.geometry.coordinates.length - 1], end_point.geometry.coordinates ); t.end(); }); test("turf-line-slice-along -- route1", function (t) { var start = 500; var stop = 750; var options = { units: "miles" } as const; var start_point = along(route1, start, options); var end_point = along(route1, stop, options); var sliced = lineSliceAlong(route1, start, stop, options); t.equal(sliced.type, "Feature"); t.equal(sliced.geometry.type, "LineString"); t.deepEqual(sliced.geometry.coordinates[0], start_point.geometry.coordinates); t.deepEqual( sliced.geometry.coordinates[sliced.geometry.coordinates.length - 1], end_point.geometry.coordinates ); t.end(); }); test("turf-line-slice-along -- route2", function (t) { var start = 25; var stop = 50; var options = { units: "miles" } as const; var start_point = along(route2, start, options); var end_point = along(route2, stop, options); var sliced = lineSliceAlong(route2, start, stop, options); t.equal(sliced.type, "Feature"); t.equal(sliced.geometry.type, "LineString"); t.deepEqual(sliced.geometry.coordinates[0], start_point.geometry.coordinates); t.deepEqual( sliced.geometry.coordinates[sliced.geometry.coordinates.length - 1], end_point.geometry.coordinates ); t.end(); }); test("turf-line-slice-along -- start longer than line length", function (t) { var start = 500000; var stop = 800000; var options = { units: "miles" } as const; t.throws( () => lineSliceAlong(line1, start, stop, options), "Start position is beyond line" ); t.end(); }); test("turf-line-slice-along -- start equal to line length", function (t) { var options = { units: "miles" } as const; var start = length(line1, options); var stop = start + 100; var start_point = along(line1, start, options); var end_point = along(line1, stop, options); var sliced = lineSliceAlong(line1, start, stop, options); t.equal(sliced.type, "Feature"); t.equal(sliced.geometry.type, "LineString"); t.deepEqual(sliced.geometry.coordinates[0], start_point.geometry.coordinates); t.deepEqual( sliced.geometry.coordinates[sliced.geometry.coordinates.length - 1], end_point.geometry.coordinates ); t.end(); }); ================================================ FILE: packages/turf-line-slice-along/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-line-split/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-line-split/README.md ================================================ # @turf/line-split ## lineSplit Split a LineString by another GeoJSON Feature. ### Parameters * `line` **[Feature][1]<[LineString][2]>** LineString Feature to split * `splitter` **[Feature][1]\** Feature used to split line ### Examples ```javascript var line = turf.lineString([[120, -25], [145, -25]]); var splitter = turf.lineString([[130, -15], [130, -35]]); var split = turf.lineSplit(line, splitter); //addToMap var addToMap = [line, splitter, split] split.features[0].properties.stroke = "red"; split.features[1].properties.stroke = "blue"; ``` Returns **[FeatureCollection][3]<[LineString][2]>** Split LineStrings [1]: https://tools.ietf.org/html/rfc7946#section-3.2 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [3]: https://tools.ietf.org/html/rfc7946#section-3.3 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/line-split ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-line-split/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { lineSplit } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); /** * Benchmark Results * * issue-#852 x 51,581 ops/sec ±10.24% (43 runs sampled) * linestrings x 4,177 ops/sec ±7.29% (45 runs sampled) * multi-linestring x 8,461 ops/sec ±7.81% (64 runs sampled) * multi-polygon x 4,045 ops/sec ±3.07% (68 runs sampled) * multiPoint-on-line-1 x 11,468 ops/sec ±3.80% (67 runs sampled) * multiPoint-on-line-2 x 14,668 ops/sec ±3.70% (70 runs sampled) * point-on-line-1 x 30,573 ops/sec ±3.94% (73 runs sampled) * point-on-line-2 x 32,557 ops/sec ±3.21% (73 runs sampled) * point-on-line-3 x 104,831 ops/sec ±4.35% (54 runs sampled) * polygon-with-holes x 3,260 ops/sec ±3.41% (68 runs sampled) * polygon x 12,352 ops/sec ±3.88% (62 runs sampled) */ const suite = new Benchmark.Suite("turf-line-split"); for (const { name, geojson } of fixtures) { suite.add(name, () => lineSplit((geojson as any).features[0], (geojson as any).features[1]) ); } suite .on("cycle", (e: any) => { console.log(String(e.target)); }) .run(); ================================================ FILE: packages/turf-line-split/index.ts ================================================ import { geojsonRbush as rbush } from "@turf/geojson-rbush"; import { truncate } from "@turf/truncate"; import { lineSegment } from "@turf/line-segment"; import { lineIntersect } from "@turf/line-intersect"; import { nearestPointOnLine } from "@turf/nearest-point-on-line"; import { getCoords, getCoord, getType } from "@turf/invariant"; import { featureEach, featureReduce, flattenEach } from "@turf/meta"; import { lineString, featureCollection, feature } from "@turf/helpers"; import { Feature, FeatureCollection, GeoJsonTypes, LineString, MultiLineString, MultiPoint, MultiPolygon, Point, Polygon, } from "geojson"; type Splitter = Feature< Point | MultiPoint | LineString | MultiLineString | Polygon | MultiPolygon >; /** * Split a LineString by another GeoJSON Feature. * * @function * @param {Feature} line LineString Feature to split * @param {Feature} splitter Feature used to split line * @returns {FeatureCollection} Split LineStrings * @example * var line = turf.lineString([[120, -25], [145, -25]]); * var splitter = turf.lineString([[130, -15], [130, -35]]); * * var split = turf.lineSplit(line, splitter); * * //addToMap * var addToMap = [line, splitter, split] * * split.features[0].properties.stroke = "red"; * split.features[1].properties.stroke = "blue"; */ function lineSplit( line: Feature | T, splitter: Splitter ): FeatureCollection { if (!line) throw new Error("line is required"); if (!splitter) throw new Error("splitter is required"); const lineType = getType(line) as Exclude; const splitterType = getType(splitter) as Exclude; if (lineType !== "LineString") throw new Error("line must be LineString"); if (splitterType === "FeatureCollection") throw new Error("splitter cannot be a FeatureCollection"); if (splitterType === "GeometryCollection") throw new Error("splitter cannot be a GeometryCollection"); // remove excessive decimals from splitter // to avoid possible approximation issues in rbush var truncatedSplitter = truncate(splitter, { precision: 7 }); // Ensure we're consistently sending Feature into the splitLine methods. if (line.type !== "Feature") { line = feature(line); } switch (splitterType) { case "Point": return splitLineWithPoint( line as Feature, truncatedSplitter as Feature ) as FeatureCollection; case "MultiPoint": return splitLineWithPoints( line as Feature, truncatedSplitter as Feature ) as FeatureCollection; case "LineString": case "MultiLineString": case "Polygon": case "MultiPolygon": return splitLineWithPoints( line as Feature, lineIntersect( line, truncatedSplitter as Feature< LineString | MultiLineString | Polygon | MultiPolygon >, { ignoreSelfIntersections: true, } ) ) as FeatureCollection; } } /** * Split LineString with MultiPoint * * @private * @param {Feature} line LineString * @param {FeatureCollection} splitter Point * @returns {FeatureCollection} split LineStrings */ function splitLineWithPoints( line: Feature, splitter: FeatureCollection | Feature ) { var results: Feature[] = []; var tree = rbush(); flattenEach( splitter as FeatureCollection, // this cast should be unnecessary (and is wrong, it could contain MultiPoints), but is a workaround for bad flattenEach typings function (point: Feature) { // Add index/id to features (needed for filter) results.forEach(function (feature, index) { feature.id = index; }); // First Point - doesn't need to handle any previous line results if (!results.length) { results = splitLineWithPoint(line, point).features; tree.load(featureCollection(results)); // Split with remaining points - lines might needed to be split multiple times } else { // Find all lines that are within the splitter's bbox var search = tree.search(point); if (search.features.length) { // RBush might return multiple lines - only process the closest line to splitter var closestLine = findClosestFeature(point, search); // Remove closest line from results since this will be split into two lines // This removes any duplicates inside the results & index results = results.filter(function (feature) { return feature.id !== closestLine.id; }); tree.remove(closestLine); // Append the two newly split lines into the results featureEach(splitLineWithPoint(closestLine, point), function (line) { results.push(line); tree.insert(line); }); } } } ); return featureCollection(results); } /** * Split LineString with Point * * @private * @param {Feature} line LineString * @param {Feature} splitter Point * @returns {FeatureCollection} split LineStrings */ function splitLineWithPoint( line: Feature, splitter: Feature ) { var results = []; // handle endpoints var startPoint = getCoords(line)[0]; var endPoint = getCoords(line)[line.geometry.coordinates.length - 1]; if ( pointsEquals(startPoint, getCoord(splitter)) || pointsEquals(endPoint, getCoord(splitter)) ) return featureCollection([line]); // Create spatial index var tree = rbush(); var segments = lineSegment(line); tree.load(segments); // Find all segments that are within bbox of splitter var search = tree.search(splitter); // Return itself if point is not within spatial index if (!search.features.length) return featureCollection([line]); // RBush might return multiple lines - only process the closest line to splitter var closestSegment = findClosestFeature(splitter, search); // Initial value is the first point of the first segments (beginning of line) var initialValue = [startPoint]; var lastCoords = featureReduce( segments, function (previous, current, index) { var currentCoords = getCoords(current)[1]; var splitterCoords = getCoord(splitter); // Location where segment intersects with line if (index === closestSegment.id) { previous.push(splitterCoords); results.push(lineString(previous)); // Don't duplicate splitter coordinate (Issue #688) if (pointsEquals(splitterCoords, currentCoords)) return [splitterCoords]; return [splitterCoords, currentCoords]; // Keep iterating over coords until finished or intersection is found } else { previous.push(currentCoords); return previous; } }, initialValue ); // Append last line to final split results if (lastCoords.length > 1) { results.push(lineString(lastCoords)); } return featureCollection(results); } /** * Find Closest Feature * * @private * @param {Feature} point Feature must be closest to this point * @param {FeatureCollection} lines Collection of Features * @returns {Feature} closest LineString */ function findClosestFeature( point: Feature, lines: FeatureCollection ): Feature { if (!lines.features.length) throw new Error("lines must contain features"); // Filter to one segment that is the closest to the line if (lines.features.length === 1) return lines.features[0]; var closestFeature; var closestDistance = Infinity; featureEach(lines, function (segment) { var pt = nearestPointOnLine(segment, point); var dist = pt.properties.pointDistance; if (dist < closestDistance) { closestFeature = segment; closestDistance = dist; } }); return closestFeature!; } /** * Compares two points and returns if they are equals * * @private * @param {Array} pt1 point * @param {Array} pt2 point * @returns {boolean} true if they are equals */ function pointsEquals(pt1: number[], pt2: number[]) { return pt1[0] === pt2[0] && pt1[1] === pt2[1]; } export { Splitter, lineSplit }; export default lineSplit; ================================================ FILE: packages/turf-line-split/package.json ================================================ { "name": "@turf/line-split", "version": "7.3.4", "description": "Split a LineString by another GeoJSON Feature.", "author": "Turf Authors", "contributors": [ "Denis Carriere <@DenisCarriere>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "geojson", "gis", "line", "split" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/bbox": "workspace:*", "@turf/geojson-rbush": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/line-intersect": "workspace:*", "@turf/line-segment": "workspace:*", "@turf/meta": "workspace:*", "@turf/nearest-point-on-line": "workspace:*", "@turf/truncate": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-line-split/test/in/issue-#1075-1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-87.168433, 37.946093], [-87.16851, 37.960085] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [-87.168446, 37.947929], [-87.168445, 37.948301] ] } } ] } ================================================ FILE: packages/turf-line-split/test/in/issue-#1075-2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-87.168433, 37.946093], [-87.16851, 37.960085] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [-87.1684431695, 37.9479287543], [-87.1684451512, 37.9483010091] ] } } ] } ================================================ FILE: packages/turf-line-split/test/in/issue-#1075-3.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-87.168433, 37.946093], [-87.16851, 37.960085] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [-87.1684431695, 37.9479287543], [-87.161, 37.948] ] } } ] } ================================================ FILE: packages/turf-line-split/test/in/issue-#1232.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [13.8716, 56.2783], [13.8715, 56.2785], [13.8743, 56.2794], [13.8796, 56.2746] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [13.8726, 56.2786], [13.8716, 56.2786], [13.8713, 56.2784], [13.8726, 56.2786] ] ] }, "properties": {} } ] } ================================================ FILE: packages/turf-line-split/test/in/issue-#852.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [9.2202022, 49.1438226], [9.2199531, 49.1439048], [9.2196177, 49.1440264] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [9.219953175634146, 49.14390480825327] } } ] } ================================================ FILE: packages/turf-line-split/test/in/linestrings.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [126.5625, -32.99023555965107], [113.466796875, -23.24134610238612], [133.06640625, -12.64033830684679], [150.908203125, -22.268764039073968], [136.7578125, -33.28461996888768] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [122.78320312499999, -24.126701958681668], [112.8515625, -31.12819929911196], [104.67773437499999, -18.22935133838667], [145.98632812499997, -14.859850400601037], [145.98632812499997, -31.203404950917385] ] } } ] } ================================================ FILE: packages/turf-line-split/test/in/multi-linestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [115.400390625, -27.215556209029675], [122.1240234375, -25.443274612305732], [129.2431640625, -18.93746442964186], [131.5283203125, -25.20494115356912], [137.98828125, -24.367113562651262], [142.3828125, -24.367113562651262], [144.66796875, -25.878994400196202], [149.326171875, -26.667095801104804] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [120.4541015625, -23.200960808078566], [133.4619140625, -22.105998799750566] ], [ [138.603515625, -21.16648385820657], [137.4169921875, -28.729130483430154] ] ] } } ] } ================================================ FILE: packages/turf-line-split/test/in/multi-polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [115.400390625, -27.215556209029675], [122.1240234375, -25.443274612305732], [129.2431640625, -18.93746442964186], [131.5283203125, -25.20494115356912], [137.98828125, -24.367113562651262], [142.3828125, -24.367113562651262], [144.66796875, -25.878994400196202], [149.326171875, -26.667095801104804] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [119.2236328125, -28.03319784767635], [133.76953125, -28.03319784767635], [133.76953125, -21.739091217718574], [119.2236328125, -21.739091217718574], [119.2236328125, -28.03319784767635] ] ], [ [ [136.5380859375, -27.449790329784214], [144.755859375, -27.449790329784214], [144.755859375, -21.943045533438166], [136.5380859375, -21.943045533438166], [136.5380859375, -27.449790329784214] ] ], [ [ [125.94726562499999, -26.391869671769022], [138.6474609375, -26.391869671769022], [138.6474609375, -17.224758206624628], [125.94726562499999, -17.224758206624628], [125.94726562499999, -26.391869671769022] ] ] ] } } ] } ================================================ FILE: packages/turf-line-split/test/in/multiPoint-on-line-1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [116.98242187499999, -32.249974455863295], [127.35351562499999, -29.075375179558346], [122.9150390625, -25.562265014427492], [128.935546875, -22.63429269379352], [124.62890625, -23.483400654325628], [129.375, -21.616579336740593], [135.791015625, -21.53484700204879], [139.833984375, -22.105998799750566] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [126.50643035185698, -22.744898171599424], [126.01455688476562, -24.066528197726857], [129.77660179138184, -21.611552214145394] ] } } ] } ================================================ FILE: packages/turf-line-split/test/in/multiPoint-on-line-2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [116.98242187499999, -32.249974455863295], [127.35351562499999, -29.075375179558346], [122.9150390625, -25.562265014427492], [128.935546875, -22.63429269379352], [124.62890625, -23.483400654325628], [129.375, -21.616579336740593], [135.791015625, -21.53484700204879], [139.833984375, -22.105998799750566] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [126.60644531250001, -28.459033019728043], [125.15625000000001, -27.254629577800063], [123.53027343749999, -26.07652055985696] ] } } ] } ================================================ FILE: packages/turf-line-split/test/in/point-on-line-1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [116.98242187499999, -32.249974455863295], [127.35351562499999, -29.075375179558346], [122.9150390625, -25.562265014427492], [128.935546875, -22.63429269379352], [124.62890625, -23.483400654325628], [129.375, -21.616579336740593], [135.791015625, -21.53484700204879], [139.833984375, -22.105998799750566] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [126.50643035185698, -22.744898171599424] } } ] } ================================================ FILE: packages/turf-line-split/test/in/point-on-line-2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [116.98242187499999, -32.249974455863295], [127.35351562499999, -29.075375179558346], [122.9150390625, -25.562265014427492], [128.935546875, -22.63429269379352], [124.62890625, -23.483400654325628], [129.375, -21.616579336740593], [135.791015625, -21.53484700204879], [139.833984375, -22.105998799750566] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [127.6116943359375, -22.811630707692412] } } ] } ================================================ FILE: packages/turf-line-split/test/in/point-on-line-3.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [116.98242187499999, -32.249974455863295], [127.35351562499999, -29.075375179558346], [122.9150390625, -25.562265014427492], [128.935546875, -22.63429269379352], [124.62890625, -23.483400654325628], [129.375, -21.616579336740593], [135.791015625, -21.53484700204879], [139.833984375, -22.105998799750566] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [115.79589843749999, -33.760882000869174] } } ] } ================================================ FILE: packages/turf-line-split/test/in/polygon-with-holes.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [108.10546875, -24.607069137709694], [116.103515625, -16.04581345375217], [123.3984375, -14.689881366618762], [127.529296875, -16.299051014581817], [132.890625, -20.2209657795223], [137.548828125, -22.67484735118852], [144.05273437499997, -23.805449612314614], [150.380859375, -25.95804467331783], [155.302734375, -30.29701788337204], [160.3125, -37.64903402157864], [137.724609375, -28.14950321154457], [127.705078125, -27.68352808378776], [113.99414062499999, -34.45221847282653] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [127.265625, -12.897489183755892], [118.125, -18.062312304546715], [113.818359375, -22.67484735118852], [116.01562499999999, -36.3151251474805], [123.3984375, -36.10237644873643], [133.41796874999997, -34.234512362369856], [141.240234375, -38.13455657705412], [151.34765625, -38.13455657705412], [155.478515625, -28.071980301779845], [150.1171875, -17.560246503294888], [142.822265625, -12.039320557540572], [137.373046875, -11.60919340793894], [127.265625, -12.897489183755892] ], [ [135.966796875, -18.729501999072138], [142.20703125, -18.81271785640776], [145.8984375, -26.11598592533351], [144.84375, -31.05293398570514], [139.74609375, -31.05293398570514], [135.52734375, -29.993002284551064], [127.61718749999999, -29.993002284551064], [123.3984375, -27.994401411046148], [123.3984375, -24.046463999666567], [125.5078125, -20.632784250388013], [135.966796875, -18.729501999072138] ] ] } } ] } ================================================ FILE: packages/turf-line-split/test/in/polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [133.76953125, -5.44102230371796], [133.2421875, -16.97274101999901], [135.87890625, -20.2209657795223], [137.548828125, -24.607069137709694], [132.802734375, -28.84467368077178], [131.66015625, -37.85750715625203] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [115.13671875, -21.616579336740593], [116.98242187499999, -34.66935854524544], [128.32031249999997, -31.42866311735861], [142.734375, -38.06539235133247], [150.908203125, -22.268764039073968], [135.791015625, -12.811801316582619], [115.13671875, -21.616579336740593] ] ] } } ] } ================================================ FILE: packages/turf-line-split/test/out/issue-#1075-1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-87.168433, 37.946093], [-87.168446, 37.947929] ] }, "bbox": [-87.168446, 37.946093, -87.168433, 37.947929], "id": 0 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-87.168446, 37.947929], [-87.16851, 37.960085] ] }, "bbox": [-87.16851, 37.947929, -87.168446, 37.960085], "id": 1 }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-87.168433, 37.946093], [-87.16851, 37.960085] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [-87.168446, 37.947929], [-87.168445, 37.948301] ] } } ] } ================================================ FILE: packages/turf-line-split/test/out/issue-#1075-2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-87.168433, 37.946093], [-87.1684432, 37.9479288] ] }, "bbox": [-87.1684432, 37.946093, -87.168433, 37.9479288], "id": 0 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-87.1684432, 37.9479288], [-87.1684452, 37.948301] ] }, "bbox": [-87.1684452, 37.9479288, -87.1684432, 37.948301] }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-87.1684452, 37.948301], [-87.16851, 37.960085] ] }, "bbox": [-87.16851, 37.948301, -87.1684452, 37.960085] }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-87.168433, 37.946093], [-87.16851, 37.960085] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [-87.1684431695, 37.9479287543], [-87.1684451512, 37.9483010091] ] } } ] } ================================================ FILE: packages/turf-line-split/test/out/issue-#1075-3.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-87.168433, 37.946093], [-87.1684432, 37.9479288] ] }, "bbox": [-87.1684432, 37.946093, -87.168433, 37.9479288], "id": 0 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [-87.1684432, 37.9479288], [-87.16851, 37.960085] ] }, "bbox": [-87.16851, 37.9479288, -87.1684432, 37.960085], "id": 1 }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-87.168433, 37.946093], [-87.16851, 37.960085] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [-87.1684431695, 37.9479287543], [-87.161, 37.948] ] } } ] } ================================================ FILE: packages/turf-line-split/test/out/issue-#1232.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [13.8716, 56.2783], [13.871532142857145, 56.27843571428571] ] }, "bbox": [13.871532142857145, 56.2783, 13.8716, 56.27843571428571], "id": 0 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [13.871532142857145, 56.27843571428571], [13.8715, 56.2785], [13.871811111111098, 56.2786] ] }, "bbox": [13.8715, 56.27843571428571, 13.871811111111098, 56.2786] }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [13.871811111111098, 56.2786], [13.8743, 56.2794], [13.8796, 56.2746] ] }, "bbox": [13.871811111111098, 56.2746, 13.8796, 56.2794] }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [13.8716, 56.2783], [13.8715, 56.2785], [13.8743, 56.2794], [13.8796, 56.2746] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [13.8726, 56.2786], [13.8716, 56.2786], [13.8713, 56.2784], [13.8726, 56.2786] ] ] }, "properties": {} } ] } ================================================ FILE: packages/turf-line-split/test/out/issue-#852.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [9.2202022, 49.1438226], [9.2199532, 49.1439048] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [9.2199532, 49.1439048], [9.2199531, 49.1439048], [9.2196177, 49.1440264] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [9.2202022, 49.1438226], [9.2199531, 49.1439048], [9.2196177, 49.1440264] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [9.219953175634146, 49.14390480825327] } } ] } ================================================ FILE: packages/turf-line-split/test/out/linestrings.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [126.5625, -32.99023555965107], [118.6090049242457, -27.06938170764152] ] }, "bbox": [118.6090049242457, -32.99023555965107, 126.5625, -27.06938170764152], "id": 0 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [118.6090049242457, -27.06938170764152], [113.466796875, -23.24134610238612], [125.93967115660507, -16.495036267214854] ] }, "bbox": [ 113.466796875, -27.06938170764152, 125.93967115660507, -16.495036267214854 ], "id": 1 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [125.93967115660507, -16.495036267214854], [133.06640625, -12.64033830684679], [138.33563930939346, -15.483909474796551] ] }, "bbox": [ 125.93967115660507, -16.495036267214854, 138.33563930939346, -12.64033830684679 ], "id": 2 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [138.33563930939346, -15.483909474796551], [145.9863281, -19.612646582209567] ] }, "bbox": [138.33563930939346, -19.612646582209567, 145.9863281, -15.483909474796551], "id": 3 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [145.9863281, -19.612646582209567], [150.908203125, -22.268764039073968], [145.9863281, -26.10036612107997] ] }, "bbox": [145.9863281, -26.10036612107997, 150.908203125, -19.612646582209567] }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [145.9863281, -26.10036612107997], [136.7578125, -33.28461996888768] ] }, "bbox": [136.7578125, -33.28461996888768, 145.9863281, -26.10036612107997] }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [126.5625, -32.99023555965107], [113.466796875, -23.24134610238612], [133.06640625, -12.64033830684679], [150.908203125, -22.268764039073968], [136.7578125, -33.28461996888768] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [122.78320312499999, -24.126701958681668], [112.8515625, -31.12819929911196], [104.67773437499999, -18.22935133838667], [145.98632812499997, -14.859850400601037], [145.98632812499997, -31.203404950917385] ] } } ] } ================================================ FILE: packages/turf-line-split/test/out/multi-linestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [115.400390625, -27.215556209029675], [122.1240234375, -25.443274612305732], [124.99610755509275, -22.81862718897968] ] }, "bbox": [ 115.400390625, -27.215556209029675, 124.99610755509275, -22.81862718897968 ], "id": 0 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [124.99610755509275, -22.81862718897968], [129.2431640625, -18.93746442964186], [130.48965214554212, -22.356195663936738] ] }, "bbox": [ 124.99610755509275, -22.81862718897968, 130.48965214554212, -18.93746442964186 ], "id": 1 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [130.48965214554212, -22.356195663936738], [131.5283203125, -25.20494115356912], [137.98828125, -24.367113562651262], [138.10136044317042, -24.367113562651262] ] }, "bbox": [ 130.48965214554212, -25.20494115356912, 138.10136044317042, -22.356195663936738 ] }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [138.10136044317042, -24.367113562651262], [142.3828125, -24.367113562651262], [144.66796875, -25.878994400196202], [149.326171875, -26.667095801104804] ] }, "bbox": [ 138.10136044317042, -26.667095801104804, 149.326171875, -24.367113562651262 ] }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [115.400390625, -27.215556209029675], [122.1240234375, -25.443274612305732], [129.2431640625, -18.93746442964186], [131.5283203125, -25.20494115356912], [137.98828125, -24.367113562651262], [142.3828125, -24.367113562651262], [144.66796875, -25.878994400196202], [149.326171875, -26.667095801104804] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [120.4541015625, -23.200960808078566], [133.4619140625, -22.105998799750566] ], [ [138.603515625, -21.16648385820657], [137.4169921875, -28.729130483430154] ] ] } } ] } ================================================ FILE: packages/turf-line-split/test/out/multi-polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [115.400390625, -27.215556209029675], [119.2236328, -26.207788245559954] ] }, "bbox": [115.400390625, -27.215556209029675, 119.2236328, -26.207788245559954], "id": 0 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [119.2236328, -26.207788245559954], [122.1240234375, -25.443274612305732], [125.9472656, -21.94941361112874] ] }, "bbox": [119.2236328, -26.207788245559954, 125.9472656, -21.94941361112874], "id": 1 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [125.9472656, -21.94941361112874], [126.17741600085314, -21.7390912] ] }, "bbox": [125.9472656, -21.94941361112874, 126.17741600085314, -21.7390912], "id": 2 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [126.17741600085314, -21.7390912], [129.2431640625, -18.93746442964186], [130.26465248702175, -21.7390912] ] }, "bbox": [126.17741600085314, -21.7390912, 130.26465248702175, -18.93746442964186], "id": 3 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [130.26465248702175, -21.7390912], [131.5283203125, -25.20494115356912], [133.7695313, -24.91426626860264] ] }, "bbox": [130.26465248702175, -25.20494115356912, 133.7695313, -21.7390912], "id": 4 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [133.7695313, -24.91426626860264], [136.5380859, -24.55519731241477] ] }, "bbox": [133.7695313, -24.91426626860264, 136.5380859, -24.55519731241477], "id": 5 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [136.5380859, -24.55519731241477], [137.98828125, -24.367113562651262], [138.6474609, -24.367113562651262] ] }, "bbox": [136.5380859, -24.55519731241477, 138.6474609, -24.367113562651262], "id": 6 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [138.6474609, -24.367113562651262], [142.3828125, -24.367113562651262], [144.66796875, -25.878994400196202], [144.7558594, -25.893864242178836] ] }, "bbox": [138.6474609, -25.893864242178836, 144.7558594, -24.367113562651262] }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [144.7558594, -25.893864242178836], [149.326171875, -26.667095801104804] ] }, "bbox": [144.7558594, -26.667095801104804, 149.326171875, -25.893864242178836] }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [115.400390625, -27.215556209029675], [122.1240234375, -25.443274612305732], [129.2431640625, -18.93746442964186], [131.5283203125, -25.20494115356912], [137.98828125, -24.367113562651262], [142.3828125, -24.367113562651262], [144.66796875, -25.878994400196202], [149.326171875, -26.667095801104804] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [119.2236328125, -28.03319784767635], [133.76953125, -28.03319784767635], [133.76953125, -21.739091217718574], [119.2236328125, -21.739091217718574], [119.2236328125, -28.03319784767635] ] ], [ [ [136.5380859375, -27.449790329784214], [144.755859375, -27.449790329784214], [144.755859375, -21.943045533438166], [136.5380859375, -21.943045533438166], [136.5380859375, -27.449790329784214] ] ], [ [ [125.94726562499999, -26.391869671769022], [138.6474609375, -26.391869671769022], [138.6474609375, -17.224758206624628], [125.94726562499999, -17.224758206624628], [125.94726562499999, -26.391869671769022] ] ] ] } } ] } ================================================ FILE: packages/turf-line-split/test/out/multiPoint-on-line-1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [116.98242187499999, -32.249974455863295], [127.35351562499999, -29.075375179558346], [122.9150390625, -25.562265014427492], [126.0145569, -24.0665282] ] }, "bbox": [116.98242187499999, -32.249974455863295, 127.35351562499999, -24.0665282], "id": 1 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [126.0145569, -24.0665282], [128.935546875, -22.63429269379352], [124.62890625, -23.483400654325628], [126.5064304, -22.7448982] ] }, "bbox": [124.62890625, -24.0665282, 128.935546875, -22.63429269379352], "id": 2 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [126.5064304, -22.7448982], [129.375, -21.616579336740593], [129.7766018, -21.6115522] ] }, "bbox": [126.5064304, -22.7448982, 129.7766018, -21.6115522] }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [129.7766018, -21.6115522], [135.791015625, -21.53484700204879], [139.833984375, -22.105998799750566] ] }, "bbox": [129.7766018, -22.105998799750566, 139.833984375, -21.53484700204879] }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [116.98242187499999, -32.249974455863295], [127.35351562499999, -29.075375179558346], [122.9150390625, -25.562265014427492], [128.935546875, -22.63429269379352], [124.62890625, -23.483400654325628], [129.375, -21.616579336740593], [135.791015625, -21.53484700204879], [139.833984375, -22.105998799750566] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [126.50643035185698, -22.744898171599424], [126.01455688476562, -24.066528197726857], [129.77660179138184, -21.611552214145394] ] } } ] } ================================================ FILE: packages/turf-line-split/test/out/multiPoint-on-line-2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [116.98242187499999, -32.249974455863295], [127.35351562499999, -29.075375179558346], [126.6064453, -28.459033] ] }, "bbox": [116.98242187499999, -32.249974455863295, 127.35351562499999, -28.459033], "id": 0 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [126.6064453, -28.459033], [125.15625, -27.2546296] ] }, "bbox": [125.15625, -28.459033, 126.6064453, -27.2546296], "id": 1 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [125.15625, -27.2546296], [123.5302734, -26.0765206] ] }, "bbox": [123.5302734, -27.2546296, 125.15625, -26.0765206] }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [123.5302734, -26.0765206], [122.9150390625, -25.562265014427492], [128.935546875, -22.63429269379352], [124.62890625, -23.483400654325628], [129.375, -21.616579336740593], [135.791015625, -21.53484700204879], [139.833984375, -22.105998799750566] ] }, "bbox": [122.9150390625, -26.0765206, 139.833984375, -21.53484700204879] }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [116.98242187499999, -32.249974455863295], [127.35351562499999, -29.075375179558346], [122.9150390625, -25.562265014427492], [128.935546875, -22.63429269379352], [124.62890625, -23.483400654325628], [129.375, -21.616579336740593], [135.791015625, -21.53484700204879], [139.833984375, -22.105998799750566] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [126.60644531250001, -28.459033019728043], [125.15625000000001, -27.254629577800063], [123.53027343749999, -26.07652055985696] ] } } ] } ================================================ FILE: packages/turf-line-split/test/out/point-on-line-1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [116.98242187499999, -32.249974455863295], [127.35351562499999, -29.075375179558346], [122.9150390625, -25.562265014427492], [128.935546875, -22.63429269379352], [124.62890625, -23.483400654325628], [126.5064304, -22.7448982] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [126.5064304, -22.7448982], [129.375, -21.616579336740593], [135.791015625, -21.53484700204879], [139.833984375, -22.105998799750566] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [116.98242187499999, -32.249974455863295], [127.35351562499999, -29.075375179558346], [122.9150390625, -25.562265014427492], [128.935546875, -22.63429269379352], [124.62890625, -23.483400654325628], [129.375, -21.616579336740593], [135.791015625, -21.53484700204879], [139.833984375, -22.105998799750566] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [126.50643035185698, -22.744898171599424] } } ] } ================================================ FILE: packages/turf-line-split/test/out/point-on-line-2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [116.98242187499999, -32.249974455863295], [127.35351562499999, -29.075375179558346], [122.9150390625, -25.562265014427492], [128.935546875, -22.63429269379352], [127.6116943, -22.8116307] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [127.6116943, -22.8116307], [124.62890625, -23.483400654325628], [129.375, -21.616579336740593], [135.791015625, -21.53484700204879], [139.833984375, -22.105998799750566] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [116.98242187499999, -32.249974455863295], [127.35351562499999, -29.075375179558346], [122.9150390625, -25.562265014427492], [128.935546875, -22.63429269379352], [124.62890625, -23.483400654325628], [129.375, -21.616579336740593], [135.791015625, -21.53484700204879], [139.833984375, -22.105998799750566] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [127.6116943359375, -22.811630707692412] } } ] } ================================================ FILE: packages/turf-line-split/test/out/point-on-line-3.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [116.98242187499999, -32.249974455863295], [127.35351562499999, -29.075375179558346], [122.9150390625, -25.562265014427492], [128.935546875, -22.63429269379352], [124.62890625, -23.483400654325628], [129.375, -21.616579336740593], [135.791015625, -21.53484700204879], [139.833984375, -22.105998799750566] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [116.98242187499999, -32.249974455863295], [127.35351562499999, -29.075375179558346], [122.9150390625, -25.562265014427492], [128.935546875, -22.63429269379352], [124.62890625, -23.483400654325628], [129.375, -21.616579336740593], [135.791015625, -21.53484700204879], [139.833984375, -22.105998799750566] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [115.79589843749999, -33.760882000869174] } } ] } ================================================ FILE: packages/turf-line-split/test/out/polygon-with-holes.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [115.5887281750802, -33.66501705609563], [113.99414062499999, -34.45221847282653] ] }, "bbox": [ 113.99414062499999, -34.45221847282653, 115.5887281750802, -33.66501705609563 ], "id": 0 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [125.27477069463129, -28.883300057538364], [115.5887281750802, -33.66501705609563] ] }, "bbox": [ 115.5887281750802, -33.66501705609563, 125.27477069463129, -28.883300057538364 ], "id": 1 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [108.10546875, -24.607069137709694], [116.103515625, -16.04581345375217], [123.3984375, -14.689881366618762], [123.80984529019764, -14.850144611823424] ] }, "bbox": [ 108.10546875, -24.607069137709694, 123.80984529019764, -14.689881366618762 ], "id": 2 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [123.80984529019764, -14.850144611823424], [127.529296875, -16.299051014581817], [131.8707236511523, -19.47488830290292] ] }, "bbox": [ 123.80984529019764, -19.47488830290292, 131.8707236511523, -14.850144611823424 ], "id": 3 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [144.62835845465096, -31.052934], [137.724609375, -28.14950321154457], [127.705078125, -27.68352808378776], [125.27477069463129, -28.883300057538364] ] }, "bbox": [125.27477069463129, -31.052934, 144.62835845465096, -27.68352808378776], "id": 4 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [131.8707236511523, -19.47488830290292], [132.890625, -20.2209657795223], [137.548828125, -22.67484735118852], [144.05273437499997, -23.805449612314614], [144.87133130139694, -24.083906137859618] ] }, "bbox": [ 131.8707236511523, -24.083906137859618, 144.87133130139694, -19.47488830290292 ], "id": 5 }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [144.87133130139694, -24.083906137859618], [150.380859375, -25.95804467331783], [154.7611122904153, -29.8195405571525] ] }, "bbox": [ 144.87133130139694, -29.8195405571525, 154.7611122904153, -24.083906137859618 ], "id": 6 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [154.7611122904153, -29.8195405571525], [155.302734375, -30.29701788337204], [160.3125, -37.64903402157864], [152.83750336551705, -34.50536018265984] ] }, "bbox": [152.83750336551705, -37.64903402157864, 160.3125, -29.8195405571525] }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [152.83750336551705, -34.50536018265984], [144.62835845465096, -31.052934] ] }, "bbox": [144.62835845465096, -34.50536018265984, 152.83750336551705, -31.052934] }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [108.10546875, -24.607069137709694], [116.103515625, -16.04581345375217], [123.3984375, -14.689881366618762], [127.529296875, -16.299051014581817], [132.890625, -20.2209657795223], [137.548828125, -22.67484735118852], [144.05273437499997, -23.805449612314614], [150.380859375, -25.95804467331783], [155.302734375, -30.29701788337204], [160.3125, -37.64903402157864], [137.724609375, -28.14950321154457], [127.705078125, -27.68352808378776], [113.99414062499999, -34.45221847282653] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [127.265625, -12.897489183755892], [118.125, -18.062312304546715], [113.818359375, -22.67484735118852], [116.01562499999999, -36.3151251474805], [123.3984375, -36.10237644873643], [133.41796874999997, -34.234512362369856], [141.240234375, -38.13455657705412], [151.34765625, -38.13455657705412], [155.478515625, -28.071980301779845], [150.1171875, -17.560246503294888], [142.822265625, -12.039320557540572], [137.373046875, -11.60919340793894], [127.265625, -12.897489183755892] ], [ [135.966796875, -18.729501999072138], [142.20703125, -18.81271785640776], [145.8984375, -26.11598592533351], [144.84375, -31.05293398570514], [139.74609375, -31.05293398570514], [135.52734375, -29.993002284551064], [127.61718749999999, -29.993002284551064], [123.3984375, -27.994401411046148], [123.3984375, -24.046463999666567], [125.5078125, -20.632784250388013], [135.966796875, -18.729501999072138] ] ] } } ] } ================================================ FILE: packages/turf-line-split/test/out/polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [132.24601154296846, -33.23618973320634], [131.66015625, -37.85750715625203] ] }, "bbox": [131.66015625, -37.85750715625203, 132.24601154296846, -33.23618973320634], "id": 1 }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [133.76953125, -5.44102230371796], [133.38557423512307, -13.837223632933568] ] }, "bbox": [133.38557423512307, -13.837223632933568, 133.76953125, -5.44102230371796] }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 10 }, "geometry": { "type": "LineString", "coordinates": [ [133.38557423512307, -13.837223632933568], [133.2421875, -16.97274101999901], [135.87890625, -20.2209657795223], [137.548828125, -24.607069137709694], [132.802734375, -28.84467368077178], [132.24601154296846, -33.23618973320634] ] }, "bbox": [132.24601154296846, -33.23618973320634, 137.548828125, -13.837223632933568] }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [133.76953125, -5.44102230371796], [133.2421875, -16.97274101999901], [135.87890625, -20.2209657795223], [137.548828125, -24.607069137709694], [132.802734375, -28.84467368077178], [131.66015625, -37.85750715625203] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [115.13671875, -21.616579336740593], [116.98242187499999, -34.66935854524544], [128.32031249999997, -31.42866311735861], [142.734375, -38.06539235133247], [150.908203125, -22.268764039073968], [135.791015625, -12.811801316582619], [115.13671875, -21.616579336740593] ] ] } } ] } ================================================ FILE: packages/turf-line-split/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { featureEach } from "@turf/meta"; import { point, lineString, multiPoint, polygon, featureCollection, round, } from "@turf/helpers"; import { getCoords } from "@turf/invariant"; import { lineSplit } from "./index.js"; import type { Feature, FeatureCollection, LineString, MultiLineString, MultiPoint, MultiPolygon, Point, Polygon, } from "geojson"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; let fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename) as FeatureCollection, }; }); // fixtures = fixtures.filter(({ name }) => name === "issue-#1075"); test("turf-line-split", (t) => { for (const { filename, name, geojson } of fixtures) { const line = geojson.features[0] as Feature; const splitter = geojson.features[1] as Feature< Point | MultiPoint | LineString | MultiLineString | Polygon | MultiPolygon >; const results = colorize(lineSplit(line, splitter)); featureEach(geojson, (feature) => results.features.push(feature)); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEquals(results, loadJsonFileSync(directories.out + filename), name); } t.end(); }); test("turf-line-split -- lines should split the same feature 1 with 2 as 2 with 1", (t) => { const featureOne = lineString([ [114.58215786065353825, -14.82470576519326144], [137.21678649707752129, -16.71692980416107588], ]); const featureTwo = lineString([ [119.1412061636556956, -19.83670052919270788], [133.06640625, -12.64033830684678961], ]); const resultsOne = lineSplit(featureOne, featureTwo); const resultsTwo = lineSplit(featureTwo, featureOne); const midCoordOne = getCoords(resultsOne.features[0])[1]; const midCoordTwo = getCoords(resultsTwo.features[1])[0]; // Round precision to 6 decimals midCoordOne[0] = round(midCoordOne[0], 6); midCoordOne[1] = round(midCoordOne[1], 6); midCoordTwo[0] = round(midCoordTwo[0], 6); midCoordTwo[1] = round(midCoordTwo[1], 6); t.deepEquals( midCoordOne, midCoordTwo, "Splits were made in different locations" ); t.end(); }); test("turf-line-split -- throws", (t) => { const pt = point([9, 50]); const line = lineString([ [7, 50], [8, 50], [9, 50], ]); // @ts-expect-error passing null for line t.throws(() => lineSplit(null, pt), " is required"); // @ts-expect-error passing null for splitter t.throws(() => lineSplit(line, null), " is required"); // @ts-expect-error passing wrong type for line t.throws(() => lineSplit(pt, pt), " must be LineString"); t.throws( // @ts-expect-error passing wrong type for splitter () => lineSplit(line, featureCollection([pt, line])), " cannot be a FeatureCollection" ); t.end(); }); test("turf-line-split -- splitter exactly on end of line", (t) => { const pt = point([9, 50]); const line = lineString([ [7, 50], [8, 50], [9, 50], ]); const features = lineSplit(line, pt).features; t.deepEqual(features, [line], "should only contain 1 line of 3 vertices"); t.end(); }); test("turf-line-split -- lines should only contain 2 vertices #688", (t) => { const middlePoint = point([8, 50]); const line = lineString([ [7, 50], [8, 50], [9, 50], ]); const [line1, line2] = lineSplit(line, middlePoint).features; t.deepEqual( line1, lineString([ [7, 50], [8, 50], ]), "line1 should have 2 vertices" ); t.deepEqual( line2, lineString([ [8, 50], [9, 50], ]), "line2 should have 2 vertices" ); t.end(); }); test("turf-line-split -- precision issue #852", (t) => { const line = lineString([ [9.2202022, 49.1438226], [9.2199531, 49.1439048], [9.2196177, 49.1440264], ]); const startPoint = point([9.2202022, 49.1438226]); const middlePoint = point([9.2199531, 49.1439048]); const endPoint = point([9.2196177, 49.1440264]); const [line1, line2] = lineSplit(line, middlePoint).features; t.deepEqual( line1, lineString([ [9.2202022, 49.1438226], [9.2199531, 49.1439048], ]), "middlePoint: line1 should have 2 vertices" ); t.deepEqual( line2, lineString([ [9.2199531, 49.1439048], [9.2196177, 49.1440264], ]), "middlePoint: line2 should have 2 vertices" ); t.deepEqual( lineSplit(line, startPoint).features, [line], "startPoint: should only contain 1 line of 3 vertices" ); t.deepEqual( lineSplit(line, endPoint).features, [line], "endPoint: should only contain 1 line of 3 vertices" ); t.end(); }); test("turf-line-split -- prevent input mutation", (t) => { const line = lineString([ [9.2202022, 49.1438226], [9.2199531, 49.1439048], [9.2196177, 49.1440264], ]); const lineBefore = JSON.parse(JSON.stringify(line)); lineSplit(line, point([9.2196177, 49.1440264])); t.deepEqual(line, lineBefore, "line should be the same"); t.end(); }); test("turf-line-split -- issue #1075", (t) => { const line = lineString([ [-87.168433, 37.946093], [-87.16851, 37.960085], ]); const splitter = multiPoint([ [-87.168446, 37.947929], [-87.168445, 37.948301], ]); const split = lineSplit(line, splitter); t.assert(split); t.end(); }); test("lineSplit - incorrect split - issue #1075", (t) => { let line, splitter, split; // Example sourced from https://github.com/Turfjs/turf/issues/1232#issue-290515769 line = lineString([ [13.8716, 56.2783], [13.8715, 56.2785], [13.8743, 56.2794], [13.8796, 56.2746], ]); splitter = polygon([ [ [13.8726, 56.2786], [13.8716, 56.2786], [13.8713, 56.2784], [13.8726, 56.2786], ], ]); split = lineSplit(line, splitter); t.equal(split.features.length, 3, "Line split into 3 pieces example 1"); // Example sourced from https://github.com/Turfjs/turf/issues/1232#issuecomment-361970429 line = lineString([ [10.424716, 50.024888], [10.417643, 50.029512], ]); splitter = polygon([ [ [10.41993839, 50.0301184], [10.42587086, 50.02630702], [10.41993839, 50.02249594], [10.41400592, 50.02630702], [10.41993839, 50.0301184], ], ]); split = lineSplit(line, splitter); t.equal(split.features.length, 3, "Line split into 3 pieces example 2"); // Example sourced from https://github.com/Turfjs/turf/issues/1232#issuecomment-2033181347 line = lineString([ [-111.570323, 49.587462], [-111.570824, 49.587462], [-111.571218, 49.587212], [-111.571075, 49.587212], [-111.566432, 49.584359], ]); splitter = lineString([ [-111.57071881384209, 49.58746705929172], [-111.57072743959235, 49.587462], [-111.57106608768505, 49.58726337153985], [-111.57109709453526, 49.587212], [-111.5711022620136, 49.58720343862349], ]); split = lineSplit(line, splitter); t.equal(split.features.length, 3, "Line split into 3 pieces example 3"); // Example sourced from https://github.com/Turfjs/turf/issues/1232#issuecomment-2231554080 line = lineString([ [0, 44], [25, 38], [27, 40], [0, 62], ]); splitter = polygon([ [ [0, 20], [42, 20], [42, 39], [28, 39], [0, 52], [0, 20], ], ]); split = lineSplit(line, splitter); t.equal(split.features.length, 2, "Line split into 2 pieces example 4"); t.end(); }); test("lineSplit - wavy lines - issue #2288", (t) => { // Example sourced from https://github.com/Turfjs/turf/issues/2288#issuecomment-1125555752 const line = lineString([ [-122.7779211637529, 38.46929673131614], [-122.78647173567292, 38.46208580491829], ]); const splitter = polygon([ [ [-122.784210824, 38.46577859000006, 0], [-122.783497375, 38.46577665500005, 0], [-122.78349775899989, 38.46574340700003, 0], [-122.78337219700002, 38.46574404700004, 0], [-122.7833724819999, 38.46570876200008, 0], [-122.783186362, 38.46571185100002, 0], [-122.78318417300001, 38.46569283300004, 0], [-122.782172859, 38.46568571000005, 0], [-122.7821622549999, 38.46587288700003, 0], [-122.783391339, 38.465877436, 0], [-122.78339171499998, 38.46589273900003, 0], [-122.78420487999992, 38.46590174800005, 0], [-122.784210824, 38.46577859000006, 0], ], ]); const split = lineSplit(line, splitter); t.equal(split.features.length, 3, "Line split into 3 pieces"); t.end(); }); /** * Colorize FeatureCollection * * @param {FeatureCollection|Feature} geojson Feature or FeatureCollection * @returns {FeatureCollection} colorized FeatureCollection */ function colorize(geojson: FeatureCollection) { const results: Feature[] = []; featureEach(geojson, (feature, index) => { const r = index % 2 === 0 ? "F" : "0"; const g = "0"; const b = index % 2 === 0 ? "0" : "F"; feature.properties = Object.assign( { stroke: "#" + r + g + b, "stroke-width": 10, }, feature.properties ); results.push(feature); }); return featureCollection(results); } ================================================ FILE: packages/turf-line-split/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-line-to-polygon/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-line-to-polygon/README.md ================================================ # @turf/line-to-polygon ## lineToPolygon Converts (Multi)LineString(s) to Polygon(s). ### Parameters * `lines` **([FeatureCollection][1] | [Feature][2]<([LineString][3] | [MultiLineString][4])>)** Features to convert * `options` **[Object][5]** Optional parameters (optional, default `{}`) * `options.properties` **[Object][5]** translates GeoJSON properties to Feature (optional, default `{}`) * `options.autoComplete` **[boolean][6]** auto complete linestrings (matches first & last coordinates) (optional, default `true`) * `options.orderCoords` **[boolean][6]** sorts linestrings to place outer ring at the first position of the coordinates (optional, default `true`) * `options.mutate` **[boolean][6]** mutate the original linestring using autoComplete (matches first & last coordinates) (optional, default `false`) ### Examples ```javascript var line = turf.lineString([[125, -30], [145, -30], [145, -20], [125, -20], [125, -30]]); var polygon = turf.lineToPolygon(line); //addToMap var addToMap = [polygon]; ``` Returns **[Feature][2]<([Polygon][7] | [MultiPolygon][8])>** converted to Polygons [1]: https://tools.ietf.org/html/rfc7946#section-3.3 [2]: https://tools.ietf.org/html/rfc7946#section-3.2 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [4]: https://tools.ietf.org/html/rfc7946#section-3.1.5 [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean [7]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [8]: https://tools.ietf.org/html/rfc7946#section-3.1.7 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/line-to-polygon ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-line-to-polygon/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { lineToPolygon } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; let fixtures = fs.readdirSync(directory).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); // fixtures = fixtures.filter(fixture => fixture.name === 'multi-linestrings-with-holes'); /** * Benchmark Results * * collection-linestring x 2,337,816 ops/sec ±3.08% (86 runs sampled) * geometry-linestring x 6,574,088 ops/sec ±3.62% (83 runs sampled) * linestring-incomplete x 6,768,527 ops/sec ±3.60% (84 runs sampled) * linestring x 6,752,969 ops/sec ±1.94% (84 runs sampled) * multi-linestring-incomplete x 808,779 ops/sec ±8.86% (80 runs sampled) * multi-linestring-outer-ring-middle-position x 664,121 ops/sec ±1.52% (83 runs sampled) * multi-linestring-with-hole x 1,018,657 ops/sec ±1.35% (86 runs sampled) * multi-linestrings-with-holes x 421,758 ops/sec ±0.92% (88 runs sampled) */ const suite = new Benchmark.Suite("turf-linestring-to-polygon"); for (const { name, geojson } of fixtures) { suite.add(name, () => lineToPolygon(geojson)); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-line-to-polygon/index.ts ================================================ import { Feature, FeatureCollection, MultiLineString, LineString, GeoJsonProperties, BBox, Position, } from "geojson"; import { bbox as turfBBox } from "@turf/bbox"; import { getCoords, getGeom } from "@turf/invariant"; import { polygon, multiPolygon, lineString } from "@turf/helpers"; import { clone } from "@turf/clone"; /** * Converts (Multi)LineString(s) to Polygon(s). * * @function * @param {FeatureCollection|Feature} lines Features to convert * @param {Object} [options={}] Optional parameters * @param {Object} [options.properties={}] translates GeoJSON properties to Feature * @param {boolean} [options.autoComplete=true] auto complete linestrings (matches first & last coordinates) * @param {boolean} [options.orderCoords=true] sorts linestrings to place outer ring at the first position of the coordinates * @param {boolean} [options.mutate=false] mutate the original linestring using autoComplete (matches first & last coordinates) * @returns {Feature} converted to Polygons * @example * var line = turf.lineString([[125, -30], [145, -30], [145, -20], [125, -20], [125, -30]]); * * var polygon = turf.lineToPolygon(line); * * //addToMap * var addToMap = [polygon]; */ function lineToPolygon( lines: Feature | FeatureCollection | G, options: { properties?: GeoJsonProperties; autoComplete?: boolean; orderCoords?: boolean; mutate?: boolean; } = {} ) { // Optional parameters var properties = options.properties; var autoComplete = options.autoComplete ?? true; var orderCoords = options.orderCoords ?? true; var mutate = options.mutate ?? false; if (!mutate) { lines = clone(lines); } switch (lines.type) { case "FeatureCollection": var coords: number[][][][] = []; lines.features.forEach(function (line) { coords.push( getCoords(lineStringToPolygon(line, {}, autoComplete, orderCoords)) ); }); return multiPolygon(coords, properties); default: return lineStringToPolygon(lines, properties, autoComplete, orderCoords); } } /** * LineString to Polygon * * @private * @param {Feature} line line * @param {Object} [properties] translates GeoJSON properties to Feature * @param {boolean} [autoComplete=true] auto complete linestrings * @param {boolean} [orderCoords=true] sorts linestrings to place outer ring at the first position of the coordinates * @returns {Feature} line converted to Polygon */ function lineStringToPolygon( line: Feature | G, properties: GeoJsonProperties | undefined, autoComplete: boolean, orderCoords: boolean ) { properties = properties ? properties : line.type === "Feature" ? line.properties : {}; var geom = getGeom(line); var coords: Position[] | Position[][] = geom.coordinates; var type = geom.type; if (!coords.length) throw new Error("line must contain coordinates"); switch (type) { case "LineString": if (autoComplete) coords = autoCompleteCoords(coords as Position[]); return polygon([coords as Position[]], properties); case "MultiLineString": var multiCoords: number[][][] = []; var largestArea = 0; (coords as Position[][]).forEach(function (coord) { if (autoComplete) coord = autoCompleteCoords(coord); // Largest LineString to be placed in the first position of the coordinates array if (orderCoords) { var area = calculateArea(turfBBox(lineString(coord))); if (area > largestArea) { multiCoords.unshift(coord); largestArea = area; } else multiCoords.push(coord); } else { multiCoords.push(coord); } }); return polygon(multiCoords, properties); default: throw new Error("geometry type " + type + " is not supported"); } } /** * Auto Complete Coords - matches first & last coordinates * * @private * @param {Array>} coords Coordinates * @returns {Array>} auto completed coordinates */ function autoCompleteCoords(coords: Position[]) { var first = coords[0]; var x1 = first[0]; var y1 = first[1]; var last = coords[coords.length - 1]; var x2 = last[0]; var y2 = last[1]; if (x1 !== x2 || y1 !== y2) { coords.push(first); } return coords; } /** * area - quick approximate area calculation (used to sort) * * @private * @param {Array} bbox BBox [west, south, east, north] * @returns {number} very quick area calculation */ function calculateArea(bbox: BBox) { var west = bbox[0]; var south = bbox[1]; var east = bbox[2]; var north = bbox[3]; return Math.abs(west - east) * Math.abs(south - north); } export { lineToPolygon }; export default lineToPolygon; ================================================ FILE: packages/turf-line-to-polygon/package.json ================================================ { "name": "@turf/line-to-polygon", "version": "7.3.4", "description": "Converts line(s) to polygon(s).", "author": "Turf Authors", "contributors": [ "Denis Carriere <@DenisCarriere>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "gis", "polygon", "linestring", "line" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/bbox": "workspace:*", "@turf/clone": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-line-to-polygon/test/in/collection-linestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [102, 2], [103, 2], [103, 3], [102, 3], [102, 2] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [100, 0], [101, 0], [101, 1], [100, 1], [100, 0] ] } } ] } ================================================ FILE: packages/turf-line-to-polygon/test/in/geometry-linestring.geojson ================================================ { "type": "LineString", "coordinates": [ [-2.275543, 53.464547], [-2.275543, 53.489271], [-2.215118, 53.489271], [-2.215118, 53.464547], [-2.275543, 53.464547] ] } ================================================ FILE: packages/turf-line-to-polygon/test/in/linestring-incomplete.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [131.0009765625, -30.939924331023455], [125.46386718749999, -29.878755346037963], [121.77246093750001, -26.07652055985696], [121.5087890625, -21.902277966668624], [127.79296875, -16.1724728083975], [133.154296875, -14.944784875088372], [137.4169921875, -20.097206227083888], [138.515625, -26.82407078047018] ] } } ================================================ FILE: packages/turf-line-to-polygon/test/in/linestring.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-2.275543, 53.464547], [-2.275543, 53.489271], [-2.215118, 53.489271], [-2.215118, 53.464547], [-2.275543, 53.464547] ] } } ================================================ FILE: packages/turf-line-to-polygon/test/in/linestrings-to-multipolygons.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#008000", "stroke-width": 6, "stroke-opacity": 1 }, "geometry": { "type": "LineString", "coordinates": [ [33.4149169921875, 48.28684818710906], [32.816162109375, 48.42191010942875], [32.783203125, 48.09642606004488], [33.3270263671875, 47.931066347509784], [33.4149169921875, 48.28684818710906] ] } }, { "type": "Feature", "properties": { "stroke": "#ff8000", "stroke-width": 6, "stroke-opacity": 1 }, "geometry": { "type": "LineString", "coordinates": [ [35.244140625, 47.15984001304432], [35.17822265625, 46.37725420510028], [36.40869140625, 46.240651955001695], [37.02392578125, 46.9502622421856], [35.244140625, 47.15984001304432] ] } }, { "type": "Feature", "properties": { "stroke": "#ff0000", "stroke-width": 6, "stroke-opacity": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [33.398, 46.867], [34.057, 46.867], [34.057, 47.197], [33.398, 47.197], [33.398, 46.867] ], [ [33.42041015625, 46.164614496897094], [34.12353515625, 46.58906908309182], [34.73876953125, 46.73233101286786], [35.013427734375, 47.34626718205302], [34.07958984374999, 47.73193447949174], [32.947998046875, 47.338822694822], [32.354736328125, 46.73986059969267], [32.54150390625, 46.240651955001695], [33.42041015625, 46.164614496897094] ], [ [32.969, 46.46], [33.321, 46.46], [33.321, 46.672], [32.969, 46.672], [32.969, 46.46] ] ] } }, { "type": "Feature", "properties": { "stroke": "#0080ff", "stroke-width": 6, "stroke-opacity": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [34.178466796875, 48.436489955944154], [35.101318359375, 47.57652571374621], [37.3974609375, 47.48008846346322], [38.133544921875, 48.777912755501845], [35.92529296875, 49.930008124606886], [34.178466796875, 48.436489955944154] ], [ [34.80468749999999, 48.29050321714062], [35.04638671874999, 47.938426929481054], [35.760498046875, 47.95314495015594], [35.343017578125, 48.32703913063476], [34.80468749999999, 48.29050321714062] ], [ [35.99395751953125, 47.83528342275264], [35.93902587890624, 47.73193447949174], [36.15325927734375, 47.65428791076272], [35.99395751953125, 47.83528342275264] ] ] } } ] } ================================================ FILE: packages/turf-line-to-polygon/test/in/multi-linestring-incomplete.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [129.28710937499997, -31.57853542647337], [120.05859375, -26.35249785815401], [120.05859375, -19.72534224805787], [124.62890625, -17.056784609942543], [131.572265625, -17.224758206624628], [133.330078125, -23.644524198573677] ], [ [126.2548828125, -20.427012814257385], [123.662109375, -22.512556954051437], [124.1455078125, -25.36388227274024], [126.9580078125, -25.799891182088306], [128.5400390625, -24.166802085303225], [127.83691406249999, -21.207458730482642], [127.265625, -20.756113874762068] ] ] } } ================================================ FILE: packages/turf-line-to-polygon/test/in/multi-linestring-nested.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [102.359619140625, 33.916013113401696], [103.65600585937499, 33.916013113401696], [103.65600585937499, 34.97600151317588], [102.359619140625, 34.97600151317588], [102.359619140625, 33.916013113401696] ], [ [101.18408203124999, 32.95336814579932], [101.18408203124999, 35.93354064249312], [104.952392578125, 35.93354064249312], [104.952392578125, 32.95336814579932], [101.18408203124999, 32.95336814579932] ], [ [101.612548828125, 33.330528249028085], [104.556884765625, 33.330528249028085], [104.556884765625, 35.46961797120201], [101.612548828125, 35.46961797120201], [101.612548828125, 33.330528249028085] ], [ [106.4794921875, 32.7872745269555], [110.687255859375, 32.7872745269555], [110.687255859375, 36.83566824724438], [106.4794921875, 36.83566824724438], [106.4794921875, 32.7872745269555] ], [ [106.06201171875, 32.47269502206151], [111.86279296875, 32.47269502206151], [111.86279296875, 37.33522435930639], [106.06201171875, 37.33522435930639], [106.06201171875, 32.47269502206151] ] ] } } ] } ================================================ FILE: packages/turf-line-to-polygon/test/in/multi-linestring-nested2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F0F", "stroke-width": 6 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [115.927734375, -34.016241889667015], [134.560546875, -34.016241889667015], [134.560546875, -16.8886597873816], [115.927734375, -16.8886597873816], [115.927734375, -34.016241889667015] ], [ [118.65234374999999, -30.90222470517144], [131.484375, -30.90222470517144], [131.484375, -19.808054128088575], [118.65234374999999, -19.808054128088575], [118.65234374999999, -30.90222470517144] ], [ [120.9375, -28.998531814051795], [129.7265625, -28.998531814051795], [129.7265625, -22.105998799750566], [120.9375, -22.105998799750566], [120.9375, -28.998531814051795] ], [ [123.48632812499999, -27.137368359795584], [127.44140625, -27.137368359795584], [127.44140625, -24.126701958681668], [123.48632812499999, -24.126701958681668], [123.48632812499999, -27.137368359795584] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F0F", "stroke-width": 6 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [139.21874999999997, -36.10237644873643], [158.73046875, -36.10237644873643], [158.73046875, -17.476432197195518], [139.21874999999997, -17.476432197195518], [139.21874999999997, -36.10237644873643] ], [ [142.3828125, -34.016241889667015], [155.91796874999997, -34.016241889667015], [155.91796874999997, -20.13847031245114], [142.3828125, -20.13847031245114], [142.3828125, -34.016241889667015] ] ] } } ] } ================================================ FILE: packages/turf-line-to-polygon/test/in/multi-linestring-outer-ring-middle-position.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [33.398, 46.867], [34.057, 46.867], [34.057, 47.197], [33.398, 47.197], [33.398, 46.867] ], [ [33.42041015625, 46.164614496897094], [34.12353515625, 46.58906908309182], [34.73876953125, 46.73233101286786], [35.013427734375, 47.34626718205302], [34.07958984374999, 47.73193447949174], [32.947998046875, 47.338822694822], [32.354736328125, 46.73986059969267], [32.54150390625, 46.240651955001695], [33.42041015625, 46.164614496897094] ], [ [32.969, 46.46], [33.321, 46.46], [33.321, 46.672], [32.969, 46.672], [32.969, 46.46] ] ] } } ================================================ FILE: packages/turf-line-to-polygon/test/in/multi-linestring-with-hole.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [100, 0], [101, 0], [101, 1], [100, 1], [100, 0] ], [ [100.2, 0.2], [100.8, 0.2], [100.8, 0.8], [100.2, 0.8], [100.2, 0.2] ] ] } } ================================================ FILE: packages/turf-line-to-polygon/test/in/multi-linestrings-nested.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F0F", "stroke-width": 6 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [115.927734375, -34.016241889667015], [134.560546875, -34.016241889667015], [134.560546875, -16.8886597873816], [115.927734375, -16.8886597873816], [115.927734375, -34.016241889667015] ], [ [118.65234374999999, -30.90222470517144], [131.484375, -30.90222470517144], [131.484375, -19.808054128088575], [118.65234374999999, -19.808054128088575], [118.65234374999999, -30.90222470517144] ], [ [120.9375, -28.998531814051795], [129.7265625, -28.998531814051795], [129.7265625, -22.105998799750566], [120.9375, -22.105998799750566], [120.9375, -28.998531814051795] ], [ [123.48632812499999, -27.137368359795584], [127.44140625, -27.137368359795584], [127.44140625, -24.126701958681668], [123.48632812499999, -24.126701958681668], [123.48632812499999, -27.137368359795584] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F0F", "stroke-width": 6 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [139.21874999999997, -36.10237644873643], [158.73046875, -36.10237644873643], [158.73046875, -17.476432197195518], [139.21874999999997, -17.476432197195518], [139.21874999999997, -36.10237644873643] ], [ [142.3828125, -34.016241889667015], [155.91796874999997, -34.016241889667015], [155.91796874999997, -20.13847031245114], [142.3828125, -20.13847031245114], [142.3828125, -34.016241889667015] ] ] } } ] } ================================================ FILE: packages/turf-line-to-polygon/test/in/multi-linestrings-outer-doughnut.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F0F", "stroke-width": 6 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [115.927734375, -34.016241889667015], [134.560546875, -34.016241889667015], [134.560546875, -16.8886597873816], [115.927734375, -16.8886597873816], [115.927734375, -34.016241889667015] ], [ [118.65234374999999, -30.90222470517144], [131.484375, -30.90222470517144], [131.484375, -19.808054128088575], [118.65234374999999, -19.808054128088575], [118.65234374999999, -30.90222470517144] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F0F", "stroke-width": 6 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [120.9375, -28.998531814051795], [129.7265625, -28.998531814051795], [129.7265625, -22.105998799750566], [120.9375, -22.105998799750566], [120.9375, -28.998531814051795] ], [ [123.48632812499999, -27.137368359795584], [127.44140625, -27.137368359795584], [127.44140625, -24.126701958681668], [123.48632812499999, -24.126701958681668], [123.48632812499999, -27.137368359795584] ] ] } } ] } ================================================ FILE: packages/turf-line-to-polygon/test/in/multi-linestrings-with-holes.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [102, 2], [103, 2], [103, 3], [102, 3], [102, 2] ], [ [102.227783203125, 2.191238104506552], [102.227783203125, 2.8223442468940902], [102.843017578125, 2.8223442468940902], [102.843017578125, 2.191238104506552], [102.227783203125, 2.191238104506552] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F80", "stroke-width": 6 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [100, 0], [101, 0], [101, 1], [100, 1], [100, 0] ], [ [100.206298828125, 0.2526847277643438], [100.206298828125, 0.7909904981540058], [100.8050537109375, 0.7909904981540058], [100.8050537109375, 0.2526847277643438], [100.206298828125, 0.2526847277643438] ] ] } }, { "type": "Feature", "properties": { "stroke": "#080", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [101.700439453125, 0.5273363048115169], [102.645263671875, 0.5273363048115169], [102.645263671875, 1.3511930983018892], [101.700439453125, 1.3511930983018892], [101.700439453125, 0.5273363048115169] ] } } ] } ================================================ FILE: packages/turf-line-to-polygon/test/out/collection-linestring.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F0F", "stroke-width": 6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [102, 2], [103, 2], [103, 3], [102, 3], [102, 2] ] ], [ [ [100, 0], [101, 0], [101, 1], [100, 1], [100, 0] ] ] ] } } ================================================ FILE: packages/turf-line-to-polygon/test/out/geometry-linestring.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F0F", "stroke-width": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-2.275543, 53.464547], [-2.275543, 53.489271], [-2.215118, 53.489271], [-2.215118, 53.464547], [-2.275543, 53.464547] ] ] } } ================================================ FILE: packages/turf-line-to-polygon/test/out/linestring-incomplete.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F0F", "stroke-width": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [131.0009765625, -30.939924331023455], [125.46386718749999, -29.878755346037963], [121.77246093750001, -26.07652055985696], [121.5087890625, -21.902277966668624], [127.79296875, -16.1724728083975], [133.154296875, -14.944784875088372], [137.4169921875, -20.097206227083888], [138.515625, -26.82407078047018], [131.0009765625, -30.939924331023455] ] ] } } ================================================ FILE: packages/turf-line-to-polygon/test/out/linestring.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F0F", "stroke-width": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-2.275543, 53.464547], [-2.275543, 53.489271], [-2.215118, 53.489271], [-2.215118, 53.464547], [-2.275543, 53.464547] ] ] } } ================================================ FILE: packages/turf-line-to-polygon/test/out/linestrings-to-multipolygons.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F0F", "stroke-width": 6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [33.4149169921875, 48.28684818710906], [32.816162109375, 48.42191010942875], [32.783203125, 48.09642606004488], [33.3270263671875, 47.931066347509784], [33.4149169921875, 48.28684818710906] ] ], [ [ [35.244140625, 47.15984001304432], [35.17822265625, 46.37725420510028], [36.40869140625, 46.240651955001695], [37.02392578125, 46.9502622421856], [35.244140625, 47.15984001304432] ] ], [ [ [33.42041015625, 46.164614496897094], [34.12353515625, 46.58906908309182], [34.73876953125, 46.73233101286786], [35.013427734375, 47.34626718205302], [34.07958984374999, 47.73193447949174], [32.947998046875, 47.338822694822], [32.354736328125, 46.73986059969267], [32.54150390625, 46.240651955001695], [33.42041015625, 46.164614496897094] ], [ [33.398, 46.867], [34.057, 46.867], [34.057, 47.197], [33.398, 47.197], [33.398, 46.867] ], [ [32.969, 46.46], [33.321, 46.46], [33.321, 46.672], [32.969, 46.672], [32.969, 46.46] ] ], [ [ [34.178466796875, 48.436489955944154], [35.101318359375, 47.57652571374621], [37.3974609375, 47.48008846346322], [38.133544921875, 48.777912755501845], [35.92529296875, 49.930008124606886], [34.178466796875, 48.436489955944154] ], [ [34.80468749999999, 48.29050321714062], [35.04638671874999, 47.938426929481054], [35.760498046875, 47.95314495015594], [35.343017578125, 48.32703913063476], [34.80468749999999, 48.29050321714062] ], [ [35.99395751953125, 47.83528342275264], [35.93902587890624, 47.73193447949174], [36.15325927734375, 47.65428791076272], [35.99395751953125, 47.83528342275264] ] ] ] } } ================================================ FILE: packages/turf-line-to-polygon/test/out/multi-linestring-incomplete.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F0F", "stroke-width": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [129.28710937499997, -31.57853542647337], [120.05859375, -26.35249785815401], [120.05859375, -19.72534224805787], [124.62890625, -17.056784609942543], [131.572265625, -17.224758206624628], [133.330078125, -23.644524198573677], [129.28710937499997, -31.57853542647337] ], [ [126.2548828125, -20.427012814257385], [123.662109375, -22.512556954051437], [124.1455078125, -25.36388227274024], [126.9580078125, -25.799891182088306], [128.5400390625, -24.166802085303225], [127.83691406249999, -21.207458730482642], [127.265625, -20.756113874762068], [126.2548828125, -20.427012814257385] ] ] } } ================================================ FILE: packages/turf-line-to-polygon/test/out/multi-linestring-nested.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F0F", "stroke-width": 6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [106.06201171875, 32.47269502206151], [111.86279296875, 32.47269502206151], [111.86279296875, 37.33522435930639], [106.06201171875, 37.33522435930639], [106.06201171875, 32.47269502206151] ], [ [106.4794921875, 32.7872745269555], [110.687255859375, 32.7872745269555], [110.687255859375, 36.83566824724438], [106.4794921875, 36.83566824724438], [106.4794921875, 32.7872745269555] ], [ [101.18408203124999, 32.95336814579932], [101.18408203124999, 35.93354064249312], [104.952392578125, 35.93354064249312], [104.952392578125, 32.95336814579932], [101.18408203124999, 32.95336814579932] ], [ [102.359619140625, 33.916013113401696], [103.65600585937499, 33.916013113401696], [103.65600585937499, 34.97600151317588], [102.359619140625, 34.97600151317588], [102.359619140625, 33.916013113401696] ], [ [101.612548828125, 33.330528249028085], [104.556884765625, 33.330528249028085], [104.556884765625, 35.46961797120201], [101.612548828125, 35.46961797120201], [101.612548828125, 33.330528249028085] ] ] ] } } ================================================ FILE: packages/turf-line-to-polygon/test/out/multi-linestring-nested2.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F0F", "stroke-width": 6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [115.927734375, -34.016241889667015], [134.560546875, -34.016241889667015], [134.560546875, -16.8886597873816], [115.927734375, -16.8886597873816], [115.927734375, -34.016241889667015] ], [ [118.65234374999999, -30.90222470517144], [131.484375, -30.90222470517144], [131.484375, -19.808054128088575], [118.65234374999999, -19.808054128088575], [118.65234374999999, -30.90222470517144] ], [ [120.9375, -28.998531814051795], [129.7265625, -28.998531814051795], [129.7265625, -22.105998799750566], [120.9375, -22.105998799750566], [120.9375, -28.998531814051795] ], [ [123.48632812499999, -27.137368359795584], [127.44140625, -27.137368359795584], [127.44140625, -24.126701958681668], [123.48632812499999, -24.126701958681668], [123.48632812499999, -27.137368359795584] ] ], [ [ [139.21874999999997, -36.10237644873643], [158.73046875, -36.10237644873643], [158.73046875, -17.476432197195518], [139.21874999999997, -17.476432197195518], [139.21874999999997, -36.10237644873643] ], [ [142.3828125, -34.016241889667015], [155.91796874999997, -34.016241889667015], [155.91796874999997, -20.13847031245114], [142.3828125, -20.13847031245114], [142.3828125, -34.016241889667015] ] ] ] } } ================================================ FILE: packages/turf-line-to-polygon/test/out/multi-linestring-outer-ring-middle-position.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F0F", "stroke-width": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [33.42041015625, 46.164614496897094], [34.12353515625, 46.58906908309182], [34.73876953125, 46.73233101286786], [35.013427734375, 47.34626718205302], [34.07958984374999, 47.73193447949174], [32.947998046875, 47.338822694822], [32.354736328125, 46.73986059969267], [32.54150390625, 46.240651955001695], [33.42041015625, 46.164614496897094] ], [ [33.398, 46.867], [34.057, 46.867], [34.057, 47.197], [33.398, 47.197], [33.398, 46.867] ], [ [32.969, 46.46], [33.321, 46.46], [33.321, 46.672], [32.969, 46.672], [32.969, 46.46] ] ] } } ================================================ FILE: packages/turf-line-to-polygon/test/out/multi-linestring-with-hole.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F0F", "stroke-width": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [100, 0], [101, 0], [101, 1], [100, 1], [100, 0] ], [ [100.2, 0.2], [100.8, 0.2], [100.8, 0.8], [100.2, 0.8], [100.2, 0.2] ] ] } } ================================================ FILE: packages/turf-line-to-polygon/test/out/multi-linestrings-nested.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F0F", "stroke-width": 6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [115.927734375, -34.016241889667015], [134.560546875, -34.016241889667015], [134.560546875, -16.8886597873816], [115.927734375, -16.8886597873816], [115.927734375, -34.016241889667015] ], [ [118.65234374999999, -30.90222470517144], [131.484375, -30.90222470517144], [131.484375, -19.808054128088575], [118.65234374999999, -19.808054128088575], [118.65234374999999, -30.90222470517144] ], [ [120.9375, -28.998531814051795], [129.7265625, -28.998531814051795], [129.7265625, -22.105998799750566], [120.9375, -22.105998799750566], [120.9375, -28.998531814051795] ], [ [123.48632812499999, -27.137368359795584], [127.44140625, -27.137368359795584], [127.44140625, -24.126701958681668], [123.48632812499999, -24.126701958681668], [123.48632812499999, -27.137368359795584] ] ], [ [ [139.21874999999997, -36.10237644873643], [158.73046875, -36.10237644873643], [158.73046875, -17.476432197195518], [139.21874999999997, -17.476432197195518], [139.21874999999997, -36.10237644873643] ], [ [142.3828125, -34.016241889667015], [155.91796874999997, -34.016241889667015], [155.91796874999997, -20.13847031245114], [142.3828125, -20.13847031245114], [142.3828125, -34.016241889667015] ] ] ] } } ================================================ FILE: packages/turf-line-to-polygon/test/out/multi-linestrings-outer-doughnut.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F0F", "stroke-width": 6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [115.927734375, -34.016241889667015], [134.560546875, -34.016241889667015], [134.560546875, -16.8886597873816], [115.927734375, -16.8886597873816], [115.927734375, -34.016241889667015] ], [ [118.65234374999999, -30.90222470517144], [131.484375, -30.90222470517144], [131.484375, -19.808054128088575], [118.65234374999999, -19.808054128088575], [118.65234374999999, -30.90222470517144] ] ], [ [ [120.9375, -28.998531814051795], [129.7265625, -28.998531814051795], [129.7265625, -22.105998799750566], [120.9375, -22.105998799750566], [120.9375, -28.998531814051795] ], [ [123.48632812499999, -27.137368359795584], [127.44140625, -27.137368359795584], [127.44140625, -24.126701958681668], [123.48632812499999, -24.126701958681668], [123.48632812499999, -27.137368359795584] ] ] ] } } ================================================ FILE: packages/turf-line-to-polygon/test/out/multi-linestrings-with-holes.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F0F", "stroke-width": 6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [102, 2], [103, 2], [103, 3], [102, 3], [102, 2] ], [ [102.227783203125, 2.191238104506552], [102.227783203125, 2.8223442468940902], [102.843017578125, 2.8223442468940902], [102.843017578125, 2.191238104506552], [102.227783203125, 2.191238104506552] ] ], [ [ [100, 0], [101, 0], [101, 1], [100, 1], [100, 0] ], [ [100.206298828125, 0.2526847277643438], [100.206298828125, 0.7909904981540058], [100.8050537109375, 0.7909904981540058], [100.8050537109375, 0.2526847277643438], [100.206298828125, 0.2526847277643438] ] ], [ [ [101.700439453125, 0.5273363048115169], [102.645263671875, 0.5273363048115169], [102.645263671875, 1.3511930983018892], [101.700439453125, 1.3511930983018892], [101.700439453125, 0.5273363048115169] ] ] ] } } ================================================ FILE: packages/turf-line-to-polygon/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { point, lineString } from "@turf/helpers"; import { clone } from "@turf/clone"; import { lineToPolygon } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; let fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); // fixtures = fixtures.filter(fixture => fixture.name === 'multi-linestrings-with-holes'); test("turf-linestring-to-polygon", (t) => { for (const { name, filename, geojson } of fixtures) { const originalInput = clone(geojson); let { autoComplete, properties, orderCoords } = geojson.properties || {}; properties = properties || { stroke: "#F0F", "stroke-width": 6 }; const results = lineToPolygon(geojson, { properties: properties, autoComplete: autoComplete, orderCoords: orderCoords, }); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEqual(loadJsonFileSync(directories.out + filename), results, name); t.deepEqual(originalInput, geojson); } // Handle Errors t.throws(() => lineToPolygon(point([10, 5])), "throws - invalid geometry"); t.throws(() => lineToPolygon(lineString([])), "throws - empty coordinates"); t.assert( lineToPolygon( lineString([ [10, 5], [20, 10], [30, 20], ]), { autocomplete: false } ), "is valid - autoComplete=false" ); t.end(); }); ================================================ FILE: packages/turf-line-to-polygon/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-line-to-polygon/types.ts ================================================ import { LineString, MultiLineString } from "geojson"; import { featureCollection, lineString, multiLineString } from "@turf/helpers"; import { lineToPolygon } from "./index.js"; // Fixtures const coords = [ [125, -30], [145, -30], [145, -20], [125, -20], [125, -30], ]; const line = lineString(coords); const multiLine = multiLineString([coords, coords]); const fc = featureCollection([line, multiLine]); // Assert results with types const poly1 = lineToPolygon(line); // Feature const poly2 = lineToPolygon(multiLine); // Feature const poly3 = lineToPolygon(fc); // Feature ================================================ FILE: packages/turf-mask/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-mask/README.md ================================================ # @turf/mask ## mask Takes polygons or multipolygons and an optional mask, and returns an exterior ring polygon with holes. ### Parameters * `polygon` **([Polygon][1] | [MultiPolygon][2] | [Feature][3]<([Polygon][1] | [MultiPolygon][2])> | [FeatureCollection][4]<([Polygon][1] | [MultiPolygon][2])>)** GeoJSON polygon used as interior rings or holes * `mask` **([Polygon][1] | [Feature][3]<[Polygon][1]>)?** GeoJSON polygon used as the exterior ring (if undefined, the world extent is used) * `options` **[Object][5]** Optional parameters (optional, default `{}`) * `options.mutate` **[boolean][6]** allows the `mask` GeoJSON input to be mutated (performance improvement if true) (optional, default `false`) ### Examples ```javascript const polygon = turf.polygon([[[112, -21], [116, -36], [146, -39], [153, -24], [133, -10], [112, -21]]]); const mask = turf.polygon([[[90, -55], [170, -55], [170, 10], [90, 10], [90, -55]]]); const masked = turf.mask(polygon, mask); //addToMap const addToMap = [masked] ``` Returns **[Feature][3]<[Polygon][1]>** Masked Polygon (exterior ring with holes) [1]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.7 [3]: https://tools.ietf.org/html/rfc7946#section-3.2 [4]: https://tools.ietf.org/html/rfc7946#section-3.3 [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/mask ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-mask/bench.ts ================================================ import { FeatureCollection, Polygon, MultiPolygon, Feature } from "geojson"; import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark, { Event } from "benchmark"; import { mask as turfMask } from "./index.js"; import clone from "@turf/clone"; // type guard to narrow the type of the fixtures const isPolygonFeature = ( feature: Feature ): feature is Feature => feature.geometry.type === "Polygon"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); // these test fixtures are not used for benchmarking because they contain a // FeatureCollection with a single MultiPolygon, instead of a FeatureCollection // with two Polygons, where the first one is the polygon and the second is the mask. const SKIP = ["multi-polygon.geojson", "overlapping.geojson"]; const suite = new Benchmark.Suite("turf-mask"); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; let fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync( path.join(directories.in, filename) ) as FeatureCollection, }; }); for (const { name, filename, geojson } of fixtures) { if (SKIP.includes(filename)) continue; const [polygon, masking] = geojson.features; if (!masking || !isPolygonFeature(masking)) { throw new Error( "Fixtures should have two features: an input feature and a Polygon masking feature." ); } const getSuite = ({ mutate }: { mutate: boolean }) => ({ name: `${name} (mutate = ${mutate})`, fn: () => { // We clone the inputs to prevent tests from affecting each other turfMask(clone(polygon), clone(masking), { mutate }); }, }); suite.add(getSuite({ mutate: false })); suite.add(getSuite({ mutate: true })); } /** * Benchmark Results: * * basic (mutate = false) x 294,373 ops/sec ±0.25% (95 runs sampled) * basic (mutate = true) x 307,397 ops/sec ±0.13% (97 runs sampled) * mask-outside (mutate = false) x 100,575 ops/sec ±0.55% (97 runs sampled) * mask-outside (mutate = true) x 103,180 ops/sec ±0.40% (94 runs sampled) */ suite .on("cycle", (event: Event) => { console.log(String(event.target)); }) .run(); ================================================ FILE: packages/turf-mask/index.ts ================================================ import { Feature, FeatureCollection, Polygon, Position, MultiPolygon, } from "geojson"; import { polygon as createPolygon, multiPolygon } from "@turf/helpers"; import * as polyclip from "polyclip-ts"; import { clone } from "@turf/clone"; /** * Takes polygons or multipolygons and an optional mask, and returns an exterior * ring polygon with holes. * * @function * @param {Polygon|MultiPolygon|Feature|FeatureCollection} polygon GeoJSON polygon used as interior rings or holes * @param {Polygon|Feature} [mask] GeoJSON polygon used as the exterior ring (if undefined, the world extent is used) * @param {Object} [options={}] Optional parameters * @param {boolean} [options.mutate=false] allows the `mask` GeoJSON input to be mutated (performance improvement if true) * @returns {Feature} Masked Polygon (exterior ring with holes) * @example * const polygon = turf.polygon([[[112, -21], [116, -36], [146, -39], [153, -24], [133, -10], [112, -21]]]); * const mask = turf.polygon([[[90, -55], [170, -55], [170, 10], [90, 10], [90, -55]]]); * * const masked = turf.mask(polygon, mask); * * //addToMap * const addToMap = [masked] */ function mask( polygon: T | Feature | FeatureCollection, mask?: Polygon | Feature, options?: { mutate?: boolean } ): Feature { const mutate = options?.mutate ?? false; // by default, do not mutate let maskTemplate = mask; if (mask && mutate === false) { // Clone mask if requested to avoid side effects maskTemplate = clone(mask); } // Define initial mask const maskPolygon = createMask(maskTemplate); let polygonOuters = null; if (polygon.type === "FeatureCollection") { polygonOuters = unionFc(polygon); } else if (polygon.type === "Feature") { // Need to cast below as Position[][] isn't quite as strict as Geom, even // though they should be equivalent. polygonOuters = createGeomFromPolygonClippingOutput( polyclip.union(polygon.geometry.coordinates as polyclip.Geom) ); } else { // Geometry // Need to cast below as Position[][] isn't quite as strict as Geom, even // though they should be equivalent. polygonOuters = createGeomFromPolygonClippingOutput( polyclip.union(polygon.coordinates as polyclip.Geom) ); } polygonOuters.geometry.coordinates.forEach(function (contour) { maskPolygon.geometry.coordinates.push(contour[0]); }); return maskPolygon; } function unionFc(fc: FeatureCollection) { // Need to cast below as Position[][] isn't quite as strict as Geom, even // though they should be equivalent. // Stick with apply() below as spread operator degrades performance. Have // to disable prefer-spread lint rule though. /* eslint-disable prefer-spread */ const unioned = fc.features.length === 2 ? polyclip.union( fc.features[0].geometry.coordinates as polyclip.Geom, fc.features[1].geometry.coordinates as polyclip.Geom ) : polyclip.union.apply( polyclip, fc.features.map(function (f) { return f.geometry.coordinates; }) as [polyclip.Geom, ...polyclip.Geom[]] ); /* eslint-enable */ return createGeomFromPolygonClippingOutput(unioned); } function createGeomFromPolygonClippingOutput(unioned: Position[][][]) { return multiPolygon(unioned); } /** * Create Mask Coordinates * * @private * @param {Feature} [mask] default to world if undefined * @returns {Feature} mask as a polygon */ function createMask(mask: Feature | Polygon | undefined) { const world = [ [ [180, 90], [-180, 90], [-180, -90], [180, -90], [180, 90], ], ]; let coordinates = world; if (mask) { if (mask.type === "Feature") { // polygon feature coordinates = mask.geometry.coordinates; } else { // polygon geometry coordinates = mask.coordinates; } } return createPolygon(coordinates); } export { mask }; export default mask; ================================================ FILE: packages/turf-mask/package.json ================================================ { "name": "@turf/mask", "version": "7.3.4", "description": "Takes polygons or multipolygons and an optional mask, and returns an exterior ring polygon with holes.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "mask", "polygon" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "mkdirp": "^3.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/clone": "workspace:*", "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", "polyclip-ts": "^0.16.8", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-mask/test/in/basic.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [9.140625, 13.239945499286312], [68.203125, 13.239945499286312], [68.203125, 50.064191736659104], [9.140625, 50.064191736659104], [9.140625, 13.239945499286312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.67187499999999, -14.264383087562637], [99.49218749999999, -14.264383087562637], [99.49218749999999, 71.07405646336098], [-38.67187499999999, 71.07405646336098], [-38.67187499999999, -14.264383087562637] ] ] } } ] } ================================================ FILE: packages/turf-mask/test/in/mask-outside.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [113.115234375, -22.105998799750566], [112.587890625, -24.766784522874428], [113.73046875, -29.382175075145277], [114.78515624999999, -32.916485347314385], [117.333984375, -35.6037187406973], [122.87109375, -35.46066995149529], [128.935546875, -33.43144133557529], [133.505859375, -29.91685223307016], [133.505859375, -26.74561038219901], [132.099609375, -21.943045533438166], [127.44140625, -17.560246503294888], [122.431640625, -17.308687886770024], [116.806640625, -17.978733095556155], [113.115234375, -22.105998799750566] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [119.53125, -39.77476948529546], [155.478515625, -39.77476948529546], [155.478515625, -9.88227549342994], [119.53125, -9.88227549342994], [119.53125, -39.77476948529546] ] ] } } ] } ================================================ FILE: packages/turf-mask/test/in/multi-polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [174.8257084, -36.8869965], [174.8276109, -36.887539], [174.8278042, -36.8875561], [174.8296591, -36.8874264], [174.8311438, -36.8878347], [174.8314673, -36.8878689], [174.8336846, -36.8865436], [174.8341202, -36.8862468], [174.834388, -36.885941], [174.8354962, -36.8846273], [174.8356801, -36.8844927], [174.8367548, -36.8837641], [174.8373321, -36.8831729], [174.8373394, -36.8830989], [174.8369142, -36.88283], [174.8367485, -36.8829628], [174.836428, -36.8830636], [174.8340081, -36.8834433], [174.8332402, -36.8837406], [174.8321967, -36.8848087], [174.8315144, -36.8849051], [174.8311496, -36.8842651], [174.8319151, -36.8828293], [174.8321192, -36.8820636], [174.8324179, -36.8806023], [174.8325982, -36.8803963], [174.8346312, -36.8804379], [174.8346495, -36.8804375], [174.8348716, -36.8800115], [174.8349119, -36.8798696], [174.8347595, -36.8798408], [174.8342416, -36.8795988], [174.8328699, -36.878784], [174.8331132, -36.8782542], [174.8333146, -36.878309], [174.8337539, -36.8777781], [174.8343234, -36.8772656], [174.8347697, -36.8769085], [174.8349499, -36.8768261], [174.8351645, -36.8767575], [174.8353877, -36.8766751], [174.8355399, -36.8764449], [174.8357051, -36.8761931], [174.8357668, -36.876134], [174.8356795, -36.8760915], [174.8353743, -36.8758963], [174.8352751, -36.8760453], [174.8347802, -36.8758729], [174.8346298, -36.8755945], [174.8350415, -36.8755096], [174.8350096, -36.8753835], [174.8350022, -36.8752449], [174.8350149, -36.875154], [174.8345392, -36.8752539], [174.8345787, -36.8753974], [174.8343983, -36.8756894], [174.833726, -36.8754489], [174.8331871, -36.8758692], [174.8329038, -36.8761774], [174.8325172, -36.8766213], [174.8322845, -36.8767656], [174.8322194, -36.876702], [174.8320384, -36.8768042], [174.8319464, -36.8770175], [174.8315081, -36.8771832], [174.8313365, -36.8770253], [174.8312077, -36.8771008], [174.8312421, -36.8772587], [174.8309073, -36.8774235], [174.8305018, -36.8776747], [174.8302808, -36.8777874], [174.8291478, -36.8782886], [174.8291478, -36.8783915], [174.8291735, -36.8785151], [174.8290963, -36.8787142], [174.829062, -36.8788584], [174.8293809, -36.8815138], [174.8294238, -36.8818914], [174.8291049, -36.8820989], [174.8290019, -36.8821676], [174.829225, -36.8827923], [174.829535, -36.8828012], [174.8295855, -36.8828026], [174.8294482, -36.8835612], [174.8290133, -36.8842478], [174.828547, -36.8850853], [174.8285298, -36.8854835], [174.8285583, -36.8859898], [174.827812, -36.8862177], [174.8272938, -36.8863759], [174.8268918, -36.8864866], [174.8265485, -36.8865621], [174.8263768, -36.8866582], [174.8261688, -36.886697], [174.8261552, -36.8866995], [174.8261193, -36.8867062], [174.8259044, -36.8868107], [174.8257084, -36.8869965] ] ], [ [ [174.8347149, -36.8815236], [174.8347774, -36.881634], [174.8347409, -36.8819051], [174.8350392, -36.8821049], [174.8355443, -36.8821803], [174.8362531, -36.881711], [174.8371047, -36.8807158], [174.8376266, -36.8798969], [174.8384676, -36.878055], [174.837355, -36.8776834], [174.8369669, -36.8778472], [174.8360445, -36.8784047], [174.8360549, -36.8784168], [174.8357777, -36.8790427], [174.8357201, -36.8790301], [174.8355874, -36.8793891], [174.8354683, -36.8795601], [174.8355479, -36.8795814], [174.8353415, -36.8797934], [174.8351245, -36.8798054], [174.8350004, -36.8802174], [174.8347295, -36.8806857], [174.835116, -36.8807968], [174.8347149, -36.8815236] ] ] ] }, "properties": {} } ] } ================================================ FILE: packages/turf-mask/test/in/overlapping.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [119.70703125, -16.467694748288956], [114.9609375, -19.973348786110602], [113.02734374999999, -27.527758206861886], [118.30078125, -34.30714385628803], [122.16796875, -34.59704151614416], [126.03515625, -26.273714024406416], [119.70703125, -16.467694748288956] ] ], [ [ [118.828125, -21.207458730482642], [122.08007812499999, -31.42866311735861], [126.73828125, -34.234512362369856], [131.8359375, -34.59704151614416], [137.373046875, -28.459033019728043], [137.197265625, -17.978733095556155], [130.078125, -11.436955216143177], [121.55273437499999, -15.029685756555674], [118.828125, -21.207458730482642] ] ], [ [ [129.55078125, -13.496472765758952], [129.375, -22.836945920943844], [128.583984375, -26.980828590472107], [135.35156249999997, -36.738884124394296], [146.42578125, -38.8225909761771], [150.380859375, -35.02999636902566], [153.544921875, -22.75592068148639], [144.931640625, -12.726084296948184], [129.55078125, -13.496472765758952] ] ] ] } } ] } ================================================ FILE: packages/turf-mask/test/out/basic.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.67187499999999, -14.264383087562637], [99.49218749999999, -14.264383087562637], [99.49218749999999, 71.07405646336098], [-38.67187499999999, 71.07405646336098], [-38.67187499999999, -14.264383087562637] ], [ [9.140625, 13.239945499286312], [68.203125, 13.239945499286312], [68.203125, 50.064191736659104], [9.140625, 50.064191736659104], [9.140625, 13.239945499286312] ] ] } } ================================================ FILE: packages/turf-mask/test/out/mask-outside.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [119.53125, -39.77476948529546], [155.478515625, -39.77476948529546], [155.478515625, -9.88227549342994], [119.53125, -9.88227549342994], [119.53125, -39.77476948529546] ], [ [112.587890625, -24.766784522874428], [113.73046875, -29.382175075145277], [114.78515624999999, -32.916485347314385], [117.333984375, -35.6037187406973], [122.87109375, -35.46066995149529], [128.935546875, -33.43144133557529], [133.505859375, -29.91685223307016], [133.505859375, -26.74561038219901], [132.099609375, -21.943045533438166], [127.44140625, -17.560246503294888], [122.431640625, -17.308687886770024], [116.806640625, -17.978733095556155], [113.115234375, -22.105998799750566], [112.587890625, -24.766784522874428] ] ] } } ================================================ FILE: packages/turf-mask/test/out/multi-polygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [180, 90], [-180, 90], [-180, -90], [180, -90], [180, 90] ], [ [174.8347149, -36.8815236], [174.835116, -36.8807968], [174.8347295, -36.8806857], [174.8350004, -36.8802174], [174.8351245, -36.8798054], [174.8353415, -36.8797934], [174.8355479, -36.8795814], [174.8354683, -36.8795601], [174.8355874, -36.8793891], [174.8357201, -36.8790301], [174.8357777, -36.8790427], [174.8360549, -36.8784168], [174.8360445, -36.8784047], [174.8369669, -36.8778472], [174.837355, -36.8776834], [174.8384676, -36.878055], [174.8376266, -36.8798969], [174.8371047, -36.8807158], [174.8362531, -36.881711], [174.8355443, -36.8821803], [174.8350392, -36.8821049], [174.8347409, -36.8819051], [174.8347774, -36.881634], [174.8347149, -36.8815236] ], [ [174.8257084, -36.8869965], [174.8259044, -36.8868107], [174.8261193, -36.8867062], [174.8261552, -36.8866995], [174.8261688, -36.886697], [174.8263768, -36.8866582], [174.8265485, -36.8865621], [174.8268918, -36.8864866], [174.8272938, -36.8863759], [174.827812, -36.8862177], [174.8285583, -36.8859898], [174.8285298, -36.8854835], [174.828547, -36.8850853], [174.8290133, -36.8842478], [174.8294482, -36.8835612], [174.8295855, -36.8828026], [174.829535, -36.8828012], [174.829225, -36.8827923], [174.8290019, -36.8821676], [174.8291049, -36.8820989], [174.8294238, -36.8818914], [174.8293809, -36.8815138], [174.829062, -36.8788584], [174.8290963, -36.8787142], [174.8291735, -36.8785151], [174.8291478, -36.8783915], [174.8291478, -36.8782886], [174.8302808, -36.8777874], [174.8305018, -36.8776747], [174.8309073, -36.8774235], [174.8312421, -36.8772587], [174.8312077, -36.8771008], [174.8313365, -36.8770253], [174.8315081, -36.8771832], [174.8319464, -36.8770175], [174.8320384, -36.8768042], [174.8322194, -36.876702], [174.8322845, -36.8767656], [174.8325172, -36.8766213], [174.8329038, -36.8761774], [174.8331871, -36.8758692], [174.833726, -36.8754489], [174.8343983, -36.8756894], [174.8345787, -36.8753974], [174.8345392, -36.8752539], [174.8350149, -36.875154], [174.8350022, -36.8752449], [174.8350096, -36.8753835], [174.8350415, -36.8755096], [174.8346298, -36.8755945], [174.8347802, -36.8758729], [174.8352751, -36.8760453], [174.8353743, -36.8758963], [174.8356795, -36.8760915], [174.8357668, -36.876134], [174.8357051, -36.8761931], [174.8355399, -36.8764449], [174.8353877, -36.8766751], [174.8351645, -36.8767575], [174.8349499, -36.8768261], [174.8347697, -36.8769085], [174.8343234, -36.8772656], [174.8337539, -36.8777781], [174.8333146, -36.878309], [174.8331132, -36.8782542], [174.8328699, -36.878784], [174.8342416, -36.8795988], [174.8347595, -36.8798408], [174.8349119, -36.8798696], [174.8348716, -36.8800115], [174.8346495, -36.8804375], [174.8346312, -36.8804379], [174.8325982, -36.8803963], [174.8324179, -36.8806023], [174.8321192, -36.8820636], [174.8319151, -36.8828293], [174.8311496, -36.8842651], [174.8315144, -36.8849051], [174.8321967, -36.8848087], [174.8332402, -36.8837406], [174.8340081, -36.8834433], [174.836428, -36.8830636], [174.8367485, -36.8829628], [174.8369142, -36.88283], [174.8373394, -36.8830989], [174.8373321, -36.8831729], [174.8367548, -36.8837641], [174.8356801, -36.8844927], [174.8354962, -36.8846273], [174.834388, -36.885941], [174.8341202, -36.8862468], [174.8336846, -36.8865436], [174.8314673, -36.8878689], [174.8311438, -36.8878347], [174.8296591, -36.8874264], [174.8278042, -36.8875561], [174.8276109, -36.887539], [174.8257084, -36.8869965] ] ] } } ================================================ FILE: packages/turf-mask/test/out/overlapping.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [180, 90], [-180, 90], [-180, -90], [180, -90], [180, 90] ], [ [132.17629902699358, -13.364967199604362], [144.931640625, -12.726084296948184], [153.544921875, -22.75592068148639], [150.380859375, -35.02999636902566], [146.42578125, -38.8225909761771], [135.35156249999997, -36.738884124394296], [132.9837069753474, -33.32471360739497], [131.8359375, -34.59704151614416], [126.73828125, -34.234512362369856], [123.29894671677008, -32.162843535475524], [122.16796875, -34.59704151614416], [118.30078125, -34.30714385628803], [113.02734374999999, -27.527758206861886], [114.9609375, -19.973348786110602], [119.70703125, -16.467694748288956], [120.4266908193729, -17.582874301397172], [121.55273437499999, -15.029685756555674], [130.078125, -11.436955216143177], [132.17629902699358, -13.364967199604362] ] ] } } ================================================ FILE: packages/turf-mask/test.ts ================================================ import { Feature, FeatureCollection, Polygon, Position, MultiPolygon, } from "geojson"; import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { mask } from "./index.js"; import { clone } from "@turf/clone"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const SKIP = ["multi-polygon.geojson", "overlapping.geojson"]; const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; let fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync( path.join(directories.in, filename) ) as FeatureCollection, }; }); test("turf-mask", (t) => { for (const { name, filename, geojson } of fixtures) { if (-1 !== SKIP.indexOf(filename)) { continue; } const [polygon, masking] = geojson.features; const results = mask(polygon, masking as Feature); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEquals(results, loadJsonFileSync(directories.out + filename), name); } t.end(); }); const getBasicPolygonAndMask = () => { const basicFixture = fixtures.find( ({ filename }) => filename === "basic.geojson" ); if (!basicFixture) throw new Error("basic.geojson not found"); return basicFixture.geojson.features; }; test("turf-mask -- doesn't mutate inputs by default", (t) => { const [polygon, masking] = getBasicPolygonAndMask(); const maskClone = clone(masking); mask(polygon, masking); t.deepEquals(masking, maskClone, "mask input should not be mutated"); t.end(); }); test("turf-mask -- mutates mask input when mutate = true", (t) => { const [polygon, masking] = getBasicPolygonAndMask(); const maskClone = clone(masking); mask(polygon, masking, { mutate: true }); t.notDeepEqual(masking, maskClone, "mask input should be mutated"); t.end(); }); test("turf-mask polygon geometry", (t) => { // A polygon somewhere const polyCoords: Position[] = [ [9, 13], [68, 13], [68, 50], [9, 50], [9, 13], ]; const polygonGeometry: Polygon = { type: "Polygon", coordinates: [polyCoords], }; let expectedResult = { type: "Feature", properties: {}, geometry: { type: "Polygon", coordinates: [ [ [180, 90], [-180, 90], [-180, -90], [180, -90], [180, 90], ], polyCoords, ], }, }; let result = mask(polygonGeometry); t.deepEquals(result, expectedResult, "default mask"); // A slightly larger polygon surrounding the one above const customMaskCoords: Position[] = [ [6, 10], [71, 10], [71, 53], [6, 53], [6, 10], ]; const maskGeometry: Polygon = { type: "Polygon", coordinates: [customMaskCoords], }; expectedResult = { type: "Feature", properties: {}, geometry: { type: "Polygon", coordinates: [customMaskCoords, polyCoords], }, }; result = mask(polygonGeometry, maskGeometry); t.deepEquals(result, expectedResult, "custom mask"); t.end(); }); ================================================ FILE: packages/turf-mask/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-mask/types.ts ================================================ import { polygon } from "@turf/helpers"; import { mask } from "./index.js"; const poly1 = polygon([ [ [-50, 5], [-40, -10], [-50, -10], [-40, 5], [-50, 5], ], ]); const poly2 = polygon([ [ [30, 5], [-40, -10], [-50, -10], [-40, 5], [30, 5], ], ]); mask(poly1); mask(poly1, poly2); mask(poly1, poly2, { mutate: true }); ================================================ FILE: packages/turf-meta/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-meta/README.md ================================================ # @turf/meta ## coordEachCallback Callback for coordEach Type: [Function][1] ### Parameters * `currentCoord` **[Array][2]<[number][3]>** The current coordinate being processed. * `coordIndex` **[number][3]** The current index of the coordinate being processed. * `featureIndex` **[number][3]** The current index of the Feature being processed. * `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed. * `geometryIndex` **[number][3]** The current index of the Geometry being processed. Returns **void** ## coordEach Iterate over coordinates in any GeoJSON object, similar to Array.forEach() ### Parameters * `geojson` **AllGeoJSON** any GeoJSON object * `callback` **[coordEachCallback][4]** a method that takes (currentCoord, coordIndex, featureIndex, multiFeatureIndex) * `excludeWrapCoord` **[boolean][5]** whether or not to include the final coordinate of LinearRings that wraps the ring in its iteration. (optional, default `false`) ### Examples ```javascript var features = turf.featureCollection([ turf.point([26, 37], {"foo": "bar"}), turf.point([36, 53], {"hello": "world"}) ]); turf.coordEach(features, function (currentCoord, coordIndex, featureIndex, multiFeatureIndex, geometryIndex) { //=currentCoord //=coordIndex //=featureIndex //=multiFeatureIndex //=geometryIndex }); ``` Returns **void** ## coordReduceCallback Callback for coordReduce The first time the callback function is called, the values provided as arguments depend on whether the reduce method has an initialValue argument. If an initialValue is provided to the reduce method: * The previousValue argument is initialValue. * The currentValue argument is the value of the first element present in the array. If an initialValue is not provided: * The previousValue argument is the value of the first element present in the array. * The currentValue argument is the value of the second element present in the array. Type: [Function][1] ### Parameters * `previousValue` **Reducer** The accumulated value previously returned in the last invocation of the callback, or initialValue, if supplied. * `currentCoord` **[Array][2]<[number][3]>** The current coordinate being processed. * `coordIndex` **[number][3]** The current index of the coordinate being processed. Starts at index 0, if an initialValue is provided, and at index 1 otherwise. * `featureIndex` **[number][3]** The current index of the Feature being processed. * `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed. * `geometryIndex` **[number][3]** The current index of the Geometry being processed. Returns **Reducer** ## coordReduce Reduce coordinates in any GeoJSON object, similar to Array.reduce() ### Parameters * `geojson` **AllGeoJSON** any GeoJSON object * `callback` **[coordReduceCallback][6]** a method that takes (previousValue, currentCoord, coordIndex) * `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback. * `excludeWrapCoord` **[boolean][5]** whether or not to include the final coordinate of LinearRings that wraps the ring in its iteration. (optional, default `false`) ### Examples ```javascript var features = turf.featureCollection([ turf.point([26, 37], {"foo": "bar"}), turf.point([36, 53], {"hello": "world"}) ]); turf.coordReduce(features, function (previousValue, currentCoord, coordIndex, featureIndex, multiFeatureIndex, geometryIndex) { //=previousValue //=currentCoord //=coordIndex //=featureIndex //=multiFeatureIndex //=geometryIndex return currentCoord; }); ``` Returns **Reducer** The value that results from the reduction. ## propEachCallback Callback for propEach Type: [Function][1] ### Parameters * `currentProperties` **[GeoJsonProperties][7]** The current Properties being processed. * `featureIndex` **[number][3]** The current index of the Feature being processed. Returns **void** ## propEach Iterate over properties in any GeoJSON object, similar to Array.forEach() ### Parameters * `geojson` **([FeatureCollection][8] | [Feature][7])** any GeoJSON object * `callback` **[propEachCallback][9]** a method that takes (currentProperties, featureIndex) ### Examples ```javascript var features = turf.featureCollection([ turf.point([26, 37], {foo: 'bar'}), turf.point([36, 53], {hello: 'world'}) ]); turf.propEach(features, function (currentProperties, featureIndex) { //=currentProperties //=featureIndex }); ``` Returns **void** ## propReduceCallback Callback for propReduce The first time the callback function is called, the values provided as arguments depend on whether the reduce method has an initialValue argument. If an initialValue is provided to the reduce method: * The previousValue argument is initialValue. * The currentValue argument is the value of the first element present in the array. If an initialValue is not provided: * The previousValue argument is the value of the first element present in the array. * The currentValue argument is the value of the second element present in the array. Type: [Function][1] ### Parameters * `previousValue` **Reducer** The accumulated value previously returned in the last invocation of the callback, or initialValue, if supplied. * `currentProperties` **[GeoJsonProperties][7]** The current Properties being processed. * `featureIndex` **[number][3]** The current index of the Feature being processed. Returns **Reducer** ## propReduce Reduce properties in any GeoJSON object into a single value, similar to how Array.reduce works. However, in this case we lazily run the reduction, so an array of all properties is unnecessary. ### Parameters * `geojson` **([FeatureCollection][8] | [Feature][7] | [Geometry][10])** any GeoJSON object * `callback` **[propReduceCallback][11]** a method that takes (previousValue, currentProperties, featureIndex) * `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback. ### Examples ```javascript var features = turf.featureCollection([ turf.point([26, 37], {foo: 'bar'}), turf.point([36, 53], {hello: 'world'}) ]); turf.propReduce(features, function (previousValue, currentProperties, featureIndex) { //=previousValue //=currentProperties //=featureIndex return currentProperties }); ``` Returns **Reducer** The value that results from the reduction. ## featureEachCallback Callback for featureEach Type: [Function][1] ### Parameters * `currentFeature` **[Feature][7]\** The current Feature being processed. * `featureIndex` **[number][3]** The current index of the Feature being processed. Returns **void** ## featureEach Iterate over features in any GeoJSON object, similar to Array.forEach. ### Parameters * `geojson` **([FeatureCollection][8] | [Feature][7] | [Feature][7]<[GeometryCollection][12]>)** any GeoJSON object * `callback` **[featureEachCallback][13]** a method that takes (currentFeature, featureIndex) ### Examples ```javascript var features = turf.featureCollection([ turf.point([26, 37], {foo: 'bar'}), turf.point([36, 53], {hello: 'world'}) ]); turf.featureEach(features, function (currentFeature, featureIndex) { //=currentFeature //=featureIndex }); ``` Returns **void** ## featureReduceCallback Callback for featureReduce The first time the callback function is called, the values provided as arguments depend on whether the reduce method has an initialValue argument. If an initialValue is provided to the reduce method: * The previousValue argument is initialValue. * The currentValue argument is the value of the first element present in the array. If an initialValue is not provided: * The previousValue argument is the value of the first element present in the array. * The currentValue argument is the value of the second element present in the array. Type: [Function][1] ### Parameters * `previousValue` **Reducer** The accumulated value previously returned in the last invocation of the callback, or initialValue, if supplied. * `currentFeature` **[Feature][7]** The current Feature being processed. * `featureIndex` **[number][3]** The current index of the Feature being processed. Returns **Reducer** ## featureReduce Reduce features in any GeoJSON object, similar to Array.reduce(). ### Parameters * `geojson` **([FeatureCollection][8] | [Feature][7] | [Feature][7]<[GeometryCollection][12]>)** any GeoJSON object * `callback` **[featureReduceCallback][14]** a method that takes (previousValue, currentFeature, featureIndex) * `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback. ### Examples ```javascript var features = turf.featureCollection([ turf.point([26, 37], {"foo": "bar"}), turf.point([36, 53], {"hello": "world"}) ]); turf.featureReduce(features, function (previousValue, currentFeature, featureIndex) { //=previousValue //=currentFeature //=featureIndex return currentFeature }); ``` Returns **Reducer** The value that results from the reduction. ## coordAll Get all coordinates from any GeoJSON object. ### Parameters * `geojson` **AllGeoJSON** any GeoJSON object ### Examples ```javascript var features = turf.featureCollection([ turf.point([26, 37], {foo: 'bar'}), turf.point([36, 53], {hello: 'world'}) ]); var coords = turf.coordAll(features); //= [[26, 37], [36, 53]] ``` Returns **[Array][2]<[Array][2]<[number][3]>>** coordinate position array ## geomEachCallback Callback for geomEach Type: [Function][1] ### Parameters * `currentGeometry` **[GeometryObject][10]** The current Geometry being processed. * `featureIndex` **[number][3]** The current index of the Feature being processed. * `featureProperties` **[GeoJsonProperties][7]** The current Feature Properties being processed. * `featureBBox` **[BBox][15]** The current Feature BBox being processed. * `featureId` **Id** The current Feature Id being processed. Returns **void** ## geomEach Iterate over each geometry in any GeoJSON object, similar to Array.forEach() ### Parameters * `geojson` **([FeatureCollection][8] | [Feature][7] | [Geometry][10] | [GeometryObject][10] | [Feature][7]<[GeometryCollection][12]>)** any GeoJSON object * `callback` **[geomEachCallback][16]** a method that takes (currentGeometry, featureIndex, featureProperties, featureBBox, featureId) ### Examples ```javascript var features = turf.featureCollection([ turf.point([26, 37], {foo: 'bar'}), turf.point([36, 53], {hello: 'world'}) ]); turf.geomEach(features, function (currentGeometry, featureIndex, featureProperties, featureBBox, featureId) { //=currentGeometry //=featureIndex //=featureProperties //=featureBBox //=featureId }); ``` Returns **void** ## geomReduceCallback Callback for geomReduce The first time the callback function is called, the values provided as arguments depend on whether the reduce method has an initialValue argument. If an initialValue is provided to the reduce method: * The previousValue argument is initialValue. * The currentValue argument is the value of the first element present in the array. If an initialValue is not provided: * The previousValue argument is the value of the first element present in the array. * The currentValue argument is the value of the second element present in the array. Type: [Function][1] ### Parameters * `previousValue` **Reducer** The accumulated value previously returned in the last invocation of the callback, or initialValue, if supplied. * `currentGeometry` **[GeometryObject][10]** The current Geometry being processed. * `featureIndex` **[number][3]** The current index of the Feature being processed. * `featureProperties` **[GeoJsonProperties][7]** The current Feature Properties being processed. * `featureBBox` **[BBox][15]** The current Feature BBox being processed. * `featureId` **Id** The current Feature Id being processed. Returns **Reducer** ## geomReduce Reduce geometry in any GeoJSON object, similar to Array.reduce(). ### Parameters * `geojson` **([FeatureCollection][8] | [Feature][7] | [GeometryObject][10] | [GeometryCollection][12] | [Feature][7]<[GeometryCollection][12]>)** any GeoJSON object * `callback` **[geomReduceCallback][17]** a method that takes (previousValue, currentGeometry, featureIndex, featureProperties, featureBBox, featureId) * `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback. ### Examples ```javascript var features = turf.featureCollection([ turf.point([26, 37], {foo: 'bar'}), turf.point([36, 53], {hello: 'world'}) ]); turf.geomReduce(features, function (previousValue, currentGeometry, featureIndex, featureProperties, featureBBox, featureId) { //=previousValue //=currentGeometry //=featureIndex //=featureProperties //=featureBBox //=featureId return currentGeometry }); ``` Returns **Reducer** The value that results from the reduction. ## flattenEachCallback Callback for flattenEach Type: [Function][1] ### Parameters * `currentFeature` **[Feature][7]** The current flattened feature being processed. * `featureIndex` **[number][3]** The current index of the Feature being processed. * `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed. Returns **void** ## flattenEach Iterate over flattened features in any GeoJSON object, similar to Array.forEach. ### Parameters * `geojson` **([FeatureCollection][8] | [Feature][7] | [GeometryObject][10] | [GeometryCollection][12] | [Feature][7]<[GeometryCollection][12]>)** any GeoJSON object * `callback` **[flattenEachCallback][18]** a method that takes (currentFeature, featureIndex, multiFeatureIndex) ### Examples ```javascript var features = turf.featureCollection([ turf.point([26, 37], {foo: 'bar'}), turf.multiPoint([[40, 30], [36, 53]], {hello: 'world'}) ]); turf.flattenEach(features, function (currentFeature, featureIndex, multiFeatureIndex) { //=currentFeature //=featureIndex //=multiFeatureIndex }); ``` Returns **void** ## flattenReduceCallback Callback for flattenReduce The first time the callback function is called, the values provided as arguments depend on whether the reduce method has an initialValue argument. If an initialValue is provided to the reduce method: * The previousValue argument is initialValue. * The currentValue argument is the value of the first element present in the array. If an initialValue is not provided: * The previousValue argument is the value of the first element present in the array. * The currentValue argument is the value of the second element present in the array. Type: [Function][1] ### Parameters * `previousValue` **Reducer** The accumulated value previously returned in the last invocation of the callback, or initialValue, if supplied. * `currentFeature` **[Feature][7]** The current Feature being processed. * `featureIndex` **[number][3]** The current index of the Feature being processed. * `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed. Returns **Reducer** ## flattenReduce Reduce flattened features in any GeoJSON object, similar to Array.reduce(). ### Parameters * `geojson` **([FeatureCollection][8] | [Feature][7] | [GeometryObject][10] | [GeometryCollection][12] | [Feature][7]<[GeometryCollection][12]>)** any GeoJSON object * `callback` **[flattenReduceCallback][19]** a method that takes (previousValue, currentFeature, featureIndex, multiFeatureIndex) * `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback. ### Examples ```javascript var features = turf.featureCollection([ turf.point([26, 37], {foo: 'bar'}), turf.multiPoint([[40, 30], [36, 53]], {hello: 'world'}) ]); turf.flattenReduce(features, function (previousValue, currentFeature, featureIndex, multiFeatureIndex) { //=previousValue //=currentFeature //=featureIndex //=multiFeatureIndex return currentFeature }); ``` Returns **Reducer** The value that results from the reduction. ## segmentEachCallback Callback for segmentEach Type: [Function][1] ### Parameters * `currentSegment` **[Feature][7]<[LineString][20]>** The current Segment being processed. * `featureIndex` **[number][3]** The current index of the Feature being processed. * `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed. * `geometryIndex` **[number][3]** The current index of the Geometry being processed. * `segmentIndex` **[number][3]** The current index of the Segment being processed. Returns **void** ## segmentEach Iterate over 2-vertex line segment in any GeoJSON object, similar to Array.forEach() (Multi)Point geometries do not contain segments therefore they are ignored during this operation. ### Parameters * `geojson` **AllGeoJSON** any GeoJSON * `callback` **[segmentEachCallback][21]** a method that takes (currentSegment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex) ### Examples ```javascript var polygon = turf.polygon([[[-50, 5], [-40, -10], [-50, -10], [-40, 5], [-50, 5]]]); // Iterate over GeoJSON by 2-vertex segments turf.segmentEach(polygon, function (currentSegment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex) { //=currentSegment //=featureIndex //=multiFeatureIndex //=geometryIndex //=segmentIndex }); // Calculate the total number of segments var total = 0; turf.segmentEach(polygon, function () { total++; }); ``` Returns **void** ## segmentReduceCallback Callback for segmentReduce The first time the callback function is called, the values provided as arguments depend on whether the reduce method has an initialValue argument. If an initialValue is provided to the reduce method: * The previousValue argument is initialValue. * The currentValue argument is the value of the first element present in the array. If an initialValue is not provided: * The previousValue argument is the value of the first element present in the array. * The currentValue argument is the value of the second element present in the array. Type: [Function][1] ### Parameters * `previousValue` **Reducer** The accumulated value previously returned in the last invocation of the callback, or initialValue, if supplied. * `currentSegment` **[Feature][7]<[LineString][20]>** The current Segment being processed. * `featureIndex` **[number][3]** The current index of the Feature being processed. * `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed. * `geometryIndex` **[number][3]** The current index of the Geometry being processed. * `segmentIndex` **[number][3]** The current index of the Segment being processed. Returns **Reducer** ## segmentReduce Reduce 2-vertex line segment in any GeoJSON object, similar to Array.reduce() (Multi)Point geometries do not contain segments therefore they are ignored during this operation. ### Parameters * `geojson` **([FeatureCollection][8] | [Feature][7] | [Geometry][10])** any GeoJSON * `callback` **[segmentReduceCallback][22]** a method that takes (previousValue, currentSegment, currentIndex) * `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback. ### Examples ```javascript var polygon = turf.polygon([[[-50, 5], [-40, -10], [-50, -10], [-40, 5], [-50, 5]]]); // Iterate over GeoJSON by 2-vertex segments turf.segmentReduce(polygon, function (previousSegment, currentSegment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex) { //= previousSegment //= currentSegment //= featureIndex //= multiFeatureIndex //= geometryIndex //= segmentIndex return currentSegment }); // Calculate the total number of segments var initialValue = 0 var total = turf.segmentReduce(polygon, function (previousValue) { previousValue++; return previousValue; }, initialValue); ``` Returns **Reducer** ## lineEachCallback Callback for lineEach Type: [Function][1] ### Parameters * `currentLine` **[Feature][7]<[LineString][20]>** The current LineString|LinearRing being processed * `featureIndex` **[number][3]** The current index of the Feature being processed * `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed * `geometryIndex` **[number][3]** The current index of the Geometry being processed Returns **void** ## lineEach Iterate over line or ring coordinates in LineString, Polygon, MultiLineString, MultiPolygon Features or Geometries, similar to Array.forEach. ### Parameters * `geojson` **([FeatureCollection][8]\ | [Feature][7]\ | Lines | [Feature][7]<[GeometryCollection][12]> | [GeometryCollection][12])** object * `callback` **[lineEachCallback][23]** a method that takes (currentLine, featureIndex, multiFeatureIndex, geometryIndex) ### Examples ```javascript var multiLine = turf.multiLineString([ [[26, 37], [35, 45]], [[36, 53], [38, 50], [41, 55]] ]); turf.lineEach(multiLine, function (currentLine, featureIndex, multiFeatureIndex, geometryIndex) { //=currentLine //=featureIndex //=multiFeatureIndex //=geometryIndex }); ``` Returns **void** ## lineReduceCallback Callback for lineReduce The first time the callback function is called, the values provided as arguments depend on whether the reduce method has an initialValue argument. If an initialValue is provided to the reduce method: * The previousValue argument is initialValue. * The currentValue argument is the value of the first element present in the array. If an initialValue is not provided: * The previousValue argument is the value of the first element present in the array. * The currentValue argument is the value of the second element present in the array. Type: [Function][1] ### Parameters * `previousValue` **Reducer** The accumulated value previously returned in the last invocation of the callback, or initialValue, if supplied. * `currentLine` **[Feature][7]<[LineString][20]>** The current LineString|LinearRing being processed. * `featureIndex` **[number][3]** The current index of the Feature being processed * `multiFeatureIndex` **[number][3]** The current index of the Multi-Feature being processed * `geometryIndex` **[number][3]** The current index of the Geometry being processed Returns **Reducer** ## lineReduce Reduce features in any GeoJSON object, similar to Array.reduce(). ### Parameters * `geojson` **([FeatureCollection][8]\ | [Feature][7]\ | Lines | [Feature][7]<[GeometryCollection][12]> | [GeometryCollection][12])** object * `callback` **[Function][1]** a method that takes (previousValue, currentLine, featureIndex, multiFeatureIndex, geometryIndex) * `initialValue` **Reducer?** Value to use as the first argument to the first call of the callback. ### Examples ```javascript var multiPoly = turf.multiPolygon([ turf.polygon([[[12,48],[2,41],[24,38],[12,48]], [[9,44],[13,41],[13,45],[9,44]]]), turf.polygon([[[5, 5], [0, 0], [2, 2], [4, 4], [5, 5]]]) ]); turf.lineReduce(multiPoly, function (previousValue, currentLine, featureIndex, multiFeatureIndex, geometryIndex) { //=previousValue //=currentLine //=featureIndex //=multiFeatureIndex //=geometryIndex return currentLine }); ``` Returns **Reducer** The value that results from the reduction. ## findSegment Finds a particular 2-vertex LineString Segment from a GeoJSON using `@turf/meta` indexes. Negative indexes are permitted. Point & MultiPoint will always return null. ### Parameters * `geojson` **([FeatureCollection][8] | [Feature][7] | [Geometry][10])** Any GeoJSON Feature or Geometry * `options` **[Object][24]** Optional parameters (optional, default `{}`) * `options.featureIndex` **[number][3]** Feature Index (optional, default `0`) * `options.multiFeatureIndex` **[number][3]** Multi-Feature Index (optional, default `0`) * `options.geometryIndex` **[number][3]** Geometry Index (optional, default `0`) * `options.segmentIndex` **[number][3]** Segment Index (optional, default `0`) * `options.properties` **[Object][24]** Translate Properties to output LineString (optional, default `{}`) * `options.bbox` **[BBox][15]** Translate BBox to output LineString (optional, default `{}`) * `options.id` **([number][3] | [string][25])** Translate Id to output LineString (optional, default `{}`) ### Examples ```javascript var multiLine = turf.multiLineString([ [[10, 10], [50, 30], [30, 40]], [[-10, -10], [-50, -30], [-30, -40]] ]); // First Segment (defaults are 0) turf.findSegment(multiLine); // => Feature> // First Segment of 2nd Multi Feature turf.findSegment(multiLine, {multiFeatureIndex: 1}); // => Feature> // Last Segment of Last Multi Feature turf.findSegment(multiLine, {multiFeatureIndex: -1, segmentIndex: -1}); // => Feature> ``` Returns **[Feature][7]<[LineString][20]>** 2-vertex GeoJSON Feature LineString ## findPoint Finds a particular Point from a GeoJSON using `@turf/meta` indexes. Negative indexes are permitted. ### Parameters * `geojson` **([FeatureCollection][8] | [Feature][7] | [Geometry][10])** Any GeoJSON Feature or Geometry * `options` **[Object][24]** Optional parameters (optional, default `{}`) * `options.featureIndex` **[number][3]** Feature Index (optional, default `0`) * `options.multiFeatureIndex` **[number][3]** Multi-Feature Index (optional, default `0`) * `options.geometryIndex` **[number][3]** Geometry Index (optional, default `0`) * `options.coordIndex` **[number][3]** Coord Index (optional, default `0`) * `options.properties` **[Object][24]** Translate Properties to output Point (optional, default `{}`) * `options.bbox` **[BBox][15]** Translate BBox to output Point (optional, default `{}`) * `options.id` **([number][3] | [string][25])** Translate Id to output Point (optional, default `{}`) ### Examples ```javascript var multiLine = turf.multiLineString([ [[10, 10], [50, 30], [30, 40]], [[-10, -10], [-50, -30], [-30, -40]] ]); // First Segment (defaults are 0) turf.findPoint(multiLine); // => Feature> // First Segment of the 2nd Multi-Feature turf.findPoint(multiLine, {multiFeatureIndex: 1}); // => Feature> // Last Segment of last Multi-Feature turf.findPoint(multiLine, {multiFeatureIndex: -1, coordIndex: -1}); // => Feature> ``` Returns **[Feature][7]<[Point][26]>** 2-vertex GeoJSON Feature Point [1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/function [2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [4]: #coordeachcallback [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean [6]: #coordreducecallback [7]: https://tools.ietf.org/html/rfc7946#section-3.2 [8]: https://tools.ietf.org/html/rfc7946#section-3.3 [9]: #propeachcallback [10]: https://tools.ietf.org/html/rfc7946#section-3.1 [11]: #propreducecallback [12]: https://tools.ietf.org/html/rfc7946#section-3.1.8 [13]: #featureeachcallback [14]: #featurereducecallback [15]: https://tools.ietf.org/html/rfc7946#section-5 [16]: #geomeachcallback [17]: #geomreducecallback [18]: #flatteneachcallback [19]: #flattenreducecallback [20]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [21]: #segmenteachcallback [22]: #segmentreducecallback [23]: #lineeachcallback [24]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [25]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String [26]: https://tools.ietf.org/html/rfc7946#section-3.1.2 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/meta ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-meta/bench.ts ================================================ import Benchmark from "benchmark"; import * as random from "@turf/random"; import * as meta from "./index.js"; const fixtures = { point: random.randomPoint(), points: random.randomPoint(1000), polygon: random.randomPolygon(), polygons: random.randomPolygon(1000), }; const suite = new Benchmark.Suite("turf-meta"); /** * Benchmark Results * segmentEach - point x 3,541,484 ops/sec ±6.03% (88 runs sampled) * segmentReduce - point x 3,245,821 ops/sec ±0.95% (86 runs sampled) * flattenEach - point x 6,447,234 ops/sec ±5.56% (79 runs sampled) * flattenReduce - point x 5,415,555 ops/sec ±1.28% (85 runs sampled) * coordEach - point x 19,941,547 ops/sec ±0.64% (84 runs sampled) * coordReduce - point x 11,959,189 ops/sec ±1.53% (85 runs sampled) * propEach - point x 29,317,809 ops/sec ±1.38% (85 runs sampled) * propReduce - point x 14,552,839 ops/sec ±1.06% (90 runs sampled) * geomEach - point x 22,137,140 ops/sec ±0.95% (88 runs sampled) * geomReduce - point x 12,416,033 ops/sec ±0.94% (88 runs sampled) * featureEach - point x 29,588,658 ops/sec ±1.02% (88 runs sampled) * featureReduce - point x 15,372,497 ops/sec ±1.11% (89 runs sampled) * coordAll - point x 8,348,718 ops/sec ±0.68% (92 runs sampled) * segmentEach - points x 7,568 ops/sec ±1.42% (90 runs sampled) * segmentReduce - points x 7,719 ops/sec ±0.88% (90 runs sampled) * flattenEach - points x 18,821 ops/sec ±7.17% (76 runs sampled) * flattenReduce - points x 17,848 ops/sec ±1.10% (88 runs sampled) * coordEach - points x 71,017 ops/sec ±0.80% (90 runs sampled) * coordReduce - points x 46,986 ops/sec ±1.24% (91 runs sampled) * propEach - points x 137,509 ops/sec ±0.38% (96 runs sampled) * propReduce - points x 67,197 ops/sec ±1.44% (92 runs sampled) * geomEach - points x 69,417 ops/sec ±0.77% (93 runs sampled) * geomReduce - points x 45,830 ops/sec ±1.18% (92 runs sampled) * featureEach - points x 151,234 ops/sec ±0.45% (92 runs sampled) * featureReduce - points x 71,235 ops/sec ±1.51% (92 runs sampled) * coordAll - points x 40,960 ops/sec ±0.88% (94 runs sampled) * segmentEach - polygon x 884,579 ops/sec ±2.06% (82 runs sampled) * segmentReduce - polygon x 770,112 ops/sec ±1.65% (85 runs sampled) * flattenEach - polygon x 6,262,904 ops/sec ±2.84% (85 runs sampled) * flattenReduce - polygon x 4,944,606 ops/sec ±4.15% (82 runs sampled) * coordEach - polygon x 6,153,922 ops/sec ±2.36% (87 runs sampled) * coordReduce - polygon x 3,348,489 ops/sec ±2.08% (91 runs sampled) * propEach - polygon x 30,816,868 ops/sec ±0.96% (88 runs sampled) * propReduce - polygon x 15,664,358 ops/sec ±0.88% (91 runs sampled) * geomEach - polygon x 21,426,447 ops/sec ±1.19% (91 runs sampled) * geomReduce - polygon x 11,585,812 ops/sec ±2.61% (84 runs sampled) * featureEach - polygon x 29,478,632 ops/sec ±1.86% (87 runs sampled) * featureReduce - polygon x 14,642,632 ops/sec ±2.62% (81 runs sampled) * coordAll - polygon x 2,080,425 ops/sec ±13.27% (61 runs sampled) * segmentEach - polygons x 1,042 ops/sec ±3.16% (76 runs sampled) * segmentReduce - polygons x 912 ops/sec ±4.70% (80 runs sampled) * flattenEach - polygons x 17,587 ops/sec ±3.05% (85 runs sampled) * flattenReduce - polygons x 16,576 ops/sec ±1.33% (86 runs sampled) * coordEach - polygons x 3,040 ops/sec ±15.62% (41 runs sampled) * coordReduce - polygons x 4,100 ops/sec ±7.31% (85 runs sampled) * propEach - polygons x 126,455 ops/sec ±0.85% (87 runs sampled) * propReduce - polygons x 61,469 ops/sec ±2.96% (83 runs sampled) * geomEach - polygons x 59,267 ops/sec ±5.22% (81 runs sampled) * geomReduce - polygons x 24,424 ops/sec ±12.17% (52 runs sampled) * featureEach - polygons x 110,212 ops/sec ±7.42% (71 runs sampled) * featureReduce - polygons x 63,244 ops/sec ±3.74% (81 runs sampled) * coordAll - polygons x 1,662 ops/sec ±19.73% (44 runs sampled) * findSegment - polygon x 2,558,258 ops/sec ±0.80% (84 runs sampled) * findSegment - polygons x 2,512,410 ops/sec ±0.72% (93 runs sampled) * findPoint - point x 2,339,238 ops/sec ±0.86% (85 runs sampled) * findPoint - points x 2,298,279 ops/sec ±1.13% (88 runs sampled) * findPoint - polygon x 2,216,808 ops/sec ±1.63% (86 runs sampled) * findPoint - polygons x 2,160,583 ops/sec ±1.06% (87 runs sampled) */ Object.keys(fixtures).forEach((name) => { const geojson = fixtures[name]; const noop = () => { /* no-op */ }; suite .add("segmentEach - " + name, () => meta.segmentEach(geojson, noop)) .add("segmentReduce - " + name, () => meta.segmentReduce(geojson, noop)) .add("flattenEach - " + name, () => meta.flattenEach(geojson, noop)) .add("flattenReduce - " + name, () => meta.flattenReduce(geojson, noop)) .add("coordEach - " + name, () => meta.coordEach(geojson, noop)) .add("coordReduce - " + name, () => meta.coordReduce(geojson, noop)) .add("propEach - " + name, () => meta.propEach(geojson, noop)) .add("propReduce - " + name, () => meta.propReduce(geojson, noop)) .add("geomEach - " + name, () => meta.geomEach(geojson, noop)) .add("geomReduce - " + name, () => meta.geomReduce(geojson, noop)) .add("featureEach - " + name, () => meta.featureEach(geojson, noop)) .add("featureReduce - " + name, () => meta.featureReduce(geojson, noop)) .add("coordAll - " + name, () => meta.coordAll(geojson)) .add("findSegment - " + name, () => meta.findSegment(geojson)) .add("findPoint - " + name, () => meta.findPoint(geojson)); }); suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-meta/index.ts ================================================ import { feature, point, lineString, isObject } from "@turf/helpers"; import { Point, LineString, Polygon, MultiLineString, MultiPolygon, FeatureCollection, Feature, Geometry, GeometryObject, GeometryCollection, GeoJsonProperties, BBox, GeoJsonTypes, } from "geojson"; import { AllGeoJSON, Lines, Id } from "@turf/helpers"; /** * Callback for coordEach * * @callback coordEachCallback * @param {number[]} currentCoord The current coordinate being processed. * @param {number} coordIndex The current index of the coordinate being processed. * @param {number} featureIndex The current index of the Feature being processed. * @param {number} multiFeatureIndex The current index of the Multi-Feature being processed. * @param {number} geometryIndex The current index of the Geometry being processed. * @returns {void} */ /** * Iterate over coordinates in any GeoJSON object, similar to Array.forEach() * * @function * @param {AllGeoJSON} geojson any GeoJSON object * @param {coordEachCallback} callback a method that takes (currentCoord, coordIndex, featureIndex, multiFeatureIndex) * @param {boolean} [excludeWrapCoord=false] whether or not to include the final coordinate of LinearRings that wraps the ring in its iteration. * @returns {void} * @example * var features = turf.featureCollection([ * turf.point([26, 37], {"foo": "bar"}), * turf.point([36, 53], {"hello": "world"}) * ]); * * turf.coordEach(features, function (currentCoord, coordIndex, featureIndex, multiFeatureIndex, geometryIndex) { * //=currentCoord * //=coordIndex * //=featureIndex * //=multiFeatureIndex * //=geometryIndex * }); */ function coordEach( geojson: AllGeoJSON, callback: ( currentCoord: number[], coordIndex: number, featureIndex: number, multiFeatureIndex: number, geometryIndex: number ) => void, excludeWrapCoord?: boolean ): void { // Handles null Geometry -- Skips this GeoJSON if (geojson === null) return; var j, k, l, geometry, stopG, coords, geometryMaybeCollection, wrapShrink = 0, coordIndex = 0, isGeometryCollection, type = geojson.type, isFeatureCollection = type === "FeatureCollection", isFeature = type === "Feature", // @ts-expect-error: Known type conflict stop = isFeatureCollection ? geojson.features.length : 1; // This logic may look a little weird. The reason why it is that way // is because it's trying to be fast. GeoJSON supports multiple kinds // of objects at its root: FeatureCollection, Features, Geometries. // This function has the responsibility of handling all of them, and that // means that some of the `for` loops you see below actually just don't apply // to certain inputs. For instance, if you give this just a // Point geometry, then both loops are short-circuited and all we do // is gradually rename the input until it's called 'geometry'. // // This also aims to allocate as few resources as possible: just a // few numbers and booleans, rather than any temporary arrays as would // be required with the normalization approach. for (var featureIndex = 0; featureIndex < stop; featureIndex++) { geometryMaybeCollection = isFeatureCollection ? // @ts-expect-error: Known type conflict geojson.features[featureIndex].geometry : isFeature ? // @ts-expect-error: Known type conflict geojson.geometry : geojson; isGeometryCollection = geometryMaybeCollection ? geometryMaybeCollection.type === "GeometryCollection" : false; stopG = isGeometryCollection ? geometryMaybeCollection.geometries.length : 1; for (var geomIndex = 0; geomIndex < stopG; geomIndex++) { var multiFeatureIndex = 0; var geometryIndex = 0; geometry = isGeometryCollection ? geometryMaybeCollection.geometries[geomIndex] : geometryMaybeCollection; // Handles null Geometry -- Skips this geometry if (geometry === null) continue; coords = geometry.coordinates; var geomType = geometry.type; wrapShrink = excludeWrapCoord && (geomType === "Polygon" || geomType === "MultiPolygon") ? 1 : 0; switch (geomType) { case null: break; case "Point": if ( // @ts-expect-error: Known type conflict callback( coords, coordIndex, featureIndex, multiFeatureIndex, geometryIndex ) === false ) // @ts-expect-error: Known type conflict return false; coordIndex++; multiFeatureIndex++; break; case "LineString": case "MultiPoint": for (j = 0; j < coords.length; j++) { if ( // @ts-expect-error: Known type conflict callback( coords[j], coordIndex, featureIndex, multiFeatureIndex, geometryIndex ) === false ) // @ts-expect-error: Known type conflict return false; coordIndex++; if (geomType === "MultiPoint") multiFeatureIndex++; } if (geomType === "LineString") multiFeatureIndex++; break; case "Polygon": case "MultiLineString": for (j = 0; j < coords.length; j++) { for (k = 0; k < coords[j].length - wrapShrink; k++) { if ( // @ts-expect-error: Known type conflict callback( coords[j][k], coordIndex, featureIndex, multiFeatureIndex, geometryIndex ) === false ) // @ts-expect-error: Known type conflict return false; coordIndex++; } if (geomType === "MultiLineString") multiFeatureIndex++; if (geomType === "Polygon") geometryIndex++; } if (geomType === "Polygon") multiFeatureIndex++; break; case "MultiPolygon": for (j = 0; j < coords.length; j++) { geometryIndex = 0; for (k = 0; k < coords[j].length; k++) { for (l = 0; l < coords[j][k].length - wrapShrink; l++) { if ( // @ts-expect-error: Known type conflict callback( coords[j][k][l], coordIndex, featureIndex, multiFeatureIndex, geometryIndex ) === false ) // @ts-expect-error: Known type conflict return false; coordIndex++; } geometryIndex++; } multiFeatureIndex++; } break; case "GeometryCollection": for (j = 0; j < geometry.geometries.length; j++) if ( // @ts-expect-error: Known type conflict coordEach(geometry.geometries[j], callback, excludeWrapCoord) === false ) // @ts-expect-error: Known type conflict return false; break; default: throw new Error("Unknown Geometry Type"); } } } } /** * Callback for coordReduce * * The first time the callback function is called, the values provided as arguments depend * on whether the reduce method has an initialValue argument. * * If an initialValue is provided to the reduce method: * - The previousValue argument is initialValue. * - The currentValue argument is the value of the first element present in the array. * * If an initialValue is not provided: * - The previousValue argument is the value of the first element present in the array. * - The currentValue argument is the value of the second element present in the array. * * @callback coordReduceCallback * @param {Reducer} previousValue The accumulated value previously returned in the last invocation * of the callback, or initialValue, if supplied. * @param {number[]} currentCoord The current coordinate being processed. * @param {number} coordIndex The current index of the coordinate being processed. * Starts at index 0, if an initialValue is provided, and at index 1 otherwise. * @param {number} featureIndex The current index of the Feature being processed. * @param {number} multiFeatureIndex The current index of the Multi-Feature being processed. * @param {number} geometryIndex The current index of the Geometry being processed. * @returns {Reducer} */ /** * Reduce coordinates in any GeoJSON object, similar to Array.reduce() * * @function * @param {AllGeoJSON} geojson any GeoJSON object * @param {coordReduceCallback} callback a method that takes (previousValue, currentCoord, coordIndex) * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback. * @param {boolean} [excludeWrapCoord=false] whether or not to include the final coordinate of LinearRings that wraps the ring in its iteration. * @returns {Reducer} The value that results from the reduction. * @example * var features = turf.featureCollection([ * turf.point([26, 37], {"foo": "bar"}), * turf.point([36, 53], {"hello": "world"}) * ]); * * turf.coordReduce(features, function (previousValue, currentCoord, coordIndex, featureIndex, multiFeatureIndex, geometryIndex) { * //=previousValue * //=currentCoord * //=coordIndex * //=featureIndex * //=multiFeatureIndex * //=geometryIndex * return currentCoord; * }); */ function coordReduce( geojson: AllGeoJSON, callback: ( previousValue: Reducer, currentCoord: number[], coordIndex: number, featureIndex: number, multiFeatureIndex: number, geometryIndex: number ) => Reducer, initialValue?: Reducer, excludeWrapCoord?: boolean ): Reducer { var previousValue = initialValue; coordEach( geojson, function ( currentCoord, coordIndex, featureIndex, multiFeatureIndex, geometryIndex ) { if (coordIndex === 0 && initialValue === undefined) // @ts-expect-error: Known type conflict previousValue = currentCoord; else previousValue = callback( // @ts-expect-error: Known type conflict previousValue, currentCoord, coordIndex, featureIndex, multiFeatureIndex, geometryIndex ); }, excludeWrapCoord ); // @ts-expect-error: Known type conflict return previousValue; } /** * Callback for propEach * * @callback propEachCallback * @param {GeoJsonProperties} currentProperties The current Properties being processed. * @param {number} featureIndex The current index of the Feature being processed. * @returns {void} */ /** * Iterate over properties in any GeoJSON object, similar to Array.forEach() * * @function * @param {FeatureCollection|Feature} geojson any GeoJSON object * @param {propEachCallback} callback a method that takes (currentProperties, featureIndex) * @returns {void} * @example * var features = turf.featureCollection([ * turf.point([26, 37], {foo: 'bar'}), * turf.point([36, 53], {hello: 'world'}) * ]); * * turf.propEach(features, function (currentProperties, featureIndex) { * //=currentProperties * //=featureIndex * }); */ function propEach( geojson: Feature | FeatureCollection | Feature, callback: (currentProperties: Props, featureIndex: number) => void ): void { var i; switch (geojson.type) { case "FeatureCollection": for (i = 0; i < geojson.features.length; i++) { // @ts-expect-error: Known type conflict if (callback(geojson.features[i].properties, i) === false) break; } break; case "Feature": // @ts-expect-error: Known type conflict callback(geojson.properties, 0); break; } } /** * Callback for propReduce * * The first time the callback function is called, the values provided as arguments depend * on whether the reduce method has an initialValue argument. * * If an initialValue is provided to the reduce method: * - The previousValue argument is initialValue. * - The currentValue argument is the value of the first element present in the array. * * If an initialValue is not provided: * - The previousValue argument is the value of the first element present in the array. * - The currentValue argument is the value of the second element present in the array. * * @callback propReduceCallback * @param {Reducer} previousValue The accumulated value previously returned in the last invocation * of the callback, or initialValue, if supplied. * @param {GeoJsonProperties} currentProperties The current Properties being processed. * @param {number} featureIndex The current index of the Feature being processed. * @returns {Reducer} */ /** * Reduce properties in any GeoJSON object into a single value, * similar to how Array.reduce works. However, in this case we lazily run * the reduction, so an array of all properties is unnecessary. * * @function * @param {FeatureCollection|Feature|Geometry} geojson any GeoJSON object * @param {propReduceCallback} callback a method that takes (previousValue, currentProperties, featureIndex) * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback. * @returns {Reducer} The value that results from the reduction. * @example * var features = turf.featureCollection([ * turf.point([26, 37], {foo: 'bar'}), * turf.point([36, 53], {hello: 'world'}) * ]); * * turf.propReduce(features, function (previousValue, currentProperties, featureIndex) { * //=previousValue * //=currentProperties * //=featureIndex * return currentProperties * }); */ function propReduce( geojson: Feature | FeatureCollection | Geometry, callback: ( previousValue: Reducer, currentProperties: P, featureIndex: number ) => Reducer, initialValue?: Reducer ): Reducer { var previousValue = initialValue; // @ts-expect-error: Known type conflict propEach(geojson, function (currentProperties, featureIndex) { if (featureIndex === 0 && initialValue === undefined) // @ts-expect-error: Known type conflict previousValue = currentProperties; else // @ts-expect-error: Known type conflict previousValue = callback(previousValue, currentProperties, featureIndex); }); // @ts-expect-error: Known type conflict return previousValue; } /** * Callback for featureEach * * @callback featureEachCallback * @param {Feature} currentFeature The current Feature being processed. * @param {number} featureIndex The current index of the Feature being processed. * @returns {void} */ /** * Iterate over features in any GeoJSON object, similar to * Array.forEach. * * @function * @param {FeatureCollection|Feature|Feature} geojson any GeoJSON object * @param {featureEachCallback} callback a method that takes (currentFeature, featureIndex) * @returns {void} * @example * var features = turf.featureCollection([ * turf.point([26, 37], {foo: 'bar'}), * turf.point([36, 53], {hello: 'world'}) * ]); * * turf.featureEach(features, function (currentFeature, featureIndex) { * //=currentFeature * //=featureIndex * }); */ function featureEach< G extends GeometryObject, P extends GeoJsonProperties = GeoJsonProperties, >( geojson: | Feature | FeatureCollection | Feature, callback: (currentFeature: Feature, featureIndex: number) => void ): void { if (geojson.type === "Feature") { // @ts-expect-error: Known type conflict callback(geojson, 0); } else if (geojson.type === "FeatureCollection") { for (var i = 0; i < geojson.features.length; i++) { // @ts-expect-error: Known type conflict if (callback(geojson.features[i], i) === false) break; } } } /** * Callback for featureReduce * * The first time the callback function is called, the values provided as arguments depend * on whether the reduce method has an initialValue argument. * * If an initialValue is provided to the reduce method: * - The previousValue argument is initialValue. * - The currentValue argument is the value of the first element present in the array. * * If an initialValue is not provided: * - The previousValue argument is the value of the first element present in the array. * - The currentValue argument is the value of the second element present in the array. * * @callback featureReduceCallback * @param {Reducer} previousValue The accumulated value previously returned in the last invocation * of the callback, or initialValue, if supplied. * @param {Feature} currentFeature The current Feature being processed. * @param {number} featureIndex The current index of the Feature being processed. * @returns {Reducer} */ /** * Reduce features in any GeoJSON object, similar to Array.reduce(). * * @function * @param {FeatureCollection|Feature|Feature} geojson any GeoJSON object * @param {featureReduceCallback} callback a method that takes (previousValue, currentFeature, featureIndex) * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback. * @returns {Reducer} The value that results from the reduction. * @example * var features = turf.featureCollection([ * turf.point([26, 37], {"foo": "bar"}), * turf.point([36, 53], {"hello": "world"}) * ]); * * turf.featureReduce(features, function (previousValue, currentFeature, featureIndex) { * //=previousValue * //=currentFeature * //=featureIndex * return currentFeature * }); */ function featureReduce< Reducer, G extends GeometryObject, P extends GeoJsonProperties = GeoJsonProperties, >( geojson: | Feature | FeatureCollection | Feature, callback: ( previousValue: Reducer, currentFeature: Feature, featureIndex: number ) => Reducer, initialValue?: Reducer ): Reducer { var previousValue = initialValue; featureEach(geojson, function (currentFeature, featureIndex) { if (featureIndex === 0 && initialValue === undefined) // @ts-expect-error: Known type conflict previousValue = currentFeature; // @ts-expect-error: Known type conflict else previousValue = callback(previousValue, currentFeature, featureIndex); }); // @ts-expect-error: Known type conflict return previousValue; } /** * Get all coordinates from any GeoJSON object. * * @function * @param {AllGeoJSON} geojson any GeoJSON object * @returns {Array>} coordinate position array * @example * var features = turf.featureCollection([ * turf.point([26, 37], {foo: 'bar'}), * turf.point([36, 53], {hello: 'world'}) * ]); * * var coords = turf.coordAll(features); * //= [[26, 37], [36, 53]] */ function coordAll(geojson: AllGeoJSON): number[][] { // @ts-expect-error: Known type conflict var coords = []; coordEach(geojson, function (coord) { coords.push(coord); }); // @ts-expect-error: Known type conflict return coords; } /** * Callback for geomEach * * @callback geomEachCallback * @param {GeometryObject} currentGeometry The current Geometry being processed. * @param {number} featureIndex The current index of the Feature being processed. * @param {GeoJsonProperties} featureProperties The current Feature Properties being processed. * @param {BBox} featureBBox The current Feature BBox being processed. * @param {Id} featureId The current Feature Id being processed. * @returns {void} */ /** * Iterate over each geometry in any GeoJSON object, similar to Array.forEach() * * @function * @param {FeatureCollection|Feature|Geometry|GeometryObject|Feature} geojson any GeoJSON object * @param {geomEachCallback} callback a method that takes (currentGeometry, featureIndex, featureProperties, featureBBox, featureId) * @returns {void} * @example * var features = turf.featureCollection([ * turf.point([26, 37], {foo: 'bar'}), * turf.point([36, 53], {hello: 'world'}) * ]); * * turf.geomEach(features, function (currentGeometry, featureIndex, featureProperties, featureBBox, featureId) { * //=currentGeometry * //=featureIndex * //=featureProperties * //=featureBBox * //=featureId * }); */ function geomEach< G extends GeometryObject | null, P extends GeoJsonProperties = GeoJsonProperties, >( geojson: | Feature | FeatureCollection | G | GeometryCollection | Feature, callback: ( currentGeometry: G, featureIndex: number, featureProperties: P, featureBBox: BBox, featureId: Id ) => void ): void { var i, j, g, geometry, stopG, geometryMaybeCollection, isGeometryCollection, featureProperties, featureBBox, featureId, featureIndex = 0, // @ts-expect-error: Known type conflict isFeatureCollection = geojson.type === "FeatureCollection", // @ts-expect-error: Known type conflict isFeature = geojson.type === "Feature", // @ts-expect-error: Known type conflict stop = isFeatureCollection ? geojson.features.length : 1; // This logic may look a little weird. The reason why it is that way // is because it's trying to be fast. GeoJSON supports multiple kinds // of objects at its root: FeatureCollection, Features, Geometries. // This function has the responsibility of handling all of them, and that // means that some of the `for` loops you see below actually just don't apply // to certain inputs. For instance, if you give this just a // Point geometry, then both loops are short-circuited and all we do // is gradually rename the input until it's called 'geometry'. // // This also aims to allocate as few resources as possible: just a // few numbers and booleans, rather than any temporary arrays as would // be required with the normalization approach. for (i = 0; i < stop; i++) { geometryMaybeCollection = isFeatureCollection ? // @ts-expect-error: Known type conflict geojson.features[i].geometry : isFeature ? // @ts-expect-error: Known type conflict geojson.geometry : geojson; featureProperties = isFeatureCollection ? // @ts-expect-error: Known type conflict geojson.features[i].properties : isFeature ? // @ts-expect-error: Known type conflict geojson.properties : {}; featureBBox = isFeatureCollection ? // @ts-expect-error: Known type conflict geojson.features[i].bbox : isFeature ? // @ts-expect-error: Known type conflict geojson.bbox : undefined; featureId = isFeatureCollection ? // @ts-expect-error: Known type conflict geojson.features[i].id : isFeature ? // @ts-expect-error: Known type conflict geojson.id : undefined; isGeometryCollection = geometryMaybeCollection ? geometryMaybeCollection.type === "GeometryCollection" : false; stopG = isGeometryCollection ? geometryMaybeCollection.geometries.length : 1; for (g = 0; g < stopG; g++) { geometry = isGeometryCollection ? geometryMaybeCollection.geometries[g] : geometryMaybeCollection; // Handle null Geometry if (geometry === null) { if ( // @ts-expect-error: Known type conflict callback( // @ts-expect-error: Known type conflict null, featureIndex, featureProperties, featureBBox, featureId ) === false ) // @ts-expect-error: Known type conflict return false; continue; } switch (geometry.type) { case "Point": case "LineString": case "MultiPoint": case "Polygon": case "MultiLineString": case "MultiPolygon": { if ( // @ts-expect-error: Known type conflict callback( geometry, featureIndex, featureProperties, featureBBox, featureId ) === false ) // @ts-expect-error: Known type conflict return false; break; } case "GeometryCollection": { for (j = 0; j < geometry.geometries.length; j++) { if ( // @ts-expect-error: Known type conflict callback( geometry.geometries[j], featureIndex, featureProperties, featureBBox, featureId ) === false ) // @ts-expect-error: Known type conflict return false; } break; } default: throw new Error("Unknown Geometry Type"); } } // Only increase `featureIndex` per each feature featureIndex++; } } /** * Callback for geomReduce * * The first time the callback function is called, the values provided as arguments depend * on whether the reduce method has an initialValue argument. * * If an initialValue is provided to the reduce method: * - The previousValue argument is initialValue. * - The currentValue argument is the value of the first element present in the array. * * If an initialValue is not provided: * - The previousValue argument is the value of the first element present in the array. * - The currentValue argument is the value of the second element present in the array. * * @callback geomReduceCallback * @param {Reducer} previousValue The accumulated value previously returned in the last invocation * of the callback, or initialValue, if supplied. * @param {GeometryObject} currentGeometry The current Geometry being processed. * @param {number} featureIndex The current index of the Feature being processed. * @param {GeoJsonProperties} featureProperties The current Feature Properties being processed. * @param {BBox} featureBBox The current Feature BBox being processed. * @param {Id} featureId The current Feature Id being processed. * @returns {Reducer} */ /** * Reduce geometry in any GeoJSON object, similar to Array.reduce(). * * @function * @param {FeatureCollection|Feature|GeometryObject|GeometryCollection|Feature} geojson any GeoJSON object * @param {geomReduceCallback} callback a method that takes (previousValue, currentGeometry, featureIndex, featureProperties, featureBBox, featureId) * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback. * @returns {Reducer} The value that results from the reduction. * @example * var features = turf.featureCollection([ * turf.point([26, 37], {foo: 'bar'}), * turf.point([36, 53], {hello: 'world'}) * ]); * * turf.geomReduce(features, function (previousValue, currentGeometry, featureIndex, featureProperties, featureBBox, featureId) { * //=previousValue * //=currentGeometry * //=featureIndex * //=featureProperties * //=featureBBox * //=featureId * return currentGeometry * }); */ function geomReduce< Reducer, G extends GeometryObject, P extends GeoJsonProperties = GeoJsonProperties, >( geojson: | Feature | FeatureCollection | G | GeometryCollection | Feature, callback: ( previousValue: Reducer, currentGeometry: G, featureIndex: number, featureProperties: P, featureBBox: BBox, featureId: Id ) => Reducer, initialValue?: Reducer ): Reducer { var previousValue = initialValue; geomEach( geojson, function ( currentGeometry, featureIndex, featureProperties, featureBBox, featureId ) { if (featureIndex === 0 && initialValue === undefined) // @ts-expect-error: Known type conflict previousValue = currentGeometry; else previousValue = callback( // @ts-expect-error: Known type conflict previousValue, currentGeometry, featureIndex, featureProperties, featureBBox, featureId ); } ); // @ts-expect-error: Known type conflict return previousValue; } /** * Callback for flattenEach * * @callback flattenEachCallback * @param {Feature} currentFeature The current flattened feature being processed. * @param {number} featureIndex The current index of the Feature being processed. * @param {number} multiFeatureIndex The current index of the Multi-Feature being processed. * @returns {void} */ /** * Iterate over flattened features in any GeoJSON object, similar to * Array.forEach. * * @function * @param {FeatureCollection|Feature|GeometryObject|GeometryCollection|Feature} geojson any GeoJSON object * @param {flattenEachCallback} callback a method that takes (currentFeature, featureIndex, multiFeatureIndex) * @returns {void} * @example * var features = turf.featureCollection([ * turf.point([26, 37], {foo: 'bar'}), * turf.multiPoint([[40, 30], [36, 53]], {hello: 'world'}) * ]); * * turf.flattenEach(features, function (currentFeature, featureIndex, multiFeatureIndex) { * //=currentFeature * //=featureIndex * //=multiFeatureIndex * }); */ function flattenEach< G extends GeometryObject = GeometryObject, P extends GeoJsonProperties = GeoJsonProperties, >( geojson: | Feature | FeatureCollection | G | GeometryCollection | Feature, callback: ( currentFeature: Feature, featureIndex: number, multiFeatureIndex: number ) => void ): void { geomEach(geojson, function (geometry, featureIndex, properties, bbox, id) { // Callback for single geometry var type = geometry === null ? null : geometry.type; switch (type) { case null: case "Point": case "LineString": case "Polygon": if ( // @ts-expect-error: Known type conflict callback( feature(geometry, properties, { bbox: bbox, id: id }), featureIndex, 0 ) === false ) return false; return; } var geomType; // Callback for multi-geometry switch (type) { case "MultiPoint": geomType = "Point"; break; case "MultiLineString": geomType = "LineString"; break; case "MultiPolygon": geomType = "Polygon"; break; } for ( var multiFeatureIndex = 0; // @ts-expect-error: Known type conflict multiFeatureIndex < geometry.coordinates.length; multiFeatureIndex++ ) { // @ts-expect-error: Known type conflict var coordinate = geometry.coordinates[multiFeatureIndex]; var geom = { type: geomType, coordinates: coordinate, }; if ( // @ts-expect-error: Known type conflict callback(feature(geom, properties), featureIndex, multiFeatureIndex) === false ) return false; } }); } /** * Callback for flattenReduce * * The first time the callback function is called, the values provided as arguments depend * on whether the reduce method has an initialValue argument. * * If an initialValue is provided to the reduce method: * - The previousValue argument is initialValue. * - The currentValue argument is the value of the first element present in the array. * * If an initialValue is not provided: * - The previousValue argument is the value of the first element present in the array. * - The currentValue argument is the value of the second element present in the array. * * @callback flattenReduceCallback * @param {Reducer} previousValue The accumulated value previously returned in the last invocation * of the callback, or initialValue, if supplied. * @param {Feature} currentFeature The current Feature being processed. * @param {number} featureIndex The current index of the Feature being processed. * @param {number} multiFeatureIndex The current index of the Multi-Feature being processed. * @returns {Reducer} */ /** * Reduce flattened features in any GeoJSON object, similar to Array.reduce(). * * @function * @param {FeatureCollection|Feature|GeometryObject|GeometryCollection|Feature} geojson any GeoJSON object * @param {flattenReduceCallback} callback a method that takes (previousValue, currentFeature, featureIndex, multiFeatureIndex) * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback. * @returns {Reducer} The value that results from the reduction. * @example * var features = turf.featureCollection([ * turf.point([26, 37], {foo: 'bar'}), * turf.multiPoint([[40, 30], [36, 53]], {hello: 'world'}) * ]); * * turf.flattenReduce(features, function (previousValue, currentFeature, featureIndex, multiFeatureIndex) { * //=previousValue * //=currentFeature * //=featureIndex * //=multiFeatureIndex * return currentFeature * }); */ function flattenReduce< Reducer, G extends GeometryObject, P extends GeoJsonProperties = GeoJsonProperties, >( geojson: | Feature | FeatureCollection | G | GeometryCollection | Feature, callback: ( previousValue: Reducer, currentFeature: Feature, featureIndex: number, multiFeatureIndex: number ) => Reducer, initialValue?: Reducer ): Reducer { var previousValue = initialValue; flattenEach( geojson, function (currentFeature, featureIndex, multiFeatureIndex) { if ( featureIndex === 0 && multiFeatureIndex === 0 && initialValue === undefined ) // @ts-expect-error: Known type conflict previousValue = currentFeature; else previousValue = callback( // @ts-expect-error: Known type conflict previousValue, currentFeature, featureIndex, multiFeatureIndex ); } ); // @ts-expect-error: Known type conflict return previousValue; } /** * Callback for segmentEach * * @callback segmentEachCallback * @param {Feature} currentSegment The current Segment being processed. * @param {number} featureIndex The current index of the Feature being processed. * @param {number} multiFeatureIndex The current index of the Multi-Feature being processed. * @param {number} geometryIndex The current index of the Geometry being processed. * @param {number} segmentIndex The current index of the Segment being processed. * @returns {void} */ /** * Iterate over 2-vertex line segment in any GeoJSON object, similar to Array.forEach() * (Multi)Point geometries do not contain segments therefore they are ignored during this operation. * * @param {AllGeoJSON} geojson any GeoJSON * @param {segmentEachCallback} callback a method that takes (currentSegment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex) * @returns {void} * @example * var polygon = turf.polygon([[[-50, 5], [-40, -10], [-50, -10], [-40, 5], [-50, 5]]]); * * // Iterate over GeoJSON by 2-vertex segments * turf.segmentEach(polygon, function (currentSegment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex) { * //=currentSegment * //=featureIndex * //=multiFeatureIndex * //=geometryIndex * //=segmentIndex * }); * * // Calculate the total number of segments * var total = 0; * turf.segmentEach(polygon, function () { * total++; * }); */ function segmentEach

( geojson: AllGeoJSON, callback: ( currentSegment?: Feature, featureIndex?: number, multiFeatureIndex?: number, segmentIndex?: number, geometryIndex?: number ) => void ): void { flattenEach(geojson, function (feature, featureIndex, multiFeatureIndex) { var segmentIndex = 0; // Exclude null Geometries if (!feature.geometry) return; // (Multi)Point geometries do not contain segments therefore they are ignored during this operation. var type = feature.geometry.type; if (type === "Point" || type === "MultiPoint") return; // Generate 2-vertex line segments // @ts-expect-error: Known type conflict var previousCoords; var previousFeatureIndex = 0; var previousMultiIndex = 0; var prevGeomIndex = 0; if ( // @ts-expect-error: Known type conflict coordEach( feature, function ( currentCoord, coordIndex, featureIndexCoord, multiPartIndexCoord, geometryIndex ) { // Simulating a meta.coordReduce() since `reduce` operations cannot be stopped by returning `false` if ( // @ts-expect-error: Known type conflict previousCoords === undefined || featureIndex > previousFeatureIndex || multiPartIndexCoord > previousMultiIndex || geometryIndex > prevGeomIndex ) { previousCoords = currentCoord; previousFeatureIndex = featureIndex; previousMultiIndex = multiPartIndexCoord; prevGeomIndex = geometryIndex; segmentIndex = 0; return; } var currentSegment = lineString( // @ts-expect-error: Known type conflict [previousCoords, currentCoord], feature.properties ); if ( // @ts-expect-error: Known type conflict callback( // @ts-expect-error: Known type conflict currentSegment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex ) === false ) return false; segmentIndex++; previousCoords = currentCoord; } ) === false ) return false; }); } /** * Callback for segmentReduce * * The first time the callback function is called, the values provided as arguments depend * on whether the reduce method has an initialValue argument. * * If an initialValue is provided to the reduce method: * - The previousValue argument is initialValue. * - The currentValue argument is the value of the first element present in the array. * * If an initialValue is not provided: * - The previousValue argument is the value of the first element present in the array. * - The currentValue argument is the value of the second element present in the array. * * @callback segmentReduceCallback * @param {Reducer} previousValue The accumulated value previously returned in the last invocation * of the callback, or initialValue, if supplied. * @param {Feature} currentSegment The current Segment being processed. * @param {number} featureIndex The current index of the Feature being processed. * @param {number} multiFeatureIndex The current index of the Multi-Feature being processed. * @param {number} geometryIndex The current index of the Geometry being processed. * @param {number} segmentIndex The current index of the Segment being processed. * @returns {Reducer} */ /** * Reduce 2-vertex line segment in any GeoJSON object, similar to Array.reduce() * (Multi)Point geometries do not contain segments therefore they are ignored during this operation. * * @param {FeatureCollection|Feature|Geometry} geojson any GeoJSON * @param {segmentReduceCallback} callback a method that takes (previousValue, currentSegment, currentIndex) * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback. * @returns {Reducer} * @example * var polygon = turf.polygon([[[-50, 5], [-40, -10], [-50, -10], [-40, 5], [-50, 5]]]); * * // Iterate over GeoJSON by 2-vertex segments * turf.segmentReduce(polygon, function (previousSegment, currentSegment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex) { * //= previousSegment * //= currentSegment * //= featureIndex * //= multiFeatureIndex * //= geometryIndex * //= segmentIndex * return currentSegment * }); * * // Calculate the total number of segments * var initialValue = 0 * var total = turf.segmentReduce(polygon, function (previousValue) { * previousValue++; * return previousValue; * }, initialValue); */ function segmentReduce< Reducer, P extends GeoJsonProperties = GeoJsonProperties, >( geojson: | FeatureCollection | Feature | Lines | Feature | GeometryCollection, callback: ( previousValue?: Reducer, currentSegment?: Feature, featureIndex?: number, multiFeatureIndex?: number, segmentIndex?: number, geometryIndex?: number ) => Reducer, initialValue?: Reducer ): Reducer { var previousValue = initialValue; var started = false; segmentEach( geojson, function ( currentSegment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex ) { if (started === false && initialValue === undefined) // @ts-expect-error: Known type conflict previousValue = currentSegment; else previousValue = callback( previousValue, // @ts-expect-error: Known type conflict currentSegment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex ); started = true; } ); // @ts-expect-error: Known type conflict return previousValue; } /** * Callback for lineEach * * @callback lineEachCallback * @param {Feature} currentLine The current LineString|LinearRing being processed * @param {number} featureIndex The current index of the Feature being processed * @param {number} multiFeatureIndex The current index of the Multi-Feature being processed * @param {number} geometryIndex The current index of the Geometry being processed * @returns {void} */ /** * Iterate over line or ring coordinates in LineString, Polygon, MultiLineString, MultiPolygon Features or Geometries, * similar to Array.forEach. * * @function * @param {FeatureCollection|Feature|Lines|Feature|GeometryCollection} geojson object * @param {lineEachCallback} callback a method that takes (currentLine, featureIndex, multiFeatureIndex, geometryIndex) * @returns {void} * @example * var multiLine = turf.multiLineString([ * [[26, 37], [35, 45]], * [[36, 53], [38, 50], [41, 55]] * ]); * * turf.lineEach(multiLine, function (currentLine, featureIndex, multiFeatureIndex, geometryIndex) { * //=currentLine * //=featureIndex * //=multiFeatureIndex * //=geometryIndex * }); */ function lineEach

( geojson: | FeatureCollection | Feature | Lines | Feature | GeometryCollection, callback: ( currentLine: Feature, featureIndex?: number, multiFeatureIndex?: number, geometryIndex?: number ) => void ): void { // validation if (!geojson) throw new Error("geojson is required"); flattenEach(geojson, function (feature, featureIndex, multiFeatureIndex) { if (feature.geometry === null) return; var type = feature.geometry.type; var coords = feature.geometry.coordinates; switch (type) { case "LineString": // @ts-expect-error: Known type conflict if (callback(feature, featureIndex, multiFeatureIndex, 0, 0) === false) return false; break; case "Polygon": for ( var geometryIndex = 0; geometryIndex < coords.length; geometryIndex++ ) { if ( // @ts-expect-error: Known type conflict callback( // @ts-expect-error: Known type conflict lineString(coords[geometryIndex], feature.properties), featureIndex, multiFeatureIndex, geometryIndex ) === false ) return false; } break; } }); } /** * Callback for lineReduce * * The first time the callback function is called, the values provided as arguments depend * on whether the reduce method has an initialValue argument. * * If an initialValue is provided to the reduce method: * - The previousValue argument is initialValue. * - The currentValue argument is the value of the first element present in the array. * * If an initialValue is not provided: * - The previousValue argument is the value of the first element present in the array. * - The currentValue argument is the value of the second element present in the array. * * @callback lineReduceCallback * @param {Reducer} previousValue The accumulated value previously returned in the last invocation * of the callback, or initialValue, if supplied. * @param {Feature} currentLine The current LineString|LinearRing being processed. * @param {number} featureIndex The current index of the Feature being processed * @param {number} multiFeatureIndex The current index of the Multi-Feature being processed * @param {number} geometryIndex The current index of the Geometry being processed * @returns {Reducer} */ /** * Reduce features in any GeoJSON object, similar to Array.reduce(). * * @function * @param {FeatureCollection|Feature|Lines|Feature|GeometryCollection} geojson object * @param {Function} callback a method that takes (previousValue, currentLine, featureIndex, multiFeatureIndex, geometryIndex) * @param {Reducer} [initialValue] Value to use as the first argument to the first call of the callback. * @returns {Reducer} The value that results from the reduction. * @example * var multiPoly = turf.multiPolygon([ * turf.polygon([[[12,48],[2,41],[24,38],[12,48]], [[9,44],[13,41],[13,45],[9,44]]]), * turf.polygon([[[5, 5], [0, 0], [2, 2], [4, 4], [5, 5]]]) * ]); * * turf.lineReduce(multiPoly, function (previousValue, currentLine, featureIndex, multiFeatureIndex, geometryIndex) { * //=previousValue * //=currentLine * //=featureIndex * //=multiFeatureIndex * //=geometryIndex * return currentLine * }); */ function lineReduce( geojson: | FeatureCollection | Feature | Lines | Feature | GeometryCollection, callback: ( previousValue?: Reducer, currentLine?: Feature, featureIndex?: number, multiFeatureIndex?: number, geometryIndex?: number ) => Reducer, initialValue?: Reducer ): Reducer { var previousValue = initialValue; lineEach( geojson, function (currentLine, featureIndex, multiFeatureIndex, geometryIndex) { if (featureIndex === 0 && initialValue === undefined) // @ts-expect-error: Known type conflict previousValue = currentLine; else previousValue = callback( previousValue, currentLine, featureIndex, multiFeatureIndex, geometryIndex ); } ); // @ts-expect-error: Known type conflict return previousValue; } /** * Finds a particular 2-vertex LineString Segment from a GeoJSON using `@turf/meta` indexes. * * Negative indexes are permitted. * Point & MultiPoint will always return null. * * @param {FeatureCollection|Feature|Geometry} geojson Any GeoJSON Feature or Geometry * @param {Object} [options={}] Optional parameters * @param {number} [options.featureIndex=0] Feature Index * @param {number} [options.multiFeatureIndex=0] Multi-Feature Index * @param {number} [options.geometryIndex=0] Geometry Index * @param {number} [options.segmentIndex=0] Segment Index * @param {Object} [options.properties={}] Translate Properties to output LineString * @param {BBox} [options.bbox={}] Translate BBox to output LineString * @param {number|string} [options.id={}] Translate Id to output LineString * @returns {Feature} 2-vertex GeoJSON Feature LineString * @example * var multiLine = turf.multiLineString([ * [[10, 10], [50, 30], [30, 40]], * [[-10, -10], [-50, -30], [-30, -40]] * ]); * * // First Segment (defaults are 0) * turf.findSegment(multiLine); * // => Feature> * * // First Segment of 2nd Multi Feature * turf.findSegment(multiLine, {multiFeatureIndex: 1}); * // => Feature> * * // Last Segment of Last Multi Feature * turf.findSegment(multiLine, {multiFeatureIndex: -1, segmentIndex: -1}); * // => Feature> */ function findSegment< G extends LineString | MultiLineString | Polygon | MultiPolygon, P extends GeoJsonProperties = GeoJsonProperties, >( geojson: Feature | FeatureCollection | G, options?: { featureIndex?: number; multiFeatureIndex?: number; geometryIndex?: number; segmentIndex?: number; properties?: P; bbox?: BBox; id?: Id; } ): Feature { // Optional Parameters options = options || {}; if (!isObject(options)) throw new Error("options is invalid"); var featureIndex = options.featureIndex || 0; var multiFeatureIndex = options.multiFeatureIndex || 0; var geometryIndex = options.geometryIndex || 0; var segmentIndex = options.segmentIndex || 0; // Find FeatureIndex var properties = options.properties; var geometry; switch (geojson.type) { case "FeatureCollection": if (featureIndex < 0) featureIndex = geojson.features.length + featureIndex; properties = properties || geojson.features[featureIndex].properties; geometry = geojson.features[featureIndex].geometry; break; case "Feature": properties = properties || geojson.properties; geometry = geojson.geometry; break; case "Point" as GeoJsonTypes: case "MultiPoint" as GeoJsonTypes: // @ts-expect-error: Known type conflict return null; case "LineString": case "Polygon": case "MultiLineString": case "MultiPolygon": geometry = geojson; break; default: throw new Error("geojson is invalid"); } // Find SegmentIndex // @ts-expect-error: Known type conflict if (geometry === null) return null; var coords = geometry.coordinates; switch (geometry.type) { case "Point" as GeoJsonTypes: case "MultiPoint" as GeoJsonTypes: // @ts-expect-error: Known type conflict return null; case "LineString": if (segmentIndex < 0) segmentIndex = coords.length + segmentIndex - 1; return lineString( // @ts-expect-error: Known type conflict [coords[segmentIndex], coords[segmentIndex + 1]], properties, options ); case "Polygon": if (geometryIndex < 0) geometryIndex = coords.length + geometryIndex; if (segmentIndex < 0) segmentIndex = coords[geometryIndex].length + segmentIndex - 1; return lineString( [ // @ts-expect-error: Known type conflict coords[geometryIndex][segmentIndex], // @ts-expect-error: Known type conflict coords[geometryIndex][segmentIndex + 1], ], properties, options ); case "MultiLineString": if (multiFeatureIndex < 0) multiFeatureIndex = coords.length + multiFeatureIndex; if (segmentIndex < 0) segmentIndex = coords[multiFeatureIndex].length + segmentIndex - 1; return lineString( [ // @ts-expect-error: Known type conflict coords[multiFeatureIndex][segmentIndex], // @ts-expect-error: Known type conflict coords[multiFeatureIndex][segmentIndex + 1], ], properties, options ); case "MultiPolygon": if (multiFeatureIndex < 0) multiFeatureIndex = coords.length + multiFeatureIndex; if (geometryIndex < 0) geometryIndex = coords[multiFeatureIndex].length + geometryIndex; if (segmentIndex < 0) segmentIndex = // @ts-expect-error: Known type conflict coords[multiFeatureIndex][geometryIndex].length - segmentIndex - 1; return lineString( [ // @ts-expect-error: Known type conflict coords[multiFeatureIndex][geometryIndex][segmentIndex], // @ts-expect-error: Known type conflict coords[multiFeatureIndex][geometryIndex][segmentIndex + 1], ], properties, options ); } throw new Error("geojson is invalid"); } /** * Finds a particular Point from a GeoJSON using `@turf/meta` indexes. * * Negative indexes are permitted. * * @param {FeatureCollection|Feature|Geometry} geojson Any GeoJSON Feature or Geometry * @param {Object} [options={}] Optional parameters * @param {number} [options.featureIndex=0] Feature Index * @param {number} [options.multiFeatureIndex=0] Multi-Feature Index * @param {number} [options.geometryIndex=0] Geometry Index * @param {number} [options.coordIndex=0] Coord Index * @param {Object} [options.properties={}] Translate Properties to output Point * @param {BBox} [options.bbox={}] Translate BBox to output Point * @param {number|string} [options.id={}] Translate Id to output Point * @returns {Feature} 2-vertex GeoJSON Feature Point * @example * var multiLine = turf.multiLineString([ * [[10, 10], [50, 30], [30, 40]], * [[-10, -10], [-50, -30], [-30, -40]] * ]); * * // First Segment (defaults are 0) * turf.findPoint(multiLine); * // => Feature> * * // First Segment of the 2nd Multi-Feature * turf.findPoint(multiLine, {multiFeatureIndex: 1}); * // => Feature> * * // Last Segment of last Multi-Feature * turf.findPoint(multiLine, {multiFeatureIndex: -1, coordIndex: -1}); * // => Feature> */ function findPoint< G extends GeometryObject, P extends GeoJsonProperties = GeoJsonProperties, >( geojson: Feature | FeatureCollection | G, options?: { featureIndex?: number; multiFeatureIndex?: number; geometryIndex?: number; coordIndex?: number; properties?: P; bbox?: BBox; id?: Id; } ): Feature { // Optional Parameters options = options || {}; if (!isObject(options)) throw new Error("options is invalid"); var featureIndex = options.featureIndex || 0; var multiFeatureIndex = options.multiFeatureIndex || 0; var geometryIndex = options.geometryIndex || 0; var coordIndex = options.coordIndex || 0; // Find FeatureIndex var properties = options.properties; var geometry; switch (geojson.type) { case "FeatureCollection": if (featureIndex < 0) featureIndex = geojson.features.length + featureIndex; properties = properties || geojson.features[featureIndex].properties; geometry = geojson.features[featureIndex].geometry; break; case "Feature": properties = properties || geojson.properties; geometry = geojson.geometry; break; case "Point": case "MultiPoint": // @ts-expect-error: Known type conflict return null; case "LineString": case "Polygon": case "MultiLineString": case "MultiPolygon": geometry = geojson; break; default: throw new Error("geojson is invalid"); } // Find Coord Index // @ts-expect-error: Known type conflict if (geometry === null) return null; // @ts-expect-error: Known type conflict var coords = geometry.coordinates; switch (geometry.type) { case "Point": return point(coords, properties, options); case "MultiPoint": if (multiFeatureIndex < 0) multiFeatureIndex = coords.length + multiFeatureIndex; return point(coords[multiFeatureIndex], properties, options); case "LineString": if (coordIndex < 0) coordIndex = coords.length + coordIndex; return point(coords[coordIndex], properties, options); case "Polygon": if (geometryIndex < 0) geometryIndex = coords.length + geometryIndex; if (coordIndex < 0) coordIndex = coords[geometryIndex].length + coordIndex; return point(coords[geometryIndex][coordIndex], properties, options); case "MultiLineString": if (multiFeatureIndex < 0) multiFeatureIndex = coords.length + multiFeatureIndex; if (coordIndex < 0) coordIndex = coords[multiFeatureIndex].length + coordIndex; return point(coords[multiFeatureIndex][coordIndex], properties, options); case "MultiPolygon": if (multiFeatureIndex < 0) multiFeatureIndex = coords.length + multiFeatureIndex; if (geometryIndex < 0) geometryIndex = coords[multiFeatureIndex].length + geometryIndex; if (coordIndex < 0) coordIndex = coords[multiFeatureIndex][geometryIndex].length - coordIndex; return point( coords[multiFeatureIndex][geometryIndex][coordIndex], properties, options ); } throw new Error("geojson is invalid"); } export { coordReduce, coordEach, propEach, propReduce, featureReduce, featureEach, coordAll, geomReduce, geomEach, flattenReduce, flattenEach, segmentReduce, segmentEach, lineReduce, lineEach, findSegment, findPoint, }; ================================================ FILE: packages/turf-meta/package.json ================================================ { "name": "@turf/meta", "version": "7.3.4", "description": "Provides tools for iterating over and manipulating GeoJSON objects.", "author": "Turf Authors", "contributors": [ "Tom MacWright <@tmcw>", "Daniel Pulido <@dpmcmlxxvi>", "Denis Carriere <@DenisCarriere>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "functional", "programming", "turfjs", "geojson", "meta", "flattenEach", "flattenReduce", "segmentEach", "segmentReduce", "coordEach", "coordReduce", "propEach", "propReduce", "featureEach", "featureReduce", "coordAll", "geomEach", "geomReduce", "lineEeach", "lineReduce" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/random": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-meta/test.ts ================================================ import test from "tape"; import { point, lineString, feature, polygon, multiPoint, multiPolygon, multiLineString, geometryCollection, featureCollection, lineStrings, } from "@turf/helpers"; import * as meta from "./index.js"; const pt = point([0, 0], { a: 1 }); const pt2 = point([1, 1]); const line = lineString([ [0, 0], [1, 1], ]); const poly = polygon([ [ [0, 0], [1, 1], [0, 1], [0, 0], ], ]); const polyWithHole = polygon([ [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0], ], [ [100.2, 0.2], [100.8, 0.2], [100.8, 0.8], [100.2, 0.8], [100.2, 0.2], ], ]); const multiPt = multiPoint([ [0, 0], [1, 1], ]); const multiLine = multiLineString([ [ [0, 0], [1, 1], ], [ [3, 3], [4, 4], ], ]); const multiPoly = multiPolygon([ [ [ [0, 0], [1, 1], [0, 1], [0, 0], ], ], [ [ [3, 3], [2, 2], [1, 2], [3, 3], ], ], ]); const geomCollection = geometryCollection( [pt.geometry, line.geometry, multiLine.geometry], { a: 0 } ); const fcNull = featureCollection([feature(null), feature(null)]); const fcMixed = featureCollection([ point([0, 0]), lineString([ [1, 1], [2, 2], ]), multiLineString([ [ [1, 1], [0, 0], ], [ [4, 4], [5, 5], ], ]), ]); function collection(feature) { const featureCollection = { type: "FeatureCollection", features: [feature], }; return [feature, featureCollection]; } function featureAndCollection(geometry) { const feature = { type: "Feature", geometry: geometry, properties: { a: 1 }, }; const featureCollection = { type: "FeatureCollection", features: [feature], }; return [geometry, feature, featureCollection]; } test("propEach", (t) => { collection(pt).forEach((input) => { meta.propEach(input, (prop, i) => { t.deepEqual(prop, { a: 1 }); t.equal(i, 0); }); }); t.end(); }); test("coordEach -- Point", (t) => { featureAndCollection(pt.geometry).forEach((input) => { meta.coordEach(input, (coord, index) => { t.deepEqual(coord, [0, 0]); t.equal(index, 0); }); }); t.end(); }); test("coordEach -- LineString", (t) => { featureAndCollection(line.geometry).forEach((input) => { const output = []; let lastIndex; meta.coordEach(input, (coord, index) => { output.push(coord); lastIndex = index; }); t.deepEqual(output, [ [0, 0], [1, 1], ]); t.equal(lastIndex, 1); }); t.end(); }); test("coordEach -- Polygon", (t) => { featureAndCollection(poly.geometry).forEach((input) => { const output = []; let lastIndex; meta.coordEach(input, (coord, index) => { output.push(coord); lastIndex = index; }); t.deepEqual(output, [ [0, 0], [1, 1], [0, 1], [0, 0], ]); t.equal(lastIndex, 3); }); t.end(); }); test("coordEach -- Polygon excludeWrapCoord", (t) => { featureAndCollection(poly.geometry).forEach((input) => { const output = []; let lastIndex; meta.coordEach( input, (coord, index) => { output.push(coord); lastIndex = index; }, true ); t.equal(lastIndex, 2); }); t.end(); }); test("coordEach -- MultiPolygon", (t) => { const coords = []; const coordIndexes = []; const featureIndexes = []; const multiFeatureIndexes = []; meta.coordEach( multiPoly, (coord, coordIndex, featureIndex, multiFeatureIndex) => { coords.push(coord); coordIndexes.push(coordIndex); featureIndexes.push(featureIndex); multiFeatureIndexes.push(multiFeatureIndex); } ); t.deepEqual(coordIndexes, [0, 1, 2, 3, 4, 5, 6, 7]); t.deepEqual(featureIndexes, [0, 0, 0, 0, 0, 0, 0, 0]); t.deepEqual(multiFeatureIndexes, [0, 0, 0, 0, 1, 1, 1, 1]); t.equal(coords.length, 8); t.end(); }); test("coordEach -- FeatureCollection", (t) => { const coords = []; const coordIndexes = []; const featureIndexes = []; const multiFeatureIndexes = []; meta.coordEach( fcMixed, (coord, coordIndex, featureIndex, multiFeatureIndex) => { coords.push(coord); coordIndexes.push(coordIndex); featureIndexes.push(featureIndex); multiFeatureIndexes.push(multiFeatureIndex); } ); t.deepEqual(coordIndexes, [0, 1, 2, 3, 4, 5, 6]); t.deepEqual(featureIndexes, [0, 1, 1, 2, 2, 2, 2]); t.deepEqual(multiFeatureIndexes, [0, 0, 0, 0, 0, 1, 1]); t.equal(coords.length, 7); t.end(); }); test("coordReduce -- initialValue", (t) => { let lastIndex; const line = lineString([ [126, -11], [129, -21], [135, -31], ]); const sum = meta.coordReduce( line, (previous, currentCoords, index) => { lastIndex = index; return previous + currentCoords[0]; }, 0 ); t.equal(lastIndex, 2); t.equal(sum, 390); t.end(); }); test("Array.reduce() -- initialValue", (t) => { let lastIndex; const line = [ [126, -11], [129, -21], [135, -31], ]; const sum = line.reduce((previous, currentCoords, index) => { lastIndex = index; return previous + currentCoords[0]; }, 0); t.equal(lastIndex, 2); t.equal(sum, 390); t.end(); }); test("coordReduce -- previous-coordinates", (t) => { let lastIndex; const coords = []; const line = lineString([ [126, -11], [129, -21], [135, -31], ]); meta.coordReduce(line, (previousCoords, currentCoords, index) => { lastIndex = index; coords.push(currentCoords); return currentCoords; }); t.equal(lastIndex, 2); t.equal(coords.length, 2); t.end(); }); test("Array.reduce() -- previous-coordinates", (t) => { let lastIndex; const coords = []; const line = [ [126, -11], [129, -21], [135, -31], ]; line.reduce((previousCoords, currentCoords, index) => { lastIndex = index; coords.push(currentCoords); return currentCoords; }); t.equal(lastIndex, 2); t.equal(coords.length, 2); t.end(); }); test("coordReduce -- previous-coordinates+initialValue", (t) => { let lastIndex; const coords = []; meta.coordReduce( line, (previousCoords, currentCoords, index) => { lastIndex = index; coords.push(currentCoords); return currentCoords; }, line.geometry.coordinates[0] ); t.equal(lastIndex, 1); t.equal(coords.length, 2); t.end(); }); test("Array.reduce() -- previous-coordinates+initialValue", (t) => { let lastIndex; const coords = []; line.geometry.coordinates.reduce((previousCoords, currentCoords, index) => { lastIndex = index; coords.push(currentCoords); return currentCoords; }, line[0]); t.equal(lastIndex, 1); t.equal(coords.length, 2); t.end(); }); test("unknown", (t) => { t.throws(function () { meta.coordEach({}); }); t.end(); }); test("geomEach -- GeometryCollection", (t) => { featureAndCollection(geomCollection.geometry).forEach((input) => { const output = []; meta.geomEach(input, (geom) => { output.push(geom); }); t.deepEqual(output, geomCollection.geometry.geometries); }); t.end(); }); test("geomEach -- bare-GeometryCollection", (t) => { const output = []; meta.geomEach(geomCollection, (geom) => { output.push(geom); }); t.deepEqual(output, geomCollection.geometry.geometries); t.end(); }); test("geomEach -- bare-pointGeometry", (t) => { const output = []; meta.geomEach(pt.geometry, (geom) => { output.push(geom); }); t.deepEqual(output, [pt.geometry]); t.end(); }); test("geomEach -- bare-pointFeature", (t) => { const output = []; meta.geomEach(pt, (geom) => { output.push(geom); }); t.deepEqual(output, [pt.geometry]); t.end(); }); test("geomEach -- multiGeometryFeature-properties", (t) => { let lastProperties; meta.geomEach(geomCollection, (geom, index, properties) => { lastProperties = properties; }); t.deepEqual(lastProperties, geomCollection.properties); t.end(); }); test("flattenEach -- MultiPoint", (t) => { featureAndCollection(multiPt.geometry).forEach((input) => { const output = []; meta.flattenEach(input, (feature) => { output.push(feature.geometry); }); t.deepEqual(output, [pt.geometry, pt2.geometry]); }); t.end(); }); test("flattenEach -- Mixed FeatureCollection", (t) => { const features = []; const featureIndexes = []; const multiFeatureIndexes = []; meta.flattenEach(fcMixed, (feature, featureIndex, multiFeatureIndex) => { features.push(feature); featureIndexes.push(featureIndex); multiFeatureIndexes.push(multiFeatureIndex); }); t.deepEqual(featureIndexes, [0, 1, 2, 2]); t.deepEqual(multiFeatureIndexes, [0, 0, 0, 1]); t.equal(features.length, 4); t.end(); }); test("flattenEach -- Point-properties", (t) => { collection(pt).forEach((input) => { let lastProperties; meta.flattenEach(input, (feature) => { lastProperties = feature.properties; }); t.deepEqual(lastProperties, pt.properties); }); t.end(); }); test("flattenEach -- multiGeometryFeature-properties", (t) => { collection(geomCollection).forEach((input) => { let lastProperties; meta.flattenEach(input, (feature) => { lastProperties = feature.properties; }); t.deepEqual(lastProperties, geomCollection.properties); }); t.end(); }); test("flattenReduce -- initialValue", (t) => { let lastIndex; let lastSubIndex; const sum = meta.flattenReduce( multiPt.geometry, (previous, current, index, subIndex) => { lastIndex = index; lastSubIndex = subIndex; return previous + current.geometry.coordinates[0]; }, 0 ); t.equal(lastIndex, 0); t.equal(lastSubIndex, 1); t.equal(sum, 1); t.end(); }); test("flattenReduce -- previous-feature", (t) => { const features = []; const featureIndexes = []; const multiFeatureIndexes = []; meta.flattenReduce( multiLine, (previous, current, featureIndex, multiFeatureIndex) => { featureIndexes.push(featureIndex); multiFeatureIndexes.push(multiFeatureIndex); features.push(current); return current; } ); t.deepEqual(featureIndexes, [0]); t.deepEqual(multiFeatureIndexes, [1]); t.equal(features.length, 1); t.end(); }); test("flattenReduce -- previous-feature+initialValue", (t) => { const features = []; const featureIndexes = []; const multiFeatureIndexes = []; const sum = meta.flattenReduce( multiPt.geometry, (previous, current, featureIndex, multiFeatureIndex) => { featureIndexes.push(featureIndex); multiFeatureIndexes.push(multiFeatureIndex); features.push(current); return current; }, null ); t.deepEqual(featureIndexes, [0, 0]); t.deepEqual(multiFeatureIndexes, [0, 1]); t.equal(features.length, 2); t.deepEqual(sum, features[features.length - 1]); t.end(); }); // https://github.com/Turfjs/turf/issues/853 test("null geometries", (t) => { // Each operations meta.featureEach(fcNull, (feature) => t.equal(feature.geometry, null, "featureEach") ); meta.geomEach(fcNull, (geometry) => t.equal(geometry, null), "geomEach"); meta.flattenEach(fcNull, (feature) => t.equal(feature.geometry, null, "flattenEach") ); meta.coordEach(fcNull, () => t.fail("no coordinates should be found")); // Reduce operations t.equal( meta.featureReduce(fcNull, (prev) => (prev += 1), 0), 2, "featureReduce" ); t.equal( meta.geomReduce(fcNull, (prev) => (prev += 1), 0), 2, "geomReduce" ); t.equal( meta.flattenReduce(fcNull, (prev) => (prev += 1), 0), 2, "flattenReduce" ); t.equal( meta.coordReduce(fcNull, (prev) => (prev += 1), 0), 0, "coordReduce" ); t.end(); }); test("null geometries -- index", (t) => { const fc = featureCollection([ feature(null), // index 0 point([0, 0]), // index 1 feature(null), // index 2 lineString([ [1, 1], [0, 0], ]), // index 3 ]); t.deepEqual( meta.coordReduce( fc, (prev, coords, coordIndex) => prev.concat(coordIndex), [] ), [0, 1, 2], "coordReduce" ); t.deepEqual( meta.geomReduce( fc, (prev, geom, featureIndex) => prev.concat(featureIndex), [] ), [0, 1, 2, 3], "geomReduce" ); t.deepEqual( meta.flattenReduce( fc, (prev, feature, featureIndex) => prev.concat(featureIndex), [] ), [0, 1, 2, 3], "flattenReduce" ); t.end(); }); test("segmentEach", (t) => { const segments = []; let total = 0; meta.segmentEach(poly.geometry, (currentSegment) => { segments.push(currentSegment); total++; }); t.equal(segments[0].geometry.coordinates.length, 2); t.equal(total, 3); t.end(); }); test("segmentEach -- MultiPoint", (t) => { const segments = []; let total = 0; meta.segmentEach(multiPt.geometry, (currentSegment) => { segments.push(currentSegment); total++; }); t.equal(total, 0); // No segments are created from MultiPoint geometry t.end(); }); test("segmentReduce", (t) => { const segments = []; const total = meta.segmentReduce( poly.geometry, (previousValue, currentSegment) => { segments.push(currentSegment); previousValue++; return previousValue; }, 0 ); t.equal(segments[0].geometry.coordinates.length, 2); t.equal(total, 3); t.end(); }); test("segmentReduce -- no initialValue", (t) => { const segments = []; var total = 0; meta.segmentReduce(poly.geometry, (previousValue, currentSegment) => { segments.push(currentSegment); total++; }); t.equal(segments[0].geometry.coordinates.length, 2); t.equal(total, 2); t.end(); }); const geojsonSegments = featureCollection([ point([0, 1]), // ignored lineString([ [0, 0], [2, 2], [4, 4], ]), polygon([ [ [5, 5], [0, 0], [2, 2], [4, 4], [5, 5], ], ]), point([0, 1]), // ignored multiLineString([ [ [0, 0], [2, 2], [4, 4], ], [ [0, 0], [2, 2], [4, 4], ], ]), ]); test("segmentEach -- index & subIndex", (t) => { const featureIndexes = []; const multiFeatureIndexes = []; const geometryIndexes = []; const segmentIndexes = []; let total = 0; meta.segmentEach( geojsonSegments, (segment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex) => { featureIndexes.push(featureIndex); multiFeatureIndexes.push(multiFeatureIndex); geometryIndexes.push(geometryIndex); segmentIndexes.push(segmentIndex); total++; } ); t.equal(total, 10, "total"); t.deepEqual( featureIndexes, [1, 1, 2, 2, 2, 2, 4, 4, 4, 4], "segmentEach.featureIndex" ); t.deepEqual( multiFeatureIndexes, [0, 0, 0, 0, 0, 0, 0, 0, 1, 1], "segmentEach.multiFeatureIndex" ); t.deepEqual( geometryIndexes, [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "segmentEach.geometryIndex" ); t.deepEqual( segmentIndexes, [0, 1, 0, 1, 2, 3, 0, 1, 0, 1], "segmentEach.segmentIndex" ); t.end(); }); test("segmentReduce -- index & subIndex", (t) => { const featureIndexes = []; const multiFeatureIndexes = []; const geometryIndexes = []; const segmentIndexes = []; let total = 0; meta.segmentReduce( geojsonSegments, ( previousValue, segment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex ) => { featureIndexes.push(featureIndex); multiFeatureIndexes.push(multiFeatureIndex); geometryIndexes.push(geometryIndex); segmentIndexes.push(segmentIndex); total++; } ); t.equal(total, 9, "total"); t.deepEqual( featureIndexes, [1, 2, 2, 2, 2, 4, 4, 4, 4], "segmentReduce.featureIndex" ); t.deepEqual( multiFeatureIndexes, [0, 0, 0, 0, 0, 0, 0, 1, 1], "segmentReduce.multiFeatureIndex" ); t.deepEqual( geometryIndexes, [0, 0, 0, 0, 0, 0, 0, 0, 0], "segmentReduce.geometryIndex" ); t.deepEqual( segmentIndexes, [1, 0, 1, 2, 3, 0, 1, 0, 1], "segmentReduce.segmentIndex" ); t.end(); }); test("lineEach -- lineString", (t) => { const line = lineString([ [0, 0], [2, 2], [4, 4], ]); const featureIndexes = []; const multiFeatureIndexes = []; const lineIndexes = []; let total = 0; meta.lineEach( line, (currentLine, featureIndex, multiFeatureIndex, lineIndex) => { featureIndexes.push(featureIndex); multiFeatureIndexes.push(multiFeatureIndex); lineIndexes.push(lineIndex); total++; } ); t.equal(total, 1, "total"); t.deepEqual(featureIndexes, [0], "featureIndex"); t.deepEqual(multiFeatureIndexes, [0], "multiFeatureIndex"); t.deepEqual(lineIndexes, [0], "lineIndex"); t.end(); }); test("lineEach -- multiLineString", (t) => { const multiLine = multiLineString([ [ [0, 0], [2, 2], [4, 4], ], [ [1, 1], [3, 3], [5, 5], ], ]); const featureIndexes = []; const multiFeatureIndexes = []; const lineIndexes = []; let total = 0; meta.lineEach( multiLine, (currentLine, featureIndex, multiFeatureIndex, lineIndex) => { featureIndexes.push(featureIndex); multiFeatureIndexes.push(multiFeatureIndex); lineIndexes.push(lineIndex); total++; } ); t.equal(total, 2, "total"); t.deepEqual(featureIndexes, [0, 0], "featureIndex"); t.deepEqual(multiFeatureIndexes, [0, 1], "multiFeatureIndex"); t.deepEqual(lineIndexes, [0, 0], "lineIndex"); t.end(); }); test("lineEach -- multiPolygon", (t) => { const multiPoly = multiPolygon([ [ [ [12, 48], [2, 41], [24, 38], [12, 48], ], // outer [ [9, 44], [13, 41], [13, 45], [9, 44], ], // inner ], [ [ [5, 5], [0, 0], [2, 2], [4, 4], [5, 5], ], // outer ], ]); const featureIndexes = []; const multiFeatureIndexes = []; const lineIndexes = []; let total = 0; meta.lineEach( multiPoly, (currentLine, featureIndex, multiFeatureIndex, lineIndex) => { featureIndexes.push(featureIndex); multiFeatureIndexes.push(multiFeatureIndex); lineIndexes.push(lineIndex); total++; } ); t.equal(total, 3, "total"); t.deepEqual(featureIndexes, [0, 0, 0], "featureIndex"); t.deepEqual(multiFeatureIndexes, [0, 0, 1], "multiFeatureIndex"); t.deepEqual(lineIndexes, [0, 1, 0], "lineIndex"); t.end(); }); test("lineEach -- featureCollection", (t) => { const line = lineString([ [0, 0], [2, 2], [4, 4], ]); const multiLine = multiLineString([ [ [0, 0], [2, 2], [4, 4], ], [ [1, 1], [3, 3], [5, 5], ], ]); const multiPoly = multiPolygon([ [ [ [12, 48], [2, 41], [24, 38], [12, 48], ], // outer [ [9, 44], [13, 41], [13, 45], [9, 44], ], // inner ], [ [ [5, 5], [0, 0], [2, 2], [4, 4], [5, 5], ], // outer ], ]); const featureIndexes = []; const multiFeatureIndexes = []; const lineIndexes = []; let total = 0; meta.lineEach( featureCollection([line, multiLine, multiPoly]), (currentLine, featureIndex, multiFeatureIndex, lineIndex) => { featureIndexes.push(featureIndex); multiFeatureIndexes.push(multiFeatureIndex); lineIndexes.push(lineIndex); total++; } ); t.equal(total, 6, "total"); t.deepEqual(featureIndexes, [0, 1, 1, 2, 2, 2], "featureIndex"); t.deepEqual(multiFeatureIndexes, [0, 0, 1, 0, 0, 1], "multiFeatureIndex"); t.deepEqual(lineIndexes, [0, 0, 0, 0, 1, 0], "lineIndex"); t.end(); }); test("lineReduce -- multiLineString", (t) => { const multiLine = multiLineString([ [ [0, 0], [2, 2], [4, 4], ], [ [1, 1], [3, 3], [5, 5], ], ]); const total = meta.lineReduce( multiLine, (previousValue) => { previousValue++; return previousValue; }, 0 ); t.equal(total, 2, "total"); t.end(); }); test("lineReduce -- multiPolygon", (t) => { const multiPoly = multiPolygon([ [ [ [12, 48], [2, 41], [24, 38], [12, 48], ], // outer [ [9, 44], [13, 41], [13, 45], [9, 44], ], ], // inner [ [ [5, 5], [0, 0], [2, 2], [4, 4], [5, 5], ], // outer ], ]); const total = meta.lineReduce( multiPoly, (previousValue) => { previousValue++; return previousValue; }, 0 ); t.equal(total, 3, "total"); t.end(); }); test("lineEach & lineReduce -- assert", (t) => { const pt = point([0, 0]); const multiPt = multiPoint([ [0, 0], [10, 10], ]); const noop = () => { /* no-op */ }; meta.lineEach(pt, noop); // Point geometry is supported meta.lineEach(multiPt, noop); // MultiPoint geometry is supported meta.lineReduce(pt, noop); // Point geometry is supported meta.lineReduce(multiPt, noop); // MultiPoint geometry is supported meta.lineReduce(geomCollection, noop); // GeometryCollection is is supported meta.lineReduce( featureCollection([ lineString([ [10, 10], [0, 0], ]), ]), noop ); // FeatureCollection is is supported meta.lineReduce(feature(null), noop); // Feature with null geometry is supported t.end(); }); test("geomEach -- callback BBox & Id", (t) => { const properties = { foo: "bar" }; const bbox = [0, 0, 0, 0]; const id = "foo"; const pt = point([0, 0], properties, { bbox, id }); meta.geomEach( pt, ( currentGeometry, featureIndex, currentProperties, currentBBox, currentId ) => { t.equal(featureIndex, 0, "featureIndex"); t.deepEqual(currentProperties, properties, "currentProperties"); t.deepEqual(currentBBox, bbox, "currentBBox"); t.deepEqual(currentId, id, "currentId"); } ); t.end(); }); test("lineEach -- callback BBox & Id", (t) => { const properties = { foo: "bar" }; const bbox = [0, 0, 10, 10]; const id = "foo"; const line = lineString( [ [0, 0], [10, 10], ], properties, { bbox, id } ); meta.lineEach(line, (currentLine, featureIndex) => { t.equal(featureIndex, 0, "featureIndex"); t.deepEqual(currentLine.properties, properties, "currentProperties"); t.deepEqual(currentLine.bbox, bbox, "currentBBox"); t.deepEqual(currentLine.id, id, "currentId"); }); t.end(); }); test("lineEach -- return lineString", (t) => { const properties = { foo: "bar" }; const bbox = [0, 0, 10, 10]; const id = "foo"; const line = lineString( [ [0, 0], [10, 10], ], properties, { bbox, id } ); meta.lineEach(line, (currentLine) => { t.deepEqual(line, currentLine, "return itself"); }); t.end(); }); test("meta.coordEach -- indexes -- PolygonWithHole", (t) => { const coordIndexes = []; const featureIndexes = []; const multiFeatureIndexes = []; const geometryIndexes = []; meta.coordEach( polyWithHole, (coords, coordIndex, featureIndex, multiFeatureIndex, geometryIndex) => { coordIndexes.push(coordIndex); featureIndexes.push(featureIndex); multiFeatureIndexes.push(multiFeatureIndex); geometryIndexes.push(geometryIndex); } ); t.deepEqual(coordIndexes, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]); t.deepEqual(featureIndexes, [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]); t.deepEqual(multiFeatureIndexes, [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]); t.deepEqual(geometryIndexes, [0, 0, 0, 0, 0, 1, 1, 1, 1, 1]); t.end(); }); test("meta.lineEach -- indexes -- PolygonWithHole", (t) => { const featureIndexes = []; const multiFeatureIndexes = []; const geometryIndexes = []; meta.lineEach( polyWithHole, (line, featureIndex, multiFeatureIndex, geometryIndex) => { featureIndexes.push(featureIndex); multiFeatureIndexes.push(multiFeatureIndex); geometryIndexes.push(geometryIndex); } ); t.deepEqual(featureIndexes, [0, 0]); t.deepEqual(multiFeatureIndexes, [0, 0]); t.deepEqual(geometryIndexes, [0, 1]); t.end(); }); test("meta.segmentEach -- indexes -- PolygonWithHole", (t) => { const featureIndexes = []; const multiFeatureIndexes = []; const geometryIndexes = []; const segmentIndexes = []; meta.segmentEach( polyWithHole, (segment, featureIndex, multiFeatureIndex, geometryIndex, segmentIndex) => { featureIndexes.push(featureIndex); multiFeatureIndexes.push(multiFeatureIndex); geometryIndexes.push(geometryIndex); segmentIndexes.push(segmentIndex); } ); t.deepEqual(featureIndexes, [0, 0, 0, 0, 0, 0, 0, 0]); t.deepEqual(multiFeatureIndexes, [0, 0, 0, 0, 0, 0, 0, 0]); t.deepEqual(geometryIndexes, [0, 0, 0, 0, 1, 1, 1, 1]); t.deepEqual(segmentIndexes, [0, 1, 2, 3, 0, 1, 2, 3]); t.end(); }); test("meta.coordEach -- indexes -- Multi-Polygon with hole", (t) => { const featureIndexes = []; const multiFeatureIndexes = []; const geometryIndexes = []; const coordIndexes = []; // MultiPolygon with hole // ====================== // FeatureIndex => 0 const multiPolyWithHole = multiPolygon([ // Polygon 1 // --------- // MultiFeature Index => 0 [ // Outer Ring // ---------- // Geometry Index => 0 // Coord Index => [0, 1, 2, 3, 4] (Major Release Change v6.x) [ [102.0, 2.0], [103.0, 2.0], [103.0, 3.0], [102.0, 3.0], [102.0, 2.0], ], ], // Polygon 2 with Hole // ------------------- // MultiFeature Index => 1 [ // Outer Ring // ---------- // Geometry Index => 0 // Coord Index => [0, 1, 2, 3, 4] (Major Release Change v6.x) [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0], ], // Inner Ring // ---------- // Geometry Index => 1 // Coord Index => [0, 1, 2, 3, 4] (Major Release Change v6.x) [ [100.2, 0.2], [100.8, 0.2], [100.8, 0.8], [100.2, 0.8], [100.2, 0.2], ], ], ]); meta.coordEach( multiPolyWithHole, (coord, coordIndex, featureIndex, multiFeatureIndex, geometryIndex) => { featureIndexes.push(featureIndex); multiFeatureIndexes.push(multiFeatureIndex); geometryIndexes.push(geometryIndex); coordIndexes.push(coordIndex); } ); t.deepEqual(featureIndexes, [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]); t.deepEqual( multiFeatureIndexes, [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1] ); t.deepEqual(geometryIndexes, [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1]); t.deepEqual(coordIndexes, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]); // Major Release Change v6.x // t.deepEqual(coordIndexes, [0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4]); t.end(); }); test("meta.coordEach -- indexes -- Polygon with hole", (t) => { const featureIndexes = []; const multiFeatureIndexes = []; const geometryIndexes = []; const coordIndexes = []; // Polygon with Hole // ================= // Feature Index => 0 const polyWithHole = polygon([ // Outer Ring // ---------- // Geometry Index => 0 // Coord Index => [0, 1, 2, 3, 4] (Major Release Change v6.x) [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0], ], // Inner Ring // ---------- // Geometry Index => 1 // Coord Index => [0, 1, 2, 3, 4] (Major Release Change v6.x) [ [100.2, 0.2], [100.8, 0.2], [100.8, 0.8], [100.2, 0.8], [100.2, 0.2], ], ]); meta.coordEach( polyWithHole, (coord, coordIndex, featureIndex, multiFeatureIndex, geometryIndex) => { featureIndexes.push(featureIndex); multiFeatureIndexes.push(multiFeatureIndex); geometryIndexes.push(geometryIndex); coordIndexes.push(coordIndex); } ); t.deepEqual(featureIndexes, [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]); t.deepEqual(multiFeatureIndexes, [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]); t.deepEqual(geometryIndexes, [0, 0, 0, 0, 0, 1, 1, 1, 1, 1]); t.deepEqual(coordIndexes, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]); // Major Release Change v6.x // t.deepEqual(coordIndexes, [0, 1, 2, 3, 4, 0, 1, 2, 3, 4]); t.end(); }); test("meta.coordEach -- indexes -- FeatureCollection of LineString", (t) => { const featureIndexes = []; const multiFeatureIndexes = []; const geometryIndexes = []; const coordIndexes = []; // FeatureCollection of LineStrings const line = lineStrings([ // LineString 1 // Feature Index => 0 // Geometry Index => 0 // Coord Index => [0, 1, 2, 3, 4] (Major Release Change v6.x) [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0], ], // LineString 2 // Feature Index => 1 // Geometry Index => 0 // Coord Index => [0, 1, 2, 3, 4] (Major Release Change v6.x) [ [100.2, 0.2], [100.8, 0.2], [100.8, 0.8], [100.2, 0.8], [100.2, 0.2], ], ]); meta.coordEach( line, (coord, coordIndex, featureIndex, multiFeatureIndex, geometryIndex) => { featureIndexes.push(featureIndex); multiFeatureIndexes.push(multiFeatureIndex); geometryIndexes.push(geometryIndex); coordIndexes.push(coordIndex); } ); t.deepEqual(featureIndexes, [0, 0, 0, 0, 0, 1, 1, 1, 1, 1]); t.deepEqual(multiFeatureIndexes, [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]); t.deepEqual(geometryIndexes, [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]); t.deepEqual(coordIndexes, [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]); // Major Release Change v6.x // t.deepEqual(coordIndexes, [0, 1, 2, 3, 4, 0, 1, 2, 3, 4]); t.end(); }); test("meta -- breaking of iterations", (t) => { const lines = lineStrings([ [ [10, 10], [50, 30], [30, 40], ], [ [-10, -10], [-50, -30], [-30, -40], ], ]); const multiLine = multiLineString([ [ [10, 10], [50, 30], [30, 40], ], [ [-10, -10], [-50, -30], [-30, -40], ], ]); // Each Iterators // meta.segmentEach has been purposely excluded from this list for (const func of [ meta.coordEach, meta.featureEach, meta.flattenEach, meta.geomEach, meta.lineEach, meta.propEach, meta.segmentEach, ]) { // Meta Each function should only a value of 1 after returning `false` // FeatureCollection let count = 0; func(lines, () => { count += 1; return false; }); t.equal(count, 1, func.name); // Multi Geometry let multiCount = 0; func(multiLine, () => { multiCount += 1; return false; }); t.equal(multiCount, 1, func.name); } t.end(); }); test("meta -- findSegment", (t) => { const nullFeature = feature(null); const pt = point([10, 10]); const line = lineString([ [10, 10], [50, 30], [30, 40], ]); const poly = polygon([ [ [10, 10], [50, 30], [30, 40], [10, 10], ], [ [-10, -10], [-50, -30], [-30, -40], [-10, -10], ], ]); const multiLine = multiLineString([ [ [10, 10], [50, 30], [30, 40], ], [ [-10, -10], [-50, -30], [-30, -40], ], ]); const lines = lineStrings([ [ [10, 10], [50, 30], [30, 40], [10, 10], ], [ [-10, -10], [-50, -30], [-30, -40], [-10, -10], ], ]); // firstSegment t.deepEqual( meta.findSegment(nullFeature), null, "findSegment (default) -- nullFeature" ); t.deepEqual(meta.findSegment(pt), null, "findSegment (default) -- pt"); t.deepEqual( meta.findSegment(line), lineString([ [10, 10], [50, 30], ]), "findSegment (default) -- line" ); t.deepEqual( meta.findSegment(poly), lineString([ [10, 10], [50, 30], ]), "findSegment (default) -- poly" ); t.deepEqual( meta.findSegment(multiLine), lineString([ [10, 10], [50, 30], ]), "findSegment (default) -- multiLine" ); t.deepEqual( meta.findSegment(lines), lineString([ [10, 10], [50, 30], ]), "findSegment (default) -- lines" ); // lastSegment t.deepEqual( meta.findSegment(nullFeature), null, "findSegment (last) -- nullFeature" ); t.deepEqual(meta.findSegment(pt), null, "findSegment (last) -- pt"); t.deepEqual( meta.findSegment(line, { segmentIndex: -1 }), lineString([ [50, 30], [30, 40], ]), "findSegment (last) -- line" ); t.deepEqual( meta.findSegment(poly, { segmentIndex: -1, geometryIndex: -1 }), lineString([ [-30, -40], [-10, -10], ]), "findSegment (last) -- poly" ); t.deepEqual( meta.findSegment(multiLine, { segmentIndex: -1, multiFeatureIndex: -1 }), lineString([ [-50, -30], [-30, -40], ]), "findSegment (last) -- multiLine" ); t.deepEqual( meta.findSegment(lines, { segmentIndex: -1, featureIndex: -1 }), lineString([ [-30, -40], [-10, -10], ]), "findSegment (last) -- lines" ); t.end(); }); test("meta -- findPoint", (t) => { const nullFeature = feature(null); const pt = point([10, 10]); const line = lineString([ [10, 10], [50, 30], [30, 40], ]); const poly = polygon([ [ [10, 10], [50, 30], [30, 40], [10, 10], ], [ [-10, -10], [-50, -30], [-30, -40], [-10, -10], ], ]); const multiLine = multiLineString([ [ [10, 10], [50, 30], [30, 40], ], [ [-10, -10], [-50, -30], [-30, -40], ], ]); const lines = lineStrings([ [ [10, 10], [50, 30], [30, 40], [10, 10], ], [ [-10, -10], [-50, -30], [-30, -40], [-10, -10], ], ]); // firstPoint t.deepEqual( meta.findPoint(nullFeature), null, "findPoint (default) -- nullFeature" ); t.deepEqual(meta.findPoint(pt), point([10, 10]), "findPoint (default) -- pt"); t.deepEqual( meta.findPoint(line), point([10, 10]), "findPoint (default) -- line" ); t.deepEqual( meta.findPoint(poly), point([10, 10]), "findPoint (default) -- poly" ); t.deepEqual( meta.findPoint(multiLine), point([10, 10]), "findPoint (default) -- multiLine" ); t.deepEqual( meta.findPoint(lines), point([10, 10]), "findPoint (default) -- lines" ); // lastPoint t.deepEqual( meta.findPoint(nullFeature), null, "findPoint (last) -- nullFeature" ); t.deepEqual(meta.findPoint(pt), point([10, 10]), "findPoint (last) -- pt"); t.deepEqual( meta.findPoint(line, { coordIndex: -1 }), point([30, 40]), "findPoint (last) -- line" ); t.deepEqual( meta.findPoint(poly, { coordIndex: -1, geometryIndex: -1 }), point([-10, -10]), "findPoint (last) -- poly" ); t.deepEqual( meta.findPoint(multiLine, { coordIndex: -1, multiFeatureIndex: -1 }), point([-30, -40]), "findPoint (last) -- multiLine" ); t.deepEqual( meta.findPoint(lines, { coordIndex: -1, featureIndex: -1 }), point([-10, -10]), "findPoint (last) -- lines" ); t.end(); }); test("meta -- segmentEach -- Issue #1273", (t) => { // https://github.com/Turfjs/turf/issues/1273 const poly = polygon([ // Outer Ring // Segment = 0 // Geometries = 0,1,2 [ [10, 10], [50, 30], [30, 40], [10, 10], ], // Inner Ring // Segment => 1 // Geometries => 0,1,2 [ [-10, -10], [-50, -30], [-30, -40], [-10, -10], ], ]); const segmentIndexes = []; const geometryIndexes = []; meta.segmentEach( poly, (line, featureIndex, multiFeatureIndex, segmentIndex, geometryIndex) => { segmentIndexes.push(segmentIndex); geometryIndexes.push(geometryIndex); } ); t.deepEqual(segmentIndexes, [0, 0, 0, 1, 1, 1]); t.deepEqual(geometryIndexes, [0, 1, 2, 0, 1, 2]); t.end(); }); ================================================ FILE: packages/turf-meta/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-meta/types.ts ================================================ import { Point, LineString } from "geojson"; import * as helpers from "@turf/helpers"; import { featureCollection, point, lineString } from "@turf/helpers"; import * as meta from "./index.js"; import { coordReduce, coordEach, propEach, propReduce, featureReduce, featureEach, coordAll, geomReduce, geomEach, flattenReduce, flattenEach, segmentReduce, segmentEach, lineReduce, lineEach, } from "./index.js"; // Fixtures const pt = helpers.point([0, 0]); const line = helpers.lineString([ [0, 0], [1, 1], ]); const poly = helpers.polygon([ [ [0, 0], [1, 1], [0, 1], [0, 0], ], ]); const multiPoly = helpers.multiPolygon([ [ [ [0, 0], [1, 1], [0, 1], [0, 0], ], ], ]); const multiLine = helpers.multiLineString([ [ [0, 0], [1, 1], [0, 1], [0, 0], ], [ [2, 2], [3, 3], ], ]); const geomCollection = helpers.geometryCollection([pt.geometry, line.geometry]); const features = helpers.featureCollection([pt, line]); const customPoint = point([10, 20], { foo: "abc", bar: 123 }); const customPoints = featureCollection([customPoint]); const customLineString = lineString( [ [0, 0], [10, 20], ], { foo: "abc", bar: 123 } ); const customLineStrings = featureCollection([customLineString]); /** * meta.coordEach */ const coordEachValue: void = meta.coordEach(pt, (coords) => coords); coordEach(pt, (coords, index) => coords); meta.coordEach(pt, (coords, index) => coords); meta.coordEach(pt.geometry, (coords) => { const equal: number[] = coords; }); meta.coordEach(line, (coords) => { const equal: number[] = coords; }); meta.coordEach(poly, (coords) => { const equal: number[] = coords; }); meta.coordEach(multiPoly, (coords) => { const equal: number[] = coords; }); meta.coordEach(geomCollection, (coords) => coords); /** * meta.coordReduce */ const coordReduceValue: number = meta.coordReduce( pt, (previous, coords) => 1 + 1 ); coordReduce(pt, (previous, coords, index) => coords); meta.coordReduce(pt, (previous, coords, index) => coords); meta.coordReduce(pt, (previous, coords, index) => 1 + 1, 0); meta.coordReduce(pt, (previous, coords) => coords); meta.coordReduce(geomCollection, (previous, coords) => coords); /** * meta.propReduce */ const propReduceValue: number = meta.propReduce( poly, (previous, prop) => 1 + 1 ); propReduce(poly, (previous, prop) => 1 + 1, 0); meta.propReduce(poly, (previous, prop) => 1 + 1, 0); meta.propReduce(features, (previous, prop) => prop); meta.propReduce(poly, (previous, prop, index) => prop); meta.propReduce(poly, (previous, prop) => 1 + 1); meta.propReduce(geomCollection, (previous, prop) => prop); /** * meta.propEach */ const propEachValue: void = meta.propEach(poly, (prop) => prop); propEach(features, (prop) => prop); meta.propEach(features, (prop) => prop); meta.propEach(poly, (prop, index) => prop); meta.propEach<{ bar: string }>(poly, (prop) => prop.bar); meta.propEach(geomCollection, (prop) => prop); /** * meta.coordAll */ coordAll(poly); const coords: Array> = meta.coordAll(poly); /** * meta.featureReduce */ const featureReduceValue: number = meta.featureReduce( poly, (previous, feature) => 1 + 1 ); featureReduce(poly, (previous, feature) => 1 + 1, 0); meta.featureReduce(poly, (previous, feature) => 1 + 1, 0); meta.featureReduce(features, (previous, feature) => feature); meta.featureReduce(poly, (previous, feature, index) => feature); meta.featureReduce(geomCollection, (previous, feature, index) => feature); /** * meta.featureEach */ const featureEachValue: void = meta.featureEach(poly, (feature) => feature); featureEach(features, (feature) => feature); meta.featureEach(features, (feature) => feature); meta.featureEach(poly, (feature, index) => feature); meta.featureEach(geomCollection, (feature, index) => feature); // Access custom properties featureEach(customPoints, (pt) => { pt.properties.bar; // pt.properties.hello // [ts] Property 'hello' does not exist on type '{ foo: string; bar: number; }'. }); /** * meta.geomReduce */ const geomReduceValue: number = meta.geomReduce( poly, (previous, geom) => 1 + 1 ); geomReduce(poly, (previous, geom) => 1 + 1, 0); meta.geomReduce(poly, (previous, geom) => 1 + 1, 0); meta.geomReduce(features, (previous, geom) => geom); meta.geomReduce(poly, (previous, geom, index, props) => geom); meta.geomReduce(geomCollection, (previous, geom, index, props) => geom); /** * meta.geomEach */ const geomEachValue: void = meta.geomEach(poly, (geom) => geom); geomEach(features, (geom) => geom); meta.geomEach(features, (geom) => geom); meta.geomEach(poly, (geom, index, props) => geom); meta.geomEach(geomCollection, (geom, index, props) => geom); /** * meta.flattenReduce */ const flattenReduceValue: number = meta.flattenReduce( poly, (previous, feature) => 1 + 1 ); flattenReduce(poly, (previous, feature) => 1 + 1, 0); meta.flattenReduce(poly, (previous, feature) => 1 + 1, 0); meta.flattenReduce(features, (previous, feature) => feature); meta.flattenReduce(poly, (previous, feature, index, props) => feature); meta.flattenReduce( geomCollection, (previous, feature, index, props) => feature ); /** * meta.flattenEach */ const flattenEachValue: void = meta.flattenEach(poly, (feature) => feature); flattenEach(features, (feature) => feature); meta.flattenEach(features, (feature) => feature); meta.flattenEach(poly.geometry, (feature, index, props) => feature); meta.flattenEach(geomCollection, (feature, index, props) => feature); /** * meta.segmentReduce */ const lines = helpers.featureCollection([line]); const segmentReduceValue: number = meta.segmentReduce(poly, () => 1 + 1); segmentReduce(poly, (previousValue) => previousValue); meta.segmentReduce(poly, (previousValue) => previousValue); meta.segmentReduce(poly, (previousValue, currentSegment) => currentSegment); meta.segmentReduce(poly, (previousValue, currentSegment) => 1 + 1, 0); meta.segmentReduce(lines, (previousValue, currentSegment) => currentSegment); meta.segmentReduce( poly, (previousValue, currentSegment, currentIndex) => currentSegment ); meta.segmentReduce( geomCollection, (previousValue, currentSegment, currentIndex) => currentSegment ); meta.segmentReduce( geomCollection, (previousValue, currentSegment, currentIndex, currentSubIndex) => currentSegment ); /** * meta.segmentEach */ const segmentEachValue: void = meta.segmentEach(poly, () => { /* no-op */ }); segmentEach(poly, (currentSegment) => currentSegment); meta.segmentEach(poly, (currentSegment) => currentSegment); meta.segmentEach(features, (currentSegment) => currentSegment); meta.segmentEach( poly.geometry, (currentSegment, currentIndex) => currentSegment ); meta.segmentEach( geomCollection, (currentSegment, currentIndex) => currentSegment ); meta.segmentEach( geomCollection, (currentSegment, currentIndex, currentSubIndex) => currentSegment ); /** * meta.lineEach */ // meta.lineEach(pt, () => {}) // Argument of type 'Feature' is not assignable to parameter of type 'LineString | Polygon | MultiPolygon | MultiLineString | Feature'. const lineEachValue: void = meta.lineEach(line, () => { /* no-op */ }); lineEach(line, (currentLine) => currentLine); meta.lineEach(line, (currentLine) => currentLine); meta.lineEach( multiLine, (currentLine, featureIndex, featureSubIndex) => currentLine ); meta.lineEach(poly, (currentLine) => currentLine); meta.lineEach( poly, (currentLine, featureIndex, featureSubIndex, lineIndex) => currentLine ); meta.lineEach( multiPoly, (currentLine, featureIndex, featureSubIndex, lineIndex) => currentLine ); // Able to load custom LineStrings lineEach(customLineString, (line) => { /* no-op */ }); lineEach(customLineStrings, (line) => { line.properties.bar; // line.properties.hello // [ts] Property 'hello' does not exist on type '{ foo: string; bar: string; }'. }); /** * meta.lineReduce */ // meta.lineReduce(pt, () => {}) // Argument of type 'Feature' is not assignable to parameter of type 'LineString | Polygon | MultiPolygon | MultiLineString | Feature'. const lineReduceValue: number = meta.lineReduce(line, () => 1 + 1); lineReduce(line, (previousValue) => previousValue); meta.lineReduce(line, (previousValue) => previousValue); meta.lineReduce(line, (previousValue, currentLine) => currentLine); meta.lineReduce(line, (previousValue, currentLine) => 1 + 1, 0); meta.lineReduce(multiLine, (previousValue, currentLine) => currentLine); meta.lineReduce( multiLine, (previousValue, currentLine, featureIndex, featureSubIndex) => currentLine ); meta.lineReduce(poly, (previousValue, currentLine) => currentLine); meta.lineReduce( poly, (previousValue, currentLine, featureIndex, featureSubIndex) => currentLine ); meta.lineReduce( poly, (previousValue, currentLine, featureIndex, featureSubIndex) => 1 + 1, 1 ); meta.lineReduce( multiPoly, (previousValue, currentLine, featureIndex, featureSubIndex, lineIndex) => currentLine ); meta.lineReduce( multiPoly, (previousValue, currentLine, featureIndex, featureSubIndex, lineIndex) => 1 + 1, 1 ); /** * findSegment */ meta.findSegment(line); meta.findSegment(line.geometry); meta.findSegment(line, { segmentIndex: -1 }); /** * findPoint */ meta.findPoint(line); meta.findPoint(line.geometry); meta.findPoint(line, { coordIndex: -1 }); meta.findPoint(customLineString).properties.foo; meta.findPoint(customLineString).properties.bar; // meta.findPoint(customLineString).properties.hello // [ts] Property 'hello' does not exist on type '{ foo: string; bar: number; }'. ================================================ FILE: packages/turf-midpoint/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-midpoint/README.md ================================================ # @turf/midpoint ## midpoint Takes two points and returns a point midway between them. The midpoint is calculated geodesically, meaning the curvature of the earth is taken into account. ### Parameters * `point1` **[Coord][1]** first point * `point2` **[Coord][1]** second point ### Examples ```javascript const point1 = turf.point([144.834823, -37.771257]); const point2 = turf.point([145.14244, -37.830937]); const midpoint = turf.midpoint(point1, point2); //addToMap const addToMap = [point1, point2, midpoint]; midpoint.properties['marker-color'] = '#f00'; ``` Returns **[Feature][2]<[Point][3]>** a point midway between `pt1` and `pt2` [1]: https://tools.ietf.org/html/rfc7946#section-3.1.1 [2]: https://tools.ietf.org/html/rfc7946#section-3.2 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.2 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/midpoint ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-midpoint/bench.ts ================================================ import Benchmark, { Event } from "benchmark"; import { point } from "@turf/helpers"; import { midpoint } from "./index.js"; var pt1 = point([0, 0]); var pt2 = point([10, 0]); new Benchmark.Suite("turf-midpoint") .add("turf-midpoint", function () { midpoint(pt1, pt2); }) .on("cycle", function (event: Event) { console.log(String(event.target)); }) .run(); ================================================ FILE: packages/turf-midpoint/index.ts ================================================ import { Feature, Point } from "geojson"; import { bearing } from "@turf/bearing"; import { destination } from "@turf/destination"; import { distance } from "@turf/distance"; import { Coord } from "@turf/helpers"; /** * Takes two points and returns a point midway between them. The midpoint is * calculated geodesically, meaning the curvature of the earth is taken into * account. * * @function * @param {Coord} point1 first point * @param {Coord} point2 second point * @returns {Feature} a point midway between `pt1` and `pt2` * @example * const point1 = turf.point([144.834823, -37.771257]); * const point2 = turf.point([145.14244, -37.830937]); * * const midpoint = turf.midpoint(point1, point2); * * //addToMap * const addToMap = [point1, point2, midpoint]; * midpoint.properties['marker-color'] = '#f00'; */ function midpoint(point1: Coord, point2: Coord): Feature { const dist = distance(point1, point2); const heading = bearing(point1, point2); const midpoint = destination(point1, dist / 2, heading); return midpoint; } export { midpoint }; export default midpoint; ================================================ FILE: packages/turf-midpoint/package.json ================================================ { "name": "@turf/midpoint", "version": "7.3.4", "description": "Takes two points and calculates a point midway between them geodesically.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "midpoint", "bisect", "geojson", "line" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/bearing": "workspace:*", "@turf/destination": "workspace:*", "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-midpoint/test.ts ================================================ import test from "tape"; import { midpoint } from "./index.js"; import { distance } from "@turf/distance"; import { point } from "@turf/helpers"; test("midpoint -- horizontal equator", function (t) { var pt1 = point([0, 0]); var pt2 = point([10, 0]); var mid = midpoint(pt1, pt2); t.equal(distance(pt1, mid).toFixed(6), distance(pt2, mid).toFixed(6)); t.end(); }); test("midpoint -- vertical from equator", function (t) { var pt1 = point([0, 0]); var pt2 = point([0, 10]); var mid = midpoint(pt1, pt2); t.equal(distance(pt1, mid).toFixed(6), distance(pt2, mid).toFixed(6)); t.end(); }); test("midpoint -- vertical to equator", function (t) { var pt1 = point([0, 10]); var pt2 = point([0, 0]); var mid = midpoint(pt1, pt2); t.equal(distance(pt1, mid).toFixed(6), distance(pt2, mid).toFixed(6)); t.end(); }); test("midpoint -- diagonal back over equator", function (t) { var pt1 = point([-1, 10]); var pt2 = point([1, -1]); var mid = midpoint(pt1, pt2); t.equal(distance(pt1, mid).toFixed(6), distance(pt2, mid).toFixed(6)); t.end(); }); test("midpoint -- diagonal forward over equator", function (t) { var pt1 = point([-5, -1]); var pt2 = point([5, 10]); var mid = midpoint(pt1, pt2); t.equal(distance(pt1, mid).toFixed(6), distance(pt2, mid).toFixed(6)); t.end(); }); test("midpoint -- long distance", function (t) { var pt1 = point([22.5, 21.94304553343818]); var pt2 = point([92.10937499999999, 46.800059446787316]); var mid = midpoint(pt1, pt2); t.equal(distance(pt1, mid).toFixed(6), distance(pt2, mid).toFixed(6)); t.end(); }); ================================================ FILE: packages/turf-midpoint/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-moran-index/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-moran-index/README.md ================================================ # @turf/moran-index ## MoranIndex Type: [object][1] ### Properties * `moranIndex` **[number][2]** the moran's Index of the observed feature set * `expectedMoranIndex` **[number][2]** the moran's Index of the random distribution * `stdNorm` **[number][2]** the standard devitaion of the random distribution * `zNorm` **[number][2]** the z-score of the observe samples with regard to the random distribution ## moranIndex Moran's I measures patterns of attribute values associated with features. The method reveal whether similar values tend to occur near each other, or whether high or low values are interspersed. Moran's I > 0 means a clusterd pattern. Moran's I < 0 means a dispersed pattern. Moran's I = 0 means a random pattern. In order to test the significance of the result. The z score is calculated. A positive enough z-score (ex. >1.96) indicates clustering, while a negative enough z-score (ex. <-1.96) indicates a dispersed pattern. the z-score can be calculated based on a normal or random assumption. **Bibliography**\* 1. [Moran's I][3] 2. [pysal][4] 3. Andy Mitchell, The ESRI Guide to GIS Analysis Volume 2: Spatial Measurements & Statistics. ### Parameters * `fc` **[FeatureCollection][5]\** * `options` **[Object][1]** * `options.inputField` **[string][6]** the property name, must contain numeric values * `options.threshold` **[number][2]** the distance threshold (optional, default `100000`) * `options.p` **[number][2]** the Minkowski p-norm distance parameter (optional, default `2`) * `options.binary` **[boolean][7]** whether transfrom the distance to binary (optional, default `false`) * `options.alpha` **[number][2]** the distance decay parameter (optional, default `-1`) * `options.standardization` **[boolean][7]** wheter row standardization the distance (optional, default `true`) ### Examples ```javascript const bbox = [-65, 40, -63, 42]; const dataset = turf.randomPoint(100, { bbox: bbox }); const result = turf.moranIndex(dataset, { inputField: 'CRIME', }); ``` Returns **[MoranIndex][8]** [1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [3]: https://en.wikipedia.org/wiki/Moran%27s_I [4]: http://pysal.readthedocs.io/en/latest/index.html [5]: https://tools.ietf.org/html/rfc7946#section-3.3 [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String [7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean [8]: #moranindex --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/moran-index ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-moran-index/bench.ts ================================================ import Benchmark from "benchmark"; import { moranIndex } from "./index.js"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); /** * Benchmark Results * * point: 3.434ms * point x 4,672 ops/sec ±1.38% (94 runs sampled) */ const suite = new Benchmark.Suite("turf-moran-index"); const pointPath = path.join(__dirname, "test", "in", "point.json"); const pointJson = loadJsonFileSync(pointPath); const { name } = path.parse(pointPath); console.time(name); moranIndex(pointJson, { inputField: "CRIME", }); console.timeEnd(name); suite.add(name, () => moranIndex(pointJson, { inputField: "CRIME", }) ); suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-moran-index/index.ts ================================================ import { FeatureCollection } from "geojson"; import { distanceWeight as spatialWeight } from "@turf/distance-weight"; import { featureEach } from "@turf/meta"; /** * @typedef {object} MoranIndex * @property {number} moranIndex the moran's Index of the observed feature set * @property {number} expectedMoranIndex the moran's Index of the random distribution * @property {number} stdNorm the standard devitaion of the random distribution * @property {number} zNorm the z-score of the observe samples with regard to the random distribution */ type MoranIndex = { moranIndex: number; expectedMoranIndex: number; stdNorm: number; zNorm: number; }; /** * Moran's I measures patterns of attribute values associated with features. * The method reveal whether similar values tend to occur near each other, * or whether high or low values are interspersed. * * Moran's I > 0 means a clusterd pattern. * Moran's I < 0 means a dispersed pattern. * Moran's I = 0 means a random pattern. * * In order to test the significance of the result. The z score is calculated. * A positive enough z-score (ex. >1.96) indicates clustering, * while a negative enough z-score (ex. <-1.96) indicates a dispersed pattern. * * the z-score can be calculated based on a normal or random assumption. * * **Bibliography*** * * 1. [Moran's I](https://en.wikipedia.org/wiki/Moran%27s_I) * * 2. [pysal](http://pysal.readthedocs.io/en/latest/index.html) * * 3. Andy Mitchell, The ESRI Guide to GIS Analysis Volume 2: Spatial Measurements & Statistics. * * @function * @param {FeatureCollection} fc * @param {Object} options * @param {string} options.inputField the property name, must contain numeric values * @param {number} [options.threshold=100000] the distance threshold * @param {number} [options.p=2] the Minkowski p-norm distance parameter * @param {boolean} [options.binary=false] whether transfrom the distance to binary * @param {number} [options.alpha=-1] the distance decay parameter * @param {boolean} [options.standardization=true] wheter row standardization the distance * @returns {MoranIndex} * @example * * const bbox = [-65, 40, -63, 42]; * const dataset = turf.randomPoint(100, { bbox: bbox }); * * const result = turf.moranIndex(dataset, { * inputField: 'CRIME', * }); */ function moranIndex( fc: FeatureCollection, options: { inputField: string; threshold?: number; p?: number; binary?: boolean; alpha?: number; standardization?: boolean; } ): MoranIndex { const inputField = options.inputField; const threshold = options.threshold || 100000; const p = options.p || 2; const binary = options.binary ?? false; const alpha = options.alpha || -1; const standardization = options.standardization ?? true; const weight = spatialWeight(fc, { alpha, binary, p, standardization, threshold, }); const y: number[] = []; featureEach(fc, (feature) => { const feaProperties = feature.properties || {}; // validate inputField exists y.push(feaProperties[inputField]); }); const yMean = mean(y); const yVar = variance(y); let weightSum = 0; let s0 = 0; let s1 = 0; let s2 = 0; const n = weight.length; // validate y.length is the same as weight.length for (let i = 0; i < n; i++) { let subS2 = 0; for (let j = 0; j < n; j++) { weightSum += weight[i][j] * (y[i] - yMean) * (y[j] - yMean); s0 += weight[i][j]; s1 += Math.pow(weight[i][j] + weight[j][i], 2); subS2 += weight[i][j] + weight[j][i]; } s2 += Math.pow(subS2, 2); } s1 = 0.5 * s1; const moranIndex = weightSum / s0 / yVar; const expectedMoranIndex = -1 / (n - 1); const vNum = n * n * s1 - n * s2 + 3 * (s0 * s0); const vDen = (n - 1) * (n + 1) * (s0 * s0); const vNorm = vNum / vDen - expectedMoranIndex * expectedMoranIndex; const stdNorm = Math.sqrt(vNorm); const zNorm = (moranIndex - expectedMoranIndex) / stdNorm; return { expectedMoranIndex, moranIndex, stdNorm, zNorm, }; } /** * get mean of a list * * @private * @param {number[]} y * @returns {number} * */ function mean(y: number[]): number { let sum = 0; for (const item of y) { sum += item; } return sum / y.length; } /** * get variance of a list * * @private * @param {number[]} y * @returns {number} * */ function variance(y: number[]): number { const yMean = mean(y); let sum = 0; for (const item of y) { sum += Math.pow(item - yMean, 2); } return sum / y.length; } export { moranIndex, MoranIndex }; export default moranIndex; ================================================ FILE: packages/turf-moran-index/package.json ================================================ { "name": "@turf/moran-index", "version": "7.3.4", "description": "Measures patterns of attribute values associated with features. Reveals whether similar values tend to occur near each other, or whether high or low values are interspersed", "author": "Turf Authors", "contributors": [ "Haoming Zhuang <@zhuang-hao-ming>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "moran-index" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/distance-weight": "workspace:*", "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-moran-index/test/in/columbus.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "AREA": 0.309441, "PERIMETER": 2.440629, "COLUMBUS_": 2.0, "COLUMBUS_I": 5.0, "POLYID": 1.0, "NEIG": 5, "HOVAL": 80.467003, "INC": 19.531, "CRIME": 15.72598, "OPEN": 2.850747, "PLUMB": 0.217155, "DISCBD": 5.03, "X": 38.799999, "Y": 44.07, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1005.0 }, "bbox": [ 8.559700012207031, 13.995059967041016, 9.09996509552002, 14.742449760437012 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.624129295349121, 14.236980438232422], [8.559700012207031, 14.742449760437012], [8.809452056884766, 14.734430313110352], [8.808412551879883, 14.636520385742188], [8.919304847717285, 14.638500213623047], [9.087138175964355, 14.630490303039551], [9.09996509552002, 14.244830131530762], [9.015047073364258, 14.241840362548828], [9.008951187133789, 13.995059967041016], [8.818140029907227, 14.002050399780273], [8.653305053710938, 14.008090019226074], [8.642902374267578, 14.089710235595703], [8.63259220123291, 14.170590400695801], [8.625825881958008, 14.22367000579834], [8.624129295349121, 14.236980438232422] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.259329, "PERIMETER": 2.236939, "COLUMBUS_": 3.0, "COLUMBUS_I": 1.0, "POLYID": 2.0, "NEIG": 1, "HOVAL": 44.567001, "INC": 21.232, "CRIME": 18.801754, "OPEN": 5.29672, "PLUMB": 0.320581, "DISCBD": 4.27, "X": 35.619999, "Y": 42.380001, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1001.0 }, "bbox": [ 7.950088977813721, 13.727390289306641, 8.666550636291504, 14.263930320739746 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.252790451049805, 14.236940383911133], [8.282757759094238, 14.229940414428711], [8.330711364746094, 14.229940414428711], [8.383658409118652, 14.228930473327637], [8.444600105285645, 14.228919982910156], [8.544504165649414, 14.23490047454834], [8.624129295349121, 14.236980438232422], [8.625825881958008, 14.22367000579834], [8.63259220123291, 14.170590400695801], [8.642902374267578, 14.089710235595703], [8.653305053710938, 14.008090019226074], [8.662188529968262, 13.909899711608887], [8.666550636291504, 13.861700057983398], [8.605281829833984, 13.839249610900879], [8.579310417175293, 13.841250419616699], [8.562577247619629, 13.84253978729248], [8.540358543395996, 13.842399597167969], [8.516386985778809, 13.841679573059082], [8.502935409545898, 13.838729858398438], [8.473407745361328, 13.832269668579102], [8.459499359130859, 13.82034969329834], [8.431432723999023, 13.793310165405273], [8.415447235107422, 13.790309906005859], [8.387155532836914, 13.788969993591309], [8.37348747253418, 13.78831958770752], [8.323546409606934, 13.786080360412598], [8.284571647644043, 13.784330368041992], [8.291547775268555, 13.74137020111084], [8.229602813720703, 13.727390289306641], [8.22661304473877, 13.744379997253418], [8.215643882751465, 13.794329643249512], [8.198686599731445, 13.858280181884766], [8.16972541809082, 13.883259773254395], [8.12777042388916, 13.89225959777832], [8.093802452087402, 13.891260147094727], [8.063838005065918, 13.90526008605957], [8.044872283935547, 13.943220138549805], [8.037888526916504, 13.96720027923584], [7.999115943908691, 14.024570465087891], [7.99936580657959, 14.034970283508301], [8.003013610839844, 14.187020301818848], [7.950088977813721, 14.243969917297363], [8.111939430236816, 14.263930320739746], [8.147891998291016, 14.232959747314453], [8.181855201721191, 14.225959777832031], [8.20982837677002, 14.226949691772461], [8.252790451049805, 14.236940383911133] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.192468, "PERIMETER": 2.187547, "COLUMBUS_": 4.0, "COLUMBUS_I": 6.0, "POLYID": 3.0, "NEIG": 6, "HOVAL": 26.35, "INC": 15.956, "CRIME": 30.626781, "OPEN": 4.534649, "PLUMB": 0.374404, "DISCBD": 3.89, "X": 39.82, "Y": 41.18, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1006.0 }, "bbox": [ 8.653305053710938, 13.544429779052734, 9.351485252380371, 14.008090019226074 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.653305053710938, 14.008090019226074], [8.818140029907227, 14.002050399780273], [9.008951187133789, 13.995059967041016], [9.008928298950195, 13.9381103515625], [9.34359073638916, 13.913080215454102], [9.351485252380371, 13.675290107727051], [9.298501014709473, 13.589380264282227], [9.273821830749512, 13.588560104370117], [9.244555473327637, 13.59138011932373], [9.24254322052002, 13.558409690856934], [9.196581840515137, 13.544429779052734], [9.190605163574219, 13.586389541625977], [9.166626930236816, 13.581399917602539], [9.161684036254883, 13.708290100097656], [8.909939765930176, 13.715530395507812], [8.677577018737793, 13.722209930419922], [8.666550636291504, 13.861700057983398], [8.662188529968262, 13.909899711608887], [8.653305053710938, 14.008090019226074] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.083841, "PERIMETER": 1.427635, "COLUMBUS_": 5.0, "COLUMBUS_I": 2.0, "POLYID": 4.0, "NEIG": 2, "HOVAL": 33.200001, "INC": 4.477, "CRIME": 32.38776, "OPEN": 0.394427, "PLUMB": 1.186944, "DISCBD": 3.7, "X": 36.5, "Y": 40.52, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1002.0 }, "bbox": [ 8.19859504699707, 13.586509704589844, 8.685274124145508, 13.861700057983398 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.459499359130859, 13.82034969329834], [8.473407745361328, 13.832269668579102], [8.502935409545898, 13.838729858398438], [8.516386985778809, 13.841679573059082], [8.540358543395996, 13.842399597167969], [8.562577247619629, 13.84253978729248], [8.579310417175293, 13.841250419616699], [8.605281829833984, 13.839249610900879], [8.666550636291504, 13.861700057983398], [8.677577018737793, 13.722209930419922], [8.685274124145508, 13.639519691467285], [8.628178596496582, 13.639459609985352], [8.588301658630371, 13.641819953918457], [8.571109771728516, 13.641269683837891], [8.547515869140625, 13.643819808959961], [8.537267684936523, 13.644430160522461], [8.505298614501953, 13.644430160522461], [8.459343910217285, 13.644430160522461], [8.450570106506348, 13.60453987121582], [8.439335823059082, 13.605520248413086], [8.380410194396973, 13.616470336914062], [8.385412216186523, 13.63444995880127], [8.316472053527832, 13.616479873657227], [8.294443130493164, 13.604570388793945], [8.279500007629395, 13.596500396728516], [8.247527122497559, 13.586509704589844], [8.201574325561523, 13.591509819030762], [8.201583862304688, 13.614489555358887], [8.19859504699707, 13.635479927062988], [8.233589172363281, 13.703410148620605], [8.229602813720703, 13.727390289306641], [8.291547775268555, 13.74137020111084], [8.284571647644043, 13.784330368041992], [8.323546409606934, 13.786080360412598], [8.37348747253418, 13.78831958770752], [8.387155532836914, 13.788969993591309], [8.415447235107422, 13.790309906005859], [8.431432723999023, 13.793310165405273], [8.459499359130859, 13.82034969329834] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.488888, "PERIMETER": 2.997133, "COLUMBUS_": 6.0, "COLUMBUS_I": 7.0, "POLYID": 5.0, "NEIG": 7, "HOVAL": 23.225, "INC": 11.252, "CRIME": 50.73151, "OPEN": 0.405664, "PLUMB": 0.624596, "DISCBD": 2.83, "X": 40.009998, "Y": 38.0, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1007.0 }, "bbox": [ 8.677577018737793, 12.861089706420898, 9.401384353637695, 13.722209930419922 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.685274124145508, 13.639519691467285], [8.677577018737793, 13.722209930419922], [8.909939765930176, 13.715530395507812], [9.161684036254883, 13.708290100097656], [9.166626930236816, 13.581399917602539], [9.190605163574219, 13.586389541625977], [9.196581840515137, 13.544429779052734], [9.24254322052002, 13.558409690856934], [9.244555473327637, 13.59138011932373], [9.273821830749512, 13.588560104370117], [9.298501014709473, 13.589380264282227], [9.310471534729004, 13.54541015625], [9.401384353637695, 13.550399780273438], [9.333296775817871, 13.272419929504395], [9.23626708984375, 12.876279830932617], [9.233386993408203, 12.86400032043457], [8.943572998046875, 12.86221981048584], [8.757728576660156, 12.861089706420898], [8.733969688415527, 13.116339683532715], [8.685274124145508, 13.639519691467285] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.283079, "PERIMETER": 2.335634, "COLUMBUS_": 7.0, "COLUMBUS_I": 8.0, "POLYID": 6.0, "NEIG": 8, "HOVAL": 28.75, "INC": 16.028999, "CRIME": 26.066658, "OPEN": 0.563075, "PLUMB": 0.25413, "DISCBD": 3.78, "X": 43.75, "Y": 39.279999, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1008.0 }, "bbox": [ 9.333296775817871, 13.272419929504395, 10.180600166320801, 13.698240280151367 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.401384353637695, 13.550399780273438], [9.43441104888916, 13.694270133972168], [9.605246543884277, 13.698240280151367], [9.651198387145996, 13.692239761352539], [9.687166213989258, 13.697230339050293], [9.686145782470703, 13.645279884338379], [9.845992088317871, 13.652250289916992], [10.050789833068848, 13.650230407714844], [10.103719711303711, 13.603260040283203], [10.175629615783691, 13.565290451049805], [10.180600166320801, 13.482359886169434], [10.167599678039551, 13.471369743347168], [10.153610229492188, 13.454389572143555], [10.1356201171875, 13.439399719238281], [10.119629859924316, 13.429409980773926], [10.121600151062012, 13.344490051269531], [10.096619606018066, 13.342490196228027], [10.085630416870117, 13.333499908447266], [10.05265998840332, 13.33650016784668], [10.027669906616211, 13.298540115356445], [9.772106170654297, 13.292110443115234], [9.677009582519531, 13.296589851379395], [9.67100715637207, 13.27361011505127], [9.333296775817871, 13.272419929504395], [9.401384353637695, 13.550399780273438] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.257084, "PERIMETER": 2.554577, "COLUMBUS_": 8.0, "COLUMBUS_I": 4.0, "POLYID": 7.0, "NEIG": 4, "HOVAL": 75.0, "INC": 8.438, "CRIME": 0.178269, "OPEN": 0.0, "PLUMB": 2.402402, "DISCBD": 2.74, "X": 33.360001, "Y": 38.41, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1004.0 }, "bbox": [ 7.801973819732666, 12.942020416259766, 8.456572532653809, 13.644510269165039 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.037740707397461, 13.60752010345459], [8.062715530395508, 13.604519844055176], [8.072694778442383, 13.580539703369141], [8.115653038024902, 13.579540252685547], [8.130637168884277, 13.576539993286133], [8.197451591491699, 13.575770378112793], [8.189590454101562, 13.545760154724121], [8.179450035095215, 13.529829978942871], [8.164705276489258, 13.511059761047363], [8.14012622833252, 13.479769706726074], [8.128536224365234, 13.470100402832031], [8.121718406677246, 13.461039543151855], [8.109848022460938, 13.432640075683594], [8.10498046875, 13.420989990234375], [8.181536674499512, 13.415909767150879], [8.293397903442383, 13.408490180969238], [8.380322456359863, 13.404660224914551], [8.456572532653809, 13.104069709777832], [8.425149917602539, 13.09391975402832], [8.412152290344238, 13.068949699401855], [8.351269721984863, 13.066499710083008], [8.288271903991699, 13.063969612121582], [8.28026294708252, 13.026000022888184], [8.232307434082031, 13.020009994506836], [8.220302581787109, 12.979049682617188], [8.154367446899414, 12.978059768676758], [8.145203590393066, 12.942020416259766], [8.104400634765625, 12.943050384521484], [8.062442779541016, 12.944100379943848], [8.052460670471191, 12.963089942932129], [8.052496910095215, 13.052009582519531], [8.048531532287598, 13.129940032958984], [8.032543182373047, 13.117950439453125], [8.01356029510498, 13.114959716796875], [7.989583969116211, 13.115960121154785], [7.962619781494141, 13.137940406799316], [7.923679828643799, 13.191900253295898], [7.898725986480713, 13.243860244750977], [7.88774299621582, 13.25784969329834], [7.871758937835693, 13.25885009765625], [7.868794918060303, 13.338780403137207], [7.866809844970703, 13.371749877929688], [7.851837158203125, 13.400730133056641], [7.844857215881348, 13.432700157165527], [7.84089183807373, 13.50862979888916], [7.824925899505615, 13.552599906921387], [7.803965091705322, 13.596559524536133], [7.801973819732666, 13.61553955078125], [7.90187406539917, 13.608539581298828], [7.90288782119751, 13.644510269165039], [7.9967942237854, 13.639499664306641], [7.998781204223633, 13.614520072937012], [8.037740707397461, 13.60752010345459] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.204954, "PERIMETER": 2.139524, "COLUMBUS_": 9.0, "COLUMBUS_I": 3.0, "POLYID": 8.0, "NEIG": 3, "HOVAL": 37.125, "INC": 11.337, "CRIME": 38.425858, "OPEN": 3.483478, "PLUMB": 2.739726, "DISCBD": 2.89, "X": 36.709999, "Y": 38.709999, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1003.0 }, "bbox": [8.10498046875, 13.104069709777832, 8.733969688415527, 13.644430160522461], "geometry": { "type": "Polygon", "coordinates": [ [ [8.247527122497559, 13.586509704589844], [8.279500007629395, 13.596500396728516], [8.294443130493164, 13.604570388793945], [8.316472053527832, 13.616479873657227], [8.385412216186523, 13.63444995880127], [8.380410194396973, 13.616470336914062], [8.439335823059082, 13.605520248413086], [8.450570106506348, 13.60453987121582], [8.459343910217285, 13.644430160522461], [8.505298614501953, 13.644430160522461], [8.537267684936523, 13.644430160522461], [8.547515869140625, 13.643819808959961], [8.571109771728516, 13.641269683837891], [8.588301658630371, 13.641819953918457], [8.628178596496582, 13.639459609985352], [8.685274124145508, 13.639519691467285], [8.733969688415527, 13.116339683532715], [8.651877403259277, 13.113670349121094], [8.596989631652832, 13.111889839172363], [8.585997581481934, 13.106889724731445], [8.517032623291016, 13.105389595031738], [8.456572532653809, 13.104069709777832], [8.380322456359863, 13.404660224914551], [8.293397903442383, 13.408490180969238], [8.181536674499512, 13.415909767150879], [8.10498046875, 13.420989990234375], [8.109848022460938, 13.432640075683594], [8.121718406677246, 13.461039543151855], [8.128536224365234, 13.470100402832031], [8.14012622833252, 13.479769706726074], [8.164705276489258, 13.511059761047363], [8.179450035095215, 13.529829978942871], [8.189590454101562, 13.545760154724121], [8.197451591491699, 13.575770378112793], [8.201574325561523, 13.591509819030762], [8.247527122497559, 13.586509704589844] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.500755, "PERIMETER": 3.169707, "COLUMBUS_": 10.0, "COLUMBUS_I": 18.0, "POLYID": 9.0, "NEIG": 18, "HOVAL": 52.599998, "INC": 17.586, "CRIME": 30.515917, "OPEN": 0.527488, "PLUMB": 0.890736, "DISCBD": 3.17, "X": 43.439999, "Y": 35.919998, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1018.0 }, "bbox": [ 9.124277114868164, 12.595190048217773, 10.095430374145508, 13.298540115356445 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.333296775817871, 13.272419929504395], [9.67100715637207, 13.27361011505127], [9.677009582519531, 13.296589851379395], [9.772106170654297, 13.292110443115234], [10.027669906616211, 13.298540115356445], [9.950613975524902, 12.983830451965332], [10.004560470581055, 12.976829528808594], [10.082509994506836, 13.033769607543945], [10.083649635314941, 13.019869804382324], [10.086819648742676, 12.981430053710938], [10.089170455932617, 12.952810287475586], [10.091629981994629, 12.923040390014648], [10.093509674072266, 12.900219917297363], [10.095430374145508, 12.876899719238281], [10.015439987182617, 12.72404956817627], [9.763668060302734, 12.673130035400391], [9.723674774169922, 12.595199584960938], [9.555828094482422, 12.595190048217773], [9.471497535705566, 12.595709800720215], [9.386005401611328, 12.596240043640137], [9.383021354675293, 12.627209663391113], [9.258048057556152, 12.630610466003418], [9.124277114868164, 12.63424015045166], [9.146787643432617, 12.658740043640137], [9.166311264038086, 12.679980278015137], [9.187246322631836, 12.709170341491699], [9.206208229064941, 12.75883960723877], [9.213532447814941, 12.778030395507812], [9.220885276794434, 12.805720329284668], [9.233386993408203, 12.86400032043457], [9.23626708984375, 12.876279830932617], [9.333296775817871, 13.272419929504395] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.246689, "PERIMETER": 2.087235, "COLUMBUS_": 11.0, "COLUMBUS_I": 10.0, "POLYID": 10.0, "NEIG": 10, "HOVAL": 96.400002, "INC": 13.598, "CRIME": 34.000835, "OPEN": 1.548348, "PLUMB": 0.557724, "DISCBD": 4.33, "X": 47.610001, "Y": 36.419998, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1010.0 }, "bbox": [ 10.015439987182617, 12.72404956817627, 10.649680137634277, 13.272509574890137 ], "geometry": { "type": "Polygon", "coordinates": [ [ [10.082509994506836, 13.033769607543945], [10.092499732971191, 13.052749633789062], [10.126489639282227, 13.090709686279297], [10.182459831237793, 13.157649993896484], [10.267419815063477, 13.254549980163574], [10.289389610290527, 13.247550010681152], [10.316360473632812, 13.244549751281738], [10.33234977722168, 13.23954963684082], [10.368260383605957, 13.246430397033691], [10.394289970397949, 13.246540069580078], [10.417269706726074, 13.247540473937988], [10.450240135192871, 13.251529693603516], [10.4752197265625, 13.261520385742188], [10.4752197265625, 13.272509574890137], [10.534159660339355, 13.271499633789062], [10.566129684448242, 13.271499633789062], [10.603090286254883, 13.265500068664551], [10.632060050964355, 13.263489723205566], [10.639049530029297, 13.244509696960449], [10.640040397644043, 13.21953010559082], [10.649020195007324, 13.199549674987793], [10.646010398864746, 13.176569938659668], [10.64700984954834, 13.157589912414551], [10.645999908447266, 13.144599914550781], [10.637999534606934, 13.129610061645508], [10.63899040222168, 13.104630470275879], [10.631979942321777, 13.070659637451172], [10.626979827880859, 13.051679611206055], [10.627969741821289, 13.026700019836426], [10.631959915161133, 13.008720397949219], [10.633950233459473, 12.983739852905273], [10.62893009185791, 12.945779800415039], [10.639909744262695, 12.918800354003906], [10.637900352478027, 12.890819549560547], [10.645890235900879, 12.865839958190918], [10.647870063781738, 12.842860221862793], [10.649680137634277, 12.830180168151855], [10.501099586486816, 12.805319786071777], [10.356599807739258, 12.781140327453613], [10.178409576416016, 12.751319885253906], [10.015439987182617, 12.72404956817627], [10.095430374145508, 12.876899719238281], [10.093509674072266, 12.900219917297363], [10.091629981994629, 12.923040390014648], [10.089170455932617, 12.952810287475586], [10.086819648742676, 12.981430053710938], [10.083649635314941, 13.019869804382324], [10.082509994506836, 13.033769607543945] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.041012, "PERIMETER": 0.919488, "COLUMBUS_": 12.0, "COLUMBUS_I": 38.0, "POLYID": 11.0, "NEIG": 38, "HOVAL": 19.700001, "INC": 7.467, "CRIME": 62.275448, "OPEN": 0.0, "PLUMB": 1.479915, "DISCBD": 1.9, "X": 37.849998, "Y": 36.299999, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1038.0 }, "bbox": [ 8.572946548461914, 12.810150146484375, 8.757728576660156, 13.116339683532715 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.585997581481934, 13.106889724731445], [8.596989631652832, 13.111889839172363], [8.651877403259277, 13.113670349121094], [8.733969688415527, 13.116339683532715], [8.757728576660156, 12.861089706420898], [8.700782775878906, 12.857099533081055], [8.693771362304688, 12.811140060424805], [8.632829666137695, 12.810150146484375], [8.629888534545898, 12.945030212402344], [8.572946548461914, 12.950030326843262], [8.585997581481934, 13.106889724731445] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.035769, "PERIMETER": 0.902125, "COLUMBUS_": 13.0, "COLUMBUS_I": 37.0, "POLYID": 12.0, "NEIG": 37, "HOVAL": 19.9, "INC": 10.048, "CRIME": 56.705669, "OPEN": 3.157895, "PLUMB": 2.635046, "DISCBD": 1.91, "X": 37.130001, "Y": 36.119999, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1037.0 }, "bbox": [ 8.456572532653809, 12.809200286865234, 8.632829666137695, 13.106889724731445 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.456572532653809, 13.104069709777832], [8.517032623291016, 13.105389595031738], [8.585997581481934, 13.106889724731445], [8.572946548461914, 12.950030326843262], [8.629888534545898, 12.945030212402344], [8.632829666137695, 12.810150146484375], [8.582889556884766, 12.809769630432129], [8.50916576385498, 12.809200286865234], [8.487373352050781, 12.930660247802734], [8.456572532653809, 13.104069709777832] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.034377, "PERIMETER": 0.93659, "COLUMBUS_": 14.0, "COLUMBUS_I": 39.0, "POLYID": 13.0, "NEIG": 39, "HOVAL": 41.700001, "INC": 9.549, "CRIME": 46.716129, "OPEN": 0.0, "PLUMB": 6.328423, "DISCBD": 2.09, "X": 35.950001, "Y": 36.400002, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1039.0 }, "bbox": [ 8.145203590393066, 12.930660247802734, 8.487373352050781, 13.104069709777832 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.145203590393066, 12.942020416259766], [8.154367446899414, 12.978059768676758], [8.220302581787109, 12.979049682617188], [8.232307434082031, 13.020009994506836], [8.28026294708252, 13.026000022888184], [8.288271903991699, 13.063969612121582], [8.351269721984863, 13.066499710083008], [8.412152290344238, 13.068949699401855], [8.425149917602539, 13.09391975402832], [8.456572532653809, 13.104069709777832], [8.487373352050781, 12.930660247802734], [8.456042289733887, 12.931710243225098], [8.402054786682129, 12.933529853820801], [8.337125778198242, 12.935720443725586], [8.245318412780762, 12.938819885253906], [8.145203590393066, 12.942020416259766] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.060884, "PERIMETER": 1.128424, "COLUMBUS_": 15.0, "COLUMBUS_I": 40.0, "POLYID": 14.0, "NEIG": 40, "HOVAL": 42.900002, "INC": 9.963, "CRIME": 57.066132, "OPEN": 0.477104, "PLUMB": 5.110962, "DISCBD": 1.83, "X": 35.720001, "Y": 35.599998, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1040.0 }, "bbox": [ 8.062442779541016, 12.787229537963867, 8.512937545776367, 12.944100379943848 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.062442779541016, 12.944100379943848], [8.104400634765625, 12.943050384521484], [8.145203590393066, 12.942020416259766], [8.245318412780762, 12.938819885253906], [8.337125778198242, 12.935720443725586], [8.402054786682129, 12.933529853820801], [8.456042289733887, 12.931710243225098], [8.487373352050781, 12.930660247802734], [8.50916576385498, 12.809200286865234], [8.512937545776367, 12.788180351257324], [8.478970527648926, 12.788189888000488], [8.431012153625488, 12.788060188293457], [8.259181022644043, 12.787599563598633], [8.122319221496582, 12.787229537963867], [8.062442779541016, 12.944100379943848] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.106653, "PERIMETER": 1.437606, "COLUMBUS_": 16.0, "COLUMBUS_I": 9.0, "POLYID": 15.0, "NEIG": 9, "HOVAL": 18.0, "INC": 9.873, "CRIME": 48.585487, "OPEN": 0.174325, "PLUMB": 1.311475, "DISCBD": 1.7, "X": 39.610001, "Y": 34.91, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1009.0 }, "bbox": [ 8.757728576660156, 12.532369613647461, 9.233386993408203, 12.86400032043457 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.757728576660156, 12.861089706420898], [8.943572998046875, 12.86221981048584], [9.233386993408203, 12.86400032043457], [9.220885276794434, 12.805720329284668], [9.213532447814941, 12.778030395507812], [9.206208229064941, 12.75883960723877], [9.187246322631836, 12.709170341491699], [9.166311264038086, 12.679980278015137], [9.146787643432617, 12.658740043640137], [9.124277114868164, 12.63424015045166], [8.913296699523926, 12.609800338745117], [8.855527877807617, 12.606300354003906], [8.785566329956055, 12.532369613647461], [8.777865409851074, 12.628029823303223], [8.757728576660156, 12.861089706420898] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.093154, "PERIMETER": 1.340061, "COLUMBUS_": 17.0, "COLUMBUS_I": 36.0, "POLYID": 16.0, "NEIG": 36, "HOVAL": 18.799999, "INC": 7.625, "CRIME": 54.838711, "OPEN": 0.533737, "PLUMB": 4.6875, "DISCBD": 1.1, "X": 37.599998, "Y": 34.080002, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1036.0 }, "bbox": [ 8.50916576385498, 12.361550331115723, 8.785566329956055, 12.861089706420898 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.632829666137695, 12.810150146484375], [8.693771362304688, 12.811140060424805], [8.700782775878906, 12.857099533081055], [8.757728576660156, 12.861089706420898], [8.777865409851074, 12.628029823303223], [8.785566329956055, 12.532369613647461], [8.75838565826416, 12.49685001373291], [8.726524353027344, 12.455209732055664], [8.709477424621582, 12.427309989929199], [8.694606781005859, 12.417490005493164], [8.657632827758789, 12.391510009765625], [8.605761528015137, 12.367939949035645], [8.589687347412109, 12.361550331115723], [8.512937545776367, 12.788180351257324], [8.50916576385498, 12.809200286865234], [8.582889556884766, 12.809769630432129], [8.632829666137695, 12.810150146484375] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.102087, "PERIMETER": 1.382359, "COLUMBUS_": 18.0, "COLUMBUS_I": 11.0, "POLYID": 17.0, "NEIG": 11, "HOVAL": 41.75, "INC": 9.798, "CRIME": 36.868774, "OPEN": 0.448232, "PLUMB": 1.619745, "DISCBD": 4.47, "X": 48.580002, "Y": 34.459999, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1011.0 }, "bbox": [ 10.356060028076172, 12.44025993347168, 10.709790229797363, 12.838859558105469 ], "geometry": { "type": "Polygon", "coordinates": [ [ [10.356599807739258, 12.781140327453613], [10.501099586486816, 12.805319786071777], [10.649680137634277, 12.830180168151855], [10.70281982421875, 12.838859558105469], [10.709790229797363, 12.774909973144531], [10.664819717407227, 12.762929916381836], [10.6697998046875, 12.703980445861816], [10.667770385742188, 12.648030281066895], [10.666970252990723, 12.595029830932617], [10.667340278625488, 12.580109596252441], [10.669699668884277, 12.483180046081543], [10.421750068664551, 12.44025993347168], [10.420989990234375, 12.578129768371582], [10.356060028076172, 12.598119735717773], [10.356389999389648, 12.712010383605957], [10.356599807739258, 12.781140327453613] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.055494, "PERIMETER": 1.183352, "COLUMBUS_": 19.0, "COLUMBUS_I": 42.0, "POLYID": 18.0, "NEIG": 42, "HOVAL": 60.0, "INC": 13.185, "CRIME": 43.962486, "OPEN": 24.998068, "PLUMB": 13.849287, "DISCBD": 1.58, "X": 36.150002, "Y": 33.919998, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1042.0 }, "bbox": [ 8.358473777770996, 12.355310440063477, 8.589687347412109, 12.788189888000488 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.431012153625488, 12.788060188293457], [8.478970527648926, 12.788189888000488], [8.512937545776367, 12.788180351257324], [8.589687347412109, 12.361550331115723], [8.565507888793945, 12.355330467224121], [8.554715156555176, 12.355330467224121], [8.523073196411133, 12.355310440063477], [8.502638816833496, 12.357080459594727], [8.481381416320801, 12.362910270690918], [8.438838958740234, 12.373559951782227], [8.406447410583496, 12.396730422973633], [8.391569137573242, 12.407380104064941], [8.369997024536133, 12.428179740905762], [8.358473777770996, 12.445659637451172], [8.423884391784668, 12.448490142822266], [8.431012153625488, 12.788060188293457] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.061342, "PERIMETER": 1.249247, "COLUMBUS_": 20.0, "COLUMBUS_I": 41.0, "POLYID": 19.0, "NEIG": 41, "HOVAL": 30.6, "INC": 11.618, "CRIME": 54.521965, "OPEN": 0.111111, "PLUMB": 2.622951, "DISCBD": 1.53, "X": 35.759998, "Y": 34.66, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1041.0 }, "bbox": [ 8.122319221496582, 12.445659637451172, 8.431012153625488, 12.788060188293457 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.122319221496582, 12.787229537963867], [8.259181022644043, 12.787599563598633], [8.431012153625488, 12.788060188293457], [8.423884391784668, 12.448490142822266], [8.358473777770996, 12.445659637451172], [8.350508689880371, 12.481929779052734], [8.347976684570312, 12.493459701538086], [8.3489990234375, 12.547419548034668], [8.33201789855957, 12.547419548034668], [8.30504322052002, 12.550419807434082], [8.301017761230469, 12.593090057373047], [8.299444198608398, 12.609780311584473], [8.296090126037598, 12.645339965820312], [8.223162651062012, 12.645339965820312], [8.148235321044922, 12.645350456237793], [8.13826847076416, 12.703310012817383], [8.138282775878906, 12.737279891967773], [8.122319221496582, 12.787229537963867] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.444629, "PERIMETER": 3.174601, "COLUMBUS_": 21.0, "COLUMBUS_I": 17.0, "POLYID": 20.0, "NEIG": 17, "HOVAL": 81.266998, "INC": 31.07, "CRIME": 0.223797, "OPEN": 5.318607, "PLUMB": 0.167224, "DISCBD": 3.57, "X": 46.73, "Y": 31.91, "NSA": 0.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1017.0 }, "bbox": [ 9.841083526611328, 11.741860389709473, 10.425640106201172, 12.781140327453613 ], "geometry": { "type": "Polygon", "coordinates": [ [ [10.015439987182617, 12.72404956817627], [10.178409576416016, 12.751319885253906], [10.356599807739258, 12.781140327453613], [10.356389999389648, 12.712010383605957], [10.356060028076172, 12.598119735717773], [10.420989990234375, 12.578129768371582], [10.421750068664551, 12.44025993347168], [10.424249649047852, 11.990639686584473], [10.425640106201172, 11.741860389709473], [10.252799987792969, 11.742819786071777], [10.05659008026123, 11.74390983581543], [10.049909591674805, 11.76294994354248], [10.049750328063965, 11.778960227966309], [10.049289703369141, 11.822830200195312], [10.048910140991211, 11.858799934387207], [10.042079925537109, 11.912759780883789], [10.02422046661377, 11.962309837341309], [10.007160186767578, 12.009679794311523], [9.991960525512695, 12.031510353088379], [9.956293106079102, 12.08275032043457], [9.914779663085938, 12.142390251159668], [9.899951934814453, 12.163689613342285], [9.892878532409668, 12.173850059509277], [9.884350776672363, 12.191530227661133], [10.001230239868164, 12.170539855957031], [9.96633243560791, 12.341389656066895], [9.841083526611328, 12.314740180969238], [9.935688018798828, 12.501870155334473], [9.941193580627441, 12.512129783630371], [9.933468818664551, 12.599410057067871], [10.015439987182617, 12.72404956817627] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.699258, "PERIMETER": 5.07749, "COLUMBUS_": 22.0, "COLUMBUS_I": 43.0, "POLYID": 21.0, "NEIG": 43, "HOVAL": 19.975, "INC": 10.655, "CRIME": 40.074074, "OPEN": 1.643756, "PLUMB": 1.559576, "DISCBD": 1.41, "X": 34.080002, "Y": 30.42, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1043.0 }, "bbox": [ 7.06132984161377, 11.527389526367188, 8.563572883605957, 12.725419998168945 ], "geometry": { "type": "Polygon", "coordinates": [ [ [7.842434883117676, 12.405599594116211], [8.131139755249023, 12.373600006103516], [8.136807441711426, 12.348549842834473], [8.141800880432129, 12.326470375061035], [8.148349761962891, 12.298720359802246], [8.157790184020996, 12.281220436096191], [8.174397468566895, 12.250430107116699], [8.190520286560059, 12.237640380859375], [8.225326538085938, 12.206859588623047], [8.25028133392334, 12.194430351257324], [8.310224533081055, 12.156929969787598], [8.32612133026123, 12.153280258178711], [8.358863830566406, 12.145950317382812], [8.408769607543945, 12.134770393371582], [8.43419361114502, 12.139209747314453], [8.471713066101074, 12.145750045776367], [8.495033264160156, 12.13776969909668], [8.505514144897461, 12.128210067749023], [8.519205093383789, 12.115229606628418], [8.538623809814453, 12.088789939880371], [8.544462203979492, 12.073599815368652], [8.563572883605957, 12.023850440979004], [8.525978088378906, 11.924659729003906], [8.517660140991211, 11.91471004486084], [8.471677780151367, 11.863730430603027], [8.455998420715332, 11.847610473632812], [8.412508010864258, 11.807350158691406], [8.404298782348633, 11.800470352172852], [8.386432647705078, 11.785490036010742], [8.373654365539551, 11.774089813232422], [8.282732009887695, 11.74413013458252], [8.256792068481445, 11.828060150146484], [8.103923797607422, 11.785120010375977], [8.120859146118164, 11.670220375061035], [7.733179092407227, 11.527389526367188], [7.688279151916504, 11.66327953338623], [7.717282772064209, 11.741209983825684], [7.580474853515625, 11.882100105285645], [7.637434005737305, 11.917059898376465], [7.616511821746826, 12.057939529418945], [7.40372896194458, 12.080949783325195], [7.404763221740723, 12.164870262145996], [7.323862075805664, 12.21183967590332], [7.19602108001709, 12.295780181884766], [7.135107040405273, 12.359729766845703], [7.108152866363525, 12.406700134277344], [7.092213153839111, 12.51261043548584], [7.06132984161377, 12.725419998168945], [7.143249988555908, 12.724410057067871], [7.155218124389648, 12.674460411071777], [7.173169136047363, 12.598520278930664], [7.206113815307617, 12.544560432434082], [7.27003812789917, 12.510580062866211], [7.341958045959473, 12.486599922180176], [7.429862976074219, 12.46660041809082], [7.459833145141602, 12.463600158691406], [7.481781005859375, 12.389659881591797], [7.498770236968994, 12.403650283813477], [7.516755104064941, 12.409640312194824], [7.548725128173828, 12.412630081176758], [7.559714794158936, 12.414629936218262], [7.55869197845459, 12.356679916381836], [7.569672107696533, 12.334699630737305], [7.616611003875732, 12.29872989654541], [7.669570922851562, 12.327690124511719], [7.721512794494629, 12.307709693908691], [7.708548069000244, 12.36266040802002], [7.639626979827881, 12.389639854431152], [7.646636009216309, 12.430609703063965], [7.842434883117676, 12.405599594116211] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.192891, "PERIMETER": 1.992717, "COLUMBUS_": 23.0, "COLUMBUS_I": 19.0, "POLYID": 22.0, "NEIG": 19, "HOVAL": 30.450001, "INC": 11.709, "CRIME": 33.705048, "OPEN": 4.539754, "PLUMB": 1.785714, "DISCBD": 2.45, "X": 43.369999, "Y": 33.459999, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1019.0 }, "bbox": [ 9.357977867126465, 12.226559638977051, 10.015439987182617, 12.72404956817627 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.386005401611328, 12.596240043640137], [9.471497535705566, 12.595709800720215], [9.555828094482422, 12.595190048217773], [9.723674774169922, 12.595199584960938], [9.763668060302734, 12.673130035400391], [10.015439987182617, 12.72404956817627], [9.933468818664551, 12.599410057067871], [9.941193580627441, 12.512129783630371], [9.935688018798828, 12.501870155334473], [9.841083526611328, 12.314740180969238], [9.656930923461914, 12.274029731750488], [9.468775749206543, 12.234550476074219], [9.394844055175781, 12.226559638977051], [9.386472702026367, 12.34727954864502], [9.385739326477051, 12.361639976501465], [9.380951881408691, 12.45536994934082], [9.357977867126465, 12.462360382080078], [9.35901927947998, 12.56527042388916], [9.386005401611328, 12.596240043640137] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.24712, "PERIMETER": 2.147528, "COLUMBUS_": 24.0, "COLUMBUS_I": 12.0, "POLYID": 23.0, "NEIG": 12, "HOVAL": 47.733002, "INC": 21.155001, "CRIME": 20.048504, "OPEN": 0.532632, "PLUMB": 0.216763, "DISCBD": 4.78, "X": 49.610001, "Y": 32.650002, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1012.0 }, "bbox": [ 10.421750068664551, 11.990639686584473, 10.888489723205566, 12.652009963989258 ], "geometry": { "type": "Polygon", "coordinates": [ [ [10.667770385742188, 12.648030281066895], [10.776670455932617, 12.652009963989258], [10.88755989074707, 12.644009590148926], [10.888489723205566, 12.49213981628418], [10.884440422058105, 12.349269866943359], [10.884380340576172, 12.19340991973877], [10.876319885253906, 12.037540435791016], [10.640899658203125, 12.013119697570801], [10.424249649047852, 11.990639686584473], [10.421750068664551, 12.44025993347168], [10.669699668884277, 12.483180046081543], [10.667340278625488, 12.580109596252441], [10.666970252990723, 12.595029830932617], [10.667770385742188, 12.648030281066895] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.192226, "PERIMETER": 2.240392, "COLUMBUS_": 25.0, "COLUMBUS_I": 35.0, "POLYID": 24.0, "NEIG": 35, "HOVAL": 53.200001, "INC": 14.236, "CRIME": 38.297871, "OPEN": 0.62622, "PLUMB": 18.811075, "DISCBD": 0.42, "X": 36.599998, "Y": 32.09, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1035.0 }, "bbox": [ 8.131139755249023, 12.088789939880371, 8.790392875671387, 12.645350456237793 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.148235321044922, 12.645350456237793], [8.223162651062012, 12.645339965820312], [8.296090126037598, 12.645339965820312], [8.299444198608398, 12.609780311584473], [8.301017761230469, 12.593090057373047], [8.30504322052002, 12.550419807434082], [8.33201789855957, 12.547419548034668], [8.3489990234375, 12.547419548034668], [8.347976684570312, 12.493459701538086], [8.350508689880371, 12.481929779052734], [8.358473777770996, 12.445659637451172], [8.369997024536133, 12.428179740905762], [8.391569137573242, 12.407380104064941], [8.406447410583496, 12.396730422973633], [8.438838958740234, 12.373559951782227], [8.481381416320801, 12.362910270690918], [8.502638816833496, 12.357080459594727], [8.523073196411133, 12.355310440063477], [8.554715156555176, 12.355330467224121], [8.565507888793945, 12.355330467224121], [8.589687347412109, 12.361550331115723], [8.605761528015137, 12.367939949035645], [8.657632827758789, 12.391510009765625], [8.694606781005859, 12.417490005493164], [8.709477424621582, 12.427309989929199], [8.708919525146484, 12.39048957824707], [8.708315849304199, 12.350500106811523], [8.707547187805176, 12.302590370178223], [8.767485618591309, 12.29557991027832], [8.758467674255371, 12.230640411376953], [8.784432411193848, 12.206660270690918], [8.790392875671387, 12.125729560852051], [8.643799781799316, 12.102089881896973], [8.538623809814453, 12.088789939880371], [8.519205093383789, 12.115229606628418], [8.505514144897461, 12.128210067749023], [8.495033264160156, 12.13776969909668], [8.471713066101074, 12.145750045776367], [8.43419361114502, 12.139209747314453], [8.408769607543945, 12.134770393371582], [8.358863830566406, 12.145950317382812], [8.32612133026123, 12.153280258178711], [8.310224533081055, 12.156929969787598], [8.25028133392334, 12.194430351257324], [8.225326538085938, 12.206859588623047], [8.190520286560059, 12.237640380859375], [8.174397468566895, 12.250430107116699], [8.157790184020996, 12.281220436096191], [8.148349761962891, 12.298720359802246], [8.141800880432129, 12.326470375061035], [8.136807441711426, 12.348549842834473], [8.131139755249023, 12.373600006103516], [8.137151718139648, 12.416560173034668], [8.14915943145752, 12.462510108947754], [8.160175323486328, 12.528459548950195], [8.155200958251953, 12.579409599304199], [8.147226333618164, 12.619379997253418], [8.148235321044922, 12.645350456237793] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.17168, "PERIMETER": 1.666489, "COLUMBUS_": 26.0, "COLUMBUS_I": 32.0, "POLYID": 25.0, "NEIG": 32, "HOVAL": 17.9, "INC": 8.461, "CRIME": 61.299175, "OPEN": 0.0, "PLUMB": 6.529851, "DISCBD": 0.83, "X": 39.360001, "Y": 32.880001, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1032.0 }, "bbox": [ 8.707547187805176, 12.125729560852051, 9.131059646606445, 12.63424015045166 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.785566329956055, 12.532369613647461], [8.855527877807617, 12.606300354003906], [8.913296699523926, 12.609800338745117], [9.124277114868164, 12.63424015045166], [9.124981880187988, 12.587260246276855], [9.127169609069824, 12.441459655761719], [9.129522323608398, 12.284629821777344], [9.131059646606445, 12.182160377502441], [9.116094589233398, 12.17965030670166], [8.95518970489502, 12.153010368347168], [8.790392875671387, 12.125729560852051], [8.784432411193848, 12.206660270690918], [8.758467674255371, 12.230640411376953], [8.767485618591309, 12.29557991027832], [8.707547187805176, 12.302590370178223], [8.708315849304199, 12.350500106811523], [8.708919525146484, 12.39048957824707], [8.709477424621582, 12.427309989929199], [8.726524353027344, 12.455209732055664], [8.75838565826416, 12.49685001373291], [8.785566329956055, 12.532369613647461] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.107298, "PERIMETER": 1.406823, "COLUMBUS_": 27.0, "COLUMBUS_I": 20.0, "POLYID": 26.0, "NEIG": 20, "HOVAL": 20.299999, "INC": 8.085, "CRIME": 40.969742, "OPEN": 1.238288, "PLUMB": 2.534275, "DISCBD": 1.5, "X": 41.130001, "Y": 33.139999, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1020.0 }, "bbox": [ 9.124277114868164, 12.182160377502441, 9.394844055175781, 12.63424015045166 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.124277114868164, 12.63424015045166], [9.258048057556152, 12.630610466003418], [9.383021354675293, 12.627209663391113], [9.386005401611328, 12.596240043640137], [9.35901927947998, 12.56527042388916], [9.357977867126465, 12.462360382080078], [9.380951881408691, 12.45536994934082], [9.385739326477051, 12.361639976501465], [9.386472702026367, 12.34727954864502], [9.394844055175781, 12.226559638977051], [9.258297920227051, 12.203579902648926], [9.131059646606445, 12.182160377502441], [9.129522323608398, 12.284629821777344], [9.127169609069824, 12.441459655761719], [9.124981880187988, 12.587260246276855], [9.124277114868164, 12.63424015045166] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.137802, "PERIMETER": 1.780751, "COLUMBUS_": 28.0, "COLUMBUS_I": 21.0, "POLYID": 27.0, "NEIG": 21, "HOVAL": 34.099998, "INC": 10.822, "CRIME": 52.79443, "OPEN": 19.368099, "PLUMB": 1.483516, "DISCBD": 2.24, "X": 43.950001, "Y": 31.610001, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1021.0 }, "bbox": [ 9.468775749206543, 12.002750396728516, 10.007160186767578, 12.341389656066895 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.468775749206543, 12.234550476074219], [9.656930923461914, 12.274029731750488], [9.841083526611328, 12.314740180969238], [9.96633243560791, 12.341389656066895], [10.001230239868164, 12.170539855957031], [9.884350776672363, 12.191530227661133], [9.892878532409668, 12.173850059509277], [9.899951934814453, 12.163689613342285], [9.914779663085938, 12.142390251159668], [9.956293106079102, 12.08275032043457], [9.991960525512695, 12.031510353088379], [10.007160186767578, 12.009679794311523], [9.755396842956543, 12.004929542541504], [9.480667114257812, 12.002750396728516], [9.481962203979492, 12.065779685974121], [9.478416442871094, 12.161820411682129], [9.468775749206543, 12.234550476074219] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.174773, "PERIMETER": 1.637148, "COLUMBUS_": 29.0, "COLUMBUS_I": 31.0, "POLYID": 28.0, "NEIG": 31, "HOVAL": 22.85, "INC": 7.856, "CRIME": 56.919785, "OPEN": 0.509305, "PLUMB": 3.001072, "DISCBD": 1.41, "X": 41.310001, "Y": 30.9, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1031.0 }, "bbox": [ 9.084967613220215, 11.734999656677246, 9.492551803588867, 12.234550476074219 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.394844055175781, 12.226559638977051], [9.468775749206543, 12.234550476074219], [9.478416442871094, 12.161820411682129], [9.481962203979492, 12.065779685974121], [9.480667114257812, 12.002750396728516], [9.482346534729004, 11.975689888000488], [9.488198280334473, 11.881449699401855], [9.489535331726074, 11.859919548034668], [9.492551803588867, 11.751970291137695], [9.343691825866699, 11.734999656677246], [9.200423240661621, 11.767109870910645], [9.084967613220215, 11.792989730834961], [9.090069770812988, 11.873970031738281], [9.093652725219727, 11.930830001831055], [9.098085403442383, 12.025779724121094], [9.100104331970215, 12.063579559326172], [9.103628158569336, 12.128439903259277], [9.115089416503906, 12.158659934997559], [9.131059646606445, 12.182160377502441], [9.258297920227051, 12.203579902648926], [9.394844055175781, 12.226559638977051] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.085972, "PERIMETER": 1.312158, "COLUMBUS_": 30.0, "COLUMBUS_I": 33.0, "POLYID": 29.0, "NEIG": 33, "HOVAL": 32.5, "INC": 8.681, "CRIME": 60.750446, "OPEN": 0.0, "PLUMB": 2.645051, "DISCBD": 0.81, "X": 39.720001, "Y": 30.639999, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1033.0 }, "bbox": [ 8.790384292602539, 11.792989730834961, 9.131059646606445, 12.182160377502441 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.116094589233398, 12.17965030670166], [9.131059646606445, 12.182160377502441], [9.115089416503906, 12.158659934997559], [9.103628158569336, 12.128439903259277], [9.100104331970215, 12.063579559326172], [9.098085403442383, 12.025779724121094], [9.093652725219727, 11.930830001831055], [9.090069770812988, 11.873970031738281], [9.084967613220215, 11.792989730834961], [8.898137092590332, 11.80247974395752], [8.868269920349121, 12.013819694519043], [8.811333656311035, 12.030810356140137], [8.813672065734863, 12.06682014465332], [8.81535530090332, 12.09276008605957], [8.790384292602539, 12.10575008392334], [8.790392875671387, 12.125729560852051], [8.95518970489502, 12.153010368347168], [9.116094589233398, 12.17965030670166] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.104355, "PERIMETER": 1.524931, "COLUMBUS_": 31.0, "COLUMBUS_I": 34.0, "POLYID": 30.0, "NEIG": 34, "HOVAL": 22.5, "INC": 13.906, "CRIME": 68.892044, "OPEN": 1.63878, "PLUMB": 15.600624, "DISCBD": 0.37, "X": 38.290001, "Y": 30.35, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1034.0 }, "bbox": [ 8.386432647705078, 11.785490036010742, 8.898137092590332, 12.125729560852051 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.643799781799316, 12.102089881896973], [8.790392875671387, 12.125729560852051], [8.790384292602539, 12.10575008392334], [8.81535530090332, 12.09276008605957], [8.813672065734863, 12.06682014465332], [8.811333656311035, 12.030810356140137], [8.868269920349121, 12.013819694519043], [8.898137092590332, 11.80247974395752], [8.829165458679199, 11.80486011505127], [8.713337898254395, 11.810020446777344], [8.618428230285645, 11.80504035949707], [8.508537292480469, 11.809040069580078], [8.386432647705078, 11.785490036010742], [8.404298782348633, 11.800470352172852], [8.412508010864258, 11.807350158691406], [8.455998420715332, 11.847610473632812], [8.471677780151367, 11.863730430603027], [8.517660140991211, 11.91471004486084], [8.525978088378906, 11.924659729003906], [8.563572883605957, 12.023850440979004], [8.544462203979492, 12.073599815368652], [8.538623809814453, 12.088789939880371], [8.643799781799316, 12.102089881896973] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.117409, "PERIMETER": 1.716047, "COLUMBUS_": 32.0, "COLUMBUS_I": 45.0, "POLYID": 31.0, "NEIG": 45, "HOVAL": 31.799999, "INC": 16.940001, "CRIME": 17.677214, "OPEN": 3.936443, "PLUMB": 0.85389, "DISCBD": 3.78, "X": 27.940001, "Y": 29.85, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1045.0 }, "bbox": [ 6.456532001495361, 11.781330108642578, 7.185831069946289, 12.078980445861816 ], "geometry": { "type": "Polygon", "coordinates": [ [ [6.763313770294189, 11.981120109558105], [6.942171096801758, 12.0560302734375], [7.004114151000977, 12.067009925842285], [7.078045845031738, 12.076990127563477], [7.125000953674316, 12.078980445861816], [7.185831069946289, 11.848239898681641], [7.013006210327148, 11.82621955871582], [6.741261005401611, 11.799280166625977], [6.456532001495361, 11.781330108642578], [6.674379825592041, 11.931170463562012], [6.763313770294189, 11.981120109558105] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.18558, "PERIMETER": 2.108951, "COLUMBUS_": 33.0, "COLUMBUS_I": 13.0, "POLYID": 32.0, "NEIG": 13, "HOVAL": 40.299999, "INC": 18.941999, "CRIME": 19.145592, "OPEN": 2.221022, "PLUMB": 0.255102, "DISCBD": 4.76, "X": 50.110001, "Y": 29.91, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1013.0 }, "bbox": [ 10.424249649047852, 11.633870124816895, 11.204830169677734, 12.037540435791016 ], "geometry": { "type": "Polygon", "coordinates": [ [ [10.424249649047852, 11.990639686584473], [10.640899658203125, 12.013119697570801], [10.876319885253906, 12.037540435791016], [10.886269569396973, 11.946619987487793], [10.915240287780762, 11.941619873046875], [10.932220458984375, 11.938619613647461], [10.963190078735352, 11.940620422363281], [10.983169555664062, 11.936619758605957], [10.995160102844238, 11.937620162963867], [11.045080184936523, 11.853679656982422], [11.112970352172852, 11.761759757995605], [11.204830169677734, 11.638850212097168], [11.126910209655762, 11.633870124816895], [11.073969841003418, 11.65785026550293], [10.974069595336914, 11.661860466003418], [10.952119827270508, 11.727809906005859], [10.878219604492188, 11.723259925842285], [10.806260108947754, 11.718830108642578], [10.783359527587891, 11.719550132751465], [10.766209602355957, 11.720080375671387], [10.677379608154297, 11.72284984588623], [10.656399726867676, 11.72284984588623], [10.613459587097168, 11.723299980163574], [10.560500144958496, 11.723859786987305], [10.531530380249023, 11.743849754333496], [10.425640106201172, 11.741860389709473], [10.424249649047852, 11.990639686584473] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.087472, "PERIMETER": 1.507971, "COLUMBUS_": 34.0, "COLUMBUS_I": 22.0, "POLYID": 33.0, "NEIG": 22, "HOVAL": 23.6, "INC": 9.918, "CRIME": 41.968163, "OPEN": 0.0, "PLUMB": 1.023891, "DISCBD": 2.28, "X": 44.099998, "Y": 30.4, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1022.0 }, "bbox": [ 9.480667114257812, 11.76294994354248, 10.049909591674805, 12.009679794311523 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.480667114257812, 12.002750396728516], [9.755396842956543, 12.004929542541504], [10.007160186767578, 12.009679794311523], [10.02422046661377, 11.962309837341309], [10.042079925537109, 11.912759780883789], [10.048910140991211, 11.858799934387207], [10.049289703369141, 11.822830200195312], [10.049750328063965, 11.778960227966309], [10.049909591674805, 11.76294994354248], [10.026479721069336, 11.787699699401855], [9.986115455627441, 11.802860260009766], [9.973393440246582, 11.809060096740723], [9.925159454345703, 11.823849678039551], [9.877091407775879, 11.844180107116699], [9.859211921691895, 11.851739883422852], [9.831770896911621, 11.858819961547852], [9.800299644470215, 11.866829872131348], [9.639468193054199, 11.863249778747559], [9.489535331726074, 11.859919548034668], [9.488198280334473, 11.881449699401855], [9.482346534729004, 11.975689888000488], [9.480667114257812, 12.002750396728516] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.226594, "PERIMETER": 2.519132, "COLUMBUS_": 35.0, "COLUMBUS_I": 44.0, "POLYID": 34.0, "NEIG": 44, "HOVAL": 28.450001, "INC": 14.948, "CRIME": 23.974028, "OPEN": 3.029087, "PLUMB": 0.386803, "DISCBD": 3.06, "X": 30.32, "Y": 28.26, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1044.0 }, "bbox": [ 6.966993808746338, 11.329950332641602, 7.733179092407227, 11.872119903564453 ], "geometry": { "type": "Polygon", "coordinates": [ [ [7.185831069946289, 11.848239898681641], [7.317720890045166, 11.856149673461914], [7.508541107177734, 11.872119903564453], [7.484549999237061, 11.838150024414062], [7.463559150695801, 11.80918025970459], [7.469532012939453, 11.757220268249512], [7.493495941162109, 11.728249549865723], [7.492452144622803, 11.619339942932129], [7.688279151916504, 11.66327953338623], [7.733179092407227, 11.527389526367188], [7.710183143615723, 11.482439994812012], [7.674202919006348, 11.446470260620117], [7.624241828918457, 11.421500205993652], [7.562289237976074, 11.388540267944336], [7.468363761901855, 11.349579811096191], [7.398374080657959, 11.329950332641602], [7.375504970550537, 11.471489906311035], [7.315611839294434, 11.586389541625977], [7.123810768127441, 11.530790328979492], [6.9848952293396, 11.490519523620605], [6.971885204315186, 11.633569717407227], [6.966993808746338, 11.687350273132324], [7.019946098327637, 11.695340156555176], [7.013006210327148, 11.82621955871582], [7.185831069946289, 11.848239898681641] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.175453, "PERIMETER": 1.974937, "COLUMBUS_": 36.0, "COLUMBUS_I": 23.0, "POLYID": 35.0, "NEIG": 23, "HOVAL": 27.0, "INC": 12.814, "CRIME": 39.175053, "OPEN": 4.220401, "PLUMB": 0.633675, "DISCBD": 2.37, "X": 43.700001, "Y": 29.18, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1023.0 }, "bbox": [ 9.341614723205566, 11.531109809875488, 10.05659008026123, 11.866829872131348 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.489535331726074, 11.859919548034668], [9.639468193054199, 11.863249778747559], [9.800299644470215, 11.866829872131348], [9.831770896911621, 11.858819961547852], [9.859211921691895, 11.851739883422852], [9.877091407775879, 11.844180107116699], [9.925159454345703, 11.823849678039551], [9.973393440246582, 11.809060096740723], [9.986115455627441, 11.802860260009766], [10.026479721069336, 11.787699699401855], [10.049909591674805, 11.76294994354248], [10.05659008026123, 11.74390983581543], [9.917131423950195, 11.737930297851562], [9.918045997619629, 11.531109809875488], [9.500506401062012, 11.542019844055176], [9.341614723205566, 11.546170234680176], [9.343691825866699, 11.734999656677246], [9.492551803588867, 11.751970291137695], [9.489535331726074, 11.859919548034668] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.17813, "PERIMETER": 1.790058, "COLUMBUS_": 37.0, "COLUMBUS_I": 46.0, "POLYID": 36.0, "NEIG": 46, "HOVAL": 36.299999, "INC": 18.739, "CRIME": 14.305556, "OPEN": 6.773331, "PLUMB": 0.332349, "DISCBD": 4.23, "X": 27.27, "Y": 28.209999, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1046.0 }, "bbox": [ 6.456532001495361, 11.439629554748535, 7.019946098327637, 11.82621955871582 ], "geometry": { "type": "Polygon", "coordinates": [ [ [6.741261005401611, 11.799280166625977], [7.013006210327148, 11.82621955871582], [7.019946098327637, 11.695340156555176], [6.966993808746338, 11.687350273132324], [6.971885204315186, 11.633569717407227], [6.9848952293396, 11.490519523620605], [6.891400814056396, 11.479410171508789], [6.77780818939209, 11.465909957885742], [6.758334159851074, 11.462329864501953], [6.678176879882812, 11.447600364685059], [6.61027717590332, 11.444780349731445], [6.558311939239502, 11.44219970703125], [6.481366157531738, 11.439629554748535], [6.456532001495361, 11.781330108642578], [6.741261005401611, 11.799280166625977] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.121154, "PERIMETER": 1.402252, "COLUMBUS_": 38.0, "COLUMBUS_I": 30.0, "POLYID": 37.0, "NEIG": 30, "HOVAL": 43.299999, "INC": 17.017, "CRIME": 42.445076, "OPEN": 4.839273, "PLUMB": 1.230329, "DISCBD": 1.08, "X": 38.32, "Y": 28.82, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1030.0 }, "bbox": [ 8.713337898254395, 11.434320449829102, 9.095859527587891, 11.810020446777344 ], "geometry": { "type": "Polygon", "coordinates": [ [ [8.713337898254395, 11.810020446777344], [8.829165458679199, 11.80486011505127], [8.898137092590332, 11.80247974395752], [9.084967613220215, 11.792989730834961], [9.085843086242676, 11.639080047607422], [9.095859527587891, 11.559189796447754], [9.082836151123047, 11.456330299377441], [9.000834465026855, 11.458020210266113], [8.935976028442383, 11.460300445556641], [8.922977447509766, 11.434320449829102], [8.77213191986084, 11.450329780578613], [8.713337898254395, 11.810020446777344] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.053881, "PERIMETER": 0.934509, "COLUMBUS_": 39.0, "COLUMBUS_I": 24.0, "POLYID": 38.0, "NEIG": 24, "HOVAL": 22.700001, "INC": 11.107, "CRIME": 53.710938, "OPEN": 0.0, "PLUMB": 0.8, "DISCBD": 1.58, "X": 41.040001, "Y": 28.780001, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1024.0 }, "bbox": [ 9.084967613220215, 11.546170234680176, 9.343691825866699, 11.792989730834961 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.084967613220215, 11.792989730834961], [9.200423240661621, 11.767109870910645], [9.343691825866699, 11.734999656677246], [9.341614723205566, 11.546170234680176], [9.20775318145752, 11.55325984954834], [9.095859527587891, 11.559189796447754], [9.085843086242676, 11.639080047607422], [9.084967613220215, 11.792989730834961] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.174823, "PERIMETER": 2.335402, "COLUMBUS_": 40.0, "COLUMBUS_I": 47.0, "POLYID": 39.0, "NEIG": 47, "HOVAL": 39.599998, "INC": 18.476999, "CRIME": 19.100863, "OPEN": 0.0, "PLUMB": 0.314663, "DISCBD": 5.53, "X": 24.25, "Y": 26.690001, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1047.0 }, "bbox": [ 5.87490701675415, 11.057000160217285, 6.481366157531738, 11.781330108642578 ], "geometry": { "type": "Polygon", "coordinates": [ [ [6.181705951690674, 11.553569793701172], [6.394561767578125, 11.710399627685547], [6.456532001495361, 11.781330108642578], [6.481366157531738, 11.439629554748535], [6.33650016784668, 11.420660018920898], [6.335865020751953, 11.39568042755127], [6.335484027862549, 11.38070011138916], [6.356451034545898, 11.349720001220703], [6.359416007995605, 11.27379035949707], [6.316442012786865, 11.232830047607422], [6.167585849761963, 11.230850219726562], [6.179293155670166, 11.18159008026123], [6.180611133575439, 11.167719841003418], [6.212475776672363, 11.122119903564453], [6.220479965209961, 11.099960327148438], [6.220462799072266, 11.057000160217285], [6.088609218597412, 11.097979545593262], [6.088623046875, 11.132949829101562], [6.084632873535156, 11.148940086364746], [6.085638046264648, 11.160920143127441], [6.035704135894775, 11.202890396118164], [5.984754085540771, 11.203900337219238], [5.948803901672363, 11.239870071411133], [5.96979284286499, 11.263850212097168], [5.970815181732178, 11.31779956817627], [5.87490701675415, 11.313819885253906], [6.181705951690674, 11.553569793701172] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.302908, "PERIMETER": 2.285487, "COLUMBUS_": 41.0, "COLUMBUS_I": 16.0, "POLYID": 40.0, "NEIG": 16, "HOVAL": 61.950001, "INC": 29.833, "CRIME": 16.241299, "OPEN": 6.45131, "PLUMB": 0.132743, "DISCBD": 4.4, "X": 48.439999, "Y": 27.93, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1016.0 }, "bbox": [ 10.05659008026123, 11.213310241699219, 10.808690071105957, 11.74390983581543 ], "geometry": { "type": "Polygon", "coordinates": [ [ [10.05659008026123, 11.74390983581543], [10.252799987792969, 11.742819786071777], [10.425640106201172, 11.741860389709473], [10.531530380249023, 11.743849754333496], [10.560500144958496, 11.723859786987305], [10.613459587097168, 11.723299980163574], [10.656399726867676, 11.72284984588623], [10.677379608154297, 11.72284984588623], [10.766209602355957, 11.720080375671387], [10.783359527587891, 11.719550132751465], [10.806260108947754, 11.718830108642578], [10.802240371704102, 11.674869537353516], [10.803219795227051, 11.661589622497559], [10.806090354919434, 11.620909690856934], [10.808199882507324, 11.590950012207031], [10.808690071105957, 11.57466983795166], [10.804929733276367, 11.558989524841309], [10.799189567565918, 11.534999847412109], [10.802140235900879, 11.434080123901367], [10.802060127258301, 11.232259750366211], [10.73412036895752, 11.228269577026367], [10.687170028686523, 11.2222900390625], [10.613240242004395, 11.216300010681152], [10.595250129699707, 11.213310241699219], [10.555290222167969, 11.22029972076416], [10.480369567871094, 11.221309661865234], [10.421429634094238, 11.23231029510498], [10.364489555358887, 11.254300117492676], [10.343520164489746, 11.272279739379883], [10.329560279846191, 11.328240394592285], [10.320590019226074, 11.369199752807617], [10.279640197753906, 11.403180122375488], [10.226710319519043, 11.45613956451416], [10.168800354003906, 11.523090362548828], [10.109880447387695, 11.590029716491699], [10.070949554443359, 11.671970367431641], [10.05659008026123, 11.74390983581543] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.137024, "PERIMETER": 1.525097, "COLUMBUS_": 42.0, "COLUMBUS_I": 14.0, "POLYID": 41.0, "NEIG": 14, "HOVAL": 42.099998, "INC": 22.207001, "CRIME": 18.905146, "OPEN": 0.293317, "PLUMB": 0.247036, "DISCBD": 5.33, "X": 51.240002, "Y": 27.799999, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1014.0 }, "bbox": [ 10.799189567565918, 11.232259750366211, 11.141839981079102, 11.727809906005859 ], "geometry": { "type": "Polygon", "coordinates": [ [ [10.806260108947754, 11.718830108642578], [10.878219604492188, 11.723259925842285], [10.952119827270508, 11.727809906005859], [10.974069595336914, 11.661860466003418], [11.073969841003418, 11.65785026550293], [11.126910209655762, 11.633870124816895], [11.126890182495117, 11.59589958190918], [11.138870239257812, 11.569919586181641], [11.139849662780762, 11.530960083007812], [11.141839981079102, 11.505979537963867], [11.12285041809082, 11.492989540100098], [11.122790336608887, 11.336130142211914], [11.122209548950195, 11.315879821777344], [11.098469734191895, 11.303170204162598], [11.078960418701172, 11.295280456542969], [11.06859016418457, 11.2918701171875], [11.014869689941406, 11.274200439453125], [10.963910102844238, 11.265210151672363], [10.919949531555176, 11.254229545593262], [10.901860237121582, 11.252129554748535], [10.877499580383301, 11.246870040893555], [10.840740203857422, 11.238940238952637], [10.818880081176758, 11.235170364379883], [10.802060127258301, 11.232259750366211], [10.802140235900879, 11.434080123901367], [10.799189567565918, 11.534999847412109], [10.804929733276367, 11.558989524841309], [10.808690071105957, 11.57466983795166], [10.808199882507324, 11.590950012207031], [10.806090354919434, 11.620909690856934], [10.803219795227051, 11.661589622497559], [10.802240371704102, 11.674869537353516], [10.806260108947754, 11.718830108642578] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.266541, "PERIMETER": 2.176543, "COLUMBUS_": 43.0, "COLUMBUS_I": 49.0, "POLYID": 42.0, "NEIG": 49, "HOVAL": 44.333, "INC": 25.872999, "CRIME": 16.49189, "OPEN": 1.792993, "PLUMB": 0.134439, "DISCBD": 3.87, "X": 29.02, "Y": 26.58, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1049.0 }, "bbox": [ 6.75403881072998, 10.997920036315918, 7.404403209686279, 11.586389541625977 ], "geometry": { "type": "Polygon", "coordinates": [ [ [6.758334159851074, 11.462329864501953], [6.77780818939209, 11.465909957885742], [6.891400814056396, 11.479410171508789], [6.9848952293396, 11.490519523620605], [7.123810768127441, 11.530790328979492], [7.315611839294434, 11.586389541625977], [7.375504970550537, 11.471489906311035], [7.398374080657959, 11.329950332641602], [7.404403209686279, 11.29263973236084], [7.38238000869751, 11.18474006652832], [7.359377861022949, 11.124790191650391], [7.327386856079102, 11.071849822998047], [7.275406837463379, 10.997920036315918], [6.82789421081543, 11.116869926452637], [6.879881858825684, 11.211779594421387], [6.81195592880249, 11.22877025604248], [6.83095121383667, 11.262740135192871], [6.771010875701904, 11.265749931335449], [6.75403881072998, 11.292719841003418], [6.78602123260498, 11.325690269470215], [6.778051853179932, 11.380640029907227], [6.758076190948486, 11.392629623413086], [6.758334159851074, 11.462329864501953] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.060241, "PERIMETER": 0.967793, "COLUMBUS_": 44.0, "COLUMBUS_I": 29.0, "POLYID": 43.0, "NEIG": 29, "HOVAL": 25.700001, "INC": 13.38, "CRIME": 36.663612, "OPEN": 0.0, "PLUMB": 0.589226, "DISCBD": 1.95, "X": 41.09, "Y": 27.49, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1029.0 }, "bbox": [ 9.082836151123047, 11.308409690856934, 9.341614723205566, 11.559189796447754 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.095859527587891, 11.559189796447754], [9.20775318145752, 11.55325984954834], [9.341614723205566, 11.546170234680176], [9.338521957397461, 11.312379837036133], [9.207670211791992, 11.31017017364502], [9.10374927520752, 11.308409690856934], [9.082836151123047, 11.456330299377441], [9.095859527587891, 11.559189796447754] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.173337, "PERIMETER": 1.868044, "COLUMBUS_": 45.0, "COLUMBUS_I": 25.0, "POLYID": 44.0, "NEIG": 25, "HOVAL": 33.5, "INC": 16.961, "CRIME": 25.962263, "OPEN": 1.463993, "PLUMB": 0.329761, "DISCBD": 2.67, "X": 43.23, "Y": 27.309999, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1025.0 }, "bbox": [ 9.335508346557617, 11.211409568786621, 9.963891983032227, 11.546170234680176 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.341614723205566, 11.546170234680176], [9.500506401062012, 11.542019844055176], [9.918045997619629, 11.531109809875488], [9.963891983032227, 11.268340110778809], [9.778072357177734, 11.265359878540039], [9.776052474975586, 11.211409568786621], [9.656153678894043, 11.212479591369629], [9.548275947570801, 11.21343994140625], [9.546306610107422, 11.285369873046875], [9.391454696655273, 11.275400161743164], [9.335508346557617, 11.27241039276123], [9.338521957397461, 11.312379837036133], [9.341614723205566, 11.546170234680176] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.256431, "PERIMETER": 2.193039, "COLUMBUS_": 46.0, "COLUMBUS_I": 28.0, "POLYID": 45.0, "NEIG": 28, "HOVAL": 27.733, "INC": 14.135, "CRIME": 29.028488, "OPEN": 1.006118, "PLUMB": 2.3912, "DISCBD": 2.13, "X": 39.32, "Y": 25.85, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1028.0 }, "bbox": [ 8.622117042541504, 10.821869850158691, 9.178548812866211, 11.460300445556641 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.000834465026855, 11.458020210266113], [9.082836151123047, 11.456330299377441], [9.10374927520752, 11.308409690856934], [9.111679077148438, 11.157540321350098], [9.107674598693848, 11.135560035705566], [9.098838806152344, 11.115389823913574], [9.093674659729004, 11.10359001159668], [9.171592712402344, 11.09158992767334], [9.174186706542969, 11.060310363769531], [9.175572395324707, 11.048629760742188], [9.178548812866211, 10.999670028686523], [9.146570205688477, 10.976699829101562], [9.135557174682617, 10.917750358581543], [9.100429534912109, 10.899089813232422], [9.095559120178223, 10.828829765319824], [8.850795745849609, 10.821869850158691], [8.815848350524902, 10.867839813232422], [8.789886474609375, 10.899809837341309], [8.765927314758301, 10.938779830932617], [8.752955436706543, 10.978750228881836], [8.747973442077637, 11.010720252990723], [8.753978729248047, 11.035699844360352], [8.750991821289062, 11.060669898986816], [8.622117042541504, 11.059690475463867], [8.631120681762695, 11.089659690856934], [8.634133338928223, 11.126629829406738], [8.63216495513916, 11.199569702148438], [8.665151596069336, 11.246520042419434], [8.683139801025391, 11.257510185241699], [8.69713020324707, 11.267499923706055], [8.67520809173584, 11.405380249023438], [8.77213191986084, 11.450329780578613], [8.922977447509766, 11.434320449829102], [8.935976028442383, 11.460300445556641], [9.000834465026855, 11.458020210266113] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.124728, "PERIMETER": 1.841029, "COLUMBUS_": 47.0, "COLUMBUS_I": 48.0, "POLYID": 46.0, "NEIG": 48, "HOVAL": 76.099998, "INC": 18.323999, "CRIME": 16.530533, "OPEN": 9.683953, "PLUMB": 0.424628, "DISCBD": 5.27, "X": 25.469999, "Y": 25.709999, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1048.0 }, "bbox": [ 6.167585849761963, 10.978030204772949, 6.678176879882812, 11.447600364685059 ], "geometry": { "type": "Polygon", "coordinates": [ [ [6.481366157531738, 11.439629554748535], [6.558311939239502, 11.44219970703125], [6.61027717590332, 11.444780349731445], [6.678176879882812, 11.447600364685059], [6.649185180664062, 11.399640083312988], [6.647164821624756, 11.344690322875977], [6.639161109924316, 11.315719604492188], [6.522275924682617, 11.318730354309082], [6.520257949829102, 11.269769668579102], [6.516248226165771, 11.236800193786621], [6.542212009429932, 11.209819793701172], [6.549192905426025, 11.180850028991699], [6.55515718460083, 11.10791015625], [6.534173011779785, 11.096920013427734], [6.537120819091797, 10.978030204772949], [6.220462799072266, 11.057000160217285], [6.220479965209961, 11.099960327148438], [6.212475776672363, 11.122119903564453], [6.180611133575439, 11.167719841003418], [6.179293155670166, 11.18159008026123], [6.167585849761963, 11.230850219726562], [6.316442012786865, 11.232830047607422], [6.359416007995605, 11.27379035949707], [6.356451034545898, 11.349720001220703], [6.335484027862549, 11.38070011138916], [6.335865020751953, 11.39568042755127], [6.33650016784668, 11.420660018920898], [6.481366157531738, 11.439629554748535] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.245249, "PERIMETER": 2.079986, "COLUMBUS_": 48.0, "COLUMBUS_I": 15.0, "POLYID": 47.0, "NEIG": 15, "HOVAL": 42.5, "INC": 18.950001, "CRIME": 27.822861, "OPEN": 0.0, "PLUMB": 0.268817, "DISCBD": 5.57, "X": 50.889999, "Y": 25.24, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1015.0 }, "bbox": [ 10.588159561157227, 10.788629531860352, 11.287420272827148, 11.315879821777344 ], "geometry": { "type": "Polygon", "coordinates": [ [ [11.098469734191895, 11.303170204162598], [11.122209548950195, 11.315879821777344], [11.120759963989258, 11.265190124511719], [11.119729995727539, 11.199250221252441], [11.123700141906738, 11.127309799194336], [11.144650459289551, 11.056369781494141], [11.181599617004395, 11.025400161743164], [11.221540451049805, 10.978429794311523], [11.256489753723145, 10.922479629516602], [11.275449752807617, 10.888500213623047], [11.287420272827148, 10.84253978729248], [11.286399841308594, 10.790590286254883], [11.013669967651367, 10.788629531860352], [10.963720321655273, 10.799619674682617], [10.88379955291748, 10.807620048522949], [10.781900405883789, 10.812629699707031], [10.708979606628418, 10.819640159606934], [10.694000244140625, 10.833629608154297], [10.649069786071777, 10.890580177307129], [10.616109848022461, 10.925559997558594], [10.588159561157227, 10.978509902954102], [10.592169761657715, 10.994500160217285], [10.691129684448242, 11.140359878540039], [10.687170028686523, 11.2222900390625], [10.73412036895752, 11.228269577026367], [10.802060127258301, 11.232259750366211], [10.818880081176758, 11.235170364379883], [10.840740203857422, 11.238940238952637], [10.877499580383301, 11.246870040893555], [10.901860237121582, 11.252129554748535], [10.919949531555176, 11.254229545593262], [10.963910102844238, 11.265210151672363], [11.014869689941406, 11.274200439453125], [11.06859016418457, 11.2918701171875], [11.078960418701172, 11.295280456542969], [11.098469734191895, 11.303170204162598] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.069762, "PERIMETER": 1.102032, "COLUMBUS_": 49.0, "COLUMBUS_I": 27.0, "POLYID": 48.0, "NEIG": 27, "HOVAL": 26.799999, "INC": 11.813, "CRIME": 26.645266, "OPEN": 4.884389, "PLUMB": 1.034807, "DISCBD": 2.33, "X": 41.209999, "Y": 25.9, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1027.0 }, "bbox": [ 9.093674659729004, 11.048029899597168, 9.3948974609375, 11.312379837036133 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.207670211791992, 11.31017017364502], [9.338521957397461, 11.312379837036133], [9.335508346557617, 11.27241039276123], [9.391454696655273, 11.275400161743164], [9.393032073974609, 11.262740135192871], [9.393250465393066, 11.251399993896484], [9.3948974609375, 11.165470123291016], [9.39454460144043, 11.139530181884766], [9.393360137939453, 11.052599906921387], [9.282283782958984, 11.048029899597168], [9.175572395324707, 11.048629760742188], [9.174186706542969, 11.060310363769531], [9.171592712402344, 11.09158992767334], [9.093674659729004, 11.10359001159668], [9.098838806152344, 11.115389823913574], [9.107674598693848, 11.135560035705566], [9.111679077148438, 11.157540321350098], [9.10374927520752, 11.308409690856934], [9.207670211791992, 11.31017017364502] ] ] } }, { "type": "Feature", "properties": { "AREA": 0.205964, "PERIMETER": 2.199169, "COLUMBUS_": 50.0, "COLUMBUS_I": 26.0, "POLYID": 49.0, "NEIG": 26, "HOVAL": 35.799999, "INC": 18.796, "CRIME": 22.541491, "OPEN": 0.259826, "PLUMB": 0.901442, "DISCBD": 3.03, "X": 42.669998, "Y": 24.959999, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1026.0 }, "bbox": [ 9.095559120178223, 10.828829765319824, 9.78189754486084, 11.285369873046875 ], "geometry": { "type": "Polygon", "coordinates": [ [ [9.391454696655273, 11.275400161743164], [9.546306610107422, 11.285369873046875], [9.548275947570801, 11.21343994140625], [9.656153678894043, 11.212479591369629], [9.776052474975586, 11.211409568786621], [9.779011726379395, 11.118490219116211], [9.774969100952148, 11.007590293884277], [9.775935173034668, 10.92866039276123], [9.78189754486084, 10.853730201721191], [9.095559120178223, 10.828829765319824], [9.100429534912109, 10.899089813232422], [9.135557174682617, 10.917750358581543], [9.146570205688477, 10.976699829101562], [9.178548812866211, 10.999670028686523], [9.175572395324707, 11.048629760742188], [9.282283782958984, 11.048029899597168], [9.393360137939453, 11.052599906921387], [9.39454460144043, 11.139530181884766], [9.3948974609375, 11.165470123291016], [9.393250465393066, 11.251399993896484], [9.393032073974609, 11.262740135192871], [9.391454696655273, 11.275400161743164] ] ] } } ] } ================================================ FILE: packages/turf-moran-index/test/in/point.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "OBJECTID": 1, "AREA": 0.309441, "PERIMETER": 2.440629, "COLUMBUS_": 2.0, "COLUMBUS_I": 5.0, "POLYID": 1.0, "NEIG": 5, "HOVAL": 80.467003, "INC": 19.531, "CRIME": 15.72598, "OPEN": 2.850747, "PLUMB": 0.217155, "DISCBD": 5.03, "X": 38.799999, "Y": 44.07, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1005.0, "ORIG_FID": 0 }, "geometry": { "type": "Point", "coordinates": [8.827218469203906, 14.369076018912065] } }, { "type": "Feature", "properties": { "OBJECTID": 2, "AREA": 0.259329, "PERIMETER": 2.236939, "COLUMBUS_": 3.0, "COLUMBUS_I": 1.0, "POLYID": 2.0, "NEIG": 1, "HOVAL": 44.567001, "INC": 21.232, "CRIME": 18.801754, "OPEN": 5.29672, "PLUMB": 0.320581, "DISCBD": 4.27, "X": 35.619999, "Y": 42.380001, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1001.0, "ORIG_FID": 1 }, "geometry": { "type": "Point", "coordinates": [8.332658372724923, 14.03162400632397] } }, { "type": "Feature", "properties": { "OBJECTID": 3, "AREA": 0.192468, "PERIMETER": 2.187547, "COLUMBUS_": 4.0, "COLUMBUS_I": 6.0, "POLYID": 3.0, "NEIG": 6, "HOVAL": 26.35, "INC": 15.956, "CRIME": 30.626781, "OPEN": 4.534649, "PLUMB": 0.374404, "DISCBD": 3.89, "X": 39.82, "Y": 41.18, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1006.0, "ORIG_FID": 2 }, "geometry": { "type": "Point", "coordinates": [9.012265409371699, 13.81971907996915] } }, { "type": "Feature", "properties": { "OBJECTID": 4, "AREA": 0.083841, "PERIMETER": 1.427635, "COLUMBUS_": 5.0, "COLUMBUS_I": 2.0, "POLYID": 4.0, "NEIG": 2, "HOVAL": 33.200001, "INC": 4.477, "CRIME": 32.38776, "OPEN": 0.394427, "PLUMB": 1.186944, "DISCBD": 3.7, "X": 36.5, "Y": 40.52, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1002.0, "ORIG_FID": 3 }, "geometry": { "type": "Point", "coordinates": [8.460800893307432, 13.71696217022814] } }, { "type": "Feature", "properties": { "OBJECTID": 5, "AREA": 0.488888, "PERIMETER": 2.997133, "COLUMBUS_": 6.0, "COLUMBUS_I": 7.0, "POLYID": 5.0, "NEIG": 7, "HOVAL": 23.225, "INC": 11.252, "CRIME": 50.73151, "OPEN": 0.405664, "PLUMB": 0.624596, "DISCBD": 2.83, "X": 40.009998, "Y": 38.0, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1007.0, "ORIG_FID": 4 }, "geometry": { "type": "Point", "coordinates": [9.007982127497687, 13.296366430537295] } }, { "type": "Feature", "properties": { "OBJECTID": 6, "AREA": 0.283079, "PERIMETER": 2.335634, "COLUMBUS_": 7.0, "COLUMBUS_I": 8.0, "POLYID": 6.0, "NEIG": 8, "HOVAL": 28.75, "INC": 16.028999, "CRIME": 26.066658, "OPEN": 0.563075, "PLUMB": 0.25413, "DISCBD": 3.78, "X": 43.75, "Y": 39.279999, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1008.0, "ORIG_FID": 5 }, "geometry": { "type": "Point", "coordinates": [9.739925828001205, 13.474632743210716] } }, { "type": "Feature", "properties": { "OBJECTID": 7, "AREA": 0.257084, "PERIMETER": 2.554577, "COLUMBUS_": 8.0, "COLUMBUS_I": 4.0, "POLYID": 7.0, "NEIG": 4, "HOVAL": 75.0, "INC": 8.438, "CRIME": 0.178269, "OPEN": 0.0, "PLUMB": 2.402402, "DISCBD": 2.74, "X": 33.360001, "Y": 38.41, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1004.0, "ORIG_FID": 6 }, "geometry": { "type": "Point", "coordinates": [8.118750060628727, 13.29570386705354] } }, { "type": "Feature", "properties": { "OBJECTID": 8, "AREA": 0.204954, "PERIMETER": 2.139524, "COLUMBUS_": 9.0, "COLUMBUS_I": 3.0, "POLYID": 8.0, "NEIG": 3, "HOVAL": 37.125, "INC": 11.337, "CRIME": 38.425858, "OPEN": 3.483478, "PLUMB": 2.739726, "DISCBD": 2.89, "X": 36.709999, "Y": 38.709999, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1003.0, "ORIG_FID": 7 }, "geometry": { "type": "Point", "coordinates": [8.49648817195755, 13.402612361972411] } }, { "type": "Feature", "properties": { "OBJECTID": 9, "AREA": 0.500755, "PERIMETER": 3.169707, "COLUMBUS_": 10.0, "COLUMBUS_I": 18.0, "POLYID": 9.0, "NEIG": 18, "HOVAL": 52.599998, "INC": 17.586, "CRIME": 30.515917, "OPEN": 0.527488, "PLUMB": 0.890736, "DISCBD": 3.17, "X": 43.439999, "Y": 35.919998, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1018.0, "ORIG_FID": 8 }, "geometry": { "type": "Point", "coordinates": [9.630793442508985, 12.942724931765365] } }, { "type": "Feature", "properties": { "OBJECTID": 10, "AREA": 0.246689, "PERIMETER": 2.087235, "COLUMBUS_": 11.0, "COLUMBUS_I": 10.0, "POLYID": 10.0, "NEIG": 10, "HOVAL": 96.400002, "INC": 13.598, "CRIME": 34.000835, "OPEN": 1.548348, "PLUMB": 0.557724, "DISCBD": 4.33, "X": 47.610001, "Y": 36.419998, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1010.0, "ORIG_FID": 9 }, "geometry": { "type": "Point", "coordinates": [10.366382709801059, 13.001889360253092] } }, { "type": "Feature", "properties": { "OBJECTID": 11, "AREA": 0.041012, "PERIMETER": 0.919488, "COLUMBUS_": 12.0, "COLUMBUS_I": 38.0, "POLYID": 11.0, "NEIG": 38, "HOVAL": 19.700001, "INC": 7.467, "CRIME": 62.275448, "OPEN": 0.0, "PLUMB": 1.479915, "DISCBD": 1.9, "X": 37.849998, "Y": 36.299999, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1038.0, "ORIG_FID": 10 }, "geometry": { "type": "Point", "coordinates": [8.669735412857047, 12.98012156123324] } }, { "type": "Feature", "properties": { "OBJECTID": 12, "AREA": 0.035769, "PERIMETER": 0.902125, "COLUMBUS_": 13.0, "COLUMBUS_I": 37.0, "POLYID": 12.0, "NEIG": 37, "HOVAL": 19.9, "INC": 10.048, "CRIME": 56.705669, "OPEN": 3.157895, "PLUMB": 2.635046, "DISCBD": 1.91, "X": 37.130001, "Y": 36.119999, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1037.0, "ORIG_FID": 11 }, "geometry": { "type": "Point", "coordinates": [8.544995589641779, 12.953125683982199] } }, { "type": "Feature", "properties": { "OBJECTID": 13, "AREA": 0.034377, "PERIMETER": 0.93659, "COLUMBUS_": 14.0, "COLUMBUS_I": 39.0, "POLYID": 13.0, "NEIG": 39, "HOVAL": 41.700001, "INC": 9.549, "CRIME": 46.716129, "OPEN": 0.0, "PLUMB": 6.328423, "DISCBD": 2.09, "X": 35.950001, "Y": 36.400002, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1039.0, "ORIG_FID": 12 }, "geometry": { "type": "Point", "coordinates": [8.349223482851055, 12.996094141102329] } }, { "type": "Feature", "properties": { "OBJECTID": 14, "AREA": 0.060884, "PERIMETER": 1.128424, "COLUMBUS_": 15.0, "COLUMBUS_I": 40.0, "POLYID": 14.0, "NEIG": 40, "HOVAL": 42.900002, "INC": 9.963, "CRIME": 57.066132, "OPEN": 0.477104, "PLUMB": 5.110962, "DISCBD": 1.83, "X": 35.720001, "Y": 35.599998, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1040.0, "ORIG_FID": 13 }, "geometry": { "type": "Point", "coordinates": [8.292701516920957, 12.863707688216895] } }, { "type": "Feature", "properties": { "OBJECTID": 15, "AREA": 0.106653, "PERIMETER": 1.437606, "COLUMBUS_": 16.0, "COLUMBUS_I": 9.0, "POLYID": 15.0, "NEIG": 9, "HOVAL": 18.0, "INC": 9.873, "CRIME": 48.585487, "OPEN": 0.174325, "PLUMB": 1.311475, "DISCBD": 1.7, "X": 39.610001, "Y": 34.91, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1009.0, "ORIG_FID": 14 }, "geometry": { "type": "Point", "coordinates": [8.973462206070096, 12.741586740380374] } }, { "type": "Feature", "properties": { "OBJECTID": 16, "AREA": 0.093154, "PERIMETER": 1.340061, "COLUMBUS_": 17.0, "COLUMBUS_I": 36.0, "POLYID": 16.0, "NEIG": 36, "HOVAL": 18.799999, "INC": 7.625, "CRIME": 54.838711, "OPEN": 0.533737, "PLUMB": 4.6875, "DISCBD": 1.1, "X": 37.599998, "Y": 34.080002, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1036.0, "ORIG_FID": 15 }, "geometry": { "type": "Point", "coordinates": [8.655866335560422, 12.627315808754123] } }, { "type": "Feature", "properties": { "OBJECTID": 17, "AREA": 0.102087, "PERIMETER": 1.382359, "COLUMBUS_": 18.0, "COLUMBUS_I": 11.0, "POLYID": 17.0, "NEIG": 11, "HOVAL": 41.75, "INC": 9.798, "CRIME": 36.868774, "OPEN": 0.448232, "PLUMB": 1.619745, "DISCBD": 4.47, "X": 48.580002, "Y": 34.459999, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1011.0, "ORIG_FID": 16 }, "geometry": { "type": "Point", "coordinates": [10.528621192777081, 12.647475597059021] } }, { "type": "Feature", "properties": { "OBJECTID": 18, "AREA": 0.055494, "PERIMETER": 1.183352, "COLUMBUS_": 19.0, "COLUMBUS_I": 42.0, "POLYID": 18.0, "NEIG": 42, "HOVAL": 60.0, "INC": 13.185, "CRIME": 43.962486, "OPEN": 24.998068, "PLUMB": 13.849287, "DISCBD": 1.58, "X": 36.150002, "Y": 33.919998, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1042.0, "ORIG_FID": 17 }, "geometry": { "type": "Point", "coordinates": [8.487918125725194, 12.545342471590065] } }, { "type": "Feature", "properties": { "OBJECTID": 19, "AREA": 0.061342, "PERIMETER": 1.249247, "COLUMBUS_": 20.0, "COLUMBUS_I": 41.0, "POLYID": 19.0, "NEIG": 41, "HOVAL": 30.6, "INC": 11.618, "CRIME": 54.521965, "OPEN": 0.111111, "PLUMB": 2.622951, "DISCBD": 1.53, "X": 35.759998, "Y": 34.66, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1041.0, "ORIG_FID": 18 }, "geometry": { "type": "Point", "coordinates": [8.276665687561035, 12.716493200126546] } }, { "type": "Feature", "properties": { "OBJECTID": 20, "AREA": 0.444629, "PERIMETER": 3.174601, "COLUMBUS_": 21.0, "COLUMBUS_I": 17.0, "POLYID": 20.0, "NEIG": 17, "HOVAL": 81.266998, "INC": 31.07, "CRIME": 0.223797, "OPEN": 5.318607, "PLUMB": 0.167224, "DISCBD": 3.57, "X": 46.73, "Y": 31.91, "NSA": 0.0, "NSB": 1.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1017.0, "ORIG_FID": 19 }, "geometry": { "type": "Point", "coordinates": [10.190581526179411, 12.256899149288646] } }, { "type": "Feature", "properties": { "OBJECTID": 21, "AREA": 0.699258, "PERIMETER": 5.07749, "COLUMBUS_": 22.0, "COLUMBUS_I": 43.0, "POLYID": 21.0, "NEIG": 43, "HOVAL": 19.975, "INC": 10.655, "CRIME": 40.074074, "OPEN": 1.643756, "PLUMB": 1.559576, "DISCBD": 1.41, "X": 34.080002, "Y": 30.42, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1043.0, "ORIG_FID": 20 }, "geometry": { "type": "Point", "coordinates": [7.847423618980445, 12.084997322022751] } }, { "type": "Feature", "properties": { "OBJECTID": 22, "AREA": 0.192891, "PERIMETER": 1.992717, "COLUMBUS_": 23.0, "COLUMBUS_I": 19.0, "POLYID": 22.0, "NEIG": 19, "HOVAL": 30.450001, "INC": 11.709, "CRIME": 33.705048, "OPEN": 4.539754, "PLUMB": 1.785714, "DISCBD": 2.45, "X": 43.369999, "Y": 33.459999, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1019.0, "ORIG_FID": 21 }, "geometry": { "type": "Point", "coordinates": [9.655244367498366, 12.462765864102987] } }, { "type": "Feature", "properties": { "OBJECTID": 23, "AREA": 0.24712, "PERIMETER": 2.147528, "COLUMBUS_": 24.0, "COLUMBUS_I": 12.0, "POLYID": 23.0, "NEIG": 12, "HOVAL": 47.733002, "INC": 21.155001, "CRIME": 20.048504, "OPEN": 0.532632, "PLUMB": 0.216763, "DISCBD": 4.78, "X": 49.610001, "Y": 32.650002, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1012.0, "ORIG_FID": 22 }, "geometry": { "type": "Point", "coordinates": [10.655119895935059, 12.247625542087841] } }, { "type": "Feature", "properties": { "OBJECTID": 24, "AREA": 0.192226, "PERIMETER": 2.240392, "COLUMBUS_": 25.0, "COLUMBUS_I": 35.0, "POLYID": 24.0, "NEIG": 35, "HOVAL": 53.200001, "INC": 14.236, "CRIME": 38.297871, "OPEN": 0.62622, "PLUMB": 18.811075, "DISCBD": 0.42, "X": 36.599998, "Y": 32.09, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1035.0, "ORIG_FID": 23 }, "geometry": { "type": "Point", "coordinates": [8.460766315460205, 12.25595634881094] } }, { "type": "Feature", "properties": { "OBJECTID": 25, "AREA": 0.17168, "PERIMETER": 1.666489, "COLUMBUS_": 26.0, "COLUMBUS_I": 32.0, "POLYID": 25.0, "NEIG": 32, "HOVAL": 17.9, "INC": 8.461, "CRIME": 61.299175, "OPEN": 0.0, "PLUMB": 6.529851, "DISCBD": 0.83, "X": 39.360001, "Y": 32.880001, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1032.0, "ORIG_FID": 24 }, "geometry": { "type": "Point", "coordinates": [8.938751825549428, 12.380509826386749] } }, { "type": "Feature", "properties": { "OBJECTID": 26, "AREA": 0.107298, "PERIMETER": 1.406823, "COLUMBUS_": 27.0, "COLUMBUS_I": 20.0, "POLYID": 26.0, "NEIG": 20, "HOVAL": 20.299999, "INC": 8.085, "CRIME": 40.969742, "OPEN": 1.238288, "PLUMB": 2.534275, "DISCBD": 1.5, "X": 41.130001, "Y": 33.139999, "NSA": 1.0, "NSB": 1.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1020.0, "ORIG_FID": 25 }, "geometry": { "type": "Point", "coordinates": [9.250921130765516, 12.413783516339139] } }, { "type": "Feature", "properties": { "OBJECTID": 27, "AREA": 0.137802, "PERIMETER": 1.780751, "COLUMBUS_": 28.0, "COLUMBUS_I": 21.0, "POLYID": 27.0, "NEIG": 21, "HOVAL": 34.099998, "INC": 10.822, "CRIME": 52.79443, "OPEN": 19.368099, "PLUMB": 1.483516, "DISCBD": 2.24, "X": 43.950001, "Y": 31.610001, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1021.0, "ORIG_FID": 26 }, "geometry": { "type": "Point", "coordinates": [9.737004148455057, 12.149692840219398] } }, { "type": "Feature", "properties": { "OBJECTID": 28, "AREA": 0.174773, "PERIMETER": 1.637148, "COLUMBUS_": 29.0, "COLUMBUS_I": 31.0, "POLYID": 28.0, "NEIG": 31, "HOVAL": 22.85, "INC": 7.856, "CRIME": 56.919785, "OPEN": 0.509305, "PLUMB": 3.001072, "DISCBD": 1.41, "X": 41.310001, "Y": 30.9, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1031.0, "ORIG_FID": 27 }, "geometry": { "type": "Point", "coordinates": [9.297975780128178, 11.977787924704431] } }, { "type": "Feature", "properties": { "OBJECTID": 29, "AREA": 0.085972, "PERIMETER": 1.312158, "COLUMBUS_": 30.0, "COLUMBUS_I": 33.0, "POLYID": 29.0, "NEIG": 33, "HOVAL": 32.5, "INC": 8.681, "CRIME": 60.750446, "OPEN": 0.0, "PLUMB": 2.645051, "DISCBD": 0.81, "X": 39.720001, "Y": 30.639999, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1033.0, "ORIG_FID": 28 }, "geometry": { "type": "Point", "coordinates": [8.977861502440565, 11.994012072407752] } }, { "type": "Feature", "properties": { "OBJECTID": 30, "AREA": 0.104355, "PERIMETER": 1.524931, "COLUMBUS_": 31.0, "COLUMBUS_I": 34.0, "POLYID": 30.0, "NEIG": 34, "HOVAL": 22.5, "INC": 13.906, "CRIME": 68.892044, "OPEN": 1.63878, "PLUMB": 15.600624, "DISCBD": 0.37, "X": 38.290001, "Y": 30.35, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1034.0, "ORIG_FID": 29 }, "geometry": { "type": "Point", "coordinates": [8.688719493192551, 11.938718355531325] } }, { "type": "Feature", "properties": { "OBJECTID": 31, "AREA": 0.117409, "PERIMETER": 1.716047, "COLUMBUS_": 32.0, "COLUMBUS_I": 45.0, "POLYID": 31.0, "NEIG": 45, "HOVAL": 31.799999, "INC": 16.940001, "CRIME": 17.677214, "OPEN": 3.936443, "PLUMB": 0.85389, "DISCBD": 3.78, "X": 27.940001, "Y": 29.85, "NSA": 1.0, "NSB": 1.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1045.0, "ORIG_FID": 30 }, "geometry": { "type": "Point", "coordinates": [6.892482325993742, 11.914150957988443] } }, { "type": "Feature", "properties": { "OBJECTID": 32, "AREA": 0.18558, "PERIMETER": 2.108951, "COLUMBUS_": 33.0, "COLUMBUS_I": 13.0, "POLYID": 32.0, "NEIG": 13, "HOVAL": 40.299999, "INC": 18.941999, "CRIME": 19.145592, "OPEN": 2.221022, "PLUMB": 0.255102, "DISCBD": 4.76, "X": 50.110001, "Y": 29.91, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1013.0, "ORIG_FID": 31 }, "geometry": { "type": "Point", "coordinates": [10.76378352110245, 11.844431047650394] } }, { "type": "Feature", "properties": { "OBJECTID": 33, "AREA": 0.087472, "PERIMETER": 1.507971, "COLUMBUS_": 34.0, "COLUMBUS_I": 22.0, "POLYID": 33.0, "NEIG": 22, "HOVAL": 23.6, "INC": 9.918, "CRIME": 41.968163, "OPEN": 0.0, "PLUMB": 1.023891, "DISCBD": 2.28, "X": 44.099998, "Y": 30.4, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1022.0, "ORIG_FID": 32 }, "geometry": { "type": "Point", "coordinates": [9.765288352966309, 11.935583349396865] } }, { "type": "Feature", "properties": { "OBJECTID": 34, "AREA": 0.226594, "PERIMETER": 2.519132, "COLUMBUS_": 35.0, "COLUMBUS_I": 44.0, "POLYID": 34.0, "NEIG": 44, "HOVAL": 28.450001, "INC": 14.948, "CRIME": 23.974028, "OPEN": 3.029087, "PLUMB": 0.386803, "DISCBD": 3.06, "X": 30.32, "Y": 28.26, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1044.0, "ORIG_FID": 33 }, "geometry": { "type": "Point", "coordinates": [7.15854012966156, 11.692810153517712] } }, { "type": "Feature", "properties": { "OBJECTID": 35, "AREA": 0.175453, "PERIMETER": 1.974937, "COLUMBUS_": 36.0, "COLUMBUS_I": 23.0, "POLYID": 35.0, "NEIG": 23, "HOVAL": 27.0, "INC": 12.814, "CRIME": 39.175053, "OPEN": 4.220401, "PLUMB": 0.633675, "DISCBD": 2.37, "X": 43.700001, "Y": 29.18, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1023.0, "ORIG_FID": 34 }, "geometry": { "type": "Point", "coordinates": [9.668248963690392, 11.692541207168869] } }, { "type": "Feature", "properties": { "OBJECTID": 36, "AREA": 0.17813, "PERIMETER": 1.790058, "COLUMBUS_": 37.0, "COLUMBUS_I": 46.0, "POLYID": 36.0, "NEIG": 46, "HOVAL": 36.299999, "INC": 18.739, "CRIME": 14.305556, "OPEN": 6.773331, "PLUMB": 0.332349, "DISCBD": 4.23, "X": 27.27, "Y": 28.209999, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1046.0, "ORIG_FID": 35 }, "geometry": { "type": "Point", "coordinates": [6.728837547719331, 11.634364976122034] } }, { "type": "Feature", "properties": { "OBJECTID": 37, "AREA": 0.121154, "PERIMETER": 1.402252, "COLUMBUS_": 38.0, "COLUMBUS_I": 30.0, "POLYID": 37.0, "NEIG": 30, "HOVAL": 43.299999, "INC": 17.017, "CRIME": 42.445076, "OPEN": 4.839273, "PLUMB": 1.230329, "DISCBD": 1.08, "X": 38.32, "Y": 28.82, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1030.0, "ORIG_FID": 36 }, "geometry": { "type": "Point", "coordinates": [8.912362855719715, 11.630310543083501] } }, { "type": "Feature", "properties": { "OBJECTID": 38, "AREA": 0.053881, "PERIMETER": 0.934509, "COLUMBUS_": 39.0, "COLUMBUS_I": 24.0, "POLYID": 38.0, "NEIG": 24, "HOVAL": 22.700001, "INC": 11.107, "CRIME": 53.710938, "OPEN": 0.0, "PLUMB": 0.8, "DISCBD": 1.58, "X": 41.040001, "Y": 28.780001, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1024.0, "ORIG_FID": 37 }, "geometry": { "type": "Point", "coordinates": [9.210527335403754, 11.659838850006437] } }, { "type": "Feature", "properties": { "OBJECTID": 39, "AREA": 0.174823, "PERIMETER": 2.335402, "COLUMBUS_": 40.0, "COLUMBUS_I": 47.0, "POLYID": 39.0, "NEIG": 47, "HOVAL": 39.599998, "INC": 18.476999, "CRIME": 19.100863, "OPEN": 0.0, "PLUMB": 0.314663, "DISCBD": 5.53, "X": 24.25, "Y": 26.690001, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1047.0, "ORIG_FID": 38 }, "geometry": { "type": "Point", "coordinates": [6.221942933898137, 11.402513578924118] } }, { "type": "Feature", "properties": { "OBJECTID": 40, "AREA": 0.302908, "PERIMETER": 2.285487, "COLUMBUS_": 41.0, "COLUMBUS_I": 16.0, "POLYID": 40.0, "NEIG": 16, "HOVAL": 61.950001, "INC": 29.833, "CRIME": 16.241299, "OPEN": 6.45131, "PLUMB": 0.132743, "DISCBD": 4.4, "X": 48.439999, "Y": 27.93, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1016.0, "ORIG_FID": 39 }, "geometry": { "type": "Point", "coordinates": [10.492492572016712, 11.507197282569432] } }, { "type": "Feature", "properties": { "OBJECTID": 41, "AREA": 0.137024, "PERIMETER": 1.525097, "COLUMBUS_": 42.0, "COLUMBUS_I": 14.0, "POLYID": 41.0, "NEIG": 14, "HOVAL": 42.099998, "INC": 22.207001, "CRIME": 18.905146, "OPEN": 0.293317, "PLUMB": 0.247036, "DISCBD": 5.33, "X": 51.240002, "Y": 27.799999, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1014.0, "ORIG_FID": 40 }, "geometry": { "type": "Point", "coordinates": [10.953587436376452, 11.479245868637376] } }, { "type": "Feature", "properties": { "OBJECTID": 42, "AREA": 0.266541, "PERIMETER": 2.176543, "COLUMBUS_": 43.0, "COLUMBUS_I": 49.0, "POLYID": 42.0, "NEIG": 49, "HOVAL": 44.333, "INC": 25.872999, "CRIME": 16.49189, "OPEN": 1.792993, "PLUMB": 0.134439, "DISCBD": 3.87, "X": 29.02, "Y": 26.58, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1049.0, "ORIG_FID": 41 }, "geometry": { "type": "Point", "coordinates": [7.110050905390898, 11.295438892865233] } }, { "type": "Feature", "properties": { "OBJECTID": 43, "AREA": 0.060241, "PERIMETER": 0.967793, "COLUMBUS_": 44.0, "COLUMBUS_I": 29.0, "POLYID": 43.0, "NEIG": 29, "HOVAL": 25.700001, "INC": 13.38, "CRIME": 36.663612, "OPEN": 0.0, "PLUMB": 0.589226, "DISCBD": 1.95, "X": 41.09, "Y": 27.49, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1029.0, "ORIG_FID": 42 }, "geometry": { "type": "Point", "coordinates": [9.214330280393483, 11.432771789368283] } }, { "type": "Feature", "properties": { "OBJECTID": 44, "AREA": 0.173337, "PERIMETER": 1.868044, "COLUMBUS_": 45.0, "COLUMBUS_I": 25.0, "POLYID": 44.0, "NEIG": 25, "HOVAL": 33.5, "INC": 16.961, "CRIME": 25.962263, "OPEN": 1.463993, "PLUMB": 0.329761, "DISCBD": 2.67, "X": 43.23, "Y": 27.309999, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1025.0, "ORIG_FID": 43 }, "geometry": { "type": "Point", "coordinates": [9.641904437882928, 11.391036212262494] } }, { "type": "Feature", "properties": { "OBJECTID": 45, "AREA": 0.256431, "PERIMETER": 2.193039, "COLUMBUS_": 46.0, "COLUMBUS_I": 28.0, "POLYID": 45.0, "NEIG": 28, "HOVAL": 27.733, "INC": 14.135, "CRIME": 29.028488, "OPEN": 1.006118, "PLUMB": 2.3912, "DISCBD": 2.13, "X": 39.32, "Y": 25.85, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1028.0, "ORIG_FID": 44 }, "geometry": { "type": "Point", "coordinates": [8.910340473827834, 11.148639078569651] } }, { "type": "Feature", "properties": { "OBJECTID": 46, "AREA": 0.124728, "PERIMETER": 1.841029, "COLUMBUS_": 47.0, "COLUMBUS_I": 48.0, "POLYID": 46.0, "NEIG": 48, "HOVAL": 76.099998, "INC": 18.323999, "CRIME": 16.530533, "OPEN": 9.683953, "PLUMB": 0.424628, "DISCBD": 5.27, "X": 25.469999, "Y": 25.709999, "NSA": 0.0, "NSB": 0.0, "EW": 0.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1048.0, "ORIG_FID": 45 }, "geometry": { "type": "Point", "coordinates": [6.423385031583335, 11.219238093398321] } }, { "type": "Feature", "properties": { "OBJECTID": 47, "AREA": 0.245249, "PERIMETER": 2.079986, "COLUMBUS_": 48.0, "COLUMBUS_I": 15.0, "POLYID": 47.0, "NEIG": 15, "HOVAL": 42.5, "INC": 18.950001, "CRIME": 27.822861, "OPEN": 0.0, "PLUMB": 0.268817, "DISCBD": 5.57, "X": 50.889999, "Y": 25.24, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1015.0, "ORIG_FID": 46 }, "geometry": { "type": "Point", "coordinates": [10.935302271773978, 11.010030663664558] } }, { "type": "Feature", "properties": { "OBJECTID": 48, "AREA": 0.069762, "PERIMETER": 1.102032, "COLUMBUS_": 49.0, "COLUMBUS_I": 27.0, "POLYID": 48.0, "NEIG": 27, "HOVAL": 26.799999, "INC": 11.813, "CRIME": 26.645266, "OPEN": 4.884389, "PLUMB": 1.034807, "DISCBD": 2.33, "X": 41.209999, "Y": 25.9, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 1.0, "THOUS": 1000.0, "NEIGNO": 1027.0, "ORIG_FID": 47 }, "geometry": { "type": "Point", "coordinates": [9.251957402833794, 11.181253873699426] } }, { "type": "Feature", "properties": { "OBJECTID": 49, "AREA": 0.205964, "PERIMETER": 2.199169, "COLUMBUS_": 50.0, "COLUMBUS_I": 26.0, "POLYID": 49.0, "NEIG": 26, "HOVAL": 35.799999, "INC": 18.796, "CRIME": 22.541491, "OPEN": 0.259826, "PLUMB": 0.901442, "DISCBD": 3.03, "X": 42.669998, "Y": 24.959999, "NSA": 0.0, "NSB": 0.0, "EW": 1.0, "CP": 0.0, "THOUS": 1000.0, "NEIGNO": 1026.0, "ORIG_FID": 48 }, "geometry": { "type": "Point", "coordinates": [9.610312938690186, 11.030196383904508] } } ] } ================================================ FILE: packages/turf-moran-index/test.ts ================================================ import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { moranIndex } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); test("turf-moran-index", (t) => { const pointPath = path.join(__dirname, "test", "in", "point.json"); const pointJson = loadJsonFileSync(pointPath); const result = moranIndex(pointJson, { inputField: "CRIME", }); t.deepEqual( result, { moranIndex: 0.15665417693293948, expectedMoranIndex: -0.020833333333333332, stdNorm: 0.022208244679327364, zNorm: 7.991964823383264, }, "point clustered pattern" ); const columbusPath = path.join(__dirname, "test", "in", "columbus.json"); const columbusJson = loadJsonFileSync(columbusPath); const result1 = moranIndex(columbusJson, { inputField: "CRIME", }); t.deepEqual( result1, { moranIndex: 0.14834323679862615, expectedMoranIndex: -0.020833333333333332, stdNorm: 0.023841569242427897, zNorm: 7.0958655620241995, }, "polygon clustered pattern" ); t.end(); }); ================================================ FILE: packages/turf-moran-index/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-nearest-neighbor-analysis/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-nearest-neighbor-analysis/README.md ================================================ # @turf/nearest-neighbor-analysis ## NearestNeighborStatistics Nearest neighbour statistics. Type: [object][1] ### Properties * `arealUnits` **[string][2]** * `observedMeanDistance` **[number][3]** * `expectedMeanDistance` **[number][3]** * `numberOfPoints` **[number][3]** * `zScore` **[number][3]** ## NearestNeighborStudyArea Nearest neighbour study area polygon feature. Type: [object][1] ### Properties * `properties` **[GeoJsonProperties][4]** * `properties.nearestNeighborAnalysis` **[NearestNeighborStatistics][5]** ## nearestNeighborAnalysis Nearest Neighbor Analysis calculates an index based on the average distances between points in the dataset, thereby providing inference as to whether the data is clustered, dispersed, or randomly distributed within the study area. It returns a [Feature][4]<[Polygon][6]> of the study area, with the results of the analysis attached as part of of the `nearestNeighborAnalysis` property of the study area's `properties`. The attached [*z*-score][7] indicates how many standard deviations above or below the expected mean distance the data's observed mean distance is. The more negative, the more clustered. The more positive, the more evenly dispersed. A *z*-score between -2 and 2 indicates a seemingly random distribution. That is, within *p* of less than 0.05, the distribution appears statistically significantly neither clustered nor dispersed. **Remarks** * Though the analysis will work on any [FeatureCollection][8] type, it works best with [Point][9] collections. * This analysis is *very* sensitive to the study area provided. If no [Feature][4]<[Polygon][6]> is passed as the study area, the function draws a box around the data, which may distort the findings. This analysis works best with a bounded area of interest within with the data is either clustered, dispersed, or randomly distributed. For example, a city's subway stops may look extremely clustered if the study area is an entire state. On the other hand, they may look rather evenly dispersed if the study area is limited to the city's downtown. **Bibliography** Philip J. Clark and Francis C. Evans, “Distance to Nearest Neighbor as a Measure of Spatial Relationships in Populations,” *Ecology* 35, no. 4 (1954): 445–453, doi:[10.2307/1931034][10]. ### Parameters * `dataset` **[FeatureCollection][8]\** FeatureCollection (pref. of points) to study * `options` **[Object][1]** Optional parameters (optional, default `{}`) * `options.studyArea` **[Feature][4]<[Polygon][6]>?** polygon representing the study area * `options.properties` **[GeoJsonProperties][4]** properties (optional, default `{}`) ### Examples ```javascript var bbox = [-65, 40, -63, 42]; var dataset = turf.randomPoint(100, { bbox: bbox }); var nearestNeighborStudyArea = turf.nearestNeighborAnalysis(dataset); //addToMap var addToMap = [dataset, nearestNeighborStudyArea]; ``` Returns **[NearestNeighborStudyArea][11]** A polygon of the study area or an approximation of one. [1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [4]: https://tools.ietf.org/html/rfc7946#section-3.2 [5]: #nearestneighborstatistics [6]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [7]: https://en.wikipedia.org/wiki/Standard_score [8]: https://tools.ietf.org/html/rfc7946#section-3.3 [9]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [10]: http://doi.org/10.2307/1931034 [11]: #nearestneighborstudyarea --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/nearest-neighbor-analysis ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-nearest-neighbor-analysis/bench.ts ================================================ import Benchmark from "benchmark"; import { glob } from "glob"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { nearestNeighborAnalysis } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); /** * Benchmark Results * * brazil-states-bbox: 5.565ms * brazil-states-brazil-itself-as-study-area: 4.516ms * random-large-study-area: 13.540ms * random-outlier: 6.838ms * random: 6.862ms * squares: 3.393ms */ const suite = new Benchmark.Suite("turf-nearest-neighbor"); glob.sync(path.join(__dirname, "test", "in", "*.json")).forEach((filepath) => { const { name } = path.parse(filepath); const geojson = loadJsonFileSync(filepath); const options = geojson.options; console.time(name); nearestNeighborAnalysis(geojson, options); console.timeEnd(name); suite.add(name, () => nearestNeighborAnalysis(geojson, options)); }); suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-nearest-neighbor-analysis/index.ts ================================================ import { FeatureCollection, Feature, Point, Polygon, GeoJsonProperties, } from "geojson"; import { area } from "@turf/area"; import { bbox } from "@turf/bbox"; import { bboxPolygon } from "@turf/bbox-polygon"; import { centroid } from "@turf/centroid"; import { distance } from "@turf/distance"; import { nearestPoint } from "@turf/nearest-point"; import { featureEach } from "@turf/meta"; import { convertArea, featureCollection, Units, AreaUnits, } from "@turf/helpers"; /** * Nearest neighbour statistics. * * @typedef {object} NearestNeighborStatistics * @property {(Units & AreaUnits)} units * @property {string} arealUnits * @property {number} observedMeanDistance * @property {number} expectedMeanDistance * @property {number} numberOfPoints * @property {number} zScore */ interface NearestNeighborStatistics { units: Units & AreaUnits; arealUnits: string; observedMeanDistance: number; expectedMeanDistance: number; numberOfPoints: number; zScore: number; } /** * Nearest neighbour study area polygon feature. * * @typedef {object} NearestNeighborStudyArea * @extends Feature * @property {GeoJsonProperties} properties * @property {NearestNeighborStatistics} properties.nearestNeighborAnalysis */ interface NearestNeighborStudyArea extends Feature { properties: { nearestNeighborAnalysis: NearestNeighborStatistics; [key: string]: any; }; } /** * Nearest Neighbor Analysis calculates an index based on the average distances * between points in the dataset, thereby providing inference as to whether the * data is clustered, dispersed, or randomly distributed within the study area. * * It returns a {@link Feature}<{@link Polygon}> of the study area, with the results of * the analysis attached as part of of the `nearestNeighborAnalysis` property * of the study area's `properties`. The attached * [_z_-score](https://en.wikipedia.org/wiki/Standard_score) indicates how many * standard deviations above or below the expected mean distance the data's * observed mean distance is. The more negative, the more clustered. The more * positive, the more evenly dispersed. A _z_-score between -2 and 2 indicates * a seemingly random distribution. That is, within _p_ of less than 0.05, the * distribution appears statistically significantly neither clustered nor * dispersed. * * **Remarks** * * - Though the analysis will work on any {@link FeatureCollection} type, it * works best with {@link Point} collections. * * - This analysis is _very_ sensitive to the study area provided. * If no {@link Feature}<{@link Polygon}> is passed as the study area, the function draws a box * around the data, which may distort the findings. This analysis works best * with a bounded area of interest within with the data is either clustered, * dispersed, or randomly distributed. For example, a city's subway stops may * look extremely clustered if the study area is an entire state. On the other * hand, they may look rather evenly dispersed if the study area is limited to * the city's downtown. * * **Bibliography** * * Philip J. Clark and Francis C. Evans, “Distance to Nearest Neighbor as a * Measure of Spatial Relationships in Populations,” _Ecology_ 35, no. 4 * (1954): 445–453, doi:[10.2307/1931034](http://doi.org/10.2307/1931034). * * @function * @param {FeatureCollection} dataset FeatureCollection (pref. of points) to study * @param {Object} [options={}] Optional parameters * @param {Feature} [options.studyArea] polygon representing the study area * @param {Units & AreaUnits} [options.units='kilometers'] unit of measurement for distances and, squared, area. * @param {GeoJsonProperties} [options.properties={}] properties * @returns {NearestNeighborStudyArea} A polygon of the study area or an approximation of one. * @example * var bbox = [-65, 40, -63, 42]; * var dataset = turf.randomPoint(100, { bbox: bbox }); * var nearestNeighborStudyArea = turf.nearestNeighborAnalysis(dataset); * * //addToMap * var addToMap = [dataset, nearestNeighborStudyArea]; */ function nearestNeighborAnalysis( dataset: FeatureCollection, options?: { studyArea?: Feature; units?: Units & AreaUnits; properties?: GeoJsonProperties; } ): NearestNeighborStudyArea { // Optional params options = options || {}; const studyArea = options.studyArea || bboxPolygon(bbox(dataset)); const properties = options.properties || {}; const units = options.units || "kilometers"; const features: Array> = []; featureEach(dataset, (feature) => { features.push(centroid(feature)); }); const n = features.length; const observedMeanDistance = features .map((feature, index) => { const otherFeatures = featureCollection( features.filter((f, i) => { return i !== index; }) ); // Have to add the ! to make typescript validation pass // see https://stackoverflow.com/a/40350534/1979085 return distance( feature, nearestPoint(feature, otherFeatures).geometry!.coordinates, { units } ); }) .reduce((sum, value) => { return sum + value; }, 0) / n; const populationDensity = n / convertArea(area(studyArea), "meters", units); const expectedMeanDistance = 1 / (2 * Math.sqrt(populationDensity)); const variance = 0.26136 / Math.sqrt(n * populationDensity); properties.nearestNeighborAnalysis = { units: units, arealUnits: units + "²", observedMeanDistance: observedMeanDistance, expectedMeanDistance: expectedMeanDistance, nearestNeighborIndex: observedMeanDistance / expectedMeanDistance, numberOfPoints: n, zScore: (observedMeanDistance - expectedMeanDistance) / variance, }; studyArea.properties = properties; return studyArea as NearestNeighborStudyArea; } export { nearestNeighborAnalysis, NearestNeighborStatistics, NearestNeighborStudyArea, }; export default nearestNeighborAnalysis; ================================================ FILE: packages/turf-nearest-neighbor-analysis/package.json ================================================ { "name": "@turf/nearest-neighbor-analysis", "version": "7.3.4", "description": "Calculates an index based the average distances between points in the dataset, thereby providing inference as to whether the data is clustered, dispersed, or randomly distributed within the study area.", "author": "Turf Authors", "contributors": [ "Moacir P. de Sá Pereira <@muziejus>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "nearest-neighbor" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/area": "workspace:*", "@turf/bbox": "workspace:*", "@turf/bbox-polygon": "workspace:*", "@turf/centroid": "workspace:*", "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@turf/nearest-point": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-nearest-neighbor-analysis/test/in/brazil-states-bbox.json ================================================ { "type": "FeatureCollection", "options": { "properties": { "fill-opacity": 0, "stroke-width": 5, "stroke": "#a00" } }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.88208407352717, -7.057130117724942], [-66.82171046898179, -9.881279559543092], [-69.1474805975379, -11.210291061575166], [-70.725681756201, -10.794974967190143], [-70.76721336563949, -9.341368636842564], [-72.9268570564416, -9.715153121789085], [-73.88208407352717, -7.057130117724942] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.88208407352717, -7.057130117724942], [-72.8022622281261, -5.18820769299234], [-69.97811278630795, -4.232980675906789], [-69.47973347304593, -1.07657835858062], [-69.85351795799244, 1.7475710832375322], [-67.23702656336681, 2.07982395874555], [-65.49269896694972, 0.7923440661519807], [-63.5407133233401, 2.204418787061056], [-61.713322508046005, -1.325768015211633], [-58.97223628510486, 0.37702797176695846], [-56.480339718794724, -2.4055898606126904], [-58.307730534088826, -7.098661727163441], [-58.515388581281336, -8.718394495265027], [-61.630259289169004, -8.92605254245754], [-63.62377654221711, -7.929293915933486], [-66.82171046898179, -9.881279559543092], [-73.88208407352717, -7.057130117724942] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-63.5407133233401, 2.204418787061056], [-64.57900355930266, 4.280999258986167], [-62.128638602431025, 4.239467649547665], [-60.17665295882142, 5.402352713825728], [-59.30448916061288, 3.7826199457241407], [-59.96899491162891, 2.121355568184052], [-58.930704675666355, 1.2491917699755053], [-58.97223628510486, 0.37702797176695846], [-61.713322508046005, -1.325768015211633], [-63.5407133233401, 2.204418787061056] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.930704675666355, 1.2491917699755053], [-56.85412420374125, 2.245950396499558], [-54.77754373181614, 2.2874820059380605], [-52.1610523371905, -1.325768015211633], [-50.58285117852741, 0.4600911906439631], [-45.88977931197666, -1.2427047963346283], [-48.34014426884829, -5.2297393024308425], [-50.333661521896396, -9.798216340666087], [-56.93718742261825, -9.258305417965559], [-58.307730534088826, -7.098661727163441], [-56.480339718794724, -2.4055898606126904], [-58.97223628510486, 0.37702797176695846], [-58.930704675666355, 1.2491917699755053] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-54.77754373181614, 2.2874820059380605], [-52.867089697645035, 2.329013615376563], [-51.45501497673596, 4.364062477863172], [-49.79375059919587, 1.083065332221496], [-50.58285117852741, 0.4600911906439631], [-52.1610523371905, -1.325768015211633], [-54.77754373181614, 2.2874820059380605] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.88977931197666, -1.2427047963346283], [-41.695086758687935, -2.9455007833132187], [-42.941035041843, -6.724877242216922], [-45.88977931197666, -7.846230697056481], [-46.47122184411569, -9.964342778420097], [-48.34014426884829, -5.2297393024308425], [-45.88977931197666, -1.2427047963346283] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-41.695086758687935, -2.9455007833132187], [-41.15517583598741, -2.9455007833132187], [-40.24148042834036, -7.472446212109962], [-42.60878216633498, -9.632089902912078], [-43.68860401173604, -9.50749507459657], [-44.02085688724406, -10.753443357751639], [-46.47122184411569, -9.964342778420097], [-45.88977931197666, -7.846230697056481], [-42.941035041843, -6.724877242216922], [-41.695086758687935, -2.9455007833132187] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40.24148042834036, -7.472446212109962], [-41.15517583598741, -2.9455007833132187], [-39.36931663013181, -2.9455007833132187], [-37.2927361582067, -4.772891598607317], [-38.78787409799278, -7.721635868740976], [-40.24148042834036, -7.472446212109962] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.11592319811732, -6.396399371764385], [-37.2927361582067, -4.772891598607317], [-35.54840856178961, -5.18820769299234], [-34.96696602965057, -6.558750804462913], [-38.11592319811732, -6.396399371764385] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-34.96696602965057, -6.558750804462913], [-34.71777637301956, -7.5139778215484645], [-36.91895167326018, -8.136951963125998], [-38.78787409799278, -7.721635868740976], [-38.11592319811732, -6.396399371764385], [-34.96696602965057, -6.558750804462913] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-34.71777637301956, -7.5139778215484645], [-35.09156085796608, -9.009115761334545], [-38.16489995641525, -9.216773808527055], [-39.36931663013181, -8.593799666949522], [-40.57373330384838, -9.590558293473578], [-41.47583362752317, -8.598522814873235], [-40.24148042834036, -7.472446212109962], [-38.78787409799278, -7.721635868740976], [-36.91895167326018, -8.136951963125998], [-34.71777637301956, -7.5139778215484645] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.16489995641525, -9.216773808527055], [-35.09156085796608, -9.009115761334545], [-36.420572359998154, -10.545785310559129], [-38.16489995641525, -9.216773808527055] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-36.420572359998154, -10.545785310559129], [-37.54192581483771, -11.75020198427569], [-38.16489995641525, -9.216773808527055], [-36.420572359998154, -10.545785310559129] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-37.54192581483771, -11.75020198427569], [-38.99553214518529, -13.120745095746265], [-38.62174766023877, -15.737236490371906], [-39.452379849008814, -18.312196275559042], [-40.61526491328688, -17.85534857173552], [-40.03382238114784, -15.944894537564416], [-44.270046543875075, -14.200566941147322], [-45.88977931197666, -15.155793958232874], [-46.47122184411569, -11.127227842698158], [-45.608300504540644, -10.242232701334094], [-44.02085688724406, -10.753443357751639], [-43.68860401173604, -9.50749507459657], [-42.60878216633498, -9.632089902912078], [-41.47583362752317, -8.598522814873235], [-40.57373330384838, -9.590558293473578], [-39.36931663013181, -8.593799666949522], [-38.16489995641525, -9.216773808527055], [-37.54192581483771, -11.75020198427569] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-48.34014426884829, -5.2297393024308425], [-46.47122184411569, -9.964342778420097], [-45.608300504540644, -10.242232701334094], [-46.47122184411569, -11.127227842698158], [-46.229564521023654, -12.801567866978697], [-47.634106908393754, -13.36993475237728], [-50.458256350211904, -12.830023829676751], [-50.333661521896396, -9.798216340666087], [-48.34014426884829, -5.2297393024308425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-66.82171046898179, -9.881279559543092], [-63.62377654221711, -7.929293915933486], [-61.630259289169004, -8.92605254245754], [-61.505664460853495, -10.961101404944149], [-59.8028684738749, -11.251822671013667], [-60.55043744376795, -13.743719237323798], [-65.03585126312619, -11.9163284220297], [-65.2435093103187, -9.839747950104591], [-66.82171046898179, -9.881279559543092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-61.630259289169004, -8.92605254245754], [-58.515388581281336, -8.718394495265027], [-58.307730534088826, -7.098661727163441], [-56.93718742261825, -9.258305417965559], [-50.333661521896396, -9.798216340666087], [-50.458256350211904, -12.830023829676751], [-52.825558088206535, -16.15255258475693], [-53.157810963714546, -18.104538228366533], [-57.60169317363429, -17.772285352858514], [-58.349262143527326, -17.64769052454301], [-58.39079375296583, -16.31867902251094], [-60.17665295882142, -16.277147413072434], [-60.55043744376795, -13.743719237323798], [-59.8028684738749, -11.251822671013667], [-61.505664460853495, -10.961101404944149], [-61.630259289169004, -8.92605254245754] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-57.60169317363429, -17.772285352858514], [-53.157810963714546, -18.104538228366533], [-51.12276210122794, -19.14282846432909], [-50.99816727291243, -20.181118700291645], [-54.1961011996771, -24.04355837807235], [-55.40051787339367, -23.877431940318342], [-55.815833967778694, -22.340762391093758], [-57.97547765858081, -22.008509515585743], [-57.60169317363429, -17.772285352858514] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-47.21879081400873, -15.488046833740892], [-47.21879081400873, -16.111020975318425], [-48.38167587828679, -16.069489365879924], [-48.34014426884829, -15.363452005425387], [-47.21879081400873, -15.488046833740892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-51.12276210122794, -19.14282846432909], [-53.157810963714546, -18.104538228366533], [-52.825558088206535, -16.15255258475693], [-50.458256350211904, -12.830023829676751], [-47.634106908393754, -13.36993475237728], [-46.229564521023654, -12.801567866978697], [-45.88977931197666, -15.155793958232874], [-47.21879081400873, -15.737236490371906], [-47.21879081400873, -15.488046833740892], [-48.34014426884829, -15.363452005425387], [-48.38167587828679, -16.069489365879924], [-47.21879081400873, -16.111020975318425], [-47.343385642324236, -18.395259494436047], [-49.08771323874133, -18.43679110387455], [-51.12276210122794, -19.14282846432909] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-50.99816727291243, -20.181118700291645], [-51.12276210122794, -19.14282846432909], [-49.08771323874133, -18.43679110387455], [-47.343385642324236, -18.395259494436047], [-47.21879081400873, -16.111020975318425], [-47.21879081400873, -15.737236490371906], [-45.88977931197666, -15.155793958232874], [-44.270046543875075, -14.200566941147322], [-40.03382238114784, -15.944894537564416], [-40.61526491328688, -17.85534857173552], [-41.861213196441945, -20.67949801355367], [-42.857971822966, -22.050041125024244], [-46.30509540636168, -22.839141704355786], [-47.343385642324236, -20.181118700291645], [-50.99816727291243, -20.181118700291645] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40.61526491328688, -17.85534857173552], [-39.452379849008814, -18.312196275559042], [-40.03382238114784, -20.014992262537636], [-40.90598617935639, -21.302472155131206], [-41.861213196441945, -20.67949801355367], [-40.61526491328688, -17.85534857173552] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40.90598617935639, -21.302472155131206], [-41.861213196441945, -23.046799751548296], [-44.436172981629085, -23.29598940817931], [-44.61148792994024, -22.451448426620757], [-42.857971822966, -22.050041125024244], [-41.861213196441945, -20.67949801355367], [-40.90598617935639, -21.302472155131206] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-44.436172981629085, -23.29598940817931], [-48.21554944053278, -25.206443442350412], [-49.33690289537235, -24.666532519649884], [-49.83528220863437, -22.88067331379429], [-52.968303409301065, -22.560633774111686], [-50.99816727291243, -20.181118700291645], [-47.343385642324236, -20.181118700291645], [-46.30509540636168, -22.839141704355786], [-44.61148792994024, -22.451448426620757], [-44.436172981629085, -23.29598940817931] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-48.21554944053278, -25.206443442350412], [-48.5062707066023, -26.12013884999746], [-51.28888853898195, -26.410860116066978], [-53.57312705809957, -26.203202068874468], [-54.1961011996771, -24.04355837807235], [-52.968303409301065, -22.560633774111686], [-49.83528220863437, -22.88067331379429], [-49.33690289537235, -24.666532519649884], [-48.21554944053278, -25.206443442350412] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-53.57312705809957, -26.203202068874468], [-51.28888853898195, -26.410860116066978], [-48.5062707066023, -26.12013884999746], [-48.29861265940979, -27.94752966529156], [-49.75221898975737, -29.27654116732363], [-51.57960980505146, -27.449150352029534], [-53.86384832416908, -27.158429085960016], [-53.57312705809957, -26.203202068874468] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-53.86384832416908, -27.158429085960016], [-51.57960980505146, -27.449150352029534], [-49.75221898975737, -29.27654116732363], [-50.499787959650405, -31.228526810933232], [-52.825558088206535, -33.263575673419844], [-57.43556673588028, -30.231768184409184], [-55.77430235834019, -28.404377369115082], [-53.86384832416908, -27.158429085960016] ] ] } } ] } ================================================ FILE: packages/turf-nearest-neighbor-analysis/test/in/brazil-states-brazil-itself-as-study-area.json ================================================ { "type": "FeatureCollection", "options": { "properties": { "fill-opacity": 0, "stroke-width": 5, "stroke": "#a00" }, "studyArea": { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-66.82171046898179, -9.881279559543092], [-69.1474805975379, -11.210291061575166], [-70.725681756201, -10.794974967190143], [-70.76721336563949, -9.341368636842564], [-72.9268570564416, -9.715153121789085], [-73.88208407352717, -7.057130117724942], [-72.8022622281261, -5.18820769299234], [-69.97811278630795, -4.232980675906789], [-69.47973347304593, -1.07657835858062], [-69.85351795799244, 1.7475710832375322], [-67.23702656336681, 2.07982395874555], [-65.49269896694972, 0.7923440661519807], [-63.5407133233401, 2.204418787061056], [-64.57900355930266, 4.280999258986167], [-62.128638602431025, 4.239467649547665], [-60.17665295882142, 5.402352713825728], [-59.30448916061288, 3.7826199457241407], [-59.96899491162891, 2.121355568184052], [-58.930704675666355, 1.2491917699755053], [-56.85412420374125, 2.245950396499558], [-54.77754373181614, 2.2874820059380605], [-52.867089697645035, 2.329013615376563], [-51.45501497673596, 4.364062477863172], [-49.79375059919587, 1.083065332221496], [-50.58285117852741, 0.4600911906439631], [-45.88977931197666, -1.2427047963346283], [-41.695086758687935, -2.9455007833132187], [-41.15517583598741, -2.9455007833132187], [-39.36931663013181, -2.9455007833132187], [-37.2927361582067, -4.772891598607317], [-35.54840856178961, -5.18820769299234], [-34.96696602965057, -6.558750804462913], [-34.71777637301956, -7.5139778215484645], [-35.09156085796608, -9.009115761334545], [-36.420572359998154, -10.545785310559129], [-37.54192581483771, -11.75020198427569], [-38.99553214518529, -13.120745095746265], [-38.62174766023877, -15.737236490371906], [-39.452379849008814, -18.312196275559042], [-40.03382238114784, -20.014992262537636], [-40.90598617935639, -21.302472155131206], [-41.861213196441945, -23.046799751548296], [-44.436172981629085, -23.29598940817931], [-48.21554944053278, -25.206443442350412], [-48.5062707066023, -26.12013884999746], [-48.29861265940979, -27.94752966529156], [-49.75221898975737, -29.27654116732363], [-50.499787959650405, -31.228526810933232], [-52.825558088206535, -33.263575673419844], [-57.43556673588028, -30.231768184409184], [-55.77430235834019, -28.404377369115082], [-53.86384832416908, -27.158429085960016], [-53.57312705809957, -26.203202068874468], [-54.1961011996771, -24.04355837807235], [-55.40051787339367, -23.877431940318342], [-55.815833967778694, -22.340762391093758], [-57.97547765858081, -22.008509515585743], [-57.60169317363429, -17.772285352858514], [-58.349262143527326, -17.64769052454301], [-58.39079375296583, -16.31867902251094], [-60.17665295882142, -16.277147413072434], [-60.55043744376795, -13.743719237323798], [-65.03585126312619, -11.9163284220297], [-65.2435093103187, -9.839747950104591], [-66.82171046898179, -9.881279559543092] ] ] } } }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.88208407352717, -7.057130117724942], [-66.82171046898179, -9.881279559543092], [-69.1474805975379, -11.210291061575166], [-70.725681756201, -10.794974967190143], [-70.76721336563949, -9.341368636842564], [-72.9268570564416, -9.715153121789085], [-73.88208407352717, -7.057130117724942] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.88208407352717, -7.057130117724942], [-72.8022622281261, -5.18820769299234], [-69.97811278630795, -4.232980675906789], [-69.47973347304593, -1.07657835858062], [-69.85351795799244, 1.7475710832375322], [-67.23702656336681, 2.07982395874555], [-65.49269896694972, 0.7923440661519807], [-63.5407133233401, 2.204418787061056], [-61.713322508046005, -1.325768015211633], [-58.97223628510486, 0.37702797176695846], [-56.480339718794724, -2.4055898606126904], [-58.307730534088826, -7.098661727163441], [-58.515388581281336, -8.718394495265027], [-61.630259289169004, -8.92605254245754], [-63.62377654221711, -7.929293915933486], [-66.82171046898179, -9.881279559543092], [-73.88208407352717, -7.057130117724942] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-63.5407133233401, 2.204418787061056], [-64.57900355930266, 4.280999258986167], [-62.128638602431025, 4.239467649547665], [-60.17665295882142, 5.402352713825728], [-59.30448916061288, 3.7826199457241407], [-59.96899491162891, 2.121355568184052], [-58.930704675666355, 1.2491917699755053], [-58.97223628510486, 0.37702797176695846], [-61.713322508046005, -1.325768015211633], [-63.5407133233401, 2.204418787061056] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.930704675666355, 1.2491917699755053], [-56.85412420374125, 2.245950396499558], [-54.77754373181614, 2.2874820059380605], [-52.1610523371905, -1.325768015211633], [-50.58285117852741, 0.4600911906439631], [-45.88977931197666, -1.2427047963346283], [-48.34014426884829, -5.2297393024308425], [-50.333661521896396, -9.798216340666087], [-56.93718742261825, -9.258305417965559], [-58.307730534088826, -7.098661727163441], [-56.480339718794724, -2.4055898606126904], [-58.97223628510486, 0.37702797176695846], [-58.930704675666355, 1.2491917699755053] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-54.77754373181614, 2.2874820059380605], [-52.867089697645035, 2.329013615376563], [-51.45501497673596, 4.364062477863172], [-49.79375059919587, 1.083065332221496], [-50.58285117852741, 0.4600911906439631], [-52.1610523371905, -1.325768015211633], [-54.77754373181614, 2.2874820059380605] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.88977931197666, -1.2427047963346283], [-41.695086758687935, -2.9455007833132187], [-42.941035041843, -6.724877242216922], [-45.88977931197666, -7.846230697056481], [-46.47122184411569, -9.964342778420097], [-48.34014426884829, -5.2297393024308425], [-45.88977931197666, -1.2427047963346283] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-41.695086758687935, -2.9455007833132187], [-41.15517583598741, -2.9455007833132187], [-40.24148042834036, -7.472446212109962], [-42.60878216633498, -9.632089902912078], [-43.68860401173604, -9.50749507459657], [-44.02085688724406, -10.753443357751639], [-46.47122184411569, -9.964342778420097], [-45.88977931197666, -7.846230697056481], [-42.941035041843, -6.724877242216922], [-41.695086758687935, -2.9455007833132187] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40.24148042834036, -7.472446212109962], [-41.15517583598741, -2.9455007833132187], [-39.36931663013181, -2.9455007833132187], [-37.2927361582067, -4.772891598607317], [-38.78787409799278, -7.721635868740976], [-40.24148042834036, -7.472446212109962] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.11592319811732, -6.396399371764385], [-37.2927361582067, -4.772891598607317], [-35.54840856178961, -5.18820769299234], [-34.96696602965057, -6.558750804462913], [-38.11592319811732, -6.396399371764385] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-34.96696602965057, -6.558750804462913], [-34.71777637301956, -7.5139778215484645], [-36.91895167326018, -8.136951963125998], [-38.78787409799278, -7.721635868740976], [-38.11592319811732, -6.396399371764385], [-34.96696602965057, -6.558750804462913] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-34.71777637301956, -7.5139778215484645], [-35.09156085796608, -9.009115761334545], [-38.16489995641525, -9.216773808527055], [-39.36931663013181, -8.593799666949522], [-40.57373330384838, -9.590558293473578], [-41.47583362752317, -8.598522814873235], [-40.24148042834036, -7.472446212109962], [-38.78787409799278, -7.721635868740976], [-36.91895167326018, -8.136951963125998], [-34.71777637301956, -7.5139778215484645] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.16489995641525, -9.216773808527055], [-35.09156085796608, -9.009115761334545], [-36.420572359998154, -10.545785310559129], [-38.16489995641525, -9.216773808527055] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-36.420572359998154, -10.545785310559129], [-37.54192581483771, -11.75020198427569], [-38.16489995641525, -9.216773808527055], [-36.420572359998154, -10.545785310559129] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-37.54192581483771, -11.75020198427569], [-38.99553214518529, -13.120745095746265], [-38.62174766023877, -15.737236490371906], [-39.452379849008814, -18.312196275559042], [-40.61526491328688, -17.85534857173552], [-40.03382238114784, -15.944894537564416], [-44.270046543875075, -14.200566941147322], [-45.88977931197666, -15.155793958232874], [-46.47122184411569, -11.127227842698158], [-45.608300504540644, -10.242232701334094], [-44.02085688724406, -10.753443357751639], [-43.68860401173604, -9.50749507459657], [-42.60878216633498, -9.632089902912078], [-41.47583362752317, -8.598522814873235], [-40.57373330384838, -9.590558293473578], [-39.36931663013181, -8.593799666949522], [-38.16489995641525, -9.216773808527055], [-37.54192581483771, -11.75020198427569] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-48.34014426884829, -5.2297393024308425], [-46.47122184411569, -9.964342778420097], [-45.608300504540644, -10.242232701334094], [-46.47122184411569, -11.127227842698158], [-46.229564521023654, -12.801567866978697], [-47.634106908393754, -13.36993475237728], [-50.458256350211904, -12.830023829676751], [-50.333661521896396, -9.798216340666087], [-48.34014426884829, -5.2297393024308425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-66.82171046898179, -9.881279559543092], [-63.62377654221711, -7.929293915933486], [-61.630259289169004, -8.92605254245754], [-61.505664460853495, -10.961101404944149], [-59.8028684738749, -11.251822671013667], [-60.55043744376795, -13.743719237323798], [-65.03585126312619, -11.9163284220297], [-65.2435093103187, -9.839747950104591], [-66.82171046898179, -9.881279559543092] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-61.630259289169004, -8.92605254245754], [-58.515388581281336, -8.718394495265027], [-58.307730534088826, -7.098661727163441], [-56.93718742261825, -9.258305417965559], [-50.333661521896396, -9.798216340666087], [-50.458256350211904, -12.830023829676751], [-52.825558088206535, -16.15255258475693], [-53.157810963714546, -18.104538228366533], [-57.60169317363429, -17.772285352858514], [-58.349262143527326, -17.64769052454301], [-58.39079375296583, -16.31867902251094], [-60.17665295882142, -16.277147413072434], [-60.55043744376795, -13.743719237323798], [-59.8028684738749, -11.251822671013667], [-61.505664460853495, -10.961101404944149], [-61.630259289169004, -8.92605254245754] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-57.60169317363429, -17.772285352858514], [-53.157810963714546, -18.104538228366533], [-51.12276210122794, -19.14282846432909], [-50.99816727291243, -20.181118700291645], [-54.1961011996771, -24.04355837807235], [-55.40051787339367, -23.877431940318342], [-55.815833967778694, -22.340762391093758], [-57.97547765858081, -22.008509515585743], [-57.60169317363429, -17.772285352858514] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-47.21879081400873, -15.488046833740892], [-47.21879081400873, -16.111020975318425], [-48.38167587828679, -16.069489365879924], [-48.34014426884829, -15.363452005425387], [-47.21879081400873, -15.488046833740892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-51.12276210122794, -19.14282846432909], [-53.157810963714546, -18.104538228366533], [-52.825558088206535, -16.15255258475693], [-50.458256350211904, -12.830023829676751], [-47.634106908393754, -13.36993475237728], [-46.229564521023654, -12.801567866978697], [-45.88977931197666, -15.155793958232874], [-47.21879081400873, -15.737236490371906], [-47.21879081400873, -15.488046833740892], [-48.34014426884829, -15.363452005425387], [-48.38167587828679, -16.069489365879924], [-47.21879081400873, -16.111020975318425], [-47.343385642324236, -18.395259494436047], [-49.08771323874133, -18.43679110387455], [-51.12276210122794, -19.14282846432909] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-50.99816727291243, -20.181118700291645], [-51.12276210122794, -19.14282846432909], [-49.08771323874133, -18.43679110387455], [-47.343385642324236, -18.395259494436047], [-47.21879081400873, -16.111020975318425], [-47.21879081400873, -15.737236490371906], [-45.88977931197666, -15.155793958232874], [-44.270046543875075, -14.200566941147322], [-40.03382238114784, -15.944894537564416], [-40.61526491328688, -17.85534857173552], [-41.861213196441945, -20.67949801355367], [-42.857971822966, -22.050041125024244], [-46.30509540636168, -22.839141704355786], [-47.343385642324236, -20.181118700291645], [-50.99816727291243, -20.181118700291645] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40.61526491328688, -17.85534857173552], [-39.452379849008814, -18.312196275559042], [-40.03382238114784, -20.014992262537636], [-40.90598617935639, -21.302472155131206], [-41.861213196441945, -20.67949801355367], [-40.61526491328688, -17.85534857173552] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40.90598617935639, -21.302472155131206], [-41.861213196441945, -23.046799751548296], [-44.436172981629085, -23.29598940817931], [-44.61148792994024, -22.451448426620757], [-42.857971822966, -22.050041125024244], [-41.861213196441945, -20.67949801355367], [-40.90598617935639, -21.302472155131206] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-44.436172981629085, -23.29598940817931], [-48.21554944053278, -25.206443442350412], [-49.33690289537235, -24.666532519649884], [-49.83528220863437, -22.88067331379429], [-52.968303409301065, -22.560633774111686], [-50.99816727291243, -20.181118700291645], [-47.343385642324236, -20.181118700291645], [-46.30509540636168, -22.839141704355786], [-44.61148792994024, -22.451448426620757], [-44.436172981629085, -23.29598940817931] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-48.21554944053278, -25.206443442350412], [-48.5062707066023, -26.12013884999746], [-51.28888853898195, -26.410860116066978], [-53.57312705809957, -26.203202068874468], [-54.1961011996771, -24.04355837807235], [-52.968303409301065, -22.560633774111686], [-49.83528220863437, -22.88067331379429], [-49.33690289537235, -24.666532519649884], [-48.21554944053278, -25.206443442350412] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-53.57312705809957, -26.203202068874468], [-51.28888853898195, -26.410860116066978], [-48.5062707066023, -26.12013884999746], [-48.29861265940979, -27.94752966529156], [-49.75221898975737, -29.27654116732363], [-51.57960980505146, -27.449150352029534], [-53.86384832416908, -27.158429085960016], [-53.57312705809957, -26.203202068874468] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-53.86384832416908, -27.158429085960016], [-51.57960980505146, -27.449150352029534], [-49.75221898975737, -29.27654116732363], [-50.499787959650405, -31.228526810933232], [-52.825558088206535, -33.263575673419844], [-57.43556673588028, -30.231768184409184], [-55.77430235834019, -28.404377369115082], [-53.86384832416908, -27.158429085960016] ] ] } } ] } ================================================ FILE: packages/turf-nearest-neighbor-analysis/test/in/random-large-study-area.json ================================================ { "type": "FeatureCollection", "options": { "properties": { "fill-opacity": 0, "stroke-width": 5, "stroke": "#a00" }, "studyArea": { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-15, 38.103721], [-8.90061, 38.103721], [-8.90061, 45], [-15, 45], [-15, 38.103721] ] ] } } }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.954693995126283, 38.404163557472444] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.136098506847379, 38.36342930746026] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.211130041712606, 38.30495005757684] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.193728776821473, 38.35046647087951] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.018304889878863, 38.364227080898466] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.920177174618102, 38.45245311571842] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.086054009829065, 38.159282516798115] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.260167146586612, 38.29101121028581] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.289808492449499, 38.242272958266675] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.087129012325185, 38.39672133696977] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.02271473410847, 38.106770511421956] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.138069924296458, 38.291031745135435] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.094411776707979, 38.23269570930865] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.078315696695393, 38.48250486717448] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.929358507005531, 38.376162609813626] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.92010789203723, 38.319164743670186] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.041087874276547, 38.483538907749995] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.206663694150961, 38.14676519238175] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.234474887853489, 38.39594124407675] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.190798576307595, 38.38615532954051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.151348205485615, 38.40648971411991] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.158765123989282, 38.356781872660264] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.281540930086809, 38.445631290304156] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.913574226279902, 38.21826433250497] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.058748280552873, 38.488617290192835] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.908881837958308, 38.15835322315129] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.264712577335995, 38.149990799303666] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.93359158761771, 38.40724554180319] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.979399170035984, 38.47521442152852] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.139436036538939, 38.3884248395129] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.2060200882032, 38.22613289877937] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.155719802445834, 38.413559592516414] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.128450154358573, 38.11945588373714] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.286209323714933, 38.189840829284044] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.18136382820873, 38.359291758306064] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.265930067567577, 38.14847863683633] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.182016574228154, 38.45238936968405] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.953340924807158, 38.48635687638654] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.012162000709944, 38.491996017438375] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.217948815941643, 38.409859159141185] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.06306834102414, 38.409281871912846] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.979337102853425, 38.271476522630756] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.290449305152126, 38.41819461460309] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.179415870698099, 38.3307131805422] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.035419906447824, 38.39083407552805] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.97336612882791, 38.343977383913675] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.240810447018108, 38.227045549946766] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.078366320951293, 38.12849431433058] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.035872763415483, 38.16121760891558] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.283247551702551, 38.294586474837146] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.1071672001402, 38.28748448027202] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.162158269035427, 38.34368086977859] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.017261001855148, 38.15400974474692] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.258804466497779, 38.47856416808142] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.991477301522856, 38.2778066563913] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.08366841804967, 38.39148171446212] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.1516305777016, 38.127203110716145] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.298224459472962, 38.12458056793519] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.93807272140478, 38.479994827066314] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.972150700475789, 38.22510036419428] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.21115113566103, 38.32736163961269] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.248352323952892, 38.39574866718753] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.2918306353639, 38.14985366342824] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.049692226391347, 38.45374872048198] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.204457617934672, 38.175000388684715] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.291144130900221, 38.33486119475533] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.900609997813907, 38.31076583268274] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.0746238219314, 38.17007303843873] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.949588398493066, 38.29725149591193] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.015857702079458, 38.45546520634237] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.129393065258528, 38.43375925052706] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.22039672011444, 38.434073044911145] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.12256699453355, 38.11724652917648] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.182397965165856, 38.35499075065613] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.287896987866874, 38.49492542236455] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.074061127373824, 38.33621005910998] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.275953958891636, 38.43915526371629] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.974066708970062, 38.40350133043407] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.194500460306498, 38.22545414856333] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.055500767959595, 38.330316994016954] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.953983979083988, 38.358586186806136] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.910739262764167, 38.1330245138571] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.052011754332836, 38.23327141904898] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.24329226364415, 38.33619125763094] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.099419978849024, 38.4226239268013] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.983347535326873, 38.18906689846201] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.95162097481181, 38.417606548755025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.19533045161024, 38.10372140158265] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.141613225735325, 38.377550431629054] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.128715045831976, 38.22456127663626] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.93921417765754, 38.321806477145216] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.07810545110529, 38.41680134770151] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.996923900386793, 38.39110372314361] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.220773035358063, 38.22584608614886] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.169735703996981, 38.30950615944562] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.969040804426893, 38.43185479244211] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.203425013414387, 38.174003301114276] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.230894744873195, 38.10670838204885] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.236068835699333, 38.38058196063615] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.916406240464132, 38.12803126311165] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.057458615871955, 38.45759658106274] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.940215128769388, 38.346589166040125] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.17770420771467, 38.384898900291375] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.194754903301115, 38.25625776018478] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.279771086000695, 38.419830851198924] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.185980584323236, 38.23541815832415] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.096144225053065, 38.19631204333831] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.28454259888517, 38.3289198529115] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.251747398611878, 38.462856168330255] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.977256773161482, 38.46687675034363] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.071951177262948, 38.34272985124044] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.031170026385272, 38.462884116938] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.061676806913942, 38.40670727061653] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.904583997576081, 38.277115857792644] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.29867379414539, 38.44626820891124] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.993923767392353, 38.420559673644384] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.98545004061425, 38.473894218273244] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.113358267179626, 38.39235819942534] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.25750979898236, 38.25151872626216] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.081414997716399, 38.18607215578648] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.164532904032392, 38.308150857537036] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.995218925324913, 38.166287141259254] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.157177695724902, 38.27601481606263] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.015801781307681, 38.195386257562596] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.273499255817828, 38.14636496539357] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.186796676264782, 38.15487074755686] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.990000638155832, 38.42067124382058] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.902532385124909, 38.3590388072954] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.1421142229852, 38.14861629557319] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.938302526191649, 38.49331308437129] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.984507976764851, 38.16928129725407] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.029585465790241, 38.17614487061945] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.138744809092337, 38.44263776068499] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.216901409474955, 38.483664721544805] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.957890327629102, 38.477029946493694] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.022325787656865, 38.15720854496376] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.987101248522647, 38.13135535417127] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.923244738411721, 38.19515073891949] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.112717279452784, 38.38628647310605] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.901199638654461, 38.264649384488735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.97269852613098, 38.32188272364449] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.177780649780432, 38.1571930205585] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.075116314731822, 38.125309685966315] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.15672345705279, 38.26219480805784] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.922300057474727, 38.213462603922636] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.009280841659159, 38.30238490441025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.159883477946254, 38.19142724924936] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.01456562937641, 38.459808089375876] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.283314605426806, 38.20797687195443] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.064455431348936, 38.28503841693048] } } ] } ================================================ FILE: packages/turf-nearest-neighbor-analysis/test/in/random-outlier.json ================================================ { "type": "FeatureCollection", "options": { "properties": { "fill-opacity": 0, "stroke-width": 5, "stroke": "#a00" } }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.954693995126283, 38.404163557472444] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-15, 45] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.136098506847379, 38.36342930746026] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.211130041712606, 38.30495005757684] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.193728776821473, 38.35046647087951] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.018304889878863, 38.364227080898466] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.920177174618102, 38.45245311571842] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.086054009829065, 38.159282516798115] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.260167146586612, 38.29101121028581] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.289808492449499, 38.242272958266675] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.087129012325185, 38.39672133696977] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.02271473410847, 38.106770511421956] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.138069924296458, 38.291031745135435] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.094411776707979, 38.23269570930865] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.078315696695393, 38.48250486717448] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.929358507005531, 38.376162609813626] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.92010789203723, 38.319164743670186] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.041087874276547, 38.483538907749995] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.206663694150961, 38.14676519238175] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.234474887853489, 38.39594124407675] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.190798576307595, 38.38615532954051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.151348205485615, 38.40648971411991] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.158765123989282, 38.356781872660264] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.281540930086809, 38.445631290304156] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.913574226279902, 38.21826433250497] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.058748280552873, 38.488617290192835] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.908881837958308, 38.15835322315129] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.264712577335995, 38.149990799303666] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.93359158761771, 38.40724554180319] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.979399170035984, 38.47521442152852] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.139436036538939, 38.3884248395129] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.2060200882032, 38.22613289877937] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.155719802445834, 38.413559592516414] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.128450154358573, 38.11945588373714] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.286209323714933, 38.189840829284044] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.18136382820873, 38.359291758306064] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.265930067567577, 38.14847863683633] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.182016574228154, 38.45238936968405] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.953340924807158, 38.48635687638654] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.012162000709944, 38.491996017438375] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.217948815941643, 38.409859159141185] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.06306834102414, 38.409281871912846] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.979337102853425, 38.271476522630756] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.290449305152126, 38.41819461460309] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.179415870698099, 38.3307131805422] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.035419906447824, 38.39083407552805] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.97336612882791, 38.343977383913675] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.240810447018108, 38.227045549946766] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.078366320951293, 38.12849431433058] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.035872763415483, 38.16121760891558] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.283247551702551, 38.294586474837146] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.1071672001402, 38.28748448027202] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.162158269035427, 38.34368086977859] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.017261001855148, 38.15400974474692] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.258804466497779, 38.47856416808142] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.991477301522856, 38.2778066563913] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.08366841804967, 38.39148171446212] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.1516305777016, 38.127203110716145] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.298224459472962, 38.12458056793519] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.93807272140478, 38.479994827066314] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.972150700475789, 38.22510036419428] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.21115113566103, 38.32736163961269] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.248352323952892, 38.39574866718753] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.2918306353639, 38.14985366342824] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.049692226391347, 38.45374872048198] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.204457617934672, 38.175000388684715] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.291144130900221, 38.33486119475533] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.900609997813907, 38.31076583268274] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.0746238219314, 38.17007303843873] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.949588398493066, 38.29725149591193] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.015857702079458, 38.45546520634237] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.129393065258528, 38.43375925052706] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.22039672011444, 38.434073044911145] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.12256699453355, 38.11724652917648] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.182397965165856, 38.35499075065613] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.287896987866874, 38.49492542236455] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.074061127373824, 38.33621005910998] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.275953958891636, 38.43915526371629] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.974066708970062, 38.40350133043407] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.194500460306498, 38.22545414856333] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.055500767959595, 38.330316994016954] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.953983979083988, 38.358586186806136] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.910739262764167, 38.1330245138571] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.052011754332836, 38.23327141904898] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.24329226364415, 38.33619125763094] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.099419978849024, 38.4226239268013] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.983347535326873, 38.18906689846201] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.95162097481181, 38.417606548755025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.19533045161024, 38.10372140158265] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.141613225735325, 38.377550431629054] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.128715045831976, 38.22456127663626] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.93921417765754, 38.321806477145216] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.07810545110529, 38.41680134770151] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.996923900386793, 38.39110372314361] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.220773035358063, 38.22584608614886] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.169735703996981, 38.30950615944562] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.969040804426893, 38.43185479244211] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.203425013414387, 38.174003301114276] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.230894744873195, 38.10670838204885] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.236068835699333, 38.38058196063615] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.916406240464132, 38.12803126311165] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.057458615871955, 38.45759658106274] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.940215128769388, 38.346589166040125] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.17770420771467, 38.384898900291375] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.194754903301115, 38.25625776018478] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.279771086000695, 38.419830851198924] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.185980584323236, 38.23541815832415] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.096144225053065, 38.19631204333831] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.28454259888517, 38.3289198529115] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.251747398611878, 38.462856168330255] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.977256773161482, 38.46687675034363] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.071951177262948, 38.34272985124044] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.031170026385272, 38.462884116938] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.061676806913942, 38.40670727061653] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.904583997576081, 38.277115857792644] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.29867379414539, 38.44626820891124] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.993923767392353, 38.420559673644384] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.98545004061425, 38.473894218273244] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.113358267179626, 38.39235819942534] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.25750979898236, 38.25151872626216] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.081414997716399, 38.18607215578648] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.164532904032392, 38.308150857537036] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.995218925324913, 38.166287141259254] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.157177695724902, 38.27601481606263] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.015801781307681, 38.195386257562596] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.273499255817828, 38.14636496539357] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.186796676264782, 38.15487074755686] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.990000638155832, 38.42067124382058] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.902532385124909, 38.3590388072954] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.1421142229852, 38.14861629557319] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.938302526191649, 38.49331308437129] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.984507976764851, 38.16928129725407] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.029585465790241, 38.17614487061945] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.138744809092337, 38.44263776068499] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.216901409474955, 38.483664721544805] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.957890327629102, 38.477029946493694] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.022325787656865, 38.15720854496376] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.987101248522647, 38.13135535417127] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.923244738411721, 38.19515073891949] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.112717279452784, 38.38628647310605] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.901199638654461, 38.264649384488735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.97269852613098, 38.32188272364449] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.177780649780432, 38.1571930205585] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.075116314731822, 38.125309685966315] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.15672345705279, 38.26219480805784] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.922300057474727, 38.213462603922636] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.009280841659159, 38.30238490441025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.159883477946254, 38.19142724924936] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.01456562937641, 38.459808089375876] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.283314605426806, 38.20797687195443] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.064455431348936, 38.28503841693048] } } ] } ================================================ FILE: packages/turf-nearest-neighbor-analysis/test/in/random.json ================================================ { "type": "FeatureCollection", "options": { "properties": { "fill-opacity": 0, "stroke-width": 5, "stroke": "#a00" } }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.954693995126283, 38.404163557472444] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.136098506847379, 38.36342930746026] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.211130041712606, 38.30495005757684] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.193728776821473, 38.35046647087951] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.018304889878863, 38.364227080898466] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.920177174618102, 38.45245311571842] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.086054009829065, 38.159282516798115] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.260167146586612, 38.29101121028581] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.289808492449499, 38.242272958266675] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.087129012325185, 38.39672133696977] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.02271473410847, 38.106770511421956] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.138069924296458, 38.291031745135435] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.094411776707979, 38.23269570930865] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.078315696695393, 38.48250486717448] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.929358507005531, 38.376162609813626] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.92010789203723, 38.319164743670186] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.041087874276547, 38.483538907749995] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.206663694150961, 38.14676519238175] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.234474887853489, 38.39594124407675] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.190798576307595, 38.38615532954051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.151348205485615, 38.40648971411991] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.158765123989282, 38.356781872660264] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.281540930086809, 38.445631290304156] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.913574226279902, 38.21826433250497] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.058748280552873, 38.488617290192835] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.908881837958308, 38.15835322315129] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.264712577335995, 38.149990799303666] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.93359158761771, 38.40724554180319] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.979399170035984, 38.47521442152852] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.139436036538939, 38.3884248395129] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.2060200882032, 38.22613289877937] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.155719802445834, 38.413559592516414] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.128450154358573, 38.11945588373714] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.286209323714933, 38.189840829284044] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.18136382820873, 38.359291758306064] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.265930067567577, 38.14847863683633] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.182016574228154, 38.45238936968405] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.953340924807158, 38.48635687638654] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.012162000709944, 38.491996017438375] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.217948815941643, 38.409859159141185] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.06306834102414, 38.409281871912846] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.979337102853425, 38.271476522630756] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.290449305152126, 38.41819461460309] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.179415870698099, 38.3307131805422] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.035419906447824, 38.39083407552805] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.97336612882791, 38.343977383913675] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.240810447018108, 38.227045549946766] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.078366320951293, 38.12849431433058] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.035872763415483, 38.16121760891558] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.283247551702551, 38.294586474837146] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.1071672001402, 38.28748448027202] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.162158269035427, 38.34368086977859] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.017261001855148, 38.15400974474692] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.258804466497779, 38.47856416808142] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.991477301522856, 38.2778066563913] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.08366841804967, 38.39148171446212] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.1516305777016, 38.127203110716145] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.298224459472962, 38.12458056793519] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.93807272140478, 38.479994827066314] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.972150700475789, 38.22510036419428] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.21115113566103, 38.32736163961269] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.248352323952892, 38.39574866718753] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.2918306353639, 38.14985366342824] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.049692226391347, 38.45374872048198] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.204457617934672, 38.175000388684715] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.291144130900221, 38.33486119475533] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.900609997813907, 38.31076583268274] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.0746238219314, 38.17007303843873] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.949588398493066, 38.29725149591193] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.015857702079458, 38.45546520634237] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.129393065258528, 38.43375925052706] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.22039672011444, 38.434073044911145] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.12256699453355, 38.11724652917648] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.182397965165856, 38.35499075065613] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.287896987866874, 38.49492542236455] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.074061127373824, 38.33621005910998] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.275953958891636, 38.43915526371629] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.974066708970062, 38.40350133043407] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.194500460306498, 38.22545414856333] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.055500767959595, 38.330316994016954] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.953983979083988, 38.358586186806136] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.910739262764167, 38.1330245138571] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.052011754332836, 38.23327141904898] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.24329226364415, 38.33619125763094] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.099419978849024, 38.4226239268013] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.983347535326873, 38.18906689846201] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.95162097481181, 38.417606548755025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.19533045161024, 38.10372140158265] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.141613225735325, 38.377550431629054] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.128715045831976, 38.22456127663626] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.93921417765754, 38.321806477145216] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.07810545110529, 38.41680134770151] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.996923900386793, 38.39110372314361] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.220773035358063, 38.22584608614886] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.169735703996981, 38.30950615944562] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.969040804426893, 38.43185479244211] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.203425013414387, 38.174003301114276] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.230894744873195, 38.10670838204885] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.236068835699333, 38.38058196063615] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.916406240464132, 38.12803126311165] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.057458615871955, 38.45759658106274] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.940215128769388, 38.346589166040125] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.17770420771467, 38.384898900291375] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.194754903301115, 38.25625776018478] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.279771086000695, 38.419830851198924] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.185980584323236, 38.23541815832415] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.096144225053065, 38.19631204333831] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.28454259888517, 38.3289198529115] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.251747398611878, 38.462856168330255] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.977256773161482, 38.46687675034363] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.071951177262948, 38.34272985124044] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.031170026385272, 38.462884116938] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.061676806913942, 38.40670727061653] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.904583997576081, 38.277115857792644] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.29867379414539, 38.44626820891124] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.993923767392353, 38.420559673644384] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.98545004061425, 38.473894218273244] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.113358267179626, 38.39235819942534] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.25750979898236, 38.25151872626216] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.081414997716399, 38.18607215578648] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.164532904032392, 38.308150857537036] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.995218925324913, 38.166287141259254] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.157177695724902, 38.27601481606263] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.015801781307681, 38.195386257562596] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.273499255817828, 38.14636496539357] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.186796676264782, 38.15487074755686] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.990000638155832, 38.42067124382058] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.902532385124909, 38.3590388072954] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.1421142229852, 38.14861629557319] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.938302526191649, 38.49331308437129] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.984507976764851, 38.16928129725407] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.029585465790241, 38.17614487061945] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.138744809092337, 38.44263776068499] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.216901409474955, 38.483664721544805] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.957890327629102, 38.477029946493694] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.022325787656865, 38.15720854496376] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.987101248522647, 38.13135535417127] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.923244738411721, 38.19515073891949] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.112717279452784, 38.38628647310605] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.901199638654461, 38.264649384488735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.97269852613098, 38.32188272364449] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.177780649780432, 38.1571930205585] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.075116314731822, 38.125309685966315] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.15672345705279, 38.26219480805784] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.922300057474727, 38.213462603922636] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.009280841659159, 38.30238490441025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.159883477946254, 38.19142724924936] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.01456562937641, 38.459808089375876] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.283314605426806, 38.20797687195443] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.064455431348936, 38.28503841693048] } } ] } ================================================ FILE: packages/turf-nearest-neighbor-analysis/test/in/squares.json ================================================ { "type": "FeatureCollection", "options": { "properties": { "fill-opacity": 0, "stroke-width": 5, "stroke": "#a00" } }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.12013592725509], [-9.299992605418552, 38.16510194544132], [-9.242851861013252, 38.16510194544132], [-9.242851861013252, 38.12013592725509], [-9.299992605418552, 38.12013592725509] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.16510194544132], [-9.299992605418552, 38.21006796362755], [-9.242851861013252, 38.21006796362755], [-9.242851861013252, 38.16510194544132], [-9.299992605418552, 38.16510194544132] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.21006796362755], [-9.299992605418552, 38.25503398181378], [-9.242851861013252, 38.25503398181378], [-9.242851861013252, 38.21006796362755], [-9.299992605418552, 38.21006796362755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.25503398181378], [-9.299992605418552, 38.30000000000001], [-9.242851861013252, 38.30000000000001], [-9.242851861013252, 38.25503398181378], [-9.299992605418552, 38.25503398181378] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.30000000000001], [-9.299992605418552, 38.34496601818624], [-9.242851861013252, 38.34496601818624], [-9.242851861013252, 38.30000000000001], [-9.299992605418552, 38.30000000000001] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.34496601818624], [-9.299992605418552, 38.38993203637247], [-9.242851861013252, 38.38993203637247], [-9.242851861013252, 38.34496601818624], [-9.299992605418552, 38.34496601818624] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.38993203637247], [-9.299992605418552, 38.4348980545587], [-9.242851861013252, 38.4348980545587], [-9.242851861013252, 38.38993203637247], [-9.299992605418552, 38.38993203637247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299992605418552, 38.4348980545587], [-9.299992605418552, 38.47986407274493], [-9.242851861013252, 38.47986407274493], [-9.242851861013252, 38.4348980545587], [-9.299992605418552, 38.4348980545587] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.12013592725509], [-9.242851861013252, 38.16510194544132], [-9.185711116607951, 38.16510194544132], [-9.185711116607951, 38.12013592725509], [-9.242851861013252, 38.12013592725509] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.16510194544132], [-9.242851861013252, 38.21006796362755], [-9.185711116607951, 38.21006796362755], [-9.185711116607951, 38.16510194544132], [-9.242851861013252, 38.16510194544132] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.21006796362755], [-9.242851861013252, 38.25503398181378], [-9.185711116607951, 38.25503398181378], [-9.185711116607951, 38.21006796362755], [-9.242851861013252, 38.21006796362755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.25503398181378], [-9.242851861013252, 38.30000000000001], [-9.185711116607951, 38.30000000000001], [-9.185711116607951, 38.25503398181378], [-9.242851861013252, 38.25503398181378] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.30000000000001], [-9.242851861013252, 38.34496601818624], [-9.185711116607951, 38.34496601818624], [-9.185711116607951, 38.30000000000001], [-9.242851861013252, 38.30000000000001] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.34496601818624], [-9.242851861013252, 38.38993203637247], [-9.185711116607951, 38.38993203637247], [-9.185711116607951, 38.34496601818624], [-9.242851861013252, 38.34496601818624] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.38993203637247], [-9.242851861013252, 38.4348980545587], [-9.185711116607951, 38.4348980545587], [-9.185711116607951, 38.38993203637247], [-9.242851861013252, 38.38993203637247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242851861013252, 38.4348980545587], [-9.242851861013252, 38.47986407274493], [-9.185711116607951, 38.47986407274493], [-9.185711116607951, 38.4348980545587], [-9.242851861013252, 38.4348980545587] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.12013592725509], [-9.185711116607951, 38.16510194544132], [-9.12857037220265, 38.16510194544132], [-9.12857037220265, 38.12013592725509], [-9.185711116607951, 38.12013592725509] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.16510194544132], [-9.185711116607951, 38.21006796362755], [-9.12857037220265, 38.21006796362755], [-9.12857037220265, 38.16510194544132], [-9.185711116607951, 38.16510194544132] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.21006796362755], [-9.185711116607951, 38.25503398181378], [-9.12857037220265, 38.25503398181378], [-9.12857037220265, 38.21006796362755], [-9.185711116607951, 38.21006796362755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.25503398181378], [-9.185711116607951, 38.30000000000001], [-9.12857037220265, 38.30000000000001], [-9.12857037220265, 38.25503398181378], [-9.185711116607951, 38.25503398181378] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.30000000000001], [-9.185711116607951, 38.34496601818624], [-9.12857037220265, 38.34496601818624], [-9.12857037220265, 38.30000000000001], [-9.185711116607951, 38.30000000000001] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.34496601818624], [-9.185711116607951, 38.38993203637247], [-9.12857037220265, 38.38993203637247], [-9.12857037220265, 38.34496601818624], [-9.185711116607951, 38.34496601818624] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.38993203637247], [-9.185711116607951, 38.4348980545587], [-9.12857037220265, 38.4348980545587], [-9.12857037220265, 38.38993203637247], [-9.185711116607951, 38.38993203637247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711116607951, 38.4348980545587], [-9.185711116607951, 38.47986407274493], [-9.12857037220265, 38.47986407274493], [-9.12857037220265, 38.4348980545587], [-9.185711116607951, 38.4348980545587] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.12013592725509], [-9.12857037220265, 38.16510194544132], [-9.07142962779735, 38.16510194544132], [-9.07142962779735, 38.12013592725509], [-9.12857037220265, 38.12013592725509] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.16510194544132], [-9.12857037220265, 38.21006796362755], [-9.07142962779735, 38.21006796362755], [-9.07142962779735, 38.16510194544132], [-9.12857037220265, 38.16510194544132] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.21006796362755], [-9.12857037220265, 38.25503398181378], [-9.07142962779735, 38.25503398181378], [-9.07142962779735, 38.21006796362755], [-9.12857037220265, 38.21006796362755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.25503398181378], [-9.12857037220265, 38.30000000000001], [-9.07142962779735, 38.30000000000001], [-9.07142962779735, 38.25503398181378], [-9.12857037220265, 38.25503398181378] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.30000000000001], [-9.12857037220265, 38.34496601818624], [-9.07142962779735, 38.34496601818624], [-9.07142962779735, 38.30000000000001], [-9.12857037220265, 38.30000000000001] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.34496601818624], [-9.12857037220265, 38.38993203637247], [-9.07142962779735, 38.38993203637247], [-9.07142962779735, 38.34496601818624], [-9.12857037220265, 38.34496601818624] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.38993203637247], [-9.12857037220265, 38.4348980545587], [-9.07142962779735, 38.4348980545587], [-9.07142962779735, 38.38993203637247], [-9.12857037220265, 38.38993203637247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857037220265, 38.4348980545587], [-9.12857037220265, 38.47986407274493], [-9.07142962779735, 38.47986407274493], [-9.07142962779735, 38.4348980545587], [-9.12857037220265, 38.4348980545587] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.07142962779735, 38.12013592725509], [-9.07142962779735, 38.16510194544132], [-9.01428888339205, 38.16510194544132], [-9.01428888339205, 38.12013592725509], [-9.07142962779735, 38.12013592725509] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.07142962779735, 38.16510194544132], [-9.07142962779735, 38.21006796362755], [-9.01428888339205, 38.21006796362755], [-9.01428888339205, 38.16510194544132], [-9.07142962779735, 38.16510194544132] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.07142962779735, 38.21006796362755], [-9.07142962779735, 38.25503398181378], [-9.01428888339205, 38.25503398181378], [-9.01428888339205, 38.21006796362755], [-9.07142962779735, 38.21006796362755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.07142962779735, 38.25503398181378], [-9.07142962779735, 38.30000000000001], [-9.01428888339205, 38.30000000000001], [-9.01428888339205, 38.25503398181378], [-9.07142962779735, 38.25503398181378] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.07142962779735, 38.30000000000001], [-9.07142962779735, 38.34496601818624], [-9.01428888339205, 38.34496601818624], [-9.01428888339205, 38.30000000000001], [-9.07142962779735, 38.30000000000001] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.07142962779735, 38.34496601818624], [-9.07142962779735, 38.38993203637247], [-9.01428888339205, 38.38993203637247], [-9.01428888339205, 38.34496601818624], [-9.07142962779735, 38.34496601818624] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.07142962779735, 38.38993203637247], [-9.07142962779735, 38.4348980545587], [-9.01428888339205, 38.4348980545587], [-9.01428888339205, 38.38993203637247], [-9.07142962779735, 38.38993203637247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.07142962779735, 38.4348980545587], [-9.07142962779735, 38.47986407274493], [-9.01428888339205, 38.47986407274493], [-9.01428888339205, 38.4348980545587], [-9.07142962779735, 38.4348980545587] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.01428888339205, 38.12013592725509], [-9.01428888339205, 38.16510194544132], [-8.95714813898675, 38.16510194544132], [-8.95714813898675, 38.12013592725509], [-9.01428888339205, 38.12013592725509] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.01428888339205, 38.16510194544132], [-9.01428888339205, 38.21006796362755], [-8.95714813898675, 38.21006796362755], [-8.95714813898675, 38.16510194544132], [-9.01428888339205, 38.16510194544132] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.01428888339205, 38.21006796362755], [-9.01428888339205, 38.25503398181378], [-8.95714813898675, 38.25503398181378], [-8.95714813898675, 38.21006796362755], [-9.01428888339205, 38.21006796362755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.01428888339205, 38.25503398181378], [-9.01428888339205, 38.30000000000001], [-8.95714813898675, 38.30000000000001], [-8.95714813898675, 38.25503398181378], [-9.01428888339205, 38.25503398181378] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.01428888339205, 38.30000000000001], [-9.01428888339205, 38.34496601818624], [-8.95714813898675, 38.34496601818624], [-8.95714813898675, 38.30000000000001], [-9.01428888339205, 38.30000000000001] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.01428888339205, 38.34496601818624], [-9.01428888339205, 38.38993203637247], [-8.95714813898675, 38.38993203637247], [-8.95714813898675, 38.34496601818624], [-9.01428888339205, 38.34496601818624] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.01428888339205, 38.38993203637247], [-9.01428888339205, 38.4348980545587], [-8.95714813898675, 38.4348980545587], [-8.95714813898675, 38.38993203637247], [-9.01428888339205, 38.38993203637247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.01428888339205, 38.4348980545587], [-9.01428888339205, 38.47986407274493], [-8.95714813898675, 38.47986407274493], [-8.95714813898675, 38.4348980545587], [-9.01428888339205, 38.4348980545587] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-8.95714813898675, 38.12013592725509], [-8.95714813898675, 38.16510194544132], [-8.900007394581449, 38.16510194544132], [-8.900007394581449, 38.12013592725509], [-8.95714813898675, 38.12013592725509] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-8.95714813898675, 38.16510194544132], [-8.95714813898675, 38.21006796362755], [-8.900007394581449, 38.21006796362755], [-8.900007394581449, 38.16510194544132], [-8.95714813898675, 38.16510194544132] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-8.95714813898675, 38.21006796362755], [-8.95714813898675, 38.25503398181378], [-8.900007394581449, 38.25503398181378], [-8.900007394581449, 38.21006796362755], [-8.95714813898675, 38.21006796362755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-8.95714813898675, 38.25503398181378], [-8.95714813898675, 38.30000000000001], [-8.900007394581449, 38.30000000000001], [-8.900007394581449, 38.25503398181378], [-8.95714813898675, 38.25503398181378] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-8.95714813898675, 38.30000000000001], [-8.95714813898675, 38.34496601818624], [-8.900007394581449, 38.34496601818624], [-8.900007394581449, 38.30000000000001], [-8.95714813898675, 38.30000000000001] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-8.95714813898675, 38.34496601818624], [-8.95714813898675, 38.38993203637247], [-8.900007394581449, 38.38993203637247], [-8.900007394581449, 38.34496601818624], [-8.95714813898675, 38.34496601818624] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-8.95714813898675, 38.38993203637247], [-8.95714813898675, 38.4348980545587], [-8.900007394581449, 38.4348980545587], [-8.900007394581449, 38.38993203637247], [-8.95714813898675, 38.38993203637247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-8.95714813898675, 38.4348980545587], [-8.95714813898675, 38.47986407274493], [-8.900007394581449, 38.47986407274493], [-8.900007394581449, 38.4348980545587], [-8.95714813898675, 38.4348980545587] ] ] } } ] } ================================================ FILE: packages/turf-nearest-neighbor-analysis/test/out/brazil-states-bbox.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.882084, -7.05713], [-66.82171, -9.88128], [-69.147481, -11.210291], [-70.725682, -10.794975], [-70.767213, -9.341369], [-72.926857, -9.715153], [-73.882084, -7.05713] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.882084, -7.05713], [-72.802262, -5.188208], [-69.978113, -4.232981], [-69.479733, -1.076578], [-69.853518, 1.747571], [-67.237027, 2.079824], [-65.492699, 0.792344], [-63.540713, 2.204419], [-61.713323, -1.325768], [-58.972236, 0.377028], [-56.48034, -2.40559], [-58.307731, -7.098662], [-58.515389, -8.718394], [-61.630259, -8.926053], [-63.623777, -7.929294], [-66.82171, -9.88128], [-73.882084, -7.05713] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-63.540713, 2.204419], [-64.579004, 4.280999], [-62.128639, 4.239468], [-60.176653, 5.402353], [-59.304489, 3.78262], [-59.968995, 2.121356], [-58.930705, 1.249192], [-58.972236, 0.377028], [-61.713323, -1.325768], [-63.540713, 2.204419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.930705, 1.249192], [-56.854124, 2.24595], [-54.777544, 2.287482], [-52.161052, -1.325768], [-50.582851, 0.460091], [-45.889779, -1.242705], [-48.340144, -5.229739], [-50.333662, -9.798216], [-56.937187, -9.258305], [-58.307731, -7.098662], [-56.48034, -2.40559], [-58.972236, 0.377028], [-58.930705, 1.249192] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-54.777544, 2.287482], [-52.86709, 2.329014], [-51.455015, 4.364062], [-49.793751, 1.083065], [-50.582851, 0.460091], [-52.161052, -1.325768], [-54.777544, 2.287482] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.889779, -1.242705], [-41.695087, -2.945501], [-42.941035, -6.724877], [-45.889779, -7.846231], [-46.471222, -9.964343], [-48.340144, -5.229739], [-45.889779, -1.242705] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-41.695087, -2.945501], [-41.155176, -2.945501], [-40.24148, -7.472446], [-42.608782, -9.63209], [-43.688604, -9.507495], [-44.020857, -10.753443], [-46.471222, -9.964343], [-45.889779, -7.846231], [-42.941035, -6.724877], [-41.695087, -2.945501] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40.24148, -7.472446], [-41.155176, -2.945501], [-39.369317, -2.945501], [-37.292736, -4.772892], [-38.787874, -7.721636], [-40.24148, -7.472446] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.115923, -6.396399], [-37.292736, -4.772892], [-35.548409, -5.188208], [-34.966966, -6.558751], [-38.115923, -6.396399] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-34.966966, -6.558751], [-34.717776, -7.513978], [-36.918952, -8.136952], [-38.787874, -7.721636], [-38.115923, -6.396399], [-34.966966, -6.558751] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-34.717776, -7.513978], [-35.091561, -9.009116], [-38.1649, -9.216774], [-39.369317, -8.5938], [-40.573733, -9.590558], [-41.475834, -8.598523], [-40.24148, -7.472446], [-38.787874, -7.721636], [-36.918952, -8.136952], [-34.717776, -7.513978] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.1649, -9.216774], [-35.091561, -9.009116], [-36.420572, -10.545785], [-38.1649, -9.216774] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-36.420572, -10.545785], [-37.541926, -11.750202], [-38.1649, -9.216774], [-36.420572, -10.545785] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-37.541926, -11.750202], [-38.995532, -13.120745], [-38.621748, -15.737236], [-39.45238, -18.312196], [-40.615265, -17.855349], [-40.033822, -15.944895], [-44.270047, -14.200567], [-45.889779, -15.155794], [-46.471222, -11.127228], [-45.608301, -10.242233], [-44.020857, -10.753443], [-43.688604, -9.507495], [-42.608782, -9.63209], [-41.475834, -8.598523], [-40.573733, -9.590558], [-39.369317, -8.5938], [-38.1649, -9.216774], [-37.541926, -11.750202] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-48.340144, -5.229739], [-46.471222, -9.964343], [-45.608301, -10.242233], [-46.471222, -11.127228], [-46.229565, -12.801568], [-47.634107, -13.369935], [-50.458256, -12.830024], [-50.333662, -9.798216], [-48.340144, -5.229739] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-66.82171, -9.88128], [-63.623777, -7.929294], [-61.630259, -8.926053], [-61.505664, -10.961101], [-59.802868, -11.251823], [-60.550437, -13.743719], [-65.035851, -11.916328], [-65.243509, -9.839748], [-66.82171, -9.88128] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-61.630259, -8.926053], [-58.515389, -8.718394], [-58.307731, -7.098662], [-56.937187, -9.258305], [-50.333662, -9.798216], [-50.458256, -12.830024], [-52.825558, -16.152553], [-53.157811, -18.104538], [-57.601693, -17.772285], [-58.349262, -17.647691], [-58.390794, -16.318679], [-60.176653, -16.277147], [-60.550437, -13.743719], [-59.802868, -11.251823], [-61.505664, -10.961101], [-61.630259, -8.926053] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-57.601693, -17.772285], [-53.157811, -18.104538], [-51.122762, -19.142828], [-50.998167, -20.181119], [-54.196101, -24.043558], [-55.400518, -23.877432], [-55.815834, -22.340762], [-57.975478, -22.00851], [-57.601693, -17.772285] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-47.218791, -15.488047], [-47.218791, -16.111021], [-48.381676, -16.069489], [-48.340144, -15.363452], [-47.218791, -15.488047] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-51.122762, -19.142828], [-53.157811, -18.104538], [-52.825558, -16.152553], [-50.458256, -12.830024], [-47.634107, -13.369935], [-46.229565, -12.801568], [-45.889779, -15.155794], [-47.218791, -15.737236], [-47.218791, -15.488047], [-48.340144, -15.363452], [-48.381676, -16.069489], [-47.218791, -16.111021], [-47.343386, -18.395259], [-49.087713, -18.436791], [-51.122762, -19.142828] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-50.998167, -20.181119], [-51.122762, -19.142828], [-49.087713, -18.436791], [-47.343386, -18.395259], [-47.218791, -16.111021], [-47.218791, -15.737236], [-45.889779, -15.155794], [-44.270047, -14.200567], [-40.033822, -15.944895], [-40.615265, -17.855349], [-41.861213, -20.679498], [-42.857972, -22.050041], [-46.305095, -22.839142], [-47.343386, -20.181119], [-50.998167, -20.181119] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40.615265, -17.855349], [-39.45238, -18.312196], [-40.033822, -20.014992], [-40.905986, -21.302472], [-41.861213, -20.679498], [-40.615265, -17.855349] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40.905986, -21.302472], [-41.861213, -23.0468], [-44.436173, -23.295989], [-44.611488, -22.451448], [-42.857972, -22.050041], [-41.861213, -20.679498], [-40.905986, -21.302472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-44.436173, -23.295989], [-48.215549, -25.206443], [-49.336903, -24.666533], [-49.835282, -22.880673], [-52.968303, -22.560634], [-50.998167, -20.181119], [-47.343386, -20.181119], [-46.305095, -22.839142], [-44.611488, -22.451448], [-44.436173, -23.295989] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-48.215549, -25.206443], [-48.506271, -26.120139], [-51.288889, -26.41086], [-53.573127, -26.203202], [-54.196101, -24.043558], [-52.968303, -22.560634], [-49.835282, -22.880673], [-49.336903, -24.666533], [-48.215549, -25.206443] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-53.573127, -26.203202], [-51.288889, -26.41086], [-48.506271, -26.120139], [-48.298613, -27.94753], [-49.752219, -29.276541], [-51.57961, -27.44915], [-53.863848, -27.158429], [-53.573127, -26.203202] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-53.863848, -27.158429], [-51.57961, -27.44915], [-49.752219, -29.276541], [-50.499788, -31.228527], [-52.825558, -33.263576], [-57.435567, -30.231768], [-55.774302, -28.404377], [-53.863848, -27.158429] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-70.711838, -9.6667] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-64.895682, -3.539922] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-61.034973, 2.481296] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-54.04728, -2.47827] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-51.93955, 1.532991] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-45.204508, -5.658899] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-43.190225, -7.532436] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-39.369317, -5.171595] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-36.481008, -5.729062] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-36.701498, -7.265543] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-38.37127, -8.428198] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-36.559011, -9.590558] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-37.375799, -10.504254] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-41.611885, -12.314066] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-47.69331, -10.670411] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-63.02676, -10.556168] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-57.236215, -12.990613] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-54.533546, -20.933879] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-47.78985, -15.758002] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-48.723366, -15.939895] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-45.869014, -18.350761] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-40.573733, -19.632901] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-42.755674, -22.137708] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-48.227816, -22.6959] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-50.990053, -24.761505] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-50.980368, -27.223693] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-53.104413, -29.573196] } }, { "type": "Feature", "bbox": [ -73.88208407352717, -33.263575673419844, -34.71777637301956, 5.402352713825728 ], "properties": { "fill-opacity": 0, "stroke-width": 5, "stroke": "#a00", "nearestNeighborAnalysis": { "units": "kilometers", "arealUnits": "kilometers²", "observedMeanDistance": 397.83037100327755, "expectedMeanDistance": 406.3163545616098, "nearestNeighborIndex": 0.9791148363508821, "numberOfPoints": 27, "zScore": -0.207611137308671 } }, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.882084, -33.263576], [-34.717776, -33.263576], [-34.717776, 5.402353], [-73.882084, 5.402353], [-73.882084, -33.263576] ] ] } } ] } ================================================ FILE: packages/turf-nearest-neighbor-analysis/test/out/brazil-states-brazil-itself-as-study-area.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.882084, -7.05713], [-66.82171, -9.88128], [-69.147481, -11.210291], [-70.725682, -10.794975], [-70.767213, -9.341369], [-72.926857, -9.715153], [-73.882084, -7.05713] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.882084, -7.05713], [-72.802262, -5.188208], [-69.978113, -4.232981], [-69.479733, -1.076578], [-69.853518, 1.747571], [-67.237027, 2.079824], [-65.492699, 0.792344], [-63.540713, 2.204419], [-61.713323, -1.325768], [-58.972236, 0.377028], [-56.48034, -2.40559], [-58.307731, -7.098662], [-58.515389, -8.718394], [-61.630259, -8.926053], [-63.623777, -7.929294], [-66.82171, -9.88128], [-73.882084, -7.05713] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-63.540713, 2.204419], [-64.579004, 4.280999], [-62.128639, 4.239468], [-60.176653, 5.402353], [-59.304489, 3.78262], [-59.968995, 2.121356], [-58.930705, 1.249192], [-58.972236, 0.377028], [-61.713323, -1.325768], [-63.540713, 2.204419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.930705, 1.249192], [-56.854124, 2.24595], [-54.777544, 2.287482], [-52.161052, -1.325768], [-50.582851, 0.460091], [-45.889779, -1.242705], [-48.340144, -5.229739], [-50.333662, -9.798216], [-56.937187, -9.258305], [-58.307731, -7.098662], [-56.48034, -2.40559], [-58.972236, 0.377028], [-58.930705, 1.249192] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-54.777544, 2.287482], [-52.86709, 2.329014], [-51.455015, 4.364062], [-49.793751, 1.083065], [-50.582851, 0.460091], [-52.161052, -1.325768], [-54.777544, 2.287482] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.889779, -1.242705], [-41.695087, -2.945501], [-42.941035, -6.724877], [-45.889779, -7.846231], [-46.471222, -9.964343], [-48.340144, -5.229739], [-45.889779, -1.242705] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-41.695087, -2.945501], [-41.155176, -2.945501], [-40.24148, -7.472446], [-42.608782, -9.63209], [-43.688604, -9.507495], [-44.020857, -10.753443], [-46.471222, -9.964343], [-45.889779, -7.846231], [-42.941035, -6.724877], [-41.695087, -2.945501] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40.24148, -7.472446], [-41.155176, -2.945501], [-39.369317, -2.945501], [-37.292736, -4.772892], [-38.787874, -7.721636], [-40.24148, -7.472446] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.115923, -6.396399], [-37.292736, -4.772892], [-35.548409, -5.188208], [-34.966966, -6.558751], [-38.115923, -6.396399] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-34.966966, -6.558751], [-34.717776, -7.513978], [-36.918952, -8.136952], [-38.787874, -7.721636], [-38.115923, -6.396399], [-34.966966, -6.558751] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-34.717776, -7.513978], [-35.091561, -9.009116], [-38.1649, -9.216774], [-39.369317, -8.5938], [-40.573733, -9.590558], [-41.475834, -8.598523], [-40.24148, -7.472446], [-38.787874, -7.721636], [-36.918952, -8.136952], [-34.717776, -7.513978] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.1649, -9.216774], [-35.091561, -9.009116], [-36.420572, -10.545785], [-38.1649, -9.216774] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-36.420572, -10.545785], [-37.541926, -11.750202], [-38.1649, -9.216774], [-36.420572, -10.545785] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-37.541926, -11.750202], [-38.995532, -13.120745], [-38.621748, -15.737236], [-39.45238, -18.312196], [-40.615265, -17.855349], [-40.033822, -15.944895], [-44.270047, -14.200567], [-45.889779, -15.155794], [-46.471222, -11.127228], [-45.608301, -10.242233], [-44.020857, -10.753443], [-43.688604, -9.507495], [-42.608782, -9.63209], [-41.475834, -8.598523], [-40.573733, -9.590558], [-39.369317, -8.5938], [-38.1649, -9.216774], [-37.541926, -11.750202] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-48.340144, -5.229739], [-46.471222, -9.964343], [-45.608301, -10.242233], [-46.471222, -11.127228], [-46.229565, -12.801568], [-47.634107, -13.369935], [-50.458256, -12.830024], [-50.333662, -9.798216], [-48.340144, -5.229739] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-66.82171, -9.88128], [-63.623777, -7.929294], [-61.630259, -8.926053], [-61.505664, -10.961101], [-59.802868, -11.251823], [-60.550437, -13.743719], [-65.035851, -11.916328], [-65.243509, -9.839748], [-66.82171, -9.88128] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-61.630259, -8.926053], [-58.515389, -8.718394], [-58.307731, -7.098662], [-56.937187, -9.258305], [-50.333662, -9.798216], [-50.458256, -12.830024], [-52.825558, -16.152553], [-53.157811, -18.104538], [-57.601693, -17.772285], [-58.349262, -17.647691], [-58.390794, -16.318679], [-60.176653, -16.277147], [-60.550437, -13.743719], [-59.802868, -11.251823], [-61.505664, -10.961101], [-61.630259, -8.926053] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-57.601693, -17.772285], [-53.157811, -18.104538], [-51.122762, -19.142828], [-50.998167, -20.181119], [-54.196101, -24.043558], [-55.400518, -23.877432], [-55.815834, -22.340762], [-57.975478, -22.00851], [-57.601693, -17.772285] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-47.218791, -15.488047], [-47.218791, -16.111021], [-48.381676, -16.069489], [-48.340144, -15.363452], [-47.218791, -15.488047] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-51.122762, -19.142828], [-53.157811, -18.104538], [-52.825558, -16.152553], [-50.458256, -12.830024], [-47.634107, -13.369935], [-46.229565, -12.801568], [-45.889779, -15.155794], [-47.218791, -15.737236], [-47.218791, -15.488047], [-48.340144, -15.363452], [-48.381676, -16.069489], [-47.218791, -16.111021], [-47.343386, -18.395259], [-49.087713, -18.436791], [-51.122762, -19.142828] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-50.998167, -20.181119], [-51.122762, -19.142828], [-49.087713, -18.436791], [-47.343386, -18.395259], [-47.218791, -16.111021], [-47.218791, -15.737236], [-45.889779, -15.155794], [-44.270047, -14.200567], [-40.033822, -15.944895], [-40.615265, -17.855349], [-41.861213, -20.679498], [-42.857972, -22.050041], [-46.305095, -22.839142], [-47.343386, -20.181119], [-50.998167, -20.181119] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40.615265, -17.855349], [-39.45238, -18.312196], [-40.033822, -20.014992], [-40.905986, -21.302472], [-41.861213, -20.679498], [-40.615265, -17.855349] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40.905986, -21.302472], [-41.861213, -23.0468], [-44.436173, -23.295989], [-44.611488, -22.451448], [-42.857972, -22.050041], [-41.861213, -20.679498], [-40.905986, -21.302472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-44.436173, -23.295989], [-48.215549, -25.206443], [-49.336903, -24.666533], [-49.835282, -22.880673], [-52.968303, -22.560634], [-50.998167, -20.181119], [-47.343386, -20.181119], [-46.305095, -22.839142], [-44.611488, -22.451448], [-44.436173, -23.295989] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-48.215549, -25.206443], [-48.506271, -26.120139], [-51.288889, -26.41086], [-53.573127, -26.203202], [-54.196101, -24.043558], [-52.968303, -22.560634], [-49.835282, -22.880673], [-49.336903, -24.666533], [-48.215549, -25.206443] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-53.573127, -26.203202], [-51.288889, -26.41086], [-48.506271, -26.120139], [-48.298613, -27.94753], [-49.752219, -29.276541], [-51.57961, -27.44915], [-53.863848, -27.158429], [-53.573127, -26.203202] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-53.863848, -27.158429], [-51.57961, -27.44915], [-49.752219, -29.276541], [-50.499788, -31.228527], [-52.825558, -33.263576], [-57.435567, -30.231768], [-55.774302, -28.404377], [-53.863848, -27.158429] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-70.711838, -9.6667] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-64.895682, -3.539922] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-61.034973, 2.481296] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-54.04728, -2.47827] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-51.93955, 1.532991] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-45.204508, -5.658899] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-43.190225, -7.532436] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-39.369317, -5.171595] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-36.481008, -5.729062] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-36.701498, -7.265543] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-38.37127, -8.428198] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-36.559011, -9.590558] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-37.375799, -10.504254] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-41.611885, -12.314066] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-47.69331, -10.670411] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-63.02676, -10.556168] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-57.236215, -12.990613] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-54.533546, -20.933879] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-47.78985, -15.758002] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-48.723366, -15.939895] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-45.869014, -18.350761] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-40.573733, -19.632901] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-42.755674, -22.137708] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-48.227816, -22.6959] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-50.990053, -24.761505] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-50.980368, -27.223693] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-53.104413, -29.573196] } }, { "type": "Feature", "properties": { "fill-opacity": 0, "stroke-width": 5, "stroke": "#a00", "nearestNeighborAnalysis": { "units": "kilometers", "arealUnits": "kilometers²", "observedMeanDistance": 397.83037100327755, "expectedMeanDistance": 282.2804354834354, "nearestNeighborIndex": 1.4093444709405756, "numberOfPoints": 27, "zScore": 4.069131206763539 } }, "geometry": { "type": "Polygon", "coordinates": [ [ [-66.82171, -9.88128], [-69.147481, -11.210291], [-70.725682, -10.794975], [-70.767213, -9.341369], [-72.926857, -9.715153], [-73.882084, -7.05713], [-72.802262, -5.188208], [-69.978113, -4.232981], [-69.479733, -1.076578], [-69.853518, 1.747571], [-67.237027, 2.079824], [-65.492699, 0.792344], [-63.540713, 2.204419], [-64.579004, 4.280999], [-62.128639, 4.239468], [-60.176653, 5.402353], [-59.304489, 3.78262], [-59.968995, 2.121356], [-58.930705, 1.249192], [-56.854124, 2.24595], [-54.777544, 2.287482], [-52.86709, 2.329014], [-51.455015, 4.364062], [-49.793751, 1.083065], [-50.582851, 0.460091], [-45.889779, -1.242705], [-41.695087, -2.945501], [-41.155176, -2.945501], [-39.369317, -2.945501], [-37.292736, -4.772892], [-35.548409, -5.188208], [-34.966966, -6.558751], [-34.717776, -7.513978], [-35.091561, -9.009116], [-36.420572, -10.545785], [-37.541926, -11.750202], [-38.995532, -13.120745], [-38.621748, -15.737236], [-39.45238, -18.312196], [-40.033822, -20.014992], [-40.905986, -21.302472], [-41.861213, -23.0468], [-44.436173, -23.295989], [-48.215549, -25.206443], [-48.506271, -26.120139], [-48.298613, -27.94753], [-49.752219, -29.276541], [-50.499788, -31.228527], [-52.825558, -33.263576], [-57.435567, -30.231768], [-55.774302, -28.404377], [-53.863848, -27.158429], [-53.573127, -26.203202], [-54.196101, -24.043558], [-55.400518, -23.877432], [-55.815834, -22.340762], [-57.975478, -22.00851], [-57.601693, -17.772285], [-58.349262, -17.647691], [-58.390794, -16.318679], [-60.176653, -16.277147], [-60.550437, -13.743719], [-65.035851, -11.916328], [-65.243509, -9.839748], [-66.82171, -9.88128] ] ] } } ] } ================================================ FILE: packages/turf-nearest-neighbor-analysis/test/out/random-large-study-area.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.954694, 38.404164] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.136099, 38.363429] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.21113, 38.30495] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.193729, 38.350466] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.018305, 38.364227] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.920177, 38.452453] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.086054, 38.159283] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.260167, 38.291011] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.289808, 38.242273] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.087129, 38.396721] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.022715, 38.106771] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.13807, 38.291032] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.094412, 38.232696] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.078316, 38.482505] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.929359, 38.376163] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.920108, 38.319165] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.041088, 38.483539] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.206664, 38.146765] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.234475, 38.395941] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.190799, 38.386155] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.151348, 38.40649] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.158765, 38.356782] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.281541, 38.445631] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.913574, 38.218264] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.058748, 38.488617] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.908882, 38.158353] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.264713, 38.149991] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.933592, 38.407246] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.979399, 38.475214] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.139436, 38.388425] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.20602, 38.226133] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.15572, 38.41356] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.12845, 38.119456] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.286209, 38.189841] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.181364, 38.359292] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.26593, 38.148479] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.182017, 38.452389] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.953341, 38.486357] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.012162, 38.491996] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.217949, 38.409859] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.063068, 38.409282] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.979337, 38.271477] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.290449, 38.418195] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.179416, 38.330713] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.03542, 38.390834] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.973366, 38.343977] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.24081, 38.227046] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.078366, 38.128494] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.035873, 38.161218] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.283248, 38.294586] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.107167, 38.287484] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.162158, 38.343681] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.017261, 38.15401] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.258804, 38.478564] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.991477, 38.277807] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.083668, 38.391482] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.151631, 38.127203] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.298224, 38.124581] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.938073, 38.479995] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.972151, 38.2251] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.211151, 38.327362] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.248352, 38.395749] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.291831, 38.149854] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.049692, 38.453749] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.204458, 38.175] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.291144, 38.334861] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.90061, 38.310766] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.074624, 38.170073] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.949588, 38.297251] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.015858, 38.455465] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.129393, 38.433759] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.220397, 38.434073] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.122567, 38.117247] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.182398, 38.354991] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.287897, 38.494925] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.074061, 38.33621] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.275954, 38.439155] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.974067, 38.403501] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.1945, 38.225454] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.055501, 38.330317] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.953984, 38.358586] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.910739, 38.133025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.052012, 38.233271] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.243292, 38.336191] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.09942, 38.422624] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.983348, 38.189067] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.951621, 38.417607] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.19533, 38.103721] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.141613, 38.37755] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.128715, 38.224561] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.939214, 38.321806] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.078105, 38.416801] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.996924, 38.391104] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.220773, 38.225846] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.169736, 38.309506] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.969041, 38.431855] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.203425, 38.174003] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.230895, 38.106708] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.236069, 38.380582] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.916406, 38.128031] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.057459, 38.457597] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.940215, 38.346589] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.177704, 38.384899] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.194755, 38.256258] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.279771, 38.419831] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.185981, 38.235418] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.096144, 38.196312] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.284543, 38.32892] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.251747, 38.462856] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.977257, 38.466877] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.071951, 38.34273] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.03117, 38.462884] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.061677, 38.406707] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.904584, 38.277116] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.298674, 38.446268] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.993924, 38.42056] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.98545, 38.473894] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.113358, 38.392358] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.25751, 38.251519] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.081415, 38.186072] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.164533, 38.308151] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.995219, 38.166287] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.157178, 38.276015] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.015802, 38.195386] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.273499, 38.146365] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.186797, 38.154871] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.990001, 38.420671] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.902532, 38.359039] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.142114, 38.148616] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.938303, 38.493313] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.984508, 38.169281] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.029585, 38.176145] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.138745, 38.442638] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.216901, 38.483665] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.95789, 38.47703] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.022326, 38.157209] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.987101, 38.131355] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.923245, 38.195151] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.112717, 38.386286] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.9012, 38.264649] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.972699, 38.321883] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.177781, 38.157193] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.075116, 38.12531] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.156723, 38.262195] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.9223, 38.213463] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.009281, 38.302385] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.159883, 38.191427] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.014566, 38.459808] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.283315, 38.207977] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.064455, 38.285038] } }, { "type": "Feature", "properties": { "fill-opacity": 0, "stroke-width": 5, "stroke": "#a00", "nearestNeighborAnalysis": { "units": "kilometers", "arealUnits": "kilometers²", "observedMeanDistance": 1.6516270145942438, "expectedMeanDistance": 25.46147090834068, "nearestNeighborIndex": 0.0648676983564686, "numberOfPoints": 150, "zScore": -21.91036291916375 } }, "geometry": { "type": "Polygon", "coordinates": [ [ [-15, 38.103721], [-8.90061, 38.103721], [-8.90061, 45], [-15, 45], [-15, 38.103721] ] ] } } ] } ================================================ FILE: packages/turf-nearest-neighbor-analysis/test/out/random-outlier.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.954694, 38.404164] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-15, 45] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.136099, 38.363429] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.21113, 38.30495] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.193729, 38.350466] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.018305, 38.364227] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.920177, 38.452453] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.086054, 38.159283] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.260167, 38.291011] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.289808, 38.242273] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.087129, 38.396721] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.022715, 38.106771] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.13807, 38.291032] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.094412, 38.232696] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.078316, 38.482505] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.929359, 38.376163] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.920108, 38.319165] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.041088, 38.483539] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.206664, 38.146765] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.234475, 38.395941] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.190799, 38.386155] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.151348, 38.40649] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.158765, 38.356782] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.281541, 38.445631] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.913574, 38.218264] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.058748, 38.488617] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.908882, 38.158353] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.264713, 38.149991] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.933592, 38.407246] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.979399, 38.475214] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.139436, 38.388425] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.20602, 38.226133] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.15572, 38.41356] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.12845, 38.119456] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.286209, 38.189841] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.181364, 38.359292] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.26593, 38.148479] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.182017, 38.452389] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.953341, 38.486357] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.012162, 38.491996] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.217949, 38.409859] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.063068, 38.409282] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.979337, 38.271477] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.290449, 38.418195] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.179416, 38.330713] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.03542, 38.390834] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.973366, 38.343977] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.24081, 38.227046] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.078366, 38.128494] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.035873, 38.161218] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.283248, 38.294586] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.107167, 38.287484] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.162158, 38.343681] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.017261, 38.15401] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.258804, 38.478564] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.991477, 38.277807] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.083668, 38.391482] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.151631, 38.127203] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.298224, 38.124581] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.938073, 38.479995] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.972151, 38.2251] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.211151, 38.327362] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.248352, 38.395749] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.291831, 38.149854] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.049692, 38.453749] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.204458, 38.175] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.291144, 38.334861] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.90061, 38.310766] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.074624, 38.170073] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.949588, 38.297251] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.015858, 38.455465] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.129393, 38.433759] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.220397, 38.434073] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.122567, 38.117247] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.182398, 38.354991] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.287897, 38.494925] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.074061, 38.33621] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.275954, 38.439155] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.974067, 38.403501] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.1945, 38.225454] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.055501, 38.330317] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.953984, 38.358586] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.910739, 38.133025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.052012, 38.233271] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.243292, 38.336191] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.09942, 38.422624] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.983348, 38.189067] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.951621, 38.417607] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.19533, 38.103721] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.141613, 38.37755] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.128715, 38.224561] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.939214, 38.321806] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.078105, 38.416801] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.996924, 38.391104] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.220773, 38.225846] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.169736, 38.309506] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.969041, 38.431855] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.203425, 38.174003] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.230895, 38.106708] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.236069, 38.380582] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.916406, 38.128031] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.057459, 38.457597] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.940215, 38.346589] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.177704, 38.384899] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.194755, 38.256258] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.279771, 38.419831] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.185981, 38.235418] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.096144, 38.196312] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.284543, 38.32892] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.251747, 38.462856] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.977257, 38.466877] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.071951, 38.34273] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.03117, 38.462884] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.061677, 38.406707] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.904584, 38.277116] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.298674, 38.446268] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.993924, 38.42056] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.98545, 38.473894] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.113358, 38.392358] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.25751, 38.251519] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.081415, 38.186072] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.164533, 38.308151] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.995219, 38.166287] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.157178, 38.276015] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.015802, 38.195386] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.273499, 38.146365] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.186797, 38.154871] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.990001, 38.420671] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.902532, 38.359039] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.142114, 38.148616] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.938303, 38.493313] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.984508, 38.169281] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.029585, 38.176145] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.138745, 38.442638] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.216901, 38.483665] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.95789, 38.47703] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.022326, 38.157209] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.987101, 38.131355] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.923245, 38.195151] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.112717, 38.386286] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.9012, 38.264649] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.972699, 38.321883] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.177781, 38.157193] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.075116, 38.12531] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.156723, 38.262195] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.9223, 38.213463] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.009281, 38.302385] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.159883, 38.191427] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.014566, 38.459808] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.283315, 38.207977] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.064455, 38.285038] } }, { "type": "Feature", "bbox": [-15, 38.10372140158265, -8.900609997813907, 45], "properties": { "fill-opacity": 0, "stroke-width": 5, "stroke": "#a00", "nearestNeighborAnalysis": { "units": "kilometers", "arealUnits": "kilometers²", "observedMeanDistance": 7.363991103875287, "expectedMeanDistance": 25.377020579774225, "nearestNeighborIndex": 0.29018343901823024, "numberOfPoints": 151, "zScore": -16.686508895950315 } }, "geometry": { "type": "Polygon", "coordinates": [ [ [-15, 38.103721], [-8.90061, 38.103721], [-8.90061, 45], [-15, 45], [-15, 38.103721] ] ] } } ] } ================================================ FILE: packages/turf-nearest-neighbor-analysis/test/out/random.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.954694, 38.404164] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.136099, 38.363429] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.21113, 38.30495] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.193729, 38.350466] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.018305, 38.364227] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.920177, 38.452453] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.086054, 38.159283] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.260167, 38.291011] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.289808, 38.242273] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.087129, 38.396721] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.022715, 38.106771] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.13807, 38.291032] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.094412, 38.232696] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.078316, 38.482505] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.929359, 38.376163] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.920108, 38.319165] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.041088, 38.483539] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.206664, 38.146765] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.234475, 38.395941] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.190799, 38.386155] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.151348, 38.40649] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.158765, 38.356782] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.281541, 38.445631] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.913574, 38.218264] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.058748, 38.488617] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.908882, 38.158353] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.264713, 38.149991] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.933592, 38.407246] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.979399, 38.475214] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.139436, 38.388425] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.20602, 38.226133] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.15572, 38.41356] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.12845, 38.119456] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.286209, 38.189841] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.181364, 38.359292] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.26593, 38.148479] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.182017, 38.452389] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.953341, 38.486357] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.012162, 38.491996] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.217949, 38.409859] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.063068, 38.409282] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.979337, 38.271477] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.290449, 38.418195] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.179416, 38.330713] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.03542, 38.390834] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.973366, 38.343977] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.24081, 38.227046] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.078366, 38.128494] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.035873, 38.161218] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.283248, 38.294586] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.107167, 38.287484] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.162158, 38.343681] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.017261, 38.15401] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.258804, 38.478564] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.991477, 38.277807] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.083668, 38.391482] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.151631, 38.127203] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.298224, 38.124581] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.938073, 38.479995] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.972151, 38.2251] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.211151, 38.327362] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.248352, 38.395749] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.291831, 38.149854] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.049692, 38.453749] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.204458, 38.175] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.291144, 38.334861] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.90061, 38.310766] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.074624, 38.170073] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.949588, 38.297251] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.015858, 38.455465] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.129393, 38.433759] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.220397, 38.434073] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.122567, 38.117247] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.182398, 38.354991] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.287897, 38.494925] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.074061, 38.33621] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.275954, 38.439155] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.974067, 38.403501] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.1945, 38.225454] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.055501, 38.330317] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.953984, 38.358586] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.910739, 38.133025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.052012, 38.233271] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.243292, 38.336191] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.09942, 38.422624] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.983348, 38.189067] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.951621, 38.417607] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.19533, 38.103721] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.141613, 38.37755] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.128715, 38.224561] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.939214, 38.321806] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.078105, 38.416801] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.996924, 38.391104] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.220773, 38.225846] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.169736, 38.309506] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.969041, 38.431855] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.203425, 38.174003] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.230895, 38.106708] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.236069, 38.380582] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.916406, 38.128031] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.057459, 38.457597] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.940215, 38.346589] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.177704, 38.384899] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.194755, 38.256258] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.279771, 38.419831] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.185981, 38.235418] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.096144, 38.196312] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.284543, 38.32892] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.251747, 38.462856] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.977257, 38.466877] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.071951, 38.34273] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.03117, 38.462884] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.061677, 38.406707] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.904584, 38.277116] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.298674, 38.446268] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.993924, 38.42056] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.98545, 38.473894] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.113358, 38.392358] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.25751, 38.251519] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.081415, 38.186072] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.164533, 38.308151] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.995219, 38.166287] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.157178, 38.276015] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.015802, 38.195386] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.273499, 38.146365] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.186797, 38.154871] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.990001, 38.420671] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.902532, 38.359039] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.142114, 38.148616] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.938303, 38.493313] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.984508, 38.169281] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.029585, 38.176145] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.138745, 38.442638] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.216901, 38.483665] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.95789, 38.47703] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.022326, 38.157209] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.987101, 38.131355] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.923245, 38.195151] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.112717, 38.386286] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.9012, 38.264649] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.972699, 38.321883] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.177781, 38.157193] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.075116, 38.12531] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.156723, 38.262195] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8.9223, 38.213463] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.009281, 38.302385] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.159883, 38.191427] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.014566, 38.459808] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.283315, 38.207977] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-9.064455, 38.285038] } }, { "type": "Feature", "bbox": [ -9.29867379414539, 38.10372140158265, -8.900609997813907, 38.49492542236455 ], "properties": { "fill-opacity": 0, "stroke-width": 5, "stroke": "#a00", "nearestNeighborAnalysis": { "units": "kilometers", "arealUnits": "kilometers²", "observedMeanDistance": 1.6516270145942438, "expectedMeanDistance": 1.5869473002516816, "nearestNeighborIndex": 1.0407573171032865, "numberOfPoints": 150, "zScore": 0.9549532272331418 } }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.298674, 38.103721], [-8.90061, 38.103721], [-8.90061, 38.494925], [-9.298674, 38.494925], [-9.298674, 38.103721] ] ] } } ] } ================================================ FILE: packages/turf-nearest-neighbor-analysis/test/out/squares.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299993, 38.120136], [-9.299993, 38.165102], [-9.242852, 38.165102], [-9.242852, 38.120136], [-9.299993, 38.120136] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299993, 38.165102], [-9.299993, 38.210068], [-9.242852, 38.210068], [-9.242852, 38.165102], [-9.299993, 38.165102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299993, 38.210068], [-9.299993, 38.255034], [-9.242852, 38.255034], [-9.242852, 38.210068], [-9.299993, 38.210068] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299993, 38.255034], [-9.299993, 38.3], [-9.242852, 38.3], [-9.242852, 38.255034], [-9.299993, 38.255034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299993, 38.3], [-9.299993, 38.344966], [-9.242852, 38.344966], [-9.242852, 38.3], [-9.299993, 38.3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299993, 38.344966], [-9.299993, 38.389932], [-9.242852, 38.389932], [-9.242852, 38.344966], [-9.299993, 38.344966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299993, 38.389932], [-9.299993, 38.434898], [-9.242852, 38.434898], [-9.242852, 38.389932], [-9.299993, 38.389932] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299993, 38.434898], [-9.299993, 38.479864], [-9.242852, 38.479864], [-9.242852, 38.434898], [-9.299993, 38.434898] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242852, 38.120136], [-9.242852, 38.165102], [-9.185711, 38.165102], [-9.185711, 38.120136], [-9.242852, 38.120136] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242852, 38.165102], [-9.242852, 38.210068], [-9.185711, 38.210068], [-9.185711, 38.165102], [-9.242852, 38.165102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242852, 38.210068], [-9.242852, 38.255034], [-9.185711, 38.255034], [-9.185711, 38.210068], [-9.242852, 38.210068] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242852, 38.255034], [-9.242852, 38.3], [-9.185711, 38.3], [-9.185711, 38.255034], [-9.242852, 38.255034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242852, 38.3], [-9.242852, 38.344966], [-9.185711, 38.344966], [-9.185711, 38.3], [-9.242852, 38.3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242852, 38.344966], [-9.242852, 38.389932], [-9.185711, 38.389932], [-9.185711, 38.344966], [-9.242852, 38.344966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242852, 38.389932], [-9.242852, 38.434898], [-9.185711, 38.434898], [-9.185711, 38.389932], [-9.242852, 38.389932] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.242852, 38.434898], [-9.242852, 38.479864], [-9.185711, 38.479864], [-9.185711, 38.434898], [-9.242852, 38.434898] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711, 38.120136], [-9.185711, 38.165102], [-9.12857, 38.165102], [-9.12857, 38.120136], [-9.185711, 38.120136] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711, 38.165102], [-9.185711, 38.210068], [-9.12857, 38.210068], [-9.12857, 38.165102], [-9.185711, 38.165102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711, 38.210068], [-9.185711, 38.255034], [-9.12857, 38.255034], [-9.12857, 38.210068], [-9.185711, 38.210068] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711, 38.255034], [-9.185711, 38.3], [-9.12857, 38.3], [-9.12857, 38.255034], [-9.185711, 38.255034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711, 38.3], [-9.185711, 38.344966], [-9.12857, 38.344966], [-9.12857, 38.3], [-9.185711, 38.3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711, 38.344966], [-9.185711, 38.389932], [-9.12857, 38.389932], [-9.12857, 38.344966], [-9.185711, 38.344966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711, 38.389932], [-9.185711, 38.434898], [-9.12857, 38.434898], [-9.12857, 38.389932], [-9.185711, 38.389932] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.185711, 38.434898], [-9.185711, 38.479864], [-9.12857, 38.479864], [-9.12857, 38.434898], [-9.185711, 38.434898] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857, 38.120136], [-9.12857, 38.165102], [-9.07143, 38.165102], [-9.07143, 38.120136], [-9.12857, 38.120136] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857, 38.165102], [-9.12857, 38.210068], [-9.07143, 38.210068], [-9.07143, 38.165102], [-9.12857, 38.165102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857, 38.210068], [-9.12857, 38.255034], [-9.07143, 38.255034], [-9.07143, 38.210068], [-9.12857, 38.210068] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857, 38.255034], [-9.12857, 38.3], [-9.07143, 38.3], [-9.07143, 38.255034], [-9.12857, 38.255034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857, 38.3], [-9.12857, 38.344966], [-9.07143, 38.344966], [-9.07143, 38.3], [-9.12857, 38.3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857, 38.344966], [-9.12857, 38.389932], [-9.07143, 38.389932], [-9.07143, 38.344966], [-9.12857, 38.344966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857, 38.389932], [-9.12857, 38.434898], [-9.07143, 38.434898], [-9.07143, 38.389932], [-9.12857, 38.389932] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.12857, 38.434898], [-9.12857, 38.479864], [-9.07143, 38.479864], [-9.07143, 38.434898], [-9.12857, 38.434898] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.07143, 38.120136], [-9.07143, 38.165102], [-9.014289, 38.165102], [-9.014289, 38.120136], [-9.07143, 38.120136] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.07143, 38.165102], [-9.07143, 38.210068], [-9.014289, 38.210068], [-9.014289, 38.165102], [-9.07143, 38.165102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.07143, 38.210068], [-9.07143, 38.255034], [-9.014289, 38.255034], [-9.014289, 38.210068], [-9.07143, 38.210068] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.07143, 38.255034], [-9.07143, 38.3], [-9.014289, 38.3], [-9.014289, 38.255034], [-9.07143, 38.255034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.07143, 38.3], [-9.07143, 38.344966], [-9.014289, 38.344966], [-9.014289, 38.3], [-9.07143, 38.3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.07143, 38.344966], [-9.07143, 38.389932], [-9.014289, 38.389932], [-9.014289, 38.344966], [-9.07143, 38.344966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.07143, 38.389932], [-9.07143, 38.434898], [-9.014289, 38.434898], [-9.014289, 38.389932], [-9.07143, 38.389932] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.07143, 38.434898], [-9.07143, 38.479864], [-9.014289, 38.479864], [-9.014289, 38.434898], [-9.07143, 38.434898] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.014289, 38.120136], [-9.014289, 38.165102], [-8.957148, 38.165102], [-8.957148, 38.120136], [-9.014289, 38.120136] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.014289, 38.165102], [-9.014289, 38.210068], [-8.957148, 38.210068], [-8.957148, 38.165102], [-9.014289, 38.165102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.014289, 38.210068], [-9.014289, 38.255034], [-8.957148, 38.255034], [-8.957148, 38.210068], [-9.014289, 38.210068] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.014289, 38.255034], [-9.014289, 38.3], [-8.957148, 38.3], [-8.957148, 38.255034], [-9.014289, 38.255034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.014289, 38.3], [-9.014289, 38.344966], [-8.957148, 38.344966], [-8.957148, 38.3], [-9.014289, 38.3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.014289, 38.344966], [-9.014289, 38.389932], [-8.957148, 38.389932], [-8.957148, 38.344966], [-9.014289, 38.344966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.014289, 38.389932], [-9.014289, 38.434898], [-8.957148, 38.434898], [-8.957148, 38.389932], [-9.014289, 38.389932] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.014289, 38.434898], [-9.014289, 38.479864], [-8.957148, 38.479864], [-8.957148, 38.434898], [-9.014289, 38.434898] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-8.957148, 38.120136], [-8.957148, 38.165102], [-8.900007, 38.165102], [-8.900007, 38.120136], [-8.957148, 38.120136] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-8.957148, 38.165102], [-8.957148, 38.210068], [-8.900007, 38.210068], [-8.900007, 38.165102], [-8.957148, 38.165102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-8.957148, 38.210068], [-8.957148, 38.255034], [-8.900007, 38.255034], [-8.900007, 38.210068], [-8.957148, 38.210068] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-8.957148, 38.255034], [-8.957148, 38.3], [-8.900007, 38.3], [-8.900007, 38.255034], [-8.957148, 38.255034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-8.957148, 38.3], [-8.957148, 38.344966], [-8.900007, 38.344966], [-8.900007, 38.3], [-8.957148, 38.3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-8.957148, 38.344966], [-8.957148, 38.389932], [-8.900007, 38.389932], [-8.900007, 38.344966], [-8.957148, 38.344966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-8.957148, 38.389932], [-8.957148, 38.434898], [-8.900007, 38.434898], [-8.900007, 38.389932], [-8.957148, 38.389932] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-8.957148, 38.434898], [-8.957148, 38.479864], [-8.900007, 38.479864], [-8.900007, 38.434898], [-8.957148, 38.434898] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.271422, 38.142619] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.271422, 38.187585] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.271422, 38.232551] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.271422, 38.277517] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.271422, 38.322483] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.271422, 38.367449] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.271422, 38.412415] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.271422, 38.457381] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.214281, 38.142619] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.214281, 38.187585] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.214281, 38.232551] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.214281, 38.277517] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.214281, 38.322483] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.214281, 38.367449] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.214281, 38.412415] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.214281, 38.457381] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.157141, 38.142619] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.157141, 38.187585] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.157141, 38.232551] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.157141, 38.277517] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.157141, 38.322483] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.157141, 38.367449] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.157141, 38.412415] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.157141, 38.457381] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.1, 38.142619] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.1, 38.187585] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.1, 38.232551] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.1, 38.277517] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.1, 38.322483] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.1, 38.367449] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.1, 38.412415] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.1, 38.457381] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.042859, 38.142619] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.042859, 38.187585] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.042859, 38.232551] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.042859, 38.277517] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.042859, 38.322483] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.042859, 38.367449] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.042859, 38.412415] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-9.042859, 38.457381] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-8.985719, 38.142619] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-8.985719, 38.187585] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-8.985719, 38.232551] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-8.985719, 38.277517] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-8.985719, 38.322483] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-8.985719, 38.367449] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-8.985719, 38.412415] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-8.985719, 38.457381] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-8.928578, 38.142619] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-8.928578, 38.187585] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-8.928578, 38.232551] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-8.928578, 38.277517] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-8.928578, 38.322483] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-8.928578, 38.367449] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-8.928578, 38.412415] } }, { "type": "Feature", "properties": { "marker-color": "#0a0" }, "geometry": { "type": "Point", "coordinates": [-8.928578, 38.457381] } }, { "type": "Feature", "bbox": [ -9.299992605418552, 38.12013592725509, -8.900007394581449, 38.47986407274493 ], "properties": { "fill-opacity": 0, "stroke-width": 5, "stroke": "#a00", "nearestNeighborAnalysis": { "units": "kilometers", "arealUnits": "kilometers²", "observedMeanDistance": 4.986280150858801, "expectedMeanDistance": 2.4965676693887655, "nearestNeighborIndex": 1.9972541549733325, "numberOfPoints": 56, "zScore": 14.276795896261763 } }, "geometry": { "type": "Polygon", "coordinates": [ [ [-9.299993, 38.120136], [-8.900007, 38.120136], [-8.900007, 38.479864], [-9.299993, 38.479864], [-9.299993, 38.120136] ] ] } } ] } ================================================ FILE: packages/turf-nearest-neighbor-analysis/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { truncate } from "@turf/truncate"; import { centroid } from "@turf/centroid"; import { featureEach } from "@turf/meta"; import { featureCollection } from "@turf/helpers"; import { nearestNeighborAnalysis } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("turf-nearest-neighbor", (t) => { fixtures.forEach((fixture) => { const filename = fixture.filename; const name = fixture.name; const geojson = fixture.geojson; const options = geojson.options; const results = featureCollection([]); featureEach(geojson, (feature) => results.features.push(truncate(feature))); if (geojson.features[0].geometry.type === "Polygon") { featureEach(geojson, (feature) => results.features.push( truncate( centroid(feature, { properties: { "marker-color": "#0a0" } }) ) ) ); } results.features.push(truncate(nearestNeighborAnalysis(geojson, options))); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEqual(results, loadJsonFileSync(directories.out + filename), name); }); t.end(); }); ================================================ FILE: packages/turf-nearest-neighbor-analysis/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-nearest-point/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-nearest-point/README.md ================================================ # @turf/nearest-point ## nearestPoint Takes a reference [point][1] and a FeatureCollection of Features with Point geometries and returns the point from the FeatureCollection closest to the reference. This calculation is geodesic. ### Parameters * `targetPoint` **[Coord][2]** the reference point * `points` **[FeatureCollection][3]<[Point][1]>** against input point set * `options` **[Object][4]** Optional parameters (optional, default `{}`) * `options.units` **Units** the units of the numeric result. Supports all valid Turf [Units][5]. (optional, default `'kilometers'`) ### Examples ```javascript var targetPoint = turf.point([28.965797, 41.010086], {"marker-color": "#0F0"}); var points = turf.featureCollection([ turf.point([28.973865, 41.011122]), turf.point([28.948459, 41.024204]), turf.point([28.938674, 41.013324]) ]); var nearest = turf.nearestPoint(targetPoint, points); //addToMap var addToMap = [targetPoint, points, nearest]; nearest.properties['marker-color'] = '#F00'; ``` Returns **[Feature][6]<[Point][1]>** the closest point in the set to the reference point [1]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.1 [3]: https://tools.ietf.org/html/rfc7946#section-3.3 [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [5]: https://turfjs.org/docs/api/types/Units [6]: https://tools.ietf.org/html/rfc7946#section-3.2 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/nearest-point ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-nearest-point/bench.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import Benchmark from "benchmark"; import { loadJsonFileSync } from "load-json-file"; import { nearestPoint } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const pts = loadJsonFileSync(path.join(__dirname, "test", "in", "points.json")); /** * Benchmark Results * * turf-nearest-point x 72,623 ops/sec ±9.23% (73 runs sampled) */ const suite = new Benchmark.Suite("turf-nearest-point"); suite .add("turf-nearest-point", () => nearestPoint(pts.properties.targetPoint, pts) ) .on("cycle", (e) => console.log(String(e.target))) .run(); ================================================ FILE: packages/turf-nearest-point/index.ts ================================================ import { Feature, FeatureCollection, GeoJsonProperties, Point } from "geojson"; import { Coord, Units } from "@turf/helpers"; import { clone } from "@turf/clone"; import { distance } from "@turf/distance"; import { featureEach } from "@turf/meta"; interface NearestPoint

extends Feature { properties: { featureIndex: number; distanceToPoint: number; } & P; } /** * Takes a reference {@link Point|point} and a FeatureCollection of Features * with Point geometries and returns the * point from the FeatureCollection closest to the reference. This calculation * is geodesic. * * @function * @param {Coord} targetPoint the reference point * @param {FeatureCollection} points against input point set * @param {Object} [options={}] Optional parameters * @param {Units} [options.units='kilometers'] the units of the numeric result. Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @returns {Feature} the closest point in the set to the reference point * @example * var targetPoint = turf.point([28.965797, 41.010086], {"marker-color": "#0F0"}); * var points = turf.featureCollection([ * turf.point([28.973865, 41.011122]), * turf.point([28.948459, 41.024204]), * turf.point([28.938674, 41.013324]) * ]); * * var nearest = turf.nearestPoint(targetPoint, points); * * //addToMap * var addToMap = [targetPoint, points, nearest]; * nearest.properties['marker-color'] = '#F00'; */ function nearestPoint

( targetPoint: Coord, points: FeatureCollection, options: { units?: Units; } = {} ): NearestPoint

{ // Input validation if (!targetPoint) throw new Error("targetPoint is required"); if (!points) throw new Error("points is required"); let minDist = Infinity; let bestFeatureIndex = 0; featureEach(points, (pt, featureIndex) => { const distanceToPoint = distance(targetPoint, pt, options); if (distanceToPoint < minDist) { bestFeatureIndex = featureIndex; minDist = distanceToPoint; } }); const nearestPoint = clone(points.features[bestFeatureIndex]); return { ...nearestPoint, properties: { ...nearestPoint.properties, featureIndex: bestFeatureIndex, distanceToPoint: minDist, }, }; } export { nearestPoint, NearestPoint }; export default nearestPoint; ================================================ FILE: packages/turf-nearest-point/package.json ================================================ { "name": "@turf/nearest-point", "version": "7.3.4", "description": "Finds the nearest point from a FeatureCollection of Features with Point geometries to a given point.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "geojson", "gis", "near", "nearest", "point" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/clone": "workspace:*", "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-nearest-point/test/in/points.json ================================================ { "type": "FeatureCollection", "properties": { "targetPoint": [-75.4, 39.4] }, "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.833, 39.284] }, "properties": { "name": "Location B", "category": "House", "elevation": 25 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.6, 39.984] }, "properties": { "name": "Location A", "category": "Store", "elevation": 23 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.221, 39.125] }, "properties": { "name": "Location C", "category": "Office", "elevation": 29 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.358, 39.987] }, "properties": { "name": "Location A", "category": "Store", "elevation": 12 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.9221, 39.27] }, "properties": { "name": "Location B", "category": "House", "elevation": 11 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.534, 39.123] }, "properties": { "name": "Location C", "category": "Office", "elevation": 49 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.21, 39.12] }, "properties": { "name": "Location A", "category": "Store", "elevation": 50 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.22, 39.33] }, "properties": { "name": "Location B", "category": "House", "elevation": 90 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.44, 39.55] }, "properties": { "name": "Location C", "category": "Office", "elevation": 22 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.77, 39.66] }, "properties": { "name": "Location A", "category": "Store", "elevation": 99 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.44, 39.11] }, "properties": { "name": "Location B", "category": "House", "elevation": 55 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.05, 39.92] }, "properties": { "name": "Location C", "category": "Office", "elevation": 41 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.88, 39.98] }, "properties": { "name": "Location A", "category": "Store", "elevation": 52 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.55, 39.55] }, "properties": { "name": "Location B", "category": "House", "elevation": 143 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.33, 39.44] }, "properties": { "name": "Location C", "category": "Office", "elevation": 76 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.56, 39.24] }, "properties": { "name": "Location C", "category": "Office", "elevation": 18 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.56, 39.36] }, "properties": { "name": "Location C", "category": "Office", "elevation": 52 } } ] } ================================================ FILE: packages/turf-nearest-point/test/out/points.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.833, 39.284] }, "properties": { "name": "Location B", "category": "House", "elevation": 25 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.6, 39.984] }, "properties": { "name": "Location A", "category": "Store", "elevation": 23 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.221, 39.125] }, "properties": { "name": "Location C", "category": "Office", "elevation": 29 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.358, 39.987] }, "properties": { "name": "Location A", "category": "Store", "elevation": 12 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.9221, 39.27] }, "properties": { "name": "Location B", "category": "House", "elevation": 11 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.534, 39.123] }, "properties": { "name": "Location C", "category": "Office", "elevation": 49 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.21, 39.12] }, "properties": { "name": "Location A", "category": "Store", "elevation": 50 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.22, 39.33] }, "properties": { "name": "Location B", "category": "House", "elevation": 90 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.44, 39.55] }, "properties": { "name": "Location C", "category": "Office", "elevation": 22 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.77, 39.66] }, "properties": { "name": "Location A", "category": "Store", "elevation": 99 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.44, 39.11] }, "properties": { "name": "Location B", "category": "House", "elevation": 55 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.05, 39.92] }, "properties": { "name": "Location C", "category": "Office", "elevation": 41 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.88, 39.98] }, "properties": { "name": "Location A", "category": "Store", "elevation": 52 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.55, 39.55] }, "properties": { "name": "Location B", "category": "House", "elevation": 143 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.33, 39.44] }, "properties": { "name": "Location C", "category": "Office", "elevation": 76 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.56, 39.24] }, "properties": { "name": "Location C", "category": "Office", "elevation": 18 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.56, 39.36] }, "properties": { "name": "Location C", "category": "Office", "elevation": 52 } }, { "type": "Feature", "properties": { "marker-color": "#00F", "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [-75.4, 39.4] } }, { "type": "Feature", "properties": { "name": "Location C", "category": "Office", "elevation": 76, "featureIndex": 14, "distanceToPoint": 7.479219230179186, "marker-color": "#F00", "marker-symbol": "star" }, "geometry": { "type": "Point", "coordinates": [-75.33, 39.44] } } ] } ================================================ FILE: packages/turf-nearest-point/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { featureCollection, point } from "@turf/helpers"; import { nearestPoint } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("turf-nearest-point", (t) => { fixtures.forEach((fixture) => { const filename = fixture.filename; const name = fixture.name; const geojson = fixture.geojson; const targetPoint = point(geojson.properties.targetPoint); const nearestPt = nearestPoint(targetPoint, geojson); // Style results nearestPt.properties["marker-color"] = "#F00"; nearestPt.properties["marker-symbol"] = "star"; targetPoint.properties["marker-color"] = "#00F"; targetPoint.properties["marker-symbol"] = "circle"; const results = featureCollection([ ...geojson.features, targetPoint, nearestPt, ]); // Save output if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEqual(results, loadJsonFileSync(directories.out + filename), name); }); t.end(); }); test("nearest-point -- prevent input mutation", (t) => { const pt1 = point([40, 50], { featureIndex: "foo" }); const pt2 = point([20, -10], { distanceToPoint: "bar" }); const pts = featureCollection([pt1, pt2]); const nearestPt = nearestPoint([0, 0], pts); // Check if featureIndex properties was added to properties t.equal(nearestPt.properties.featureIndex, 1); // Check if previous input points have been modified t.deepEqual(pt1.properties, { featureIndex: "foo" }); t.deepEqual(pt2.properties, { distanceToPoint: "bar" }); t.end(); }); test("nearest-point -- use different units", (t) => { const pt1 = point([40, 50], { featureIndex: "foo" }); const pt2 = point([20, -10], { distanceToPoint: "bar" }); const pts = featureCollection([pt1, pt2]); const distanceInKilometers = nearestPoint([0, 0], pts).properties .distanceToPoint; const distanceInMeters = nearestPoint([0, 0], pts, { units: "meters" }) .properties.distanceToPoint; const oneKilometerInMeters = 1000; // Check if the proper distance gets returned when using "units" option t.equal(distanceInKilometers, distanceInMeters / oneKilometerInMeters); t.end(); }); ================================================ FILE: packages/turf-nearest-point/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-nearest-point/types.ts ================================================ import { point, featureCollection } from "@turf/helpers"; import { nearestPoint } from "./index.js"; const targetPoint = point([28.965797, 41.010086], { "marker-color": "#0F0" }); const points = featureCollection([ point([28.973865, 41.011122]), point([28.948459, 41.024204]), point([28.938674, 41.013324]), ]); const nearest = nearestPoint(targetPoint, points, { units: "kilometers" }); nearest.properties.distanceToPoint; nearest.properties.featureIndex; ================================================ FILE: packages/turf-nearest-point-on-line/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-nearest-point-on-line/README.md ================================================ # @turf/nearest-point-on-line ## nearestPointOnLine Returns the nearest point on a line to a given point. If any of the segments in the input line string are antipodal and therefore have an undefined arc, this function will instead return that the point lies on the line. ⚠️ We have begun the process of migrating to different return properties for this function. The new properties we recommend using as of v7.4 are: * lineStringIndex - point was found on the nth LineString of an input MultiLineString. Previously `multiFeatureIndex` * segmentIndex - point was found on the nth segment of the above LineString. Previously `index` * totalDistance - distance from the start of the overall MultiLineString. Previously `location` * lineDistance - distance from the start of the relevant LineString * segmentDistance - distance from the start of the relevant segment * pointDistance - distance between found point is from input reference point. Previously `dist` multiFeatureIndex, index, location, and dist continue to work as previously until at least the next major release. ### Parameters * `lines` **([Geometry][1] | [Feature][2]<([LineString][3] | [MultiLineString][4])>)** Lines to snap to * `inputPoint` **([Geometry][1] | [Feature][2]<[Point][5]> | [Array][6]<[number][7]>)** Point to snap from * `options` **[Object][8]** Optional parameters (optional, default `{}`) * `options.units` **Units** Supports all valid Turf [Units][9] (optional, default `'kilometers'`) ### Examples ```javascript var line = turf.lineString([ [-77.031669, 38.878605], [-77.029609, 38.881946], [-77.020339, 38.884084], [-77.025661, 38.885821], [-77.021884, 38.889563], [-77.019824, 38.892368] ]); var inputPoint = turf.point([-77.037076, 38.884017]); var snapped = turf.nearestPointOnLine(line, inputPoint, {units: 'miles'}); //addToMap var addToMap = [line, inputPoint, snapped]; snapped.properties['marker-color'] = '#00f'; ``` Returns **[Feature][2]<[Point][5]>** closest point on the `lines` to the `inputPoint`. The point will have the following properties: `lineStringIndex`: closest point was found on the nth LineString (only relevant if input is MultiLineString), `segmentIndex`: closest point was found on nth line segment of the LineString, `totalDistance`: distance along the line from the absolute start of the MultiLineString, `lineDistance`: distance along the line from the start of the LineString where the closest point was found, `segmentDistance`: distance along the line from the start of the line segment where the closest point was found, `pointDistance`: distance to the input point. [1]: https://tools.ietf.org/html/rfc7946#section-3.1 [2]: https://tools.ietf.org/html/rfc7946#section-3.2 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [4]: https://tools.ietf.org/html/rfc7946#section-3.1.5 [5]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array [7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [9]: https://turfjs.org/docs/api/types/Units --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/nearest-point-on-line ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-nearest-point-on-line/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark, { Event } from "benchmark"; import { nearestPointOnLine } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); /** * Benchmark Results * * ==after (@turf/line-intersect)== * line1 x 234,231 ops/sec ±1.78% (88 runs sampled) * route1 x 161 ops/sec ±1.53% (80 runs sampled) * route2 x 184 ops/sec ±1.96% (80 runs sampled) * * ==before (original)== * line1 x 272,785 ops/sec ±1.29% (87 runs sampled) * route1 x 195 ops/sec ±2.23% (80 runs sampled) * route2 x 218 ops/sec ±2.42% (78 runs sampled) */ let totalTime = 0.0; const suite = new Benchmark.Suite("turf-nearest-point-on-line"); for (const { name, geojson } of fixtures) { const [line, point] = geojson.features; suite.add(name, () => nearestPointOnLine(line, point), { onComplete: (e: Event) => (totalTime = totalTime += e.target.times?.elapsed), }); } suite .on("cycle", (e: Event) => console.log(String(e.target))) .on("complete", () => console.log(`completed in ${totalTime.toFixed(2)} seconds`) ) .run(); ================================================ FILE: packages/turf-nearest-point-on-line/index.ts ================================================ import { Feature, Point, Position, LineString, MultiLineString } from "geojson"; import { distance } from "@turf/distance"; import { flattenEach } from "@turf/meta"; import { point, degreesToRadians, radiansToDegrees, Coord, Units, } from "@turf/helpers"; import { getCoord, getCoords } from "@turf/invariant"; /** * Returns the nearest point on a line to a given point. * * If any of the segments in the input line string are antipodal and therefore * have an undefined arc, this function will instead return that the point lies * on the line. * * ⚠️ We have begun the process of migrating to different return properties for * this function. The new properties we recommend using as of v7.4 are: * - lineStringIndex - point was found on the nth LineString of an input MultiLineString. Previously `multiFeatureIndex` * - segmentIndex - point was found on the nth segment of the above LineString. Previously `index` * - totalDistance - distance from the start of the overall MultiLineString. Previously `location` * - lineDistance - distance from the start of the relevant LineString * - segmentDistance - distance from the start of the relevant segment * - pointDistance - distance between found point is from input reference point. Previously `dist` * * multiFeatureIndex, index, location, and dist continue to work as previously * until at least the next major release. * * @function * @param {Geometry|Feature} lines Lines to snap to * @param {Geometry|Feature|number[]} inputPoint Point to snap from * @param {Object} [options={}] Optional parameters * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @returns {Feature} closest point on the `lines` to the `inputPoint`. The point will have the following properties: `lineStringIndex`: closest point was found on the nth LineString (only relevant if input is MultiLineString), `segmentIndex`: closest point was found on nth line segment of the LineString, `totalDistance`: distance along the line from the absolute start of the MultiLineString, `lineDistance`: distance along the line from the start of the LineString where the closest point was found, `segmentDistance`: distance along the line from the start of the line segment where the closest point was found, `pointDistance`: distance to the input point. * @example * var line = turf.lineString([ * [-77.031669, 38.878605], * [-77.029609, 38.881946], * [-77.020339, 38.884084], * [-77.025661, 38.885821], * [-77.021884, 38.889563], * [-77.019824, 38.892368] * ]); * var inputPoint = turf.point([-77.037076, 38.884017]); * * var snapped = turf.nearestPointOnLine(line, inputPoint, {units: 'miles'}); * * //addToMap * var addToMap = [line, inputPoint, snapped]; * snapped.properties['marker-color'] = '#00f'; */ function nearestPointOnLine( lines: Feature | G, inputPoint: Coord, options: { units?: Units } = {} ): Feature< Point, { lineStringIndex: number; segmentIndex: number; totalDistance: number; lineDistance: number; segmentDistance: number; pointDistance: number; // deprecated properties START /** @deprecated use `lineStringIndex` instead */ multiFeatureIndex: number; /** @deprecated use `segmentIndex` instead */ index: number; /** @deprecated use `totalDistance` instead */ location: number; /** @deprecated use `pointDistance` instead */ dist: number; // deprecated properties END [key: string]: any; } > { if (!lines || !inputPoint) { throw new Error("lines and inputPoint are required arguments"); } const inputPos = getCoord(inputPoint); let closestPt = point([Infinity, Infinity], { lineStringIndex: -1, segmentIndex: -1, totalDistance: -1, lineDistance: -1, segmentDistance: -1, pointDistance: Infinity, // deprecated properties START multiFeatureIndex: -1, index: -1, location: -1, dist: Infinity, // deprecated properties END }); let totalDistance = 0.0; let lineDistance = 0.0; let currentLineStringIndex = -1; flattenEach( lines, function (line: any, _featureIndex: number, lineStringIndex: number) { //reset lineDistance at each changed lineStringIndex if (currentLineStringIndex !== lineStringIndex) { currentLineStringIndex = lineStringIndex; lineDistance = 0.0; } const coords: any = getCoords(line); for (let i = 0; i < coords.length - 1; i++) { //start - start of current line section const start: Feature = point(coords[i]); const startPos = getCoord(start); //stop - end of current line section const stop: Feature = point(coords[i + 1]); const stopPos = getCoord(stop); // segmentLength const segmentLength = distance(start, stop, options); let intersectPos: Position; let wasEnd: boolean; // Short circuit if snap point is start or end position of the line // Test the end position first for consistency in case they are // coincident if (stopPos[0] === inputPos[0] && stopPos[1] === inputPos[1]) { [intersectPos, wasEnd] = [stopPos, true]; } else if (startPos[0] === inputPos[0] && startPos[1] === inputPos[1]) { [intersectPos, wasEnd] = [startPos, false]; } else { // Otherwise, find the nearest point the hard way. [intersectPos, wasEnd] = nearestPointOnSegment( startPos, stopPos, inputPos ); } const pointDistance = distance(inputPoint, intersectPos, options); if (pointDistance < closestPt.properties.pointDistance) { const segmentDistance = distance(start, intersectPos, options); closestPt = point(intersectPos, { lineStringIndex: lineStringIndex, // Legacy behaviour where index progresses to next segment # if we // went with the end point this iteration. segmentIndex: wasEnd ? i + 1 : i, totalDistance: totalDistance + segmentDistance, lineDistance: lineDistance + segmentDistance, segmentDistance: segmentDistance, pointDistance: pointDistance, // deprecated properties START multiFeatureIndex: -1, index: -1, location: -1, dist: Infinity, // deprecated properties END }); closestPt.properties = { ...closestPt.properties, multiFeatureIndex: closestPt.properties.lineStringIndex, index: closestPt.properties.segmentIndex, location: closestPt.properties.totalDistance, dist: closestPt.properties.pointDistance, // deprecated properties END }; } // update totalDistance and lineDistance totalDistance += segmentLength; lineDistance += segmentLength; } } ); return closestPt; } // A simple Vector3 type for cartesian operations. type Vector = [number, number, number]; function dot(v1: Vector, v2: Vector): number { const [v1x, v1y, v1z] = v1; const [v2x, v2y, v2z] = v2; return v1x * v2x + v1y * v2y + v1z * v2z; } // https://en.wikipedia.org/wiki/Cross_product function cross(v1: Vector, v2: Vector): Vector { const [v1x, v1y, v1z] = v1; const [v2x, v2y, v2z] = v2; return [v1y * v2z - v1z * v2y, v1z * v2x - v1x * v2z, v1x * v2y - v1y * v2x]; } function magnitude(v: Vector): number { return Math.sqrt(Math.pow(v[0], 2) + Math.pow(v[1], 2) + Math.pow(v[2], 2)); } function normalize(v: Vector): Vector { const mag = magnitude(v); return [v[0] / mag, v[1] / mag, v[2] / mag]; } function lngLatToVector(a: Position): Vector { const lat = degreesToRadians(a[1]); const lng = degreesToRadians(a[0]); return [ Math.cos(lat) * Math.cos(lng), Math.cos(lat) * Math.sin(lng), Math.sin(lat), ]; } function vectorToLngLat(v: Vector): Position { const [x, y, z] = v; // Clamp the z-value to ensure that is inside the [-1, 1] domain as required // by asin. Note therefore that this function should only be applied to unit // vectors so z > 1 should not exist const zClamp = Math.min(Math.max(z, -1), 1); const lat = radiansToDegrees(Math.asin(zClamp)); const lng = radiansToDegrees(Math.atan2(y, x)); return [lng, lat]; } function nearestPointOnSegment( posA: Position, // start point of segment to measure to posB: Position, // end point of segment to measure to posC: Position // point to measure from ): [Position, boolean] { // Based heavily on this article on finding cross track distance to an arc: // https://gis.stackexchange.com/questions/209540/projecting-cross-track-distance-on-great-circle // Convert spherical (lng, lat) to cartesian vector coords (x, y, z) // In the below https://tikz.net/spherical_1/ we convert lng (𝜙) and lat (𝜃) // into vectors with x, y, and z components with a length (r) of 1. const A = lngLatToVector(posA); // the vector from 0,0,0 to posA const B = lngLatToVector(posB); // ... to posB const C = lngLatToVector(posC); // ... to posC // The axis (normal vector) of the great circle plane containing the line segment const segmentAxis = cross(A, B); // Two degenerate cases exist for the segment axis cross product. The first is // when vectors are aligned (within the bounds of floating point tolerance). // The second is where vectors are antipodal (again within the bounds of // tolerance. Both cases produce a [0, 0, 0] cross product which invalidates // the rest of the algorithm, but each case must be handled separately: // - The aligned case indicates coincidence of A and B. therefore this can be // an early return assuming the closest point is the end (for consistency). // - The antipodal case is truly degenerate - an infinte number of great // circles are possible and one will always pass through C. However, given // that this case is both highly unlikely to occur in practice and that is // will usually be logically sound to return that the point is on the // segment, we choose to return the provided point. if (segmentAxis[0] === 0 && segmentAxis[1] === 0 && segmentAxis[2] === 0) { if (dot(A, B) > 0) { return [[...posB], true]; } else { return [[...posC], false]; } } // The axis of the great circle passing through the segment's axis and the // target point const targetAxis = cross(segmentAxis, C); // This cross product also has a degenerate case where the segment axis is // coincident with or antipodal to the target point. In this case the point // is equidistant to the entire segment. For consistency, we early return the // endpoint as the matching point. if (targetAxis[0] === 0 && targetAxis[1] === 0 && targetAxis[2] === 0) { return [[...posB], true]; } // The line of intersection between the two great circle planes const intersectionAxis = cross(targetAxis, segmentAxis); // Vectors to the two points these great circles intersect are the normalized // intersection and its antipodes const I1 = normalize(intersectionAxis); const I2: Vector = [-I1[0], -I1[1], -I1[2]]; // Figure out which is the closest intersection to this segment of the great circle // Note that for points on a unit sphere, the dot product represents the // cosine of the angle between the two vectors which monotonically increases // the closer the two points are together and therefore determines proximity const I = dot(C, I1) > dot(C, I2) ? I1 : I2; // I is the closest intersection to the segment, though might not actually be // ON the segment. To test whether the closest intersection lies on the arc or // not, we do a cross product comparison to check rotation around the unit // circle defined by the great circle plane. const segmentAxisNorm = normalize(segmentAxis); const cmpAI = dot(cross(A, I), segmentAxisNorm); const cmpIB = dot(cross(I, B), segmentAxisNorm); // When both comparisons are positive, the rotation from A to I to B is in the // same direction, implying that I lies between A and B if (cmpAI >= 0 && cmpIB >= 0) { return [vectorToLngLat(I), false]; } // Finally process the case where the intersection is not on the segment, // using the dot product with the original point to find the closest endpoint if (dot(A, C) > dot(B, C)) { // Clone position when returning as it is reasonable to not expect structural // sharing on the returned Position in all return cases return [[...posA], false]; } else { return [[...posB], true]; } } export { nearestPointOnLine }; export default nearestPointOnLine; ================================================ FILE: packages/turf-nearest-point-on-line/package.json ================================================ { "name": "@turf/nearest-point-on-line", "version": "7.3.4", "description": "Finds the nearest point on a line to a given point", "author": "Turf Authors", "contributors": [ "Angel Lacret <@alacret>", "Emil Junker <@EmilJunker>", "Jon Miles <@jonmiles>", "John Ziebro <@Insighttful>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/along": "workspace:*", "@turf/length": "workspace:*", "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-nearest-point-on-line/test/in/line-northern-latitude-#344.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-94.0484619140625, 74.98218270428184], [-94.4989013671875, 74.87075679591987], [-94.6527099609375, 74.73540112974021], [-94.72412109375, 74.58572842877513] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-94.71313476562499, 74.87075679591987] } } ] } ================================================ FILE: packages/turf-nearest-point-on-line/test/in/line1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-97.88131713867188, 22.466878364528448], [-97.86758422851562, 22.2992614997412], [-97.82089233398438, 22.175960091218524], [-97.6190185546875, 21.8704201873689] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-97.87994384765625, 22.262409564319125] } } ] } ================================================ FILE: packages/turf-nearest-point-on-line/test/in/multiLine1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-70.57617187499999, -18.979025953255267], [-76.201171875, -47.69497434186281], [-75.9375, -52.482780222078205], [-72.59765625, -55.07836723201513], [-68.115234375, -56.072035471800866], [-64.599609375, -55.07836723201513] ], [ [-44.29687499999999, -23.40276490540795], [-47.900390625, -25.641526373065755], [-47.900390625, -28.38173504322308], [-53.78906249999999, -35.31736632923786], [-56.33789062499999, -35.24561909420681], [-56.07421875, -37.090239803072066], [-57.48046875, -38.75408327579141], [-61.25976562499999, -39.57182223734373], [-61.69921875, -40.97989806962013], [-62.9296875, -41.50857729743933], [-64.599609375, -41.442726377672116], [-62.75390625, -42.163403424224], [-64.599609375, -43.771093817756494], [-65.21484375, -45.151053265563384], [-66.884765625, -45.52174389699363], [-67.1484375, -46.255846818480315], [-65.21484375, -46.67959446564018], [-65.21484375, -48.166085419012525], [-66.62109375, -49.09545216253481], [-66.884765625, -50.23315183247223], [-68.5546875, -50.736455137010644], [-67.763671875, -52.2143386082582] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-66.4892578125, -52.89564866211353] } } ] } ================================================ FILE: packages/turf-nearest-point-on-line/test/in/multiLine2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [129.990234375, -31.728167146023935], [123.74999999999999, -28.071980301779845], [122.51953124999999, -24.846565348219734], [122.6953125, -19.890723023996898] ], [ [127.265625, -13.667338259654947], [133.154296875, -13.581920900545844], [136.93359375, -16.97274101999901], [140.537109375, -22.024545601240337], [141.50390625, -25.403584973186703] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [124.18945312500001, -15.538375926292048] } } ] } ================================================ FILE: packages/turf-nearest-point-on-line/test/in/multiLine3.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [122.03613281249999, -19.76670355171696], [125.41992187499999, -18.437924653474393], [132.451171875, -18.646245142670598], [132.802734375, -14.944784875088372], [139.130859375, -18.47960905583197], [133.857421875, -22.309425841200177], [142.0751953125, -24.367113562651262], [144.0966796875, -18.020527657852327] ], [ [128.14453125, -20.385825381874263], [119.66308593749999, -20.797201434306984], [119.53125, -17.644022027872712], [127.08984375000001, -15.411319377980993], [130.2099609375, -12.211180191503997] ], [ [126.826171875, -17.014767530557823], [130.0341796875, -14.392118083661728], [133.9453125, -13.282718960896405] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [123.48632812499999, -18.020527657852327] } } ] } ================================================ FILE: packages/turf-nearest-point-on-line/test/in/route1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-79.254923, 36.98394], [-79.254923, 36.983939], [-79.255326, 36.9838], [-79.255401, 36.983774], [-79.25576, 36.983664], [-79.256795, 36.984137], [-79.257537, 36.984478], [-79.258539, 36.984925], [-79.259498, 36.985353], [-79.260286, 36.985712], [-79.261405, 36.986222], [-79.262933, 36.986928], [-79.263237, 36.987071], [-79.263755, 36.987296], [-79.264086, 36.987423], [-79.264167, 36.987446], [-79.264338, 36.987486], [-79.264414, 36.987501], [-79.264618, 36.987531], [-79.2648, 36.987542], [-79.264982, 36.987537], [-79.265163, 36.987517], [-79.26703, 36.987355], [-79.267952, 36.98726], [-79.268404, 36.987226], [-79.268771, 36.987197], [-79.26955, 36.987117], [-79.271398, 36.986946], [-79.271488, 36.986941], [-79.271698, 36.986925], [-79.271936, 36.986898], [-79.272231, 36.986852], [-79.272474, 36.986785], [-79.272711, 36.986705], [-79.272895, 36.986632], [-79.273059, 36.986552], [-79.273646, 36.986245], [-79.274224, 36.985925], [-79.274887, 36.985592], [-79.275308, 36.985365], [-79.275672, 36.98517], [-79.276249, 36.984876], [-79.277101, 36.984433], [-79.277425, 36.984259], [-79.277918, 36.983982], [-79.27799, 36.98395], [-79.278179, 36.98385], [-79.278261, 36.9838], [-79.278335, 36.983745], [-79.278421, 36.983666], [-79.27844, 36.983647], [-79.278502, 36.983577], [-79.278548, 36.983511], [-79.278614, 36.983381], [-79.278654, 36.983273], [-79.278711, 36.983011], [-79.278763, 36.98269], [-79.278806, 36.982485], [-79.278866, 36.982282], [-79.278952, 36.982101], [-79.279023, 36.981984], [-79.280178, 36.980418], [-79.280259, 36.980319], [-79.280355, 36.980229], [-79.280419, 36.98018], [-79.280578, 36.980082], [-79.280666, 36.980038], [-79.280783, 36.979994], [-79.280908, 36.979963], [-79.281301, 36.979913], [-79.281646, 36.979874], [-79.282145, 36.979835], [-79.282797, 36.97977], [-79.283144, 36.979743], [-79.283618, 36.97972], [-79.28399, 36.979706], [-79.284447, 36.979695], [-79.284904, 36.979697], [-79.286913, 36.979638], [-79.287201, 36.979628], [-79.287954, 36.979612], [-79.288037, 36.979611], [-79.288397, 36.97962], [-79.288697, 36.979643], [-79.289908, 36.979722], [-79.289994, 36.979724], [-79.290136, 36.979716], [-79.290248, 36.979699], [-79.290503, 36.979632], [-79.291043, 36.979454], [-79.291563, 36.979269], [-79.292467, 36.97896], [-79.292759, 36.978877], [-79.292963, 36.978832], [-79.293286, 36.978778], [-79.293549, 36.978746], [-79.293649, 36.978738], [-79.293755, 36.978729], [-79.293858, 36.978731], [-79.294028, 36.978747], [-79.294162, 36.978771], [-79.294243, 36.9788], [-79.294439, 36.978883], [-79.294626, 36.978979], [-79.294782, 36.979072], [-79.294921, 36.979174], [-79.295023, 36.979263], [-79.295281, 36.979534], [-79.295458, 36.979739], [-79.296347, 36.980843], [-79.296549, 36.981064], [-79.296594, 36.981095], [-79.296695, 36.981144], [-79.296788, 36.98117], [-79.296916, 36.981184], [-79.297032, 36.981182], [-79.297147, 36.981165], [-79.297933, 36.980962], [-79.298145, 36.980893], [-79.298401, 36.98079], [-79.298602, 36.980696], [-79.298795, 36.980593], [-79.299134, 36.980402], [-79.299407, 36.980244], [-79.299963, 36.9799], [-79.301767, 36.97881], [-79.301976, 36.978691], [-79.3021, 36.978619], [-79.302508, 36.978369], [-79.302614, 36.978309], [-79.3028, 36.97822], [-79.302995, 36.978145], [-79.303113, 36.978114], [-79.303153, 36.978249], [-79.303232, 36.978565], [-79.303319, 36.978989], [-79.303326, 36.979184], [-79.303313, 36.979346], [-79.30324, 36.979748], [-79.303136, 36.980362], [-79.303088, 36.980609], [-79.302996, 36.981143], [-79.302982, 36.981226], [-79.302977, 36.981321], [-79.302986, 36.98144], [-79.303013, 36.981556], [-79.303057, 36.98167], [-79.303191, 36.9819], [-79.303336, 36.982126], [-79.303702, 36.982652], [-79.304322, 36.983486], [-79.304588, 36.98382], [-79.304756, 36.984051], [-79.304903, 36.984229], [-79.305059, 36.984403], [-79.305145, 36.984487], [-79.305336, 36.984648], [-79.305612, 36.98486], [-79.30569, 36.984915], [-79.305765, 36.984974], [-79.305944, 36.98513], [-79.306108, 36.985295], [-79.306259, 36.985469], [-79.306333, 36.98557], [-79.306437, 36.985737], [-79.306524, 36.985911], [-79.306595, 36.98609], [-79.306677, 36.986365], [-79.306734, 36.98662], [-79.306773, 36.986878], [-79.306759, 36.986998], [-79.306724, 36.987146], [-79.306621, 36.987426], [-79.306591, 36.987545], [-79.306555, 36.987745], [-79.306536, 36.987984], [-79.30653, 36.988172], [-79.306539, 36.988321], [-79.30655, 36.988398], [-79.306566, 36.988507], [-79.306673, 36.988967], [-79.306789, 36.989416], [-79.30681, 36.989518], [-79.306831, 36.98969], [-79.306833, 36.989828], [-79.306822, 36.989888], [-79.306771, 36.990067], [-79.306696, 36.99024], [-79.306569, 36.990463], [-79.306374, 36.99078], [-79.30633, 36.990863], [-79.306292, 36.990972], [-79.306271, 36.991084], [-79.306268, 36.991229], [-79.306282, 36.991421], [-79.306323, 36.991648], [-79.30657, 36.992516], [-79.306601, 36.992703], [-79.306614, 36.992892], [-79.306598, 36.993111], [-79.306569, 36.993287], [-79.306553, 36.993345], [-79.306526, 36.993432], [-79.306466, 36.993574], [-79.306313, 36.993848], [-79.305971, 36.994382], [-79.305826, 36.994647], [-79.305382, 36.995598], [-79.305197, 36.995963], [-79.305065, 36.996284], [-79.304983, 36.996521], [-79.304954, 36.99668], [-79.30495, 36.996815], [-79.304959, 36.996932], [-79.304988, 36.997077], [-79.305024, 36.99719], [-79.305111, 36.99739], [-79.305197, 36.997567], [-79.30532, 36.997782], [-79.305429, 36.997949], [-79.305577, 36.998153], [-79.306017, 36.99873], [-79.306204, 36.998965], [-79.306407, 36.999192], [-79.306624, 36.999411], [-79.30672, 36.999489], [-79.306828, 36.999557], [-79.306922, 36.999602], [-79.307072, 36.999656], [-79.307354, 36.999723], [-79.307628, 36.999778], [-79.308892, 36.999988], [-79.309029, 37.00002], [-79.309135, 37.000056], [-79.30926, 37.000112], [-79.309374, 37.00018], [-79.309478, 37.000259], [-79.30959, 37.000372], [-79.309743, 37.000552], [-79.31029, 37.001344], [-79.31037, 37.001451], [-79.310486, 37.001568], [-79.310598, 37.001654], [-79.310697, 37.001714], [-79.310838, 37.001785], [-79.310991, 37.001844], [-79.31115, 37.001891], [-79.311632, 37.001979], [-79.312359, 37.002135], [-79.312455, 37.002156], [-79.312915, 37.002271], [-79.313026, 37.002296], [-79.313639, 37.002422], [-79.314311, 37.002515], [-79.314769, 37.002553], [-79.315227, 37.002582], [-79.315352, 37.002604], [-79.315472, 37.002641], [-79.315543, 37.002685], [-79.315621, 37.00275], [-79.315685, 37.002824], [-79.315725, 37.002889], [-79.315888, 37.002832], [-79.316221, 37.002733], [-79.316448, 37.002678], [-79.31752, 37.002455], [-79.318524, 37.002275], [-79.319059, 37.002211], [-79.319268, 37.002199], [-79.319435, 37.0022], [-79.319651, 37.002214], [-79.319786, 37.002226], [-79.320258, 37.002279], [-79.320522, 37.002298], [-79.320786, 37.002302], [-79.320953, 37.002288], [-79.321116, 37.002258], [-79.321274, 37.002213], [-79.321381, 37.00217], [-79.321762, 37.002001], [-79.322382, 37.001698], [-79.322844, 37.001466], [-79.323023, 37.001376], [-79.323292, 37.001249], [-79.32357, 37.001134], [-79.323943, 37.001003], [-79.324098, 37.000958], [-79.324162, 37.000945], [-79.32513, 37.000843], [-79.325325, 37.000814], [-79.325517, 37.000777], [-79.325753, 37.000719], [-79.327186, 37.000266], [-79.327482, 37.000173], [-79.327802, 37.00008], [-79.328598, 36.999838], [-79.329158, 36.999654], [-79.329204, 36.999715], [-79.329343, 36.999894], [-79.32942, 36.999975], [-79.329588, 37.000125], [-79.329742, 37.000239], [-79.329777, 37.000256], [-79.329869, 37.000291], [-79.329988, 37.000315], [-79.330091, 37.000318], [-79.33027, 37.000316], [-79.330449, 37.000298], [-79.331035, 37.000223], [-79.331427, 37.000184], [-79.331855, 37.000129], [-79.333009, 37.000023], [-79.334568, 36.999869], [-79.335002, 36.999826], [-79.33552, 36.999806], [-79.33606, 36.999814], [-79.336208, 36.999833], [-79.336352, 36.999866], [-79.33649, 36.999913], [-79.336644, 36.999986], [-79.336856, 37.000123], [-79.336962, 37.000203], [-79.337096, 37.000316], [-79.337325, 37.000539], [-79.337519, 37.000761], [-79.338522, 37.001965], [-79.339126, 37.002688], [-79.339574, 37.003185], [-79.340385, 37.004106], [-79.340479, 37.004212], [-79.340603, 37.004341], [-79.340773, 37.00449], [-79.340929, 37.004602], [-79.341131, 37.004723], [-79.341632, 37.004968], [-79.341875, 37.005087], [-79.342172, 37.005233], [-79.342594, 37.00542], [-79.343189, 37.005708], [-79.343817, 37.006011], [-79.344455, 37.006335], [-79.344712, 37.00647], [-79.345697, 37.006916], [-79.345837, 37.006985], [-79.346006, 37.00708], [-79.346221, 37.007218], [-79.347403, 37.008016], [-79.347493, 37.008071], [-79.347634, 37.008171], [-79.347763, 37.008281], [-79.347971, 37.008497], [-79.348051, 37.008623], [-79.348135, 37.008786], [-79.348201, 37.008954], [-79.34825, 37.009126], [-79.348316, 37.00954], [-79.348397, 37.010196], [-79.34854, 37.01111], [-79.348616, 37.011496], [-79.348778, 37.012266], [-79.349159, 37.013946], [-79.349315, 37.014628], [-79.349636, 37.015919], [-79.349688, 37.016183], [-79.349795, 37.016628], [-79.349854, 37.016827], [-79.349915, 37.01701], [-79.350064, 37.017337], [-79.350135, 37.017464], [-79.350159, 37.017499], [-79.350325, 37.017735], [-79.35042, 37.017865], [-79.350584, 37.018129], [-79.35072, 37.01842], [-79.350808, 37.018683], [-79.35089, 37.018981], [-79.350968, 37.019317], [-79.35119, 37.020219], [-79.351251, 37.020445], [-79.351346, 37.020719], [-79.351414, 37.020888], [-79.351505, 37.021079], [-79.351682, 37.021459], [-79.351825, 37.02176], [-79.352185, 37.022473], [-79.352628, 37.023433], [-79.352751, 37.023743], [-79.35282, 37.023863], [-79.352895, 37.023965], [-79.353012, 37.024078], [-79.353078, 37.024127], [-79.353186, 37.024186], [-79.353325, 37.024244], [-79.353398, 37.024265], [-79.353421, 37.02427], [-79.353621, 37.024315], [-79.353675, 37.024321], [-79.35392, 37.024336], [-79.354286, 37.024379], [-79.354423, 37.024385], [-79.354844, 37.024375], [-79.355058, 37.024359], [-79.355214, 37.024339], [-79.355354, 37.024308], [-79.355614, 37.024238], [-79.355718, 37.024209], [-79.355965, 37.024125], [-79.356147, 37.024057], [-79.356485, 37.02394], [-79.356546, 37.023919], [-79.356797, 37.023824], [-79.356964, 37.023769], [-79.357077, 37.023757], [-79.357196, 37.023767], [-79.357262, 37.023786], [-79.357309, 37.023811], [-79.35735, 37.023849], [-79.357388, 37.023905], [-79.357541, 37.024317], [-79.357583, 37.024391], [-79.357634, 37.024438], [-79.357685, 37.024467], [-79.357747, 37.024487], [-79.35783, 37.024497], [-79.357899, 37.024495], [-79.35801, 37.02448], [-79.358102, 37.02446], [-79.358409, 37.025941], [-79.358471, 37.026316], [-79.358502, 37.026637], [-79.358517, 37.026844], [-79.358519, 37.027185], [-79.358497, 37.027679], [-79.358457, 37.028033], [-79.358398, 37.028378], [-79.358301, 37.028779], [-79.358082, 37.029574], [-79.357957, 37.030026], [-79.357813, 37.030609], [-79.357745, 37.03095], [-79.357685, 37.031344], [-79.357656, 37.031612], [-79.357621, 37.032199], [-79.357619, 37.032445], [-79.357631, 37.032766], [-79.357637, 37.032893], [-79.357666, 37.033258], [-79.357711, 37.033639], [-79.357789, 37.034066], [-79.357875, 37.034441], [-79.357922, 37.034622], [-79.358521, 37.036938], [-79.358613, 37.037315], [-79.358687, 37.037658], [-79.358786, 37.038217], [-79.358856, 37.038791], [-79.358911, 37.039356], [-79.358965, 37.0401], [-79.359051, 37.041306], [-79.359073, 37.041825], [-79.359059, 37.042471], [-79.359012, 37.042954], [-79.35899, 37.04313], [-79.358922, 37.043537], [-79.358829, 37.043973], [-79.358773, 37.044171], [-79.358704, 37.044417], [-79.358541, 37.044914], [-79.358352, 37.045429], [-79.357856, 37.04678], [-79.357794, 37.046961], [-79.357564, 37.047556], [-79.357409, 37.047915], [-79.357338, 37.048062], [-79.357278, 37.048184], [-79.356942, 37.048801], [-79.356841, 37.048967], [-79.356589, 37.049349], [-79.356363, 37.049677], [-79.354212, 37.052783], [-79.353972, 37.053148], [-79.353865, 37.053295], [-79.353452, 37.053889], [-79.352197, 37.055711], [-79.352126, 37.055808], [-79.351983, 37.056023], [-79.351596, 37.056539], [-79.351413, 37.056761], [-79.35122, 37.056979], [-79.351018, 37.057191], [-79.35075, 37.057445], [-79.350603, 37.057584], [-79.35029, 37.057856], [-79.348032, 37.059645], [-79.346954, 37.060488], [-79.345892, 37.06133], [-79.345295, 37.061797], [-79.344778, 37.062208], [-79.344716, 37.062258], [-79.343942, 37.062866], [-79.343259, 37.06342], [-79.342925, 37.063722], [-79.342732, 37.063907], [-79.342302, 37.064351], [-79.342055, 37.06463], [-79.341843, 37.064885], [-79.341424, 37.065452], [-79.341048, 37.066036], [-79.340718, 37.066647], [-79.340066, 37.068047], [-79.338982, 37.070343], [-79.336951, 37.074656], [-79.336672, 37.075265], [-79.335622, 37.077497], [-79.335265, 37.078252], [-79.33489, 37.079062], [-79.334833, 37.079182], [-79.334222, 37.080477], [-79.333262, 37.082521], [-79.333001, 37.083079], [-79.332628, 37.084028], [-79.332548, 37.084278], [-79.332388, 37.08478], [-79.332201, 37.085539], [-79.33204, 37.086421], [-79.33196, 37.086978], [-79.331907, 37.087757], [-79.331871, 37.088536], [-79.33185, 37.089317], [-79.331805, 37.090324], [-79.331772, 37.091338], [-79.331768, 37.092235], [-79.33183, 37.093576], [-79.331943, 37.095022], [-79.332045, 37.096198], [-79.332341, 37.099713], [-79.332397, 37.100421], [-79.332436, 37.101086], [-79.332443, 37.1013], [-79.332438, 37.10199], [-79.332418, 37.102426], [-79.332391, 37.102795], [-79.332337, 37.103324], [-79.332244, 37.103966], [-79.332205, 37.104185], [-79.332175, 37.104355], [-79.332056, 37.104907], [-79.332041, 37.104978], [-79.331903, 37.105494], [-79.331733, 37.106053], [-79.331559, 37.106562], [-79.33131, 37.107195], [-79.331178, 37.107501], [-79.330959, 37.107973], [-79.330748, 37.108399], [-79.330489, 37.108876], [-79.330365, 37.109093], [-79.330155, 37.10944], [-79.329757, 37.110058], [-79.328813, 37.111446], [-79.328701, 37.111611], [-79.327118, 37.113932], [-79.327107, 37.113947], [-79.326498, 37.114802], [-79.326178, 37.115223], [-79.326128, 37.115289], [-79.32568, 37.115855], [-79.325061, 37.116595], [-79.324816, 37.116878], [-79.324497, 37.117235], [-79.324161, 37.117601], [-79.323816, 37.117964], [-79.323589, 37.118194], [-79.323104, 37.118678], [-79.322015, 37.119732], [-79.320826, 37.12089], [-79.320279, 37.121415], [-79.31993, 37.121729], [-79.319276, 37.122271], [-79.318828, 37.122609], [-79.318377, 37.122925], [-79.317535, 37.123462], [-79.316595, 37.123987], [-79.315586, 37.124473], [-79.314958, 37.124742], [-79.311931, 37.125973], [-79.303986, 37.129196], [-79.303177, 37.129555], [-79.302367, 37.129915], [-79.30095, 37.130617], [-79.298871, 37.131691], [-79.298008, 37.132146], [-79.293574, 37.134491], [-79.293108, 37.134749], [-79.292712, 37.134937], [-79.292278, 37.135125], [-79.291836, 37.1353], [-79.291351, 37.135473], [-79.290905, 37.135615], [-79.290365, 37.135772], [-79.289641, 37.135941], [-79.289078, 37.136055], [-79.288222, 37.136184], [-79.287781, 37.136228], [-79.287205, 37.136269], [-79.281895, 37.136526], [-79.280512, 37.136607], [-79.279731, 37.13667], [-79.278968, 37.136747], [-79.277922, 37.136872], [-79.276244, 37.13712], [-79.273494, 37.137624], [-79.272005, 37.137904], [-79.271794, 37.137944], [-79.266159, 37.138985], [-79.265643, 37.139056], [-79.265084, 37.139119], [-79.264404, 37.139177], [-79.263826, 37.139213], [-79.263263, 37.139234], [-79.262666, 37.139241], [-79.262103, 37.139234], [-79.26149, 37.139213], [-79.260895, 37.13918], [-79.260488, 37.139149], [-79.257811, 37.138859], [-79.253283, 37.138354], [-79.251817, 37.138189], [-79.251311, 37.138138], [-79.25082, 37.138104], [-79.250344, 37.138087], [-79.249949, 37.138091], [-79.249141, 37.138125], [-79.248701, 37.138169], [-79.248255, 37.138232], [-79.247815, 37.138303], [-79.247404, 37.138388], [-79.246983, 37.138492], [-79.24619, 37.138741], [-79.246034, 37.138799], [-79.245567, 37.138991], [-79.243639, 37.139795], [-79.242121, 37.140435], [-79.241618, 37.140648], [-79.241125, 37.14089], [-79.240755, 37.141103], [-79.240471, 37.141293], [-79.240237, 37.141475], [-79.240023, 37.141661], [-79.239659, 37.142024], [-79.238717, 37.143115], [-79.238653, 37.143189], [-79.238443, 37.143404], [-79.23822, 37.14361], [-79.237972, 37.143817], [-79.237711, 37.144013], [-79.237424, 37.144206], [-79.237139, 37.144378], [-79.236846, 37.144536], [-79.23672, 37.144599], [-79.235366, 37.145185], [-79.235031, 37.145327], [-79.233118, 37.146139], [-79.232943, 37.146214], [-79.23213, 37.146559], [-79.23159, 37.146789], [-79.231268, 37.146943], [-79.230971, 37.147103], [-79.230723, 37.147248], [-79.230589, 37.147333], [-79.230303, 37.147527], [-79.230067, 37.147704], [-79.229831, 37.147902], [-79.229608, 37.148108], [-79.229398, 37.148324], [-79.229192, 37.148559], [-79.229002, 37.148802], [-79.228823, 37.149065], [-79.228683, 37.149299], [-79.228557, 37.149537], [-79.228436, 37.149807], [-79.228332, 37.15008], [-79.22824, 37.150371], [-79.228165, 37.150679], [-79.228144, 37.150787], [-79.22795, 37.1522], [-79.227939, 37.152282], [-79.227922, 37.152405], [-79.227831, 37.1531], [-79.227768, 37.153577], [-79.22775, 37.153704], [-79.227707, 37.153951], [-79.227614, 37.154338], [-79.227519, 37.154642], [-79.227394, 37.154981], [-79.227259, 37.155289], [-79.227113, 37.155579], [-79.227008, 37.155764], [-79.226979, 37.155814], [-79.226931, 37.155892], [-79.22673, 37.156196], [-79.226531, 37.156466], [-79.226359, 37.156679], [-79.226091, 37.156981], [-79.225836, 37.157239], [-79.225577, 37.157477], [-79.225307, 37.157704], [-79.225033, 37.15791], [-79.224838, 37.158043], [-79.223223, 37.159106], [-79.222625, 37.159494], [-79.222577, 37.159525], [-79.222526, 37.159559], [-79.222269, 37.159725], [-79.221758, 37.160065], [-79.219427, 37.161585], [-79.218294, 37.162324], [-79.218211, 37.162378], [-79.216923, 37.163217], [-79.216426, 37.163539], [-79.215909, 37.16389], [-79.215531, 37.164171], [-79.215221, 37.164425], [-79.214936, 37.164678], [-79.214674, 37.164929], [-79.214292, 37.165324], [-79.214244, 37.165374], [-79.213081, 37.166582], [-79.212642, 37.167038], [-79.212368, 37.167324], [-79.212048, 37.167658], [-79.211768, 37.16795], [-79.211486, 37.168245], [-79.211416, 37.168318], [-79.211008, 37.168744], [-79.210963, 37.168791], [-79.210689, 37.16908], [-79.210304, 37.16953], [-79.2101, 37.169782], [-79.209923, 37.170006], [-79.209526, 37.170538], [-79.209343, 37.170798], [-79.207037, 37.174039], [-79.206764, 37.174435], [-79.206634, 37.174641], [-79.206469, 37.174929], [-79.206273, 37.17532], [-79.20615, 37.175603], [-79.206073, 37.175802], [-79.206026, 37.175929], [-79.205916, 37.176273], [-79.205845, 37.176539], [-79.205757, 37.176917], [-79.205696, 37.177164], [-79.205658, 37.177349], [-79.205603, 37.177589], [-79.205562, 37.177759], [-79.205539, 37.177863], [-79.205487, 37.178091], [-79.205427, 37.178344], [-79.205364, 37.178607], [-79.205297, 37.178889], [-79.205253, 37.179068], [-79.20519, 37.179332], [-79.205122, 37.179618], [-79.205055, 37.179895], [-79.204997, 37.180138], [-79.204614, 37.181773], [-79.204588, 37.181883], [-79.204488, 37.182314], [-79.204319, 37.183043], [-79.204265, 37.183268], [-79.204123, 37.18388], [-79.203924, 37.184747], [-79.203855, 37.185167], [-79.203781, 37.185725], [-79.203767, 37.185869], [-79.203714, 37.186727], [-79.203688, 37.188358], [-79.203665, 37.189574], [-79.203624, 37.192626], [-79.203627, 37.192665], [-79.203588, 37.193792], [-79.203572, 37.194229], [-79.203568, 37.194309], [-79.203559, 37.194539], [-79.203553, 37.194676], [-79.203543, 37.194919], [-79.203531, 37.195199], [-79.203502, 37.195859], [-79.203483, 37.196276], [-79.203468, 37.196579], [-79.203458, 37.196792], [-79.203433, 37.197322], [-79.203422, 37.197563], [-79.20341, 37.197824], [-79.203397, 37.198095], [-79.20339, 37.198254], [-79.203379, 37.19847], [-79.203358, 37.198936], [-79.20334, 37.19935], [-79.203304, 37.200071], [-79.203262, 37.200536], [-79.203244, 37.200686], [-79.203162, 37.201241], [-79.203073, 37.201722], [-79.20306, 37.201793], [-79.203026, 37.201977], [-79.202836, 37.203003], [-79.202752, 37.203459], [-79.202563, 37.204478], [-79.202452, 37.205079], [-79.202395, 37.205385], [-79.201856, 37.208299], [-79.201805, 37.208574], [-79.201702, 37.209126], [-79.201673, 37.209268], [-79.201619, 37.209479], [-79.201573, 37.209638], [-79.201505, 37.209836], [-79.201407, 37.210085], [-79.201284, 37.210341], [-79.201114, 37.21064], [-79.201026, 37.210776], [-79.200882, 37.21098], [-79.200649, 37.211282], [-79.200396, 37.211554], [-79.199727, 37.212167], [-79.199637, 37.212249], [-79.199553, 37.212325], [-79.199391, 37.212473], [-79.199159, 37.212684], [-79.19865, 37.213144], [-79.197756, 37.213946], [-79.197588, 37.214097], [-79.197252, 37.214415], [-79.196922, 37.214731], [-79.196487, 37.215166], [-79.196055, 37.215596], [-79.195714, 37.216042], [-79.195395, 37.216449], [-79.194175, 37.218086], [-79.193942, 37.2184], [-79.193714, 37.218705], [-79.193339, 37.219208], [-79.193103, 37.219523], [-79.192804, 37.219924], [-79.192465, 37.220384], [-79.191972, 37.221056], [-79.191665, 37.221486], [-79.191271, 37.222039], [-79.191066, 37.222328], [-79.190837, 37.222648], [-79.190786, 37.222724], [-79.190591, 37.223024], [-79.190561, 37.223069], [-79.190114, 37.223762], [-79.189976, 37.223994], [-79.189786, 37.224314], [-79.189538, 37.224731], [-79.189441, 37.224896], [-79.189231, 37.225287], [-79.188873, 37.225949], [-79.188647, 37.226369], [-79.188578, 37.226497], [-79.188422, 37.22682], [-79.187747, 37.228226], [-79.187638, 37.228454], [-79.186752, 37.230317], [-79.186236, 37.23142], [-79.186183, 37.231531], [-79.186143, 37.231633], [-79.186012, 37.231905], [-79.185971, 37.232009], [-79.185901, 37.232204], [-79.185821, 37.232467], [-79.185783, 37.232629], [-79.185746, 37.232787], [-79.185712, 37.232989], [-79.185564, 37.234115], [-79.18554, 37.234342], [-79.185535, 37.234388], [-79.185527, 37.234464], [-79.185489, 37.234824], [-79.185459, 37.235133], [-79.185442, 37.235447], [-79.185444, 37.235802], [-79.185467, 37.236157], [-79.185494, 37.236478], [-79.185509, 37.236629], [-79.185568, 37.237037], [-79.185613, 37.237268], [-79.185642, 37.237403], [-79.185719, 37.237706], [-79.185791, 37.237965], [-79.185811, 37.238037], [-79.185899, 37.238345], [-79.185952, 37.238527], [-79.18597, 37.23859], [-79.186042, 37.238834], [-79.186525, 37.240494], [-79.186638, 37.240882], [-79.186786, 37.241392], [-79.186995, 37.242108], [-79.187061, 37.242336], [-79.187075, 37.242384], [-79.187298, 37.243149], [-79.187378, 37.243422], [-79.187527, 37.243936], [-79.187774, 37.244774], [-79.187853, 37.245008], [-79.187949, 37.245331], [-79.187975, 37.245426], [-79.18809, 37.245933], [-79.188158, 37.246339], [-79.188193, 37.246639], [-79.188214, 37.246935], [-79.188219, 37.247189], [-79.188219, 37.247284], [-79.188204, 37.247624], [-79.188173, 37.24795], [-79.188121, 37.248287], [-79.188078, 37.248502], [-79.188012, 37.248777], [-79.187964, 37.248948], [-79.18752, 37.250322], [-79.187502, 37.250377], [-79.187461, 37.250489], [-79.187101, 37.251604], [-79.186977, 37.251986], [-79.186803, 37.252487], [-79.186647, 37.252862], [-79.186473, 37.253233], [-79.1864, 37.253375], [-79.186369, 37.253435], [-79.186196, 37.253727], [-79.186096, 37.253883], [-79.185846, 37.254253], [-79.185619, 37.254587], [-79.184816, 37.255765], [-79.184332, 37.256471], [-79.184251, 37.256583], [-79.183919, 37.257073], [-79.183282, 37.258009], [-79.183273, 37.258023], [-79.182658, 37.258928], [-79.182428, 37.259266], [-79.182236, 37.259548], [-79.182189, 37.259617], [-79.181677, 37.260371], [-79.180889, 37.261527], [-79.180329, 37.262346], [-79.179966, 37.262877], [-79.178561, 37.264935], [-79.177834, 37.265998], [-79.17762, 37.266312], [-79.177577, 37.266375], [-79.177344, 37.266717], [-79.177268, 37.266828], [-79.175738, 37.269066], [-79.175293, 37.269718], [-79.175059, 37.270062], [-79.175024, 37.270113], [-79.174746, 37.27052], [-79.174499, 37.270885], [-79.174225, 37.271286], [-79.17318, 37.27282], [-79.172596, 37.273676], [-79.172062, 37.274457], [-79.17205, 37.274476], [-79.171892, 37.274707], [-79.171746, 37.274919], [-79.170612, 37.276581], [-79.170091, 37.277344], [-79.170074, 37.277368], [-79.169014, 37.27887], [-79.168768, 37.279279], [-79.168446, 37.279751], [-79.168095, 37.28026], [-79.167791, 37.280704], [-79.167004, 37.281854], [-79.166839, 37.282126], [-79.166686, 37.282417], [-79.166553, 37.282715], [-79.166455, 37.282978], [-79.166365, 37.283271], [-79.166331, 37.283406], [-79.166277, 37.283662], [-79.166236, 37.283934], [-79.166211, 37.284233], [-79.166208, 37.284331], [-79.16621, 37.284606], [-79.166232, 37.284894], [-79.166273, 37.28518], [-79.166341, 37.285491], [-79.166394, 37.28568], [-79.166419, 37.28576], [-79.16653, 37.286061], [-79.16656, 37.286133], [-79.166601, 37.286228], [-79.167073, 37.287187], [-79.167342, 37.287727], [-79.167647, 37.288335], [-79.167961, 37.288961], [-79.168213, 37.289466], [-79.168669, 37.290363], [-79.169252, 37.291516], [-79.169707, 37.292425], [-79.170019, 37.293049], [-79.170164, 37.293337], [-79.170762, 37.294525], [-79.171017, 37.295032], [-79.171197, 37.29539], [-79.171228, 37.295451], [-79.171707, 37.296402], [-79.171854, 37.296694], [-79.172057, 37.297099], [-79.172329, 37.297639], [-79.172756, 37.298485], [-79.172921, 37.29877], [-79.173118, 37.299071], [-79.173326, 37.299351], [-79.1734, 37.299443], [-79.173711, 37.299824], [-79.174643, 37.300928], [-79.177789, 37.304649], [-79.17841, 37.305383], [-79.179563, 37.306751], [-79.18128, 37.308787], [-79.181492, 37.309036], [-79.181949, 37.309573], [-79.182599, 37.310336], [-79.183198, 37.311046], [-79.183775, 37.311729], [-79.183964, 37.311947], [-79.18428, 37.312314], [-79.18536, 37.313557], [-79.18553, 37.313753], [-79.18588, 37.314159], [-79.186286, 37.314624], [-79.186592, 37.314975], [-79.186893, 37.31532], [-79.187155, 37.315623], [-79.187287, 37.315796], [-79.187433, 37.315958], [-79.187603, 37.316193], [-79.187705, 37.316348], [-79.187781, 37.316469], [-79.187895, 37.316666], [-79.188063, 37.316995], [-79.188211, 37.31734], [-79.188267, 37.317488], [-79.188574, 37.31828], [-79.18873, 37.318682], [-79.188773, 37.318793], [-79.188818, 37.318907], [-79.188983, 37.319332], [-79.189167, 37.319817], [-79.18919, 37.319881], [-79.189276, 37.320122], [-79.189293, 37.320183], [-79.189372, 37.320484], [-79.189407, 37.320635], [-79.189445, 37.320825], [-79.189477, 37.321015], [-79.189492, 37.321115], [-79.189533, 37.321458], [-79.189536, 37.321492], [-79.189586, 37.322119], [-79.189602, 37.322319], [-79.189637, 37.32275], [-79.189647, 37.322876], [-79.189704, 37.323523], [-79.189737, 37.323892], [-79.189747, 37.323997], [-79.189761, 37.324147], [-79.189781, 37.324375], [-79.189798, 37.324545], [-79.189823, 37.324722], [-79.189861, 37.324935], [-79.189896, 37.325095], [-79.189922, 37.3252], [-79.190034, 37.325593], [-79.190115, 37.325884], [-79.190279, 37.326471], [-79.190558, 37.327468], [-79.190626, 37.327737], [-79.190656, 37.327855], [-79.190719, 37.328102], [-79.190893, 37.328783], [-79.19093, 37.328914], [-79.19114, 37.329665], [-79.191197, 37.329849], [-79.191289, 37.330174], [-79.191411, 37.330604], [-79.191427, 37.330662], [-79.191549, 37.331144], [-79.191612, 37.331407], [-79.191674, 37.33166], [-79.191713, 37.331945], [-79.191731, 37.332216], [-79.191727, 37.3324], [-79.191718, 37.332618], [-79.191688, 37.333114], [-79.191671, 37.333265], [-79.191652, 37.333506], [-79.191625, 37.33369], [-79.191591, 37.333978], [-79.191586, 37.334109], [-79.191605, 37.334336], [-79.19161, 37.334672], [-79.191612, 37.334771], [-79.191619, 37.335165], [-79.191615, 37.335425], [-79.191612, 37.335464], [-79.191591, 37.335798], [-79.191573, 37.33597], [-79.19153, 37.336198], [-79.191511, 37.3363], [-79.191476, 37.336481], [-79.191396, 37.336901], [-79.191254, 37.33724], [-79.191108, 37.337564], [-79.190891, 37.337852], [-79.190707, 37.338004], [-79.190446, 37.338136], [-79.190159, 37.338232], [-79.189809, 37.338303], [-79.189504, 37.338343], [-79.189039, 37.338414], [-79.188663, 37.33847], [-79.188351, 37.338526], [-79.18802, 37.338571], [-79.18767, 37.338617], [-79.187276, 37.338677], [-79.18683, 37.338758], [-79.186448, 37.338854], [-79.186232, 37.338986], [-79.186034, 37.339158], [-79.185913, 37.339381], [-79.185862, 37.339654], [-79.185792, 37.339958], [-79.185735, 37.340246], [-79.185608, 37.340565], [-79.185474, 37.340849], [-79.185264, 37.341152], [-79.185009, 37.341421], [-79.184748, 37.341658], [-79.184399, 37.341989], [-79.184093, 37.342254], [-79.183658, 37.342682], [-79.18294, 37.343536], [-79.182113, 37.344505], [-79.181077, 37.345699], [-79.180004, 37.346871], [-79.178729, 37.348196], [-79.177389, 37.349407], [-79.177129, 37.349621], [-79.176626, 37.350036], [-79.173129, 37.353092], [-79.169752, 37.356318], [-79.169186, 37.356859], [-79.166439, 37.359647], [-79.165165, 37.360856], [-79.164528, 37.361444], [-79.163946, 37.361878], [-79.162943, 37.362614], [-79.161891, 37.363349], [-79.159885, 37.364693], [-79.158866, 37.365389], [-79.157915, 37.36609], [-79.156262, 37.367299], [-79.153378, 37.36939], [-79.1513, 37.370777], [-79.148798, 37.372337], [-79.146813, 37.373529], [-79.146135, 37.37394], [-79.145298, 37.374385], [-79.144399, 37.374808], [-79.143032, 37.375351], [-79.142887, 37.375396], [-79.141407, 37.375861], [-79.13952, 37.376309], [-79.137442, 37.376753], [-79.136385, 37.376976], [-79.135221, 37.37722], [-79.134065, 37.377456], [-79.132756, 37.377733], [-79.131505, 37.377997], [-79.130701, 37.378165], [-79.129655, 37.378385], [-79.128812, 37.378561], [-79.127809, 37.378776], [-79.127166, 37.378891], [-79.124907, 37.379433], [-79.122351, 37.380007], [-79.119924, 37.380555], [-79.118369, 37.380958], [-79.116892, 37.381492], [-79.11429, 37.382508], [-79.111589, 37.383564], [-79.110432, 37.384015], [-79.108723, 37.384663], [-79.107004, 37.385341], [-79.10533, 37.38597], [-79.10529, 37.385969], [-79.104874, 37.386095], [-79.104406, 37.386191], [-79.103958, 37.38624], [-79.103328, 37.386271], [-79.101681, 37.386155], [-79.101144, 37.386117], [-79.100418, 37.386038], [-79.097991, 37.385843], [-79.09636, 37.385744], [-79.095982, 37.385658], [-79.095845, 37.385614], [-79.09571, 37.385555], [-79.095567, 37.38548], [-79.095427, 37.38539], [-79.095308, 37.385296], [-79.09517, 37.385161], [-79.09509, 37.385054], [-79.094998, 37.384905], [-79.094916, 37.384737], [-79.094844, 37.384528], [-79.094656, 37.383845], [-79.094531, 37.38345], [-79.094325, 37.383054], [-79.094038, 37.38276], [-79.093621, 37.382467], [-79.093187, 37.382294], [-79.092689, 37.382201], [-79.092284, 37.382201], [-79.091903, 37.382257], [-79.091551, 37.382364], [-79.091187, 37.382541], [-79.090959, 37.382723], [-79.090789, 37.382882], [-79.090589, 37.383115], [-79.090443, 37.383376], [-79.090284, 37.383744], [-79.090225, 37.384], [-79.090179, 37.384541], [-79.090062, 37.385779], [-79.089925, 37.386644], [-79.089849, 37.387226], [-79.089779, 37.387541], [-79.089689, 37.387836], [-79.0895, 37.38838], [-79.089436, 37.388633], [-79.089405, 37.388841], [-79.089289, 37.389685], [-79.089161, 37.39093], [-79.089008, 37.392008], [-79.08881, 37.394069], [-79.088768, 37.394579], [-79.088645, 37.395885], [-79.088477, 37.397207], [-79.087956, 37.401181], [-79.087825, 37.401823], [-79.087665, 37.402308], [-79.087554, 37.402629], [-79.08736, 37.403142], [-79.087142, 37.403562], [-79.086923, 37.403937], [-79.086762, 37.404195], [-79.086439, 37.404708], [-79.086251, 37.405002], [-79.085982, 37.405393], [-79.085647, 37.405896], [-79.085037, 37.406824], [-79.084691, 37.407346], [-79.084239, 37.407998], [-79.084081, 37.408208], [-79.083969, 37.408376], [-79.083852, 37.408534], [-79.083752, 37.408705], [-79.083641, 37.408893], [-79.08253, 37.41059], [-79.082107, 37.41155], [-79.081937, 37.412163], [-79.081833, 37.412538], [-79.081757, 37.413176], [-79.08171, 37.413903], [-79.081751, 37.414774], [-79.081781, 37.415758], [-79.081777, 37.417393], [-79.081646, 37.41901], [-79.081485, 37.420256], [-79.081292, 37.421219], [-79.081057, 37.422257], [-79.080513, 37.424117], [-79.07951, 37.427155], [-79.078061, 37.431195], [-79.077269, 37.433524], [-79.076993, 37.434391], [-79.076647, 37.435495], [-79.076395, 37.436608], [-79.076304, 37.437254], [-79.076229, 37.438019], [-79.076213, 37.439312], [-79.076213, 37.439413], [-79.076155, 37.442774], [-79.07614, 37.443179], [-79.076116, 37.443841], [-79.076046, 37.446058], [-79.075976, 37.449173], [-79.076002, 37.451689], [-79.076065, 37.4523], [-79.076262, 37.453], [-79.076579, 37.453683], [-79.076982, 37.454312], [-79.077536, 37.45501], [-79.079739, 37.457229], [-79.080689, 37.458217], [-79.081531, 37.459252], [-79.082085, 37.460038], [-79.082441, 37.460738], [-79.082708, 37.461304], [-79.082968, 37.461981], [-79.083137, 37.462694], [-79.083265, 37.463513], [-79.083293, 37.464338], [-79.083287, 37.464745], [-79.083277, 37.465166], [-79.083236, 37.465743], [-79.083136, 37.466259], [-79.082678, 37.468029], [-79.082438, 37.469156], [-79.08215, 37.470371], [-79.081963, 37.471033], [-79.081827, 37.471415], [-79.081408, 37.472342], [-79.081005, 37.47309], [-79.080296, 37.474045], [-79.079641, 37.474751], [-79.078249, 37.476094], [-79.077451, 37.477058], [-79.076776, 37.477863], [-79.076213, 37.478711], [-79.075638, 37.479763], [-79.075274, 37.480624], [-79.074869, 37.481821], [-79.074675, 37.482594], [-79.074634, 37.482892], [-79.074593, 37.483204], [-79.07457, 37.483627], [-79.074448, 37.484732], [-79.074331, 37.485753], [-79.074167, 37.486518], [-79.073888, 37.487326], [-79.073467, 37.488074], [-79.07305, 37.488846], [-79.072616, 37.489619], [-79.072018, 37.490699], [-79.07163, 37.49136], [-79.070791, 37.492896], [-79.070146, 37.494186], [-79.06953, 37.495438], [-79.068703, 37.497026], [-79.067817, 37.498799], [-79.067177, 37.500098], [-79.066497, 37.501471], [-79.066168, 37.502341], [-79.065974, 37.503063], [-79.065895, 37.503746], [-79.065857, 37.504329], [-79.065851, 37.505804], [-79.065851, 37.506847], [-79.065828, 37.508187], [-79.065831, 37.509824], [-79.0658, 37.510657], [-79.065769, 37.511273], [-79.065628, 37.51191], [-79.065455, 37.512506], [-79.065165, 37.513111], [-79.064807, 37.513823], [-79.064426, 37.514512], [-79.063986, 37.515424], [-79.063804, 37.515903], [-79.063545, 37.516788], [-79.063328, 37.51796], [-79.063264, 37.519296], [-79.063311, 37.520208], [-79.063487, 37.521209], [-79.063645, 37.522214], [-79.063845, 37.523275], [-79.06425, 37.525364], [-79.064871, 37.528602], [-79.065376, 37.531264], [-79.066057, 37.534819], [-79.066725, 37.538252], [-79.0674, 37.541904], [-79.06794, 37.544546], [-79.068021, 37.545221], [-79.068093, 37.545891], [-79.068075, 37.546616], [-79.067977, 37.547323], [-79.067805, 37.547989], [-79.06729, 37.549617], [-79.066508, 37.552189], [-79.066203, 37.55312], [-79.065916, 37.554199], [-79.06571, 37.554864], [-79.065358, 37.555901], [-79.06462, 37.558162], [-79.064236, 37.559374], [-79.064086, 37.559848], [-79.063835, 37.560896], [-79.063609, 37.561383], [-79.063256, 37.561986], [-79.062896, 37.562503], [-79.062134, 37.563345], [-79.061625, 37.563753], [-79.06094, 37.564213], [-79.058641, 37.565583], [-79.05758, 37.566208], [-79.056639, 37.566768], [-79.055935, 37.567192], [-79.055742, 37.567302], [-79.055553, 37.567416], [-79.055246, 37.567615], [-79.054927, 37.567838], [-79.054748, 37.567977], [-79.054525, 37.568169], [-79.05429, 37.568391], [-79.054239, 37.568442], [-79.054034, 37.568657], [-79.053873, 37.56885], [-79.053657, 37.569143], [-79.053524, 37.569347], [-79.053368, 37.569618], [-79.053228, 37.569894], [-79.053172, 37.570026], [-79.053043, 37.570358], [-79.05286, 37.57095], [-79.052677, 37.571527], [-79.052485, 37.572133], [-79.052132, 37.573261], [-79.051632, 37.57486], [-79.051348, 37.57574], [-79.051123, 37.576286], [-79.051087, 37.576361], [-79.050788, 37.576916], [-79.050662, 37.577116], [-79.050472, 37.577395], [-79.050278, 37.577652], [-79.050057, 37.577924], [-79.049759, 37.578262], [-79.049412, 37.578608], [-79.049047, 37.578931], [-79.047001, 37.580602], [-79.046515, 37.580994], [-79.046166, 37.58126], [-79.045909, 37.581455], [-79.04561, 37.58167], [-79.045264, 37.581887], [-79.044961, 37.582077], [-79.044149, 37.582573], [-79.04353, 37.582927], [-79.04291, 37.58327], [-79.042129, 37.58371], [-79.041873, 37.583864], [-79.041806, 37.58391], [-79.041621, 37.584017], [-79.041414, 37.584155], [-79.041178, 37.58431], [-79.040635, 37.584689], [-79.039894, 37.585255], [-79.039608, 37.585491], [-79.03912, 37.585904], [-79.038845, 37.586155], [-79.038474, 37.586513], [-79.03781, 37.587198], [-79.037358, 37.587719], [-79.037086, 37.588056], [-79.036877, 37.588331], [-79.036498, 37.588836], [-79.036258, 37.589205], [-79.035926, 37.589739], [-79.034645, 37.591992], [-79.034482, 37.592286], [-79.034097, 37.592957], [-79.033913, 37.593255], [-79.033669, 37.593669], [-79.033006, 37.594819], [-79.032654, 37.595452], [-79.032044, 37.596522], [-79.031678, 37.597159], [-79.031353, 37.597735], [-79.03004, 37.600074], [-79.029644, 37.600763], [-79.028963, 37.601951], [-79.028685, 37.602397], [-79.02851, 37.602662], [-79.028221, 37.603043], [-79.027978, 37.603341], [-79.027692, 37.60368], [-79.027548, 37.60383], [-79.027306, 37.604072], [-79.027105, 37.604269], [-79.02697, 37.604392], [-79.026652, 37.60468], [-79.026083, 37.605207], [-79.026036, 37.60525], [-79.025989, 37.605294], [-79.025872, 37.605402], [-79.02555, 37.605685], [-79.025303, 37.605893], [-79.025239, 37.605951], [-79.025075, 37.606102], [-79.024795, 37.606358], [-79.024408, 37.606702], [-79.024072, 37.607013], [-79.024053, 37.607031], [-79.023787, 37.607264], [-79.023498, 37.607516], [-79.023027, 37.607911], [-79.022811, 37.60807], [-79.022583, 37.608218], [-79.022393, 37.608329], [-79.022103, 37.608478], [-79.021864, 37.608585], [-79.021424, 37.608752], [-79.020855, 37.608965], [-79.020271, 37.609195], [-79.020171, 37.609236], [-79.019921, 37.609348], [-79.019569, 37.609526], [-79.019341, 37.609661], [-79.019134, 37.609801], [-79.018938, 37.609951], [-79.018736, 37.61013], [-79.018557, 37.610318], [-79.018408, 37.6105], [-79.018273, 37.610689], [-79.018177, 37.610845], [-79.018077, 37.611005], [-79.017942, 37.61127], [-79.01775, 37.611733], [-79.017583, 37.612195], [-79.017453, 37.612536], [-79.01736, 37.612779], [-79.017077, 37.613518], [-79.016316, 37.615651], [-79.016211, 37.615921], [-79.015957, 37.616661], [-79.015442, 37.618041], [-79.015171, 37.618767], [-79.015044, 37.619085], [-79.014896, 37.619401], [-79.014725, 37.619699], [-79.014609, 37.619891], [-79.014507, 37.620046], [-79.014326, 37.620291], [-79.014076, 37.620611], [-79.013882, 37.620808], [-79.013583, 37.621079], [-79.012998, 37.621504], [-79.01238, 37.621893], [-79.010646, 37.622959], [-79.01003, 37.623323], [-79.009112, 37.623886], [-79.007841, 37.62468], [-79.007669, 37.624786], [-79.00613, 37.625753], [-79.00574, 37.625992], [-79.004933, 37.626484], [-79.004251, 37.626912], [-79.004139, 37.626981], [-79.003154, 37.627592], [-79.001641, 37.628516], [-79.001111, 37.628835], [-79.00072, 37.62907], [-79.000623, 37.62914], [-79.000217, 37.629394], [-78.998912, 37.630202], [-78.998196, 37.630645], [-78.997598, 37.631025], [-78.997526, 37.631071], [-78.997241, 37.631274], [-78.996875, 37.631534], [-78.996217, 37.63205], [-78.995656, 37.632525], [-78.995017, 37.633129], [-78.994464, 37.633668], [-78.993794, 37.634338], [-78.992582, 37.635539], [-78.99241, 37.635715], [-78.992112, 37.636], [-78.991971, 37.636127], [-78.991598, 37.636454], [-78.991319, 37.636676], [-78.991111, 37.636827], [-78.990724, 37.637089], [-78.990344, 37.637324], [-78.989967, 37.637537], [-78.989578, 37.637737], [-78.988855, 37.638052], [-78.98807, 37.638382], [-78.986736, 37.63892], [-78.986454, 37.639034], [-78.985803, 37.639316], [-78.984897, 37.639687], [-78.98388, 37.640096], [-78.983117, 37.640414], [-78.982726, 37.640573], [-78.981774, 37.640959], [-78.979687, 37.64182], [-78.978231, 37.642417], [-78.977005, 37.64291], [-78.97646, 37.643116], [-78.975777, 37.643333], [-78.975711, 37.643354], [-78.97542, 37.643425], [-78.974834, 37.643551], [-78.974604, 37.64359], [-78.974067, 37.643681], [-78.973393, 37.643752], [-78.972559, 37.643813], [-78.972242, 37.643839], [-78.970006, 37.64399], [-78.96903, 37.64406], [-78.968589, 37.644095], [-78.968224, 37.644136], [-78.967889, 37.644182], [-78.967664, 37.644226], [-78.967387, 37.644293], [-78.967224, 37.644341], [-78.966957, 37.64443], [-78.966688, 37.644536], [-78.966474, 37.644631], [-78.966164, 37.644789], [-78.965983, 37.644902], [-78.965692, 37.645098], [-78.965428, 37.645294], [-78.965238, 37.645456], [-78.965063, 37.645628], [-78.964898, 37.645816], [-78.964762, 37.645992], [-78.964605, 37.646219], [-78.964465, 37.646453], [-78.964354, 37.646672], [-78.96426, 37.646896], [-78.964184, 37.647124], [-78.964105, 37.647472], [-78.964045, 37.647822], [-78.963795, 37.650137], [-78.963771, 37.650446], [-78.963726, 37.650831], [-78.963699, 37.651104], [-78.963637, 37.651545], [-78.963559, 37.651968], [-78.963475, 37.652244], [-78.963403, 37.652439], [-78.963343, 37.65259], [-78.963259, 37.652771], [-78.963211, 37.652855], [-78.963159, 37.652948], [-78.963044, 37.653119], [-78.962876, 37.65334], [-78.962692, 37.653554], [-78.961989, 37.654258], [-78.961507, 37.654728], [-78.961039, 37.655181], [-78.960337, 37.655875], [-78.96023, 37.655972], [-78.960126, 37.656071], [-78.959777, 37.656385], [-78.959596, 37.656559], [-78.959428, 37.656733], [-78.95894, 37.657212], [-78.958347, 37.65781], [-78.957955, 37.658265], [-78.957902, 37.65834], [-78.957703, 37.658582], [-78.956957, 37.659613], [-78.956, 37.660952], [-78.95555, 37.661601], [-78.95521, 37.662149], [-78.955078, 37.662367], [-78.954742, 37.662988], [-78.954584, 37.663297], [-78.954305, 37.663917], [-78.954148, 37.6643], [-78.953981, 37.664751], [-78.953842, 37.665162], [-78.953791, 37.665348], [-78.953693, 37.665702], [-78.953658, 37.665836], [-78.953519, 37.666441], [-78.953449, 37.666806], [-78.953407, 37.667104], [-78.953324, 37.667763], [-78.953292, 37.668183], [-78.953221, 37.669156], [-78.953153, 37.670098], [-78.953142, 37.670264], [-78.953141, 37.6704], [-78.953072, 37.671177], [-78.95304, 37.671615], [-78.952995, 37.672174], [-78.952947, 37.672942], [-78.95292, 37.673225], [-78.952878, 37.673819], [-78.952829, 37.674339], [-78.952797, 37.674686], [-78.952784, 37.674804], [-78.952747, 37.675024], [-78.952692, 37.675301], [-78.952624, 37.675578], [-78.952561, 37.675784], [-78.952486, 37.675985], [-78.952442, 37.676122], [-78.952386, 37.676257], [-78.95232, 37.676433], [-78.952115, 37.676852], [-78.952045, 37.676981], [-78.951895, 37.677259], [-78.951765, 37.677478], [-78.951015, 37.678688], [-78.950642, 37.679294], [-78.950106, 37.680167], [-78.949932, 37.680439], [-78.949555, 37.681057], [-78.948514, 37.682749], [-78.948346, 37.683014], [-78.94819, 37.68327], [-78.947933, 37.683687], [-78.947735, 37.683997], [-78.946949, 37.685284], [-78.946763, 37.685577], [-78.946171, 37.686544], [-78.946077, 37.686718], [-78.945972, 37.686928], [-78.945848, 37.687201], [-78.945794, 37.687349], [-78.945689, 37.687661], [-78.945632, 37.687901], [-78.945568, 37.688266], [-78.945541, 37.688542], [-78.945537, 37.688659], [-78.945545, 37.689126], [-78.945579, 37.689434], [-78.945664, 37.689907], [-78.945683, 37.68999], [-78.945776, 37.690456], [-78.945835, 37.69071], [-78.945961, 37.691323], [-78.946182, 37.69241], [-78.946237, 37.692788], [-78.946274, 37.693085], [-78.946296, 37.693491], [-78.946303, 37.694022], [-78.946301, 37.694057], [-78.946287, 37.694387], [-78.946261, 37.694709], [-78.946249, 37.694805], [-78.946182, 37.695293], [-78.946055, 37.695876], [-78.945864, 37.696567], [-78.945405, 37.698162], [-78.945298, 37.698548], [-78.944826, 37.700186], [-78.944719, 37.700501], [-78.94458, 37.700835], [-78.944457, 37.701074], [-78.944324, 37.701307], [-78.944135, 37.701595], [-78.944026, 37.701738], [-78.943778, 37.70202], [-78.943504, 37.702305], [-78.943214, 37.702564], [-78.94302, 37.702719], [-78.942935, 37.702779], [-78.942809, 37.702868], [-78.942485, 37.703077], [-78.942218, 37.703232], [-78.9405, 37.704132], [-78.940455, 37.704155], [-78.940006, 37.704381], [-78.938227, 37.705302], [-78.93698, 37.705948], [-78.93647, 37.706225], [-78.93488, 37.707122], [-78.934646, 37.707256], [-78.93388, 37.707679], [-78.933448, 37.707924], [-78.932774, 37.708305], [-78.931107, 37.709235], [-78.929365, 37.710215], [-78.928987, 37.710423], [-78.928188, 37.710873], [-78.927848, 37.711058], [-78.927739, 37.711117], [-78.927286, 37.71134], [-78.927035, 37.711449], [-78.926705, 37.711572], [-78.926357, 37.711684], [-78.926015, 37.711773], [-78.925764, 37.711831], [-78.925742, 37.711836], [-78.925395, 37.711899], [-78.925098, 37.711943], [-78.92463, 37.712006], [-78.924358, 37.71204], [-78.9241, 37.712072], [-78.923317, 37.712168], [-78.922673, 37.712257], [-78.921644, 37.712386], [-78.920771, 37.712503], [-78.91879, 37.712755], [-78.917763, 37.712894], [-78.916758, 37.713029], [-78.916316, 37.713107], [-78.915891, 37.713204], [-78.915614, 37.71328], [-78.915324, 37.713372], [-78.915274, 37.713388], [-78.914912, 37.71352], [-78.91455, 37.71367], [-78.914179, 37.713842], [-78.913675, 37.714085], [-78.912967, 37.714415], [-78.910226, 37.715714], [-78.90939, 37.716116], [-78.908844, 37.716378], [-78.908565, 37.716525], [-78.908344, 37.716654], [-78.908223, 37.716733], [-78.907898, 37.716972], [-78.907709, 37.71712], [-78.907284, 37.717479], [-78.905705, 37.718784], [-78.905314, 37.719084], [-78.90491, 37.719372], [-78.904525, 37.719604], [-78.904033, 37.719882], [-78.903337, 37.720265], [-78.902528, 37.720722], [-78.902455, 37.720766], [-78.902055, 37.720998], [-78.901704, 37.721237], [-78.901372, 37.721492], [-78.901207, 37.721632], [-78.901102, 37.721732], [-78.90093, 37.721897], [-78.900791, 37.722043], [-78.900736, 37.722103], [-78.900601, 37.722261], [-78.900394, 37.722523], [-78.900222, 37.722764], [-78.900079, 37.722992], [-78.900004, 37.723131], [-78.899716, 37.723665], [-78.899467, 37.724145], [-78.899406, 37.724274], [-78.89922, 37.72461], [-78.899008, 37.725016], [-78.898838, 37.725322], [-78.898749, 37.725462], [-78.898619, 37.725684], [-78.898501, 37.725886], [-78.898424, 37.726009], [-78.898396, 37.726054], [-78.89823, 37.726333], [-78.897785, 37.72702], [-78.897326, 37.727687], [-78.897029, 37.728104], [-78.896755, 37.72847], [-78.896087, 37.729327], [-78.895376, 37.730223], [-78.89492, 37.73078], [-78.894224, 37.731648], [-78.893951, 37.731982], [-78.893208, 37.732922], [-78.893101, 37.733073], [-78.892951, 37.733284], [-78.892829, 37.733486], [-78.892725, 37.733694], [-78.892653, 37.733852], [-78.892395, 37.734583], [-78.892264, 37.735006], [-78.891874, 37.73617], [-78.891809, 37.736394], [-78.891615, 37.736972], [-78.891508, 37.737307], [-78.891316, 37.737819], [-78.891154, 37.738191], [-78.891075, 37.738356], [-78.891011, 37.738485], [-78.890701, 37.739024], [-78.890539, 37.739262], [-78.890353, 37.739521], [-78.890119, 37.739847], [-78.889796, 37.740253], [-78.889491, 37.740645], [-78.889217, 37.740996], [-78.888944, 37.74133], [-78.888623, 37.741743], [-78.888513, 37.741886], [-78.888267, 37.742188], [-78.887876, 37.742653], [-78.887675, 37.74287], [-78.887504, 37.743037], [-78.887277, 37.743237], [-78.887216, 37.743287], [-78.887135, 37.743353], [-78.886534, 37.743824], [-78.886162, 37.744125], [-78.8861, 37.744182], [-78.885899, 37.744355], [-78.885622, 37.744575], [-78.885356, 37.74478], [-78.884605, 37.745388], [-78.884042, 37.74585], [-78.882882, 37.746752], [-78.882051, 37.747417], [-78.880834, 37.748391], [-78.88003, 37.749038], [-78.879751, 37.749271], [-78.879568, 37.74942], [-78.879376, 37.749569], [-78.878419, 37.750353], [-78.877854, 37.750804], [-78.877584, 37.751037], [-78.877286, 37.751315], [-78.877004, 37.751598], [-78.876844, 37.751774], [-78.876626, 37.752042], [-78.876378, 37.752385], [-78.876192, 37.752665], [-78.876061, 37.752882], [-78.875814, 37.753345], [-78.875209, 37.754691], [-78.874619, 37.756931], [-78.874501, 37.757307], [-78.874339, 37.757855], [-78.873994, 37.758979], [-78.873789, 37.759637], [-78.873696, 37.75991], [-78.873541, 37.760318], [-78.873332, 37.760834], [-78.873094, 37.761337], [-78.872847, 37.761808], [-78.872451, 37.762468], [-78.872257, 37.76277], [-78.871993, 37.763172], [-78.871574, 37.763799], [-78.871327, 37.764167], [-78.871012, 37.764642], [-78.870469, 37.765468], [-78.870316, 37.765702], [-78.870042, 37.766126], [-78.869873, 37.766412], [-78.869781, 37.766589], [-78.869687, 37.766814], [-78.869585, 37.76708], [-78.869516, 37.767314], [-78.869424, 37.767698], [-78.869391, 37.767942], [-78.86938, 37.768238], [-78.869389, 37.768459], [-78.869415, 37.768673], [-78.869485, 37.768991], [-78.869567, 37.769255], [-78.86966, 37.769515], [-78.869743, 37.769714], [-78.869793, 37.769822], [-78.870127, 37.770634], [-78.870244, 37.770938], [-78.870299, 37.771157], [-78.870337, 37.771378], [-78.870379, 37.771605], [-78.870392, 37.771879], [-78.870378, 37.772127], [-78.870337, 37.772397], [-78.870272, 37.77267], [-78.870248, 37.772764], [-78.87004, 37.773562], [-78.869728, 37.774718], [-78.869574, 37.775264], [-78.869411, 37.775864], [-78.869234, 37.776522], [-78.869061, 37.777151], [-78.868889, 37.777735], [-78.868643, 37.778648], [-78.868399, 37.779571], [-78.868224, 37.780198], [-78.868067, 37.780782], [-78.867497, 37.782893], [-78.867434, 37.783141], [-78.867364, 37.783414], [-78.867185, 37.784047], [-78.867156, 37.784152], [-78.867042, 37.784562], [-78.866921, 37.785054], [-78.866779, 37.785508], [-78.866518, 37.786333], [-78.866458, 37.786501], [-78.866348, 37.786832], [-78.866066, 37.787709], [-78.865703, 37.788816], [-78.865457, 37.789659], [-78.865164, 37.790592], [-78.864927, 37.791345], [-78.864619, 37.792175], [-78.864507, 37.792484], [-78.864363, 37.792792], [-78.864228, 37.793041], [-78.864067, 37.7933], [-78.863882, 37.793548], [-78.863684, 37.793797], [-78.863319, 37.794211], [-78.863117, 37.794344], [-78.86295, 37.794541], [-78.862701, 37.794857], [-78.86248, 37.795184], [-78.862275, 37.795518], [-78.862199, 37.795651], [-78.862007, 37.796159], [-78.861989, 37.79622], [-78.861909, 37.796548], [-78.861883, 37.796687], [-78.861846, 37.796942], [-78.861828, 37.797235], [-78.861827, 37.797529], [-78.861837, 37.797754], [-78.861844, 37.797901], [-78.861878, 37.798631], [-78.861919, 37.799738], [-78.861971, 37.800826], [-78.862007, 37.801869], [-78.862081, 37.803303], [-78.862104, 37.80423], [-78.86209, 37.804437], [-78.862063, 37.804642], [-78.862038, 37.804754], [-78.862023, 37.804816], [-78.861947, 37.805046], [-78.861861, 37.805246], [-78.861771, 37.805437], [-78.86165, 37.805634], [-78.861512, 37.805817], [-78.861343, 37.806004], [-78.860353, 37.806994], [-78.859848, 37.807481], [-78.858512, 37.808821], [-78.858367, 37.808958], [-78.858079, 37.809211], [-78.857729, 37.809505], [-78.857293, 37.80986], [-78.856987, 37.81009], [-78.856658, 37.810338], [-78.855693, 37.81105], [-78.85561, 37.811115], [-78.855262, 37.811371], [-78.854965, 37.811605], [-78.853694, 37.812587], [-78.853389, 37.812818], [-78.852362, 37.813637], [-78.851981, 37.813912], [-78.851517, 37.814266], [-78.851057, 37.81462], [-78.85085, 37.814768], [-78.850729, 37.814859], [-78.850652, 37.81492], [-78.850085, 37.815369], [-78.848637, 37.81648], [-78.846503, 37.818117], [-78.846263, 37.818303], [-78.845641, 37.818784], [-78.845198, 37.81912], [-78.844287, 37.819835], [-78.843809, 37.820229], [-78.841255, 37.822413], [-78.840635, 37.822925], [-78.840114, 37.823377], [-78.839772, 37.823685], [-78.839408, 37.824047], [-78.839049, 37.824425], [-78.838766, 37.824737], [-78.838386, 37.825182], [-78.838147, 37.825481], [-78.837849, 37.82588], [-78.837407, 37.826506], [-78.837204, 37.826823], [-78.837053, 37.827081], [-78.836731, 37.827595], [-78.836452, 37.828104], [-78.836275, 37.828399], [-78.836111, 37.828667], [-78.835849, 37.82912], [-78.835504, 37.829691], [-78.835352, 37.829945], [-78.83498, 37.830568], [-78.834935, 37.830642], [-78.834826, 37.830821], [-78.834646, 37.831137], [-78.834377, 37.831577], [-78.833853, 37.832462], [-78.833724, 37.832692], [-78.833217, 37.833546], [-78.831919, 37.835713], [-78.831568, 37.836263], [-78.831293, 37.836637], [-78.831013, 37.836981], [-78.83077, 37.837252], [-78.829687, 37.838434], [-78.829526, 37.8386], [-78.829353, 37.838766], [-78.828845, 37.839208], [-78.828553, 37.839442], [-78.828248, 37.839665], [-78.827736, 37.840071], [-78.82744, 37.840316], [-78.827359, 37.840393], [-78.827219, 37.840526], [-78.827033, 37.840723], [-78.82681, 37.840985], [-78.826636, 37.841213], [-78.826324, 37.841668], [-78.825848, 37.842321], [-78.825635, 37.842569], [-78.825481, 37.842727], [-78.825276, 37.842917], [-78.825211, 37.842971], [-78.825103, 37.843062], [-78.824902, 37.843225], [-78.824735, 37.84334], [-78.824467, 37.843502], [-78.824206, 37.843652], [-78.82312, 37.844198], [-78.822611, 37.844456], [-78.821878, 37.84482], [-78.820981, 37.845244], [-78.82067, 37.845389], [-78.820264, 37.845536], [-78.820038, 37.845598], [-78.819873, 37.845635], [-78.81967, 37.845683], [-78.819501, 37.845707], [-78.819221, 37.845735], [-78.818871, 37.845752], [-78.818684, 37.845746], [-78.818377, 37.845729], [-78.818065, 37.845689], [-78.817748, 37.845635], [-78.817461, 37.845563], [-78.817089, 37.845456], [-78.81664, 37.845308], [-78.816094, 37.845137], [-78.815801, 37.845042], [-78.815106, 37.844835], [-78.814203, 37.844545], [-78.813661, 37.844372], [-78.813194, 37.844227], [-78.812793, 37.844119], [-78.812466, 37.844059], [-78.812161, 37.844015], [-78.811899, 37.843994], [-78.811692, 37.843985], [-78.81145, 37.844002], [-78.811288, 37.844022], [-78.810966, 37.84409], [-78.810704, 37.844162], [-78.810498, 37.844229], [-78.810246, 37.844336], [-78.80993, 37.84449], [-78.809727, 37.844605], [-78.809573, 37.844705], [-78.809276, 37.84492], [-78.809029, 37.845076], [-78.808807, 37.845199], [-78.808527, 37.845332], [-78.808311, 37.845419], [-78.808089, 37.845498], [-78.807811, 37.845579], [-78.807589, 37.845643], [-78.807297, 37.845708], [-78.807, 37.845759], [-78.806691, 37.845797], [-78.806302, 37.845837], [-78.805184, 37.845933], [-78.80503, 37.845945], [-78.804012, 37.846026], [-78.800837, 37.846324], [-78.800537, 37.846339], [-78.800237, 37.846355], [-78.800014, 37.846352], [-78.79976, 37.846345], [-78.799425, 37.846321], [-78.799048, 37.846276], [-78.79881, 37.846227], [-78.798587, 37.846183], [-78.798334, 37.846121], [-78.798127, 37.846044], [-78.797833, 37.845932], [-78.797473, 37.845765], [-78.797183, 37.845617], [-78.796923, 37.845465], [-78.796357, 37.845082], [-78.795818, 37.844712], [-78.795607, 37.84458], [-78.795352, 37.844427], [-78.795147, 37.84431], [-78.794915, 37.844201], [-78.794645, 37.844085], [-78.794419, 37.843996], [-78.794095, 37.843903], [-78.793805, 37.843828], [-78.793467, 37.843774], [-78.793125, 37.84374], [-78.792933, 37.843732], [-78.792722, 37.843723], [-78.792238, 37.84372], [-78.791688, 37.843732], [-78.791137, 37.843731], [-78.790713, 37.843712], [-78.790444, 37.843693], [-78.79016, 37.843657], [-78.78988, 37.843607], [-78.789604, 37.843542], [-78.789363, 37.843478], [-78.789067, 37.843389], [-78.788706, 37.843253], [-78.78839, 37.843125], [-78.788101, 37.843016], [-78.78765, 37.842857], [-78.787324, 37.842748], [-78.787056, 37.84268], [-78.786677, 37.842606], [-78.786459, 37.842568], [-78.786292, 37.842537], [-78.785994, 37.842501], [-78.785649, 37.842467], [-78.785267, 37.842457], [-78.784945, 37.842456], [-78.784589, 37.842468], [-78.782212, 37.842633], [-78.780497, 37.842776], [-78.779987, 37.842814], [-78.778924, 37.842896], [-78.77812, 37.842986], [-78.777773, 37.843042], [-78.777066, 37.843144], [-78.776444, 37.84325], [-78.775647, 37.843402], [-78.774632, 37.843601], [-78.773646, 37.843786], [-78.773282, 37.843855], [-78.772981, 37.843912], [-78.772128, 37.844091], [-78.771161, 37.844316], [-78.770651, 37.844441], [-78.769991, 37.844616], [-78.768859, 37.844941], [-78.768162, 37.845142], [-78.767015, 37.845472], [-78.76637, 37.845658], [-78.765119, 37.846012], [-78.761663, 37.84701], [-78.760903, 37.847224], [-78.760298, 37.847402], [-78.75996, 37.847506], [-78.7597, 37.847596], [-78.759532, 37.84765], [-78.759113, 37.847806], [-78.758783, 37.847948], [-78.758412, 37.84812], [-78.758057, 37.848288], [-78.757154, 37.848747], [-78.756986, 37.848829], [-78.756546, 37.849062], [-78.756115, 37.849306], [-78.755862, 37.849458], [-78.755244, 37.849843], [-78.754769, 37.85013], [-78.754377, 37.85038], [-78.753945, 37.850672], [-78.753673, 37.850873], [-78.753364, 37.851127], [-78.753217, 37.851259], [-78.752739, 37.851715], [-78.752046, 37.852374], [-78.75166, 37.852719], [-78.751401, 37.852929], [-78.751134, 37.853132], [-78.750789, 37.853376], [-78.750504, 37.853564], [-78.750081, 37.853824], [-78.74973, 37.854021], [-78.749369, 37.854207], [-78.748998, 37.85438], [-78.748624, 37.854531], [-78.748053, 37.854743], [-78.747045, 37.85508], [-78.746537, 37.855262], [-78.746473, 37.855285], [-78.745985, 37.855474], [-78.7456, 37.855635], [-78.744986, 37.855911], [-78.744673, 37.856064], [-78.744246, 37.856299], [-78.743761, 37.856591], [-78.743416, 37.856817], [-78.742954, 37.857145], [-78.742639, 37.857387], [-78.742337, 37.85764], [-78.742294, 37.85768], [-78.741896, 37.858045], [-78.741503, 37.85843], [-78.741291, 37.858648], [-78.741254, 37.858686], [-78.740963, 37.859027], [-78.740705, 37.859351], [-78.740668, 37.859398], [-78.740453, 37.85968], [-78.739901, 37.860385], [-78.739675, 37.860647], [-78.739434, 37.860902], [-78.739176, 37.861151], [-78.73895, 37.861357], [-78.738655, 37.861604], [-78.738411, 37.861795], [-78.738094, 37.862025], [-78.737733, 37.862262], [-78.737429, 37.862445], [-78.73708, 37.862638], [-78.73657, 37.862893], [-78.736186, 37.863088], [-78.735435, 37.86348], [-78.734529, 37.863942], [-78.733874, 37.864271], [-78.733562, 37.864427], [-78.733042, 37.864704], [-78.732039, 37.865214], [-78.731948, 37.865258], [-78.731785, 37.865335], [-78.731411, 37.86553], [-78.730148, 37.866169], [-78.729986, 37.866254], [-78.729722, 37.866391], [-78.728688, 37.866913], [-78.727888, 37.86733], [-78.727529, 37.86751], [-78.726765, 37.867904], [-78.726166, 37.868202], [-78.725869, 37.868361], [-78.725428, 37.868579], [-78.725084, 37.868757], [-78.724518, 37.869049], [-78.723898, 37.869354], [-78.722779, 37.869945], [-78.721592, 37.870542], [-78.720481, 37.87111], [-78.719958, 37.871373], [-78.719701, 37.871497], [-78.719365, 37.871672], [-78.718719, 37.872028], [-78.71847, 37.872183], [-78.718164, 37.872388], [-78.717945, 37.872553], [-78.717592, 37.872851], [-78.717285, 37.873139], [-78.717049, 37.873363], [-78.716739, 37.873728], [-78.716536, 37.874002], [-78.716395, 37.874221], [-78.716144, 37.874657], [-78.71604, 37.87487], [-78.715888, 37.875212], [-78.715814, 37.875401], [-78.715694, 37.87571], [-78.715495, 37.876238], [-78.715377, 37.876548], [-78.715275, 37.876817], [-78.71521, 37.877013], [-78.715136, 37.877211], [-78.715081, 37.877371], [-78.714995, 37.877587], [-78.71492, 37.877787], [-78.7148, 37.878131], [-78.714687, 37.878428], [-78.714533, 37.878796], [-78.714454, 37.879009], [-78.714417, 37.879116], [-78.714256, 37.879549], [-78.714141, 37.879854], [-78.713896, 37.880594], [-78.713756, 37.881038], [-78.713682, 37.88126], [-78.713617, 37.881457], [-78.713533, 37.881697], [-78.713446, 37.881943], [-78.713394, 37.882108], [-78.713314, 37.882336], [-78.713184, 37.882655], [-78.713006, 37.883053], [-78.712892, 37.883274], [-78.712733, 37.88355], [-78.712558, 37.88384], [-78.712369, 37.884119], [-78.712275, 37.884257], [-78.712136, 37.884449], [-78.711974, 37.884667], [-78.711814, 37.884876], [-78.711641, 37.885085], [-78.711418, 37.885345], [-78.711139, 37.885644], [-78.710798, 37.88599], [-78.710465, 37.886309], [-78.710195, 37.886555], [-78.709928, 37.886781], [-78.709577, 37.88706], [-78.709406, 37.887199], [-78.709211, 37.887345], [-78.708778, 37.887648], [-78.707968, 37.888179], [-78.707642, 37.888399], [-78.707473, 37.88851], [-78.707244, 37.888663], [-78.706965, 37.888843], [-78.706601, 37.889083], [-78.706088, 37.889425], [-78.705712, 37.889669], [-78.705189, 37.890019], [-78.704893, 37.890211], [-78.703445, 37.891162], [-78.703041, 37.891429], [-78.702721, 37.891638], [-78.702327, 37.891905], [-78.70184, 37.892223], [-78.701163, 37.892662], [-78.700778, 37.892933], [-78.70071, 37.892981], [-78.700622, 37.893046], [-78.700337, 37.893272], [-78.69999, 37.89357], [-78.699755, 37.8938], [-78.699482, 37.894099], [-78.699289, 37.894329], [-78.698787, 37.894984], [-78.698558, 37.895284], [-78.69837, 37.895519], [-78.698116, 37.895851], [-78.697966, 37.896055], [-78.697696, 37.896407], [-78.697057, 37.897242], [-78.696439, 37.898041], [-78.695681, 37.899035], [-78.695049, 37.899863], [-78.694658, 37.900403], [-78.694519, 37.900599], [-78.694429, 37.900733], [-78.693954, 37.901464], [-78.693721, 37.901862], [-78.693473, 37.902275], [-78.693102, 37.902981], [-78.692879, 37.903439], [-78.692797, 37.903623], [-78.692129, 37.905105], [-78.691808, 37.905817], [-78.691268, 37.906984], [-78.690987, 37.907549], [-78.690814, 37.907874], [-78.690688, 37.908089], [-78.690521, 37.908372], [-78.690275, 37.908767], [-78.689663, 37.909657], [-78.689078, 37.910492], [-78.685485, 37.915666], [-78.684467, 37.917131], [-78.682047, 37.920608], [-78.681785, 37.92095], [-78.681517, 37.921272], [-78.681241, 37.921578], [-78.68101, 37.921818], [-78.680605, 37.922194], [-78.68013, 37.922617], [-78.679566, 37.923137], [-78.679307, 37.923403], [-78.678986, 37.92374], [-78.678605, 37.924203], [-78.678345, 37.924561], [-78.678124, 37.924891], [-78.677903, 37.925227], [-78.677688, 37.925589], [-78.677544, 37.925878], [-78.67731, 37.926442], [-78.676551, 37.928284], [-78.676404, 37.928595], [-78.676242, 37.928949], [-78.676148, 37.929122], [-78.675977, 37.929377], [-78.675612, 37.929807], [-78.675385, 37.930086], [-78.675213, 37.930312], [-78.675004, 37.930559], [-78.674617, 37.931044], [-78.67407, 37.931702], [-78.673673, 37.932201], [-78.673281, 37.9327], [-78.672994, 37.933082], [-78.672166, 37.934227], [-78.671112, 37.935771], [-78.670762, 37.936281], [-78.670385, 37.936817], [-78.669877, 37.937599], [-78.668999, 37.93886], [-78.667671, 37.940789], [-78.666721, 37.942158], [-78.666126, 37.943118], [-78.665597, 37.944014], [-78.665125, 37.944827], [-78.664642, 37.945633], [-78.664087, 37.946602], [-78.663665, 37.947366], [-78.663523, 37.947648], [-78.663363, 37.948007], [-78.66312, 37.948581], [-78.662992, 37.948919], [-78.662788, 37.949511], [-78.662392, 37.950794], [-78.662127, 37.951686], [-78.661907, 37.952368], [-78.6618, 37.952667], [-78.661673, 37.952964], [-78.661549, 37.953229], [-78.661377, 37.953546], [-78.661172, 37.953875], [-78.660975, 37.954168], [-78.660712, 37.954527], [-78.660589, 37.954686], [-78.660525, 37.954768], [-78.660204, 37.955161], [-78.659899, 37.955515], [-78.65946, 37.956045], [-78.659107, 37.956472], [-78.658939, 37.95668], [-78.658404, 37.957325], [-78.658185, 37.957583], [-78.657413, 37.958505], [-78.65713, 37.958855], [-78.65677, 37.959264], [-78.656612, 37.959431], [-78.656439, 37.95959], [-78.656251, 37.959739], [-78.656068, 37.959867], [-78.655989, 37.959917], [-78.655752, 37.960052], [-78.655575, 37.96015], [-78.655228, 37.960289], [-78.654931, 37.960405], [-78.653275, 37.960978], [-78.652399, 37.961277], [-78.651659, 37.961545], [-78.651372, 37.96167], [-78.651131, 37.961788], [-78.650953, 37.961888], [-78.65077, 37.962003], [-78.650655, 37.962074], [-78.650545, 37.96215], [-78.650369, 37.962277], [-78.650124, 37.962492], [-78.649827, 37.962781], [-78.649528, 37.963082], [-78.649157, 37.963468], [-78.648771, 37.96385], [-78.648569, 37.964042], [-78.648236, 37.964318], [-78.647928, 37.964546], [-78.647355, 37.964951], [-78.646421, 37.965624], [-78.646034, 37.965897], [-78.645591, 37.966218], [-78.645351, 37.966376], [-78.645051, 37.966569], [-78.644735, 37.966754], [-78.644581, 37.96684], [-78.6444, 37.966936], [-78.643915, 37.967163], [-78.643555, 37.967319], [-78.643147, 37.967465], [-78.642853, 37.967561], [-78.642519, 37.96766], [-78.642395, 37.967695], [-78.642095, 37.967768], [-78.641871, 37.967823], [-78.641449, 37.967916], [-78.640993, 37.967991], [-78.640408, 37.968066], [-78.639997, 37.968103], [-78.639496, 37.96813], [-78.638995, 37.968136], [-78.638434, 37.968125], [-78.637944, 37.9681], [-78.63612, 37.967958], [-78.635136, 37.967873], [-78.633802, 37.96777], [-78.632073, 37.967631], [-78.631801, 37.967611], [-78.630935, 37.967546], [-78.630424, 37.967503], [-78.629697, 37.967442], [-78.628686, 37.967361], [-78.626167, 37.967159], [-78.623282, 37.966927], [-78.622258, 37.96685], [-78.621932, 37.966824], [-78.620819, 37.966736], [-78.620381, 37.966716], [-78.620004, 37.966712], [-78.619679, 37.966717], [-78.61937, 37.966745], [-78.619064, 37.966787], [-78.618761, 37.966844], [-78.618523, 37.9669], [-78.618222, 37.966977], [-78.617837, 37.967103], [-78.617525, 37.967224], [-78.617264, 37.967333], [-78.616866, 37.967526], [-78.61666, 37.96764], [-78.616487, 37.967735], [-78.616266, 37.967872], [-78.615844, 37.968137], [-78.615555, 37.968338], [-78.615229, 37.968577], [-78.614931, 37.968831], [-78.614607, 37.969142], [-78.614381, 37.96937], [-78.614151, 37.969646], [-78.613964, 37.96988], [-78.613494, 37.970554], [-78.61301, 37.971246], [-78.612831, 37.971512], [-78.612279, 37.972333], [-78.611229, 37.97389], [-78.610819, 37.974494], [-78.610719, 37.974624], [-78.610499, 37.974897], [-78.610319, 37.975118], [-78.610116, 37.975331], [-78.609966, 37.975469], [-78.609796, 37.975624], [-78.609591, 37.975796], [-78.609317, 37.976004], [-78.609071, 37.976176], [-78.608849, 37.976327], [-78.608744, 37.97639], [-78.608365, 37.976619], [-78.608101, 37.976752], [-78.607845, 37.976869], [-78.607584, 37.976978], [-78.60725, 37.977103], [-78.606977, 37.977192], [-78.606625, 37.977297], [-78.606266, 37.977388], [-78.606123, 37.977418], [-78.605902, 37.977465], [-78.605646, 37.97752], [-78.605621, 37.977522], [-78.605549, 37.977538], [-78.60423, 37.977756], [-78.602588, 37.978034], [-78.602162, 37.978122], [-78.601825, 37.978203], [-78.601492, 37.978293], [-78.601094, 37.978414], [-78.60071, 37.978547], [-78.600334, 37.978694], [-78.599967, 37.978854], [-78.599486, 37.979083], [-78.599163, 37.979252], [-78.598789, 37.97947], [-78.598549, 37.979624], [-78.597946, 37.980033], [-78.596889, 37.98075], [-78.595137, 37.981939], [-78.593704, 37.982911], [-78.592376, 37.98382], [-78.590854, 37.984906], [-78.590225, 37.985373], [-78.588999, 37.98631], [-78.588012, 37.9871], [-78.587089, 37.987859], [-78.586722, 37.988171], [-78.586183, 37.988631], [-78.585023, 37.989655], [-78.583908, 37.990662], [-78.583686, 37.990885], [-78.583478, 37.991116], [-78.583203, 37.991447], [-78.583057, 37.991641], [-78.582889, 37.99189], [-78.582734, 37.992152], [-78.582584, 37.992445], [-78.582451, 37.992743], [-78.582318, 37.993104], [-78.582229, 37.993396], [-78.582158, 37.993692], [-78.582061, 37.994255], [-78.581989, 37.994788], [-78.581919, 37.9952], [-78.581831, 37.99573], [-78.581596, 37.997239], [-78.581525, 37.997665], [-78.58147, 37.998088], [-78.581083, 38.000517], [-78.580993, 38.001016], [-78.580912, 38.001332], [-78.580857, 38.001514], [-78.580851, 38.001532], [-78.580827, 38.001607], [-78.580788, 38.001711], [-78.580764, 38.001783], [-78.580638, 38.002087], [-78.580501, 38.002397], [-78.580338, 38.002682], [-78.580176, 38.002939], [-78.580026, 38.003155], [-78.57984, 38.003394], [-78.579631, 38.003641], [-78.579528, 38.003748], [-78.579258, 38.004014], [-78.578985, 38.00426], [-78.578784, 38.004426], [-78.578575, 38.004584], [-78.578379, 38.004723], [-78.578122, 38.004899], [-78.577709, 38.005151], [-78.577431, 38.005306], [-78.577141, 38.005444], [-78.576923, 38.005542], [-78.576628, 38.005666], [-78.576327, 38.005766], [-78.576154, 38.005828], [-78.575371, 38.006031], [-78.574274, 38.006313], [-78.573929, 38.006397], [-78.573678, 38.006459], [-78.5731, 38.006602], [-78.572544, 38.006742], [-78.570845, 38.007165], [-78.570536, 38.007245], [-78.570147, 38.007346], [-78.569511, 38.007502], [-78.568866, 38.007677], [-78.568449, 38.007795], [-78.568216, 38.007865], [-78.567861, 38.007984], [-78.567483, 38.008116], [-78.567008, 38.00831], [-78.566642, 38.008471], [-78.566222, 38.008672], [-78.565813, 38.008887], [-78.565381, 38.009126], [-78.564818, 38.009422], [-78.564544, 38.009563], [-78.564196, 38.009735], [-78.564075, 38.009787], [-78.56369, 38.009944], [-78.56326, 38.010103], [-78.562849, 38.010238], [-78.562529, 38.010332], [-78.562124, 38.010438], [-78.561805, 38.010515], [-78.561564, 38.010564], [-78.56093, 38.010675], [-78.560028, 38.010845], [-78.558824, 38.011064], [-78.558024, 38.011219], [-78.557648, 38.011286], [-78.557386, 38.011333], [-78.557058, 38.011387], [-78.555118, 38.011755], [-78.554112, 38.011931], [-78.552878, 38.012156], [-78.552449, 38.01225], [-78.552186, 38.012316], [-78.551829, 38.012417], [-78.551365, 38.012562], [-78.55109, 38.012655], [-78.550658, 38.012829], [-78.550236, 38.013017], [-78.549599, 38.013364], [-78.549376, 38.013492], [-78.549058, 38.013698], [-78.548469, 38.01411], [-78.547659, 38.014674], [-78.547468, 38.014808], [-78.54736, 38.014884], [-78.547042, 38.015096], [-78.546611, 38.015362], [-78.546269, 38.015559], [-78.54592, 38.01574], [-78.545223, 38.016069], [-78.544841, 38.016247], [-78.543906, 38.016682], [-78.543654, 38.016806], [-78.54333, 38.016982], [-78.542733, 38.017318], [-78.542466, 38.017467], [-78.539711, 38.018979], [-78.536725, 38.020664], [-78.535885, 38.021132], [-78.535518, 38.021335], [-78.534742, 38.021766], [-78.534188, 38.022073], [-78.532955, 38.02276], [-78.532173, 38.023196], [-78.531193, 38.023747], [-78.531125, 38.023792], [-78.53075, 38.024045], [-78.530445, 38.024274], [-78.530203, 38.024476], [-78.530016, 38.024649], [-78.529931, 38.024733], [-78.52985, 38.024806], [-78.529798, 38.024854], [-78.529758, 38.024894], [-78.529598, 38.025065], [-78.529327, 38.025386], [-78.52916, 38.025608], [-78.528945, 38.025933], [-78.5288, 38.026176], [-78.528672, 38.026426], [-78.52861, 38.026566], [-78.528405, 38.027066], [-78.52833, 38.027311], [-78.528283, 38.02751], [-78.528235, 38.027689], [-78.528151, 38.028145], [-78.527582, 38.03105], [-78.527126, 38.033402], [-78.52703, 38.033972], [-78.526914, 38.034782], [-78.526868, 38.035166], [-78.52679, 38.036035], [-78.526753, 38.036647], [-78.526715, 38.03781], [-78.526642, 38.040878], [-78.526607, 38.042081], [-78.526584, 38.042473], [-78.526544, 38.042863], [-78.52645, 38.043462], [-78.526353, 38.043907], [-78.526306, 38.044099], [-78.526225, 38.044382], [-78.526103, 38.044762], [-78.525978, 38.045116], [-78.52595, 38.045183], [-78.525619, 38.045973], [-78.525226, 38.046882], [-78.524837, 38.047794], [-78.524807, 38.047861], [-78.524712, 38.048073], [-78.523664, 38.050524], [-78.523608, 38.050633], [-78.523449, 38.050945], [-78.523194, 38.051371], [-78.522992, 38.051667], [-78.522896, 38.051793], [-78.522708, 38.052033], [-78.522379, 38.052403], [-78.522049, 38.052728], [-78.521736, 38.053004], [-78.521375, 38.053289], [-78.521061, 38.053512], [-78.520792, 38.053687], [-78.520433, 38.053898], [-78.5202, 38.054028], [-78.519924, 38.054166], [-78.519561, 38.054329], [-78.519179, 38.054486], [-78.518827, 38.054612], [-78.518437, 38.054736], [-78.518106, 38.054829], [-78.517883, 38.054877], [-78.517638, 38.05494], [-78.517298, 38.055006], [-78.51674, 38.055093], [-78.515503, 38.055228], [-78.513125, 38.055506], [-78.51298, 38.05552], [-78.511721, 38.055664], [-78.510089, 38.05585], [-78.509444, 38.055931], [-78.508892, 38.056018], [-78.508324, 38.056121], [-78.50762, 38.056269], [-78.507101, 38.056364], [-78.5063, 38.056529], [-78.504207, 38.056975], [-78.503544, 38.057129], [-78.50332, 38.057173], [-78.50218, 38.05739], [-78.501769, 38.057476], [-78.501588, 38.057518], [-78.501288, 38.05758], [-78.500918, 38.057644], [-78.50053, 38.057699], [-78.50025, 38.057721], [-78.49999, 38.057731], [-78.4996, 38.057738], [-78.499258, 38.057729], [-78.499228, 38.057727], [-78.498789, 38.057695], [-78.498509, 38.057667], [-78.498249, 38.05764], [-78.497868, 38.057604], [-78.497658, 38.057584], [-78.497235, 38.057537], [-78.496848, 38.057489], [-78.495893, 38.057371], [-78.494978, 38.057279], [-78.49472, 38.057173], [-78.494659, 38.057142], [-78.494592, 38.057093], [-78.494549, 38.057047], [-78.494516, 38.056995], [-78.494502, 38.05695], [-78.494493, 38.056874], [-78.494502, 38.056798], [-78.494522, 38.056739], [-78.494562, 38.056669], [-78.494623, 38.05661], [-78.494697, 38.056562], [-78.494781, 38.056525], [-78.494872, 38.056502], [-78.49496, 38.056493], [-78.495044, 38.0565], [-78.495109, 38.056516], [-78.495169, 38.056541], [-78.495238, 38.056584], [-78.49528, 38.056617], [-78.495339, 38.05668], [-78.495381, 38.056751], [-78.495402, 38.056811], [-78.495415, 38.056894], [-78.495413, 38.056998], [-78.495388, 38.057116], [-78.49528, 38.057239], [-78.495007, 38.057577], [-78.494845, 38.057747], [-78.494782, 38.057825], [-78.494593, 38.05807], [-78.494413, 38.058298], [-78.494268, 38.05847], [-78.494235, 38.058509], [-78.494159, 38.058601], [-78.493967, 38.058833], [-78.493505, 38.059401], [-78.493364, 38.059586], [-78.492889, 38.060182], [-78.492564, 38.060616], [-78.492196, 38.061101], [-78.491916, 38.061468], [-78.491724, 38.061722], [-78.491723, 38.061722], [-78.491578, 38.061897], [-78.491244, 38.062293], [-78.490863, 38.062734], [-78.490477, 38.063153], [-78.490269, 38.06338], [-78.489937, 38.063742], [-78.48969, 38.064008], [-78.489478, 38.064259], [-78.489344, 38.064409], [-78.489289, 38.06447], [-78.489212, 38.064554], [-78.488761, 38.065053], [-78.48815, 38.065739], [-78.488116, 38.065779], [-78.487867, 38.06605], [-78.48713, 38.06686], [-78.486995, 38.067008], [-78.486825, 38.067194], [-78.486343, 38.067727], [-78.486218, 38.067866], [-78.486208, 38.067877], [-78.486134, 38.067959], [-78.48576, 38.068363], [-78.485475, 38.06867], [-78.485154, 38.069027], [-78.484295, 38.070023], [-78.484063, 38.070271], [-78.483776, 38.070614], [-78.483281, 38.071164], [-78.482433, 38.07211], [-78.480968, 38.073741], [-78.480778, 38.073943], [-78.480706, 38.07403], [-78.480376, 38.074401], [-78.479882, 38.074956], [-78.479801, 38.075034], [-78.479272, 38.075634], [-78.478606, 38.076375], [-78.478527, 38.076469], [-78.478367, 38.076647], [-78.477091, 38.078062], [-78.476397, 38.078846], [-78.475743, 38.079571], [-78.474543, 38.08091], [-78.474163, 38.081335], [-78.473969, 38.081577], [-78.473788, 38.081788], [-78.473613, 38.082014], [-78.47347, 38.082218], [-78.472971, 38.083082], [-78.472639, 38.083666], [-78.472264, 38.084319], [-78.471709, 38.085285], [-78.471146, 38.086271], [-78.47079, 38.086895], [-78.470583, 38.087258], [-78.47026, 38.087825], [-78.469568, 38.089039], [-78.468607, 38.090712], [-78.468501, 38.090897], [-78.468139, 38.091557], [-78.468043, 38.091733], [-78.467922, 38.09192], [-78.467732, 38.092218], [-78.46735, 38.0929], [-78.466766, 38.093924], [-78.466497, 38.09437], [-78.466369, 38.094558], [-78.46599, 38.095057], [-78.465526, 38.09564], [-78.465381, 38.095816], [-78.464933, 38.096381], [-78.464463, 38.096962], [-78.464049, 38.097474], [-78.463974, 38.097573], [-78.463441, 38.098232], [-78.46294, 38.098874], [-78.462231, 38.099765], [-78.461478, 38.100721], [-78.460943, 38.101395], [-78.460544, 38.101882], [-78.460009, 38.102564], [-78.459568, 38.103126], [-78.459337, 38.103403], [-78.458603, 38.10429], [-78.457804, 38.105297], [-78.45751, 38.105695], [-78.4569, 38.106619], [-78.456598, 38.107068], [-78.45544, 38.108845], [-78.454988, 38.109578], [-78.454476, 38.110311], [-78.454296, 38.110569], [-78.454206, 38.110708], [-78.454093, 38.110899], [-78.453942, 38.111128], [-78.453769, 38.111409], [-78.453294, 38.112125], [-78.453172, 38.112318], [-78.452856, 38.112817], [-78.452688, 38.11307], [-78.452602, 38.113223], [-78.451975, 38.114186], [-78.451686, 38.11461], [-78.45106, 38.115568], [-78.450908, 38.115798], [-78.450496, 38.11642], [-78.450419, 38.116537], [-78.45032, 38.116697], [-78.450137, 38.116993], [-78.449702, 38.117634], [-78.449172, 38.118448], [-78.448773, 38.119065], [-78.448006, 38.120242], [-78.447677, 38.120726], [-78.447299, 38.121219], [-78.44692, 38.121631], [-78.446411, 38.122124], [-78.4458, 38.12267], [-78.444661, 38.123687], [-78.442392, 38.125724], [-78.441529, 38.126494], [-78.440922, 38.127044], [-78.440006, 38.127866], [-78.439371, 38.128436], [-78.437997, 38.129669], [-78.437902, 38.129754], [-78.437019, 38.130549], [-78.436453, 38.131059], [-78.436187, 38.131299], [-78.435995, 38.13147], [-78.435251, 38.132172], [-78.435106, 38.132303], [-78.434673, 38.132753], [-78.434293, 38.13317], [-78.433695, 38.133887], [-78.433416, 38.134269], [-78.433195, 38.134572], [-78.432173, 38.13616], [-78.430917, 38.138131], [-78.430468, 38.138847], [-78.429836, 38.139833], [-78.429464, 38.140424], [-78.428859, 38.141359], [-78.428348, 38.142178], [-78.428275, 38.142291], [-78.427887, 38.14289], [-78.427641, 38.143278], [-78.427277, 38.143851], [-78.427263, 38.143873], [-78.425718, 38.146293], [-78.4249, 38.147586], [-78.423982, 38.149017], [-78.423879, 38.149181], [-78.4234, 38.149936], [-78.422346, 38.1516], [-78.42208, 38.151996], [-78.421684, 38.152621], [-78.421337, 38.15319], [-78.420383, 38.154692], [-78.419605, 38.155908], [-78.417659, 38.158962], [-78.415009, 38.163121], [-78.414626, 38.163716], [-78.414541, 38.163851], [-78.414293, 38.164245], [-78.412771, 38.16663], [-78.41231, 38.167345], [-78.411781, 38.168185], [-78.410521, 38.170164], [-78.410064, 38.170881], [-78.408661, 38.173081], [-78.408289, 38.173661], [-78.406754, 38.176057], [-78.405791, 38.177582], [-78.405633, 38.177824], [-78.404819, 38.179105], [-78.40451, 38.179581], [-78.403702, 38.180857], [-78.403534, 38.181116], [-78.40229, 38.183084], [-78.402, 38.183534], [-78.401567, 38.184219], [-78.401491, 38.184329], [-78.400918, 38.18523], [-78.400512, 38.185861], [-78.399321, 38.187671], [-78.399195, 38.187856], [-78.399077, 38.188041], [-78.398689, 38.188617], [-78.398558, 38.18882], [-78.397589, 38.190295], [-78.3974, 38.190566], [-78.397207, 38.19086], [-78.396877, 38.191349], [-78.396731, 38.191574], [-78.396016, 38.192652], [-78.395969, 38.192724], [-78.395198, 38.193895], [-78.395145, 38.193978], [-78.395092, 38.194057], [-78.395078, 38.194078], [-78.394787, 38.194511], [-78.394461, 38.19501], [-78.394425, 38.195065], [-78.393867, 38.195904], [-78.393697, 38.196162], [-78.392569, 38.197862], [-78.392356, 38.198186], [-78.391791, 38.199049], [-78.3916, 38.199341], [-78.391424, 38.19959], [-78.391056, 38.200141], [-78.390364, 38.201178], [-78.388697, 38.203713], [-78.387884, 38.204937], [-78.387682, 38.20524], [-78.387424, 38.205639], [-78.386997, 38.206278], [-78.386781, 38.206604], [-78.386138, 38.207581], [-78.385992, 38.207804], [-78.385531, 38.2085], [-78.38498, 38.209334], [-78.384853, 38.209537], [-78.383889, 38.210987], [-78.383519, 38.211533], [-78.383408, 38.211705], [-78.383194, 38.212041], [-78.382209, 38.213531], [-78.381949, 38.213932], [-78.381401, 38.214759], [-78.380953, 38.215433], [-78.380697, 38.215818], [-78.380472, 38.216158], [-78.379118, 38.218196], [-78.378999, 38.218384], [-78.37862, 38.21895], [-78.377882, 38.220071], [-78.377739, 38.220289], [-78.377587, 38.220523], [-78.376908, 38.221535], [-78.376698, 38.221851], [-78.376516, 38.222128], [-78.375966, 38.222959], [-78.375503, 38.223658], [-78.374143, 38.225716], [-78.373741, 38.226317], [-78.372465, 38.228246], [-78.371604, 38.229546], [-78.371224, 38.230126], [-78.37075, 38.230832], [-78.370117, 38.231792], [-78.369796, 38.23229], [-78.369344, 38.233031], [-78.369247, 38.233202], [-78.369201, 38.233285], [-78.369089, 38.233499], [-78.368757, 38.234191], [-78.368537, 38.23469], [-78.368285, 38.235273], [-78.367348, 38.237406], [-78.367125, 38.237924], [-78.366876, 38.23848], [-78.366632, 38.239054], [-78.366538, 38.239263], [-78.366315, 38.239761], [-78.365981, 38.240523], [-78.365112, 38.242495], [-78.364536, 38.243815], [-78.364277, 38.244425], [-78.363872, 38.245322], [-78.363644, 38.245831], [-78.363475, 38.246227], [-78.363324, 38.246579], [-78.363065, 38.24716], [-78.362399, 38.248697], [-78.362213, 38.249115], [-78.36185, 38.249928], [-78.360994, 38.251906], [-78.360894, 38.252122], [-78.360732, 38.252472], [-78.359818, 38.254556], [-78.359604, 38.255032], [-78.358451, 38.257672], [-78.35837, 38.257854], [-78.357235, 38.260418], [-78.35697, 38.261034], [-78.356749, 38.261526], [-78.356328, 38.262487], [-78.3557, 38.26392], [-78.355441, 38.264489], [-78.354985, 38.265534], [-78.354199, 38.267311], [-78.354014, 38.267697], [-78.353899, 38.267927], [-78.353632, 38.268419], [-78.353386, 38.268835], [-78.353012, 38.269405], [-78.352727, 38.269807], [-78.352433, 38.270193], [-78.351176, 38.271816], [-78.35069, 38.272444], [-78.350332, 38.272914], [-78.349867, 38.273496], [-78.349659, 38.273731], [-78.349448, 38.273949], [-78.349246, 38.274133], [-78.348925, 38.274393], [-78.348653, 38.274592], [-78.348309, 38.274816], [-78.346752, 38.275754], [-78.345609, 38.276449], [-78.34394, 38.277447], [-78.343411, 38.277789], [-78.343205, 38.277938], [-78.342906, 38.278167], [-78.342692, 38.278348], [-78.342621, 38.27841], [-78.342399, 38.278622], [-78.342335, 38.278686], [-78.342171, 38.278857], [-78.341631, 38.279482], [-78.341204, 38.280003], [-78.341139, 38.280089], [-78.341053, 38.280202], [-78.340551, 38.280804], [-78.34033, 38.281097], [-78.339739, 38.281771], [-78.337121, 38.284947], [-78.335554, 38.286807], [-78.334912, 38.287652], [-78.334363, 38.288479], [-78.333901, 38.289321], [-78.332891, 38.291302], [-78.33264, 38.291856], [-78.332046, 38.29316], [-78.331547, 38.294091], [-78.33002, 38.297253], [-78.328705, 38.299896], [-78.328454, 38.300437], [-78.327604, 38.302025], [-78.326529, 38.303681], [-78.325643, 38.304891], [-78.325058, 38.305662], [-78.32399, 38.30691], [-78.3236, 38.307359], [-78.323233, 38.30771], [-78.322626, 38.308335], [-78.320591, 38.310229], [-78.317859, 38.312439], [-78.317136, 38.313055], [-78.314274, 38.315396], [-78.313204, 38.316275], [-78.313084, 38.316374], [-78.312238, 38.317069], [-78.31127, 38.317874], [-78.310555, 38.318624], [-78.308339, 38.321068], [-78.307189, 38.322326], [-78.306432, 38.323147], [-78.305157, 38.324565], [-78.299683, 38.33067], [-78.296227, 38.334366], [-78.294775, 38.336025], [-78.294422, 38.336434], [-78.293518, 38.337393], [-78.292283, 38.338774], [-78.290905, 38.340301], [-78.289054, 38.34231], [-78.287698, 38.343781], [-78.286127, 38.345511], [-78.284805, 38.346961], [-78.284197, 38.347653], [-78.281261, 38.350904], [-78.27928, 38.353063], [-78.277989, 38.354462], [-78.276967, 38.355626], [-78.275482, 38.357205], [-78.275108, 38.357686], [-78.273995, 38.359116], [-78.272612, 38.361053], [-78.269402, 38.365549], [-78.268281, 38.367067], [-78.26707, 38.368543], [-78.266209, 38.369424], [-78.26463, 38.370803], [-78.263855, 38.371431], [-78.262777, 38.372178], [-78.262167, 38.372601], [-78.258589, 38.375046], [-78.253931, 38.378242], [-78.253419, 38.378585], [-78.252722, 38.379065], [-78.251038, 38.380279], [-78.249725, 38.3814], [-78.248824, 38.38242], [-78.247019, 38.384778], [-78.243045, 38.39007], [-78.242379, 38.390835], [-78.241798, 38.391304], [-78.241358, 38.391649], [-78.240659, 38.392107], [-78.239791, 38.392562], [-78.236781, 38.394134], [-78.234618, 38.395478], [-78.233524, 38.396238], [-78.231366, 38.397688], [-78.230593, 38.398159], [-78.229713, 38.398631], [-78.22927, 38.398846], [-78.227176, 38.399941], [-78.224001, 38.401573], [-78.221687, 38.402762], [-78.220927, 38.403115], [-78.219583, 38.403494], [-78.217956, 38.403869], [-78.216834, 38.404329], [-78.216198, 38.404653], [-78.215673, 38.404943], [-78.2147, 38.405692], [-78.214341, 38.406017], [-78.211846, 38.409013], [-78.211205, 38.409859], [-78.208931, 38.412831], [-78.207891, 38.413946], [-78.207388, 38.414459], [-78.206848, 38.414885], [-78.20502, 38.416246], [-78.204339, 38.416746], [-78.203587, 38.417231], [-78.201789, 38.418025], [-78.199931, 38.418788], [-78.198775, 38.419213], [-78.197516, 38.419599], [-78.196891, 38.419728], [-78.193593, 38.420311], [-78.192656, 38.420508], [-78.191772, 38.420736], [-78.190615, 38.421137], [-78.189756, 38.421485], [-78.189131, 38.421795], [-78.188009, 38.422501], [-78.186635, 38.423265], [-78.185396, 38.423841], [-78.184545, 38.424162], [-78.179643, 38.425692], [-78.176595, 38.426575], [-78.175037, 38.427149], [-78.174014, 38.427529], [-78.171007, 38.428688], [-78.169272, 38.429381], [-78.165511, 38.430827], [-78.164119, 38.431371], [-78.162591, 38.431967], [-78.161653, 38.432308], [-78.160661, 38.43271], [-78.160269, 38.432865], [-78.159874, 38.433009], [-78.157491, 38.433942], [-78.157022, 38.434133], [-78.156281, 38.434403], [-78.154122, 38.435214], [-78.152887, 38.435503], [-78.151935, 38.435645], [-78.151237, 38.435723], [-78.149391, 38.435895], [-78.145341, 38.436294], [-78.143178, 38.436516], [-78.141588, 38.436723], [-78.140742, 38.436927], [-78.139967, 38.43716], [-78.139029, 38.437478], [-78.138213, 38.437833], [-78.13673, 38.438732], [-78.135769, 38.439493], [-78.133667, 38.441543], [-78.13309, 38.442092], [-78.132637, 38.442565], [-78.131362, 38.443807], [-78.131197, 38.443972], [-78.13069, 38.444456], [-78.13004, 38.445093], [-78.129654, 38.445515], [-78.129431, 38.445788], [-78.129306, 38.445939], [-78.129135, 38.446147], [-78.126535, 38.449414], [-78.12559, 38.450596], [-78.124937, 38.451403], [-78.12463, 38.451786], [-78.122999, 38.453819], [-78.12268, 38.454222], [-78.122212, 38.454799], [-78.122012, 38.455018], [-78.121815, 38.455209], [-78.121657, 38.455346], [-78.121484, 38.455481], [-78.121283, 38.455622], [-78.121072, 38.455755], [-78.120838, 38.455889], [-78.120605, 38.456007], [-78.120411, 38.456093], [-78.120081, 38.45622], [-78.11988, 38.456286], [-78.119617, 38.456362], [-78.119481, 38.456395], [-78.119029, 38.456484], [-78.118859, 38.456513], [-78.118556, 38.456543], [-78.118252, 38.456558], [-78.117886, 38.45656], [-78.117582, 38.456545], [-78.117215, 38.456509], [-78.11691, 38.456463], [-78.116669, 38.456417], [-78.116299, 38.456332], [-78.114395, 38.455867], [-78.113075, 38.455549], [-78.112183, 38.455337], [-78.111983, 38.455288], [-78.110622, 38.454956], [-78.109647, 38.454713], [-78.109318, 38.454619], [-78.108646, 38.454427], [-78.108148, 38.454266], [-78.107826, 38.454152], [-78.107433, 38.454006], [-78.106215, 38.453523], [-78.103244, 38.452284], [-78.103113, 38.45223], [-78.101465, 38.451517], [-78.100793, 38.451267], [-78.099999, 38.450965], [-78.099633, 38.450843], [-78.099366, 38.450762], [-78.098981, 38.450649], [-78.098604, 38.450547], [-78.098262, 38.45046], [-78.09792, 38.450384], [-78.096808, 38.450181], [-78.096151, 38.450083], [-78.095446, 38.449969], [-78.093727, 38.449707], [-78.092677, 38.449547], [-78.092158, 38.449481], [-78.091766, 38.449445], [-78.091635, 38.449437], [-78.091391, 38.44943], [-78.09088, 38.449437], [-78.090541, 38.449459], [-78.090154, 38.449505], [-78.090027, 38.449526], [-78.089761, 38.44957], [-78.089091, 38.449707], [-78.08849, 38.449845], [-78.087312, 38.450134], [-78.086546, 38.450314], [-78.086092, 38.450427], [-78.085716, 38.450516], [-78.085217, 38.45064], [-78.083614, 38.45102], [-78.082588, 38.451268], [-78.081682, 38.451496], [-78.080934, 38.451707], [-78.080808, 38.451743], [-78.080252, 38.451928], [-78.080061, 38.451995], [-78.079356, 38.452244], [-78.079056, 38.452366], [-78.077758, 38.452899], [-78.07693, 38.453218], [-78.07648, 38.453363], [-78.075972, 38.453504], [-78.075519, 38.453613], [-78.075245, 38.453672], [-78.074633, 38.453773], [-78.073634, 38.453917], [-78.073086, 38.453985], [-78.071708, 38.454165], [-78.070367, 38.45434], [-78.069606, 38.454439], [-78.065196, 38.455001], [-78.0636, 38.455212], [-78.062967, 38.455296], [-78.062279, 38.455383], [-78.061807, 38.45545], [-78.061375, 38.455516], [-78.060496, 38.455651], [-78.059099, 38.455874], [-78.058415, 38.455997], [-78.057861, 38.456107], [-78.057398, 38.456211], [-78.057094, 38.456284], [-78.055369, 38.456762], [-78.054558, 38.456978], [-78.05416, 38.457057], [-78.053923, 38.4571], [-78.053692, 38.457137], [-78.053464, 38.457172], [-78.052965, 38.457229], [-78.052547, 38.457266], [-78.05168, 38.457327], [-78.051381, 38.457343], [-78.051209, 38.457356], [-78.050231, 38.457415], [-78.049522, 38.45745], [-78.049115, 38.457457], [-78.048707, 38.45745], [-78.048107, 38.457414], [-78.046583, 38.457296], [-78.045473, 38.457209], [-78.043615, 38.457066], [-78.04299, 38.457014], [-78.041948, 38.456934], [-78.041564, 38.4569], [-78.040447, 38.456809], [-78.039807, 38.456752], [-78.039565, 38.456722], [-78.038614, 38.456586], [-78.037992, 38.45648], [-78.036619, 38.456229], [-78.036312, 38.456174], [-78.035316, 38.455996], [-78.033993, 38.455756], [-78.033455, 38.455659], [-78.032995, 38.455576], [-78.032344, 38.455462], [-78.032225, 38.455441], [-78.032071, 38.455411], [-78.031918, 38.455381], [-78.030629, 38.455156], [-78.030487, 38.455136], [-78.02993, 38.455035], [-78.029397, 38.454939], [-78.027154, 38.454551], [-78.026507, 38.454439], [-78.026143, 38.454368], [-78.025005, 38.454171], [-78.024336, 38.45404], [-78.023622, 38.453878], [-78.02312, 38.453727], [-78.02273, 38.453603], [-78.022384, 38.453473], [-78.021945, 38.453293], [-78.021688, 38.453179], [-78.02141, 38.45304], [-78.020949, 38.452794], [-78.020606, 38.452593], [-78.018376, 38.451156], [-78.015052, 38.449001], [-78.013038, 38.447702], [-78.012718, 38.447476], [-78.012365, 38.447314], [-78.011913, 38.44707], [-78.011467, 38.446849], [-78.011017, 38.446646], [-78.010785, 38.446548], [-78.01041, 38.446389], [-78.009947, 38.446212], [-78.009475, 38.446047], [-78.009032, 38.44592], [-78.008198, 38.445668], [-78.007806, 38.445574], [-78.007536, 38.445509], [-78.00704, 38.445404], [-78.006541, 38.445314], [-78.006039, 38.445234], [-78.005535, 38.445168], [-78.004882, 38.445103], [-78.00427, 38.44506], [-78.003857, 38.445042], [-78.003259, 38.445032], [-77.996098, 38.445039], [-77.995524, 38.445052], [-77.995083, 38.445072], [-77.9946, 38.445108], [-77.994291, 38.44514], [-77.994119, 38.445159], [-77.993562, 38.445235], [-77.993077, 38.445314], [-77.992738, 38.44538], [-77.992304, 38.445476], [-77.991774, 38.445609], [-77.991277, 38.445754], [-77.990885, 38.44588], [-77.990401, 38.446049], [-77.989902, 38.446248], [-77.98951, 38.446417], [-77.989127, 38.446595], [-77.988671, 38.446826], [-77.988226, 38.44707], [-77.988015, 38.447193], [-77.987964, 38.447222], [-77.986229, 38.448266], [-77.982377, 38.450578], [-77.980067, 38.451965], [-77.978396, 38.452971], [-77.976723, 38.453978], [-77.971729, 38.456974], [-77.970854, 38.457513], [-77.970447, 38.457776], [-77.969812, 38.458205], [-77.969672, 38.458304], [-77.969294, 38.458571], [-77.968878, 38.458872], [-77.968162, 38.459423], [-77.967696, 38.459799], [-77.967125, 38.46028], [-77.966325, 38.460982], [-77.965258, 38.461918], [-77.964866, 38.462267], [-77.960196, 38.466376], [-77.955939, 38.470123], [-77.954947, 38.470996], [-77.954533, 38.471358], [-77.953922, 38.471893], [-77.953458, 38.472304], [-77.953176, 38.472548], [-77.952583, 38.473072], [-77.951119, 38.474355], [-77.950943, 38.474509], [-77.949669, 38.47563], [-77.948949, 38.476265], [-77.948002, 38.477098], [-77.940672, 38.483548], [-77.940481, 38.483731], [-77.940188, 38.484012], [-77.939893, 38.484318], [-77.939484, 38.484776], [-77.93926, 38.485054], [-77.939039, 38.48534], [-77.938835, 38.485618], [-77.938574, 38.486003], [-77.938385, 38.4863], [-77.938154, 38.486695], [-77.936929, 38.489071], [-77.936476, 38.48995], [-77.936307, 38.490277], [-77.936213, 38.490449], [-77.936032, 38.490779], [-77.935797, 38.491168], [-77.935515, 38.491593], [-77.935238, 38.491981], [-77.934904, 38.492412], [-77.934836, 38.492493], [-77.93462, 38.492753], [-77.934238, 38.493183], [-77.933985, 38.493449], [-77.933681, 38.493753], [-77.933395, 38.494018], [-77.933018, 38.494354], [-77.932749, 38.494585], [-77.932252, 38.494973], [-77.93171, 38.495374], [-77.931341, 38.495628], [-77.930966, 38.495866], [-77.930194, 38.496327], [-77.929795, 38.496546], [-77.929468, 38.496713], [-77.928898, 38.496989], [-77.928401, 38.497211], [-77.927814, 38.497454], [-77.927352, 38.49763], [-77.926883, 38.497792], [-77.92627, 38.497988], [-77.925745, 38.498139], [-77.925688, 38.498154], [-77.925207, 38.498279], [-77.924635, 38.498412], [-77.924059, 38.498531], [-77.923478, 38.498637], [-77.923244, 38.498675], [-77.9209, 38.499106], [-77.920407, 38.499196], [-77.916265, 38.499951], [-77.914897, 38.500194], [-77.913262, 38.500498], [-77.912906, 38.500563], [-77.911059, 38.5009], [-77.910401, 38.501012], [-77.909308, 38.501222], [-77.90816, 38.501425], [-77.906956, 38.501647], [-77.902649, 38.502433], [-77.901836, 38.502578], [-77.901383, 38.502661], [-77.899056, 38.503088], [-77.897887, 38.503302], [-77.896932, 38.503454], [-77.896481, 38.503514], [-77.896026, 38.50356], [-77.89557, 38.503592], [-77.895091, 38.503613], [-77.894605, 38.503621], [-77.894338, 38.503619], [-77.894023, 38.503612], [-77.893539, 38.503589], [-77.893152, 38.50356], [-77.891645, 38.503392], [-77.891145, 38.503351], [-77.890705, 38.503331], [-77.890264, 38.503325], [-77.89, 38.503328], [-77.889421, 38.503346], [-77.888918, 38.503375], [-77.888578, 38.503406], [-77.888318, 38.503429], [-77.887823, 38.50349], [-77.887334, 38.503566], [-77.886849, 38.503655], [-77.886369, 38.503759], [-77.885701, 38.503929], [-77.88504, 38.504114], [-77.883872, 38.504451], [-77.882026, 38.504972], [-77.880726, 38.50535], [-77.879756, 38.505628], [-77.879416, 38.505726], [-77.878734, 38.505916], [-77.87665, 38.506514], [-77.873295, 38.507467], [-77.870872, 38.508164], [-77.867574, 38.509112], [-77.86643, 38.509426], [-77.865139, 38.509804], [-77.864878, 38.509875], [-77.864614, 38.509946], [-77.864004, 38.510124], [-77.863963, 38.510136], [-77.863243, 38.510359], [-77.862776, 38.510515], [-77.862313, 38.51068], [-77.86153, 38.510992], [-77.86091, 38.511252], [-77.860341, 38.511504], [-77.860101, 38.511597], [-77.859873, 38.511706], [-77.859049, 38.512033], [-77.858596, 38.512199], [-77.85801, 38.512393], [-77.85641, 38.512859], [-77.85546, 38.513131], [-77.853636, 38.513652], [-77.852939, 38.513842], [-77.85189, 38.514117], [-77.851773, 38.514147], [-77.851155, 38.514282], [-77.850783, 38.514355], [-77.850158, 38.514468], [-77.849529, 38.514566], [-77.848611, 38.514673], [-77.847601, 38.514814], [-77.847219, 38.514874], [-77.846744, 38.514961], [-77.846275, 38.515063], [-77.845622, 38.515227], [-77.843493, 38.515828], [-77.840926, 38.516554], [-77.838953, 38.517123], [-77.838611, 38.51724], [-77.838276, 38.51737], [-77.838087, 38.517452], [-77.837878, 38.517559], [-77.837641, 38.517698], [-77.837371, 38.517879], [-77.837159, 38.518042], [-77.836631, 38.518508], [-77.833939, 38.52107], [-77.833536, 38.521444], [-77.832859, 38.52207], [-77.832618, 38.52227], [-77.832363, 38.52246], [-77.832151, 38.522605], [-77.831761, 38.52284], [-77.831645, 38.522905], [-77.831341, 38.523059], [-77.831027, 38.523201], [-77.830705, 38.52333], [-77.830375, 38.523446], [-77.82725, 38.524408], [-77.825282, 38.525005], [-77.824825, 38.525153], [-77.824766, 38.525172], [-77.82414, 38.525403], [-77.823904, 38.525501], [-77.823444, 38.525707], [-77.823161, 38.525842], [-77.822816, 38.526023], [-77.822483, 38.526216], [-77.82216, 38.526429], [-77.821905, 38.526618], [-77.821824, 38.526681], [-77.821661, 38.526816], [-77.82143, 38.527024], [-77.821026, 38.527454], [-77.820758, 38.527783], [-77.820516, 38.528112], [-77.820197, 38.52856], [-77.819895, 38.529029], [-77.81945, 38.529798], [-77.818541, 38.531386], [-77.817476, 38.533249], [-77.817174, 38.533749], [-77.815779, 38.536111], [-77.812836, 38.541042], [-77.812145, 38.542152], [-77.811443, 38.543345], [-77.81107, 38.543916], [-77.809169, 38.54677], [-77.807061, 38.549912], [-77.805801, 38.55177], [-77.803189, 38.555743], [-77.802664, 38.55653], [-77.802442, 38.556869], [-77.802253, 38.557175], [-77.802079, 38.557492], [-77.801838, 38.557971], [-77.801782, 38.55809], [-77.801657, 38.55838], [-77.801522, 38.558722], [-77.801429, 38.558994], [-77.801302, 38.559432], [-77.801209, 38.559822], [-77.801144, 38.560169], [-77.801065, 38.560727], [-77.801025, 38.56131], [-77.801027, 38.561813], [-77.801049, 38.562487], [-77.801069, 38.562893], [-77.801213, 38.565749], [-77.801305, 38.567636], [-77.80137, 38.568961], [-77.801541, 38.572402], [-77.801599, 38.573623], [-77.801669, 38.575224], [-77.801707, 38.575829], [-77.801772, 38.577117], [-77.801874, 38.579138], [-77.801902, 38.579759], [-77.801914, 38.579914], [-77.801945, 38.580642], [-77.801977, 38.581198], [-77.802036, 38.582417], [-77.802118, 38.584113], [-77.802126, 38.584391], [-77.802131, 38.584986], [-77.802118, 38.585525], [-77.802088, 38.586052], [-77.802017, 38.586791], [-77.801743, 38.589112], [-77.801725, 38.589268], [-77.801437, 38.591698], [-77.801342, 38.5925], [-77.801281, 38.593006], [-77.800994, 38.595455], [-77.800644, 38.598437], [-77.800492, 38.599704], [-77.800457, 38.599972], [-77.800268, 38.601612], [-77.800209, 38.602305], [-77.80017, 38.602992], [-77.800152, 38.603904], [-77.800152, 38.604035], [-77.800152, 38.604483], [-77.800172, 38.60559], [-77.800187, 38.606551], [-77.800205, 38.607644], [-77.80022, 38.608813], [-77.800237, 38.609384], [-77.800232, 38.610093], [-77.800248, 38.611162], [-77.80027, 38.611781], [-77.800276, 38.611972], [-77.800298, 38.612639], [-77.800312, 38.613039], [-77.800332, 38.613399], [-77.800397, 38.614527], [-77.800421, 38.615203], [-77.800432, 38.61575], [-77.800444, 38.616559], [-77.800478, 38.618723], [-77.8005, 38.619601], [-77.800525, 38.620811], [-77.800527, 38.620908], [-77.800548, 38.62192], [-77.80058, 38.623403], [-77.800594, 38.624213], [-77.800603, 38.625413], [-77.80062, 38.627386], [-77.800629, 38.627856], [-77.800651, 38.62934], [-77.800658, 38.629863], [-77.800688, 38.631295], [-77.800701, 38.63219], [-77.800708, 38.632656], [-77.800729, 38.632937], [-77.800749, 38.6331], [-77.800764, 38.633194], [-77.800824, 38.633493], [-77.8009, 38.63375], [-77.801033, 38.634132], [-77.801091, 38.634277], [-77.801339, 38.634852], [-77.801526, 38.635289], [-77.801703, 38.635692], [-77.801752, 38.635808], [-77.801965, 38.636295], [-77.802897, 38.638462], [-77.802996, 38.638693], [-77.803206, 38.639174], [-77.803351, 38.639505], [-77.803635, 38.640158], [-77.803774, 38.640485], [-77.80405, 38.641121], [-77.804137, 38.641325], [-77.804199, 38.641471], [-77.804367, 38.641868], [-77.804398, 38.641941], [-77.804535, 38.642359], [-77.804602, 38.642621], [-77.804642, 38.642832], [-77.804669, 38.643038], [-77.804677, 38.643118], [-77.804687, 38.643291], [-77.804696, 38.643722], [-77.804696, 38.644409], [-77.804677, 38.644766], [-77.804636, 38.645023], [-77.804576, 38.645279], [-77.804498, 38.645531], [-77.804445, 38.645671], [-77.804179, 38.646296], [-77.803976, 38.646795], [-77.803645, 38.647584], [-77.803607, 38.647672], [-77.803037, 38.649027], [-77.802582, 38.650099], [-77.802488, 38.65032], [-77.80226, 38.650816], [-77.802226, 38.650891], [-77.801705, 38.651973], [-77.801524, 38.652348], [-77.800517, 38.654435], [-77.800311, 38.654856], [-77.800109, 38.655223], [-77.799504, 38.656216], [-77.799258, 38.656629], [-77.799064, 38.656995], [-77.798952, 38.657238], [-77.798593, 38.658126], [-77.798524, 38.658287], [-77.798395, 38.658591], [-77.798266, 38.658901], [-77.798049, 38.659428], [-77.797829, 38.659963], [-77.79736, 38.661105], [-77.797075, 38.661795], [-77.796724, 38.662641], [-77.79625, 38.663783], [-77.796094, 38.664161], [-77.795637, 38.665271], [-77.79528, 38.666132], [-77.795248, 38.66621], [-77.794069, 38.669063], [-77.793674, 38.670024], [-77.793379, 38.670723], [-77.793244, 38.671036], [-77.793103, 38.671307], [-77.792943, 38.671571], [-77.792813, 38.671755], [-77.792641, 38.671968], [-77.792454, 38.672174], [-77.792251, 38.672371], [-77.791496, 38.673047], [-77.791134, 38.673372], [-77.790643, 38.673809], [-77.789269, 38.675032], [-77.788765, 38.675507], [-77.788692, 38.675576], [-77.788181, 38.676104], [-77.787807, 38.676549], [-77.787668, 38.676743], [-77.787501, 38.677031], [-77.78738, 38.677265], [-77.78733, 38.677383], [-77.787232, 38.677659], [-77.787165, 38.677911], [-77.787115, 38.678177], [-77.787085, 38.678445], [-77.787079, 38.678552], [-77.787095, 38.67913], [-77.787153, 38.679798], [-77.787259, 38.680924], [-77.787331, 38.681886], [-77.787363, 38.682419], [-77.787413, 38.683635], [-77.787401, 38.684203], [-77.787392, 38.684611], [-77.78735, 38.685019], [-77.787315, 38.685264], [-77.787231, 38.685728], [-77.787136, 38.686251], [-77.787114, 38.686332], [-77.78692, 38.686986], [-77.786696, 38.687619], [-77.786501, 38.688074], [-77.786277, 38.68855], [-77.786098, 38.688888], [-77.785944, 38.689154], [-77.785576, 38.689748], [-77.784818, 38.690938], [-77.784516, 38.691425], [-77.784271, 38.691807], [-77.783827, 38.692506], [-77.783401, 38.6932], [-77.783246, 38.693444], [-77.782384, 38.694802], [-77.782205, 38.695084], [-77.781593, 38.696059], [-77.781243, 38.69667], [-77.78108, 38.696994], [-77.780923, 38.697347], [-77.780812, 38.697637], [-77.780687, 38.698004], [-77.780614, 38.698231], [-77.780587, 38.698314], [-77.780392, 38.699181], [-77.780333, 38.699659], [-77.780298, 38.700094], [-77.780287, 38.700389], [-77.780289, 38.700757], [-77.780315, 38.701452], [-77.780365, 38.702797], [-77.780397, 38.703509], [-77.780462, 38.705131], [-77.780535, 38.706895], [-77.780587, 38.708144], [-77.780612, 38.708911], [-77.780675, 38.710324], [-77.780782, 38.713019], [-77.780806, 38.713639], [-77.780906, 38.716128], [-77.780923, 38.716557], [-77.780985, 38.71812], [-77.781094, 38.720811], [-77.781111, 38.721348], [-77.78117, 38.722771], [-77.781205, 38.723428], [-77.781207, 38.723933], [-77.781141, 38.724638], [-77.781062, 38.725028], [-77.780986, 38.725313], [-77.780873, 38.725651], [-77.780799, 38.725838], [-77.780763, 38.72593], [-77.780608, 38.726258], [-77.780457, 38.726537], [-77.78029, 38.726814], [-77.780067, 38.727137], [-77.779841, 38.727426], [-77.779593, 38.727712], [-77.779535, 38.727773], [-77.779432, 38.727882], [-77.779137, 38.728163], [-77.778889, 38.728379], [-77.778564, 38.728638], [-77.777988, 38.729064], [-77.777903, 38.729128], [-77.777813, 38.729195], [-77.777751, 38.72924], [-77.777544, 38.729395], [-77.776507, 38.73018], [-77.77534, 38.731069], [-77.775049, 38.73127], [-77.774364, 38.73177], [-77.774051, 38.732009], [-77.773303, 38.732554], [-77.772496, 38.733155], [-77.772444, 38.733192], [-77.771424, 38.733941], [-77.770375, 38.73472], [-77.769774, 38.735166], [-77.766501, 38.737595], [-77.766092, 38.7379], [-77.766013, 38.737957], [-77.764613, 38.738973], [-77.763699, 38.739647], [-77.760294, 38.742188], [-77.759475, 38.742805], [-77.758292, 38.743704], [-77.757242, 38.744507], [-77.756734, 38.744888], [-77.75607, 38.745394], [-77.755332, 38.74595], [-77.753869, 38.747051], [-77.753512, 38.747317], [-77.752239, 38.748266], [-77.751486, 38.748835], [-77.749304, 38.750477], [-77.747696, 38.751677], [-77.747175, 38.752069], [-77.746636, 38.752468], [-77.746089, 38.752858], [-77.745719, 38.753113], [-77.745109, 38.753534], [-77.744529, 38.753946], [-77.744441, 38.754016], [-77.743143, 38.755039], [-77.742369, 38.755648], [-77.741019, 38.756723], [-77.740302, 38.757289], [-77.74012, 38.757439], [-77.739869, 38.757633], [-77.739452, 38.757933], [-77.738896, 38.758325], [-77.738458, 38.758616], [-77.737994, 38.758912], [-77.737675, 38.759109], [-77.736928, 38.759546], [-77.736529, 38.759764], [-77.73598, 38.760062], [-77.735512, 38.760302], [-77.734641, 38.760749], [-77.731871, 38.762168], [-77.730354, 38.762946], [-77.726563, 38.764904], [-77.726297, 38.765042], [-77.725494, 38.765462], [-77.724993, 38.765717], [-77.724283, 38.76606], [-77.724155, 38.766114], [-77.723683, 38.766274], [-77.723631, 38.766287], [-77.723461, 38.76633], [-77.723208, 38.766384], [-77.722948, 38.766425], [-77.722732, 38.766449], [-77.722439, 38.766466], [-77.722204, 38.76647], [-77.721761, 38.76645], [-77.721338, 38.766416], [-77.720827, 38.766373], [-77.71958, 38.766268], [-77.718945, 38.766226], [-77.71829, 38.766214], [-77.717886, 38.766231], [-77.717644, 38.766248], [-77.717238, 38.766296], [-77.716986, 38.766333], [-77.716478, 38.766426], [-77.715933, 38.766539], [-77.71313, 38.767126], [-77.71253, 38.76725], [-77.711446, 38.767475], [-77.711213, 38.767521], [-77.709832, 38.76781], [-77.709246, 38.767933], [-77.708584, 38.768078], [-77.708134, 38.768177], [-77.707984, 38.768211], [-77.707651, 38.768287], [-77.707208, 38.768389], [-77.707037, 38.768429], [-77.706966, 38.768445], [-77.706604, 38.768529], [-77.705724, 38.768733], [-77.704884, 38.768928], [-77.704008, 38.769125], [-77.703413, 38.769266], [-77.703044, 38.769359], [-77.702667, 38.769454], [-77.702289, 38.769565], [-77.701922, 38.769687], [-77.701705, 38.769766], [-77.701294, 38.769925], [-77.700381, 38.770277], [-77.698624, 38.770957], [-77.69792, 38.771222], [-77.696779, 38.771656], [-77.696286, 38.771839], [-77.694688, 38.772451], [-77.693388, 38.772942], [-77.69338, 38.772945], [-77.69299, 38.773092], [-77.691828, 38.773541], [-77.689985, 38.774273], [-77.689184, 38.774593], [-77.687947, 38.775099], [-77.68652, 38.775696], [-77.686093, 38.775875], [-77.685013, 38.776323], [-77.684548, 38.776508], [-77.683617, 38.77688], [-77.682281, 38.77742], [-77.681906, 38.77757], [-77.680152, 38.778273], [-77.680071, 38.778309], [-77.679964, 38.778348], [-77.67944, 38.778559], [-77.679135, 38.778682], [-77.679008, 38.778733], [-77.678765, 38.778831], [-77.678322, 38.779011], [-77.677302, 38.779417], [-77.677036, 38.779514], [-77.676871, 38.779569], [-77.676375, 38.779711], [-77.675903, 38.779834], [-77.675739, 38.779874], [-77.675282, 38.779966], [-77.675165, 38.77999], [-77.673681, 38.780291], [-77.67245, 38.780538], [-77.671784, 38.780666], [-77.671623, 38.780699], [-77.671392, 38.780752], [-77.670977, 38.780857], [-77.67067, 38.780949], [-77.669909, 38.781181], [-77.669755, 38.781229], [-77.668691, 38.781557], [-77.668105, 38.781729], [-77.66717, 38.781984], [-77.665556, 38.7824], [-77.665397, 38.782443], [-77.66509, 38.782528], [-77.663117, 38.783041], [-77.662729, 38.783142], [-77.658982, 38.784122], [-77.658234, 38.784318], [-77.657487, 38.784515], [-77.656903, 38.784668], [-77.656444, 38.784785], [-77.655772, 38.784954], [-77.655488, 38.785028], [-77.654149, 38.78538], [-77.653073, 38.785665], [-77.652817, 38.785732], [-77.652723, 38.785757], [-77.652335, 38.78586], [-77.650432, 38.786358], [-77.650292, 38.786394], [-77.648546, 38.786845], [-77.648132, 38.786953], [-77.6471, 38.787217], [-77.646912, 38.787266], [-77.646792, 38.787296], [-77.646475, 38.787378], [-77.643862, 38.788066], [-77.643514, 38.788151], [-77.642956, 38.788288], [-77.641845, 38.788545], [-77.641256, 38.788678], [-77.640668, 38.788812], [-77.637878, 38.789456], [-77.637724, 38.789491], [-77.635026, 38.790112], [-77.633026, 38.790572], [-77.631672, 38.790883], [-77.630391, 38.791179], [-77.630168, 38.791231], [-77.629412, 38.791414], [-77.629006, 38.791523], [-77.628982, 38.791529], [-77.628275, 38.791722], [-77.626219, 38.792284], [-77.625465, 38.792483], [-77.624741, 38.792675], [-77.624567, 38.792721], [-77.624468, 38.792748], [-77.624067, 38.792856], [-77.622821, 38.793191], [-77.622323, 38.793326], [-77.622182, 38.793359], [-77.62157, 38.793529], [-77.621412, 38.793572], [-77.620477, 38.793825], [-77.620443, 38.793835], [-77.619193, 38.794171], [-77.619018, 38.794213], [-77.617763, 38.794556], [-77.617092, 38.79473], [-77.616747, 38.794832], [-77.614017, 38.7956], [-77.613309, 38.7958], [-77.613097, 38.795859], [-77.611965, 38.796178], [-77.611011, 38.796432], [-77.609519, 38.79683], [-77.609066, 38.796955], [-77.60887, 38.79701], [-77.608124, 38.797223], [-77.607861, 38.79729], [-77.60659, 38.797608], [-77.604759, 38.798106], [-77.603341, 38.798433], [-77.602615, 38.798623], [-77.60217, 38.798681], [-77.60178, 38.798726], [-77.60159, 38.798739], [-77.601338, 38.79876], [-77.601043, 38.798748], [-77.600761, 38.798726], [-77.600475, 38.798685], [-77.600088, 38.798626], [-77.598701, 38.798329], [-77.598447, 38.798288], [-77.598168, 38.798263], [-77.597945, 38.798266], [-77.597733, 38.798267], [-77.597515, 38.798295], [-77.597295, 38.798329], [-77.59709, 38.79838], [-77.596838, 38.798472], [-77.596056, 38.79873], [-77.595792, 38.798802], [-77.595557, 38.798839], [-77.595321, 38.798872], [-77.595123, 38.798893], [-77.594903, 38.798906], [-77.594606, 38.798902], [-77.592349, 38.798571], [-77.589853, 38.798246], [-77.587564, 38.797961], [-77.584659, 38.797708], [-77.583518, 38.797592], [-77.582596, 38.797507], [-77.581727, 38.797465], [-77.580645, 38.797422], [-77.579853, 38.797408], [-77.579381, 38.797391], [-77.579328, 38.797391], [-77.578346, 38.797391], [-77.576989, 38.797404], [-77.576007, 38.797446], [-77.575373, 38.797504], [-77.571144, 38.797797], [-77.569287, 38.79792], [-77.56555, 38.798187], [-77.561659, 38.798447], [-77.555891, 38.7988], [-77.553755, 38.798951], [-77.550887, 38.799152], [-77.550295, 38.799193], [-77.548407, 38.799331], [-77.54595, 38.799494], [-77.541063, 38.799812], [-77.539341, 38.799946], [-77.536546, 38.800151], [-77.532281, 38.800448], [-77.529135, 38.800667], [-77.525861, 38.800895], [-77.523173, 38.801079], [-77.520134, 38.801324], [-77.519426, 38.801374], [-77.518588, 38.801436], [-77.514662, 38.801698], [-77.51275, 38.801833], [-77.512257, 38.801883], [-77.51176, 38.801949], [-77.511242, 38.802033], [-77.510728, 38.802133], [-77.510237, 38.802245], [-77.509757, 38.802371], [-77.509283, 38.802511], [-77.508762, 38.802686], [-77.508249, 38.802874], [-77.503238, 38.804849], [-77.501867, 38.805383], [-77.49854, 38.806696], [-77.492854, 38.808929], [-77.492586, 38.809039], [-77.491408, 38.809499], [-77.490728, 38.809768], [-77.490387, 38.809903], [-77.489846, 38.810125], [-77.48976, 38.810159], [-77.489588, 38.810228], [-77.488128, 38.810814], [-77.487975, 38.810876], [-77.487938, 38.810891], [-77.487614, 38.811027], [-77.486889, 38.811312], [-77.485515, 38.811841], [-77.481021, 38.813606], [-77.480031, 38.813987], [-77.479528, 38.81418], [-77.478278, 38.814671], [-77.477784, 38.814859], [-77.476696, 38.815283], [-77.476308, 38.815444], [-77.470849, 38.817587], [-77.469997, 38.817934], [-77.469107, 38.818314], [-77.468263, 38.818692], [-77.467788, 38.818912], [-77.466824, 38.819384], [-77.466481, 38.819559], [-77.465978, 38.819814], [-77.465888, 38.819862], [-77.465082, 38.820299], [-77.464689, 38.820516], [-77.463916, 38.820976], [-77.463568, 38.821184], [-77.462817, 38.82165], [-77.462169, 38.822067], [-77.461524, 38.822499], [-77.460742, 38.823046], [-77.459971, 38.823615], [-77.459453, 38.824009], [-77.458829, 38.824505], [-77.458041, 38.825157], [-77.457989, 38.825199], [-77.457719, 38.825436], [-77.457456, 38.825667], [-77.457174, 38.825914], [-77.456485, 38.82655], [-77.455925, 38.827089], [-77.455609, 38.827408], [-77.455354, 38.827664], [-77.455286, 38.827736], [-77.454763, 38.828288], [-77.453687, 38.829492], [-77.45117, 38.83231], [-77.450091, 38.833546], [-77.449603, 38.834072], [-77.4484, 38.835411], [-77.448317, 38.835496], [-77.447073, 38.836883], [-77.446568, 38.837456], [-77.444983, 38.839239], [-77.444962, 38.839261], [-77.44448, 38.839771], [-77.443925, 38.840374], [-77.443121, 38.841151], [-77.442523, 38.841683], [-77.442048, 38.842083], [-77.441563, 38.842472], [-77.44121, 38.842729], [-77.440835, 38.842989], [-77.440353, 38.843301], [-77.439357, 38.843895], [-77.438808, 38.844189], [-77.438412, 38.844388], [-77.438154, 38.844513], [-77.437585, 38.844773], [-77.43695, 38.845042], [-77.436125, 38.845358], [-77.435386, 38.845611], [-77.434841, 38.845778], [-77.434461, 38.845886], [-77.434065, 38.845989], [-77.433588, 38.846102], [-77.432595, 38.846311], [-77.431976, 38.846424], [-77.431894, 38.846439], [-77.43166, 38.846482], [-77.43013, 38.84677], [-77.428638, 38.847052], [-77.427672, 38.847201], [-77.426895, 38.847336], [-77.426613, 38.847387], [-77.423954, 38.847868], [-77.42318, 38.84802], [-77.422578, 38.848129], [-77.421734, 38.848284], [-77.419777, 38.84865], [-77.418032, 38.848977], [-77.416532, 38.849246], [-77.415198, 38.849482], [-77.414151, 38.849672], [-77.413692, 38.849756], [-77.413004, 38.849886], [-77.41025, 38.850388], [-77.408348, 38.850725], [-77.406003, 38.851167], [-77.404553, 38.851419], [-77.403103, 38.851676], [-77.402433, 38.851803], [-77.401513, 38.851954], [-77.399882, 38.852249], [-77.399048, 38.852319], [-77.398718, 38.852375], [-77.397996, 38.852492], [-77.397318, 38.852624], [-77.396752, 38.852714], [-77.396348, 38.852749], [-77.395658, 38.852767], [-77.395009, 38.8528], [-77.394695, 38.852837], [-77.39433, 38.852891], [-77.393802, 38.852984], [-77.393126, 38.853114], [-77.392725, 38.85318], [-77.392095, 38.853297], [-77.391904, 38.853339], [-77.391134, 38.853478], [-77.389836, 38.853723], [-77.389215, 38.853845], [-77.38892, 38.853895], [-77.388716, 38.853941], [-77.388024, 38.854062], [-77.387165, 38.854196], [-77.386771, 38.854162], [-77.386529, 38.854111], [-77.386343, 38.854055], [-77.386187, 38.853987], [-77.386127, 38.853954], [-77.386079, 38.85392], [-77.385986, 38.853839], [-77.385938, 38.853785], [-77.385904, 38.853738], [-77.385849, 38.853638], [-77.385829, 38.853585], [-77.385812, 38.853521], [-77.3858, 38.853402], [-77.385805, 38.853336], [-77.385817, 38.853271], [-77.38586, 38.853155], [-77.385888, 38.853105], [-77.385929, 38.853047], [-77.38601, 38.852959], [-77.386068, 38.85291], [-77.386119, 38.852873], [-77.386233, 38.85281], [-77.386292, 38.852784], [-77.386367, 38.852757], [-77.386444, 38.852736], [-77.386551, 38.852715], [-77.386695, 38.852705], [-77.38684, 38.852711], [-77.386899, 38.85272], [-77.386985, 38.852739], [-77.387131, 38.852784], [-77.387234, 38.852827], [-77.387327, 38.852872], [-77.387501, 38.852977], [-77.387596, 38.853046], [-77.387689, 38.853125], [-77.387869, 38.853301], [-77.388005, 38.8535], [-77.388211, 38.853861], [-77.388248, 38.853958], [-77.38834, 38.854202], [-77.388434, 38.854509], [-77.388512, 38.85483], [-77.388556, 38.855045], [-77.388563, 38.855077], [-77.388615, 38.855398], [-77.38864, 38.855726], [-77.388657, 38.85606], [-77.388632, 38.856494], [-77.388606, 38.856728], [-77.388546, 38.857062], [-77.388494, 38.857283], [-77.388383, 38.85759], [-77.388245, 38.857898], [-77.387962, 38.858392], [-77.387722, 38.858713], [-77.387587, 38.858842], [-77.387448, 38.858992], [-77.38738, 38.859049], [-77.387049, 38.859315], [-77.387001, 38.859355], [-77.386572, 38.859616], [-77.386057, 38.859876], [-77.385696, 38.860037], [-77.385104, 38.860297], [-77.384246, 38.860678], [-77.383311, 38.861091], [-77.382484, 38.861549], [-77.381927, 38.861964], [-77.381649, 38.862271], [-77.381472, 38.862656], [-77.38114, 38.86254], [-77.380676, 38.862336], [-77.380373, 38.862167], [-77.380144, 38.862016], [-77.379932, 38.861857], [-77.379724, 38.861669], [-77.379541, 38.861495], [-77.379299, 38.861256], [-77.379174, 38.86114], [-77.378963, 38.86097], [-77.378779, 38.860822], [-77.378622, 38.860715], [-77.378375, 38.860584], [-77.37825, 38.860526], [-77.377901, 38.860354], [-77.377674, 38.860258], [-77.377503, 38.860194], [-77.376982, 38.860031], [-77.376724, 38.859968], [-77.376465, 38.859908], [-77.376139, 38.859843], [-77.375957, 38.859809], [-77.375449, 38.859704], [-77.37477, 38.859591], [-77.373992, 38.859482], [-77.373385, 38.859411], [-77.373319, 38.859405], [-77.371684, 38.859251], [-77.371331, 38.859226], [-77.37112, 38.859211], [-77.371099, 38.85942], [-77.371098, 38.859619], [-77.371033, 38.860102], [-77.370993, 38.860407], [-77.370953, 38.86073], [-77.370894, 38.86095], [-77.370816, 38.861165], [-77.370757, 38.861296], [-77.370665, 38.861443], [-77.370575, 38.861587], [-77.370384, 38.861875], [-77.370116, 38.862301], [-77.369869, 38.862675], [-77.369695, 38.862937], [-77.369553, 38.863149], [-77.369282, 38.863562], [-77.369075, 38.863878], [-77.369003, 38.863978], [-77.368943, 38.864053], [-77.368872, 38.864143], [-77.368754, 38.864281], [-77.368648, 38.864383], [-77.368548, 38.86448], [-77.368413, 38.864611], [-77.368244, 38.864751], [-77.368139, 38.86483], [-77.368096, 38.864859], [-77.367962, 38.864949], [-77.367753, 38.865087], [-77.36752, 38.865221], [-77.36716, 38.865425], [-77.366916, 38.865565], [-77.366749, 38.865664], [-77.366693, 38.865696], [-77.366603, 38.865757], [-77.36621, 38.865941], [-77.365964, 38.866096], [-77.365677, 38.866275], [-77.365412, 38.86648], [-77.365205, 38.866666], [-77.365092, 38.866802], [-77.364926, 38.867027], [-77.364819, 38.867215], [-77.364795, 38.867271], [-77.364687, 38.867526], [-77.364631, 38.867731], [-77.364602, 38.867885], [-77.364585, 38.868103], [-77.364599, 38.86833], [-77.364602, 38.868416], [-77.364653, 38.868646], [-77.364749, 38.868903], [-77.364915, 38.869232], [-77.365031, 38.869489], [-77.36519, 38.869811], [-77.365353, 38.870145], [-77.365541, 38.870577], [-77.365608, 38.870714], [-77.36564, 38.87078], [-77.365767, 38.871048], [-77.365858, 38.871232], [-77.365914, 38.871335], [-77.366032, 38.871546], [-77.366196, 38.871805], [-77.366355, 38.872046], [-77.366507, 38.872259], [-77.366678, 38.872501], [-77.366856, 38.872754], [-77.366963, 38.872925], [-77.367022, 38.873039], [-77.367081, 38.873163], [-77.367145, 38.873344], [-77.367182, 38.87346], [-77.367204, 38.873534], [-77.367233, 38.873695], [-77.36726, 38.873889], [-77.367273, 38.874003], [-77.367165, 38.874012], [-77.366994, 38.874012], [-77.366779, 38.873999], [-77.366666, 38.873986], [-77.366501, 38.873968], [-77.366313, 38.873934], [-77.366155, 38.873897], [-77.365932, 38.873832], [-77.36562, 38.873728], [-77.365375, 38.873647], [-77.36552, 38.873752], [-77.365645, 38.873824], [-77.365759, 38.873875] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-78.34899902343749, 38.108627664321276] } } ] } ================================================ FILE: packages/turf-nearest-point-on-line/test/in/route2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-113.928988, 50.814121], [-113.928993, 50.813067], [-113.928994, 50.811043], [-113.928995, 50.807418], [-113.929029, 50.804989], [-113.951995, 50.804953], [-113.956813, 50.804931], [-113.957629, 50.804917], [-113.958021, 50.804876], [-113.958575, 50.804779], [-113.959011, 50.804687], [-113.959367, 50.804572], [-113.959858, 50.804414], [-113.960433, 50.804102], [-113.960932, 50.803769], [-113.961563, 50.803306], [-113.961754, 50.803166], [-113.962486, 50.802753], [-113.9641, 50.801549], [-113.966048, 50.800154], [-113.967597, 50.799082], [-113.968657, 50.798289], [-113.969382, 50.79779], [-113.969303, 50.797653], [-113.968833, 50.797177], [-113.968399, 50.796832], [-113.96652, 50.796071], [-113.965325, 50.795579], [-113.964608, 50.795229], [-113.963373, 50.794321], [-113.962094, 50.793355], [-113.956995, 50.789049], [-113.951125, 50.784098], [-113.948573, 50.78194], [-113.941011, 50.775626], [-113.933724, 50.769538], [-113.914584, 50.753577], [-113.906521, 50.746803], [-113.896774, 50.738614], [-113.886275, 50.729779], [-113.88594, 50.729474], [-113.885307, 50.728898], [-113.884903, 50.728477], [-113.884523, 50.728028], [-113.884201, 50.727599], [-113.883986, 50.727298], [-113.883696, 50.726863], [-113.883482, 50.72648], [-113.883314, 50.726156], [-113.883153, 50.725767], [-113.883094, 50.725646], [-113.883031, 50.725465], [-113.882906, 50.725155], [-113.882792, 50.724718], [-113.882641, 50.7241], [-113.882584, 50.723735], [-113.88255, 50.723367], [-113.882523, 50.72258], [-113.882495, 50.717709], [-113.882486, 50.713302], [-113.882476, 50.712125], [-113.882468, 50.702531], [-113.882456, 50.699815], [-113.882434, 50.698229], [-113.882445, 50.693791], [-113.882419, 50.692602], [-113.882412, 50.692077], [-113.882405, 50.691705], [-113.882365, 50.691331], [-113.882289, 50.690878], [-113.882163, 50.690282], [-113.882074, 50.689985], [-113.881908, 50.689517], [-113.881705, 50.689095], [-113.881622, 50.688959], [-113.881501, 50.688721], [-113.881281, 50.688347], [-113.88097, 50.687826], [-113.880715, 50.687491], [-113.880385, 50.687085], [-113.878859, 50.685206], [-113.877456, 50.68348], [-113.875929, 50.68157], [-113.873357, 50.67843], [-113.871364, 50.675999], [-113.869142, 50.673289], [-113.868358, 50.672328], [-113.868037, 50.671943], [-113.867467, 50.671232], [-113.866987, 50.670734], [-113.866668, 50.670424], [-113.866296, 50.670141], [-113.865816, 50.669814], [-113.865451, 50.6696], [-113.8651, 50.669419], [-113.864667, 50.669203], [-113.864079, 50.668945], [-113.863436, 50.668716], [-113.862804, 50.66849], [-113.861739, 50.668114], [-113.853421, 50.665144], [-113.842891, 50.661554], [-113.842171, 50.661197], [-113.841049, 50.660571], [-113.840156, 50.659997], [-113.839716, 50.65961], [-113.839157, 50.659132], [-113.838847, 50.658805], [-113.838358, 50.658284], [-113.837938, 50.657723], [-113.837609, 50.657111], [-113.837268, 50.656259], [-113.83703, 50.655665], [-113.836937, 50.654919], [-113.836909, 50.654144], [-113.836859, 50.650724], [-113.836826, 50.647581], [-113.836828, 50.646677], [-113.836945, 50.631237], [-113.836945, 50.630338], [-113.83681, 50.620833], [-113.836809, 50.615002], [-113.836748, 50.614363], [-113.836695, 50.613902], [-113.836544, 50.613327], [-113.836395, 50.612865], [-113.836165, 50.612347], [-113.835974, 50.611908], [-113.835688, 50.611368], [-113.834199, 50.609116], [-113.831975, 50.605815], [-113.830597, 50.603738], [-113.830194, 50.603006], [-113.829862, 50.60236], [-113.829623, 50.601865], [-113.829361, 50.601178], [-113.829199, 50.600699], [-113.829001, 50.600003], [-113.828688, 50.598264], [-113.828653, 50.597525], [-113.828653, 50.596741], [-113.828659, 50.589493], [-113.828615, 50.584393], [-113.82855, 50.57625], [-113.82857, 50.572186], [-113.82858, 50.57189], [-113.828436, 50.567929], [-113.828262, 50.565198], [-113.82828, 50.550181], [-113.82829, 50.541809], [-113.828291, 50.541417], [-113.828359, 50.484565], [-113.828388, 50.473188], [-113.82839, 50.426319], [-113.828391, 50.410937], [-113.828495, 50.409031], [-113.828495, 50.408255], [-113.828326, 50.404708], [-113.827868, 50.402523], [-113.827189, 50.400367], [-113.82573, 50.397464], [-113.824909, 50.396393], [-113.823811, 50.394869], [-113.82128, 50.391895], [-113.801481, 50.376398], [-113.797907, 50.371872], [-113.796297, 50.369858], [-113.795351, 50.368139], [-113.790726, 50.359724], [-113.789384, 50.358382], [-113.78784, 50.357509], [-113.782077, 50.355219], [-113.781868, 50.355163], [-113.780696, 50.354643], [-113.779832, 50.354058], [-113.779376, 50.353709], [-113.779034, 50.353447], [-113.777779, 50.352208], [-113.776476, 50.350971], [-113.775669, 50.350156], [-113.774903, 50.349363], [-113.774528, 50.349008], [-113.774139, 50.348641], [-113.773752, 50.348267], [-113.773367, 50.347894], [-113.772991, 50.347521], [-113.77261, 50.347144], [-113.77224, 50.346771], [-113.771866, 50.346393], [-113.771491, 50.346021], [-113.771101, 50.345634], [-113.770724, 50.345257], [-113.770334, 50.344868], [-113.769256, 50.343852], [-113.767134, 50.341669], [-113.764647, 50.339182], [-113.764438, 50.338973], [-113.761597, 50.336333], [-113.758593, 50.33458], [-113.755546, 50.333429], [-113.751856, 50.33269], [-113.745118, 50.331594], [-113.742286, 50.330717], [-113.739453, 50.329347], [-113.731213, 50.32247], [-113.723532, 50.315976], [-113.722158, 50.313619], [-113.718768, 50.300682], [-113.714948, 50.295611], [-113.70452, 50.282916], [-113.688985, 50.273536], [-113.671647, 50.26314], [-113.665976, 50.259608], [-113.661862, 50.256884], [-113.66006, 50.254964], [-113.659379, 50.253877], [-113.658858, 50.252741], [-113.658676, 50.251733], [-113.656669, 50.241627], [-113.656154, 50.237592], [-113.655983, 50.234435], [-113.656026, 50.226446], [-113.656001, 50.222848], [-113.655983, 50.212634], [-113.655983, 50.198956], [-113.656026, 50.187774], [-113.655725, 50.180189], [-113.654781, 50.177056], [-113.650834, 50.16488], [-113.648988, 50.159931], [-113.648171, 50.158673], [-113.647041, 50.157055], [-113.642675, 50.151639], [-113.639814, 50.147556], [-113.634175, 50.135735], [-113.632251, 50.131741], [-113.620363, 50.106626], [-113.619376, 50.104527], [-113.61384, 50.092744], [-113.608561, 50.081675], [-113.606581, 50.077494], [-113.603669, 50.071347], [-113.596202, 50.055589], [-113.589593, 50.041645], [-113.585973, 50.034075], [-113.583284, 50.028469], [-113.578879, 50.019214], [-113.577072, 50.015416], [-113.576933, 50.015123], [-113.575461, 50.01195], [-113.56968, 49.999485], [-113.565276, 49.990109], [-113.562856, 49.984972], [-113.558388, 49.975529], [-113.556763, 49.972084], [-113.551497, 49.960982], [-113.550282, 49.958226], [-113.543115, 49.943177], [-113.537579, 49.93141], [-113.531657, 49.91895], [-113.528868, 49.913112], [-113.52852, 49.912237], [-113.528209, 49.911247], [-113.528013, 49.910313], [-113.527878, 49.909552], [-113.527877, 49.908805], [-113.528009, 49.904496], [-113.527999, 49.902765], [-113.527923, 49.890232], [-113.527923, 49.878148], [-113.527237, 49.875493], [-113.526537, 49.873052], [-113.52449, 49.865701], [-113.524447, 49.856267], [-113.52449, 49.841269], [-113.524447, 49.826764], [-113.52437, 49.815239], [-113.524361, 49.813862], [-113.524357, 49.801088], [-113.524347, 49.798401], [-113.524359, 49.795748], [-113.524362, 49.795059], [-113.524404, 49.785441], [-113.524345, 49.778892], [-113.524361, 49.771945], [-113.523632, 49.77031], [-113.522087, 49.769007], [-113.520199, 49.768287], [-113.514319, 49.76643], [-113.510629, 49.764933], [-113.50771, 49.763048], [-113.494964, 49.752901], [-113.479476, 49.742059], [-113.460012, 49.728293], [-113.455597, 49.725235], [-113.454572, 49.72442], [-113.45366, 49.723598], [-113.452976, 49.722915], [-113.45129, 49.720944], [-113.450256, 49.719782], [-113.447746, 49.716986], [-113.447289, 49.716417], [-113.443365, 49.71203], [-113.443141, 49.711789], [-113.442819, 49.711601], [-113.442606, 49.711479], [-113.44236, 49.711374], [-113.442103, 49.711279], [-113.441837, 49.711197], [-113.441458, 49.711124], [-113.441117, 49.711086], [-113.440779, 49.711071], [-113.440369, 49.71109], [-113.439978, 49.71114], [-113.439697, 49.711196], [-113.439397, 49.711273], [-113.439102, 49.71139], [-113.438862, 49.711498], [-113.438591, 49.711635], [-113.438391, 49.711766], [-113.438075, 49.712061], [-113.437745, 49.712489], [-113.43745, 49.712915], [-113.43721, 49.713212], [-113.436932, 49.713495], [-113.436629, 49.713751], [-113.436287, 49.713988], [-113.435908, 49.714204], [-113.435538, 49.714393], [-113.431814, 49.715951], [-113.423934, 49.718913], [-113.423148, 49.719208], [-113.419515, 49.720574], [-113.418553, 49.720884], [-113.417353, 49.721191], [-113.416622, 49.721378], [-113.415189, 49.721933], [-113.414887, 49.722092], [-113.414553, 49.722328], [-113.414204, 49.722586], [-113.413109, 49.723458], [-113.412313, 49.724209], [-113.412068, 49.724385], [-113.411871, 49.724508], [-113.41169, 49.724585], [-113.411456, 49.724665], [-113.411213, 49.724721], [-113.410939, 49.724758], [-113.410649, 49.724769], [-113.408706, 49.724761], [-113.405913, 49.724764], [-113.403119, 49.724754], [-113.400316, 49.724758], [-113.397541, 49.724759], [-113.396042, 49.724769], [-113.395455, 49.724758], [-113.395172, 49.724734], [-113.394938, 49.724709], [-113.394729, 49.724678], [-113.394467, 49.724619], [-113.394209, 49.724544], [-113.393974, 49.724469], [-113.393696, 49.724366], [-113.393468, 49.724249], [-113.393241, 49.72412], [-113.393012, 49.723965], [-113.39289, 49.723864], [-113.391771, 49.722807], [-113.391196, 49.722209], [-113.390266, 49.721242], [-113.389586, 49.720567], [-113.388246, 49.71917], [-113.387068, 49.717968], [-113.386688, 49.717602], [-113.386617, 49.717518], [-113.386398, 49.717254], [-113.386209, 49.717057], [-113.385914, 49.716751], [-113.385697, 49.71658], [-113.385459, 49.716404], [-113.385223, 49.716267], [-113.384941, 49.716121], [-113.384654, 49.716013], [-113.384337, 49.715925], [-113.383953, 49.715848], [-113.383617, 49.715803], [-113.383303, 49.715777], [-113.382948, 49.715769], [-113.382593, 49.71579], [-113.382269, 49.715822], [-113.381923, 49.715886], [-113.381566, 49.715981], [-113.381244, 49.716092], [-113.380957, 49.716219], [-113.380551, 49.716436], [-113.380035, 49.71673], [-113.379484, 49.717081], [-113.378419, 49.71777], [-113.377851, 49.718172], [-113.376955, 49.718849], [-113.376472, 49.719244], [-113.375953, 49.719695], [-113.375418, 49.720164], [-113.374752, 49.720812], [-113.373389, 49.722261], [-113.372553, 49.723172], [-113.371753, 49.724069], [-113.371091, 49.724816], [-113.370703, 49.725251], [-113.370292, 49.725659], [-113.36989, 49.726068], [-113.369354, 49.726543], [-113.368728, 49.727064], [-113.368135, 49.727526], [-113.367567, 49.727939], [-113.366419, 49.728699], [-113.366091, 49.728877], [-113.365827, 49.729022], [-113.365501, 49.729201], [-113.362951, 49.730439], [-113.358468, 49.732139], [-113.3397, 49.739588], [-113.335475, 49.741364], [-113.327488, 49.744425], [-113.318052, 49.748192], [-113.313869, 49.749882], [-113.31224, 49.750619], [-113.310651, 49.75165], [-113.307682, 49.753879], [-113.302921, 49.757409], [-113.297078, 49.761832], [-113.293465, 49.764507], [-113.274088, 49.778989], [-113.273227, 49.779697], [-113.272213, 49.780484], [-113.270309, 49.781807], [-113.269287, 49.782542], [-113.268506, 49.783052], [-113.267549, 49.783577], [-113.266355, 49.784155], [-113.264867, 49.784696], [-113.26421, 49.78488], [-113.263279, 49.785126], [-113.262406, 49.785321], [-113.261535, 49.785468], [-113.260247, 49.785632], [-113.2584, 49.785752], [-113.253189, 49.785761], [-113.2503, 49.785759], [-113.246741, 49.785753], [-113.243803, 49.785748], [-113.24168, 49.785746], [-113.239441, 49.785743], [-113.235416, 49.785738], [-113.232546, 49.785734], [-113.230542, 49.78573], [-113.207916, 49.785665], [-113.188962, 49.785585], [-113.187421, 49.785394], [-113.185955, 49.785084], [-113.182069, 49.784248], [-113.178433, 49.783545], [-113.175537, 49.783555], [-113.172403, 49.784002], [-113.169876, 49.784514], [-113.165425, 49.785057], [-113.162661, 49.785308], [-113.158491, 49.785468], [-113.154009, 49.785249], [-113.150706, 49.7849], [-113.138727, 49.78387], [-113.137918, 49.7838], [-113.132484, 49.783537], [-113.127139, 49.783666], [-113.121522, 49.784134], [-113.116401, 49.784873], [-113.108878, 49.786479], [-113.10643, 49.787036], [-113.100519, 49.78837], [-113.099817, 49.78851], [-113.099069, 49.788664], [-113.098414, 49.788796], [-113.097678, 49.788933], [-113.096947, 49.789058], [-113.096124, 49.78919], [-113.095087, 49.789365], [-113.093946, 49.789519], [-113.092851, 49.789655], [-113.091995, 49.789773], [-113.091108, 49.78988], [-113.090105, 49.789981], [-113.089148, 49.790064], [-113.088464, 49.790125], [-113.087728, 49.790181], [-113.08695, 49.790229], [-113.08621, 49.790281], [-113.085391, 49.790327], [-113.084622, 49.790364], [-113.083774, 49.790396], [-113.082731, 49.790426], [-113.081849, 49.790441], [-113.080915, 49.790449], [-113.080041, 49.790455], [-113.079132, 49.790458], [-113.078156, 49.790437], [-113.077306, 49.790416], [-113.076308, 49.790386], [-113.075035, 49.79033], [-113.073984, 49.790268], [-113.073014, 49.790204], [-113.072411, 49.790162], [-113.071942, 49.790123], [-113.069874, 49.789921], [-113.06869, 49.789793], [-113.067583, 49.789667], [-113.066892, 49.789578], [-113.066126, 49.789472], [-113.064972, 49.789301], [-113.04876, 49.786854], [-113.048, 49.78674], [-113.047462, 49.78667], [-113.046933, 49.786601], [-113.046365, 49.786543], [-113.041994, 49.786136], [-113.038418, 49.786047], [-113.028911, 49.786062], [-113.013026, 49.786042], [-113.003977, 49.786038], [-113.002681, 49.785962], [-113.001644, 49.785864], [-113.00048, 49.785713], [-112.999756, 49.785611], [-112.9987, 49.785408], [-112.997454, 49.785132], [-112.995534, 49.784581], [-112.99125, 49.783007], [-112.98295, 49.779625], [-112.980557, 49.778522], [-112.979018, 49.777554], [-112.976341, 49.775651], [-112.973797, 49.773044], [-112.965769, 49.764644], [-112.960895, 49.75933], [-112.960092, 49.758465], [-112.959726, 49.75808], [-112.959447, 49.757828], [-112.959069, 49.757507], [-112.958709, 49.757166], [-112.958281, 49.756793], [-112.95762, 49.756294], [-112.956931, 49.755799], [-112.956159, 49.755282], [-112.955682, 49.754998], [-112.955151, 49.754703], [-112.952858, 49.753509], [-112.949354, 49.752075], [-112.94544, 49.749962], [-112.938188, 49.743931], [-112.931304, 49.738228], [-112.926731, 49.73422], [-112.925384, 49.732989], [-112.924479, 49.731925], [-112.923468, 49.730575], [-112.922298, 49.729055], [-112.921036, 49.7277], [-112.918917, 49.725859], [-112.918155, 49.725203], [-112.916619, 49.723846], [-112.915487, 49.723018], [-112.915163, 49.72283], [-112.914796, 49.722631], [-112.914432, 49.722464], [-112.914031, 49.722286], [-112.913669, 49.722145], [-112.913246, 49.722004], [-112.912907, 49.721891], [-112.912605, 49.721797], [-112.912248, 49.721697], [-112.911203, 49.721427], [-112.910101, 49.721135], [-112.906937, 49.720299], [-112.903215, 49.719342], [-112.900165, 49.718558], [-112.897476, 49.717852], [-112.895936, 49.717459], [-112.895282, 49.717281], [-112.894243, 49.71701], [-112.893141, 49.716728], [-112.892426, 49.716529], [-112.89165, 49.716338], [-112.891198, 49.71622], [-112.890633, 49.716083], [-112.889897, 49.715934], [-112.889174, 49.715796], [-112.888532, 49.715689], [-112.887541, 49.715558], [-112.88613, 49.71536], [-112.885501, 49.715271], [-112.884833, 49.715175], [-112.884308, 49.715088], [-112.883816, 49.71495], [-112.883277, 49.714832], [-112.882696, 49.714691], [-112.88207, 49.714542], [-112.881531, 49.714385], [-112.881025, 49.714222], [-112.880522, 49.714039], [-112.879986, 49.713834], [-112.879529, 49.71365], [-112.87903, 49.713431], [-112.878502, 49.713173], [-112.877609, 49.712649], [-112.875259, 49.711284], [-112.873228, 49.710141], [-112.872763, 49.709872], [-112.87224, 49.709593], [-112.871848, 49.709384], [-112.871432, 49.709188], [-112.871061, 49.709022], [-112.870716, 49.708873], [-112.870311, 49.708723], [-112.869954, 49.708592], [-112.869443, 49.708436], [-112.868983, 49.708311], [-112.868462, 49.708183], [-112.86782, 49.708055], [-112.867368, 49.707982], [-112.866939, 49.707916], [-112.86545, 49.707716], [-112.861762, 49.707191], [-112.86017, 49.706981], [-112.85809, 49.706677], [-112.85777, 49.706622], [-112.857467, 49.706553], [-112.857076, 49.706452], [-112.856698, 49.706338], [-112.854212, 49.705528], [-112.85381, 49.705386], [-112.853466, 49.70523], [-112.853137, 49.705049], [-112.852839, 49.704853], [-112.851852, 49.704221], [-112.851516, 49.704031], [-112.851207, 49.703872], [-112.850867, 49.70373], [-112.850433, 49.703565], [-112.84992, 49.703388], [-112.847903, 49.702792], [-112.845724, 49.702167], [-112.844077, 49.701628], [-112.8432, 49.701369], [-112.842649, 49.701218], [-112.842201, 49.701114], [-112.841728, 49.701025], [-112.840794, 49.700856], [-112.838125, 49.700426], [-112.834609, 49.699873], [-112.832064, 49.699465], [-112.828981, 49.698964], [-112.828552, 49.698904], [-112.827826, 49.698813], [-112.827096, 49.698728], [-112.826436, 49.698665], [-112.825387, 49.6986], [-112.824515, 49.698555], [-112.823879, 49.698527], [-112.822719, 49.698465], [-112.820041, 49.698338], [-112.818601, 49.69826], [-112.817659, 49.698214], [-112.817451, 49.698208], [-112.816791, 49.698174], [-112.81589, 49.698112], [-112.814861, 49.698029], [-112.814224, 49.697963], [-112.813253, 49.697849], [-112.813147, 49.697836], [-112.811952, 49.697672], [-112.811842, 49.697656], [-112.811502, 49.697615], [-112.811227, 49.697581], [-112.810773, 49.697561], [-112.810352, 49.69755], [-112.810002, 49.697537], [-112.809403, 49.697532], [-112.806575, 49.697613], [-112.805437, 49.69765], [-112.804522, 49.697685], [-112.80393, 49.697707], [-112.80238, 49.69777], [-112.802025, 49.697788], [-112.801625, 49.697812], [-112.800653, 49.697888], [-112.799723, 49.697967], [-112.79867, 49.698052], [-112.798046, 49.698084], [-112.797631, 49.698102], [-112.797077, 49.698117], [-112.796376, 49.698135], [-112.79554, 49.698135], [-112.794414, 49.698135], [-112.793544, 49.698131], [-112.788404, 49.698111], [-112.787759, 49.698108], [-112.787623, 49.698109], [-112.786794, 49.698114], [-112.785574, 49.698121], [-112.784545, 49.69817], [-112.784282, 49.698206], [-112.783264, 49.698348], [-112.782977, 49.69837], [-112.782674, 49.69837], [-112.782377, 49.69836], [-112.781976, 49.698324], [-112.781573, 49.698283], [-112.780374, 49.698174], [-112.779856, 49.698084], [-112.77969, 49.698039], [-112.779534, 49.697963], [-112.779416, 49.697879], [-112.779336, 49.697779], [-112.779293, 49.697678], [-112.779266, 49.697588], [-112.779277, 49.697432], [-112.779309, 49.697054], [-112.779557, 49.695985], [-112.779657, 49.695544], [-112.779736, 49.695225], [-112.779761, 49.695101], [-112.779809, 49.694922], [-112.779952, 49.69441], [-112.780019, 49.694125], [-112.780058, 49.69387], [-112.780085, 49.693604], [-112.78011, 49.693292], [-112.780165, 49.692652], [-112.780169, 49.692372], [-112.780165, 49.692154], [-112.780164, 49.692098], [-112.780144, 49.691862], [-112.780143, 49.691843], [-112.780133, 49.69176], [-112.780037, 49.691006], [-112.779822, 49.689657], [-112.77979, 49.689308], [-112.779748, 49.688889], [-112.779749, 49.688478], [-112.779739, 49.688031], [-112.779748, 49.687622], [-112.779769, 49.687159], [-112.779816, 49.686494], [-112.779896, 49.685531], [-112.779868, 49.68512], [-112.779875, 49.684881], [-112.779863, 49.684535], [-112.77986, 49.684358], [-112.779847, 49.684121], [-112.779816, 49.683702], [-112.779801, 49.683613], [-112.779746, 49.683344], [-112.779688, 49.682957], [-112.779596, 49.68252], [-112.779542, 49.68228], [-112.7794, 49.681732], [-112.779248, 49.681225], [-112.779016, 49.680478], [-112.778857, 49.679737], [-112.778724, 49.678803], [-112.778685, 49.678481], [-112.77867, 49.678161], [-112.778679, 49.677477], [-112.778716, 49.676815], [-112.77879, 49.676373], [-112.778793, 49.676281], [-112.778809, 49.67613], [-112.778826, 49.675962], [-112.779009, 49.67502], [-112.779283, 49.674077], [-112.779324, 49.67372], [-112.779398, 49.673084], [-112.779441, 49.672708], [-112.779445, 49.672624], [-112.779457, 49.6724], [-112.779474, 49.670433], [-112.779525, 49.669583], [-112.779531, 49.668796], [-112.779522, 49.66867], [-112.779234, 49.66867], [-112.778749, 49.66867], [-112.773523, 49.668658], [-112.769369, 49.668649], [-112.763756, 49.668637], [-112.7565, 49.668622], [-112.75294, 49.668604], [-112.752507, 49.668609], [-112.751647, 49.668588], [-112.750485, 49.668477], [-112.748828, 49.668137], [-112.747424, 49.667643], [-112.746405, 49.667117], [-112.745658, 49.666544], [-112.743059, 49.663524], [-112.742076, 49.662492], [-112.741004, 49.661674], [-112.73773, 49.659519], [-112.735465, 49.657989], [-112.733655, 49.656859], [-112.718533, 49.646941], [-112.708401, 49.640314], [-112.699223, 49.634317], [-112.697367, 49.633097], [-112.696977, 49.632838], [-112.688059, 49.626979], [-112.68302, 49.623675], [-112.676625, 49.619483], [-112.667074, 49.613228], [-112.658988, 49.607908], [-112.655248, 49.605484], [-112.650972, 49.603234], [-112.646487, 49.600778], [-112.644902, 49.599632], [-112.643248, 49.598383], [-112.641103, 49.596798], [-112.639355, 49.595616], [-112.637, 49.594133], [-112.627891, 49.588425], [-112.602707, 49.572537], [-112.600552, 49.571077], [-112.598617, 49.5692], [-112.59449, 49.564228], [-112.593913, 49.5636], [-112.593075, 49.562994], [-112.592311, 49.562392], [-112.591327, 49.561818], [-112.589132, 49.56091], [-112.585717, 49.559813], [-112.580643, 49.558189], [-112.579135, 49.557557], [-112.577853, 49.55687], [-112.576584, 49.555934], [-112.573576, 49.55323], [-112.570447, 49.550424], [-112.569232, 49.549564], [-112.567477, 49.548436], [-112.556735, 49.541871], [-112.550446, 49.538028], [-112.546175, 49.535345], [-112.543195, 49.53355], [-112.541943, 49.532867], [-112.522018, 49.522571], [-112.51966, 49.521328], [-112.515058, 49.518953], [-112.512595, 49.517628], [-112.51096, 49.516524], [-112.50948, 49.515214], [-112.508358, 49.513958], [-112.507396, 49.512646], [-112.504667, 49.506398], [-112.503772, 49.504449], [-112.502829, 49.502755], [-112.502134, 49.501789], [-112.500323, 49.499793], [-112.498242, 49.497945], [-112.491937, 49.492826], [-112.472122, 49.477074], [-112.46972, 49.475443], [-112.458697, 49.468584], [-112.452076, 49.464789], [-112.441426, 49.458313], [-112.440081, 49.457555], [-112.439154, 49.45711], [-112.437692, 49.456507], [-112.428185, 49.452715], [-112.42567, 49.451509], [-112.421872, 49.448943], [-112.416852, 49.445256], [-112.415374, 49.444112], [-112.413757, 49.443067], [-112.41199, 49.442277], [-112.408866, 49.441094], [-112.403355, 49.439005], [-112.400426, 49.437907], [-112.395624, 49.436024], [-112.393366, 49.43506], [-112.391141, 49.43401], [-112.389667, 49.433278], [-112.387242, 49.431857], [-112.380495, 49.427283], [-112.377371, 49.425166], [-112.370769, 49.420228], [-112.369213, 49.419103], [-112.368029, 49.418322], [-112.366868, 49.417688], [-112.365853, 49.417109], [-112.364196, 49.416279], [-112.358645, 49.413606], [-112.345069, 49.40697], [-112.313601, 49.391666], [-112.293379, 49.381796], [-112.280866, 49.375648], [-112.275641, 49.37312], [-112.27415, 49.372357], [-112.272971, 49.371647], [-112.272087, 49.371077], [-112.271197, 49.370405], [-112.270258, 49.369532], [-112.269242, 49.36847], [-112.263635, 49.361606], [-112.261762, 49.359287], [-112.252776, 49.348158], [-112.236226, 49.327356], [-112.231602, 49.321856], [-112.231504, 49.32174], [-112.22954, 49.319363], [-112.227247, 49.316403], [-112.224225, 49.312727], [-112.22224, 49.310555], [-112.216986, 49.304836], [-112.215307, 49.3031], [-112.213887, 49.301877], [-112.213028, 49.301145], [-112.204369, 49.294474], [-112.201434, 49.291851], [-112.200807, 49.291228], [-112.200423, 49.290767], [-112.200161, 49.290419], [-112.199859, 49.289985], [-112.199566, 49.2895], [-112.199306, 49.289012], [-112.199053, 49.288493], [-112.198839, 49.287999], [-112.198721, 49.287648], [-112.198561, 49.28716], [-112.198436, 49.286692], [-112.198364, 49.286224], [-112.198303, 49.285775], [-112.198271, 49.285347], [-112.198256, 49.282987], [-112.198269, 49.279832], [-112.197949, 49.277457], [-112.196565, 49.273803], [-112.189342, 49.264663], [-112.187679, 49.262625], [-112.187029, 49.261975], [-112.185766, 49.260758], [-112.185003, 49.259994], [-112.184046, 49.259256], [-112.182999, 49.258515], [-112.181937, 49.257797], [-112.180185, 49.2566], [-112.179314, 49.25606], [-112.178353, 49.255415], [-112.177525, 49.254853], [-112.176769, 49.254313], [-112.176125, 49.253788], [-112.174746, 49.252496], [-112.173897, 49.251682], [-112.173107, 49.250905], [-112.153316, 49.231556], [-112.145266, 49.223554], [-112.137196, 49.215571], [-112.13617, 49.214714], [-112.134956, 49.213742], [-112.134168, 49.213187], [-112.132859, 49.212334], [-112.13166, 49.211607], [-112.12957, 49.210494], [-112.126976, 49.209298], [-112.123065, 49.207555], [-112.121541, 49.206848], [-112.120052, 49.206151], [-112.118948, 49.205619], [-112.117869, 49.205062], [-112.11706, 49.204623], [-112.115236, 49.203546], [-112.112919, 49.201989], [-112.111625, 49.201012], [-112.109029, 49.198836], [-112.106118, 49.195686], [-112.105716, 49.195156], [-112.10511, 49.194341], [-112.102212, 49.189769], [-112.099016, 49.184803], [-112.097293, 49.182034], [-112.09607, 49.179971], [-112.093881, 49.176527], [-112.093098, 49.175222], [-112.092754, 49.174577], [-112.092518, 49.174107], [-112.092368, 49.173658], [-112.092271, 49.173279], [-112.092175, 49.172816], [-112.092083, 49.172436], [-112.092105, 49.171924], [-112.092116, 49.171461], [-112.092153, 49.170923], [-112.092303, 49.169933], [-112.092797, 49.166924], [-112.093183, 49.164483], [-112.093425, 49.163015], [-112.094079, 49.159023], [-112.094508, 49.156383], [-112.094555, 49.155953], [-112.094556, 49.155221], [-112.094514, 49.154793], [-112.094503, 49.154492], [-112.094385, 49.153874], [-112.094213, 49.153187], [-112.094063, 49.152773], [-112.093902, 49.152351], [-112.093602, 49.151853], [-112.093237, 49.151257], [-112.092797, 49.15078], [-112.092443, 49.150366], [-112.09211, 49.150043], [-112.09144, 49.149473], [-112.090329, 49.148576], [-112.087872, 49.146674], [-112.085019, 49.144442], [-112.08445, 49.144014], [-112.083795, 49.143488], [-112.083195, 49.142934], [-112.082218, 49.142021], [-112.081255, 49.140863], [-112.080652, 49.140161], [-112.079815, 49.139052], [-112.079375, 49.138315], [-112.078935, 49.137592], [-112.078367, 49.136469], [-112.077562, 49.134475], [-112.07679, 49.132524], [-112.076328, 49.131429], [-112.07591, 49.130565], [-112.075325, 49.129377], [-112.074891, 49.128684], [-112.074472, 49.128059], [-112.073582, 49.12674], [-112.072631, 49.125499], [-112.071973, 49.124711], [-112.071054, 49.123645], [-112.069784, 49.122387], [-112.068512, 49.121237], [-112.066629, 49.119662], [-112.062677, 49.116351], [-112.055397, 49.110231], [-112.054528, 49.109557], [-112.053423, 49.108763], [-112.052461, 49.108147], [-112.045612, 49.103924], [-112.04278, 49.102161], [-112.042125, 49.101683], [-112.041514, 49.101163], [-112.040923, 49.100503], [-112.040258, 49.099716], [-112.039046, 49.09777], [-112.036761, 49.094883], [-112.034383, 49.091688], [-112.032973, 49.089733], [-112.032072, 49.088525], [-112.031257, 49.087397], [-112.027952, 49.082826], [-112.025918, 49.080115], [-112.023929, 49.077471], [-112.021412, 49.07398], [-112.01924, 49.070443], [-112.016505, 49.066092], [-112.014616, 49.062914], [-112.010898, 49.056849], [-112.010336, 49.056053], [-112.009981, 49.05549], [-112.009595, 49.055054], [-112.008383, 49.053913], [-112.004081, 49.049886], [-112.003484, 49.049323], [-112.002241, 49.048061], [-112.000186, 49.046131], [-111.998352, 49.044419], [-111.997649, 49.043715], [-111.997014, 49.042914], [-111.996531, 49.042236], [-111.996215, 49.041782], [-111.995927, 49.041307], [-111.995594, 49.040698], [-111.995321, 49.040118], [-111.994693, 49.038673], [-111.994001, 49.037108], [-111.992996, 49.034801], [-111.992369, 49.033409], [-111.99149, 49.031403], [-111.99082, 49.029866], [-111.990004, 49.02802], [-111.98936, 49.026568], [-111.988769, 49.025185], [-111.988218, 49.023936], [-111.987589, 49.022536], [-111.987371, 49.021885], [-111.987235, 49.021333], [-111.987097, 49.020858], [-111.986995, 49.020386], [-111.98692, 49.019658], [-111.986872, 49.018979], [-111.986866, 49.017199], [-111.986872, 49.015542], [-111.98686, 49.013841], [-111.986847, 49.01231], [-111.98685, 49.011137], [-111.986861, 49.010352], [-111.986797, 49.009758], [-111.986645, 49.009206], [-111.986377, 49.008696], [-111.986147, 49.008354], [-111.985836, 49.007998], [-111.985337, 49.007558], [-111.984989, 49.007266], [-111.984301, 49.006795], [-111.983474, 49.00638], [-111.982516, 49.005993], [-111.981765, 49.005715], [-111.980942, 49.005514], [-111.980129, 49.005334], [-111.979328, 49.005194], [-111.978062, 49.005092], [-111.976985, 49.005074], [-111.974918, 49.005173], [-111.973139, 49.005292], [-111.97154, 49.00538], [-111.969019, 49.005514], [-111.967562, 49.005617], [-111.966045, 49.005705], [-111.96469, 49.005725], [-111.963991, 49.005648], [-111.96346, 49.005567], [-111.96295, 49.005448], [-111.962485, 49.005296], [-111.962163, 49.005187], [-111.961761, 49.005004], [-111.961293, 49.004765], [-111.960951, 49.004554], [-111.960789, 49.004426], [-111.960561, 49.004236], [-111.960215, 49.003866], [-111.959973, 49.003571], [-111.959774, 49.003265], [-111.959681, 49.003043], [-111.959581, 49.002794], [-111.95951, 49.002452], [-111.959584, 49.002087], [-111.959768, 49.001731], [-111.96008, 49.00139], [-111.960323, 49.001097], [-111.960993, 49.000276], [-111.961147, 48.999913], [-111.961177, 48.999675], [-111.961154, 48.999405], [-111.96075, 48.998378], [-111.960537, 48.997835], [-111.960261, 48.997296], [-111.959961, 48.996969], [-111.959772, 48.996485], [-111.959789, 48.99582], [-111.959918, 48.995443], [-111.960048, 48.994907], [-111.960094, 48.994603], [-111.960084, 48.994414], [-111.960109, 48.993824], [-111.959994, 48.990856], [-111.95827, 48.98094], [-111.958253, 48.980705], [-111.958185, 48.980405], [-111.958073, 48.980015], [-111.957973, 48.979662], [-111.957788, 48.979177], [-111.957579, 48.978688], [-111.957393, 48.978342], [-111.957182, 48.977986], [-111.956929, 48.977617], [-111.956287, 48.976872], [-111.955429, 48.975932], [-111.940434, 48.960617], [-111.939756, 48.959862], [-111.939258, 48.959163], [-111.938864, 48.958475], [-111.938589, 48.957934], [-111.935242, 48.950139], [-111.933705, 48.946469], [-111.930948, 48.939956], [-111.927211, 48.931012], [-111.924522, 48.924688], [-111.916608, 48.906188], [-111.9112, 48.893335], [-111.910969, 48.892844], [-111.910694, 48.892325], [-111.910265, 48.891676], [-111.909921, 48.891247], [-111.909492, 48.890711], [-111.909046, 48.890237], [-111.908119, 48.889328], [-111.907385, 48.88863], [-111.906844, 48.888116], [-111.903694, 48.88508], [-111.903291, 48.88469], [-111.901737, 48.883161], [-111.878176, 48.860393], [-111.867242, 48.849753], [-111.866486, 48.849013], [-111.865877, 48.848301], [-111.86531, 48.847533], [-111.864675, 48.846613], [-111.86392, 48.845195], [-111.863594, 48.84437], [-111.863233, 48.843167], [-111.863139, 48.842738], [-111.863019, 48.842026], [-111.86295, 48.841071], [-111.862942, 48.830326], [-111.862942, 48.823285], [-111.86289, 48.769261], [-111.862864, 48.764515], [-111.862813, 48.763474], [-111.862718, 48.761743], [-111.861611, 48.743809], [-111.861439, 48.740289], [-111.861439, 48.739949], [-111.861594, 48.737176], [-111.862178, 48.726719], [-111.862229, 48.723792], [-111.862083, 48.656639], [-111.8621, 48.64979], [-111.861997, 48.598701], [-111.86198, 48.592185], [-111.86198, 48.57272], [-111.861912, 48.57163], [-111.861817, 48.570494], [-111.861697, 48.569205], [-111.860581, 48.557657], [-111.860077, 48.552231], [-111.859663, 48.54801], [-111.859594, 48.546805], [-111.859611, 48.545322], [-111.859792, 48.535383], [-111.8598, 48.533888], [-111.859886, 48.533121], [-111.860015, 48.532581], [-111.860246, 48.531939], [-111.860598, 48.531387], [-111.860942, 48.530899], [-111.861688, 48.530109], [-111.866109, 48.525755], [-111.875953, 48.516192], [-111.876929, 48.515247], [-111.877241, 48.514954], [-111.879228, 48.513021], [-111.879759, 48.512467], [-111.88006, 48.512124], [-111.880267, 48.511881], [-111.88042, 48.511679], [-111.880571, 48.511473], [-111.88094, 48.510956], [-111.881292, 48.510376], [-111.881653, 48.509733], [-111.881996, 48.50904], [-111.882305, 48.508346], [-111.882562, 48.507572], [-111.882777, 48.506828], [-111.882931, 48.506134], [-111.883026, 48.505588], [-111.883441, 48.502992], [-111.883604, 48.499975], [-111.883614, 48.499767], [-111.883635, 48.496433], [-111.883673, 48.495815], [-111.883734, 48.49503], [-111.883798, 48.494396], [-111.883866, 48.493802], [-111.883999, 48.493], [-111.884209, 48.492103], [-111.884377, 48.49147], [-111.884557, 48.490837], [-111.885112, 48.489088], [-111.885489, 48.48824], [-111.886605, 48.485897], [-111.88682, 48.485299], [-111.887034, 48.484679], [-111.887197, 48.484099], [-111.887389, 48.483433], [-111.88747, 48.482928], [-111.887522, 48.482349], [-111.887575, 48.481425], [-111.887554, 48.480643], [-111.887506, 48.480113], [-111.887418, 48.479516], [-111.887265, 48.478742], [-111.887056, 48.477974], [-111.886845, 48.47746], [-111.886472, 48.476607], [-111.885635, 48.474831], [-111.885441, 48.474274], [-111.885165, 48.473591], [-111.884897, 48.472862], [-111.884674, 48.47215], [-111.884502, 48.471564], [-111.884279, 48.470409], [-111.884082, 48.46926], [-111.883953, 48.468281], [-111.883906, 48.467423], [-111.883878, 48.46663], [-111.883976, 48.454446], [-111.884028, 48.447094], [-111.884036, 48.443164], [-111.884023, 48.441546], [-111.884017, 48.440681], [-111.884026, 48.43968], [-111.884018, 48.438945], [-111.88402, 48.438457], [-111.884058, 48.438059], [-111.884092, 48.43776], [-111.884134, 48.437455], [-111.884195, 48.437091], [-111.884275, 48.436739], [-111.884339, 48.436455], [-111.884422, 48.436153], [-111.884528, 48.435768], [-111.884674, 48.435354], [-111.884745, 48.435206], [-111.884871, 48.43486], [-111.885003, 48.434574], [-111.885207, 48.434157], [-111.885417, 48.433746], [-111.885596, 48.433441], [-111.88582, 48.433061], [-111.886029, 48.43273], [-111.886203, 48.432492], [-111.886412, 48.432197], [-111.886586, 48.431954], [-111.886816, 48.431663], [-111.887079, 48.431357], [-111.887401, 48.430981], [-111.887774, 48.430593], [-111.888127, 48.430257], [-111.888437, 48.429955], [-111.889099, 48.429374], [-111.889756, 48.428824], [-111.890912, 48.427857], [-111.892165, 48.426838], [-111.905659, 48.415636], [-111.90626, 48.415157], [-111.906861, 48.41457], [-111.907333, 48.414081], [-111.907814, 48.413528], [-111.908406, 48.412776], [-111.909015, 48.411824], [-111.909633, 48.410907], [-111.920752, 48.392582], [-111.927417, 48.381543], [-111.93346, 48.371538], [-111.933846, 48.37086], [-111.934235, 48.370068], [-111.934546, 48.369396], [-111.934939, 48.368399], [-111.935227, 48.367613], [-111.935586, 48.366493], [-111.935831, 48.365544], [-111.936026, 48.364601], [-111.936138, 48.363831], [-111.936258, 48.362885], [-111.936438, 48.360792], [-111.936415, 48.329088], [-111.936407, 48.310354], [-111.936413, 48.303031], [-111.936412, 48.300795], [-111.936402, 48.300483], [-111.936381, 48.271331], [-111.936384, 48.26711], [-111.936382, 48.259592], [-111.936296, 48.241832], [-111.936359, 48.224045], [-111.936352, 48.223792], [-111.936325, 48.223208], [-111.936251, 48.222646], [-111.936138, 48.222131], [-111.936009, 48.221594], [-111.935863, 48.221148], [-111.935674, 48.220724], [-111.935554, 48.220438], [-111.935323, 48.219975], [-111.934809, 48.219106], [-111.93372, 48.217503], [-111.933233, 48.216812], [-111.932738, 48.21609], [-111.932429, 48.215627], [-111.931294, 48.214006], [-111.927397, 48.208419], [-111.925603, 48.205843], [-111.925208, 48.205217], [-111.92491, 48.204712], [-111.924771, 48.204436], [-111.924661, 48.204188], [-111.924567, 48.203923], [-111.924475, 48.203592], [-111.924434, 48.203298], [-111.924418, 48.202753], [-111.924413, 48.20226], [-111.924452, 48.201981], [-111.924528, 48.20166], [-111.924607, 48.201399], [-111.924686, 48.201185], [-111.924808, 48.200887], [-111.92494, 48.200634], [-111.925143, 48.200322], [-111.925478, 48.199721], [-111.929307, 48.193399], [-111.931749, 48.18936], [-111.932143, 48.188696], [-111.932455, 48.188174], [-111.933068, 48.187161], [-111.933601, 48.186274], [-111.933896, 48.185797], [-111.934176, 48.185351], [-111.934674, 48.184441], [-111.934869, 48.184038], [-111.935015, 48.183702], [-111.935133, 48.183407], [-111.935235, 48.183131], [-111.935317, 48.182855], [-111.935435, 48.182454], [-111.935517, 48.18214], [-111.935563, 48.181903], [-111.935605, 48.181629], [-111.935654, 48.181347], [-111.935672, 48.181134], [-111.935695, 48.180837], [-111.93571, 48.180431], [-111.935711, 48.179913], [-111.935689, 48.179699], [-111.935666, 48.179392], [-111.935641, 48.179193], [-111.935605, 48.178954], [-111.935551, 48.17862], [-111.935494, 48.178341], [-111.935425, 48.178065], [-111.935362, 48.177851], [-111.935271, 48.177512], [-111.935083, 48.177015], [-111.93498, 48.176751], [-111.934859, 48.176484], [-111.934688, 48.176141], [-111.934489, 48.175789], [-111.934239, 48.175377], [-111.933859, 48.174812], [-111.933189, 48.173765], [-111.928027, 48.165762], [-111.927735, 48.165321], [-111.92603, 48.162726], [-111.925093, 48.161247], [-111.924008, 48.159611], [-111.922175, 48.156783], [-111.920615, 48.154387], [-111.919007, 48.151911], [-111.91822, 48.150663], [-111.916601, 48.148144], [-111.915551, 48.146568], [-111.914312, 48.144665], [-111.913624, 48.143606], [-111.912311, 48.141567], [-111.911974, 48.141065], [-111.911504, 48.140381], [-111.910989, 48.139656], [-111.91031, 48.138734], [-111.909273, 48.1374], [-111.907928, 48.135653], [-111.906666, 48.13405], [-111.905997, 48.133172], [-111.904722, 48.131516], [-111.901655, 48.127581], [-111.900048, 48.125516], [-111.898729, 48.123822], [-111.894029, 48.117798], [-111.893315, 48.116857], [-111.892001, 48.115177], [-111.889638, 48.112132], [-111.887413, 48.109275], [-111.884717, 48.105808], [-111.876044, 48.094626], [-111.87031, 48.087229], [-111.862959, 48.077764], [-111.861332, 48.075665], [-111.858755, 48.072362], [-111.857125, 48.070241], [-111.854834, 48.06729], [-111.850948, 48.062304], [-111.85011, 48.061229], [-111.849084, 48.059917], [-111.845348, 48.055071], [-111.836461, 48.043589], [-111.832454, 48.038401], [-111.828116, 48.032803], [-111.825147, 48.028974], [-111.816587, 48.017942], [-111.816087, 48.017289], [-111.815305, 48.016376], [-111.814473, 48.015423], [-111.813623, 48.014499], [-111.812937, 48.013816], [-111.811984, 48.012851], [-111.810868, 48.011863], [-111.809752, 48.010882], [-111.808825, 48.010101], [-111.807598, 48.009153], [-111.806388, 48.008229], [-111.805238, 48.007408], [-111.784158, 47.992286], [-111.782561, 47.991143], [-111.767146, 47.980084], [-111.766219, 47.979354], [-111.765283, 47.978504], [-111.764288, 47.977544], [-111.763404, 47.976585], [-111.762691, 47.975723], [-111.762193, 47.97501], [-111.761653, 47.974154], [-111.761121, 47.973252], [-111.753336, 47.959718], [-111.749036, 47.952205], [-111.736505, 47.930384], [-111.736106, 47.92965], [-111.735644, 47.928853], [-111.735343, 47.928305], [-111.733592, 47.925244], [-111.733306, 47.924769], [-111.732599, 47.923554], [-111.732395, 47.923205], [-111.731718, 47.922093], [-111.731538, 47.921738], [-111.73117, 47.921043], [-111.726112, 47.912262], [-111.71442, 47.89173], [-111.713776, 47.890608], [-111.713253, 47.889578], [-111.712927, 47.888864], [-111.71254, 47.888058], [-111.712146, 47.88689], [-111.711811, 47.885744], [-111.711519, 47.884564], [-111.711253, 47.883125], [-111.711124, 47.881922], [-111.71103, 47.880834], [-111.71103, 47.879792], [-111.711129, 47.869762], [-111.711004, 47.867783], [-111.710901, 47.866758], [-111.710781, 47.865716], [-111.710618, 47.864547], [-111.710438, 47.863447], [-111.710283, 47.862537], [-111.709991, 47.861213], [-111.709756, 47.860259], [-111.709335, 47.858847], [-111.708841, 47.857285], [-111.70727, 47.852822], [-111.706867, 47.851704], [-111.706498, 47.850875], [-111.706077, 47.850017], [-111.705434, 47.848819], [-111.705305, 47.848582], [-111.704816, 47.847747], [-111.704215, 47.846849], [-111.703623, 47.846054], [-111.702678, 47.844833], [-111.701983, 47.843986], [-111.700902, 47.842828], [-111.699923, 47.841889], [-111.698979, 47.841013], [-111.698052, 47.84023], [-111.696893, 47.839291], [-111.668363, 47.817267], [-111.667479, 47.816472], [-111.667042, 47.815942], [-111.666647, 47.815434], [-111.666226, 47.81476], [-111.665943, 47.814143], [-111.66578, 47.813619], [-111.665625, 47.812887], [-111.6656, 47.812391], [-111.665591, 47.811797], [-111.666429, 47.79584], [-111.666535, 47.793822], [-111.666492, 47.791308], [-111.666439, 47.750802], [-111.666442, 47.741317], [-111.666445, 47.740989], [-111.666406, 47.723306], [-111.666381, 47.72244], [-111.666295, 47.721684], [-111.666158, 47.720881], [-111.665986, 47.72024], [-111.665746, 47.719547], [-111.665419, 47.71871], [-111.665042, 47.717925], [-111.664647, 47.717243], [-111.664132, 47.716493], [-111.663789, 47.716008], [-111.663359, 47.715528], [-111.662432, 47.714581], [-111.658081, 47.710071], [-111.647285, 47.699031], [-111.646085, 47.697836], [-111.632275, 47.683698], [-111.631949, 47.683351], [-111.606663, 47.657441], [-111.60117, 47.651798], [-111.590415, 47.64073], [-111.589918, 47.640187], [-111.589463, 47.639655], [-111.589068, 47.639157], [-111.588707, 47.638689], [-111.588287, 47.638139], [-111.587849, 47.637538], [-111.587549, 47.637104], [-111.587231, 47.636624], [-111.58627, 47.63501], [-111.585369, 47.633136], [-111.570511, 47.6019], [-111.569945, 47.600818], [-111.56955, 47.600169], [-111.569224, 47.599643], [-111.568846, 47.599047], [-111.568546, 47.598607], [-111.568168, 47.598051], [-111.567747, 47.597472], [-111.567335, 47.596928], [-111.566915, 47.59643], [-111.566537, 47.595991], [-111.552899, 47.581183], [-111.552633, 47.580911], [-111.537629, 47.564691], [-111.536514, 47.563515], [-111.535904, 47.562901], [-111.535175, 47.56227], [-111.534437, 47.561691], [-111.533656, 47.561129], [-111.532711, 47.560504], [-111.531647, 47.559884], [-111.53048, 47.559311], [-111.529184, 47.558737], [-111.528008, 47.558285], [-111.526806, 47.557897], [-111.525424, 47.557503], [-111.524008, 47.557162], [-111.522824, 47.556953], [-111.521734, 47.556779], [-111.509679, 47.554952], [-111.484251, 47.551039], [-111.477299, 47.54995], [-111.455614, 47.546631], [-111.452477, 47.546143], [-111.452005, 47.546074], [-111.448496, 47.545531], [-111.445301, 47.545037], [-111.443894, 47.544799], [-111.442357, 47.544492], [-111.440907, 47.544162], [-111.439173, 47.543716], [-111.437894, 47.543368], [-111.436512, 47.542957], [-111.435045, 47.54247], [-111.385349, 47.526175], [-111.384241, 47.525793], [-111.383478, 47.52541], [-111.382928, 47.525097], [-111.382499, 47.524784], [-111.382036, 47.524384], [-111.381709, 47.524025], [-111.381452, 47.523741], [-111.380053, 47.521909], [-111.379298, 47.520959], [-111.379152, 47.520779], [-111.378714, 47.520286], [-111.378268, 47.519857], [-111.377555, 47.519394], [-111.376774, 47.518994], [-111.376096, 47.518733], [-111.375409, 47.51853], [-111.374294, 47.518234], [-111.351059, 47.512362], [-111.350081, 47.512055], [-111.348914, 47.511632], [-111.348184, 47.511255], [-111.347446, 47.510878], [-111.346914, 47.510553], [-111.346356, 47.510147], [-111.345832, 47.509759], [-111.345309, 47.509295], [-111.344914, 47.508884], [-111.344605, 47.508542], [-111.344193, 47.50802], [-111.34391, 47.507591], [-111.343618, 47.507133], [-111.343352, 47.506535], [-111.343137, 47.505921], [-111.343, 47.505254], [-111.342914, 47.504779], [-111.342871, 47.504205], [-111.342884, 47.503714], [-111.343017, 47.501337], [-111.343037, 47.500922], [-111.343074, 47.500247], [-111.343153, 47.498866], [-111.343699, 47.489338], [-111.343837, 47.488347], [-111.344051, 47.487517], [-111.344326, 47.486746], [-111.344695, 47.485795], [-111.345184, 47.484855], [-111.345493, 47.484356], [-111.346068, 47.483527], [-111.34715, 47.48221], [-111.347948, 47.481392], [-111.348765, 47.480715], [-111.349751, 47.479978], [-111.350866, 47.47913], [-111.356582, 47.475347], [-111.365214, 47.469592], [-111.367419, 47.46813], [-111.367934, 47.467829], [-111.368578, 47.467492], [-111.36923, 47.467144], [-111.369994, 47.466807], [-111.370973, 47.466407], [-111.371926, 47.466042], [-111.372818, 47.465746], [-111.373522, 47.465525], [-111.374509, 47.465258], [-111.429286, 47.452445], [-111.429621, 47.452364], [-111.473508, 47.442064], [-111.50183, 47.435384], [-111.502749, 47.435175], [-111.503701, 47.434961], [-111.504362, 47.434792], [-111.505221, 47.434543], [-111.506045, 47.434299], [-111.506663, 47.434095], [-111.507143, 47.433927], [-111.507907, 47.433648], [-111.508654, 47.433312], [-111.509255, 47.433045], [-111.509933, 47.432725], [-111.510534, 47.432412], [-111.51122, 47.432029], [-111.51183, 47.431674], [-111.512954, 47.430931], [-111.513546, 47.43049], [-111.524011, 47.422011], [-111.569141, 47.385345], [-111.6142, 47.348685], [-111.614466, 47.34847], [-111.634341, 47.332266], [-111.69101, 47.285965], [-111.692683, 47.284596], [-111.694151, 47.283461], [-111.694838, 47.282943], [-111.696432, 47.281863], [-111.698123, 47.280815], [-111.699024, 47.280297], [-111.699436, 47.280064], [-111.703522, 47.277671], [-111.704183, 47.27728], [-111.704689, 47.276966], [-111.70511, 47.276686], [-111.705436, 47.276442], [-111.705788, 47.276139], [-111.706182, 47.275766], [-111.706612, 47.275289], [-111.706989, 47.274806], [-111.707367, 47.274264], [-111.707573, 47.273856], [-111.707813, 47.273379], [-111.707933, 47.273047], [-111.708045, 47.272651], [-111.708122, 47.272307], [-111.708199, 47.271911], [-111.708234, 47.271544], [-111.708234, 47.271212], [-111.708157, 47.264538], [-111.708114, 47.262342], [-111.708122, 47.261794], [-111.708157, 47.261369], [-111.708234, 47.260851], [-111.708268, 47.260653], [-111.708337, 47.260257], [-111.708508, 47.259511], [-111.708637, 47.258923], [-111.708783, 47.258241], [-111.70898, 47.257536], [-111.709152, 47.256942], [-111.709298, 47.256383], [-111.710079, 47.25333], [-111.710328, 47.252363], [-111.710474, 47.251833], [-111.710637, 47.251332], [-111.710834, 47.250889], [-111.71104, 47.250545], [-111.711367, 47.250085], [-111.711658, 47.249753], [-111.711942, 47.249444], [-111.712345, 47.249089], [-111.712766, 47.248751], [-111.71316, 47.248494], [-111.713624, 47.248221], [-111.714147, 47.247958], [-111.714834, 47.247655], [-111.729726, 47.241112], [-111.73291, 47.239807], [-111.75169, 47.232534], [-111.754093, 47.231624], [-111.75635, 47.230861], [-111.75676, 47.230739], [-111.765002, 47.228413], [-111.765835, 47.228157], [-111.766633, 47.227877], [-111.767345, 47.227597], [-111.768092, 47.227306], [-111.768719, 47.227026], [-111.769474, 47.226676], [-111.770058, 47.226361], [-111.770727, 47.225988], [-111.771448, 47.225534], [-111.772118, 47.225096], [-111.772693, 47.224688], [-111.773405, 47.22417], [-111.773714, 47.223936], [-111.774169, 47.223575], [-111.774641, 47.223103], [-111.775104, 47.222619], [-111.775499, 47.222211], [-111.775885, 47.221774], [-111.776306, 47.221255], [-111.776658, 47.220777], [-111.77695, 47.220369], [-111.777422, 47.219611], [-111.777722, 47.219057], [-111.778014, 47.218422], [-111.778289, 47.217746], [-111.778503, 47.217104], [-111.778675, 47.216428], [-111.778881, 47.215694], [-111.779061, 47.214988], [-111.780057, 47.210796], [-111.780203, 47.210213], [-111.780323, 47.209758], [-111.780435, 47.209397], [-111.780641, 47.208808], [-111.780907, 47.208201], [-111.78113, 47.207729], [-111.781301, 47.207438], [-111.781499, 47.207129], [-111.78228, 47.205916], [-111.783293, 47.204645], [-111.783936, 47.203974], [-111.784735, 47.203146], [-111.785593, 47.202225], [-111.786314, 47.201466], [-111.786872, 47.200883], [-111.787902, 47.199845], [-111.788254, 47.199507], [-111.788674, 47.19914], [-111.789086, 47.19879], [-111.789584, 47.198387], [-111.790168, 47.197921], [-111.790605, 47.197618], [-111.791249, 47.197227], [-111.791824, 47.196877], [-111.792545, 47.196474], [-111.793198, 47.196136], [-111.79397, 47.195769], [-111.794805, 47.195425], [-111.801248, 47.192835], [-111.801575, 47.192701], [-111.802656, 47.192287], [-111.803514, 47.191937], [-111.804167, 47.191628], [-111.804665, 47.191394], [-111.8053, 47.191045], [-111.805723, 47.190797], [-111.805997, 47.190634], [-111.806478, 47.190323], [-111.806732, 47.190144], [-111.80699, 47.189955], [-111.807242, 47.189755], [-111.807499, 47.189537], [-111.807978, 47.189108], [-111.808309, 47.188784], [-111.808738, 47.188316], [-111.809145, 47.187831], [-111.809375, 47.187515], [-111.809578, 47.187207], [-111.809725, 47.186968], [-111.809941, 47.18658], [-111.810196, 47.186052], [-111.810485, 47.185392], [-111.810582, 47.185034], [-111.810757, 47.184458], [-111.81087, 47.184068], [-111.811288, 47.182591], [-111.811466, 47.182023], [-111.811592, 47.181562], [-111.811725, 47.181068], [-111.811881, 47.18053], [-111.812016, 47.179972], [-111.812133, 47.179486], [-111.812304, 47.178698], [-111.812475, 47.177933], [-111.812795, 47.176671], [-111.813022, 47.175805], [-111.813143, 47.175313], [-111.813289, 47.174743], [-111.813451, 47.174086], [-111.813587, 47.173603], [-111.813709, 47.173199], [-111.813868, 47.172742], [-111.814052, 47.172177], [-111.81431, 47.171374], [-111.814446, 47.170953], [-111.814555, 47.170592], [-111.814621, 47.170315], [-111.814724, 47.169845], [-111.814867, 47.169286], [-111.814924, 47.169023], [-111.815005, 47.168585], [-111.81512, 47.168075], [-111.815267, 47.167513], [-111.81537, 47.167124], [-111.815534, 47.166596], [-111.815743, 47.165879], [-111.815883, 47.165407], [-111.816017, 47.16497], [-111.816151, 47.164499], [-111.816299, 47.164102], [-111.816455, 47.163605], [-111.816606, 47.163233], [-111.81675, 47.162929], [-111.8169, 47.16265], [-111.817163, 47.162234], [-111.817461, 47.161792], [-111.817707, 47.161428], [-111.817918, 47.161172], [-111.818109, 47.160939], [-111.81826, 47.160773], [-111.818436, 47.160598], [-111.818713, 47.160322], [-111.819137, 47.159916], [-111.819338, 47.159742], [-111.819615, 47.159506], [-111.819811, 47.159353], [-111.820101, 47.159137], [-111.820886, 47.158653], [-111.821347, 47.158391], [-111.821709, 47.158179], [-111.82215, 47.157949], [-111.822792, 47.157656], [-111.823291, 47.157407], [-111.823951, 47.157074], [-111.824604, 47.156773], [-111.824926, 47.156618], [-111.826016, 47.156075], [-111.826777, 47.155704], [-111.827118, 47.155527], [-111.827632, 47.155278], [-111.828833, 47.154684], [-111.830331, 47.153967], [-111.83092, 47.153679], [-111.831417, 47.153485], [-111.831694, 47.153394], [-111.831937, 47.15332], [-111.832157, 47.153261], [-111.832517, 47.15318], [-111.832892, 47.153117], [-111.833253, 47.153076], [-111.833573, 47.153049], [-111.833993, 47.153025], [-111.834559, 47.153049], [-111.835126, 47.153113], [-111.835701, 47.1532], [-111.83595, 47.153259], [-111.841856, 47.154858], [-111.842362, 47.155002], [-111.842712, 47.155094], [-111.843019, 47.155158], [-111.843672, 47.155257], [-111.8438, 47.155267], [-111.844087, 47.155287], [-111.844399, 47.155286], [-111.844699, 47.15528], [-111.845058, 47.15526], [-111.845509, 47.155193], [-111.845869, 47.155122], [-111.846291, 47.155019], [-111.846644, 47.154905], [-111.846928, 47.154785], [-111.847126, 47.154685], [-111.847479, 47.154504], [-111.847736, 47.154346], [-111.847908, 47.15421], [-111.848115, 47.154036], [-111.848251, 47.153894], [-111.848342, 47.153792], [-111.84847, 47.153647], [-111.848543, 47.153546], [-111.848649, 47.153419], [-111.848764, 47.153232], [-111.848861, 47.153032], [-111.848947, 47.152823], [-111.848973, 47.152708], [-111.849021, 47.152541], [-111.849042, 47.152364], [-111.849077, 47.152131], [-111.849103, 47.151825], [-111.849333, 47.149062], [-111.849393, 47.148406], [-111.8494, 47.148192], [-111.849408, 47.147987], [-111.8494, 47.147824], [-111.84939, 47.147698], [-111.849374, 47.147556], [-111.849347, 47.147435], [-111.849331, 47.147351], [-111.849245, 47.146966], [-111.849142, 47.146674], [-111.849059, 47.146434], [-111.848943, 47.146212], [-111.84886, 47.146053], [-111.848767, 47.145896], [-111.848673, 47.145762], [-111.848566, 47.14562], [-111.847025, 47.143717], [-111.846887, 47.143525], [-111.846766, 47.143353], [-111.846661, 47.14319], [-111.846521, 47.142953], [-111.846415, 47.142749], [-111.846343, 47.142591], [-111.846269, 47.14237], [-111.846241, 47.142263], [-111.846223, 47.14217], [-111.846209, 47.142062], [-111.84619, 47.141876], [-111.846192, 47.141745], [-111.846217, 47.141528], [-111.846242, 47.141353], [-111.84627, 47.141184], [-111.846324, 47.141016], [-111.846398, 47.140797], [-111.846525, 47.140531], [-111.846604, 47.14041], [-111.846676, 47.14029], [-111.846846, 47.140059], [-111.847142, 47.139751], [-111.847281, 47.13963], [-111.84746, 47.139479], [-111.847678, 47.139323], [-111.84791, 47.139171], [-111.848186, 47.139013], [-111.848438, 47.138891], [-111.848706, 47.138772], [-111.848984, 47.138674], [-111.849267, 47.138581], [-111.849592, 47.138477], [-111.849947, 47.138393], [-111.850257, 47.138331], [-111.850556, 47.138292], [-111.850908, 47.138241], [-111.851241, 47.13822], [-111.85164, 47.138209], [-111.851974, 47.13821], [-111.852237, 47.138223], [-111.852532, 47.138247], [-111.852795, 47.138276], [-111.853123, 47.13833], [-111.853394, 47.138374], [-111.853787, 47.138457], [-111.854766, 47.138667], [-111.855826, 47.138884], [-111.856179, 47.13897], [-111.856565, 47.139029], [-111.856792, 47.139068], [-111.857173, 47.13911], [-111.857431, 47.139137], [-111.857676, 47.139157], [-111.858048, 47.139176], [-111.858338, 47.139177], [-111.858762, 47.139167], [-111.859155, 47.139148], [-111.85955, 47.139117], [-111.859805, 47.139089], [-111.860245, 47.139022], [-111.860491, 47.13898], [-111.860683, 47.138944], [-111.860973, 47.138885], [-111.861214, 47.138829], [-111.861479, 47.138758], [-111.861743, 47.138677], [-111.862069, 47.138562], [-111.862344, 47.138449], [-111.862687, 47.138297], [-111.862931, 47.138175], [-111.863114, 47.138087], [-111.863314, 47.137975], [-111.863599, 47.137807], [-111.863972, 47.13756], [-111.864261, 47.137341], [-111.864442, 47.137202], [-111.864674, 47.137005], [-111.864969, 47.136736], [-111.865258, 47.13642], [-111.867853, 47.13324], [-111.868102, 47.13296], [-111.868445, 47.132657], [-111.868909, 47.132347], [-111.869372, 47.132096], [-111.869776, 47.131938], [-111.870291, 47.131792], [-111.870754, 47.131687], [-111.871286, 47.131623], [-111.87181, 47.131605], [-111.872359, 47.131617], [-111.873389, 47.131705], [-111.875681, 47.131897], [-111.885054, 47.132785], [-111.886566, 47.132886], [-111.888607, 47.1331], [-111.888985, 47.133135], [-111.889766, 47.133217], [-111.890444, 47.133281], [-111.891225, 47.133322], [-111.891886, 47.133334], [-111.892598, 47.133334], [-111.893242, 47.133316], [-111.8938, 47.133305], [-111.894512, 47.133246], [-111.89513, 47.133194], [-111.89563, 47.133132], [-111.896274, 47.133044], [-111.89678, 47.132974], [-111.898531, 47.132636], [-111.899656, 47.132344], [-111.900711, 47.132022], [-111.901398, 47.131783], [-111.902445, 47.131403], [-111.904162, 47.130755], [-111.909034, 47.128927], [-111.913729, 47.127181], [-111.917251, 47.125878], [-111.92071, 47.1247], [-111.921698, 47.124251], [-111.922387, 47.123838], [-111.922806, 47.123526], [-111.924809, 47.121884], [-111.925527, 47.121467], [-111.926631, 47.121045], [-111.927545, 47.120838], [-111.928844, 47.120679], [-111.939954, 47.119561], [-111.940893, 47.119375], [-111.941491, 47.119193], [-111.94258, 47.118694], [-111.94328, 47.118205], [-111.943682, 47.117842], [-111.944167, 47.117216], [-111.94437, 47.116782], [-111.94452, 47.116283], [-111.944594, 47.115646], [-111.944471, 47.113184], [-111.944519, 47.112085], [-111.944699, 47.111164], [-111.9451, 47.109855], [-111.94519, 47.109613], [-111.946818, 47.104798], [-111.947185, 47.103915], [-111.94757, 47.103215], [-111.948705, 47.101708], [-111.95025, 47.099859], [-111.951568, 47.098237], [-111.952318, 47.097326], [-111.952866, 47.096646], [-111.954165, 47.094457], [-111.954536, 47.093996], [-111.955001, 47.093573], [-111.95538, 47.093283], [-111.95597, 47.092921], [-111.958022, 47.092174], [-111.958929, 47.091665], [-111.959563, 47.091145], [-111.959918, 47.090782], [-111.960199, 47.090406], [-111.960514, 47.089782], [-111.960679, 47.089121], [-111.961076, 47.083974], [-111.961218, 47.083113], [-111.961515, 47.082259], [-111.962027, 47.081188], [-111.962536, 47.080367], [-111.963148, 47.079581], [-111.964601, 47.078023], [-111.966718, 47.075826], [-111.967024, 47.075517], [-111.969094, 47.073375], [-111.970437, 47.07194], [-111.972154, 47.070032], [-111.973432, 47.068542], [-111.974103, 47.067809], [-111.974604, 47.067107], [-111.976616, 47.064731], [-111.98105, 47.059331], [-111.981811, 47.058552], [-111.982905, 47.057585], [-111.983864, 47.057007], [-111.985011, 47.056354], [-111.986314, 47.055712], [-111.986853, 47.055504], [-111.987827, 47.055224], [-111.990272, 47.054577], [-111.991627, 47.053954], [-111.992491, 47.053494], [-111.993301, 47.052977], [-111.994268, 47.05221], [-111.994901, 47.051592], [-112.00108, 47.045261], [-112.002131, 47.044014], [-112.002341, 47.043639], [-112.002459, 47.043291], [-112.00254, 47.04249], [-112.002551, 47.041633], [-112.002802, 47.040468], [-112.003031, 47.039996], [-112.003311, 47.039629], [-112.00408, 47.038901], [-112.004669, 47.038537], [-112.005381, 47.038191], [-112.006132, 47.03787], [-112.007591, 47.037508], [-112.008057, 47.037437], [-112.009475, 47.037313], [-112.012696, 47.037258], [-112.01489, 47.037245], [-112.016275, 47.037163], [-112.0192, 47.037033], [-112.020595, 47.036893], [-112.021841, 47.036661], [-112.023428, 47.036288], [-112.024543, 47.035923], [-112.025634, 47.03549], [-112.026621, 47.035004], [-112.027875, 47.034259], [-112.04368, 47.024236], [-112.044909, 47.023441], [-112.04544, 47.023036], [-112.04608, 47.022418], [-112.046528, 47.021863], [-112.046751, 47.021531], [-112.046895, 47.021189], [-112.048457, 47.017223], [-112.049379, 47.014861], [-112.04961, 47.014335], [-112.049878, 47.013819], [-112.050194, 47.013314], [-112.050556, 47.012813], [-112.050955, 47.01233], [-112.051351, 47.011873], [-112.051809, 47.011423], [-112.052303, 47.010991], [-112.05283, 47.010576], [-112.053387, 47.010182], [-112.053972, 47.009806], [-112.056998, 47.008006], [-112.058515, 47.007109], [-112.060333, 47.006031], [-112.061846, 47.00513], [-112.062472, 47.004869], [-112.062889, 47.004741], [-112.063358, 47.004645], [-112.063683, 47.004606], [-112.064074, 47.004561], [-112.064445, 47.004519], [-112.06488, 47.004576], [-112.06527, 47.004629], [-112.065565, 47.004697], [-112.065974, 47.004792], [-112.066808, 47.004991], [-112.06824, 47.005361], [-112.0686, 47.005467], [-112.069096, 47.005596], [-112.069473, 47.005688], [-112.069732, 47.005745], [-112.070266, 47.005855], [-112.070699, 47.005951], [-112.071253, 47.006048], [-112.071642, 47.006114], [-112.071928, 47.006158], [-112.072302, 47.006209], [-112.072735, 47.006263], [-112.072984, 47.006287], [-112.073367, 47.006318], [-112.073792, 47.006352], [-112.074219, 47.006372], [-112.074542, 47.006382], [-112.074829, 47.00639], [-112.075178, 47.006392], [-112.075603, 47.006393], [-112.076788, 47.006332], [-112.077271, 47.006281], [-112.077628, 47.006225], [-112.078026, 47.006153], [-112.078436, 47.006074], [-112.078755, 47.005996], [-112.079201, 47.005866], [-112.079533, 47.005747], [-112.079812, 47.00563], [-112.080082, 47.005495], [-112.080379, 47.005332], [-112.080635, 47.005164], [-112.080953, 47.004927], [-112.081049, 47.004826], [-112.081198, 47.004689], [-112.081316, 47.004562], [-112.081449, 47.004379], [-112.081568, 47.004191], [-112.081674, 47.003987], [-112.08174, 47.003858], [-112.081806, 47.003692], [-112.081884, 47.003438], [-112.08191, 47.003275], [-112.081934, 47.003066], [-112.08193, 47.002831], [-112.081896, 47.002597], [-112.081853, 47.002371], [-112.081798, 47.002194], [-112.081607, 47.00176], [-112.081184, 47.001198], [-112.079559, 46.99968], [-112.078016, 46.99838], [-112.07758, 46.997912], [-112.077288, 46.997532], [-112.076986, 46.99693], [-112.076889, 46.996514], [-112.076886, 46.996116], [-112.076984, 46.995478], [-112.07795, 46.992584], [-112.078047, 46.991994], [-112.078024, 46.991594], [-112.077935, 46.9912], [-112.077672, 46.990627], [-112.076129, 46.988425], [-112.075762, 46.987771], [-112.075646, 46.98742], [-112.075619, 46.987055], [-112.075663, 46.986679], [-112.075796, 46.986299], [-112.076008, 46.985921], [-112.076502, 46.98539], [-112.077181, 46.984932], [-112.081242, 46.982494], [-112.081853, 46.981972], [-112.082104, 46.981646], [-112.082346, 46.981245], [-112.082526, 46.98074], [-112.082567, 46.980266], [-112.082681, 46.977427], [-112.082826, 46.974499], [-112.083032, 46.973709], [-112.083438, 46.973098], [-112.083941, 46.972667], [-112.084536, 46.97225], [-112.093815, 46.965771], [-112.094034, 46.965596], [-112.094318, 46.965306], [-112.094501, 46.965085], [-112.094642, 46.964864], [-112.094785, 46.964575], [-112.094868, 46.964338], [-112.094926, 46.964081], [-112.094952, 46.963813], [-112.094963, 46.963562], [-112.094964, 46.963005], [-112.094945, 46.962147], [-112.095064, 46.961322], [-112.095315, 46.960775], [-112.095663, 46.960328], [-112.098599, 46.957746], [-112.098975, 46.957432], [-112.099726, 46.956946], [-112.100314, 46.956644], [-112.101038, 46.956326], [-112.103946, 46.955297], [-112.107802, 46.953955], [-112.108475, 46.953671], [-112.108901, 46.953445], [-112.109465, 46.953038], [-112.109979, 46.952469], [-112.110197, 46.952042], [-112.111502, 46.949682], [-112.112324, 46.948952], [-112.113184, 46.948533], [-112.114208, 46.948308], [-112.116111, 46.948021], [-112.117289, 46.947669], [-112.118334, 46.94705], [-112.119549, 46.946068], [-112.122402, 46.943642], [-112.123133, 46.943013], [-112.123553, 46.942583], [-112.12389, 46.942171], [-112.124619, 46.941266], [-112.125571, 46.939982], [-112.126015, 46.939377], [-112.1265, 46.938749], [-112.126751, 46.938397], [-112.126995, 46.938014], [-112.127231, 46.93766], [-112.127472, 46.93708], [-112.127553, 46.936521], [-112.127485, 46.935878], [-112.126037, 46.931011], [-112.125843, 46.930596], [-112.125614, 46.930288], [-112.125356, 46.930017], [-112.125, 46.92973], [-112.122981, 46.928549], [-112.122668, 46.928293], [-112.122315, 46.927871], [-112.122099, 46.927296], [-112.122093, 46.926792], [-112.122341, 46.926128], [-112.12333, 46.924835], [-112.123628, 46.924404], [-112.123835, 46.923877], [-112.123883, 46.923325], [-112.123775, 46.9228], [-112.123494, 46.922251], [-112.123242, 46.921939], [-112.123161, 46.921857], [-112.12174, 46.920823], [-112.121416, 46.920602], [-112.120977, 46.920179], [-112.120697, 46.919775], [-112.120503, 46.919327], [-112.120322, 46.918471], [-112.119667, 46.915666], [-112.11939, 46.915074], [-112.119062, 46.914644], [-112.118506, 46.91421], [-112.116708, 46.913328], [-112.116193, 46.912968], [-112.115472, 46.912187], [-112.115356, 46.911933], [-112.115279, 46.911728], [-112.115241, 46.911454], [-112.11523, 46.911175], [-112.115266, 46.910915], [-112.115368, 46.910602], [-112.115446, 46.910438], [-112.115662, 46.910084], [-112.11604, 46.909673], [-112.119395, 46.907257], [-112.119896, 46.906695], [-112.120633, 46.90538], [-112.120979, 46.904986], [-112.122506, 46.903673], [-112.12294, 46.903177], [-112.123172, 46.902727], [-112.123344, 46.902186], [-112.12337, 46.901665], [-112.12326, 46.90114], [-112.123004, 46.900542], [-112.122296, 46.899463], [-112.118791, 46.893932], [-112.118077, 46.892887], [-112.117488, 46.892253], [-112.11672, 46.891638], [-112.11608, 46.891253], [-112.114112, 46.89021], [-112.110716, 46.888379], [-112.110338, 46.888159], [-112.106096, 46.885885], [-112.101398, 46.88336], [-112.094609, 46.879651], [-112.0931, 46.878959], [-112.091311, 46.878288], [-112.089958, 46.877867], [-112.088521, 46.877511], [-112.069016, 46.872724], [-112.049279, 46.867857], [-112.047103, 46.867189], [-112.044993, 46.866382], [-112.043719, 46.865827], [-112.042541, 46.865241], [-112.040586, 46.864168], [-112.039263, 46.863298], [-112.037988, 46.862365], [-112.036738, 46.86133], [-112.014076, 46.842104], [-112.012788, 46.840941], [-112.011749, 46.839918], [-112.010445, 46.83844], [-112.009025, 46.83667], [-112.007922, 46.83499], [-112.007123, 46.833605], [-112.006361, 46.832073], [-112.005882, 46.830963], [-112.003109, 46.824179], [-112.002795, 46.823308], [-112.001559, 46.820272], [-112.001405, 46.819943], [-112.001005, 46.818846], [-112.000667, 46.817632], [-112.000578, 46.816809], [-112.000493, 46.815794], [-112.000516, 46.814928], [-112.000693, 46.813761], [-112.001162, 46.812127], [-112.001628, 46.811112], [-112.002462, 46.809713], [-112.003317, 46.808598], [-112.004049, 46.80782], [-112.005118, 46.806834], [-112.006592, 46.805739], [-112.028016, 46.792156], [-112.029741, 46.790912], [-112.030745, 46.79008], [-112.031484, 46.78938], [-112.032257, 46.788498], [-112.033266, 46.787176], [-112.033873, 46.786179], [-112.034356, 46.785153], [-112.03474, 46.784222], [-112.035041, 46.783106], [-112.035281, 46.78179], [-112.035332, 46.780429], [-112.035162, 46.778932], [-112.034994, 46.7781], [-112.034623, 46.77676], [-112.031439, 46.767593], [-112.030872, 46.766116], [-112.03058, 46.765566], [-112.0298, 46.76452], [-112.029051, 46.763776], [-112.027625, 46.762715], [-112.021142, 46.759474], [-112.019784, 46.758674], [-112.018427, 46.757701], [-112.017026, 46.756401], [-112.01646, 46.75581], [-112.015787, 46.754949], [-112.015034, 46.753726], [-112.014675, 46.752957], [-112.014369, 46.752178], [-112.014113, 46.751252], [-112.013978, 46.7503], [-112.013965, 46.748917], [-112.01407, 46.747974], [-112.014425, 46.74657], [-112.017111, 46.737855], [-112.017375, 46.736784], [-112.017607, 46.735355], [-112.017673, 46.734409], [-112.017685, 46.733581], [-112.017588, 46.732104], [-112.017413, 46.730961], [-112.016851, 46.728893], [-112.016052, 46.726997], [-112.015229, 46.725474], [-112.014031, 46.723297], [-112.013406, 46.721963], [-112.012932, 46.720654], [-112.012536, 46.719097], [-112.012339, 46.717599], [-112.012283, 46.716345], [-112.012185, 46.707222], [-112.012075, 46.70024], [-112.011602, 46.660701], [-112.011601, 46.660313], [-112.011436, 46.648193], [-112.011441, 46.648028], [-112.011427, 46.646569], [-112.011246, 46.631754], [-112.011146, 46.621062], [-112.011132, 46.619553], [-112.01109, 46.616805], [-112.011059, 46.614798], [-112.011048, 46.61406], [-112.011037, 46.613709], [-112.010993, 46.613319], [-112.010941, 46.613077], [-112.010877, 46.612674], [-112.010838, 46.612474], [-112.010746, 46.61207], [-112.01064, 46.611666], [-112.010587, 46.611464], [-112.010508, 46.611263], [-112.010314, 46.610728], [-112.010256, 46.610545], [-112.010198, 46.610369], [-112.009915, 46.609824], [-112.009739, 46.609444], [-112.009564, 46.609128], [-112.009295, 46.608718], [-112.006524, 46.603944], [-112.003906, 46.599455], [-112.002681, 46.597363], [-112.001205, 46.594784], [-112, 46.592799], [-111.999632, 46.592286], [-111.999301, 46.591861], [-111.998522, 46.590983], [-111.99828, 46.590699], [-111.997972, 46.590398], [-111.996867, 46.589396], [-111.996488, 46.589096], [-111.995735, 46.58854], [-111.988743, 46.583855], [-111.983795, 46.580551], [-111.98049, 46.578347], [-111.978312, 46.576892], [-111.976196, 46.575478], [-111.970612, 46.571744], [-111.969019, 46.570651], [-111.966637, 46.569071], [-111.957631, 46.563066], [-111.956867, 46.562459], [-111.956078, 46.56178], [-111.955528, 46.561278], [-111.95503, 46.560765], [-111.954464, 46.560133], [-111.953992, 46.559508], [-111.953623, 46.558994], [-111.953365, 46.558587], [-111.953022, 46.558003], [-111.95261, 46.557224], [-111.951443, 46.55468], [-111.946695, 46.544203], [-111.946304, 46.54331], [-111.945744, 46.542172], [-111.945185, 46.540831], [-111.944611, 46.539567], [-111.943999, 46.538252], [-111.943392, 46.536869], [-111.941186, 46.532081], [-111.940903, 46.53142], [-111.940559, 46.530629], [-111.940379, 46.530109], [-111.940293, 46.529684], [-111.940268, 46.529241], [-111.940319, 46.528857], [-111.940422, 46.528432], [-111.940568, 46.528025], [-111.94074, 46.527676], [-111.940971, 46.527322], [-111.941246, 46.527003], [-111.941667, 46.526619], [-111.943134, 46.525497], [-111.943589, 46.525125], [-111.94401, 46.524718], [-111.944344, 46.524346], [-111.944662, 46.523974], [-111.944902, 46.523625], [-111.945151, 46.52323], [-111.9454, 46.522775], [-111.945606, 46.522326], [-111.945744, 46.521966], [-111.945855, 46.521511], [-111.947984, 46.511742], [-111.948095, 46.51137], [-111.948361, 46.510661], [-111.949408, 46.508074], [-111.952344, 46.500837], [-111.952541, 46.500393], [-111.952825, 46.499944], [-111.953168, 46.49946], [-111.953494, 46.499105], [-111.953932, 46.498775], [-111.954764, 46.49819], [-111.958575, 46.495909], [-111.959245, 46.495501], [-111.960052, 46.495017], [-111.961021, 46.494414], [-111.961871, 46.493912], [-111.962729, 46.493415], [-111.963579, 46.492825], [-111.964025, 46.4925], [-111.964661, 46.492015], [-111.965124, 46.491625], [-111.965656, 46.491123], [-111.966369, 46.49042], [-111.96709, 46.489651], [-111.976325, 46.479522], [-111.976891, 46.478848], [-111.977312, 46.47834], [-111.977733, 46.477808], [-111.977973, 46.477465], [-111.978127, 46.477211], [-111.978282, 46.476974], [-111.97884, 46.475928], [-111.979217, 46.475042], [-111.980033, 46.473044], [-111.980271, 46.472374], [-111.980435, 46.471976], [-111.980677, 46.471349], [-111.980952, 46.470648], [-111.981239, 46.4699], [-111.981493, 46.46921], [-111.981736, 46.468592], [-111.981874, 46.468256], [-111.982316, 46.467018], [-111.982732, 46.465939], [-111.982851, 46.465572], [-111.983251, 46.464294], [-111.983315, 46.464025], [-111.983475, 46.463313], [-111.983818, 46.462054], [-111.98424, 46.460487], [-111.985346, 46.456259], [-111.985844, 46.45432], [-111.986814, 46.450701], [-111.986994, 46.449938], [-111.987251, 46.449004], [-111.987543, 46.4483], [-111.987809, 46.447709], [-111.988255, 46.446833], [-111.990024, 46.443882], [-111.990719, 46.44254], [-111.99283, 46.438169], [-111.995886, 46.431816], [-111.996143, 46.431165], [-111.996341, 46.430644], [-111.996598, 46.42984], [-111.996753, 46.429213], [-111.99689, 46.428609], [-111.997405, 46.425385], [-111.997642, 46.424314], [-111.997932, 46.423545], [-111.998107, 46.423114], [-111.99835, 46.422586], [-111.998575, 46.422164], [-111.998884, 46.421653], [-111.999228, 46.421145], [-111.999447, 46.420848], [-111.999923, 46.420267], [-112.000156, 46.42], [-112.000433, 46.41971], [-112.00089, 46.419258], [-112.001482, 46.418746], [-112.002113, 46.418226], [-112.00272, 46.417745], [-112.002961, 46.417554], [-112.003548, 46.417078], [-112.004211, 46.41654], [-112.004746, 46.416099], [-112.005461, 46.41553], [-112.005985, 46.415112], [-112.006394, 46.414775], [-112.006854, 46.414405], [-112.007245, 46.4141], [-112.00765, 46.413758], [-112.00797, 46.413501], [-112.008169, 46.413338], [-112.008593, 46.412997], [-112.009014, 46.412645], [-112.009385, 46.412341], [-112.009697, 46.412025], [-112.010255, 46.411528], [-112.010946, 46.410853], [-112.011431, 46.410352], [-112.011895, 46.409867], [-112.012165, 46.409569], [-112.012675, 46.408992], [-112.013067, 46.408517], [-112.013404, 46.408107], [-112.013911, 46.407447], [-112.014218, 46.407046], [-112.014492, 46.406653], [-112.015033, 46.405845], [-112.01524, 46.405542], [-112.015368, 46.405329], [-112.015741, 46.40471], [-112.015972, 46.404308], [-112.016318, 46.403688], [-112.016624, 46.403056], [-112.01703, 46.402204], [-112.017522, 46.401159], [-112.017917, 46.400311], [-112.019197, 46.397512], [-112.019961, 46.395938], [-112.020503, 46.394858], [-112.020846, 46.394173], [-112.021172, 46.393579], [-112.021321, 46.393351], [-112.021496, 46.393063], [-112.021714, 46.392713], [-112.021925, 46.392391], [-112.022307, 46.391799], [-112.022576, 46.391431], [-112.02269, 46.391255], [-112.022776, 46.391138], [-112.023072, 46.390745], [-112.023396, 46.390333], [-112.023636, 46.390016], [-112.02407, 46.389472], [-112.02447, 46.388962], [-112.025293, 46.387893], [-112.025518, 46.387587], [-112.025835, 46.387153], [-112.02604, 46.386874], [-112.026296, 46.386489], [-112.026502, 46.386192], [-112.026698, 46.385898], [-112.027204, 46.385069], [-112.027659, 46.384252], [-112.027743, 46.384088], [-112.0278, 46.383963], [-112.02782, 46.383925], [-112.027998, 46.383561], [-112.028106, 46.383379], [-112.028359, 46.382926], [-112.028737, 46.382022], [-112.029617, 46.379591], [-112.030115, 46.378271], [-112.030424, 46.377365], [-112.030767, 46.376572], [-112.031059, 46.375944], [-112.033059, 46.372077], [-112.033626, 46.37091], [-112.033917, 46.370342], [-112.034252, 46.369714], [-112.034492, 46.369293], [-112.03481, 46.368766], [-112.035136, 46.368298], [-112.035445, 46.367848], [-112.03584, 46.367386], [-112.036295, 46.366877], [-112.036879, 46.366249], [-112.043015, 46.359532], [-112.043436, 46.359053], [-112.043754, 46.358638], [-112.044011, 46.358283], [-112.044234, 46.357927], [-112.044475, 46.357501], [-112.044698, 46.357062], [-112.044852, 46.356719], [-112.044972, 46.356357], [-112.045093, 46.355972], [-112.045204, 46.355534], [-112.045281, 46.355173], [-112.04535, 46.354693], [-112.045384, 46.354284], [-112.045376, 46.353828], [-112.045359, 46.353206], [-112.045058, 46.350658], [-112.045032, 46.350072], [-112.045075, 46.349545], [-112.045178, 46.349154], [-112.045317, 46.348787], [-112.045481, 46.348449], [-112.045687, 46.348135], [-112.04591, 46.347851], [-112.046202, 46.347519], [-112.048562, 46.345392], [-112.048862, 46.34509], [-112.049146, 46.34477], [-112.04936, 46.344467], [-112.04954, 46.344153], [-112.049738, 46.343721], [-112.049849, 46.343241], [-112.049884, 46.343028], [-112.049892, 46.342755], [-112.049884, 46.3424], [-112.049806, 46.341931], [-112.049396, 46.34035], [-112.049218, 46.339673], [-112.049159, 46.33933], [-112.049143, 46.339002], [-112.049168, 46.338597], [-112.049229, 46.338284], [-112.049292, 46.338051], [-112.049341, 46.337839], [-112.049439, 46.337616], [-112.049559, 46.337404], [-112.0497, 46.337162], [-112.049936, 46.33687], [-112.05015, 46.336595], [-112.054836, 46.331763], [-112.055497, 46.33117], [-112.055875, 46.33085], [-112.056372, 46.33053], [-112.05687, 46.330263], [-112.057445, 46.330044], [-112.058132, 46.329789], [-112.060261, 46.329273], [-112.060879, 46.329137], [-112.061445, 46.328959], [-112.061994, 46.328752], [-112.062561, 46.32845], [-112.06317, 46.3281], [-112.063625, 46.327786], [-112.064054, 46.327371], [-112.064466, 46.326891], [-112.06523, 46.325741], [-112.065677, 46.325125], [-112.066028, 46.324674], [-112.06638, 46.324318], [-112.066904, 46.323868], [-112.067505, 46.323501], [-112.06826, 46.323109], [-112.069642, 46.322445], [-112.070509, 46.322007], [-112.071195, 46.321663], [-112.071728, 46.321378], [-112.07238, 46.320958], [-112.073067, 46.320519], [-112.073762, 46.320045], [-112.074277, 46.319582], [-112.074732, 46.319138], [-112.075169, 46.318705], [-112.075599, 46.318189], [-112.076053, 46.317626], [-112.076371, 46.317182], [-112.076732, 46.316589], [-112.077058, 46.315949], [-112.077616, 46.31452], [-112.077985, 46.313459], [-112.078268, 46.312795], [-112.078491, 46.31232], [-112.0788, 46.311751], [-112.079212, 46.31117], [-112.079718, 46.310435], [-112.0808, 46.308627], [-112.081126, 46.30801], [-112.081375, 46.307316], [-112.081512, 46.306724], [-112.081607, 46.306131], [-112.081735, 46.304998], [-112.081856, 46.304358], [-112.082079, 46.303688], [-112.082319, 46.303172], [-112.082594, 46.302692], [-112.082946, 46.302205], [-112.083306, 46.301814], [-112.083804, 46.301334], [-112.08447, 46.300831], [-112.085263, 46.300355], [-112.086027, 46.299964], [-112.089752, 46.298446], [-112.090979, 46.297859], [-112.091958, 46.297337], [-112.092799, 46.296756], [-112.093486, 46.296287], [-112.094104, 46.295694], [-112.09473, 46.295036], [-112.095159, 46.294538], [-112.09558, 46.293992], [-112.09594, 46.293381], [-112.096445, 46.292397], [-112.096685, 46.291614], [-112.09702, 46.290422], [-112.097449, 46.288406], [-112.097724, 46.287409], [-112.098136, 46.286312], [-112.099116, 46.284397], [-112.099274, 46.284063], [-112.10053, 46.281349], [-112.101118, 46.280084], [-112.102891, 46.276318], [-112.104027, 46.273935], [-112.104859, 46.272141], [-112.105342, 46.271125], [-112.106274, 46.269146], [-112.107087, 46.267404], [-112.111234, 46.258546], [-112.112659, 46.255466], [-112.114521, 46.251525], [-112.114976, 46.250676], [-112.115508, 46.249899], [-112.115937, 46.249329], [-112.116633, 46.248581], [-112.117748, 46.247554], [-112.11925, 46.246504], [-112.12022, 46.245934], [-112.120967, 46.245566], [-112.121954, 46.245133], [-112.124992, 46.244052], [-112.13288, 46.241298], [-112.133387, 46.24112], [-112.138622, 46.239291], [-112.145034, 46.237065], [-112.146141, 46.236745], [-112.147008, 46.236519], [-112.147806, 46.236394], [-112.148459, 46.236305], [-112.149265, 46.236246], [-112.150089, 46.236222], [-112.151042, 46.236246], [-112.151883, 46.236317], [-112.152699, 46.236436], [-112.153471, 46.236584], [-112.154474, 46.236837], [-112.15899, 46.238152], [-112.160595, 46.238543], [-112.162483, 46.238947], [-112.163367, 46.23922], [-112.164054, 46.239529], [-112.164698, 46.239897], [-112.165273, 46.24033], [-112.166844, 46.241642], [-112.167307, 46.241963], [-112.1685, 46.242669], [-112.169144, 46.243085], [-112.169659, 46.24356], [-112.170912, 46.244966], [-112.171367, 46.245364], [-112.172131, 46.245898], [-112.173204, 46.246522], [-112.174276, 46.247169], [-112.174817, 46.24762], [-112.175298, 46.24816], [-112.175555, 46.248587], [-112.17577, 46.248973], [-112.175924, 46.249424], [-112.176336, 46.250552], [-112.176517, 46.25092], [-112.17674, 46.251276], [-112.176997, 46.251626], [-112.177418, 46.252083], [-112.177787, 46.252344], [-112.178165, 46.252617], [-112.180775, 46.254129], [-112.181007, 46.254269], [-112.183097, 46.255454], [-112.183493, 46.255702], [-112.184164, 46.256171], [-112.184905, 46.256737], [-112.185365, 46.257141], [-112.185885, 46.257562], [-112.186185, 46.2578], [-112.186531, 46.258043], [-112.186972, 46.258275], [-112.187322, 46.258422], [-112.187774, 46.258598], [-112.188155, 46.258726], [-112.188842, 46.25893], [-112.190061, 46.259233], [-112.194417, 46.260296], [-112.194914, 46.260425], [-112.197467, 46.261049], [-112.198131, 46.261215], [-112.198816, 46.261348], [-112.200563, 46.261639], [-112.2012, 46.261735], [-112.201697, 46.261796], [-112.202216, 46.261831], [-112.202661, 46.261847], [-112.203293, 46.261844], [-112.203843, 46.26181], [-112.204643, 46.261713], [-112.205502, 46.261541], [-112.206283, 46.261328], [-112.207158, 46.260978], [-112.20773, 46.260725], [-112.208199, 46.260464], [-112.209872, 46.259361], [-112.210845, 46.258723], [-112.211437, 46.258407], [-112.21171, 46.258294], [-112.211974, 46.258207], [-112.212216, 46.258142], [-112.212463, 46.258092], [-112.212751, 46.258048], [-112.213051, 46.258024], [-112.213334, 46.258019], [-112.213692, 46.258035], [-112.213988, 46.258065], [-112.214247, 46.258108], [-112.214549, 46.258186], [-112.21472, 46.258241], [-112.214928, 46.258313], [-112.21526, 46.258456], [-112.215539, 46.258605], [-112.215859, 46.258826], [-112.216123, 46.259059], [-112.216344, 46.259307], [-112.216538, 46.259564], [-112.217304, 46.260578], [-112.217586, 46.260888], [-112.217887, 46.26118], [-112.218436, 46.261654], [-112.219097, 46.262058], [-112.219818, 46.262508], [-112.220179, 46.262823], [-112.220462, 46.263203], [-112.220625, 46.263654], [-112.220625, 46.264105], [-112.220513, 46.26455], [-112.220273, 46.264918], [-112.21993, 46.265238], [-112.219466, 46.265558], [-112.218514, 46.266039], [-112.218288, 46.266167], [-112.218079, 46.266291], [-112.217885, 46.266411], [-112.217737, 46.266539], [-112.217605, 46.266696], [-112.217501, 46.266818], [-112.217396, 46.266989], [-112.21734, 46.267123], [-112.217303, 46.267314], [-112.217283, 46.267445], [-112.217325, 46.267714], [-112.217476, 46.26824], [-112.217544, 46.268438], [-112.217592, 46.268538], [-112.217628, 46.268615], [-112.217724, 46.268751], [-112.217818, 46.268858], [-112.217936, 46.268959], [-112.21813, 46.269104], [-112.218353, 46.26922], [-112.218727, 46.26937], [-112.219166, 46.269489], [-112.219721, 46.269609], [-112.220202, 46.269698], [-112.220646, 46.269797], [-112.220996, 46.2699], [-112.22144, 46.27005], [-112.222711, 46.270631], [-112.223277, 46.270851], [-112.22399, 46.271017], [-112.224668, 46.271076], [-112.225371, 46.270993], [-112.227174, 46.270608], [-112.227989, 46.270507], [-112.22883, 46.270519], [-112.229611, 46.270726], [-112.232341, 46.271693], [-112.232993, 46.27186], [-112.233723, 46.271966], [-112.234744, 46.271978], [-112.239606, 46.271805], [-112.242182, 46.271693], [-112.246347, 46.271502], [-112.246967, 46.271459], [-112.247491, 46.271415], [-112.247911, 46.271379], [-112.248545, 46.271312], [-112.249143, 46.271217], [-112.250763, 46.270938], [-112.251919, 46.270715], [-112.254271, 46.270264], [-112.255138, 46.270086], [-112.255979, 46.269973], [-112.256923, 46.269854], [-112.257798, 46.269753], [-112.258871, 46.269706], [-112.259953, 46.269694], [-112.260408, 46.269688], [-112.260811, 46.269688], [-112.265927, 46.269838], [-112.266364, 46.269845], [-112.268516, 46.269903], [-112.26928, 46.269923], [-112.269822, 46.269932], [-112.270297, 46.269936], [-112.270632, 46.269932], [-112.271986, 46.269899], [-112.272496, 46.269882], [-112.272871, 46.269875], [-112.273201, 46.26988], [-112.273496, 46.269893], [-112.273848, 46.269921], [-112.274451, 46.269986], [-112.275304, 46.270084], [-112.275736, 46.270129], [-112.276214, 46.270171], [-112.276581, 46.270192], [-112.276954, 46.270201], [-112.277383, 46.270195], [-112.277783, 46.270179], [-112.278217, 46.270151], [-112.278636, 46.270112], [-112.27903, 46.270058], [-112.279521, 46.269977], [-112.280084, 46.269869], [-112.280575, 46.269771], [-112.281036, 46.269673], [-112.281492, 46.269558], [-112.281919, 46.269443], [-112.282407, 46.269304], [-112.28289, 46.269153], [-112.283292, 46.269013], [-112.283616, 46.26889], [-112.283914, 46.268764], [-112.284169, 46.268638], [-112.284394, 46.268516], [-112.284601, 46.268394], [-112.284775, 46.268275], [-112.284955, 46.268131], [-112.285087, 46.268013], [-112.285191, 46.267897], [-112.285277, 46.267793], [-112.285357, 46.267683], [-112.28543, 46.267542], [-112.285505, 46.267379], [-112.285561, 46.267208], [-112.285596, 46.267049], [-112.28561, 46.266897], [-112.285612, 46.266763], [-112.285599, 46.266613], [-112.285569, 46.266448], [-112.285505, 46.266261], [-112.28543, 46.266096], [-112.285194, 46.265664], [-112.285025, 46.265406], [-112.284866, 46.265152], [-112.284775, 46.264974], [-112.284703, 46.264813], [-112.284646, 46.264655], [-112.284614, 46.264507], [-112.284598, 46.264379], [-112.284598, 46.26421], [-112.284617, 46.264062], [-112.284665, 46.263899], [-112.284727, 46.263728], [-112.284759, 46.263669], [-112.284821, 46.263548], [-112.284909, 46.263418], [-112.284995, 46.263313], [-112.285121, 46.263177], [-112.285277, 46.263038], [-112.285408, 46.262932], [-112.285591, 46.262814], [-112.285765, 46.262716], [-112.285998, 46.262614], [-112.286237, 46.262523], [-112.286454, 46.262454], [-112.286722, 46.262397], [-112.286953, 46.262358], [-112.287205, 46.262334], [-112.287431, 46.262324], [-112.287599, 46.262324], [-112.287755, 46.262332], [-112.287908, 46.262343], [-112.28809, 46.262371], [-112.288289, 46.262408], [-112.288533, 46.262469], [-112.28878, 46.262545], [-112.289056, 46.262641], [-112.28941, 46.262779], [-112.292288, 46.263915], [-112.295423, 46.265141], [-112.295772, 46.265276], [-112.296799, 46.265681], [-112.297288, 46.265857], [-112.29766, 46.26597], [-112.297998, 46.266064], [-112.298326, 46.266135], [-112.298693, 46.266202], [-112.29902, 46.266252], [-112.299407, 46.266294], [-112.299973, 46.26635], [-112.301962, 46.266518], [-112.303677, 46.266665], [-112.30416, 46.266715], [-112.304799, 46.266799], [-112.305829, 46.266965], [-112.307302, 46.26725], [-112.307798, 46.267339], [-112.308222, 46.267413], [-112.308627, 46.267476], [-112.308997, 46.267518], [-112.309343, 46.267554], [-112.309617, 46.267578], [-112.309941, 46.267591], [-112.310258, 46.267602], [-112.310641, 46.267611], [-112.310985, 46.267613], [-112.311296, 46.267607], [-112.311658, 46.267591], [-112.312055, 46.267565], [-112.312425, 46.267535], [-112.312795, 46.267492], [-112.313219, 46.267435], [-112.313683, 46.267359], [-112.31408, 46.267281], [-112.314484, 46.267191], [-112.314867, 46.26709], [-112.315256, 46.26698], [-112.315717, 46.266837], [-112.316613, 46.266561], [-112.317018, 46.266437], [-112.317471, 46.266313], [-112.317997, 46.266179], [-112.318925, 46.265949], [-112.320151, 46.265632], [-112.321393, 46.265313], [-112.325427, 46.26428], [-112.326138, 46.264095], [-112.326859, 46.263917], [-112.327936, 46.263635], [-112.330428, 46.263002], [-112.333211, 46.262287], [-112.334007, 46.262079], [-112.335292, 46.261753], [-112.335686, 46.261652], [-112.336028, 46.261559], [-112.33637, 46.261454], [-112.33667, 46.261355], [-112.336988, 46.261243], [-112.337325, 46.261115], [-112.33768, 46.260971], [-112.338038, 46.260813], [-112.338363, 46.260662], [-112.338625, 46.26053], [-112.338933, 46.260366], [-112.340256, 46.259429], [-112.341003, 46.258829], [-112.341337, 46.25845], [-112.341646, 46.258088], [-112.342041, 46.257506], [-112.342264, 46.257085], [-112.342513, 46.256616], [-112.342736, 46.256052], [-112.343048, 46.25519], [-112.343088, 46.254628], [-112.343114, 46.25404], [-112.342997, 46.253333], [-112.342814, 46.252527], [-112.342556, 46.25188], [-112.341586, 46.249939], [-112.341209, 46.248971], [-112.340942, 46.248152], [-112.340797, 46.247393], [-112.340711, 46.246752], [-112.340698, 46.245956], [-112.340797, 46.24509], [-112.340934, 46.2443], [-112.341088, 46.243617], [-112.341363, 46.242745], [-112.343732, 46.236132], [-112.343955, 46.235443], [-112.344213, 46.23479], [-112.34459, 46.234178], [-112.345088, 46.233513], [-112.346384, 46.231827], [-112.346848, 46.231067], [-112.347062, 46.230402], [-112.347208, 46.229666], [-112.34738, 46.228247], [-112.347457, 46.227659], [-112.347706, 46.22662], [-112.348072, 46.225486], [-112.348787, 46.223592], [-112.349165, 46.22241], [-112.349268, 46.221798], [-112.349251, 46.221163], [-112.348908, 46.218621], [-112.348822, 46.218081], [-112.348822, 46.217392], [-112.348959, 46.216762], [-112.34944, 46.215301], [-112.349521, 46.214586], [-112.349491, 46.214013], [-112.349328, 46.213591], [-112.349028, 46.213021], [-112.348633, 46.212492], [-112.348169, 46.211999], [-112.34762, 46.211619], [-112.346856, 46.211156], [-112.345869, 46.21058], [-112.3452, 46.210051], [-112.344728, 46.209576], [-112.343234, 46.207925], [-112.342659, 46.207307], [-112.341921, 46.206677], [-112.340814, 46.205816], [-112.34041, 46.205465], [-112.340067, 46.205085], [-112.339802, 46.204693], [-112.339704, 46.204467], [-112.339636, 46.204269], [-112.339591, 46.204027], [-112.339612, 46.20382], [-112.339732, 46.203256], [-112.340033, 46.20262], [-112.340582, 46.201913], [-112.341621, 46.200885], [-112.342062, 46.200298], [-112.342242, 46.199944], [-112.342396, 46.199584], [-112.342597, 46.199091], [-112.342775, 46.198631], [-112.343062, 46.198034], [-112.343303, 46.197541], [-112.343792, 46.196904], [-112.344693, 46.196127], [-112.345387, 46.19542], [-112.345729, 46.194938], [-112.345917, 46.194643], [-112.346069, 46.194349], [-112.346166, 46.194045], [-112.346238, 46.193697], [-112.34623, 46.193103], [-112.345941, 46.190673], [-112.345878, 46.189902], [-112.345728, 46.189213], [-112.345709, 46.188344], [-112.345571, 46.187533], [-112.345558, 46.186912], [-112.345564, 46.185992], [-112.345749, 46.183453], [-112.346234, 46.177623], [-112.346347, 46.176821], [-112.346473, 46.176275], [-112.34671, 46.175728], [-112.347062, 46.17511], [-112.347483, 46.174486], [-112.34822, 46.173702], [-112.349208, 46.17291], [-112.3521, 46.171121], [-112.352701, 46.170843], [-112.353354, 46.170627], [-112.354238, 46.170443], [-112.355396, 46.170378], [-112.356246, 46.170461], [-112.358186, 46.170764], [-112.359293, 46.170788], [-112.360246, 46.170669], [-112.361216, 46.170425], [-112.362177, 46.170093], [-112.362941, 46.16973], [-112.363559, 46.169296], [-112.364125, 46.168743], [-112.364529, 46.168119], [-112.365267, 46.167103], [-112.365816, 46.166663], [-112.3664, 46.166336], [-112.367129, 46.166098], [-112.367868, 46.165967], [-112.368692, 46.165944], [-112.371773, 46.166039], [-112.372811, 46.166015], [-112.37367, 46.165902], [-112.374588, 46.165706], [-112.375592, 46.165379], [-112.376571, 46.164951], [-112.377318, 46.164529], [-112.378076, 46.163952], [-112.378262, 46.163762], [-112.378614, 46.163364], [-112.378914, 46.162965], [-112.379469, 46.162169], [-112.382055, 46.158245], [-112.384021, 46.155308], [-112.385566, 46.152959], [-112.387334, 46.150272], [-112.388458, 46.14862], [-112.389451, 46.147108], [-112.391789, 46.143594], [-112.398669, 46.133222], [-112.400972, 46.129712], [-112.4066, 46.121302], [-112.407393, 46.120004], [-112.408182, 46.118582], [-112.408541, 46.117899], [-112.409937, 46.114817], [-112.411055, 46.112333], [-112.412388, 46.109365], [-112.413655, 46.106653], [-112.414778, 46.10418], [-112.415206, 46.103314], [-112.415668, 46.102487], [-112.415895, 46.102106], [-112.416464, 46.101176], [-112.417083, 46.100254], [-112.418499, 46.098356], [-112.418915, 46.09769], [-112.419526, 46.096677], [-112.420233, 46.095398], [-112.422479, 46.091058], [-112.424336, 46.087469], [-112.429652, 46.0772], [-112.429822, 46.076884], [-112.431392, 46.07384], [-112.436257, 46.064391], [-112.436937, 46.063074], [-112.438079, 46.061044], [-112.438376, 46.060532], [-112.438666, 46.060066], [-112.43881, 46.05984], [-112.439098, 46.05943], [-112.43934, 46.059064], [-112.439532, 46.058774], [-112.440107, 46.058002], [-112.44038, 46.05765], [-112.441731, 46.056019], [-112.443485, 46.053949], [-112.447802, 46.048851], [-112.45155, 46.044489], [-112.452423, 46.043435], [-112.452928, 46.042858], [-112.453336, 46.042363], [-112.453672, 46.041989], [-112.454055, 46.041551], [-112.454342, 46.04125], [-112.454665, 46.040886], [-112.456067, 46.039558], [-112.457335, 46.038587], [-112.457987, 46.038059], [-112.458512, 46.037625], [-112.458842, 46.037329], [-112.459071, 46.03709], [-112.459314, 46.036842], [-112.459518, 46.03659], [-112.459678, 46.03639], [-112.4598, 46.036215], [-112.459891, 46.036045], [-112.460007, 46.03582], [-112.460114, 46.03551], [-112.460172, 46.035281], [-112.460249, 46.034999], [-112.460282, 46.034713], [-112.460289, 46.034622], [-112.460306, 46.034393], [-112.46034, 46.034001], [-112.460377, 46.033494], [-112.460788, 46.024225], [-112.460858, 46.022999], [-112.461034, 46.021707], [-112.461139, 46.019417], [-112.461174, 46.018182], [-112.461374, 46.013939], [-112.461433, 46.012326], [-112.461598, 46.009767], [-112.46173, 46.007706], [-112.461826, 46.006592], [-112.461968, 46.00602], [-112.462225, 46.00538], [-112.462565, 46.004722], [-112.463191, 46.004036], [-112.464072, 46.003225], [-112.465792, 46.001872], [-112.466856, 46.001037], [-112.469268, 45.999189], [-112.469946, 45.998682], [-112.470667, 45.998003], [-112.47113, 45.997502], [-112.47156, 45.996917], [-112.471963, 45.99622], [-112.473459, 45.993424], [-112.474051, 45.992464], [-112.474317, 45.992004], [-112.475276, 45.990233], [-112.475566, 45.989642], [-112.476695, 45.987673], [-112.477014, 45.987068], [-112.477395, 45.986399], [-112.477976, 45.985327], [-112.478243, 45.984818], [-112.478421, 45.98455], [-112.478851, 45.983744], [-112.479177, 45.983218], [-112.479374, 45.982981], [-112.479538, 45.982795], [-112.47971, 45.982636], [-112.479894, 45.982492], [-112.480132, 45.982326], [-112.48042, 45.982142], [-112.480713, 45.981993], [-112.481018, 45.981862], [-112.481235, 45.981784], [-112.481491, 45.981708], [-112.481819, 45.981612], [-112.482235, 45.981526], [-112.482576, 45.981485], [-112.482792, 45.981468], [-112.483106, 45.981448], [-112.484674, 45.981411], [-112.485533, 45.981393], [-112.486142, 45.981346], [-112.486888, 45.981343], [-112.488415, 45.981329], [-112.48942, 45.981323], [-112.489915, 45.981311], [-112.490321, 45.981291], [-112.491262, 45.981187], [-112.492077, 45.981092], [-112.492755, 45.980966], [-112.49327, 45.980829], [-112.494197, 45.980567], [-112.495345, 45.9802], [-112.496229, 45.979974], [-112.496927, 45.979831], [-112.497708, 45.979756], [-112.4986, 45.979744], [-112.499484, 45.979774], [-112.500257, 45.979863], [-112.501047, 45.980042], [-112.501432, 45.980146], [-112.501772, 45.980251], [-112.502162, 45.980391], [-112.502441, 45.980505], [-112.502715, 45.980622], [-112.503036, 45.980793], [-112.503323, 45.980946], [-112.503646, 45.981153], [-112.503934, 45.981351], [-112.504203, 45.981566], [-112.504427, 45.981757], [-112.504926, 45.982217], [-112.505529, 45.982793], [-112.505933, 45.983132], [-112.506153, 45.983296], [-112.506336, 45.983431], [-112.506571, 45.983586], [-112.506888, 45.983789], [-112.507196, 45.983956], [-112.507471, 45.984097], [-112.507799, 45.984272], [-112.508512, 45.98456], [-112.508794, 45.984651], [-112.50906, 45.984738], [-112.509415, 45.984842], [-112.509964, 45.984998], [-112.512836, 45.985714], [-112.514063, 45.986044], [-112.515749, 45.986501], [-112.516874, 45.986847], [-112.529602, 45.991803], [-112.530598, 45.992131], [-112.531516, 45.992333], [-112.5324, 45.992476], [-112.533044, 45.992536], [-112.533894, 45.992542], [-112.538675, 45.992548], [-112.539481, 45.992542], [-112.544571, 45.992548], [-112.54755, 45.9925], [-112.549472, 45.992518], [-112.552176, 45.992548], [-112.553189, 45.992614], [-112.554167, 45.992739], [-112.555008, 45.992942], [-112.559798, 45.994337], [-112.560613, 45.994587], [-112.561471, 45.994951], [-112.562235, 45.995404], [-112.562816, 45.995834], [-112.563071, 45.996064], [-112.563323, 45.996326], [-112.563586, 45.996638], [-112.563846, 45.996975], [-112.564136, 45.997384], [-112.564414, 45.997764], [-112.565162, 45.998934], [-112.565743, 45.999683], [-112.566655, 46.000955], [-112.567437, 46.001903], [-112.56802, 46.002517], [-112.568741, 46.003096], [-112.569419, 46.003525], [-112.570063, 46.003859], [-112.570964, 46.004318], [-112.571822, 46.004693], [-112.572895, 46.005009], [-112.573848, 46.00523], [-112.574775, 46.005379], [-112.575728, 46.005463], [-112.577187, 46.005504], [-112.577788, 46.005522], [-112.582056, 46.005676], [-112.594885, 46.006166], [-112.604584, 46.006524], [-112.605451, 46.006619], [-112.607283, 46.006843], [-112.610896, 46.007381], [-112.611152, 46.005948], [-112.61121, 46.005792], [-112.611238, 46.005609], [-112.608284, 46.004266], [-112.607739, 46.003921], [-112.607191, 46.003516], [-112.606953, 46.003377], [-112.606693, 46.003274], [-112.606342, 46.003193], [-112.606239, 46.00317], [-112.604638, 46.002827], [-112.603223, 46.002511], [-112.603052, 46.002473], [-112.60203, 46.002278], [-112.601516, 46.002219], [-112.601276, 46.00221], [-112.600883, 46.002212], [-112.600496, 46.00223], [-112.600404, 46.002208], [-112.60036, 46.002173], [-112.600327, 46.002117], [-112.600314, 46.002059], [-112.600333, 46.001927], [-112.600381, 46.001853], [-112.60049, 46.001777], [-112.600599, 46.001745], [-112.600713, 46.001737], [-112.600862, 46.001739], [-112.601544, 46.001798], [-112.601657, 46.001792], [-112.601804, 46.001767], [-112.601918, 46.001724], [-112.602008, 46.001673], [-112.602239, 46.001528], [-112.602389, 46.001412], [-112.602658, 46.001185], [-112.60307, 46.000822], [-112.603218, 46.000656], [-112.603405, 46.000474], [-112.60366, 46.000513], [-112.603842, 46.000532], [-112.604078, 46.000549], [-112.604254, 46.000547], [-112.605018, 46.00043], [-112.605491, 46.000395], [-112.605766, 46.000402], [-112.606076, 46.000466], [-112.606209, 46.00049], [-112.606364, 46.000494], [-112.606548, 46.000466], [-112.607005, 46.000359], [-112.607412, 46.000312], [-112.611416, 46.000299], [-112.611653, 46.000242], [-112.611812, 46.000145], [-112.611932, 45.999965], [-112.611906, 45.993731], [-112.611956, 45.990322], [-112.611963, 45.987384], [-112.611945, 45.986839], [-112.611983, 45.986517], [-112.612211, 45.985826], [-112.612974, 45.983191], [-112.613351, 45.982047], [-112.613508, 45.981723], [-112.613655, 45.98152], [-112.613973, 45.981284], [-112.61573, 45.980235], [-112.61642, 45.979923], [-112.617405, 45.979519], [-112.618068, 45.979213], [-112.618669, 45.978865], [-112.620246, 45.977619], [-112.620586, 45.977289], [-112.621106, 45.976592], [-112.622154, 45.975079], [-112.622235, 45.974699], [-112.622281, 45.973317], [-112.622078, 45.970234], [-112.619831, 45.970225], [-112.614288, 45.970203] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-112.181396484375, 48.88639177703194] } } ] } ================================================ FILE: packages/turf-nearest-point-on-line/test/out/expectedLocation - points behind first point.json ================================================ [0, 0, 0, 0, 0, 0, 0, 0] ================================================ FILE: packages/turf-nearest-point-on-line/test/out/expectedLocation - points in front of last point.json ================================================ [0.362058, 0.362058, 0.362058, 0.362058] ================================================ FILE: packages/turf-nearest-point-on-line/test/out/expectedLocation - points on joints.json ================================================ [ [0, 0.162908, 0.362058], [ 0, 435.152731, 848.38422, 1506.62747, 1877.71515, 2362.640364, 2951.524644, 3346.548084, 3711.226929 ], [ 0, 0.011338, 0.021306, 0.033964, 0.057049, 0.082838, 0.161154, 0.207251, 0.243733, 0.287901, 0.320556, 0.396017, 0.491916 ] ] ================================================ FILE: packages/turf-nearest-point-on-line/test/out/expectedLocation - points on top of line.json ================================================ [ 0, 0.030566, 0.061133, 0.091699, 0.122265, 0.152831, 0.183398, 0.213964, 0.24453, 0.275096 ] ================================================ FILE: packages/turf-nearest-point-on-line/test/out/line-northern-latitude-#344.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-94.048462, 74.982183], [-94.498901, 74.870757], [-94.65271, 74.735401], [-94.724121, 74.585728] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-94.51639, 74.85549], [-94.713135, 74.870757] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-94.713135, 74.870757] } }, { "type": "Feature", "properties": { "lineStringIndex": 0, "segmentIndex": 1, "totalDistance": 19.748879, "lineDistance": 19.748879, "segmentDistance": 1.771897, "pointDistance": 5.959562, "dist": 5.959562, "multiFeatureIndex": 0, "location": 19.748879, "index": 1, "marker-color": "#F0F" }, "geometry": { "type": "Point", "coordinates": [-94.51639, 74.85549] } } ] } ================================================ FILE: packages/turf-nearest-point-on-line/test/out/line1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-97.881317, 22.466878], [-97.867584, 22.299261], [-97.820892, 22.17596], [-97.619019, 21.87042] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-97.856502, 22.270017], [-97.879944, 22.26241] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-97.879944, 22.26241] } }, { "type": "Feature", "properties": { "lineStringIndex": 0, "segmentIndex": 1, "totalDistance": 22.137494, "lineDistance": 22.137494, "segmentDistance": 3.445915, "pointDistance": 2.556271, "dist": 2.556271, "multiFeatureIndex": 0, "location": 22.137494, "index": 1, "marker-color": "#F0F" }, "geometry": { "type": "Point", "coordinates": [-97.856502, 22.270017] } } ] } ================================================ FILE: packages/turf-nearest-point-on-line/test/out/multiLine1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-70.576172, -18.979026], [-76.201172, -47.694974], [-75.9375, -52.48278], [-72.597656, -55.078367], [-68.115234, -56.072035], [-64.599609, -55.078367] ], [ [-44.296875, -23.402765], [-47.900391, -25.641526], [-47.900391, -28.381735], [-53.789062, -35.317366], [-56.337891, -35.245619], [-56.074219, -37.09024], [-57.480469, -38.754083], [-61.259766, -39.571822], [-61.699219, -40.979898], [-62.929687, -41.508577], [-64.599609, -41.442726], [-62.753906, -42.163403], [-64.599609, -43.771094], [-65.214844, -45.151053], [-66.884766, -45.521744], [-67.148437, -46.255847], [-65.214844, -46.679594], [-65.214844, -48.166085], [-66.621094, -49.095452], [-66.884766, -50.233152], [-68.554687, -50.736455], [-67.763672, -52.214339] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-67.763672, -52.214339], [-66.489258, -52.895649] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-66.489258, -52.895649] } }, { "type": "Feature", "properties": { "lineStringIndex": 1, "segmentIndex": 21, "totalDistance": 9479.011715, "lineDistance": 4800.716022, "segmentDistance": 173.221741, "pointDistance": 114.725451, "dist": 114.725451, "multiFeatureIndex": 1, "location": 9479.011715, "index": 21, "marker-color": "#F0F" }, "geometry": { "type": "Point", "coordinates": [-67.763672, -52.214339] } } ] } ================================================ FILE: packages/turf-nearest-point-on-line/test/out/multiLine2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [129.990234, -31.728167], [123.75, -28.07198], [122.519531, -24.846565], [122.695313, -19.890723] ], [ [127.265625, -13.667338], [133.154297, -13.581921], [136.933594, -16.972741], [140.537109, -22.024546], [141.503906, -25.403585] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [127.265625, -13.667338], [124.189453, -15.538376] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [124.189453, -15.538376] } }, { "type": "Feature", "properties": { "lineStringIndex": 1, "segmentIndex": 0, "totalDistance": 1656.139708, "lineDistance": 0, "segmentDistance": 0, "pointDistance": 390.942725, "dist": 390.942725, "multiFeatureIndex": 1, "location": 1656.139708, "index": 0, "marker-color": "#F0F" }, "geometry": { "type": "Point", "coordinates": [127.265625, -13.667338] } } ] } ================================================ FILE: packages/turf-nearest-point-on-line/test/out/multiLine3.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [122.036133, -19.766704], [125.419922, -18.437925], [132.451172, -18.646245], [132.802734, -14.944785], [139.130859, -18.479609], [133.857422, -22.309426], [142.075195, -24.367114], [144.09668, -18.020528] ], [ [128.144531, -20.385825], [119.663086, -20.797201], [119.53125, -17.644022], [127.089844, -15.411319], [130.209961, -12.21118] ], [ [126.826172, -17.014768], [130.03418, -14.392118], [133.945313, -13.282719] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [123.930125, -19.033194], [123.486328, -18.020528] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [123.486328, -18.020528] } }, { "type": "Feature", "properties": { "lineStringIndex": 0, "segmentIndex": 0, "totalDistance": 214.735285, "lineDistance": 214.735285, "segmentDistance": 214.735285, "pointDistance": 121.937841, "dist": 121.937841, "multiFeatureIndex": 0, "location": 214.735285, "index": 0, "marker-color": "#F0F" }, "geometry": { "type": "Point", "coordinates": [123.930125, -19.033194] } } ] } ================================================ FILE: packages/turf-nearest-point-on-line/test/out/route1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-79.254923, 36.98394], [-79.254923, 36.983939], [-79.255326, 36.9838], [-79.255401, 36.983774], [-79.25576, 36.983664], [-79.256795, 36.984137], [-79.257537, 36.984478], [-79.258539, 36.984925], [-79.259498, 36.985353], [-79.260286, 36.985712], [-79.261405, 36.986222], [-79.262933, 36.986928], [-79.263237, 36.987071], [-79.263755, 36.987296], [-79.264086, 36.987423], [-79.264167, 36.987446], [-79.264338, 36.987486], [-79.264414, 36.987501], [-79.264618, 36.987531], [-79.2648, 36.987542], [-79.264982, 36.987537], [-79.265163, 36.987517], [-79.26703, 36.987355], [-79.267952, 36.98726], [-79.268404, 36.987226], [-79.268771, 36.987197], [-79.26955, 36.987117], [-79.271398, 36.986946], [-79.271488, 36.986941], [-79.271698, 36.986925], [-79.271936, 36.986898], [-79.272231, 36.986852], [-79.272474, 36.986785], [-79.272711, 36.986705], [-79.272895, 36.986632], [-79.273059, 36.986552], [-79.273646, 36.986245], [-79.274224, 36.985925], [-79.274887, 36.985592], [-79.275308, 36.985365], [-79.275672, 36.98517], [-79.276249, 36.984876], [-79.277101, 36.984433], [-79.277425, 36.984259], [-79.277918, 36.983982], [-79.27799, 36.98395], [-79.278179, 36.98385], [-79.278261, 36.9838], [-79.278335, 36.983745], [-79.278421, 36.983666], [-79.27844, 36.983647], [-79.278502, 36.983577], [-79.278548, 36.983511], [-79.278614, 36.983381], [-79.278654, 36.983273], [-79.278711, 36.983011], [-79.278763, 36.98269], [-79.278806, 36.982485], [-79.278866, 36.982282], [-79.278952, 36.982101], [-79.279023, 36.981984], [-79.280178, 36.980418], [-79.280259, 36.980319], [-79.280355, 36.980229], [-79.280419, 36.98018], [-79.280578, 36.980082], [-79.280666, 36.980038], [-79.280783, 36.979994], [-79.280908, 36.979963], [-79.281301, 36.979913], [-79.281646, 36.979874], [-79.282145, 36.979835], [-79.282797, 36.97977], [-79.283144, 36.979743], [-79.283618, 36.97972], [-79.28399, 36.979706], [-79.284447, 36.979695], [-79.284904, 36.979697], [-79.286913, 36.979638], [-79.287201, 36.979628], [-79.287954, 36.979612], [-79.288037, 36.979611], [-79.288397, 36.97962], [-79.288697, 36.979643], [-79.289908, 36.979722], [-79.289994, 36.979724], [-79.290136, 36.979716], [-79.290248, 36.979699], [-79.290503, 36.979632], [-79.291043, 36.979454], [-79.291563, 36.979269], [-79.292467, 36.97896], [-79.292759, 36.978877], [-79.292963, 36.978832], [-79.293286, 36.978778], [-79.293549, 36.978746], [-79.293649, 36.978738], [-79.293755, 36.978729], [-79.293858, 36.978731], [-79.294028, 36.978747], [-79.294162, 36.978771], [-79.294243, 36.9788], [-79.294439, 36.978883], [-79.294626, 36.978979], [-79.294782, 36.979072], [-79.294921, 36.979174], [-79.295023, 36.979263], [-79.295281, 36.979534], [-79.295458, 36.979739], [-79.296347, 36.980843], [-79.296549, 36.981064], [-79.296594, 36.981095], [-79.296695, 36.981144], [-79.296788, 36.98117], [-79.296916, 36.981184], [-79.297032, 36.981182], [-79.297147, 36.981165], [-79.297933, 36.980962], [-79.298145, 36.980893], [-79.298401, 36.98079], [-79.298602, 36.980696], [-79.298795, 36.980593], [-79.299134, 36.980402], [-79.299407, 36.980244], [-79.299963, 36.9799], [-79.301767, 36.97881], [-79.301976, 36.978691], [-79.3021, 36.978619], [-79.302508, 36.978369], [-79.302614, 36.978309], [-79.3028, 36.97822], [-79.302995, 36.978145], [-79.303113, 36.978114], [-79.303153, 36.978249], [-79.303232, 36.978565], [-79.303319, 36.978989], [-79.303326, 36.979184], [-79.303313, 36.979346], [-79.30324, 36.979748], [-79.303136, 36.980362], [-79.303088, 36.980609], [-79.302996, 36.981143], [-79.302982, 36.981226], [-79.302977, 36.981321], [-79.302986, 36.98144], [-79.303013, 36.981556], [-79.303057, 36.98167], [-79.303191, 36.9819], [-79.303336, 36.982126], [-79.303702, 36.982652], [-79.304322, 36.983486], [-79.304588, 36.98382], [-79.304756, 36.984051], [-79.304903, 36.984229], [-79.305059, 36.984403], [-79.305145, 36.984487], [-79.305336, 36.984648], [-79.305612, 36.98486], [-79.30569, 36.984915], [-79.305765, 36.984974], [-79.305944, 36.98513], [-79.306108, 36.985295], [-79.306259, 36.985469], [-79.306333, 36.98557], [-79.306437, 36.985737], [-79.306524, 36.985911], [-79.306595, 36.98609], [-79.306677, 36.986365], [-79.306734, 36.98662], [-79.306773, 36.986878], [-79.306759, 36.986998], [-79.306724, 36.987146], [-79.306621, 36.987426], [-79.306591, 36.987545], [-79.306555, 36.987745], [-79.306536, 36.987984], [-79.30653, 36.988172], [-79.306539, 36.988321], [-79.30655, 36.988398], [-79.306566, 36.988507], [-79.306673, 36.988967], [-79.306789, 36.989416], [-79.30681, 36.989518], [-79.306831, 36.98969], [-79.306833, 36.989828], [-79.306822, 36.989888], [-79.306771, 36.990067], [-79.306696, 36.99024], [-79.306569, 36.990463], [-79.306374, 36.99078], [-79.30633, 36.990863], [-79.306292, 36.990972], [-79.306271, 36.991084], [-79.306268, 36.991229], [-79.306282, 36.991421], [-79.306323, 36.991648], [-79.30657, 36.992516], [-79.306601, 36.992703], [-79.306614, 36.992892], [-79.306598, 36.993111], [-79.306569, 36.993287], [-79.306553, 36.993345], [-79.306526, 36.993432], [-79.306466, 36.993574], [-79.306313, 36.993848], [-79.305971, 36.994382], [-79.305826, 36.994647], [-79.305382, 36.995598], [-79.305197, 36.995963], [-79.305065, 36.996284], [-79.304983, 36.996521], [-79.304954, 36.99668], [-79.30495, 36.996815], [-79.304959, 36.996932], [-79.304988, 36.997077], [-79.305024, 36.99719], [-79.305111, 36.99739], [-79.305197, 36.997567], [-79.30532, 36.997782], [-79.305429, 36.997949], [-79.305577, 36.998153], [-79.306017, 36.99873], [-79.306204, 36.998965], [-79.306407, 36.999192], [-79.306624, 36.999411], [-79.30672, 36.999489], [-79.306828, 36.999557], [-79.306922, 36.999602], [-79.307072, 36.999656], [-79.307354, 36.999723], [-79.307628, 36.999778], [-79.308892, 36.999988], [-79.309029, 37.00002], [-79.309135, 37.000056], [-79.30926, 37.000112], [-79.309374, 37.00018], [-79.309478, 37.000259], [-79.30959, 37.000372], [-79.309743, 37.000552], [-79.31029, 37.001344], [-79.31037, 37.001451], [-79.310486, 37.001568], [-79.310598, 37.001654], [-79.310697, 37.001714], [-79.310838, 37.001785], [-79.310991, 37.001844], [-79.31115, 37.001891], [-79.311632, 37.001979], [-79.312359, 37.002135], [-79.312455, 37.002156], [-79.312915, 37.002271], [-79.313026, 37.002296], [-79.313639, 37.002422], [-79.314311, 37.002515], [-79.314769, 37.002553], [-79.315227, 37.002582], [-79.315352, 37.002604], [-79.315472, 37.002641], [-79.315543, 37.002685], [-79.315621, 37.00275], [-79.315685, 37.002824], [-79.315725, 37.002889], [-79.315888, 37.002832], [-79.316221, 37.002733], [-79.316448, 37.002678], [-79.31752, 37.002455], [-79.318524, 37.002275], [-79.319059, 37.002211], [-79.319268, 37.002199], [-79.319435, 37.0022], [-79.319651, 37.002214], [-79.319786, 37.002226], [-79.320258, 37.002279], [-79.320522, 37.002298], [-79.320786, 37.002302], [-79.320953, 37.002288], [-79.321116, 37.002258], [-79.321274, 37.002213], [-79.321381, 37.00217], [-79.321762, 37.002001], [-79.322382, 37.001698], [-79.322844, 37.001466], [-79.323023, 37.001376], [-79.323292, 37.001249], [-79.32357, 37.001134], [-79.323943, 37.001003], [-79.324098, 37.000958], [-79.324162, 37.000945], [-79.32513, 37.000843], [-79.325325, 37.000814], [-79.325517, 37.000777], [-79.325753, 37.000719], [-79.327186, 37.000266], [-79.327482, 37.000173], [-79.327802, 37.00008], [-79.328598, 36.999838], [-79.329158, 36.999654], [-79.329204, 36.999715], [-79.329343, 36.999894], [-79.32942, 36.999975], [-79.329588, 37.000125], [-79.329742, 37.000239], [-79.329777, 37.000256], [-79.329869, 37.000291], [-79.329988, 37.000315], [-79.330091, 37.000318], [-79.33027, 37.000316], [-79.330449, 37.000298], [-79.331035, 37.000223], [-79.331427, 37.000184], [-79.331855, 37.000129], [-79.333009, 37.000023], [-79.334568, 36.999869], [-79.335002, 36.999826], [-79.33552, 36.999806], [-79.33606, 36.999814], [-79.336208, 36.999833], [-79.336352, 36.999866], [-79.33649, 36.999913], [-79.336644, 36.999986], [-79.336856, 37.000123], [-79.336962, 37.000203], [-79.337096, 37.000316], [-79.337325, 37.000539], [-79.337519, 37.000761], [-79.338522, 37.001965], [-79.339126, 37.002688], [-79.339574, 37.003185], [-79.340385, 37.004106], [-79.340479, 37.004212], [-79.340603, 37.004341], [-79.340773, 37.00449], [-79.340929, 37.004602], [-79.341131, 37.004723], [-79.341632, 37.004968], [-79.341875, 37.005087], [-79.342172, 37.005233], [-79.342594, 37.00542], [-79.343189, 37.005708], [-79.343817, 37.006011], [-79.344455, 37.006335], [-79.344712, 37.00647], [-79.345697, 37.006916], [-79.345837, 37.006985], [-79.346006, 37.00708], [-79.346221, 37.007218], [-79.347403, 37.008016], [-79.347493, 37.008071], [-79.347634, 37.008171], [-79.347763, 37.008281], [-79.347971, 37.008497], [-79.348051, 37.008623], [-79.348135, 37.008786], [-79.348201, 37.008954], [-79.34825, 37.009126], [-79.348316, 37.00954], [-79.348397, 37.010196], [-79.34854, 37.01111], [-79.348616, 37.011496], [-79.348778, 37.012266], [-79.349159, 37.013946], [-79.349315, 37.014628], [-79.349636, 37.015919], [-79.349688, 37.016183], [-79.349795, 37.016628], [-79.349854, 37.016827], [-79.349915, 37.01701], [-79.350064, 37.017337], [-79.350135, 37.017464], [-79.350159, 37.017499], [-79.350325, 37.017735], [-79.35042, 37.017865], [-79.350584, 37.018129], [-79.35072, 37.01842], [-79.350808, 37.018683], [-79.35089, 37.018981], [-79.350968, 37.019317], [-79.35119, 37.020219], [-79.351251, 37.020445], [-79.351346, 37.020719], [-79.351414, 37.020888], [-79.351505, 37.021079], [-79.351682, 37.021459], [-79.351825, 37.02176], [-79.352185, 37.022473], [-79.352628, 37.023433], [-79.352751, 37.023743], [-79.35282, 37.023863], [-79.352895, 37.023965], [-79.353012, 37.024078], [-79.353078, 37.024127], [-79.353186, 37.024186], [-79.353325, 37.024244], [-79.353398, 37.024265], [-79.353421, 37.02427], [-79.353621, 37.024315], [-79.353675, 37.024321], [-79.35392, 37.024336], [-79.354286, 37.024379], [-79.354423, 37.024385], [-79.354844, 37.024375], [-79.355058, 37.024359], [-79.355214, 37.024339], [-79.355354, 37.024308], [-79.355614, 37.024238], [-79.355718, 37.024209], [-79.355965, 37.024125], [-79.356147, 37.024057], [-79.356485, 37.02394], [-79.356546, 37.023919], [-79.356797, 37.023824], [-79.356964, 37.023769], [-79.357077, 37.023757], [-79.357196, 37.023767], [-79.357262, 37.023786], [-79.357309, 37.023811], [-79.35735, 37.023849], [-79.357388, 37.023905], [-79.357541, 37.024317], [-79.357583, 37.024391], [-79.357634, 37.024438], [-79.357685, 37.024467], [-79.357747, 37.024487], [-79.35783, 37.024497], [-79.357899, 37.024495], [-79.35801, 37.02448], [-79.358102, 37.02446], [-79.358409, 37.025941], [-79.358471, 37.026316], [-79.358502, 37.026637], [-79.358517, 37.026844], [-79.358519, 37.027185], [-79.358497, 37.027679], [-79.358457, 37.028033], [-79.358398, 37.028378], [-79.358301, 37.028779], [-79.358082, 37.029574], [-79.357957, 37.030026], [-79.357813, 37.030609], [-79.357745, 37.03095], [-79.357685, 37.031344], [-79.357656, 37.031612], [-79.357621, 37.032199], [-79.357619, 37.032445], [-79.357631, 37.032766], [-79.357637, 37.032893], [-79.357666, 37.033258], [-79.357711, 37.033639], [-79.357789, 37.034066], [-79.357875, 37.034441], [-79.357922, 37.034622], [-79.358521, 37.036938], [-79.358613, 37.037315], [-79.358687, 37.037658], [-79.358786, 37.038217], [-79.358856, 37.038791], [-79.358911, 37.039356], [-79.358965, 37.0401], [-79.359051, 37.041306], [-79.359073, 37.041825], [-79.359059, 37.042471], [-79.359012, 37.042954], [-79.35899, 37.04313], [-79.358922, 37.043537], [-79.358829, 37.043973], [-79.358773, 37.044171], [-79.358704, 37.044417], [-79.358541, 37.044914], [-79.358352, 37.045429], [-79.357856, 37.04678], [-79.357794, 37.046961], [-79.357564, 37.047556], [-79.357409, 37.047915], [-79.357338, 37.048062], [-79.357278, 37.048184], [-79.356942, 37.048801], [-79.356841, 37.048967], [-79.356589, 37.049349], [-79.356363, 37.049677], [-79.354212, 37.052783], [-79.353972, 37.053148], [-79.353865, 37.053295], [-79.353452, 37.053889], [-79.352197, 37.055711], [-79.352126, 37.055808], [-79.351983, 37.056023], [-79.351596, 37.056539], [-79.351413, 37.056761], [-79.35122, 37.056979], [-79.351018, 37.057191], [-79.35075, 37.057445], [-79.350603, 37.057584], [-79.35029, 37.057856], [-79.348032, 37.059645], [-79.346954, 37.060488], [-79.345892, 37.06133], [-79.345295, 37.061797], [-79.344778, 37.062208], [-79.344716, 37.062258], [-79.343942, 37.062866], [-79.343259, 37.06342], [-79.342925, 37.063722], [-79.342732, 37.063907], [-79.342302, 37.064351], [-79.342055, 37.06463], [-79.341843, 37.064885], [-79.341424, 37.065452], [-79.341048, 37.066036], [-79.340718, 37.066647], [-79.340066, 37.068047], [-79.338982, 37.070343], [-79.336951, 37.074656], [-79.336672, 37.075265], [-79.335622, 37.077497], [-79.335265, 37.078252], [-79.33489, 37.079062], [-79.334833, 37.079182], [-79.334222, 37.080477], [-79.333262, 37.082521], [-79.333001, 37.083079], [-79.332628, 37.084028], [-79.332548, 37.084278], [-79.332388, 37.08478], [-79.332201, 37.085539], [-79.33204, 37.086421], [-79.33196, 37.086978], [-79.331907, 37.087757], [-79.331871, 37.088536], [-79.33185, 37.089317], [-79.331805, 37.090324], [-79.331772, 37.091338], [-79.331768, 37.092235], [-79.33183, 37.093576], [-79.331943, 37.095022], [-79.332045, 37.096198], [-79.332341, 37.099713], [-79.332397, 37.100421], [-79.332436, 37.101086], [-79.332443, 37.1013], [-79.332438, 37.10199], [-79.332418, 37.102426], [-79.332391, 37.102795], [-79.332337, 37.103324], [-79.332244, 37.103966], [-79.332205, 37.104185], [-79.332175, 37.104355], [-79.332056, 37.104907], [-79.332041, 37.104978], [-79.331903, 37.105494], [-79.331733, 37.106053], [-79.331559, 37.106562], [-79.33131, 37.107195], [-79.331178, 37.107501], [-79.330959, 37.107973], [-79.330748, 37.108399], [-79.330489, 37.108876], [-79.330365, 37.109093], [-79.330155, 37.10944], [-79.329757, 37.110058], [-79.328813, 37.111446], [-79.328701, 37.111611], [-79.327118, 37.113932], [-79.327107, 37.113947], [-79.326498, 37.114802], [-79.326178, 37.115223], [-79.326128, 37.115289], [-79.32568, 37.115855], [-79.325061, 37.116595], [-79.324816, 37.116878], [-79.324497, 37.117235], [-79.324161, 37.117601], [-79.323816, 37.117964], [-79.323589, 37.118194], [-79.323104, 37.118678], [-79.322015, 37.119732], [-79.320826, 37.12089], [-79.320279, 37.121415], [-79.31993, 37.121729], [-79.319276, 37.122271], [-79.318828, 37.122609], [-79.318377, 37.122925], [-79.317535, 37.123462], [-79.316595, 37.123987], [-79.315586, 37.124473], [-79.314958, 37.124742], [-79.311931, 37.125973], [-79.303986, 37.129196], [-79.303177, 37.129555], [-79.302367, 37.129915], [-79.30095, 37.130617], [-79.298871, 37.131691], [-79.298008, 37.132146], [-79.293574, 37.134491], [-79.293108, 37.134749], [-79.292712, 37.134937], [-79.292278, 37.135125], [-79.291836, 37.1353], [-79.291351, 37.135473], [-79.290905, 37.135615], [-79.290365, 37.135772], [-79.289641, 37.135941], [-79.289078, 37.136055], [-79.288222, 37.136184], [-79.287781, 37.136228], [-79.287205, 37.136269], [-79.281895, 37.136526], [-79.280512, 37.136607], [-79.279731, 37.13667], [-79.278968, 37.136747], [-79.277922, 37.136872], [-79.276244, 37.13712], [-79.273494, 37.137624], [-79.272005, 37.137904], [-79.271794, 37.137944], [-79.266159, 37.138985], [-79.265643, 37.139056], [-79.265084, 37.139119], [-79.264404, 37.139177], [-79.263826, 37.139213], [-79.263263, 37.139234], [-79.262666, 37.139241], [-79.262103, 37.139234], [-79.26149, 37.139213], [-79.260895, 37.13918], [-79.260488, 37.139149], [-79.257811, 37.138859], [-79.253283, 37.138354], [-79.251817, 37.138189], [-79.251311, 37.138138], [-79.25082, 37.138104], [-79.250344, 37.138087], [-79.249949, 37.138091], [-79.249141, 37.138125], [-79.248701, 37.138169], [-79.248255, 37.138232], [-79.247815, 37.138303], [-79.247404, 37.138388], [-79.246983, 37.138492], [-79.24619, 37.138741], [-79.246034, 37.138799], [-79.245567, 37.138991], [-79.243639, 37.139795], [-79.242121, 37.140435], [-79.241618, 37.140648], [-79.241125, 37.14089], [-79.240755, 37.141103], [-79.240471, 37.141293], [-79.240237, 37.141475], [-79.240023, 37.141661], [-79.239659, 37.142024], [-79.238717, 37.143115], [-79.238653, 37.143189], [-79.238443, 37.143404], [-79.23822, 37.14361], [-79.237972, 37.143817], [-79.237711, 37.144013], [-79.237424, 37.144206], [-79.237139, 37.144378], [-79.236846, 37.144536], [-79.23672, 37.144599], [-79.235366, 37.145185], [-79.235031, 37.145327], [-79.233118, 37.146139], [-79.232943, 37.146214], [-79.23213, 37.146559], [-79.23159, 37.146789], [-79.231268, 37.146943], [-79.230971, 37.147103], [-79.230723, 37.147248], [-79.230589, 37.147333], [-79.230303, 37.147527], [-79.230067, 37.147704], [-79.229831, 37.147902], [-79.229608, 37.148108], [-79.229398, 37.148324], [-79.229192, 37.148559], [-79.229002, 37.148802], [-79.228823, 37.149065], [-79.228683, 37.149299], [-79.228557, 37.149537], [-79.228436, 37.149807], [-79.228332, 37.15008], [-79.22824, 37.150371], [-79.228165, 37.150679], [-79.228144, 37.150787], [-79.22795, 37.1522], [-79.227939, 37.152282], [-79.227922, 37.152405], [-79.227831, 37.1531], [-79.227768, 37.153577], [-79.22775, 37.153704], [-79.227707, 37.153951], [-79.227614, 37.154338], [-79.227519, 37.154642], [-79.227394, 37.154981], [-79.227259, 37.155289], [-79.227113, 37.155579], [-79.227008, 37.155764], [-79.226979, 37.155814], [-79.226931, 37.155892], [-79.22673, 37.156196], [-79.226531, 37.156466], [-79.226359, 37.156679], [-79.226091, 37.156981], [-79.225836, 37.157239], [-79.225577, 37.157477], [-79.225307, 37.157704], [-79.225033, 37.15791], [-79.224838, 37.158043], [-79.223223, 37.159106], [-79.222625, 37.159494], [-79.222577, 37.159525], [-79.222526, 37.159559], [-79.222269, 37.159725], [-79.221758, 37.160065], [-79.219427, 37.161585], [-79.218294, 37.162324], [-79.218211, 37.162378], [-79.216923, 37.163217], [-79.216426, 37.163539], [-79.215909, 37.16389], [-79.215531, 37.164171], [-79.215221, 37.164425], [-79.214936, 37.164678], [-79.214674, 37.164929], [-79.214292, 37.165324], [-79.214244, 37.165374], [-79.213081, 37.166582], [-79.212642, 37.167038], [-79.212368, 37.167324], [-79.212048, 37.167658], [-79.211768, 37.16795], [-79.211486, 37.168245], [-79.211416, 37.168318], [-79.211008, 37.168744], [-79.210963, 37.168791], [-79.210689, 37.16908], [-79.210304, 37.16953], [-79.2101, 37.169782], [-79.209923, 37.170006], [-79.209526, 37.170538], [-79.209343, 37.170798], [-79.207037, 37.174039], [-79.206764, 37.174435], [-79.206634, 37.174641], [-79.206469, 37.174929], [-79.206273, 37.17532], [-79.20615, 37.175603], [-79.206073, 37.175802], [-79.206026, 37.175929], [-79.205916, 37.176273], [-79.205845, 37.176539], [-79.205757, 37.176917], [-79.205696, 37.177164], [-79.205658, 37.177349], [-79.205603, 37.177589], [-79.205562, 37.177759], [-79.205539, 37.177863], [-79.205487, 37.178091], [-79.205427, 37.178344], [-79.205364, 37.178607], [-79.205297, 37.178889], [-79.205253, 37.179068], [-79.20519, 37.179332], [-79.205122, 37.179618], [-79.205055, 37.179895], [-79.204997, 37.180138], [-79.204614, 37.181773], [-79.204588, 37.181883], [-79.204488, 37.182314], [-79.204319, 37.183043], [-79.204265, 37.183268], [-79.204123, 37.18388], [-79.203924, 37.184747], [-79.203855, 37.185167], [-79.203781, 37.185725], [-79.203767, 37.185869], [-79.203714, 37.186727], [-79.203688, 37.188358], [-79.203665, 37.189574], [-79.203624, 37.192626], [-79.203627, 37.192665], [-79.203588, 37.193792], [-79.203572, 37.194229], [-79.203568, 37.194309], [-79.203559, 37.194539], [-79.203553, 37.194676], [-79.203543, 37.194919], [-79.203531, 37.195199], [-79.203502, 37.195859], [-79.203483, 37.196276], [-79.203468, 37.196579], [-79.203458, 37.196792], [-79.203433, 37.197322], [-79.203422, 37.197563], [-79.20341, 37.197824], [-79.203397, 37.198095], [-79.20339, 37.198254], [-79.203379, 37.19847], [-79.203358, 37.198936], [-79.20334, 37.19935], [-79.203304, 37.200071], [-79.203262, 37.200536], [-79.203244, 37.200686], [-79.203162, 37.201241], [-79.203073, 37.201722], [-79.20306, 37.201793], [-79.203026, 37.201977], [-79.202836, 37.203003], [-79.202752, 37.203459], [-79.202563, 37.204478], [-79.202452, 37.205079], [-79.202395, 37.205385], [-79.201856, 37.208299], [-79.201805, 37.208574], [-79.201702, 37.209126], [-79.201673, 37.209268], [-79.201619, 37.209479], [-79.201573, 37.209638], [-79.201505, 37.209836], [-79.201407, 37.210085], [-79.201284, 37.210341], [-79.201114, 37.21064], [-79.201026, 37.210776], [-79.200882, 37.21098], [-79.200649, 37.211282], [-79.200396, 37.211554], [-79.199727, 37.212167], [-79.199637, 37.212249], [-79.199553, 37.212325], [-79.199391, 37.212473], [-79.199159, 37.212684], [-79.19865, 37.213144], [-79.197756, 37.213946], [-79.197588, 37.214097], [-79.197252, 37.214415], [-79.196922, 37.214731], [-79.196487, 37.215166], [-79.196055, 37.215596], [-79.195714, 37.216042], [-79.195395, 37.216449], [-79.194175, 37.218086], [-79.193942, 37.2184], [-79.193714, 37.218705], [-79.193339, 37.219208], [-79.193103, 37.219523], [-79.192804, 37.219924], [-79.192465, 37.220384], [-79.191972, 37.221056], [-79.191665, 37.221486], [-79.191271, 37.222039], [-79.191066, 37.222328], [-79.190837, 37.222648], [-79.190786, 37.222724], [-79.190591, 37.223024], [-79.190561, 37.223069], [-79.190114, 37.223762], [-79.189976, 37.223994], [-79.189786, 37.224314], [-79.189538, 37.224731], [-79.189441, 37.224896], [-79.189231, 37.225287], [-79.188873, 37.225949], [-79.188647, 37.226369], [-79.188578, 37.226497], [-79.188422, 37.22682], [-79.187747, 37.228226], [-79.187638, 37.228454], [-79.186752, 37.230317], [-79.186236, 37.23142], [-79.186183, 37.231531], [-79.186143, 37.231633], [-79.186012, 37.231905], [-79.185971, 37.232009], [-79.185901, 37.232204], [-79.185821, 37.232467], [-79.185783, 37.232629], [-79.185746, 37.232787], [-79.185712, 37.232989], [-79.185564, 37.234115], [-79.18554, 37.234342], [-79.185535, 37.234388], [-79.185527, 37.234464], [-79.185489, 37.234824], [-79.185459, 37.235133], [-79.185442, 37.235447], [-79.185444, 37.235802], [-79.185467, 37.236157], [-79.185494, 37.236478], [-79.185509, 37.236629], [-79.185568, 37.237037], [-79.185613, 37.237268], [-79.185642, 37.237403], [-79.185719, 37.237706], [-79.185791, 37.237965], [-79.185811, 37.238037], [-79.185899, 37.238345], [-79.185952, 37.238527], [-79.18597, 37.23859], [-79.186042, 37.238834], [-79.186525, 37.240494], [-79.186638, 37.240882], [-79.186786, 37.241392], [-79.186995, 37.242108], [-79.187061, 37.242336], [-79.187075, 37.242384], [-79.187298, 37.243149], [-79.187378, 37.243422], [-79.187527, 37.243936], [-79.187774, 37.244774], [-79.187853, 37.245008], [-79.187949, 37.245331], [-79.187975, 37.245426], [-79.18809, 37.245933], [-79.188158, 37.246339], [-79.188193, 37.246639], [-79.188214, 37.246935], [-79.188219, 37.247189], [-79.188219, 37.247284], [-79.188204, 37.247624], [-79.188173, 37.24795], [-79.188121, 37.248287], [-79.188078, 37.248502], [-79.188012, 37.248777], [-79.187964, 37.248948], [-79.18752, 37.250322], [-79.187502, 37.250377], [-79.187461, 37.250489], [-79.187101, 37.251604], [-79.186977, 37.251986], [-79.186803, 37.252487], [-79.186647, 37.252862], [-79.186473, 37.253233], [-79.1864, 37.253375], [-79.186369, 37.253435], [-79.186196, 37.253727], [-79.186096, 37.253883], [-79.185846, 37.254253], [-79.185619, 37.254587], [-79.184816, 37.255765], [-79.184332, 37.256471], [-79.184251, 37.256583], [-79.183919, 37.257073], [-79.183282, 37.258009], [-79.183273, 37.258023], [-79.182658, 37.258928], [-79.182428, 37.259266], [-79.182236, 37.259548], [-79.182189, 37.259617], [-79.181677, 37.260371], [-79.180889, 37.261527], [-79.180329, 37.262346], [-79.179966, 37.262877], [-79.178561, 37.264935], [-79.177834, 37.265998], [-79.17762, 37.266312], [-79.177577, 37.266375], [-79.177344, 37.266717], [-79.177268, 37.266828], [-79.175738, 37.269066], [-79.175293, 37.269718], [-79.175059, 37.270062], [-79.175024, 37.270113], [-79.174746, 37.27052], [-79.174499, 37.270885], [-79.174225, 37.271286], [-79.17318, 37.27282], [-79.172596, 37.273676], [-79.172062, 37.274457], [-79.17205, 37.274476], [-79.171892, 37.274707], [-79.171746, 37.274919], [-79.170612, 37.276581], [-79.170091, 37.277344], [-79.170074, 37.277368], [-79.169014, 37.27887], [-79.168768, 37.279279], [-79.168446, 37.279751], [-79.168095, 37.28026], [-79.167791, 37.280704], [-79.167004, 37.281854], [-79.166839, 37.282126], [-79.166686, 37.282417], [-79.166553, 37.282715], [-79.166455, 37.282978], [-79.166365, 37.283271], [-79.166331, 37.283406], [-79.166277, 37.283662], [-79.166236, 37.283934], [-79.166211, 37.284233], [-79.166208, 37.284331], [-79.16621, 37.284606], [-79.166232, 37.284894], [-79.166273, 37.28518], [-79.166341, 37.285491], [-79.166394, 37.28568], [-79.166419, 37.28576], [-79.16653, 37.286061], [-79.16656, 37.286133], [-79.166601, 37.286228], [-79.167073, 37.287187], [-79.167342, 37.287727], [-79.167647, 37.288335], [-79.167961, 37.288961], [-79.168213, 37.289466], [-79.168669, 37.290363], [-79.169252, 37.291516], [-79.169707, 37.292425], [-79.170019, 37.293049], [-79.170164, 37.293337], [-79.170762, 37.294525], [-79.171017, 37.295032], [-79.171197, 37.29539], [-79.171228, 37.295451], [-79.171707, 37.296402], [-79.171854, 37.296694], [-79.172057, 37.297099], [-79.172329, 37.297639], [-79.172756, 37.298485], [-79.172921, 37.29877], [-79.173118, 37.299071], [-79.173326, 37.299351], [-79.1734, 37.299443], [-79.173711, 37.299824], [-79.174643, 37.300928], [-79.177789, 37.304649], [-79.17841, 37.305383], [-79.179563, 37.306751], [-79.18128, 37.308787], [-79.181492, 37.309036], [-79.181949, 37.309573], [-79.182599, 37.310336], [-79.183198, 37.311046], [-79.183775, 37.311729], [-79.183964, 37.311947], [-79.18428, 37.312314], [-79.18536, 37.313557], [-79.18553, 37.313753], [-79.18588, 37.314159], [-79.186286, 37.314624], [-79.186592, 37.314975], [-79.186893, 37.31532], [-79.187155, 37.315623], [-79.187287, 37.315796], [-79.187433, 37.315958], [-79.187603, 37.316193], [-79.187705, 37.316348], [-79.187781, 37.316469], [-79.187895, 37.316666], [-79.188063, 37.316995], [-79.188211, 37.31734], [-79.188267, 37.317488], [-79.188574, 37.31828], [-79.18873, 37.318682], [-79.188773, 37.318793], [-79.188818, 37.318907], [-79.188983, 37.319332], [-79.189167, 37.319817], [-79.18919, 37.319881], [-79.189276, 37.320122], [-79.189293, 37.320183], [-79.189372, 37.320484], [-79.189407, 37.320635], [-79.189445, 37.320825], [-79.189477, 37.321015], [-79.189492, 37.321115], [-79.189533, 37.321458], [-79.189536, 37.321492], [-79.189586, 37.322119], [-79.189602, 37.322319], [-79.189637, 37.32275], [-79.189647, 37.322876], [-79.189704, 37.323523], [-79.189737, 37.323892], [-79.189747, 37.323997], [-79.189761, 37.324147], [-79.189781, 37.324375], [-79.189798, 37.324545], [-79.189823, 37.324722], [-79.189861, 37.324935], [-79.189896, 37.325095], [-79.189922, 37.3252], [-79.190034, 37.325593], [-79.190115, 37.325884], [-79.190279, 37.326471], [-79.190558, 37.327468], [-79.190626, 37.327737], [-79.190656, 37.327855], [-79.190719, 37.328102], [-79.190893, 37.328783], [-79.19093, 37.328914], [-79.19114, 37.329665], [-79.191197, 37.329849], [-79.191289, 37.330174], [-79.191411, 37.330604], [-79.191427, 37.330662], [-79.191549, 37.331144], [-79.191612, 37.331407], [-79.191674, 37.33166], [-79.191713, 37.331945], [-79.191731, 37.332216], [-79.191727, 37.3324], [-79.191718, 37.332618], [-79.191688, 37.333114], [-79.191671, 37.333265], [-79.191652, 37.333506], [-79.191625, 37.33369], [-79.191591, 37.333978], [-79.191586, 37.334109], [-79.191605, 37.334336], [-79.19161, 37.334672], [-79.191612, 37.334771], [-79.191619, 37.335165], [-79.191615, 37.335425], [-79.191612, 37.335464], [-79.191591, 37.335798], [-79.191573, 37.33597], [-79.19153, 37.336198], [-79.191511, 37.3363], [-79.191476, 37.336481], [-79.191396, 37.336901], [-79.191254, 37.33724], [-79.191108, 37.337564], [-79.190891, 37.337852], [-79.190707, 37.338004], [-79.190446, 37.338136], [-79.190159, 37.338232], [-79.189809, 37.338303], [-79.189504, 37.338343], [-79.189039, 37.338414], [-79.188663, 37.33847], [-79.188351, 37.338526], [-79.18802, 37.338571], [-79.18767, 37.338617], [-79.187276, 37.338677], [-79.18683, 37.338758], [-79.186448, 37.338854], [-79.186232, 37.338986], [-79.186034, 37.339158], [-79.185913, 37.339381], [-79.185862, 37.339654], [-79.185792, 37.339958], [-79.185735, 37.340246], [-79.185608, 37.340565], [-79.185474, 37.340849], [-79.185264, 37.341152], [-79.185009, 37.341421], [-79.184748, 37.341658], [-79.184399, 37.341989], [-79.184093, 37.342254], [-79.183658, 37.342682], [-79.18294, 37.343536], [-79.182113, 37.344505], [-79.181077, 37.345699], [-79.180004, 37.346871], [-79.178729, 37.348196], [-79.177389, 37.349407], [-79.177129, 37.349621], [-79.176626, 37.350036], [-79.173129, 37.353092], [-79.169752, 37.356318], [-79.169186, 37.356859], [-79.166439, 37.359647], [-79.165165, 37.360856], [-79.164528, 37.361444], [-79.163946, 37.361878], [-79.162943, 37.362614], [-79.161891, 37.363349], [-79.159885, 37.364693], [-79.158866, 37.365389], [-79.157915, 37.36609], [-79.156262, 37.367299], [-79.153378, 37.36939], [-79.1513, 37.370777], [-79.148798, 37.372337], [-79.146813, 37.373529], [-79.146135, 37.37394], [-79.145298, 37.374385], [-79.144399, 37.374808], [-79.143032, 37.375351], [-79.142887, 37.375396], [-79.141407, 37.375861], [-79.13952, 37.376309], [-79.137442, 37.376753], [-79.136385, 37.376976], [-79.135221, 37.37722], [-79.134065, 37.377456], [-79.132756, 37.377733], [-79.131505, 37.377997], [-79.130701, 37.378165], [-79.129655, 37.378385], [-79.128812, 37.378561], [-79.127809, 37.378776], [-79.127166, 37.378891], [-79.124907, 37.379433], [-79.122351, 37.380007], [-79.119924, 37.380555], [-79.118369, 37.380958], [-79.116892, 37.381492], [-79.11429, 37.382508], [-79.111589, 37.383564], [-79.110432, 37.384015], [-79.108723, 37.384663], [-79.107004, 37.385341], [-79.10533, 37.38597], [-79.10529, 37.385969], [-79.104874, 37.386095], [-79.104406, 37.386191], [-79.103958, 37.38624], [-79.103328, 37.386271], [-79.101681, 37.386155], [-79.101144, 37.386117], [-79.100418, 37.386038], [-79.097991, 37.385843], [-79.09636, 37.385744], [-79.095982, 37.385658], [-79.095845, 37.385614], [-79.09571, 37.385555], [-79.095567, 37.38548], [-79.095427, 37.38539], [-79.095308, 37.385296], [-79.09517, 37.385161], [-79.09509, 37.385054], [-79.094998, 37.384905], [-79.094916, 37.384737], [-79.094844, 37.384528], [-79.094656, 37.383845], [-79.094531, 37.38345], [-79.094325, 37.383054], [-79.094038, 37.38276], [-79.093621, 37.382467], [-79.093187, 37.382294], [-79.092689, 37.382201], [-79.092284, 37.382201], [-79.091903, 37.382257], [-79.091551, 37.382364], [-79.091187, 37.382541], [-79.090959, 37.382723], [-79.090789, 37.382882], [-79.090589, 37.383115], [-79.090443, 37.383376], [-79.090284, 37.383744], [-79.090225, 37.384], [-79.090179, 37.384541], [-79.090062, 37.385779], [-79.089925, 37.386644], [-79.089849, 37.387226], [-79.089779, 37.387541], [-79.089689, 37.387836], [-79.0895, 37.38838], [-79.089436, 37.388633], [-79.089405, 37.388841], [-79.089289, 37.389685], [-79.089161, 37.39093], [-79.089008, 37.392008], [-79.08881, 37.394069], [-79.088768, 37.394579], [-79.088645, 37.395885], [-79.088477, 37.397207], [-79.087956, 37.401181], [-79.087825, 37.401823], [-79.087665, 37.402308], [-79.087554, 37.402629], [-79.08736, 37.403142], [-79.087142, 37.403562], [-79.086923, 37.403937], [-79.086762, 37.404195], [-79.086439, 37.404708], [-79.086251, 37.405002], [-79.085982, 37.405393], [-79.085647, 37.405896], [-79.085037, 37.406824], [-79.084691, 37.407346], [-79.084239, 37.407998], [-79.084081, 37.408208], [-79.083969, 37.408376], [-79.083852, 37.408534], [-79.083752, 37.408705], [-79.083641, 37.408893], [-79.08253, 37.41059], [-79.082107, 37.41155], [-79.081937, 37.412163], [-79.081833, 37.412538], [-79.081757, 37.413176], [-79.08171, 37.413903], [-79.081751, 37.414774], [-79.081781, 37.415758], [-79.081777, 37.417393], [-79.081646, 37.41901], [-79.081485, 37.420256], [-79.081292, 37.421219], [-79.081057, 37.422257], [-79.080513, 37.424117], [-79.07951, 37.427155], [-79.078061, 37.431195], [-79.077269, 37.433524], [-79.076993, 37.434391], [-79.076647, 37.435495], [-79.076395, 37.436608], [-79.076304, 37.437254], [-79.076229, 37.438019], [-79.076213, 37.439312], [-79.076213, 37.439413], [-79.076155, 37.442774], [-79.07614, 37.443179], [-79.076116, 37.443841], [-79.076046, 37.446058], [-79.075976, 37.449173], [-79.076002, 37.451689], [-79.076065, 37.4523], [-79.076262, 37.453], [-79.076579, 37.453683], [-79.076982, 37.454312], [-79.077536, 37.45501], [-79.079739, 37.457229], [-79.080689, 37.458217], [-79.081531, 37.459252], [-79.082085, 37.460038], [-79.082441, 37.460738], [-79.082708, 37.461304], [-79.082968, 37.461981], [-79.083137, 37.462694], [-79.083265, 37.463513], [-79.083293, 37.464338], [-79.083287, 37.464745], [-79.083277, 37.465166], [-79.083236, 37.465743], [-79.083136, 37.466259], [-79.082678, 37.468029], [-79.082438, 37.469156], [-79.08215, 37.470371], [-79.081963, 37.471033], [-79.081827, 37.471415], [-79.081408, 37.472342], [-79.081005, 37.47309], [-79.080296, 37.474045], [-79.079641, 37.474751], [-79.078249, 37.476094], [-79.077451, 37.477058], [-79.076776, 37.477863], [-79.076213, 37.478711], [-79.075638, 37.479763], [-79.075274, 37.480624], [-79.074869, 37.481821], [-79.074675, 37.482594], [-79.074634, 37.482892], [-79.074593, 37.483204], [-79.07457, 37.483627], [-79.074448, 37.484732], [-79.074331, 37.485753], [-79.074167, 37.486518], [-79.073888, 37.487326], [-79.073467, 37.488074], [-79.07305, 37.488846], [-79.072616, 37.489619], [-79.072018, 37.490699], [-79.07163, 37.49136], [-79.070791, 37.492896], [-79.070146, 37.494186], [-79.06953, 37.495438], [-79.068703, 37.497026], [-79.067817, 37.498799], [-79.067177, 37.500098], [-79.066497, 37.501471], [-79.066168, 37.502341], [-79.065974, 37.503063], [-79.065895, 37.503746], [-79.065857, 37.504329], [-79.065851, 37.505804], [-79.065851, 37.506847], [-79.065828, 37.508187], [-79.065831, 37.509824], [-79.0658, 37.510657], [-79.065769, 37.511273], [-79.065628, 37.51191], [-79.065455, 37.512506], [-79.065165, 37.513111], [-79.064807, 37.513823], [-79.064426, 37.514512], [-79.063986, 37.515424], [-79.063804, 37.515903], [-79.063545, 37.516788], [-79.063328, 37.51796], [-79.063264, 37.519296], [-79.063311, 37.520208], [-79.063487, 37.521209], [-79.063645, 37.522214], [-79.063845, 37.523275], [-79.06425, 37.525364], [-79.064871, 37.528602], [-79.065376, 37.531264], [-79.066057, 37.534819], [-79.066725, 37.538252], [-79.0674, 37.541904], [-79.06794, 37.544546], [-79.068021, 37.545221], [-79.068093, 37.545891], [-79.068075, 37.546616], [-79.067977, 37.547323], [-79.067805, 37.547989], [-79.06729, 37.549617], [-79.066508, 37.552189], [-79.066203, 37.55312], [-79.065916, 37.554199], [-79.06571, 37.554864], [-79.065358, 37.555901], [-79.06462, 37.558162], [-79.064236, 37.559374], [-79.064086, 37.559848], [-79.063835, 37.560896], [-79.063609, 37.561383], [-79.063256, 37.561986], [-79.062896, 37.562503], [-79.062134, 37.563345], [-79.061625, 37.563753], [-79.06094, 37.564213], [-79.058641, 37.565583], [-79.05758, 37.566208], [-79.056639, 37.566768], [-79.055935, 37.567192], [-79.055742, 37.567302], [-79.055553, 37.567416], [-79.055246, 37.567615], [-79.054927, 37.567838], [-79.054748, 37.567977], [-79.054525, 37.568169], [-79.05429, 37.568391], [-79.054239, 37.568442], [-79.054034, 37.568657], [-79.053873, 37.56885], [-79.053657, 37.569143], [-79.053524, 37.569347], [-79.053368, 37.569618], [-79.053228, 37.569894], [-79.053172, 37.570026], [-79.053043, 37.570358], [-79.05286, 37.57095], [-79.052677, 37.571527], [-79.052485, 37.572133], [-79.052132, 37.573261], [-79.051632, 37.57486], [-79.051348, 37.57574], [-79.051123, 37.576286], [-79.051087, 37.576361], [-79.050788, 37.576916], [-79.050662, 37.577116], [-79.050472, 37.577395], [-79.050278, 37.577652], [-79.050057, 37.577924], [-79.049759, 37.578262], [-79.049412, 37.578608], [-79.049047, 37.578931], [-79.047001, 37.580602], [-79.046515, 37.580994], [-79.046166, 37.58126], [-79.045909, 37.581455], [-79.04561, 37.58167], [-79.045264, 37.581887], [-79.044961, 37.582077], [-79.044149, 37.582573], [-79.04353, 37.582927], [-79.04291, 37.58327], [-79.042129, 37.58371], [-79.041873, 37.583864], [-79.041806, 37.58391], [-79.041621, 37.584017], [-79.041414, 37.584155], [-79.041178, 37.58431], [-79.040635, 37.584689], [-79.039894, 37.585255], [-79.039608, 37.585491], [-79.03912, 37.585904], [-79.038845, 37.586155], [-79.038474, 37.586513], [-79.03781, 37.587198], [-79.037358, 37.587719], [-79.037086, 37.588056], [-79.036877, 37.588331], [-79.036498, 37.588836], [-79.036258, 37.589205], [-79.035926, 37.589739], [-79.034645, 37.591992], [-79.034482, 37.592286], [-79.034097, 37.592957], [-79.033913, 37.593255], [-79.033669, 37.593669], [-79.033006, 37.594819], [-79.032654, 37.595452], [-79.032044, 37.596522], [-79.031678, 37.597159], [-79.031353, 37.597735], [-79.03004, 37.600074], [-79.029644, 37.600763], [-79.028963, 37.601951], [-79.028685, 37.602397], [-79.02851, 37.602662], [-79.028221, 37.603043], [-79.027978, 37.603341], [-79.027692, 37.60368], [-79.027548, 37.60383], [-79.027306, 37.604072], [-79.027105, 37.604269], [-79.02697, 37.604392], [-79.026652, 37.60468], [-79.026083, 37.605207], [-79.026036, 37.60525], [-79.025989, 37.605294], [-79.025872, 37.605402], [-79.02555, 37.605685], [-79.025303, 37.605893], [-79.025239, 37.605951], [-79.025075, 37.606102], [-79.024795, 37.606358], [-79.024408, 37.606702], [-79.024072, 37.607013], [-79.024053, 37.607031], [-79.023787, 37.607264], [-79.023498, 37.607516], [-79.023027, 37.607911], [-79.022811, 37.60807], [-79.022583, 37.608218], [-79.022393, 37.608329], [-79.022103, 37.608478], [-79.021864, 37.608585], [-79.021424, 37.608752], [-79.020855, 37.608965], [-79.020271, 37.609195], [-79.020171, 37.609236], [-79.019921, 37.609348], [-79.019569, 37.609526], [-79.019341, 37.609661], [-79.019134, 37.609801], [-79.018938, 37.609951], [-79.018736, 37.61013], [-79.018557, 37.610318], [-79.018408, 37.6105], [-79.018273, 37.610689], [-79.018177, 37.610845], [-79.018077, 37.611005], [-79.017942, 37.61127], [-79.01775, 37.611733], [-79.017583, 37.612195], [-79.017453, 37.612536], [-79.01736, 37.612779], [-79.017077, 37.613518], [-79.016316, 37.615651], [-79.016211, 37.615921], [-79.015957, 37.616661], [-79.015442, 37.618041], [-79.015171, 37.618767], [-79.015044, 37.619085], [-79.014896, 37.619401], [-79.014725, 37.619699], [-79.014609, 37.619891], [-79.014507, 37.620046], [-79.014326, 37.620291], [-79.014076, 37.620611], [-79.013882, 37.620808], [-79.013583, 37.621079], [-79.012998, 37.621504], [-79.01238, 37.621893], [-79.010646, 37.622959], [-79.01003, 37.623323], [-79.009112, 37.623886], [-79.007841, 37.62468], [-79.007669, 37.624786], [-79.00613, 37.625753], [-79.00574, 37.625992], [-79.004933, 37.626484], [-79.004251, 37.626912], [-79.004139, 37.626981], [-79.003154, 37.627592], [-79.001641, 37.628516], [-79.001111, 37.628835], [-79.00072, 37.62907], [-79.000623, 37.62914], [-79.000217, 37.629394], [-78.998912, 37.630202], [-78.998196, 37.630645], [-78.997598, 37.631025], [-78.997526, 37.631071], [-78.997241, 37.631274], [-78.996875, 37.631534], [-78.996217, 37.63205], [-78.995656, 37.632525], [-78.995017, 37.633129], [-78.994464, 37.633668], [-78.993794, 37.634338], [-78.992582, 37.635539], [-78.99241, 37.635715], [-78.992112, 37.636], [-78.991971, 37.636127], [-78.991598, 37.636454], [-78.991319, 37.636676], [-78.991111, 37.636827], [-78.990724, 37.637089], [-78.990344, 37.637324], [-78.989967, 37.637537], [-78.989578, 37.637737], [-78.988855, 37.638052], [-78.98807, 37.638382], [-78.986736, 37.63892], [-78.986454, 37.639034], [-78.985803, 37.639316], [-78.984897, 37.639687], [-78.98388, 37.640096], [-78.983117, 37.640414], [-78.982726, 37.640573], [-78.981774, 37.640959], [-78.979687, 37.64182], [-78.978231, 37.642417], [-78.977005, 37.64291], [-78.97646, 37.643116], [-78.975777, 37.643333], [-78.975711, 37.643354], [-78.97542, 37.643425], [-78.974834, 37.643551], [-78.974604, 37.64359], [-78.974067, 37.643681], [-78.973393, 37.643752], [-78.972559, 37.643813], [-78.972242, 37.643839], [-78.970006, 37.64399], [-78.96903, 37.64406], [-78.968589, 37.644095], [-78.968224, 37.644136], [-78.967889, 37.644182], [-78.967664, 37.644226], [-78.967387, 37.644293], [-78.967224, 37.644341], [-78.966957, 37.64443], [-78.966688, 37.644536], [-78.966474, 37.644631], [-78.966164, 37.644789], [-78.965983, 37.644902], [-78.965692, 37.645098], [-78.965428, 37.645294], [-78.965238, 37.645456], [-78.965063, 37.645628], [-78.964898, 37.645816], [-78.964762, 37.645992], [-78.964605, 37.646219], [-78.964465, 37.646453], [-78.964354, 37.646672], [-78.96426, 37.646896], [-78.964184, 37.647124], [-78.964105, 37.647472], [-78.964045, 37.647822], [-78.963795, 37.650137], [-78.963771, 37.650446], [-78.963726, 37.650831], [-78.963699, 37.651104], [-78.963637, 37.651545], [-78.963559, 37.651968], [-78.963475, 37.652244], [-78.963403, 37.652439], [-78.963343, 37.65259], [-78.963259, 37.652771], [-78.963211, 37.652855], [-78.963159, 37.652948], [-78.963044, 37.653119], [-78.962876, 37.65334], [-78.962692, 37.653554], [-78.961989, 37.654258], [-78.961507, 37.654728], [-78.961039, 37.655181], [-78.960337, 37.655875], [-78.96023, 37.655972], [-78.960126, 37.656071], [-78.959777, 37.656385], [-78.959596, 37.656559], [-78.959428, 37.656733], [-78.95894, 37.657212], [-78.958347, 37.65781], [-78.957955, 37.658265], [-78.957902, 37.65834], [-78.957703, 37.658582], [-78.956957, 37.659613], [-78.956, 37.660952], [-78.95555, 37.661601], [-78.95521, 37.662149], [-78.955078, 37.662367], [-78.954742, 37.662988], [-78.954584, 37.663297], [-78.954305, 37.663917], [-78.954148, 37.6643], [-78.953981, 37.664751], [-78.953842, 37.665162], [-78.953791, 37.665348], [-78.953693, 37.665702], [-78.953658, 37.665836], [-78.953519, 37.666441], [-78.953449, 37.666806], [-78.953407, 37.667104], [-78.953324, 37.667763], [-78.953292, 37.668183], [-78.953221, 37.669156], [-78.953153, 37.670098], [-78.953142, 37.670264], [-78.953141, 37.6704], [-78.953072, 37.671177], [-78.95304, 37.671615], [-78.952995, 37.672174], [-78.952947, 37.672942], [-78.95292, 37.673225], [-78.952878, 37.673819], [-78.952829, 37.674339], [-78.952797, 37.674686], [-78.952784, 37.674804], [-78.952747, 37.675024], [-78.952692, 37.675301], [-78.952624, 37.675578], [-78.952561, 37.675784], [-78.952486, 37.675985], [-78.952442, 37.676122], [-78.952386, 37.676257], [-78.95232, 37.676433], [-78.952115, 37.676852], [-78.952045, 37.676981], [-78.951895, 37.677259], [-78.951765, 37.677478], [-78.951015, 37.678688], [-78.950642, 37.679294], [-78.950106, 37.680167], [-78.949932, 37.680439], [-78.949555, 37.681057], [-78.948514, 37.682749], [-78.948346, 37.683014], [-78.94819, 37.68327], [-78.947933, 37.683687], [-78.947735, 37.683997], [-78.946949, 37.685284], [-78.946763, 37.685577], [-78.946171, 37.686544], [-78.946077, 37.686718], [-78.945972, 37.686928], [-78.945848, 37.687201], [-78.945794, 37.687349], [-78.945689, 37.687661], [-78.945632, 37.687901], [-78.945568, 37.688266], [-78.945541, 37.688542], [-78.945537, 37.688659], [-78.945545, 37.689126], [-78.945579, 37.689434], [-78.945664, 37.689907], [-78.945683, 37.68999], [-78.945776, 37.690456], [-78.945835, 37.69071], [-78.945961, 37.691323], [-78.946182, 37.69241], [-78.946237, 37.692788], [-78.946274, 37.693085], [-78.946296, 37.693491], [-78.946303, 37.694022], [-78.946301, 37.694057], [-78.946287, 37.694387], [-78.946261, 37.694709], [-78.946249, 37.694805], [-78.946182, 37.695293], [-78.946055, 37.695876], [-78.945864, 37.696567], [-78.945405, 37.698162], [-78.945298, 37.698548], [-78.944826, 37.700186], [-78.944719, 37.700501], [-78.94458, 37.700835], [-78.944457, 37.701074], [-78.944324, 37.701307], [-78.944135, 37.701595], [-78.944026, 37.701738], [-78.943778, 37.70202], [-78.943504, 37.702305], [-78.943214, 37.702564], [-78.94302, 37.702719], [-78.942935, 37.702779], [-78.942809, 37.702868], [-78.942485, 37.703077], [-78.942218, 37.703232], [-78.9405, 37.704132], [-78.940455, 37.704155], [-78.940006, 37.704381], [-78.938227, 37.705302], [-78.93698, 37.705948], [-78.93647, 37.706225], [-78.93488, 37.707122], [-78.934646, 37.707256], [-78.93388, 37.707679], [-78.933448, 37.707924], [-78.932774, 37.708305], [-78.931107, 37.709235], [-78.929365, 37.710215], [-78.928987, 37.710423], [-78.928188, 37.710873], [-78.927848, 37.711058], [-78.927739, 37.711117], [-78.927286, 37.71134], [-78.927035, 37.711449], [-78.926705, 37.711572], [-78.926357, 37.711684], [-78.926015, 37.711773], [-78.925764, 37.711831], [-78.925742, 37.711836], [-78.925395, 37.711899], [-78.925098, 37.711943], [-78.92463, 37.712006], [-78.924358, 37.71204], [-78.9241, 37.712072], [-78.923317, 37.712168], [-78.922673, 37.712257], [-78.921644, 37.712386], [-78.920771, 37.712503], [-78.91879, 37.712755], [-78.917763, 37.712894], [-78.916758, 37.713029], [-78.916316, 37.713107], [-78.915891, 37.713204], [-78.915614, 37.71328], [-78.915324, 37.713372], [-78.915274, 37.713388], [-78.914912, 37.71352], [-78.91455, 37.71367], [-78.914179, 37.713842], [-78.913675, 37.714085], [-78.912967, 37.714415], [-78.910226, 37.715714], [-78.90939, 37.716116], [-78.908844, 37.716378], [-78.908565, 37.716525], [-78.908344, 37.716654], [-78.908223, 37.716733], [-78.907898, 37.716972], [-78.907709, 37.71712], [-78.907284, 37.717479], [-78.905705, 37.718784], [-78.905314, 37.719084], [-78.90491, 37.719372], [-78.904525, 37.719604], [-78.904033, 37.719882], [-78.903337, 37.720265], [-78.902528, 37.720722], [-78.902455, 37.720766], [-78.902055, 37.720998], [-78.901704, 37.721237], [-78.901372, 37.721492], [-78.901207, 37.721632], [-78.901102, 37.721732], [-78.90093, 37.721897], [-78.900791, 37.722043], [-78.900736, 37.722103], [-78.900601, 37.722261], [-78.900394, 37.722523], [-78.900222, 37.722764], [-78.900079, 37.722992], [-78.900004, 37.723131], [-78.899716, 37.723665], [-78.899467, 37.724145], [-78.899406, 37.724274], [-78.89922, 37.72461], [-78.899008, 37.725016], [-78.898838, 37.725322], [-78.898749, 37.725462], [-78.898619, 37.725684], [-78.898501, 37.725886], [-78.898424, 37.726009], [-78.898396, 37.726054], [-78.89823, 37.726333], [-78.897785, 37.72702], [-78.897326, 37.727687], [-78.897029, 37.728104], [-78.896755, 37.72847], [-78.896087, 37.729327], [-78.895376, 37.730223], [-78.89492, 37.73078], [-78.894224, 37.731648], [-78.893951, 37.731982], [-78.893208, 37.732922], [-78.893101, 37.733073], [-78.892951, 37.733284], [-78.892829, 37.733486], [-78.892725, 37.733694], [-78.892653, 37.733852], [-78.892395, 37.734583], [-78.892264, 37.735006], [-78.891874, 37.73617], [-78.891809, 37.736394], [-78.891615, 37.736972], [-78.891508, 37.737307], [-78.891316, 37.737819], [-78.891154, 37.738191], [-78.891075, 37.738356], [-78.891011, 37.738485], [-78.890701, 37.739024], [-78.890539, 37.739262], [-78.890353, 37.739521], [-78.890119, 37.739847], [-78.889796, 37.740253], [-78.889491, 37.740645], [-78.889217, 37.740996], [-78.888944, 37.74133], [-78.888623, 37.741743], [-78.888513, 37.741886], [-78.888267, 37.742188], [-78.887876, 37.742653], [-78.887675, 37.74287], [-78.887504, 37.743037], [-78.887277, 37.743237], [-78.887216, 37.743287], [-78.887135, 37.743353], [-78.886534, 37.743824], [-78.886162, 37.744125], [-78.8861, 37.744182], [-78.885899, 37.744355], [-78.885622, 37.744575], [-78.885356, 37.74478], [-78.884605, 37.745388], [-78.884042, 37.74585], [-78.882882, 37.746752], [-78.882051, 37.747417], [-78.880834, 37.748391], [-78.88003, 37.749038], [-78.879751, 37.749271], [-78.879568, 37.74942], [-78.879376, 37.749569], [-78.878419, 37.750353], [-78.877854, 37.750804], [-78.877584, 37.751037], [-78.877286, 37.751315], [-78.877004, 37.751598], [-78.876844, 37.751774], [-78.876626, 37.752042], [-78.876378, 37.752385], [-78.876192, 37.752665], [-78.876061, 37.752882], [-78.875814, 37.753345], [-78.875209, 37.754691], [-78.874619, 37.756931], [-78.874501, 37.757307], [-78.874339, 37.757855], [-78.873994, 37.758979], [-78.873789, 37.759637], [-78.873696, 37.75991], [-78.873541, 37.760318], [-78.873332, 37.760834], [-78.873094, 37.761337], [-78.872847, 37.761808], [-78.872451, 37.762468], [-78.872257, 37.76277], [-78.871993, 37.763172], [-78.871574, 37.763799], [-78.871327, 37.764167], [-78.871012, 37.764642], [-78.870469, 37.765468], [-78.870316, 37.765702], [-78.870042, 37.766126], [-78.869873, 37.766412], [-78.869781, 37.766589], [-78.869687, 37.766814], [-78.869585, 37.76708], [-78.869516, 37.767314], [-78.869424, 37.767698], [-78.869391, 37.767942], [-78.86938, 37.768238], [-78.869389, 37.768459], [-78.869415, 37.768673], [-78.869485, 37.768991], [-78.869567, 37.769255], [-78.86966, 37.769515], [-78.869743, 37.769714], [-78.869793, 37.769822], [-78.870127, 37.770634], [-78.870244, 37.770938], [-78.870299, 37.771157], [-78.870337, 37.771378], [-78.870379, 37.771605], [-78.870392, 37.771879], [-78.870378, 37.772127], [-78.870337, 37.772397], [-78.870272, 37.77267], [-78.870248, 37.772764], [-78.87004, 37.773562], [-78.869728, 37.774718], [-78.869574, 37.775264], [-78.869411, 37.775864], [-78.869234, 37.776522], [-78.869061, 37.777151], [-78.868889, 37.777735], [-78.868643, 37.778648], [-78.868399, 37.779571], [-78.868224, 37.780198], [-78.868067, 37.780782], [-78.867497, 37.782893], [-78.867434, 37.783141], [-78.867364, 37.783414], [-78.867185, 37.784047], [-78.867156, 37.784152], [-78.867042, 37.784562], [-78.866921, 37.785054], [-78.866779, 37.785508], [-78.866518, 37.786333], [-78.866458, 37.786501], [-78.866348, 37.786832], [-78.866066, 37.787709], [-78.865703, 37.788816], [-78.865457, 37.789659], [-78.865164, 37.790592], [-78.864927, 37.791345], [-78.864619, 37.792175], [-78.864507, 37.792484], [-78.864363, 37.792792], [-78.864228, 37.793041], [-78.864067, 37.7933], [-78.863882, 37.793548], [-78.863684, 37.793797], [-78.863319, 37.794211], [-78.863117, 37.794344], [-78.86295, 37.794541], [-78.862701, 37.794857], [-78.86248, 37.795184], [-78.862275, 37.795518], [-78.862199, 37.795651], [-78.862007, 37.796159], [-78.861989, 37.79622], [-78.861909, 37.796548], [-78.861883, 37.796687], [-78.861846, 37.796942], [-78.861828, 37.797235], [-78.861827, 37.797529], [-78.861837, 37.797754], [-78.861844, 37.797901], [-78.861878, 37.798631], [-78.861919, 37.799738], [-78.861971, 37.800826], [-78.862007, 37.801869], [-78.862081, 37.803303], [-78.862104, 37.80423], [-78.86209, 37.804437], [-78.862063, 37.804642], [-78.862038, 37.804754], [-78.862023, 37.804816], [-78.861947, 37.805046], [-78.861861, 37.805246], [-78.861771, 37.805437], [-78.86165, 37.805634], [-78.861512, 37.805817], [-78.861343, 37.806004], [-78.860353, 37.806994], [-78.859848, 37.807481], [-78.858512, 37.808821], [-78.858367, 37.808958], [-78.858079, 37.809211], [-78.857729, 37.809505], [-78.857293, 37.80986], [-78.856987, 37.81009], [-78.856658, 37.810338], [-78.855693, 37.81105], [-78.85561, 37.811115], [-78.855262, 37.811371], [-78.854965, 37.811605], [-78.853694, 37.812587], [-78.853389, 37.812818], [-78.852362, 37.813637], [-78.851981, 37.813912], [-78.851517, 37.814266], [-78.851057, 37.81462], [-78.85085, 37.814768], [-78.850729, 37.814859], [-78.850652, 37.81492], [-78.850085, 37.815369], [-78.848637, 37.81648], [-78.846503, 37.818117], [-78.846263, 37.818303], [-78.845641, 37.818784], [-78.845198, 37.81912], [-78.844287, 37.819835], [-78.843809, 37.820229], [-78.841255, 37.822413], [-78.840635, 37.822925], [-78.840114, 37.823377], [-78.839772, 37.823685], [-78.839408, 37.824047], [-78.839049, 37.824425], [-78.838766, 37.824737], [-78.838386, 37.825182], [-78.838147, 37.825481], [-78.837849, 37.82588], [-78.837407, 37.826506], [-78.837204, 37.826823], [-78.837053, 37.827081], [-78.836731, 37.827595], [-78.836452, 37.828104], [-78.836275, 37.828399], [-78.836111, 37.828667], [-78.835849, 37.82912], [-78.835504, 37.829691], [-78.835352, 37.829945], [-78.83498, 37.830568], [-78.834935, 37.830642], [-78.834826, 37.830821], [-78.834646, 37.831137], [-78.834377, 37.831577], [-78.833853, 37.832462], [-78.833724, 37.832692], [-78.833217, 37.833546], [-78.831919, 37.835713], [-78.831568, 37.836263], [-78.831293, 37.836637], [-78.831013, 37.836981], [-78.83077, 37.837252], [-78.829687, 37.838434], [-78.829526, 37.8386], [-78.829353, 37.838766], [-78.828845, 37.839208], [-78.828553, 37.839442], [-78.828248, 37.839665], [-78.827736, 37.840071], [-78.82744, 37.840316], [-78.827359, 37.840393], [-78.827219, 37.840526], [-78.827033, 37.840723], [-78.82681, 37.840985], [-78.826636, 37.841213], [-78.826324, 37.841668], [-78.825848, 37.842321], [-78.825635, 37.842569], [-78.825481, 37.842727], [-78.825276, 37.842917], [-78.825211, 37.842971], [-78.825103, 37.843062], [-78.824902, 37.843225], [-78.824735, 37.84334], [-78.824467, 37.843502], [-78.824206, 37.843652], [-78.82312, 37.844198], [-78.822611, 37.844456], [-78.821878, 37.84482], [-78.820981, 37.845244], [-78.82067, 37.845389], [-78.820264, 37.845536], [-78.820038, 37.845598], [-78.819873, 37.845635], [-78.81967, 37.845683], [-78.819501, 37.845707], [-78.819221, 37.845735], [-78.818871, 37.845752], [-78.818684, 37.845746], [-78.818377, 37.845729], [-78.818065, 37.845689], [-78.817748, 37.845635], [-78.817461, 37.845563], [-78.817089, 37.845456], [-78.81664, 37.845308], [-78.816094, 37.845137], [-78.815801, 37.845042], [-78.815106, 37.844835], [-78.814203, 37.844545], [-78.813661, 37.844372], [-78.813194, 37.844227], [-78.812793, 37.844119], [-78.812466, 37.844059], [-78.812161, 37.844015], [-78.811899, 37.843994], [-78.811692, 37.843985], [-78.81145, 37.844002], [-78.811288, 37.844022], [-78.810966, 37.84409], [-78.810704, 37.844162], [-78.810498, 37.844229], [-78.810246, 37.844336], [-78.80993, 37.84449], [-78.809727, 37.844605], [-78.809573, 37.844705], [-78.809276, 37.84492], [-78.809029, 37.845076], [-78.808807, 37.845199], [-78.808527, 37.845332], [-78.808311, 37.845419], [-78.808089, 37.845498], [-78.807811, 37.845579], [-78.807589, 37.845643], [-78.807297, 37.845708], [-78.807, 37.845759], [-78.806691, 37.845797], [-78.806302, 37.845837], [-78.805184, 37.845933], [-78.80503, 37.845945], [-78.804012, 37.846026], [-78.800837, 37.846324], [-78.800537, 37.846339], [-78.800237, 37.846355], [-78.800014, 37.846352], [-78.79976, 37.846345], [-78.799425, 37.846321], [-78.799048, 37.846276], [-78.79881, 37.846227], [-78.798587, 37.846183], [-78.798334, 37.846121], [-78.798127, 37.846044], [-78.797833, 37.845932], [-78.797473, 37.845765], [-78.797183, 37.845617], [-78.796923, 37.845465], [-78.796357, 37.845082], [-78.795818, 37.844712], [-78.795607, 37.84458], [-78.795352, 37.844427], [-78.795147, 37.84431], [-78.794915, 37.844201], [-78.794645, 37.844085], [-78.794419, 37.843996], [-78.794095, 37.843903], [-78.793805, 37.843828], [-78.793467, 37.843774], [-78.793125, 37.84374], [-78.792933, 37.843732], [-78.792722, 37.843723], [-78.792238, 37.84372], [-78.791688, 37.843732], [-78.791137, 37.843731], [-78.790713, 37.843712], [-78.790444, 37.843693], [-78.79016, 37.843657], [-78.78988, 37.843607], [-78.789604, 37.843542], [-78.789363, 37.843478], [-78.789067, 37.843389], [-78.788706, 37.843253], [-78.78839, 37.843125], [-78.788101, 37.843016], [-78.78765, 37.842857], [-78.787324, 37.842748], [-78.787056, 37.84268], [-78.786677, 37.842606], [-78.786459, 37.842568], [-78.786292, 37.842537], [-78.785994, 37.842501], [-78.785649, 37.842467], [-78.785267, 37.842457], [-78.784945, 37.842456], [-78.784589, 37.842468], [-78.782212, 37.842633], [-78.780497, 37.842776], [-78.779987, 37.842814], [-78.778924, 37.842896], [-78.77812, 37.842986], [-78.777773, 37.843042], [-78.777066, 37.843144], [-78.776444, 37.84325], [-78.775647, 37.843402], [-78.774632, 37.843601], [-78.773646, 37.843786], [-78.773282, 37.843855], [-78.772981, 37.843912], [-78.772128, 37.844091], [-78.771161, 37.844316], [-78.770651, 37.844441], [-78.769991, 37.844616], [-78.768859, 37.844941], [-78.768162, 37.845142], [-78.767015, 37.845472], [-78.76637, 37.845658], [-78.765119, 37.846012], [-78.761663, 37.84701], [-78.760903, 37.847224], [-78.760298, 37.847402], [-78.75996, 37.847506], [-78.7597, 37.847596], [-78.759532, 37.84765], [-78.759113, 37.847806], [-78.758783, 37.847948], [-78.758412, 37.84812], [-78.758057, 37.848288], [-78.757154, 37.848747], [-78.756986, 37.848829], [-78.756546, 37.849062], [-78.756115, 37.849306], [-78.755862, 37.849458], [-78.755244, 37.849843], [-78.754769, 37.85013], [-78.754377, 37.85038], [-78.753945, 37.850672], [-78.753673, 37.850873], [-78.753364, 37.851127], [-78.753217, 37.851259], [-78.752739, 37.851715], [-78.752046, 37.852374], [-78.75166, 37.852719], [-78.751401, 37.852929], [-78.751134, 37.853132], [-78.750789, 37.853376], [-78.750504, 37.853564], [-78.750081, 37.853824], [-78.74973, 37.854021], [-78.749369, 37.854207], [-78.748998, 37.85438], [-78.748624, 37.854531], [-78.748053, 37.854743], [-78.747045, 37.85508], [-78.746537, 37.855262], [-78.746473, 37.855285], [-78.745985, 37.855474], [-78.7456, 37.855635], [-78.744986, 37.855911], [-78.744673, 37.856064], [-78.744246, 37.856299], [-78.743761, 37.856591], [-78.743416, 37.856817], [-78.742954, 37.857145], [-78.742639, 37.857387], [-78.742337, 37.85764], [-78.742294, 37.85768], [-78.741896, 37.858045], [-78.741503, 37.85843], [-78.741291, 37.858648], [-78.741254, 37.858686], [-78.740963, 37.859027], [-78.740705, 37.859351], [-78.740668, 37.859398], [-78.740453, 37.85968], [-78.739901, 37.860385], [-78.739675, 37.860647], [-78.739434, 37.860902], [-78.739176, 37.861151], [-78.73895, 37.861357], [-78.738655, 37.861604], [-78.738411, 37.861795], [-78.738094, 37.862025], [-78.737733, 37.862262], [-78.737429, 37.862445], [-78.73708, 37.862638], [-78.73657, 37.862893], [-78.736186, 37.863088], [-78.735435, 37.86348], [-78.734529, 37.863942], [-78.733874, 37.864271], [-78.733562, 37.864427], [-78.733042, 37.864704], [-78.732039, 37.865214], [-78.731948, 37.865258], [-78.731785, 37.865335], [-78.731411, 37.86553], [-78.730148, 37.866169], [-78.729986, 37.866254], [-78.729722, 37.866391], [-78.728688, 37.866913], [-78.727888, 37.86733], [-78.727529, 37.86751], [-78.726765, 37.867904], [-78.726166, 37.868202], [-78.725869, 37.868361], [-78.725428, 37.868579], [-78.725084, 37.868757], [-78.724518, 37.869049], [-78.723898, 37.869354], [-78.722779, 37.869945], [-78.721592, 37.870542], [-78.720481, 37.87111], [-78.719958, 37.871373], [-78.719701, 37.871497], [-78.719365, 37.871672], [-78.718719, 37.872028], [-78.71847, 37.872183], [-78.718164, 37.872388], [-78.717945, 37.872553], [-78.717592, 37.872851], [-78.717285, 37.873139], [-78.717049, 37.873363], [-78.716739, 37.873728], [-78.716536, 37.874002], [-78.716395, 37.874221], [-78.716144, 37.874657], [-78.71604, 37.87487], [-78.715888, 37.875212], [-78.715814, 37.875401], [-78.715694, 37.87571], [-78.715495, 37.876238], [-78.715377, 37.876548], [-78.715275, 37.876817], [-78.71521, 37.877013], [-78.715136, 37.877211], [-78.715081, 37.877371], [-78.714995, 37.877587], [-78.71492, 37.877787], [-78.7148, 37.878131], [-78.714687, 37.878428], [-78.714533, 37.878796], [-78.714454, 37.879009], [-78.714417, 37.879116], [-78.714256, 37.879549], [-78.714141, 37.879854], [-78.713896, 37.880594], [-78.713756, 37.881038], [-78.713682, 37.88126], [-78.713617, 37.881457], [-78.713533, 37.881697], [-78.713446, 37.881943], [-78.713394, 37.882108], [-78.713314, 37.882336], [-78.713184, 37.882655], [-78.713006, 37.883053], [-78.712892, 37.883274], [-78.712733, 37.88355], [-78.712558, 37.88384], [-78.712369, 37.884119], [-78.712275, 37.884257], [-78.712136, 37.884449], [-78.711974, 37.884667], [-78.711814, 37.884876], [-78.711641, 37.885085], [-78.711418, 37.885345], [-78.711139, 37.885644], [-78.710798, 37.88599], [-78.710465, 37.886309], [-78.710195, 37.886555], [-78.709928, 37.886781], [-78.709577, 37.88706], [-78.709406, 37.887199], [-78.709211, 37.887345], [-78.708778, 37.887648], [-78.707968, 37.888179], [-78.707642, 37.888399], [-78.707473, 37.88851], [-78.707244, 37.888663], [-78.706965, 37.888843], [-78.706601, 37.889083], [-78.706088, 37.889425], [-78.705712, 37.889669], [-78.705189, 37.890019], [-78.704893, 37.890211], [-78.703445, 37.891162], [-78.703041, 37.891429], [-78.702721, 37.891638], [-78.702327, 37.891905], [-78.70184, 37.892223], [-78.701163, 37.892662], [-78.700778, 37.892933], [-78.70071, 37.892981], [-78.700622, 37.893046], [-78.700337, 37.893272], [-78.69999, 37.89357], [-78.699755, 37.8938], [-78.699482, 37.894099], [-78.699289, 37.894329], [-78.698787, 37.894984], [-78.698558, 37.895284], [-78.69837, 37.895519], [-78.698116, 37.895851], [-78.697966, 37.896055], [-78.697696, 37.896407], [-78.697057, 37.897242], [-78.696439, 37.898041], [-78.695681, 37.899035], [-78.695049, 37.899863], [-78.694658, 37.900403], [-78.694519, 37.900599], [-78.694429, 37.900733], [-78.693954, 37.901464], [-78.693721, 37.901862], [-78.693473, 37.902275], [-78.693102, 37.902981], [-78.692879, 37.903439], [-78.692797, 37.903623], [-78.692129, 37.905105], [-78.691808, 37.905817], [-78.691268, 37.906984], [-78.690987, 37.907549], [-78.690814, 37.907874], [-78.690688, 37.908089], [-78.690521, 37.908372], [-78.690275, 37.908767], [-78.689663, 37.909657], [-78.689078, 37.910492], [-78.685485, 37.915666], [-78.684467, 37.917131], [-78.682047, 37.920608], [-78.681785, 37.92095], [-78.681517, 37.921272], [-78.681241, 37.921578], [-78.68101, 37.921818], [-78.680605, 37.922194], [-78.68013, 37.922617], [-78.679566, 37.923137], [-78.679307, 37.923403], [-78.678986, 37.92374], [-78.678605, 37.924203], [-78.678345, 37.924561], [-78.678124, 37.924891], [-78.677903, 37.925227], [-78.677688, 37.925589], [-78.677544, 37.925878], [-78.67731, 37.926442], [-78.676551, 37.928284], [-78.676404, 37.928595], [-78.676242, 37.928949], [-78.676148, 37.929122], [-78.675977, 37.929377], [-78.675612, 37.929807], [-78.675385, 37.930086], [-78.675213, 37.930312], [-78.675004, 37.930559], [-78.674617, 37.931044], [-78.67407, 37.931702], [-78.673673, 37.932201], [-78.673281, 37.9327], [-78.672994, 37.933082], [-78.672166, 37.934227], [-78.671112, 37.935771], [-78.670762, 37.936281], [-78.670385, 37.936817], [-78.669877, 37.937599], [-78.668999, 37.93886], [-78.667671, 37.940789], [-78.666721, 37.942158], [-78.666126, 37.943118], [-78.665597, 37.944014], [-78.665125, 37.944827], [-78.664642, 37.945633], [-78.664087, 37.946602], [-78.663665, 37.947366], [-78.663523, 37.947648], [-78.663363, 37.948007], [-78.66312, 37.948581], [-78.662992, 37.948919], [-78.662788, 37.949511], [-78.662392, 37.950794], [-78.662127, 37.951686], [-78.661907, 37.952368], [-78.6618, 37.952667], [-78.661673, 37.952964], [-78.661549, 37.953229], [-78.661377, 37.953546], [-78.661172, 37.953875], [-78.660975, 37.954168], [-78.660712, 37.954527], [-78.660589, 37.954686], [-78.660525, 37.954768], [-78.660204, 37.955161], [-78.659899, 37.955515], [-78.65946, 37.956045], [-78.659107, 37.956472], [-78.658939, 37.95668], [-78.658404, 37.957325], [-78.658185, 37.957583], [-78.657413, 37.958505], [-78.65713, 37.958855], [-78.65677, 37.959264], [-78.656612, 37.959431], [-78.656439, 37.95959], [-78.656251, 37.959739], [-78.656068, 37.959867], [-78.655989, 37.959917], [-78.655752, 37.960052], [-78.655575, 37.96015], [-78.655228, 37.960289], [-78.654931, 37.960405], [-78.653275, 37.960978], [-78.652399, 37.961277], [-78.651659, 37.961545], [-78.651372, 37.96167], [-78.651131, 37.961788], [-78.650953, 37.961888], [-78.65077, 37.962003], [-78.650655, 37.962074], [-78.650545, 37.96215], [-78.650369, 37.962277], [-78.650124, 37.962492], [-78.649827, 37.962781], [-78.649528, 37.963082], [-78.649157, 37.963468], [-78.648771, 37.96385], [-78.648569, 37.964042], [-78.648236, 37.964318], [-78.647928, 37.964546], [-78.647355, 37.964951], [-78.646421, 37.965624], [-78.646034, 37.965897], [-78.645591, 37.966218], [-78.645351, 37.966376], [-78.645051, 37.966569], [-78.644735, 37.966754], [-78.644581, 37.96684], [-78.6444, 37.966936], [-78.643915, 37.967163], [-78.643555, 37.967319], [-78.643147, 37.967465], [-78.642853, 37.967561], [-78.642519, 37.96766], [-78.642395, 37.967695], [-78.642095, 37.967768], [-78.641871, 37.967823], [-78.641449, 37.967916], [-78.640993, 37.967991], [-78.640408, 37.968066], [-78.639997, 37.968103], [-78.639496, 37.96813], [-78.638995, 37.968136], [-78.638434, 37.968125], [-78.637944, 37.9681], [-78.63612, 37.967958], [-78.635136, 37.967873], [-78.633802, 37.96777], [-78.632073, 37.967631], [-78.631801, 37.967611], [-78.630935, 37.967546], [-78.630424, 37.967503], [-78.629697, 37.967442], [-78.628686, 37.967361], [-78.626167, 37.967159], [-78.623282, 37.966927], [-78.622258, 37.96685], [-78.621932, 37.966824], [-78.620819, 37.966736], [-78.620381, 37.966716], [-78.620004, 37.966712], [-78.619679, 37.966717], [-78.61937, 37.966745], [-78.619064, 37.966787], [-78.618761, 37.966844], [-78.618523, 37.9669], [-78.618222, 37.966977], [-78.617837, 37.967103], [-78.617525, 37.967224], [-78.617264, 37.967333], [-78.616866, 37.967526], [-78.61666, 37.96764], [-78.616487, 37.967735], [-78.616266, 37.967872], [-78.615844, 37.968137], [-78.615555, 37.968338], [-78.615229, 37.968577], [-78.614931, 37.968831], [-78.614607, 37.969142], [-78.614381, 37.96937], [-78.614151, 37.969646], [-78.613964, 37.96988], [-78.613494, 37.970554], [-78.61301, 37.971246], [-78.612831, 37.971512], [-78.612279, 37.972333], [-78.611229, 37.97389], [-78.610819, 37.974494], [-78.610719, 37.974624], [-78.610499, 37.974897], [-78.610319, 37.975118], [-78.610116, 37.975331], [-78.609966, 37.975469], [-78.609796, 37.975624], [-78.609591, 37.975796], [-78.609317, 37.976004], [-78.609071, 37.976176], [-78.608849, 37.976327], [-78.608744, 37.97639], [-78.608365, 37.976619], [-78.608101, 37.976752], [-78.607845, 37.976869], [-78.607584, 37.976978], [-78.60725, 37.977103], [-78.606977, 37.977192], [-78.606625, 37.977297], [-78.606266, 37.977388], [-78.606123, 37.977418], [-78.605902, 37.977465], [-78.605646, 37.97752], [-78.605621, 37.977522], [-78.605549, 37.977538], [-78.60423, 37.977756], [-78.602588, 37.978034], [-78.602162, 37.978122], [-78.601825, 37.978203], [-78.601492, 37.978293], [-78.601094, 37.978414], [-78.60071, 37.978547], [-78.600334, 37.978694], [-78.599967, 37.978854], [-78.599486, 37.979083], [-78.599163, 37.979252], [-78.598789, 37.97947], [-78.598549, 37.979624], [-78.597946, 37.980033], [-78.596889, 37.98075], [-78.595137, 37.981939], [-78.593704, 37.982911], [-78.592376, 37.98382], [-78.590854, 37.984906], [-78.590225, 37.985373], [-78.588999, 37.98631], [-78.588012, 37.9871], [-78.587089, 37.987859], [-78.586722, 37.988171], [-78.586183, 37.988631], [-78.585023, 37.989655], [-78.583908, 37.990662], [-78.583686, 37.990885], [-78.583478, 37.991116], [-78.583203, 37.991447], [-78.583057, 37.991641], [-78.582889, 37.99189], [-78.582734, 37.992152], [-78.582584, 37.992445], [-78.582451, 37.992743], [-78.582318, 37.993104], [-78.582229, 37.993396], [-78.582158, 37.993692], [-78.582061, 37.994255], [-78.581989, 37.994788], [-78.581919, 37.9952], [-78.581831, 37.99573], [-78.581596, 37.997239], [-78.581525, 37.997665], [-78.58147, 37.998088], [-78.581083, 38.000517], [-78.580993, 38.001016], [-78.580912, 38.001332], [-78.580857, 38.001514], [-78.580851, 38.001532], [-78.580827, 38.001607], [-78.580788, 38.001711], [-78.580764, 38.001783], [-78.580638, 38.002087], [-78.580501, 38.002397], [-78.580338, 38.002682], [-78.580176, 38.002939], [-78.580026, 38.003155], [-78.57984, 38.003394], [-78.579631, 38.003641], [-78.579528, 38.003748], [-78.579258, 38.004014], [-78.578985, 38.00426], [-78.578784, 38.004426], [-78.578575, 38.004584], [-78.578379, 38.004723], [-78.578122, 38.004899], [-78.577709, 38.005151], [-78.577431, 38.005306], [-78.577141, 38.005444], [-78.576923, 38.005542], [-78.576628, 38.005666], [-78.576327, 38.005766], [-78.576154, 38.005828], [-78.575371, 38.006031], [-78.574274, 38.006313], [-78.573929, 38.006397], [-78.573678, 38.006459], [-78.5731, 38.006602], [-78.572544, 38.006742], [-78.570845, 38.007165], [-78.570536, 38.007245], [-78.570147, 38.007346], [-78.569511, 38.007502], [-78.568866, 38.007677], [-78.568449, 38.007795], [-78.568216, 38.007865], [-78.567861, 38.007984], [-78.567483, 38.008116], [-78.567008, 38.00831], [-78.566642, 38.008471], [-78.566222, 38.008672], [-78.565813, 38.008887], [-78.565381, 38.009126], [-78.564818, 38.009422], [-78.564544, 38.009563], [-78.564196, 38.009735], [-78.564075, 38.009787], [-78.56369, 38.009944], [-78.56326, 38.010103], [-78.562849, 38.010238], [-78.562529, 38.010332], [-78.562124, 38.010438], [-78.561805, 38.010515], [-78.561564, 38.010564], [-78.56093, 38.010675], [-78.560028, 38.010845], [-78.558824, 38.011064], [-78.558024, 38.011219], [-78.557648, 38.011286], [-78.557386, 38.011333], [-78.557058, 38.011387], [-78.555118, 38.011755], [-78.554112, 38.011931], [-78.552878, 38.012156], [-78.552449, 38.01225], [-78.552186, 38.012316], [-78.551829, 38.012417], [-78.551365, 38.012562], [-78.55109, 38.012655], [-78.550658, 38.012829], [-78.550236, 38.013017], [-78.549599, 38.013364], [-78.549376, 38.013492], [-78.549058, 38.013698], [-78.548469, 38.01411], [-78.547659, 38.014674], [-78.547468, 38.014808], [-78.54736, 38.014884], [-78.547042, 38.015096], [-78.546611, 38.015362], [-78.546269, 38.015559], [-78.54592, 38.01574], [-78.545223, 38.016069], [-78.544841, 38.016247], [-78.543906, 38.016682], [-78.543654, 38.016806], [-78.54333, 38.016982], [-78.542733, 38.017318], [-78.542466, 38.017467], [-78.539711, 38.018979], [-78.536725, 38.020664], [-78.535885, 38.021132], [-78.535518, 38.021335], [-78.534742, 38.021766], [-78.534188, 38.022073], [-78.532955, 38.02276], [-78.532173, 38.023196], [-78.531193, 38.023747], [-78.531125, 38.023792], [-78.53075, 38.024045], [-78.530445, 38.024274], [-78.530203, 38.024476], [-78.530016, 38.024649], [-78.529931, 38.024733], [-78.52985, 38.024806], [-78.529798, 38.024854], [-78.529758, 38.024894], [-78.529598, 38.025065], [-78.529327, 38.025386], [-78.52916, 38.025608], [-78.528945, 38.025933], [-78.5288, 38.026176], [-78.528672, 38.026426], [-78.52861, 38.026566], [-78.528405, 38.027066], [-78.52833, 38.027311], [-78.528283, 38.02751], [-78.528235, 38.027689], [-78.528151, 38.028145], [-78.527582, 38.03105], [-78.527126, 38.033402], [-78.52703, 38.033972], [-78.526914, 38.034782], [-78.526868, 38.035166], [-78.52679, 38.036035], [-78.526753, 38.036647], [-78.526715, 38.03781], [-78.526642, 38.040878], [-78.526607, 38.042081], [-78.526584, 38.042473], [-78.526544, 38.042863], [-78.52645, 38.043462], [-78.526353, 38.043907], [-78.526306, 38.044099], [-78.526225, 38.044382], [-78.526103, 38.044762], [-78.525978, 38.045116], [-78.52595, 38.045183], [-78.525619, 38.045973], [-78.525226, 38.046882], [-78.524837, 38.047794], [-78.524807, 38.047861], [-78.524712, 38.048073], [-78.523664, 38.050524], [-78.523608, 38.050633], [-78.523449, 38.050945], [-78.523194, 38.051371], [-78.522992, 38.051667], [-78.522896, 38.051793], [-78.522708, 38.052033], [-78.522379, 38.052403], [-78.522049, 38.052728], [-78.521736, 38.053004], [-78.521375, 38.053289], [-78.521061, 38.053512], [-78.520792, 38.053687], [-78.520433, 38.053898], [-78.5202, 38.054028], [-78.519924, 38.054166], [-78.519561, 38.054329], [-78.519179, 38.054486], [-78.518827, 38.054612], [-78.518437, 38.054736], [-78.518106, 38.054829], [-78.517883, 38.054877], [-78.517638, 38.05494], [-78.517298, 38.055006], [-78.51674, 38.055093], [-78.515503, 38.055228], [-78.513125, 38.055506], [-78.51298, 38.05552], [-78.511721, 38.055664], [-78.510089, 38.05585], [-78.509444, 38.055931], [-78.508892, 38.056018], [-78.508324, 38.056121], [-78.50762, 38.056269], [-78.507101, 38.056364], [-78.5063, 38.056529], [-78.504207, 38.056975], [-78.503544, 38.057129], [-78.50332, 38.057173], [-78.50218, 38.05739], [-78.501769, 38.057476], [-78.501588, 38.057518], [-78.501288, 38.05758], [-78.500918, 38.057644], [-78.50053, 38.057699], [-78.50025, 38.057721], [-78.49999, 38.057731], [-78.4996, 38.057738], [-78.499258, 38.057729], [-78.499228, 38.057727], [-78.498789, 38.057695], [-78.498509, 38.057667], [-78.498249, 38.05764], [-78.497868, 38.057604], [-78.497658, 38.057584], [-78.497235, 38.057537], [-78.496848, 38.057489], [-78.495893, 38.057371], [-78.494978, 38.057279], [-78.49472, 38.057173], [-78.494659, 38.057142], [-78.494592, 38.057093], [-78.494549, 38.057047], [-78.494516, 38.056995], [-78.494502, 38.05695], [-78.494493, 38.056874], [-78.494502, 38.056798], [-78.494522, 38.056739], [-78.494562, 38.056669], [-78.494623, 38.05661], [-78.494697, 38.056562], [-78.494781, 38.056525], [-78.494872, 38.056502], [-78.49496, 38.056493], [-78.495044, 38.0565], [-78.495109, 38.056516], [-78.495169, 38.056541], [-78.495238, 38.056584], [-78.49528, 38.056617], [-78.495339, 38.05668], [-78.495381, 38.056751], [-78.495402, 38.056811], [-78.495415, 38.056894], [-78.495413, 38.056998], [-78.495388, 38.057116], [-78.49528, 38.057239], [-78.495007, 38.057577], [-78.494845, 38.057747], [-78.494782, 38.057825], [-78.494593, 38.05807], [-78.494413, 38.058298], [-78.494268, 38.05847], [-78.494235, 38.058509], [-78.494159, 38.058601], [-78.493967, 38.058833], [-78.493505, 38.059401], [-78.493364, 38.059586], [-78.492889, 38.060182], [-78.492564, 38.060616], [-78.492196, 38.061101], [-78.491916, 38.061468], [-78.491724, 38.061722], [-78.491723, 38.061722], [-78.491578, 38.061897], [-78.491244, 38.062293], [-78.490863, 38.062734], [-78.490477, 38.063153], [-78.490269, 38.06338], [-78.489937, 38.063742], [-78.48969, 38.064008], [-78.489478, 38.064259], [-78.489344, 38.064409], [-78.489289, 38.06447], [-78.489212, 38.064554], [-78.488761, 38.065053], [-78.48815, 38.065739], [-78.488116, 38.065779], [-78.487867, 38.06605], [-78.48713, 38.06686], [-78.486995, 38.067008], [-78.486825, 38.067194], [-78.486343, 38.067727], [-78.486218, 38.067866], [-78.486208, 38.067877], [-78.486134, 38.067959], [-78.48576, 38.068363], [-78.485475, 38.06867], [-78.485154, 38.069027], [-78.484295, 38.070023], [-78.484063, 38.070271], [-78.483776, 38.070614], [-78.483281, 38.071164], [-78.482433, 38.07211], [-78.480968, 38.073741], [-78.480778, 38.073943], [-78.480706, 38.07403], [-78.480376, 38.074401], [-78.479882, 38.074956], [-78.479801, 38.075034], [-78.479272, 38.075634], [-78.478606, 38.076375], [-78.478527, 38.076469], [-78.478367, 38.076647], [-78.477091, 38.078062], [-78.476397, 38.078846], [-78.475743, 38.079571], [-78.474543, 38.08091], [-78.474163, 38.081335], [-78.473969, 38.081577], [-78.473788, 38.081788], [-78.473613, 38.082014], [-78.47347, 38.082218], [-78.472971, 38.083082], [-78.472639, 38.083666], [-78.472264, 38.084319], [-78.471709, 38.085285], [-78.471146, 38.086271], [-78.47079, 38.086895], [-78.470583, 38.087258], [-78.47026, 38.087825], [-78.469568, 38.089039], [-78.468607, 38.090712], [-78.468501, 38.090897], [-78.468139, 38.091557], [-78.468043, 38.091733], [-78.467922, 38.09192], [-78.467732, 38.092218], [-78.46735, 38.0929], [-78.466766, 38.093924], [-78.466497, 38.09437], [-78.466369, 38.094558], [-78.46599, 38.095057], [-78.465526, 38.09564], [-78.465381, 38.095816], [-78.464933, 38.096381], [-78.464463, 38.096962], [-78.464049, 38.097474], [-78.463974, 38.097573], [-78.463441, 38.098232], [-78.46294, 38.098874], [-78.462231, 38.099765], [-78.461478, 38.100721], [-78.460943, 38.101395], [-78.460544, 38.101882], [-78.460009, 38.102564], [-78.459568, 38.103126], [-78.459337, 38.103403], [-78.458603, 38.10429], [-78.457804, 38.105297], [-78.45751, 38.105695], [-78.4569, 38.106619], [-78.456598, 38.107068], [-78.45544, 38.108845], [-78.454988, 38.109578], [-78.454476, 38.110311], [-78.454296, 38.110569], [-78.454206, 38.110708], [-78.454093, 38.110899], [-78.453942, 38.111128], [-78.453769, 38.111409], [-78.453294, 38.112125], [-78.453172, 38.112318], [-78.452856, 38.112817], [-78.452688, 38.11307], [-78.452602, 38.113223], [-78.451975, 38.114186], [-78.451686, 38.11461], [-78.45106, 38.115568], [-78.450908, 38.115798], [-78.450496, 38.11642], [-78.450419, 38.116537], [-78.45032, 38.116697], [-78.450137, 38.116993], [-78.449702, 38.117634], [-78.449172, 38.118448], [-78.448773, 38.119065], [-78.448006, 38.120242], [-78.447677, 38.120726], [-78.447299, 38.121219], [-78.44692, 38.121631], [-78.446411, 38.122124], [-78.4458, 38.12267], [-78.444661, 38.123687], [-78.442392, 38.125724], [-78.441529, 38.126494], [-78.440922, 38.127044], [-78.440006, 38.127866], [-78.439371, 38.128436], [-78.437997, 38.129669], [-78.437902, 38.129754], [-78.437019, 38.130549], [-78.436453, 38.131059], [-78.436187, 38.131299], [-78.435995, 38.13147], [-78.435251, 38.132172], [-78.435106, 38.132303], [-78.434673, 38.132753], [-78.434293, 38.13317], [-78.433695, 38.133887], [-78.433416, 38.134269], [-78.433195, 38.134572], [-78.432173, 38.13616], [-78.430917, 38.138131], [-78.430468, 38.138847], [-78.429836, 38.139833], [-78.429464, 38.140424], [-78.428859, 38.141359], [-78.428348, 38.142178], [-78.428275, 38.142291], [-78.427887, 38.14289], [-78.427641, 38.143278], [-78.427277, 38.143851], [-78.427263, 38.143873], [-78.425718, 38.146293], [-78.4249, 38.147586], [-78.423982, 38.149017], [-78.423879, 38.149181], [-78.4234, 38.149936], [-78.422346, 38.1516], [-78.42208, 38.151996], [-78.421684, 38.152621], [-78.421337, 38.15319], [-78.420383, 38.154692], [-78.419605, 38.155908], [-78.417659, 38.158962], [-78.415009, 38.163121], [-78.414626, 38.163716], [-78.414541, 38.163851], [-78.414293, 38.164245], [-78.412771, 38.16663], [-78.41231, 38.167345], [-78.411781, 38.168185], [-78.410521, 38.170164], [-78.410064, 38.170881], [-78.408661, 38.173081], [-78.408289, 38.173661], [-78.406754, 38.176057], [-78.405791, 38.177582], [-78.405633, 38.177824], [-78.404819, 38.179105], [-78.40451, 38.179581], [-78.403702, 38.180857], [-78.403534, 38.181116], [-78.40229, 38.183084], [-78.402, 38.183534], [-78.401567, 38.184219], [-78.401491, 38.184329], [-78.400918, 38.18523], [-78.400512, 38.185861], [-78.399321, 38.187671], [-78.399195, 38.187856], [-78.399077, 38.188041], [-78.398689, 38.188617], [-78.398558, 38.18882], [-78.397589, 38.190295], [-78.3974, 38.190566], [-78.397207, 38.19086], [-78.396877, 38.191349], [-78.396731, 38.191574], [-78.396016, 38.192652], [-78.395969, 38.192724], [-78.395198, 38.193895], [-78.395145, 38.193978], [-78.395092, 38.194057], [-78.395078, 38.194078], [-78.394787, 38.194511], [-78.394461, 38.19501], [-78.394425, 38.195065], [-78.393867, 38.195904], [-78.393697, 38.196162], [-78.392569, 38.197862], [-78.392356, 38.198186], [-78.391791, 38.199049], [-78.3916, 38.199341], [-78.391424, 38.19959], [-78.391056, 38.200141], [-78.390364, 38.201178], [-78.388697, 38.203713], [-78.387884, 38.204937], [-78.387682, 38.20524], [-78.387424, 38.205639], [-78.386997, 38.206278], [-78.386781, 38.206604], [-78.386138, 38.207581], [-78.385992, 38.207804], [-78.385531, 38.2085], [-78.38498, 38.209334], [-78.384853, 38.209537], [-78.383889, 38.210987], [-78.383519, 38.211533], [-78.383408, 38.211705], [-78.383194, 38.212041], [-78.382209, 38.213531], [-78.381949, 38.213932], [-78.381401, 38.214759], [-78.380953, 38.215433], [-78.380697, 38.215818], [-78.380472, 38.216158], [-78.379118, 38.218196], [-78.378999, 38.218384], [-78.37862, 38.21895], [-78.377882, 38.220071], [-78.377739, 38.220289], [-78.377587, 38.220523], [-78.376908, 38.221535], [-78.376698, 38.221851], [-78.376516, 38.222128], [-78.375966, 38.222959], [-78.375503, 38.223658], [-78.374143, 38.225716], [-78.373741, 38.226317], [-78.372465, 38.228246], [-78.371604, 38.229546], [-78.371224, 38.230126], [-78.37075, 38.230832], [-78.370117, 38.231792], [-78.369796, 38.23229], [-78.369344, 38.233031], [-78.369247, 38.233202], [-78.369201, 38.233285], [-78.369089, 38.233499], [-78.368757, 38.234191], [-78.368537, 38.23469], [-78.368285, 38.235273], [-78.367348, 38.237406], [-78.367125, 38.237924], [-78.366876, 38.23848], [-78.366632, 38.239054], [-78.366538, 38.239263], [-78.366315, 38.239761], [-78.365981, 38.240523], [-78.365112, 38.242495], [-78.364536, 38.243815], [-78.364277, 38.244425], [-78.363872, 38.245322], [-78.363644, 38.245831], [-78.363475, 38.246227], [-78.363324, 38.246579], [-78.363065, 38.24716], [-78.362399, 38.248697], [-78.362213, 38.249115], [-78.36185, 38.249928], [-78.360994, 38.251906], [-78.360894, 38.252122], [-78.360732, 38.252472], [-78.359818, 38.254556], [-78.359604, 38.255032], [-78.358451, 38.257672], [-78.35837, 38.257854], [-78.357235, 38.260418], [-78.35697, 38.261034], [-78.356749, 38.261526], [-78.356328, 38.262487], [-78.3557, 38.26392], [-78.355441, 38.264489], [-78.354985, 38.265534], [-78.354199, 38.267311], [-78.354014, 38.267697], [-78.353899, 38.267927], [-78.353632, 38.268419], [-78.353386, 38.268835], [-78.353012, 38.269405], [-78.352727, 38.269807], [-78.352433, 38.270193], [-78.351176, 38.271816], [-78.35069, 38.272444], [-78.350332, 38.272914], [-78.349867, 38.273496], [-78.349659, 38.273731], [-78.349448, 38.273949], [-78.349246, 38.274133], [-78.348925, 38.274393], [-78.348653, 38.274592], [-78.348309, 38.274816], [-78.346752, 38.275754], [-78.345609, 38.276449], [-78.34394, 38.277447], [-78.343411, 38.277789], [-78.343205, 38.277938], [-78.342906, 38.278167], [-78.342692, 38.278348], [-78.342621, 38.27841], [-78.342399, 38.278622], [-78.342335, 38.278686], [-78.342171, 38.278857], [-78.341631, 38.279482], [-78.341204, 38.280003], [-78.341139, 38.280089], [-78.341053, 38.280202], [-78.340551, 38.280804], [-78.34033, 38.281097], [-78.339739, 38.281771], [-78.337121, 38.284947], [-78.335554, 38.286807], [-78.334912, 38.287652], [-78.334363, 38.288479], [-78.333901, 38.289321], [-78.332891, 38.291302], [-78.33264, 38.291856], [-78.332046, 38.29316], [-78.331547, 38.294091], [-78.33002, 38.297253], [-78.328705, 38.299896], [-78.328454, 38.300437], [-78.327604, 38.302025], [-78.326529, 38.303681], [-78.325643, 38.304891], [-78.325058, 38.305662], [-78.32399, 38.30691], [-78.3236, 38.307359], [-78.323233, 38.30771], [-78.322626, 38.308335], [-78.320591, 38.310229], [-78.317859, 38.312439], [-78.317136, 38.313055], [-78.314274, 38.315396], [-78.313204, 38.316275], [-78.313084, 38.316374], [-78.312238, 38.317069], [-78.31127, 38.317874], [-78.310555, 38.318624], [-78.308339, 38.321068], [-78.307189, 38.322326], [-78.306432, 38.323147], [-78.305157, 38.324565], [-78.299683, 38.33067], [-78.296227, 38.334366], [-78.294775, 38.336025], [-78.294422, 38.336434], [-78.293518, 38.337393], [-78.292283, 38.338774], [-78.290905, 38.340301], [-78.289054, 38.34231], [-78.287698, 38.343781], [-78.286127, 38.345511], [-78.284805, 38.346961], [-78.284197, 38.347653], [-78.281261, 38.350904], [-78.27928, 38.353063], [-78.277989, 38.354462], [-78.276967, 38.355626], [-78.275482, 38.357205], [-78.275108, 38.357686], [-78.273995, 38.359116], [-78.272612, 38.361053], [-78.269402, 38.365549], [-78.268281, 38.367067], [-78.26707, 38.368543], [-78.266209, 38.369424], [-78.26463, 38.370803], [-78.263855, 38.371431], [-78.262777, 38.372178], [-78.262167, 38.372601], [-78.258589, 38.375046], [-78.253931, 38.378242], [-78.253419, 38.378585], [-78.252722, 38.379065], [-78.251038, 38.380279], [-78.249725, 38.3814], [-78.248824, 38.38242], [-78.247019, 38.384778], [-78.243045, 38.39007], [-78.242379, 38.390835], [-78.241798, 38.391304], [-78.241358, 38.391649], [-78.240659, 38.392107], [-78.239791, 38.392562], [-78.236781, 38.394134], [-78.234618, 38.395478], [-78.233524, 38.396238], [-78.231366, 38.397688], [-78.230593, 38.398159], [-78.229713, 38.398631], [-78.22927, 38.398846], [-78.227176, 38.399941], [-78.224001, 38.401573], [-78.221687, 38.402762], [-78.220927, 38.403115], [-78.219583, 38.403494], [-78.217956, 38.403869], [-78.216834, 38.404329], [-78.216198, 38.404653], [-78.215673, 38.404943], [-78.2147, 38.405692], [-78.214341, 38.406017], [-78.211846, 38.409013], [-78.211205, 38.409859], [-78.208931, 38.412831], [-78.207891, 38.413946], [-78.207388, 38.414459], [-78.206848, 38.414885], [-78.20502, 38.416246], [-78.204339, 38.416746], [-78.203587, 38.417231], [-78.201789, 38.418025], [-78.199931, 38.418788], [-78.198775, 38.419213], [-78.197516, 38.419599], [-78.196891, 38.419728], [-78.193593, 38.420311], [-78.192656, 38.420508], [-78.191772, 38.420736], [-78.190615, 38.421137], [-78.189756, 38.421485], [-78.189131, 38.421795], [-78.188009, 38.422501], [-78.186635, 38.423265], [-78.185396, 38.423841], [-78.184545, 38.424162], [-78.179643, 38.425692], [-78.176595, 38.426575], [-78.175037, 38.427149], [-78.174014, 38.427529], [-78.171007, 38.428688], [-78.169272, 38.429381], [-78.165511, 38.430827], [-78.164119, 38.431371], [-78.162591, 38.431967], [-78.161653, 38.432308], [-78.160661, 38.43271], [-78.160269, 38.432865], [-78.159874, 38.433009], [-78.157491, 38.433942], [-78.157022, 38.434133], [-78.156281, 38.434403], [-78.154122, 38.435214], [-78.152887, 38.435503], [-78.151935, 38.435645], [-78.151237, 38.435723], [-78.149391, 38.435895], [-78.145341, 38.436294], [-78.143178, 38.436516], [-78.141588, 38.436723], [-78.140742, 38.436927], [-78.139967, 38.43716], [-78.139029, 38.437478], [-78.138213, 38.437833], [-78.13673, 38.438732], [-78.135769, 38.439493], [-78.133667, 38.441543], [-78.13309, 38.442092], [-78.132637, 38.442565], [-78.131362, 38.443807], [-78.131197, 38.443972], [-78.13069, 38.444456], [-78.13004, 38.445093], [-78.129654, 38.445515], [-78.129431, 38.445788], [-78.129306, 38.445939], [-78.129135, 38.446147], [-78.126535, 38.449414], [-78.12559, 38.450596], [-78.124937, 38.451403], [-78.12463, 38.451786], [-78.122999, 38.453819], [-78.12268, 38.454222], [-78.122212, 38.454799], [-78.122012, 38.455018], [-78.121815, 38.455209], [-78.121657, 38.455346], [-78.121484, 38.455481], [-78.121283, 38.455622], [-78.121072, 38.455755], [-78.120838, 38.455889], [-78.120605, 38.456007], [-78.120411, 38.456093], [-78.120081, 38.45622], [-78.11988, 38.456286], [-78.119617, 38.456362], [-78.119481, 38.456395], [-78.119029, 38.456484], [-78.118859, 38.456513], [-78.118556, 38.456543], [-78.118252, 38.456558], [-78.117886, 38.45656], [-78.117582, 38.456545], [-78.117215, 38.456509], [-78.11691, 38.456463], [-78.116669, 38.456417], [-78.116299, 38.456332], [-78.114395, 38.455867], [-78.113075, 38.455549], [-78.112183, 38.455337], [-78.111983, 38.455288], [-78.110622, 38.454956], [-78.109647, 38.454713], [-78.109318, 38.454619], [-78.108646, 38.454427], [-78.108148, 38.454266], [-78.107826, 38.454152], [-78.107433, 38.454006], [-78.106215, 38.453523], [-78.103244, 38.452284], [-78.103113, 38.45223], [-78.101465, 38.451517], [-78.100793, 38.451267], [-78.099999, 38.450965], [-78.099633, 38.450843], [-78.099366, 38.450762], [-78.098981, 38.450649], [-78.098604, 38.450547], [-78.098262, 38.45046], [-78.09792, 38.450384], [-78.096808, 38.450181], [-78.096151, 38.450083], [-78.095446, 38.449969], [-78.093727, 38.449707], [-78.092677, 38.449547], [-78.092158, 38.449481], [-78.091766, 38.449445], [-78.091635, 38.449437], [-78.091391, 38.44943], [-78.09088, 38.449437], [-78.090541, 38.449459], [-78.090154, 38.449505], [-78.090027, 38.449526], [-78.089761, 38.44957], [-78.089091, 38.449707], [-78.08849, 38.449845], [-78.087312, 38.450134], [-78.086546, 38.450314], [-78.086092, 38.450427], [-78.085716, 38.450516], [-78.085217, 38.45064], [-78.083614, 38.45102], [-78.082588, 38.451268], [-78.081682, 38.451496], [-78.080934, 38.451707], [-78.080808, 38.451743], [-78.080252, 38.451928], [-78.080061, 38.451995], [-78.079356, 38.452244], [-78.079056, 38.452366], [-78.077758, 38.452899], [-78.07693, 38.453218], [-78.07648, 38.453363], [-78.075972, 38.453504], [-78.075519, 38.453613], [-78.075245, 38.453672], [-78.074633, 38.453773], [-78.073634, 38.453917], [-78.073086, 38.453985], [-78.071708, 38.454165], [-78.070367, 38.45434], [-78.069606, 38.454439], [-78.065196, 38.455001], [-78.0636, 38.455212], [-78.062967, 38.455296], [-78.062279, 38.455383], [-78.061807, 38.45545], [-78.061375, 38.455516], [-78.060496, 38.455651], [-78.059099, 38.455874], [-78.058415, 38.455997], [-78.057861, 38.456107], [-78.057398, 38.456211], [-78.057094, 38.456284], [-78.055369, 38.456762], [-78.054558, 38.456978], [-78.05416, 38.457057], [-78.053923, 38.4571], [-78.053692, 38.457137], [-78.053464, 38.457172], [-78.052965, 38.457229], [-78.052547, 38.457266], [-78.05168, 38.457327], [-78.051381, 38.457343], [-78.051209, 38.457356], [-78.050231, 38.457415], [-78.049522, 38.45745], [-78.049115, 38.457457], [-78.048707, 38.45745], [-78.048107, 38.457414], [-78.046583, 38.457296], [-78.045473, 38.457209], [-78.043615, 38.457066], [-78.04299, 38.457014], [-78.041948, 38.456934], [-78.041564, 38.4569], [-78.040447, 38.456809], [-78.039807, 38.456752], [-78.039565, 38.456722], [-78.038614, 38.456586], [-78.037992, 38.45648], [-78.036619, 38.456229], [-78.036312, 38.456174], [-78.035316, 38.455996], [-78.033993, 38.455756], [-78.033455, 38.455659], [-78.032995, 38.455576], [-78.032344, 38.455462], [-78.032225, 38.455441], [-78.032071, 38.455411], [-78.031918, 38.455381], [-78.030629, 38.455156], [-78.030487, 38.455136], [-78.02993, 38.455035], [-78.029397, 38.454939], [-78.027154, 38.454551], [-78.026507, 38.454439], [-78.026143, 38.454368], [-78.025005, 38.454171], [-78.024336, 38.45404], [-78.023622, 38.453878], [-78.02312, 38.453727], [-78.02273, 38.453603], [-78.022384, 38.453473], [-78.021945, 38.453293], [-78.021688, 38.453179], [-78.02141, 38.45304], [-78.020949, 38.452794], [-78.020606, 38.452593], [-78.018376, 38.451156], [-78.015052, 38.449001], [-78.013038, 38.447702], [-78.012718, 38.447476], [-78.012365, 38.447314], [-78.011913, 38.44707], [-78.011467, 38.446849], [-78.011017, 38.446646], [-78.010785, 38.446548], [-78.01041, 38.446389], [-78.009947, 38.446212], [-78.009475, 38.446047], [-78.009032, 38.44592], [-78.008198, 38.445668], [-78.007806, 38.445574], [-78.007536, 38.445509], [-78.00704, 38.445404], [-78.006541, 38.445314], [-78.006039, 38.445234], [-78.005535, 38.445168], [-78.004882, 38.445103], [-78.00427, 38.44506], [-78.003857, 38.445042], [-78.003259, 38.445032], [-77.996098, 38.445039], [-77.995524, 38.445052], [-77.995083, 38.445072], [-77.9946, 38.445108], [-77.994291, 38.44514], [-77.994119, 38.445159], [-77.993562, 38.445235], [-77.993077, 38.445314], [-77.992738, 38.44538], [-77.992304, 38.445476], [-77.991774, 38.445609], [-77.991277, 38.445754], [-77.990885, 38.44588], [-77.990401, 38.446049], [-77.989902, 38.446248], [-77.98951, 38.446417], [-77.989127, 38.446595], [-77.988671, 38.446826], [-77.988226, 38.44707], [-77.988015, 38.447193], [-77.987964, 38.447222], [-77.986229, 38.448266], [-77.982377, 38.450578], [-77.980067, 38.451965], [-77.978396, 38.452971], [-77.976723, 38.453978], [-77.971729, 38.456974], [-77.970854, 38.457513], [-77.970447, 38.457776], [-77.969812, 38.458205], [-77.969672, 38.458304], [-77.969294, 38.458571], [-77.968878, 38.458872], [-77.968162, 38.459423], [-77.967696, 38.459799], [-77.967125, 38.46028], [-77.966325, 38.460982], [-77.965258, 38.461918], [-77.964866, 38.462267], [-77.960196, 38.466376], [-77.955939, 38.470123], [-77.954947, 38.470996], [-77.954533, 38.471358], [-77.953922, 38.471893], [-77.953458, 38.472304], [-77.953176, 38.472548], [-77.952583, 38.473072], [-77.951119, 38.474355], [-77.950943, 38.474509], [-77.949669, 38.47563], [-77.948949, 38.476265], [-77.948002, 38.477098], [-77.940672, 38.483548], [-77.940481, 38.483731], [-77.940188, 38.484012], [-77.939893, 38.484318], [-77.939484, 38.484776], [-77.93926, 38.485054], [-77.939039, 38.48534], [-77.938835, 38.485618], [-77.938574, 38.486003], [-77.938385, 38.4863], [-77.938154, 38.486695], [-77.936929, 38.489071], [-77.936476, 38.48995], [-77.936307, 38.490277], [-77.936213, 38.490449], [-77.936032, 38.490779], [-77.935797, 38.491168], [-77.935515, 38.491593], [-77.935238, 38.491981], [-77.934904, 38.492412], [-77.934836, 38.492493], [-77.93462, 38.492753], [-77.934238, 38.493183], [-77.933985, 38.493449], [-77.933681, 38.493753], [-77.933395, 38.494018], [-77.933018, 38.494354], [-77.932749, 38.494585], [-77.932252, 38.494973], [-77.93171, 38.495374], [-77.931341, 38.495628], [-77.930966, 38.495866], [-77.930194, 38.496327], [-77.929795, 38.496546], [-77.929468, 38.496713], [-77.928898, 38.496989], [-77.928401, 38.497211], [-77.927814, 38.497454], [-77.927352, 38.49763], [-77.926883, 38.497792], [-77.92627, 38.497988], [-77.925745, 38.498139], [-77.925688, 38.498154], [-77.925207, 38.498279], [-77.924635, 38.498412], [-77.924059, 38.498531], [-77.923478, 38.498637], [-77.923244, 38.498675], [-77.9209, 38.499106], [-77.920407, 38.499196], [-77.916265, 38.499951], [-77.914897, 38.500194], [-77.913262, 38.500498], [-77.912906, 38.500563], [-77.911059, 38.5009], [-77.910401, 38.501012], [-77.909308, 38.501222], [-77.90816, 38.501425], [-77.906956, 38.501647], [-77.902649, 38.502433], [-77.901836, 38.502578], [-77.901383, 38.502661], [-77.899056, 38.503088], [-77.897887, 38.503302], [-77.896932, 38.503454], [-77.896481, 38.503514], [-77.896026, 38.50356], [-77.89557, 38.503592], [-77.895091, 38.503613], [-77.894605, 38.503621], [-77.894338, 38.503619], [-77.894023, 38.503612], [-77.893539, 38.503589], [-77.893152, 38.50356], [-77.891645, 38.503392], [-77.891145, 38.503351], [-77.890705, 38.503331], [-77.890264, 38.503325], [-77.89, 38.503328], [-77.889421, 38.503346], [-77.888918, 38.503375], [-77.888578, 38.503406], [-77.888318, 38.503429], [-77.887823, 38.50349], [-77.887334, 38.503566], [-77.886849, 38.503655], [-77.886369, 38.503759], [-77.885701, 38.503929], [-77.88504, 38.504114], [-77.883872, 38.504451], [-77.882026, 38.504972], [-77.880726, 38.50535], [-77.879756, 38.505628], [-77.879416, 38.505726], [-77.878734, 38.505916], [-77.87665, 38.506514], [-77.873295, 38.507467], [-77.870872, 38.508164], [-77.867574, 38.509112], [-77.86643, 38.509426], [-77.865139, 38.509804], [-77.864878, 38.509875], [-77.864614, 38.509946], [-77.864004, 38.510124], [-77.863963, 38.510136], [-77.863243, 38.510359], [-77.862776, 38.510515], [-77.862313, 38.51068], [-77.86153, 38.510992], [-77.86091, 38.511252], [-77.860341, 38.511504], [-77.860101, 38.511597], [-77.859873, 38.511706], [-77.859049, 38.512033], [-77.858596, 38.512199], [-77.85801, 38.512393], [-77.85641, 38.512859], [-77.85546, 38.513131], [-77.853636, 38.513652], [-77.852939, 38.513842], [-77.85189, 38.514117], [-77.851773, 38.514147], [-77.851155, 38.514282], [-77.850783, 38.514355], [-77.850158, 38.514468], [-77.849529, 38.514566], [-77.848611, 38.514673], [-77.847601, 38.514814], [-77.847219, 38.514874], [-77.846744, 38.514961], [-77.846275, 38.515063], [-77.845622, 38.515227], [-77.843493, 38.515828], [-77.840926, 38.516554], [-77.838953, 38.517123], [-77.838611, 38.51724], [-77.838276, 38.51737], [-77.838087, 38.517452], [-77.837878, 38.517559], [-77.837641, 38.517698], [-77.837371, 38.517879], [-77.837159, 38.518042], [-77.836631, 38.518508], [-77.833939, 38.52107], [-77.833536, 38.521444], [-77.832859, 38.52207], [-77.832618, 38.52227], [-77.832363, 38.52246], [-77.832151, 38.522605], [-77.831761, 38.52284], [-77.831645, 38.522905], [-77.831341, 38.523059], [-77.831027, 38.523201], [-77.830705, 38.52333], [-77.830375, 38.523446], [-77.82725, 38.524408], [-77.825282, 38.525005], [-77.824825, 38.525153], [-77.824766, 38.525172], [-77.82414, 38.525403], [-77.823904, 38.525501], [-77.823444, 38.525707], [-77.823161, 38.525842], [-77.822816, 38.526023], [-77.822483, 38.526216], [-77.82216, 38.526429], [-77.821905, 38.526618], [-77.821824, 38.526681], [-77.821661, 38.526816], [-77.82143, 38.527024], [-77.821026, 38.527454], [-77.820758, 38.527783], [-77.820516, 38.528112], [-77.820197, 38.52856], [-77.819895, 38.529029], [-77.81945, 38.529798], [-77.818541, 38.531386], [-77.817476, 38.533249], [-77.817174, 38.533749], [-77.815779, 38.536111], [-77.812836, 38.541042], [-77.812145, 38.542152], [-77.811443, 38.543345], [-77.81107, 38.543916], [-77.809169, 38.54677], [-77.807061, 38.549912], [-77.805801, 38.55177], [-77.803189, 38.555743], [-77.802664, 38.55653], [-77.802442, 38.556869], [-77.802253, 38.557175], [-77.802079, 38.557492], [-77.801838, 38.557971], [-77.801782, 38.55809], [-77.801657, 38.55838], [-77.801522, 38.558722], [-77.801429, 38.558994], [-77.801302, 38.559432], [-77.801209, 38.559822], [-77.801144, 38.560169], [-77.801065, 38.560727], [-77.801025, 38.56131], [-77.801027, 38.561813], [-77.801049, 38.562487], [-77.801069, 38.562893], [-77.801213, 38.565749], [-77.801305, 38.567636], [-77.80137, 38.568961], [-77.801541, 38.572402], [-77.801599, 38.573623], [-77.801669, 38.575224], [-77.801707, 38.575829], [-77.801772, 38.577117], [-77.801874, 38.579138], [-77.801902, 38.579759], [-77.801914, 38.579914], [-77.801945, 38.580642], [-77.801977, 38.581198], [-77.802036, 38.582417], [-77.802118, 38.584113], [-77.802126, 38.584391], [-77.802131, 38.584986], [-77.802118, 38.585525], [-77.802088, 38.586052], [-77.802017, 38.586791], [-77.801743, 38.589112], [-77.801725, 38.589268], [-77.801437, 38.591698], [-77.801342, 38.5925], [-77.801281, 38.593006], [-77.800994, 38.595455], [-77.800644, 38.598437], [-77.800492, 38.599704], [-77.800457, 38.599972], [-77.800268, 38.601612], [-77.800209, 38.602305], [-77.80017, 38.602992], [-77.800152, 38.603904], [-77.800152, 38.604035], [-77.800152, 38.604483], [-77.800172, 38.60559], [-77.800187, 38.606551], [-77.800205, 38.607644], [-77.80022, 38.608813], [-77.800237, 38.609384], [-77.800232, 38.610093], [-77.800248, 38.611162], [-77.80027, 38.611781], [-77.800276, 38.611972], [-77.800298, 38.612639], [-77.800312, 38.613039], [-77.800332, 38.613399], [-77.800397, 38.614527], [-77.800421, 38.615203], [-77.800432, 38.61575], [-77.800444, 38.616559], [-77.800478, 38.618723], [-77.8005, 38.619601], [-77.800525, 38.620811], [-77.800527, 38.620908], [-77.800548, 38.62192], [-77.80058, 38.623403], [-77.800594, 38.624213], [-77.800603, 38.625413], [-77.80062, 38.627386], [-77.800629, 38.627856], [-77.800651, 38.62934], [-77.800658, 38.629863], [-77.800688, 38.631295], [-77.800701, 38.63219], [-77.800708, 38.632656], [-77.800729, 38.632937], [-77.800749, 38.6331], [-77.800764, 38.633194], [-77.800824, 38.633493], [-77.8009, 38.63375], [-77.801033, 38.634132], [-77.801091, 38.634277], [-77.801339, 38.634852], [-77.801526, 38.635289], [-77.801703, 38.635692], [-77.801752, 38.635808], [-77.801965, 38.636295], [-77.802897, 38.638462], [-77.802996, 38.638693], [-77.803206, 38.639174], [-77.803351, 38.639505], [-77.803635, 38.640158], [-77.803774, 38.640485], [-77.80405, 38.641121], [-77.804137, 38.641325], [-77.804199, 38.641471], [-77.804367, 38.641868], [-77.804398, 38.641941], [-77.804535, 38.642359], [-77.804602, 38.642621], [-77.804642, 38.642832], [-77.804669, 38.643038], [-77.804677, 38.643118], [-77.804687, 38.643291], [-77.804696, 38.643722], [-77.804696, 38.644409], [-77.804677, 38.644766], [-77.804636, 38.645023], [-77.804576, 38.645279], [-77.804498, 38.645531], [-77.804445, 38.645671], [-77.804179, 38.646296], [-77.803976, 38.646795], [-77.803645, 38.647584], [-77.803607, 38.647672], [-77.803037, 38.649027], [-77.802582, 38.650099], [-77.802488, 38.65032], [-77.80226, 38.650816], [-77.802226, 38.650891], [-77.801705, 38.651973], [-77.801524, 38.652348], [-77.800517, 38.654435], [-77.800311, 38.654856], [-77.800109, 38.655223], [-77.799504, 38.656216], [-77.799258, 38.656629], [-77.799064, 38.656995], [-77.798952, 38.657238], [-77.798593, 38.658126], [-77.798524, 38.658287], [-77.798395, 38.658591], [-77.798266, 38.658901], [-77.798049, 38.659428], [-77.797829, 38.659963], [-77.79736, 38.661105], [-77.797075, 38.661795], [-77.796724, 38.662641], [-77.79625, 38.663783], [-77.796094, 38.664161], [-77.795637, 38.665271], [-77.79528, 38.666132], [-77.795248, 38.66621], [-77.794069, 38.669063], [-77.793674, 38.670024], [-77.793379, 38.670723], [-77.793244, 38.671036], [-77.793103, 38.671307], [-77.792943, 38.671571], [-77.792813, 38.671755], [-77.792641, 38.671968], [-77.792454, 38.672174], [-77.792251, 38.672371], [-77.791496, 38.673047], [-77.791134, 38.673372], [-77.790643, 38.673809], [-77.789269, 38.675032], [-77.788765, 38.675507], [-77.788692, 38.675576], [-77.788181, 38.676104], [-77.787807, 38.676549], [-77.787668, 38.676743], [-77.787501, 38.677031], [-77.78738, 38.677265], [-77.78733, 38.677383], [-77.787232, 38.677659], [-77.787165, 38.677911], [-77.787115, 38.678177], [-77.787085, 38.678445], [-77.787079, 38.678552], [-77.787095, 38.67913], [-77.787153, 38.679798], [-77.787259, 38.680924], [-77.787331, 38.681886], [-77.787363, 38.682419], [-77.787413, 38.683635], [-77.787401, 38.684203], [-77.787392, 38.684611], [-77.78735, 38.685019], [-77.787315, 38.685264], [-77.787231, 38.685728], [-77.787136, 38.686251], [-77.787114, 38.686332], [-77.78692, 38.686986], [-77.786696, 38.687619], [-77.786501, 38.688074], [-77.786277, 38.68855], [-77.786098, 38.688888], [-77.785944, 38.689154], [-77.785576, 38.689748], [-77.784818, 38.690938], [-77.784516, 38.691425], [-77.784271, 38.691807], [-77.783827, 38.692506], [-77.783401, 38.6932], [-77.783246, 38.693444], [-77.782384, 38.694802], [-77.782205, 38.695084], [-77.781593, 38.696059], [-77.781243, 38.69667], [-77.78108, 38.696994], [-77.780923, 38.697347], [-77.780812, 38.697637], [-77.780687, 38.698004], [-77.780614, 38.698231], [-77.780587, 38.698314], [-77.780392, 38.699181], [-77.780333, 38.699659], [-77.780298, 38.700094], [-77.780287, 38.700389], [-77.780289, 38.700757], [-77.780315, 38.701452], [-77.780365, 38.702797], [-77.780397, 38.703509], [-77.780462, 38.705131], [-77.780535, 38.706895], [-77.780587, 38.708144], [-77.780612, 38.708911], [-77.780675, 38.710324], [-77.780782, 38.713019], [-77.780806, 38.713639], [-77.780906, 38.716128], [-77.780923, 38.716557], [-77.780985, 38.71812], [-77.781094, 38.720811], [-77.781111, 38.721348], [-77.78117, 38.722771], [-77.781205, 38.723428], [-77.781207, 38.723933], [-77.781141, 38.724638], [-77.781062, 38.725028], [-77.780986, 38.725313], [-77.780873, 38.725651], [-77.780799, 38.725838], [-77.780763, 38.72593], [-77.780608, 38.726258], [-77.780457, 38.726537], [-77.78029, 38.726814], [-77.780067, 38.727137], [-77.779841, 38.727426], [-77.779593, 38.727712], [-77.779535, 38.727773], [-77.779432, 38.727882], [-77.779137, 38.728163], [-77.778889, 38.728379], [-77.778564, 38.728638], [-77.777988, 38.729064], [-77.777903, 38.729128], [-77.777813, 38.729195], [-77.777751, 38.72924], [-77.777544, 38.729395], [-77.776507, 38.73018], [-77.77534, 38.731069], [-77.775049, 38.73127], [-77.774364, 38.73177], [-77.774051, 38.732009], [-77.773303, 38.732554], [-77.772496, 38.733155], [-77.772444, 38.733192], [-77.771424, 38.733941], [-77.770375, 38.73472], [-77.769774, 38.735166], [-77.766501, 38.737595], [-77.766092, 38.7379], [-77.766013, 38.737957], [-77.764613, 38.738973], [-77.763699, 38.739647], [-77.760294, 38.742188], [-77.759475, 38.742805], [-77.758292, 38.743704], [-77.757242, 38.744507], [-77.756734, 38.744888], [-77.75607, 38.745394], [-77.755332, 38.74595], [-77.753869, 38.747051], [-77.753512, 38.747317], [-77.752239, 38.748266], [-77.751486, 38.748835], [-77.749304, 38.750477], [-77.747696, 38.751677], [-77.747175, 38.752069], [-77.746636, 38.752468], [-77.746089, 38.752858], [-77.745719, 38.753113], [-77.745109, 38.753534], [-77.744529, 38.753946], [-77.744441, 38.754016], [-77.743143, 38.755039], [-77.742369, 38.755648], [-77.741019, 38.756723], [-77.740302, 38.757289], [-77.74012, 38.757439], [-77.739869, 38.757633], [-77.739452, 38.757933], [-77.738896, 38.758325], [-77.738458, 38.758616], [-77.737994, 38.758912], [-77.737675, 38.759109], [-77.736928, 38.759546], [-77.736529, 38.759764], [-77.73598, 38.760062], [-77.735512, 38.760302], [-77.734641, 38.760749], [-77.731871, 38.762168], [-77.730354, 38.762946], [-77.726563, 38.764904], [-77.726297, 38.765042], [-77.725494, 38.765462], [-77.724993, 38.765717], [-77.724283, 38.76606], [-77.724155, 38.766114], [-77.723683, 38.766274], [-77.723631, 38.766287], [-77.723461, 38.76633], [-77.723208, 38.766384], [-77.722948, 38.766425], [-77.722732, 38.766449], [-77.722439, 38.766466], [-77.722204, 38.76647], [-77.721761, 38.76645], [-77.721338, 38.766416], [-77.720827, 38.766373], [-77.71958, 38.766268], [-77.718945, 38.766226], [-77.71829, 38.766214], [-77.717886, 38.766231], [-77.717644, 38.766248], [-77.717238, 38.766296], [-77.716986, 38.766333], [-77.716478, 38.766426], [-77.715933, 38.766539], [-77.71313, 38.767126], [-77.71253, 38.76725], [-77.711446, 38.767475], [-77.711213, 38.767521], [-77.709832, 38.76781], [-77.709246, 38.767933], [-77.708584, 38.768078], [-77.708134, 38.768177], [-77.707984, 38.768211], [-77.707651, 38.768287], [-77.707208, 38.768389], [-77.707037, 38.768429], [-77.706966, 38.768445], [-77.706604, 38.768529], [-77.705724, 38.768733], [-77.704884, 38.768928], [-77.704008, 38.769125], [-77.703413, 38.769266], [-77.703044, 38.769359], [-77.702667, 38.769454], [-77.702289, 38.769565], [-77.701922, 38.769687], [-77.701705, 38.769766], [-77.701294, 38.769925], [-77.700381, 38.770277], [-77.698624, 38.770957], [-77.69792, 38.771222], [-77.696779, 38.771656], [-77.696286, 38.771839], [-77.694688, 38.772451], [-77.693388, 38.772942], [-77.69338, 38.772945], [-77.69299, 38.773092], [-77.691828, 38.773541], [-77.689985, 38.774273], [-77.689184, 38.774593], [-77.687947, 38.775099], [-77.68652, 38.775696], [-77.686093, 38.775875], [-77.685013, 38.776323], [-77.684548, 38.776508], [-77.683617, 38.77688], [-77.682281, 38.77742], [-77.681906, 38.77757], [-77.680152, 38.778273], [-77.680071, 38.778309], [-77.679964, 38.778348], [-77.67944, 38.778559], [-77.679135, 38.778682], [-77.679008, 38.778733], [-77.678765, 38.778831], [-77.678322, 38.779011], [-77.677302, 38.779417], [-77.677036, 38.779514], [-77.676871, 38.779569], [-77.676375, 38.779711], [-77.675903, 38.779834], [-77.675739, 38.779874], [-77.675282, 38.779966], [-77.675165, 38.77999], [-77.673681, 38.780291], [-77.67245, 38.780538], [-77.671784, 38.780666], [-77.671623, 38.780699], [-77.671392, 38.780752], [-77.670977, 38.780857], [-77.67067, 38.780949], [-77.669909, 38.781181], [-77.669755, 38.781229], [-77.668691, 38.781557], [-77.668105, 38.781729], [-77.66717, 38.781984], [-77.665556, 38.7824], [-77.665397, 38.782443], [-77.66509, 38.782528], [-77.663117, 38.783041], [-77.662729, 38.783142], [-77.658982, 38.784122], [-77.658234, 38.784318], [-77.657487, 38.784515], [-77.656903, 38.784668], [-77.656444, 38.784785], [-77.655772, 38.784954], [-77.655488, 38.785028], [-77.654149, 38.78538], [-77.653073, 38.785665], [-77.652817, 38.785732], [-77.652723, 38.785757], [-77.652335, 38.78586], [-77.650432, 38.786358], [-77.650292, 38.786394], [-77.648546, 38.786845], [-77.648132, 38.786953], [-77.6471, 38.787217], [-77.646912, 38.787266], [-77.646792, 38.787296], [-77.646475, 38.787378], [-77.643862, 38.788066], [-77.643514, 38.788151], [-77.642956, 38.788288], [-77.641845, 38.788545], [-77.641256, 38.788678], [-77.640668, 38.788812], [-77.637878, 38.789456], [-77.637724, 38.789491], [-77.635026, 38.790112], [-77.633026, 38.790572], [-77.631672, 38.790883], [-77.630391, 38.791179], [-77.630168, 38.791231], [-77.629412, 38.791414], [-77.629006, 38.791523], [-77.628982, 38.791529], [-77.628275, 38.791722], [-77.626219, 38.792284], [-77.625465, 38.792483], [-77.624741, 38.792675], [-77.624567, 38.792721], [-77.624468, 38.792748], [-77.624067, 38.792856], [-77.622821, 38.793191], [-77.622323, 38.793326], [-77.622182, 38.793359], [-77.62157, 38.793529], [-77.621412, 38.793572], [-77.620477, 38.793825], [-77.620443, 38.793835], [-77.619193, 38.794171], [-77.619018, 38.794213], [-77.617763, 38.794556], [-77.617092, 38.79473], [-77.616747, 38.794832], [-77.614017, 38.7956], [-77.613309, 38.7958], [-77.613097, 38.795859], [-77.611965, 38.796178], [-77.611011, 38.796432], [-77.609519, 38.79683], [-77.609066, 38.796955], [-77.60887, 38.79701], [-77.608124, 38.797223], [-77.607861, 38.79729], [-77.60659, 38.797608], [-77.604759, 38.798106], [-77.603341, 38.798433], [-77.602615, 38.798623], [-77.60217, 38.798681], [-77.60178, 38.798726], [-77.60159, 38.798739], [-77.601338, 38.79876], [-77.601043, 38.798748], [-77.600761, 38.798726], [-77.600475, 38.798685], [-77.600088, 38.798626], [-77.598701, 38.798329], [-77.598447, 38.798288], [-77.598168, 38.798263], [-77.597945, 38.798266], [-77.597733, 38.798267], [-77.597515, 38.798295], [-77.597295, 38.798329], [-77.59709, 38.79838], [-77.596838, 38.798472], [-77.596056, 38.79873], [-77.595792, 38.798802], [-77.595557, 38.798839], [-77.595321, 38.798872], [-77.595123, 38.798893], [-77.594903, 38.798906], [-77.594606, 38.798902], [-77.592349, 38.798571], [-77.589853, 38.798246], [-77.587564, 38.797961], [-77.584659, 38.797708], [-77.583518, 38.797592], [-77.582596, 38.797507], [-77.581727, 38.797465], [-77.580645, 38.797422], [-77.579853, 38.797408], [-77.579381, 38.797391], [-77.579328, 38.797391], [-77.578346, 38.797391], [-77.576989, 38.797404], [-77.576007, 38.797446], [-77.575373, 38.797504], [-77.571144, 38.797797], [-77.569287, 38.79792], [-77.56555, 38.798187], [-77.561659, 38.798447], [-77.555891, 38.7988], [-77.553755, 38.798951], [-77.550887, 38.799152], [-77.550295, 38.799193], [-77.548407, 38.799331], [-77.54595, 38.799494], [-77.541063, 38.799812], [-77.539341, 38.799946], [-77.536546, 38.800151], [-77.532281, 38.800448], [-77.529135, 38.800667], [-77.525861, 38.800895], [-77.523173, 38.801079], [-77.520134, 38.801324], [-77.519426, 38.801374], [-77.518588, 38.801436], [-77.514662, 38.801698], [-77.51275, 38.801833], [-77.512257, 38.801883], [-77.51176, 38.801949], [-77.511242, 38.802033], [-77.510728, 38.802133], [-77.510237, 38.802245], [-77.509757, 38.802371], [-77.509283, 38.802511], [-77.508762, 38.802686], [-77.508249, 38.802874], [-77.503238, 38.804849], [-77.501867, 38.805383], [-77.49854, 38.806696], [-77.492854, 38.808929], [-77.492586, 38.809039], [-77.491408, 38.809499], [-77.490728, 38.809768], [-77.490387, 38.809903], [-77.489846, 38.810125], [-77.48976, 38.810159], [-77.489588, 38.810228], [-77.488128, 38.810814], [-77.487975, 38.810876], [-77.487938, 38.810891], [-77.487614, 38.811027], [-77.486889, 38.811312], [-77.485515, 38.811841], [-77.481021, 38.813606], [-77.480031, 38.813987], [-77.479528, 38.81418], [-77.478278, 38.814671], [-77.477784, 38.814859], [-77.476696, 38.815283], [-77.476308, 38.815444], [-77.470849, 38.817587], [-77.469997, 38.817934], [-77.469107, 38.818314], [-77.468263, 38.818692], [-77.467788, 38.818912], [-77.466824, 38.819384], [-77.466481, 38.819559], [-77.465978, 38.819814], [-77.465888, 38.819862], [-77.465082, 38.820299], [-77.464689, 38.820516], [-77.463916, 38.820976], [-77.463568, 38.821184], [-77.462817, 38.82165], [-77.462169, 38.822067], [-77.461524, 38.822499], [-77.460742, 38.823046], [-77.459971, 38.823615], [-77.459453, 38.824009], [-77.458829, 38.824505], [-77.458041, 38.825157], [-77.457989, 38.825199], [-77.457719, 38.825436], [-77.457456, 38.825667], [-77.457174, 38.825914], [-77.456485, 38.82655], [-77.455925, 38.827089], [-77.455609, 38.827408], [-77.455354, 38.827664], [-77.455286, 38.827736], [-77.454763, 38.828288], [-77.453687, 38.829492], [-77.45117, 38.83231], [-77.450091, 38.833546], [-77.449603, 38.834072], [-77.4484, 38.835411], [-77.448317, 38.835496], [-77.447073, 38.836883], [-77.446568, 38.837456], [-77.444983, 38.839239], [-77.444962, 38.839261], [-77.44448, 38.839771], [-77.443925, 38.840374], [-77.443121, 38.841151], [-77.442523, 38.841683], [-77.442048, 38.842083], [-77.441563, 38.842472], [-77.44121, 38.842729], [-77.440835, 38.842989], [-77.440353, 38.843301], [-77.439357, 38.843895], [-77.438808, 38.844189], [-77.438412, 38.844388], [-77.438154, 38.844513], [-77.437585, 38.844773], [-77.43695, 38.845042], [-77.436125, 38.845358], [-77.435386, 38.845611], [-77.434841, 38.845778], [-77.434461, 38.845886], [-77.434065, 38.845989], [-77.433588, 38.846102], [-77.432595, 38.846311], [-77.431976, 38.846424], [-77.431894, 38.846439], [-77.43166, 38.846482], [-77.43013, 38.84677], [-77.428638, 38.847052], [-77.427672, 38.847201], [-77.426895, 38.847336], [-77.426613, 38.847387], [-77.423954, 38.847868], [-77.42318, 38.84802], [-77.422578, 38.848129], [-77.421734, 38.848284], [-77.419777, 38.84865], [-77.418032, 38.848977], [-77.416532, 38.849246], [-77.415198, 38.849482], [-77.414151, 38.849672], [-77.413692, 38.849756], [-77.413004, 38.849886], [-77.41025, 38.850388], [-77.408348, 38.850725], [-77.406003, 38.851167], [-77.404553, 38.851419], [-77.403103, 38.851676], [-77.402433, 38.851803], [-77.401513, 38.851954], [-77.399882, 38.852249], [-77.399048, 38.852319], [-77.398718, 38.852375], [-77.397996, 38.852492], [-77.397318, 38.852624], [-77.396752, 38.852714], [-77.396348, 38.852749], [-77.395658, 38.852767], [-77.395009, 38.8528], [-77.394695, 38.852837], [-77.39433, 38.852891], [-77.393802, 38.852984], [-77.393126, 38.853114], [-77.392725, 38.85318], [-77.392095, 38.853297], [-77.391904, 38.853339], [-77.391134, 38.853478], [-77.389836, 38.853723], [-77.389215, 38.853845], [-77.38892, 38.853895], [-77.388716, 38.853941], [-77.388024, 38.854062], [-77.387165, 38.854196], [-77.386771, 38.854162], [-77.386529, 38.854111], [-77.386343, 38.854055], [-77.386187, 38.853987], [-77.386127, 38.853954], [-77.386079, 38.85392], [-77.385986, 38.853839], [-77.385938, 38.853785], [-77.385904, 38.853738], [-77.385849, 38.853638], [-77.385829, 38.853585], [-77.385812, 38.853521], [-77.3858, 38.853402], [-77.385805, 38.853336], [-77.385817, 38.853271], [-77.38586, 38.853155], [-77.385888, 38.853105], [-77.385929, 38.853047], [-77.38601, 38.852959], [-77.386068, 38.85291], [-77.386119, 38.852873], [-77.386233, 38.85281], [-77.386292, 38.852784], [-77.386367, 38.852757], [-77.386444, 38.852736], [-77.386551, 38.852715], [-77.386695, 38.852705], [-77.38684, 38.852711], [-77.386899, 38.85272], [-77.386985, 38.852739], [-77.387131, 38.852784], [-77.387234, 38.852827], [-77.387327, 38.852872], [-77.387501, 38.852977], [-77.387596, 38.853046], [-77.387689, 38.853125], [-77.387869, 38.853301], [-77.388005, 38.8535], [-77.388211, 38.853861], [-77.388248, 38.853958], [-77.38834, 38.854202], [-77.388434, 38.854509], [-77.388512, 38.85483], [-77.388556, 38.855045], [-77.388563, 38.855077], [-77.388615, 38.855398], [-77.38864, 38.855726], [-77.388657, 38.85606], [-77.388632, 38.856494], [-77.388606, 38.856728], [-77.388546, 38.857062], [-77.388494, 38.857283], [-77.388383, 38.85759], [-77.388245, 38.857898], [-77.387962, 38.858392], [-77.387722, 38.858713], [-77.387587, 38.858842], [-77.387448, 38.858992], [-77.38738, 38.859049], [-77.387049, 38.859315], [-77.387001, 38.859355], [-77.386572, 38.859616], [-77.386057, 38.859876], [-77.385696, 38.860037], [-77.385104, 38.860297], [-77.384246, 38.860678], [-77.383311, 38.861091], [-77.382484, 38.861549], [-77.381927, 38.861964], [-77.381649, 38.862271], [-77.381472, 38.862656], [-77.38114, 38.86254], [-77.380676, 38.862336], [-77.380373, 38.862167], [-77.380144, 38.862016], [-77.379932, 38.861857], [-77.379724, 38.861669], [-77.379541, 38.861495], [-77.379299, 38.861256], [-77.379174, 38.86114], [-77.378963, 38.86097], [-77.378779, 38.860822], [-77.378622, 38.860715], [-77.378375, 38.860584], [-77.37825, 38.860526], [-77.377901, 38.860354], [-77.377674, 38.860258], [-77.377503, 38.860194], [-77.376982, 38.860031], [-77.376724, 38.859968], [-77.376465, 38.859908], [-77.376139, 38.859843], [-77.375957, 38.859809], [-77.375449, 38.859704], [-77.37477, 38.859591], [-77.373992, 38.859482], [-77.373385, 38.859411], [-77.373319, 38.859405], [-77.371684, 38.859251], [-77.371331, 38.859226], [-77.37112, 38.859211], [-77.371099, 38.85942], [-77.371098, 38.859619], [-77.371033, 38.860102], [-77.370993, 38.860407], [-77.370953, 38.86073], [-77.370894, 38.86095], [-77.370816, 38.861165], [-77.370757, 38.861296], [-77.370665, 38.861443], [-77.370575, 38.861587], [-77.370384, 38.861875], [-77.370116, 38.862301], [-77.369869, 38.862675], [-77.369695, 38.862937], [-77.369553, 38.863149], [-77.369282, 38.863562], [-77.369075, 38.863878], [-77.369003, 38.863978], [-77.368943, 38.864053], [-77.368872, 38.864143], [-77.368754, 38.864281], [-77.368648, 38.864383], [-77.368548, 38.86448], [-77.368413, 38.864611], [-77.368244, 38.864751], [-77.368139, 38.86483], [-77.368096, 38.864859], [-77.367962, 38.864949], [-77.367753, 38.865087], [-77.36752, 38.865221], [-77.36716, 38.865425], [-77.366916, 38.865565], [-77.366749, 38.865664], [-77.366693, 38.865696], [-77.366603, 38.865757], [-77.36621, 38.865941], [-77.365964, 38.866096], [-77.365677, 38.866275], [-77.365412, 38.86648], [-77.365205, 38.866666], [-77.365092, 38.866802], [-77.364926, 38.867027], [-77.364819, 38.867215], [-77.364795, 38.867271], [-77.364687, 38.867526], [-77.364631, 38.867731], [-77.364602, 38.867885], [-77.364585, 38.868103], [-77.364599, 38.86833], [-77.364602, 38.868416], [-77.364653, 38.868646], [-77.364749, 38.868903], [-77.364915, 38.869232], [-77.365031, 38.869489], [-77.36519, 38.869811], [-77.365353, 38.870145], [-77.365541, 38.870577], [-77.365608, 38.870714], [-77.36564, 38.87078], [-77.365767, 38.871048], [-77.365858, 38.871232], [-77.365914, 38.871335], [-77.366032, 38.871546], [-77.366196, 38.871805], [-77.366355, 38.872046], [-77.366507, 38.872259], [-77.366678, 38.872501], [-77.366856, 38.872754], [-77.366963, 38.872925], [-77.367022, 38.873039], [-77.367081, 38.873163], [-77.367145, 38.873344], [-77.367182, 38.87346], [-77.367204, 38.873534], [-77.367233, 38.873695], [-77.36726, 38.873889], [-77.367273, 38.874003], [-77.367165, 38.874012], [-77.366994, 38.874012], [-77.366779, 38.873999], [-77.366666, 38.873986], [-77.366501, 38.873968], [-77.366313, 38.873934], [-77.366155, 38.873897], [-77.365932, 38.873832], [-77.36562, 38.873728], [-77.365375, 38.873647], [-77.36552, 38.873752], [-77.365645, 38.873824], [-77.365759, 38.873875] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-78.429232, 38.140783], [-78.348999, 38.108628] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-78.348999, 38.108628] } }, { "type": "Feature", "properties": { "lineStringIndex": 0, "segmentIndex": 3104, "totalDistance": 183.46844, "lineDistance": 183.46844, "segmentDistance": 0.044741, "pointDistance": 7.876557, "dist": 7.876557, "multiFeatureIndex": 0, "location": 183.46844, "index": 3104, "marker-color": "#F0F" }, "geometry": { "type": "Point", "coordinates": [-78.429232, 38.140783] } } ] } ================================================ FILE: packages/turf-nearest-point-on-line/test/out/route2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-113.928988, 50.814121], [-113.928993, 50.813067], [-113.928994, 50.811043], [-113.928995, 50.807418], [-113.929029, 50.804989], [-113.951995, 50.804953], [-113.956813, 50.804931], [-113.957629, 50.804917], [-113.958021, 50.804876], [-113.958575, 50.804779], [-113.959011, 50.804687], [-113.959367, 50.804572], [-113.959858, 50.804414], [-113.960433, 50.804102], [-113.960932, 50.803769], [-113.961563, 50.803306], [-113.961754, 50.803166], [-113.962486, 50.802753], [-113.9641, 50.801549], [-113.966048, 50.800154], [-113.967597, 50.799082], [-113.968657, 50.798289], [-113.969382, 50.79779], [-113.969303, 50.797653], [-113.968833, 50.797177], [-113.968399, 50.796832], [-113.96652, 50.796071], [-113.965325, 50.795579], [-113.964608, 50.795229], [-113.963373, 50.794321], [-113.962094, 50.793355], [-113.956995, 50.789049], [-113.951125, 50.784098], [-113.948573, 50.78194], [-113.941011, 50.775626], [-113.933724, 50.769538], [-113.914584, 50.753577], [-113.906521, 50.746803], [-113.896774, 50.738614], [-113.886275, 50.729779], [-113.88594, 50.729474], [-113.885307, 50.728898], [-113.884903, 50.728477], [-113.884523, 50.728028], [-113.884201, 50.727599], [-113.883986, 50.727298], [-113.883696, 50.726863], [-113.883482, 50.72648], [-113.883314, 50.726156], [-113.883153, 50.725767], [-113.883094, 50.725646], [-113.883031, 50.725465], [-113.882906, 50.725155], [-113.882792, 50.724718], [-113.882641, 50.7241], [-113.882584, 50.723735], [-113.88255, 50.723367], [-113.882523, 50.72258], [-113.882495, 50.717709], [-113.882486, 50.713302], [-113.882476, 50.712125], [-113.882468, 50.702531], [-113.882456, 50.699815], [-113.882434, 50.698229], [-113.882445, 50.693791], [-113.882419, 50.692602], [-113.882412, 50.692077], [-113.882405, 50.691705], [-113.882365, 50.691331], [-113.882289, 50.690878], [-113.882163, 50.690282], [-113.882074, 50.689985], [-113.881908, 50.689517], [-113.881705, 50.689095], [-113.881622, 50.688959], [-113.881501, 50.688721], [-113.881281, 50.688347], [-113.88097, 50.687826], [-113.880715, 50.687491], [-113.880385, 50.687085], [-113.878859, 50.685206], [-113.877456, 50.68348], [-113.875929, 50.68157], [-113.873357, 50.67843], [-113.871364, 50.675999], [-113.869142, 50.673289], [-113.868358, 50.672328], [-113.868037, 50.671943], [-113.867467, 50.671232], [-113.866987, 50.670734], [-113.866668, 50.670424], [-113.866296, 50.670141], [-113.865816, 50.669814], [-113.865451, 50.6696], [-113.8651, 50.669419], [-113.864667, 50.669203], [-113.864079, 50.668945], [-113.863436, 50.668716], [-113.862804, 50.66849], [-113.861739, 50.668114], [-113.853421, 50.665144], [-113.842891, 50.661554], [-113.842171, 50.661197], [-113.841049, 50.660571], [-113.840156, 50.659997], [-113.839716, 50.65961], [-113.839157, 50.659132], [-113.838847, 50.658805], [-113.838358, 50.658284], [-113.837938, 50.657723], [-113.837609, 50.657111], [-113.837268, 50.656259], [-113.83703, 50.655665], [-113.836937, 50.654919], [-113.836909, 50.654144], [-113.836859, 50.650724], [-113.836826, 50.647581], [-113.836828, 50.646677], [-113.836945, 50.631237], [-113.836945, 50.630338], [-113.83681, 50.620833], [-113.836809, 50.615002], [-113.836748, 50.614363], [-113.836695, 50.613902], [-113.836544, 50.613327], [-113.836395, 50.612865], [-113.836165, 50.612347], [-113.835974, 50.611908], [-113.835688, 50.611368], [-113.834199, 50.609116], [-113.831975, 50.605815], [-113.830597, 50.603738], [-113.830194, 50.603006], [-113.829862, 50.60236], [-113.829623, 50.601865], [-113.829361, 50.601178], [-113.829199, 50.600699], [-113.829001, 50.600003], [-113.828688, 50.598264], [-113.828653, 50.597525], [-113.828653, 50.596741], [-113.828659, 50.589493], [-113.828615, 50.584393], [-113.82855, 50.57625], [-113.82857, 50.572186], [-113.82858, 50.57189], [-113.828436, 50.567929], [-113.828262, 50.565198], [-113.82828, 50.550181], [-113.82829, 50.541809], [-113.828291, 50.541417], [-113.828359, 50.484565], [-113.828388, 50.473188], [-113.82839, 50.426319], [-113.828391, 50.410937], [-113.828495, 50.409031], [-113.828495, 50.408255], [-113.828326, 50.404708], [-113.827868, 50.402523], [-113.827189, 50.400367], [-113.82573, 50.397464], [-113.824909, 50.396393], [-113.823811, 50.394869], [-113.82128, 50.391895], [-113.801481, 50.376398], [-113.797907, 50.371872], [-113.796297, 50.369858], [-113.795351, 50.368139], [-113.790726, 50.359724], [-113.789384, 50.358382], [-113.78784, 50.357509], [-113.782077, 50.355219], [-113.781868, 50.355163], [-113.780696, 50.354643], [-113.779832, 50.354058], [-113.779376, 50.353709], [-113.779034, 50.353447], [-113.777779, 50.352208], [-113.776476, 50.350971], [-113.775669, 50.350156], [-113.774903, 50.349363], [-113.774528, 50.349008], [-113.774139, 50.348641], [-113.773752, 50.348267], [-113.773367, 50.347894], [-113.772991, 50.347521], [-113.77261, 50.347144], [-113.77224, 50.346771], [-113.771866, 50.346393], [-113.771491, 50.346021], [-113.771101, 50.345634], [-113.770724, 50.345257], [-113.770334, 50.344868], [-113.769256, 50.343852], [-113.767134, 50.341669], [-113.764647, 50.339182], [-113.764438, 50.338973], [-113.761597, 50.336333], [-113.758593, 50.33458], [-113.755546, 50.333429], [-113.751856, 50.33269], [-113.745118, 50.331594], [-113.742286, 50.330717], [-113.739453, 50.329347], [-113.731213, 50.32247], [-113.723532, 50.315976], [-113.722158, 50.313619], [-113.718768, 50.300682], [-113.714948, 50.295611], [-113.70452, 50.282916], [-113.688985, 50.273536], [-113.671647, 50.26314], [-113.665976, 50.259608], [-113.661862, 50.256884], [-113.66006, 50.254964], [-113.659379, 50.253877], [-113.658858, 50.252741], [-113.658676, 50.251733], [-113.656669, 50.241627], [-113.656154, 50.237592], [-113.655983, 50.234435], [-113.656026, 50.226446], [-113.656001, 50.222848], [-113.655983, 50.212634], [-113.655983, 50.198956], [-113.656026, 50.187774], [-113.655725, 50.180189], [-113.654781, 50.177056], [-113.650834, 50.16488], [-113.648988, 50.159931], [-113.648171, 50.158673], [-113.647041, 50.157055], [-113.642675, 50.151639], [-113.639814, 50.147556], [-113.634175, 50.135735], [-113.632251, 50.131741], [-113.620363, 50.106626], [-113.619376, 50.104527], [-113.61384, 50.092744], [-113.608561, 50.081675], [-113.606581, 50.077494], [-113.603669, 50.071347], [-113.596202, 50.055589], [-113.589593, 50.041645], [-113.585973, 50.034075], [-113.583284, 50.028469], [-113.578879, 50.019214], [-113.577072, 50.015416], [-113.576933, 50.015123], [-113.575461, 50.01195], [-113.56968, 49.999485], [-113.565276, 49.990109], [-113.562856, 49.984972], [-113.558388, 49.975529], [-113.556763, 49.972084], [-113.551497, 49.960982], [-113.550282, 49.958226], [-113.543115, 49.943177], [-113.537579, 49.93141], [-113.531657, 49.91895], [-113.528868, 49.913112], [-113.52852, 49.912237], [-113.528209, 49.911247], [-113.528013, 49.910313], [-113.527878, 49.909552], [-113.527877, 49.908805], [-113.528009, 49.904496], [-113.527999, 49.902765], [-113.527923, 49.890232], [-113.527923, 49.878148], [-113.527237, 49.875493], [-113.526537, 49.873052], [-113.52449, 49.865701], [-113.524447, 49.856267], [-113.52449, 49.841269], [-113.524447, 49.826764], [-113.52437, 49.815239], [-113.524361, 49.813862], [-113.524357, 49.801088], [-113.524347, 49.798401], [-113.524359, 49.795748], [-113.524362, 49.795059], [-113.524404, 49.785441], [-113.524345, 49.778892], [-113.524361, 49.771945], [-113.523632, 49.77031], [-113.522087, 49.769007], [-113.520199, 49.768287], [-113.514319, 49.76643], [-113.510629, 49.764933], [-113.50771, 49.763048], [-113.494964, 49.752901], [-113.479476, 49.742059], [-113.460012, 49.728293], [-113.455597, 49.725235], [-113.454572, 49.72442], [-113.45366, 49.723598], [-113.452976, 49.722915], [-113.45129, 49.720944], [-113.450256, 49.719782], [-113.447746, 49.716986], [-113.447289, 49.716417], [-113.443365, 49.71203], [-113.443141, 49.711789], [-113.442819, 49.711601], [-113.442606, 49.711479], [-113.44236, 49.711374], [-113.442103, 49.711279], [-113.441837, 49.711197], [-113.441458, 49.711124], [-113.441117, 49.711086], [-113.440779, 49.711071], [-113.440369, 49.71109], [-113.439978, 49.71114], [-113.439697, 49.711196], [-113.439397, 49.711273], [-113.439102, 49.71139], [-113.438862, 49.711498], [-113.438591, 49.711635], [-113.438391, 49.711766], [-113.438075, 49.712061], [-113.437745, 49.712489], [-113.43745, 49.712915], [-113.43721, 49.713212], [-113.436932, 49.713495], [-113.436629, 49.713751], [-113.436287, 49.713988], [-113.435908, 49.714204], [-113.435538, 49.714393], [-113.431814, 49.715951], [-113.423934, 49.718913], [-113.423148, 49.719208], [-113.419515, 49.720574], [-113.418553, 49.720884], [-113.417353, 49.721191], [-113.416622, 49.721378], [-113.415189, 49.721933], [-113.414887, 49.722092], [-113.414553, 49.722328], [-113.414204, 49.722586], [-113.413109, 49.723458], [-113.412313, 49.724209], [-113.412068, 49.724385], [-113.411871, 49.724508], [-113.41169, 49.724585], [-113.411456, 49.724665], [-113.411213, 49.724721], [-113.410939, 49.724758], [-113.410649, 49.724769], [-113.408706, 49.724761], [-113.405913, 49.724764], [-113.403119, 49.724754], [-113.400316, 49.724758], [-113.397541, 49.724759], [-113.396042, 49.724769], [-113.395455, 49.724758], [-113.395172, 49.724734], [-113.394938, 49.724709], [-113.394729, 49.724678], [-113.394467, 49.724619], [-113.394209, 49.724544], [-113.393974, 49.724469], [-113.393696, 49.724366], [-113.393468, 49.724249], [-113.393241, 49.72412], [-113.393012, 49.723965], [-113.39289, 49.723864], [-113.391771, 49.722807], [-113.391196, 49.722209], [-113.390266, 49.721242], [-113.389586, 49.720567], [-113.388246, 49.71917], [-113.387068, 49.717968], [-113.386688, 49.717602], [-113.386617, 49.717518], [-113.386398, 49.717254], [-113.386209, 49.717057], [-113.385914, 49.716751], [-113.385697, 49.71658], [-113.385459, 49.716404], [-113.385223, 49.716267], [-113.384941, 49.716121], [-113.384654, 49.716013], [-113.384337, 49.715925], [-113.383953, 49.715848], [-113.383617, 49.715803], [-113.383303, 49.715777], [-113.382948, 49.715769], [-113.382593, 49.71579], [-113.382269, 49.715822], [-113.381923, 49.715886], [-113.381566, 49.715981], [-113.381244, 49.716092], [-113.380957, 49.716219], [-113.380551, 49.716436], [-113.380035, 49.71673], [-113.379484, 49.717081], [-113.378419, 49.71777], [-113.377851, 49.718172], [-113.376955, 49.718849], [-113.376472, 49.719244], [-113.375953, 49.719695], [-113.375418, 49.720164], [-113.374752, 49.720812], [-113.373389, 49.722261], [-113.372553, 49.723172], [-113.371753, 49.724069], [-113.371091, 49.724816], [-113.370703, 49.725251], [-113.370292, 49.725659], [-113.36989, 49.726068], [-113.369354, 49.726543], [-113.368728, 49.727064], [-113.368135, 49.727526], [-113.367567, 49.727939], [-113.366419, 49.728699], [-113.366091, 49.728877], [-113.365827, 49.729022], [-113.365501, 49.729201], [-113.362951, 49.730439], [-113.358468, 49.732139], [-113.3397, 49.739588], [-113.335475, 49.741364], [-113.327488, 49.744425], [-113.318052, 49.748192], [-113.313869, 49.749882], [-113.31224, 49.750619], [-113.310651, 49.75165], [-113.307682, 49.753879], [-113.302921, 49.757409], [-113.297078, 49.761832], [-113.293465, 49.764507], [-113.274088, 49.778989], [-113.273227, 49.779697], [-113.272213, 49.780484], [-113.270309, 49.781807], [-113.269287, 49.782542], [-113.268506, 49.783052], [-113.267549, 49.783577], [-113.266355, 49.784155], [-113.264867, 49.784696], [-113.26421, 49.78488], [-113.263279, 49.785126], [-113.262406, 49.785321], [-113.261535, 49.785468], [-113.260247, 49.785632], [-113.2584, 49.785752], [-113.253189, 49.785761], [-113.2503, 49.785759], [-113.246741, 49.785753], [-113.243803, 49.785748], [-113.24168, 49.785746], [-113.239441, 49.785743], [-113.235416, 49.785738], [-113.232546, 49.785734], [-113.230542, 49.78573], [-113.207916, 49.785665], [-113.188962, 49.785585], [-113.187421, 49.785394], [-113.185955, 49.785084], [-113.182069, 49.784248], [-113.178433, 49.783545], [-113.175537, 49.783555], [-113.172403, 49.784002], [-113.169876, 49.784514], [-113.165425, 49.785057], [-113.162661, 49.785308], [-113.158491, 49.785468], [-113.154009, 49.785249], [-113.150706, 49.7849], [-113.138727, 49.78387], [-113.137918, 49.7838], [-113.132484, 49.783537], [-113.127139, 49.783666], [-113.121522, 49.784134], [-113.116401, 49.784873], [-113.108878, 49.786479], [-113.10643, 49.787036], [-113.100519, 49.78837], [-113.099817, 49.78851], [-113.099069, 49.788664], [-113.098414, 49.788796], [-113.097678, 49.788933], [-113.096947, 49.789058], [-113.096124, 49.78919], [-113.095087, 49.789365], [-113.093946, 49.789519], [-113.092851, 49.789655], [-113.091995, 49.789773], [-113.091108, 49.78988], [-113.090105, 49.789981], [-113.089148, 49.790064], [-113.088464, 49.790125], [-113.087728, 49.790181], [-113.08695, 49.790229], [-113.08621, 49.790281], [-113.085391, 49.790327], [-113.084622, 49.790364], [-113.083774, 49.790396], [-113.082731, 49.790426], [-113.081849, 49.790441], [-113.080915, 49.790449], [-113.080041, 49.790455], [-113.079132, 49.790458], [-113.078156, 49.790437], [-113.077306, 49.790416], [-113.076308, 49.790386], [-113.075035, 49.79033], [-113.073984, 49.790268], [-113.073014, 49.790204], [-113.072411, 49.790162], [-113.071942, 49.790123], [-113.069874, 49.789921], [-113.06869, 49.789793], [-113.067583, 49.789667], [-113.066892, 49.789578], [-113.066126, 49.789472], [-113.064972, 49.789301], [-113.04876, 49.786854], [-113.048, 49.78674], [-113.047462, 49.78667], [-113.046933, 49.786601], [-113.046365, 49.786543], [-113.041994, 49.786136], [-113.038418, 49.786047], [-113.028911, 49.786062], [-113.013026, 49.786042], [-113.003977, 49.786038], [-113.002681, 49.785962], [-113.001644, 49.785864], [-113.00048, 49.785713], [-112.999756, 49.785611], [-112.9987, 49.785408], [-112.997454, 49.785132], [-112.995534, 49.784581], [-112.99125, 49.783007], [-112.98295, 49.779625], [-112.980557, 49.778522], [-112.979018, 49.777554], [-112.976341, 49.775651], [-112.973797, 49.773044], [-112.965769, 49.764644], [-112.960895, 49.75933], [-112.960092, 49.758465], [-112.959726, 49.75808], [-112.959447, 49.757828], [-112.959069, 49.757507], [-112.958709, 49.757166], [-112.958281, 49.756793], [-112.95762, 49.756294], [-112.956931, 49.755799], [-112.956159, 49.755282], [-112.955682, 49.754998], [-112.955151, 49.754703], [-112.952858, 49.753509], [-112.949354, 49.752075], [-112.94544, 49.749962], [-112.938188, 49.743931], [-112.931304, 49.738228], [-112.926731, 49.73422], [-112.925384, 49.732989], [-112.924479, 49.731925], [-112.923468, 49.730575], [-112.922298, 49.729055], [-112.921036, 49.7277], [-112.918917, 49.725859], [-112.918155, 49.725203], [-112.916619, 49.723846], [-112.915487, 49.723018], [-112.915163, 49.72283], [-112.914796, 49.722631], [-112.914432, 49.722464], [-112.914031, 49.722286], [-112.913669, 49.722145], [-112.913246, 49.722004], [-112.912907, 49.721891], [-112.912605, 49.721797], [-112.912248, 49.721697], [-112.911203, 49.721427], [-112.910101, 49.721135], [-112.906937, 49.720299], [-112.903215, 49.719342], [-112.900165, 49.718558], [-112.897476, 49.717852], [-112.895936, 49.717459], [-112.895282, 49.717281], [-112.894243, 49.71701], [-112.893141, 49.716728], [-112.892426, 49.716529], [-112.89165, 49.716338], [-112.891198, 49.71622], [-112.890633, 49.716083], [-112.889897, 49.715934], [-112.889174, 49.715796], [-112.888532, 49.715689], [-112.887541, 49.715558], [-112.88613, 49.71536], [-112.885501, 49.715271], [-112.884833, 49.715175], [-112.884308, 49.715088], [-112.883816, 49.71495], [-112.883277, 49.714832], [-112.882696, 49.714691], [-112.88207, 49.714542], [-112.881531, 49.714385], [-112.881025, 49.714222], [-112.880522, 49.714039], [-112.879986, 49.713834], [-112.879529, 49.71365], [-112.87903, 49.713431], [-112.878502, 49.713173], [-112.877609, 49.712649], [-112.875259, 49.711284], [-112.873228, 49.710141], [-112.872763, 49.709872], [-112.87224, 49.709593], [-112.871848, 49.709384], [-112.871432, 49.709188], [-112.871061, 49.709022], [-112.870716, 49.708873], [-112.870311, 49.708723], [-112.869954, 49.708592], [-112.869443, 49.708436], [-112.868983, 49.708311], [-112.868462, 49.708183], [-112.86782, 49.708055], [-112.867368, 49.707982], [-112.866939, 49.707916], [-112.86545, 49.707716], [-112.861762, 49.707191], [-112.86017, 49.706981], [-112.85809, 49.706677], [-112.85777, 49.706622], [-112.857467, 49.706553], [-112.857076, 49.706452], [-112.856698, 49.706338], [-112.854212, 49.705528], [-112.85381, 49.705386], [-112.853466, 49.70523], [-112.853137, 49.705049], [-112.852839, 49.704853], [-112.851852, 49.704221], [-112.851516, 49.704031], [-112.851207, 49.703872], [-112.850867, 49.70373], [-112.850433, 49.703565], [-112.84992, 49.703388], [-112.847903, 49.702792], [-112.845724, 49.702167], [-112.844077, 49.701628], [-112.8432, 49.701369], [-112.842649, 49.701218], [-112.842201, 49.701114], [-112.841728, 49.701025], [-112.840794, 49.700856], [-112.838125, 49.700426], [-112.834609, 49.699873], [-112.832064, 49.699465], [-112.828981, 49.698964], [-112.828552, 49.698904], [-112.827826, 49.698813], [-112.827096, 49.698728], [-112.826436, 49.698665], [-112.825387, 49.6986], [-112.824515, 49.698555], [-112.823879, 49.698527], [-112.822719, 49.698465], [-112.820041, 49.698338], [-112.818601, 49.69826], [-112.817659, 49.698214], [-112.817451, 49.698208], [-112.816791, 49.698174], [-112.81589, 49.698112], [-112.814861, 49.698029], [-112.814224, 49.697963], [-112.813253, 49.697849], [-112.813147, 49.697836], [-112.811952, 49.697672], [-112.811842, 49.697656], [-112.811502, 49.697615], [-112.811227, 49.697581], [-112.810773, 49.697561], [-112.810352, 49.69755], [-112.810002, 49.697537], [-112.809403, 49.697532], [-112.806575, 49.697613], [-112.805437, 49.69765], [-112.804522, 49.697685], [-112.80393, 49.697707], [-112.80238, 49.69777], [-112.802025, 49.697788], [-112.801625, 49.697812], [-112.800653, 49.697888], [-112.799723, 49.697967], [-112.79867, 49.698052], [-112.798046, 49.698084], [-112.797631, 49.698102], [-112.797077, 49.698117], [-112.796376, 49.698135], [-112.79554, 49.698135], [-112.794414, 49.698135], [-112.793544, 49.698131], [-112.788404, 49.698111], [-112.787759, 49.698108], [-112.787623, 49.698109], [-112.786794, 49.698114], [-112.785574, 49.698121], [-112.784545, 49.69817], [-112.784282, 49.698206], [-112.783264, 49.698348], [-112.782977, 49.69837], [-112.782674, 49.69837], [-112.782377, 49.69836], [-112.781976, 49.698324], [-112.781573, 49.698283], [-112.780374, 49.698174], [-112.779856, 49.698084], [-112.77969, 49.698039], [-112.779534, 49.697963], [-112.779416, 49.697879], [-112.779336, 49.697779], [-112.779293, 49.697678], [-112.779266, 49.697588], [-112.779277, 49.697432], [-112.779309, 49.697054], [-112.779557, 49.695985], [-112.779657, 49.695544], [-112.779736, 49.695225], [-112.779761, 49.695101], [-112.779809, 49.694922], [-112.779952, 49.69441], [-112.780019, 49.694125], [-112.780058, 49.69387], [-112.780085, 49.693604], [-112.78011, 49.693292], [-112.780165, 49.692652], [-112.780169, 49.692372], [-112.780165, 49.692154], [-112.780164, 49.692098], [-112.780144, 49.691862], [-112.780143, 49.691843], [-112.780133, 49.69176], [-112.780037, 49.691006], [-112.779822, 49.689657], [-112.77979, 49.689308], [-112.779748, 49.688889], [-112.779749, 49.688478], [-112.779739, 49.688031], [-112.779748, 49.687622], [-112.779769, 49.687159], [-112.779816, 49.686494], [-112.779896, 49.685531], [-112.779868, 49.68512], [-112.779875, 49.684881], [-112.779863, 49.684535], [-112.77986, 49.684358], [-112.779847, 49.684121], [-112.779816, 49.683702], [-112.779801, 49.683613], [-112.779746, 49.683344], [-112.779688, 49.682957], [-112.779596, 49.68252], [-112.779542, 49.68228], [-112.7794, 49.681732], [-112.779248, 49.681225], [-112.779016, 49.680478], [-112.778857, 49.679737], [-112.778724, 49.678803], [-112.778685, 49.678481], [-112.77867, 49.678161], [-112.778679, 49.677477], [-112.778716, 49.676815], [-112.77879, 49.676373], [-112.778793, 49.676281], [-112.778809, 49.67613], [-112.778826, 49.675962], [-112.779009, 49.67502], [-112.779283, 49.674077], [-112.779324, 49.67372], [-112.779398, 49.673084], [-112.779441, 49.672708], [-112.779445, 49.672624], [-112.779457, 49.6724], [-112.779474, 49.670433], [-112.779525, 49.669583], [-112.779531, 49.668796], [-112.779522, 49.66867], [-112.779234, 49.66867], [-112.778749, 49.66867], [-112.773523, 49.668658], [-112.769369, 49.668649], [-112.763756, 49.668637], [-112.7565, 49.668622], [-112.75294, 49.668604], [-112.752507, 49.668609], [-112.751647, 49.668588], [-112.750485, 49.668477], [-112.748828, 49.668137], [-112.747424, 49.667643], [-112.746405, 49.667117], [-112.745658, 49.666544], [-112.743059, 49.663524], [-112.742076, 49.662492], [-112.741004, 49.661674], [-112.73773, 49.659519], [-112.735465, 49.657989], [-112.733655, 49.656859], [-112.718533, 49.646941], [-112.708401, 49.640314], [-112.699223, 49.634317], [-112.697367, 49.633097], [-112.696977, 49.632838], [-112.688059, 49.626979], [-112.68302, 49.623675], [-112.676625, 49.619483], [-112.667074, 49.613228], [-112.658988, 49.607908], [-112.655248, 49.605484], [-112.650972, 49.603234], [-112.646487, 49.600778], [-112.644902, 49.599632], [-112.643248, 49.598383], [-112.641103, 49.596798], [-112.639355, 49.595616], [-112.637, 49.594133], [-112.627891, 49.588425], [-112.602707, 49.572537], [-112.600552, 49.571077], [-112.598617, 49.5692], [-112.59449, 49.564228], [-112.593913, 49.5636], [-112.593075, 49.562994], [-112.592311, 49.562392], [-112.591327, 49.561818], [-112.589132, 49.56091], [-112.585717, 49.559813], [-112.580643, 49.558189], [-112.579135, 49.557557], [-112.577853, 49.55687], [-112.576584, 49.555934], [-112.573576, 49.55323], [-112.570447, 49.550424], [-112.569232, 49.549564], [-112.567477, 49.548436], [-112.556735, 49.541871], [-112.550446, 49.538028], [-112.546175, 49.535345], [-112.543195, 49.53355], [-112.541943, 49.532867], [-112.522018, 49.522571], [-112.51966, 49.521328], [-112.515058, 49.518953], [-112.512595, 49.517628], [-112.51096, 49.516524], [-112.50948, 49.515214], [-112.508358, 49.513958], [-112.507396, 49.512646], [-112.504667, 49.506398], [-112.503772, 49.504449], [-112.502829, 49.502755], [-112.502134, 49.501789], [-112.500323, 49.499793], [-112.498242, 49.497945], [-112.491937, 49.492826], [-112.472122, 49.477074], [-112.46972, 49.475443], [-112.458697, 49.468584], [-112.452076, 49.464789], [-112.441426, 49.458313], [-112.440081, 49.457555], [-112.439154, 49.45711], [-112.437692, 49.456507], [-112.428185, 49.452715], [-112.42567, 49.451509], [-112.421872, 49.448943], [-112.416852, 49.445256], [-112.415374, 49.444112], [-112.413757, 49.443067], [-112.41199, 49.442277], [-112.408866, 49.441094], [-112.403355, 49.439005], [-112.400426, 49.437907], [-112.395624, 49.436024], [-112.393366, 49.43506], [-112.391141, 49.43401], [-112.389667, 49.433278], [-112.387242, 49.431857], [-112.380495, 49.427283], [-112.377371, 49.425166], [-112.370769, 49.420228], [-112.369213, 49.419103], [-112.368029, 49.418322], [-112.366868, 49.417688], [-112.365853, 49.417109], [-112.364196, 49.416279], [-112.358645, 49.413606], [-112.345069, 49.40697], [-112.313601, 49.391666], [-112.293379, 49.381796], [-112.280866, 49.375648], [-112.275641, 49.37312], [-112.27415, 49.372357], [-112.272971, 49.371647], [-112.272087, 49.371077], [-112.271197, 49.370405], [-112.270258, 49.369532], [-112.269242, 49.36847], [-112.263635, 49.361606], [-112.261762, 49.359287], [-112.252776, 49.348158], [-112.236226, 49.327356], [-112.231602, 49.321856], [-112.231504, 49.32174], [-112.22954, 49.319363], [-112.227247, 49.316403], [-112.224225, 49.312727], [-112.22224, 49.310555], [-112.216986, 49.304836], [-112.215307, 49.3031], [-112.213887, 49.301877], [-112.213028, 49.301145], [-112.204369, 49.294474], [-112.201434, 49.291851], [-112.200807, 49.291228], [-112.200423, 49.290767], [-112.200161, 49.290419], [-112.199859, 49.289985], [-112.199566, 49.2895], [-112.199306, 49.289012], [-112.199053, 49.288493], [-112.198839, 49.287999], [-112.198721, 49.287648], [-112.198561, 49.28716], [-112.198436, 49.286692], [-112.198364, 49.286224], [-112.198303, 49.285775], [-112.198271, 49.285347], [-112.198256, 49.282987], [-112.198269, 49.279832], [-112.197949, 49.277457], [-112.196565, 49.273803], [-112.189342, 49.264663], [-112.187679, 49.262625], [-112.187029, 49.261975], [-112.185766, 49.260758], [-112.185003, 49.259994], [-112.184046, 49.259256], [-112.182999, 49.258515], [-112.181937, 49.257797], [-112.180185, 49.2566], [-112.179314, 49.25606], [-112.178353, 49.255415], [-112.177525, 49.254853], [-112.176769, 49.254313], [-112.176125, 49.253788], [-112.174746, 49.252496], [-112.173897, 49.251682], [-112.173107, 49.250905], [-112.153316, 49.231556], [-112.145266, 49.223554], [-112.137196, 49.215571], [-112.13617, 49.214714], [-112.134956, 49.213742], [-112.134168, 49.213187], [-112.132859, 49.212334], [-112.13166, 49.211607], [-112.12957, 49.210494], [-112.126976, 49.209298], [-112.123065, 49.207555], [-112.121541, 49.206848], [-112.120052, 49.206151], [-112.118948, 49.205619], [-112.117869, 49.205062], [-112.11706, 49.204623], [-112.115236, 49.203546], [-112.112919, 49.201989], [-112.111625, 49.201012], [-112.109029, 49.198836], [-112.106118, 49.195686], [-112.105716, 49.195156], [-112.10511, 49.194341], [-112.102212, 49.189769], [-112.099016, 49.184803], [-112.097293, 49.182034], [-112.09607, 49.179971], [-112.093881, 49.176527], [-112.093098, 49.175222], [-112.092754, 49.174577], [-112.092518, 49.174107], [-112.092368, 49.173658], [-112.092271, 49.173279], [-112.092175, 49.172816], [-112.092083, 49.172436], [-112.092105, 49.171924], [-112.092116, 49.171461], [-112.092153, 49.170923], [-112.092303, 49.169933], [-112.092797, 49.166924], [-112.093183, 49.164483], [-112.093425, 49.163015], [-112.094079, 49.159023], [-112.094508, 49.156383], [-112.094555, 49.155953], [-112.094556, 49.155221], [-112.094514, 49.154793], [-112.094503, 49.154492], [-112.094385, 49.153874], [-112.094213, 49.153187], [-112.094063, 49.152773], [-112.093902, 49.152351], [-112.093602, 49.151853], [-112.093237, 49.151257], [-112.092797, 49.15078], [-112.092443, 49.150366], [-112.09211, 49.150043], [-112.09144, 49.149473], [-112.090329, 49.148576], [-112.087872, 49.146674], [-112.085019, 49.144442], [-112.08445, 49.144014], [-112.083795, 49.143488], [-112.083195, 49.142934], [-112.082218, 49.142021], [-112.081255, 49.140863], [-112.080652, 49.140161], [-112.079815, 49.139052], [-112.079375, 49.138315], [-112.078935, 49.137592], [-112.078367, 49.136469], [-112.077562, 49.134475], [-112.07679, 49.132524], [-112.076328, 49.131429], [-112.07591, 49.130565], [-112.075325, 49.129377], [-112.074891, 49.128684], [-112.074472, 49.128059], [-112.073582, 49.12674], [-112.072631, 49.125499], [-112.071973, 49.124711], [-112.071054, 49.123645], [-112.069784, 49.122387], [-112.068512, 49.121237], [-112.066629, 49.119662], [-112.062677, 49.116351], [-112.055397, 49.110231], [-112.054528, 49.109557], [-112.053423, 49.108763], [-112.052461, 49.108147], [-112.045612, 49.103924], [-112.04278, 49.102161], [-112.042125, 49.101683], [-112.041514, 49.101163], [-112.040923, 49.100503], [-112.040258, 49.099716], [-112.039046, 49.09777], [-112.036761, 49.094883], [-112.034383, 49.091688], [-112.032973, 49.089733], [-112.032072, 49.088525], [-112.031257, 49.087397], [-112.027952, 49.082826], [-112.025918, 49.080115], [-112.023929, 49.077471], [-112.021412, 49.07398], [-112.01924, 49.070443], [-112.016505, 49.066092], [-112.014616, 49.062914], [-112.010898, 49.056849], [-112.010336, 49.056053], [-112.009981, 49.05549], [-112.009595, 49.055054], [-112.008383, 49.053913], [-112.004081, 49.049886], [-112.003484, 49.049323], [-112.002241, 49.048061], [-112.000186, 49.046131], [-111.998352, 49.044419], [-111.997649, 49.043715], [-111.997014, 49.042914], [-111.996531, 49.042236], [-111.996215, 49.041782], [-111.995927, 49.041307], [-111.995594, 49.040698], [-111.995321, 49.040118], [-111.994693, 49.038673], [-111.994001, 49.037108], [-111.992996, 49.034801], [-111.992369, 49.033409], [-111.99149, 49.031403], [-111.99082, 49.029866], [-111.990004, 49.02802], [-111.98936, 49.026568], [-111.988769, 49.025185], [-111.988218, 49.023936], [-111.987589, 49.022536], [-111.987371, 49.021885], [-111.987235, 49.021333], [-111.987097, 49.020858], [-111.986995, 49.020386], [-111.98692, 49.019658], [-111.986872, 49.018979], [-111.986866, 49.017199], [-111.986872, 49.015542], [-111.98686, 49.013841], [-111.986847, 49.01231], [-111.98685, 49.011137], [-111.986861, 49.010352], [-111.986797, 49.009758], [-111.986645, 49.009206], [-111.986377, 49.008696], [-111.986147, 49.008354], [-111.985836, 49.007998], [-111.985337, 49.007558], [-111.984989, 49.007266], [-111.984301, 49.006795], [-111.983474, 49.00638], [-111.982516, 49.005993], [-111.981765, 49.005715], [-111.980942, 49.005514], [-111.980129, 49.005334], [-111.979328, 49.005194], [-111.978062, 49.005092], [-111.976985, 49.005074], [-111.974918, 49.005173], [-111.973139, 49.005292], [-111.97154, 49.00538], [-111.969019, 49.005514], [-111.967562, 49.005617], [-111.966045, 49.005705], [-111.96469, 49.005725], [-111.963991, 49.005648], [-111.96346, 49.005567], [-111.96295, 49.005448], [-111.962485, 49.005296], [-111.962163, 49.005187], [-111.961761, 49.005004], [-111.961293, 49.004765], [-111.960951, 49.004554], [-111.960789, 49.004426], [-111.960561, 49.004236], [-111.960215, 49.003866], [-111.959973, 49.003571], [-111.959774, 49.003265], [-111.959681, 49.003043], [-111.959581, 49.002794], [-111.95951, 49.002452], [-111.959584, 49.002087], [-111.959768, 49.001731], [-111.96008, 49.00139], [-111.960323, 49.001097], [-111.960993, 49.000276], [-111.961147, 48.999913], [-111.961177, 48.999675], [-111.961154, 48.999405], [-111.96075, 48.998378], [-111.960537, 48.997835], [-111.960261, 48.997296], [-111.959961, 48.996969], [-111.959772, 48.996485], [-111.959789, 48.99582], [-111.959918, 48.995443], [-111.960048, 48.994907], [-111.960094, 48.994603], [-111.960084, 48.994414], [-111.960109, 48.993824], [-111.959994, 48.990856], [-111.95827, 48.98094], [-111.958253, 48.980705], [-111.958185, 48.980405], [-111.958073, 48.980015], [-111.957973, 48.979662], [-111.957788, 48.979177], [-111.957579, 48.978688], [-111.957393, 48.978342], [-111.957182, 48.977986], [-111.956929, 48.977617], [-111.956287, 48.976872], [-111.955429, 48.975932], [-111.940434, 48.960617], [-111.939756, 48.959862], [-111.939258, 48.959163], [-111.938864, 48.958475], [-111.938589, 48.957934], [-111.935242, 48.950139], [-111.933705, 48.946469], [-111.930948, 48.939956], [-111.927211, 48.931012], [-111.924522, 48.924688], [-111.916608, 48.906188], [-111.9112, 48.893335], [-111.910969, 48.892844], [-111.910694, 48.892325], [-111.910265, 48.891676], [-111.909921, 48.891247], [-111.909492, 48.890711], [-111.909046, 48.890237], [-111.908119, 48.889328], [-111.907385, 48.88863], [-111.906844, 48.888116], [-111.903694, 48.88508], [-111.903291, 48.88469], [-111.901737, 48.883161], [-111.878176, 48.860393], [-111.867242, 48.849753], [-111.866486, 48.849013], [-111.865877, 48.848301], [-111.86531, 48.847533], [-111.864675, 48.846613], [-111.86392, 48.845195], [-111.863594, 48.84437], [-111.863233, 48.843167], [-111.863139, 48.842738], [-111.863019, 48.842026], [-111.86295, 48.841071], [-111.862942, 48.830326], [-111.862942, 48.823285], [-111.86289, 48.769261], [-111.862864, 48.764515], [-111.862813, 48.763474], [-111.862718, 48.761743], [-111.861611, 48.743809], [-111.861439, 48.740289], [-111.861439, 48.739949], [-111.861594, 48.737176], [-111.862178, 48.726719], [-111.862229, 48.723792], [-111.862083, 48.656639], [-111.8621, 48.64979], [-111.861997, 48.598701], [-111.86198, 48.592185], [-111.86198, 48.57272], [-111.861912, 48.57163], [-111.861817, 48.570494], [-111.861697, 48.569205], [-111.860581, 48.557657], [-111.860077, 48.552231], [-111.859663, 48.54801], [-111.859594, 48.546805], [-111.859611, 48.545322], [-111.859792, 48.535383], [-111.8598, 48.533888], [-111.859886, 48.533121], [-111.860015, 48.532581], [-111.860246, 48.531939], [-111.860598, 48.531387], [-111.860942, 48.530899], [-111.861688, 48.530109], [-111.866109, 48.525755], [-111.875953, 48.516192], [-111.876929, 48.515247], [-111.877241, 48.514954], [-111.879228, 48.513021], [-111.879759, 48.512467], [-111.88006, 48.512124], [-111.880267, 48.511881], [-111.88042, 48.511679], [-111.880571, 48.511473], [-111.88094, 48.510956], [-111.881292, 48.510376], [-111.881653, 48.509733], [-111.881996, 48.50904], [-111.882305, 48.508346], [-111.882562, 48.507572], [-111.882777, 48.506828], [-111.882931, 48.506134], [-111.883026, 48.505588], [-111.883441, 48.502992], [-111.883604, 48.499975], [-111.883614, 48.499767], [-111.883635, 48.496433], [-111.883673, 48.495815], [-111.883734, 48.49503], [-111.883798, 48.494396], [-111.883866, 48.493802], [-111.883999, 48.493], [-111.884209, 48.492103], [-111.884377, 48.49147], [-111.884557, 48.490837], [-111.885112, 48.489088], [-111.885489, 48.48824], [-111.886605, 48.485897], [-111.88682, 48.485299], [-111.887034, 48.484679], [-111.887197, 48.484099], [-111.887389, 48.483433], [-111.88747, 48.482928], [-111.887522, 48.482349], [-111.887575, 48.481425], [-111.887554, 48.480643], [-111.887506, 48.480113], [-111.887418, 48.479516], [-111.887265, 48.478742], [-111.887056, 48.477974], [-111.886845, 48.47746], [-111.886472, 48.476607], [-111.885635, 48.474831], [-111.885441, 48.474274], [-111.885165, 48.473591], [-111.884897, 48.472862], [-111.884674, 48.47215], [-111.884502, 48.471564], [-111.884279, 48.470409], [-111.884082, 48.46926], [-111.883953, 48.468281], [-111.883906, 48.467423], [-111.883878, 48.46663], [-111.883976, 48.454446], [-111.884028, 48.447094], [-111.884036, 48.443164], [-111.884023, 48.441546], [-111.884017, 48.440681], [-111.884026, 48.43968], [-111.884018, 48.438945], [-111.88402, 48.438457], [-111.884058, 48.438059], [-111.884092, 48.43776], [-111.884134, 48.437455], [-111.884195, 48.437091], [-111.884275, 48.436739], [-111.884339, 48.436455], [-111.884422, 48.436153], [-111.884528, 48.435768], [-111.884674, 48.435354], [-111.884745, 48.435206], [-111.884871, 48.43486], [-111.885003, 48.434574], [-111.885207, 48.434157], [-111.885417, 48.433746], [-111.885596, 48.433441], [-111.88582, 48.433061], [-111.886029, 48.43273], [-111.886203, 48.432492], [-111.886412, 48.432197], [-111.886586, 48.431954], [-111.886816, 48.431663], [-111.887079, 48.431357], [-111.887401, 48.430981], [-111.887774, 48.430593], [-111.888127, 48.430257], [-111.888437, 48.429955], [-111.889099, 48.429374], [-111.889756, 48.428824], [-111.890912, 48.427857], [-111.892165, 48.426838], [-111.905659, 48.415636], [-111.90626, 48.415157], [-111.906861, 48.41457], [-111.907333, 48.414081], [-111.907814, 48.413528], [-111.908406, 48.412776], [-111.909015, 48.411824], [-111.909633, 48.410907], [-111.920752, 48.392582], [-111.927417, 48.381543], [-111.93346, 48.371538], [-111.933846, 48.37086], [-111.934235, 48.370068], [-111.934546, 48.369396], [-111.934939, 48.368399], [-111.935227, 48.367613], [-111.935586, 48.366493], [-111.935831, 48.365544], [-111.936026, 48.364601], [-111.936138, 48.363831], [-111.936258, 48.362885], [-111.936438, 48.360792], [-111.936415, 48.329088], [-111.936407, 48.310354], [-111.936413, 48.303031], [-111.936412, 48.300795], [-111.936402, 48.300483], [-111.936381, 48.271331], [-111.936384, 48.26711], [-111.936382, 48.259592], [-111.936296, 48.241832], [-111.936359, 48.224045], [-111.936352, 48.223792], [-111.936325, 48.223208], [-111.936251, 48.222646], [-111.936138, 48.222131], [-111.936009, 48.221594], [-111.935863, 48.221148], [-111.935674, 48.220724], [-111.935554, 48.220438], [-111.935323, 48.219975], [-111.934809, 48.219106], [-111.93372, 48.217503], [-111.933233, 48.216812], [-111.932738, 48.21609], [-111.932429, 48.215627], [-111.931294, 48.214006], [-111.927397, 48.208419], [-111.925603, 48.205843], [-111.925208, 48.205217], [-111.92491, 48.204712], [-111.924771, 48.204436], [-111.924661, 48.204188], [-111.924567, 48.203923], [-111.924475, 48.203592], [-111.924434, 48.203298], [-111.924418, 48.202753], [-111.924413, 48.20226], [-111.924452, 48.201981], [-111.924528, 48.20166], [-111.924607, 48.201399], [-111.924686, 48.201185], [-111.924808, 48.200887], [-111.92494, 48.200634], [-111.925143, 48.200322], [-111.925478, 48.199721], [-111.929307, 48.193399], [-111.931749, 48.18936], [-111.932143, 48.188696], [-111.932455, 48.188174], [-111.933068, 48.187161], [-111.933601, 48.186274], [-111.933896, 48.185797], [-111.934176, 48.185351], [-111.934674, 48.184441], [-111.934869, 48.184038], [-111.935015, 48.183702], [-111.935133, 48.183407], [-111.935235, 48.183131], [-111.935317, 48.182855], [-111.935435, 48.182454], [-111.935517, 48.18214], [-111.935563, 48.181903], [-111.935605, 48.181629], [-111.935654, 48.181347], [-111.935672, 48.181134], [-111.935695, 48.180837], [-111.93571, 48.180431], [-111.935711, 48.179913], [-111.935689, 48.179699], [-111.935666, 48.179392], [-111.935641, 48.179193], [-111.935605, 48.178954], [-111.935551, 48.17862], [-111.935494, 48.178341], [-111.935425, 48.178065], [-111.935362, 48.177851], [-111.935271, 48.177512], [-111.935083, 48.177015], [-111.93498, 48.176751], [-111.934859, 48.176484], [-111.934688, 48.176141], [-111.934489, 48.175789], [-111.934239, 48.175377], [-111.933859, 48.174812], [-111.933189, 48.173765], [-111.928027, 48.165762], [-111.927735, 48.165321], [-111.92603, 48.162726], [-111.925093, 48.161247], [-111.924008, 48.159611], [-111.922175, 48.156783], [-111.920615, 48.154387], [-111.919007, 48.151911], [-111.91822, 48.150663], [-111.916601, 48.148144], [-111.915551, 48.146568], [-111.914312, 48.144665], [-111.913624, 48.143606], [-111.912311, 48.141567], [-111.911974, 48.141065], [-111.911504, 48.140381], [-111.910989, 48.139656], [-111.91031, 48.138734], [-111.909273, 48.1374], [-111.907928, 48.135653], [-111.906666, 48.13405], [-111.905997, 48.133172], [-111.904722, 48.131516], [-111.901655, 48.127581], [-111.900048, 48.125516], [-111.898729, 48.123822], [-111.894029, 48.117798], [-111.893315, 48.116857], [-111.892001, 48.115177], [-111.889638, 48.112132], [-111.887413, 48.109275], [-111.884717, 48.105808], [-111.876044, 48.094626], [-111.87031, 48.087229], [-111.862959, 48.077764], [-111.861332, 48.075665], [-111.858755, 48.072362], [-111.857125, 48.070241], [-111.854834, 48.06729], [-111.850948, 48.062304], [-111.85011, 48.061229], [-111.849084, 48.059917], [-111.845348, 48.055071], [-111.836461, 48.043589], [-111.832454, 48.038401], [-111.828116, 48.032803], [-111.825147, 48.028974], [-111.816587, 48.017942], [-111.816087, 48.017289], [-111.815305, 48.016376], [-111.814473, 48.015423], [-111.813623, 48.014499], [-111.812937, 48.013816], [-111.811984, 48.012851], [-111.810868, 48.011863], [-111.809752, 48.010882], [-111.808825, 48.010101], [-111.807598, 48.009153], [-111.806388, 48.008229], [-111.805238, 48.007408], [-111.784158, 47.992286], [-111.782561, 47.991143], [-111.767146, 47.980084], [-111.766219, 47.979354], [-111.765283, 47.978504], [-111.764288, 47.977544], [-111.763404, 47.976585], [-111.762691, 47.975723], [-111.762193, 47.97501], [-111.761653, 47.974154], [-111.761121, 47.973252], [-111.753336, 47.959718], [-111.749036, 47.952205], [-111.736505, 47.930384], [-111.736106, 47.92965], [-111.735644, 47.928853], [-111.735343, 47.928305], [-111.733592, 47.925244], [-111.733306, 47.924769], [-111.732599, 47.923554], [-111.732395, 47.923205], [-111.731718, 47.922093], [-111.731538, 47.921738], [-111.73117, 47.921043], [-111.726112, 47.912262], [-111.71442, 47.89173], [-111.713776, 47.890608], [-111.713253, 47.889578], [-111.712927, 47.888864], [-111.71254, 47.888058], [-111.712146, 47.88689], [-111.711811, 47.885744], [-111.711519, 47.884564], [-111.711253, 47.883125], [-111.711124, 47.881922], [-111.71103, 47.880834], [-111.71103, 47.879792], [-111.711129, 47.869762], [-111.711004, 47.867783], [-111.710901, 47.866758], [-111.710781, 47.865716], [-111.710618, 47.864547], [-111.710438, 47.863447], [-111.710283, 47.862537], [-111.709991, 47.861213], [-111.709756, 47.860259], [-111.709335, 47.858847], [-111.708841, 47.857285], [-111.70727, 47.852822], [-111.706867, 47.851704], [-111.706498, 47.850875], [-111.706077, 47.850017], [-111.705434, 47.848819], [-111.705305, 47.848582], [-111.704816, 47.847747], [-111.704215, 47.846849], [-111.703623, 47.846054], [-111.702678, 47.844833], [-111.701983, 47.843986], [-111.700902, 47.842828], [-111.699923, 47.841889], [-111.698979, 47.841013], [-111.698052, 47.84023], [-111.696893, 47.839291], [-111.668363, 47.817267], [-111.667479, 47.816472], [-111.667042, 47.815942], [-111.666647, 47.815434], [-111.666226, 47.81476], [-111.665943, 47.814143], [-111.66578, 47.813619], [-111.665625, 47.812887], [-111.6656, 47.812391], [-111.665591, 47.811797], [-111.666429, 47.79584], [-111.666535, 47.793822], [-111.666492, 47.791308], [-111.666439, 47.750802], [-111.666442, 47.741317], [-111.666445, 47.740989], [-111.666406, 47.723306], [-111.666381, 47.72244], [-111.666295, 47.721684], [-111.666158, 47.720881], [-111.665986, 47.72024], [-111.665746, 47.719547], [-111.665419, 47.71871], [-111.665042, 47.717925], [-111.664647, 47.717243], [-111.664132, 47.716493], [-111.663789, 47.716008], [-111.663359, 47.715528], [-111.662432, 47.714581], [-111.658081, 47.710071], [-111.647285, 47.699031], [-111.646085, 47.697836], [-111.632275, 47.683698], [-111.631949, 47.683351], [-111.606663, 47.657441], [-111.60117, 47.651798], [-111.590415, 47.64073], [-111.589918, 47.640187], [-111.589463, 47.639655], [-111.589068, 47.639157], [-111.588707, 47.638689], [-111.588287, 47.638139], [-111.587849, 47.637538], [-111.587549, 47.637104], [-111.587231, 47.636624], [-111.58627, 47.63501], [-111.585369, 47.633136], [-111.570511, 47.6019], [-111.569945, 47.600818], [-111.56955, 47.600169], [-111.569224, 47.599643], [-111.568846, 47.599047], [-111.568546, 47.598607], [-111.568168, 47.598051], [-111.567747, 47.597472], [-111.567335, 47.596928], [-111.566915, 47.59643], [-111.566537, 47.595991], [-111.552899, 47.581183], [-111.552633, 47.580911], [-111.537629, 47.564691], [-111.536514, 47.563515], [-111.535904, 47.562901], [-111.535175, 47.56227], [-111.534437, 47.561691], [-111.533656, 47.561129], [-111.532711, 47.560504], [-111.531647, 47.559884], [-111.53048, 47.559311], [-111.529184, 47.558737], [-111.528008, 47.558285], [-111.526806, 47.557897], [-111.525424, 47.557503], [-111.524008, 47.557162], [-111.522824, 47.556953], [-111.521734, 47.556779], [-111.509679, 47.554952], [-111.484251, 47.551039], [-111.477299, 47.54995], [-111.455614, 47.546631], [-111.452477, 47.546143], [-111.452005, 47.546074], [-111.448496, 47.545531], [-111.445301, 47.545037], [-111.443894, 47.544799], [-111.442357, 47.544492], [-111.440907, 47.544162], [-111.439173, 47.543716], [-111.437894, 47.543368], [-111.436512, 47.542957], [-111.435045, 47.54247], [-111.385349, 47.526175], [-111.384241, 47.525793], [-111.383478, 47.52541], [-111.382928, 47.525097], [-111.382499, 47.524784], [-111.382036, 47.524384], [-111.381709, 47.524025], [-111.381452, 47.523741], [-111.380053, 47.521909], [-111.379298, 47.520959], [-111.379152, 47.520779], [-111.378714, 47.520286], [-111.378268, 47.519857], [-111.377555, 47.519394], [-111.376774, 47.518994], [-111.376096, 47.518733], [-111.375409, 47.51853], [-111.374294, 47.518234], [-111.351059, 47.512362], [-111.350081, 47.512055], [-111.348914, 47.511632], [-111.348184, 47.511255], [-111.347446, 47.510878], [-111.346914, 47.510553], [-111.346356, 47.510147], [-111.345832, 47.509759], [-111.345309, 47.509295], [-111.344914, 47.508884], [-111.344605, 47.508542], [-111.344193, 47.50802], [-111.34391, 47.507591], [-111.343618, 47.507133], [-111.343352, 47.506535], [-111.343137, 47.505921], [-111.343, 47.505254], [-111.342914, 47.504779], [-111.342871, 47.504205], [-111.342884, 47.503714], [-111.343017, 47.501337], [-111.343037, 47.500922], [-111.343074, 47.500247], [-111.343153, 47.498866], [-111.343699, 47.489338], [-111.343837, 47.488347], [-111.344051, 47.487517], [-111.344326, 47.486746], [-111.344695, 47.485795], [-111.345184, 47.484855], [-111.345493, 47.484356], [-111.346068, 47.483527], [-111.34715, 47.48221], [-111.347948, 47.481392], [-111.348765, 47.480715], [-111.349751, 47.479978], [-111.350866, 47.47913], [-111.356582, 47.475347], [-111.365214, 47.469592], [-111.367419, 47.46813], [-111.367934, 47.467829], [-111.368578, 47.467492], [-111.36923, 47.467144], [-111.369994, 47.466807], [-111.370973, 47.466407], [-111.371926, 47.466042], [-111.372818, 47.465746], [-111.373522, 47.465525], [-111.374509, 47.465258], [-111.429286, 47.452445], [-111.429621, 47.452364], [-111.473508, 47.442064], [-111.50183, 47.435384], [-111.502749, 47.435175], [-111.503701, 47.434961], [-111.504362, 47.434792], [-111.505221, 47.434543], [-111.506045, 47.434299], [-111.506663, 47.434095], [-111.507143, 47.433927], [-111.507907, 47.433648], [-111.508654, 47.433312], [-111.509255, 47.433045], [-111.509933, 47.432725], [-111.510534, 47.432412], [-111.51122, 47.432029], [-111.51183, 47.431674], [-111.512954, 47.430931], [-111.513546, 47.43049], [-111.524011, 47.422011], [-111.569141, 47.385345], [-111.6142, 47.348685], [-111.614466, 47.34847], [-111.634341, 47.332266], [-111.69101, 47.285965], [-111.692683, 47.284596], [-111.694151, 47.283461], [-111.694838, 47.282943], [-111.696432, 47.281863], [-111.698123, 47.280815], [-111.699024, 47.280297], [-111.699436, 47.280064], [-111.703522, 47.277671], [-111.704183, 47.27728], [-111.704689, 47.276966], [-111.70511, 47.276686], [-111.705436, 47.276442], [-111.705788, 47.276139], [-111.706182, 47.275766], [-111.706612, 47.275289], [-111.706989, 47.274806], [-111.707367, 47.274264], [-111.707573, 47.273856], [-111.707813, 47.273379], [-111.707933, 47.273047], [-111.708045, 47.272651], [-111.708122, 47.272307], [-111.708199, 47.271911], [-111.708234, 47.271544], [-111.708234, 47.271212], [-111.708157, 47.264538], [-111.708114, 47.262342], [-111.708122, 47.261794], [-111.708157, 47.261369], [-111.708234, 47.260851], [-111.708268, 47.260653], [-111.708337, 47.260257], [-111.708508, 47.259511], [-111.708637, 47.258923], [-111.708783, 47.258241], [-111.70898, 47.257536], [-111.709152, 47.256942], [-111.709298, 47.256383], [-111.710079, 47.25333], [-111.710328, 47.252363], [-111.710474, 47.251833], [-111.710637, 47.251332], [-111.710834, 47.250889], [-111.71104, 47.250545], [-111.711367, 47.250085], [-111.711658, 47.249753], [-111.711942, 47.249444], [-111.712345, 47.249089], [-111.712766, 47.248751], [-111.71316, 47.248494], [-111.713624, 47.248221], [-111.714147, 47.247958], [-111.714834, 47.247655], [-111.729726, 47.241112], [-111.73291, 47.239807], [-111.75169, 47.232534], [-111.754093, 47.231624], [-111.75635, 47.230861], [-111.75676, 47.230739], [-111.765002, 47.228413], [-111.765835, 47.228157], [-111.766633, 47.227877], [-111.767345, 47.227597], [-111.768092, 47.227306], [-111.768719, 47.227026], [-111.769474, 47.226676], [-111.770058, 47.226361], [-111.770727, 47.225988], [-111.771448, 47.225534], [-111.772118, 47.225096], [-111.772693, 47.224688], [-111.773405, 47.22417], [-111.773714, 47.223936], [-111.774169, 47.223575], [-111.774641, 47.223103], [-111.775104, 47.222619], [-111.775499, 47.222211], [-111.775885, 47.221774], [-111.776306, 47.221255], [-111.776658, 47.220777], [-111.77695, 47.220369], [-111.777422, 47.219611], [-111.777722, 47.219057], [-111.778014, 47.218422], [-111.778289, 47.217746], [-111.778503, 47.217104], [-111.778675, 47.216428], [-111.778881, 47.215694], [-111.779061, 47.214988], [-111.780057, 47.210796], [-111.780203, 47.210213], [-111.780323, 47.209758], [-111.780435, 47.209397], [-111.780641, 47.208808], [-111.780907, 47.208201], [-111.78113, 47.207729], [-111.781301, 47.207438], [-111.781499, 47.207129], [-111.78228, 47.205916], [-111.783293, 47.204645], [-111.783936, 47.203974], [-111.784735, 47.203146], [-111.785593, 47.202225], [-111.786314, 47.201466], [-111.786872, 47.200883], [-111.787902, 47.199845], [-111.788254, 47.199507], [-111.788674, 47.19914], [-111.789086, 47.19879], [-111.789584, 47.198387], [-111.790168, 47.197921], [-111.790605, 47.197618], [-111.791249, 47.197227], [-111.791824, 47.196877], [-111.792545, 47.196474], [-111.793198, 47.196136], [-111.79397, 47.195769], [-111.794805, 47.195425], [-111.801248, 47.192835], [-111.801575, 47.192701], [-111.802656, 47.192287], [-111.803514, 47.191937], [-111.804167, 47.191628], [-111.804665, 47.191394], [-111.8053, 47.191045], [-111.805723, 47.190797], [-111.805997, 47.190634], [-111.806478, 47.190323], [-111.806732, 47.190144], [-111.80699, 47.189955], [-111.807242, 47.189755], [-111.807499, 47.189537], [-111.807978, 47.189108], [-111.808309, 47.188784], [-111.808738, 47.188316], [-111.809145, 47.187831], [-111.809375, 47.187515], [-111.809578, 47.187207], [-111.809725, 47.186968], [-111.809941, 47.18658], [-111.810196, 47.186052], [-111.810485, 47.185392], [-111.810582, 47.185034], [-111.810757, 47.184458], [-111.81087, 47.184068], [-111.811288, 47.182591], [-111.811466, 47.182023], [-111.811592, 47.181562], [-111.811725, 47.181068], [-111.811881, 47.18053], [-111.812016, 47.179972], [-111.812133, 47.179486], [-111.812304, 47.178698], [-111.812475, 47.177933], [-111.812795, 47.176671], [-111.813022, 47.175805], [-111.813143, 47.175313], [-111.813289, 47.174743], [-111.813451, 47.174086], [-111.813587, 47.173603], [-111.813709, 47.173199], [-111.813868, 47.172742], [-111.814052, 47.172177], [-111.81431, 47.171374], [-111.814446, 47.170953], [-111.814555, 47.170592], [-111.814621, 47.170315], [-111.814724, 47.169845], [-111.814867, 47.169286], [-111.814924, 47.169023], [-111.815005, 47.168585], [-111.81512, 47.168075], [-111.815267, 47.167513], [-111.81537, 47.167124], [-111.815534, 47.166596], [-111.815743, 47.165879], [-111.815883, 47.165407], [-111.816017, 47.16497], [-111.816151, 47.164499], [-111.816299, 47.164102], [-111.816455, 47.163605], [-111.816606, 47.163233], [-111.81675, 47.162929], [-111.8169, 47.16265], [-111.817163, 47.162234], [-111.817461, 47.161792], [-111.817707, 47.161428], [-111.817918, 47.161172], [-111.818109, 47.160939], [-111.81826, 47.160773], [-111.818436, 47.160598], [-111.818713, 47.160322], [-111.819137, 47.159916], [-111.819338, 47.159742], [-111.819615, 47.159506], [-111.819811, 47.159353], [-111.820101, 47.159137], [-111.820886, 47.158653], [-111.821347, 47.158391], [-111.821709, 47.158179], [-111.82215, 47.157949], [-111.822792, 47.157656], [-111.823291, 47.157407], [-111.823951, 47.157074], [-111.824604, 47.156773], [-111.824926, 47.156618], [-111.826016, 47.156075], [-111.826777, 47.155704], [-111.827118, 47.155527], [-111.827632, 47.155278], [-111.828833, 47.154684], [-111.830331, 47.153967], [-111.83092, 47.153679], [-111.831417, 47.153485], [-111.831694, 47.153394], [-111.831937, 47.15332], [-111.832157, 47.153261], [-111.832517, 47.15318], [-111.832892, 47.153117], [-111.833253, 47.153076], [-111.833573, 47.153049], [-111.833993, 47.153025], [-111.834559, 47.153049], [-111.835126, 47.153113], [-111.835701, 47.1532], [-111.83595, 47.153259], [-111.841856, 47.154858], [-111.842362, 47.155002], [-111.842712, 47.155094], [-111.843019, 47.155158], [-111.843672, 47.155257], [-111.8438, 47.155267], [-111.844087, 47.155287], [-111.844399, 47.155286], [-111.844699, 47.15528], [-111.845058, 47.15526], [-111.845509, 47.155193], [-111.845869, 47.155122], [-111.846291, 47.155019], [-111.846644, 47.154905], [-111.846928, 47.154785], [-111.847126, 47.154685], [-111.847479, 47.154504], [-111.847736, 47.154346], [-111.847908, 47.15421], [-111.848115, 47.154036], [-111.848251, 47.153894], [-111.848342, 47.153792], [-111.84847, 47.153647], [-111.848543, 47.153546], [-111.848649, 47.153419], [-111.848764, 47.153232], [-111.848861, 47.153032], [-111.848947, 47.152823], [-111.848973, 47.152708], [-111.849021, 47.152541], [-111.849042, 47.152364], [-111.849077, 47.152131], [-111.849103, 47.151825], [-111.849333, 47.149062], [-111.849393, 47.148406], [-111.8494, 47.148192], [-111.849408, 47.147987], [-111.8494, 47.147824], [-111.84939, 47.147698], [-111.849374, 47.147556], [-111.849347, 47.147435], [-111.849331, 47.147351], [-111.849245, 47.146966], [-111.849142, 47.146674], [-111.849059, 47.146434], [-111.848943, 47.146212], [-111.84886, 47.146053], [-111.848767, 47.145896], [-111.848673, 47.145762], [-111.848566, 47.14562], [-111.847025, 47.143717], [-111.846887, 47.143525], [-111.846766, 47.143353], [-111.846661, 47.14319], [-111.846521, 47.142953], [-111.846415, 47.142749], [-111.846343, 47.142591], [-111.846269, 47.14237], [-111.846241, 47.142263], [-111.846223, 47.14217], [-111.846209, 47.142062], [-111.84619, 47.141876], [-111.846192, 47.141745], [-111.846217, 47.141528], [-111.846242, 47.141353], [-111.84627, 47.141184], [-111.846324, 47.141016], [-111.846398, 47.140797], [-111.846525, 47.140531], [-111.846604, 47.14041], [-111.846676, 47.14029], [-111.846846, 47.140059], [-111.847142, 47.139751], [-111.847281, 47.13963], [-111.84746, 47.139479], [-111.847678, 47.139323], [-111.84791, 47.139171], [-111.848186, 47.139013], [-111.848438, 47.138891], [-111.848706, 47.138772], [-111.848984, 47.138674], [-111.849267, 47.138581], [-111.849592, 47.138477], [-111.849947, 47.138393], [-111.850257, 47.138331], [-111.850556, 47.138292], [-111.850908, 47.138241], [-111.851241, 47.13822], [-111.85164, 47.138209], [-111.851974, 47.13821], [-111.852237, 47.138223], [-111.852532, 47.138247], [-111.852795, 47.138276], [-111.853123, 47.13833], [-111.853394, 47.138374], [-111.853787, 47.138457], [-111.854766, 47.138667], [-111.855826, 47.138884], [-111.856179, 47.13897], [-111.856565, 47.139029], [-111.856792, 47.139068], [-111.857173, 47.13911], [-111.857431, 47.139137], [-111.857676, 47.139157], [-111.858048, 47.139176], [-111.858338, 47.139177], [-111.858762, 47.139167], [-111.859155, 47.139148], [-111.85955, 47.139117], [-111.859805, 47.139089], [-111.860245, 47.139022], [-111.860491, 47.13898], [-111.860683, 47.138944], [-111.860973, 47.138885], [-111.861214, 47.138829], [-111.861479, 47.138758], [-111.861743, 47.138677], [-111.862069, 47.138562], [-111.862344, 47.138449], [-111.862687, 47.138297], [-111.862931, 47.138175], [-111.863114, 47.138087], [-111.863314, 47.137975], [-111.863599, 47.137807], [-111.863972, 47.13756], [-111.864261, 47.137341], [-111.864442, 47.137202], [-111.864674, 47.137005], [-111.864969, 47.136736], [-111.865258, 47.13642], [-111.867853, 47.13324], [-111.868102, 47.13296], [-111.868445, 47.132657], [-111.868909, 47.132347], [-111.869372, 47.132096], [-111.869776, 47.131938], [-111.870291, 47.131792], [-111.870754, 47.131687], [-111.871286, 47.131623], [-111.87181, 47.131605], [-111.872359, 47.131617], [-111.873389, 47.131705], [-111.875681, 47.131897], [-111.885054, 47.132785], [-111.886566, 47.132886], [-111.888607, 47.1331], [-111.888985, 47.133135], [-111.889766, 47.133217], [-111.890444, 47.133281], [-111.891225, 47.133322], [-111.891886, 47.133334], [-111.892598, 47.133334], [-111.893242, 47.133316], [-111.8938, 47.133305], [-111.894512, 47.133246], [-111.89513, 47.133194], [-111.89563, 47.133132], [-111.896274, 47.133044], [-111.89678, 47.132974], [-111.898531, 47.132636], [-111.899656, 47.132344], [-111.900711, 47.132022], [-111.901398, 47.131783], [-111.902445, 47.131403], [-111.904162, 47.130755], [-111.909034, 47.128927], [-111.913729, 47.127181], [-111.917251, 47.125878], [-111.92071, 47.1247], [-111.921698, 47.124251], [-111.922387, 47.123838], [-111.922806, 47.123526], [-111.924809, 47.121884], [-111.925527, 47.121467], [-111.926631, 47.121045], [-111.927545, 47.120838], [-111.928844, 47.120679], [-111.939954, 47.119561], [-111.940893, 47.119375], [-111.941491, 47.119193], [-111.94258, 47.118694], [-111.94328, 47.118205], [-111.943682, 47.117842], [-111.944167, 47.117216], [-111.94437, 47.116782], [-111.94452, 47.116283], [-111.944594, 47.115646], [-111.944471, 47.113184], [-111.944519, 47.112085], [-111.944699, 47.111164], [-111.9451, 47.109855], [-111.94519, 47.109613], [-111.946818, 47.104798], [-111.947185, 47.103915], [-111.94757, 47.103215], [-111.948705, 47.101708], [-111.95025, 47.099859], [-111.951568, 47.098237], [-111.952318, 47.097326], [-111.952866, 47.096646], [-111.954165, 47.094457], [-111.954536, 47.093996], [-111.955001, 47.093573], [-111.95538, 47.093283], [-111.95597, 47.092921], [-111.958022, 47.092174], [-111.958929, 47.091665], [-111.959563, 47.091145], [-111.959918, 47.090782], [-111.960199, 47.090406], [-111.960514, 47.089782], [-111.960679, 47.089121], [-111.961076, 47.083974], [-111.961218, 47.083113], [-111.961515, 47.082259], [-111.962027, 47.081188], [-111.962536, 47.080367], [-111.963148, 47.079581], [-111.964601, 47.078023], [-111.966718, 47.075826], [-111.967024, 47.075517], [-111.969094, 47.073375], [-111.970437, 47.07194], [-111.972154, 47.070032], [-111.973432, 47.068542], [-111.974103, 47.067809], [-111.974604, 47.067107], [-111.976616, 47.064731], [-111.98105, 47.059331], [-111.981811, 47.058552], [-111.982905, 47.057585], [-111.983864, 47.057007], [-111.985011, 47.056354], [-111.986314, 47.055712], [-111.986853, 47.055504], [-111.987827, 47.055224], [-111.990272, 47.054577], [-111.991627, 47.053954], [-111.992491, 47.053494], [-111.993301, 47.052977], [-111.994268, 47.05221], [-111.994901, 47.051592], [-112.00108, 47.045261], [-112.002131, 47.044014], [-112.002341, 47.043639], [-112.002459, 47.043291], [-112.00254, 47.04249], [-112.002551, 47.041633], [-112.002802, 47.040468], [-112.003031, 47.039996], [-112.003311, 47.039629], [-112.00408, 47.038901], [-112.004669, 47.038537], [-112.005381, 47.038191], [-112.006132, 47.03787], [-112.007591, 47.037508], [-112.008057, 47.037437], [-112.009475, 47.037313], [-112.012696, 47.037258], [-112.01489, 47.037245], [-112.016275, 47.037163], [-112.0192, 47.037033], [-112.020595, 47.036893], [-112.021841, 47.036661], [-112.023428, 47.036288], [-112.024543, 47.035923], [-112.025634, 47.03549], [-112.026621, 47.035004], [-112.027875, 47.034259], [-112.04368, 47.024236], [-112.044909, 47.023441], [-112.04544, 47.023036], [-112.04608, 47.022418], [-112.046528, 47.021863], [-112.046751, 47.021531], [-112.046895, 47.021189], [-112.048457, 47.017223], [-112.049379, 47.014861], [-112.04961, 47.014335], [-112.049878, 47.013819], [-112.050194, 47.013314], [-112.050556, 47.012813], [-112.050955, 47.01233], [-112.051351, 47.011873], [-112.051809, 47.011423], [-112.052303, 47.010991], [-112.05283, 47.010576], [-112.053387, 47.010182], [-112.053972, 47.009806], [-112.056998, 47.008006], [-112.058515, 47.007109], [-112.060333, 47.006031], [-112.061846, 47.00513], [-112.062472, 47.004869], [-112.062889, 47.004741], [-112.063358, 47.004645], [-112.063683, 47.004606], [-112.064074, 47.004561], [-112.064445, 47.004519], [-112.06488, 47.004576], [-112.06527, 47.004629], [-112.065565, 47.004697], [-112.065974, 47.004792], [-112.066808, 47.004991], [-112.06824, 47.005361], [-112.0686, 47.005467], [-112.069096, 47.005596], [-112.069473, 47.005688], [-112.069732, 47.005745], [-112.070266, 47.005855], [-112.070699, 47.005951], [-112.071253, 47.006048], [-112.071642, 47.006114], [-112.071928, 47.006158], [-112.072302, 47.006209], [-112.072735, 47.006263], [-112.072984, 47.006287], [-112.073367, 47.006318], [-112.073792, 47.006352], [-112.074219, 47.006372], [-112.074542, 47.006382], [-112.074829, 47.00639], [-112.075178, 47.006392], [-112.075603, 47.006393], [-112.076788, 47.006332], [-112.077271, 47.006281], [-112.077628, 47.006225], [-112.078026, 47.006153], [-112.078436, 47.006074], [-112.078755, 47.005996], [-112.079201, 47.005866], [-112.079533, 47.005747], [-112.079812, 47.00563], [-112.080082, 47.005495], [-112.080379, 47.005332], [-112.080635, 47.005164], [-112.080953, 47.004927], [-112.081049, 47.004826], [-112.081198, 47.004689], [-112.081316, 47.004562], [-112.081449, 47.004379], [-112.081568, 47.004191], [-112.081674, 47.003987], [-112.08174, 47.003858], [-112.081806, 47.003692], [-112.081884, 47.003438], [-112.08191, 47.003275], [-112.081934, 47.003066], [-112.08193, 47.002831], [-112.081896, 47.002597], [-112.081853, 47.002371], [-112.081798, 47.002194], [-112.081607, 47.00176], [-112.081184, 47.001198], [-112.079559, 46.99968], [-112.078016, 46.99838], [-112.07758, 46.997912], [-112.077288, 46.997532], [-112.076986, 46.99693], [-112.076889, 46.996514], [-112.076886, 46.996116], [-112.076984, 46.995478], [-112.07795, 46.992584], [-112.078047, 46.991994], [-112.078024, 46.991594], [-112.077935, 46.9912], [-112.077672, 46.990627], [-112.076129, 46.988425], [-112.075762, 46.987771], [-112.075646, 46.98742], [-112.075619, 46.987055], [-112.075663, 46.986679], [-112.075796, 46.986299], [-112.076008, 46.985921], [-112.076502, 46.98539], [-112.077181, 46.984932], [-112.081242, 46.982494], [-112.081853, 46.981972], [-112.082104, 46.981646], [-112.082346, 46.981245], [-112.082526, 46.98074], [-112.082567, 46.980266], [-112.082681, 46.977427], [-112.082826, 46.974499], [-112.083032, 46.973709], [-112.083438, 46.973098], [-112.083941, 46.972667], [-112.084536, 46.97225], [-112.093815, 46.965771], [-112.094034, 46.965596], [-112.094318, 46.965306], [-112.094501, 46.965085], [-112.094642, 46.964864], [-112.094785, 46.964575], [-112.094868, 46.964338], [-112.094926, 46.964081], [-112.094952, 46.963813], [-112.094963, 46.963562], [-112.094964, 46.963005], [-112.094945, 46.962147], [-112.095064, 46.961322], [-112.095315, 46.960775], [-112.095663, 46.960328], [-112.098599, 46.957746], [-112.098975, 46.957432], [-112.099726, 46.956946], [-112.100314, 46.956644], [-112.101038, 46.956326], [-112.103946, 46.955297], [-112.107802, 46.953955], [-112.108475, 46.953671], [-112.108901, 46.953445], [-112.109465, 46.953038], [-112.109979, 46.952469], [-112.110197, 46.952042], [-112.111502, 46.949682], [-112.112324, 46.948952], [-112.113184, 46.948533], [-112.114208, 46.948308], [-112.116111, 46.948021], [-112.117289, 46.947669], [-112.118334, 46.94705], [-112.119549, 46.946068], [-112.122402, 46.943642], [-112.123133, 46.943013], [-112.123553, 46.942583], [-112.12389, 46.942171], [-112.124619, 46.941266], [-112.125571, 46.939982], [-112.126015, 46.939377], [-112.1265, 46.938749], [-112.126751, 46.938397], [-112.126995, 46.938014], [-112.127231, 46.93766], [-112.127472, 46.93708], [-112.127553, 46.936521], [-112.127485, 46.935878], [-112.126037, 46.931011], [-112.125843, 46.930596], [-112.125614, 46.930288], [-112.125356, 46.930017], [-112.125, 46.92973], [-112.122981, 46.928549], [-112.122668, 46.928293], [-112.122315, 46.927871], [-112.122099, 46.927296], [-112.122093, 46.926792], [-112.122341, 46.926128], [-112.12333, 46.924835], [-112.123628, 46.924404], [-112.123835, 46.923877], [-112.123883, 46.923325], [-112.123775, 46.9228], [-112.123494, 46.922251], [-112.123242, 46.921939], [-112.123161, 46.921857], [-112.12174, 46.920823], [-112.121416, 46.920602], [-112.120977, 46.920179], [-112.120697, 46.919775], [-112.120503, 46.919327], [-112.120322, 46.918471], [-112.119667, 46.915666], [-112.11939, 46.915074], [-112.119062, 46.914644], [-112.118506, 46.91421], [-112.116708, 46.913328], [-112.116193, 46.912968], [-112.115472, 46.912187], [-112.115356, 46.911933], [-112.115279, 46.911728], [-112.115241, 46.911454], [-112.11523, 46.911175], [-112.115266, 46.910915], [-112.115368, 46.910602], [-112.115446, 46.910438], [-112.115662, 46.910084], [-112.11604, 46.909673], [-112.119395, 46.907257], [-112.119896, 46.906695], [-112.120633, 46.90538], [-112.120979, 46.904986], [-112.122506, 46.903673], [-112.12294, 46.903177], [-112.123172, 46.902727], [-112.123344, 46.902186], [-112.12337, 46.901665], [-112.12326, 46.90114], [-112.123004, 46.900542], [-112.122296, 46.899463], [-112.118791, 46.893932], [-112.118077, 46.892887], [-112.117488, 46.892253], [-112.11672, 46.891638], [-112.11608, 46.891253], [-112.114112, 46.89021], [-112.110716, 46.888379], [-112.110338, 46.888159], [-112.106096, 46.885885], [-112.101398, 46.88336], [-112.094609, 46.879651], [-112.0931, 46.878959], [-112.091311, 46.878288], [-112.089958, 46.877867], [-112.088521, 46.877511], [-112.069016, 46.872724], [-112.049279, 46.867857], [-112.047103, 46.867189], [-112.044993, 46.866382], [-112.043719, 46.865827], [-112.042541, 46.865241], [-112.040586, 46.864168], [-112.039263, 46.863298], [-112.037988, 46.862365], [-112.036738, 46.86133], [-112.014076, 46.842104], [-112.012788, 46.840941], [-112.011749, 46.839918], [-112.010445, 46.83844], [-112.009025, 46.83667], [-112.007922, 46.83499], [-112.007123, 46.833605], [-112.006361, 46.832073], [-112.005882, 46.830963], [-112.003109, 46.824179], [-112.002795, 46.823308], [-112.001559, 46.820272], [-112.001405, 46.819943], [-112.001005, 46.818846], [-112.000667, 46.817632], [-112.000578, 46.816809], [-112.000493, 46.815794], [-112.000516, 46.814928], [-112.000693, 46.813761], [-112.001162, 46.812127], [-112.001628, 46.811112], [-112.002462, 46.809713], [-112.003317, 46.808598], [-112.004049, 46.80782], [-112.005118, 46.806834], [-112.006592, 46.805739], [-112.028016, 46.792156], [-112.029741, 46.790912], [-112.030745, 46.79008], [-112.031484, 46.78938], [-112.032257, 46.788498], [-112.033266, 46.787176], [-112.033873, 46.786179], [-112.034356, 46.785153], [-112.03474, 46.784222], [-112.035041, 46.783106], [-112.035281, 46.78179], [-112.035332, 46.780429], [-112.035162, 46.778932], [-112.034994, 46.7781], [-112.034623, 46.77676], [-112.031439, 46.767593], [-112.030872, 46.766116], [-112.03058, 46.765566], [-112.0298, 46.76452], [-112.029051, 46.763776], [-112.027625, 46.762715], [-112.021142, 46.759474], [-112.019784, 46.758674], [-112.018427, 46.757701], [-112.017026, 46.756401], [-112.01646, 46.75581], [-112.015787, 46.754949], [-112.015034, 46.753726], [-112.014675, 46.752957], [-112.014369, 46.752178], [-112.014113, 46.751252], [-112.013978, 46.7503], [-112.013965, 46.748917], [-112.01407, 46.747974], [-112.014425, 46.74657], [-112.017111, 46.737855], [-112.017375, 46.736784], [-112.017607, 46.735355], [-112.017673, 46.734409], [-112.017685, 46.733581], [-112.017588, 46.732104], [-112.017413, 46.730961], [-112.016851, 46.728893], [-112.016052, 46.726997], [-112.015229, 46.725474], [-112.014031, 46.723297], [-112.013406, 46.721963], [-112.012932, 46.720654], [-112.012536, 46.719097], [-112.012339, 46.717599], [-112.012283, 46.716345], [-112.012185, 46.707222], [-112.012075, 46.70024], [-112.011602, 46.660701], [-112.011601, 46.660313], [-112.011436, 46.648193], [-112.011441, 46.648028], [-112.011427, 46.646569], [-112.011246, 46.631754], [-112.011146, 46.621062], [-112.011132, 46.619553], [-112.01109, 46.616805], [-112.011059, 46.614798], [-112.011048, 46.61406], [-112.011037, 46.613709], [-112.010993, 46.613319], [-112.010941, 46.613077], [-112.010877, 46.612674], [-112.010838, 46.612474], [-112.010746, 46.61207], [-112.01064, 46.611666], [-112.010587, 46.611464], [-112.010508, 46.611263], [-112.010314, 46.610728], [-112.010256, 46.610545], [-112.010198, 46.610369], [-112.009915, 46.609824], [-112.009739, 46.609444], [-112.009564, 46.609128], [-112.009295, 46.608718], [-112.006524, 46.603944], [-112.003906, 46.599455], [-112.002681, 46.597363], [-112.001205, 46.594784], [-112, 46.592799], [-111.999632, 46.592286], [-111.999301, 46.591861], [-111.998522, 46.590983], [-111.99828, 46.590699], [-111.997972, 46.590398], [-111.996867, 46.589396], [-111.996488, 46.589096], [-111.995735, 46.58854], [-111.988743, 46.583855], [-111.983795, 46.580551], [-111.98049, 46.578347], [-111.978312, 46.576892], [-111.976196, 46.575478], [-111.970612, 46.571744], [-111.969019, 46.570651], [-111.966637, 46.569071], [-111.957631, 46.563066], [-111.956867, 46.562459], [-111.956078, 46.56178], [-111.955528, 46.561278], [-111.95503, 46.560765], [-111.954464, 46.560133], [-111.953992, 46.559508], [-111.953623, 46.558994], [-111.953365, 46.558587], [-111.953022, 46.558003], [-111.95261, 46.557224], [-111.951443, 46.55468], [-111.946695, 46.544203], [-111.946304, 46.54331], [-111.945744, 46.542172], [-111.945185, 46.540831], [-111.944611, 46.539567], [-111.943999, 46.538252], [-111.943392, 46.536869], [-111.941186, 46.532081], [-111.940903, 46.53142], [-111.940559, 46.530629], [-111.940379, 46.530109], [-111.940293, 46.529684], [-111.940268, 46.529241], [-111.940319, 46.528857], [-111.940422, 46.528432], [-111.940568, 46.528025], [-111.94074, 46.527676], [-111.940971, 46.527322], [-111.941246, 46.527003], [-111.941667, 46.526619], [-111.943134, 46.525497], [-111.943589, 46.525125], [-111.94401, 46.524718], [-111.944344, 46.524346], [-111.944662, 46.523974], [-111.944902, 46.523625], [-111.945151, 46.52323], [-111.9454, 46.522775], [-111.945606, 46.522326], [-111.945744, 46.521966], [-111.945855, 46.521511], [-111.947984, 46.511742], [-111.948095, 46.51137], [-111.948361, 46.510661], [-111.949408, 46.508074], [-111.952344, 46.500837], [-111.952541, 46.500393], [-111.952825, 46.499944], [-111.953168, 46.49946], [-111.953494, 46.499105], [-111.953932, 46.498775], [-111.954764, 46.49819], [-111.958575, 46.495909], [-111.959245, 46.495501], [-111.960052, 46.495017], [-111.961021, 46.494414], [-111.961871, 46.493912], [-111.962729, 46.493415], [-111.963579, 46.492825], [-111.964025, 46.4925], [-111.964661, 46.492015], [-111.965124, 46.491625], [-111.965656, 46.491123], [-111.966369, 46.49042], [-111.96709, 46.489651], [-111.976325, 46.479522], [-111.976891, 46.478848], [-111.977312, 46.47834], [-111.977733, 46.477808], [-111.977973, 46.477465], [-111.978127, 46.477211], [-111.978282, 46.476974], [-111.97884, 46.475928], [-111.979217, 46.475042], [-111.980033, 46.473044], [-111.980271, 46.472374], [-111.980435, 46.471976], [-111.980677, 46.471349], [-111.980952, 46.470648], [-111.981239, 46.4699], [-111.981493, 46.46921], [-111.981736, 46.468592], [-111.981874, 46.468256], [-111.982316, 46.467018], [-111.982732, 46.465939], [-111.982851, 46.465572], [-111.983251, 46.464294], [-111.983315, 46.464025], [-111.983475, 46.463313], [-111.983818, 46.462054], [-111.98424, 46.460487], [-111.985346, 46.456259], [-111.985844, 46.45432], [-111.986814, 46.450701], [-111.986994, 46.449938], [-111.987251, 46.449004], [-111.987543, 46.4483], [-111.987809, 46.447709], [-111.988255, 46.446833], [-111.990024, 46.443882], [-111.990719, 46.44254], [-111.99283, 46.438169], [-111.995886, 46.431816], [-111.996143, 46.431165], [-111.996341, 46.430644], [-111.996598, 46.42984], [-111.996753, 46.429213], [-111.99689, 46.428609], [-111.997405, 46.425385], [-111.997642, 46.424314], [-111.997932, 46.423545], [-111.998107, 46.423114], [-111.99835, 46.422586], [-111.998575, 46.422164], [-111.998884, 46.421653], [-111.999228, 46.421145], [-111.999447, 46.420848], [-111.999923, 46.420267], [-112.000156, 46.42], [-112.000433, 46.41971], [-112.00089, 46.419258], [-112.001482, 46.418746], [-112.002113, 46.418226], [-112.00272, 46.417745], [-112.002961, 46.417554], [-112.003548, 46.417078], [-112.004211, 46.41654], [-112.004746, 46.416099], [-112.005461, 46.41553], [-112.005985, 46.415112], [-112.006394, 46.414775], [-112.006854, 46.414405], [-112.007245, 46.4141], [-112.00765, 46.413758], [-112.00797, 46.413501], [-112.008169, 46.413338], [-112.008593, 46.412997], [-112.009014, 46.412645], [-112.009385, 46.412341], [-112.009697, 46.412025], [-112.010255, 46.411528], [-112.010946, 46.410853], [-112.011431, 46.410352], [-112.011895, 46.409867], [-112.012165, 46.409569], [-112.012675, 46.408992], [-112.013067, 46.408517], [-112.013404, 46.408107], [-112.013911, 46.407447], [-112.014218, 46.407046], [-112.014492, 46.406653], [-112.015033, 46.405845], [-112.01524, 46.405542], [-112.015368, 46.405329], [-112.015741, 46.40471], [-112.015972, 46.404308], [-112.016318, 46.403688], [-112.016624, 46.403056], [-112.01703, 46.402204], [-112.017522, 46.401159], [-112.017917, 46.400311], [-112.019197, 46.397512], [-112.019961, 46.395938], [-112.020503, 46.394858], [-112.020846, 46.394173], [-112.021172, 46.393579], [-112.021321, 46.393351], [-112.021496, 46.393063], [-112.021714, 46.392713], [-112.021925, 46.392391], [-112.022307, 46.391799], [-112.022576, 46.391431], [-112.02269, 46.391255], [-112.022776, 46.391138], [-112.023072, 46.390745], [-112.023396, 46.390333], [-112.023636, 46.390016], [-112.02407, 46.389472], [-112.02447, 46.388962], [-112.025293, 46.387893], [-112.025518, 46.387587], [-112.025835, 46.387153], [-112.02604, 46.386874], [-112.026296, 46.386489], [-112.026502, 46.386192], [-112.026698, 46.385898], [-112.027204, 46.385069], [-112.027659, 46.384252], [-112.027743, 46.384088], [-112.0278, 46.383963], [-112.02782, 46.383925], [-112.027998, 46.383561], [-112.028106, 46.383379], [-112.028359, 46.382926], [-112.028737, 46.382022], [-112.029617, 46.379591], [-112.030115, 46.378271], [-112.030424, 46.377365], [-112.030767, 46.376572], [-112.031059, 46.375944], [-112.033059, 46.372077], [-112.033626, 46.37091], [-112.033917, 46.370342], [-112.034252, 46.369714], [-112.034492, 46.369293], [-112.03481, 46.368766], [-112.035136, 46.368298], [-112.035445, 46.367848], [-112.03584, 46.367386], [-112.036295, 46.366877], [-112.036879, 46.366249], [-112.043015, 46.359532], [-112.043436, 46.359053], [-112.043754, 46.358638], [-112.044011, 46.358283], [-112.044234, 46.357927], [-112.044475, 46.357501], [-112.044698, 46.357062], [-112.044852, 46.356719], [-112.044972, 46.356357], [-112.045093, 46.355972], [-112.045204, 46.355534], [-112.045281, 46.355173], [-112.04535, 46.354693], [-112.045384, 46.354284], [-112.045376, 46.353828], [-112.045359, 46.353206], [-112.045058, 46.350658], [-112.045032, 46.350072], [-112.045075, 46.349545], [-112.045178, 46.349154], [-112.045317, 46.348787], [-112.045481, 46.348449], [-112.045687, 46.348135], [-112.04591, 46.347851], [-112.046202, 46.347519], [-112.048562, 46.345392], [-112.048862, 46.34509], [-112.049146, 46.34477], [-112.04936, 46.344467], [-112.04954, 46.344153], [-112.049738, 46.343721], [-112.049849, 46.343241], [-112.049884, 46.343028], [-112.049892, 46.342755], [-112.049884, 46.3424], [-112.049806, 46.341931], [-112.049396, 46.34035], [-112.049218, 46.339673], [-112.049159, 46.33933], [-112.049143, 46.339002], [-112.049168, 46.338597], [-112.049229, 46.338284], [-112.049292, 46.338051], [-112.049341, 46.337839], [-112.049439, 46.337616], [-112.049559, 46.337404], [-112.0497, 46.337162], [-112.049936, 46.33687], [-112.05015, 46.336595], [-112.054836, 46.331763], [-112.055497, 46.33117], [-112.055875, 46.33085], [-112.056372, 46.33053], [-112.05687, 46.330263], [-112.057445, 46.330044], [-112.058132, 46.329789], [-112.060261, 46.329273], [-112.060879, 46.329137], [-112.061445, 46.328959], [-112.061994, 46.328752], [-112.062561, 46.32845], [-112.06317, 46.3281], [-112.063625, 46.327786], [-112.064054, 46.327371], [-112.064466, 46.326891], [-112.06523, 46.325741], [-112.065677, 46.325125], [-112.066028, 46.324674], [-112.06638, 46.324318], [-112.066904, 46.323868], [-112.067505, 46.323501], [-112.06826, 46.323109], [-112.069642, 46.322445], [-112.070509, 46.322007], [-112.071195, 46.321663], [-112.071728, 46.321378], [-112.07238, 46.320958], [-112.073067, 46.320519], [-112.073762, 46.320045], [-112.074277, 46.319582], [-112.074732, 46.319138], [-112.075169, 46.318705], [-112.075599, 46.318189], [-112.076053, 46.317626], [-112.076371, 46.317182], [-112.076732, 46.316589], [-112.077058, 46.315949], [-112.077616, 46.31452], [-112.077985, 46.313459], [-112.078268, 46.312795], [-112.078491, 46.31232], [-112.0788, 46.311751], [-112.079212, 46.31117], [-112.079718, 46.310435], [-112.0808, 46.308627], [-112.081126, 46.30801], [-112.081375, 46.307316], [-112.081512, 46.306724], [-112.081607, 46.306131], [-112.081735, 46.304998], [-112.081856, 46.304358], [-112.082079, 46.303688], [-112.082319, 46.303172], [-112.082594, 46.302692], [-112.082946, 46.302205], [-112.083306, 46.301814], [-112.083804, 46.301334], [-112.08447, 46.300831], [-112.085263, 46.300355], [-112.086027, 46.299964], [-112.089752, 46.298446], [-112.090979, 46.297859], [-112.091958, 46.297337], [-112.092799, 46.296756], [-112.093486, 46.296287], [-112.094104, 46.295694], [-112.09473, 46.295036], [-112.095159, 46.294538], [-112.09558, 46.293992], [-112.09594, 46.293381], [-112.096445, 46.292397], [-112.096685, 46.291614], [-112.09702, 46.290422], [-112.097449, 46.288406], [-112.097724, 46.287409], [-112.098136, 46.286312], [-112.099116, 46.284397], [-112.099274, 46.284063], [-112.10053, 46.281349], [-112.101118, 46.280084], [-112.102891, 46.276318], [-112.104027, 46.273935], [-112.104859, 46.272141], [-112.105342, 46.271125], [-112.106274, 46.269146], [-112.107087, 46.267404], [-112.111234, 46.258546], [-112.112659, 46.255466], [-112.114521, 46.251525], [-112.114976, 46.250676], [-112.115508, 46.249899], [-112.115937, 46.249329], [-112.116633, 46.248581], [-112.117748, 46.247554], [-112.11925, 46.246504], [-112.12022, 46.245934], [-112.120967, 46.245566], [-112.121954, 46.245133], [-112.124992, 46.244052], [-112.13288, 46.241298], [-112.133387, 46.24112], [-112.138622, 46.239291], [-112.145034, 46.237065], [-112.146141, 46.236745], [-112.147008, 46.236519], [-112.147806, 46.236394], [-112.148459, 46.236305], [-112.149265, 46.236246], [-112.150089, 46.236222], [-112.151042, 46.236246], [-112.151883, 46.236317], [-112.152699, 46.236436], [-112.153471, 46.236584], [-112.154474, 46.236837], [-112.15899, 46.238152], [-112.160595, 46.238543], [-112.162483, 46.238947], [-112.163367, 46.23922], [-112.164054, 46.239529], [-112.164698, 46.239897], [-112.165273, 46.24033], [-112.166844, 46.241642], [-112.167307, 46.241963], [-112.1685, 46.242669], [-112.169144, 46.243085], [-112.169659, 46.24356], [-112.170912, 46.244966], [-112.171367, 46.245364], [-112.172131, 46.245898], [-112.173204, 46.246522], [-112.174276, 46.247169], [-112.174817, 46.24762], [-112.175298, 46.24816], [-112.175555, 46.248587], [-112.17577, 46.248973], [-112.175924, 46.249424], [-112.176336, 46.250552], [-112.176517, 46.25092], [-112.17674, 46.251276], [-112.176997, 46.251626], [-112.177418, 46.252083], [-112.177787, 46.252344], [-112.178165, 46.252617], [-112.180775, 46.254129], [-112.181007, 46.254269], [-112.183097, 46.255454], [-112.183493, 46.255702], [-112.184164, 46.256171], [-112.184905, 46.256737], [-112.185365, 46.257141], [-112.185885, 46.257562], [-112.186185, 46.2578], [-112.186531, 46.258043], [-112.186972, 46.258275], [-112.187322, 46.258422], [-112.187774, 46.258598], [-112.188155, 46.258726], [-112.188842, 46.25893], [-112.190061, 46.259233], [-112.194417, 46.260296], [-112.194914, 46.260425], [-112.197467, 46.261049], [-112.198131, 46.261215], [-112.198816, 46.261348], [-112.200563, 46.261639], [-112.2012, 46.261735], [-112.201697, 46.261796], [-112.202216, 46.261831], [-112.202661, 46.261847], [-112.203293, 46.261844], [-112.203843, 46.26181], [-112.204643, 46.261713], [-112.205502, 46.261541], [-112.206283, 46.261328], [-112.207158, 46.260978], [-112.20773, 46.260725], [-112.208199, 46.260464], [-112.209872, 46.259361], [-112.210845, 46.258723], [-112.211437, 46.258407], [-112.21171, 46.258294], [-112.211974, 46.258207], [-112.212216, 46.258142], [-112.212463, 46.258092], [-112.212751, 46.258048], [-112.213051, 46.258024], [-112.213334, 46.258019], [-112.213692, 46.258035], [-112.213988, 46.258065], [-112.214247, 46.258108], [-112.214549, 46.258186], [-112.21472, 46.258241], [-112.214928, 46.258313], [-112.21526, 46.258456], [-112.215539, 46.258605], [-112.215859, 46.258826], [-112.216123, 46.259059], [-112.216344, 46.259307], [-112.216538, 46.259564], [-112.217304, 46.260578], [-112.217586, 46.260888], [-112.217887, 46.26118], [-112.218436, 46.261654], [-112.219097, 46.262058], [-112.219818, 46.262508], [-112.220179, 46.262823], [-112.220462, 46.263203], [-112.220625, 46.263654], [-112.220625, 46.264105], [-112.220513, 46.26455], [-112.220273, 46.264918], [-112.21993, 46.265238], [-112.219466, 46.265558], [-112.218514, 46.266039], [-112.218288, 46.266167], [-112.218079, 46.266291], [-112.217885, 46.266411], [-112.217737, 46.266539], [-112.217605, 46.266696], [-112.217501, 46.266818], [-112.217396, 46.266989], [-112.21734, 46.267123], [-112.217303, 46.267314], [-112.217283, 46.267445], [-112.217325, 46.267714], [-112.217476, 46.26824], [-112.217544, 46.268438], [-112.217592, 46.268538], [-112.217628, 46.268615], [-112.217724, 46.268751], [-112.217818, 46.268858], [-112.217936, 46.268959], [-112.21813, 46.269104], [-112.218353, 46.26922], [-112.218727, 46.26937], [-112.219166, 46.269489], [-112.219721, 46.269609], [-112.220202, 46.269698], [-112.220646, 46.269797], [-112.220996, 46.2699], [-112.22144, 46.27005], [-112.222711, 46.270631], [-112.223277, 46.270851], [-112.22399, 46.271017], [-112.224668, 46.271076], [-112.225371, 46.270993], [-112.227174, 46.270608], [-112.227989, 46.270507], [-112.22883, 46.270519], [-112.229611, 46.270726], [-112.232341, 46.271693], [-112.232993, 46.27186], [-112.233723, 46.271966], [-112.234744, 46.271978], [-112.239606, 46.271805], [-112.242182, 46.271693], [-112.246347, 46.271502], [-112.246967, 46.271459], [-112.247491, 46.271415], [-112.247911, 46.271379], [-112.248545, 46.271312], [-112.249143, 46.271217], [-112.250763, 46.270938], [-112.251919, 46.270715], [-112.254271, 46.270264], [-112.255138, 46.270086], [-112.255979, 46.269973], [-112.256923, 46.269854], [-112.257798, 46.269753], [-112.258871, 46.269706], [-112.259953, 46.269694], [-112.260408, 46.269688], [-112.260811, 46.269688], [-112.265927, 46.269838], [-112.266364, 46.269845], [-112.268516, 46.269903], [-112.26928, 46.269923], [-112.269822, 46.269932], [-112.270297, 46.269936], [-112.270632, 46.269932], [-112.271986, 46.269899], [-112.272496, 46.269882], [-112.272871, 46.269875], [-112.273201, 46.26988], [-112.273496, 46.269893], [-112.273848, 46.269921], [-112.274451, 46.269986], [-112.275304, 46.270084], [-112.275736, 46.270129], [-112.276214, 46.270171], [-112.276581, 46.270192], [-112.276954, 46.270201], [-112.277383, 46.270195], [-112.277783, 46.270179], [-112.278217, 46.270151], [-112.278636, 46.270112], [-112.27903, 46.270058], [-112.279521, 46.269977], [-112.280084, 46.269869], [-112.280575, 46.269771], [-112.281036, 46.269673], [-112.281492, 46.269558], [-112.281919, 46.269443], [-112.282407, 46.269304], [-112.28289, 46.269153], [-112.283292, 46.269013], [-112.283616, 46.26889], [-112.283914, 46.268764], [-112.284169, 46.268638], [-112.284394, 46.268516], [-112.284601, 46.268394], [-112.284775, 46.268275], [-112.284955, 46.268131], [-112.285087, 46.268013], [-112.285191, 46.267897], [-112.285277, 46.267793], [-112.285357, 46.267683], [-112.28543, 46.267542], [-112.285505, 46.267379], [-112.285561, 46.267208], [-112.285596, 46.267049], [-112.28561, 46.266897], [-112.285612, 46.266763], [-112.285599, 46.266613], [-112.285569, 46.266448], [-112.285505, 46.266261], [-112.28543, 46.266096], [-112.285194, 46.265664], [-112.285025, 46.265406], [-112.284866, 46.265152], [-112.284775, 46.264974], [-112.284703, 46.264813], [-112.284646, 46.264655], [-112.284614, 46.264507], [-112.284598, 46.264379], [-112.284598, 46.26421], [-112.284617, 46.264062], [-112.284665, 46.263899], [-112.284727, 46.263728], [-112.284759, 46.263669], [-112.284821, 46.263548], [-112.284909, 46.263418], [-112.284995, 46.263313], [-112.285121, 46.263177], [-112.285277, 46.263038], [-112.285408, 46.262932], [-112.285591, 46.262814], [-112.285765, 46.262716], [-112.285998, 46.262614], [-112.286237, 46.262523], [-112.286454, 46.262454], [-112.286722, 46.262397], [-112.286953, 46.262358], [-112.287205, 46.262334], [-112.287431, 46.262324], [-112.287599, 46.262324], [-112.287755, 46.262332], [-112.287908, 46.262343], [-112.28809, 46.262371], [-112.288289, 46.262408], [-112.288533, 46.262469], [-112.28878, 46.262545], [-112.289056, 46.262641], [-112.28941, 46.262779], [-112.292288, 46.263915], [-112.295423, 46.265141], [-112.295772, 46.265276], [-112.296799, 46.265681], [-112.297288, 46.265857], [-112.29766, 46.26597], [-112.297998, 46.266064], [-112.298326, 46.266135], [-112.298693, 46.266202], [-112.29902, 46.266252], [-112.299407, 46.266294], [-112.299973, 46.26635], [-112.301962, 46.266518], [-112.303677, 46.266665], [-112.30416, 46.266715], [-112.304799, 46.266799], [-112.305829, 46.266965], [-112.307302, 46.26725], [-112.307798, 46.267339], [-112.308222, 46.267413], [-112.308627, 46.267476], [-112.308997, 46.267518], [-112.309343, 46.267554], [-112.309617, 46.267578], [-112.309941, 46.267591], [-112.310258, 46.267602], [-112.310641, 46.267611], [-112.310985, 46.267613], [-112.311296, 46.267607], [-112.311658, 46.267591], [-112.312055, 46.267565], [-112.312425, 46.267535], [-112.312795, 46.267492], [-112.313219, 46.267435], [-112.313683, 46.267359], [-112.31408, 46.267281], [-112.314484, 46.267191], [-112.314867, 46.26709], [-112.315256, 46.26698], [-112.315717, 46.266837], [-112.316613, 46.266561], [-112.317018, 46.266437], [-112.317471, 46.266313], [-112.317997, 46.266179], [-112.318925, 46.265949], [-112.320151, 46.265632], [-112.321393, 46.265313], [-112.325427, 46.26428], [-112.326138, 46.264095], [-112.326859, 46.263917], [-112.327936, 46.263635], [-112.330428, 46.263002], [-112.333211, 46.262287], [-112.334007, 46.262079], [-112.335292, 46.261753], [-112.335686, 46.261652], [-112.336028, 46.261559], [-112.33637, 46.261454], [-112.33667, 46.261355], [-112.336988, 46.261243], [-112.337325, 46.261115], [-112.33768, 46.260971], [-112.338038, 46.260813], [-112.338363, 46.260662], [-112.338625, 46.26053], [-112.338933, 46.260366], [-112.340256, 46.259429], [-112.341003, 46.258829], [-112.341337, 46.25845], [-112.341646, 46.258088], [-112.342041, 46.257506], [-112.342264, 46.257085], [-112.342513, 46.256616], [-112.342736, 46.256052], [-112.343048, 46.25519], [-112.343088, 46.254628], [-112.343114, 46.25404], [-112.342997, 46.253333], [-112.342814, 46.252527], [-112.342556, 46.25188], [-112.341586, 46.249939], [-112.341209, 46.248971], [-112.340942, 46.248152], [-112.340797, 46.247393], [-112.340711, 46.246752], [-112.340698, 46.245956], [-112.340797, 46.24509], [-112.340934, 46.2443], [-112.341088, 46.243617], [-112.341363, 46.242745], [-112.343732, 46.236132], [-112.343955, 46.235443], [-112.344213, 46.23479], [-112.34459, 46.234178], [-112.345088, 46.233513], [-112.346384, 46.231827], [-112.346848, 46.231067], [-112.347062, 46.230402], [-112.347208, 46.229666], [-112.34738, 46.228247], [-112.347457, 46.227659], [-112.347706, 46.22662], [-112.348072, 46.225486], [-112.348787, 46.223592], [-112.349165, 46.22241], [-112.349268, 46.221798], [-112.349251, 46.221163], [-112.348908, 46.218621], [-112.348822, 46.218081], [-112.348822, 46.217392], [-112.348959, 46.216762], [-112.34944, 46.215301], [-112.349521, 46.214586], [-112.349491, 46.214013], [-112.349328, 46.213591], [-112.349028, 46.213021], [-112.348633, 46.212492], [-112.348169, 46.211999], [-112.34762, 46.211619], [-112.346856, 46.211156], [-112.345869, 46.21058], [-112.3452, 46.210051], [-112.344728, 46.209576], [-112.343234, 46.207925], [-112.342659, 46.207307], [-112.341921, 46.206677], [-112.340814, 46.205816], [-112.34041, 46.205465], [-112.340067, 46.205085], [-112.339802, 46.204693], [-112.339704, 46.204467], [-112.339636, 46.204269], [-112.339591, 46.204027], [-112.339612, 46.20382], [-112.339732, 46.203256], [-112.340033, 46.20262], [-112.340582, 46.201913], [-112.341621, 46.200885], [-112.342062, 46.200298], [-112.342242, 46.199944], [-112.342396, 46.199584], [-112.342597, 46.199091], [-112.342775, 46.198631], [-112.343062, 46.198034], [-112.343303, 46.197541], [-112.343792, 46.196904], [-112.344693, 46.196127], [-112.345387, 46.19542], [-112.345729, 46.194938], [-112.345917, 46.194643], [-112.346069, 46.194349], [-112.346166, 46.194045], [-112.346238, 46.193697], [-112.34623, 46.193103], [-112.345941, 46.190673], [-112.345878, 46.189902], [-112.345728, 46.189213], [-112.345709, 46.188344], [-112.345571, 46.187533], [-112.345558, 46.186912], [-112.345564, 46.185992], [-112.345749, 46.183453], [-112.346234, 46.177623], [-112.346347, 46.176821], [-112.346473, 46.176275], [-112.34671, 46.175728], [-112.347062, 46.17511], [-112.347483, 46.174486], [-112.34822, 46.173702], [-112.349208, 46.17291], [-112.3521, 46.171121], [-112.352701, 46.170843], [-112.353354, 46.170627], [-112.354238, 46.170443], [-112.355396, 46.170378], [-112.356246, 46.170461], [-112.358186, 46.170764], [-112.359293, 46.170788], [-112.360246, 46.170669], [-112.361216, 46.170425], [-112.362177, 46.170093], [-112.362941, 46.16973], [-112.363559, 46.169296], [-112.364125, 46.168743], [-112.364529, 46.168119], [-112.365267, 46.167103], [-112.365816, 46.166663], [-112.3664, 46.166336], [-112.367129, 46.166098], [-112.367868, 46.165967], [-112.368692, 46.165944], [-112.371773, 46.166039], [-112.372811, 46.166015], [-112.37367, 46.165902], [-112.374588, 46.165706], [-112.375592, 46.165379], [-112.376571, 46.164951], [-112.377318, 46.164529], [-112.378076, 46.163952], [-112.378262, 46.163762], [-112.378614, 46.163364], [-112.378914, 46.162965], [-112.379469, 46.162169], [-112.382055, 46.158245], [-112.384021, 46.155308], [-112.385566, 46.152959], [-112.387334, 46.150272], [-112.388458, 46.14862], [-112.389451, 46.147108], [-112.391789, 46.143594], [-112.398669, 46.133222], [-112.400972, 46.129712], [-112.4066, 46.121302], [-112.407393, 46.120004], [-112.408182, 46.118582], [-112.408541, 46.117899], [-112.409937, 46.114817], [-112.411055, 46.112333], [-112.412388, 46.109365], [-112.413655, 46.106653], [-112.414778, 46.10418], [-112.415206, 46.103314], [-112.415668, 46.102487], [-112.415895, 46.102106], [-112.416464, 46.101176], [-112.417083, 46.100254], [-112.418499, 46.098356], [-112.418915, 46.09769], [-112.419526, 46.096677], [-112.420233, 46.095398], [-112.422479, 46.091058], [-112.424336, 46.087469], [-112.429652, 46.0772], [-112.429822, 46.076884], [-112.431392, 46.07384], [-112.436257, 46.064391], [-112.436937, 46.063074], [-112.438079, 46.061044], [-112.438376, 46.060532], [-112.438666, 46.060066], [-112.43881, 46.05984], [-112.439098, 46.05943], [-112.43934, 46.059064], [-112.439532, 46.058774], [-112.440107, 46.058002], [-112.44038, 46.05765], [-112.441731, 46.056019], [-112.443485, 46.053949], [-112.447802, 46.048851], [-112.45155, 46.044489], [-112.452423, 46.043435], [-112.452928, 46.042858], [-112.453336, 46.042363], [-112.453672, 46.041989], [-112.454055, 46.041551], [-112.454342, 46.04125], [-112.454665, 46.040886], [-112.456067, 46.039558], [-112.457335, 46.038587], [-112.457987, 46.038059], [-112.458512, 46.037625], [-112.458842, 46.037329], [-112.459071, 46.03709], [-112.459314, 46.036842], [-112.459518, 46.03659], [-112.459678, 46.03639], [-112.4598, 46.036215], [-112.459891, 46.036045], [-112.460007, 46.03582], [-112.460114, 46.03551], [-112.460172, 46.035281], [-112.460249, 46.034999], [-112.460282, 46.034713], [-112.460289, 46.034622], [-112.460306, 46.034393], [-112.46034, 46.034001], [-112.460377, 46.033494], [-112.460788, 46.024225], [-112.460858, 46.022999], [-112.461034, 46.021707], [-112.461139, 46.019417], [-112.461174, 46.018182], [-112.461374, 46.013939], [-112.461433, 46.012326], [-112.461598, 46.009767], [-112.46173, 46.007706], [-112.461826, 46.006592], [-112.461968, 46.00602], [-112.462225, 46.00538], [-112.462565, 46.004722], [-112.463191, 46.004036], [-112.464072, 46.003225], [-112.465792, 46.001872], [-112.466856, 46.001037], [-112.469268, 45.999189], [-112.469946, 45.998682], [-112.470667, 45.998003], [-112.47113, 45.997502], [-112.47156, 45.996917], [-112.471963, 45.99622], [-112.473459, 45.993424], [-112.474051, 45.992464], [-112.474317, 45.992004], [-112.475276, 45.990233], [-112.475566, 45.989642], [-112.476695, 45.987673], [-112.477014, 45.987068], [-112.477395, 45.986399], [-112.477976, 45.985327], [-112.478243, 45.984818], [-112.478421, 45.98455], [-112.478851, 45.983744], [-112.479177, 45.983218], [-112.479374, 45.982981], [-112.479538, 45.982795], [-112.47971, 45.982636], [-112.479894, 45.982492], [-112.480132, 45.982326], [-112.48042, 45.982142], [-112.480713, 45.981993], [-112.481018, 45.981862], [-112.481235, 45.981784], [-112.481491, 45.981708], [-112.481819, 45.981612], [-112.482235, 45.981526], [-112.482576, 45.981485], [-112.482792, 45.981468], [-112.483106, 45.981448], [-112.484674, 45.981411], [-112.485533, 45.981393], [-112.486142, 45.981346], [-112.486888, 45.981343], [-112.488415, 45.981329], [-112.48942, 45.981323], [-112.489915, 45.981311], [-112.490321, 45.981291], [-112.491262, 45.981187], [-112.492077, 45.981092], [-112.492755, 45.980966], [-112.49327, 45.980829], [-112.494197, 45.980567], [-112.495345, 45.9802], [-112.496229, 45.979974], [-112.496927, 45.979831], [-112.497708, 45.979756], [-112.4986, 45.979744], [-112.499484, 45.979774], [-112.500257, 45.979863], [-112.501047, 45.980042], [-112.501432, 45.980146], [-112.501772, 45.980251], [-112.502162, 45.980391], [-112.502441, 45.980505], [-112.502715, 45.980622], [-112.503036, 45.980793], [-112.503323, 45.980946], [-112.503646, 45.981153], [-112.503934, 45.981351], [-112.504203, 45.981566], [-112.504427, 45.981757], [-112.504926, 45.982217], [-112.505529, 45.982793], [-112.505933, 45.983132], [-112.506153, 45.983296], [-112.506336, 45.983431], [-112.506571, 45.983586], [-112.506888, 45.983789], [-112.507196, 45.983956], [-112.507471, 45.984097], [-112.507799, 45.984272], [-112.508512, 45.98456], [-112.508794, 45.984651], [-112.50906, 45.984738], [-112.509415, 45.984842], [-112.509964, 45.984998], [-112.512836, 45.985714], [-112.514063, 45.986044], [-112.515749, 45.986501], [-112.516874, 45.986847], [-112.529602, 45.991803], [-112.530598, 45.992131], [-112.531516, 45.992333], [-112.5324, 45.992476], [-112.533044, 45.992536], [-112.533894, 45.992542], [-112.538675, 45.992548], [-112.539481, 45.992542], [-112.544571, 45.992548], [-112.54755, 45.9925], [-112.549472, 45.992518], [-112.552176, 45.992548], [-112.553189, 45.992614], [-112.554167, 45.992739], [-112.555008, 45.992942], [-112.559798, 45.994337], [-112.560613, 45.994587], [-112.561471, 45.994951], [-112.562235, 45.995404], [-112.562816, 45.995834], [-112.563071, 45.996064], [-112.563323, 45.996326], [-112.563586, 45.996638], [-112.563846, 45.996975], [-112.564136, 45.997384], [-112.564414, 45.997764], [-112.565162, 45.998934], [-112.565743, 45.999683], [-112.566655, 46.000955], [-112.567437, 46.001903], [-112.56802, 46.002517], [-112.568741, 46.003096], [-112.569419, 46.003525], [-112.570063, 46.003859], [-112.570964, 46.004318], [-112.571822, 46.004693], [-112.572895, 46.005009], [-112.573848, 46.00523], [-112.574775, 46.005379], [-112.575728, 46.005463], [-112.577187, 46.005504], [-112.577788, 46.005522], [-112.582056, 46.005676], [-112.594885, 46.006166], [-112.604584, 46.006524], [-112.605451, 46.006619], [-112.607283, 46.006843], [-112.610896, 46.007381], [-112.611152, 46.005948], [-112.61121, 46.005792], [-112.611238, 46.005609], [-112.608284, 46.004266], [-112.607739, 46.003921], [-112.607191, 46.003516], [-112.606953, 46.003377], [-112.606693, 46.003274], [-112.606342, 46.003193], [-112.606239, 46.00317], [-112.604638, 46.002827], [-112.603223, 46.002511], [-112.603052, 46.002473], [-112.60203, 46.002278], [-112.601516, 46.002219], [-112.601276, 46.00221], [-112.600883, 46.002212], [-112.600496, 46.00223], [-112.600404, 46.002208], [-112.60036, 46.002173], [-112.600327, 46.002117], [-112.600314, 46.002059], [-112.600333, 46.001927], [-112.600381, 46.001853], [-112.60049, 46.001777], [-112.600599, 46.001745], [-112.600713, 46.001737], [-112.600862, 46.001739], [-112.601544, 46.001798], [-112.601657, 46.001792], [-112.601804, 46.001767], [-112.601918, 46.001724], [-112.602008, 46.001673], [-112.602239, 46.001528], [-112.602389, 46.001412], [-112.602658, 46.001185], [-112.60307, 46.000822], [-112.603218, 46.000656], [-112.603405, 46.000474], [-112.60366, 46.000513], [-112.603842, 46.000532], [-112.604078, 46.000549], [-112.604254, 46.000547], [-112.605018, 46.00043], [-112.605491, 46.000395], [-112.605766, 46.000402], [-112.606076, 46.000466], [-112.606209, 46.00049], [-112.606364, 46.000494], [-112.606548, 46.000466], [-112.607005, 46.000359], [-112.607412, 46.000312], [-112.611416, 46.000299], [-112.611653, 46.000242], [-112.611812, 46.000145], [-112.611932, 45.999965], [-112.611906, 45.993731], [-112.611956, 45.990322], [-112.611963, 45.987384], [-112.611945, 45.986839], [-112.611983, 45.986517], [-112.612211, 45.985826], [-112.612974, 45.983191], [-112.613351, 45.982047], [-112.613508, 45.981723], [-112.613655, 45.98152], [-112.613973, 45.981284], [-112.61573, 45.980235], [-112.61642, 45.979923], [-112.617405, 45.979519], [-112.618068, 45.979213], [-112.618669, 45.978865], [-112.620246, 45.977619], [-112.620586, 45.977289], [-112.621106, 45.976592], [-112.622154, 45.975079], [-112.622235, 45.974699], [-112.622281, 45.973317], [-112.622078, 45.970234], [-112.619831, 45.970225], [-112.614288, 45.970203] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-111.927805, 48.932435], [-112.181396, 48.886392] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-112.181396, 48.886392] } }, { "type": "Feature", "properties": { "lineStringIndex": 0, "segmentIndex": 1185, "totalDistance": 303.639629, "lineDistance": 303.639629, "segmentDistance": 0.867249, "pointDistance": 19.22738, "dist": 19.22738, "multiFeatureIndex": 0, "location": 303.639629, "index": 1185, "marker-color": "#F0F" }, "geometry": { "type": "Point", "coordinates": [-111.927805, 48.932435] } } ] } ================================================ FILE: packages/turf-nearest-point-on-line/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { along } from "@turf/along"; import { distance } from "@turf/distance"; import { truncate } from "@turf/truncate"; import { length } from "@turf/length"; import { lineString, multiLineString, point, featureCollection, round, degreesToRadians, } from "@turf/helpers"; import { nearestPointOnLine } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("turf-nearest-point-on-line", (t) => { for (const { name, filename, geojson } of fixtures) { const [line, point] = geojson.features; const onLine = nearestPointOnLine(line, point); onLine.geometry.coordinates[0] = round(onLine.geometry.coordinates[0], 6); onLine.geometry.coordinates[1] = round(onLine.geometry.coordinates[1], 6); onLine.properties.totalDistance = round(onLine.properties.totalDistance, 6); onLine.properties.lineDistance = round(onLine.properties.lineDistance, 6); onLine.properties.segmentDistance = round( onLine.properties.segmentDistance, 6 ); onLine.properties.pointDistance = round(onLine.properties.pointDistance, 6); // deprecated properties START onLine.properties.dist = round(onLine.properties.dist, 6); onLine.properties.location = round(onLine.properties.location, 6); // deprecated properties END onLine.properties["marker-color"] = "#F0F"; const between = lineString( [onLine.geometry.coordinates, point.geometry.coordinates], { stroke: "#F00", "stroke-width": 6 } ); const results = truncate(featureCollection([line, between, point, onLine])); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEqual(results, loadJsonFileSync(directories.out + filename), name); } t.end(); }); test("turf-nearest-point-on-line - throws error if invalid arguments", (t) => { t.throws(() => { nearestPointOnLine(undefined, undefined); }); t.end(); }); test("turf-nearest-point-on-line - first point", (t) => { const line = lineString([ [-122.457175, 37.720033], [-122.457175, 37.718242], ]); const pt = point([-122.457175, 37.720033]); const snapped = truncate(nearestPointOnLine(line, pt)); t.deepEqual( pt.geometry.coordinates, snapped.geometry.coordinates, "pt on start does not move" ); t.equal( Number(snapped.properties.totalDistance.toFixed(6)), 0, "properties.totalDistance" ); t.end(); }); test("turf-nearest-point-on-line - points behind first point", (t) => { const line = lineString([ [-122.457175, 37.720033], [-122.457175, 37.718242], ]); const first = point(line.geometry.coordinates[0]); const pts = [ point([-122.457175, 37.720093]), point([-122.457175, 37.820093]), point([-122.457165, 37.720093]), point([-122.455165, 37.720093]), ]; const expectedLocation = [0, 0, 0, 0]; pts.forEach((pt) => { const snapped = truncate(nearestPointOnLine(line, pt)); t.deepEqual( snapped.geometry.coordinates, first.geometry.coordinates, "pt behind start moves to first vertex" ); expectedLocation.push(Number(snapped.properties.totalDistance.toFixed(6))); }); const filepath = directories.out + "expectedLocation - points behind first point.json"; if (process.env.REGEN) writeJsonFileSync(filepath, expectedLocation); t.deepEqual( loadJsonFileSync(filepath), expectedLocation, "properties.totalDistance" ); t.end(); }); test("turf-nearest-point-on-line - points in front of last point", (t) => { const line = lineString([ [-122.456161, 37.721259], [-122.457175, 37.720033], [-122.457175, 37.718242], ]); const last = point( line.geometry.coordinates[line.geometry.coordinates.length - 1] ); const pts = [ point([-122.45696, 37.71814]), point([-122.457363, 37.718132]), point([-122.457309, 37.717979]), point([-122.45718, 37.717045]), ]; const expectedLocation: number[] = []; pts.forEach((pt) => { const snapped = truncate(nearestPointOnLine(line, pt)); t.deepEqual( snapped.geometry.coordinates, last.geometry.coordinates, "pt behind start moves to last vertex" ); expectedLocation.push(Number(snapped.properties.totalDistance.toFixed(6))); }); const filepath = directories.out + "expectedLocation - points in front of last point.json"; if (process.env.REGEN) writeJsonFileSync(filepath, expectedLocation); t.deepEqual( loadJsonFileSync(filepath), expectedLocation, "properties.totalDistance" ); t.end(); }); test("turf-nearest-point-on-line - points on joints", (t) => { const lines = [ lineString([ [-122.456161, 37.721259], [-122.457175, 37.720033], [-122.457175, 37.718242], ]), lineString([ [26.279296, 31.728167], [21.796875, 32.694865], [18.808593, 29.993002], [12.919921, 33.137551], [10.195312, 35.603718], [4.921875, 36.527294], [-1.669921, 36.527294], [-5.449218, 34.741612], [-8.789062, 32.990235], ]), lineString([ [-0.109198, 51.522042], [-0.10923, 51.521942], [-0.109165, 51.521862], [-0.109047, 51.521775], [-0.108865, 51.521601], [-0.108747, 51.521381], [-0.108554, 51.520687], [-0.108436, 51.520279], [-0.108393, 51.519952], [-0.108178, 51.519578], [-0.108146, 51.519285], [-0.107899, 51.518624], [-0.107599, 51.517782], ]), ]; const expectedLocation: number[] = []; lines.forEach((line, i) => { line.geometry.coordinates .map((coord) => { return point(coord); }) .forEach((pt, j) => { const snapped = truncate(nearestPointOnLine(line, pt)); t.deepEqual( snapped.geometry.coordinates, pt.geometry.coordinates, "pt on joint stayed in place" ); if (!expectedLocation[i]) expectedLocation[i] = []; expectedLocation[i][j] = Number( snapped.properties.totalDistance.toFixed(6) ); }); }); const filepath = directories.out + "expectedLocation - points on joints.json"; if (process.env.REGEN) writeJsonFileSync(filepath, expectedLocation); t.deepEqual( expectedLocation, loadJsonFileSync(filepath), "properties.totalDistance" ); t.end(); }); test("turf-nearest-point-on-line - points on top of line", (t) => { const line = lineString([ [-0.109198, 51.522042], [-0.10923, 51.521942], [-0.109165, 51.521862], [-0.109047, 51.521775], [-0.108865, 51.521601], [-0.108747, 51.521381], [-0.108554, 51.520687], [-0.108436, 51.520279], [-0.108393, 51.519952], [-0.108178, 51.519578], [-0.108146, 51.519285], [-0.107899, 51.518624], [-0.107599, 51.517782], ]); const expectedLocation = []; const dist = length(line, { units: "miles" }); const increment = dist / 10; for (let i = 0; i < 10; i++) { const pt = along(line, increment * i, { units: "miles" }); const snapped = nearestPointOnLine(line, pt, { units: "miles" }); const shift = distance(pt, snapped, { units: "miles" }); t.true(shift < 0.000001, "pt did not shift far"); expectedLocation.push(Number(snapped.properties.totalDistance.toFixed(6))); } const filepath = directories.out + "expectedLocation - points on top of line.json"; if (process.env.REGEN) writeJsonFileSync(filepath, expectedLocation); t.deepEqual( expectedLocation, loadJsonFileSync(filepath), "properties.totalDistance" ); t.end(); }); test("turf-nearest-point-on-line - point along line", (t) => { const line = lineString([ [-122.457175, 37.720033], [-122.457175, 37.718242], ]); const pt = along(line, 0.019, { units: "miles" }); const snapped = nearestPointOnLine(line, pt); const shift = distance(pt, snapped, { units: "miles" }); t.true(shift < 0.00001, "pt did not shift far"); t.end(); }); test("turf-nearest-point-on-line - points on sides of lines", (t) => { const line = lineString([ [-122.456161, 37.721259], [-122.457175, 37.718242], ]); const first = line.geometry.coordinates[0]; const last = line.geometry.coordinates[line.geometry.coordinates.length - 1]; const pts = [ point([-122.457025, 37.71881]), point([-122.457336, 37.719235]), point([-122.456864, 37.72027]), point([-122.45652, 37.720635]), ]; pts.forEach((pt) => { const snapped = nearestPointOnLine(line, pt); t.notDeepEqual( snapped.geometry.coordinates, first, "pt did not snap to first vertex" ); t.notDeepEqual( snapped.geometry.coordinates, last, "pt did not snap to last vertex" ); }); t.end(); }); test("turf-nearest-point-on-line - segmentIndex and pointDistance", (t) => { const line = lineString([ [-92.090492, 41.102897], [-92.191085, 41.079868], [-92.228507, 41.056055], [-92.237091, 41.008143], [-92.225761, 40.966937], [-92.15023, 40.936858], [-92.112464, 40.977565], [-92.062683, 41.034564], [-92.100791, 41.040002], ]); const pt = point([-92.110576, 41.040649]); const snapped = truncate(nearestPointOnLine(line, pt)); t.equal(snapped.properties.segmentIndex, 8, "properties.segmentIndex"); t.equal( Number(snapped.properties.pointDistance.toFixed(6)), 0.823802, "properties.pointDistance" ); t.deepEqual( snapped.geometry.coordinates, [-92.100791, 41.040002], "coordinates" ); t.end(); }); test("turf-nearest-point-on-line -- Issue #691", (t) => { const line1 = lineString([ [7, 50], [8, 50], [9, 50], ]); const pointAlong = along(line1, 10); const { totalDistance } = nearestPointOnLine(line1, pointAlong).properties; t.false(isNaN(totalDistance)); t.end(); }); test("turf-nearest-point-on-line -- Geometry Support", (t) => { const pt = point([7, 55]); const line = lineString([ [7, 50], [8, 50], [9, 50], ]); const multiLine = multiLineString([ [ [7, 50], [8, 50], [9, 50], ], [ [17, 30], [4, 30], [2, 30], ], ]); t.assert(nearestPointOnLine(line.geometry, pt), "line Geometry"); t.assert(nearestPointOnLine(multiLine.geometry, pt), "multiLine Geometry"); t.assert(nearestPointOnLine(line, pt.geometry), "point Geometry"); t.assert( nearestPointOnLine(line, pt.geometry.coordinates), "point Coordinates" ); t.end(); }); test("turf-nearest-point-on-line -- lineStringIndex", (t) => { const pt = point([4, 30]); const multiLine = multiLineString([ [ [7, 50], [8, 50], [9, 50], ], [ [17, 30], [4, 30], [2, 30], ], ]); t.equal( nearestPointOnLine(multiLine.geometry, pt).properties.lineStringIndex, 1, "properties.lineStringIndex" ); t.end(); }); test("turf-nearest-point-on-line -- issue 2753", (t) => { const multiLine = multiLineString([ [ [-122.3125, 47.6632], [-122.3102, 47.6646], ], [ [-122.3116, 47.6623], [-122.3091, 47.6636], ], ]); const ptA = point([-122.3106, 47.6638], { name: "A" }); const ptB = point([-122.3102, 47.6634], { name: "B" }); const nearestToA = nearestPointOnLine(multiLine, ptA, { units: "meters" }); const nearestToB = nearestPointOnLine(multiLine, ptB, { units: "meters" }); t.equal( Number(nearestToA.properties.lineDistance.toFixed(6)), 150.296465, "nearestToA lineDistance" ); t.equal( Number(nearestToB.properties.lineDistance.toFixed(6)), 157.738215, "nearestToB lineDistance" ); t.end(); }); test("turf-nearest-point-on-line -- issue 1514", (t) => { const pt = point([-40.01, 56]); const line = lineString([ [-40, 50], [-40, 60], ]); const nearest = nearestPointOnLine(line, pt, { units: "meters" }); t.deepEqual( truncate(nearest, { precision: 8 }).geometry.coordinates, [-40, 56.0000004], "nearest point should be [-40, 56.0000004]" ); t.end(); }); test("turf-nearest-point-on-line -- issue 965", (t) => { const pt = point([-1.75, 50.02876666663333]); const line = lineString([ [-76.42916666666666, 36.967333333333336], [-76.43083333333334, 36.96516666666667], [-76.43033333333334, 36.962833333333336], [-76.416, 36.95466666666667], [-76.4075, 36.953833333333336], [-76.3555, 36.959], [-76.35083333333333, 36.96083333333333], [-76.3405, 36.96783333333333], [-76.29766666666667, 37.00066666666667], [-76.25, 37.00966666666667], [-76.015, 36.95], [-75.975, 36.94166666666667], [-75.92166666666667, 36.916666666666664], [-75.87, 36.87166666666667], [-75.78083333333333, 36.82666666666667], [-75.76333333333334, 36.81], [-75.64433333333334, 36.81], [-2.75, 49.81666666666667], [0.9866666666666667, 50.49333333333333], [1.335, 50.68], [1.4849999999999999, 50.89833333333333], [1.7516666666666667, 51.10333333333333], [2.1666666666666665, 51.25666666666667], [2.5, 51.36666666666667], [2.71, 51.36666666666667], [2.8116666666666665, 51.42333333333333], [2.881666666666667, 51.42166666666667], [2.965, 51.415], [3.046666666666667, 51.413333333333334], [3.1066666666666665, 51.39833333333333], [3.25, 51.41], [3.3033333333333332, 51.406666666666666], [3.3333333333333335, 51.406666666666666], [3.36, 51.40833333333333], [3.408333333333333, 51.4075], [3.6, 51.43], [3.6466666666666665, 51.43966666666667], [3.6683333333333334, 51.43866666666667], [3.71, 51.415333333333336], [3.711666666666667, 51.39083333333333], [3.720833333333333, 51.37833333333333], [3.751666666666667, 51.365], [3.8133333333333335, 51.346666666666664], [3.8466666666666667, 51.345], [3.888333333333333, 51.354166666666664], [3.9283333333333332, 51.37083333333333], [3.9466666666666668, 51.384166666666665], [3.9783333333333335, 51.435], [3.9966666666666666, 51.4375], [4.015, 51.43333333333333], [4.03, 51.4225], [4.035, 51.39], [4.045, 51.37833333333333], [4.069166666666667, 51.37166666666667], [4.101666666666667, 51.36866666666667], [4.133333333333334, 51.37166666666667], [4.147, 51.37416666666667], [4.181333333333333, 51.39666666666667], [4.190666666666667, 51.39833333333333], [4.200833333333334, 51.39833333333333], [4.2091666666666665, 51.39416666666666], [4.221333333333333, 51.36533333333333], [4.2396666666666665, 51.355], [4.261666666666667, 51.348333333333336], [4.275, 51.34466666666667], [4.293333333333333, 51.343333333333334], [4.2988333333333335, 51.34166666666667], [4.308333333333334, 51.325], [4.314666666666667, 51.329], [4.316666666666666, 51.32633333333333], ]); const nearest = nearestPointOnLine(line, pt, { units: "meters" }); t.deepEqual( truncate(nearest, { precision: 8 }).geometry.coordinates, [-1.74267971, 50.01283081], "nearest point should be [-1.74267971, 50.01283081]" ); t.end(); }); test("turf-nearest-point-on-line -- issue 2808 redundant point support", (t) => { // include redundant points in line const line1 = lineString([ [10.57846, 49.8463959], [10.57846, 49.8468386], [10.57846, 49.8468386], [10.57846, 49.8468386], [10.57846, 49.8472814], [10.57846, 49.8472814], ]); const thePoint = point([10.57846, 49.8468386]); const nearest = nearestPointOnLine(line1, thePoint); // should not throw t.equal(nearest.properties.pointDistance, 0, "redundant point support"); t.end(); }); test("turf-nearest-point-on-line -- duplicate points on line string shouldn't break the function.", (t) => { // @jonmiles const line = lineString([ [-80.191793, 25.885611], [-80.191793, 25.885611], [-80.191543, 25.885874], ]); const userPoint = point([-80.191762, 25.885587]); const nearest = nearestPointOnLine(line, userPoint, { units: "meters" }); t.equal(nearest.properties.pointDistance > 4, true, "pointDistance be > 4"); t.equal(nearest.properties.totalDistance, 0, "totalDistance be 0"); t.end(); }); test("turf-nearest-point-on-line -- issue 2934 correct endpoint chosen when in opposite hemisphere", (t) => { // create a long line where the southern end point should be chosen, but the // northern endpoint is closer to the projected great circles const line = lineString([ [25, 88], [25, -70], ]); const pt = point([-45, -88]); const nearest = nearestPointOnLine(line, pt); t.deepEqual( truncate(nearest, { precision: 8 }).geometry.coordinates, [25, -70], "nearest point is in the Southern Hemisphere" ); t.end(); }); test("turf-nearest-point-on-line -- correctly reports external intersection for large arcs", (t) => { // create a test case where the arc is > 2Pi and the closest intersection // point is far from the arc - this case was failing due to an angular // comparison only working for small arcs; this test case checks this // regression const line = lineString([ [25, 80], [25, -70], ]); const pt = point([-88, 13]); const nearest = nearestPointOnLine(line, pt); t.deepEqual( nearest.geometry.coordinates, [25, 80], "nearest point is at the northern end" ); t.end(); }); test("turf-nearest-point-on-line -- issue 2939 nearestPointOnSegment handles tiny segments", (t) => { // create a test case where the line segment passed is small enough such that // a cross product used to generate its normal in nearestPointOnSegment ends // up as [0, 0, 0] but large enough so that the two points are not === // // In v7.2.0 this test case was failing in browser (Chrome 141.0) but // succeeding on Node (v22.20.0) due to a bit difference in the cosine // implementation. To reproduce the same effect in Node, we monkey patch // Math.cos to temporarily return the browser value as it was too difficult to // find a repro case in node. This monkey patch version fails on v7.2.0 but // passes with degenerate point fixes. const lngA = 35.000102519989014; const lngB = 35.00010251998902; const line = lineString([ [lngA, 32.00010141921075], [lngB, 32.00010141921075], ]); // WARN: Override cos function to give specific results for this test const originalCos = Math.cos; Math.cos = (x) => { // The cosine of lngA gives a different result in the tested browsers than // it does in node, therefore capturing here for this test run only. if (x === degreesToRadians(lngA)) { return originalCos(degreesToRadians(lngB)); } else { return originalCos(x); } }; const pt = point([35.0005, 32.0005]); const nearest = nearestPointOnLine(line, pt); // WARN: Reset cos function Math.cos = originalCos; t.deepEqual( nearest.geometry.coordinates, [35.00010251998902, 32.00010141921075], "nearest point should be the end point of the line string" ); t.end(); }); ================================================ FILE: packages/turf-nearest-point-on-line/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-nearest-point-on-line/types.ts ================================================ import { nearestPointOnLine } from "./index.js"; import { point, lineString, multiLineString } from "@turf/helpers"; const pt = point([1.5, 1.5]); const line = lineString([ [0, 0], [1, 1], ]); const multiLine = multiLineString([ [ [0, 0], [1, 1], [2, 2], [0, 0], ], ]); // All combinations of parameters nearestPointOnLine(line, pt); nearestPointOnLine(multiLine, pt); nearestPointOnLine(line.geometry, pt); nearestPointOnLine(multiLine.geometry, pt); nearestPointOnLine(line, pt, { units: "miles" }); // Output can be used as Input const output = nearestPointOnLine(line, pt); nearestPointOnLine(line, output); // Extra properties being generated from module output.properties.dist; output.properties.multiFeatureIndex; output.properties.index; output.properties.location; ================================================ FILE: packages/turf-nearest-point-to-line/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-nearest-point-to-line/README.md ================================================ # @turf/nearest-point-to-line ## nearestPointToLine Returns the closest [point][1], of a [collection][2] of points, to a [line][3]. The returned point has a `dist` property indicating its distance to the line. ### Parameters * `points` **([FeatureCollection][2] | [GeometryCollection][4]<[Point][1]>)** Point Collection * `line` **([Feature][5] | [Geometry][6]<[LineString][3]>)** Line Feature * `options` **[Object][7]?** Optional parameters (optional, default `{}`) * `options.units` **Units** unit of the output distance property. Supports all valid Turf [Units][8]. (eg: degrees, radians, miles, or kilometers) (optional, default `'kilometers'`) * `options.properties` **[Object][7]** Translate Properties to Point (optional, default `{}`) ### Examples ```javascript var pt1 = turf.point([0, 0]); var pt2 = turf.point([0.5, 0.5]); var points = turf.featureCollection([pt1, pt2]); var line = turf.lineString([[1,1], [-1,1]]); var nearest = turf.nearestPointToLine(points, line); //addToMap var addToMap = [nearest, line]; ``` Returns **[Feature][5]<[Point][1]>** the closest point [1]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [2]: https://tools.ietf.org/html/rfc7946#section-3.3 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [4]: https://tools.ietf.org/html/rfc7946#section-3.1.8 [5]: https://tools.ietf.org/html/rfc7946#section-3.2 [6]: https://tools.ietf.org/html/rfc7946#section-3.1 [7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [8]: https://turfjs.org/docs/api/types/Units --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/nearest-point-to-line ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-nearest-point-to-line/bench.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import { glob } from "glob"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { nearestPointToLine } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); /** * Benchmark Results * * fiji: 2.973ms * on-line: 0.758ms * one: 0.549ms * resolute: 0.349ms * two: 0.358ms * * fiji x 36,409 ops/sec ±4.14% (69 runs sampled) * on-line x 14,044 ops/sec ±4.92% (69 runs sampled) * one x 65,604 ops/sec ±11.55% (64 runs sampled) * resolute x 44,962 ops/sec ±6.76% (67 runs sampled) * two x 42,690 ops/sec ±2.34% (76 runs sampled) */ const suite = new Benchmark.Suite("turf-nearest-point-to-line"); glob .sync(path.join(__dirname, "test", "in", "*.geojson")) .forEach((filepath) => { const { name } = path.parse(filepath); const geojson = loadJsonFileSync(filepath); const [points, line] = geojson.features; console.time(name); nearestPointToLine(points, line); console.timeEnd(name); suite.add(name, () => nearestPointToLine(points, line)); }); suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-nearest-point-to-line/index.ts ================================================ import { Feature, FeatureCollection, GeometryCollection, LineString, Point, GeoJsonProperties, } from "geojson"; import { Units } from "@turf/helpers"; import { getType } from "@turf/invariant"; import { featureEach, geomEach } from "@turf/meta"; import { pointToLineDistance } from "@turf/point-to-line-distance"; /** * Returns the closest {@link Point|point}, of a {@link FeatureCollection|collection} of points, * to a {@link LineString|line}. The returned point has a `dist` property indicating its distance to the line. * * @function * @param {FeatureCollection|GeometryCollection} points Point Collection * @param {Feature|Geometry} line Line Feature * @param {Object} [options] Optional parameters * @param {Units} [options.units='kilometers'] unit of the output distance property. Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * (eg: degrees, radians, miles, or kilometers) * @param {Object} [options.properties={}] Translate Properties to Point * @returns {Feature} the closest point * @example * var pt1 = turf.point([0, 0]); * var pt2 = turf.point([0.5, 0.5]); * var points = turf.featureCollection([pt1, pt2]); * var line = turf.lineString([[1,1], [-1,1]]); * * var nearest = turf.nearestPointToLine(points, line); * * //addToMap * var addToMap = [nearest, line]; */ function nearestPointToLine

( points: | FeatureCollection | Feature | GeometryCollection, line: Feature | LineString, options: { units?: Units; properties?: GeoJsonProperties; } = {} ): Feature { const units = options.units; const properties = options.properties || {}; // validation const pts = normalize(points); if (!pts.features.length) { throw new Error("points must contain features"); } if (!line) { throw new Error("line is required"); } if (getType(line) !== "LineString") { throw new Error("line must be a LineString"); } let dist = Infinity; let pt: any = null; featureEach(pts, (point) => { const d = pointToLineDistance(point, line, { units }); if (d < dist) { dist = d; pt = point; } }); /* * Translate Properties to final Point, priorities: * 1. options.properties * 2. inherent Point properties * 3. dist custom properties created by NearestPointToLine */ if (pt) { pt.properties = { ...{ dist }, ...pt.properties, ...properties }; } return pt; } /** * Convert Collection to FeatureCollection * * @private * @param {FeatureCollection|GeometryCollection} points Points * @returns {FeatureCollection} points */ function normalize(points: any): FeatureCollection { const features: any[] = []; const type = points.geometry ? points.geometry.type : points.type; switch (type) { case "GeometryCollection": geomEach(points, (geom) => { if (geom.type === "Point") { features.push({ type: "Feature", properties: {}, geometry: geom }); } }); return { type: "FeatureCollection", features }; case "FeatureCollection": points.features = points.features.filter((feature: any) => { return feature.geometry.type === "Point"; }); return points; default: throw new Error("points must be a Point Collection"); } } export { nearestPointToLine }; export default nearestPointToLine; ================================================ FILE: packages/turf-nearest-point-to-line/package.json ================================================ { "name": "@turf/nearest-point-to-line", "version": "7.3.4", "description": "Returns the closest point, of a collection of points, to a line.", "author": "Turf Authors", "contributors": [ "Stefano Borghi <@stebogit>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "geojson", "gis", "near", "nearest-point-to-line" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/circle": "workspace:*", "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/object-assign": "^4.0.33", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@turf/point-to-line-distance": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-nearest-point-to-line/test/in/fiji.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "GeometryCollection", "geometries": [ { "type": "Point", "coordinates": [180.60699462890625, -16.62303335009946] }, { "type": "Point", "coordinates": [181.0986328125, -17.027898881942694] }, { "type": "Point", "coordinates": [179.10186767578125, -17.413546114374437] }, { "type": "Point", "coordinates": [180.516357421875, -17.287709050621917] }, { "type": "Point", "coordinates": [179.37103271484375, -16.691447830122993] }, { "type": "Point", "coordinates": [180.25817871093747, -16.95435146120393] } ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [179.68139648437497, -16.607241925191516], [180.6427001953125, -16.935960102864705], [179.58251953125, -17.07253857905758], [180.29937744140625, -17.460712710429785] ] } } ] } ================================================ FILE: packages/turf-nearest-point-to-line/test/in/on-line.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "GeometryCollection", "geometries": [ { "type": "Point", "coordinates": [-23.62060546875, 15.050905707724771] }, { "type": "Point", "coordinates": [-22.813110351562496, 16.093320185359257] }, { "type": "Point", "coordinates": [-23.1646728515625, 15.220589019578128] }, { "type": "Point", "coordinates": [-24.4061279296875, 14.966013251567164] }, { "type": "Point", "coordinates": [-22.93670654296875, 16.759837823776632] }, { "type": "Point", "coordinates": [-24.3182373046875, 16.609873919524187] }, { "type": "Point", "coordinates": [-24.98291015625, 16.867633616803836] }, { "type": "Point", "coordinates": [-25.191650390625, 17.056784609942554] }, { "type": "Point", "coordinates": [-22.818603515625, 15.31597593426845] } ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-24.10400390625, 13.864747046142286], [-24.049072265625, 15.739388446649146], [-23.016357421875, 14.82799134735208], [-22.818603515625, 15.31597593426845], [-22.3077392578125, 16.399200837347113], [-23.510742187499996, 16.409739933377747], [-24.4500732421875, 17.528820674552627] ] } } ] } ================================================ FILE: packages/turf-nearest-point-to-line/test/in/one.geojson ================================================ { "type": "FeatureCollection", "properties": { "units": "miles" }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "GeometryCollection", "geometries": [ { "type": "Point", "coordinates": [29.7509765625, 17.5602465032949] }, { "type": "Point", "coordinates": [28.388671875, 18.323240460443397] }, { "type": "Point", "coordinates": [29.619140624999996, 19.228176737766262] } ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [27.015380859374996, 15.008463695004872], [29.168701171875, 17.256236314156425], [32.003173828125, 16.36230951024085], [33.2666015625, 18.999802829053262] ] } } ] } ================================================ FILE: packages/turf-nearest-point-to-line/test/in/resolute.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "GeometryCollection", "geometries": [ { "type": "Point", "coordinates": [-94.04296874999999, 75.24186616026972] }, { "type": "Point", "coordinates": [-75.1025390625, 74.66001636880338] }, { "type": "Point", "coordinates": [-87.2314453125, 75.50815837230884] }, { "type": "Point", "coordinates": [-95.8447265625, 71.80141030136785] } ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-88.06640625, 75.397779424116], [-104.6337890625, 72.69883881004748], [-91.4501953125, 72.99690914812648], [-89.1650390625, 71.71888229713917] ] } } ] } ================================================ FILE: packages/turf-nearest-point-to-line/test/in/segment.geojson ================================================ { "type": "FeatureCollection", "properties": { "units": "miles" }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "GeometryCollection", "geometries": [ { "type": "Point", "coordinates": [27.26806640625, 14.243086862716888] }, { "type": "Point", "coordinates": [28.388671875, 18.323240460443397] }, { "type": "Point", "coordinates": [29.619140624999996, 19.228176737766262] } ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [27.015380859374996, 15.008463695004872], [29.168701171875, 17.256236314156425] ] } } ] } ================================================ FILE: packages/turf-nearest-point-to-line/test/in/two.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "GeometryCollection", "geometries": [ { "type": "Point", "coordinates": [-32.7392578125, 28.76765910569123] }, { "type": "Point", "coordinates": [-36.25488281249999, 23.36242859340884] }, { "type": "Point", "coordinates": [-38.0126953125, 26.194876675795218] }, { "type": "Point", "coordinates": [-39.90234375, 27.059125784374068] } ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-45.791015625, 23.96617587126503], [-42.0556640625, 27.332735136859146], [-41.572265625, 23.40276490540795], [-36.474609375, 28.844673680771795], [-43.1103515625, 29.267232865200878] ] } } ] } ================================================ FILE: packages/turf-nearest-point-to-line/test/out/fiji.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "GeometryCollection", "geometries": [ { "type": "Point", "coordinates": [180.60699462890625, -16.62303335009946] }, { "type": "Point", "coordinates": [181.0986328125, -17.027898881942694] }, { "type": "Point", "coordinates": [179.10186767578125, -17.413546114374437] }, { "type": "Point", "coordinates": [180.516357421875, -17.287709050621917] }, { "type": "Point", "coordinates": [179.37103271484375, -16.691447830122993] }, { "type": "Point", "coordinates": [180.25817871093747, -16.95435146120393] } ] } }, { "type": "Feature", "properties": { "dist": 3.504198, "marker-color": "#F00", "marker-size": "large", "marker-symbol": "star" }, "geometry": { "type": "Point", "coordinates": [180.25817871093747, -16.95435146120393] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [179.68139648437497, -16.607241925191516], [180.6427001953125, -16.935960102864705], [179.58251953125, -17.07253857905758], [180.29937744140625, -17.460712710429785] ] } }, { "type": "Feature", "properties": { "fill": "#F00" }, "geometry": { "type": "Polygon", "coordinates": [ [ [180.258179, -16.922837], [180.25495, -16.922989], [180.251752, -16.923443], [180.248617, -16.924194], [180.245573, -16.925236], [180.24265, -16.926558], [180.239878, -16.928148], [180.237281, -16.92999], [180.234885, -16.932066], [180.232714, -16.934358], [180.230788, -16.936841], [180.229125, -16.939494], [180.227743, -16.942289], [180.226653, -16.945201], [180.225867, -16.948201], [180.225392, -16.95126], [180.225233, -16.954349], [180.225391, -16.957438], [180.225865, -16.960497], [180.22665, -16.963497], [180.227739, -16.966409], [180.229121, -16.969205], [180.230783, -16.971858], [180.232708, -16.974342], [180.23488, -16.976634], [180.237275, -16.978711], [180.239872, -16.980554], [180.242646, -16.982144], [180.245569, -16.983466], [180.248613, -16.984508], [180.25175, -16.98526], [180.254949, -16.985714], [180.258179, -16.985865], [180.261409, -16.985714], [180.264607, -16.98526], [180.267744, -16.984508], [180.270789, -16.983466], [180.273712, -16.982144], [180.276485, -16.980554], [180.279082, -16.978711], [180.281478, -16.976634], [180.283649, -16.974342], [180.285575, -16.971858], [180.287237, -16.969205], [180.288619, -16.966409], [180.289707, -16.963497], [180.290493, -16.960497], [180.290966, -16.957438], [180.291125, -16.954349], [180.290965, -16.95126], [180.29049, -16.948201], [180.289704, -16.945201], [180.288615, -16.942289], [180.287232, -16.939494], [180.28557, -16.936841], [180.283644, -16.934358], [180.281472, -16.932066], [180.279077, -16.92999], [180.27648, -16.928148], [180.273707, -16.926558], [180.270785, -16.925236], [180.267741, -16.924194], [180.264605, -16.923443], [180.261407, -16.922989], [180.258179, -16.922837] ] ] } } ] } ================================================ FILE: packages/turf-nearest-point-to-line/test/out/on-line.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "GeometryCollection", "geometries": [ { "type": "Point", "coordinates": [-23.62060546875, 15.050905707724771] }, { "type": "Point", "coordinates": [-22.813110351562496, 16.093320185359257] }, { "type": "Point", "coordinates": [-23.1646728515625, 15.220589019578128] }, { "type": "Point", "coordinates": [-24.4061279296875, 14.966013251567164] }, { "type": "Point", "coordinates": [-22.93670654296875, 16.759837823776632] }, { "type": "Point", "coordinates": [-24.3182373046875, 16.609873919524187] }, { "type": "Point", "coordinates": [-24.98291015625, 16.867633616803836] }, { "type": "Point", "coordinates": [-25.191650390625, 17.056784609942554] }, { "type": "Point", "coordinates": [-22.818603515625, 15.31597593426845] } ] } }, { "type": "Feature", "properties": { "dist": 0, "marker-color": "#F00", "marker-size": "large", "marker-symbol": "star" }, "geometry": { "type": "Point", "coordinates": [-22.818603515625, 15.31597593426845] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-24.10400390625, 13.864747046142286], [-24.049072265625, 15.739388446649146], [-23.016357421875, 14.82799134735208], [-22.818603515625, 15.31597593426845], [-22.3077392578125, 16.399200837347113], [-23.510742187499996, 16.409739933377747], [-24.4500732421875, 17.528820674552627] ] } }, { "type": "Feature", "properties": { "fill": "#F00" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-22.818604, 15.324969], [-22.819518, 15.324926], [-22.820423, 15.324796], [-22.82131, 15.324582], [-22.822172, 15.324285], [-22.822999, 15.323907], [-22.823784, 15.323453], [-22.824519, 15.322928], [-22.825197, 15.322335], [-22.825812, 15.321681], [-22.826357, 15.320972], [-22.826827, 15.320215], [-22.827218, 15.319417], [-22.827526, 15.318586], [-22.827749, 15.31773], [-22.827883, 15.316857], [-22.827928, 15.315976], [-22.827883, 15.315094], [-22.827749, 15.314221], [-22.827526, 15.313365], [-22.827218, 15.312534], [-22.826827, 15.311736], [-22.826356, 15.310979], [-22.825811, 15.310271], [-22.825197, 15.309617], [-22.824519, 15.309024], [-22.823784, 15.308498], [-22.822999, 15.308045], [-22.822172, 15.307667], [-22.82131, 15.30737], [-22.820423, 15.307156], [-22.819517, 15.307026], [-22.818604, 15.306983], [-22.81769, 15.307026], [-22.816784, 15.307156], [-22.815897, 15.30737], [-22.815035, 15.307667], [-22.814208, 15.308045], [-22.813423, 15.308498], [-22.812688, 15.309024], [-22.81201, 15.309617], [-22.811396, 15.310271], [-22.810851, 15.310979], [-22.81038, 15.311736], [-22.809989, 15.312534], [-22.809681, 15.313365], [-22.809458, 15.314221], [-22.809324, 15.315094], [-22.809279, 15.315976], [-22.809324, 15.316857], [-22.809458, 15.31773], [-22.809681, 15.318586], [-22.809989, 15.319417], [-22.81038, 15.320215], [-22.81085, 15.320972], [-22.811395, 15.321681], [-22.81201, 15.322335], [-22.812688, 15.322928], [-22.813423, 15.323453], [-22.814208, 15.323907], [-22.815035, 15.324285], [-22.815897, 15.324582], [-22.816784, 15.324796], [-22.81769, 15.324926], [-22.818604, 15.324969] ] ] } } ] } ================================================ FILE: packages/turf-nearest-point-to-line/test/out/one.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "GeometryCollection", "geometries": [ { "type": "Point", "coordinates": [29.7509765625, 17.5602465032949] }, { "type": "Point", "coordinates": [28.388671875, 18.323240460443397] }, { "type": "Point", "coordinates": [29.619140624999996, 19.228176737766262] } ] } }, { "type": "Feature", "properties": { "dist": 31.791167, "marker-color": "#F00", "marker-size": "large", "marker-symbol": "star" }, "geometry": { "type": "Point", "coordinates": [29.7509765625, 17.5602465032949] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [27.015380859374996, 15.008463695004872], [29.168701171875, 17.256236314156425], [32.003173828125, 16.36230951024085], [33.2666015625, 18.999802829053262] ] } }, { "type": "Feature", "properties": { "fill": "#F00" }, "geometry": { "type": "Polygon", "coordinates": [ [ [29.750977, 18.020365], [29.703552, 18.018144], [29.656587, 18.011502], [29.610539, 18.000503], [29.565852, 17.985254], [29.522962, 17.965904], [29.482282, 17.942639], [29.444207, 17.915686], [29.409104, 17.885305], [29.37731, 17.851791], [29.349133, 17.815468], [29.324842, 17.776688], [29.30467, 17.735825], [29.288809, 17.693275], [29.277408, 17.649448], [29.270574, 17.604766], [29.26837, 17.559662], [29.270813, 17.514569], [29.277877, 17.469921], [29.28949, 17.426147], [29.305538, 17.38367], [29.325862, 17.342896], [29.350266, 17.304217], [29.378513, 17.268003], [29.41033, 17.234603], [29.44541, 17.204337], [29.483415, 17.177493], [29.523982, 17.154329], [29.56672, 17.135068], [29.61122, 17.119892], [29.657057, 17.108947], [29.703791, 17.102338], [29.750977, 17.100128], [29.798162, 17.102338], [29.844897, 17.108947], [29.890733, 17.119892], [29.935233, 17.135068], [29.977971, 17.154329], [30.018538, 17.177493], [30.056543, 17.204337], [30.091623, 17.234603], [30.12344, 17.268003], [30.151687, 17.304217], [30.176091, 17.342896], [30.196416, 17.38367], [30.212463, 17.426147], [30.224076, 17.469921], [30.23114, 17.514569], [30.233584, 17.559662], [30.231379, 17.604766], [30.224546, 17.649448], [30.213145, 17.693275], [30.197283, 17.735825], [30.177111, 17.776688], [30.15282, 17.815468], [30.124643, 17.851791], [30.09285, 17.885305], [30.057746, 17.915686], [30.019671, 17.942639], [29.978991, 17.965904], [29.936101, 17.985254], [29.891415, 18.000503], [29.845366, 18.011502], [29.798401, 18.018144], [29.750977, 18.020365] ] ] } } ] } ================================================ FILE: packages/turf-nearest-point-to-line/test/out/resolute.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "GeometryCollection", "geometries": [ { "type": "Point", "coordinates": [-94.04296874999999, 75.24186616026972] }, { "type": "Point", "coordinates": [-75.1025390625, 74.66001636880338] }, { "type": "Point", "coordinates": [-87.2314453125, 75.50815837230884] }, { "type": "Point", "coordinates": [-95.8447265625, 71.80141030136785] } ] } }, { "type": "Feature", "properties": { "dist": 26.35231, "marker-color": "#F00", "marker-size": "large", "marker-symbol": "star" }, "geometry": { "type": "Point", "coordinates": [-87.2314453125, 75.50815837230884] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-88.06640625, 75.397779424116], [-104.6337890625, 72.69883881004748], [-91.4501953125, 72.99690914812648], [-89.1650390625, 71.71888229713917] ] } }, { "type": "Feature", "properties": { "fill": "#F00" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-87.231445, 75.74515], [-87.325775, 75.74399], [-87.419152, 75.740523], [-87.510634, 75.734783], [-87.599301, 75.726828], [-87.684266, 75.716739], [-87.764681, 75.704616], [-87.839753, 75.690582], [-87.908747, 75.674778], [-87.970996, 75.657359], [-88.025906, 75.638501], [-88.072961, 75.618389], [-88.111732, 75.597222], [-88.141873, 75.575209], [-88.16313, 75.552563], [-88.175335, 75.529507], [-88.178414, 75.506262], [-88.172379, 75.483054], [-88.157331, 75.460105], [-88.133455, 75.437635], [-88.101017, 75.415857], [-88.060362, 75.394978], [-88.011905, 75.375194], [-87.956132, 75.356691], [-87.893592, 75.339643], [-87.824888, 75.324208], [-87.750677, 75.31053], [-87.671662, 75.298735], [-87.588583, 75.288933], [-87.502212, 75.281214], [-87.413351, 75.275649], [-87.322818, 75.27229], [-87.231445, 75.271167], [-87.140073, 75.27229], [-87.04954, 75.275649], [-86.960678, 75.281214], [-86.874308, 75.288933], [-86.791229, 75.298735], [-86.712213, 75.31053], [-86.638003, 75.324208], [-86.569299, 75.339643], [-86.506758, 75.356691], [-86.450986, 75.375194], [-86.402529, 75.394978], [-86.361873, 75.415857], [-86.329435, 75.437635], [-86.305559, 75.460105], [-86.290511, 75.483054], [-86.284477, 75.506262], [-86.287555, 75.529507], [-86.299761, 75.552563], [-86.321017, 75.575209], [-86.351158, 75.597222], [-86.389929, 75.618389], [-86.436985, 75.638501], [-86.491894, 75.657359], [-86.554143, 75.674778], [-86.623137, 75.690582], [-86.69821, 75.704616], [-86.778625, 75.716739], [-86.863589, 75.726828], [-86.952256, 75.734783], [-87.043739, 75.740523], [-87.137115, 75.74399], [-87.231445, 75.74515] ] ] } } ] } ================================================ FILE: packages/turf-nearest-point-to-line/test/out/segment.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "GeometryCollection", "geometries": [ { "type": "Point", "coordinates": [27.26806640625, 14.243086862716888] }, { "type": "Point", "coordinates": [28.388671875, 18.323240460443397] }, { "type": "Point", "coordinates": [29.619140624999996, 19.228176737766262] } ] } }, { "type": "Feature", "properties": { "dist": 55.51516, "marker-color": "#F00", "marker-size": "large", "marker-symbol": "star" }, "geometry": { "type": "Point", "coordinates": [27.26806640625, 14.243086862716888] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [27.015380859374996, 15.008463695004872], [29.168701171875, 17.256236314156425] ] } }, { "type": "Feature", "properties": { "fill": "#F00" }, "geometry": { "type": "Polygon", "coordinates": [ [ [27.268066, 15.046567], [27.18652, 15.042684], [27.105767, 15.031072], [27.026595, 15.011846], [26.949772, 14.985192], [26.876046, 14.951369], [26.806133, 14.910706], [26.740708, 14.8636], [26.680405, 14.810507], [26.625805, 14.751943], [26.577432, 14.688476], [26.535751, 14.620721], [26.501157, 14.549334], [26.473978, 14.475007], [26.454469, 14.398456], [26.442812, 14.320422], [26.439108, 14.241657], [26.443387, 14.162919], [26.455599, 14.084966], [26.475617, 14.008548], [26.503243, 13.934398], [26.538204, 13.863228], [26.580159, 13.795721], [26.628699, 13.732522], [26.683356, 13.674237], [26.743602, 13.621423], [26.808859, 13.574585], [26.8785, 13.534169], [26.951859, 13.500563], [27.028234, 13.474087], [27.106897, 13.454993], [27.187096, 13.443463], [27.268066, 13.439607], [27.349037, 13.443463], [27.429236, 13.454993], [27.507899, 13.474087], [27.584274, 13.500563], [27.657633, 13.534169], [27.727274, 13.574585], [27.792531, 13.621423], [27.852777, 13.674237], [27.907434, 13.732522], [27.955974, 13.795721], [27.997929, 13.863228], [28.03289, 13.934398], [28.060516, 14.008548], [28.080534, 14.084966], [28.092746, 14.162919], [28.097024, 14.241657], [28.093321, 14.320422], [28.081663, 14.398456], [28.062155, 14.475007], [28.034976, 14.549334], [28.000382, 14.620721], [27.9587, 14.688476], [27.910328, 14.751943], [27.855728, 14.810507], [27.795425, 14.8636], [27.73, 14.910706], [27.660086, 14.951369], [27.586361, 14.985192], [27.509538, 15.011846], [27.430366, 15.031072], [27.349613, 15.042684], [27.268066, 15.046567] ] ] } } ] } ================================================ FILE: packages/turf-nearest-point-to-line/test/out/two.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "GeometryCollection", "geometries": [ { "type": "Point", "coordinates": [-32.7392578125, 28.76765910569123] }, { "type": "Point", "coordinates": [-36.25488281249999, 23.36242859340884] }, { "type": "Point", "coordinates": [-38.0126953125, 26.194876675795218] }, { "type": "Point", "coordinates": [-39.90234375, 27.059125784374068] } ] } }, { "type": "Feature", "properties": { "dist": 78.009454, "marker-color": "#F00", "marker-size": "large", "marker-symbol": "star" }, "geometry": { "type": "Point", "coordinates": [-38.0126953125, 26.194876675795218] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-45.791015625, 23.96617587126503], [-42.0556640625, 27.332735136859146], [-41.572265625, 23.40276490540795], [-36.474609375, 28.844673680771795], [-43.1103515625, 29.267232865200878] ] } }, { "type": "Feature", "properties": { "fill": "#F00" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.012695, 26.896432], [-38.089796, 26.893033], [-38.166141, 26.88287], [-38.240981, 26.866042], [-38.313584, 26.842715], [-38.38324, 26.813117], [-38.449269, 26.777538], [-38.51103, 26.736326], [-38.567924, 26.689884], [-38.619402, 26.638664], [-38.66497, 26.583167], [-38.704193, 26.523933], [-38.7367, 26.461537], [-38.762187, 26.396584], [-38.78042, 26.329705], [-38.791234, 26.261546], [-38.794539, 26.192764], [-38.790315, 26.124023], [-38.778618, 26.055983], [-38.759571, 25.989299], [-38.73337, 25.92461], [-38.700277, 25.862534], [-38.660619, 25.803664], [-38.614783, 25.748564], [-38.563214, 25.697757], [-38.506411, 25.651726], [-38.444918, 25.610911], [-38.379324, 25.575697], [-38.310254, 25.546419], [-38.238365, 25.523355], [-38.164339, 25.506723], [-38.088877, 25.49668], [-38.012695, 25.493322], [-37.936513, 25.49668], [-37.861052, 25.506723], [-37.787026, 25.523355], [-37.715137, 25.546419], [-37.646067, 25.575697], [-37.580473, 25.610911], [-37.51898, 25.651726], [-37.462176, 25.697757], [-37.410608, 25.748564], [-37.364772, 25.803664], [-37.325114, 25.862534], [-37.292021, 25.92461], [-37.26582, 25.989299], [-37.246773, 26.055983], [-37.235075, 26.124023], [-37.230852, 26.192764], [-37.234157, 26.261546], [-37.244971, 26.329705], [-37.263203, 26.396584], [-37.288691, 26.461537], [-37.321198, 26.523933], [-37.360421, 26.583167], [-37.405989, 26.638664], [-37.457466, 26.689884], [-37.51436, 26.736326], [-37.576121, 26.777538], [-37.642151, 26.813117], [-37.711806, 26.842715], [-37.784409, 26.866042], [-37.85925, 26.88287], [-37.935594, 26.893033], [-38.012695, 26.896432] ] ] } } ] } ================================================ FILE: packages/turf-nearest-point-to-line/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { circle } from "@turf/circle"; import { truncate } from "@turf/truncate"; import { geometryCollection, featureCollection, point, lineString, round, } from "@turf/helpers"; import { nearestPointToLine } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("turf-nearest-point-to-line", (t) => { fixtures.forEach((fixture) => { const filename = fixture.filename; const name = fixture.name; const geojson = fixture.geojson; const points = geojson.features[0]; const line = geojson.features[1]; const units = (geojson.properties || {}).units; const nearest = nearestPointToLine(points, line, { units: units }); const distance = round(nearest.properties.dist, 6); nearest.properties.dist = distance; nearest.properties = Object.assign(nearest.properties, { "marker-color": "#F00", "marker-size": "large", "marker-symbol": "star", }); const distanceCircle = truncate( circle(nearest, distance || 1, { units: units, properties: { fill: "#F00" }, }) ); const results = featureCollection([points, nearest, line, distanceCircle]); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEqual(results, loadJsonFileSync(directories.out + filename), name); }); t.end(); }); test("turf-nearest-point-to-line -- throws", (t) => { const points = featureCollection([point([0, 0]), point([0, 1])]); const line = lineString([ [1, 1], [-1, 1], ]); // Handled by Typescript // t.throws(() => nearestPointToLine(null, line), /points is required/, 'missing points'); // t.throws(() => nearestPointToLine(points, null), /line is required/, 'missing line'); // t.throws(() => nearestPointToLine(points, line, 'invalid'), /options is invalid/, 'options is invalid'); t.throws( () => nearestPointToLine(points, line, { units: "invalid" }), /units is invalid/, "invalid units" ); t.throws( () => nearestPointToLine(points, points), /line must be a LineString/, "invalid line" ); t.throws( () => nearestPointToLine(line, line), /points must be a Point Collection/, "invalid points" ); t.end(); }); test("turf-nearest-point-to-line -- Geometry", (t) => { const points = featureCollection([point([0, 0]), point([0, 1])]); const geomPoints = geometryCollection([ point([0, 0]).geometry, point([0, 1]).geometry, ]); const line = lineString([ [1, 1], [-1, 1], ]); t.assert(nearestPointToLine(points, line.geometry)); t.assert(nearestPointToLine(geomPoints, line.geometry)); t.end(); }); test("turf-nearest-point-to-line -- Empty FeatureCollection", (t) => { const points = featureCollection([]); const line = lineString([ [1, 1], [-1, 1], ]); t.throws( () => nearestPointToLine(points, line), /points must contain features/, "points must contain features" ); t.end(); }); ================================================ FILE: packages/turf-nearest-point-to-line/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-nearest-point-to-line/types.ts ================================================ import { geometryCollection, featureCollection, point, lineString, } from "@turf/helpers"; import { nearestPointToLine } from "./index.js"; const points = featureCollection([point([0, 0]), point([0.5, 0.5])]); const line = lineString([ [1, 1], [-1, 1], ]); const nearest = nearestPointToLine<{ foo: string; dist: number }>( points, line, { properties: { foo: "bar" } } ); nearest.properties.foo; nearest.properties.dist; // nearest.properties.bar // [ts] Property 'bar' does not exist on type '{ dist?: number; foo: string; }'. // GeometryCollection const geomPoints = geometryCollection([ point([0, 0]).geometry, point([0.5, 0.5]).geometry, ]); nearestPointToLine(geomPoints, line); ================================================ FILE: packages/turf-planepoint/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-planepoint/README.md ================================================ # @turf/planepoint ## planepoint Takes a triangular plane as a polygon and a point within that triangle, and returns the z-value at that point. The Polygon should have properties `a`, `b`, and `c` that define the values at its three corners. Alternatively, the z-values of each triangle point can be provided by their respective 3rd coordinate if their values are not provided as properties. ### Parameters * `point` **[Coord][1]** the Point for which a z-value will be calculated * `triangle` **[Feature][2]<[Polygon][3]>** a Polygon feature with three vertices ### Examples ```javascript const point = turf.point([-75.3221, 39.529]); // "a", "b", and "c" values represent the values of the coordinates in order. const triangle = turf.polygon([[ [-75.1221, 39.57], [-75.58, 39.18], [-75.97, 39.86], [-75.1221, 39.57] ]], { "a": 11, "b": 122, "c": 44 }); const zValue = turf.planepoint(point, triangle); point.properties.zValue = zValue; //addToMap const addToMap = [triangle, point]; ``` Returns **[number][4]** the z-value for `interpolatedPoint` [1]: https://tools.ietf.org/html/rfc7946#section-3.1.1 [2]: https://tools.ietf.org/html/rfc7946#section-3.2 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/planepoint ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-planepoint/bench.ts ================================================ import Benchmark, { Event } from "benchmark"; import { polygon } from "@turf/helpers"; import { planepoint } from "./index.js"; const point = [1, 1]; const triangle = polygon( [ [ [0, 0, 0], [2, 0, 0], [1, 2, 2], [0, 0, 0], ], ], { a: 0, b: 0, c: 2 } ); /** * Benchmmark Results * * turf-planepoint x 14,905,445 ops/sec ±4.54% (75 runs sampled) */ const suite = new Benchmark.Suite("turf-planepoint"); suite .add("turf-planepoint", () => planepoint(point, triangle)) .on("cycle", (e: Event) => console.log(String(e.target))) .run(); ================================================ FILE: packages/turf-planepoint/index.ts ================================================ import { Feature, Polygon } from "geojson"; import { getCoord, getGeom } from "@turf/invariant"; import { Coord } from "@turf/helpers"; /** * Takes a triangular plane as a polygon and a point within that triangle, and * returns the z-value at that point. * * The Polygon should have properties `a`, `b`, and `c` * that define the values at its three corners. Alternatively, the z-values * of each triangle point can be provided by their respective 3rd coordinate * if their values are not provided as properties. * * @function * @param {Coord} point the Point for which a z-value will be calculated * @param {Feature} triangle a Polygon feature with three vertices * @returns {number} the z-value for `interpolatedPoint` * @example * const point = turf.point([-75.3221, 39.529]); * // "a", "b", and "c" values represent the values of the coordinates in order. * const triangle = turf.polygon([[ * [-75.1221, 39.57], * [-75.58, 39.18], * [-75.97, 39.86], * [-75.1221, 39.57] * ]], { * "a": 11, * "b": 122, * "c": 44 * }); * * const zValue = turf.planepoint(point, triangle); * point.properties.zValue = zValue; * * //addToMap * const addToMap = [triangle, point]; */ function planepoint( point: Coord, triangle: Feature | Polygon ): number { // Normalize input const coord = getCoord(point); const geom = getGeom(triangle); const coords = geom.coordinates; const outer = coords[0]; if (outer.length < 4) throw new Error("OuterRing of a Polygon must have 4 or more Positions."); const properties = (triangle.type === "Feature" && triangle.properties) || {}; const a = properties.a; const b = properties.b; const c = properties.c; // Planepoint const x = coord[0]; const y = coord[1]; const x1 = outer[0][0]; const y1 = outer[0][1]; const z1 = a !== undefined ? a : outer[0][2]; const x2 = outer[1][0]; const y2 = outer[1][1]; const z2 = b !== undefined ? b : outer[1][2]; const x3 = outer[2][0]; const y3 = outer[2][1]; const z3 = c !== undefined ? c : outer[2][2]; const z = (z3 * (x - x1) * (y - y2) + z1 * (x - x2) * (y - y3) + z2 * (x - x3) * (y - y1) - z2 * (x - x1) * (y - y3) - z3 * (x - x2) * (y - y1) - z1 * (x - x3) * (y - y2)) / ((x - x1) * (y - y2) + (x - x2) * (y - y3) + (x - x3) * (y - y1) - (x - x1) * (y - y3) - (x - x2) * (y - y1) - (x - x3) * (y - y2)); return z; } export { planepoint }; export default planepoint; ================================================ FILE: packages/turf-planepoint/package.json ================================================ { "name": "@turf/planepoint", "version": "7.3.4", "description": "Takes a triangular plane as a polygon and a point within that triangle, and returns the z-value at that point.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "geojson", "plane", "point", "interpolation" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-planepoint/test/in/triangle.geojson ================================================ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0, 0], [2, 0, 0], [1, 2, 2], [0, 0, 0] ] ] }, "properties": { "a": 0, "b": 0, "c": 2 } } ================================================ FILE: packages/turf-planepoint/test.ts ================================================ // http://math.stackexchange.com/questions/28043/finding-the-z-value-on-a-plane-with-x-y-values // http://stackoverflow.com/a/13916669/461015 import test from "tape"; import { polygon } from "@turf/helpers"; import { planepoint } from "./index.js"; test("turf-planepoint", (t) => { const point = [1, 1]; const triangleProps = polygon( [ [ [0, 0], [2, 0], [1, 2], [0, 0], ], ], { a: 0, b: 0, c: 2 } ); const triangleZ = polygon([ [ [0, 0, 0], [2, 0, 0], [1, 2, 2], [0, 0, 0], ], ]); t.equal(planepoint(point, triangleProps), 1, "properties"); t.equal(planepoint(point, triangleZ), 1, "z coordinates"); t.end(); }); ================================================ FILE: packages/turf-planepoint/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-planepoint/types.ts ================================================ import { point, polygon } from "@turf/helpers"; import { planepoint } from "./index.js"; const pt = point([1, 1]); const triangle = polygon([ [ [0, 0, 0], [2, 0, 0], [1, 2, 2], [0, 0, 0], ], ]); planepoint(pt, triangle); planepoint(pt.geometry.coordinates, triangle); planepoint(pt.geometry, triangle.geometry); ================================================ FILE: packages/turf-point-grid/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-point-grid/README.md ================================================ # @turf/point-grid ## pointGrid Creates a grid of points ### Parameters * `bbox` **[BBox][1]** extent of grid in \[minX, minY, maxX, maxY] order * `cellSide` **[number][2]** the distance between points * `options` **[Object][3]** Optional parameters (optional, default `{}`) * `options.units` **Units** the units of the cellSide value. Supports all valid Turf [Units][4] (optional, default `'kilometers'`) * `options.mask` **[Feature][5]<([Polygon][6] | [MultiPolygon][7])>?** if passed a Polygon or MultiPolygon, the grid Points will be created only inside it * `options.properties` **[Object][3]** passed to each point of the grid (optional, default `{}`) ### Examples ```javascript var extent = [-70.823364, -33.553984, -70.473175, -33.302986]; var cellSide = 3; var options = {units: 'miles'}; var grid = turf.pointGrid(extent, cellSide, options); //addToMap var addToMap = [grid]; ``` Returns **[FeatureCollection][8]<[Point][9]>** grid of points [1]: https://tools.ietf.org/html/rfc7946#section-5 [2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [4]: https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/README_UNITS.md [5]: https://tools.ietf.org/html/rfc7946#section-3.2 [6]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [7]: https://tools.ietf.org/html/rfc7946#section-3.1.7 [8]: https://tools.ietf.org/html/rfc7946#section-3.3 [9]: https://tools.ietf.org/html/rfc7946#section-3.1.2 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/point-grid ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-point-grid/bench.ts ================================================ import Benchmark from "benchmark"; import { polygon } from "@turf/helpers"; import { pointGrid as grid } from "./index.js"; var bbox = [-95, 30, -85, 40]; var mask = polygon([ [ [6.5, 44.6], [9.2, 44.8], [8.3, 46.4], [6.5, 44.6], ], ]); var highres = grid(bbox, 100, { units: "miles" }).features.length; var midres = grid(bbox, 10, { units: "miles" }).features.length; var lowres = grid(bbox, 1, { units: "miles" }).features.length; var masked = grid(mask, 1, { units: "miles", mask: mask }).features.length; var suite = new Benchmark.Suite("turf-square-grid"); /** * Benchmark Results * * highres -- 42 cells x 274,666 ops/sec ±1.96% (77 runs sampled) * midres -- 4200 cells x 2,725 ops/sec ±3.86% (73 runs sampled) * lowres -- 414508 cells x 2.09 ops/sec ±21.02% (10 runs sampled) * masked -- 7658 cells x 9,794 ops/sec ±2.08% (75 runs sampled) */ suite .add("highres -- " + highres + " cells", () => grid(bbox, 100, { units: "miles" }) ) .add("midres -- " + midres + " cells", () => grid(bbox, 10, { units: "miles" }) ) .add("lowres -- " + lowres + " cells", () => grid(bbox, 1, { units: "miles" }) ) .add("masked -- " + masked + " cells", () => grid(mask, 10, { units: "miles", mask: mask }) ) .on("cycle", (e) => console.log(String(e.target))) .run(); ================================================ FILE: packages/turf-point-grid/index.ts ================================================ import { BBox, Feature, Polygon, MultiPolygon, FeatureCollection, Point, GeoJsonProperties, } from "geojson"; import { booleanWithin as within } from "@turf/boolean-within"; import { distance } from "@turf/distance"; import { point, featureCollection, Units } from "@turf/helpers"; /** * Creates a grid of points * * @function * @param {BBox} bbox extent of grid in [minX, minY, maxX, maxY] order * @param {number} cellSide the distance between points * @param {Object} [options={}] Optional parameters * @param {Units} [options.units='kilometers'] the units of the cellSide value. Supports all valid Turf {@link https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/README_UNITS.md Units} * @param {Feature} [options.mask] if passed a Polygon or MultiPolygon, the grid Points will be created only inside it * @param {Object} [options.properties={}] passed to each point of the grid * @returns {FeatureCollection} grid of points * @example * var extent = [-70.823364, -33.553984, -70.473175, -33.302986]; * var cellSide = 3; * var options = {units: 'miles'}; * * var grid = turf.pointGrid(extent, cellSide, options); * * //addToMap * var addToMap = [grid]; */ function pointGrid

( bbox: BBox, cellSide: number, options: { units?: Units; mask?: Feature; properties?: P; } = {} ): FeatureCollection { // Default parameters if (options.mask && !options.units) options.units = "kilometers"; // Containers var results = []; // Typescript handles the Type Validation // if (cellSide === null || cellSide === undefined) throw new Error('cellSide is required'); // if (!isNumber(cellSide)) throw new Error('cellSide is invalid'); // if (!bbox) throw new Error('bbox is required'); // if (!Array.isArray(bbox)) throw new Error('bbox must be array'); // if (bbox.length !== 4) throw new Error('bbox must contain 4 numbers'); // if (mask && ['Polygon', 'MultiPolygon'].indexOf(getType(mask)) === -1) throw new Error('options.mask must be a (Multi)Polygon'); var west = bbox[0]; var south = bbox[1]; var east = bbox[2]; var north = bbox[3]; var xFraction = cellSide / distance([west, south], [east, south], options); var cellWidth = xFraction * (east - west); var yFraction = cellSide / distance([west, south], [west, north], options); var cellHeight = yFraction * (north - south); var bboxWidth = east - west; var bboxHeight = north - south; var columns = Math.floor(bboxWidth / cellWidth); var rows = Math.floor(bboxHeight / cellHeight); // adjust origin of the grid var deltaX = (bboxWidth - columns * cellWidth) / 2; var deltaY = (bboxHeight - rows * cellHeight) / 2; var currentX = west + deltaX; while (currentX <= east) { var currentY = south + deltaY; while (currentY <= north) { var cellPt = point([currentX, currentY], options.properties); if (options.mask) { if (within(cellPt, options.mask)) results.push(cellPt); } else { results.push(cellPt); } currentY += cellHeight; } currentX += cellWidth; } return featureCollection(results); } export { pointGrid }; export default pointGrid; ================================================ FILE: packages/turf-point-grid/package.json ================================================ { "name": "@turf/point-grid", "version": "7.3.4", "description": "Creates a grid of points within a bounding box.", "author": "Turf Authors", "contributors": [ "Stefano Borghi <@stebogit>", "Denis Carriere <@DenisCarriere>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "grid", "points", "geojson" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/bbox-polygon": "workspace:*", "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/boolean-within": "workspace:*", "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-point-grid/test/in/big-bbox.json ================================================ { "bbox": [-220.78125, -80.64703474739618, -29.53125, 78.34941069014629], "cellSide": 500, "units": "miles" } ================================================ FILE: packages/turf-point-grid/test/in/fiji-10-miles.json ================================================ { "bbox": [ -180.3460693359375, -17.16703442146408, -179.5770263671875, -16.48349760264812 ], "cellSide": 10, "units": "miles" } ================================================ FILE: packages/turf-point-grid/test/in/london-20-miles.json ================================================ { "bbox": [-0.6207275390625, 51.23784668914442, 0.439453125, 51.767839887322154], "cellSide": 20, "units": "miles" } ================================================ FILE: packages/turf-point-grid/test/in/piedemont-mask.json ================================================ { "bbox": [6.3775634765625, 44.05601169578525, 9.437255859375, 46.50595444552049], "cellSide": 12.5, "units": "miles", "mask": { "type": "Feature", "properties": { "stroke": "#00F", "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] ] ] } } } ================================================ FILE: packages/turf-point-grid/test/in/properties.json ================================================ { "bbox": [2.131519317626953, 41.37835427979543, 2.2264480590820312, 41.44388449101261], "properties": { "marker-color": "#0ff" }, "cellSide": 1, "mask": { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [2.223186492919922, 41.416856461155575], [2.1716880798339844, 41.44182560856202], [2.1636199951171875, 41.41608406639095], [2.1334075927734375, 41.407200866420744], [2.1845626831054683, 41.37977115211044], [2.223186492919922, 41.416856461155575] ] ] } } } ================================================ FILE: packages/turf-point-grid/test/in/resolute.json ================================================ { "bbox": [-95.877685546875, 74.46849062193377, -94.031982421875, 74.90226611990785], "cellSide": 12.5, "units": "miles" } ================================================ FILE: packages/turf-point-grid/test/out/big-bbox.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-199.504452, -77.132893] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-199.504452, -69.896314] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-199.504452, -62.659735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-199.504452, -55.423156] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-199.504452, -48.186577] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-199.504452, -40.949997] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-199.504452, -33.713418] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-199.504452, -26.476839] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-199.504452, -19.24026] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-199.504452, -12.003681] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-199.504452, -4.767102] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-199.504452, 2.469478] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-199.504452, 9.706057] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-199.504452, 16.942636] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-199.504452, 24.179215] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-199.504452, 31.415794] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-199.504452, 38.652373] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-199.504452, 45.888952] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-199.504452, 53.125532] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-199.504452, 60.362111] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-199.504452, 67.59869] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-199.504452, 74.835269] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-125.15625, -77.132893] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-125.15625, -69.896314] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-125.15625, -62.659735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-125.15625, -55.423156] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-125.15625, -48.186577] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-125.15625, -40.949997] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-125.15625, -33.713418] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-125.15625, -26.476839] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-125.15625, -19.24026] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-125.15625, -12.003681] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-125.15625, -4.767102] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-125.15625, 2.469478] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-125.15625, 9.706057] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-125.15625, 16.942636] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-125.15625, 24.179215] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-125.15625, 31.415794] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-125.15625, 38.652373] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-125.15625, 45.888952] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-125.15625, 53.125532] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-125.15625, 60.362111] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-125.15625, 67.59869] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-125.15625, 74.835269] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-50.808048, -77.132893] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-50.808048, -69.896314] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-50.808048, -62.659735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-50.808048, -55.423156] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-50.808048, -48.186577] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-50.808048, -40.949997] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-50.808048, -33.713418] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-50.808048, -26.476839] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-50.808048, -19.24026] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-50.808048, -12.003681] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-50.808048, -4.767102] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-50.808048, 2.469478] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-50.808048, 9.706057] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-50.808048, 16.942636] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-50.808048, 24.179215] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-50.808048, 31.415794] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-50.808048, 38.652373] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-50.808048, 45.888952] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-50.808048, 53.125532] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-50.808048, 60.362111] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-50.808048, 67.59869] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-50.808048, 74.835269] } }, { "type": "Feature", "bbox": [-220.78125, -80.64703474739618, -29.53125, 78.34941069014629], "properties": { "stroke": "#F00", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -80.64703474739618], [-29.53125, -80.64703474739618], [-29.53125, 78.34941069014629], [-220.78125, 78.34941069014629], [-220.78125, -80.64703474739618] ] ] } } ] } ================================================ FILE: packages/turf-point-grid/test/out/fiji-10-miles.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-180.340249, -17.114729] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-180.340249, -16.969998] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-180.340249, -16.825266] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-180.340249, -16.680534] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-180.340249, -16.535803] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-180.188768, -17.114729] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-180.188768, -16.969998] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-180.188768, -16.825266] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-180.188768, -16.680534] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-180.188768, -16.535803] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-180.037288, -17.114729] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-180.037288, -16.969998] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-180.037288, -16.825266] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-180.037288, -16.680534] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-180.037288, -16.535803] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-179.885808, -17.114729] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-179.885808, -16.969998] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-179.885808, -16.825266] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-179.885808, -16.680534] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-179.885808, -16.535803] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-179.734327, -17.114729] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-179.734327, -16.969998] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-179.734327, -16.825266] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-179.734327, -16.680534] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-179.734327, -16.535803] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-179.582847, -17.114729] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-179.582847, -16.969998] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-179.582847, -16.825266] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-179.582847, -16.680534] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-179.582847, -16.535803] } }, { "type": "Feature", "bbox": [ -180.3460693359375, -17.16703442146408, -179.5770263671875, -16.48349760264812 ], "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] ] ] } } ] } ================================================ FILE: packages/turf-point-grid/test/out/london-20-miles.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.552977, 51.358112] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.552977, 51.647575] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.090637, 51.358112] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.090637, 51.647575] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.371702, 51.358112] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.371702, 51.647575] } }, { "type": "Feature", "bbox": [-0.6207275390625, 51.23784668914442, 0.439453125, 51.767839887322154], "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] ] ] } } ] } ================================================ FILE: packages/turf-point-grid/test/out/piedemont-mask.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [6.900398, 44.466868] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [6.900398, 45.009611] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.152151, 44.285953] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.152151, 44.466868] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.152151, 44.647782] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.152151, 44.828697] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.152151, 45.009611] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.152151, 45.190526] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.403904, 44.285953] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.403904, 44.466868] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.403904, 44.647782] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.403904, 44.828697] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.403904, 45.009611] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.403904, 45.190526] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.403904, 45.37144] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.655657, 44.285953] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.655657, 44.466868] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.655657, 44.647782] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.655657, 44.828697] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.655657, 45.009611] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.655657, 45.190526] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.655657, 45.37144] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.655657, 45.552355] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.90741, 44.285953] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.90741, 44.466868] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.90741, 44.647782] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.90741, 44.828697] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.90741, 45.009611] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.90741, 45.190526] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.90741, 45.37144] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.90741, 45.552355] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.90741, 45.733269] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [7.90741, 45.914184] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.159163, 44.466868] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.159163, 44.647782] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.159163, 44.828697] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.159163, 45.009611] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.159163, 45.190526] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.159163, 45.37144] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.159163, 45.552355] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.159163, 45.733269] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.159163, 45.914184] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.159163, 46.095098] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.159163, 46.276013] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.410916, 44.647782] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.410916, 44.828697] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.410916, 45.009611] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.410916, 45.190526] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.410916, 45.37144] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.410916, 45.552355] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.410916, 45.733269] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.410916, 45.914184] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.410916, 46.095098] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.410916, 46.276013] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.410916, 46.456927] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.662669, 44.647782] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.662669, 44.828697] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.662669, 45.009611] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.662669, 45.37144] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.662669, 45.552355] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.662669, 46.095098] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.914422, 44.828697] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.914422, 45.009611] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [9.166174, 44.647782] } }, { "type": "Feature", "bbox": [6.3775634765625, 44.05601169578525, 9.437255859375, 46.50595444552049], "properties": { "stroke": "#F00", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [6.3775634765625, 44.05601169578525], [9.437255859375, 44.05601169578525], [9.437255859375, 46.50595444552049], [6.3775634765625, 46.50595444552049], [6.3775634765625, 44.05601169578525] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "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] ] ] } } ] } ================================================ FILE: packages/turf-point-grid/test/out/properties.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Point", "coordinates": [2.137036, 41.406623] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Point", "coordinates": [2.149021, 41.406623] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Point", "coordinates": [2.161006, 41.39763] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Point", "coordinates": [2.161006, 41.406623] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Point", "coordinates": [2.172991, 41.388636] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Point", "coordinates": [2.172991, 41.39763] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Point", "coordinates": [2.172991, 41.406623] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Point", "coordinates": [2.172991, 41.415616] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Point", "coordinates": [2.172991, 41.424609] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Point", "coordinates": [2.172991, 41.433602] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Point", "coordinates": [2.184976, 41.388636] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Point", "coordinates": [2.184976, 41.39763] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Point", "coordinates": [2.184976, 41.406623] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Point", "coordinates": [2.184976, 41.415616] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Point", "coordinates": [2.184976, 41.424609] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Point", "coordinates": [2.184976, 41.433602] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Point", "coordinates": [2.196961, 41.39763] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Point", "coordinates": [2.196961, 41.406623] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Point", "coordinates": [2.196961, 41.415616] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Point", "coordinates": [2.196961, 41.424609] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Point", "coordinates": [2.208947, 41.406623] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Point", "coordinates": [2.208947, 41.415616] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Point", "coordinates": [2.220932, 41.415616] } }, { "type": "Feature", "bbox": [ 2.131519317626953, 41.37835427979543, 2.2264480590820312, 41.44388449101261 ], "properties": { "stroke": "#F00", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.131519317626953, 41.37835427979543], [2.2264480590820312, 41.37835427979543], [2.2264480590820312, 41.44388449101261], [2.131519317626953, 41.44388449101261], [2.131519317626953, 41.37835427979543] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.223186492919922, 41.416856461155575], [2.1716880798339844, 41.44182560856202], [2.1636199951171875, 41.41608406639095], [2.1334075927734375, 41.407200866420744], [2.1845626831054683, 41.37977115211044], [2.223186492919922, 41.416856461155575] ] ] } } ] } ================================================ FILE: packages/turf-point-grid/test/out/resolute.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-95.630499, 74.504464] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-95.630499, 74.685378] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-95.630499, 74.866293] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-94.954834, 74.504464] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-94.954834, 74.685378] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-94.954834, 74.866293] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-94.279169, 74.504464] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-94.279169, 74.685378] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-94.279169, 74.866293] } }, { "type": "Feature", "bbox": [-95.877685546875, 74.46849062193377, -94.031982421875, 74.90226611990785], "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] ] ] } } ] } ================================================ FILE: packages/turf-point-grid/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { bboxPolygon as bboxPoly } from "@turf/bbox-polygon"; import { truncate } from "@turf/truncate"; import { pointGrid } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; let fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, json: loadJsonFileSync(directories.in + filename), }; }); test("turf-point-grid", (t) => { for (const { name, json } of fixtures) { const { bbox, cellSide } = json; const options = json; const result = truncate(pointGrid(bbox, cellSide, options)); // Add styled GeoJSON to the result const poly = bboxPoly(bbox); poly.properties = { stroke: "#F00", "stroke-width": 6, "fill-opacity": 0, }; result.features.push(poly); if (options.mask) { options.mask.properties = { stroke: "#00F", "stroke-width": 6, "fill-opacity": 0, }; result.features.push(options.mask); } if (process.env.REGEN) writeJsonFileSync(directories.out + name + ".geojson", result); t.deepEqual( result, loadJsonFileSync(directories.out + name + ".geojson"), name ); } t.end(); }); test("point-grid -- #1177", (t) => { const bbox = [0, 0, 1, 1]; const mask = bboxPoly([0.2, 0.2, 0.8, 0.8]); let options = { mask: mask }; t.doesNotThrow(() => pointGrid(bbox, 1, options)); t.equal(options.units, "kilometers"); let options2 = { mask: mask, units: "miles" }; t.doesNotThrow(() => pointGrid(bbox, 1, options2)); t.equal(options2.units, "miles"); t.end(); }); ================================================ FILE: packages/turf-point-grid/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-point-grid/types.ts ================================================ import { BBox } from "geojson"; import { polygon } from "@turf/helpers"; import { pointGrid } from "./index.js"; const cellSide = 50; const bbox: BBox = [-95, 30, -85, 40]; const poly = polygon([ [ [20, 30], [10, 10], [20, 20], [20, 30], ], ]); pointGrid(bbox, cellSide); pointGrid(bbox, cellSide, { units: "miles" }); pointGrid(bbox, cellSide, { units: "miles", mask: poly }); pointGrid(bbox, cellSide, { units: "miles", mask: poly, properties: { foo: "bar" }, }); ================================================ FILE: packages/turf-point-on-feature/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-point-on-feature/README.md ================================================ # @turf/point-on-feature ## pointOnFeature Takes a Feature or FeatureCollection and returns a [Point][1] guaranteed to be on the surface of the feature. * Given a [Polygon][2], the point will be in the area of the polygon * Given a [LineString][3], the point will be along the string * Given a [Point][1], the point will the same as the input ### Parameters * `geojson` **[GeoJSON][4]** any Feature or FeatureCollection ### Examples ```javascript var polygon = turf.polygon([[ [116, -36], [131, -32], [146, -43], [155, -25], [133, -9], [111, -22], [116, -36] ]]); var pointOnPolygon = turf.pointOnFeature(polygon); //addToMap var addToMap = [polygon, pointOnPolygon]; ``` Returns **[Feature][5]<[Point][1]>** a point on the surface of `input` [1]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [4]: https://tools.ietf.org/html/rfc7946#section-3 [5]: https://tools.ietf.org/html/rfc7946#section-3.2 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/point-on-feature ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-point-on-feature/bench.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import { glob } from "glob"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { pointOnFeature } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); /** * Benchmark Results * * lines x 46,944 ops/sec ±1.16% (86 runs sampled) * multiline x 43,534 ops/sec ±2.47% (86 runs sampled) * multipoint x 151,733 ops/sec ±1.36% (88 runs sampled) * multipolygon x 52,131 ops/sec ±1.28% (88 runs sampled) * polygon-in-center x 492,494 ops/sec ±1.12% (86 runs sampled) * polygons x 31,270 ops/sec ±1.41% (88 runs sampled) */ const suite = new Benchmark.Suite("turf-point-on-feature"); glob.sync(path.join(__dirname, "test", "in", "*.json")).forEach((filepath) => { const { name } = path.parse(filepath); const geojson = loadJsonFileSync(filepath); suite.add(name, () => pointOnFeature(geojson)); }); suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-point-on-feature/index.ts ================================================ import type { Feature, Point } from "geojson"; import type { AllGeoJSON } from "@turf/helpers"; import { explode } from "@turf/explode"; import { center as centroid } from "@turf/center"; import { nearestPoint } from "@turf/nearest-point"; import { booleanPointInPolygon } from "@turf/boolean-point-in-polygon"; import { featureCollection, feature, point } from "@turf/helpers"; /** * Takes a Feature or FeatureCollection and returns a {@link Point} guaranteed to be on the surface of the feature. * * * Given a {@link Polygon}, the point will be in the area of the polygon * * Given a {@link LineString}, the point will be along the string * * Given a {@link Point}, the point will the same as the input * * @function * @param {GeoJSON} geojson any Feature or FeatureCollection * @returns {Feature} a point on the surface of `input` * @example * var polygon = turf.polygon([[ * [116, -36], * [131, -32], * [146, -43], * [155, -25], * [133, -9], * [111, -22], * [116, -36] * ]]); * * var pointOnPolygon = turf.pointOnFeature(polygon); * * //addToMap * var addToMap = [polygon, pointOnPolygon]; */ function pointOnFeature(geojson: AllGeoJSON): Feature { // normalize const fc = normalize(geojson); // get centroid const cent = centroid(fc); // check to see if centroid is on surface let onSurface = false; let i = 0; while (!onSurface && i < fc.features.length) { const geom = fc.features[i].geometry; let x, y, x1, y1, x2, y2; let onLine = false; if (geom.type === "Point") { if ( cent.geometry.coordinates[0] === geom.coordinates[0] && cent.geometry.coordinates[1] === geom.coordinates[1] ) { onSurface = true; } } else if (geom.type === "MultiPoint") { let onMultiPoint = false; let k = 0; while (!onMultiPoint && k < geom.coordinates.length) { if ( cent.geometry.coordinates[0] === geom.coordinates[k][0] && cent.geometry.coordinates[1] === geom.coordinates[k][1] ) { onSurface = true; onMultiPoint = true; } k++; } } else if (geom.type === "LineString") { let k = 0; while (!onLine && k < geom.coordinates.length - 1) { x = cent.geometry.coordinates[0]; y = cent.geometry.coordinates[1]; x1 = geom.coordinates[k][0]; y1 = geom.coordinates[k][1]; x2 = geom.coordinates[k + 1][0]; y2 = geom.coordinates[k + 1][1]; if (pointOnSegment(x, y, x1, y1, x2, y2)) { onLine = true; onSurface = true; } k++; } } else if (geom.type === "MultiLineString") { let j = 0; while (j < geom.coordinates.length) { onLine = false; let k = 0; const line = geom.coordinates[j]; while (!onLine && k < line.length - 1) { x = cent.geometry.coordinates[0]; y = cent.geometry.coordinates[1]; x1 = line[k][0]; y1 = line[k][1]; x2 = line[k + 1][0]; y2 = line[k + 1][1]; if (pointOnSegment(x, y, x1, y1, x2, y2)) { onLine = true; onSurface = true; } k++; } j++; } } else if (geom.type === "Polygon" || geom.type === "MultiPolygon") { if (booleanPointInPolygon(cent, geom)) { onSurface = true; } } i++; } if (onSurface) { return cent; } else { const vertices = featureCollection([]); for (let f = 0; f < fc.features.length; f++) { vertices.features = vertices.features.concat( explode(fc.features[f]).features ); } // Remove distanceToPoint properties from nearestPoint() return point(nearestPoint(cent, vertices).geometry.coordinates); } } /** * Normalizes any GeoJSON to a FeatureCollection * * @private * @name normalize * @param {GeoJSON} geojson Any GeoJSON * @returns {FeatureCollection} FeatureCollection */ function normalize(geojson: AllGeoJSON) { if (geojson.type !== "FeatureCollection") { if (geojson.type !== "Feature") { return featureCollection([feature(geojson)]); } return featureCollection([geojson]); } return geojson; } function pointOnSegment( x: number, y: number, x1: number, y1: number, x2: number, y2: number ) { const ab = Math.sqrt((x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1)); const ap = Math.sqrt((x - x1) * (x - x1) + (y - y1) * (y - y1)); const pb = Math.sqrt((x2 - x) * (x2 - x) + (y2 - y) * (y2 - y)); return ab === ap + pb; } export { pointOnFeature }; export default pointOnFeature; ================================================ FILE: packages/turf-point-on-feature/package.json ================================================ { "name": "@turf/point-on-feature", "version": "7.3.4", "description": "Takes a Feature or FeatureCollection and returns a Point guaranteed to be on the surface of the feature.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "centroid", "geojson", "point", "surface", "polygon" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@turf/meta": "workspace:*", "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/boolean-point-in-polygon": "workspace:*", "@turf/center": "workspace:*", "@turf/explode": "workspace:*", "@turf/helpers": "workspace:*", "@turf/nearest-point": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-point-on-feature/test/in/lines.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [24.08203125, -16.59408141271846], [25.059814453125, -14.519780046326073] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [28.410644531249996, -14.955399325942619], [28.7841796875, -15.845104902273452], [27.6416015625, -16.13026201203474], [27.432861328125, -17.518344187852218] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [26.652832031249996, -13.485789593908478], [26.268310546875, -14.891704754215462], [25.86181640625, -14.88108715909066], [25.894775390625, -15.421910399947057], [26.323242187499996, -15.5701278526594], [26.224365234375, -16.066928957450106], [26.510009765625, -16.583552354072005], [25.927734374999996, -16.836089974560213], [25.147705078125, -17.245744208007117], [26.34521484375, -18.271086109608863], [25.33447265625, -18.531700307384043] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [24.466552734375, -14.211138758545781], [25.389404296875, -13.710035342476669], [25.609130859375, -13.944729974920154], [26.3671875, -13.090179355733726] ] } } ] } ================================================ FILE: packages/turf-point-on-feature/test/in/multiline.json ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [92.08740234375, 50.708634400828224], [93.0322265625, 50.84757295365389], [94.32861328125, 50.499452103967734], [95.25146484374999, 50.0077390146369], [97.470703125, 49.908787000867136], [98.4375, 50.51342652633956], [98.10791015625, 51.467696956223385], [99.5361328125, 52.07950600379697], [101.14013671875, 51.645294049305406], [102.37060546875, 51.22064743038333], [102.37060546875, 50.764259357116465], [103.18359375, 50.30337575356313], [104.56787109374999, 50.24720490139267], [105.84228515625, 50.54136296522161], [106.89697265625, 50.2612538275847] ], [ [97.294921875, 53.605544099237974], [99.4482421875, 54.213861000644926], [99.73388671874999, 54.04648911335576], [100.8984375, 53.969012350740314], [101.29394531249999, 53.69670647530323] ], [ [95.0537109375, 47.68018294648414], [96.416015625, 47.502358951968574], [97.05322265625, 46.84516443029276], [98.41552734375, 47.76886840424207], [98.89892578125, 47.45780853075031] ] ] } } ================================================ FILE: packages/turf-point-on-feature/test/in/multipoint.json ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [63.6328125, 57.7041472343419], [42.1875, 52.482780222078226], [71.015625, 29.22889003019423], [48.1640625, 37.71859032558816], [73.47656249999999, 49.61070993807422] ] } } ================================================ FILE: packages/turf-point-on-feature/test/in/multipolygon.json ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [12.041015625, 36.66841891894786], [12.041015625, 39.16414104768742], [15.161132812500002, 39.16414104768742], [15.161132812500002, 36.66841891894786], [12.041015625, 36.66841891894786] ] ], [ [ [15.732421875, 31.42866311735861], [15.732421875, 34.92197103616377], [19.775390625, 34.92197103616377], [19.775390625, 31.42866311735861], [15.732421875, 31.42866311735861] ] ], [ [ [18.3251953125, 37.68382032669382], [18.3251953125, 42.65012181368025], [22.0166015625, 42.65012181368025], [22.0166015625, 37.68382032669382], [18.3251953125, 37.68382032669382] ] ] ] } } ================================================ FILE: packages/turf-point-on-feature/test/in/polygon-in-center.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [13.270797729492186, 52.42042920678164], [13.270797729492186, 52.573846203920276], [13.5186767578125, 52.573846203920276], [13.5186767578125, 52.42042920678164], [13.270797729492186, 52.42042920678164] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [13.526229858398438, 52.58177420312145], [13.526229858398438, 52.61013634893439], [13.572921752929686, 52.61013634893439], [13.572921752929686, 52.58177420312145], [13.526229858398438, 52.58177420312145] ] ] } } ] } ================================================ FILE: packages/turf-point-on-feature/test/in/polygons.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80.4638671875, 38.496593518947556], [-81.05712890625, 38.22091976683121], [-80.518798828125, 37.640334898059486], [-78.81591796875, 36.730079507078415], [-78.167724609375, 37.01132594307015], [-78.673095703125, 37.55328764595765], [-78.94775390625, 37.49229399862877], [-79.112548828125, 37.68382032669382], [-79.51904296874999, 37.75334401310656], [-79.090576171875, 38.039438891821746], [-79.47509765625, 38.1172716583054], [-79.969482421875, 38.315801006824984], [-79.683837890625, 38.47939467327645], [-79.793701171875, 38.62545397209084], [-80.09033203125, 38.71123253895224], [-80.33203125, 39.104488809440475], [-80.4638671875, 38.496593518947556] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.17919921875, 41.00477542222949], [-77.091064453125, 40.97160353279909], [-77.28881835937499, 40.27952566881291], [-77.080078125, 40.271143686084194], [-77.003173828125, 40.136890695345905], [-76.7724609375, 40.195659093364654], [-76.86035156249999, 39.93501296038254], [-76.66259765625, 40.0360265298117], [-76.37695312499999, 39.614152077002636], [-75.992431640625, 39.614152077002636], [-75.76171875, 39.42770738465604], [-75.465087890625, 39.40224434029275], [-75.377197265625, 39.68182601089365], [-75.5419921875, 40.455307212131494], [-76.17919921875, 40.55554790286311], [-75.750732421875, 40.697299008636755], [-76.1572265625, 40.72228267283148], [-75.992431640625, 40.94671366508002], [-76.17919921875, 41.00477542222949] ] ] } } ] } ================================================ FILE: packages/turf-point-on-feature/test/out/lines.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [24.08203125, -16.59408141271846], [25.059814453125, -14.519780046326073] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [28.410644531249996, -14.955399325942619], [28.7841796875, -15.845104902273452], [27.6416015625, -16.13026201203474], [27.432861328125, -17.518344187852218] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [26.652832031249996, -13.485789593908478], [26.268310546875, -14.891704754215462], [25.86181640625, -14.88108715909066], [25.894775390625, -15.421910399947057], [26.323242187499996, -15.5701278526594], [26.224365234375, -16.066928957450106], [26.510009765625, -16.583552354072005], [25.927734374999996, -16.836089974560213], [25.147705078125, -17.245744208007117], [26.34521484375, -18.271086109608863], [25.33447265625, -18.531700307384043] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [24.466552734375, -14.211138758545781], [25.389404296875, -13.710035342476669], [25.609130859375, -13.944729974920154], [26.3671875, -13.090179355733726] ] } }, { "type": "Feature", "properties": { "marker-color": "#F00", "marker-style": "star" }, "geometry": { "type": "Point", "coordinates": [26.323242, -15.570128] } } ] } ================================================ FILE: packages/turf-point-on-feature/test/out/multiline.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [92.08740234375, 50.708634400828224], [93.0322265625, 50.84757295365389], [94.32861328125, 50.499452103967734], [95.25146484374999, 50.0077390146369], [97.470703125, 49.908787000867136], [98.4375, 50.51342652633956], [98.10791015625, 51.467696956223385], [99.5361328125, 52.07950600379697], [101.14013671875, 51.645294049305406], [102.37060546875, 51.22064743038333], [102.37060546875, 50.764259357116465], [103.18359375, 50.30337575356313], [104.56787109374999, 50.24720490139267], [105.84228515625, 50.54136296522161], [106.89697265625, 50.2612538275847] ], [ [97.294921875, 53.605544099237974], [99.4482421875, 54.213861000644926], [99.73388671874999, 54.04648911335576], [100.8984375, 53.969012350740314], [101.29394531249999, 53.69670647530323] ], [ [95.0537109375, 47.68018294648414], [96.416015625, 47.502358951968574], [97.05322265625, 46.84516443029276], [98.41552734375, 47.76886840424207], [98.89892578125, 47.45780853075031] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#F00", "marker-style": "star" }, "geometry": { "type": "Point", "coordinates": [98.4375, 50.513427] } } ] } ================================================ FILE: packages/turf-point-on-feature/test/out/multipoint.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [63.6328125, 57.7041472343419], [42.1875, 52.482780222078226], [71.015625, 29.22889003019423], [48.1640625, 37.71859032558816], [73.47656249999999, 49.61070993807422] ] } }, { "type": "Feature", "properties": { "marker-color": "#F00", "marker-style": "star" }, "geometry": { "type": "Point", "coordinates": [48.164063, 37.71859] } } ] } ================================================ FILE: packages/turf-point-on-feature/test/out/multipolygon.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [12.041015625, 36.66841891894786], [12.041015625, 39.16414104768742], [15.161132812500002, 39.16414104768742], [15.161132812500002, 36.66841891894786], [12.041015625, 36.66841891894786] ] ], [ [ [15.732421875, 31.42866311735861], [15.732421875, 34.92197103616377], [19.775390625, 34.92197103616377], [19.775390625, 31.42866311735861], [15.732421875, 31.42866311735861] ] ], [ [ [18.3251953125, 37.68382032669382], [18.3251953125, 42.65012181368025], [22.0166015625, 42.65012181368025], [22.0166015625, 37.68382032669382], [18.3251953125, 37.68382032669382] ] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#F00", "marker-style": "star" }, "geometry": { "type": "Point", "coordinates": [18.325195, 37.68382] } } ] } ================================================ FILE: packages/turf-point-on-feature/test/out/polygon-in-center.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [13.270797729492186, 52.42042920678164], [13.270797729492186, 52.573846203920276], [13.5186767578125, 52.573846203920276], [13.5186767578125, 52.42042920678164], [13.270797729492186, 52.42042920678164] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [13.526229858398438, 52.58177420312145], [13.526229858398438, 52.61013634893439], [13.572921752929686, 52.61013634893439], [13.572921752929686, 52.58177420312145], [13.526229858398438, 52.58177420312145] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#F00", "marker-style": "star" }, "geometry": { "type": "Point", "coordinates": [13.42186, 52.515283] } } ] } ================================================ FILE: packages/turf-point-on-feature/test/out/polygons.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80.4638671875, 38.496593518947556], [-81.05712890625, 38.22091976683121], [-80.518798828125, 37.640334898059486], [-78.81591796875, 36.730079507078415], [-78.167724609375, 37.01132594307015], [-78.673095703125, 37.55328764595765], [-78.94775390625, 37.49229399862877], [-79.112548828125, 37.68382032669382], [-79.51904296874999, 37.75334401310656], [-79.090576171875, 38.039438891821746], [-79.47509765625, 38.1172716583054], [-79.969482421875, 38.315801006824984], [-79.683837890625, 38.47939467327645], [-79.793701171875, 38.62545397209084], [-80.09033203125, 38.71123253895224], [-80.33203125, 39.104488809440475], [-80.4638671875, 38.496593518947556] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-76.17919921875, 41.00477542222949], [-77.091064453125, 40.97160353279909], [-77.28881835937499, 40.27952566881291], [-77.080078125, 40.271143686084194], [-77.003173828125, 40.136890695345905], [-76.7724609375, 40.195659093364654], [-76.86035156249999, 39.93501296038254], [-76.66259765625, 40.0360265298117], [-76.37695312499999, 39.614152077002636], [-75.992431640625, 39.614152077002636], [-75.76171875, 39.42770738465604], [-75.465087890625, 39.40224434029275], [-75.377197265625, 39.68182601089365], [-75.5419921875, 40.455307212131494], [-76.17919921875, 40.55554790286311], [-75.750732421875, 40.697299008636755], [-76.1572265625, 40.72228267283148], [-75.992431640625, 40.94671366508002], [-76.17919921875, 41.00477542222949] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#F00", "marker-style": "star" }, "geometry": { "type": "Point", "coordinates": [-79.090576, 38.039439] } } ] } ================================================ FILE: packages/turf-point-on-feature/test.ts ================================================ import test from "tape"; import { glob } from "glob"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { truncate } from "@turf/truncate"; import { featureEach } from "@turf/meta"; import { featureCollection } from "@turf/helpers"; import { pointOnFeature } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); test("turf-point-on-feature", (t) => { glob .sync(path.join(__dirname, "test", "in", "*.json")) .forEach((filepath) => { const { name } = path.parse(filepath); const geojson = loadJsonFileSync(filepath); const ptOnFeature = pointOnFeature(geojson); // Style Results const results = featureCollection([]); featureEach(geojson, (feature) => results.features.push(feature)); ptOnFeature.properties["marker-color"] = "#F00"; ptOnFeature.properties["marker-style"] = "star"; results.features.push(truncate(ptOnFeature)); // Save Tests const out = filepath.replace( path.join("test", "in"), path.join("test", "out") ); if (process.env.REGEN) writeJsonFileSync(out, results); t.deepEqual(results, loadJsonFileSync(out), name); }); t.end(); }); ================================================ FILE: packages/turf-point-on-feature/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-point-to-line-distance/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-point-to-line-distance/README.md ================================================ # @turf/point-to-line-distance ## pointToLineDistance Calculates the distance between a given point and the nearest point on a line. Sometimes referred to as the cross track distance. ### Parameters * `pt` **([Feature][1]<[Point][2]> | [Array][3]<[number][4]>)** Feature or Geometry * `line` **[Feature][1]<[LineString][5]>** GeoJSON Feature or Geometry * `options` **[Object][6]** Optional parameters (optional, default `{}`) * `options.units` **Units** Supports all valid Turf [Units][7] (optional, default `"kilometers"`) * `options.method` **[string][8]** whether to calculate the distance based on geodesic (spheroid) or planar (flat) method. Valid options are 'geodesic' or 'planar'. (optional, default `"geodesic"`) ### Examples ```javascript var pt = turf.point([0, 0]); var line = turf.lineString([[1, 1],[-1, 1]]); var distance = turf.pointToLineDistance(pt, line, {units: 'miles'}); //=69.11854715938406 ``` Returns **[number][4]** distance between point and line [1]: https://tools.ietf.org/html/rfc7946#section-3.2 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [5]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [7]: https://turfjs.org/docs/api/types/Units [8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/point-to-line-distance ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-point-to-line-distance/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { pointToLineDistance } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); /** * Single Process Benchmark * * city-line1: 2.922ms * city-line2: 0.113ms * city-segment-inside1: 0.042ms * city-segment-inside2: 0.034ms * city-segment-inside3: 0.032ms * city-segment-obtuse1: 0.030ms * city-segment-obtuse2: 0.029ms * city-segment-projected1: 0.030ms * city-segment-projected2: 0.029ms * issue-1156: 0.046ms * line-fiji: 0.107ms * line-resolute-bay: 0.059ms * line1: 0.079ms * line2: 0.115ms * segment-fiji: 0.050ms * segment1: 0.069ms * segment1a: 0.037ms * segment2: 0.071ms * segment3: 0.043ms * segment4: 0.035ms */ for (const { name, geojson } of fixtures) { const [point, line] = geojson.features; let { units } = geojson.properties || {}; if (!units) units = "kilometers"; console.time(name); pointToLineDistance(point, line, { units: units }); console.timeEnd(name); } /** * Benchmark Results * * city-line1 x 241,682 ops/sec ±1.01% (84 runs sampled) * city-line2 x 343,906 ops/sec ±1.01% (82 runs sampled) * city-segment-inside1 x 605,854 ops/sec ±1.59% (82 runs sampled) * city-segment-inside2 x 662,380 ops/sec ±1.45% (84 runs sampled) * city-segment-inside3 x 635,562 ops/sec ±2.29% (78 runs sampled) * city-segment-obtuse1 x 749,977 ops/sec ±1.27% (86 runs sampled) * city-segment-obtuse2 x 744,285 ops/sec ±1.54% (88 runs sampled) * city-segment-projected1 x 765,848 ops/sec ±0.64% (87 runs sampled) * city-segment-projected2 x 737,822 ops/sec ±1.65% (85 runs sampled) * issue-1156 x 443,056 ops/sec ±1.44% (83 runs sampled) * line-fiji x 126,628 ops/sec ±1.34% (87 runs sampled) * line-resolute-bay x 537,213 ops/sec ±1.44% (90 runs sampled) * line1 x 182,059 ops/sec ±0.83% (85 runs sampled) * line2 x 404,766 ops/sec ±2.15% (87 runs sampled) * segment-fiji x 634,658 ops/sec ±1.58% (85 runs sampled) * segment1 x 582,624 ops/sec ±2.53% (80 runs sampled) * segment1a x 600,014 ops/sec ±1.08% (82 runs sampled) * segment2 x 595,434 ops/sec ±2.17% (81 runs sampled) * segment3 x 692,171 ops/sec ±1.16% (82 runs sampled) * segment4 x 681,063 ops/sec ±0.95% (86 runs sampled) */ let totalTime = 0.0; const suite = new Benchmark.Suite("turf-point-to-line-distance"); for (const { name, geojson } of fixtures) { const [point, line] = geojson.features; let { units } = geojson.properties || {}; if (!units) units = "kilometers"; suite.add(name, () => pointToLineDistance(point, line, { units: units }), { onComplete: (e: Event) => (totalTime = totalTime += e.target.times?.elapsed), }); } suite .on("cycle", (e: Event) => console.log(String(e.target))) .on("complete", () => console.log(`completed in ${totalTime.toFixed(2)} seconds`) ) .run(); ================================================ FILE: packages/turf-point-to-line-distance/index.ts ================================================ // Taken from http://geomalgorithms.com/a02-_lines.html import { Feature, LineString } from "geojson"; import { convertLength, Coord, feature, lineString, point, Units, } from "@turf/helpers"; import { nearestPointOnLine } from "@turf/nearest-point-on-line"; import { featureOf } from "@turf/invariant"; import { segmentEach } from "@turf/meta"; import { rhumbDistance } from "@turf/rhumb-distance"; /** * Calculates the distance between a given point and the nearest point on a * line. Sometimes referred to as the cross track distance. * * @function * @param {Feature|Array} pt Feature or Geometry * @param {Feature} line GeoJSON Feature or Geometry * @param {Object} [options={}] Optional parameters * @param {Units} [options.units="kilometers"] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @param {string} [options.method="geodesic"] whether to calculate the distance based on geodesic (spheroid) or * planar (flat) method. Valid options are 'geodesic' or 'planar'. * @returns {number} distance between point and line * @example * var pt = turf.point([0, 0]); * var line = turf.lineString([[1, 1],[-1, 1]]); * * var distance = turf.pointToLineDistance(pt, line, {units: 'miles'}); * //=69.11854715938406 */ function pointToLineDistance( pt: Coord, line: Feature | LineString, options: { units?: Units; method?: "geodesic" | "planar"; } = {} ): number { // Optional parameters const method = options.method ?? "geodesic"; const units = options.units ?? "kilometers"; // validation if (!pt) { throw new Error("pt is required"); } if (Array.isArray(pt)) { pt = point(pt); } else if (pt.type === "Point") { pt = feature(pt); } else { featureOf(pt, "Point", "point"); } if (!line) { throw new Error("line is required"); } if (Array.isArray(line)) { line = lineString(line); } else if (line.type === "LineString") { line = feature(line); } else { featureOf(line, "LineString", "line"); } let distance = Infinity; const p = pt.geometry.coordinates; segmentEach(line, (segment) => { if (segment) { const a = segment.geometry.coordinates[0]; const b = segment.geometry.coordinates[1]; const d = distanceToSegment(p, a, b, { method }); if (d < distance) { distance = d; } } }); return convertLength(distance, "degrees", units); } /** * Returns the distance between a point P on a segment AB. * * @private * @param {Array} p external point * @param {Array} a first segment point * @param {Array} b second segment point * @param {Object} [options={}] Optional parameters * @returns {number} distance */ function distanceToSegment( p: number[], // point to measure from a: number[], // start point of the segment to measure to b: number[], // end point of the segment to measure to options: { method: "geodesic" | "planar"; } ) { // Internally just use degrees, and then convert to the user's requested units // in the calling function. if (options.method === "geodesic") { // Use nearestPointOnLine to properly calculate distances on a spherical // Earth. const nearest = nearestPointOnLine(lineString([a, b]).geometry, p, { units: "degrees", }); return nearest.properties.pointDistance; } // Perform scalar calculations instead using rhumb lines. const v = [b[0] - a[0], b[1] - a[1]]; const w = [p[0] - a[0], p[1] - a[1]]; const c1 = dot(w, v); if (c1 <= 0) { return rhumbDistance(p, a, { units: "degrees" }); } const c2 = dot(v, v); if (c2 <= c1) { return rhumbDistance(p, b, { units: "degrees" }); } const b2 = c1 / c2; const Pb = [a[0] + b2 * v[0], a[1] + b2 * v[1]]; return rhumbDistance(p, Pb, { units: "degrees" }); } function dot(u: number[], v: number[]) { return u[0] * v[0] + u[1] * v[1]; } export { pointToLineDistance }; export default pointToLineDistance; ================================================ FILE: packages/turf-point-to-line-distance/package.json ================================================ { "name": "@turf/point-to-line-distance", "version": "7.3.4", "description": "Calculates the distance between a given point and the nearest point on a line.", "author": "Turf Authors", "contributors": [ "Stefano Borghi <@stebogit>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "point-to-line-distance", "distance" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/circle": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/bearing": "workspace:*", "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@turf/nearest-point-on-line": "workspace:*", "@turf/projection": "workspace:*", "@turf/rhumb-bearing": "workspace:*", "@turf/rhumb-distance": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-point-to-line-distance/test/in/city-line1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3767967224121093, 39.4689324766527] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-0.40567874908447266, 39.47386857192064], [-0.3963661193847656, 39.47578991028725], [-0.38035869598388666, 39.482216070269594], [-0.3776121139526367, 39.48195108571802], [-0.3689002990722656, 39.47641930269614], [-0.35945892333984375, 39.46349905420083], [-0.35782814025878906, 39.45982131412374], [-0.3458118438720703, 39.453890134716616] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/in/city-line2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-3.592529296875, 40.573804799488194] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-3.8884735107421875, 40.420292132688964], [-3.736724853515625, 40.276906410822825], [-3.5025787353515625, 40.422383097039905], [-3.5018920898437496, 40.516409213865586], [-3.668060302734375, 40.559199680578075] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/in/city-segment-inside1.geojson ================================================ { "type": "FeatureCollection", "properties": { "units": "miles" }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-6.0047149658203125, 37.365109304227246] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-6.0150146484375, 37.38011551844836], [-5.931415557861328, 37.39702801486944] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/in/city-segment-inside2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3767967224121093, 39.4689324766527] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-0.3689861297607422, 39.47648555419739], [-0.3595447540283203, 39.46363158174706] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/in/city-segment-inside3.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-3.592529296875, 40.573804799488194] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-3.503265380859375, 40.51693121343741], [-3.6694335937500004, 40.560764667193595] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/in/city-segment-obtuse1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-6.030292510986328, 37.35746862390723] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-6.0150146484375, 37.38011551844836], [-5.931415557861328, 37.39702801486944] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/in/city-segment-obtuse2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-6.025829315185546, 37.40902811697313] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-6.0150146484375, 37.38011551844836], [-5.932445526123047, 37.36770150115655] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/in/city-segment-projected1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-5.914421081542969, 37.426343057829385] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-6.0150146484375, 37.38011551844836], [-5.931415557861328, 37.39702801486944] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/in/city-segment-projected2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-5.926437377929687, 37.32785364060672] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-6.0150146484375, 37.38011551844836], [-5.9326171875, 37.364972870329154] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/in/issue-1156.geojson ================================================ { "type": "FeatureCollection", "properties": { "units": "meters", "mercator": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [11.028348, 41] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [10.983200073242188, 40.97075154073346], [11.02834701538086, 40.98372150040732], [11.02508544921875, 41.00716631272605], [10.994186401367188, 41.01947819666632] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/in/line-fiji.geojson ================================================ { "type": "FeatureCollection", "properties": { "mercator": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-180.46142578124997, -17.481671724450752] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-183.131103515625, -17.675427818339383], [-181.50512695312497, -16.04581345375217], [-177.802734375, -16.615137799987075], [-179.47265625, -17.947380678685203], [-179.60449218749997, -16.383391123608387], [-181.087646484375, -17.70682812401954], [-179.93408203125, -15.432500881886043], [-180.010986328125, -18.458768120015126], [-181.834716796875, -17.832374329567507], [-180.15380859375, -15.601874876739798], [-178.08837890625, -16.320139453117562], [-179.01123046874997, -18.98941471523932], [-183.240966796875, -16.53089842368168], [-182.4169921875, -18.67747125852608], [-182.274169921875, -16.003575733881313] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/in/line-resolute-bay.geojson ================================================ { "type": "FeatureCollection", "properties": { "units": "miles", "mercator": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-7.734374999999999, 70.4367988185464] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-60.8203125, 64.99793920061401], [-31.640625, 76.96033358827414], [-5.625, 76.55774293896555] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/in/line1.geojson ================================================ { "type": "FeatureCollection", "properties": { "units": "miles", "mercator": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-47.08740234375, 32.26855544621476] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-55.06347656249999, 29.973970240516614], [-45.439453125, 36.58024660149866], [-49.04296875, 31.914867503276223], [-43.39599609375, 33.99802726234877], [-46.51611328125, 29.707139348134145], [-52.4267578125, 32.37996146435729], [-50.11962890625, 28.43971381702788], [-52.998046875, 27.430289738862594], [-50.0537109375, 35.02999636902566], [-42.38525390625, 31.466153715024294] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/in/line2.geojson ================================================ { "type": "FeatureCollection", "properties": { "mercator": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.54931640625, 0.7470491450051796] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 3], [2, 2], [2, 0], [-1.5, -1.5] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/in/segment-fiji.geojson ================================================ { "type": "FeatureCollection", "properties": { "mercator": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-180.46142578124997, -17.481671724450752] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-181.087646484375, -17.69897856226166], [-179.60586547851562, -16.380756046586434] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/in/segment1.geojson ================================================ { "type": "FeatureCollection", "properties": { "units": "miles", "mercator": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [2, 0] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/in/segment1a.geojson ================================================ { "type": "FeatureCollection", "properties": { "units": "miles", "mercator": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, -1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [2, 0] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/in/segment2.geojson ================================================ { "type": "FeatureCollection", "properties": { "units": "miles", "mercator": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, -1] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/in/segment3.geojson ================================================ { "type": "FeatureCollection", "properties": { "units": "miles", "mercator": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [2, 1], [3, 1] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/in/segment4.geojson ================================================ { "type": "FeatureCollection", "properties": { "units": "miles", "mercator": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-48.076171875, 15.453680224345835] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-51.5478515625, 19.352610894378625], [-29.794921874999996, 27.176469131898898] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/out/city-line1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3767967224121093, 39.4689324766527] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-0.40567874908447266, 39.47386857192064], [-0.3963661193847656, 39.47578991028725], [-0.38035869598388666, 39.482216070269594], [-0.3776121139526367, 39.48195108571802], [-0.3689002990722656, 39.47641930269614], [-0.35945892333984375, 39.46349905420083], [-0.35782814025878906, 39.45982131412374], [-0.3458118438720703, 39.453890134716616] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.3767967224121093, 39.47792027425889], [-0.3771624752655126, 39.477915838750505], [-0.3775278670252035, 39.47790253660436], [-0.3778925369543775, 39.477880380953145], [-0.37825612502969186, 39.47784939367026], [-0.3786182722971102, 39.47780960534819], [-0.3789786212266862, 39.47776105526827], [-0.3793368160659328, 39.477703791361854], [-0.3796925031914264, 39.477637870162965], [-0.38004533145829766, 39.47756335675235], [-0.38039495254726097, 39.47748032469325], [-0.3807410213088388, 39.47738885595864], [-0.3810831961044393, 39.47728904085019], [-0.38142113914394893, 39.477180977909086], [-0.3817545168195042, 39.47706477381856], [-0.382083000035113, 39.47694054329855], [-0.3824062645317976, 39.47680840899221], [-0.3827239912079377, 39.4766685013448], [-0.38303586643449467, 39.47652095847477], [-0.38334158236480737, 39.47636592603721], [-0.38364083723864917, 39.476203557079955], [-0.3839333356802484, 39.47603401189237], [-0.3842187889899756, 39.475857457846914], [-0.384496915429408, 39.475674069233804], [-0.3847674404994925, 39.475484027088775], [-0.3850300972115282, 39.47528751901423], [-0.3852846263507043, 39.47508473899386], [-0.38553077673193015, 39.474875887201], [-0.38576830544770735, 39.47466116980091], [-0.3859969781077976, 39.47444079874704], [-0.38621656907045027, 39.47421499157169], [-0.38642686166496354, 39.47398397117111], [-0.386627648405357, 39.47374796558531], [-0.38681873119494825, 39.47350720777287], [-0.3869999215216302, 39.47326193538074], [-0.38717104064365965, 39.47301239050961], [-0.38733191976577114, 39.47275881947478], [-0.3874824002054476, 39.47250147256287], [-0.38762233354918196, 39.4722406037847], [-0.3877515817985777, 39.4719764706244], [-0.3878700175061461, 39.47170933378517], [-0.38797752390066703, 39.471439456931904], [-0.38807399500199163, 39.4711671064308], [-0.3881593357251753, 39.470892551086365], [-0.3882334619738392, 39.470616061876036], [-0.3882963007226719, 39.47033791168274], [-0.3883477900889894, 39.47005837502537], [-0.3883878793932865, 39.4697777277879], [-0.38841652920872133, 39.469496246947024], [-0.38843371139948607, 39.46921421029877], [-0.388439409148029, 39.468931896184316], [-0.3884336169711014, 39.468649583215274], [-0.38841634072461756, 39.46836754999878], [-0.38838759759732433, 39.46808607486242], [-0.3883474160932887, 39.46780543557975], [-0.38829583600322265, 39.46752590909604], [-0.3882329083646765, 39.46724777125512], [-0.38815869541114156, 39.46697129652716], [-0.3880732705101136, 39.46669675773789], [-0.38797671809018286, 39.46642442579944], [-0.38786913355722147, 39.466154569443056], [-0.38775062319975484, 39.46588745495404], [-0.3876213040836124, 39.46562334590907], [-0.3874813039359612, 39.465362502916186], [-0.3873307610188425, 39.46510518335776], [-0.38716982399233335, 39.46485164113664], [-0.38699865176747295, 39.46460212642576], [-0.3868174133490992, 39.46435688542136], [-0.3866262876687516, 39.464116160100275], [-0.3864254634078073, 39.46388018798123], [-0.3862151388110252, 39.46364920189072], [-0.38599552149068406, 39.46342342973334], [-0.3857668282215075, 39.463203094267165], [-0.38552928472658077, 39.462988412884016], [-0.38528312545446874, 39.46277959739524], [-0.38502859334775835, 39.46257685382277], [-0.3847659396032515, 39.46238038219614], [-0.3844954234240478, 39.462190376355174], [-0.3842173117637596, 39.462007023759014], [-0.3839318790631139, 39.46183050530124], [-0.38363940697919835, 39.461660995131645], [-0.3833401841076213, 39.46149866048446], [-0.3830345056978558, 39.461343661513645], [-0.3827226733620519, 39.46119615113497], [-0.3824049947776009, 39.46105627487531], [-0.3820817833837452, 39.46092417072921], [-0.38175335807253274, 39.46079996902291], [-0.381420042874419, 39.46068379228587], [-0.38108216663882616, 39.46057575513005], [-0.3807400627099731, 39.46047596413694], [-0.3803940685982949, 39.46038451775254], [-0.3800445256477741, 39.46030150619032], [-0.37969177869951154, 39.46022701134236], [-0.37933617575186546, 39.46016110669864], [-0.37897806761749375, 39.46010385727459], [-0.37861780757763525, 39.46005531954705], [-0.37825575103397013, 39.46001554139865], [-0.3778922551583994, 39.45998456207056], [-0.377527678541089, 39.459962412123865], [-0.37716238083712245, 39.45994911340946], [-0.3767967224121093, 39.459944679046494], [-0.37643106398709625, 39.45994911340946], [-0.37606576628312965, 39.459962412123865], [-0.3757011896658193, 39.45998456207056], [-0.37533769379024856, 39.46001554139865], [-0.3749756372465834, 39.46005531954705], [-0.37461537720672494, 39.46010385727459], [-0.37425726907235324, 39.46016110669864], [-0.37390166612470715, 39.46022701134236], [-0.3735489191764446, 39.46030150619032], [-0.37319937622592386, 39.46038451775254], [-0.37285338211424557, 39.46047596413694], [-0.37251127818539254, 39.46057575513005], [-0.3721734019497997, 39.46068379228587], [-0.37184008675168595, 39.46079996902291], [-0.3715116614404735, 39.46092417072921], [-0.37118845004661777, 39.46105627487531], [-0.3708707714621668, 39.46119615113497], [-0.3705589391263629, 39.461343661513645], [-0.3702532607165974, 39.46149866048446], [-0.36995403784502034, 39.461660995131645], [-0.3696615657611048, 39.46183050530124], [-0.3693761330604591, 39.462007023759014], [-0.3690980214001709, 39.462190376355174], [-0.3688275052209672, 39.46238038219614], [-0.36856485147646034, 39.46257685382277], [-0.36831031936974995, 39.46277959739524], [-0.3680641600976379, 39.462988412884016], [-0.3678266166027112, 39.463203094267165], [-0.36759792333353475, 39.46342342973334], [-0.36737830601319343, 39.46364920189072], [-0.3671679814164114, 39.46388018798123], [-0.36696715715546707, 39.464116160100275], [-0.36677603147511945, 39.46435688542136], [-0.3665947930567457, 39.46460212642576], [-0.36642362083188534, 39.46485164113664], [-0.36626268380537613, 39.46510518335776], [-0.36611214088825744, 39.465362502916186], [-0.3659721407406063, 39.46562334590907], [-0.3658428216244638, 39.46588745495404], [-0.3657243112669972, 39.466154569443056], [-0.36561672673403584, 39.46642442579944], [-0.3655201743141051, 39.46669675773789], [-0.36543474941307713, 39.46697129652716], [-0.3653605364595422, 39.46724777125512], [-0.36529760882099604, 39.46752590909604], [-0.36524602873093, 39.46780543557975], [-0.36520584722689436, 39.46808607486242], [-0.36517710409960114, 39.46836754999878], [-0.3651598278531173, 39.468649583215274], [-0.3651540356761897, 39.468931896184316], [-0.3651597334247326, 39.46921421029877], [-0.3651769156154974, 39.469496246947024], [-0.3652055654309322, 39.4697777277879], [-0.36524565473522935, 39.47005837502537], [-0.3652971441015468, 39.47033791168274], [-0.3653599828503795, 39.470616061876036], [-0.3654341090990434, 39.470892551086365], [-0.365519449822227, 39.4711671064308], [-0.36561592092355166, 39.471439456931904], [-0.3657234273180726, 39.47170933378517], [-0.365841863025641, 39.4719764706244], [-0.36597111127503673, 39.4722406037847], [-0.3661110446187711, 39.47250147256287], [-0.36626152505844756, 39.47275881947478], [-0.36642240418055905, 39.47301239050961], [-0.3665935233025885, 39.47326193538074], [-0.3667747136292705, 39.47350720777287], [-0.36696579641886173, 39.47374796558531], [-0.36716658315925516, 39.47398397117111], [-0.3673768757537684, 39.47421499157169], [-0.3675964667164211, 39.47444079874704], [-0.3678251393765113, 39.47466116980091], [-0.36806266809228855, 39.474875887201], [-0.36830881847351443, 39.47508473899386], [-0.3685633476126905, 39.47528751901423], [-0.3688260043247262, 39.475484027088775], [-0.3690965293948107, 39.475674069233804], [-0.36937465583424317, 39.475857457846914], [-0.3696601091439703, 39.47603401189237], [-0.3699526075855695, 39.476203557079955], [-0.37025186245941133, 39.47636592603721], [-0.370557578389724, 39.47652095847477], [-0.370869453616281, 39.4766685013448], [-0.37118718029242104, 39.47680840899221], [-0.3715104447891057, 39.47694054329855], [-0.3718389280047145, 39.47706477381856], [-0.37217230568026977, 39.477180977909086], [-0.37251024871977945, 39.47728904085019], [-0.3728524235153799, 39.47738885595864], [-0.3731984922769577, 39.47748032469325], [-0.37354811336592103, 39.47756335675235], [-0.3739009416327923, 39.477637870162965], [-0.3742566287582859, 39.477703791361854], [-0.3746148235975325, 39.47776105526827], [-0.3749751725271085, 39.47780960534819], [-0.3753373197945268, 39.47784939367026], [-0.3757009078698411, 39.477880380953145], [-0.37606557779901517, 39.47790253660436], [-0.3764309695587061, 39.477915838750505], [-0.3767967224121093, 39.47792027425889] ] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/out/city-line2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-3.592529296875, 40.573804799488194] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-3.8884735107421875, 40.420292132688964], [-3.736724853515625, 40.276906410822825], [-3.5025787353515625, 40.422383097039905], [-3.5018920898437496, 40.516409213865586], [-3.668060302734375, 40.559199680578075] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-3.592529296875, 40.60602538523366], [-3.5938623697696777, 40.60600947866], [-3.5951941251810005, 40.6059617746596], [-3.5965232469333337, 40.60588232037856], [-3.597848421465152, 40.605771194341706], [-3.599168339132803, 40.60562850637471], [-3.6004816955103065, 40.605454397494974], [-3.6017871926838874, 40.60524903977175], [-3.60308354053994, 40.60501263615534], [-3.604369458045117, 40.60474542027563], [-3.605643674517246, 40.60444765621031], [-3.6069049308858205, 40.604119638222734], [-3.6081519809407654, 40.60376169046993], [-3.6093835925682267, 40.60337416668096], [-3.6105985489721633, 40.60295744980593], [-3.6117956498804844, 40.60251195163606], [-3.6129737127345343, 40.602038112395086], [-3.614131573860742, 40.60153640030268], [-3.615268089623238, 40.60100731110987], [-3.6163821375562972, 40.600451367607434], [-3.6174726174754857, 40.599869119107396], [-3.618538452566372, 40.599261140898285], [-3.6195785904497506, 40.598628033674714], [-3.6205920042222894, 40.59797042294182], [-3.621577693471587, 40.59728895839522], [-3.6225346852646085, 40.596584313276956], [-3.623462035108548, 40.595857183708304], [-3.624358827883139, 40.5951082879999], [-3.6252241787435158, 40.59433836594002], [-3.6260572339927157, 40.59354817806165], [-3.62685717192298, 40.59273850488912], [-3.6276232036250193, 40.59191014616502], [-3.628354573764453, 40.59106392005826], [-3.6290505613246657, 40.59020066235392], [-3.62971048031536, 40.58932122562581], [-3.6303336804461153, 40.58842647839257], [-3.630919547764299, 40.587517304258114], [-3.6314675052567225, 40.58659460103716], [-3.6319770134144673, 40.585659279867144], [-3.6324475707603225, 40.58471226430669], [-3.6328787143383634, 40.58375448942232], [-3.63327002016518, 40.58278690086369], [-3.6336211036423567, 40.58181045392862], [-3.633931619929799, 40.5808261126188], [-3.6342012642795796, 40.57983484868691], [-3.6344297723299896, 40.57883764067638], [-3.6346169203595404, 40.57783547295455], [-3.6347625255006792, 40.57682933474024], [-3.63486644591305, 40.5758202191268], [-3.634928580916152, 40.574809122101335], [-3.634948871081288, 40.5737970415614], [-3.634927298282747, 40.57278497632995], [-3.6348638857082016, 40.57177392516953], [-3.634758697828335, 40.57076488579669], [-3.634611840325757, 40.56975885389766], [-3.634423459983317, 40.568756822146185], [-3.634193744531938, 40.56775977922449], [-3.633922922458165, 40.56676870884838], [-3.633611262771641, 40.56578458879742], [-3.633259074732764, 40.56480838995108], [-3.6328667075408254, 40.56384107533194], [-3.632434549982963, 40.562883599156734], [-3.6319630300442993, 40.56193690589624], [-3.6314526144796724, 40.561001929345], [-3.6309038083474134, 40.560079591701616], [-3.6303171545056356, 40.55917080266072], [-3.6296932330715803, 40.55827645851727], [-3.629032660844533, 40.55739744128436], [-3.6283360906929456, 40.55653461782507], [-3.6276042109063398, 40.555688838999465], [-3.6268377445126796, 40.554860938827396], [-3.6260374485618803, 40.554051733668075], [-3.625204113376179, 40.55326202141707], [-3.624338561768121, 40.552492580721626], [-3.623441648226934, 40.551744170214995], [-3.6225142580741014, 40.55101752777059], [-3.621557306588975, 40.55031336977659], [-3.6205717381052898, 40.5496323904318], [-3.6195585250794804, 40.548975261063426], [-3.6185186671316982, 40.54834262946732], [-3.6174531900605027, 40.54773511927155], [-3.6163631448321643, 40.547153329323706], [-3.615249606545591, 40.54659783310261], [-3.6141136733738826, 40.54606917815507], [-3.612956465483545, 40.545567885558086], [-3.6117791239324273, 40.54509444940715], [-3.6105828095474526, 40.544649336331084], [-3.6093687017832248, 40.54423298503387], [-3.608137997562646, 40.543845805863945], [-3.6068919101006354, 40.543488180411345], [-3.6056316677121316, 40.543160461133176], [-3.6043585126054922, 40.542862971007594], [-3.6030736996624992, 40.54259600321684], [-3.601778495206115, 40.54235982085949], [-3.600474175757211, 40.54215465669224], [-3.5991620267814475, 40.541980712901506], [-3.5978433414275304, 40.541838160905], [-3.596519419258057, 40.54172714118353], [-3.5951915649741717, 40.541647763143175], [-3.5938610871352736, 40.54160010500787], [-3.592529296875, 40.541584213742716], [-3.591197506614727, 40.54160010500787], [-3.589867028775829, 40.541647763143175], [-3.5885391744919435, 40.54172714118353], [-3.58721525232247, 40.541838160905], [-3.585896566968553, 40.541980712901506], [-3.5845844179927893, 40.54215465669224], [-3.5832800985438857, 40.54235982085949], [-3.5819848940875008, 40.54259600321684], [-3.5807000811445078, 40.542862971007594], [-3.5794269260378693, 40.543160461133176], [-3.5781666836493646, 40.543488180411345], [-3.576920596187355, 40.543845805863945], [-3.5756898919667752, 40.54423298503387], [-3.574475784202548, 40.544649336331084], [-3.5732794698175727, 40.54509444940715], [-3.572102128266455, 40.545567885558086], [-3.570944920376118, 40.54606917815507], [-3.569808987204409, 40.54659783310261], [-3.5686954489178366, 40.547153329323706], [-3.567605403689498, 40.54773511927155], [-3.566539926618302, 40.54834262946732], [-3.5655000686705205, 40.548975261063426], [-3.5644868556447102, 40.5496323904318], [-3.5635012871610257, 40.55031336977659], [-3.562544335675899, 40.55101752777059], [-3.5616169455230664, 40.551744170214995], [-3.5607200319818793, 40.552492580721626], [-3.5598544803738217, 40.55326202141707], [-3.5590211451881197, 40.554051733668075], [-3.5582208492373204, 40.554860938827396], [-3.5574543828436602, 40.555688838999465], [-3.5567225030570553, 40.55653461782507], [-3.556025932905467, 40.55739744128436], [-3.55536536067842, 40.55827645851727], [-3.5547414392443635, 40.55917080266072], [-3.5541547854025874, 40.560079591701616], [-3.553605979270328, 40.561001929345], [-3.5530955637057016, 40.56193690589624], [-3.5526240437670373, 40.562883599156734], [-3.5521918862091746, 40.56384107533194], [-3.551799519017236, 40.56480838995108], [-3.5514473309783594, 40.56578458879742], [-3.551135671291835, 40.56676870884838], [-3.550864849218062, 40.56775977922449], [-3.5506351337666833, 40.568756822146185], [-3.5504467534242434, 40.56975885389766], [-3.5502998959216656, 40.57076488579669], [-3.5501947080417984, 40.57177392516953], [-3.550131295467253, 40.57278497632995], [-3.550109722668712, 40.5737970415614], [-3.5501300128338475, 40.574809122101335], [-3.55019214783695, 40.5758202191268], [-3.550296068249321, 40.57682933474024], [-3.55044167339046, 40.57783547295455], [-3.55062882142001, 40.57883764067638], [-3.550857329470421, 40.57983484868691], [-3.551126973820201, 40.5808261126188], [-3.5514374901076438, 40.58181045392862], [-3.55178857358482, 40.58278690086369], [-3.5521798794116375, 40.58375448942232], [-3.5526110229896775, 40.58471226430669], [-3.5530815803355327, 40.585659279867144], [-3.5535910884932775, 40.58659460103716], [-3.554139045985701, 40.587517304258114], [-3.5547249133038847, 40.58842647839257], [-3.5553481134346394, 40.58932122562581], [-3.5560080324253347, 40.59020066235392], [-3.556704019985547, 40.59106392005826], [-3.5574353901249807, 40.59191014616502], [-3.55820142182702, 40.59273850488912], [-3.5590013597572843, 40.59354817806165], [-3.5598344150064842, 40.59433836594002], [-3.5606997658668607, 40.5951082879999], [-3.5615965586414524, 40.595857183708304], [-3.5625239084853915, 40.596584313276956], [-3.5634809002784134, 40.59728895839522], [-3.5644665895277106, 40.59797042294182], [-3.5654800033002503, 40.598628033674714], [-3.566520141183629, 40.599261140898285], [-3.567585976274515, 40.599869119107396], [-3.5686764561937028, 40.600451367607434], [-3.5697905041267624, 40.60100731110987], [-3.570927019889258, 40.60153640030268], [-3.572084881015466, 40.602038112395086], [-3.573262943869516, 40.60251195163606], [-3.574460044777836, 40.60295744980593], [-3.5756750011817733, 40.60337416668096], [-3.576906612809235, 40.60376169046993], [-3.5781536628641795, 40.604119638222734], [-3.5794149192327547, 40.60444765621031], [-3.580689135704884, 40.60474542027563], [-3.58197505321006, 40.60501263615534], [-3.583271401066113, 40.60524903977175], [-3.584576898239694, 40.605454397494974], [-3.585890254617197, 40.60562850637471], [-3.5872101722848484, 40.605771194341706], [-3.5885353468166667, 40.60588232037856], [-3.589864468568999, 40.6059617746596], [-3.591196223980323, 40.60600947866], [-3.592529296875, 40.60602538523366] ] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/out/city-segment-inside1.geojson ================================================ { "type": "FeatureCollection", "properties": { "units": "miles" }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-6.0047149658203125, 37.365109304227246] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-6.0150146484375, 37.38011551844836], [-5.931415557861328, 37.39702801486944] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.0047149658203125, 37.38167284314159], [-6.005369719740231, 37.381664668230634], [-6.006023827069253, 37.38164015157079], [-6.006676641856281, 37.381599317373066], [-6.007327519429171, 37.38154220596246], [-6.007975817032622, 37.38146887373818], [-6.008620894464146, 37.38137939311773], [-6.00926211470749, 37.38127385246532], [-6.009898844562894, 37.38115235600438], [-6.010530455273525, 37.3810150237145], [-6.011156323147495, 37.38086199121266], [-6.011775830174828, 37.38069340961909], [-6.012388364638748, 37.38050944540773], [-6.012993321720721, 37.38031028024154], [-6.01359010409859, 37.380096110792806], [-6.014178122537265, 37.379867148548485], [-6.014756796471341, 37.37962361960109], [-6.015325554579076, 37.379365764424975], [-6.015883835347175, 37.37909383763847], [-6.016431087625788, 37.37880810775202], [-6.0169667711731964, 37.378508856902656], [-6.017490357189638, 37.37819638057483], [-6.018001328839736, 37.377870987308285], [-6.0184991817630245, 37.37753299839284], [-6.018983424572061, 37.37718274755073], [-6.019453579337623, 37.37682058060653], [-6.019909182060527, 37.376446855145275], [-6.020349783129591, 37.3760619401588], [-6.020774947765292, 37.37566621568101], [-6.021184256448675, 37.37526007241211], [-6.021577305335104, 37.374843911332384], [-6.021953706652434, 37.37441814330584], [-6.022313089083229, 37.37398318867403], [-6.022655098130623, 37.37353947684068], [-6.022979396467497, 37.373087445847226], [-6.023285664268614, 37.372627541939984], [-6.023573599525376, 37.37216021912914], [-6.023842918342927, 37.37168593874014], [-6.024093355219282, 37.37120516895794], [-6.024324663306228, 37.37071838436439], [-6.02453661465173, 37.37022606546946], [-6.024729000423632, 37.36972869823655], [-6.02490163111441, 37.369226773602534], [-6.025054336726796, 37.36872078699286], [-6.025186966940079, 37.36821123783229], [-6.025299391256965, 37.36769862905173], [-6.025391499130798, 37.36718346659164], [-6.02546320007307, 37.36666625890246], [-6.025514423741105, 37.36614751644271], [-6.025545120005821, 37.36562775117503], [-6.025555258999542, 37.365107476060885], [-6.02554483114379, 37.364587204554205], [-6.02551384715705, 37.3640674500947], [-6.025462338042505, 37.36354872560115], [-6.0253903550557615, 37.36303154296533], [-6.025297969652599, 37.36251641254685], [-6.025185273416803, 37.36200384266973], [-6.025052377968172, 37.361494339120874], [-6.024899414850762, 37.36098840465118], [-6.024726535401538, 37.360486538479634], [-6.024533910599502, 37.35998923580098], [-6.024321730895523, 37.359496987297305], [-6.0240902060229855, 37.3590102786542], [-6.023839564789473, 37.35852959008193], [-6.0235700548497055, 37.358055395841824], [-6.02328194245994, 37.35758816377884], [-6.022975512214098, 37.35712835486029], [-6.022651066761868, 37.356676422721506], [-6.022308926509088, 37.35623281321863], [-6.021949429300682, 37.35579796398927], [-6.021572930086494, 37.35537230402117], [-6.021179800570312, 37.354956253229425], [-6.020770428842493, 37.354550222042796], [-6.020345218996477, 37.35415461099922], [-6.019904590729645, 37.353769810351224], [-6.0194489789288586, 37.353396199681484], [-6.0189788332411265, 37.353034147528795], [-6.018494617629807, 37.352684011025175], [-6.017996809916783, 37.352346135543954], [-6.017485901311074, 37.35202085435968], [-6.016962395924343, 37.35170848831984], [-6.016426810273752, 37.35140934552893], [-6.015879672772713, 37.35112372104494], [-6.015321523209971, 37.35085189658892], [-6.014752912217564, 37.350594140267475], [-6.014174400728197, 37.350350706308795], [-6.013586559422511, 37.35012183481235], [-6.012989968166851, 37.34990775151252], [-6.012385215442036, 37.34970866755627], [-6.011772897763715, 37.349524779295386], [-6.011153619094871, 37.34935626809309], [-6.010527990251052, 37.349203300145504], [-6.009896628298893, 37.34906602631811], [-6.009260155948546, 37.348944581997166], [-6.0086192009405845, 37.348839086956474], [-6.007974395428011, 37.348749645239465], [-6.007326375353934, 37.348676345056816], [-6.006675779825563, 37.348619258699564], [-6.006023250485095, 37.348578442468046], [-6.005369430878148, 37.348553936616376], [-6.0047149658203125, 37.348545765312906], [-6.004060500762476, 37.348553936616376], [-6.00340668115553, 37.348578442468046], [-6.002754151815063, 37.348619258699564], [-6.0021035562866905, 37.348676345056816], [-6.001455536212614, 37.348749645239465], [-6.0008107307000405, 37.348839086956474], [-6.000169775692079, 37.348944581997166], [-5.999533303341731, 37.34906602631811], [-5.998901941389572, 37.349203300145504], [-5.998276312545753, 37.34935626809309], [-5.997657033876911, 37.349524779295386], [-5.997044716198589, 37.34970866755627], [-5.996439963473773, 37.34990775151252], [-5.995843372218113, 37.35012183481235], [-5.995255530912427, 37.350350706308795], [-5.99467701942306, 37.350594140267475], [-5.994108408430655, 37.35085189658892], [-5.993550258867911, 37.35112372104494], [-5.993003121366873, 37.35140934552893], [-5.9924675357162815, 37.35170848831984], [-5.99194403032955, 37.35202085435968], [-5.9914331217238415, 37.352346135543954], [-5.990935314010819, 37.352684011025175], [-5.990451098399498, 37.353034147528795], [-5.989980952711766, 37.353396199681484], [-5.98952534091098, 37.353769810351224], [-5.989084712644148, 37.35415461099922], [-5.988659502798131, 37.354550222042796], [-5.988250131070312, 37.354956253229425], [-5.987857001554131, 37.35537230402117], [-5.987480502339942, 37.35579796398927], [-5.987121005131536, 37.35623281321863], [-5.986778864878756, 37.356676422721506], [-5.986454419426527, 37.35712835486029], [-5.986147989180684, 37.35758816377884], [-5.985859876790919, 37.358055395841824], [-5.985590366851151, 37.35852959008193], [-5.9853397256176395, 37.3590102786542], [-5.985108200745102, 37.359496987297305], [-5.9848960210411235, 37.35998923580098], [-5.9847033962390865, 37.360486538479634], [-5.984530516789862, 37.36098840465118], [-5.984377553672453, 37.361494339120874], [-5.984244658223821, 37.36200384266973], [-5.984131961988026, 37.36251641254685], [-5.9840395765848635, 37.36303154296533], [-5.983967593598119, 37.36354872560115], [-5.983916084483574, 37.3640674500947], [-5.983885100496834, 37.364587204554205], [-5.9838746726410825, 37.365107476060885], [-5.983884811634804, 37.36562775117503], [-5.983915507899519, 37.36614751644271], [-5.983966731567554, 37.36666625890246], [-5.984038432509826, 37.36718346659164], [-5.984130540383659, 37.36769862905173], [-5.984242964700545, 37.36821123783229], [-5.984375594913829, 37.36872078699286], [-5.984528300526214, 37.369226773602534], [-5.9847009312169925, 37.36972869823655], [-5.984893316988894, 37.37022606546946], [-5.985105268334398, 37.37071838436439], [-5.985336576421342, 37.37120516895794], [-5.985587013297698, 37.37168593874014], [-5.985856332115249, 37.37216021912914], [-5.98614426737201, 37.372627541939984], [-5.986450535173127, 37.373087445847226], [-5.986774833510002, 37.37353947684068], [-5.987116842557396, 37.37398318867403], [-5.987476224988192, 37.37441814330584], [-5.987852626305521, 37.374843911332384], [-5.98824567519195, 37.37526007241211], [-5.988654983875333, 37.37566621568101], [-5.989080148511033, 37.3760619401588], [-5.989520749580098, 37.376446855145275], [-5.989976352303003, 37.37682058060653], [-5.9904465070685635, 37.37718274755073], [-5.9909307498776, 37.37753299839284], [-5.991428602800888, 37.377870987308285], [-5.991939574450986, 37.37819638057483], [-5.992463160467428, 37.378508856902656], [-5.992998844014836, 37.37880810775202], [-5.993546096293449, 37.37909383763847], [-5.994104377061548, 37.379365764424975], [-5.9946731351692835, 37.37962361960109], [-5.995251809103359, 37.379867148548485], [-5.995839827542034, 37.380096110792806], [-5.996436609919903, 37.38031028024154], [-5.997041567001877, 37.38050944540773], [-5.997654101465798, 37.38069340961909], [-5.998273608493129, 37.38086199121266], [-5.998899476367099, 37.3810150237145], [-5.99953108707773, 37.38115235600438], [-6.000167816933134, 37.38127385246532], [-6.000809037176479, 37.38137939311773], [-6.001454114608002, 37.38146887373818], [-6.002102412211454, 37.38154220596246], [-6.002753289784344, 37.381599317373066], [-6.003406104571371, 37.38164015157079], [-6.004060211900394, 37.381664668230634], [-6.0047149658203125, 37.38167284314159] ] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/out/city-segment-inside2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3767967224121093, 39.4689324766527] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-0.3689861297607422, 39.47648555419739], [-0.3595447540283203, 39.46363158174706] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.3767967224121093, 39.477903066051326], [-0.37716177489791164, 39.47789863903635], [-0.3775264669817148, 39.47788536236202], [-0.37789043861774285, 39.477863249135886], [-0.37825333047231247, 39.47783232118945], [-0.37861478427899564, 39.47779260905657], [-0.37897444319272194, 39.47774415194336], [-0.3793319521424701, 39.477686997689354], [-0.379686958182198, 39.47762120272026], [-0.3800391108396624, 39.47754683199218], [-0.3803880624627833, 39.47746395892743], [-0.38073346856320767, 39.477372665341946], [-0.38107498815673313, 39.47727304136445], [-0.38141228410025274, 39.47716518534734], [-0.38174502342488703, 39.477049203769525], [-0.38207287766497294, 39.47692521113114], [-0.3823955231825837, 39.47679332984047], [-0.382712641487257, 39.476653690092895], [-0.3830239195506159, 39.476506429742294], [-0.3833290501155698, 39.47635169416476], [-0.38362773199978956, 39.476189636114974], [-0.3839196703931562, 39.476020415575285], [-0.384204577148889, 39.47584419959757], [-0.384482171068065, 39.47566116213819], [-0.38475217817724733, 39.47547148388615], [-0.3850143319989503, 39.47527535208451], [-0.3852683738146716, 39.475072960345436], [-0.38551405292023305, 39.47486450845887], [-0.3857511268731777, 39.47465020219519], [-0.3859793617319791, 39.47443025310193], [-0.38619853228682693, 39.47420487829473], [-0.3864084222817614, 39.47397430024297], [-0.3866088246279377, 39.47373874654993], [-0.38679954160781144, 39.473498449727984], [-0.3869803850700424, 39.473253646969006], [-0.38715117661492787, 39.47300457991003], [-0.3873117477701807, 39.47275149439463], [-0.3874619401568817, 39.472494640230124], [-0.38760160564544305, 39.47223427094089], [-0.3877306065014306, 39.47197064351796], [-0.38784881552110156, 39.47170401816535], [-0.38795611615652636, 39.471434658042995], [-0.388052402630173, 39.471162829007035], [-0.38813758003884125, 39.470888799347264], [-0.38821156444684746, 39.47061283952225], [-0.3882742829683686, 39.47033522189236], [-0.38832567383886696, 39.47005622045089], [-0.38836568647552727, 39.46977611055353], [-0.3883942815266472, 39.46949516864664], [-0.38841143090993646, 39.46921367199437], [-0.38841711783968763, 39.468931898404946], [-0.38841133684279433, 39.46865012595656], [-0.388394093763603, 39.46836863272291], [-0.38836540575759587, 39.468087696498706], [-0.3883253012739137, 39.46780759452571], [-0.388273820026737, 39.46752860321897], [-0.38821101295555654, 39.46725099789422], [-0.38813694217437494, 39.46697505249616], [-0.38805168090989084, 39.46670103932823], [-0.38795531342872824, 39.466429228783916], [-0.3878479349537872, 39.466159889080025], [-0.3877296515697967, 39.465893285992124], [-0.3876005801181681, 39.46562968259227], [-0.38746084808125314, 39.46536933898968], [-0.387310593456122, 39.46511251207401], [-0.3871499646179889, 39.4648594552621], [-0.3869791201734212, 39.464610418247986], [-0.38679822880347675, 39.46436564675666], [-0.38660746909692834, 39.46412538230179], [-0.38640702937373866, 39.46388986194746], [-0.3861971074989624, 39.46365931807452], [-0.38597791068725934, 39.46343397815133], [-0.38574965529821315, 39.463214064509614], [-0.38551256662265765, 39.462999794125096], [-0.3852668786602229, 39.46279137840372], [-0.38501283388831986, 39.46258902297312], [-0.3847506830227932, 39.462392927479954], [-0.38448068477047886, 39.4622032853931], [-0.3842031055739085, 39.46202028381288], [-0.3839182193484155, 39.461844103286715], [-0.38362630721189955, 39.46167491763103], [-0.3833276572075175, 39.461512893760066], [-0.3830225640195731, 39.461358191521256], [-0.3827113286828857, 39.46121096353771], [-0.3823942582859232, 39.4610713550578], [-0.38207166566799283, 39.46093950381199], [-0.3817438691107857, 39.4608155398771], [-0.38141119202458107, 39.46069958554812], [-0.38107396262941506, 39.460591755217656], [-0.38073251363153116, 39.460492155263246], [-0.3803871818954278, 39.46040088394246], [-0.38003830811182515, 39.46031803129619], [-0.37968623646187927, 39.460243679059744], [-0.37933131427797057, 39.460177900582494], [-0.37897389170140144, 39.46012076075544], [-0.37861432133733863, 39.46007231594736], [-0.3782529579073385, 39.46003261394923], [-0.3778901578997956, 39.460001693927154], [-0.37752627921865994, 39.45997958638372], [-0.3771616808307642, 39.45996631312801], [-0.3767967224121093, 39.45996188725407], [-0.3764317639934545, 39.45996631312801], [-0.37606716560555875, 39.45997958638372], [-0.3757032869244231, 39.460001693927154], [-0.37534048691688027, 39.46003261394923], [-0.37497912348688, 39.46007231594736], [-0.37461955312281725, 39.46012076075544], [-0.37426213054624824, 39.460177900582494], [-0.3739072083623394, 39.460243679059744], [-0.37355513671239354, 39.46031803129619], [-0.3732062629287909, 39.46040088394246], [-0.3728609311926875, 39.460492155263246], [-0.3725194821948037, 39.460591755217656], [-0.3721822527996376, 39.46069958554812], [-0.3718495757134329, 39.4608155398771], [-0.3715217791562259, 39.46093950381199], [-0.3711991865382955, 39.4610713550578], [-0.37088211614133304, 39.46121096353771], [-0.37057088080464556, 39.461358191521256], [-0.3702657876167012, 39.461512893760066], [-0.36996713761231914, 39.46167491763103], [-0.36967522547580317, 39.461844103286715], [-0.3693903392503102, 39.46202028381288], [-0.36911276005373983, 39.4622032853931], [-0.3688427618014255, 39.462392927479954], [-0.36858061093589883, 39.46258902297312], [-0.3683265661639958, 39.46279137840372], [-0.368080878201561, 39.462999794125096], [-0.3678437895260056, 39.463214064509614], [-0.36761553413695935, 39.46343397815133], [-0.3673963373252563, 39.46365931807452], [-0.36718641545048, 39.46388986194746], [-0.36698597572729036, 39.46412538230179], [-0.36679521602074194, 39.46436564675666], [-0.3666143246507975, 39.464610418247986], [-0.36644348020622974, 39.4648594552621], [-0.3662828513680967, 39.46511251207401], [-0.36613259674296555, 39.46536933898968], [-0.3659928647060505, 39.46562968259227], [-0.365863793254422, 39.465893285992124], [-0.3657455098704314, 39.466159889080025], [-0.3656381313954904, 39.466429228783916], [-0.36554176391432786, 39.46670103932823], [-0.3654565026498437, 39.46697505249616], [-0.3653824318686622, 39.46725099789422], [-0.3653196247974817, 39.46752860321897], [-0.36526814355030496, 39.46780759452571], [-0.3652280390666228, 39.468087696498706], [-0.3651993510606157, 39.46836863272291], [-0.36518210798142436, 39.46865012595656], [-0.36517632698453106, 39.468931898404946], [-0.36518201391428223, 39.46921367199437], [-0.3651991632975715, 39.46949516864664], [-0.3652277583486915, 39.46977611055353], [-0.3652677709853517, 39.47005622045089], [-0.3653191618558501, 39.47033522189236], [-0.36538188037737124, 39.47061283952225], [-0.36545586478537745, 39.470888799347264], [-0.3655410421940457, 39.471162829007035], [-0.36563732866769233, 39.471434658042995], [-0.3657446293031171, 39.47170401816535], [-0.3658628383227881, 39.47197064351796], [-0.36599183917877565, 39.47223427094089], [-0.366131504667337, 39.472494640230124], [-0.366281697054038, 39.47275149439463], [-0.3664422682092908, 39.47300457991003], [-0.36661305975417624, 39.473253646969006], [-0.36679390321640726, 39.473498449727984], [-0.366984620196281, 39.47373874654993], [-0.3671850225424573, 39.47397430024297], [-0.36739491253739176, 39.47420487829473], [-0.3676140830922396, 39.47443025310193], [-0.367842317951041, 39.47465020219519], [-0.36807939190398564, 39.47486450845887], [-0.3683250710095471, 39.475072960345436], [-0.3685791128252684, 39.47527535208451], [-0.36884126664697137, 39.47547148388615], [-0.3691112737561537, 39.47566116213819], [-0.3693888676753297, 39.47584419959757], [-0.3696737744310625, 39.476020415575285], [-0.36996571282442914, 39.476189636114974], [-0.3702643947086489, 39.47635169416476], [-0.3705695252736028, 39.476506429742294], [-0.3708808033369617, 39.476653690092895], [-0.37119792164163506, 39.47679332984047], [-0.3715205671592458, 39.47692521113114], [-0.3718484213993317, 39.477049203769525], [-0.37218116072396595, 39.47716518534734], [-0.37251845666748556, 39.47727304136445], [-0.37285997626101103, 39.477372665341946], [-0.37320538236143536, 39.47746395892743], [-0.3735543339845563, 39.47754683199218], [-0.3739064866420207, 39.47762120272026], [-0.3742614926817486, 39.477686997689354], [-0.37461900163149675, 39.47774415194336], [-0.37497866054522294, 39.47779260905657], [-0.3753401143519061, 39.47783232118945], [-0.3757030062064758, 39.477863249135886], [-0.3760669778425038, 39.47788536236202], [-0.37643166992630706, 39.47789863903635], [-0.3767967224121093, 39.477903066051326] ] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/out/city-segment-inside3.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-3.592529296875, 40.573804799488194] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-3.503265380859375, 40.51693121343741], [-3.6694335937500004, 40.560764667193595] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-3.592529296875, 40.60525484040387], [-3.593830474774089, 40.605239314409665], [-3.5951303667562624, 40.60519275177097], [-3.5964276881808104, 40.60511519850428], [-3.5977211569581566, 40.60500673125301], [-3.5990094948221962, 40.604867457211455], [-3.600291428598792, 40.604697514018355], [-3.601565691469119, 40.604497069620365], [-3.602831024226608, 40.60426632210533], [-3.6040861765262022, 40.60400549950575], [-3.6053299081246797, 40.603714859572506], [-3.6065609901107925, 40.603394689519085], [-3.607778206123972, 40.60304530573659], [-3.6089803535603875, 40.602667053479905], [-3.610166244765143, 40.602260306525054], [-3.611334708209402, 40.601825466798516], [-3.612484589651283, 40.601362963978474], [-3.6136147532793332, 40.60087325506861], [-3.614724082837454, 40.600356823944885], [-3.6158114827301495, 40.59981418087565], [-3.6168758791069813, 40.59924586201564], [-3.6179162209251676, 40.59865242887438], [-3.61893148098924, 40.59803446775947], [-3.6199206569667477, 40.59739258919535], [-3.6208827723789834, 40.59672742731812], [-3.621816877565753, 40.596039639247124], [-3.6227220506232305, 40.59532990443361], [-3.6235973983139735, 40.5945989239876], [-3.6244420569481948, 40.59384741998316], [-3.625255193235426, 40.59307613474322], [-3.6260360051057385, 40.592285830104174], [-3.6267837224997006, 40.59147728666145], [-3.6274976081263244, 40.590651302996605], [-3.628176958188229, 40.58980869488654], [-3.6288211030733506, 40.58895029449607], [-3.6294294080124914, 40.588076949554164], [-3.630001273702106, 40.58718952251506], [-3.6305361368916955, 40.58628888970484], [-3.631033470935269, 40.585375940454526], [-3.6314927863063278, 40.5844515762203], [-3.631913631075899, 40.58351670969206], [-3.6322955913531527, 40.58257226389081], [-3.6326382916881976, 40.58161917125618], [-3.63294139543668, 40.58065837272466], [-3.6332046050858438, 40.57969081679965], [-3.63342766254176, 40.57871745861413], [-3.633610349377466, 40.57773925898708], [-3.633752487041796, 40.57675718347427], [-3.633853937028723, 40.575772201414686], [-3.633914601007062, 40.57478528497327], [-3.6339344209104665, 40.57379740818112], [-3.6339133789876064, 40.57280954597402], [-3.6338514978125573, 40.57182267323018], [-3.6337488402553837, 40.570837763808264], [-3.6336055094129893, 40.56985578958654], [-3.6334216485003274, 40.56887771950425], [-3.6331974407021055, 40.56790451860589], [-3.6329331089851546, 40.566937147089725], [-3.6326289158716913, 40.565976559360934], [-3.632285163173693, 40.565023703091], [-3.6319021916887086, 40.56407951828358], [-3.6314803808574005, 40.56314493634827], [-3.6310201483832025, 40.562220879182945], [-3.6305219498144736, 40.56130825826562], [-3.6299862780895977, 40.56040797375671], [-3.6294136630454874, 40.559520913612644], [-3.6288046708899997, 40.558647952711546], [-3.628159903638816, 40.55778995199201], [-3.6274799985173263, 40.556947757605705], [-3.626765627328168, 40.556122200084644], [-3.6260174957850153, 40.55531409352397], [-3.625236342813321, 40.55452423478103], [-3.62442293981869, 40.55375340269152], [-3.623578089923631, 40.55300235730347], [-3.6227026271734344, 40.552271839129844], [-3.621797415711981, 40.55156256842034], [-3.6208633489282818, 40.55087524445336], [-3.6199013485746065, 40.55021054484856], [-3.6189123638570737, 40.54956912490089], [-3.6178973704995783, 40.54895161693651], [-3.616857369782007, 40.548358629691485], [-3.6157933875536648, 40.54779074771367], [-3.6147064732228844, 40.5472485307884], [-3.6135976987238143, 40.54673251338862], [-3.61246815746139, 40.5462432041499], [-3.6113189632355196, 40.54578108537087], [-3.6101512491455314, 40.5453466125396], [-3.6089661664759483, 40.5449402138863], [-3.607764883564687, 40.544562289962826], [-3.6065485846547616, 40.54421321324946], [-3.6053184687306117, 40.5438933277892], [-3.6040757483401995, 40.54360294885], [-3.602821648403996, 40.54334236261532], [-3.6015574050120227, 40.5431118259032], [-3.600284264210103, 40.542911565914224], [-3.599003480776514, 40.54274178000844], [-3.597716316990196, 40.542602635511756], [-3.5964240413917357, 40.542494269551675], [-3.5951279275382984, 40.54241678892272], [-3.5938292527537268, 40.54237026998165], [-3.592529296875, 40.542354758572515], [-3.5912293409962737, 40.54237026998165], [-3.589930666211702, 40.54241678892272], [-3.5886345523582652, 40.542494269551675], [-3.5873422767598044, 40.542602635511756], [-3.5860551129734866, 40.54274178000844], [-3.5847743295398975, 40.542911565914224], [-3.583501188737978, 40.5431118259032], [-3.5822369453460046, 40.54334236261532], [-3.580982845409801, 40.54360294885], [-3.5797401250193883, 40.5438933277892], [-3.5785100090952384, 40.54421321324946], [-3.577293710185313, 40.544562289962826], [-3.576092427274052, 40.5449402138863], [-3.57490734460447, 40.5453466125396], [-3.57373963051448, 40.54578108537087], [-3.57259043628861, 40.5462432041499], [-3.571460895026186, 40.54673251338862], [-3.570352120527116, 40.5472485307884], [-3.5692652061963357, 40.54779074771367], [-3.568201223967993, 40.548358629691485], [-3.5671612232504217, 40.54895161693651], [-3.5661462298929263, 40.54956912490089], [-3.5651572451753935, 40.55021054484856], [-3.5641952448217187, 40.55087524445336], [-3.5632611780380192, 40.55156256842034], [-3.562355966576565, 40.552271839129844], [-3.561480503826369, 40.55300235730347], [-3.56063565393131, 40.55375340269152], [-3.5598222509366795, 40.55452423478103], [-3.559041097964985, 40.55531409352397], [-3.558292966421833, 40.556122200084644], [-3.557578595232674, 40.556947757605705], [-3.5568986901111845, 40.55778995199201], [-3.5562539228599994, 40.558647952711546], [-3.555644930704513, 40.559520913612644], [-3.5550723156604023, 40.56040797375671], [-3.554536643935527, 40.56130825826562], [-3.554038445366798, 40.562220879182945], [-3.5535782128926, 40.56314493634827], [-3.5531564020612922, 40.56407951828358], [-3.552773430576307, 40.565023703091], [-3.552429677878309, 40.565976559360934], [-3.5521254847648454, 40.566937147089725], [-3.551861153047895, 40.56790451860589], [-3.5516369452496726, 40.56887771950425], [-3.551453084337011, 40.56985578958654], [-3.5513097534946167, 40.570837763808264], [-3.5512070959374427, 40.57182267323018], [-3.551145214762394, 40.57280954597402], [-3.5511241728395335, 40.57379740818112], [-3.551143992742938, 40.57478528497327], [-3.5512046567212785, 40.575772201414686], [-3.551306106708204, 40.57675718347427], [-3.5514482443725344, 40.57773925898708], [-3.5516309312082406, 40.57871745861413], [-3.5518539886641562, 40.57969081679965], [-3.55211719831332, 40.58065837272466], [-3.552420302061803, 40.58161917125618], [-3.5527630023968477, 40.58257226389081], [-3.5531449626741014, 40.58351670969206], [-3.5535658074436727, 40.5844515762203], [-3.554025122814731, 40.585375940454526], [-3.554522456858304, 40.58628888970484], [-3.555057320047894, 40.58718952251506], [-3.555629185737508, 40.588076949554164], [-3.55623749067665, 40.58895029449607], [-3.556881635561771, 40.58980869488654], [-3.557560985623676, 40.590651302996605], [-3.5582748712502994, 40.59147728666145], [-3.5590225886442615, 40.592285830104174], [-3.559803400514574, 40.59307613474322], [-3.5606165368018057, 40.59384741998316], [-3.561461195436027, 40.5945989239876], [-3.56233654312677, 40.59532990443361], [-3.5632417161842476, 40.596039639247124], [-3.5641758213710166, 40.59672742731812], [-3.5651379367832527, 40.59739258919535], [-3.56612711276076, 40.59803446775947], [-3.567142372824833, 40.59865242887438], [-3.568182714643019, 40.59924586201564], [-3.569247111019852, 40.59981418087565], [-3.5703345109125464, 40.600356823944885], [-3.571443840470667, 40.60087325506861], [-3.572574004098717, 40.601362963978474], [-3.5737238855405975, 40.601825466798516], [-3.5748923489848576, 40.602260306525054], [-3.5760782401896125, 40.602667053479905], [-3.577280387626028, 40.60304530573659], [-3.5784976036392075, 40.603394689519085], [-3.5797286856253203, 40.603714859572506], [-3.580972417223798, 40.60400549950575], [-3.582227569523392, 40.60426632210533], [-3.583492902280881, 40.604497069620365], [-3.5847671651512085, 40.604697514018355], [-3.586049098927804, 40.604867457211455], [-3.587337436791844, 40.60500673125301], [-3.5886309055691896, 40.60511519850428], [-3.589928226993738, 40.60519275177097], [-3.591228118975911, 40.605239314409665], [-3.592529296875, 40.60525484040387] ] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/out/city-segment-obtuse1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-6.030292510986328, 37.35746862390723] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-6.0150146484375, 37.38011551844836], [-5.931415557861328, 37.39702801486944] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.030292510986328, 37.38316512621882], [-6.03130830955381, 37.383152442203745], [-6.03232310462096, 37.38311440268895], [-6.033335893681851, 37.3830510452534], [-6.034345676218368, 37.38296243248732], [-6.035351454691617, 37.38284865193013], [-6.036352235530356, 37.382709815983816], [-6.037347030115435, 37.382546061801406], [-6.03833485575928, 37.38235755115118], [-6.03931473667942, 37.38214447025633], [-6.0402857049650915, 37.38190702961046], [-6.0412468015359595, 37.38164546376901], [-6.042197077091976, 37.38136003111692], [-6.04313559305344, 37.38105101361256], [-6.044061422490312, 37.38071871650848], [-6.044973651039864, 37.38036346804896], [-6.04587137781173, 37.37998561914491], [-6.046753716279467, 37.379585543026245], [-6.047619795157733, 37.379163634872214], [-6.0484687592642095, 37.378720311420025], [-6.0492997703654074, 37.37825601055217], [-6.050112008005508, 37.3777711908627], [-6.05090467031743, 37.37726633120325], [-6.051676974815305, 37.376741930208844], [-6.0524281591675715, 37.37619850580421], [-6.053157481949942, 37.375636594691116], [-6.053864223377462, 37.375056751817056], [-6.054547686014986, 37.374459549825964], [-6.055207195465312, 37.3738455784915], [-6.055842101034343, 37.373215444133365], [-6.056451776372601, 37.372569769017396], [-6.057035620092459, 37.371909190739814], [-6.057593056360492, 37.371234361596535], [-6.058123535464373, 37.37054594793782], [-6.058626534353743, 37.36984462950922], [-6.0591015571545475, 37.36913109877934], [-6.059548135656322, 37.36840606025506], [-6.059965829771967, 37.3676702297849], [-6.060354227969559, 37.3669243338513], [-6.060712947675786, 37.3661691088525], [-6.061041635650621, 37.365405300374626], [-6.0613399683328675, 37.36463366245482], [-6.061607652156257, 37.36385495683615], [-6.0618444238358, 37.36306995221488], [-6.062050050624106, 37.362279423481134], [-6.062224330537456, 37.36148415095337], [-6.0623670925514, 37.36068491960772], [-6.062478196765714, 37.3598825183027], [-6.062557534538556, 37.359077739000305], [-6.062605028589718, 37.35827137598412], [-6.062620633072876, 37.3574642250751], [-6.062604333616796, 37.35665708284616], [-6.062556147335454, 37.35585074583599], [-6.062476122807084, 37.35504600976288], [-6.062364340022205, 37.354243668739834], [-6.0622209103006615, 37.353444514490924], [-6.062045976177816, 37.352649335570426], [-6.061839711259984, 37.35185891658501], [-6.06160232004929, 37.35107403742004], [-6.061334037738124, 37.3502954724705], [-6.061035129973439, 37.349523989877525], [-6.060705892591085, 37.34876035077115], [-6.060346651320522, 37.348005308520094], [-6.0599577614601525, 37.34725960798927], [-6.059539607523658, 37.346523984805756], [-6.059092602857661, 37.3457991646339], [-6.05861718923114, 37.34508586246052], [-6.058113836396971, 37.34438478189046], [-6.057583041626066, 37.34369661445363], [-6.05702532921458, 37.34302203892383], [-6.056441249964653, 37.34236172065045], [-6.0558313806392405, 37.34171631090328], [-6.055196323391549, 37.34108644623126], [-6.054536705169667, 37.34047274783587], [-6.053853177096963, 37.33987582095966], [-6.053146413828881, 37.33929625429056], [-6.05241711288677, 37.33873461938242], [-6.051665993969386, 37.338191470092696], [-6.050893798242781, 37.33766734203739], [-6.050101287609245, 37.33716275206408], [-6.049289243956043, 37.33667819774345], [-6.0484584683846805, 37.33621415687984], [-6.047609780421449, 37.33577108704121], [-6.046744017210029, 37.33534942510912], [-6.045862032686948, 37.33494958684908], [-6.044964696740685, 37.33457196650159], [-6.044052894355279, 37.33421693639459], [-6.043127524739219, 37.33388484657723], [-6.042189500440534, 37.33357602447572], [-6.041239746448891, 37.33329077457146], [-6.040279199285616, 37.33302937810159], [-6.039308806082495, 37.33279209278262], [-6.038329523650277, 37.33257915255698], [-6.037342317537762, 37.332390767363115], [-6.036348161082416, 37.33222712292911], [-6.035348034453405, 37.3320883805901], [-6.03434292368801, 37.331974677129715], [-6.033333819722334, 37.33188612464563], [-6.0323217174172585, 37.33182281043939], [-6.031307614580588, 37.33178479693063], [-6.030292510986328, 37.331772121595634], [-6.029277407392067, 37.33178479693063], [-6.028263304555397, 37.33182281043939], [-6.027251202250321, 37.33188612464563], [-6.026242098284645, 37.331974677129715], [-6.025236987519251, 37.3320883805901], [-6.024236860890239, 37.33222712292911], [-6.023242704434893, 37.332390767363115], [-6.022255498322378, 37.33257915255698], [-6.02127621589016, 37.33279209278262], [-6.020305822687039, 37.33302937810159], [-6.019345275523763, 37.33329077457146], [-6.018395521532121, 37.33357602447572], [-6.017457497233435, 37.33388484657723], [-6.016532127617376, 37.33421693639459], [-6.0156203252319695, 37.33457196650159], [-6.0147229892857075, 37.33494958684908], [-6.013841004762625, 37.33534942510912], [-6.012975241551205, 37.33577108704121], [-6.012126553587974, 37.33621415687984], [-6.0112957780166125, 37.33667819774345], [-6.010483734363411, 37.33716275206408], [-6.009691223729875, 37.33766734203739], [-6.008919028003269, 37.338191470092696], [-6.008167909085885, 37.33873461938242], [-6.007438608143773, 37.33929625429056], [-6.006731844875692, 37.33987582095966], [-6.006048316802987, 37.34047274783587], [-6.005388698581106, 37.34108644623126], [-6.004753641333415, 37.34171631090328], [-6.004143772008002, 37.34236172065045], [-6.003559692758074, 37.34302203892383], [-6.003001980346588, 37.34369661445363], [-6.0024711855756845, 37.34438478189046], [-6.001967832741514, 37.34508586246052], [-6.001492419114993, 37.3457991646339], [-6.001045414448998, 37.346523984805756], [-6.000627260512502, 37.34725960798927], [-6.000238370652132, 37.348005308520094], [-5.9998791293815685, 37.34876035077115], [-5.999549891999217, 37.349523989877525], [-5.99925098423453, 37.3502954724705], [-5.9989827019233655, 37.35107403742004], [-5.99874531071267, 37.35185891658501], [-5.998539045794839, 37.352649335570426], [-5.998364111671993, 37.353444514490924], [-5.9982206819504515, 37.354243668739834], [-5.9981088991655716, 37.35504600976288], [-5.998028874637201, 37.35585074583599], [-5.997980688355859, 37.35665708284616], [-5.997964388899779, 37.3574642250751], [-5.997979993382938, 37.35827137598412], [-5.998027487434099, 37.359077739000305], [-5.998106825206941, 37.3598825183027], [-5.998217929421255, 37.36068491960772], [-5.9983606914352, 37.36148415095337], [-5.998534971348549, 37.362279423481134], [-5.9987405981368545, 37.36306995221488], [-5.998977369816397, 37.36385495683615], [-5.999245053639788, 37.36463366245482], [-5.999543386322034, 37.365405300374626], [-5.999872074296869, 37.3661691088525], [-6.000230794003096, 37.3669243338513], [-6.000619192200688, 37.3676702297849], [-6.001036886316333, 37.36840606025506], [-6.001483464818108, 37.36913109877934], [-6.0019584876189125, 37.36984462950922], [-6.002461486508283, 37.37054594793782], [-6.002991965612163, 37.371234361596535], [-6.003549401880195, 37.371909190739814], [-6.0041332456000545, 37.372569769017396], [-6.004742920938312, 37.373215444133365], [-6.005377826507343, 37.3738455784915], [-6.006037335957668, 37.374459549825964], [-6.006720798595192, 37.375056751817056], [-6.0074275400227135, 37.375636594691116], [-6.008156862805084, 37.37619850580421], [-6.00890804715735, 37.376741930208844], [-6.0096803516552235, 37.37726633120325], [-6.010473013967147, 37.3777711908627], [-6.011285251607249, 37.37825601055217], [-6.012116262708446, 37.378720311420025], [-6.012965226814923, 37.379163634872214], [-6.013831305693189, 37.379585543026245], [-6.014713644160925, 37.37998561914491], [-6.01561137093279, 37.38036346804896], [-6.016523599482343, 37.38071871650848], [-6.017449428919215, 37.38105101361256], [-6.018387944880679, 37.38136003111692], [-6.019338220436696, 37.38164546376901], [-6.020299317007563, 37.38190702961046], [-6.021270285293236, 37.38214447025633], [-6.022250166213375, 37.38235755115118], [-6.023237991857219, 37.382546061801406], [-6.0242327864423, 37.382709815983816], [-6.025233567281038, 37.38284865193013], [-6.026239345754287, 37.38296243248732], [-6.027249128290803, 37.3830510452534], [-6.028261917351695, 37.38311440268895], [-6.029276712418845, 37.383152442203745], [-6.030292510986328, 37.38316512621882] ] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/out/city-segment-obtuse2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-6.025829315185546, 37.40902811697313] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-6.0150146484375, 37.38011551844836], [-5.932445526123047, 37.36770150115655] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-6.025829315185546, 37.43919034471164], [-6.027022538664795, 37.439175455478455], [-6.028214583153766, 37.43913080249053], [-6.029404270831328, 37.4390564298682], [-6.030590426213467, 37.438952411096736], [-6.031771877318906, 37.438818848953474], [-6.032947456831202, 37.43865587540591], [-6.03411600325615, 37.438463651480795], [-6.035276362073334, 37.438242367104564], [-6.036427386880657, 37.43799224091489], [-6.037567940530723, 37.437713520043985], [-6.038696896257897, 37.437406479873545], [-6.039813138794942, 37.4370714237617], [-6.040915565478098, 37.43670868274233], [-6.042003087339489, 37.43631861519681], [-6.0430746301857825, 37.435901606498845], [-6.044129135661999, 37.43545806863238], [-6.045165562299424, 37.434988439783304], [-6.0461828865465685, 37.434493183905204], [-6.047180103782144, 37.43397279025949], [-6.04815622930905, 37.43342777293063], [-6.04911029932837, 37.432858670316705], [-6.050041371892426, 37.43226604459602], [-6.050948527835923, 37.431650481170145], [-6.051830871684267, 37.431012588083995], [-6.052687532538162, 37.43035299542358], [-6.053517664933592, 37.42967235469195], [-6.054320449676364, 37.428971338164004], [-6.055095094650355, 37.42825063822083], [-6.055840835598697, 37.427510966664165], [-6.05655693687711, 37.426753054011705], [-6.057242692178651, 37.425977648774094], [-6.057897425229177, 37.42518551671394], [-6.058520490452821, 37.42437744008814], [-6.059111273606854, 37.423554216873775], [-6.059669192385302, 37.42271665997863], [-6.060193696990734, 37.42186559643703], [-6.060684270673682, 37.421001866591816], [-6.061140430239141, 37.42012632326326], [-6.061561726519708, 37.41923983090584], [-6.061947744814865, 37.41834326475341], [-6.062298105296017, 37.41743750995409], [-6.062612463376887, 37.416523460695394], [-6.062890510048926, 37.4156020193204], [-6.063131972181429, 37.41467409543624], [-6.063336612786067, 37.413740605015334], [-6.063504231245609, 37.41280246949063], [-6.063634663506621, 37.41186061484546], [-6.063727782235971, 37.410915970699115], [-6.063783496941012, 37.40996946938892], [-6.063801754053342, 37.409022045049824], [-6.063782536976082, 37.40807463269228], [-6.063725866094652, 37.407128167279446], [-6.06363179875104, 37.4061835828046], [-6.063500429181638, 37.40524181136959], [-6.063331888418702, 37.40430378226528], [-6.063126344155573, 37.403370421055044], [-6.062884000575809, 37.40244264866187], [-6.062605098146403, 37.40152138046032], [-6.062289913375343, 37.40060752537409], [-6.061938758533745, 37.39970198497998], [-6.061551981342862, 37.3988056526193], [-6.0611299646263035, 37.39791941251752], [-6.060673125927819, 37.39704413891295], [-6.060181917095039, 37.39618069519561], [-6.059656823829613, 37.39532993305653], [-6.059098365204186, 37.394492691649084], [-6.058507093146716, 37.3936697967625], [-6.057883591892659, 37.3928620600088], [-6.057228477405558, 37.39207027802373], [-6.0565423967666385, 37.391295231682626], [-6.055826027534007, 37.3905376853317], [-6.0550800770720965, 37.38979838603595], [-6.054305281852048, 37.389078062843936], [-6.053502406723686, 37.38837742607055], [-6.052672244159845, 37.38769716659812], [-6.051815613473786, 37.38703795519694], [-6.050933360010464, 37.38640044186537], [-6.050026354312475, 37.385785255190704], [-6.049095491261464, 37.385193001731004], [-6.048141689195878, 37.384624265418694], [-6.047165889005906, 37.38407960698644], [-6.046169053206509, 37.383559563415936], [-6.045152164989438, 37.38306464741005], [-6.044116227255172, 37.3825953468889], [-6.043062261625723, 37.38215212451027], [-6.041991307439279, 37.38173541721498], [-6.0409044207276485, 37.381345635797494], [-6.039802673177518, 37.38098316450227], [-6.038687151076536, 37.38064836064622], [-6.037558954245232, 37.38034155426768], [-6.036419194955824, 37.38006304780211], [-6.035268996838968, 37.37981311578506], [-6.034109493779491, 37.379592004582406], [-6.032941828802199, 37.379399932148395], [-6.031767152948839, 37.37923708781159], [-6.030586624147282, 37.379103632088814], [-6.029401406074055, 37.37899969652756], [-6.028212667011306, 37.37892538357678], [-6.027021578699291, 37.37888076648625], [-6.025829315185546, 37.37886588923462], [-6.024637051671802, 37.37888076648625], [-6.023445963359788, 37.37892538357678], [-6.022257224297037, 37.37899969652756], [-6.021072006223811, 37.379103632088814], [-6.019891477422254, 37.37923708781159], [-6.018716801568893, 37.379399932148395], [-6.017549136591602, 37.379592004582406], [-6.016389633532126, 37.37981311578506], [-6.015239435415268, 37.38006304780211], [-6.014099676125862, 37.38034155426768], [-6.012971479294556, 37.38064836064622], [-6.011855957193574, 37.38098316450227], [-6.010754209643445, 37.381345635797494], [-6.009667322931814, 37.38173541721498], [-6.00859636874537, 37.38215212451027], [-6.007542403115921, 37.3825953468889], [-6.006506465381655, 37.38306464741005], [-6.0054895771645835, 37.383559563415936], [-6.004492741365187, 37.38407960698644], [-6.0035169411752145, 37.384624265418694], [-6.002563139109628, 37.385193001731004], [-6.001632276058617, 37.385785255190704], [-6.000725270360628, 37.38640044186537], [-5.999843016897308, 37.38703795519694], [-5.998986386211247, 37.38769716659812], [-5.998156223647406, 37.38837742607055], [-5.997353348519044, 37.389078062843936], [-5.9965785532989955, 37.38979838603595], [-5.995832602837087, 37.3905376853317], [-5.9951162336044534, 37.391295231682626], [-5.994430152965535, 37.39207027802373], [-5.993775038478433, 37.3928620600088], [-5.993151537224376, 37.3936697967625], [-5.992560265166906, 37.394492691649084], [-5.99200180654148, 37.39532993305653], [-5.991476713276054, 37.39618069519561], [-5.990985504443273, 37.39704413891295], [-5.99052866574479, 37.39791941251752], [-5.99010664902823, 37.3988056526193], [-5.989719871837347, 37.39970198497998], [-5.98936871699575, 37.40060752537409], [-5.989053532224689, 37.40152138046032], [-5.988774629795283, 37.40244264866187], [-5.988532286215519, 37.403370421055044], [-5.988326741952391, 37.40430378226528], [-5.988158201189456, 37.40524181136959], [-5.9880268316200524, 37.4061835828046], [-5.987932764276441, 37.407128167279446], [-5.98787609339501, 37.40807463269228], [-5.987856876317751, 37.409022045049824], [-5.98787513343008, 37.40996946938892], [-5.9879308481351226, 37.410915970699115], [-5.988023966864472, 37.41186061484546], [-5.988154399125484, 37.41280246949063], [-5.988322017585027, 37.413740605015334], [-5.988526658189664, 37.41467409543624], [-5.988768120322167, 37.4156020193204], [-5.989046166994205, 37.416523460695394], [-5.989360525075075, 37.41743750995409], [-5.989710885556227, 37.41834326475341], [-5.990096903851385, 37.41923983090584], [-5.990518200131953, 37.42012632326326], [-5.990974359697412, 37.421001866591816], [-5.991464933380358, 37.42186559643703], [-5.991989437985791, 37.42271665997863], [-5.992547356764239, 37.423554216873775], [-5.993138139918273, 37.42437744008814], [-5.993761205141915, 37.42518551671394], [-5.994415938192442, 37.425977648774094], [-5.995101693493983, 37.426753054011705], [-5.995817794772396, 37.427510966664165], [-5.996563535720737, 37.42825063822083], [-5.997338180694729, 37.428971338164004], [-5.998140965437501, 37.42967235469195], [-5.998971097832931, 37.43035299542358], [-5.999827758686825, 37.431012588083995], [-6.00071010253517, 37.431650481170145], [-6.001617258478667, 37.43226604459602], [-6.002548331042724, 37.432858670316705], [-6.003502401062043, 37.43342777293063], [-6.004478526588948, 37.43397279025949], [-6.005475743824523, 37.434493183905204], [-6.006493068071668, 37.434988439783304], [-6.007529494709093, 37.43545806863238], [-6.0085840001853095, 37.435901606498845], [-6.009655543031603, 37.43631861519681], [-6.010743064892996, 37.43670868274233], [-6.0118454915761514, 37.4370714237617], [-6.012961734113197, 37.437406479873545], [-6.014090689840369, 37.437713520043985], [-6.015231243490436, 37.43799224091489], [-6.016382268297759, 37.438242367104564], [-6.017542627114943, 37.438463651480795], [-6.0187111735398915, 37.43865587540591], [-6.019886753052187, 37.438818848953474], [-6.021068204157626, 37.438952411096736], [-6.022254359539764, 37.4390564298682], [-6.023444047217326, 37.43913080249053], [-6.024636091706297, 37.439175455478455], [-6.025829315185546, 37.43919034471164] ] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/out/city-segment-projected1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-5.914421081542969, 37.426343057829385] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-6.0150146484375, 37.38011551844836], [-5.931415557861328, 37.39702801486944] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-5.914421081542969, 37.45861661850955], [-5.9156981613235216, 37.4586006865878], [-5.916973979150023, 37.45855290656579], [-5.918247274320263, 37.45847332565762], [-5.919516788634464, 37.45836202250139], [-5.920781267643333, 37.45821910708124], [-5.922039461892358, 37.45804472061821], [-5.923290128161051, 37.45783903543016], [-5.924532030695936, 37.45760225476089], [-5.9257639424359985, 37.45733461257847], [-5.9269846462293945, 37.45703637334325], [-5.928192936040182, 37.45670783174549], [-5.929387618143863, 37.45634931241319], [-5.930567512310536, 37.45596116959006], [-5.931731452974474, 37.45554378678429], [-5.932878290388951, 37.455097576388226], [-5.93400689176516, 37.45462297926948], [-5.935116142394085, 37.45412046433385], [-5.9362049467502, 37.45359052806039], [-5.937272229575885, 37.45303369400929], [-5.938316936945503, 37.45245051230288], [-5.939338037308039, 37.451841559080385], [-5.940334522507286, 37.45120743592693], [-5.941305408778563, 37.450548769277404], [-5.94224973772096, 37.44986620979572], [-5.943166577244161, 37.449160431730185], [-5.94405502248889, 37.44843213224554], [-5.94491419672009, 37.447682030732395], [-5.945743252191925, 37.44691086809471], [-5.946541370983794, 37.446119406016074], [-5.947307765806477, 37.44530842620549], [-5.948041680777687, 37.44447872962344], [-5.948742392166209, 37.44363113568893], [-5.949409209103936, 37.442766481468496], [-5.9500414742651015, 37.44188562084772], [-5.950638564512035, 37.44098942368629], [-5.951199891506828, 37.440078774957364], [-5.951724902288318, 37.439154573872095], [-5.952213079813833, 37.438217732990175], [-5.952663943465171, 37.437269177317404], [-5.953077049518353, 37.43630984339094], [-5.953451991576677, 37.43534067835341], [-5.953788400966687, 37.43436263901666], [-5.954085947096673, 37.43337669091599], [-5.9543443377773775, 37.43238380735607], [-5.954563319504606, 37.4313849684492], [-5.954742677703498, 37.43038116014709], [-5.95488223693422, 37.429373373266976], [-5.954981861058927, 37.428362602513054], [-5.955041453369832, 37.42734984549435], [-5.955060956678292, 37.42633610173975], [-5.955040353364841, 37.42532237171141], [-5.954979665390156, 37.42430965581727], [-5.954878954266962, 37.423298953423945], [-5.954738320992929, 37.422291261870654], [-5.954557905944654, 37.4212875754854], [-5.954337888732868, 37.42028888460427], [-5.954078488019017, 37.41929617459477], [-5.953779961293428, 37.41831042488428], [-5.9534426046153195, 37.417332607994524], [-5.9530667523149114, 37.416363688582905], [-5.952652776657971, 37.4154046224919], [-5.9522010874731235, 37.41445635580709], [-5.951712131742356, 37.41351982392514], [-5.951186393155085, 37.41259595063239], [-5.950624391626306, 37.41168564719487], [-5.950026682779258, 37.41078981146104], [-5.949393857393182, 37.409909326977655], [-5.948726540816703, 37.40904506211996], [-5.9480253923474375, 37.4081978692369], [-5.947291104578452, 37.40736858381226], [-5.946524402712225, 37.40655802364238], [-5.9457260438428134, 37.40576698803164], [-5.944896816206914, 37.404996257005934], [-5.944037538404586, 37.40424659054549], [-5.943149058590417, 37.40351872783732], [-5.942232253635899, 37.402813386548274], [-5.941288028263885, 37.40213126211933], [-5.940317314155952, 37.40147302708185], [-5.939321069033563, 37.400839330396366], [-5.938300275713931, 37.40023079681469], [-5.937255941141505, 37.39964802626582], [-5.936189095396044, 37.39909159326633], [-5.935100790678236, 37.39856204635577], [-5.933992100273856, 37.398059907557716], [-5.932864117497483, 37.39758567186676], [-5.931717954616803, 37.39713980676229], [-5.9305547417585505, 37.396722751749245], [-5.929375625797132, 37.396334917926296], [-5.928181769227054, 37.39597668758216], [-5.926974349020215, 37.395648413820055], [-5.92575455546918, 37.39535042021093], [-5.924523591017582, 37.39508300047568], [-5.923282669078745, 37.394846418196764], [-5.922033012843719, 37.39464090655928], [-5.920775854079835, 37.39446666812213], [-5.919512431920988, 37.394323874618934], [-5.918243991650785, 37.39421266678963], [-5.9169717834797515, 37.39413315424211], [-5.915697061317774, 37.39408541534472], [-5.914421081542969, 37.394069497149225], [-5.913145101768163, 37.39408541534472], [-5.911870379606186, 37.39413315424211], [-5.9105981714351525, 37.39421266678963], [-5.9093297311649495, 37.394323874618934], [-5.908066309006103, 37.39446666812213], [-5.9068091502422195, 37.39464090655928], [-5.905559494007192, 37.394846418196764], [-5.904318572068356, 37.39508300047568], [-5.903087607616757, 37.39535042021093], [-5.9018678140657235, 37.395648413820055], [-5.9006603938588835, 37.39597668758216], [-5.899466537288806, 37.396334917926296], [-5.898287421327387, 37.396722751749245], [-5.897124208469133, 37.39713980676229], [-5.895978045588456, 37.39758567186676], [-5.894850062812082, 37.398059907557716], [-5.893741372407701, 37.39856204635577], [-5.892653067689893, 37.39909159326633], [-5.891586221944434, 37.39964802626582], [-5.890541887372007, 37.40023079681469], [-5.889521094052374, 37.400839330396366], [-5.888524848929986, 37.40147302708185], [-5.887554134822053, 37.40213126211933], [-5.886609909450039, 37.402813386548274], [-5.8856931044955205, 37.40351872783732], [-5.884804624681351, 37.40424659054549], [-5.883945346879025, 37.404996257005934], [-5.883116119243124, 37.40576698803164], [-5.882317760373713, 37.40655802364238], [-5.881551058507486, 37.40736858381226], [-5.880816770738501, 37.4081978692369], [-5.880115622269235, 37.40904506211996], [-5.879448305692755, 37.409909326977655], [-5.87881548030668, 37.41078981146104], [-5.8782177714596315, 37.41168564719487], [-5.877655769930851, 37.41259595063239], [-5.877130031343582, 37.41351982392514], [-5.876641075612814, 37.41445635580709], [-5.876189386427967, 37.4154046224919], [-5.875775410771025, 37.416363688582905], [-5.875399558470619, 37.417332607994524], [-5.875062201792509, 37.41831042488428], [-5.87476367506692, 37.41929617459477], [-5.874504274353068, 37.42028888460427], [-5.874284257141284, 37.4212875754854], [-5.874103842093009, 37.422291261870654], [-5.873963208818975, 37.423298953423945], [-5.873862497695782, 37.42430965581727], [-5.8738018097210976, 37.42532237171141], [-5.873781206407646, 37.42633610173975], [-5.873800709716105, 37.42734984549435], [-5.873860302027011, 37.428362602513054], [-5.873959926151718, 37.429373373266976], [-5.87409948538244, 37.43038116014709], [-5.874278843581331, 37.4313849684492], [-5.874497825308561, 37.43238380735607], [-5.874756215989264, 37.43337669091599], [-5.875053762119251, 37.43436263901666], [-5.87539017150926, 37.43534067835341], [-5.875765113567583, 37.43630984339094], [-5.876178219620766, 37.437269177317404], [-5.876629083272104, 37.438217732990175], [-5.877117260797618, 37.439154573872095], [-5.87764227157911, 37.440078774957364], [-5.878203598573903, 37.44098942368629], [-5.878800688820835, 37.44188562084772], [-5.879432953982002, 37.442766481468496], [-5.8800997709197285, 37.44363113568893], [-5.88080048230825, 37.44447872962344], [-5.88153439727946, 37.44530842620549], [-5.882300792102144, 37.446119406016074], [-5.883098910894013, 37.44691086809471], [-5.883927966365848, 37.447682030732395], [-5.884787140597046, 37.44843213224554], [-5.885675585841776, 37.449160431730185], [-5.886592425364978, 37.44986620979572], [-5.8875367543073756, 37.450548769277404], [-5.888507640578652, 37.45120743592693], [-5.889504125777899, 37.451841559080385], [-5.890525226140434, 37.45245051230288], [-5.891569933510052, 37.45303369400929], [-5.892637216335737, 37.45359052806039], [-5.893726020691852, 37.45412046433385], [-5.894835271320778, 37.45462297926948], [-5.895963872696988, 37.455097576388226], [-5.8971107101114635, 37.45554378678429], [-5.898274650775402, 37.45596116959006], [-5.899454544942074, 37.45634931241319], [-5.900649227045755, 37.45670783174549], [-5.901857516856542, 37.45703637334325], [-5.90307822064994, 37.45733461257847], [-5.904310132390001, 37.45760225476089], [-5.905552034924886, 37.45783903543016], [-5.90680270119358, 37.45804472061821], [-5.908060895442604, 37.45821910708124], [-5.909325374451473, 37.45836202250139], [-5.910594888765673, 37.45847332565762], [-5.9118681839359155, 37.45855290656579], [-5.913144001762415, 37.4586006865878], [-5.914421081542969, 37.45861661850955] ] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/out/city-segment-projected2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-5.926437377929687, 37.32785364060672] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-6.0150146484375, 37.38011551844836], [-5.9326171875, 37.364972870329154] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-5.9264373779296875, 37.36529657323715], [-5.927917167401966, 37.36527808819801], [-5.929395494316153, 37.36522265135043], [-5.93087089756617, 37.365130317485686], [-5.932341918948486, 37.365001177862155], [-5.9338071046097385, 37.36483536011469], [-5.935265006489939, 37.36463302812794], [-5.936714183759838, 37.36439438187362], [-5.938153204250984, 37.364119657212], [-5.939580645877028, 37.3638091256578], [-5.940995098044851, 37.36346309411066], [-5.942395163054089, 37.363081904550505], [-5.94377945748363, 37.36266593369816], [-5.9451466135637165, 37.36221559264139], [-5.946495280532236, 37.36173132642701], [-5.947824125973868, 37.361213613619206], [-5.9491318371407145, 37.360662965824666], [-5.950417122253115, 37.360079927184984], [-5.951678711779314, 37.35946507383683], [-5.952915359692725, 37.358819013340366], [-5.954125844705508, 37.358142384076636], [-5.955308971477248, 37.35743585461441], [-5.956463571797519, 37.356700123047105], [-5.957588505741158, 37.35593591630066], [-5.958682662795084, 37.35514398941263], [-5.959744962955587, 37.35432512478386], [-5.96077435779493, 37.35348013140274], [-5.9617698314962775, 37.35260984404356], [-5.962730401855888, 37.351715122439174], [-5.963655121251576, 37.35079685042912], [-5.9645430775765425, 37.34985593508408], [-5.96539339513759, 37.34889330580725], [-5.966205235516892, 37.34790991341392], [-5.96697779839646, 37.3469067291899], [-5.967710322344505, 37.34588474392978], [-5.968402085562936, 37.344844966956174], [-5.9690524065952575, 37.34378842512062], [-5.969660644994228, 37.342716161787386], [-5.970226201948571, 37.34162923580113], [-5.9707485208682165, 37.340528720439345], [-5.971227087927456, 37.33941570235075], [-5.971661432565544, 37.3382912804807], [-5.972051127944247, 37.337156564984475], [-5.9723957913619286, 37.33601267612981], [-5.972695084623806, 37.334860743189665], [-5.972948714367993, 37.33370190332609], [-5.973156432347111, 37.332537300466754], [-5.973318035665146, 37.3313680841748], [-5.973433366969406, 37.33019540851349], [-5.973502314597395, 37.32902043090646], [-5.973524812678497, 37.327844310995026], [-5.973500841190409, 37.326668209493434], [-5.9734304259702915, 37.32549328704328], [-5.973313638680668, 37.32432070306821], [-5.973150596730132, 37.32315161463002], [-5.972941463148997, 37.32198717528738], [-5.972686446420004, 37.32082853395811], [-5.972385800264322, 37.319676833786346], [-5.972039823383082, 37.318533211015534], [-5.971648859154708, 37.31739879386851], [-5.971213295288397, 37.31627470143555], [-5.970733563434119, 37.31516204257184], [-5.970210138749531, 37.314061914805], [-5.969643539424289, 37.31297540325411], [-5.969034326162228, 37.31190357956107], [-5.968383101621958, 37.31084750083548], [-5.967690509816463, 37.30980820861393], [-5.966957235472291, 37.30878672783487], [-5.966184003349009, 37.30778406582995], [-5.965371577519612, 37.30680121133281], [-5.964520760612595, 37.30583913350643], [-5.963632393016484, 37.30489878098978], [-5.962707352047579, 37.303981080964824], [-5.961746551081793, 37.30308693824488], [-5.960750938651412, 37.302217234384905], [-5.9597214975076875, 37.30137282681494], [-5.9586592436502075, 37.30055454799734], [-5.957565225323975, 37.299763204608595], [-5.956440521985221, 37.2989995767467], [-5.955286243236935, 37.29826441716465], [-5.954103527735191, 37.29755845053101], [-5.952893542067328, 37.29688237271796], [-5.951657479603083, 37.29623685011795], [-5.950396559319795, 37.295622518989205], [-5.949112024602865, 37.29503998483091], [-5.947805142022583, 37.29448982178878], [-5.94647720008856, 37.2939725720913], [-5.945129507982961, 37.29348874551747], [-5.943763394273772, 37.29303881889644], [-5.942380205609345, 37.29262323563939], [-5.940981305395484, 37.29224240530448], [-5.9395680724563835, 37.29189670319478], [-5.9381418996806685, 37.29158646999011], [-5.93670419265388, 37.29131201141263], [-5.935256368278718, 37.29107359792697], [-5.933799853384372, 37.29087146447476], [-5.932336083326286, 37.29070581024419], [-5.9308665005777, 37.290576798474575], [-5.929392553314344, 37.290484556296185], [-5.927915693993622, 37.290429174605556], [-5.9264373779296875, 37.29041070797629], [-5.924959061865752, 37.290429174605556], [-5.923482202545031, 37.290484556296185], [-5.922008255281674, 37.290576798474575], [-5.920538672533088, 37.29070581024419], [-5.9190749024750025, 37.29087146447476], [-5.9176183875806565, 37.29107359792697], [-5.916170563205494, 37.29131201141263], [-5.914732856178706, 37.29158646999011], [-5.913306683402991, 37.29189670319478], [-5.911893450463889, 37.29224240530448], [-5.9104945502500295, 37.29262323563939], [-5.909111361585602, 37.29303881889644], [-5.907745247876412, 37.29348874551747], [-5.906397555770814, 37.2939725720913], [-5.90506961383679, 37.29448982178878], [-5.903762731256509, 37.29503998483091], [-5.902478196539579, 37.295622518989205], [-5.9012172762562916, 37.29623685011795], [-5.899981213792047, 37.29688237271796], [-5.8987712281241835, 37.29755845053101], [-5.897588512622439, 37.29826441716465], [-5.896434233874153, 37.2989995767467], [-5.895309530535397, 37.299763204608595], [-5.894215512209167, 37.30055454799734], [-5.893153258351687, 37.30137282681494], [-5.892123817207962, 37.302217234384905], [-5.891128204777582, 37.30308693824488], [-5.890167403811796, 37.303981080964824], [-5.889242362842891, 37.30489878098978], [-5.888353995246778, 37.30583913350643], [-5.887503178339762, 37.30680121133281], [-5.886690752510365, 37.30778406582995], [-5.885917520387083, 37.30878672783487], [-5.885184246042911, 37.30980820861393], [-5.884491654237416, 37.31084750083548], [-5.8838404296971465, 37.31190357956107], [-5.883231216435085, 37.31297540325411], [-5.882664617109843, 37.314061914805], [-5.882141192425256, 37.31516204257184], [-5.881661460570976, 37.31627470143555], [-5.881225896704666, 37.31739879386851], [-5.880834932476291, 37.318533211015534], [-5.880488955595052, 37.319676833786346], [-5.88018830943937, 37.32082853395811], [-5.879933292710377, 37.32198717528738], [-5.879724159129243, 37.32315161463002], [-5.879561117178707, 37.32432070306821], [-5.879444329889082, 37.32549328704328], [-5.879373914668965, 37.326668209493434], [-5.879349943180877, 37.327844310995026], [-5.879372441261979, 37.32902043090646], [-5.879441388889968, 37.33019540851349], [-5.879556720194228, 37.3313680841748], [-5.879718323512263, 37.332537300466754], [-5.879926041491381, 37.33370190332609], [-5.8801796712355685, 37.334860743189665], [-5.880478964497446, 37.33601267612981], [-5.880823627915127, 37.337156564984475], [-5.88121332329383, 37.3382912804807], [-5.881647667931918, 37.33941570235075], [-5.882126234991158, 37.340528720439345], [-5.882648553910803, 37.34162923580113], [-5.883214110865146, 37.342716161787386], [-5.883822349264116, 37.34378842512062], [-5.884472670296439, 37.344844966956174], [-5.885164433514869, 37.34588474392978], [-5.885896957462914, 37.3469067291899], [-5.886669520342482, 37.34790991341392], [-5.887481360721784, 37.34889330580725], [-5.888331678282832, 37.34985593508408], [-5.889219634607797, 37.35079685042912], [-5.890144354003486, 37.351715122439174], [-5.891104924363095, 37.35260984404356], [-5.892100398064444, 37.35348013140274], [-5.893129792903787, 37.35432512478386], [-5.89419209306429, 37.35514398941263], [-5.895286250118216, 37.35593591630066], [-5.896411184061853, 37.356700123047105], [-5.8975657843821265, 37.35743585461441], [-5.8987489111538665, 37.358142384076636], [-5.899959396166649, 37.358819013340366], [-5.901196044080059, 37.35946507383683], [-5.902457633606259, 37.360079927184984], [-5.90374291871866, 37.360662965824666], [-5.9050506298855066, 37.361213613619206], [-5.906379475327138, 37.36173132642701], [-5.907728142295658, 37.36221559264139], [-5.909095298375744, 37.36266593369816], [-5.910479592805285, 37.363081904550505], [-5.911879657814523, 37.36346309411066], [-5.913294109982346, 37.3638091256578], [-5.91472155160839, 37.364119657212], [-5.916160572099535, 37.36439438187362], [-5.9176097493694355, 37.36463302812794], [-5.919067651249636, 37.36483536011469], [-5.920532836910888, 37.365001177862155], [-5.922003858293204, 37.365130317485686], [-5.923479261543221, 37.36522265135043], [-5.924957588457408, 37.36527808819801], [-5.9264373779296875, 37.36529657323715] ] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/out/distances.json ================================================ { "city-line1": 0.9993988759, "city-line2": 3.5827706171, "city-segment-inside1": 1.1444315439, "city-segment-inside2": 0.9974854079, "city-segment-inside3": 3.497089823, "city-segment-obtuse1": 2.8573246363, "city-segment-obtuse2": 3.3538913334, "city-segment-projected1": 3.5886611693, "city-segment-projected2": 4.163469898, "issue-1156": 189.0688049313, "line-fiji": 26.8418623324, "line-resolute-bay": 424.8707545895, "line1": 25.6934928869, "line2": 188.0655411712, "segment-fiji": 27.3835094108, "segment1": 69.0934195756, "segment1a": 69.0934195756, "segment2": 69.0934195756, "segment3": 69.0828960461, "segment4": 340.7276874254 } ================================================ FILE: packages/turf-point-to-line-distance/test/out/issue-1156.geojson ================================================ { "type": "FeatureCollection", "properties": { "units": "meters", "mercator": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [11.028348, 41] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [10.983200073242188, 40.97075154073346], [11.02834701538086, 40.98372150040732], [11.02508544921875, 41.00716631272605], [10.994186401367188, 41.01947819666632] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [11.028348, 41.0017003342642], [11.028277230834616, 41.00169949523024], [11.028206531515254, 41.00169697895645], [11.028135971818989, 41.001692787926295], [11.028065621385055, 41.00168692627613], [11.027995549646116, 41.00167939979112], [11.027925825759704, 41.0016702158996], [11.02785651853996, 41.00165938366561], [11.027787696389709, 41.00164691378012], [11.02771942723291, 41.00163281855028], [11.027651778447632, 41.00161711188745], [11.02758481679953, 41.00159980929333], [11.027518608375937, 41.001580927844756], [11.027453218520622, 41.001560486176786], [11.027388711769305, 41.00153850446432], [11.027325151785929, 41.001515004402194], [11.027262601299839, 41.00149000918372], [11.027201122043847, 41.00146354347787], [11.02714077469331, 41.001435633404824], [11.027081618806228, 41.00140630651031], [11.027023712764466, 41.00137559173829], [11.026967113716129, 41.00134351940245], [11.026911877519144, 41.00131012115626], [11.026858058686155, 41.001275429961765], [11.026805710330695, 41.001239480056995], [11.026754884114778, 41.00120230692219], [11.026705630197913, 41.00116394724479], [11.0266579971876, 41.001124438883195], [11.026612032091357, 41.001083820829436], [11.026567780270343, 41.001042133170614], [11.026525285394584, 41.00099941704943], [11.02648458939988, 41.0009557146235], [11.026445732446435, 41.000911069023736], [11.02640875287923, 41.000865524311834], [11.02637368719017, 41.00081912543677], [11.02634056998211, 41.00077191819035], [11.026309433934703, 41.00072394916212], [11.026280309772153, 41.000675265693346], [11.026253226232916, 41.00062591583025], [11.026228210041356, 41.00057594827664], [11.026205285881383, 41.0005254123458], [11.026184476372103, 41.00047435791185], [11.02616580204552, 41.00042283536049], [11.02614928132629, 41.000370895539305], [11.026134930513553, 41.00031858970754], [11.026122763764869, 41.000265969485554], [11.026112793082268, 41.00021308680384], [11.026105028300417, 41.000159993851796], [11.02609947707695, 41.0001067430262], [11.026096144884914, 41.00005338687949], [11.026095035007401, 40.99999997806796], [11.026096148534329, 40.999946569299695], [11.026099484361378, 40.999893213282654], [11.02610503919111, 40.99983996267259], [11.026112807536244, 40.999786870021104], [11.026122781725087, 40.999733987723786], [11.026134951909128, 40.99968136796851], [11.026149306072785, 40.999629062683944], [11.026165830045276, 40.999577123488265], [11.02618450751461, 40.99952560163826], [11.026205320043744, 40.99947454797874], [11.026228247088746, 40.99942401289238], [11.02625326601912, 40.999374046249926], [11.026280352140157, 40.99932469736109], [11.026309478717302, 40.999276014925826], [11.026340617002566, 40.99922804698627], [11.026373736262912, 40.99918084087941], [11.026408803810591, 40.99913444319027], [11.026445785035417, 40.999088899706], [11.026484643438932, 40.99904425537072], [11.026525340670442, 40.99900055424114], [11.026567836564858, 40.998957839443044], [11.026612089182363, 40.99891615312887], [11.026658054849777, 40.99887553643594], [11.026705688203704, 40.99883602944604], [11.026754942235257, 40.99879767114576], [11.026805768336484, 40.998760499388084], [11.026858116348336, 40.99872455085501], [11.02691193461015, 40.99868986102135], [11.026967170010643, 40.998656464119776], [11.027023768040324, 40.998624393107036], [11.027081672845283, 40.99859367963135], [11.02714082728229, 40.998564354001324], [11.027201172975209, 40.998536445155935], [11.02726265037258, 40.998509980636], [11.02732519880638, 40.99848498655709], [11.027388756551902, 40.99846148758363], [11.027453260888628, 40.998439506904674], [11.027518648162143, 40.998419066210964], [11.027584853846918, 40.99840018567355], [11.027651812609992, 40.998382883923895], [11.027719458375417, 40.9983671780355], [11.027787724389459, 40.99835308350702], [11.027856543286457, 40.99834061424704], [11.027925847155277, 40.99832978256025], [11.02799556760633, 40.99832059913543], [11.02806563583903, 40.99831307303482], [11.02813598270968, 40.998307211685216], [11.028206538799681, 40.9983030208706], [11.02827723448403, 40.99830050472647], [11.028348, 40.99829966573579], [11.028418765515971, 40.99830050472647], [11.02848946120032, 40.9983030208706], [11.02856001729032, 40.998307211685216], [11.028630364160971, 40.99831307303482], [11.02870043239367, 40.99832059913543], [11.028770152844723, 40.99832978256025], [11.028839456713543, 40.99834061424704], [11.028908275610542, 40.99835308350702], [11.028976541624584, 40.9983671780355], [11.029044187390008, 40.998382883923895], [11.029111146153083, 40.99840018567355], [11.029177351837857, 40.998419066210964], [11.029242739111373, 40.998439506904674], [11.029307243448098, 40.99846148758363], [11.02937080119362, 40.99848498655709], [11.029433349627421, 40.998509980636], [11.029494827024791, 40.998536445155935], [11.02955517271771, 40.998564354001324], [11.029614327154718, 40.99859367963135], [11.029672231959676, 40.998624393107036], [11.029728829989358, 40.998656464119776], [11.029784065389851, 40.99868986102135], [11.029837883651664, 40.99872455085501], [11.029890231663515, 40.998760499388084], [11.029941057764743, 40.99879767114576], [11.029990311796297, 40.99883602944604], [11.030037945150223, 40.99887553643594], [11.030083910817638, 40.99891615312887], [11.03012816343514, 40.998957839443044], [11.030170659329558, 40.99900055424114], [11.030211356561068, 40.99904425537072], [11.030250214964584, 40.999088899706], [11.03028719618941, 40.99913444319027], [11.030322263737089, 40.99918084087941], [11.030355382997435, 40.99922804698627], [11.030386521282699, 40.999276014925826], [11.030415647859844, 40.99932469736109], [11.03044273398088, 40.999374046249926], [11.030467752911255, 40.99942401289238], [11.030490679956257, 40.99947454797874], [11.03051149248539, 40.99952560163826], [11.030530169954725, 40.999577123488265], [11.030546693927215, 40.999629062683944], [11.030561048090872, 40.99968136796851], [11.030573218274913, 40.999733987723786], [11.030583192463757, 40.999786870021104], [11.03059096080889, 40.99983996267259], [11.030596515638623, 40.999893213282654], [11.030599851465672, 40.999946569299695], [11.0306009649926, 40.99999997806796], [11.030599855115087, 41.00005338687949], [11.03059652292305, 41.0001067430262], [11.030590971699583, 41.000159993851796], [11.030583206917733, 41.00021308680384], [11.030573236235131, 41.000265969485554], [11.030561069486447, 41.00031858970754], [11.03054671867371, 41.000370895539305], [11.03053019795448, 41.00042283536049], [11.030511523627897, 41.00047435791185], [11.030490714118615, 41.0005254123458], [11.030467789958644, 41.00057594827664], [11.030442773767085, 41.00062591583025], [11.030415690227848, 41.000675265693346], [11.030386566065298, 41.00072394916212], [11.03035543001789, 41.00077191819035], [11.030322312809831, 41.00081912543677], [11.030287247120771, 41.000865524311834], [11.030250267553566, 41.000911069023736], [11.03021141060012, 41.0009557146235], [11.030170714605417, 41.00099941704943], [11.030128219729658, 41.001042133170614], [11.030083967908643, 41.001083820829436], [11.0300380028124, 41.001124438883195], [11.029990369802087, 41.00116394724479], [11.029941115885222, 41.00120230692219], [11.029890289669305, 41.001239480056995], [11.029837941313845, 41.001275429961765], [11.029784122480857, 41.00131012115626], [11.029728886283872, 41.00134351940245], [11.029672287235535, 41.00137559173829], [11.029614381193772, 41.00140630651031], [11.02955522530669, 41.001435633404824], [11.029494877956154, 41.00146354347787], [11.029433398700162, 41.00149000918372], [11.029370848214072, 41.001515004402194], [11.029307288230696, 41.00153850446432], [11.029242781479379, 41.001560486176786], [11.029177391624064, 41.001580927844756], [11.02911118320047, 41.00159980929333], [11.029044221552368, 41.00161711188745], [11.02897657276709, 41.00163281855028], [11.028908303610292, 41.00164691378012], [11.028839481460041, 41.00165938366561], [11.028770174240297, 41.0016702158996], [11.028700450353885, 41.00167939979112], [11.028630378614945, 41.00168692627613], [11.028560028181012, 41.001692787926295], [11.028489468484747, 41.00169697895645], [11.028418769165384, 41.00169949523024], [11.028348, 41.0017003342642] ] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/out/line-fiji.geojson ================================================ { "type": "FeatureCollection", "properties": { "mercator": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-180.46142578124997, -17.481671724450752] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-183.131103515625, -17.675427818339383], [-181.50512695312497, -16.04581345375217], [-177.802734375, -16.615137799987075], [-179.47265625, -17.947380678685203], [-179.60449218749997, -16.383391123608387], [-181.087646484375, -17.70682812401954], [-179.93408203125, -15.432500881886043], [-180.010986328125, -18.458768120015126], [-181.834716796875, -17.832374329567507], [-180.15380859375, -15.601874876739798], [-178.08837890625, -16.320139453117562], [-179.01123046874997, -18.98941471523932], [-183.240966796875, -16.53089842368168], [-182.4169921875, -18.67747125852608], [-182.274169921875, -16.003575733881313] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.46142578124994, -17.24027739049296], [-180.46936484304584, -17.24039634692233], [-180.4772961007639, -17.240753099274404], [-180.48521175790825, -17.241347296854684], [-180.49310403313993, -17.242178355550998], [-180.50096516783762, -17.2432454584011], [-180.50878743363776, -17.2445475563866], [-180.51656313994596, -17.246083369452435], [-180.5242846414141, -17.247851387751002], [-180.5319443453747, -17.24984987310968], [-180.5395347192272, -17.25207686072057], [-180.54704829776773, -17.254530161050656], [-180.5544776904568, -17.25720736197078], [-180.56181558861732, -17.26010583110138], [-180.56905477255665, -17.263222718372816], [-180.57618811860564, -17.26655495879789], [-180.58320860606855, -17.270099275454], [-180.59010932407656, -17.273852182672133], [-180.59688347833938, -17.277809989429688], [-180.60352439778754, -17.28196880294405], [-180.61002554109984, -17.28632453246341], [-180.61638050310924, -17.29087289325147], [-180.62258302108154, -17.295609410762097], [-180.62862698086013, -17.30052942500019], [-180.6345064228718, -17.30562809506453], [-180.64021554798677, -17.31090040386846], [-180.64574872322848, -17.31634116303384], [-180.65110048732615, -17.32194501795376], [-180.65626555610586, -17.327706453019193], [-180.6612388277143, -17.333619797004644], [-180.66601538766997, -17.339679228607753], [-180.67059051373707, -17.345878782137515], [-180.6749596806168, -17.352212353345852], [-180.67911856445195, -17.358673705396864], [-180.68306304713923, -17.3652564749682], [-180.68678922044626, -17.371954178478635], [-180.69029338992738, -17.37876021843602], [-180.69357207863587, -17.38566788989942], [-180.6966220306271, -17.39267038704937], [-180.6994402142502, -17.399760809859895], [-180.70202382522356, -17.40693217086583], [-180.70437028949195, -17.414177402019096], [-180.70647726586128, -17.421489361627128], [-180.70834264840795, -17.4288608413669], [-180.70996456866118, -17.436284573367722], [-180.71134139755404, -17.443753237355878], [-180.71247174714253, -17.451259467854303], [-180.71335447208938, -17.4587958614302], [-180.71398867091125, -17.466354983983535], [-180.71437368698753, -17.47392937806933], [-180.71450910932907, -17.48151157024661], [-180.71439477310608, -17.48909407844673], [-180.7140307599337, -17.496669419353903], [-180.7134173979149, -17.50423011579066], [-180.71255526143932, -17.51176870410091], [-180.71144517073955, -17.519277741523396], [-180.71008819120246, -17.52674981354816], [-180.70848563243777, -17.53417754124877], [-180.70663904710324, -17.54155358858299], [-180.70455022948727, -17.54887066965465], [-180.70222121385032, -17.556121555929458], [-180.69965427252583, -17.56329908339754], [-180.69685191378213, -17.57039615967548], [-180.6938168794475, -17.577405771040844], [-180.69055214229977, -17.584320989392026], [-180.68706090322274, -17.59113497912635], [-180.68334658813214, -17.597841003929634], [-180.67941284467355, -17.604432433470258], [-180.6752635386954, -17.610902749990853], [-180.67090275049986, -17.617245554791143], [-180.66633477087558, -17.623454574595147], [-180.66156409691553, -17.6295236677963], [-180.65659542762396, -17.635446830574185], [-180.65143365931672, -17.641218202876548], [-180.64608388081916, -17.64683207426044], [-180.64055136846628, -17.65228288958661], [-180.6348415809101, -17.657565254561117], [-180.62896015373897, -17.662673941118666], [-180.6229128939145, -17.667603892641896], [-180.61670577403117, -17.67235022901138], [-180.61034492640488, -17.67690825148108], [-180.60383663699537, -17.681273447374124], [-180.59718733917003, -17.685441494594166], [-180.5904036073139, -17.68940826594752], [-180.58349215029324, -17.693169833271646], [-180.57645980477912, -17.696722471365664], [-180.56931352843753, -17.700062661718786], [-180.5620603929937, -17.703187096032774], [-180.55470757717652, -17.7060926795348], [-180.54726235955184, -17.708776534077124], [-180.53973211125097, -17.711236001020456], [-180.5321242886019, -17.713468643897947], [-180.52444642567184, -17.71547225085697], [-180.5167061267279, -17.717244836876183], [-180.50891105862408, -17.718784645755537], [-180.50106894312256, -17.7200901518771], [-180.4931875491574, -17.721160061734853], [-180.48527468504858, -17.721993315231938], [-180.47733819067463, -17.72258908674385], [-180.46938592961206, -17.72294678594654], [-180.46142578124994, -17.723066058408545], [-180.45346563288786, -17.72294678594654], [-180.4455133718253, -17.72258908674385], [-180.43757687745133, -17.721993315231938], [-180.42966401334252, -17.721160061734853], [-180.42178261937735, -17.7200901518771], [-180.41394050387584, -17.718784645755537], [-180.406145435772, -17.717244836876183], [-180.3984051368281, -17.71547225085697], [-180.39072727389805, -17.713468643897947], [-180.38311945124894, -17.711236001020456], [-180.37558920294808, -17.708776534077124], [-180.3681439853234, -17.7060926795348], [-180.36079116950623, -17.703187096032774], [-180.35353803406238, -17.700062661718786], [-180.34639175772085, -17.696722471365664], [-180.33935941220668, -17.693169833271646], [-180.332447955186, -17.68940826594752], [-180.32566422332988, -17.685441494594166], [-180.31901492550455, -17.681273447374124], [-180.31250663609504, -17.67690825148108], [-180.30614578846874, -17.67235022901138], [-180.2999386685854, -17.667603892641896], [-180.29389140876094, -17.662673941118666], [-180.28800998158982, -17.657565254561117], [-180.28230019403364, -17.65228288958661], [-180.27676768168078, -17.64683207426044], [-180.2714179031832, -17.641218202876548], [-180.26625613487596, -17.635446830574185], [-180.2612874655844, -17.6295236677963], [-180.25651679162434, -17.623454574595147], [-180.25194881200005, -17.617245554791143], [-180.24758802380455, -17.610902749990853], [-180.24343871782636, -17.604432433470258], [-180.23950497436778, -17.59784100392964], [-180.23579065927717, -17.59113497912635], [-180.23229942020015, -17.58432098939203], [-180.22903468305242, -17.577405771040844], [-180.2259996487178, -17.57039615967548], [-180.22319728997408, -17.56329908339754], [-180.2206303486496, -17.556121555929458], [-180.21830133301265, -17.54887066965465], [-180.21621251539668, -17.54155358858299], [-180.21436593006214, -17.53417754124877], [-180.21276337129748, -17.52674981354816], [-180.21140639176036, -17.519277741523396], [-180.2102963010606, -17.51176870410091], [-180.20943416458502, -17.50423011579066], [-180.2088208025662, -17.496669419353903], [-180.2084567893939, -17.48909407844673], [-180.20834245317084, -17.48151157024661], [-180.20847787551241, -17.47392937806933], [-180.20886289158867, -17.466354983983535], [-180.20949709041054, -17.4587958614302], [-180.21037981535738, -17.451259467854303], [-180.21151016494588, -17.443753237355878], [-180.21288699383874, -17.436284573367722], [-180.21450891409197, -17.4288608413669], [-180.21637429663866, -17.421489361627128], [-180.21848127300797, -17.414177402019096], [-180.22082773727638, -17.40693217086583], [-180.22341134824973, -17.399760809859895], [-180.2262295318728, -17.39267038704937], [-180.22927948386405, -17.38566788989942], [-180.23255817257254, -17.37876021843602], [-180.23606234205369, -17.371954178478635], [-180.2397885153607, -17.365256474968202], [-180.243732998048, -17.358673705396864], [-180.2478918818831, -17.352212353345852], [-180.25226104876285, -17.345878782137515], [-180.25683617482994, -17.339679228607753], [-180.26161273478564, -17.333619797004644], [-180.26658600639405, -17.327706453019193], [-180.27175107517377, -17.32194501795376], [-180.27710283927144, -17.31634116303384], [-180.28263601451314, -17.31090040386846], [-180.28834513962812, -17.30562809506453], [-180.29422458163978, -17.30052942500019], [-180.30026854141838, -17.295609410762097], [-180.30647105939067, -17.29087289325147], [-180.3128260214001, -17.28632453246341], [-180.31932716471238, -17.28196880294405], [-180.32596808416054, -17.277809989429688], [-180.33274223842335, -17.273852182672133], [-180.3396429564314, -17.270099275454], [-180.34666344389427, -17.26655495879789], [-180.35379678994326, -17.263222718372816], [-180.3610359738826, -17.26010583110138], [-180.36837387204312, -17.25720736197078], [-180.37580326473218, -17.254530161050656], [-180.38331684327272, -17.25207686072057], [-180.3909072171252, -17.24984987310968], [-180.39856692108583, -17.247851387751002], [-180.40628842255396, -17.246083369452435], [-180.41406412886215, -17.2445475563866], [-180.4218863946623, -17.2432454584011], [-180.42974752936, -17.242178355550998], [-180.43763980459167, -17.241347296854684], [-180.445555461736, -17.240753099274404], [-180.45348671945408, -17.24039634692233], [-180.46142578124994, -17.24027739049296] ] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/out/line-resolute-bay.geojson ================================================ { "type": "FeatureCollection", "properties": { "units": "miles", "mercator": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-7.734374999999999, 70.4367988185464] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-60.8203125, 64.99793920061401], [-31.640625, 76.96033358827414], [-5.625, 76.55774293896555] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-7.734374999999999, 76.58602051286941], [-8.565144421331702, 76.581649963564], [-9.39367789597315, 76.5685510004748], [-10.217758869539182, 76.5467615511381], [-11.03520915451126, 76.51634440809259], [-11.843907086027288, 76.47738660965338], [-12.641804490235188, 76.42999859411563], [-13.426942142522716, 76.37431314739187], [-14.19746344970851, 76.31048416829415], [-14.95162615449696, 76.23868527888972], [-15.687811928559064, 76.15910830950726], [-16.404533788936927, 76.07196168903313], [-17.100441337800245, 75.9774687711547], [-17.77432388512998, 75.87586612627433], [-18.425111565519206, 75.76740182706286], [-19.051874602525142, 75.65233375320389], [-19.653820906145185, 75.53092793797006], [-20.23029221094424, 75.40345697604236], [-20.780758974606012, 75.27019850859514], [-21.30481426012385, 75.13143379826914], [-21.802166820700865, 74.98744640336622], [-22.272633596069, 74.83852095751867], [-22.716131813804385, 74.68494205828752], [-23.13267087070847, 74.52699326567465], [-23.522344148726436, 74.36495620941619], [-23.88532089831963, 74.1991098021686], [-24.221838300637035, 74.02972955429269], [-24.532193798994204, 73.85708698486327], [-24.81673777062464, 73.68144912275741], [-25.075866591808243, 73.50307809116204], [-25.310016133536717, 73.32223076856289], [-25.51965571095902, 73.13915851918941], [-25.705282497964156, 72.9541069859596], [-25.867416408339263, 72.76731593916529], [-26.006595436860078, 72.57901917442733], [-26.123371447270163, 72.38944445380996], [-26.21830638920464, 72.19881348438844], [-26.291968922522372, 72.00734192899687], [-26.344931425046383, 71.81523944432878], [-26.377767358189985, 71.6227097420068], [-26.3910489642081, 71.42995066867377], [-26.385345268702284, 71.23715430157571], [-26.36122036239749, 71.04450705650301], [-26.31923193697851, 70.85218980532848], [-26.25993005082756, 70.66037800072363], [-26.183856101757662, 70.4692418059512], [-26.091541985221046, 70.27894622791919], [-25.9835094179309, 70.08965125194186], [-25.860269408323543, 69.90151197688661], [-25.72232185677262, 69.71467874959397], [-25.57015526991903, 69.52929729764357], [-25.40424657488068, 69.34550885970135], [-25.225061020440684, 69.16345031282765], [-25.033052153572207, 68.98325429625004], [-24.82866186083601, 68.80504933121458], [-24.612320465281737, 68.62895993662265], [-24.384446870494035, 68.4551067402413], [-24.145448744352457, 68.28360658534494], [-23.895722735921858, 68.11457263270424], [-23.63565471966039, 67.94811445788801], [-23.3656200618311, 67.7843381438856], [-23.085983904633974, 67.62334636909146], [-22.797101464142315, 67.46523849072247], [-22.49931833863697, 67.31011062376118], [-22.192970824387114, 67.15805571553719], [-21.878386236333377, 67.00916361607294], [-21.555883231490167, 66.86352114433164], [-21.225772133206036, 66.7212121505131], [-20.888355254705555, 66.58231757454918], [-20.543927220587435, 66.44691550095408], [-20.192775285176197, 66.31508121018659], [-19.835179646820013, 66.18688722668173], [-19.471413757398977, 66.06240336370901], [-19.101744626458718, 65.94169676521116], [-18.72643311951596, 65.82483194477652], [-18.345734250197395, 65.71187082189282], [-17.959897465973864, 65.60287275562763], [-17.569166927338056, 65.4978945758756], [-17.173781780350154, 65.39699061230765], [-16.773976422540343, 65.30021272115302], [-16.36998076221399, 65.20761030993899], [-15.962020471253071, 65.11923036030801], [-15.550317231549254, 65.03511744902674], [-15.135088975239386, 64.95531376729525], [-14.71655011894423, 64.87985913845965], [-14.29491179223713, 64.80879103422565], [-13.870382060590558, 64.7421445894642], [-13.443166143067252, 64.67995261569638], [-13.01346662503737, 64.62224561333706], [-12.581483666216398, 64.56905178277314], [-12.14741520432847, 64.52039703434588], [-11.711457154709219, 64.476304997301], [-11.273803606168695, 64.4367970277661], [-10.834647013441227, 64.40189221580822], [-10.394178386553552, 64.37160739162026], [-9.952587477446391, 64.34595713087894], [-9.510062964187535, 64.32495375931235], [-9.066792633117016, 64.30860735650953], [-8.622963559266646, 64.29692575900012], [-8.178762285397463, 64.28991456262607], [-7.734375, 64.28757712422336], [-7.289987714602533, 64.28991456262607], [-6.845786440733357, 64.29692575900012], [-6.40195736688298, 64.30860735650953], [-5.958687035812476, 64.32495375931234], [-5.516162522553611, 64.34595713087894], [-5.074571613446442, 64.37160739162026], [-4.634102986558781, 64.40189221580822], [-4.1949463938313, 64.4367970277661], [-3.7572928452907877, 64.476304997301], [-3.321334795671528, 64.52039703434588], [-2.8872663337836033, 64.56905178277314], [-2.455283374962631, 64.62224561333706], [-2.0255838569327484, 64.67995261569638], [-1.5983679394094443, 64.7421445894642], [-1.173838207762878, 64.80879103422565], [-0.7521998810557695, 64.87985913845965], [-0.33366102476061926, 64.95531376729525], [0.08156723154925342, 65.03511744902674], [0.49327047125306617, 65.11923036030801], [0.9012307622139913, 65.20761030993899], [1.305226422540347, 65.30021272115302], [1.7050317803501491, 65.39699061230765], [2.100416927338057, 65.4978945758756], [2.4911474659738655, 65.60287275562763], [2.876984250197395, 65.71187082189282], [3.2576831195159492, 65.82483194477652], [3.6329946264587196, 65.94169676521116], [4.002663757398979, 66.06240336370901], [4.366429646820011, 66.18688722668173], [4.7240252851761975, 66.31508121018659], [5.075177220587435, 66.44691550095408], [5.419605254705557, 66.58231757454918], [5.757022133206036, 66.7212121505131], [6.087133231490147, 66.86352114433163], [6.4096362363333785, 67.00916361607294], [6.7242208243871175, 67.15805571553719], [7.030568338636973, 67.31011062376118], [7.32835146414232, 67.46523849072247], [7.617233904633974, 67.62334636909146], [7.896870061831097, 67.7843381438856], [8.166904719660394, 67.94811445788801], [8.42697273592186, 68.11457263270424], [8.676698744352455, 68.28360658534494], [8.915696870494015, 68.45510674024129], [9.143570465281739, 68.62895993662265], [9.359911860836013, 68.80504933121458], [9.564302153572209, 68.98325429625004], [9.756311020440668, 69.16345031282762], [9.93549657488068, 69.34550885970135], [10.101405269919033, 69.52929729764357], [10.253571856772629, 69.71467874959399], [10.391519408323544, 69.90151197688661], [10.514759417930899, 70.08965125194186], [10.622791985221047, 70.27894622791919], [10.715106101757662, 70.4692418059512], [10.791180050827563, 70.66037800072363], [10.850481936978513, 70.85218980532848], [10.892470362397502, 71.04450705650301], [10.916595268702286, 71.23715430157571], [10.922298964208107, 71.42995066867377], [10.909017358189985, 71.6227097420068], [10.87618142504638, 71.81523944432878], [10.823218922522384, 72.00734192899687], [10.749556389204642, 72.19881348438844], [10.654621447270172, 72.38944445380996], [10.537845436860067, 72.5790191744273], [10.398666408339263, 72.76731593916529], [10.236532497964165, 72.9541069859596], [10.050905710959007, 73.13915851918938], [9.841266133536719, 73.32223076856289], [9.607116591808248, 73.50307809116204], [9.34798777062464, 73.68144912275741], [9.063443798994196, 73.85708698486324], [8.753088300637033, 74.02972955429266], [8.416570898319637, 74.1991098021686], [8.05359414872643, 74.36495620941619], [7.663920870708464, 74.52699326567465], [7.247381813804389, 74.68494205828752], [6.803883596069004, 74.83852095751867], [6.333416820700874, 74.98744640336622], [5.836064260123846, 75.13143379826914], [5.3120089746060275, 75.27019850859514], [4.7615422109442616, 75.40345697604236], [4.185070906145185, 75.53092793797006], [3.5831246025251478, 75.65233375320389], [2.9563615655192175, 75.76740182706286], [2.3055738851299945, 75.87586612627433], [1.6316913378002462, 75.9774687711547], [0.9357837889369279, 76.07196168903313], [0.21906192855907122, 76.15910830950726], [-0.5171238455030263, 76.23868527888972], [-1.2712865502914739, 76.31048416829415], [-2.041807857477285, 76.37431314739187], [-2.8269455097648057, 76.42999859411563], [-3.6248429139727043, 76.47738660965338], [-4.433540845488731, 76.51634440809256], [-5.2509911304608226, 76.5467615511381], [-6.075072104026851, 76.5685510004748], [-6.903605578668295, 76.581649963564], [-7.734374999999999, 76.58602051286941] ] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/out/line1.geojson ================================================ { "type": "FeatureCollection", "properties": { "units": "miles", "mercator": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-47.08740234375, 32.26855544621476] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-55.06347656249999, 29.973970240516614], [-45.439453125, 36.58024660149866], [-49.04296875, 31.914867503276223], [-43.39599609375, 33.99802726234877], [-46.51611328125, 29.707139348134145], [-52.4267578125, 32.37996146435729], [-50.11962890625, 28.43971381702788], [-52.998046875, 27.430289738862594], [-50.0537109375, 35.02999636902566], [-42.38525390625, 31.466153715024294] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-47.08740234375, 32.64042143641672], [-47.10127346855645, 32.64023718553941], [-47.1151307337655, 32.63968461701659], [-47.12896029414532, 32.63876428298469], [-47.14274833317819, 32.63747710303488], [-47.15648107737497, 32.63582436325957], [-47.170144810538716, 32.63380771491907], [-47.183725887960335, 32.63142917273005], [-47.1972107505298, 32.62869111277777], [-47.21058593874617, 32.6255962700546], [-47.22383810661004, 32.62214773562774], [-47.2369540353822, 32.61834895343951], [-47.24992064719261, 32.614203716743894], [-47.2627250184837, 32.60971616418371], [-47.27535439327286, 32.60489077551288], [-47.28779619621873, 32.5997323669689], [-47.30003804547644, 32.594246086300906], [-47.31206776532763, 32.58843740745918], [-47.32387339857072, 32.582312124952296], [-47.33544321865799, 32.57587634787837], [-47.34676574156614, 32.56913649363756], [-47.35782973738728, 32.562099281332834], [-47.36862424162818, 32.55477172486682], [-47.37913856620556, 32.54716112574254], [-47.389362310126124, 32.53927506557631], [-47.39928536984024, 32.53112139833146], [-47.40889794925877, 32.522708242281404], [-47.418190569423096, 32.51404397171159], [-47.42715407781894, 32.5051372083692], [-47.435779657324865, 32.495996812670704], [-47.44405883478733, 32.486631874676576], [-47.4519834892142, 32.47705170484363], [-47.45954585957953, 32.467265824565054], [-47.46673855223298, 32.45728395650843], [-47.47355454790741, 32.44711601476262], [-47.47998720831924, 32.43677209480404], [-47.48603028235637, 32.426262463293305], [-47.491677911849166, 32.41559754771321], [-47.49692463692049, 32.40478792585926], [-47.501765400911324, 32.3938443151939], [-47.50619555487912, 32.382777562075724], [-47.51021086166647, 32.37159863087521], [-47.51380749953822, 32.36031859298811], [-47.516982065385704, 32.34894861575826], [-47.51973157749738, 32.33749995132124], [-47.52205347789533, 32.32598392538018], [-47.523945634238004, 32.314411925925484], [-47.52540634128973, 32.302795391909946], [-47.52643432195813, 32.291145801890494], [-47.527028727901055, 32.279474662648305], [-47.527189139705015, 32.267793497798536], [-47.52691556663752, 32.25611383640092], [-47.52620844597631, 32.24444720158274], [-47.52506864191862, 32.232805099184986], [-47.52349744407429, 32.221199006443236], [-47.52149656554652, 32.20964036071381], [-47.519068140605015, 32.19814054825641], [-47.51621472195602, 32.18671089308372], [-47.51293927761438, 32.175362645888825], [-47.509245187383236, 32.1641069730608], [-47.50513623894676, 32.15295494579877], [-47.50061662358228, 32.141917529334776], [-47.49569093149786, 32.13100557227531], [-47.490364146802094, 32.120229796071406], [-47.48464164211274, 32.10960078462706], [-47.47852917281149, 32.099128974055326], [-47.47203287095196, 32.08882464259141], [-47.465159238828626, 32.0786979006721], [-47.4579151422142, 32.0687586811899], [-47.45030780327351, 32.05901672993129], [-47.44234479316204, 32.049481596206924], [-47.43403402431709, 32.040162623682534], [-47.425383742450315, 32.03106894141818], [-47.41640251825003, 32.022209455124106], [-47.40709923880201, 32.01359283864043], [-47.39748309873765, 32.00522752564826], [-47.38756359111834, 31.997121701619253], [-47.37735049806526, 31.989283296010594], [-47.366853881143726, 31.981719974712057], [-47.35608407151116, 31.974439132751378], [-47.345051659838354, 31.967447887264438], [-47.3337674860131, 31.960753070735862], [-47.32224262863601, 31.95436122451588], [-47.310488394317794, 31.948278592618774], [-47.29851630678787, 31.942511115808177], [-47.28633809582377, 31.937064425974036], [-47.27396568601127, 31.931943840805847], [-47.26141118534481, 31.927154358766767], [-47.24868687367816, 31.92270065437247], [-47.23580519103519, 31.918587073778745], [-47.22277872579048, 31.914817630681487], [-47.209620202729816, 31.911396002532292], [-47.196342471000484, 31.908325527072844], [-47.18295849196127, 31.905609199190867], [-47.16948132694214, 31.903249668100138], [-47.155924124923665, 31.901249234846965], [-47.14230011014614, 31.899609850144977], [-47.12862256965839, 31.898333112540147], [-47.11490484081644, 31.897420266907393], [-47.10116029874187, 31.896872203279983], [-47.08740234375, 31.896689456012815], [-47.073644388758126, 31.896872203279983], [-47.05989984668355, 31.897420266907393], [-47.0461821178416, 31.898333112540147], [-47.032504577353855, 31.899609850144977], [-47.01888056257633, 31.901249234846965], [-47.00532336055785, 31.903249668100138], [-46.99184619553872, 31.905609199190867], [-46.97846221649951, 31.908325527072844], [-46.96518448477018, 31.911396002532292], [-46.952025961709516, 31.914817630681487], [-46.9389994964648, 31.918587073778745], [-46.92611781382183, 31.92270065437247], [-46.91339350215518, 31.927154358766767], [-46.90083900148872, 31.931943840805847], [-46.88846659167622, 31.937064425974036], [-46.87628838071213, 31.942511115808177], [-46.864316293182206, 31.948278592618774], [-46.85256205886398, 31.95436122451588], [-46.84103720148689, 31.960753070735862], [-46.82975302766164, 31.967447887264438], [-46.81872061598883, 31.974439132751378], [-46.80795080635627, 31.981719974712057], [-46.79745418943473, 31.989283296010594], [-46.787241096381656, 31.99712170161924], [-46.77732158876234, 32.00522752564826], [-46.76770544869798, 32.01359283864043], [-46.758402169249976, 32.022209455124106], [-46.74942094504968, 32.03106894141818], [-46.7407706631829, 32.040162623682534], [-46.73245989433795, 32.049481596206924], [-46.72449688422648, 32.05901672993129], [-46.716889545285795, 32.0687586811899], [-46.70964544867137, 32.0786979006721], [-46.70277181654803, 32.08882464259141], [-46.696275514688516, 32.099128974055326], [-46.690163045387266, 32.10960078462706], [-46.6844405406979, 32.120229796071406], [-46.67911375600213, 32.13100557227531], [-46.67418806391771, 32.141917529334776], [-46.66966844855323, 32.15295494579877], [-46.66555950011676, 32.1641069730608], [-46.661865409885614, 32.175362645888825], [-46.658589965543975, 32.18671089308372], [-46.65573654689498, 32.19814054825641], [-46.65330812195347, 32.20964036071381], [-46.651307243425705, 32.221199006443236], [-46.64973604558137, 32.232805099184986], [-46.64859624152369, 32.24444720158274], [-46.64788912086248, 32.25611383640092], [-46.64761554779498, 32.267793497798536], [-46.64777595959894, 32.279474662648305], [-46.648370365541865, 32.291145801890494], [-46.64939834621026, 32.302795391909946], [-46.65085905326199, 32.314411925925484], [-46.652751209604666, 32.32598392538018], [-46.65507311000261, 32.33749995132124], [-46.65782262211429, 32.34894861575826], [-46.660997187961776, 32.36031859298811], [-46.66459382583352, 32.37159863087521], [-46.66860913262087, 32.382777562075724], [-46.67303928658867, 32.3938443151939], [-46.6778800505795, 32.40478792585926], [-46.68312677565083, 32.41559754771321], [-46.688774405143626, 32.426262463293305], [-46.694817479180756, 32.43677209480404], [-46.70125013959258, 32.44711601476262], [-46.70806613526701, 32.45728395650843], [-46.71525882792047, 32.467265824565054], [-46.72282119828579, 32.47705170484363], [-46.730745852712666, 32.486631874676576], [-46.73902503017513, 32.495996812670704], [-46.74765060968105, 32.5051372083692], [-46.7566141180769, 32.51404397171159], [-46.76590673824122, 32.522708242281404], [-46.77551931765975, 32.53112139833146], [-46.78544237737387, 32.53927506557632], [-46.79566612129443, 32.54716112574254], [-46.80618044587181, 32.55477172486682], [-46.8169749501127, 32.562099281332834], [-46.828038945933855, 32.56913649363756], [-46.839361468842, 32.57587634787837], [-46.850931288929274, 32.582312124952296], [-46.86273692217236, 32.58843740745918], [-46.87476664202355, 32.594246086300906], [-46.887008491281264, 32.5997323669689], [-46.89945029422713, 32.60489077551288], [-46.91207966901629, 32.60971616418371], [-46.92488404030738, 32.614203716743894], [-46.937850652117795, 32.61834895343951], [-46.950966580889954, 32.62214773562774], [-46.96421874875382, 32.6255962700546], [-46.977593936970194, 32.62869111277777], [-46.99107879953966, 32.63142917273005], [-47.004659876961284, 32.63380771491907], [-47.01832361012502, 32.63582436325957], [-47.0320563543218, 32.63747710303488], [-47.04584439335467, 32.63876428298469], [-47.059673953734496, 32.63968461701659], [-47.07353121894354, 32.64023718553941], [-47.08740234375, 32.64042143641672] ] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/out/line2.geojson ================================================ { "type": "FeatureCollection", "properties": { "mercator": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.54931640625, 0.7470491450051796] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 3], [2, 2], [2, 0], [-1.5, -1.5] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.54931640625, 2.438360853906383], [-0.6024821884823875, 2.4375257299107815], [-0.6555953505408664, 2.435021185197018], [-0.7086033252337368, 2.4308497007448677], [-0.761453651273227, 2.4250154087237794], [-0.8140940260763635, 2.4175240883011684], [-0.8664723583848871, 2.4083831597811085], [-0.918536820644496, 2.3976016770804933], [-0.9702359010842001, 2.3851903185517114], [-1.0215184554372008, 2.3711613761628683], [-1.0723337582454635, 2.3555287430484935], [-1.1226315536909959, 2.3383078994456], [-1.1723621058978269, 2.3195158970318257], [-1.2214762486497537, 2.2991713416841977], [-1.2699254344700748, 2.2772943746788754], [-1.3176617830108166, 2.253906652353926], [-1.3646381287002864, 2.2290313242588917], [-1.4108080675992076, 2.202693009816532], [-1.456126003417198, 2.174917773523682], [-1.500547192642893, 2.1457330987196923], [-1.5440277887426304, 2.115167859952363], [-1.5865248853842704, 2.083252293972651], [-1.6279965586444112, 2.050017969390782], [-1.6684019081589907, 2.0154977550276216], [-1.7077010971790092, 1.9797257869963656], [-1.7458553914948676, 1.9427374345507415], [-1.7828271971945877, 1.9045692647369301], [-1.8185800972229471, 1.865259005887463], [-1.8530788867103243, 1.8248455099962235], [-1.8862896070418036, 1.7833687140145786], [-1.9181795786388027, 1.7408696001094466], [-1.9487174324272176, 1.697390154924848], [-1.977873139967725, 1.6529733278891745], [-2.005618042225537, 1.6076629886110247], [-2.031924876958512, 1.561503883407013], [-2.0567678047040507, 1.514541591005499], [-2.0801224333467685, 1.4668224774706196], [-2.101965841250349, 1.4183936503914378], [-2.1222765989384387, 1.3693029123813978], [-2.141034789310789, 1.3195987139335887], [-2.1582220263821714, 1.269330105677625], [-2.173821472532861, 1.218546690084201], [-2.187817854260684, 1.167298572663593], [-2.2001974764258145, 1.115636312704563], [-2.210948234980604, 1.0636108736002996], [-2.220059628177812, 1.0112735728081306], [-2.2275227662516404, 0.9586760314898738], [-2.233330379566971, 0.9058701238797664], [-2.237476825233159, 0.8529079264269721], [-2.239958092179682, 0.7998416667597138], [-2.2407718046918226, 0.746723672518107], [-2.239917224405487, 0.6936063201027682], [-2.2373952507610753, 0.6405419833862738], [-2.2332084199172253, 0.5875829824345153], [-2.227360902126057, 0.5347815322849735], [-2.2198584975724227, 0.4821896918288493], [-2.2107086306804984, 0.4298593128439665], [-2.1999203428919025, 0.3778419892252343], [-2.1875042839204264, 0.3261890064593969], [-2.1734727014893136, 0.27495129139065133], [-2.1578394295579604, 0.2241793623235951], [-2.1406198750458287, 0.17392327950982253], [-2.1218310030623404, 0.12423259606429113], [-2.1014913206525128, 0.07515630935739893], [-2.0796208590691254, 0.026742812928496708], [-2.0562411545833075, -0.0209601510337049], [-2.031375227846508, -0.06790553859863824], [-2.00504756181802, -0.11404705034439946], [-1.9772840782733807, -0.1593391769067504], [-1.9481121129102656, -0.20373724378242755], [-1.9175603890697397, -0.24719745534301005], [-1.8856589900920955, -0.28967693801605165], [-1.8524393303278728, -0.33113378259067083], [-1.817934124826067, -0.3715270856053604], [-1.7821773577230051, -0.41081698977634795], [-1.745204249356825, -0.4489647234255117], [-1.7070512221340721, -0.48593263886750815], [-1.6677558651764175, -0.5216842497165739], [-1.6273568977771038, -0.55618426707423], [-1.5858941316983335, -0.5893986345599906], [-1.5434084323423756, -0.6212945621481215], [-1.499941678830813, -0.6518405587744457], [-1.4555367230279406, -0.6810064636782679], [-1.4102373475459393, -0.7087634764455751], [-1.3640882227710518, -0.7350841857208448], [-1.3171348629515216, -0.7599425965560174], [-1.269423581389651, -0.7833141563664898], [-1.2210014447817956, -0.8051757794653138], [-1.1719162267516028, -0.8255058701482164], [-1.1222163606232458, -0.8442843443034946], [-1.0719508914826847, -0.8614926495223957], [-1.0211694275764018, -0.8771137836871207], [-0.9699220910981681, -0.8911323120152603], [-0.918259468415645, -0.9035343825411044], [-0.8662325597896272, -0.9143077400160166], [-0.8138927286397571, -0.9234417382117981], [-0.7612916504113916, -0.930927350612784], [-0.7084812610991171, -0.9367571794842229], [-0.6555137054830764, -0.9409254633063813], [-0.6024412851348326, -0.9434280825656705], [-0.5493164062500002, -0.9442625638960237], [-0.496191527365167, -0.9434280825656705], [-0.44311910701692403, -0.9409254633063813], [-0.3901515514008824, -0.9367571794842229], [-0.33734116208860965, -0.9309273506127842], [-0.2847400838602433, -0.9234417382117984], [-0.23240025271037248, -0.9143077400160162], [-0.18037334408435624, -0.9035343825411047], [-0.1287107214018318, -0.8911323120152603], [-0.0774633849235993, -0.8771137836871211], [-0.026681921017314945, -0.8614926495223957], [0.023583548123245292, -0.8442843443034947], [0.07328341425160229, -0.8255058701482166], [0.12236863228179506, -0.805175779465314], [0.17079076888965078, -0.7833141563664899], [0.21850205045152063, -0.7599425965560179], [0.26545541027105135, -0.7350841857208449], [0.31160453504593866, -0.7087634764455758], [0.35690391052794, -0.681006463678268], [0.4013088663308128, -0.651840558774446], [0.44477561984237557, -0.6212945621481217], [0.4872613191983335, -0.5893986345599904], [0.5287240852771032, -0.5561842670742302], [0.5691230526764172, -0.5216842497165743], [0.608418409634072, -0.48593263886750837], [0.6465714368568244, -0.4489647234255121], [0.683544545223004, -0.41081698977634895], [0.7193013123260671, -0.3715270856053602], [0.7538065178278723, -0.33113378259067106], [0.7870261775920951, -0.28967693801605204], [0.8189275765697395, -0.24719745534301044], [0.8494793004102653, -0.20373724378242794], [0.8786512657733799, -0.1593391769067516], [0.9064147493180198, -0.11404705034439985], [0.9327424153465073, -0.06790553859863992], [0.9576083420833074, -0.020960151033705195], [0.9809880465691253, 0.026742812928496413], [1.0028585081525125, 0.07515630935739923], [1.0231981905623404, 0.12423259606429103], [1.041987062545828, 0.17392327950982114], [1.0592066170579602, 0.2241793623235947], [1.0748398889893134, 0.27495129139065055], [1.0888714714204262, 0.32618900645939625], [1.1012875303919023, 0.3778419892252328], [1.1120758181804982, 0.42985931284396467], [1.1212256850724227, 0.4821896918288493], [1.1287280896260568, 0.5347815322849746], [1.1345756074172253, 0.5875829824345161], [1.1387624382610755, 0.6405419833862721], [1.141284411905487, 0.6936063201027682], [1.1421389921918226, 0.7467236725181067], [1.1413252796796816, 0.7998416667597144], [1.1388440127331594, 0.8529079264269723], [1.134697567066971, 0.9058701238797653], [1.1288899537516401, 0.9586760314898736], [1.121426815677812, 1.0112735728081301], [1.112315422480604, 1.0636108736002992], [1.1015646639258143, 1.1156363127045634], [1.089185041760684, 1.1672985726635914], [1.075188660032861, 1.218546690084201], [1.0595892138821716, 1.2693301056776245], [1.042401976810789, 1.319598713933588], [1.0236437864384382, 1.3693029123813987], [1.0033330287503495, 1.418393650391436], [0.9814896208467687, 1.466822477470619], [0.9581349922040512, 1.5145415910054987], [0.9332920644585123, 1.561503883407012], [0.906985229725537, 1.6076629886110254], [0.8792403274677255, 1.6529733278891738], [0.8500846199272186, 1.6973901549248465], [0.8195467661388028, 1.740869600109446], [0.7876567945418037, 1.783368714014578], [0.754446074210324, 1.8248455099962237], [0.7199472847229478, 1.8652590058874616], [0.6841943846945886, 1.9045692647369288], [0.6472225789948679, 1.9427374345507409], [0.6090682846790086, 1.9797257869963665], [0.5697690956589903, 2.0154977550276216], [0.5293637461444122, 2.0500179693907814], [0.48789207288427056, 2.0832522939726505], [0.4453949762426306, 2.1151678599523627], [0.4019143801428921, 2.145733098719693], [0.35749319091719867, 2.1749177735236813], [0.3121752550992088, 2.2026930098165316], [0.2660053162002864, 2.2290313242588917], [0.21902897051081688, 2.2539066523539257], [0.17129262197007514, 2.277294374678875], [0.12284343614975474, 2.299171341684197], [0.07372929339782681, 2.3195158970318257], [0.023998741190995595, 2.3383078994456], [-0.026299054254536065, 2.3555287430484935], [-0.07711435706279837, 2.3711613761628683], [-0.12839691141579898, 2.3851903185517114], [-0.180095991855504, 2.3976016770804933], [-0.23216045411511282, 2.4083831597811085], [-0.28453878642363617, 2.4175240883011675], [-0.33717916122677233, 2.425015408723779], [-0.39002948726626374, 2.4308497007448677], [-0.44303746195913385, 2.435021185197018], [-0.49615062401761245, 2.4375257299107815], [-0.54931640625, 2.438360853906383] ] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/out/segment-fiji.geojson ================================================ { "type": "FeatureCollection", "properties": { "mercator": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-180.46142578124997, -17.481671724450752] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-181.087646484375, -17.69897856226166], [-179.60586547851562, -16.380756046586434] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.46142578124994, -17.23540624801723], [-180.46952483237501, -17.23552760167609], [-180.47761592278025, -17.235891543369423], [-180.48569109947775, -17.236497715363342], [-180.4937424249357, -17.23734552182086], [-180.501761984789, -17.23843412938069], [-180.50974189552787, -17.239762467966873], [-180.5176743121582, -17.2413292318284], [-180.52555143582603, -17.243132880807917], [-180.53336552139947, -17.245171641838336], [-180.54110888500074, -17.247443510665875], [-180.5487739114812, -17.24994625379808], [-180.55635306183302, -17.252677410674877], [-180.56383888052986, -17.255634296060727], [-180.57122400279005, -17.258814002655587], [-180.57850116175555, -17.262213403922342], [-180.5856631955797, -17.265829157127957], [-180.59270305441729, -17.269657706595638], [-180.59961380731016, -17.273695287164852], [-180.60638864896217, -17.277937927856087], [-180.6130209063964, -17.282381455736832], [-180.6195040454895, -17.287021499985233], [-180.6258316773753, -17.29185349614758], [-180.63199756471298, -17.296872690585673], [-180.63799562781298, -17.302074145109835], [-180.643819950615, -17.30745274179331], [-180.64946478651217, -17.31300318796344], [-180.6549245640158, -17.318720021364967], [-180.66019389225502, -17.324597615490614], [-180.66526756630634, -17.330630185073826], [-180.67014057234698, -17.336811791738587], [-180.6748080926277, -17.34313634980093], [-180.6792655102598, -17.34959763221663], [-180.6835084138112, -17.356189276669397], [-180.6875326017075, -17.362904791793945], [-180.69133408643285, -17.369737563527767], [-180.69490909852692, -17.376680861585793], [-180.69825409037318, -17.383727846051606], [-180.70136573977518, -17.390871574079004], [-180.70424095331632, -17.39810500669736], [-180.70687686949995, -17.405421015714435], [-180.70927086166645, -17.4128123907098], [-180.71142054068346, -17.420271846112332], [-180.7133237574071, -17.427792028354794], [-180.71497860491021, -17.43536552309865], [-180.7163834204768, -17.442984862522174], [-180.71753678735783, -17.45064253266464], [-180.71843753628855, -17.458330980819607], [-180.71908474676403, -17.46604262296995], [-180.7194777480714, -17.47376985125757], [-180.7196161200776, -17.481505041480204], [-180.719499693771, -17.489240560608305], [-180.71912855155648, -17.496968774314336], [-180.718503027302, -17.504682054507228], [-180.71762370613754, -17.51237278686458], [-180.71649142400517, -17.520033378355], [-180.7151072669601, -17.527656264743346], [-180.71347257022373, -17.535233918071288], [-180.71158891698838, -17.542758854105784], [-180.70945813697452, -17.55022363974808], [-180.70708230474185, -17.557620900395776], [-180.7044637377547, -17.564943327250706], [-180.70160499420416, -17.572183684565132], [-180.69850887058766, -17.57933481681919], [-180.69517839904856, -17.58638965582217], [-180.69161684447806, -17.593341227730566], [-180.68782770138117, -17.600182659975836], [-180.68381469051047, -17.60690718809476], [-180.67958175526974, -17.613508162455528], [-180.6751330578914, -17.619979054872772], [-180.67047297539057, -17.62631346510466], [-180.6656060953004, -17.632505127225578], [-180.6605372111913, -17.638547915867807], [-180.65527131797964, -17.644435852325806], [-180.64981360702984, -17.650163110516864], [-180.64416946105413, -17.655724022792004], [-180.63834444881553, -17.661113085591097], [-180.63234431963897, -17.666324964936454], [-180.62617499773577, -17.671354501759115], [-180.61984257634742, -17.676196717052438], [-180.61335331171412, -17.680846816847545], [-180.6067136168743, -17.68530019700555], [-180.59993005530114, -17.68955244782152], [-180.5930093343832, -17.693599358435446], [-180.58595829875412, -17.697436921045583], [-180.5787839234803, -17.70106133491977], [-180.57149330711206, -17.704469010200576], [-180.5640936646056, -17.70765657150025], [-180.5565923201233, -17.710620861281754], [-180.54899669972, -17.713358943022282], [-180.54131432392217, -17.715868104156016], [-180.53355280020827, -17.71814585879301], [-180.52571981539754, -17.72018995021127], [-180.5178231279559, -17.721998353119545], [-180.50987056022618, -17.723569275688337], [-180.50186999059147, -17.724901161347063], [-180.49382934557931, -17.72599269034539], [-180.48575659191545, -17.72684278107725], [-180.47765972853483, -17.727450591165933], [-180.4695467785595, -17.727815518309338], [-180.46142578124994, -17.72793720088427], [-180.4533047839404, -17.727815518309338], [-180.44519183396508, -17.727450591165933], [-180.43709497058447, -17.72684278107725], [-180.4290222169206, -17.72599269034539], [-180.42098157190844, -17.724901161347063], [-180.41298100227374, -17.723569275688337], [-180.40502843454402, -17.721998353119545], [-180.39713174710238, -17.72018995021127], [-180.38929876229165, -17.71814585879301], [-180.38153723857775, -17.715868104156016], [-180.37385486277992, -17.713358943022282], [-180.36625924237663, -17.710620861281754], [-180.35875789789432, -17.70765657150025], [-180.35135825538785, -17.704469010200576], [-180.34406763901964, -17.70106133491977], [-180.33689326374585, -17.697436921045583], [-180.32984222811672, -17.693599358435446], [-180.32292150719877, -17.68955244782152], [-180.31613794562563, -17.68530019700555], [-180.3094982507858, -17.680846816847545], [-180.3030089861525, -17.676196717052438], [-180.29667656476414, -17.671354501759115], [-180.29050724286094, -17.666324964936454], [-180.28450711368438, -17.661113085591097], [-180.27868210144578, -17.655724022792004], [-180.27303795547007, -17.650163110516864], [-180.26758024452027, -17.644435852325806], [-180.26231435130867, -17.638547915867807], [-180.2572454671995, -17.632505127225578], [-180.25237858710935, -17.62631346510466], [-180.2477185046085, -17.619979054872772], [-180.24326980723018, -17.613508162455528], [-180.23903687198944, -17.60690718809476], [-180.23502386111875, -17.600182659975836], [-180.23123471802185, -17.593341227730566], [-180.22767316345136, -17.58638965582217], [-180.22434269191226, -17.57933481681919], [-180.22124656829575, -17.572183684565132], [-180.2183878247452, -17.564943327250706], [-180.21576925775807, -17.557620900395776], [-180.2133934255254, -17.55022363974808], [-180.21126264551154, -17.542758854105784], [-180.20937899227619, -17.535233918071288], [-180.2077442955398, -17.527656264743346], [-180.20636013849474, -17.520033378355], [-180.20522785636237, -17.51237278686458], [-180.20434853519794, -17.504682054507228], [-180.20372301094343, -17.496968774314336], [-180.2033518687289, -17.489240560608305], [-180.2032354424223, -17.481505041480204], [-180.20337381442852, -17.47376985125757], [-180.2037668157359, -17.46604262296995], [-180.20441402621137, -17.458330980819607], [-180.20531477514209, -17.45064253266464], [-180.2064681420231, -17.442984862522174], [-180.2078729575897, -17.435365523098653], [-180.20952780509282, -17.427792028354794], [-180.21143102181645, -17.420271846112332], [-180.21358070083346, -17.4128123907098], [-180.21597469299996, -17.405421015714435], [-180.2186106091836, -17.39810500669736], [-180.22148582272473, -17.390871574079004], [-180.22459747212673, -17.383727846051606], [-180.227942463973, -17.376680861585793], [-180.23151747606707, -17.369737563527767], [-180.23531896079243, -17.362904791793945], [-180.2393431486887, -17.356189276669397], [-180.24358605224012, -17.34959763221663], [-180.24804346987221, -17.34313634980093], [-180.25271099015293, -17.336811791738587], [-180.25758399619357, -17.330630185073826], [-180.2626576702449, -17.324597615490614], [-180.2679269984841, -17.318720021364967], [-180.27338677598775, -17.31300318796344], [-180.2790316118849, -17.30745274179331], [-180.28485593468693, -17.302074145109835], [-180.29085399778694, -17.296872690585673], [-180.29701988512463, -17.29185349614758], [-180.30334751701042, -17.287021499985233], [-180.30983065610351, -17.282381455736832], [-180.31646291353775, -17.277937927856087], [-180.32323775518975, -17.273695287164852], [-180.33014850808263, -17.269657706595638], [-180.33718836692023, -17.265829157127957], [-180.34435040074436, -17.262213403922342], [-180.3516275597099, -17.258814002655587], [-180.35901268197006, -17.255634296060727], [-180.3664985006669, -17.252677410674877], [-180.37407765101872, -17.24994625379808], [-180.38174267749918, -17.247443510665875], [-180.38948604110044, -17.245171641838336], [-180.39730012667388, -17.243132880807917], [-180.40517725034172, -17.2413292318284], [-180.41310966697205, -17.239762467966873], [-180.42108957771092, -17.23843412938069], [-180.4291091375642, -17.23734552182086], [-180.43716046302217, -17.236497715363342], [-180.44523563971967, -17.235891543369423], [-180.4533267301249, -17.23552760167609], [-180.46142578124994, -17.23540624801723] ] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/out/segment1.geojson ================================================ { "type": "FeatureCollection", "properties": { "units": "miles", "mercator": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [2, 0] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 2], [0.9685716982096989, 1.999506359928513], [0.9371744595721233, 1.998025927767439], [0.905839316304705, 1.9955601671895735], [0.8745972387867545, 1.9921115160255491], [0.8434791047215143, 1.9876833838296297], [0.8125156683954242, 1.9822801484754786], [0.7817375300667729, 1.9759071517855469], [0.7511751055157418, 1.9685706941987744], [0.7208585957875978, 1.9602780284822994], [0.6908179571605269, 1.9510373524939144], [0.6610828713692763, 1.9408578010029784], [0.6316827161154069, 1.9297494365785246], [0.6026465358945581, 1.9177232395542516], [0.5740030131706838, 1.9047910970810662], [0.5457804399267314, 1.8909657912787872], [0.518006689620723, 1.8762609864995452], [0.4907091895756414, 1.8606912157163367], [0.46391489383093665, 1.844271866051059], [0.43765025648285566, 1.827019163457242], [0.41194120554014657, 1.8089501565735244], [0.3868131173210146, 1.7900826997647474], [0.3622907914165137, 1.7704354353683476], [0.33839842624483063, 1.7500277751644842], [0.315159595220173, 1.728879881089106], [0.2925972235592192, 1.707012645209871], [0.2707335657472983, 1.6844476689855348], [0.2495901836856813, 1.661207241830087], [0.22918792554055378, 1.6373143190035664], [0.20954690531341763, 1.612792498852085], [0.19068648315185485, 1.5876659994202005], [0.1726252464187259, 1.561959634459309], [0.15538099153705884, 1.5356987888562847], [0.13897070662701982, 1.5089093935070865], [0.12341055495051038, 1.481617899660524], [0.10871585917808996, 1.4538512527578429], [0.09490108649205571, 1.4256368657941838], [0.0819798345386759, 1.3970025922283915], [0.06996481824170571, 1.3679766984680015], [0.058867857488475256, 1.3385878359565802], [0.04869986569898602, 1.3088650128909083], [0.03947083928761441, 1.2788375655957909], [0.031189848026179367, 1.248535129584535], [0.023865026316291303, 1.217987610333383], [0.017503565378081225, 1.1872251537984004], [0.012111706361565347, 1.156278116703504], [0.007694734386097371, 1.1251770366284897], [0.0042569735125335345, 1.0939526019260553], [0.0018017826519207234, 1.0626356214969372], [0.0003315524137242247, 1.031256994452367], [-0.00015229710420852578, 0.9998476796931378], [0.0003506824174574152, 0.968438665434609], [0.0018399671964027264, 0.9370609387070128], [0.004314061969071702, 0.9057454548604229], [0.007770501553676937, 0.8745231071037364], [0.012205853354021813, 0.8434246961069695], [0.017615720801583256, 0.8124808996961117], [0.02399474773251913, 0.781722242669695], [0.03133662369546434, 0.751179066766131], [0.03963409018520694, 0.7208815008107303], [0.04887894779654791, 0.690859431071173], [0.059062064291850125, 0.661142471850026], [0.07017338357501171, 0.6317599363426952], [0.08220193556380065, 0.6027408077889879], [0.09513584695170245, 0.5741137109462129], [0.10896235284964481, 0.5459068839114809], [0.12366780929716721, 0.5181481503205693], [0.13923770663182133, 0.49086489195040967], [0.15565668370478822, 0.46408402175190977], [0.1729085429299136, 0.4378319573394634], [0.19097626615256882, 0.412134594963105], [0.20984203132395726, 0.3870172839888609], [0.2294872299656956, 0.3625048019124108], [0.24989248540871847, 0.3386213299307012], [0.2710376717897686, 0.3153904290956772], [0.29290193378797313, 0.2928350170737655], [0.315463707083202, 0.27097734553423447], [0.33870073951719004, 0.2498389781889518], [0.362590112937603, 0.22944076950550518], [0.38710826570451223, 0.2098028441150193], [0.4122310158379952, 0.1909445769353626], [0.4379335847848627, 0.17288457402977944], [0.46419062178180936, 0.15564065422028714], [0.49097622879158936, 0.13922983147446477], [0.518263985988145, 0.12366829808353058], [0.5460269777659784, 0.10897140864883137], [0.574237819248399, 0.0951536648930957], [0.6028686832687026, 0.082228701311992], [0.6318913277977335, 0.07020927168070458], [0.6612771237907197, 0.05910723642940488], [0.6909970834257817, 0.048933550900610155], [0.7210218887059558, 0.03969825450055861], [0.7513219203961732, 0.03141046075581141], [0.7818672872661444, 0.02407834828538318], [0.8126278556097459, 0.01770915269776382], [0.843573279011106, 0.012309159421253086], [0.8746730283272925, 0.007883697475061664], [0.9058964218571909, 0.004437134187667678], [0.9372126556659277, 0.0019728708679349577], [0.9685908340339902, 0.0004933394335071748], [0.9999999999999999, 0], [1.03140916596601, 0.0004933394335071748], [1.062787344334072, 0.0019728708679349577], [1.0941035781428095, 0.004437134187667678], [1.1253269716727068, 0.007883697475061664], [1.1564267209888937, 0.012309159421253086], [1.187372144390254, 0.01770915269776382], [1.2181327127338548, 0.02407834828538298], [1.2486780796038268, 0.03141046075581141], [1.2789781112940435, 0.039698254500558416], [1.3090029165742185, 0.048933550900610155], [1.3387228762092802, 0.05910723642940488], [1.3681086722022662, 0.07020927168070439], [1.397131316731297, 0.082228701311992], [1.4257621807516008, 0.0951536648930957], [1.453973022234021, 0.10897140864883108], [1.4817360140118547, 0.12366829808353047], [1.5090237712084105, 0.13922983147446447], [1.5358093782181905, 0.15564065422028694], [1.5620664152151371, 0.17288457402977933], [1.5877689841620044, 0.1909445769353625], [1.6128917342954878, 0.2098028441150194], [1.6374098870623968, 0.2294407695055051], [1.66129926048281, 0.24983897818895162], [1.684536292916798, 0.27097734553423425], [1.7070980662120265, 0.29283501707376536], [1.7289623282102309, 0.3153904290956766], [1.7501075145912819, 0.33862132993070126], [1.7705127700343042, 0.36250480191241075], [1.7901579686760425, 0.3870172839888608], [1.809023733847431, 0.4121345949631048], [1.827091457070086, 0.43783195733946323], [1.8443433162952114, 0.46408402175190916], [1.8607622933681784, 0.49086489195040944], [1.8763321907028319, 0.5181481503205684], [1.8910376471503554, 0.5459068839114809], [1.9048641530482975, 0.5741137109462127], [1.9177980644361994, 0.6027408077889881], [1.9298266164249884, 0.6317599363426952], [1.9409379357081498, 0.6611424718500252], [1.951121052203452, 0.6908594310711728], [1.960365909814793, 0.7208815008107299], [1.9686633763045358, 0.7511790667661306], [1.9760052522674805, 0.7817222426696941], [1.9823842791984165, 0.8124808996961106], [1.987794146645978, 0.8434246961069695], [1.9922294984463231, 0.8745231071037372], [1.9956859380309284, 0.9057454548604233], [1.9981600328035976, 0.9370609387070119], [1.999649317582543, 0.968438665434609], [2.0001522971042083, 0.9998476796931375], [1.9996684475862758, 1.0312569944523673], [1.9981982173480792, 1.0626356214969372], [1.9957430264874667, 1.0939526019260544], [1.9923052656139026, 1.1251770366284897], [1.987888293638435, 1.1562781167035039], [1.9824964346219185, 1.1872251537984004], [1.9761349736837084, 1.2179876103333835], [1.9688101519738213, 1.248535129584534], [1.9605291607123858, 1.2788375655957906], [1.9513001343010143, 1.3088650128909083], [1.9411321425115249, 1.33858783595658], [1.9300351817582941, 1.3679766984680017], [1.9180201654613247, 1.3970025922283906], [1.9050989135079444, 1.4256368657941836], [1.8912841408219103, 1.4538512527578427], [1.87658944504949, 1.4816178996605236], [1.8610292933729802, 1.5089093935070865], [1.8446190084629417, 1.5356987888562843], [1.8273747535812745, 1.561959634459308], [1.8093135168481453, 1.5876659994202], [1.7904530946865826, 1.6127924988520848], [1.770812074459446, 1.6373143190035664], [1.7504098163143191, 1.6612072418300867], [1.7292664342527024, 1.684447668985534], [1.707402776440781, 1.7070126452098708], [1.6848404047798267, 1.7288798810891064], [1.6616015737551693, 1.7500277751644846], [1.637709208583487, 1.7704354353683474], [1.6131868826789857, 1.7900826997647472], [1.5880587944598537, 1.8089501565735244], [1.5623497435171438, 1.8270191634572421], [1.536085106169064, 1.8442718660510584], [1.5092908104243594, 1.8606912157163362], [1.4819933103792768, 1.8762609864995452], [1.4542195600732688, 1.8909657912787872], [1.4259969868293167, 1.9047910970810662], [1.3973534641054426, 1.9177232395542516], [1.368317283884593, 1.9297494365785246], [1.3389171286307235, 1.9408578010029784], [1.3091820428394731, 1.9510373524939144], [1.2791414042124027, 1.9602780284822994], [1.2488248944842586, 1.968570694198774], [1.218262469933227, 1.9759071517855469], [1.187484331604576, 1.9822801484754786], [1.156520895278486, 1.9876833838296297], [1.125402761213246, 1.9921115160255491], [1.0941606836952946, 1.9955601671895735], [1.0628255404278766, 1.998025927767439], [1.0314283017903014, 1.999506359928513], [1, 2] ] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/out/segment1a.geojson ================================================ { "type": "FeatureCollection", "properties": { "units": "miles", "mercator": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, -1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [0, 0], [2, 0] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 0], [0.9685908340339902, -0.0004933394335071748], [0.9372126556659279, -0.0019728708679349577], [0.9058964218571909, -0.004437134187667678], [0.8746730283272928, -0.007883697475061664], [0.8435732790111062, -0.012309159421253086], [0.8126278556097459, -0.01770915269776382], [0.7818672872661449, -0.02407834828538298], [0.7513219203961732, -0.03141046075581141], [0.7210218887059561, -0.03969825450055861], [0.6909970834257817, -0.048933550900610155], [0.6612771237907198, -0.05910723642940488], [0.6318913277977333, -0.07020927168070458], [0.602868683268703, -0.0822287013119918], [0.574237819248399, -0.0951536648930957], [0.5460269777659785, -0.10897140864883127], [0.5182639859881453, -0.12366829808353047], [0.4909762287915894, -0.1392298314744647], [0.4641906217818095, -0.15564065422028694], [0.4379335847848626, -0.17288457402977964], [0.41223101583799526, -0.1909445769353625], [0.3871082657045127, -0.20980284411501912], [0.36259011293760307, -0.22944076950550518], [0.33870073951719004, -0.2498389781889518], [0.31546370708320187, -0.2709773455342346], [0.2929019337879732, -0.2928350170737654], [0.2710376717897689, -0.31539042909567677], [0.24989248540871817, -0.33862132993070143], [0.229487229965696, -0.3625048019124104], [0.20984203132395737, -0.3870172839888608], [0.19097626615256882, -0.41213459496310495], [0.1729085429299135, -0.4378319573394634], [0.15565668370478833, -0.46408402175190966], [0.13923770663182172, -0.490864891950409], [0.12366780929716732, -0.518148150320569], [0.1089623528496449, -0.5459068839114809], [0.09513584695170245, -0.5741137109462128], [0.08220193556380086, -0.6027408077889875], [0.07017338357501171, -0.6317599363426952], [0.059062064291850125, -0.6611424718500258], [0.04887894779654791, -0.6908594310711729], [0.03963409018520694, -0.7208815008107302], [0.03133662369546434, -0.7511790667661309], [0.02399474773251913, -0.7817222426696949], [0.017615720801583256, -0.8124808996961116], [0.012205853354021613, -0.8434246961069695], [0.007770501553676737, -0.8745231071037364], [0.004314061969071702, -0.9057454548604229], [0.0018399671964027264, -0.9370609387070127], [0.0003506824174574152, -0.968438665434609], [-0.00015229710420852578, -0.9998476796931378], [0.0003315524137242247, -1.031256994452367], [0.0018017826519207234, -1.0626356214969368], [0.0042569735125335345, -1.0939526019260553], [0.00769473438609757, -1.1251770366284897], [0.012111706361565545, -1.1562781167035043], [0.017503565378081225, -1.1872251537984004], [0.023865026316291303, -1.217987610333383], [0.031189848026179367, -1.2485351295845348], [0.03947083928761441, -1.2788375655957906], [0.04869986569898602, -1.3088650128909083], [0.058867857488475256, -1.3385878359565802], [0.06996481824170571, -1.3679766984680015], [0.08197983453867567, -1.3970025922283915], [0.09490108649205571, -1.4256368657941836], [0.10871585917808985, -1.4538512527578427], [0.12341055495051029, -1.4816178996605236], [0.13897070662701944, -1.5089093935070859], [0.15538099153705873, -1.5356987888562845], [0.172625246418726, -1.561959634459309], [0.19068648315185485, -1.5876659994202005], [0.20954690531341758, -1.6127924988520848], [0.2291879255405534, -1.6373143190035662], [0.2495901836856816, -1.6612072418300876], [0.27073356574729796, -1.6844476689855343], [0.2925972235592191, -1.7070126452098708], [0.3151595952201731, -1.728879881089106], [0.33839842624483063, -1.7500277751644842], [0.36229079141651366, -1.7704354353683476], [0.3868131173210141, -1.7900826997647472], [0.4119412055401464, -1.8089501565735244], [0.43765025648285577, -1.827019163457242], [0.46391489383093654, -1.8442718660510584], [0.4907091895756413, -1.8606912157163362], [0.5180066896207228, -1.8762609864995452], [0.5457804399267313, -1.8909657912787872], [0.5740030131706838, -1.9047910970810662], [0.6026465358945575, -1.9177232395542516], [0.6316827161154072, -1.9297494365785246], [0.6610828713692761, -1.9408578010029784], [0.6908179571605269, -1.9510373524939144], [0.7208585957875976, -1.9602780284822994], [0.7511751055157418, -1.9685706941987744], [0.7817375300667727, -1.9759071517855464], [0.8125156683954242, -1.9822801484754786], [0.8434791047215142, -1.9876833838296297], [0.8745972387867542, -1.9921115160255491], [0.905839316304705, -1.9955601671895735], [0.937174459572123, -1.998025927767439], [0.9685716982096989, -1.999506359928513], [0.9999999999999999, -2], [1.0314283017903014, -1.999506359928513], [1.0628255404278766, -1.998025927767439], [1.0941606836952953, -1.9955601671895735], [1.1254027612132451, -1.9921115160255491], [1.1565208952784856, -1.9876833838296297], [1.187484331604576, -1.9822801484754786], [1.2182624699332265, -1.9759071517855469], [1.2488248944842584, -1.9685706941987744], [1.2791414042124019, -1.9602780284822996], [1.3091820428394731, -1.9510373524939144], [1.3389171286307235, -1.9408578010029784], [1.3683172838845927, -1.9297494365785246], [1.3973534641054421, -1.9177232395542516], [1.4259969868293159, -1.9047910970810662], [1.454219560073268, -1.8909657912787876], [1.4819933103792768, -1.8762609864995452], [1.5092908104243585, -1.8606912157163367], [1.5360851061690632, -1.844271866051059], [1.5623497435171443, -1.8270191634572421], [1.5880587944598534, -1.8089501565735244], [1.6131868826789861, -1.7900826997647472], [1.6377092085834863, -1.7704354353683476], [1.6616015737551695, -1.7500277751644846], [1.6848404047798269, -1.7288798810891064], [1.7074027764407809, -1.707012645209871], [1.7292664342527015, -1.6844476689855352], [1.7504098163143187, -1.6612072418300874], [1.7708120744594467, -1.6373143190035662], [1.7904530946865824, -1.612792498852085], [1.809313516848145, -1.5876659994202005], [1.8273747535812737, -1.5619596344593092], [1.8446190084629408, -1.5356987888562854], [1.8610292933729806, -1.508909393507086], [1.876589445049489, -1.481617899660525], [1.8912841408219099, -1.4538512527578429], [1.9050989135079444, -1.425636865794184], [1.918020165461324, -1.3970025922283913], [1.9300351817582941, -1.3679766984680015], [1.9411321425115242, -1.338587835956581], [1.9513001343010143, -1.3088650128909083], [1.9605291607123858, -1.278837565595791], [1.9688101519738206, -1.2485351295845353], [1.9761349736837084, -1.2179876103333838], [1.9824964346219185, -1.1872251537984015], [1.9878882936384346, -1.1562781167035043], [1.9923052656139026, -1.125177036628489], [1.9957430264874667, -1.0939526019260548], [1.9981982173480792, -1.0626356214969377], [1.9996684475862758, -1.031256994452367], [2.0001522971042083, -0.9998476796931379], [1.9996493175825425, -0.9684386654346085], [1.9981600328035976, -0.9370609387070123], [1.9956859380309284, -0.9057454548604236], [1.9922294984463231, -0.8745231071037364], [1.987794146645978, -0.8434246961069698], [1.982384279198417, -0.8124808996961119], [1.976005252267481, -0.7817222426696945], [1.968663376304536, -0.7511790667661317], [1.960365909814793, -0.7208815008107302], [1.951121052203452, -0.690859431071173], [1.94093793570815, -0.6611424718500264], [1.9298266164249884, -0.6317599363426949], [1.9177980644361994, -0.6027408077889884], [1.9048641530482977, -0.5741137109462129], [1.8910376471503554, -0.5459068839114811], [1.8763321907028327, -0.5181481503205695], [1.8607622933681782, -0.49086489195040894], [1.844343316295212, -0.46408402175191027], [1.827091457070087, -0.4378319573394643], [1.809023733847431, -0.4121345949631052], [1.790157968676043, -0.3870172839888611], [1.7705127700343037, -0.3625048019124103], [1.750107514591282, -0.338621329930702], [1.7289623282102318, -0.3153904290956775], [1.7070980662120272, -0.29283501707376564], [1.684536292916798, -0.27097734553423414], [1.6612992604828098, -0.2498389781889515], [1.6374098870623974, -0.2294407695055055], [1.6128917342954874, -0.2098028441150192], [1.587768984162005, -0.1909445769353626], [1.562066415215137, -0.17288457402977933], [1.535809378218191, -0.15564065422028742], [1.5090237712084111, -0.13922983147446497], [1.4817360140118547, -0.12366829808353047], [1.4539730222340217, -0.10897140864883137], [1.4257621807516014, -0.09515366489309589], [1.3971313167312978, -0.082228701311992], [1.3681086722022668, -0.07020927168070458], [1.3387228762092802, -0.05910723642940488], [1.3090029165742185, -0.048933550900610155], [1.2789781112940444, -0.03969825450055861], [1.2486780796038273, -0.03141046075581161], [1.2181327127338553, -0.02407834828538298], [1.187372144390254, -0.01770915269776382], [1.156426720988894, -0.012309159421253086], [1.1253269716727077, -0.007883697475061664], [1.094103578142809, -0.004437134187667678], [1.0627873443340718, -0.0019728708679349577], [1.0314091659660098, -0.0004933394335071748], [1, 0] ] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/out/segment2.geojson ================================================ { "type": "FeatureCollection", "properties": { "units": "miles", "mercator": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0, 0] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [1, 1], [1, -1] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 1], [-0.03141394574050328, 0.9995065102932796], [-0.06279687085684513, 0.9980265286324063], [-0.0941177855058775, 0.9955615169102346], [-0.12534576137461445, 0.9921139099986649], [-0.1564499623656962, 0.9876871133261552], [-0.1873996751874377, 0.9822854994898309], [-0.21816433981686437, 0.9759144039057747], [-0.24871357980431505, 0.9685801195020965], [-0.27901723238841136, 0.9602898904603901], [-0.30904537839045754, 0.9510519050121816], [-0.3387683718576357, 0.9408752872979607], [-0.36815686942470705, 0.9297700882973662], [-0.3971818593643154, 0.9177472758400551], [-0.425814690296404, 0.9048187237077365], [-0.45402709952772125, 0.8909971998387831], [-0.48179124099287784, 0.8762963536477497], [-0.5090797127689458, 0.8607307024730207], [-0.535865584136147, 0.8443156171666943], [-0.5621224221577615, 0.8270673068416589], [-0.5878243177530069, 0.8090028027916633], [-0.6129459112372745, 0.790139941600986], [-0.6374624173047774, 0.7704973474611085], [-0.6613496494293466, 0.7500944137125592], [-0.6845840436598288, 0.7289512836308387], [-0.7071426817872531, 0.707088830476057], [-0.7290033138616859, 0.6845286368266039], [-0.7501443800374464, 0.6612929732178414], [-0.7705450317261278, 0.6374047761074486], [-0.7901851520376476, 0.6128876251896624], [-0.8090453754903468, 0.5877657200812537], [-0.8271071069719526, 0.5620638564026238], [-0.8443525399340311, 0.5358074012779623], [-0.860764673803362, 0.5090222682789036], [-0.8763273305944876, 0.4817348918365997], [-0.8910251707085054, 0.4539722011475964], [-0.9048437079039933, 0.4257615935993164], [-0.9177693234267785, 0.3971309077413644], [-0.929789279286082, 0.3681083958292459], [-0.9408917306653878, 0.3387226959674463], [-0.9510657374572111, 0.30900280387913587], [-0.9603012749117521, 0.2789780443300872], [-0.9685892433902342, 0.24867804223464635], [-0.9759214772145473, 0.2181326934718713], [-0.9822907526056148, 0.18737213544017478], [-0.9876907947037177, 0.1564267173790074], [-0.9921162836648101, 0.12532697048631067], [-0.9955628598276642, 0.09410357786062264], [-0.9980271279474756, 0.06278734429685068], [-0.9995066604923645, 0.03140916596484566], [-1, 6.122923126514857e-17], [-0.9995066604923645, -0.031409165964845547], [-0.9980271279474756, -0.06278734429685032], [-0.9955628598276642, -0.09410357786062273], [-0.9921162836648099, -0.1253269704863108], [-0.9876907947037175, -0.1564267173790075], [-0.9822907526056148, -0.1873721354401747], [-0.9759214772145473, -0.21813269347187117], [-0.9685892433902342, -0.24867804223464623], [-0.9603012749117521, -0.27897804433008716], [-0.9510657374572111, -0.30900280387913576], [-0.9408917306653878, -0.3387226959674461], [-0.929789279286082, -0.3681083958292458], [-0.9177693234267786, -0.39713090774136406], [-0.9048437079039933, -0.4257615935993163], [-0.8910251707085055, -0.45397220114759623], [-0.8763273305944878, -0.4817348918365994], [-0.8607646738033624, -0.5090222682789031], [-0.8443525399340313, -0.5358074012779622], [-0.8271071069719524, -0.5620638564026238], [-0.8090453754903468, -0.5877657200812537], [-0.7901851520376477, -0.6128876251896622], [-0.7705450317261281, -0.637404776107448], [-0.7501443800374462, -0.6612929732178418], [-0.7290033138616862, -0.6845286368266037], [-0.7071426817872533, -0.7070888304760569], [-0.6845840436598287, -0.7289512836308388], [-0.6613496494293466, -0.7500944137125592], [-0.6374624173047776, -0.7704973474611085], [-0.612945911237275, -0.7901399416009859], [-0.587824317753007, -0.809002802791663], [-0.5621224221577613, -0.8270673068416589], [-0.535865584136147, -0.8443156171666942], [-0.509079712768946, -0.8607307024730205], [-0.48179124099287807, -0.8762963536477496], [-0.4540270995277213, -0.8909971998387831], [-0.42581469029640395, -0.9048187237077365], [-0.3971818593643159, -0.917747275840055], [-0.3681568694247068, -0.9297700882973662], [-0.338768371857636, -0.9408752872979605], [-0.30904537839045765, -0.9510519050121816], [-0.27901723238841164, -0.9602898904603901], [-0.24871357980431505, -0.9685801195020965], [-0.21816433981686462, -0.9759144039057747], [-0.18739967518743766, -0.9822854994898309], [-0.15644996236569633, -0.9876871133261549], [-0.12534576137461473, -0.9921139099986648], [-0.09411778550587754, -0.9955615169102346], [-0.06279687085684535, -0.9980265286324063], [-0.03141394574050323, -0.9995065102932796], [-1.2247711638835432e-16, -1], [0.031413945740503435, -0.9995065102932796], [0.06279687085684511, -0.9980265286324063], [0.09411778550587774, -0.9955615169102346], [0.12534576137461406, -0.9921139099986649], [0.15644996236569608, -0.9876871133261552], [0.18739967518743783, -0.9822854994898307], [0.21816433981686395, -0.9759144039057748], [0.24871357980431527, -0.9685801195020965], [0.27901723238841103, -0.9602898904603904], [0.30904537839045787, -0.9510519050121816], [0.3387683718576357, -0.9408752872979607], [0.36815686942470655, -0.9297700882973663], [0.3971818593643156, -0.917747275840055], [0.4258146902964037, -0.9048187237077365], [0.45402709952772075, -0.8909971998387834], [0.48179124099287784, -0.8762963536477497], [0.5090797127689455, -0.860730702473021], [0.5358655841361469, -0.8443156171666943], [0.5621224221577612, -0.8270673068416591], [0.5878243177530068, -0.8090028027916633], [0.612945911237275, -0.7901399416009857], [0.6374624173047773, -0.7704973474611087], [0.6613496494293465, -0.7500944137125595], [0.6845840436598287, -0.7289512836308389], [0.7071426817872531, -0.7070888304760571], [0.7290033138616857, -0.6845286368266043], [0.7501443800374464, -0.6612929732178414], [0.7705450317261281, -0.6374047761074483], [0.7901851520376476, -0.6128876251896624], [0.8090453754903465, -0.5877657200812538], [0.8271071069719522, -0.562063856402624], [0.844352539934031, -0.5358074012779628], [0.8607646738033623, -0.5090222682789033], [0.8763273305944872, -0.4817348918366004], [0.8910251707085054, -0.4539722011475964], [0.9048437079039933, -0.4257615935993165], [0.9177693234267786, -0.3971309077413639], [0.929789279286082, -0.36810839582924587], [0.9408917306653873, -0.3387226959674469], [0.9510657374572111, -0.309002803879136], [0.9603012749117521, -0.2789780443300876], [0.9685892433902342, -0.2486780422346467], [0.9759214772145471, -0.21813269347187206], [0.9822907526056147, -0.18737213544017578], [0.9876907947037175, -0.1564267173790075], [0.9921162836648101, -0.12532697048631017], [0.9955628598276642, -0.09410357786062232], [0.9980271279474756, -0.06278734429685125], [0.9995066604923645, -0.03140916596484556], [1, -1.836876937954457e-16], [0.9995066604923644, 0.03140916596484608], [0.9980271279474756, 0.06278734429685087], [0.9955628598276643, 0.09410357786062197], [0.9921162836648101, 0.12532697048631067], [0.9876907947037177, 0.15642671737900715], [0.9822907526056148, 0.18737213544017453], [0.9759214772145473, 0.2181326934718717], [0.9685892433902344, 0.24867804223464546], [0.9603012749117521, 0.2789780443300872], [0.9510657374572111, 0.3090028038791357], [0.9408917306653879, 0.3387226959674458], [0.9297892792860817, 0.3681083958292463], [0.9177693234267789, 0.39713090774136356], [0.9048437079039935, 0.4257615935993162], [0.8910251707085055, 0.4539722011475962], [0.876327330594488, 0.48173489183659923], [0.860764673803362, 0.5090222682789037], [0.8443525399340316, 0.5358074012779618], [0.827107106971953, 0.5620638564026229], [0.8090453754903468, 0.5877657200812536], [0.7901851520376478, 0.6128876251896621], [0.7705450317261276, 0.6374047761074486], [0.7501443800374469, 0.6612929732178409], [0.7290033138616866, 0.6845286368266033], [0.7071426817872534, 0.7070888304760569], [0.6845840436598284, 0.7289512836308389], [0.6613496494293464, 0.7500944137125596], [0.6374624173047778, 0.7704973474611082], [0.6129459112372746, 0.7901399416009859], [0.5878243177530071, 0.809002802791663], [0.5621224221577611, 0.8270673068416591], [0.5358655841361475, 0.8443156171666938], [0.5090797127689466, 0.8607307024730204], [0.48179124099287784, 0.8762963536477497], [0.45402709952772147, 0.8909971998387831], [0.42581469029640445, 0.9048187237077363], [0.39718185936431594, 0.917747275840055], [0.368156869424707, 0.9297700882973662], [0.3387683718576357, 0.9408752872979607], [0.3090453783904578, 0.9510519050121816], [0.2790172323884118, 0.9602898904603901], [0.24871357980431563, 0.9685801195020965], [0.21816433981686426, 0.9759144039057747], [0.18739967518743775, 0.9822854994898309], [0.15644996236569647, 0.9876871133261549], [0.12534576137461484, 0.9921139099986648], [0.09411778550587722, 0.9955615169102346], [0.06279687085684503, 0.9980265286324063], [0.03141394574050335, 0.9995065102932796], [0, 1] ] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/out/segment3.geojson ================================================ { "type": "FeatureCollection", "properties": { "units": "miles", "mercator": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [1, 1] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [2, 1], [3, 1] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1.9998476912909309], [0.9685764874430625, 1.9993541264432921], [0.9371840332951916, 1.9978739198791862], [0.9058536650349519, 1.9954085350477562], [0.874616348312366, 1.991960409407136], [0.8435029561157432, 1.9875329519906195], [0.8125442380357036, 1.982130540002962], [0.7817707896585678, 1.9757585144504493], [0.7512130221211079, 1.9684231748094274], [0.720901131858419, 1.960131772738993], [0.6908650705763909, 1.9508925048445718], [0.6611345154799444, 1.9407145045001086], [0.6317388397878309, 1.9296078327375863], [0.6027070835643901, 1.9175834682135797], [0.574067924898221, 1.9046532962634994], [0.5458496514572314, 1.8908300970551284], [0.5180801324490233, 1.8761275328540072], [0.4907867910150093, 1.8605601344140907], [0.4639965770860733, 1.8441432865080298], [0.4377359407269739, 1.8268932126122714], [0.4120308059960352, 1.8088269587630355], [0.3869065453460031, 1.7899623766000274], [0.3623879545912411, 1.7703181056155757], [0.33849922846572483, 1.749913554627618], [0.31526393679553893, 1.7287688824957437], [0.29270500130883303, 1.706904978100197], [0.2708446731054016, 1.6843434396044605], [0.2497045108072656, 1.6611065530226876], [0.2293053594108224, 1.6372172701139152], [0.20966732986031264, 1.612699185625586], [0.19080977936152865, 1.5875765139095044], [0.17275129245384074, 1.561874064933911], [0.1555096628577904, 1.5356172197158828], [0.1391018761146433, 1.5088319051987862], [0.12354409303344221, 1.4815445685999664], [0.10885163396025704, 1.4537821512543276], [0.09503896388346597, 1.42557206197986], [0.08211967838805978, 1.3969421499915808], [0.07010649047109206, 1.3679206773907133], [0.059011218229577264, 1.3385362912562797], [0.04884477343125654, 1.3088179953665888], [0.039617150977839286, 1.2787951215783993], [0.03133741926947393, 1.2484973008917966], [0.02401371147836088, 1.217954434229065], [0.01765321773861128, 1.1871966629560535], [0.012262178258605124, 1.1562543391747098], [0.00784587736129576, 1.1251579958156466], [0.0044086384570907475, 1.0939383165597265], [0.0019538199531214176, 1.0626261056177748], [0.00048381210190536834, 1.0312522573976357], [3.4791613956666536e-8, 0.9998477260878444], [0.0005029362793398631, 0.9684434951872459], [0.001991992867979772, 0.937070547009919], [0.0044657095265349675, 0.9057598321947592], [0.007921621452868132, 0.8745422392490729], [0.012356296577131455, 0.8434485641554709], [0.017765339003325175, 0.8125094800713095], [0.024143393385636872, 0.7817555071498272], [0.03148415023543807, 0.7512169825120283], [0.03978035215402522, 0.7209240303982191], [0.04902380098540174, 0.6909065325279683], [0.05920536588262482, 0.6611940986970771], [0.07031499228043472, 0.6318160376399445], [0.08234171176611832, 0.6028013281855018], [0.09527365283974953, 0.5741785907346371], [0.10909805255417786, 0.545976059086767], [0.12380126902433272, 0.5182215526429196], [0.1393687947946292, 0.4909424490123792], [0.15578527105246542, 0.46416565704960455], [0.17303450267500964, 0.43791759034776495], [0.19109947409569225, 0.4122241412148512], [0.20996236597601992, 0.38711065515790877], [0.2296045726675431, 0.36260190590050106], [0.25000672044803096, 0.33872207095804346], [0.2711486865151151, 0.31549470779516814], [0.2930096187199026, 0.2929427305887503], [0.3155679560222654, 0.27108838761971815], [0.33880144964877745, 0.24995323931616376], [0.3626871849334956, 0.22955813696971483], [0.3872016038210406, 0.20992320214650032], [0.4123205280107062, 0.19106780681339716], [0.43801918271959744, 0.17301055419959332], [0.46427222104209515, 0.15576926041279984], [0.4910537488822567, 0.1393609368287407], [0.5183373504350832, 0.12380177327180888], [0.5460961141919409, 0.10910712200401398], [0.5743026594447858, 0.09529148253856706], [0.6029291632632362, 0.08236848729364371], [0.6319473879179616, 0.07035088810103365], [0.6613287087232729, 0.05925054358355488], [0.6910441422713254, 0.0490784074142174], [0.7210643750297743, 0.03984451746927074], [0.7513597922743341, 0.03155798588633497], [0.7819005073271911, 0.024226990037924254], [0.8126563910718728, 0.017858764429716806], [0.8435971017147775, 0.012459593531994719], [0.8746921147632691, 0.008034805551705666], [0.9059107531899301, 0.004588767151634947], [0.9372222177523374, 0.0021248791221906886], [0.9685956174375103, 0.0006455730103193716], [0.9999999999999999, 0.00015230870906915127], [1.03140438256249, 0.0006455730103193716], [1.0627777822476625, 0.0021248791221906886], [1.0940892468100702, 0.004588767151634947], [1.1253078852367304, 0.008034805551705666], [1.1564028982852224, 0.012459593531994719], [1.1873436089281277, 0.017858764429716806], [1.2180994926728084, 0.024226990037924057], [1.2486402077256664, 0.03155798588633497], [1.2789356249702248, 0.039844517469270535], [1.3089558577286753, 0.0490784074142174], [1.338671291276727, 0.05925054358355488], [1.368052612082038, 0.07035088810103365], [1.3970708367367635, 0.08236848729364371], [1.4256973405552142, 0.09529148253856706], [1.4539038858080586, 0.10910712200401368], [1.4816626495649166, 0.12380177327180877], [1.5089462511177427, 0.1393609368287404], [1.5357277789579047, 0.15576926041279973], [1.5619808172804022, 0.17301055419959313], [1.5876794719892935, 0.19106780681339705], [1.6127983961789596, 0.2099232021465004], [1.6373128150665042, 0.22955813696971475], [1.6611985503512223, 0.24995323931616348], [1.6844320439777343, 0.27108838761971804], [1.706990381280097, 0.29294273058875], [1.7288513134848846, 0.31549470779516753], [1.7499932795519693, 0.3387220709580436], [1.7703954273324567, 0.36260190590050084], [1.79003763402398, 0.3871106551579085], [1.8089005259043074, 0.41222414121485096], [1.8269654973249903, 0.43791759034776473], [1.8442147289475344, 0.46416565704960394], [1.8606312052053708, 0.490942449012379], [1.8761987309756667, 0.5182215526429186], [1.8909019474458222, 0.5459760590867668], [1.9047263471602505, 0.574178590734637], [1.917658288233882, 0.602801328185502], [1.9296850077195653, 0.6318160376399444], [1.9407946341173747, 0.6611940986970761], [1.950976199014598, 0.6909065325279681], [1.9602196478459746, 0.7209240303982185], [1.9685158497645618, 0.7512169825120278], [1.9758566066143628, 0.7817555071498264], [1.9822346609966746, 0.8125094800713084], [1.9876437034228687, 0.8434485641554709], [1.992078378547132, 0.8745422392490737], [1.9955342904734654, 0.9057598321947595], [1.9980080071320199, 0.937070547009918], [1.99949706372066, 0.9684434951872459], [1.999999965208386, 0.9998477260878441], [1.9995161878980947, 1.0312522573976362], [1.998046180046879, 1.062626105617775], [1.9955913615429095, 1.0939383165597256], [1.9921541226387043, 1.1251579958156466], [1.9877378217413952, 1.1562543391747095], [1.9823467822613885, 1.187196662956053], [1.9759862885216393, 1.2179544342290656], [1.968662580730526, 1.2484973008917954], [1.9603828490221609, 1.2787951215783993], [1.9511552265687435, 1.3088179953665888], [1.9409887817704228, 1.338536291256279], [1.9298935095289076, 1.3679206773907135], [1.9178803216119407, 1.39694214999158], [1.9049610361165343, 1.42557206197986], [1.8911483660397432, 1.4537821512543274], [1.8764559069665578, 1.481544568599966], [1.8608981238853566, 1.5088319051987862], [1.8444903371422101, 1.5356172197158822], [1.8272487075461599, 1.5618740649339105], [1.8091902206384716, 1.5875765139095044], [1.7903326701396876, 1.6126991856255855], [1.7706946405891775, 1.6372172701139154], [1.750295489192735, 1.661106553022687], [1.7291553268945992, 1.68434343960446], [1.707294998691167, 1.7069049781001968], [1.6847360632044608, 1.728768882495744], [1.661500771534275, 1.7499135546276183], [1.6376120454087597, 1.770318105615575], [1.6130934546539972, 1.7899623766000272], [1.587969194003965, 1.8088269587630355], [1.5622640592730255, 1.826893212612272], [1.5360034229139272, 1.8441432865080298], [1.5092132089849915, 1.8605601344140903], [1.4819198675509768, 1.8761275328540072], [1.454150348542769, 1.8908300970551284], [1.4259320751017792, 1.904653296263499], [1.3972929164356105, 1.9175834682135797], [1.368261160212169, 1.9296078327375863], [1.3388654845200556, 1.9407145045001086], [1.3091349294236092, 1.9508925048445718], [1.2790988681415816, 1.960131772738993], [1.248786977878893, 1.9684231748094274], [1.2182292103414323, 1.9757585144504493], [1.1874557619642963, 1.982130540002962], [1.156497043884257, 1.9875329519906195], [1.1253836516876345, 1.991960409407136], [1.0941463349650475, 1.9954085350477562], [1.0628159667048083, 1.9978739198791862], [1.0314235125569375, 1.9993541264432921], [1, 1.9998476912909309] ] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test/out/segment4.geojson ================================================ { "type": "FeatureCollection", "properties": { "units": "miles", "mercator": true }, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-48.076171875, 15.453680224345835] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-51.5478515625, 19.352610894378625], [-29.794921874999996, 27.176469131898898] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-48.076171875, 20.385085986545974], [-48.24121373148589, 20.382587020538292], [-48.40607804834933, 20.375092831500616], [-48.570587537633166, 20.362611542355154], [-48.734565413965605, 20.345156677872723], [-48.89783564399486, 20.322747144571107], [-49.06022319360827, 20.295407202667537], [-49.221554272220345, 20.26316643017937], [-49.38165657343407, 20.226059679292504], [-49.540359511403665, 20.18412702514188], [-49.69749445225518, 20.13741370717204], [-49.85289493995344, 20.085970063268174], [-50.006396916039996, 20.029851456869004], [-50.157838932704884, 19.969118197292435], [-50.30706235869757, 19.903835453522767], [-50.45391157762597, 19.83407316172425], [-50.598234178238826, 19.759905926760144], [-50.7398811363339, 19.68141291800882], [-50.87870698798338, 19.598677759778948], [-51.014569993816814, 19.51178841663417], [-51.14733229415095, 19.420837073944526], [-51.27686005480537, 19.32592001398626], [-51.40302360349036, 19.22713748791452], [-51.52569755670126, 19.12459358393442], [-51.644760937098624, 19.018396091994855], [-51.76009728139784, 18.908656365327094], [-51.871594738833444, 18.795489179145836], [-51.979146160302626, 18.679012586824825], [-52.08264917832937, 18.55934777385202], [-52.182006278024836, 18.436618909860883], [-52.27712485924993, 18.31095299902511], [-52.367917290214905, 18.182479729093348], [-52.45430095277478, 18.05133131932943], [-52.53619827970133, 17.91764236761125], [-52.61353678423081, 17.78154969692906], [-52.686249082201364, 17.6431922015106], [-52.75427290710628, 17.50271069278718], [-52.81755111839816, 17.360247745401075], [-52.87603170338466, 17.21594754344104], [-52.929667773059904, 17.069955727078867], [-52.97841755221535, 16.92241923976654], [-53.02224436417227, 16.773486176140292], [-53.06111661047297, 16.623305630764825], [-53.09500774586052, 16.472027547838646], [-53.123896248869045, 16.319802571969404], [-53.147765588334316, 16.166781900116813], [-53.16660418612344, 16.01311713478999], [-53.18040537636747, 15.858960138576114], [-53.18916736146651, 15.704462890067862], [-53.19289316512047, 15.54977734124876], [-53.191590582621906, 15.395055276387788], [-53.18527212862962, 15.240448172487719], [-53.17395498262442, 15.086107061325611], [-53.15766093222928, 14.932182393118635], [-53.13641631455885, 14.778823901844126], [-53.11025195574441, 14.62618047223891], [-53.0792031087627, 14.474400008500474], [-53.04330938967932, 14.32362930471022], [-53.0026147124005, 14.174013916998012], [-52.95716722201038, 14.025698037466432], [-52.90701922675526, 13.878824369893353], [-52.852227128721616, 13.73353400723213], [-52.792851353240366, 13.58996631092996], [-52.728956277037206, 13.448258792086785], [-52.66061015513689, 13.308546994479375], [-52.58788504651843, 13.170964379477992], [-52.510856738508835, 13.035642212885984], [-52.42960466989454, 12.902709453736158], [-52.344211852722324, 12.772292645081345], [-52.254764792756234, 12.64451580682035], [-52.16135340855153, 12.519500330604476], [-52.064070949104014, 12.39736487687383], [-51.96301391003057, 12.278225274076597], [-51.85828194823587, 12.162194420128504], [-51.74997779502045, 12.049382186173597], [-51.638207167586586, 11.93989532271111], [-51.52307867890111, 11.8338373681569], [-51.404703745877576, 11.73130855991104], [-51.283196495844635, 11.6324057480063], [-51.15867367127304, 11.537222311414803], [-51.031254532739595, 11.44584807709247], [-50.90106076011367, 11.35836924184276], [-50.76821635195908, 11.274868297082545], [-50.63284752315266, 11.195423956594], [-50.495082600729376, 11.120111087346793], [-50.35505191797273, 11.049000643474834], [-50.21288770677894, 10.982159603491233], [-50.068723988332295, 10.919650910824036], [-49.92269646213929, 10.8615334177536], [-49.77494239347846, 10.807861832830383], [-49.625600499332066, 10.758686671849066], [-49.47481083287577, 10.714054212451837], [-49.32271466661053, 10.674006452429802], [-49.16945437423037, 10.638581071787385], [-49.015173311327025, 10.607811398629767], [-48.86001569504066, 10.581726378928495], [-48.70412648277236, 10.560350550214677], [-48.54765125008035, 10.543704019243547], [-48.39073606788764, 10.531802443667877], [-48.23352737913276, 10.524657017751245], [-48.076171875, 10.522274462145697], [-47.91881637086725, 10.524657017751245], [-47.76160768211238, 10.531802443667877], [-47.60469249991965, 10.543704019243547], [-47.448217267227655, 10.560350550214677], [-47.292328054959356, 10.581726378928495], [-47.13717043867299, 10.607811398629769], [-46.982889375769645, 10.638581071787383], [-46.82962908338948, 10.674006452429802], [-46.67753291712425, 10.714054212451833], [-46.526743250667934, 10.758686671849066], [-46.37740135652155, 10.807861832830383], [-46.22964728786072, 10.8615334177536], [-46.08361976166772, 10.919650910824034], [-45.93945604322107, 10.982159603491233], [-45.79729183202729, 11.049000643474834], [-45.65726114927064, 11.120111087346793], [-45.519496226847345, 11.195423956593997], [-45.38412739804093, 11.274868297082545], [-45.25128298988634, 11.35836924184276], [-45.12108921726042, 11.445848077092467], [-44.99367007872697, 11.537222311414803], [-44.869147254155365, 11.6324057480063], [-44.74764000412244, 11.73130855991104], [-44.6292650710989, 11.8338373681569], [-44.51413658241343, 11.93989532271111], [-44.40236595497955, 12.049382186173595], [-44.29406180176414, 12.162194420128504], [-44.189329839969446, 12.278225274076597], [-44.088272800896, 12.39736487687383], [-43.99099034144849, 12.519500330604474], [-43.897578957243766, 12.644515806820348], [-43.80813189727768, 12.77229264508134], [-43.72273908010548, 12.902709453736156], [-43.641487011491165, 13.035642212885977], [-43.56445870348158, 13.170964379477992], [-43.49173359486313, 13.308546994479375], [-43.42338747296281, 13.448258792086785], [-43.35949239675965, 13.58996631092996], [-43.30011662127839, 13.733534007232125], [-43.24532452324475, 13.878824369893351], [-43.19517652798963, 14.02569803746643], [-43.149729037599506, 14.17401391699801], [-43.1090343603207, 14.323629304710217], [-43.073140641237316, 14.474400008500469], [-43.0420917942556, 14.62618047223891], [-43.015927435441164, 14.778823901844127], [-42.99468281777074, 14.932182393118637], [-42.97838876737559, 15.086107061325604], [-42.967071621370394, 15.240448172487719], [-42.96075316737811, 15.395055276387788], [-42.95945058487954, 15.549777341248761], [-42.963176388533505, 15.704462890067862], [-42.97193837363253, 15.858960138576112], [-42.98573956387657, 16.01311713478999], [-43.0045781616657, 16.16678190011681], [-43.02844750113097, 16.3198025719694], [-43.05733600413949, 16.472027547838646], [-43.091227139527035, 16.623305630764822], [-43.13009938582773, 16.773486176140292], [-43.17392619778467, 16.92241923976654], [-43.222675976940096, 17.069955727078867], [-43.27631204661534, 17.215947543441043], [-43.33479263160186, 17.36024774540107], [-43.39807084289373, 17.50271069278718], [-43.46609466779865, 17.6431922015106], [-43.5388069657692, 17.78154969692906], [-43.61614547029869, 17.91764236761125], [-43.698042797225234, 18.051331319329424], [-43.784426459785095, 18.18247972909334], [-43.87521889075008, 18.310952999025105], [-43.97033747197518, 18.43661890986088], [-44.06969457167064, 18.55934777385202], [-44.17319758969739, 18.679012586824825], [-44.28074901116656, 18.795489179145832], [-44.392246468602174, 18.908656365327094], [-44.50758281290139, 19.018396091994855], [-44.626646193298754, 19.12459358393442], [-44.749320146509646, 19.22713748791451], [-44.87548369519464, 19.32592001398626], [-45.00501145584906, 19.420837073944526], [-45.1377737561832, 19.51178841663417], [-45.27363676201663, 19.598677759778948], [-45.412462613666115, 19.68141291800882], [-45.55410957176119, 19.759905926760144], [-45.698432172374034, 19.83407316172425], [-45.84528139130244, 19.903835453522763], [-45.994504817295116, 19.969118197292428], [-46.14594683396001, 20.029851456869004], [-46.29944881004656, 20.085970063268174], [-46.454849297744836, 20.13741370717204], [-46.611984238596335, 20.18412702514188], [-46.77068717656594, 20.226059679292504], [-46.93078947777967, 20.26316643017937], [-47.092120556391734, 20.295407202667537], [-47.25450810600514, 20.322747144571107], [-47.41777833603441, 20.345156677872723], [-47.58175621236685, 20.362611542355154], [-47.746265701650685, 20.375092831500616], [-47.91113001851412, 20.382587020538292], [-48.076171875, 20.385085986545974] ] ] } } ] } ================================================ FILE: packages/turf-point-to-line-distance/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { Feature, LineString, Point } from "geojson"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { circle } from "@turf/circle"; import { point, lineString, round } from "@turf/helpers"; import { pointToLineDistance } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("turf-point-to-line-distance", (t) => { const results = {}; fixtures.forEach((fixture) => { const filename = fixture.filename; const name = fixture.name; const geojson = fixture.geojson; const point = geojson.features[0]; const line = geojson.features[1]; const properties = geojson.properties || {}; const units = properties.units || "kilometers"; // main method const options = { units: units }; options.method = "geodesic"; const distance = pointToLineDistance(point, line, options); // Store results results[name] = round(distance, 10); // debug purposes geojson.features.push( circle(point, distance, { steps: 200, units: units }) ); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, geojson); }); if (process.env.REGEN) writeJsonFileSync(directories.out + "distances.json", results); t.deepEqual(loadJsonFileSync(directories.out + "distances.json"), results); t.end(); }); test("turf-point-to-line-distance -- throws", (t) => { const pt = point([0, 0]); const line = lineString([ [1, 1], [-1, 1], ]); t.throws( () => pointToLineDistance(null, line), /pt is required/, "missing point" ); t.throws( () => pointToLineDistance(pt, null), /line is required/, "missing line" ); t.throws( () => pointToLineDistance(pt, line, { units: "invalid" }), /units is invalid/, "invalid units" ); t.throws( () => pointToLineDistance(line, line), /Invalid input to point: must be a Point, given LineString/, "invalid line" ); t.throws( () => pointToLineDistance(pt, pt), /Invalid input to line: must be a LineString, given Point/, "invalid point" ); t.end(); }); test("turf-point-to-line-distance -- Geometry", (t) => { const pt = point([0, 0]); const line = lineString([ [1, 1], [-1, 1], ]); t.assert(pointToLineDistance(pt.geometry, line.geometry)); t.end(); }); test("turf-point-to-line-distance -- Check planar and geodesic results are different", (t) => { const pt = point([0, 0]); const line = lineString([ [10, 10], [-1, 1], ]); const geoOut = pointToLineDistance(pt.geometry, line.geometry, { method: "geodesic", }); const planarOut = pointToLineDistance(pt.geometry, line.geometry, { method: "planar", }); t.notEqual(geoOut, planarOut); t.end(); }); test("turf-point-to-line-distance -- issue 2270", (t) => { let pt: Feature; let line: Feature; let d: number; // This point should be about 3.4m from the line. Definitely not 4.3! // https://github.com/Turfjs/turf/issues/2270#issuecomment-1073787691 pt = point([10.748363481687537, 59.94785299224352]); line = lineString([ [10.7482034954027, 59.9477463357725], [10.7484686179823, 59.9480515133037], ]); d = round(pointToLineDistance(pt, line, { units: "meters" }), 1); t.equal(d, 3.4, "Point is approx 3.4m from line"); // This point should be about 1000m from the line. Definitely not 1017! // https://github.com/Turfjs/turf/issues/2270#issuecomment-2307907374 pt = point([11.991689565382663, 34.00578044047174]); line = lineString([ [12, 34], [11.993027757380355, 33.99311060965808], ]); d = round(pointToLineDistance(pt, line, { units: "meters" })); t.equal(d, 1000, "Point is approx 1000m from line"); t.end(); }); test("turf-point-to-line-distance -- issue 1156", (t) => { // According to issue 1156 the result of pointToLineDistance varies suddenly // at a certain longitude. Code below // When the error occurs we would expect to see 'd' jump from about 188 to // over 800 // ... // [ 11.028347, 41 ] 188.9853459755496 189.00642024172396 // [ 11.028348, 41 ] 842.5784253401666 189.08988164279026 // ^^^ // https://github.com/Turfjs/turf/issues/1156#issue-279806209 let lineCoords = [ [10.964832305908203, 41.004681939880314], [10.977363586425781, 40.99096148527727], [10.983200073242188, 40.97075154073346], [11.02834701538086, 40.98372150040732], [11.02508544921875, 41.00716631272605], [10.994186401367188, 41.01947819666632], [10.964832305908203, 41.004681939880314], ]; let line = lineString(lineCoords); let x0 = 11.02834; let x1 = 11.02835; let dx = 0.000001; for (let i = 0, x = x0; x <= x1; i++, x = x0 + i * dx) { let p = point([x, 41.0]); let d = pointToLineDistance(p, line, { units: "meters" }); t.true(d < 190, "pointToLineDistance never jumps past 190"); } t.end(); }); ================================================ FILE: packages/turf-point-to-line-distance/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-point-to-line-distance/types.ts ================================================ import { point, lineString } from "@turf/helpers"; import { pointToLineDistance } from "./index.js"; const pt = point([0, 0]); const line = lineString([ [1, 1], [-1, 1], ]); const distance: number = pointToLineDistance(pt, line, { units: "miles" }); pointToLineDistance(pt, line); pointToLineDistance(pt, line, { units: "miles" }); pointToLineDistance(pt, line, { units: "miles", method: "planar" }); ================================================ FILE: packages/turf-point-to-polygon-distance/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-point-to-polygon-distance/README.md ================================================ # @turf/point-to-polygon-distance ## pointToPolygonDistance Calculates the distance from a point to the edges of a polygon or multi-polygon. Returns negative values for points inside the polygon. Handles polygons with holes and multi-polygons. A hole is treated as the exterior of the polygon. ### Parameters * `point` **([Feature][1]<[Point][2]> | [Point][2] | [Position][3])** Input point * `polygonOrMultiPolygon` **([Feature][1]<([Polygon][4] | [MultiPolygon][5])> | [Polygon][4] | [MultiPolygon][5])** Input polygon or multipolygon * `options` **[Object][6]** Optional parameters (optional, default `{}`) * `options.units` **Units** Units of the result e.g. "kilometers", "miles", "meters" * `options.method` **(`"geodesic"` | `"planar"`)** Method of the result * Throws **[Error][7]** If input geometries are invalid Returns **[number][8]** Distance in meters (negative values for points inside the polygon) [1]: https://tools.ietf.org/html/rfc7946#section-3.2 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [3]: https://developer.mozilla.org/docs/Web/API/Position [4]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [5]: https://tools.ietf.org/html/rfc7946#section-3.1.7 [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error [8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/point-to-polygon-distance ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-point-to-polygon-distance/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { pointToPolygonDistance } from "./index.js"; import { featureCollection } from "@turf/helpers"; import { Feature, GeoJsonProperties, MultiPolygon, Point, Polygon, } from "geojson"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const fixturesPath = path.join(__dirname, "test_fixtures") + path.sep; const fixtures = fs.readdirSync(fixturesPath).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(fixturesPath + filename), }; }); /** * Benchmark Results * * long-lines-poly - pointA x 154,135 ops/sec ±0.36% (96 runs sampled) * long-lines-poly - pointB x 167,645 ops/sec ±0.30% (98 runs sampled) * long-lines-poly - pointC x 164,454 ops/sec ±0.25% (100 runs sampled) * multi-polygon - outer x 16,604 ops/sec ±0.22% (97 runs sampled) * multi-polygon - inner1 x 16,428 ops/sec ±0.20% (99 runs sampled) * multi-polygon - inner2 x 16,329 ops/sec ±0.19% (100 runs sampled) * multi-polygon - inner3-close-to-hole x 16,409 ops/sec ±0.26% (99 runs sampled) * multi-polygon - in-hole-close-to-poly-in-hole x 16,589 ops/sec ±0.27% (101 runs sampled) * multi-polygon - in-hole-close-to-hole-border x 16,251 ops/sec ±0.26% (98 runs sampled) * multi-polygon - in-poly-in-hole x 16,763 ops/sec ±0.50% (98 runs sampled) * simple-polygon - outer x 118,008 ops/sec ±0.17% (101 runs sampled) * simple-polygon - inner x 121,173 ops/sec ±0.17% (99 runs sampled) **/ const suite = new Benchmark.Suite("turf-point-to-polygon-distance"); for (const { name, geojson } of fixtures) { // @ts-expect-error geojson const fc = featureCollection(geojson?.features || []); const points = fc.features.filter( (f): f is Feature => f.geometry.type === "Point" ); const polygon = fc.features.find((f) => ["Polygon", "MultiPolygon"].includes(f.geometry.type) ) as Feature; if (!polygon) { throw new Error(`No polygon found in the feature collection in ${name}`); } for (const point of points) { const caseName = `${name} - ${point.properties?.name || "unnamed point"}`; suite.add(caseName, () => { pointToPolygonDistance(point, polygon); }); } } // @ts-expect-error benchmark suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-point-to-polygon-distance/index.ts ================================================ import { booleanPointInPolygon } from "@turf/boolean-point-in-polygon"; import { Feature, Point, Polygon, MultiPolygon, LineString, Position, } from "geojson"; import { pointToLineDistance } from "@turf/point-to-line-distance"; import { polygonToLine } from "@turf/polygon-to-line"; import { getGeom } from "@turf/invariant"; import { flattenEach } from "@turf/meta"; import { polygon, Units } from "@turf/helpers"; /** * Calculates the distance from a point to the edges of a polygon or multi-polygon. * Returns negative values for points inside the polygon. * Handles polygons with holes and multi-polygons. * A hole is treated as the exterior of the polygon. * * @param {Feature | Point | Position} point Input point * @param {Feature | Polygon | MultiPolygon} polygonOrMultiPolygon Input polygon or multipolygon * @param {Object} options Optional parameters * @param {Units} options.units Units of the result e.g. "kilometers", "miles", "meters" * @param {"geodesic" | "planar"} options.method Method of the result * @returns {number} Distance in meters (negative values for points inside the polygon) * @throws {Error} If input geometries are invalid */ export function pointToPolygonDistance( point: Feature | Point | Position, polygonOrMultiPolygon: | Feature | Polygon | MultiPolygon, options: { units?: Units; method?: "geodesic" | "planar"; } = {} ): number { const method = options.method ?? "geodesic"; const units = options.units ?? "kilometers"; // Input validation if (!point) throw new Error("point is required"); if (!polygonOrMultiPolygon) throw new Error("polygon or multi-polygon is required"); const geom = getGeom(polygonOrMultiPolygon); if (geom.type === "MultiPolygon") { const distances = geom.coordinates.map((coords) => pointToPolygonDistance(point, polygon(coords), { method, units }) ); return ( Math.min(...distances.map(Math.abs)) * (booleanPointInPolygon(point, polygonOrMultiPolygon) ? -1 : 1) ); } if (geom.coordinates.length > 1) { // Has holes const [exteriorDistance, ...interiorDistances] = geom.coordinates.map( (coords) => pointToPolygonDistance(point, polygon([coords]), { method, units }) ); if (exteriorDistance >= 0) return exteriorDistance; // point is inside the exterior polygon shape const smallestInteriorDistance = Math.min(...interiorDistances); // point is inside one of the holes? if (smallestInteriorDistance < 0) return Math.abs(smallestInteriorDistance); // find which is closer, the distance to the hole or the distance to the edge of the exterior // at this stage, exteriorDistance is negative and smallestInteriorDistance is positive // but smallestInteriorDistance should be returned as negative // and min of positive values <=> max of negative values return Math.max(smallestInteriorDistance * -1, exteriorDistance); } // The actual distance operation - on a normal, hole-less polygon in meters const lines = polygonToLine(geom); let minDistance = Infinity; flattenEach(lines, (feature) => { minDistance = Math.min( minDistance, pointToLineDistance(point, feature as Feature, { method, units, }) ); }); return booleanPointInPolygon(point, geom) ? -minDistance : minDistance; } export default pointToPolygonDistance; ================================================ FILE: packages/turf-point-to-polygon-distance/package.json ================================================ { "name": "@turf/point-to-polygon-distance", "version": "7.3.4", "description": "Calculates the distance from a point to the edges of a polygon or multi-polygon.", "author": "Turf Authors", "contributors": [ "Marc <@pachacamac>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "gis", "point", "polygon", "distance" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/boolean-point-in-polygon": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@turf/point-to-line-distance": "workspace:*", "@turf/polygon-to-line": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-point-to-polygon-distance/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { point } from "@turf/helpers"; import { polygon } from "@turf/helpers"; import { pointToPolygonDistance } from "./index.js"; import { featureCollection } from "@turf/helpers"; import { Feature, GeoJsonProperties, MultiPolygon, Point, Polygon, } from "geojson"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const fixturesPath = path.join(__dirname, "test_fixtures") + path.sep; const fixtures = fs.readdirSync(fixturesPath).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(fixturesPath + filename), }; }); test("turf-point-to-polygon-distance", (t) => { for (const { name, geojson } of fixtures) { // @ts-expect-error geojson const fc = featureCollection(geojson?.features || []); const points: Feature[] = fc.features.filter( (f): f is Feature => f.geometry.type === "Point" ); const polygon = fc.features.find((f) => ["Polygon", "MultiPolygon"].includes(f.geometry.type) ) as Feature; if (!polygon) throw new Error(`No polygon found in the feature collection in ${name}`); for (const point of points) { const expectedDistance = point.properties?.expected_distance; const units = point.properties?.units; const distance = pointToPolygonDistance(point, polygon, { units }); t.equal(distance, expectedDistance, name, { message: `${name} - ${point.properties?.name}`, }); } } // Handle Errors t.throws( // @ts-expect-error invalid geometry () => pointToPolygonDistance(polygon([]), polygon([])), "throws - invalid geometry" ); t.throws( () => pointToPolygonDistance(point([0, 0]), polygon([])), "throws - empty coordinates" ); t.end(); }); ================================================ FILE: packages/turf-point-to-polygon-distance/test_fixtures/issue_2824.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "coordinates": [ [ [6.7201352, 44.7041443], [6.7218262, 44.70488], [6.7191639, 44.7062477], [6.7116651, 44.7102693], [6.7054147, 44.7123746], [6.6991181, 44.7155177], [6.6924136, 44.7159316], [6.6886644, 44.7236197], [6.6865967, 44.7254307], [6.6843267, 44.7272564], [6.6823644, 44.7284019], [6.6802779, 44.7288951], [6.6771228, 44.7292937], [6.6738951, 44.7291041], [6.6722274, 44.7283789], [6.6712129, 44.7268518], [6.6710152, 44.72575], [6.6704771, 44.7247647], [6.6697101, 44.7246173], [6.6675451, 44.7243911], [6.6648333, 44.7240124], [6.6625546, 44.7235753], [6.6604579, 44.7230386], [6.6607528, 44.7217463], [6.6621385, 44.7196967], [6.6618599, 44.7178313], [6.6611599, 44.7163719], [6.661159, 44.7141435], [6.6609372, 44.7122438], [6.6616719, 44.7086332], [6.6593759, 44.7063014], [6.6568472, 44.7055222], [6.6549725, 44.7050244], [6.6519767, 44.7034469], [6.650726, 44.7025469], [6.6470896, 44.7005855], [6.6463237, 44.6993324], [6.645489, 44.6985334], [6.644101, 44.6954828], [6.6426953, 44.6944138], [6.6400245, 44.6919646], [6.6383943, 44.6920108], [6.6359166, 44.6919139], [6.6340691, 44.6915021], [6.6316682, 44.6902224], [6.6308841, 44.6895525], [6.6308157, 44.6894116], [6.6305716, 44.6889087], [6.6289355, 44.6877017], [6.6274369, 44.6886524], [6.6247502, 44.6883645], [6.6235262, 44.6880529], [6.6233442, 44.6880066], [6.6233333, 44.6864261], [6.6238763, 44.6851307], [6.6249482, 44.6841753], [6.6243154, 44.6839624], [6.6239797, 44.6838139], [6.6232712, 44.6836278], [6.6224888, 44.683541], [6.622762, 44.6832553], [6.6230135, 44.6830644], [6.6233111, 44.6828152], [6.6232883, 44.6826952], [6.6231348, 44.6826811], [6.6229671, 44.6828521], [6.622873, 44.6828919], [6.6222376, 44.6822892], [6.6222926, 44.6820301], [6.622278, 44.6817669], [6.6221819, 44.6815892], [6.6216061, 44.6816765], [6.6205716, 44.6817446], [6.6204931, 44.6816816], [6.6202646, 44.6817165], [6.618996, 44.6815527], [6.6186727, 44.6816174], [6.617808, 44.6812902], [6.6169702, 44.6809522], [6.6167045, 44.6812356], [6.6165297, 44.6811828], [6.616386, 44.6813661], [6.6163028, 44.6813659], [6.615784, 44.6817279], [6.6154202, 44.68187], [6.6151096, 44.6816992], [6.6145042, 44.6837951], [6.6144807, 44.6838767], [6.6144456, 44.6839981], [6.6128891, 44.6830846], [6.6126161, 44.6828244], [6.6119172, 44.6823516], [6.6117754, 44.6822557], [6.6112904, 44.681906], [6.6108928, 44.6816193], [6.6105688, 44.6813822], [6.6097655, 44.6807942], [6.6095158, 44.6806163], [6.6092966, 44.6804601], [6.6091735, 44.6803724], [6.6087715, 44.6800861], [6.6080709, 44.6796011], [6.6078198, 44.6794358], [6.6070934, 44.6770659], [6.6064641, 44.6744728], [6.6063317, 44.6739271], [6.6051895, 44.6692197], [6.606132, 44.6692154], [6.6069721, 44.6688551], [6.6075158, 44.6683381], [6.6078771, 44.6679946], [6.6082991, 44.6676097], [6.6087923, 44.6674308], [6.6096236, 44.6675686], [6.6121697, 44.6675473], [6.6137979, 44.6673087], [6.6154894, 44.6670303], [6.6164586, 44.6667326], [6.6169933, 44.6665526], [6.6189705, 44.6655594], [6.6193969, 44.6651426], [6.6199189, 44.6648189], [6.6208151, 44.6644459], [6.6223502, 44.663967], [6.623563, 44.6635098], [6.6243509, 44.6635891], [6.6255665, 44.6642604], [6.626365, 44.6652963], [6.6273677, 44.6661384], [6.627792, 44.6662221], [6.6283184, 44.666176], [6.6291263, 44.6666765], [6.6297567, 44.6680524], [6.6303474, 44.6687599], [6.6307273, 44.6688717], [6.6314288, 44.6688058], [6.6321288, 44.668846], [6.6328644, 44.6688651], [6.6336867, 44.6691793], [6.6347921, 44.6699339], [6.6358171, 44.6707313], [6.6366208, 44.6711722], [6.6378836, 44.6714103], [6.6385572, 44.6715974], [6.6390078, 44.6719122], [6.6398985, 44.6721442], [6.6409224, 44.6721657], [6.6417357, 44.6719762], [6.6424373, 44.6717842], [6.6432437, 44.671502], [6.643854, 44.6714593], [6.6447307, 44.6713735], [6.6457361, 44.6711436], [6.6464594, 44.6710893], [6.647251, 44.6711373], [6.6479271, 44.6714611], [6.6483132, 44.671723], [6.6493438, 44.671602], [6.6508991, 44.6712238], [6.6519362, 44.6711899], [6.6530855, 44.671205], [6.6535031, 44.6710633], [6.6538943, 44.6710245], [6.6542838, 44.6708693], [6.6548341, 44.6706838], [6.6551511, 44.6705604], [6.6555092, 44.6703482], [6.6561778, 44.6702941], [6.6561761, 44.6701778], [6.6574661, 44.669058], [6.6584468, 44.6685364], [6.6601178, 44.6685319], [6.6616818, 44.668643], [6.6624167, 44.6685669], [6.6639184, 44.668016], [6.6645125, 44.6676883], [6.6654439, 44.6674206], [6.6671801, 44.6671033], [6.668693, 44.6674408], [6.6697886, 44.6678343], [6.6706505, 44.6680055], [6.6708741, 44.6680893], [6.6718355, 44.6690567], [6.6721034, 44.6693359], [6.6728615, 44.6695792], [6.6731853, 44.6697318], [6.6744898, 44.6698234], [6.6757504, 44.6696887], [6.6766008, 44.6697051], [6.6773859, 44.6697684], [6.6774621, 44.6697745], [6.6781499, 44.669705], [6.6787062, 44.6697452], [6.6795024, 44.6699594], [6.6798459, 44.6711133], [6.6806482, 44.6713901], [6.6830772, 44.6735863], [6.6839687, 44.6741003], [6.6844082, 44.6745136], [6.6853363, 44.6749392], [6.6857881, 44.675132], [6.6864913, 44.6751362], [6.6877863, 44.6749952], [6.6882504, 44.6751172], [6.6894687, 44.6754716], [6.690609, 44.6757458], [6.6906713, 44.6761285], [6.6907648, 44.6766117], [6.6912502, 44.6768864], [6.6919863, 44.6771564], [6.6921529, 44.6772978], [6.6925564, 44.6773843], [6.6937244, 44.6781223], [6.6940946, 44.678377], [6.6943628, 44.6785222], [6.6947232, 44.6789387], [6.6952389, 44.6792132], [6.6953227, 44.6794447], [6.6952416, 44.6798665], [6.694924, 44.6798488], [6.6950743, 44.6803599], [6.6953437, 44.6807922], [6.6959961, 44.6812814], [6.6963714, 44.681683], [6.6965451, 44.6815546], [6.6968805, 44.6817558], [6.6970397, 44.6820497], [6.6969418, 44.6825279], [6.6973154, 44.6836609], [6.6979065, 44.6849286], [6.698494, 44.6868272], [6.6989435, 44.6877061], [6.6996091, 44.6884601], [6.7005576, 44.6890232], [6.7010984, 44.6895898], [6.7013086, 44.6905224], [6.7019011, 44.6913164], [6.7026789, 44.6915824], [6.7032189, 44.6919745], [6.7039535, 44.6923519], [6.7048923, 44.6929369], [6.7057737, 44.6937512], [6.706104, 44.6942449], [6.7061854, 44.6948007], [6.7064064, 44.6953388], [6.706861, 44.6958083], [6.7081584, 44.6968381], [6.709011, 44.6977176], [6.7097763, 44.6983382], [6.7106549, 44.6987455], [6.7110617, 44.6988474], [6.7114769, 44.6990587], [6.7117464, 44.6992489], [6.7126701, 44.6997717], [6.7131409, 44.6999154], [6.713768, 44.7001967], [6.7146096, 44.7005335], [6.7149688, 44.7006773], [6.7159712, 44.7010161], [6.7162554, 44.7012513], [6.7169346, 44.7020203], [6.7179342, 44.7024274], [6.7191562, 44.7030081], [6.7195923, 44.7039266], [6.7198318, 44.7041078], [6.7201352, 44.7041443] ], [ [6.6253623, 44.6732628], [6.6260236, 44.673399], [6.6260472, 44.6733854], [6.6261149, 44.6732555], [6.6261577, 44.6732202], [6.6269099, 44.6731737], [6.6274934, 44.673093], [6.6288188, 44.6730136], [6.6296452, 44.6729791], [6.6297069, 44.6726282], [6.6297517, 44.6725502], [6.6295174, 44.672265], [6.6295133, 44.6722316], [6.6297246, 44.6721012], [6.6297472, 44.6720943], [6.6297753, 44.6720858], [6.6300287, 44.672189], [6.6308155, 44.671016], [6.6307993, 44.6709831], [6.6293184, 44.6697718], [6.6284408, 44.6688561], [6.6274233, 44.6677162], [6.6267827, 44.6666321], [6.6267111, 44.6665404], [6.6260287, 44.6659445], [6.6252257, 44.6645693], [6.6251873, 44.6645297], [6.6246655, 44.6644825], [6.6246217, 44.6644681], [6.6240945, 44.6639241], [6.6240567, 44.6637498], [6.6239937, 44.6637421], [6.6238152, 44.6637707], [6.6234071, 44.6639008], [6.6233955, 44.6639637], [6.6230344, 44.6641615], [6.6229813, 44.6642104], [6.6229585, 44.664378], [6.6228043, 44.6644639], [6.6227655, 44.6645074], [6.6227519, 44.6646169], [6.6225797, 44.6647925], [6.622474, 44.6648585], [6.6220784, 44.6650032], [6.6220135, 44.6650108], [6.6214189, 44.6649678], [6.6213877, 44.6650795], [6.6212433, 44.665262], [6.621106, 44.6653685], [6.6209741, 44.6654162], [6.6208563, 44.6655239], [6.6207314, 44.6656091], [6.6204794, 44.6657327], [6.6203592, 44.6658436], [6.6201307, 44.666014], [6.6200201, 44.66612], [6.6199465, 44.6662545], [6.6198644, 44.6663289], [6.6197641, 44.6665039], [6.6195744, 44.6666887], [6.6193951, 44.6670555], [6.6194134, 44.6671718], [6.6193744, 44.6676976], [6.6193944, 44.6677607], [6.6194066, 44.6677914], [6.6194679, 44.6678334], [6.6195776, 44.6680557], [6.6195977, 44.668204], [6.6195881, 44.6683936], [6.6195488, 44.6685536], [6.6195343, 44.6686018], [6.6194312, 44.6688112], [6.6194082, 44.6689389], [6.6193492, 44.6692777], [6.6193756, 44.6693611], [6.6193834, 44.6694026], [6.6194616, 44.6695466], [6.6196804, 44.669748], [6.6197611, 44.669844], [6.6198704, 44.6699227], [6.6202397, 44.6703753], [6.6203975, 44.670536], [6.6205795, 44.6706405], [6.6206905, 44.670729], [6.6208992, 44.6708146], [6.6212027, 44.6708772], [6.6212456, 44.6709333], [6.621426, 44.6709574], [6.6215171, 44.6710396], [6.6216798, 44.6711204], [6.6219312, 44.6712048], [6.6220091, 44.6712543], [6.6220492, 44.6713112], [6.6222012, 44.6714395], [6.6224099, 44.6715655], [6.6228255, 44.6717766], [6.6229476, 44.6719071], [6.6231388, 44.6720335], [6.6232283, 44.6721337], [6.6236224, 44.672468], [6.6237526, 44.6726975], [6.6240665, 44.6730707], [6.6243804, 44.6735244], [6.6244201, 44.6735506], [6.6245053, 44.6735594], [6.6252836, 44.673424], [6.6253458, 44.6733988], [6.6253623, 44.6732628] ] ], "type": "Polygon" } }, { "type": "Feature", "properties": { "name": "point1", "expected_distance": -282.47132227384475, "units": "meters" }, "geometry": { "coordinates": [6.621838357140748, 44.67906064959206], "type": "Point" } }, { "type": "Feature", "properties": { "name": "point2", "expected_distance": 63.3653117257768, "units": "meters" }, "geometry": { "coordinates": [6.621838357140748, 44.665643606064959206], "type": "Point" } } ] } ================================================ FILE: packages/turf-point-to-polygon-distance/test_fixtures/long-lines-poly.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "coordinates": [ [ [3.3657268318160334, 25.76155695292222], [46.65471569612228, -18.814141655384176], [28.889827996699864, 25.16583746201097], [3.3657268318160334, 25.76155695292222] ] ], "type": "Polygon" } }, { "type": "Feature", "properties": { "name": "pointA", "expected_distance": 720.8195022016121, "units": "miles" }, "geometry": { "coordinates": [-3.848091969075085, 17.75559032718766], "type": "Point" } }, { "type": "Feature", "properties": { "name": "pointB", "expected_distance": 174.26575299684424, "units": "miles" }, "geometry": { "coordinates": [20.161990331199632, 5.93692849667535], "type": "Point" } }, { "type": "Feature", "properties": { "name": "pointC", "expected_distance": 1422.4933025064167, "units": "miles" }, "geometry": { "coordinates": [15.761757321831652, -16.46137822158427], "type": "Point" } } ] } ================================================ FILE: packages/turf-point-to-polygon-distance/test_fixtures/multi-polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "name": "outer", "expected_distance": 22.10311139186459, "units": "meters" }, "geometry": { "coordinates": [13.403019116525968, 52.4749917692433], "type": "Point" } }, { "type": "Feature", "properties": { "name": "inner1", "expected_distance": -0.18712846397492156, "units": "kilometers" }, "geometry": { "coordinates": [13.399915241855979, 52.472957280225245], "type": "Point" } }, { "type": "Feature", "properties": { "name": "inner2", "expected_distance": -0.2539006541753242, "units": "kilometers" }, "geometry": { "coordinates": [13.396946319940724, 52.47723165382479], "type": "Point" } }, { "type": "Feature", "properties": { "name": "inner3-close-to-hole", "expected_distance": -16.135385380792886, "units": "meters" }, "geometry": { "coordinates": [13.403283336358811, 52.47790995176382], "type": "Point" } }, { "type": "Feature", "properties": { "name": "in-hole-close-to-poly-in-hole", "expected_distance": 16.360780198687877, "units": "meters" }, "geometry": { "coordinates": [13.403043879952975, 52.47832947539942], "type": "Point" } }, { "type": "Feature", "properties": { "name": "in-hole-close-to-hole-border", "expected_distance": 6.627508849855802, "units": "meters" }, "geometry": { "coordinates": [13.40253783003243, 52.47852394247576], "type": "Point" } }, { "type": "Feature", "properties": { "name": "in-poly-in-hole", "expected_distance": -5.519191580154778, "units": "meters" }, "geometry": { "coordinates": [13.403378284487616, 52.47824096630322], "type": "Point" } }, { "type": "Feature", "properties": {}, "geometry": { "coordinates": [ [ [ [13.391148572399459, 52.47422924057807], [13.39059601479363, 52.473247558678], [13.392253687611202, 52.47097558229518], [13.416658315199754, 52.47162072331574], [13.415415060587122, 52.475379182951684], [13.391148572399459, 52.47422924057807] ] ], [ [ [13.391747176472563, 52.47470604959969], [13.415276921185495, 52.475771839318895], [13.415230874718247, 52.476444956368084], [13.410948553273812, 52.477258292397494], [13.406574138894086, 52.479333633450835], [13.3941415927641, 52.47961407743651], [13.392161594676793, 52.47734242974954], [13.392576012880966, 52.475743792551725], [13.391747176472563, 52.47470604959969] ], [ [13.402432150152691, 52.478581408896446], [13.402365252169176, 52.4782640275981], [13.402520173815134, 52.47815680366921], [13.402967334020701, 52.478034568071365], [13.403537727352841, 52.47807316882296], [13.403643355748358, 52.47818468191565], [13.403882780109853, 52.47820827118747], [13.403777151715332, 52.478392695967955], [13.403474350316174, 52.47848061913734], [13.403372242867533, 52.478600709036584], [13.402432150152691, 52.478581408896446] ] ], [ [ [13.403245369174186, 52.478248303401074], [13.403353680211723, 52.478162544659085], [13.403550445261601, 52.47824170658075], [13.40335909576305, 52.47830327686577], [13.403245369174186, 52.478248303401074] ] ] ], "type": "MultiPolygon" } } ] } ================================================ FILE: packages/turf-point-to-polygon-distance/test_fixtures/simple-polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "name": "outer", "expected_distance": 0.0020673867731590976, "units": "kilometers" }, "geometry": { "coordinates": [13.40811681056141, 52.52027359015821], "type": "Point" } }, { "type": "Feature", "properties": { "name": "inner", "expected_distance": -7.980019325365333, "units": "meters" }, "geometry": { "coordinates": [13.408017009112001, 52.52035996357455], "type": "Point" } }, { "type": "Feature", "properties": {}, "geometry": { "coordinates": [ [ [13.407833971095158, 52.52015934998451], [13.40823074294758, 52.52035304587994], [13.40819208895536, 52.52053359735595], [13.407789632692584, 52.520343361105404], [13.407833971095158, 52.52015934998451] ] ], "type": "Polygon" } } ] } ================================================ FILE: packages/turf-point-to-polygon-distance/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-points-within-polygon/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-points-within-polygon/README.md ================================================ # @turf/points-within-polygon ## pointsWithinPolygon Finds [Points][1] or [MultiPoint][2] coordinate positions that fall within [(Multi)Polygon(s)][3]. ### Parameters * `points` **([Feature][4] | [FeatureCollection][5]<([Point][1] | [MultiPoint][2])>)** Point(s) or MultiPoint(s) as input search * `polygons` **([FeatureCollection][5] | [Geometry][6] | [Feature][4]<([Polygon][3] | [MultiPolygon][7])>)** (Multi)Polygon(s) to check if points are within ### Examples ```javascript var points = turf.points([ [-46.6318, -23.5523], [-46.6246, -23.5325], [-46.6062, -23.5513], [-46.663, -23.554], [-46.643, -23.557] ]); var searchWithin = turf.polygon([[ [-46.653,-23.543], [-46.634,-23.5346], [-46.613,-23.543], [-46.614,-23.559], [-46.631,-23.567], [-46.653,-23.560], [-46.653,-23.543] ]]); var ptsWithin = turf.pointsWithinPolygon(points, searchWithin); //addToMap var addToMap = [points, searchWithin, ptsWithin] turf.featureEach(ptsWithin, function (currentFeature) { currentFeature.properties['marker-size'] = 'large'; currentFeature.properties['marker-color'] = '#000'; }); ``` Returns **[FeatureCollection][5]<([Point][1] | [MultiPoint][2])>** Point(s) or MultiPoint(s) with positions that land within at least one polygon. The geometry type will match what was passsed in [1]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.3 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [4]: https://tools.ietf.org/html/rfc7946#section-3.2 [5]: https://tools.ietf.org/html/rfc7946#section-3.3 [6]: https://tools.ietf.org/html/rfc7946#section-3.1 [7]: https://tools.ietf.org/html/rfc7946#section-3.1.7 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/points-within-polygon ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-points-within-polygon/bench.ts ================================================ import Benchmark from "benchmark"; import { featureCollection, point, polygon } from "@turf/helpers"; import { pointsWithinPolygon } from "./index.js"; var poly1 = polygon([ [ [0, 0], [10, 0], [10, 10], [0, 0], ], ]); var poly2 = polygon([ [ [10, 0], [20, 10], [20, 20], [10, 0], ], ]); var polyFC = featureCollection([poly1, poly2]); var pt1 = point([1, 1], { population: 500 }); var pt2 = point([1, 3], { population: 400 }); var pt3 = point([14, 2], { population: 600 }); var pt4 = point([13, 1], { population: 500 }); var pt5 = point([19, 7], { population: 200 }); var pt6 = point([100, 7], { population: 200 }); var ptFC = featureCollection([pt1, pt2, pt3, pt4, pt5, pt6]); var suite = new Benchmark.Suite("turf-points-within-polygon"); suite .add("turf-points-within-polygon", () => pointsWithinPolygon(ptFC, polyFC)) .on("cycle", (e) => console.log(String(e.target))) .run(); ================================================ FILE: packages/turf-points-within-polygon/index.ts ================================================ import type { Feature, FeatureCollection, Polygon, MultiPolygon, MultiPoint, Point, GeoJsonProperties, Position, } from "geojson"; import { booleanPointInPolygon as pointInPolygon } from "@turf/boolean-point-in-polygon"; import { featureCollection, multiPoint } from "@turf/helpers"; import { geomEach, featureEach, coordEach } from "@turf/meta"; /** * Finds {@link Points} or {@link MultiPoint} coordinate positions that fall within {@link (Multi)Polygon(s)}. * * @function * @param {Feature|FeatureCollection} points Point(s) or MultiPoint(s) as input search * @param {FeatureCollection|Geometry|Feature} polygons (Multi)Polygon(s) to check if points are within * @returns {FeatureCollection} Point(s) or MultiPoint(s) with positions that land within at least one polygon. The geometry type will match what was passsed in * @example * var points = turf.points([ * [-46.6318, -23.5523], * [-46.6246, -23.5325], * [-46.6062, -23.5513], * [-46.663, -23.554], * [-46.643, -23.557] * ]); * * var searchWithin = turf.polygon([[ * [-46.653,-23.543], * [-46.634,-23.5346], * [-46.613,-23.543], * [-46.614,-23.559], * [-46.631,-23.567], * [-46.653,-23.560], * [-46.653,-23.543] * ]]); * * var ptsWithin = turf.pointsWithinPolygon(points, searchWithin); * * //addToMap * var addToMap = [points, searchWithin, ptsWithin] * turf.featureEach(ptsWithin, function (currentFeature) { * currentFeature.properties['marker-size'] = 'large'; * currentFeature.properties['marker-color'] = '#000'; * }); */ function pointsWithinPolygon< G extends Polygon | MultiPolygon, P extends GeoJsonProperties, >( points: | Feature | FeatureCollection, polygons: Feature | FeatureCollection | G ): FeatureCollection { const results: Feature[] = []; featureEach(points, function (point) { let contained = false; if (point.geometry.type === "Point") { geomEach(polygons, function (polygon) { if (pointInPolygon(point as Feature, polygon)) { contained = true; } }); if (contained) { results.push(point); } } else if (point.geometry.type === "MultiPoint") { var pointsWithin: Position[] = []; geomEach(polygons, function (polygon) { coordEach(point as Feature, function (pointCoord) { if (pointInPolygon(pointCoord, polygon)) { contained = true; pointsWithin.push(pointCoord); } }); }); if (contained) { results.push( multiPoint(pointsWithin, point.properties) as Feature ); } } else { throw new Error("Input geometry must be a Point or MultiPoint"); } }); return featureCollection(results); } export { pointsWithinPolygon }; export default pointsWithinPolygon; ================================================ FILE: packages/turf-points-within-polygon/package.json ================================================ { "name": "@turf/points-within-polygon", "version": "7.3.4", "description": "Finds points that fall within polygon(s).", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "geojson", "within", "point", "polygon", "featurecollection" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/boolean-point-in-polygon": "workspace:*", "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-points-within-polygon/test.ts ================================================ import test from "tape"; import { multiPoint, point, points } from "@turf/helpers"; import { polygon } from "@turf/helpers"; import { featureCollection } from "@turf/helpers"; import { pointsWithinPolygon } from "./index.js"; test("turf-points-within-polygon -- point", (t) => { t.plan(4); // test with a single point var poly = polygon([ [ [0, 0], [0, 100], [100, 100], [100, 0], [0, 0], ], ]); var pt = point([50, 50]); var polyFC = featureCollection([poly]); var ptFC = featureCollection([pt]); var counted = pointsWithinPolygon(ptFC, polyFC); t.ok(counted, "returns a featurecollection"); t.equal(counted.features.length, 1, "1 point in 1 polygon"); // test with multiple points and multiple polygons var poly1 = polygon([ [ [0, 0], [10, 0], [10, 10], [0, 10], [0, 0], ], ]); var poly2 = polygon([ [ [10, 0], [20, 10], [20, 20], [20, 0], [10, 0], ], ]); var polyFC = featureCollection([poly1, poly2]); var pt1 = point([1, 1], { population: 500 }); var pt2 = point([1, 3], { population: 400 }); var pt3 = point([14, 2], { population: 600 }); var pt4 = point([13, 1], { population: 500 }); var pt5 = point([19, 7], { population: 200 }); var pt6 = point([100, 7], { population: 200 }); var ptFC = featureCollection([pt1, pt2, pt3, pt4, pt5, pt6]); var counted = pointsWithinPolygon(ptFC, polyFC); t.ok(counted, "returns a featurecollection"); t.equal(counted.features.length, 5, "multiple points in multiple polygons"); }); test("turf-points-within-polygon -- multipoint", (t) => { t.plan(12); var poly1 = polygon([ [ [0, 0], [0, 100], [100, 100], [100, 0], [0, 0], ], ]); var mpt1 = multiPoint([[50, 50]]); // inside poly1 var mpt2 = multiPoint([[150, 150]]); // outside poly1 var mpt3 = multiPoint([ [50, 50], [150, 150], ]); // inside and outside poly1 var mpt1FC = featureCollection([mpt1]); var polyFC = featureCollection([poly1]); // multipoint within var mpWithin = pointsWithinPolygon(mpt1, polyFC); t.ok( mpWithin && mpWithin.type === "FeatureCollection", "returns a featurecollection" ); t.equal(mpWithin.features.length, 1, "1 multipoint in 1 polygon"); t.equal( mpWithin.features[0].geometry.type, "MultiPoint", "1 multipoint with correct type" ); // multipoint fc within var fcWithin = pointsWithinPolygon(mpt1FC, polyFC); t.ok( fcWithin && fcWithin.type === "FeatureCollection", "returns a featurecollection" ); t.equal(fcWithin.features.length, 1, "1 multipoint in 1 polygon"); // multipoint not within var mpNotWithin = pointsWithinPolygon(mpt2, polyFC); t.ok( mpNotWithin && mpNotWithin.type === "FeatureCollection", "returns an empty featurecollection" ); t.equal(mpNotWithin.features.length, 0, "0 multipoint in 1 polygon"); // multipoint with point coords both within and not within var mpPartWithin = pointsWithinPolygon(mpt3, polyFC); t.ok(mpPartWithin, "returns a featurecollection"); var partCoords = mpPartWithin.features[0].geometry.coordinates; t.equal( partCoords.length, 1, "multipoint result should have 1 remaining coord that was within polygon" ); t.equal( partCoords[0][0] === mpt3.geometry.coordinates[0][0] && partCoords[0][1] === mpt3.geometry.coordinates[0][1], true, "remaining coord should have expected values" ); // multiple multipoints and multiple polygons var poly2 = polygon([ [ [10, 0], [20, 10], [20, 20], [20, 0], [10, 0], ], ]); var mptFC = featureCollection([mpt1, mpt2, mpt3]); var poly2FC = featureCollection([poly1, poly2]); var fcMultiWithin = pointsWithinPolygon(mptFC, poly2FC); t.ok(fcMultiWithin, "returns a featurecollection"); t.equal( fcMultiWithin.features.length, 2, "multiple points in multiple polygons" ); }); test("turf-points-within-polygon -- point and multipoint", (t) => { t.plan(4); var poly = polygon([ [ [0, 0], [0, 100], [100, 100], [100, 0], [0, 0], ], ]); var polyFC = featureCollection([poly]); var pt = point([50, 50]); var mpt1 = multiPoint([[50, 50]]); // inside poly1 var mpt2 = multiPoint([[150, 150]]); // outside poly1 var mixedFC = featureCollection([pt, mpt1, mpt2]); var counted = pointsWithinPolygon(mixedFC, polyFC); t.ok(counted, "returns a featurecollection"); t.equal(counted.features.length, 2, "1 point and 1 multipoint in 1 polygon"); t.equal(counted.features[0].geometry.type, "Point"); t.equal(counted.features[1].geometry.type, "MultiPoint"); }); test("turf-points-within-polygon -- support extra point geometry", (t) => { const pts = points([ [-46.6318, -23.5523], [-46.6246, -23.5325], [-46.6062, -23.5513], [-46.663, -23.554], [-46.643, -23.557], ]); const searchWithin = polygon([ [ [-46.653, -23.543], [-46.634, -23.5346], [-46.613, -23.543], [-46.614, -23.559], [-46.631, -23.567], [-46.653, -23.56], [-46.653, -23.543], ], ]); t.assert(pointsWithinPolygon(pts, searchWithin)); t.assert(pointsWithinPolygon(pts.features[0], searchWithin)); t.assert(pointsWithinPolygon(pts, searchWithin.geometry)); t.end(); }); test("turf-points-within-polygon -- no duplicates when multiple geometry contain a point", (t) => { const poly1 = polygon([ [ [0, 0], [10, 0], [10, 10], [0, 10], [0, 0], ], ]); const poly2 = polygon([ [ [0, 0], [10, 0], [10, 10], [0, 10], [0, 0], ], ]); const polyFC = featureCollection([poly1, poly2]); const pt1 = point([5, 5]); const ptFC = featureCollection([pt1]); const counted = pointsWithinPolygon(ptFC, polyFC); t.equal( counted.features.length, 1, "although point is contained by two polygons it is only counted once" ); t.end(); }); test("turf-points-within-polygon -- multipoint with properties", (t) => { t.plan(5); var poly1 = polygon([ [ [0, 0], [0, 100], [100, 100], [100, 0], [0, 0], ], ]); var mpt1 = multiPoint( [ [50, 50], [150, 150], ], { prop: "yes" } ); // inside and outside poly1 var polyFC = featureCollection([poly1]); // multipoint within var mpWithin = pointsWithinPolygon(mpt1, polyFC); t.ok(mpWithin, "returns a featurecollection"); t.equal(mpWithin.features.length, 1, "1 multipoint in 1 polygon"); t.equal( mpWithin.features[0].properties.constructor, Object, "properties found" ); t.ok("prop" in mpWithin.features[0].properties, "1 property key found"); t.equal( mpWithin.features[0].properties.prop, "yes", "1 property value found" ); }); ================================================ FILE: packages/turf-points-within-polygon/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-points-within-polygon/types.ts ================================================ import { Point, MultiPoint } from "geojson"; import { pointsWithinPolygon } from "./index.js"; import { points, polygon, multiPoint, featureCollection } from "@turf/helpers"; const pts = points([ [-46.6318, -23.5523], [-46.6246, -23.5325], [-46.6062, -23.5513], [-46.663, -23.554], [-46.643, -23.557], ]); const mpt1 = multiPoint( [ [50, 50], [100, 100], ], {} ); const mpt2 = multiPoint( [ [75, 75], [150, 150], ], {} ); const mpts = featureCollection([mpt1, mpt2]); const searchWithin = polygon([ [ [-46.653, -23.543], [-46.634, -23.5346], [-46.613, -23.543], [-46.614, -23.559], [-46.631, -23.567], [-46.653, -23.56], [-46.653, -23.543], ], ]); const ptsWithin = pointsWithinPolygon(pts, searchWithin); const mptsWithin = pointsWithinPolygon(mpts, searchWithin); // Accepts a mixture of Point and MultiPoint const mix = featureCollection([...pts.features, mpt1]); const mixWithin = pointsWithinPolygon(mix, searchWithin); ================================================ FILE: packages/turf-polygon-smooth/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-polygon-smooth/README.md ================================================ # @turf/polygon-smooth ## polygonSmooth Smooths a [Polygon][1] or [MultiPolygon][2]. Based on [Chaikin's algorithm][3]. Warning: may create degenerate polygons. ### Parameters * `inputPolys` **([FeatureCollection][4]<([Polygon][1] | [MultiPolygon][2])> | [Feature][5]<([Polygon][1] | [MultiPolygon][2])> | [Polygon][1] | [MultiPolygon][2])** (Multi)Polygon(s) to smooth * `options` **[Object][6]** Optional parameters (optional, default `{}`) * `options.iterations` **[string][7]** The number of times to smooth the polygon. A higher value means a smoother polygon. (optional, default `1`) ### Examples ```javascript var polygon = turf.polygon([[[11, 0], [22, 4], [31, 0], [31, 11], [21, 15], [11, 11], [11, 0]]]); var smoothed = turf.polygonSmooth(polygon, {iterations: 3}) //addToMap var addToMap = [smoothed, polygon]; ``` Returns **[FeatureCollection][4]<([Polygon][1] | [MultiPolygon][2])>** FeatureCollection containing the smoothed polygon/multipoylgons [1]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.7 [3]: https://www.cs.unc.edu/~dm/UNC/COMP258/LECTURES/Chaikins-Algorithm.pdf [4]: https://tools.ietf.org/html/rfc7946#section-3.3 [5]: https://tools.ietf.org/html/rfc7946#section-3.2 [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/polygon-smooth ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-polygon-smooth/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { polygonSmooth } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; let fixtures = fs.readdirSync(directory).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); /** * Benchmark Results * close x 88,608 ops/sec ±6.03% (69 runs sampled) * geometry x 106,576 ops/sec ±6.95% (68 runs sampled) * multipolygon x 88,405 ops/sec ±5.40% (72 runs sampled) * polygon x 132,584 ops/sec ±6.75% (79 runs sampled) * withHole x 122,725 ops/sec ±2.69% (86 runs sampled) */ const suite = new Benchmark.Suite("turf-polygon-smooth"); for (const { name, geojson } of fixtures) { suite.add(name, () => polygonSmooth(geojson, { iterations: 3 })); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-polygon-smooth/index.ts ================================================ import type { Feature, FeatureCollection, Polygon, Position, MultiPolygon, } from "geojson"; import { featureCollection, multiPolygon, polygon } from "@turf/helpers"; import { coordEach, geomEach } from "@turf/meta"; /** * Smooths a {@link Polygon} or {@link MultiPolygon}. Based on [Chaikin's algorithm](https://www.cs.unc.edu/~dm/UNC/COMP258/LECTURES/Chaikins-Algorithm.pdf). * Warning: may create degenerate polygons. * * @function * @param {FeatureCollection|Feature|Polygon|MultiPolygon} inputPolys (Multi)Polygon(s) to smooth * @param {Object} [options={}] Optional parameters * @param {string} [options.iterations=1] The number of times to smooth the polygon. A higher value means a smoother polygon. * @returns {FeatureCollection} FeatureCollection containing the smoothed polygon/multipoylgons * @example * var polygon = turf.polygon([[[11, 0], [22, 4], [31, 0], [31, 11], [21, 15], [11, 11], [11, 0]]]); * * var smoothed = turf.polygonSmooth(polygon, {iterations: 3}) * * //addToMap * var addToMap = [smoothed, polygon]; */ function polygonSmooth( inputPolys: | FeatureCollection | Feature | Polygon | MultiPolygon, options?: { iterations?: number; } ): FeatureCollection { // Optional parameters options = options || {}; options.iterations = options.iterations || 1; const { iterations } = options; const outPolys: Feature[] = []; if (!inputPolys) throw new Error("inputPolys is required"); geomEach(inputPolys, function (geom, geomIndex, properties) { if (geom.type === "Polygon") { let outCoords: Position[][] = [[]]; for (let i = 0; i < iterations; i++) { let tempOutput: Position[][] = []; let poly = geom; if (i > 0) { poly = polygon(outCoords).geometry; } processPolygon(poly, tempOutput); outCoords = tempOutput.slice(0); } outPolys.push(polygon(outCoords, properties)); } else if (geom.type === "MultiPolygon") { let outCoords: Position[][][] = [[[]]]; for (let y = 0; y < iterations; y++) { let tempOutput: Position[][][] = []; let poly = geom; if (y > 0) { poly = multiPolygon(outCoords).geometry; } processMultiPolygon(poly, tempOutput); outCoords = tempOutput.slice(0); } outPolys.push(multiPolygon(outCoords, properties)); } else { throw new Error("geometry is invalid, must be Polygon or MultiPolygon"); } }); return featureCollection(outPolys); } /** * @param {poly} poly to process * @param {poly} tempOutput to place the results in * @private */ function processPolygon(poly: Polygon, tempOutput: Position[][]) { var previousCoord: Position; var previousGeometryIndex: number; coordEach( poly, function ( currentCoord, coordIndex, featureIndex, multiFeatureIndex, geometryIndex ) { if (previousGeometryIndex !== geometryIndex) { tempOutput.push([]); } else { var p0x = previousCoord[0]; var p0y = previousCoord[1]; var p1x = currentCoord[0]; var p1y = currentCoord[1]; tempOutput[geometryIndex].push([ 0.75 * p0x + 0.25 * p1x, 0.75 * p0y + 0.25 * p1y, ]); tempOutput[geometryIndex].push([ 0.25 * p0x + 0.75 * p1x, 0.25 * p0y + 0.75 * p1y, ]); } previousCoord = currentCoord; previousGeometryIndex = geometryIndex; }, false ); tempOutput.forEach(function (ring) { ring.push(ring[0]); }); } /** * @param {poly} poly to process * @param {poly} tempOutput to place the results in * @private */ function processMultiPolygon(poly: MultiPolygon, tempOutput: Position[][][]) { let previousCoord: Position; let previousMultiFeatureIndex: number; let previousGeometryIndex: number; coordEach( poly, function ( currentCoord, coordIndex, featureIndex, multiFeatureIndex, geometryIndex ) { if (previousMultiFeatureIndex !== multiFeatureIndex) { tempOutput.push([[]]); } else if (previousGeometryIndex !== geometryIndex) { tempOutput[multiFeatureIndex].push([]); } else { var p0x = previousCoord[0]; var p0y = previousCoord[1]; var p1x = currentCoord[0]; var p1y = currentCoord[1]; tempOutput[multiFeatureIndex][geometryIndex].push([ 0.75 * p0x + 0.25 * p1x, 0.75 * p0y + 0.25 * p1y, ]); tempOutput[multiFeatureIndex][geometryIndex].push([ 0.25 * p0x + 0.75 * p1x, 0.25 * p0y + 0.75 * p1y, ]); } previousCoord = currentCoord; previousMultiFeatureIndex = multiFeatureIndex; previousGeometryIndex = geometryIndex; }, false ); tempOutput.forEach(function (poly) { poly.forEach(function (ring) { ring.push(ring[0]); }); }); } export { polygonSmooth }; export default polygonSmooth; ================================================ FILE: packages/turf-polygon-smooth/package.json ================================================ { "name": "@turf/polygon-smooth", "version": "7.3.4", "description": "Smooths a Polygon or MultiPolygon, based on Chaikin's algorithm.", "author": "Turf Authors", "contributors": [ "Rowan Winsemius <@rowanwins>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "geojson", "polygon" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-polygon-smooth/test/in/close.json ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [18.28125, 39.095962936305476], [32.34375, 31.653381399664], [19.6875, 17.97873309555617], [35.15625, 10.833305983642491], [19.6875, 0], [32.6953125, -2.811371193331128], [40.78125, 13.923403897723347], [24.2578125, 17.97873309555617], [33.75, 31.952162238024975], [29.53125, 40.713955826286046], [22.8515625, 40.713955826286046], [18.28125, 39.095962936305476] ] ] } } ================================================ FILE: packages/turf-polygon-smooth/test/in/geometry.json ================================================ { "type": "Polygon", "coordinates": [ [ [2.28515625, 27.761329874505233], [-5.537109374999999, 21.616579336740603], [-0.087890625, 17.14079039331665], [0.87890625, 21.37124437061831], [4.482421875, 19.72534224805787], [5.09765625, 22.51255695405145], [10.458984375, 24.607069137709683], [3.076171875, 26.194876675795218], [6.15234375, 29.305561325527698], [2.28515625, 27.761329874505233] ] ] } ================================================ FILE: packages/turf-polygon-smooth/test/in/multipolygon.json ================================================ { "type": "MultiPolygon", "coordinates": [ [ [ [102.0, 2.0], [103.0, 2.0], [103.0, 3.0], [102.0, 3.0], [102.0, 2.0] ] ], [ [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0] ] ] ] } ================================================ FILE: packages/turf-polygon-smooth/test/in/multipolygonWithHole.json ================================================ { "type": "MultiPolygon", "coordinates": [ [ [ [102.0, 2.0], [103.0, 2.0], [103.0, 3.0], [102.0, 3.0], [102.0, 2.0] ] ], [ [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0] ], [ [100.2, 0.2], [100.8, 0.2], [100.8, 0.8], [100.2, 0.8], [100.2, 0.2] ] ], [ [ [105.0, 0.0], [106.0, 0.0], [106.0, 1.0], [105.0, 1.0], [105.0, 0.0] ], [ [105.2, 0.2], [105.8, 0.2], [105.8, 0.8], [105.2, 0.8], [105.2, 0.2] ] ] ] } ================================================ FILE: packages/turf-polygon-smooth/test/in/polygon.json ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [2.28515625, 27.761329874505233], [-5.537109374999999, 21.616579336740603], [-0.087890625, 17.14079039331665], [0.87890625, 21.37124437061831], [4.482421875, 19.72534224805787], [5.09765625, 22.51255695405145], [10.458984375, 24.607069137709683], [3.076171875, 26.194876675795218], [6.15234375, 29.305561325527698], [2.28515625, 27.761329874505233] ] ] } } ================================================ FILE: packages/turf-polygon-smooth/test/in/withHole.json ================================================ { "type": "Polygon", "coordinates": [ [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0] ], [ [100.2, 0.2], [100.8, 0.2], [100.8, 0.8], [100.2, 0.8], [100.2, 0.2] ] ] } ================================================ FILE: packages/turf-polygon-smooth/test/out/close.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [24.43359375, 35.83983351402483], [26.19140625, 34.90951082194465], [27.53173828125, 33.8818120866228], [28.45458984375, 32.7567373080593], [28.9599609375, 31.534286486254125], [29.0478515625, 30.21445962120729], [28.71826171875, 28.797256712918795], [27.97119140625, 27.28267776138864], [26.806640625, 25.670722766616823], [25.224609375, 23.961391728603346], [24.08203125, 22.3540797717179], [23.37890625, 20.84878689596049], [23.115234375, 19.445513101331112], [23.291015625, 18.144258387829765], [23.90625, 16.945022755456456], [24.9609375, 15.847806204211178], [26.455078125, 14.852608734093936], [28.388671875, 13.959430345104726], [29.8388671875, 13.008628848744754], [30.8056640625, 12.000204245014018], [31.2890625, 10.934156533912521], [31.2890625, 9.81048571544026], [30.8056640625, 8.629191789597236], [29.8388671875, 7.39027475638345], [28.388671875, 6.093734615798901], [26.455078125, 4.73957136784359], [24.9664306640625, 3.5107508509868937], [23.9227294921875, 2.4072730652288126], [23.323974609375, 1.429138010569346], [23.170166015625, 0.5763456870084949], [23.4613037109375, -0.15110390545374128], [24.1973876953125, -0.7532107668173623], [25.37841796875, -1.2299748970823683], [27.00439453125, -1.581396296248759], [28.553466796875, -1.6274091597216251], [30.025634765625, -1.3680134875009662], [31.4208984375, -0.803209279586782], [32.7392578125, 0.06700346402092716], [33.980712890625, 1.2426247433221613], [35.145263671875, 2.7236545583169205], [36.23291015625, 4.510092909005205], [37.24365234375, 6.601939795387015], [37.869873046875, 8.495670339687235], [38.111572265625, 10.191284541905867], [37.96875, 11.68878240204291], [37.44140625, 12.98816392009837], [36.529541015625, 14.089429096072237], [35.233154296875, 14.992577929964515], [33.55224609375, 15.697610421775206], [31.48681640625, 16.20452657150431], [29.827880859375, 16.86641303286835], [28.575439453125, 17.683269805867326], [27.7294921875, 18.65509689050124], [27.2900390625, 19.781894286770097], [27.257080078125, 21.063661994673886], [27.630615234375, 22.50040001421261], [28.41064453125, 24.092108345386272], [29.59716796875, 25.838786988194872], [30.5694580078125, 27.504033825468973], [31.3275146484375, 29.087848857208584], [31.871337890625, 30.590232083413696], [32.200927734375, 32.011183504084315], [32.3162841796875, 33.35070311922044], [32.2174072265625, 34.60879092882206], [31.904296875, 35.785446932889194], [31.376953125, 36.88067113142183], [30.8111572265625, 37.83899230513788], [30.2069091796875, 38.66041045403736], [29.564208984375, 39.344925578120254], [28.883056640625, 39.89253767738657], [28.1634521484375, 40.30324675183631], [27.4053955078125, 40.57705280146946], [26.60888671875, 40.713955826286046], [25.77392578125, 40.713955826286046], [24.971923828125, 40.6886746873801], [24.202880859375, 40.6381124095682], [23.466796875, 40.56226899285036], [22.763671875, 40.46114443722658], [22.093505859375, 40.33473874269685], [21.456298828125, 40.183051909261174], [20.85205078125, 40.00608393691955], [20.28076171875, 39.80383482567197], [20.0006103515625, 39.51057651682032], [20.0115966796875, 39.12630901036461], [20.313720703125, 38.6510323063048], [20.906982421875, 38.084746404640924], [21.7913818359375, 37.42745130537297], [22.9669189453125, 36.679147008500934], [24.43359375, 35.83983351402483] ] ] } } ] } ================================================ FILE: packages/turf-polygon-smooth/test/out/geometry.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1.1370849609374996, 25.073001514233205], [-2.114868164062499, 24.30490769701263], [-2.885284423828124, 23.562891404703624], [-3.448333740234374, 22.84695263730619], [-3.804016113281249, 22.157091394820334], [-3.952331542968749, 21.493307677246044], [-3.893280029296874, 20.85560148458333], [-3.626861572265624, 20.24397281683219], [-3.153076171874999, 19.65842167399262], [-2.471923828124999, 19.09894805606463], [-1.8608093261718746, 18.675509483772974], [-1.3197326660156246, 18.388105957117656], [-0.8486938476562498, 18.236737476098675], [-0.4476928710937499, 18.22140404071603], [-0.11672973632812494, 18.342105650969724], [0.144195556640625, 18.59884230685976], [0.3350830078125, 18.991614008386126], [0.4559326171875, 19.520420755548834], [0.61798095703125, 19.957409438651194], [0.82122802734375, 20.302580057693213], [1.065673828125, 20.555932612674884], [1.351318359375, 20.71746710359621], [1.67816162109375, 20.78718353045719], [2.04620361328125, 20.765081893257825], [2.4554443359375, 20.651162191998118], [2.9058837890625, 20.445424426678063], [3.30963134765625, 20.308954111804166], [3.66668701171875, 20.241751247376424], [3.97705078125, 20.243815833394837], [4.24072265625, 20.31514786985941], [4.45770263671875, 20.455747356770136], [4.62799072265625, 20.66561429412702], [4.7515869140625, 20.94474868193006], [4.8284912109375, 21.29315052017926], [4.97955322265625, 21.63072888151697], [5.20477294921875, 21.957483765943184], [5.504150390625, 22.273415173457913], [5.877685546875, 22.578523104061155], [6.32537841796875, 22.872807557752903], [6.84722900390625, 23.156268534533158], [7.4432373046875, 23.428906034401926], [8.1134033203125, 23.690720057359208], [8.584442138671875, 23.944616820229413], [8.856353759765625, 24.190596323012542], [8.92913818359375, 24.428658565708602], [8.80279541015625, 24.658803548317586], [8.477325439453125, 24.8810312708395], [7.952728271484375, 25.09534173327434], [7.22900390625, 25.301734935622104], [6.30615234375, 25.500210877882797], [5.546722412109375, 25.722481775012973], [4.950714111328125, 25.968547627012633], [4.51812744140625, 26.238408433881773], [4.24896240234375, 26.532064195620396], [4.143218994140625, 26.849514912228507], [4.200897216796875, 27.1907605837061], [4.4219970703125, 27.555801210053176], [4.8065185546875, 27.944636791269737], [5.082550048828125, 28.260739308412003], [5.250091552734375, 28.50410876147997], [5.30914306640625, 28.674745150473644], [5.25970458984375, 28.77264847539302], [5.101776123046875, 28.7978187362381], [4.835357666015625, 28.750255933008884], [4.46044921875, 28.62996006570537], [3.97705078125, 28.436931134327562], [3.431854248046875, 28.172019092219408], [2.824859619140625, 27.835223939380903], [2.15606689453125, 27.426545675812058], [1.4254760742187502, 26.945984301512862], [0.6330871582031253, 26.393539816483322], [-0.2210998535156246, 25.76921222072344], [-1.1370849609374996, 25.073001514233205] ] ] } } ] } ================================================ FILE: packages/turf-polygon-smooth/test/out/multipolygon.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [102.4375, 2], [102.5625, 2], [102.671875, 2.015625], [102.765625, 2.046875], [102.84375, 2.09375], [102.90625, 2.15625], [102.953125, 2.234375], [102.984375, 2.328125], [103, 2.4375], [103, 2.5625], [102.984375, 2.671875], [102.953125, 2.765625], [102.90625, 2.84375], [102.84375, 2.90625], [102.765625, 2.953125], [102.671875, 2.984375], [102.5625, 3], [102.4375, 3], [102.328125, 2.984375], [102.234375, 2.953125], [102.15625, 2.90625], [102.09375, 2.84375], [102.046875, 2.765625], [102.015625, 2.671875], [102, 2.5625], [102, 2.4375], [102.015625, 2.328125], [102.046875, 2.234375], [102.09375, 2.15625], [102.15625, 2.09375], [102.234375, 2.046875], [102.328125, 2.015625], [102.4375, 2] ] ], [ [ [100.4375, 0], [100.5625, 0], [100.671875, 0.015625], [100.765625, 0.046875], [100.84375, 0.09375], [100.90625, 0.15625], [100.953125, 0.234375], [100.984375, 0.328125], [101, 0.4375], [101, 0.5625], [100.984375, 0.671875], [100.953125, 0.765625], [100.90625, 0.84375], [100.84375, 0.90625], [100.765625, 0.953125], [100.671875, 0.984375], [100.5625, 1], [100.4375, 1], [100.328125, 0.984375], [100.234375, 0.953125], [100.15625, 0.90625], [100.09375, 0.84375], [100.046875, 0.765625], [100.015625, 0.671875], [100, 0.5625], [100, 0.4375], [100.015625, 0.328125], [100.046875, 0.234375], [100.09375, 0.15625], [100.15625, 0.09375], [100.234375, 0.046875], [100.328125, 0.015625], [100.4375, 0] ] ] ] } } ] } ================================================ FILE: packages/turf-polygon-smooth/test/out/multipolygonWithHole.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [102.4375, 2], [102.5625, 2], [102.671875, 2.015625], [102.765625, 2.046875], [102.84375, 2.09375], [102.90625, 2.15625], [102.953125, 2.234375], [102.984375, 2.328125], [103, 2.4375], [103, 2.5625], [102.984375, 2.671875], [102.953125, 2.765625], [102.90625, 2.84375], [102.84375, 2.90625], [102.765625, 2.953125], [102.671875, 2.984375], [102.5625, 3], [102.4375, 3], [102.328125, 2.984375], [102.234375, 2.953125], [102.15625, 2.90625], [102.09375, 2.84375], [102.046875, 2.765625], [102.015625, 2.671875], [102, 2.5625], [102, 2.4375], [102.015625, 2.328125], [102.046875, 2.234375], [102.09375, 2.15625], [102.15625, 2.09375], [102.234375, 2.046875], [102.328125, 2.015625], [102.4375, 2] ] ], [ [ [100.4375, 0], [100.5625, 0], [100.671875, 0.015625], [100.765625, 0.046875], [100.84375, 0.09375], [100.90625, 0.15625], [100.953125, 0.234375], [100.984375, 0.328125], [101, 0.4375], [101, 0.5625], [100.984375, 0.671875], [100.953125, 0.765625], [100.90625, 0.84375], [100.84375, 0.90625], [100.765625, 0.953125], [100.671875, 0.984375], [100.5625, 1], [100.4375, 1], [100.328125, 0.984375], [100.234375, 0.953125], [100.15625, 0.90625], [100.09375, 0.84375], [100.046875, 0.765625], [100.015625, 0.671875], [100, 0.5625], [100, 0.4375], [100.015625, 0.328125], [100.046875, 0.234375], [100.09375, 0.15625], [100.15625, 0.09375], [100.234375, 0.046875], [100.328125, 0.015625], [100.4375, 0] ], [ [100.46249999999999, 0.2], [100.53750000000001, 0.2], [100.603125, 0.20937500000000003], [100.659375, 0.22812500000000002], [100.70625, 0.25625000000000003], [100.74374999999999, 0.29375], [100.771875, 0.340625], [100.79062499999999, 0.39687500000000003], [100.8, 0.4625], [100.8, 0.5375000000000001], [100.79062499999999, 0.603125], [100.771875, 0.6593750000000002], [100.74374999999999, 0.7062500000000002], [100.70625, 0.7437500000000001], [100.659375, 0.7718750000000001], [100.603125, 0.7906250000000001], [100.53750000000001, 0.8], [100.46249999999999, 0.8], [100.396875, 0.7906250000000001], [100.340625, 0.7718750000000001], [100.29375, 0.7437500000000001], [100.25625000000001, 0.7062500000000002], [100.228125, 0.6593750000000002], [100.20937500000001, 0.603125], [100.2, 0.5375000000000001], [100.2, 0.4625], [100.20937500000001, 0.39687500000000003], [100.228125, 0.340625], [100.25625000000001, 0.29375], [100.29375, 0.25625000000000003], [100.340625, 0.22812500000000002], [100.396875, 0.20937500000000003], [100.46249999999999, 0.2] ] ], [ [ [105.4375, 0], [105.5625, 0], [105.671875, 0.015625], [105.765625, 0.046875], [105.84375, 0.09375], [105.90625, 0.15625], [105.953125, 0.234375], [105.984375, 0.328125], [106, 0.4375], [106, 0.5625], [105.984375, 0.671875], [105.953125, 0.765625], [105.90625, 0.84375], [105.84375, 0.90625], [105.765625, 0.953125], [105.671875, 0.984375], [105.5625, 1], [105.4375, 1], [105.328125, 0.984375], [105.234375, 0.953125], [105.15625, 0.90625], [105.09375, 0.84375], [105.046875, 0.765625], [105.015625, 0.671875], [105, 0.5625], [105, 0.4375], [105.015625, 0.328125], [105.046875, 0.234375], [105.09375, 0.15625], [105.15625, 0.09375], [105.234375, 0.046875], [105.328125, 0.015625], [105.4375, 0] ], [ [105.46249999999999, 0.2], [105.53750000000001, 0.2], [105.603125, 0.20937500000000003], [105.659375, 0.22812500000000002], [105.70625, 0.25625000000000003], [105.74374999999999, 0.29375], [105.771875, 0.340625], [105.79062499999999, 0.39687500000000003], [105.8, 0.4625], [105.8, 0.5375000000000001], [105.79062499999999, 0.603125], [105.771875, 0.6593750000000002], [105.74374999999999, 0.7062500000000002], [105.70625, 0.7437500000000001], [105.659375, 0.7718750000000001], [105.603125, 0.7906250000000001], [105.53750000000001, 0.8], [105.46249999999999, 0.8], [105.396875, 0.7906250000000001], [105.340625, 0.7718750000000001], [105.29375, 0.7437500000000001], [105.25625000000001, 0.7062500000000002], [105.228125, 0.6593750000000002], [105.20937500000001, 0.603125], [105.2, 0.5375000000000001], [105.2, 0.4625], [105.20937500000001, 0.39687500000000003], [105.228125, 0.340625], [105.25625000000001, 0.29375], [105.29375, 0.25625000000000003], [105.340625, 0.22812500000000002], [105.396875, 0.20937500000000003], [105.46249999999999, 0.2] ] ] ] } } ] } ================================================ FILE: packages/turf-polygon-smooth/test/out/polygon.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1.1370849609374996, 25.073001514233205], [-2.114868164062499, 24.30490769701263], [-2.885284423828124, 23.562891404703624], [-3.448333740234374, 22.84695263730619], [-3.804016113281249, 22.157091394820334], [-3.952331542968749, 21.493307677246044], [-3.893280029296874, 20.85560148458333], [-3.626861572265624, 20.24397281683219], [-3.153076171874999, 19.65842167399262], [-2.471923828124999, 19.09894805606463], [-1.8608093261718746, 18.675509483772974], [-1.3197326660156246, 18.388105957117656], [-0.8486938476562498, 18.236737476098675], [-0.4476928710937499, 18.22140404071603], [-0.11672973632812494, 18.342105650969724], [0.144195556640625, 18.59884230685976], [0.3350830078125, 18.991614008386126], [0.4559326171875, 19.520420755548834], [0.61798095703125, 19.957409438651194], [0.82122802734375, 20.302580057693213], [1.065673828125, 20.555932612674884], [1.351318359375, 20.71746710359621], [1.67816162109375, 20.78718353045719], [2.04620361328125, 20.765081893257825], [2.4554443359375, 20.651162191998118], [2.9058837890625, 20.445424426678063], [3.30963134765625, 20.308954111804166], [3.66668701171875, 20.241751247376424], [3.97705078125, 20.243815833394837], [4.24072265625, 20.31514786985941], [4.45770263671875, 20.455747356770136], [4.62799072265625, 20.66561429412702], [4.7515869140625, 20.94474868193006], [4.8284912109375, 21.29315052017926], [4.97955322265625, 21.63072888151697], [5.20477294921875, 21.957483765943184], [5.504150390625, 22.273415173457913], [5.877685546875, 22.578523104061155], [6.32537841796875, 22.872807557752903], [6.84722900390625, 23.156268534533158], [7.4432373046875, 23.428906034401926], [8.1134033203125, 23.690720057359208], [8.584442138671875, 23.944616820229413], [8.856353759765625, 24.190596323012542], [8.92913818359375, 24.428658565708602], [8.80279541015625, 24.658803548317586], [8.477325439453125, 24.8810312708395], [7.952728271484375, 25.09534173327434], [7.22900390625, 25.301734935622104], [6.30615234375, 25.500210877882797], [5.546722412109375, 25.722481775012973], [4.950714111328125, 25.968547627012633], [4.51812744140625, 26.238408433881773], [4.24896240234375, 26.532064195620396], [4.143218994140625, 26.849514912228507], [4.200897216796875, 27.1907605837061], [4.4219970703125, 27.555801210053176], [4.8065185546875, 27.944636791269737], [5.082550048828125, 28.260739308412003], [5.250091552734375, 28.50410876147997], [5.30914306640625, 28.674745150473644], [5.25970458984375, 28.77264847539302], [5.101776123046875, 28.7978187362381], [4.835357666015625, 28.750255933008884], [4.46044921875, 28.62996006570537], [3.97705078125, 28.436931134327562], [3.431854248046875, 28.172019092219408], [2.824859619140625, 27.835223939380903], [2.15606689453125, 27.426545675812058], [1.4254760742187502, 26.945984301512862], [0.6330871582031253, 26.393539816483322], [-0.2210998535156246, 25.76921222072344], [-1.1370849609374996, 25.073001514233205] ] ] } } ] } ================================================ FILE: packages/turf-polygon-smooth/test/out/withHole.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [100.4375, 0], [100.5625, 0], [100.671875, 0.015625], [100.765625, 0.046875], [100.84375, 0.09375], [100.90625, 0.15625], [100.953125, 0.234375], [100.984375, 0.328125], [101, 0.4375], [101, 0.5625], [100.984375, 0.671875], [100.953125, 0.765625], [100.90625, 0.84375], [100.84375, 0.90625], [100.765625, 0.953125], [100.671875, 0.984375], [100.5625, 1], [100.4375, 1], [100.328125, 0.984375], [100.234375, 0.953125], [100.15625, 0.90625], [100.09375, 0.84375], [100.046875, 0.765625], [100.015625, 0.671875], [100, 0.5625], [100, 0.4375], [100.015625, 0.328125], [100.046875, 0.234375], [100.09375, 0.15625], [100.15625, 0.09375], [100.234375, 0.046875], [100.328125, 0.015625], [100.4375, 0] ], [ [100.46249999999999, 0.2], [100.53750000000001, 0.2], [100.603125, 0.20937500000000003], [100.659375, 0.22812500000000002], [100.70625, 0.25625000000000003], [100.74374999999999, 0.29375], [100.771875, 0.340625], [100.79062499999999, 0.39687500000000003], [100.8, 0.4625], [100.8, 0.5375000000000001], [100.79062499999999, 0.603125], [100.771875, 0.6593750000000002], [100.74374999999999, 0.7062500000000002], [100.70625, 0.7437500000000001], [100.659375, 0.7718750000000001], [100.603125, 0.7906250000000001], [100.53750000000001, 0.8], [100.46249999999999, 0.8], [100.396875, 0.7906250000000001], [100.340625, 0.7718750000000001], [100.29375, 0.7437500000000001], [100.25625000000001, 0.7062500000000002], [100.228125, 0.6593750000000002], [100.20937500000001, 0.603125], [100.2, 0.5375000000000001], [100.2, 0.4625], [100.20937500000001, 0.39687500000000003], [100.228125, 0.340625], [100.25625000000001, 0.29375], [100.29375, 0.25625000000000003], [100.340625, 0.22812500000000002], [100.396875, 0.20937500000000003], [100.46249999999999, 0.2] ] ] } } ] } ================================================ FILE: packages/turf-polygon-smooth/test.ts ================================================ import { polygon } from "@turf/helpers"; import { glob } from "glob"; import { loadJsonFileSync } from "load-json-file"; import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { writeJsonFileSync } from "write-json-file"; import { polygonSmooth } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); test("turf-polygon-smooth", (t) => { glob .sync(path.join(__dirname, "test", "in", "*.json")) .forEach((filepath) => { // Inputs const geojson = loadJsonFileSync(filepath); const options = geojson.options || {}; const iterations = options.iterations || 3; // Results const results = polygonSmooth(geojson, { iterations }); // Save Results const out = filepath.replace( path.join("test", "in"), path.join("test", "out") ); if (process.env.REGEN) writeJsonFileSync(out, results); t.deepEqual(results, loadJsonFileSync(out), path.parse(filepath).name); }); t.end(); }); test("turf-polygon-smooth -- options are optional", (t) => { t.doesNotThrow(() => polygonSmooth( polygon([ [ [0, 0], [1, 0], [1, 1], [0, 1], [0, 0], ], ]) ) ); t.end(); }); ================================================ FILE: packages/turf-polygon-smooth/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-polygon-smooth/types.ts ================================================ import { polygon } from "@turf/helpers"; import { polygonSmooth } from "./index.js"; const poly = polygon([ [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0], ], ]); polygonSmooth(poly); polygonSmooth(poly, { iterations: 3 }); ================================================ FILE: packages/turf-polygon-tangents/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-polygon-tangents/README.md ================================================ # @turf/polygon-tangents ## polygonTangents Finds the tangents of a [(Multi)Polygon][1] from a [Point][2]. ### Parameters * `pt` **[Coord][3]** to calculate the tangent points from * `polygon` **[Feature][4]<([Polygon][1] | [MultiPolygon][5])>** to get tangents from ### Examples ```javascript var polygon = turf.polygon([[[11, 0], [22, 4], [31, 0], [31, 11], [21, 15], [11, 11], [11, 0]]]); var point = turf.point([61, 5]); var tangents = turf.polygonTangents(point, polygon) //addToMap var addToMap = [tangents, point, polygon]; ``` Returns **[FeatureCollection][6]<[Point][2]>** Feature Collection containing the two tangent points [1]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.1 [4]: https://tools.ietf.org/html/rfc7946#section-3.2 [5]: https://tools.ietf.org/html/rfc7946#section-3.1.7 [6]: https://tools.ietf.org/html/rfc7946#section-3.3 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/polygon-tangents ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-polygon-tangents/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { polygonTangents as tangents } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; let fixtures = fs.readdirSync(directory).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); /** * Benchmark Results * concave x 562,308 ops/sec ±1.87% (86 runs sampled) * high x 478,965 ops/sec ±5.76% (70 runs sampled) * issue#1032 x 7,041 ops/sec ±2.71% (81 runs sampled) * issue#1050 x 388,455 ops/sec ±2.34% (79 runs sampled) * issue#785 x 51,146 ops/sec ±3.87% (77 runs sampled) * multipolygon x 143,371 ops/sec ±3.17% (80 runs sampled) * polygonWithHole x 215,547 ops/sec ±2.13% (83 runs sampled) * square x 518,853 ops/sec ±2.68% (81 runs sampled) */ const suite = new Benchmark.Suite("turf-polygon-tangents"); for (const { name, geojson } of fixtures) { const [poly, pt] = geojson.features; suite.add(name, () => tangents(pt, poly)); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-polygon-tangents/index.ts ================================================ import type { Feature, FeatureCollection, Point, Polygon, Position, MultiPolygon, } from "geojson"; import type { Coord } from "@turf/helpers"; import { getCoords, getType } from "@turf/invariant"; import { point, featureCollection } from "@turf/helpers"; import { bbox as calcBbox } from "@turf/bbox"; import { explode } from "@turf/explode"; import { nearestPoint } from "@turf/nearest-point"; /** * Finds the tangents of a {@link Polygon|(Multi)Polygon} from a {@link Point}. * * @function * @param {Coord} pt to calculate the tangent points from * @param {Feature} polygon to get tangents from * @returns {FeatureCollection} Feature Collection containing the two tangent points * @example * var polygon = turf.polygon([[[11, 0], [22, 4], [31, 0], [31, 11], [21, 15], [11, 11], [11, 0]]]); * var point = turf.point([61, 5]); * * var tangents = turf.polygonTangents(point, polygon) * * //addToMap * var addToMap = [tangents, point, polygon]; */ function polygonTangents( pt: Coord, polygon: Feature | T ): FeatureCollection { const pointCoords = getCoords(pt); const polyCoords = getCoords(polygon); let rtan: Position = []; let ltan: Position = []; let eprev: number; const bbox = calcBbox(polygon); let nearestPtIndex = 0; let nearest = null; // If the point lies inside the polygon bbox then we need to be a bit trickier // otherwise points lying inside reflex angles on concave polys can have issues if ( pointCoords[0] > bbox[0] && pointCoords[0] < bbox[2] && pointCoords[1] > bbox[1] && pointCoords[1] < bbox[3] ) { nearest = nearestPoint(pt, explode(polygon)); nearestPtIndex = nearest.properties.featureIndex; } const type = getType(polygon); switch (type) { case "Polygon": rtan = polyCoords[0][nearestPtIndex]; ltan = polyCoords[0][0]; if (nearest !== null) { if (nearest.geometry.coordinates[1] < pointCoords[1]) ltan = polyCoords[0][nearestPtIndex]; } eprev = isLeft( polyCoords[0][0], polyCoords[0][polyCoords[0].length - 1], pointCoords ); [rtan, ltan] = processPolygon( polyCoords[0], pointCoords, eprev, rtan, ltan ); break; case "MultiPolygon": var closestFeature = 0; var closestVertex = 0; var verticesCounted = 0; for (var i = 0; i < polyCoords[0].length; i++) { closestFeature = i; var verticeFound = false; for (var i2 = 0; i2 < polyCoords[0][i].length; i2++) { closestVertex = i2; if (verticesCounted === nearestPtIndex) { verticeFound = true; break; } verticesCounted++; } if (verticeFound) break; } rtan = polyCoords[0][closestFeature][closestVertex]; ltan = polyCoords[0][closestFeature][closestVertex]; eprev = isLeft( polyCoords[0][0][0], polyCoords[0][0][polyCoords[0][0].length - 1], pointCoords ); polyCoords.forEach(function (ring) { [rtan, ltan] = processPolygon(ring[0], pointCoords, eprev, rtan, ltan); }); break; } return featureCollection([point(rtan), point(ltan)]); } function processPolygon( polygonCoords: Position[], ptCoords: Position, eprev: number, rtan: Position, ltan: Position ) { for (let i = 0; i < polygonCoords.length; i++) { const currentCoords = polygonCoords[i]; let nextCoordPair = polygonCoords[i + 1]; if (i === polygonCoords.length - 1) { nextCoordPair = polygonCoords[0]; } const enext = isLeft(currentCoords, nextCoordPair, ptCoords); if (eprev <= 0 && enext > 0) { if (!isBelow(ptCoords, currentCoords, rtan)) { rtan = currentCoords; } } else if (eprev > 0 && enext <= 0) { if (!isAbove(ptCoords, currentCoords, ltan)) { ltan = currentCoords; } } eprev = enext; } return [rtan, ltan]; } function isAbove(point1: Position, point2: Position, point3: Position) { return isLeft(point1, point2, point3) > 0; } function isBelow(point1: Position, point2: Position, point3: Position) { return isLeft(point1, point2, point3) < 0; } function isLeft(point1: Position, point2: Position, point3: Position) { return ( (point2[0] - point1[0]) * (point3[1] - point1[1]) - (point3[0] - point1[0]) * (point2[1] - point1[1]) ); } export { polygonTangents }; export default polygonTangents; ================================================ FILE: packages/turf-polygon-tangents/package.json ================================================ { "name": "@turf/polygon-tangents", "version": "7.3.4", "description": "Finds the tangents of a polygon from a point.", "author": "Turf Authors", "contributors": [ "Rowan Winsemius <@rowanwins>", "Denis Carriere <@DenisCarriere>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "geojson", "point", "tangent", "polygon" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/bbox": "workspace:*", "@turf/boolean-within": "workspace:*", "@turf/explode": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/nearest-point": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-polygon-tangents/test/in/concave.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [48.1640625, 20.632784250388028], [62.57812500000001, 22.917922936146045], [76.640625, 20.632784250388028], [73.125, 30.14512718337613], [76.640625, 38.8225909761771], [62.57812500000001, 31.952162238024975], [48.1640625, 38.8225909761771], [48.1640625, 20.632784250388028] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [99.84374999999999, 31.353636941500987] } } ] } ================================================ FILE: packages/turf-polygon-tangents/test/in/high.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [59.765625, -37.16031654673676], [62.57812500000001, 22.917922936146045], [76.640625, 20.632784250388028], [73.125, 30.14512718337613], [76.640625, 38.8225909761771], [62.57812500000001, 31.952162238024975], [56.33789062499999, 52.74959372674114], [59.765625, -37.16031654673676] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [99.84374999999999, 31.353636941500987] } } ] } ================================================ FILE: packages/turf-polygon-tangents/test/in/issue#1032.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [73.222696781158, 0.672929312864639], [73.223141775131, 0.6728221177272928], [73.223743934789, 0.6726381749213459], [73.224029146338, 0.6725036554756088], [73.224338813812, 0.6724074327878782], [73.224860170232, 0.6721935244108295], [73.225509744573, 0.6720420390183648], [73.226084583476, 0.6717472629325556], [73.226458847279, 0.6715981449324744], [73.226650858421, 0.6715436544821927], [73.227258045226, 0.6714184949730679], [73.227445127964, 0.6713529476262039], [73.227678178196, 0.6712050062728139], [73.228031831012, 0.6708426157704537], [73.228146526963, 0.6706682403694231], [73.228457655945, 0.6700969051734518], [73.228657754266, 0.6698443347108025], [73.22884159707, 0.6696673096285082], [73.228996763994, 0.6695767853640717], [73.229106436541, 0.6695525110064722], [73.229149940014, 0.6695025217523778], [73.229169917106, 0.6693944039229791], [73.229167029882, 0.6693046080477387], [73.229084080861, 0.6691702157268935], [73.229041067618, 0.6691383134431845], [73.228922636334, 0.6690945712344814], [73.22885162189, 0.6690290941501615], [73.228795706928, 0.6690004793602498], [73.228683117007, 0.6689698982356589], [73.228615358483, 0.6689786536104236], [73.228546747123, 0.6690229904581599], [73.228490368271, 0.669096495729903], [73.228443036787, 0.6694061168332297], [73.228223152757, 0.6698214354820493], [73.228165577041, 0.6698999456480976], [73.228024344452, 0.670025254964898], [73.227903388313, 0.6702371606698421], [73.227836480364, 0.6703046163993349], [73.227119555512, 0.6707099538733416], [73.22668329446, 0.6710793258441896], [73.226559966198, 0.6711543446100734], [73.226424521696, 0.6712119748989664], [73.226177066949, 0.6712730394161497], [73.225950830598, 0.67127542067891], [73.225655714655, 0.6712369330303574], [73.22555065155, 0.6711909636509574], [73.225483278402, 0.6711332409315816], [73.225406283817, 0.6710095253332611], [73.225390645993, 0.6709432706487064], [73.225397197529, 0.6708261252031065], [73.225457941492, 0.6706975144888645], [73.225963781675, 0.6703145215167154], [73.226412547476, 0.669790217338786], [73.226639346285, 0.6696012463551142], [73.226701757055, 0.6695209006273473], [73.226727089028, 0.6694367056162207], [73.226723397567, 0.6693697679729524], [73.226656628151, 0.6691877016677381], [73.226566725674, 0.669003250939312], [73.226551314195, 0.6689166059413054], [73.226568804017, 0.668865677272052], [73.226787260285, 0.6685663053432478], [73.226824706351, 0.668476577946393], [73.226843488025, 0.6683734115614755], [73.226823012034, 0.668252158733111], [73.226760301619, 0.6681455247222345], [73.226612638682, 0.6680583776521587], [73.226456208552, 0.6680175865484159], [73.226209720597, 0.6680410701986119], [73.226154902776, 0.668062388064314], [73.226070207392, 0.6681289116730795], [73.225768983364, 0.6684395167627741], [73.225699240456, 0.6684703579247326], [73.22541866541, 0.6684446126130723], [73.225309299131, 0.6684913460441066], [73.225291081448, 0.6684570449487524], [73.225256291015, 0.668222172880931], [73.225226394924, 0.6681784489895506], [73.225180595009, 0.6681526846102344], [73.224978322105, 0.6681633512328347], [73.224772984242, 0.6682065624897859], [73.224741499018, 0.668201968184249], [73.22471701051, 0.668173830077734], [73.22470184438, 0.66807906378871], [73.224710363746, 0.6679383479043537], [73.224809658364, 0.6676155759821256], [73.224856696195, 0.6673534849849148], [73.224970303437, 0.6670680268227471], [73.22512649074, 0.6668365082036303], [73.225212097168, 0.6667288667304803], [73.225274791718, 0.6666840121064155], [73.225625809829, 0.6666438269910628], [73.225738127231, 0.666611311729028], [73.226002620068, 0.6663804677868512], [73.226105900095, 0.6662014314291156], [73.226124983675, 0.6660370141104295], [73.226040943446, 0.6658116107705752], [73.225815226237, 0.6655119071691757], [73.225710327836, 0.6654167649301144], [73.225627314532, 0.6653661538076818], [73.225537743419, 0.6653534272697499], [73.225433878899, 0.6653717924575773], [73.225318119124, 0.665562515457168], [73.225255542633, 0.6657391979264418], [73.224956187609, 0.6660264320867242], [73.224782510517, 0.6663571798607677], [73.224617868401, 0.6665229776088211], [73.224439704818, 0.6668353595225085], [73.224300938349, 0.6672443056588548], [73.22419991164, 0.6676913082846596], [73.22406436316, 0.6681564543334417], [73.223883887404, 0.6690056083385798], [73.22377935234, 0.6692590564152425], [73.223676624298, 0.6694553729287946], [73.223596730253, 0.6695715464665994], [73.223541862338, 0.6696966344853763], [73.223345681691, 0.6704022315888665], [73.223258191582, 0.670645296332097], [73.222985252214, 0.6715456004246505], [73.22285381536, 0.6718248328859886], [73.222686846515, 0.6721174107883314], [73.222454455099, 0.6724137943929662], [73.222098727673, 0.6728239052963403], [73.222041913757, 0.6729435103004278], [73.222061824868, 0.6729818899183755], [73.222099328875, 0.6729992722487737], [73.222397657256, 0.6729767617070905], [73.222696781158, 0.672929312864639] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [73.2258944382542, 0.6673910301706059] } } ] } ================================================ FILE: packages/turf-polygon-tangents/test/in/issue#1050.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.788482103824089, 51.56063487730164], [8.788583, 51.561554], [8.78839, 51.562241], [8.78705, 51.563616], [8.785483, 51.564445], [8.785481, 51.564446], [8.785479, 51.564447], [8.785479, 51.564449], [8.785478, 51.56445], [8.785478, 51.564452], [8.785479, 51.564454], [8.78548, 51.564455], [8.785482, 51.564457], [8.786358, 51.565053], [8.787022, 51.565767], [8.787024, 51.565768], [8.787026, 51.565769], [8.787028, 51.56577], [8.787031, 51.565771], [8.787033, 51.565771], [8.789951649580397, 51.56585502173034], [8.789734, 51.563604], [8.788482103824089, 51.56063487730164] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.725, 51.57] } } ] } ================================================ FILE: packages/turf-polygon-tangents/test/in/issue#785.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [73.57502193836378, 0.43239356638694915], [73.57526333717512, 0.43281197906664204], [73.57561738876508, 0.43281197906664204], [73.57560129551099, 0.4325384015479159], [73.57543499855207, 0.4324686661003909], [73.57551010040449, 0.43223263842709514], [73.57579441456006, 0.43239893065221224], [73.57609482196972, 0.4324364805090113], [73.57643278030561, 0.4323184666727826], [73.57594998268293, 0.4322380026924719], [73.5754779138963, 0.4318464113095217], [73.5751184978883, 0.4320448891362787], [73.57516141323254, 0.4322862810807635], [73.57500048069166, 0.43227018828469], [73.57502193836378, 0.43239356638694915] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [73.5755476513307, 0.4323399237340624] }, "properties": {} } ] } ================================================ FILE: packages/turf-polygon-tangents/test/in/multipolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [48.1640625, 20.632784250388028], [62.57812500000001, 22.917922936146045], [76.640625, 20.632784250388028], [73.125, 30.14512718337613], [76.640625, 38.8225909761771], [62.57812500000001, 31.952162238024975], [48.1640625, 38.8225909761771], [48.1640625, 20.632784250388028] ] ], [ [ [56.42578125, 41.64007838467894], [70.751953125, 41.64007838467894], [70.751953125, 50.84757295365389], [56.42578125, 50.84757295365389], [56.42578125, 41.64007838467894] ] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [99.84374999999999, 31.353636941500987] } } ] } ================================================ FILE: packages/turf-polygon-tangents/test/in/polygonWithHole.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [48.1640625, 20.632784250388028], [76.640625, 20.632784250388028], [76.640625, 38.8225909761771], [48.1640625, 38.8225909761771], [48.1640625, 20.632784250388028] ], [ [56.51367187499999, 26.82407078047018], [69.08203125, 26.82407078047018], [69.08203125, 34.45221847282654], [56.51367187499999, 34.45221847282654], [56.51367187499999, 26.82407078047018] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [99.84374999999999, 31.353636941500987] } } ] } ================================================ FILE: packages/turf-polygon-tangents/test/in/square.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [48.1640625, 20.632784250388028], [76.640625, 20.632784250388028], [76.640625, 38.8225909761771], [48.1640625, 38.8225909761771], [48.1640625, 20.632784250388028] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [92.46093749999999, 54.67383096593114] } } ] } ================================================ FILE: packages/turf-polygon-tangents/test/out/concave.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [76.640625, 38.8225909761771] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [76.640625, 20.632784250388028] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [48.1640625, 20.632784250388028], [62.57812500000001, 22.917922936146045], [76.640625, 20.632784250388028], [73.125, 30.14512718337613], [76.640625, 38.8225909761771], [62.57812500000001, 31.952162238024975], [48.1640625, 38.8225909761771], [48.1640625, 20.632784250388028] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [99.84374999999999, 31.353636941500987] } } ] } ================================================ FILE: packages/turf-polygon-tangents/test/out/high.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [56.33789062499999, 52.74959372674114] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [59.765625, -37.16031654673676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [59.765625, -37.16031654673676], [62.57812500000001, 22.917922936146045], [76.640625, 20.632784250388028], [73.125, 30.14512718337613], [76.640625, 38.8225909761771], [62.57812500000001, 31.952162238024975], [56.33789062499999, 52.74959372674114], [59.765625, -37.16031654673676] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [99.84374999999999, 31.353636941500987] } } ] } ================================================ FILE: packages/turf-polygon-tangents/test/out/issue#1032.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [73.22885162189, 0.6690290941501615] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [73.226105900095, 0.6662014314291156] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [73.222696781158, 0.672929312864639], [73.223141775131, 0.6728221177272928], [73.223743934789, 0.6726381749213459], [73.224029146338, 0.6725036554756088], [73.224338813812, 0.6724074327878782], [73.224860170232, 0.6721935244108295], [73.225509744573, 0.6720420390183648], [73.226084583476, 0.6717472629325556], [73.226458847279, 0.6715981449324744], [73.226650858421, 0.6715436544821927], [73.227258045226, 0.6714184949730679], [73.227445127964, 0.6713529476262039], [73.227678178196, 0.6712050062728139], [73.228031831012, 0.6708426157704537], [73.228146526963, 0.6706682403694231], [73.228457655945, 0.6700969051734518], [73.228657754266, 0.6698443347108025], [73.22884159707, 0.6696673096285082], [73.228996763994, 0.6695767853640717], [73.229106436541, 0.6695525110064722], [73.229149940014, 0.6695025217523778], [73.229169917106, 0.6693944039229791], [73.229167029882, 0.6693046080477387], [73.229084080861, 0.6691702157268935], [73.229041067618, 0.6691383134431845], [73.228922636334, 0.6690945712344814], [73.22885162189, 0.6690290941501615], [73.228795706928, 0.6690004793602498], [73.228683117007, 0.6689698982356589], [73.228615358483, 0.6689786536104236], [73.228546747123, 0.6690229904581599], [73.228490368271, 0.669096495729903], [73.228443036787, 0.6694061168332297], [73.228223152757, 0.6698214354820493], [73.228165577041, 0.6698999456480976], [73.228024344452, 0.670025254964898], [73.227903388313, 0.6702371606698421], [73.227836480364, 0.6703046163993349], [73.227119555512, 0.6707099538733416], [73.22668329446, 0.6710793258441896], [73.226559966198, 0.6711543446100734], [73.226424521696, 0.6712119748989664], [73.226177066949, 0.6712730394161497], [73.225950830598, 0.67127542067891], [73.225655714655, 0.6712369330303574], [73.22555065155, 0.6711909636509574], [73.225483278402, 0.6711332409315816], [73.225406283817, 0.6710095253332611], [73.225390645993, 0.6709432706487064], [73.225397197529, 0.6708261252031065], [73.225457941492, 0.6706975144888645], [73.225963781675, 0.6703145215167154], [73.226412547476, 0.669790217338786], [73.226639346285, 0.6696012463551142], [73.226701757055, 0.6695209006273473], [73.226727089028, 0.6694367056162207], [73.226723397567, 0.6693697679729524], [73.226656628151, 0.6691877016677381], [73.226566725674, 0.669003250939312], [73.226551314195, 0.6689166059413054], [73.226568804017, 0.668865677272052], [73.226787260285, 0.6685663053432478], [73.226824706351, 0.668476577946393], [73.226843488025, 0.6683734115614755], [73.226823012034, 0.668252158733111], [73.226760301619, 0.6681455247222345], [73.226612638682, 0.6680583776521587], [73.226456208552, 0.6680175865484159], [73.226209720597, 0.6680410701986119], [73.226154902776, 0.668062388064314], [73.226070207392, 0.6681289116730795], [73.225768983364, 0.6684395167627741], [73.225699240456, 0.6684703579247326], [73.22541866541, 0.6684446126130723], [73.225309299131, 0.6684913460441066], [73.225291081448, 0.6684570449487524], [73.225256291015, 0.668222172880931], [73.225226394924, 0.6681784489895506], [73.225180595009, 0.6681526846102344], [73.224978322105, 0.6681633512328347], [73.224772984242, 0.6682065624897859], [73.224741499018, 0.668201968184249], [73.22471701051, 0.668173830077734], [73.22470184438, 0.66807906378871], [73.224710363746, 0.6679383479043537], [73.224809658364, 0.6676155759821256], [73.224856696195, 0.6673534849849148], [73.224970303437, 0.6670680268227471], [73.22512649074, 0.6668365082036303], [73.225212097168, 0.6667288667304803], [73.225274791718, 0.6666840121064155], [73.225625809829, 0.6666438269910628], [73.225738127231, 0.666611311729028], [73.226002620068, 0.6663804677868512], [73.226105900095, 0.6662014314291156], [73.226124983675, 0.6660370141104295], [73.226040943446, 0.6658116107705752], [73.225815226237, 0.6655119071691757], [73.225710327836, 0.6654167649301144], [73.225627314532, 0.6653661538076818], [73.225537743419, 0.6653534272697499], [73.225433878899, 0.6653717924575773], [73.225318119124, 0.665562515457168], [73.225255542633, 0.6657391979264418], [73.224956187609, 0.6660264320867242], [73.224782510517, 0.6663571798607677], [73.224617868401, 0.6665229776088211], [73.224439704818, 0.6668353595225085], [73.224300938349, 0.6672443056588548], [73.22419991164, 0.6676913082846596], [73.22406436316, 0.6681564543334417], [73.223883887404, 0.6690056083385798], [73.22377935234, 0.6692590564152425], [73.223676624298, 0.6694553729287946], [73.223596730253, 0.6695715464665994], [73.223541862338, 0.6696966344853763], [73.223345681691, 0.6704022315888665], [73.223258191582, 0.670645296332097], [73.222985252214, 0.6715456004246505], [73.22285381536, 0.6718248328859886], [73.222686846515, 0.6721174107883314], [73.222454455099, 0.6724137943929662], [73.222098727673, 0.6728239052963403], [73.222041913757, 0.6729435103004278], [73.222061824868, 0.6729818899183755], [73.222099328875, 0.6729992722487737], [73.222397657256, 0.6729767617070905], [73.222696781158, 0.672929312864639] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [73.2258944382542, 0.6673910301706059] } } ] } ================================================ FILE: packages/turf-polygon-tangents/test/out/issue#1050.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.788482103824089, 51.56063487730164] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.789951649580397, 51.56585502173034] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.788482103824089, 51.56063487730164], [8.788583, 51.561554], [8.78839, 51.562241], [8.78705, 51.563616], [8.785483, 51.564445], [8.785481, 51.564446], [8.785479, 51.564447], [8.785479, 51.564449], [8.785478, 51.56445], [8.785478, 51.564452], [8.785479, 51.564454], [8.78548, 51.564455], [8.785482, 51.564457], [8.786358, 51.565053], [8.787022, 51.565767], [8.787024, 51.565768], [8.787026, 51.565769], [8.787028, 51.56577], [8.787031, 51.565771], [8.787033, 51.565771], [8.789951649580397, 51.56585502173034], [8.789734, 51.563604], [8.788482103824089, 51.56063487730164] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [8.725, 51.57] } } ] } ================================================ FILE: packages/turf-polygon-tangents/test/out/issue#785.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [73.57560129551099, 0.4325384015479159] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [73.57579441456006, 0.43239893065221224] } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [73.57502193836378, 0.43239356638694915], [73.57526333717512, 0.43281197906664204], [73.57561738876508, 0.43281197906664204], [73.57560129551099, 0.4325384015479159], [73.57543499855207, 0.4324686661003909], [73.57551010040449, 0.43223263842709514], [73.57579441456006, 0.43239893065221224], [73.57609482196972, 0.4324364805090113], [73.57643278030561, 0.4323184666727826], [73.57594998268293, 0.4322380026924719], [73.5754779138963, 0.4318464113095217], [73.5751184978883, 0.4320448891362787], [73.57516141323254, 0.4322862810807635], [73.57500048069166, 0.43227018828469], [73.57502193836378, 0.43239356638694915] ] ] }, "properties": {} }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [73.5755476513307, 0.4323399237340624] }, "properties": {} } ] } ================================================ FILE: packages/turf-polygon-tangents/test/out/multipolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [70.751953125, 50.84757295365389] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [76.640625, 20.632784250388028] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [48.1640625, 20.632784250388028], [62.57812500000001, 22.917922936146045], [76.640625, 20.632784250388028], [73.125, 30.14512718337613], [76.640625, 38.8225909761771], [62.57812500000001, 31.952162238024975], [48.1640625, 38.8225909761771], [48.1640625, 20.632784250388028] ] ], [ [ [56.42578125, 41.64007838467894], [70.751953125, 41.64007838467894], [70.751953125, 50.84757295365389], [56.42578125, 50.84757295365389], [56.42578125, 41.64007838467894] ] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [99.84374999999999, 31.353636941500987] } } ] } ================================================ FILE: packages/turf-polygon-tangents/test/out/polygonWithHole.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [76.640625, 38.8225909761771] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [76.640625, 20.632784250388028] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [48.1640625, 20.632784250388028], [76.640625, 20.632784250388028], [76.640625, 38.8225909761771], [48.1640625, 38.8225909761771], [48.1640625, 20.632784250388028] ], [ [56.51367187499999, 26.82407078047018], [69.08203125, 26.82407078047018], [69.08203125, 34.45221847282654], [56.51367187499999, 34.45221847282654], [56.51367187499999, 26.82407078047018] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [99.84374999999999, 31.353636941500987] } } ] } ================================================ FILE: packages/turf-polygon-tangents/test/out/square.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [48.1640625, 38.8225909761771] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [76.640625, 20.632784250388028] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [48.1640625, 20.632784250388028], [76.640625, 20.632784250388028], [76.640625, 38.8225909761771], [48.1640625, 38.8225909761771], [48.1640625, 20.632784250388028] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [92.46093749999999, 54.67383096593114] } } ] } ================================================ FILE: packages/turf-polygon-tangents/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { polygon, point } from "@turf/helpers"; import { polygonTangents } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("turf-polygon-tangents", (t) => { for (const { name, filename, geojson } of fixtures) { const [poly, pt] = geojson.features; const results = polygonTangents(pt, poly); results.features = results.features.concat(geojson.features); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEqual(loadJsonFileSync(directories.out + filename), results, name); } t.end(); }); test("turf-polygon-tangents - Geometry Objects", (t) => { const pt = point([61, 5]); const poly = polygon([ [ [11, 0], [22, 4], [31, 0], [31, 11], [21, 15], [11, 11], [11, 0], ], ]); t.assert(polygonTangents(pt.geometry, poly.geometry)); t.end(); }); test("turf-polygon-tangents - Prevent Input Mutation", (t) => { const pt = point([61, 5]); const poly = polygon([ [ [11, 0], [22, 4], [31, 0], [31, 11], [21, 15], [11, 11], [11, 0], ], ]); const beforePoly = JSON.parse(JSON.stringify(poly)); const beforePt = JSON.parse(JSON.stringify(pt)); polygonTangents(pt.geometry, poly.geometry); t.deepEqual(poly, beforePoly, "pt should not mutate"); t.deepEqual(pt, beforePt, "poly should not mutate"); t.end(); }); test("turf-polygon-tangents - Issue #1050", (t) => { const pt = [8.725, 51.57]; const poly = polygon([ [ [8.788482103824089, 51.56063487730164], [8.788583, 51.561554], [8.78839, 51.562241], [8.78705, 51.563616], [8.785483, 51.564445], [8.785481, 51.564446], [8.785479, 51.564447], [8.785479, 51.564449], [8.785478, 51.56445], [8.785478, 51.564452], [8.785479, 51.564454], [8.78548, 51.564455], [8.785482, 51.564457], [8.786358, 51.565053], [8.787022, 51.565767], [8.787024, 51.565768], [8.787026, 51.565769], [8.787028, 51.56577], [8.787031, 51.565771], [8.787033, 51.565771], [8.789951649580397, 51.56585502173034], [8.789734, 51.563604], [8.788482103824089, 51.56063487730164], ], ]); try { t.assert(polygonTangents(pt, poly)); } catch (e) { t.skip("issue #1050 failed"); } t.end(); }); ================================================ FILE: packages/turf-polygon-tangents/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-polygon-tangents/types.ts ================================================ import { polygon, point } from "@turf/helpers"; import { polygonTangents as tangents } from "./index.js"; const poly = polygon([ [ [11, 0], [22, 4], [31, 0], [31, 11], [21, 15], [11, 11], [11, 0], ], ]); const pt = point([61, 5]); tangents(pt, poly); ================================================ FILE: packages/turf-polygon-to-line/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-polygon-to-line/README.md ================================================ # @turf/polygon-to-line ## polygonToLine Converts a [Polygon][1] to [(Multi)LineString][2] or [MultiPolygon][3] to a [FeatureCollection][4] of [(Multi)LineString][2]. ### Parameters * `poly` **[Feature][5]<([Polygon][1] | [MultiPolygon][3])>** Feature to convert * `options` **[Object][6]** Optional parameters (optional, default `{}`) * `options.properties` **[Object][6]** translates GeoJSON properties to Feature (optional, default `{}`) ### Examples ```javascript var poly = turf.polygon([[[125, -30], [145, -30], [145, -20], [125, -20], [125, -30]]]); var line = turf.polygonToLine(poly); //addToMap var addToMap = [line]; ``` Returns **([FeatureCollection][4] | [Feature][5]<([LineString][2] | MultiLinestring)>)** converted (Multi)Polygon to (Multi)LineString [1]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.7 [4]: https://tools.ietf.org/html/rfc7946#section-3.3 [5]: https://tools.ietf.org/html/rfc7946#section-3.2 [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/polygon-to-line ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-polygon-to-line/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { polygonToLine } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); /** * Benchmark Results * * geometry-polygon x 10,766,300 ops/sec ±1.20% (88 runs sampled) * multi-polygon-with-holes x 2,597,052 ops/sec ±3.29% (81 runs sampled) * multi-polygon x 3,103,830 ops/sec ±2.59% (81 runs sampled) * polygon-with-hole x 10,533,741 ops/sec ±1.15% (88 runs sampled) * polygon x 10,651,632 ops/sec ±0.77% (89 runs sampled) */ const suite = new Benchmark.Suite("turf-polygon-to-linestring"); for (const { name, geojson } of fixtures) { suite.add(name, () => polygonToLine(geojson)); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-polygon-to-line/index.ts ================================================ import { featureCollection, lineString, multiLineString } from "@turf/helpers"; import { Feature, FeatureCollection, LineString, MultiLineString, MultiPolygon, Polygon, GeoJsonProperties, } from "geojson"; import { getGeom } from "@turf/invariant"; /** * Converts a {@link Polygon} to {@link LineString|(Multi)LineString} or {@link MultiPolygon} to a * {@link FeatureCollection} of {@link LineString|(Multi)LineString}. * * @function * @param {Feature} poly Feature to convert * @param {Object} [options={}] Optional parameters * @param {Object} [options.properties={}] translates GeoJSON properties to Feature * @returns {FeatureCollection|Feature} converted (Multi)Polygon to (Multi)LineString * @example * var poly = turf.polygon([[[125, -30], [145, -30], [145, -20], [125, -20], [125, -30]]]); * * var line = turf.polygonToLine(poly); * * //addToMap * var addToMap = [line]; */ function polygonToLine< G extends Polygon | MultiPolygon, P extends GeoJsonProperties = GeoJsonProperties, >( poly: Feature | G, options: { properties?: any } = {} ): | Feature | FeatureCollection { const geom: any = getGeom(poly); if (!options.properties && poly.type === "Feature") { options.properties = poly.properties; } switch (geom.type) { case "Polygon": return singlePolygonToLine(geom, options); case "MultiPolygon": return multiPolygonToLine(geom, options); default: throw new Error("invalid poly"); } } /** * @private */ function singlePolygonToLine< G extends Polygon, P extends GeoJsonProperties = GeoJsonProperties, >( poly: Feature | G, options: { properties?: any } = {} ): Feature { const geom = getGeom(poly); const coords: any[] = geom.coordinates; const properties: any = options.properties ? options.properties : poly.type === "Feature" ? poly.properties : {}; return coordsToLine(coords, properties); } /** * @private */ function multiPolygonToLine< G extends MultiPolygon, P extends GeoJsonProperties = GeoJsonProperties, >( multiPoly: Feature | G, options: { properties?: P } = {} ): FeatureCollection { const geom = getGeom(multiPoly); const coords: any[] = geom.coordinates; const properties: any = options.properties ? options.properties : multiPoly.type === "Feature" ? multiPoly.properties : {}; const lines: Array> = []; coords.forEach((coord) => { lines.push(coordsToLine(coord, properties)); }); return featureCollection(lines); } /** * @private */ function coordsToLine

( coords: number[][][], properties: P ): Feature { if (coords.length > 1) { return multiLineString(coords, properties); } return lineString(coords[0], properties); } export { polygonToLine, coordsToLine, multiPolygonToLine, singlePolygonToLine }; export default polygonToLine; ================================================ FILE: packages/turf-polygon-to-line/package.json ================================================ { "name": "@turf/polygon-to-line", "version": "7.3.4", "description": "Converts a polygon to a line string.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "gis", "line", "linestring", "polygon" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-polygon-to-line/test/in/geometry-polygon.geojson ================================================ { "type": "Polygon", "coordinates": [ [ [-2.275543, 53.464547], [-2.275543, 53.489271], [-2.215118, 53.489271], [-2.215118, 53.464547], [-2.275543, 53.464547] ] ] } ================================================ FILE: packages/turf-polygon-to-line/test/in/multi-polygon-outer-doughnut.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F0F", "stroke-width": 6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [115.927734375, -34.016241889667015], [134.560546875, -34.016241889667015], [134.560546875, -16.8886597873816], [115.927734375, -16.8886597873816], [115.927734375, -34.016241889667015] ], [ [118.65234374999999, -30.90222470517144], [131.484375, -30.90222470517144], [131.484375, -19.808054128088575], [118.65234374999999, -19.808054128088575], [118.65234374999999, -30.90222470517144] ] ], [ [ [120.9375, -28.998531814051795], [129.7265625, -28.998531814051795], [129.7265625, -22.105998799750566], [120.9375, -22.105998799750566], [120.9375, -28.998531814051795] ], [ [123.48632812499999, -27.137368359795584], [127.44140625, -27.137368359795584], [127.44140625, -24.126701958681668], [123.48632812499999, -24.126701958681668], [123.48632812499999, -27.137368359795584] ] ] ] } } ================================================ FILE: packages/turf-polygon-to-line/test/in/multi-polygon-with-holes.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [102, 2], [103, 2], [103, 3], [102, 3], [102, 2] ], [ [102.227783203125, 2.191238104506552], [102.227783203125, 2.8223442468940902], [102.843017578125, 2.8223442468940902], [102.843017578125, 2.191238104506552], [102.227783203125, 2.191238104506552] ] ], [ [ [100, 0], [101, 0], [101, 1], [100, 1], [100, 0] ], [ [100.206298828125, 0.2526847277643438], [100.206298828125, 0.7909904981540058], [100.8050537109375, 0.7909904981540058], [100.8050537109375, 0.2526847277643438], [100.206298828125, 0.2526847277643438] ] ], [ [ [101.700439453125, 0.5273363048115169], [102.645263671875, 0.5273363048115169], [102.645263671875, 1.3511930983018892], [101.700439453125, 1.3511930983018892], [101.700439453125, 0.5273363048115169] ] ] ] } } ================================================ FILE: packages/turf-polygon-to-line/test/in/multi-polygon.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [102, 2], [103, 2], [103, 3], [102, 3], [102, 2] ] ], [ [ [100, 0], [101, 0], [101, 1], [100, 1], [100, 0] ] ] ] } } ================================================ FILE: packages/turf-polygon-to-line/test/in/polygon-with-hole.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-2.275543, 53.464547], [-2.215118, 53.464547], [-2.215118, 53.489271], [-2.275543, 53.489271], [-2.275543, 53.464547] ], [ [-2.261037826538086, 53.47062762161877], [-2.2293663024902344, 53.47062762161877], [-2.2293663024902344, 53.48196795587917], [-2.261037826538086, 53.48196795587917], [-2.261037826538086, 53.47062762161877] ] ] } } ================================================ FILE: packages/turf-polygon-to-line/test/in/polygon.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-2.275543, 53.464547], [-2.275543, 53.489271], [-2.215118, 53.489271], [-2.215118, 53.464547], [-2.275543, 53.464547] ] ] } } ================================================ FILE: packages/turf-polygon-to-line/test/out/geometry-polygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-2.275543, 53.464547], [-2.275543, 53.489271], [-2.215118, 53.489271], [-2.215118, 53.464547], [-2.275543, 53.464547] ] } } ================================================ FILE: packages/turf-polygon-to-line/test/out/multi-polygon-outer-doughnut.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F0F", "stroke-width": 6 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [115.927734375, -34.016241889667015], [134.560546875, -34.016241889667015], [134.560546875, -16.8886597873816], [115.927734375, -16.8886597873816], [115.927734375, -34.016241889667015] ], [ [118.65234374999999, -30.90222470517144], [131.484375, -30.90222470517144], [131.484375, -19.808054128088575], [118.65234374999999, -19.808054128088575], [118.65234374999999, -30.90222470517144] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F0F", "stroke-width": 6 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [120.9375, -28.998531814051795], [129.7265625, -28.998531814051795], [129.7265625, -22.105998799750566], [120.9375, -22.105998799750566], [120.9375, -28.998531814051795] ], [ [123.48632812499999, -27.137368359795584], [127.44140625, -27.137368359795584], [127.44140625, -24.126701958681668], [123.48632812499999, -24.126701958681668], [123.48632812499999, -27.137368359795584] ] ] } } ] } ================================================ FILE: packages/turf-polygon-to-line/test/out/multi-polygon-with-holes.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [102, 2], [103, 2], [103, 3], [102, 3], [102, 2] ], [ [102.227783203125, 2.191238104506552], [102.227783203125, 2.8223442468940902], [102.843017578125, 2.8223442468940902], [102.843017578125, 2.191238104506552], [102.227783203125, 2.191238104506552] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [100, 0], [101, 0], [101, 1], [100, 1], [100, 0] ], [ [100.206298828125, 0.2526847277643438], [100.206298828125, 0.7909904981540058], [100.8050537109375, 0.7909904981540058], [100.8050537109375, 0.2526847277643438], [100.206298828125, 0.2526847277643438] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [101.700439453125, 0.5273363048115169], [102.645263671875, 0.5273363048115169], [102.645263671875, 1.3511930983018892], [101.700439453125, 1.3511930983018892], [101.700439453125, 0.5273363048115169] ] } } ] } ================================================ FILE: packages/turf-polygon-to-line/test/out/multi-polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [102, 2], [103, 2], [103, 3], [102, 3], [102, 2] ] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [100, 0], [101, 0], [101, 1], [100, 1], [100, 0] ] } } ] } ================================================ FILE: packages/turf-polygon-to-line/test/out/polygon-with-hole.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-2.275543, 53.464547], [-2.215118, 53.464547], [-2.215118, 53.489271], [-2.275543, 53.489271], [-2.275543, 53.464547] ], [ [-2.261037826538086, 53.47062762161877], [-2.2293663024902344, 53.47062762161877], [-2.2293663024902344, 53.48196795587917], [-2.261037826538086, 53.48196795587917], [-2.261037826538086, 53.47062762161877] ] ] } } ================================================ FILE: packages/turf-polygon-to-line/test/out/polygon.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-2.275543, 53.464547], [-2.275543, 53.489271], [-2.215118, 53.489271], [-2.215118, 53.464547], [-2.275543, 53.464547] ] } } ================================================ FILE: packages/turf-polygon-to-line/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { point } from "@turf/helpers"; import { polygon } from "@turf/helpers"; import { polygonToLine } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("turf-polygon-to-linestring", (t) => { for (const { name, filename, geojson } of fixtures) { const results = polygonToLine(geojson); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEqual(loadJsonFileSync(directories.out + filename), results, name); } // Handle Errors t.throws(() => polygonToLine(point([10, 5])), "throws - invalid geometry"); t.throws(() => polygonToLine(polygon([])), "throws - empty coordinates"); t.end(); }); ================================================ FILE: packages/turf-polygon-to-line/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-polygonize/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-polygonize/README.md ================================================ # @turf/polygonize ## polygonize Polygonizes [(Multi)LineString(s)][1] into [Polygons][2]. Implementation of GEOSPolygonize function (`geos::operation::polygonize::Polygonizer`). Polygonizes a set of lines that represents edges in a planar graph. Edges must be correctly noded, i.e., they must only meet at their endpoints. The implementation correctly handles: * Dangles: edges which have one or both ends which are not incident on another edge endpoint. * Cut Edges (bridges): edges that are connected at both ends but which do not form part of a polygon. ### Parameters * `geoJson` **([FeatureCollection][3] | [Geometry][4] | [Feature][5]<([LineString][1] | [MultiLineString][6])>)** Lines in order to polygonize * Throws **[Error][7]** if geoJson is invalid. Returns **[FeatureCollection][3]<[Polygon][2]>** Polygons created [1]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [3]: https://tools.ietf.org/html/rfc7946#section-3.3 [4]: https://tools.ietf.org/html/rfc7946#section-3.1 [5]: https://tools.ietf.org/html/rfc7946#section-3.2 [6]: https://tools.ietf.org/html/rfc7946#section-3.1.5 [7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/polygonize ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-polygonize/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { polygonize } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); /** * Single Process Benchmark * * complex: 37.120ms * cutedge: 0.858ms * dangle: 0.289ms * two-polygons: 0.784ms */ for (const { name, geojson } of fixtures) { console.time(name); polygonize(geojson); console.timeEnd(name); } /** * Benchmark Results * * complex x 54.67 ops/sec ±9.63% (47 runs sampled) * cutedge x 5,413 ops/sec ±2.20% (84 runs sampled) * dangle x 9,175 ops/sec ±4.44% (83 runs sampled) * two-polygons x 16,323 ops/sec ±1.39% (91 runs sampled) */ const suite = new Benchmark.Suite("turf-transform-polygonize"); for (const { name, geojson } of fixtures) { suite.add(name, () => polygonize(geojson)); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-polygonize/index.ts ================================================ import { Feature, FeatureCollection, LineString, MultiLineString, Polygon, } from "geojson"; import { featureCollection } from "@turf/helpers"; import { Graph } from "./lib/Graph.js"; import { EdgeRing } from "./lib/EdgeRing.js"; /** * Polygonizes {@link LineString|(Multi)LineString(s)} into {@link Polygons}. * * Implementation of GEOSPolygonize function (`geos::operation::polygonize::Polygonizer`). * * Polygonizes a set of lines that represents edges in a planar graph. Edges must be correctly * noded, i.e., they must only meet at their endpoints. * * The implementation correctly handles: * * - Dangles: edges which have one or both ends which are not incident on another edge endpoint. * - Cut Edges (bridges): edges that are connected at both ends but which do not form part of a polygon. * * @function * @param {FeatureCollection|Geometry|Feature} geoJson Lines in order to polygonize * @returns {FeatureCollection} Polygons created * @throws {Error} if geoJson is invalid. */ function polygonize( geoJson: Feature | FeatureCollection | T ): FeatureCollection { const graph = Graph.fromGeoJson(geoJson); // 1. Remove dangle node graph.deleteDangles(); // 2. Remove cut-edges (bridge edges) graph.deleteCutEdges(); // 3. Get all holes and shells const holes: EdgeRing[] = [], shells: EdgeRing[] = []; graph .getEdgeRings() .filter((edgeRing) => edgeRing.isValid()) .forEach((edgeRing) => { if (edgeRing.isHole()) holes.push(edgeRing); else shells.push(edgeRing); }); // 4. Assign Holes to Shells holes.forEach((hole) => { if (EdgeRing.findEdgeRingContaining(hole, shells)) shells.push(hole); }); // 5. EdgeRings to Polygons return featureCollection(shells.map((shell) => shell.toPolygon())); } export { polygonize }; export default polygonize; ================================================ FILE: packages/turf-polygonize/lib/Edge.ts ================================================ import { lineString } from "@turf/helpers"; import { orientationIndex } from "./util.js"; import { Node } from "./Node.js"; import { EdgeRing } from "./EdgeRing.js"; /** * This class is inspired by GEOS's geos::operation::polygonize::PolygonizeDirectedEdge */ class Edge { public label?: number; public symetric?: Edge; public from: Node; public to: Node; public next?: Edge; public ring?: EdgeRing; /** * Creates or get the symetric Edge. * * @returns {Edge} - Symetric Edge. */ getSymetric() { if (!this.symetric) { this.symetric = new Edge(this.to, this.from); this.symetric.symetric = this; } return this.symetric; } /** * @param {Node} from - start node of the Edge * @param {Node} to - end node of the edge */ constructor(from: Node, to: Node) { this.from = from; //< start this.to = to; //< End this.next = undefined; //< The edge to be computed after this.label = undefined; //< Used in order to detect Cut Edges (Bridges) this.symetric = undefined; //< The symetric edge of this this.ring = undefined; //< EdgeRing in which the Edge is this.from.addOuterEdge(this); this.to.addInnerEdge(this); } /** * Removes edge from from and to nodes. */ deleteEdge() { this.from.removeOuterEdge(this); this.to.removeInnerEdge(this); } /** * Compares Edge equallity. * * An edge is equal to another, if the from and to nodes are the same. * * @param {Edge} edge - Another Edge * @returns {boolean} - True if Edges are equal, False otherwise */ isEqual(edge: Edge) { return this.from.id === edge.from.id && this.to.id === edge.to.id; } toString() { return `Edge { ${this.from.id} -> ${this.to.id} }`; } /** * Returns a LineString representation of the Edge * * @returns {Feature} - LineString representation of the Edge */ toLineString() { return lineString([this.from.coordinates, this.to.coordinates]); } /** * Comparator of two edges. * * Implementation of geos::planargraph::DirectedEdge::compareTo. * * @param {Edge} edge - Another edge to compare with this one * @returns {number} -1 if this Edge has a greater angle with the positive x-axis than b, * 0 if the Edges are colinear, * 1 otherwise */ compareTo(edge: Edge) { return orientationIndex( edge.from.coordinates, edge.to.coordinates, this.to.coordinates ); } } export { Edge }; export default Edge; ================================================ FILE: packages/turf-polygonize/lib/EdgeRing.ts ================================================ import { Polygon, Feature, Point, Position } from "geojson"; import { orientationIndex, envelopeIsEqual, envelopeContains, coordinatesEqual, } from "./util.js"; import { multiPoint, polygon, point } from "@turf/helpers"; import { envelope } from "@turf/envelope"; import { booleanPointInPolygon } from "@turf/boolean-point-in-polygon"; import { Edge } from "./Edge.js"; /** * Ring of edges which form a polygon. * * The ring may be either an outer shell or a hole. * * This class is inspired in GEOS's geos::operation::polygonize::EdgeRing */ class EdgeRing { private edges: Edge[]; private polygon?: Feature< Polygon, { [name: string]: any; } >; private envelope?: Feature< Polygon, { [name: string]: any; } >; constructor() { this.edges = []; this.polygon = undefined; //< Caches Polygon representation this.envelope = undefined; //< Caches Envelope representation } /** * Add an edge to the ring, inserting it in the last position. * * @memberof EdgeRing * @param {Edge} edge - Edge to be inserted */ push(edge: Edge) { this.edges.push(edge); this.polygon = this.envelope = undefined; } /** * Get Edge. * * @memberof EdgeRing * @param {number} i - Index * @returns {Edge} - Edge in the i position */ get(i: number) { return this.edges[i]; } /** * Getter of length property. * * @memberof EdgeRing * @returns {number} - Length of the edge ring. */ get length() { return this.edges.length; } /** * Similar to Array.prototype.forEach for the list of Edges in the EdgeRing. * * @memberof EdgeRing * @param {Function} f - The same function to be passed to Array.prototype.forEach */ forEach(f: (edge: Edge, index: number, array: Edge[]) => void) { this.edges.forEach(f); } /** * Similar to Array.prototype.map for the list of Edges in the EdgeRing. * * @memberof EdgeRing * @param {Function} f - The same function to be passed to Array.prototype.map * @returns {Array} - The mapped values in the function */ map(f: (edge: Edge, index: number, array: Edge[]) => T): T[] { return this.edges.map(f); } /** * Similar to Array.prototype.some for the list of Edges in the EdgeRing. * * @memberof EdgeRing * @param {Function} f - The same function to be passed to Array.prototype.some * @returns {boolean} - True if an Edge check the condition */ some(f: (edge: Edge, index: number, array: Edge[]) => boolean) { return this.edges.some(f); } /** * Check if the ring is valid in geomtry terms. * * A ring must have either 0 or 4 or more points. The first and the last must be * equal (in 2D) * geos::geom::LinearRing::validateConstruction * * @memberof EdgeRing * @returns {boolean} - Validity of the EdgeRing */ isValid() { // TODO: stub return true; } /** * Tests whether this ring is a hole. * * A ring is a hole if it is oriented counter-clockwise. * Similar implementation of geos::algorithm::CGAlgorithms::isCCW * * @memberof EdgeRing * @returns {boolean} - true: if it is a hole */ isHole() { // XXX: Assuming Ring is valid // Find highest point const hiIndex = this.edges.reduce((high, edge, i) => { if (edge.from.coordinates[1] > this.edges[high].from.coordinates[1]) high = i; return high; }, 0), iPrev = (hiIndex === 0 ? this.length : hiIndex) - 1, iNext = (hiIndex + 1) % this.length, disc = orientationIndex( this.edges[iPrev].from.coordinates, this.edges[hiIndex].from.coordinates, this.edges[iNext].from.coordinates ); if (disc === 0) return ( this.edges[iPrev].from.coordinates[0] > this.edges[iNext].from.coordinates[0] ); return disc > 0; } /** * Creates a MultiPoint representing the EdgeRing (discarts edges directions). * * @memberof EdgeRing * @returns {Feature} - Multipoint representation of the EdgeRing */ toMultiPoint() { return multiPoint(this.edges.map((edge) => edge.from.coordinates)); } /** * Creates a Polygon representing the EdgeRing. * * @memberof EdgeRing * @returns {Feature} - Polygon representation of the Edge Ring */ toPolygon() { if (this.polygon) return this.polygon; const coordinates = this.edges.map((edge) => edge.from.coordinates); coordinates.push(this.edges[0].from.coordinates); return (this.polygon = polygon([coordinates])); } /** * Calculates the envelope of the EdgeRing. * * @memberof EdgeRing * @returns {Feature} - envelope */ getEnvelope() { if (this.envelope) return this.envelope; return (this.envelope = envelope(this.toPolygon()) as Feature< Polygon, { [name: string]: any } >); } /** * `geos::operation::polygonize::EdgeRing::findEdgeRingContaining` * * @param {EdgeRing} testEdgeRing - EdgeRing to look in the list * @param {EdgeRing[]} shellList - List of EdgeRing in which to search * * @returns {EdgeRing} - EdgeRing which contains the testEdgeRing */ static findEdgeRingContaining( testEdgeRing: EdgeRing, shellList: EdgeRing[] ): EdgeRing | undefined { const testEnvelope = testEdgeRing.getEnvelope(); let minEnvelope: Feature, minShell: EdgeRing | undefined; shellList.forEach((shell) => { const tryEnvelope = shell.getEnvelope(); if (minShell) minEnvelope = minShell.getEnvelope(); // the hole envelope cannot equal the shell envelope if (envelopeIsEqual(tryEnvelope, testEnvelope)) return; if (envelopeContains(tryEnvelope, testEnvelope)) { const testEdgeRingCoordinates = testEdgeRing.map( (edge) => edge.from.coordinates ); let testPoint: Position | undefined; for (const pt of testEdgeRingCoordinates) { if ( !shell.some((edge) => coordinatesEqual(pt, edge.from.coordinates)) ) { testPoint = pt; } } if (testPoint && shell.inside(point(testPoint))) { if (!minShell || envelopeContains(minEnvelope, tryEnvelope)) minShell = shell; } } }); return minShell; } /** * Checks if the point is inside the edgeRing * * @param {Feature} pt - Point to check if it is inside the edgeRing * @returns {boolean} - True if it is inside, False otherwise */ inside(pt: Feature) { return booleanPointInPolygon(pt, this.toPolygon()); } } export { EdgeRing }; export default EdgeRing; ================================================ FILE: packages/turf-polygonize/lib/Graph.ts ================================================ import { Node } from "./Node.js"; import { Edge } from "./Edge.js"; import { EdgeRing } from "./EdgeRing.js"; import { flattenEach, coordReduce } from "@turf/meta"; import { featureOf } from "@turf/invariant"; import { FeatureCollection, LineString, MultiLineString, Feature, } from "geojson"; import { AllGeoJSON } from "@turf/helpers"; /** * Validates the geoJson. * * @param {GeoJSON} geoJson - input geoJson. * @throws {Error} if geoJson is invalid. */ function validateGeoJson(geoJson: AllGeoJSON) { if (!geoJson) throw new Error("No geojson passed"); if ( geoJson.type !== "FeatureCollection" && geoJson.type !== "GeometryCollection" && geoJson.type !== "MultiLineString" && geoJson.type !== "LineString" && geoJson.type !== "Feature" ) throw new Error( `Invalid input type '${geoJson.type}'. Geojson must be FeatureCollection, GeometryCollection, LineString, MultiLineString or Feature` ); } /** * Represents a planar graph of edges and nodes that can be used to compute a polygonization. * * Although, this class is inspired by GEOS's `geos::operation::polygonize::PolygonizeGraph`, * it isn't a rewrite. As regards algorithm, this class implements the same logic, but it * isn't a javascript transcription of the C++ source. * * This graph is directed (both directions are created) */ class Graph { private nodes: { [id: string]: Node }; private edges: Edge[]; /** * Creates a graph from a GeoJSON. * * @param {FeatureCollection} geoJson - it must comply with the restrictions detailed in the index * @returns {Graph} - The newly created graph * @throws {Error} if geoJson is invalid. */ static fromGeoJson( geoJson: | FeatureCollection | LineString | MultiLineString | Feature ) { validateGeoJson(geoJson); const graph = new Graph(); flattenEach(geoJson, (feature) => { featureOf(feature, "LineString", "Graph::fromGeoJson"); // When a LineString if formed by many segments, split them coordReduce(feature, (prev, cur) => { if (prev) { const start = graph.getNode(prev), end = graph.getNode(cur); graph.addEdge(start, end); } return cur; }); }); return graph; } /** * Creates or get a Node. * * @param {number[]} coordinates - Coordinates of the node * @returns {Node} - The created or stored node */ getNode(coordinates: number[]) { const id = Node.buildId(coordinates); let node = this.nodes[id]; if (!node) node = this.nodes[id] = new Node(coordinates); return node; } /** * Adds an Edge and its symetricall. * * Edges are added symetrically, i.e.: we also add its symetric * * @param {Node} from - Node which starts the Edge * @param {Node} to - Node which ends the Edge */ addEdge(from: Node, to: Node) { const edge = new Edge(from, to), symetricEdge = edge.getSymetric(); this.edges.push(edge); this.edges.push(symetricEdge); } constructor() { this.edges = []; //< {Edge[]} dirEdges // The key is the `id` of the Node (ie: coordinates.join(',')) this.nodes = {}; } /** * Removes Dangle Nodes (nodes with grade 1). */ deleteDangles() { Object.keys(this.nodes) .map((id) => this.nodes[id]) .forEach((node) => this._removeIfDangle(node)); } /** * Check if node is dangle, if so, remove it. * * It calls itself recursively, removing a dangling node might cause another dangling node * * @param {Node} node - Node to check if it's a dangle */ _removeIfDangle(node: Node) { // As edges are directed and symetrical, we count only innerEdges if (node.innerEdges.length <= 1) { const outerNodes = node.getOuterEdges().map((e) => e.to); this.removeNode(node); outerNodes.forEach((n) => this._removeIfDangle(n)); } } /** * Delete cut-edges (bridge edges). * * The graph will be traversed, all the edges will be labeled according the ring * in which they are. (The label is a number incremented by 1). Edges with the same * label are cut-edges. */ deleteCutEdges() { this._computeNextCWEdges(); this._findLabeledEdgeRings(); // Cut-edges (bridges) are edges where both edges have the same label this.edges.forEach((edge) => { if (edge.label === edge.symetric!.label) { this.removeEdge(edge.symetric!); this.removeEdge(edge); } }); } /** * Set the `next` property of each Edge. * * The graph will be transversed in a CW form, so, we set the next of the symetrical edge as the previous one. * OuterEdges are sorted CCW. * * @param {Node} [node] - If no node is passed, the function calls itself for every node in the Graph */ _computeNextCWEdges(node?: Node) { if (typeof node === "undefined") { Object.keys(this.nodes).forEach((id) => this._computeNextCWEdges(this.nodes[id]) ); } else { node.getOuterEdges().forEach((edge, i) => { node.getOuterEdge( (i === 0 ? node.getOuterEdges().length : i) - 1 ).symetric!.next = edge; }); } } /** * Computes the next edge pointers going CCW around the given node, for the given edgering label. * * This algorithm has the effect of converting maximal edgerings into minimal edgerings * * XXX: method literally transcribed from `geos::operation::polygonize::PolygonizeGraph::computeNextCCWEdges`, * could be written in a more javascript way. * * @param {Node} node - Node * @param {number} label - Ring's label */ _computeNextCCWEdges(node: Node, label: number) { const edges = node.getOuterEdges(); let firstOutDE, prevInDE; for (let i = edges.length - 1; i >= 0; --i) { let de = edges[i], sym = de.symetric, outDE, inDE; if (de.label === label) outDE = de; if (sym!.label === label) inDE = sym; if (!outDE || !inDE) // This edge is not in edgering continue; if (inDE) prevInDE = inDE; if (outDE) { if (prevInDE) { prevInDE.next = outDE; prevInDE = undefined; } if (!firstOutDE) firstOutDE = outDE; } } if (prevInDE) prevInDE.next = firstOutDE; } /** * Finds rings and labels edges according to which rings are. * * The label is a number which is increased for each ring. * * @returns {Edge[]} edges that start rings */ _findLabeledEdgeRings() { const edgeRingStarts: Edge[] = []; let label = 0; this.edges.forEach((edge) => { if (edge.label! >= 0) return; edgeRingStarts.push(edge); let e = edge; do { e.label = label; e = e.next!; } while (!edge.isEqual(e)); label++; }); return edgeRingStarts; } /** * Computes the EdgeRings formed by the edges in this graph. * * @returns {EdgeRing[]} - A list of all the EdgeRings in the graph. */ getEdgeRings() { this._computeNextCWEdges(); // Clear labels this.edges.forEach((edge) => { edge.label = undefined; }); this._findLabeledEdgeRings().forEach((edge) => { // convertMaximalToMinimalEdgeRings this._findIntersectionNodes(edge).forEach((node) => { this._computeNextCCWEdges(node, edge.label!); }); }); const edgeRingList: EdgeRing[] = []; // find all edgerings this.edges.forEach((edge) => { if (edge.ring) return; edgeRingList.push(this._findEdgeRing(edge)); }); return edgeRingList; } /** * Find all nodes in a Maxima EdgeRing which are self-intersection nodes. * * @param {Node} startEdge - Start Edge of the Ring * @returns {Node[]} - intersection nodes */ _findIntersectionNodes(startEdge: Edge) { const intersectionNodes = []; let edge = startEdge; do { // getDegree let degree = 0; edge.from.getOuterEdges().forEach((e) => { if (e.label === startEdge.label) ++degree; }); if (degree > 1) intersectionNodes.push(edge.from); edge = edge.next!; } while (!startEdge.isEqual(edge)); return intersectionNodes; } /** * Get the edge-ring which starts from the provided Edge. * * @param {Edge} startEdge - starting edge of the edge ring * @returns {EdgeRing} - EdgeRing which start Edge is the provided one. */ _findEdgeRing(startEdge: Edge) { let edge = startEdge; const edgeRing = new EdgeRing(); do { edgeRing.push(edge); edge.ring = edgeRing; edge = edge.next!; } while (!startEdge.isEqual(edge)); return edgeRing; } /** * Removes a node from the Graph. * * It also removes edges asociated to that node * @param {Node} node - Node to be removed */ removeNode(node: Node) { node.getOuterEdges().forEach((edge) => this.removeEdge(edge)); node.innerEdges.forEach((edge) => this.removeEdge(edge)); delete this.nodes[node.id]; } /** * Remove edge from the graph and deletes the edge. * * @param {Edge} edge - Edge to be removed */ removeEdge(edge: Edge) { this.edges = this.edges.filter((e) => !e.isEqual(edge)); edge.deleteEdge(); } } export { Graph }; export default Graph; ================================================ FILE: packages/turf-polygonize/lib/Node.ts ================================================ import { orientationIndex } from "./util.js"; import { Edge } from "./Edge.js"; /** * Node */ class Node { static buildId(coordinates: number[]) { return coordinates.join(","); } public id: string; public coordinates: number[]; public innerEdges: Edge[]; private outerEdges: Edge[]; private outerEdgesSorted: boolean; constructor(coordinates: number[]) { this.id = Node.buildId(coordinates); this.coordinates = coordinates; //< {Number[]} this.innerEdges = []; //< {Edge[]} // We wil store to (out) edges in an CCW order as geos::planargraph::DirectedEdgeStar does this.outerEdges = []; //< {Edge[]} this.outerEdgesSorted = false; //< {Boolean} flag that stores if the outer Edges had been sorted } removeInnerEdge(edge: Edge) { this.innerEdges = this.innerEdges.filter((e) => e.from.id !== edge.from.id); } removeOuterEdge(edge: Edge) { this.outerEdges = this.outerEdges.filter((e) => e.to.id !== edge.to.id); } /** * Outer edges are stored CCW order. * * @memberof Node * @param {Edge} edge - Edge to add as an outerEdge. */ addOuterEdge(edge: Edge) { this.outerEdges.push(edge); this.outerEdgesSorted = false; } /** * Sorts outer edges in CCW way. * * @memberof Node * @private */ sortOuterEdges() { if (!this.outerEdgesSorted) { //this.outerEdges.sort((a, b) => a.compareTo(b)); // Using this comparator in order to be deterministic this.outerEdges.sort((a, b) => { const aNode = a.to, bNode = b.to; if ( aNode.coordinates[0] - this.coordinates[0] >= 0 && bNode.coordinates[0] - this.coordinates[0] < 0 ) return 1; if ( aNode.coordinates[0] - this.coordinates[0] < 0 && bNode.coordinates[0] - this.coordinates[0] >= 0 ) return -1; if ( aNode.coordinates[0] - this.coordinates[0] === 0 && bNode.coordinates[0] - this.coordinates[0] === 0 ) { if ( aNode.coordinates[1] - this.coordinates[1] >= 0 || bNode.coordinates[1] - this.coordinates[1] >= 0 ) return aNode.coordinates[1] - bNode.coordinates[1]; return bNode.coordinates[1] - aNode.coordinates[1]; } const det = orientationIndex( this.coordinates, aNode.coordinates, bNode.coordinates ); if (det < 0) return 1; if (det > 0) return -1; const d1 = Math.pow(aNode.coordinates[0] - this.coordinates[0], 2) + Math.pow(aNode.coordinates[1] - this.coordinates[1], 2), d2 = Math.pow(bNode.coordinates[0] - this.coordinates[0], 2) + Math.pow(bNode.coordinates[1] - this.coordinates[1], 2); return d1 - d2; }); this.outerEdgesSorted = true; } } /** * Retrieves outer edges. * * They are sorted if they aren't in the CCW order. * * @memberof Node * @returns {Edge[]} - List of outer edges sorted in a CCW order. */ getOuterEdges() { this.sortOuterEdges(); return this.outerEdges; } getOuterEdge(i: number) { this.sortOuterEdges(); return this.outerEdges[i]; } addInnerEdge(edge: Edge) { this.innerEdges.push(edge); } } export { Node }; export default Node; ================================================ FILE: packages/turf-polygonize/lib/util.ts ================================================ import { Feature, Polygon } from "geojson"; import { booleanPointInPolygon } from "@turf/boolean-point-in-polygon"; import { point } from "@turf/helpers"; // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/sign#Polyfill function mathSign(x: number) { return ((x > 0) as unknown as number) - ((x < 0) as unknown as number) || +x; } /** * Returns the direction of the point q relative to the vector p1 -> p2. * * Implementation of geos::algorithm::CGAlgorithm::orientationIndex() * (same as geos::algorithm::CGAlgorithm::computeOrientation()) * * @param {number[]} p1 - the origin point of the vector * @param {number[]} p2 - the final point of the vector * @param {number[]} q - the point to compute the direction to * * @returns {number} - 1 if q is ccw (left) from p1->p2, * -1 if q is cw (right) from p1->p2, * 0 if q is colinear with p1->p2 */ export function orientationIndex(p1: number[], p2: number[], q: number[]) { const dx1 = p2[0] - p1[0], dy1 = p2[1] - p1[1], dx2 = q[0] - p2[0], dy2 = q[1] - p2[1]; return mathSign(dx1 * dy2 - dx2 * dy1); } /** * Checks if two envelopes are equal. * * The function assumes that the arguments are envelopes, i.e.: Rectangular polygon * * @param {Feature} env1 - Envelope * @param {Feature} env2 - Envelope * @returns {boolean} - True if the envelopes are equal */ export function envelopeIsEqual( env1: Feature, env2: Feature ) { const envX1 = env1.geometry.coordinates[0].map((c) => c[0]), envY1 = env1.geometry.coordinates[0].map((c) => c[1]), envX2 = env2.geometry.coordinates[0].map((c) => c[0]), envY2 = env2.geometry.coordinates[0].map((c) => c[1]); return ( Math.max.apply(null, envX1) === Math.max.apply(null, envX2) && Math.max.apply(null, envY1) === Math.max.apply(null, envY2) && Math.min.apply(null, envX1) === Math.min.apply(null, envX2) && Math.min.apply(null, envY1) === Math.min.apply(null, envY2) ); } /** * Check if a envelope is contained in other one. * * The function assumes that the arguments are envelopes, i.e.: Convex polygon * XXX: Envelopes are rectangular, checking if a point is inside a rectangule is something easy, * this could be further improved. * * @param {Feature} self - Envelope * @param {Feature} env - Envelope * @returns {boolean} - True if env is contained in self */ export function envelopeContains( self: Feature, env: Feature ) { return env.geometry.coordinates[0].every((c) => booleanPointInPolygon(point(c), self) ); } /** * Checks if two coordinates are equal. * * @param {number[]} coord1 - First coordinate * @param {number[]} coord2 - Second coordinate * @returns {boolean} - True if coordinates are equal */ export function coordinatesEqual(coord1: number[], coord2: number[]) { return coord1[0] === coord2[0] && coord1[1] === coord2[1]; } ================================================ FILE: packages/turf-polygonize/package.json ================================================ { "name": "@turf/polygonize", "version": "7.3.4", "description": "Polygonizes a set of lines that represents edges in a planar graph.", "author": "Turf Authors", "contributors": [ "Nicolas Cisco <@nickcis>", "Denis Carriere <@DenisCarriere>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "geojson", "gis", "polygonize" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/boolean-point-in-polygon": "workspace:*", "@turf/envelope": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-polygonize/test/in/complex.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4003789, -34.8024187], [-58.4012571, -34.8013012] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4012571, -34.8013012], [-58.4020709, -34.8002564] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4020709, -34.8002564], [-58.4026441, -34.7995347] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4026441, -34.7995347], [-58.4032748, -34.7987421] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4032748, -34.7987421], [-58.40353, -34.7986715] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.40353, -34.7986715], [-58.4045643, -34.7970077] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4045643, -34.7970077], [-58.4051217, -34.7960535] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4069531, -34.7970396], [-58.4061007, -34.797642] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4061007, -34.797642], [-58.4054827, -34.7986499] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4054827, -34.7986499], [-58.4043951, -34.7993638] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4043951, -34.7993638], [-58.4037967, -34.8001502] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4037967, -34.8001502], [-58.4032304, -34.80088] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4032304, -34.80088], [-58.4024017, -34.8019585] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4024017, -34.8019585], [-58.4015377, -34.8030708] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3959417, -34.8036499], [-58.395087, -34.8031464] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.395087, -34.8031464], [-58.3942128, -34.8026319] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3942128, -34.8026319], [-58.3937803, -34.8023836] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3937803, -34.8023836], [-58.3937374, -34.8023571] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3937374, -34.8023571], [-58.3935525, -34.8022475] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3935525, -34.8022475], [-58.3924396, -34.8015867] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3924396, -34.8015867], [-58.3913232, -34.8009287] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3913232, -34.8009287], [-58.390647, -34.8005306] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3929547, -34.8030144], [-58.3918268, -34.8023406] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3918268, -34.8023406], [-58.39097, -34.8018398] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.39097, -34.8018398], [-58.3908824, -34.80173] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3908824, -34.80173], [-58.3907391, -34.8016607] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3935525, -34.8022475], [-58.3929547, -34.8030144] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3929547, -34.8030144], [-58.3919262, -34.8043515] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3919262, -34.8043515], [-58.3912106, -34.805308] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3912106, -34.805308], [-58.3903757, -34.8063186] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3907792, -34.8036757], [-58.3919262, -34.8043515] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3919262, -34.8043515], [-58.3929448, -34.8049413] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3929448, -34.8049413], [-58.3932414, -34.8051253] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3929547, -34.8030144], [-58.3930577, -34.8030849] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3930577, -34.8030849], [-58.3929448, -34.8049413] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3929448, -34.8049413], [-58.3929333, -34.8056958] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3929333, -34.8056958], [-58.3925604, -34.8061236] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3925604, -34.8061236], [-58.3917149, -34.8070982] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3917149, -34.8070982], [-58.3906765, -34.8083226] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3906765, -34.8083226], [-58.3906293, -34.8083765] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3906293, -34.8083765], [-58.3905693, -34.8089708] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3931006, -34.8064748], [-58.3925604, -34.8061236] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3925604, -34.8061236], [-58.3912106, -34.805308] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3912106, -34.805308], [-58.3900486, -34.8046158] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3900486, -34.8046158], [-58.3887181, -34.8038776] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3954262, -34.7994934], [-58.3962631, -34.7999826] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3962631, -34.7999826], [-58.3963617, -34.8000402] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3963617, -34.8000402], [-58.3977629, -34.8008817] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3977629, -34.8008817], [-58.3980104, -34.8010326] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4056871, -34.803814], [-58.40459, -34.8031917] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.40459, -34.8031917], [-58.4035424, -34.8026119] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4035424, -34.8026119], [-58.4024017, -34.8019585] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4024017, -34.8019585], [-58.4012571, -34.8013012] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4012571, -34.8013012], [-58.4003196, -34.8007694] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4003196, -34.8007694], [-58.4000651, -34.800625] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4000651, -34.800625], [-58.3994936, -34.8003009] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4005863, -34.7973807], [-58.3999811, -34.7981126] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3999811, -34.7981126], [-58.3994224, -34.7987983] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3994224, -34.7987983], [-58.3991078, -34.7991665] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3991078, -34.7991665], [-58.3986112, -34.7998147] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3986112, -34.7998147], [-58.3980853, -34.8004779] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3980853, -34.8004779], [-58.3977629, -34.8008817] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4000651, -34.800625], [-58.4008757, -34.7995904] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4008757, -34.7995904], [-58.4014189, -34.7988802] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4014189, -34.7988802], [-58.4020013, -34.7981301] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4003196, -34.8007694], [-58.399452, -34.8018971] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3940899, -34.8003361], [-58.3945242, -34.8006035] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4001253, -34.8060931], [-58.400154, -34.8060524] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.400154, -34.8060524], [-58.400195, -34.8060195] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.400195, -34.8060195], [-58.4002453, -34.805997] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4002453, -34.805997], [-58.4003011, -34.8059864] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4003011, -34.8059864], [-58.4003583, -34.8059886] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4003583, -34.8059886], [-58.4004127, -34.8060034] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4004127, -34.8060034], [-58.4004602, -34.8060297] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4004602, -34.8060297], [-58.4005021, -34.8060719] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4005021, -34.8060719], [-58.4005258, -34.8061227] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4005258, -34.8061227], [-58.4005291, -34.806177] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4005291, -34.806177], [-58.4005117, -34.8062295] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4005117, -34.8062295], [-58.4004752, -34.806275] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4004602, -34.8060297], [-58.4013091, -34.8049401] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4013091, -34.8049401], [-58.4015784, -34.8046036] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4015784, -34.8046036], [-58.4024151, -34.8035586] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3941494, -34.8144285], [-58.3947151, -34.8135927] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3947151, -34.8135927], [-58.39521, -34.8128913] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.39521, -34.8128913], [-58.3961515, -34.8116469] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3961515, -34.8116469], [-58.3966281, -34.8110239] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3966281, -34.8110239], [-58.3970574, -34.8104706] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3970574, -34.8104706], [-58.3970575, -34.8103726] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3970575, -34.8103726], [-58.3978259, -34.8093579] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3978259, -34.8093579], [-58.3985907, -34.8083664] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3985907, -34.8083664], [-58.3993749, -34.8073699] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3993749, -34.8073699], [-58.400226, -34.8063129] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4028696, -34.8075087], [-58.4015378, -34.8068225] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4015378, -34.8068225], [-58.4004752, -34.806275] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4013631, -34.8029699], [-58.4005424, -34.8040087] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4005424, -34.8040087], [-58.399244, -34.8055954] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.399244, -34.8055954], [-58.3983081, -34.806706] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3983081, -34.806706], [-58.3974713, -34.8077069] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3974713, -34.8077069], [-58.3966454, -34.8086947] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4011968, -34.8097556], [-58.4000438, -34.809165] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4000438, -34.809165], [-58.3999022, -34.8090924] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3999022, -34.8090924], [-58.3998633, -34.8090725] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3998633, -34.8090725], [-58.3985907, -34.8083664] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3985907, -34.8083664], [-58.3974713, -34.8077069] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3974713, -34.8077069], [-58.3964129, -34.8070746] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3964129, -34.8070746], [-58.3949373, -34.8061929] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3949373, -34.8061929], [-58.3941477, -34.8057278] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4015784, -34.8046036], [-58.4005424, -34.8040087] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4005424, -34.8040087], [-58.3994805, -34.8033989] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3994805, -34.8033989], [-58.398366, -34.8027589] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.398366, -34.8027589], [-58.3971802, -34.8020789] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3980104, -34.8010326], [-58.3971802, -34.8020789] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3971802, -34.8020789], [-58.3969642, -34.8023356] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3969642, -34.8023356], [-58.3964727, -34.8029764] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3964727, -34.8029764], [-58.3959417, -34.8036499] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3952781, -34.8013356], [-58.3969642, -34.8023356] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.395087, -34.8031464], [-58.3942164, -34.8042266] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3942164, -34.8042266], [-58.3935984, -34.8050019] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3942164, -34.8042266], [-58.3949969, -34.8047067] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3949969, -34.8047067], [-58.3957427, -34.8051655] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3957427, -34.8051655], [-58.3972354, -34.8060837] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3972354, -34.8060837], [-58.3983081, -34.806706] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3983081, -34.806706], [-58.3993749, -34.8073699] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.396618, -34.8040484], [-58.3957427, -34.8051655] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3957427, -34.8051655], [-58.3949373, -34.8061929] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3949373, -34.8061929], [-58.3941987, -34.8071883] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3941987, -34.8071883], [-58.3934596, -34.8080828] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3934596, -34.8080828], [-58.393423, -34.8082664] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.398366, -34.8027589], [-58.3976747, -34.8036356] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3976747, -34.8036356], [-58.3971168, -34.8043422] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3987746, -34.8042389], [-58.3976747, -34.8036356] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3976747, -34.8036356], [-58.3964727, -34.8029764] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4013091, -34.8049401], [-58.4025396, -34.8055669] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4025396, -34.8055669], [-58.4038371, -34.8062277] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3891946, -34.8056311], [-58.3900486, -34.8046158] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3900486, -34.8046158], [-58.3904782, -34.804065] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3904782, -34.804065], [-58.3907792, -34.8036757] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3907792, -34.8036757], [-58.3918268, -34.8023406] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3918268, -34.8023406], [-58.3924396, -34.8015867] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3924396, -34.8015867], [-58.3931521, -34.8007371] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3931521, -34.8007371], [-58.3935142, -34.8002063] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3935142, -34.8002063], [-58.3935793, -34.800023] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3938917, -34.8002224], [-58.3935793, -34.800023] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3930397, -34.7987714], [-58.393525, -34.7990038] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.393525, -34.7990038], [-58.3935706, -34.7990412] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3935706, -34.7990412], [-58.3936001, -34.7990765] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3936001, -34.7990765], [-58.3936215, -34.7991227] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3936215, -34.7991227], [-58.3936376, -34.7991734] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3936376, -34.7991734], [-58.3936457, -34.7992395] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3936457, -34.7992395], [-58.393643, -34.7993122] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.393643, -34.7993122], [-58.3936376, -34.7994289] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3936376, -34.7994289], [-58.3935793, -34.800023] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3986617, -34.8014125], [-58.3990591, -34.8008188] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3990591, -34.8008188], [-58.3994936, -34.8003009] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3935636, -34.8067511], [-58.3935559, -34.8065149] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3935559, -34.8065149], [-58.3941477, -34.8057278] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3941477, -34.8057278], [-58.3949969, -34.8047067] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3949969, -34.8047067], [-58.3955515, -34.8040306] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3930098, -34.8116828], [-58.3930233, -34.8114078] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3930233, -34.8114078], [-58.3938559, -34.8103296] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3938559, -34.8103296], [-58.3948057, -34.8091206] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3948057, -34.8091206], [-58.3956137, -34.8080702] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3956137, -34.8080702], [-58.3964129, -34.8070746] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3964129, -34.8070746], [-58.3966681, -34.8067671] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3966681, -34.8067671], [-58.3972354, -34.8060837] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3972354, -34.8060837], [-58.3981728, -34.8049644] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3981728, -34.8049644], [-58.3987746, -34.8042389] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3987746, -34.8042389], [-58.3994805, -34.8033989] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3945242, -34.8006035], [-58.3939846, -34.8012736] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3966681, -34.8067671], [-58.3972482, -34.8070924] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3986617, -34.8014125], [-58.399452, -34.8018971] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.399452, -34.8018971], [-58.4003357, -34.8023944] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4003357, -34.8023944], [-58.4003789, -34.8024187] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4003789, -34.8024187], [-58.4013631, -34.8029699] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4013631, -34.8029699], [-58.4015377, -34.8030708] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4015377, -34.8030708], [-58.4024151, -34.8035586] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4024151, -34.8035586], [-58.4026791, -34.8037053] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4026791, -34.8037053], [-58.4036115, -34.8042237] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4036115, -34.8042237], [-58.4037436, -34.8042971] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4037436, -34.8042971], [-58.4048825, -34.804862] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3994936, -34.8003009], [-58.3986112, -34.7998147] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3986112, -34.7998147], [-58.3972001, -34.799019] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3972001, -34.799019], [-58.3962705, -34.798502] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3935793, -34.800023], [-58.392493, -34.7994585] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.392493, -34.7994585], [-58.3917332, -34.7990214] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3917332, -34.7990214], [-58.3913394, -34.7988011] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3913394, -34.7988011], [-58.3912913, -34.7986684] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3942128, -34.8026319], [-58.3952781, -34.8013356] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3952781, -34.8013356], [-58.3954312, -34.8011493] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3954312, -34.8011493], [-58.3963617, -34.8000402] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3963617, -34.8000402], [-58.3972001, -34.799019] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3966454, -34.8086947], [-58.3956137, -34.8080702] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3956137, -34.8080702], [-58.3941987, -34.8071883] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3941987, -34.8071883], [-58.3935636, -34.8067511] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3945242, -34.8006035], [-58.3954312, -34.8011493] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3980104, -34.8010326], [-58.3983132, -34.8012066] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3983132, -34.8012066], [-58.3986617, -34.8014125] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3941728, -34.7987608], [-58.3942795, -34.7988258] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3942795, -34.7988258], [-58.3945157, -34.7989646] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3945157, -34.7989646], [-58.3954262, -34.7994934] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4001253, -34.8060931], [-58.399244, -34.8055954] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.399244, -34.8055954], [-58.3981728, -34.8049644] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3981728, -34.8049644], [-58.3971168, -34.8043422] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3971168, -34.8043422], [-58.396618, -34.8040484] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.396618, -34.8040484], [-58.3959417, -34.8036499] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3962705, -34.798502], [-58.3954262, -34.7994934] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3954262, -34.7994934], [-58.3945242, -34.8006035] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4004752, -34.806275], [-58.4004221, -34.8063094] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4004221, -34.8063094], [-58.4003584, -34.8063282] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4003584, -34.8063282], [-58.4002907, -34.8063294] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4002907, -34.8063294], [-58.400226, -34.8063129] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.400226, -34.8063129], [-58.4001748, -34.8062833] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4001748, -34.8062833], [-58.4001364, -34.8062426] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4001364, -34.8062426], [-58.4001143, -34.8061945] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4001143, -34.8061945], [-58.4001105, -34.8061431] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.4001105, -34.8061431], [-58.4001253, -34.8060931] ] } } ] } ================================================ FILE: packages/turf-polygonize/test/in/cutedge.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-73.96706879138947, 40.798493169582244], [-73.96847426891327, 40.79908606273021], [-73.96896779537201, 40.798416011865356], [-73.96754086017609, 40.797851539524295], [-73.96706879138947, 40.798493169582244], [-73.96669328212738, 40.79913073254739], [-73.96619439125061, 40.79977641109269], [-73.96793782711028, 40.80045456984621], [-73.96809875965117, 40.79976016768429], [-73.96669328212738, 40.79913073254739] ] } } ================================================ FILE: packages/turf-polygonize/test/in/dangle.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-73.96755695343018, 40.797867783399724], [-73.96667718887329, 40.7991429152196], [-73.96620512008666, 40.799743924271894], [-73.96793246269226, 40.800482995510926], [-73.96811485290527, 40.79971143743523], [-73.96667718887329, 40.7991429152196] ] } } ================================================ FILE: packages/turf-polygonize/test/in/kinked-linestring.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [131.9677734375, -20.550508894195637], [134.2529296875, -16.59408141271846], [123.3984375, -30.48655084258847], [130.1220703125, -31.05293398570514], [121.9482421875, -22.471954507739213], [132.275390625, -25.324166525738384], [129.0673828125, -16.299051014581817], [133.9453125, -13.710035342476669], [131.9677734375, -20.550508894195637] ] } } ================================================ FILE: packages/turf-polygonize/test/in/linestrings.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [119.00390625, -22.024545601240337], [120.58593749999999, -28.613459424004414], [125.595703125, -32.99023555965107], [133.330078125, -32.99023555965107], [142.646484375, -30.977609093348676], [142.294921875, -24.126701958681668], [139.04296875, -16.299051014581817], [128.84765625, -15.199386048559994] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [142.646484375, -30.977609093348676], [132.451171875, -27.449790329784214], [128.671875, -23.1605633090483], [119.00390625, -22.024545601240337] ] } } ] } ================================================ FILE: packages/turf-polygonize/test/in/multi-linestring.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [126.3427734375, -17.392579271057766], [129.111328125, -29.19053283229457], [132.890625, -31.01527898171125], [136.7138671875, -29.11377539511439] ], [ [126.3427734375, -17.392579271057766], [132.978515625, -15.368949896534705], [135.966796875, -24.126701958681668], [136.7138671875, -29.11377539511439] ] ] } } ================================================ FILE: packages/turf-polygonize/test/in/two-polygons.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3959417, -34.8036499], [-58.395087, -34.8031464] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3964727, -34.8029764], [-58.3959417, -34.8036499] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.395087, -34.8031464], [-58.3942164, -34.8042266] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3942164, -34.8042266], [-58.3949969, -34.8047067] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3949969, -34.8047067], [-58.3957427, -34.8051655] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.396618, -34.8040484], [-58.3957427, -34.8051655] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3976747, -34.8036356], [-58.3971168, -34.8043422] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3976747, -34.8036356], [-58.3964727, -34.8029764] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.3971168, -34.8043422], [-58.396618, -34.8040484] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-58.396618, -34.8040484], [-58.3959417, -34.8036499] ] } } ] } ================================================ FILE: packages/turf-polygonize/test/out/complex.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4003789, -34.8024187], [-58.4012571, -34.8013012] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4012571, -34.8013012], [-58.4020709, -34.8002564] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4020709, -34.8002564], [-58.4026441, -34.7995347] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4026441, -34.7995347], [-58.4032748, -34.7987421] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4032748, -34.7987421], [-58.40353, -34.7986715] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.40353, -34.7986715], [-58.4045643, -34.7970077] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4045643, -34.7970077], [-58.4051217, -34.7960535] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4069531, -34.7970396], [-58.4061007, -34.797642] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4061007, -34.797642], [-58.4054827, -34.7986499] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4054827, -34.7986499], [-58.4043951, -34.7993638] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4043951, -34.7993638], [-58.4037967, -34.8001502] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4037967, -34.8001502], [-58.4032304, -34.80088] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4032304, -34.80088], [-58.4024017, -34.8019585] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4024017, -34.8019585], [-58.4015377, -34.8030708] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3959417, -34.8036499], [-58.395087, -34.8031464] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.395087, -34.8031464], [-58.3942128, -34.8026319] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3942128, -34.8026319], [-58.3937803, -34.8023836] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3937803, -34.8023836], [-58.3937374, -34.8023571] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3937374, -34.8023571], [-58.3935525, -34.8022475] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3935525, -34.8022475], [-58.3924396, -34.8015867] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3924396, -34.8015867], [-58.3913232, -34.8009287] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3913232, -34.8009287], [-58.390647, -34.8005306] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3929547, -34.8030144], [-58.3918268, -34.8023406] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3918268, -34.8023406], [-58.39097, -34.8018398] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.39097, -34.8018398], [-58.3908824, -34.80173] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3908824, -34.80173], [-58.3907391, -34.8016607] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3935525, -34.8022475], [-58.3929547, -34.8030144] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3929547, -34.8030144], [-58.3919262, -34.8043515] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3919262, -34.8043515], [-58.3912106, -34.805308] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3912106, -34.805308], [-58.3903757, -34.8063186] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3907792, -34.8036757], [-58.3919262, -34.8043515] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3919262, -34.8043515], [-58.3929448, -34.8049413] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3929448, -34.8049413], [-58.3932414, -34.8051253] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3929547, -34.8030144], [-58.3930577, -34.8030849] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3930577, -34.8030849], [-58.3929448, -34.8049413] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3929448, -34.8049413], [-58.3929333, -34.8056958] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3929333, -34.8056958], [-58.3925604, -34.8061236] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3925604, -34.8061236], [-58.3917149, -34.8070982] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3917149, -34.8070982], [-58.3906765, -34.8083226] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3906765, -34.8083226], [-58.3906293, -34.8083765] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3906293, -34.8083765], [-58.3905693, -34.8089708] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3931006, -34.8064748], [-58.3925604, -34.8061236] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3925604, -34.8061236], [-58.3912106, -34.805308] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3912106, -34.805308], [-58.3900486, -34.8046158] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3900486, -34.8046158], [-58.3887181, -34.8038776] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3954262, -34.7994934], [-58.3962631, -34.7999826] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3962631, -34.7999826], [-58.3963617, -34.8000402] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3963617, -34.8000402], [-58.3977629, -34.8008817] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3977629, -34.8008817], [-58.3980104, -34.8010326] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4056871, -34.803814], [-58.40459, -34.8031917] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.40459, -34.8031917], [-58.4035424, -34.8026119] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4035424, -34.8026119], [-58.4024017, -34.8019585] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4024017, -34.8019585], [-58.4012571, -34.8013012] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4012571, -34.8013012], [-58.4003196, -34.8007694] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4003196, -34.8007694], [-58.4000651, -34.800625] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4000651, -34.800625], [-58.3994936, -34.8003009] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4005863, -34.7973807], [-58.3999811, -34.7981126] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3999811, -34.7981126], [-58.3994224, -34.7987983] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3994224, -34.7987983], [-58.3991078, -34.7991665] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3991078, -34.7991665], [-58.3986112, -34.7998147] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3986112, -34.7998147], [-58.3980853, -34.8004779] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3980853, -34.8004779], [-58.3977629, -34.8008817] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4000651, -34.800625], [-58.4008757, -34.7995904] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4008757, -34.7995904], [-58.4014189, -34.7988802] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4014189, -34.7988802], [-58.4020013, -34.7981301] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4003196, -34.8007694], [-58.399452, -34.8018971] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3940899, -34.8003361], [-58.3945242, -34.8006035] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4001253, -34.8060931], [-58.400154, -34.8060524] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.400154, -34.8060524], [-58.400195, -34.8060195] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.400195, -34.8060195], [-58.4002453, -34.805997] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4002453, -34.805997], [-58.4003011, -34.8059864] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4003011, -34.8059864], [-58.4003583, -34.8059886] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4003583, -34.8059886], [-58.4004127, -34.8060034] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4004127, -34.8060034], [-58.4004602, -34.8060297] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4004602, -34.8060297], [-58.4005021, -34.8060719] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4005021, -34.8060719], [-58.4005258, -34.8061227] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4005258, -34.8061227], [-58.4005291, -34.806177] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4005291, -34.806177], [-58.4005117, -34.8062295] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4005117, -34.8062295], [-58.4004752, -34.806275] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4004602, -34.8060297], [-58.4013091, -34.8049401] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4013091, -34.8049401], [-58.4015784, -34.8046036] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4015784, -34.8046036], [-58.4024151, -34.8035586] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3941494, -34.8144285], [-58.3947151, -34.8135927] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3947151, -34.8135927], [-58.39521, -34.8128913] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.39521, -34.8128913], [-58.3961515, -34.8116469] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3961515, -34.8116469], [-58.3966281, -34.8110239] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3966281, -34.8110239], [-58.3970574, -34.8104706] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3970574, -34.8104706], [-58.3970575, -34.8103726] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3970575, -34.8103726], [-58.3978259, -34.8093579] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3978259, -34.8093579], [-58.3985907, -34.8083664] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3985907, -34.8083664], [-58.3993749, -34.8073699] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3993749, -34.8073699], [-58.400226, -34.8063129] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4028696, -34.8075087], [-58.4015378, -34.8068225] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4015378, -34.8068225], [-58.4004752, -34.806275] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4013631, -34.8029699], [-58.4005424, -34.8040087] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4005424, -34.8040087], [-58.399244, -34.8055954] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.399244, -34.8055954], [-58.3983081, -34.806706] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3983081, -34.806706], [-58.3974713, -34.8077069] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3974713, -34.8077069], [-58.3966454, -34.8086947] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4011968, -34.8097556], [-58.4000438, -34.809165] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4000438, -34.809165], [-58.3999022, -34.8090924] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3999022, -34.8090924], [-58.3998633, -34.8090725] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3998633, -34.8090725], [-58.3985907, -34.8083664] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3985907, -34.8083664], [-58.3974713, -34.8077069] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3974713, -34.8077069], [-58.3964129, -34.8070746] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3964129, -34.8070746], [-58.3949373, -34.8061929] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3949373, -34.8061929], [-58.3941477, -34.8057278] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4015784, -34.8046036], [-58.4005424, -34.8040087] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4005424, -34.8040087], [-58.3994805, -34.8033989] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3994805, -34.8033989], [-58.398366, -34.8027589] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.398366, -34.8027589], [-58.3971802, -34.8020789] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3980104, -34.8010326], [-58.3971802, -34.8020789] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3971802, -34.8020789], [-58.3969642, -34.8023356] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3969642, -34.8023356], [-58.3964727, -34.8029764] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3964727, -34.8029764], [-58.3959417, -34.8036499] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3952781, -34.8013356], [-58.3969642, -34.8023356] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.395087, -34.8031464], [-58.3942164, -34.8042266] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3942164, -34.8042266], [-58.3935984, -34.8050019] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3942164, -34.8042266], [-58.3949969, -34.8047067] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3949969, -34.8047067], [-58.3957427, -34.8051655] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3957427, -34.8051655], [-58.3972354, -34.8060837] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3972354, -34.8060837], [-58.3983081, -34.806706] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3983081, -34.806706], [-58.3993749, -34.8073699] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.396618, -34.8040484], [-58.3957427, -34.8051655] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3957427, -34.8051655], [-58.3949373, -34.8061929] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3949373, -34.8061929], [-58.3941987, -34.8071883] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3941987, -34.8071883], [-58.3934596, -34.8080828] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3934596, -34.8080828], [-58.393423, -34.8082664] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.398366, -34.8027589], [-58.3976747, -34.8036356] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3976747, -34.8036356], [-58.3971168, -34.8043422] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3987746, -34.8042389], [-58.3976747, -34.8036356] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3976747, -34.8036356], [-58.3964727, -34.8029764] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4013091, -34.8049401], [-58.4025396, -34.8055669] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4025396, -34.8055669], [-58.4038371, -34.8062277] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3891946, -34.8056311], [-58.3900486, -34.8046158] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3900486, -34.8046158], [-58.3904782, -34.804065] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3904782, -34.804065], [-58.3907792, -34.8036757] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3907792, -34.8036757], [-58.3918268, -34.8023406] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3918268, -34.8023406], [-58.3924396, -34.8015867] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3924396, -34.8015867], [-58.3931521, -34.8007371] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3931521, -34.8007371], [-58.3935142, -34.8002063] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3935142, -34.8002063], [-58.3935793, -34.800023] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3938917, -34.8002224], [-58.3935793, -34.800023] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3930397, -34.7987714], [-58.393525, -34.7990038] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.393525, -34.7990038], [-58.3935706, -34.7990412] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3935706, -34.7990412], [-58.3936001, -34.7990765] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3936001, -34.7990765], [-58.3936215, -34.7991227] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3936215, -34.7991227], [-58.3936376, -34.7991734] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3936376, -34.7991734], [-58.3936457, -34.7992395] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3936457, -34.7992395], [-58.393643, -34.7993122] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.393643, -34.7993122], [-58.3936376, -34.7994289] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3936376, -34.7994289], [-58.3935793, -34.800023] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3986617, -34.8014125], [-58.3990591, -34.8008188] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3990591, -34.8008188], [-58.3994936, -34.8003009] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3935636, -34.8067511], [-58.3935559, -34.8065149] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3935559, -34.8065149], [-58.3941477, -34.8057278] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3941477, -34.8057278], [-58.3949969, -34.8047067] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3949969, -34.8047067], [-58.3955515, -34.8040306] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3930098, -34.8116828], [-58.3930233, -34.8114078] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3930233, -34.8114078], [-58.3938559, -34.8103296] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3938559, -34.8103296], [-58.3948057, -34.8091206] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3948057, -34.8091206], [-58.3956137, -34.8080702] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3956137, -34.8080702], [-58.3964129, -34.8070746] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3964129, -34.8070746], [-58.3966681, -34.8067671] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3966681, -34.8067671], [-58.3972354, -34.8060837] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3972354, -34.8060837], [-58.3981728, -34.8049644] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3981728, -34.8049644], [-58.3987746, -34.8042389] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3987746, -34.8042389], [-58.3994805, -34.8033989] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3945242, -34.8006035], [-58.3939846, -34.8012736] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3966681, -34.8067671], [-58.3972482, -34.8070924] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3986617, -34.8014125], [-58.399452, -34.8018971] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.399452, -34.8018971], [-58.4003357, -34.8023944] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4003357, -34.8023944], [-58.4003789, -34.8024187] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4003789, -34.8024187], [-58.4013631, -34.8029699] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4013631, -34.8029699], [-58.4015377, -34.8030708] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4015377, -34.8030708], [-58.4024151, -34.8035586] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4024151, -34.8035586], [-58.4026791, -34.8037053] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4026791, -34.8037053], [-58.4036115, -34.8042237] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4036115, -34.8042237], [-58.4037436, -34.8042971] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4037436, -34.8042971], [-58.4048825, -34.804862] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3994936, -34.8003009], [-58.3986112, -34.7998147] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3986112, -34.7998147], [-58.3972001, -34.799019] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3972001, -34.799019], [-58.3962705, -34.798502] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3935793, -34.800023], [-58.392493, -34.7994585] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.392493, -34.7994585], [-58.3917332, -34.7990214] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3917332, -34.7990214], [-58.3913394, -34.7988011] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3913394, -34.7988011], [-58.3912913, -34.7986684] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3942128, -34.8026319], [-58.3952781, -34.8013356] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3952781, -34.8013356], [-58.3954312, -34.8011493] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3954312, -34.8011493], [-58.3963617, -34.8000402] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3963617, -34.8000402], [-58.3972001, -34.799019] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3966454, -34.8086947], [-58.3956137, -34.8080702] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3956137, -34.8080702], [-58.3941987, -34.8071883] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3941987, -34.8071883], [-58.3935636, -34.8067511] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3945242, -34.8006035], [-58.3954312, -34.8011493] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3980104, -34.8010326], [-58.3983132, -34.8012066] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3983132, -34.8012066], [-58.3986617, -34.8014125] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3941728, -34.7987608], [-58.3942795, -34.7988258] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3942795, -34.7988258], [-58.3945157, -34.7989646] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3945157, -34.7989646], [-58.3954262, -34.7994934] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4001253, -34.8060931], [-58.399244, -34.8055954] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.399244, -34.8055954], [-58.3981728, -34.8049644] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3981728, -34.8049644], [-58.3971168, -34.8043422] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3971168, -34.8043422], [-58.396618, -34.8040484] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.396618, -34.8040484], [-58.3959417, -34.8036499] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3962705, -34.798502], [-58.3954262, -34.7994934] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3954262, -34.7994934], [-58.3945242, -34.8006035] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4004752, -34.806275], [-58.4004221, -34.8063094] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4004221, -34.8063094], [-58.4003584, -34.8063282] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4003584, -34.8063282], [-58.4002907, -34.8063294] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4002907, -34.8063294], [-58.400226, -34.8063129] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.400226, -34.8063129], [-58.4001748, -34.8062833] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4001748, -34.8062833], [-58.4001364, -34.8062426] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4001364, -34.8062426], [-58.4001143, -34.8061945] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4001143, -34.8061945], [-58.4001105, -34.8061431] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.4001105, -34.8061431], [-58.4001253, -34.8060931] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.4003789, -34.8024187], [-58.4012571, -34.8013012], [-58.4003196, -34.8007694], [-58.399452, -34.8018971], [-58.4003357, -34.8023944], [-58.4003789, -34.8024187] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.4012571, -34.8013012], [-58.4003789, -34.8024187], [-58.4013631, -34.8029699], [-58.4015377, -34.8030708], [-58.4024017, -34.8019585], [-58.4012571, -34.8013012] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.3959417, -34.8036499], [-58.395087, -34.8031464], [-58.3942164, -34.8042266], [-58.3949969, -34.8047067], [-58.3957427, -34.8051655], [-58.396618, -34.8040484], [-58.3959417, -34.8036499] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.395087, -34.8031464], [-58.3959417, -34.8036499], [-58.3964727, -34.8029764], [-58.3969642, -34.8023356], [-58.3952781, -34.8013356], [-58.3942128, -34.8026319], [-58.395087, -34.8031464] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.3935525, -34.8022475], [-58.3924396, -34.8015867], [-58.3918268, -34.8023406], [-58.3929547, -34.8030144], [-58.3935525, -34.8022475] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.3929547, -34.8030144], [-58.3918268, -34.8023406], [-58.3907792, -34.8036757], [-58.3919262, -34.8043515], [-58.3929547, -34.8030144] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.3929547, -34.8030144], [-58.3919262, -34.8043515], [-58.3929448, -34.8049413], [-58.3930577, -34.8030849], [-58.3929547, -34.8030144] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.3919262, -34.8043515], [-58.3912106, -34.805308], [-58.3925604, -34.8061236], [-58.3929333, -34.8056958], [-58.3929448, -34.8049413], [-58.3919262, -34.8043515] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.3912106, -34.805308], [-58.3919262, -34.8043515], [-58.3907792, -34.8036757], [-58.3904782, -34.804065], [-58.3900486, -34.8046158], [-58.3912106, -34.805308] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.3954262, -34.7994934], [-58.3962631, -34.7999826], [-58.3963617, -34.8000402], [-58.3972001, -34.799019], [-58.3962705, -34.798502], [-58.3954262, -34.7994934] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.3962631, -34.7999826], [-58.3954262, -34.7994934], [-58.3945242, -34.8006035], [-58.3954312, -34.8011493], [-58.3963617, -34.8000402], [-58.3962631, -34.7999826] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.3963617, -34.8000402], [-58.3977629, -34.8008817], [-58.3980853, -34.8004779], [-58.3986112, -34.7998147], [-58.3972001, -34.799019], [-58.3963617, -34.8000402] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.3977629, -34.8008817], [-58.3963617, -34.8000402], [-58.3954312, -34.8011493], [-58.3952781, -34.8013356], [-58.3969642, -34.8023356], [-58.3971802, -34.8020789], [-58.3980104, -34.8010326], [-58.3977629, -34.8008817] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.3977629, -34.8008817], [-58.3980104, -34.8010326], [-58.3983132, -34.8012066], [-58.3986617, -34.8014125], [-58.3990591, -34.8008188], [-58.3994936, -34.8003009], [-58.3986112, -34.7998147], [-58.3980853, -34.8004779], [-58.3977629, -34.8008817] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.4003196, -34.8007694], [-58.4000651, -34.800625], [-58.3994936, -34.8003009], [-58.3990591, -34.8008188], [-58.3986617, -34.8014125], [-58.399452, -34.8018971], [-58.4003196, -34.8007694] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.4001253, -34.8060931], [-58.400154, -34.8060524], [-58.400195, -34.8060195], [-58.4002453, -34.805997], [-58.4003011, -34.8059864], [-58.4003583, -34.8059886], [-58.4004127, -34.8060034], [-58.4004602, -34.8060297], [-58.4013091, -34.8049401], [-58.4015784, -34.8046036], [-58.4005424, -34.8040087], [-58.399244, -34.8055954], [-58.4001253, -34.8060931] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.400154, -34.8060524], [-58.4001253, -34.8060931], [-58.4001105, -34.8061431], [-58.4001143, -34.8061945], [-58.4001364, -34.8062426], [-58.4001748, -34.8062833], [-58.400226, -34.8063129], [-58.4002907, -34.8063294], [-58.4003584, -34.8063282], [-58.4004221, -34.8063094], [-58.4004752, -34.806275], [-58.4005117, -34.8062295], [-58.4005291, -34.806177], [-58.4005258, -34.8061227], [-58.4005021, -34.8060719], [-58.4004602, -34.8060297], [-58.4004127, -34.8060034], [-58.4003583, -34.8059886], [-58.4003011, -34.8059864], [-58.4002453, -34.805997], [-58.400195, -34.8060195], [-58.400154, -34.8060524] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.4015784, -34.8046036], [-58.4024151, -34.8035586], [-58.4015377, -34.8030708], [-58.4013631, -34.8029699], [-58.4005424, -34.8040087], [-58.4015784, -34.8046036] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.3985907, -34.8083664], [-58.3993749, -34.8073699], [-58.3983081, -34.806706], [-58.3974713, -34.8077069], [-58.3985907, -34.8083664] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.3993749, -34.8073699], [-58.400226, -34.8063129], [-58.4001748, -34.8062833], [-58.4001364, -34.8062426], [-58.4001143, -34.8061945], [-58.4001105, -34.8061431], [-58.4001253, -34.8060931], [-58.399244, -34.8055954], [-58.3983081, -34.806706], [-58.3993749, -34.8073699] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.4005424, -34.8040087], [-58.4013631, -34.8029699], [-58.4003789, -34.8024187], [-58.4003357, -34.8023944], [-58.399452, -34.8018971], [-58.3986617, -34.8014125], [-58.3983132, -34.8012066], [-58.3980104, -34.8010326], [-58.3971802, -34.8020789], [-58.398366, -34.8027589], [-58.3994805, -34.8033989], [-58.4005424, -34.8040087] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.399244, -34.8055954], [-58.4005424, -34.8040087], [-58.3994805, -34.8033989], [-58.3987746, -34.8042389], [-58.3981728, -34.8049644], [-58.399244, -34.8055954] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.3983081, -34.806706], [-58.399244, -34.8055954], [-58.3981728, -34.8049644], [-58.3972354, -34.8060837], [-58.3983081, -34.806706] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.3974713, -34.8077069], [-58.3983081, -34.806706], [-58.3972354, -34.8060837], [-58.3966681, -34.8067671], [-58.3964129, -34.8070746], [-58.3974713, -34.8077069] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.3966454, -34.8086947], [-58.3974713, -34.8077069], [-58.3964129, -34.8070746], [-58.3956137, -34.8080702], [-58.3966454, -34.8086947] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.3964129, -34.8070746], [-58.3949373, -34.8061929], [-58.3941987, -34.8071883], [-58.3956137, -34.8080702], [-58.3964129, -34.8070746] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.3949373, -34.8061929], [-58.3964129, -34.8070746], [-58.3966681, -34.8067671], [-58.3972354, -34.8060837], [-58.3957427, -34.8051655], [-58.3949373, -34.8061929] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.3949373, -34.8061929], [-58.3941477, -34.8057278], [-58.3935559, -34.8065149], [-58.3935636, -34.8067511], [-58.3941987, -34.8071883], [-58.3949373, -34.8061929] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.3941477, -34.8057278], [-58.3949373, -34.8061929], [-58.3957427, -34.8051655], [-58.3949969, -34.8047067], [-58.3941477, -34.8057278] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.3994805, -34.8033989], [-58.398366, -34.8027589], [-58.3976747, -34.8036356], [-58.3987746, -34.8042389], [-58.3994805, -34.8033989] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.398366, -34.8027589], [-58.3971802, -34.8020789], [-58.3969642, -34.8023356], [-58.3964727, -34.8029764], [-58.3976747, -34.8036356], [-58.398366, -34.8027589] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.3964727, -34.8029764], [-58.3959417, -34.8036499], [-58.396618, -34.8040484], [-58.3971168, -34.8043422], [-58.3976747, -34.8036356], [-58.3964727, -34.8029764] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.3957427, -34.8051655], [-58.3972354, -34.8060837], [-58.3981728, -34.8049644], [-58.3971168, -34.8043422], [-58.396618, -34.8040484], [-58.3957427, -34.8051655] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.3976747, -34.8036356], [-58.3971168, -34.8043422], [-58.3981728, -34.8049644], [-58.3987746, -34.8042389], [-58.3976747, -34.8036356] ] ] } } ] } ================================================ FILE: packages/turf-polygonize/test/out/cutedge.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-73.96706879138947, 40.798493169582244], [-73.96847426891327, 40.79908606273021], [-73.96896779537201, 40.798416011865356], [-73.96754086017609, 40.797851539524295], [-73.96706879138947, 40.798493169582244], [-73.96669328212738, 40.79913073254739], [-73.96619439125061, 40.79977641109269], [-73.96793782711028, 40.80045456984621], [-73.96809875965117, 40.79976016768429], [-73.96669328212738, 40.79913073254739] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.96847426891327, 40.79908606273021], [-73.96706879138947, 40.798493169582244], [-73.96754086017609, 40.797851539524295], [-73.96896779537201, 40.798416011865356], [-73.96847426891327, 40.79908606273021] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.96619439125061, 40.79977641109269], [-73.96669328212738, 40.79913073254739], [-73.96809875965117, 40.79976016768429], [-73.96793782711028, 40.80045456984621], [-73.96619439125061, 40.79977641109269] ] ] } } ] } ================================================ FILE: packages/turf-polygonize/test/out/dangle.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-73.96755695343018, 40.797867783399724], [-73.96667718887329, 40.7991429152196], [-73.96620512008666, 40.799743924271894], [-73.96793246269226, 40.800482995510926], [-73.96811485290527, 40.79971143743523], [-73.96667718887329, 40.7991429152196] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.96620512008666, 40.799743924271894], [-73.96667718887329, 40.7991429152196], [-73.96811485290527, 40.79971143743523], [-73.96793246269226, 40.800482995510926], [-73.96620512008666, 40.799743924271894] ] ] } } ] } ================================================ FILE: packages/turf-polygonize/test/out/kinked-linestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [131.9677734375, -20.550508894195637], [134.2529296875, -16.59408141271846], [123.3984375, -30.48655084258847], [130.1220703125, -31.05293398570514], [121.9482421875, -22.471954507739213], [132.275390625, -25.324166525738384], [129.0673828125, -16.299051014581817], [133.9453125, -13.710035342476669], [131.9677734375, -20.550508894195637] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [131.9677734375, -20.550508894195637], [134.2529296875, -16.59408141271846], [123.3984375, -30.48655084258847], [130.1220703125, -31.05293398570514], [121.9482421875, -22.471954507739213], [132.275390625, -25.324166525738384], [129.0673828125, -16.299051014581817], [133.9453125, -13.710035342476669], [131.9677734375, -20.550508894195637] ] ] } } ] } ================================================ FILE: packages/turf-polygonize/test/out/linestrings.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [119.00390625, -22.024545601240337], [120.58593749999999, -28.613459424004414], [125.595703125, -32.99023555965107], [133.330078125, -32.99023555965107], [142.646484375, -30.977609093348676], [142.294921875, -24.126701958681668], [139.04296875, -16.299051014581817], [128.84765625, -15.199386048559994] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [142.646484375, -30.977609093348676], [132.451171875, -27.449790329784214], [128.671875, -23.1605633090483], [119.00390625, -22.024545601240337] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [120.58593749999999, -28.613459424004414], [119.00390625, -22.024545601240337], [128.671875, -23.1605633090483], [132.451171875, -27.449790329784214], [142.646484375, -30.977609093348676], [133.330078125, -32.99023555965107], [125.595703125, -32.99023555965107], [120.58593749999999, -28.613459424004414] ] ] } } ] } ================================================ FILE: packages/turf-polygonize/test/out/multi-linestring.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [126.3427734375, -17.392579271057766], [129.111328125, -29.19053283229457], [132.890625, -31.01527898171125], [136.7138671875, -29.11377539511439] ], [ [126.3427734375, -17.392579271057766], [132.978515625, -15.368949896534705], [135.966796875, -24.126701958681668], [136.7138671875, -29.11377539511439] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [129.111328125, -29.19053283229457], [126.3427734375, -17.392579271057766], [132.978515625, -15.368949896534705], [135.966796875, -24.126701958681668], [136.7138671875, -29.11377539511439], [132.890625, -31.01527898171125], [129.111328125, -29.19053283229457] ] ] } } ] } ================================================ FILE: packages/turf-polygonize/test/out/two-polygons.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3959417, -34.8036499], [-58.395087, -34.8031464] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3964727, -34.8029764], [-58.3959417, -34.8036499] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.395087, -34.8031464], [-58.3942164, -34.8042266] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3942164, -34.8042266], [-58.3949969, -34.8047067] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3949969, -34.8047067], [-58.3957427, -34.8051655] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.396618, -34.8040484], [-58.3957427, -34.8051655] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3976747, -34.8036356], [-58.3971168, -34.8043422] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3976747, -34.8036356], [-58.3964727, -34.8029764] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.3971168, -34.8043422], [-58.396618, -34.8040484] ] } }, { "type": "Feature", "properties": { "fill": "#F00", "fill-opacity": 0.3, "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-58.396618, -34.8040484], [-58.3959417, -34.8036499] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.3959417, -34.8036499], [-58.395087, -34.8031464], [-58.3942164, -34.8042266], [-58.3949969, -34.8047067], [-58.3957427, -34.8051655], [-58.396618, -34.8040484], [-58.3959417, -34.8036499] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "fill-opacity": 0.3, "stroke": "#00F", "stroke-width": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-58.3964727, -34.8029764], [-58.3959417, -34.8036499], [-58.396618, -34.8040484], [-58.3971168, -34.8043422], [-58.3976747, -34.8036356], [-58.3964727, -34.8029764] ] ] } } ] } ================================================ FILE: packages/turf-polygonize/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { featureEach } from "@turf/meta"; import { featureCollection, lineString } from "@turf/helpers"; import { polygonize } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("turf-polygonize", (t) => { for (const { filename, name, geojson } of fixtures) { const polygonized = polygonize(geojson); const results = featureCollection([]); featureEach(geojson, (feature) => results.features.push(colorize(feature))); featureEach(polygonized, (feature) => results.features.push(colorize(feature, "#00F", 3)) ); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEquals(results, loadJsonFileSync(directories.out + filename), name); } t.end(); }); test("turf-polygonize -- Geometry Support", (t) => { const line = lineString([ [0, 0], [1, 1], [5, 2], [0, 0], ]); t.assert(polygonize(line.geometry), "line geometry"); t.end(); }); test("turf-polygonize -- throws", (t) => { // const line = lineString([[0, 0], [1, 1]]); // t.throws(() => polygonize(line)); t.end(); }); test("turf-polygonize -- input mutation", (t) => { const lines = featureCollection([ lineString([ [0, 0], [1, 1], ]), lineString([ [1, 1], [-1, -1], ]), lineString([ [-1, -1], [0, 0], ]), ]); const linesBefore = JSON.parse(JSON.stringify(lines)); polygonize(lines); t.deepEquals(lines, linesBefore, "input does not mutate"); t.end(); }); function colorize(feature, color = "#F00", width = 6) { feature.properties["fill"] = color; feature.properties["fill-opacity"] = 0.3; feature.properties["stroke"] = color; feature.properties["stroke-width"] = width; return feature; } ================================================ FILE: packages/turf-polygonize/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-polygonize/types.ts ================================================ import { lineString } from "@turf/helpers"; import { polygonize } from "./index.js"; const line = lineString([ [10, 10], [0, 0], [3, -5], [10, 10], ]); polygonize(line); ================================================ FILE: packages/turf-projection/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-projection/README.md ================================================ # @turf/projection ## toMercator Converts a WGS84 GeoJSON object into Mercator (EPSG:900913) projection ### Parameters * `geojson` **([GeoJSON][1] | [Position][2])** WGS84 GeoJSON object * `options` **[Object][3]?** Optional parameters (optional, default `{}`) * `options.mutate` **[boolean][4]** allows GeoJSON input to be mutated (significant performance increase if true) (optional, default `false`) ### Examples ```javascript var pt = turf.point([-71,41]); var converted = turf.toMercator(pt); //addToMap var addToMap = [pt, converted]; ``` Returns **[GeoJSON][1]** Projected GeoJSON ## toWgs84 Converts a Mercator (EPSG:900913) GeoJSON object into WGS84 projection ### Parameters * `geojson` **([GeoJSON][1] | [Position][2])** Mercator GeoJSON object * `options` **[Object][3]?** Optional parameters (optional, default `{}`) * `options.mutate` **[boolean][4]** allows GeoJSON input to be mutated (significant performance increase if true) (optional, default `false`) ### Examples ```javascript var pt = turf.point([-7903683.846322424, 5012341.663847514]); var converted = turf.toWgs84(pt); //addToMap var addToMap = [pt, converted]; ``` Returns **[GeoJSON][1]** Projected GeoJSON [1]: https://tools.ietf.org/html/rfc7946#section-3 [2]: https://developer.mozilla.org/docs/Web/API/Position [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/projection ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-projection/bench.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import { glob } from "glob"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { toMercator, toWgs84 } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const suite = new Benchmark.Suite("turf-projection"); /** * Benchmark Results toMercator * * featureCollection: 3.501ms * fiji: 0.118ms * geometry: 0.081ms * line: 0.077ms * multiLine: 0.083ms * multiPolygon: 0.123ms * passed-180th-meridian: 0.044ms * passed-180th-meridian2: 0.151ms * point: 0.065ms * polygon: 0.060ms * * * * * 180th-meridian x 115,084 ops/sec ±2.82% (78 runs sampled) * featureCollection x 133,945 ops/sec ±7.66% (73 runs sampled) * line x 349,467 ops/sec ±3.93% (74 runs sampled) * multiLine x 139,763 ops/sec ±5.19% (71 runs sampled) * multiPolygon x 118,105 ops/sec ±4.80% (75 runs sampled) * point x 1,539,797 ops/sec ±3.72% (77 runs sampled) * polygon x 203,059 ops/sec ±16.43% (58 runs sampled) */ glob .sync(path.join(__dirname, "test", "mercator", "*.geojson")) .forEach((filepath) => { const { name } = path.parse(filepath); const geojson = loadJsonFileSync(filepath); console.time(name); toMercator(geojson); console.timeEnd(name); suite.add(name, () => toMercator(geojson)); }); /** * Benchmark Results toWgs84 * * featureCollection: 2.290ms * fiji: 0.062ms * geometry: 0.109ms * multiLine: 0.060ms * multiPolygon: 0.075ms * passed-180th-meridian: 0.084ms * passed-180th-meridian2: 0.099ms * point: 0.037ms * polygon: 0.054ms * * featureCollection x 153,988 ops/sec ±3.13% (77 runs sampled) * fiji x 266,735 ops/sec ±1.90% (79 runs sampled) * geometry x 406,995 ops/sec ±1.91% (79 runs sampled) * multiLine x 175,761 ops/sec ±2.32% (77 runs sampled) * multiPolygon x 135,507 ops/sec ±1.95% (79 runs sampled) * passed-180th-meridian x 131,944 ops/sec ±2.04% (79 runs sampled) * passed-180th-meridian2 x 106,320 ops/sec ±1.91% (80 runs sampled) * point x 1,784,702 ops/sec ±2.29% (76 runs sampled) * polygon x 307,268 ops/sec ±1.95% (79 runs sampled) */ glob .sync(path.join(__dirname, "test", "wgs84", "*.geojson")) .forEach((filepath) => { const { name } = path.parse(filepath); const geojson = loadJsonFileSync(filepath); console.time(name); toWgs84(geojson); console.timeEnd(name); suite.add(name, () => toWgs84(geojson)); }); suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-projection/index.ts ================================================ import { Position } from "geojson"; import { coordEach } from "@turf/meta"; import { AllGeoJSON, isNumber } from "@turf/helpers"; import { clone } from "@turf/clone"; /** * Converts a WGS84 GeoJSON object into Mercator (EPSG:900913) projection * * @function * @param {GeoJSON|Position} geojson WGS84 GeoJSON object * @param {Object} [options] Optional parameters * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance increase if true) * @returns {GeoJSON} Projected GeoJSON * @example * var pt = turf.point([-71,41]); * var converted = turf.toMercator(pt); * * //addToMap * var addToMap = [pt, converted]; */ function toMercator( geojson: G, options: { mutate?: boolean } = {} ): G { return convert(geojson, "mercator", options); } /** * Converts a Mercator (EPSG:900913) GeoJSON object into WGS84 projection * * @function * @param {GeoJSON|Position} geojson Mercator GeoJSON object * @param {Object} [options] Optional parameters * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance increase if true) * @returns {GeoJSON} Projected GeoJSON * @example * var pt = turf.point([-7903683.846322424, 5012341.663847514]); * var converted = turf.toWgs84(pt); * * //addToMap * var addToMap = [pt, converted]; */ function toWgs84( geojson: G, options: { mutate?: boolean } = {} ): G { return convert(geojson, "wgs84", options); } /** * Converts a GeoJSON coordinates to the defined `projection` * * @private * @param {GeoJSON} geojson GeoJSON Feature or Geometry * @param {string} projection defines the projection system to convert the coordinates to * @param {Object} [options] Optional parameters * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance increase if true) * @returns {GeoJSON} Converted GeoJSON */ function convert( geojson: any, projection: string, options: { mutate?: boolean } = {} ): any { // Optional parameters options = options || {}; var mutate = options.mutate; // Validation if (!geojson) throw new Error("geojson is required"); // Handle Position if (Array.isArray(geojson) && isNumber(geojson[0])) geojson = projection === "mercator" ? convertToMercator(geojson) : convertToWgs84(geojson); // Handle GeoJSON else { // Handle possible data mutation if (mutate !== true) geojson = clone(geojson); coordEach(geojson, function (coord) { var newCoord = projection === "mercator" ? convertToMercator(coord) : convertToWgs84(coord); coord[0] = newCoord[0]; coord[1] = newCoord[1]; }); } return geojson; } /** * Convert lon/lat values to 900913 x/y. * (from https://github.com/mapbox/sphericalmercator) * * @private * @param {Array} lonLat WGS84 point * @returns {Array} Mercator [x, y] point */ function convertToMercator(lonLat: number[]) { var D2R = Math.PI / 180, // 900913 properties A = 6378137.0, MAXEXTENT = 20037508.342789244; // compensate longitudes passing the 180th meridian // from https://github.com/proj4js/proj4js/blob/master/lib/common/adjust_lon.js var adjusted = Math.abs(lonLat[0]) <= 180 ? lonLat[0] : lonLat[0] - sign(lonLat[0]) * 360; var xy = [ A * adjusted * D2R, A * Math.log(Math.tan(Math.PI * 0.25 + 0.5 * lonLat[1] * D2R)), ]; // if xy value is beyond maxextent (e.g. poles), return maxextent if (xy[0] > MAXEXTENT) xy[0] = MAXEXTENT; if (xy[0] < -MAXEXTENT) xy[0] = -MAXEXTENT; if (xy[1] > MAXEXTENT) xy[1] = MAXEXTENT; if (xy[1] < -MAXEXTENT) xy[1] = -MAXEXTENT; return xy; } /** * Convert 900913 x/y values to lon/lat. * (from https://github.com/mapbox/sphericalmercator) * * @private * @param {Array} xy Mercator [x, y] point * @returns {Array} WGS84 [lon, lat] point */ function convertToWgs84(xy: number[]) { // 900913 properties. var R2D = 180 / Math.PI; var A = 6378137.0; return [ (xy[0] * R2D) / A, (Math.PI * 0.5 - 2.0 * Math.atan(Math.exp(-xy[1] / A))) * R2D, ]; } /** * Returns the sign of the input, or zero * * @private * @param {number} x input * @returns {number} -1|0|1 output */ function sign(x: number) { return x < 0 ? -1 : x > 0 ? 1 : 0; } export { toMercator, toWgs84 }; ================================================ FILE: packages/turf-projection/package.json ================================================ { "name": "@turf/projection", "version": "7.3.4", "description": "Provides tools for conversion between geographic coordinates and projected coordinates.", "author": "Turf Authors", "contributors": [ "Stefano Borghi <@stebogit>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "projection", "to-mercator", "to-wgs84", "EPSG:4326", "WGS84", "mercator", "web-mercator", "EPSG:3857", "EPSG:3785", "900913", "EPSG:900913", "EPSG:102113" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "proj4": "^2.9.2", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/clone": "workspace:*", "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-projection/test/mercator/featureCollection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-12913060.932019735, 7967317.535015907], [-10018754.171394622, 7967317.535015907], [-10018754.171394622, 9876845.895794801], [-12913060.932019735, 9876845.895794801], [-12913060.932019735, 7967317.535015907] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-2269873.991956594, 3991847.365165045], [-391357.5848201024, 6026906.806229578], [1565430.3392804095, 1917652.165618501] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8492459.590596221, 430493.34330211225] } } ] } ================================================ FILE: packages/turf-projection/test/mercator/fiji.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-20031393.380526427, -1860477.2684611906], [19998984.080533516, -1906645.233545436], [20014882.98241683, -1959233.9090056375], [-20002653.0578912, -1937831.5410857894], [-19990117.385252435, -1892275.0722278224], [-20031393.380526427, -1860477.2684611906] ] ] } } ================================================ FILE: packages/turf-projection/test/mercator/geometry.geojson ================================================ { "type": "LineString", "coordinates": [ [-14245416.087451726, -156543.03392804202], [-10136161.446840651, 3952711.6066830326], [-7983694.730330088, 7866287.454884058], [-3287403.7124888604, 9783939.620502558] ] } ================================================ FILE: packages/turf-projection/test/mercator/line.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-14245416.087451726, -156543.03392804202], [-10136161.446840651, 3952711.6066830326], [-7983694.730330088, 7866287.454884058], [-3287403.7124888604, 9783939.620502558] ] } } ================================================ FILE: packages/turf-projection/test/mercator/multiLine.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-14245416.087451726, -156543.03392804202], [-10136161.446840651, 3952711.6066830326], [-7983694.730330088, 7866287.454884058], [-3287403.7124888604, 9783939.620502558] ], [ [-8101102.00577612, 3443946.746416902], [-9196903.243272407, 1487158.822316389], [-5518141.945963444, 1095801.237496288], [-9392582.035682458, -1252344.2714243273], [-3287403.7124888604, -7474929.870063956] ] ] } } ================================================ FILE: packages/turf-projection/test/mercator/multiPolygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-12913060.932019735, -5621521.486192067], [-10018754.171394622, -5621521.486192067], [-10018754.171394622, -7558415.656081783], [-12913060.932019735, -7558415.656081783], [-12913060.932019735, -5621521.486192067] ] ], [ [ [-10057889.929876631, 1017529.7205322676], [-8649002.624524264, -391357.5848201023], [-7240115.319171893, 1369751.5468703585], [-7318386.8361359155, 2465552.7843666445], [-9353446.277200447, 2817774.6107047372], [-10057889.929876631, 1017529.7205322676] ] ] ] } } ================================================ FILE: packages/turf-projection/test/mercator/passed-180th-meridian.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [12601714.231207296, -2700367.3352587065], [12993071.816027401, -4138606.4594725817], [14685693.370374342, -3639625.5388269513], [15742358.849388618, -4637587.380118214], [16534857.958649326, -4627803.440497711], [17141462.215120483, -3169996.4370428286], [15810846.426732136, -1203424.5733218137], [15615167.634322084, -1986139.7429620188], [15096618.834435452, -1692621.554346943], [15214026.10988148, -1340399.728008851], [14617205.793030823, -1271912.1506653328], [13609460.012119059, -1917652.1656185004], [13521404.555534538, -2201386.414613076], [12601714.231207296, -2700367.3352587065] ] ] } } ================================================ FILE: packages/turf-projection/test/mercator/passed-180th-meridian2.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-8179373.522740139, 1271912.1506653326], [-9099063.84706738, -410925.4640611067], [-8394620.194391195, -1682837.6147264417], [-7827151.69640205, -2172034.5957515696], [-8492459.59059622, -6535671.666495712], [-7651040.783233002, -7494497.7493049605], [-7279251.077653905, -7298818.95689491], [-7670608.662474004, -6535671.666495712], [-6985732.889038826, -4794130.414046254], [-6457400.149531689, -4637587.380118214], [-5439870.428999423, -3306971.5917298645], [-5420302.549758421, -2954749.7653917726], [-4637587.380118214, -2524256.422089661], [-3874440.0897190133, -763147.2903991994], [-5635549.221409478, 117407.27544603014], [-5792092.255337513, 508764.86026613234], [-7122708.043725865, 1213208.5129423165], [-8179373.522740139, 1271912.1506653326] ] ] } } ================================================ FILE: packages/turf-projection/test/mercator/point.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-7903683.846322424, 5012341.663847514] } } ================================================ FILE: packages/turf-projection/test/mercator/polygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-12913060.932019735, 7967317.535015907], [-10018754.171394622, 7967317.535015907], [-10018754.171394622, 9876845.895794801], [-12913060.932019735, 9876845.895794801], [-12913060.932019735, 7967317.535015907] ] ] } } ================================================ FILE: packages/turf-projection/test/out/mercator-featureCollection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-12913060.93202, 7967317.535016], [-10018754.171395, 7967317.535016], [-10018754.171395, 9876845.895795], [-12913060.93202, 9876845.895795], [-12913060.93202, 7967317.535016] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-2269873.991957, 3991847.410438], [-391357.58482, 6026906.856034], [1565430.33928, 1917652.163291] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-8492459.534936, 430493.386177] } } ] } ================================================ FILE: packages/turf-projection/test/out/mercator-fiji.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-20031393.340521, -1860477.28203], [19998984.11793, -1906645.234158], [20014882.990244, -1959233.87059], [-20002653.097027, -1937831.483333], [-19990117.409169, -1892275.080785], [-20031393.340521, -1860477.28203] ] ] } } ================================================ FILE: packages/turf-projection/test/out/mercator-geometry.geojson ================================================ { "type": "LineString", "coordinates": [ [-14245416.087452, -156543.052253], [-10136161.391181, 3952711.561921], [-7983694.73033, 7866287.482754], [-3287403.712489, 9783939.750186] ] } ================================================ FILE: packages/turf-projection/test/out/mercator-multiLine.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-14245416.087452, -156543.052253], [-10136161.391181, 3952711.561921], [-7983694.73033, 7866287.482754], [-3287403.712489, 9783939.750186] ], [ [-8101101.950116, 3443946.802336], [-9196903.187613, 1487158.765218], [-5518141.890304, 1095801.284623], [-9392582.035682, -1252344.285755], [-3287403.712489, -7474929.934621] ] ] } } ================================================ FILE: packages/turf-projection/test/out/mercator-multiPolygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-12913060.93202, -5621521.486192], [-10018754.171395, -5621521.486192], [-10018754.171395, -7558415.656082], [-12913060.93202, -7558415.656082], [-12913060.93202, -5621521.486192] ] ], [ [ [-10057889.874217, 1017529.749988], [-8649002.568865, -391357.57973], [-7240115.263512, 1369751.525059], [-7318386.780476, 2465552.744045], [-9353446.221541, 2817774.632412], [-10057889.874217, 1017529.749988] ] ] ] } } ================================================ FILE: packages/turf-projection/test/out/mercator-passed-180th-meridian.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [12601714.231207, -2700367.319659], [12993071.816027, -4138606.416476], [14685693.356459, -3639625.540684], [15742358.891133, -4637587.344467], [16534857.930819, -4627803.413134], [17141462.21512, -3169996.399371], [15810846.426732, -1203424.537238], [15615167.689982, -1986139.800958], [15096618.792691, -1692621.582407], [15214026.123796, -1340399.683217], [14617205.820861, -1271912.182186], [13609459.970374, -1917652.163291], [13521404.583364, -2201386.426958], [12601714.231207, -2700367.319659] ] ] } } ================================================ FILE: packages/turf-projection/test/out/mercator-passed-180th-meridian2.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-8179373.46708, 1271912.182186], [-9099063.819238, -410925.448093], [-8394620.166561, -1682837.629118], [-7827151.696402, -2172034.572631], [-8492459.534936, -6535671.749414], [-7651040.811063, -7494497.668144], [-7279251.077654, -7298818.963454], [-7670608.662474, -6535671.749414], [-6985732.861209, -4794130.456523], [-6457400.093872, -4637587.344467], [-5439870.37334, -3306971.589232], [-5420302.521929, -2954749.719326], [-4637587.352288, -2524256.44615], [-3874440.034059, -763147.332293], [-5635549.221409, 117407.281873], [-5792092.255338, 508764.91044], [-7122708.043726, 1213208.514796], [-8179373.46708, 1271912.182186] ] ] } } ================================================ FILE: packages/turf-projection/test/out/mercator-point.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-7903683.846322, 5012341.663848] } } ================================================ FILE: packages/turf-projection/test/out/mercator-polygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-12913060.93202, 7967317.535016], [-10018754.171395, 7967317.535016], [-10018754.171395, 9876845.895795], [-12913060.93202, 9876845.895795], [-12913060.93202, 7967317.535016] ] ] } } ================================================ FILE: packages/turf-projection/test/out/wgs84-featureCollection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-116, 58], [-90, 58], [-90, 66], [-116, 66], [-116, 58] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-20.390625, 33.72434], [-3.515625, 47.517201], [14.0625, 16.972741] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-76.289062, 3.864255] } } ] } ================================================ FILE: packages/turf-projection/test/out/wgs84-fiji.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.945068, -16.480864], [179.653931, -16.878147], [179.796753, -17.329664], [-179.68689, -17.146039], [-179.57428, -16.754578], [-179.945068, -16.480864] ] ] } } ================================================ FILE: packages/turf-projection/test/out/wgs84-geometry.geojson ================================================ { "type": "LineString", "coordinates": [ [-127.96875, -1.406109], [-91.054688, 33.431441], [-71.71875, 57.515823], [-29.53125, 65.658275] ] } ================================================ FILE: packages/turf-projection/test/out/wgs84-line.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-127.96875, -1.406109], [-91.054688, 33.431441], [-71.71875, 57.515823], [-29.53125, 65.658275] ] } } ================================================ FILE: packages/turf-projection/test/out/wgs84-multiLine.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-127.96875, -1.406109], [-91.054688, 33.431441], [-71.71875, 57.515823], [-29.53125, 65.658275] ], [ [-72.773437, 29.53523], [-82.617187, 13.239945], [-49.570312, 9.795678], [-84.375, -11.178402], [-29.53125, -55.578345] ] ] } } ================================================ FILE: packages/turf-projection/test/out/wgs84-multiPolygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-116, -45], [-90, -45], [-90, -56], [-116, -56], [-116, -45] ] ], [ [ [-90.351563, 9.102097], [-77.695312, -3.513421], [-65.039063, 12.21118], [-65.742188, 21.616579], [-84.023437, 24.527135], [-90.351563, 9.102097] ] ] ] } } ================================================ FILE: packages/turf-projection/test/out/wgs84-passed-180th-meridian.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [113.203125, -23.563987], [116.71875, -34.813803], [131.923828, -31.052934], [141.416016, -38.410558], [148.535156, -38.341656], [153.984375, -27.371767], [142.03125, -10.746969], [140.273437, -17.560247], [135.615234, -15.029686], [136.669922, -11.953349], [131.308594, -11.350797], [122.255859, -16.972741], [121.464844, -19.394068], [113.203125, -23.563987] ] ] } } ================================================ FILE: packages/turf-projection/test/out/wgs84-passed-180th-meridian2.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.476562, 11.350797], [-81.738281, -3.688855], [-75.410156, -14.944785], [-70.3125, -19.145168], [-76.289062, -50.513427], [-68.730469, -55.677584], [-65.390625, -54.673831], [-68.90625, -50.513427], [-62.753906, -39.504041], [-58.007813, -38.410558], [-48.867187, -28.459033], [-48.691406, -25.641526], [-41.660156, -22.105999], [-34.804687, -6.83917], [-50.625, 1.054628], [-52.03125, 4.565474], [-63.984375, 10.833306], [-73.476562, 11.350797] ] ] } } ================================================ FILE: packages/turf-projection/test/out/wgs84-point.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-71, 41] } } ================================================ FILE: packages/turf-projection/test/out/wgs84-polygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-116, 58], [-90, 58], [-90, 66], [-116, 66], [-116, 58] ] ] } } ================================================ FILE: packages/turf-projection/test/wgs84/featureCollection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-116, 58], [-90, 58], [-90, 66], [-116, 66], [-116, 58] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-20.390625, 33.7243396617476], [-3.515625, 47.517200697839414], [14.0625, 16.97274101999902] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-76.2890625, 3.8642546157214084] } } ] } ================================================ FILE: packages/turf-projection/test/wgs84/fiji.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [180.054931640625, -16.480863883114882], [179.6539306640625, -16.878146994732155], [179.7967529296875, -17.329664329425047], [180.3131103515625, -17.14603949574698], [180.42572021484375, -16.754577926390958], [180.054931640625, -16.480863883114882] ] ] } } ================================================ FILE: packages/turf-projection/test/wgs84/geometry.geojson ================================================ { "type": "LineString", "coordinates": [ [-127.96875, -1.4061088354351594], [-91.0546875, 33.43144133557529], [-71.71875, 57.51582286553883], [-29.53125, 65.6582745198266] ] } ================================================ FILE: packages/turf-projection/test/wgs84/multiLine.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-127.96875, -1.4061088354351594], [-91.0546875, 33.43144133557529], [-71.71875, 57.51582286553883], [-29.53125, 65.6582745198266] ], [ [-72.7734375, 29.53522956294847], [-82.6171875, 13.239945499286312], [-49.5703125, 9.795677582829743], [-84.375, -11.178401873711772], [-29.53125, -55.578344672182055] ] ] } } ================================================ FILE: packages/turf-projection/test/wgs84/multiPolygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-116, -45], [-90, -45], [-90, -56], [-116, -56], [-116, -45] ] ], [ [ [-90.3515625, 9.102096738726456], [-77.6953125, -3.513421045640032], [-65.0390625, 12.211180191503997], [-65.7421875, 21.616579336740603], [-84.0234375, 24.5271348225978], [-90.3515625, 9.102096738726456] ] ] ] } } ================================================ FILE: packages/turf-projection/test/wgs84/passed-180th-meridian.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-246.796875, -23.563987128451217], [-243.28125, -34.813803317113134], [-228.076171875, -31.05293398570514], [-218.583984375, -38.410558250946075], [-211.46484375, -38.34165619279593], [-206.015625, -27.371767300523032], [-217.96875, -10.746969318459989], [-219.7265625, -17.560246503294888], [-224.38476562499997, -15.029685756555674], [-223.330078125, -11.953349393643416], [-228.69140625, -11.350796722383672], [-237.74414062500003, -16.97274101999901], [-238.53515625, -19.394067895396613], [-246.796875, -23.563987128451217] ] ] } } ================================================ FILE: packages/turf-projection/test/wgs84/passed-180th-meridian2.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [286.5234375, 11.350796722383672], [278.26171875, -3.688855143147035], [284.58984375, -14.944784875088372], [289.6875, -19.145168196205297], [283.7109375, -50.51342652633955], [291.26953125, -55.67758441108951], [294.609375, -54.67383096593114], [291.09375, -50.51342652633955], [297.24609375, -39.504040705584146], [301.9921875, -38.410558250946075], [311.1328125, -28.459033019728043], [311.30859374999994, -25.641526373065755], [318.33984375, -22.105998799750566], [325.1953125, -6.839169626342808], [309.37499999999994, 1.0546279422758869], [307.96875, 4.565473550710278], [296.015625, 10.833305983642491], [286.5234375, 11.350796722383672] ] ] } } ================================================ FILE: packages/turf-projection/test/wgs84/point.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-71, 41] } } ================================================ FILE: packages/turf-projection/test/wgs84/polygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-116, 58], [-90, 58], [-90, 66], [-116, 66], [-116, 58] ] ] } } ================================================ FILE: packages/turf-projection/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import proj4 from "proj4"; import { writeJsonFileSync } from "write-json-file"; import { clone } from "@turf/clone"; import { point } from "@turf/helpers"; import { truncate } from "@turf/truncate"; import { coordEach } from "@turf/meta"; import { toMercator, toWgs84 } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { mercator: path.join(__dirname, "test", "mercator") + path.sep, wgs84: path.join(__dirname, "test", "wgs84") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fromWgs84 = fs.readdirSync(directories.wgs84).map((filename) => { return { filename, name: path.parse(filename).name, geojson: truncate(loadJsonFileSync(directories.wgs84 + filename)), }; }); test("to-mercator", (t) => { for (const { filename, name, geojson } of fromWgs84) { var expected = clone(geojson); coordEach(expected, function (coord) { var newCoord = proj4("WGS84", "EPSG:900913", coord); coord[0] = newCoord[0]; coord[1] = newCoord[1]; }); const results = truncate(toMercator(geojson)); if (process.env.REGEN) writeJsonFileSync(directories.out + "mercator-" + filename, results); t.deepEqual(results, truncate(expected), name); t.deepEqual( results, loadJsonFileSync(directories.out + "mercator-" + filename) ); } t.end(); }); const fromMercator = fs.readdirSync(directories.mercator).map((filename) => { return { filename, name: path.parse(filename).name, geojson: truncate(loadJsonFileSync(directories.mercator + filename)), }; }); test("to-wgs84", (t) => { for (const { filename, name, geojson } of fromMercator) { var expected = clone(geojson); coordEach(expected, function (coord) { var newCoord = proj4("EPSG:900913", "WGS84", coord); coord[0] = newCoord[0]; coord[1] = newCoord[1]; }); const results = truncate(toWgs84(geojson)); if (process.env.REGEN) writeJsonFileSync(directories.out + "wgs84-" + filename, results); t.deepEqual(results, truncate(expected), name); t.deepEqual( results, loadJsonFileSync(directories.out + "wgs84-" + filename) ); } t.end(); }); test("projection -- throws", (t) => { t.throws( () => toMercator(null), /geojson is required/, "throws missing geojson" ); t.throws( () => toWgs84(null), /geojson is required/, "throws missing geojson" ); t.end(); }); test("projection -- verify mutation", (t) => { const pt1 = point([10, 10]); const pt2 = point([15, 15]); const pt1Before = clone(pt1); const pt2Before = clone(pt2); toMercator(pt1); toMercator(pt1, { mutate: false }); t.deepEqual( pt1, pt1Before, "mutate = undefined - input should NOT be mutated" ); t.deepEqual(pt1, pt1Before, "mutate = false - input should NOT be mutated"); toMercator(pt1, { mutate: true }); t.notEqual(pt1, pt1Before, "input should be mutated"); toWgs84(pt2); toWgs84(pt2, { mutate: false }); t.deepEqual( pt2, pt2Before, "mutate = undefined - input should NOT be mutated" ); t.deepEqual(pt2, pt2Before, "mutate = false - input should NOT be mutated"); toWgs84(pt2, { mutate: true }); t.notEqual(pt2, pt2Before, "input should be mutated"); t.end(); }); test("projection -- handle Position", (t) => { const coord = [10, 40]; const mercator = toMercator(coord); const wgs84 = toWgs84(mercator); t.deepEqual(coord, wgs84, "coord equal same as wgs84"); t.end(); }); ================================================ FILE: packages/turf-projection/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-projection/types.ts ================================================ import * as projection from "./index.js"; import { toMercator, toWgs84 } from "./index.js"; import { point } from "@turf/helpers"; // Types test const pt = point([3, 51]); const projected = toMercator(pt); const degrees = toWgs84(projected); // default import projection.toMercator(pt); projection.toWgs84(projected); ================================================ FILE: packages/turf-quadrat-analysis/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-quadrat-analysis/README.md ================================================ # @turf/quadrat-analysis ## quadratAnalysis Quadrat analysis lays a set of equal-size areas(quadrat) over the study area and counts the number of features in each quadrat and creates a frequency table. The table lists the number of quadrats containing no features, the number containing one feature, two features, and so on, all the way up to the quadrat containing the most features. The method then creates the frequency table for the random distribution, usually based on a Poisson distribution. The method uses the distribution to calculate the probability for 0 feature occuring, 1 feature occuring, 2 features, and so on, and lists these probabilities in the frequency table. By comparing the two frequency tables, you can see whether the features create a pattern. If the table for the observed distribution has more quadrats containing many features than the table for the random distribution dose, then the features create a clustered pattern. It is hard to judge the frequency tables are similar or different just by looking at them. So, we can use serval statistical tests to find out how much the frequency tables differ. We use Kolmogorov-Smirnov test.This method calculates cumulative probabilities for both distributions, and then compares the cumulative probabilities at each class level and selects the largest absolute difference D. Then, the test compares D to the critical value for a confidence level you specify. If D is greater than the critical value, the difference between the observed distribution and the random distribution is significant. The greater the value the bigger the difference. Traditionally, squares are used for the shape of the quadrats, in a regular grid(square-grid). Some researchers suggest that the quadrat size equal twice the size of mean area per feature, which is simply the area of the study area divided by the number of features. ### Parameters * `pointFeatureSet` **[FeatureCollection][1]<[Point][2]>** point set to study * `options` **[Object][3]** optional parameters (optional, default `{}`) * `options.studyBbox` **\[[number][4], [number][4], [number][4], [number][4]]?** bbox representing the study area * `options.confidenceLevel` **(`20` | `15` | `10` | `5` | `2` | `1`)** a confidence level. The unit is percentage . 5 means 95%, value must be in [K\_TABLE][5] (optional, default `20`) ### Examples ```javascript var bbox = [-65, 40, -63, 42]; var dataset = turf.randomPoint(100, { bbox: bbox }); var result = turf.quadratAnalysis(dataset); ``` Returns **[QuadratAnalysisResult][6]** result ## K\_TABLE the confidence level Type: [Object][3] ### Properties * `20` **[number][4]** 1.07275 * `15` **[number][4]** 1.13795 * `10` **[number][4]** 1.22385 * `5` **[number][4]** 1.3581 * `2` **[number][4]** 1.51743 * `1` **[number][4]** 1.62762 ## QuadratAnalysisResult the return type of the quadratAnalysis Type: [object][3] ### Properties * `criticalValue` **[number][4]** * `maxAbsoluteDifference` **[number][4]** * `isRandom` **[boolean][7]** * `observedDistribution` **[Array][8]<[number][4]>** the cumulative distribution of observed features, the index represents the number of features in the quadrat. [1]: https://tools.ietf.org/html/rfc7946#section-3.3 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [5]: #k_table [6]: #quadratanalysisresult [7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean [8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/quadrat-analysis ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-quadrat-analysis/bench.ts ================================================ import Benchmark from "benchmark"; import { randomPoint } from "@turf/random"; import { nearestNeighborAnalysis } from "@turf/nearest-neighbor-analysis"; import { quadratAnalysis } from "./index.js"; /** * Benchmark Results * quadrat: 1383.768ms * nearest: 12259.498ms * quadrat x 0.76 ops/sec ±1.24% (6 runs sampled) * nearest x 0.08 ops/sec ±0.97% (5 runs sampled) */ const suite = new Benchmark.Suite("turf-quadrat-analysis"); const smallBbox = [-10, -10, 10, 10]; const dataset = randomPoint(10000, { bbox: smallBbox }); var nameQ = "quadrat"; var nameN = "nearest"; console.time(nameQ); quadratAnalysis(dataset, { studyBbox: smallBbox, confidenceLevel: 20, }); console.timeEnd(nameQ); console.time(nameN); nearestNeighborAnalysis(dataset); console.timeEnd(nameN); suite.add(nameQ, () => quadratAnalysis(dataset, { studyBbox: smallBbox, confidenceLevel: 20, }) ); suite.add(nameN, () => nearestNeighborAnalysis(dataset)); suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-quadrat-analysis/index.ts ================================================ import { BBox, FeatureCollection, Point } from "geojson"; import { area } from "@turf/area"; import { bbox as turfBBox } from "@turf/bbox"; import { bboxPolygon } from "@turf/bbox-polygon"; import { getCoord } from "@turf/invariant"; import { squareGrid } from "@turf/square-grid"; interface QuadratAnalysisResult { criticalValue: number; maxAbsoluteDifference: number; isRandom: boolean; observedDistribution: number[]; } /** * Quadrat analysis lays a set of equal-size areas(quadrat) over the study area and counts * the number of features in each quadrat and creates a frequency table. * The table lists the number of quadrats containing no features, * the number containing one feature, two features, and so on, * all the way up to the quadrat containing the most features. * The method then creates the frequency table for the random distribution, usually based on a Poisson distribution. * The method uses the distribution to calculate the probability for 0 feature occuring, * 1 feature occuring, 2 features, and so on, * and lists these probabilities in the frequency table. * By comparing the two frequency tables, you can see whether the features create a pattern. * If the table for the observed distribution has more quadrats containing many features than the * table for the random distribution dose, then the features create a clustered pattern. * * It is hard to judge the frequency tables are similar or different just by looking at them. * So, we can use serval statistical tests to find out how much the frequency tables differ. * We use Kolmogorov-Smirnov test.This method calculates cumulative probabilities for both distributions, * and then compares the cumulative probabilities at each class level and selects the largest absolute difference D. * Then, the test compares D to the critical value for a confidence level you specify. * If D is greater than the critical value, the difference between the observed distribution and * the random distribution is significant. The greater the value the bigger the difference. * * Traditionally, squares are used for the shape of the quadrats, in a regular grid(square-grid). * Some researchers suggest that the quadrat size equal twice the size of mean area per feature, * which is simply the area of the study area divided by the number of features. * * * @function * @param {FeatureCollection} pointFeatureSet point set to study * @param {Object} [options={}] optional parameters * @param {[number, number, number, number]} [options.studyBbox] bbox representing the study area * @param {20 | 15 | 10 | 5 | 2 | 1} [options.confidenceLevel=20] a confidence level. * The unit is percentage . 5 means 95%, value must be in {@link K_TABLE} * @returns {QuadratAnalysisResult} result * @example * * var bbox = [-65, 40, -63, 42]; * var dataset = turf.randomPoint(100, { bbox: bbox }); * var result = turf.quadratAnalysis(dataset); * */ function quadratAnalysis( pointFeatureSet: FeatureCollection, options: { studyBbox?: [number, number, number, number]; confidenceLevel?: 20 | 15 | 10 | 5 | 2 | 1; } ): QuadratAnalysisResult { options = options || {}; const studyBbox = options.studyBbox || turfBBox(pointFeatureSet); const confidenceLevel = options.confidenceLevel || 20; const points = pointFeatureSet.features; // create square-grid const numOfPoints = points.length; const sizeOfArea = area(bboxPolygon(studyBbox)); const lengthOfSide = Math.sqrt((sizeOfArea / numOfPoints) * 2); const grid = squareGrid(studyBbox, lengthOfSide, { units: "meters", }); const quadrats = grid.features; // count the number of features in each quadrat const quadratIdDict: { [key: string]: { box: BBox; cnt: number } } = {}; for (let i = 0; i < quadrats.length; i++) { quadratIdDict[i] = { box: turfBBox(quadrats[i]), cnt: 0, }; } let sumOfPoint = 0; for (const pt of points) { for (const key of Object.keys(quadratIdDict)) { const box = quadratIdDict[key].box; if (inBBox(getCoord(pt), box)) { quadratIdDict[key].cnt += 1; sumOfPoint += 1; break; } } } // the most amount of features in quadrat let maxCnt = 0; for (const key of Object.keys(quadratIdDict)) { const cnt = quadratIdDict[key].cnt; if (cnt > maxCnt) { maxCnt = cnt; } } const expectedDistribution = []; const numOfQuadrat = Object.keys(quadratIdDict).length; const lambda = sumOfPoint / numOfQuadrat; // get the cumulative probability of the random distribution let cumulativeProbility = 0.0; for (let x = 0; x < maxCnt + 1; x++) { cumulativeProbility += (Math.exp(-lambda) * Math.pow(lambda, x)) / factorial(x); expectedDistribution.push(cumulativeProbility); } // get the cumulative probability of the observed distribution const observedDistribution = []; let cumulativeObservedQuads = 0; for (let x = 0; x < maxCnt + 1; x++) { for (const key of Object.keys(quadratIdDict)) { if (quadratIdDict[key].cnt === x) { cumulativeObservedQuads += 1; } } const p = cumulativeObservedQuads / numOfQuadrat; observedDistribution.push(p); } // get the largest absolute difference between two distributions let maxDifference = 0; for (let x = 0; x < maxCnt + 1; x++) { const difference = Math.abs( expectedDistribution[x] - observedDistribution[x] ); if (difference > maxDifference) { maxDifference = difference; } } const k = K_TABLE[confidenceLevel]; // statistical test const criticalValue = k / Math.sqrt(numOfQuadrat); const result: QuadratAnalysisResult = { criticalValue, isRandom: true, maxAbsoluteDifference: maxDifference, observedDistribution, }; if (maxDifference > criticalValue) { result.isRandom = false; } return result; } /** * the confidence level * * @constant * @type {Object} * @property {number} 20 1.07275 * @property {number} 15 1.13795 * @property {number} 10 1.22385 * @property {number} 5 1.3581 * @property {number} 2 1.51743 * @property {number} 1 1.62762 */ const K_TABLE = { 20: 1.07275, 15: 1.13795, 10: 1.22385, 5: 1.3581, 2: 1.51743, 1: 1.62762, }; /** * the return type of the quadratAnalysis * * @typedef {object} QuadratAnalysisResult * @property {number} criticalValue * @property {number} maxAbsoluteDifference * @property {boolean} isRandom * @property {Array} observedDistribution the cumulative distribution of observed features, * the index represents the number of features in the quadrat. */ /** * inBBox from @turf/boolean-point-in-polygon * * @private * @param {Array} pt point [x,y] * @param {BBox} bbox BBox [west, south, east, north] * @returns {boolean} true/false if point is inside BBox */ function inBBox(pt: number[], bbox: BBox) { return ( bbox[0] <= pt[0] && bbox[1] <= pt[1] && bbox[2] >= pt[0] && bbox[3] >= pt[1] ); } /** * https://stackoverflow.com/questions/3959211/fast-factorial-function-in-javascript * @private * @param {number} num Number * @returns {number} the factorial of num */ function factorial(num: number) { const f: number[] = []; function inner(n: number): number { if (n === 0 || n === 1) { return 1; } if (f[n] > 0) { return f[n]; } return (f[n] = inner(n - 1) * n); } return inner(num); } export { QuadratAnalysisResult, quadratAnalysis }; export default quadratAnalysis; ================================================ FILE: packages/turf-quadrat-analysis/package.json ================================================ { "name": "@turf/quadrat-analysis", "version": "7.3.4", "description": "Quadrat analysis lays a set of equal-size areas(quadrat) over the study area and counts the number of features in each quadrat and creates a frequency table.", "author": "Turf Authors", "contributors": [ "Haoming Zhuang <@zhuang-hao-ming>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "quadrat-analysis" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@turf/nearest-neighbor-analysis": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/area": "workspace:*", "@turf/bbox": "workspace:*", "@turf/bbox-polygon": "workspace:*", "@turf/centroid": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/point-grid": "workspace:*", "@turf/random": "workspace:*", "@turf/square-grid": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-quadrat-analysis/test/in/futian_bbox.json ================================================ { "type": "Feature", "bbox": [ 113.98555223500011, 22.502222996000057, 114.10006072800002, 22.590241646000038 ], "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [113.98555223500011, 22.502222996000057], [114.10006072800002, 22.502222996000057], [114.10006072800002, 22.590241646000038], [113.98555223500011, 22.590241646000038], [113.98555223500011, 22.502222996000057] ] ] } } ================================================ FILE: packages/turf-quadrat-analysis/test/in/futian_grid.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [113.99105753441937, 22.505253158009698], [113.99105753441937, 22.518912879006482], [114.00584294787099, 22.518912879006482], [114.00584294787099, 22.505253158009698], [113.99105753441937, 22.505253158009698] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [113.99105753441937, 22.518912879006482], [113.99105753441937, 22.532572600003267], [114.00584294787099, 22.532572600003267], [114.00584294787099, 22.518912879006482], [113.99105753441937, 22.518912879006482] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [113.99105753441937, 22.532572600003267], [113.99105753441937, 22.54623232100005], [114.00584294787099, 22.54623232100005], [114.00584294787099, 22.532572600003267], [113.99105753441937, 22.532572600003267] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [113.99105753441937, 22.54623232100005], [113.99105753441937, 22.559892041996836], [114.00584294787099, 22.559892041996836], [114.00584294787099, 22.54623232100005], [113.99105753441937, 22.54623232100005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [113.99105753441937, 22.559892041996836], [113.99105753441937, 22.57355176299362], [114.00584294787099, 22.57355176299362], [114.00584294787099, 22.559892041996836], [113.99105753441937, 22.559892041996836] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [113.99105753441937, 22.57355176299362], [113.99105753441937, 22.587211483990405], [114.00584294787099, 22.587211483990405], [114.00584294787099, 22.57355176299362], [113.99105753441937, 22.57355176299362] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.00584294787099, 22.505253158009698], [114.00584294787099, 22.518912879006482], [114.02062836132261, 22.518912879006482], [114.02062836132261, 22.505253158009698], [114.00584294787099, 22.505253158009698] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.00584294787099, 22.518912879006482], [114.00584294787099, 22.532572600003267], [114.02062836132261, 22.532572600003267], [114.02062836132261, 22.518912879006482], [114.00584294787099, 22.518912879006482] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.00584294787099, 22.532572600003267], [114.00584294787099, 22.54623232100005], [114.02062836132261, 22.54623232100005], [114.02062836132261, 22.532572600003267], [114.00584294787099, 22.532572600003267] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.00584294787099, 22.54623232100005], [114.00584294787099, 22.559892041996836], [114.02062836132261, 22.559892041996836], [114.02062836132261, 22.54623232100005], [114.00584294787099, 22.54623232100005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.00584294787099, 22.559892041996836], [114.00584294787099, 22.57355176299362], [114.02062836132261, 22.57355176299362], [114.02062836132261, 22.559892041996836], [114.00584294787099, 22.559892041996836] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.00584294787099, 22.57355176299362], [114.00584294787099, 22.587211483990405], [114.02062836132261, 22.587211483990405], [114.02062836132261, 22.57355176299362], [114.00584294787099, 22.57355176299362] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.02062836132261, 22.505253158009698], [114.02062836132261, 22.518912879006482], [114.03541377477423, 22.518912879006482], [114.03541377477423, 22.505253158009698], [114.02062836132261, 22.505253158009698] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.02062836132261, 22.518912879006482], [114.02062836132261, 22.532572600003267], [114.03541377477423, 22.532572600003267], [114.03541377477423, 22.518912879006482], [114.02062836132261, 22.518912879006482] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.02062836132261, 22.532572600003267], [114.02062836132261, 22.54623232100005], [114.03541377477423, 22.54623232100005], [114.03541377477423, 22.532572600003267], [114.02062836132261, 22.532572600003267] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.02062836132261, 22.54623232100005], [114.02062836132261, 22.559892041996836], [114.03541377477423, 22.559892041996836], [114.03541377477423, 22.54623232100005], [114.02062836132261, 22.54623232100005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.02062836132261, 22.559892041996836], [114.02062836132261, 22.57355176299362], [114.03541377477423, 22.57355176299362], [114.03541377477423, 22.559892041996836], [114.02062836132261, 22.559892041996836] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.02062836132261, 22.57355176299362], [114.02062836132261, 22.587211483990405], [114.03541377477423, 22.587211483990405], [114.03541377477423, 22.57355176299362], [114.02062836132261, 22.57355176299362] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.03541377477423, 22.505253158009698], [114.03541377477423, 22.518912879006482], [114.05019918822585, 22.518912879006482], [114.05019918822585, 22.505253158009698], [114.03541377477423, 22.505253158009698] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.03541377477423, 22.518912879006482], [114.03541377477423, 22.532572600003267], [114.05019918822585, 22.532572600003267], [114.05019918822585, 22.518912879006482], [114.03541377477423, 22.518912879006482] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.03541377477423, 22.532572600003267], [114.03541377477423, 22.54623232100005], [114.05019918822585, 22.54623232100005], [114.05019918822585, 22.532572600003267], [114.03541377477423, 22.532572600003267] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.03541377477423, 22.54623232100005], [114.03541377477423, 22.559892041996836], [114.05019918822585, 22.559892041996836], [114.05019918822585, 22.54623232100005], [114.03541377477423, 22.54623232100005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.03541377477423, 22.559892041996836], [114.03541377477423, 22.57355176299362], [114.05019918822585, 22.57355176299362], [114.05019918822585, 22.559892041996836], [114.03541377477423, 22.559892041996836] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.03541377477423, 22.57355176299362], [114.03541377477423, 22.587211483990405], [114.05019918822585, 22.587211483990405], [114.05019918822585, 22.57355176299362], [114.03541377477423, 22.57355176299362] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.05019918822585, 22.505253158009698], [114.05019918822585, 22.518912879006482], [114.06498460167747, 22.518912879006482], [114.06498460167747, 22.505253158009698], [114.05019918822585, 22.505253158009698] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.05019918822585, 22.518912879006482], [114.05019918822585, 22.532572600003267], [114.06498460167747, 22.532572600003267], [114.06498460167747, 22.518912879006482], [114.05019918822585, 22.518912879006482] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.05019918822585, 22.532572600003267], [114.05019918822585, 22.54623232100005], [114.06498460167747, 22.54623232100005], [114.06498460167747, 22.532572600003267], [114.05019918822585, 22.532572600003267] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.05019918822585, 22.54623232100005], [114.05019918822585, 22.559892041996836], [114.06498460167747, 22.559892041996836], [114.06498460167747, 22.54623232100005], [114.05019918822585, 22.54623232100005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.05019918822585, 22.559892041996836], [114.05019918822585, 22.57355176299362], [114.06498460167747, 22.57355176299362], [114.06498460167747, 22.559892041996836], [114.05019918822585, 22.559892041996836] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.05019918822585, 22.57355176299362], [114.05019918822585, 22.587211483990405], [114.06498460167747, 22.587211483990405], [114.06498460167747, 22.57355176299362], [114.05019918822585, 22.57355176299362] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.06498460167747, 22.505253158009698], [114.06498460167747, 22.518912879006482], [114.07977001512909, 22.518912879006482], [114.07977001512909, 22.505253158009698], [114.06498460167747, 22.505253158009698] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.06498460167747, 22.518912879006482], [114.06498460167747, 22.532572600003267], [114.07977001512909, 22.532572600003267], [114.07977001512909, 22.518912879006482], [114.06498460167747, 22.518912879006482] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.06498460167747, 22.532572600003267], [114.06498460167747, 22.54623232100005], [114.07977001512909, 22.54623232100005], [114.07977001512909, 22.532572600003267], [114.06498460167747, 22.532572600003267] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.06498460167747, 22.54623232100005], [114.06498460167747, 22.559892041996836], [114.07977001512909, 22.559892041996836], [114.07977001512909, 22.54623232100005], [114.06498460167747, 22.54623232100005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.06498460167747, 22.559892041996836], [114.06498460167747, 22.57355176299362], [114.07977001512909, 22.57355176299362], [114.07977001512909, 22.559892041996836], [114.06498460167747, 22.559892041996836] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.06498460167747, 22.57355176299362], [114.06498460167747, 22.587211483990405], [114.07977001512909, 22.587211483990405], [114.07977001512909, 22.57355176299362], [114.06498460167747, 22.57355176299362] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.07977001512909, 22.505253158009698], [114.07977001512909, 22.518912879006482], [114.0945554285807, 22.518912879006482], [114.0945554285807, 22.505253158009698], [114.07977001512909, 22.505253158009698] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.07977001512909, 22.518912879006482], [114.07977001512909, 22.532572600003267], [114.0945554285807, 22.532572600003267], [114.0945554285807, 22.518912879006482], [114.07977001512909, 22.518912879006482] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.07977001512909, 22.532572600003267], [114.07977001512909, 22.54623232100005], [114.0945554285807, 22.54623232100005], [114.0945554285807, 22.532572600003267], [114.07977001512909, 22.532572600003267] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.07977001512909, 22.54623232100005], [114.07977001512909, 22.559892041996836], [114.0945554285807, 22.559892041996836], [114.0945554285807, 22.54623232100005], [114.07977001512909, 22.54623232100005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.07977001512909, 22.559892041996836], [114.07977001512909, 22.57355176299362], [114.0945554285807, 22.57355176299362], [114.0945554285807, 22.559892041996836], [114.07977001512909, 22.559892041996836] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114.07977001512909, 22.57355176299362], [114.07977001512909, 22.587211483990405], [114.0945554285807, 22.587211483990405], [114.0945554285807, 22.57355176299362], [114.07977001512909, 22.57355176299362] ] ] } } ] } ================================================ FILE: packages/turf-quadrat-analysis/test/in/futian_random_point.json ================================================ { "type": "FeatureCollection", "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, "features": [ { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.012396810748868, 22.577038182860864] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.022345719876583, 22.58915225743322] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.081591202489733, 22.512875866100121] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.070288644326325, 22.580427569281504] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.084088037094048, 22.527949402615384] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.061569896268708, 22.531643159230534] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.072488277565697, 22.547456588733716] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.029648321473431, 22.526964527779505] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.062150019960725, 22.535953535879997] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.084703246348823, 22.506711632963178] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.009186983623835, 22.535368584602789] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.064433895407035, 22.529029569319139] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.030455652647731, 22.557579152389284] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.088849685107959, 22.547800494706667] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.042501275117402, 22.557099305894305] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [113.993682424144652, 22.504465820602139] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.057585800702213, 22.533388548208375] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.082882677232689, 22.563222531495995] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.084750977158095, 22.548236361789854] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.029746392465796, 22.52688964901628] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.072480235302393, 22.531695697686111] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.084761444300511, 22.551393606403742] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [113.985997513023875, 22.54220645166879] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.045618276232219, 22.523814198963493] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [113.997732675890404, 22.562214267908132] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.03296580222505, 22.574014476118222] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.082432233916776, 22.582944360811339] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.015967159958251, 22.524889490687997] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.026021449055136, 22.587747595650029] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.070083600951435, 22.575219971021589] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.055764476970708, 22.571547968601735] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.028768505631163, 22.580072581604412] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.009099326664995, 22.557883326830463] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.053465836401614, 22.574807437767973] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [113.996898113509303, 22.575031169231334] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.096544058781433, 22.523765090125909] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.020495417250757, 22.552711368464273] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.01057682966966, 22.531395244361597] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.009624811553678, 22.540950904901756] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [113.996228877803006, 22.553123231992306] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.03077623663836, 22.508453253115626] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.050429064467053, 22.579660547734914] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.071961407580275, 22.562150761527985] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.053733430523764, 22.508092769098212] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.069467873831712, 22.581226715851123] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.07462816181804, 22.585432523826722] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.040622894528695, 22.547378676941527] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.010488433025643, 22.58174702082114] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.07207980114552, 22.564609783692944] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.089587443004916, 22.51495811016029] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.027648012059458, 22.530039861593508] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.094278178715101, 22.556312487849652] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.099281286588095, 22.561470627571943] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.089335643763349, 22.56211646092148] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.004092509061849, 22.558861131757801] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.057548116643346, 22.557516188511453] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.012162464494139, 22.5335596267808] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.08146024472768, 22.505470214536889] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.004891994411722, 22.522541255234174] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.076475441076695, 22.510657907601544] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.092190473407641, 22.577255295927134] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.027169432126243, 22.58363847375195] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.018826431979349, 22.524517859551381] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.075547902316842, 22.586892257710332] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.086673815214567, 22.517165674386639] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.038998167726703, 22.544282798209075] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.021620251887171, 22.575589802670319] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [113.996837684771208, 22.527272953051764] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.000481232525786, 22.577958178256186] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.034598917031303, 22.563489509525773] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.037669585017611, 22.572600156187132] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.097902408273242, 22.573137445791438] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.000319765309797, 22.581877064806971] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [113.991701965722257, 22.514802308872774] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.001379634770984, 22.563179801036345] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.01871982965271, 22.570104574874751] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.004114451775592, 22.576563959437632] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.002685873357009, 22.580539307052153] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [113.990654651073172, 22.504383785693985] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.052911034556047, 22.502375277354993] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [113.986066110505462, 22.516677895127369] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.014249571313542, 22.564834967075466] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.030981055633561, 22.571444246880713] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.042912399516666, 22.520926062221506] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.081319259837784, 22.583650564389078] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.053745555985728, 22.548966459241861] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.042646183452732, 22.520322842764937] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.021402072275208, 22.553613896727775] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.032206202499879, 22.559241083722466] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.026106233228631, 22.512460878716205] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.045601133580405, 22.568584898665947] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.079794124349945, 22.553416305219589] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.03722014949075, 22.541375170567186] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [113.997431358053774, 22.50431902560722] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.049425264123144, 22.537905215257037] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.036342840857031, 22.504620180463135] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.025496565213984, 22.537746532755957] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.049168625574509, 22.572187897545597] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.086426303502236, 22.514895589268633] } }, { "type": "Feature", "properties": { "Id": 0 }, "geometry": { "type": "Point", "coordinates": [114.048942077580847, 22.539033907473133] } } ] } ================================================ FILE: packages/turf-quadrat-analysis/test/in/shenzhen_bbox.json ================================================ { "type": "Feature", "bbox": [113.74628, 22.44146568700006, 114.62397100100009, 22.86471934700006], "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [113.74628, 22.44146568700006], [114.62397100100009, 22.44146568700006], [114.62397100100009, 22.86471934700006], [113.74628, 22.86471934700006], [113.74628, 22.44146568700006] ] ] } } ================================================ FILE: packages/turf-quadrat-analysis/test/out/bigBox.json ================================================ { "type": "Feature", "bbox": [-3, -3, 3, 3], "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-3, -3], [3, -3], [3, 3], [-3, 3], [-3, -3] ] ] } } ================================================ FILE: packages/turf-quadrat-analysis/test/out/randomPoint.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.2646228048913839, 0.6297133701660846] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.4156573918201376, -0.7961308531775311] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8186893011177112, 0.6825903107541405] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.22968539892666895, 0.7389498822646203] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.4205902346397479, -0.7714618931657107] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7962155799132544, 0.9049399145991561] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.15658197958954823, -0.32358292785368503] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7659609076324778, 0.42422917202736476] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9133854857941084, 0.7091251355181027] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.37192350120324, 0.46383543863322974] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.26441804595925555, -0.03178187323847492] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.26465159766419877, 0.6201264966301507] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8545239902547048, 0.5977853739880725] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9893664624030873, -0.6989838957211654] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8697133051661128, -0.4490224426657936] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6006474501320951, 0.5836620598798219] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.4267483257637572, 0.39847714504839793] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8422306084123563, -0.9990371173789243] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.34404641770172883, 0.044847937943329086] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.861618555972075, 0.4438064489236617] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9504829302525808, 0.2062224606270684] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.19472861401956099, -0.8466720690912513] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7446967341953084, 0.3454527598949153] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.39689075714793853, -0.9341403346984354] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8360306464873237, -0.09871090483791889] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8217393664745631, 0.2412567406645132] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2451602385984435, 0.21522901271205663] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5705272926661706, -0.5187741757611795] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.39621512154380945, -0.8266169427583714] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5998506103856229, 0.20649810838181537] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7818704039090458, -0.0534248812924103] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.36926218582566595, -0.8124735044668254] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.32331878131562686, -0.8677891483889959] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.1290449870875241, 0.07781295283624523] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.4420304690684955, 0.8927212284791293] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9888291904437598, -0.3850362918656316] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.31661597893310267, 0.5802343500951346] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.21646976628371162, 0.2947411053334723] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.29128918905009993, 0.3840829629026685] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5248705620031009, 0.40693775648252073] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.03286144069348618, -0.8238026404084171] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7929793251387784, 0.38128302113881496] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7878133475037505, 0.09039732734964545] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.16380545601262586, -0.11867371326988208] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.24554097037521627, 0.5817444142036949] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7720122969892569, 0.7671602860822886] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.4600771619614137, 0.3058074243598101] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6596743348826015, 0.24903991939697834] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6754390902665843, -0.11581579549126975] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.26037565307167654, 0.3014450810911091] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5859972313917297, -0.29574292669439073] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6547053760007455, -0.8134858098332809] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.39502496145336696, -0.07910463349409946] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6404968174679637, 0.7522585913434119] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.708737754633114, -0.10304752771339043] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.823544814990536, 0.24258697772302584] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.46134519251293815, 0.3463415950737949] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.439369879225012, 0.005079888593249482] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.40737296309138227, 0.92748540167391] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.1615139329073254, -0.5191861631356667] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7753328743904291, -0.26574694974855895] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.49745416754458427, -0.06900158116717447] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6972797036554645, -0.783673684571871] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.32159746751456453, -0.563598727119424] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9237857797985622, 0.49400590784346043] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5338023771699412, -0.9919613631474586] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6212586052443347, 0.6670825361582766] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7474542629787022, -0.15955468997983324] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.06347650278672523, 0.3311952250858856] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2497714947828631, 0.8688992901635668] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9350623011869308, -0.7871248584390296] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3335841163095363, -0.7362230044862383] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.47041379988186005, -0.42406003037177564] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.4121373328792437, 0.7082311719308687] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.18881515555167105, 0.8636389701429894] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.1702041867191313, 0.38801306035614713] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7018816191548902, 0.34300188972288526] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.04335784711955171, -0.49495470083861903] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.16584434819359517, -0.2021970869075611] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.38073012575233633, 0.2550246525133968] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3984401815461185, -0.48818566334822266] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7431950985416771, 0.6181293259030411] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5181922146874904, 0.4234383674571265] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.760929899255256, 0.5750313756257595] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5348592814439441, 0.7760340140063193] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.14219290100374327, 0.5226491017848889] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6368940655027089, -0.8343745815677304] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5411357085818946, 0.7506963646171472] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5515268668614826, -0.6661269431386816] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.89184927563279, -0.5490420885696579] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8426219990302926, -0.18296070153335098] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9264101024853821, -0.209160264784793] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9403547391483578, 0.1382679948560619] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9584194930089462, -0.42673990490320035] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.372040198476852, 0.8801070632814318] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.712207589472392, 0.37360990306238673] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6212104004289007, 0.6975049145474674] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6306654856676688, -0.026717306203241087] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3585068182243303, -0.32382237734922414] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.47354215674392597, -0.26049350307702035] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3214969041931357, -0.7793433268031573] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.291689526488502, 0.7761923467033163] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.07529473765675165, -0.06537965954956881] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.4272940536750953, -0.26251784028005876] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2762133410924834, -0.5733640751919471] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.993575664519248, 0.37970688045041046] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.1608215877399961, -0.24355638133578505] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9924050084103198, 0.03647091715523443] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7157975802806034, 0.9699689404742724] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5973945285434739, -0.9366721612460895] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.2907549471410933, -0.8412185994097929] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6557849145987489, 0.03986958678365715] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.012781365496710162, 0.28313858333739983] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.4935366823869316, -0.75246345822501] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6790699457379641, 0.16903439731557857] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8249683341095433, 0.3686548095308311] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5447630902238818, -0.7216036466638607] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7527671448998485, -0.6846787131393621] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6391169059739594, -0.25550707673508644] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8606599855187671, 0.48303245885869384] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.26634978701510104, 0.8538935113949537] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.21316527985415723, 0.24934814569995867] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.841752162773787, -0.23897766157999856] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6762778277856452, -0.5014904988772217] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.4720763414299345, -0.45770043940331684] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.25497063549124777, -0.9133140825536734] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6064543353951124, -0.16019123914114042] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.1739195098881985, 0.7945203568397328] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.559488486295816, 0.22772196463029282] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.048829683014756764, 0.9768018246118526] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9050480159671528, 0.8569378906059781] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9850439930490897, 0.14766896474491276] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.42582624994509066, 0.24862769375376859] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.357319350647165, 0.4677486665250732] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.0973008608383985, -0.5808950892511295] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.48830340671918115, 0.18279503567088318] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9611833807732486, 0.08907079292911124] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5492977526077758, 0.6220576567058327] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8777408553511292, 0.4345406393752844] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.4775611114713718, 0.27897689813922666] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5004448012566791, -0.29060251077235444] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7820698542505791, 0.7209013367883137] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.11984006581584206, 0.9014937273761303] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.012899130043940943, 0.13698935404191603] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9731140329364063, 0.9532214557569847] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7873935468343616, 0.6143622116052394] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.07675467033962402, 0.0007515515922897897] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.19450603554449675, 0.025248153491577163] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8796096138837468, 0.9162253368065127] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.014266605994106119, -0.416790426816938] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7596995382216134, 0.029576074570471622] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.13167426774319102, -0.5258071539899354] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.41642019370239636, 0.9931129409451818] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.702318031018554, 0.18884427243657154] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.09701800822859363, 0.8078932526721978] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.26962708120111545, 0.07401536431574662] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3828948673191066, -0.2519389298846182] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9662930639751641, 0.07716678340956173] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6693233355344335, -0.7309061298103319] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.004205577527328419, 0.2529196135912817] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.21004856518198967, 0.057438738165112024] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9522297634183543, -0.8504122689563176] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.70610790317554, -0.06215442473006183] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.25127464448995784, -0.028908390278758578] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9965927930246741, -0.5398239445086417] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7394184740268668, -0.4761322499247762] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9564462053464462, 0.8945486105347387] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3577597759858011, 0.7407337135643424] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.4325658891684667, 0.8973795273567826] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.569029675530524, -0.7495660003967344] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.12272966698869547, 0.9656504267215578] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.4765791198023841, 0.6549636864327986] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.273104653619864, 0.9066903851479546] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6741197318408796, -0.5382401936493468] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.37016150505420997, -0.5932078932531306] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7111685530926244, 0.21241188561059765] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.412438638171142, 0.9259213532244646] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2694976620075047, 0.2907379265967944] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.822356130156165, -0.8096495054511661] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9171117904385198, -0.8730539985722712] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.802162631626409, -0.9497506666904711] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3837293171721958, 0.6503695140354577] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.20349309212103384, 0.0254855959996525] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5869975141596551, 0.08694431220685761] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.21883659629261354, -0.8753852777751687] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6263702561333835, -0.3051242233721694] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.30391613877514345, -0.3243607477494881] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.16839876086786498, 0.6530629475586269] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5183657464628499, -0.370080203192245] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.21443879236226326, -0.7133939386972492] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.4701036127703695, 0.10035194550796289] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.008929530802198826, -0.42834314230686266] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8886070865533644, -0.6708031913155312] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3253897748417405, -0.5940875654531896] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.31107978024711613, 0.5478423422904113] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9684917668544752, 0.965870686981837] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3448026824894561, -0.14064707419363032] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.4500650548649303, 0.736984599846723] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3812392824646129, -0.6028917156016185] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.08347535381255078, 0.840134507550339] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6191701776973368, -0.1659632702883327] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.938906044016123, -0.9770902191788564] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.18268691688936478, 0.08157086615112519] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8538570907354774, -0.44774297119330964] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5960198539791763, 0.6079527658068486] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7474196857283872, 0.8280491002448085] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.404827949165548, 0.21358424025639433] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.013095991143042163, 0.877982133662377] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.4596655005959027, -0.126778148791733] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.06759579229030743, -0.5773759251138024] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.756567401374804, -0.26147471084133356] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.857806997195643, -0.6568849992320085] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6456862812573019, 0.01311245720863008] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5089804093399954, 0.050593542218491994] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.925816958628503, -0.48210082007811117] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8550034587951294, 0.18408320416432655] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.4968721077635494, -0.11051876653338999] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7517565286997767, -0.6303459989277558] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.16736863731161877, 0.6729300272230812] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8584281173712127, 0.15782319463966665] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.4789576160444873, 0.1569665927600008] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6318459273880799, 0.6450070824485707] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.47847232182376853, 0.1813290455636416] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7669488437759688, 0.4181878109145378] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.419121640378584, -0.13025508482129222] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7386184001208416, 0.35807901968761646] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.2689430941423385, -0.3074667768980319] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.0020544005952070066, 0.8708801820610019] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5247463767686309, -0.6712389811834485] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.22737098765849062, -0.35182620949559107] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6411939031383453, -0.532969282636822] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.4912837187824479, 0.90540005369715] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8054048241057568, -0.5574842015306096] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7102571895333352, 0.22929048910929684] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6782045691350165, -0.6807906807109538] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9924152603075109, -0.9341524196454798] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.1997131634949314, 0.9735598861708286] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.06624650353887374, 0.15278625913339594] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6771113678214808, 0.7273494682759485] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.2190221904877081, -0.44929802215066017] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.00006564304458045456, -0.9831034644068746] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5010416038685639, 0.052456658145547674] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.18595589616088803, -0.22213525965428493] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.25397655794694485, -0.7838049158478957] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.2227256615325146, 0.8991190296910374] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.29447145789655904, 0.6747263192933031] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.03494230145311095, -0.4265645793751145] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.020409290392173318, -0.30938175144596025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7335934673327249, 0.34441580346769074] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7321534326493491, 0.3485170647918352] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7317466907679879, 0.7273609200964359] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5499365261797502, -0.5555524103649092] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.2900488904101901, 0.17574361800391314] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.621398895493912, -0.8215110591960437] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6369390685500185, -0.505429662050608] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.39554566111431244, 0.3063307776457429] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3929081100639227, 0.48460909328785284] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8358842443624281, -0.7227100494076897] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7138479897539418, 0.8699487104758998] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.0723057656497752, 0.6461776565695825] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2917890585910268, 0.14715266479287292] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2247706158014764, -0.792114327320153] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7465857527178685, -0.08101569547060539] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.4631725909956268, 0.5091320381781688] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6530348530671972, -0.06087124985806058] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8407153475638633, 0.8090957199479702] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.08253633180004005, 0.9227542204431596] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9656420992427366, -0.6636455443328901] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.4974745204721316, -0.3143174022912163] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.12896398244104113, 0.44159779346374783] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.03186456853367492, -0.45752777975649384] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7016889192479141, -0.11321107963984467] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6390691638789594, 0.050555524113967465] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5822318730972413, 0.7526994507550624] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.31162040293415316, 0.37325852170770046] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9610515420192867, -0.8112921146237815] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9356160226053918, -0.4143406821184219] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6930818325992485, 0.12103915584784586] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.44684825890050117, -0.8698047145763916] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.1478252552013739, 0.6912911452718413] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3540175801312557, 0.121334017850526] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6571441094158765, -0.9514911773989625] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.06549518634693507, 0.7486461715090473] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5353487996067878, 0.06312759738651197] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.009053305085289676, -0.4310832759965577] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.4953117324690264, 0.11574003659569243] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.005585477087625801, 0.11194620607121619] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.870669594057337, 0.39969466936984777] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5103791689152009, -0.3815167585223542] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9823458094091806, -0.6939736519826449] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.1545969805537304, 0.555072185150201] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3176174608398359, 0.6054703742836565] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.42113068594290315, -0.6900521637268926] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8662300880013363, -0.3765013942370099] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8767590987628986, 0.740524541587062] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7575986084956656, 0.7602464350333813] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2183856061324052, 0.7981018116823164] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.30229875572462506, 0.2567493033218269] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.36031348476769054, 0.9432008199343831] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8928844324439518, 0.8333220090930156] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6275530901748292, 0.2205866711960467] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5770369149611887, -0.6889868278622813] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7436040879915518, -0.5272945742614743] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7894842115149379, 0.35182571415183705] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.01820158252605486, -0.7171619603532902] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.06981517882851307, 0.6224075263544488] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.0267418187843127, 0.3776323331971492] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8672441677292384, -0.6967057334766409] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.1042785489570961, -0.1398547359381288] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.673475781526423, 0.02303081487826386] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3917209276949145, -0.16096076185649055] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.48762497607762567, 0.292922531917017] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.2263517916741833, -0.651466895049603] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7323652738567215, -0.31781503745077044] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.21696818524404682, -0.9628173724124514] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8164886633745665, 0.07014573297590454] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5095636170008913, 0.8594761596687648] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6757495367689943, 0.30211526394145194] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5156749651761987, 0.859993848070916] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5456260288239965, -0.9979043443414413] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8418119714045948, 0.4212965020133388] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.42248685701898214, 0.5936273988914125] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.09451522766858123, -0.5116192105248407] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8033556753616176, 0.374004110031835] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7007666506006465, 0.49526517857659025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7682335448122979, -0.008927733425842188] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.524527938076778, 0.7258813132607909] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5698226290732031, 0.7513529149483649] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6654695225591087, -0.4651584639515951] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.37704846956719473, 0.4203942642942806] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.4333715038690844, 0.5934012351428279] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5470937998217131, 0.7418814021327114] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.26572054739215334, 0.019507885581563134] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.12153067406331886, 0.5505515705853776] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.22832358453606405, 0.08440667887936915] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.4715901158986071, 0.7729315293363062] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.46044561182537747, -0.6553047329956678] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.563865869270892, 0.3127775225707312] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8825938277468417, -0.967428586878567] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.14318415790832884, -0.43911774160858874] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.22288032566551896, -0.9908435149416133] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.017116337831216466, -0.277822932353859] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6209247081063345, -0.8486795701477288] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.11128564629701954, -0.3065922268391166] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.15064374932397717, -0.7210954613896674] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.961837429018443, 0.23031717219096937] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.551853206899525, 0.6772131515283477] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9793627380652654, -0.24860911736444047] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8892177776227665, -0.6071060897664369] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.1747706863074514, 0.20713131212425662] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8843413179144095, -0.3226349357124718] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6058283366958306, -0.5138395427641669] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.4561255350583777, -0.7611137943446735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5124926798559493, -0.378345292390986] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2905706804168249, 0.43592999905588803] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8501895144064266, -0.46623846499385113] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.13611621159523724, 0.7597671494059224] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.07015232070892408, 0.3857738767534813] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.25526193699802047, -0.6520527013002893] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.039663797279961166, 0.8605693829522134] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9119947825256616, -0.919685345195135] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9485318917857022, -0.8981880893736007] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.2708517216453181, 0.5999456757703756] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.40258529561527334, -0.346411509324259] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9341516846909439, 0.9627294130678443] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.380987949542245, -0.36689782373986946] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.10290827283385173, -0.3205633962220191] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3553882372952373, -0.7957952568101301] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6361723958951315, -0.4917701866359545] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9472483687136442, 0.5324735427804215] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5532974316393049, 0.0014871376743736953] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.32510796093051564, -0.44625150047606166] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3898867697063664, 0.7557122495010522] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.47612389034956726, -0.8675433820857714] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2855443729268736, 0.47506131332245527] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7266744333780828, 0.3559576081521034] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.05553899074541091, -0.3873788013086985] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5139240499789275, -0.6397510855752797] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6383170286944755, 0.9887592774895242] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7659516993761537, 0.15481006881119885] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7734488015305949, 0.12174248621589934] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6155652394556719, 0.49428692234794314] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6892536214056277, -0.9503146865801217] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8737304778767299, -0.7599000272195489] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6864162894219374, 0.9598513226960632] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.06313214328432304, 0.2734217344805363] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8941803313231, -0.849294115617429] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9688286690561152, -0.13833772885570372] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6233837009283731, -0.8516191074829047] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9495260366291829, -0.3033288313421285] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.32774939757561317, 0.5461831964564228] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5729661035062232, -0.3119960048903456] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.870745020411821, 0.8545412870841043] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.11134069085109344, -0.4246422276256925] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8148903573949031, 0.7483316037580976] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.10515037621590073, -0.5242746949953236] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8205935735863661, 0.5634960996499045] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.12765005184760092, 0.2279657868737961] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3912877276412945, 0.6225492432838924] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.13801376850893599, 0.747107802328733] } } ] } ================================================ FILE: packages/turf-quadrat-analysis/test/out/smallBox.json ================================================ { "type": "Feature", "bbox": [-1, -1, 1, 1], "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, -1], [1, -1], [1, 1], [-1, 1], [-1, -1] ] ] } } ================================================ FILE: packages/turf-quadrat-analysis/test/out/smallGrid.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.9512548706043196, -0.9511099751705248], [-0.9512548706043196, -0.8509931356788906], [-0.8511227789617596, -0.8509931356788906], [-0.8511227789617596, -0.9511099751705248], [-0.9512548706043196, -0.9511099751705248] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.9512548706043196, -0.8509931356788906], [-0.9512548706043196, -0.7508762961872564], [-0.8511227789617596, -0.7508762961872564], [-0.8511227789617596, -0.8509931356788906], [-0.9512548706043196, -0.8509931356788906] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.9512548706043196, -0.7508762961872564], [-0.9512548706043196, -0.6507594566956222], [-0.8511227789617596, -0.6507594566956222], [-0.8511227789617596, -0.7508762961872564], [-0.9512548706043196, -0.7508762961872564] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.9512548706043196, -0.6507594566956222], [-0.9512548706043196, -0.550642617203988], [-0.8511227789617596, -0.550642617203988], [-0.8511227789617596, -0.6507594566956222], [-0.9512548706043196, -0.6507594566956222] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.9512548706043196, -0.550642617203988], [-0.9512548706043196, -0.4505257777123538], [-0.8511227789617596, -0.4505257777123538], [-0.8511227789617596, -0.550642617203988], [-0.9512548706043196, -0.550642617203988] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.9512548706043196, -0.4505257777123538], [-0.9512548706043196, -0.3504089382207196], [-0.8511227789617596, -0.3504089382207196], [-0.8511227789617596, -0.4505257777123538], [-0.9512548706043196, -0.4505257777123538] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.9512548706043196, -0.3504089382207196], [-0.9512548706043196, -0.2502920987290854], [-0.8511227789617596, -0.2502920987290854], [-0.8511227789617596, -0.3504089382207196], [-0.9512548706043196, -0.3504089382207196] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.9512548706043196, -0.2502920987290854], [-0.9512548706043196, -0.15017525923745123], [-0.8511227789617596, -0.15017525923745123], [-0.8511227789617596, -0.2502920987290854], [-0.9512548706043196, -0.2502920987290854] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.9512548706043196, -0.15017525923745123], [-0.9512548706043196, -0.05005841974581704], [-0.8511227789617596, -0.05005841974581704], [-0.8511227789617596, -0.15017525923745123], [-0.9512548706043196, -0.15017525923745123] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.9512548706043196, -0.05005841974581704], [-0.9512548706043196, 0.05005841974581715], [-0.8511227789617596, 0.05005841974581715], [-0.8511227789617596, -0.05005841974581704], [-0.9512548706043196, -0.05005841974581704] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.9512548706043196, 0.05005841974581715], [-0.9512548706043196, 0.15017525923745134], [-0.8511227789617596, 0.15017525923745134], [-0.8511227789617596, 0.05005841974581715], [-0.9512548706043196, 0.05005841974581715] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.9512548706043196, 0.15017525923745134], [-0.9512548706043196, 0.25029209872908553], [-0.8511227789617596, 0.25029209872908553], [-0.8511227789617596, 0.15017525923745134], [-0.9512548706043196, 0.15017525923745134] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.9512548706043196, 0.25029209872908553], [-0.9512548706043196, 0.3504089382207197], [-0.8511227789617596, 0.3504089382207197], [-0.8511227789617596, 0.25029209872908553], [-0.9512548706043196, 0.25029209872908553] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.9512548706043196, 0.3504089382207197], [-0.9512548706043196, 0.4505257777123539], [-0.8511227789617596, 0.4505257777123539], [-0.8511227789617596, 0.3504089382207197], [-0.9512548706043196, 0.3504089382207197] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.9512548706043196, 0.4505257777123539], [-0.9512548706043196, 0.5506426172039881], [-0.8511227789617596, 0.5506426172039881], [-0.8511227789617596, 0.4505257777123539], [-0.9512548706043196, 0.4505257777123539] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.9512548706043196, 0.5506426172039881], [-0.9512548706043196, 0.6507594566956223], [-0.8511227789617596, 0.6507594566956223], [-0.8511227789617596, 0.5506426172039881], [-0.9512548706043196, 0.5506426172039881] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.9512548706043196, 0.6507594566956223], [-0.9512548706043196, 0.7508762961872565], [-0.8511227789617596, 0.7508762961872565], [-0.8511227789617596, 0.6507594566956223], [-0.9512548706043196, 0.6507594566956223] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.9512548706043196, 0.7508762961872565], [-0.9512548706043196, 0.8509931356788907], [-0.8511227789617596, 0.8509931356788907], [-0.8511227789617596, 0.7508762961872565], [-0.9512548706043196, 0.7508762961872565] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.9512548706043196, 0.8509931356788907], [-0.9512548706043196, 0.9511099751705249], [-0.8511227789617596, 0.9511099751705249], [-0.8511227789617596, 0.8509931356788907], [-0.9512548706043196, 0.8509931356788907] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.8511227789617596, -0.9511099751705248], [-0.8511227789617596, -0.8509931356788906], [-0.7509906873191996, -0.8509931356788906], [-0.7509906873191996, -0.9511099751705248], [-0.8511227789617596, -0.9511099751705248] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.8511227789617596, -0.8509931356788906], [-0.8511227789617596, -0.7508762961872564], [-0.7509906873191996, -0.7508762961872564], [-0.7509906873191996, -0.8509931356788906], [-0.8511227789617596, -0.8509931356788906] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.8511227789617596, -0.7508762961872564], [-0.8511227789617596, -0.6507594566956222], [-0.7509906873191996, -0.6507594566956222], [-0.7509906873191996, -0.7508762961872564], [-0.8511227789617596, -0.7508762961872564] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.8511227789617596, -0.6507594566956222], [-0.8511227789617596, -0.550642617203988], [-0.7509906873191996, -0.550642617203988], [-0.7509906873191996, -0.6507594566956222], [-0.8511227789617596, -0.6507594566956222] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.8511227789617596, -0.550642617203988], [-0.8511227789617596, -0.4505257777123538], [-0.7509906873191996, -0.4505257777123538], [-0.7509906873191996, -0.550642617203988], [-0.8511227789617596, -0.550642617203988] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.8511227789617596, -0.4505257777123538], [-0.8511227789617596, -0.3504089382207196], [-0.7509906873191996, -0.3504089382207196], [-0.7509906873191996, -0.4505257777123538], [-0.8511227789617596, -0.4505257777123538] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.8511227789617596, -0.3504089382207196], [-0.8511227789617596, -0.2502920987290854], [-0.7509906873191996, -0.2502920987290854], [-0.7509906873191996, -0.3504089382207196], [-0.8511227789617596, -0.3504089382207196] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.8511227789617596, -0.2502920987290854], [-0.8511227789617596, -0.15017525923745123], [-0.7509906873191996, -0.15017525923745123], [-0.7509906873191996, -0.2502920987290854], [-0.8511227789617596, -0.2502920987290854] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.8511227789617596, -0.15017525923745123], [-0.8511227789617596, -0.05005841974581704], [-0.7509906873191996, -0.05005841974581704], [-0.7509906873191996, -0.15017525923745123], [-0.8511227789617596, -0.15017525923745123] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.8511227789617596, -0.05005841974581704], [-0.8511227789617596, 0.05005841974581715], [-0.7509906873191996, 0.05005841974581715], [-0.7509906873191996, -0.05005841974581704], [-0.8511227789617596, -0.05005841974581704] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.8511227789617596, 0.05005841974581715], [-0.8511227789617596, 0.15017525923745134], [-0.7509906873191996, 0.15017525923745134], [-0.7509906873191996, 0.05005841974581715], [-0.8511227789617596, 0.05005841974581715] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.8511227789617596, 0.15017525923745134], [-0.8511227789617596, 0.25029209872908553], [-0.7509906873191996, 0.25029209872908553], [-0.7509906873191996, 0.15017525923745134], [-0.8511227789617596, 0.15017525923745134] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.8511227789617596, 0.25029209872908553], [-0.8511227789617596, 0.3504089382207197], [-0.7509906873191996, 0.3504089382207197], [-0.7509906873191996, 0.25029209872908553], [-0.8511227789617596, 0.25029209872908553] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.8511227789617596, 0.3504089382207197], [-0.8511227789617596, 0.4505257777123539], [-0.7509906873191996, 0.4505257777123539], [-0.7509906873191996, 0.3504089382207197], [-0.8511227789617596, 0.3504089382207197] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.8511227789617596, 0.4505257777123539], [-0.8511227789617596, 0.5506426172039881], [-0.7509906873191996, 0.5506426172039881], [-0.7509906873191996, 0.4505257777123539], [-0.8511227789617596, 0.4505257777123539] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.8511227789617596, 0.5506426172039881], [-0.8511227789617596, 0.6507594566956223], [-0.7509906873191996, 0.6507594566956223], [-0.7509906873191996, 0.5506426172039881], [-0.8511227789617596, 0.5506426172039881] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.8511227789617596, 0.6507594566956223], [-0.8511227789617596, 0.7508762961872565], [-0.7509906873191996, 0.7508762961872565], [-0.7509906873191996, 0.6507594566956223], [-0.8511227789617596, 0.6507594566956223] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.8511227789617596, 0.7508762961872565], [-0.8511227789617596, 0.8509931356788907], [-0.7509906873191996, 0.8509931356788907], [-0.7509906873191996, 0.7508762961872565], [-0.8511227789617596, 0.7508762961872565] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.8511227789617596, 0.8509931356788907], [-0.8511227789617596, 0.9511099751705249], [-0.7509906873191996, 0.9511099751705249], [-0.7509906873191996, 0.8509931356788907], [-0.8511227789617596, 0.8509931356788907] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.7509906873191996, -0.9511099751705248], [-0.7509906873191996, -0.8509931356788906], [-0.6508585956766396, -0.8509931356788906], [-0.6508585956766396, -0.9511099751705248], [-0.7509906873191996, -0.9511099751705248] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.7509906873191996, -0.8509931356788906], [-0.7509906873191996, -0.7508762961872564], [-0.6508585956766396, -0.7508762961872564], [-0.6508585956766396, -0.8509931356788906], [-0.7509906873191996, -0.8509931356788906] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.7509906873191996, -0.7508762961872564], [-0.7509906873191996, -0.6507594566956222], [-0.6508585956766396, -0.6507594566956222], [-0.6508585956766396, -0.7508762961872564], [-0.7509906873191996, -0.7508762961872564] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.7509906873191996, -0.6507594566956222], [-0.7509906873191996, -0.550642617203988], [-0.6508585956766396, -0.550642617203988], [-0.6508585956766396, -0.6507594566956222], [-0.7509906873191996, -0.6507594566956222] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.7509906873191996, -0.550642617203988], [-0.7509906873191996, -0.4505257777123538], [-0.6508585956766396, -0.4505257777123538], [-0.6508585956766396, -0.550642617203988], [-0.7509906873191996, -0.550642617203988] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.7509906873191996, -0.4505257777123538], [-0.7509906873191996, -0.3504089382207196], [-0.6508585956766396, -0.3504089382207196], [-0.6508585956766396, -0.4505257777123538], [-0.7509906873191996, -0.4505257777123538] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.7509906873191996, -0.3504089382207196], [-0.7509906873191996, -0.2502920987290854], [-0.6508585956766396, -0.2502920987290854], [-0.6508585956766396, -0.3504089382207196], [-0.7509906873191996, -0.3504089382207196] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.7509906873191996, -0.2502920987290854], [-0.7509906873191996, -0.15017525923745123], [-0.6508585956766396, -0.15017525923745123], [-0.6508585956766396, -0.2502920987290854], [-0.7509906873191996, -0.2502920987290854] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.7509906873191996, -0.15017525923745123], [-0.7509906873191996, -0.05005841974581704], [-0.6508585956766396, -0.05005841974581704], [-0.6508585956766396, -0.15017525923745123], [-0.7509906873191996, -0.15017525923745123] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.7509906873191996, -0.05005841974581704], [-0.7509906873191996, 0.05005841974581715], [-0.6508585956766396, 0.05005841974581715], [-0.6508585956766396, -0.05005841974581704], [-0.7509906873191996, -0.05005841974581704] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.7509906873191996, 0.05005841974581715], [-0.7509906873191996, 0.15017525923745134], [-0.6508585956766396, 0.15017525923745134], [-0.6508585956766396, 0.05005841974581715], [-0.7509906873191996, 0.05005841974581715] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.7509906873191996, 0.15017525923745134], [-0.7509906873191996, 0.25029209872908553], [-0.6508585956766396, 0.25029209872908553], [-0.6508585956766396, 0.15017525923745134], [-0.7509906873191996, 0.15017525923745134] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.7509906873191996, 0.25029209872908553], [-0.7509906873191996, 0.3504089382207197], [-0.6508585956766396, 0.3504089382207197], [-0.6508585956766396, 0.25029209872908553], [-0.7509906873191996, 0.25029209872908553] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.7509906873191996, 0.3504089382207197], [-0.7509906873191996, 0.4505257777123539], [-0.6508585956766396, 0.4505257777123539], [-0.6508585956766396, 0.3504089382207197], [-0.7509906873191996, 0.3504089382207197] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.7509906873191996, 0.4505257777123539], [-0.7509906873191996, 0.5506426172039881], [-0.6508585956766396, 0.5506426172039881], [-0.6508585956766396, 0.4505257777123539], [-0.7509906873191996, 0.4505257777123539] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.7509906873191996, 0.5506426172039881], [-0.7509906873191996, 0.6507594566956223], [-0.6508585956766396, 0.6507594566956223], [-0.6508585956766396, 0.5506426172039881], [-0.7509906873191996, 0.5506426172039881] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.7509906873191996, 0.6507594566956223], [-0.7509906873191996, 0.7508762961872565], [-0.6508585956766396, 0.7508762961872565], [-0.6508585956766396, 0.6507594566956223], [-0.7509906873191996, 0.6507594566956223] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.7509906873191996, 0.7508762961872565], [-0.7509906873191996, 0.8509931356788907], [-0.6508585956766396, 0.8509931356788907], [-0.6508585956766396, 0.7508762961872565], [-0.7509906873191996, 0.7508762961872565] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.7509906873191996, 0.8509931356788907], [-0.7509906873191996, 0.9511099751705249], [-0.6508585956766396, 0.9511099751705249], [-0.6508585956766396, 0.8509931356788907], [-0.7509906873191996, 0.8509931356788907] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6508585956766396, -0.9511099751705248], [-0.6508585956766396, -0.8509931356788906], [-0.5507265040340796, -0.8509931356788906], [-0.5507265040340796, -0.9511099751705248], [-0.6508585956766396, -0.9511099751705248] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6508585956766396, -0.8509931356788906], [-0.6508585956766396, -0.7508762961872564], [-0.5507265040340796, -0.7508762961872564], [-0.5507265040340796, -0.8509931356788906], [-0.6508585956766396, -0.8509931356788906] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6508585956766396, -0.7508762961872564], [-0.6508585956766396, -0.6507594566956222], [-0.5507265040340796, -0.6507594566956222], [-0.5507265040340796, -0.7508762961872564], [-0.6508585956766396, -0.7508762961872564] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6508585956766396, -0.6507594566956222], [-0.6508585956766396, -0.550642617203988], [-0.5507265040340796, -0.550642617203988], [-0.5507265040340796, -0.6507594566956222], [-0.6508585956766396, -0.6507594566956222] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6508585956766396, -0.550642617203988], [-0.6508585956766396, -0.4505257777123538], [-0.5507265040340796, -0.4505257777123538], [-0.5507265040340796, -0.550642617203988], [-0.6508585956766396, -0.550642617203988] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6508585956766396, -0.4505257777123538], [-0.6508585956766396, -0.3504089382207196], [-0.5507265040340796, -0.3504089382207196], [-0.5507265040340796, -0.4505257777123538], [-0.6508585956766396, -0.4505257777123538] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6508585956766396, -0.3504089382207196], [-0.6508585956766396, -0.2502920987290854], [-0.5507265040340796, -0.2502920987290854], [-0.5507265040340796, -0.3504089382207196], [-0.6508585956766396, -0.3504089382207196] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6508585956766396, -0.2502920987290854], [-0.6508585956766396, -0.15017525923745123], [-0.5507265040340796, -0.15017525923745123], [-0.5507265040340796, -0.2502920987290854], [-0.6508585956766396, -0.2502920987290854] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6508585956766396, -0.15017525923745123], [-0.6508585956766396, -0.05005841974581704], [-0.5507265040340796, -0.05005841974581704], [-0.5507265040340796, -0.15017525923745123], [-0.6508585956766396, -0.15017525923745123] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6508585956766396, -0.05005841974581704], [-0.6508585956766396, 0.05005841974581715], [-0.5507265040340796, 0.05005841974581715], [-0.5507265040340796, -0.05005841974581704], [-0.6508585956766396, -0.05005841974581704] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6508585956766396, 0.05005841974581715], [-0.6508585956766396, 0.15017525923745134], [-0.5507265040340796, 0.15017525923745134], [-0.5507265040340796, 0.05005841974581715], [-0.6508585956766396, 0.05005841974581715] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6508585956766396, 0.15017525923745134], [-0.6508585956766396, 0.25029209872908553], [-0.5507265040340796, 0.25029209872908553], [-0.5507265040340796, 0.15017525923745134], [-0.6508585956766396, 0.15017525923745134] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6508585956766396, 0.25029209872908553], [-0.6508585956766396, 0.3504089382207197], [-0.5507265040340796, 0.3504089382207197], [-0.5507265040340796, 0.25029209872908553], [-0.6508585956766396, 0.25029209872908553] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6508585956766396, 0.3504089382207197], [-0.6508585956766396, 0.4505257777123539], [-0.5507265040340796, 0.4505257777123539], [-0.5507265040340796, 0.3504089382207197], [-0.6508585956766396, 0.3504089382207197] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6508585956766396, 0.4505257777123539], [-0.6508585956766396, 0.5506426172039881], [-0.5507265040340796, 0.5506426172039881], [-0.5507265040340796, 0.4505257777123539], [-0.6508585956766396, 0.4505257777123539] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6508585956766396, 0.5506426172039881], [-0.6508585956766396, 0.6507594566956223], [-0.5507265040340796, 0.6507594566956223], [-0.5507265040340796, 0.5506426172039881], [-0.6508585956766396, 0.5506426172039881] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6508585956766396, 0.6507594566956223], [-0.6508585956766396, 0.7508762961872565], [-0.5507265040340796, 0.7508762961872565], [-0.5507265040340796, 0.6507594566956223], [-0.6508585956766396, 0.6507594566956223] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6508585956766396, 0.7508762961872565], [-0.6508585956766396, 0.8509931356788907], [-0.5507265040340796, 0.8509931356788907], [-0.5507265040340796, 0.7508762961872565], [-0.6508585956766396, 0.7508762961872565] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.6508585956766396, 0.8509931356788907], [-0.6508585956766396, 0.9511099751705249], [-0.5507265040340796, 0.9511099751705249], [-0.5507265040340796, 0.8509931356788907], [-0.6508585956766396, 0.8509931356788907] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.5507265040340796, -0.9511099751705248], [-0.5507265040340796, -0.8509931356788906], [-0.45059441239151965, -0.8509931356788906], [-0.45059441239151965, -0.9511099751705248], [-0.5507265040340796, -0.9511099751705248] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.5507265040340796, -0.8509931356788906], [-0.5507265040340796, -0.7508762961872564], [-0.45059441239151965, -0.7508762961872564], [-0.45059441239151965, -0.8509931356788906], [-0.5507265040340796, -0.8509931356788906] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.5507265040340796, -0.7508762961872564], [-0.5507265040340796, -0.6507594566956222], [-0.45059441239151965, -0.6507594566956222], [-0.45059441239151965, -0.7508762961872564], [-0.5507265040340796, -0.7508762961872564] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.5507265040340796, -0.6507594566956222], [-0.5507265040340796, -0.550642617203988], [-0.45059441239151965, -0.550642617203988], [-0.45059441239151965, -0.6507594566956222], [-0.5507265040340796, -0.6507594566956222] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.5507265040340796, -0.550642617203988], [-0.5507265040340796, -0.4505257777123538], [-0.45059441239151965, -0.4505257777123538], [-0.45059441239151965, -0.550642617203988], [-0.5507265040340796, -0.550642617203988] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.5507265040340796, -0.4505257777123538], [-0.5507265040340796, -0.3504089382207196], [-0.45059441239151965, -0.3504089382207196], [-0.45059441239151965, -0.4505257777123538], [-0.5507265040340796, -0.4505257777123538] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.5507265040340796, -0.3504089382207196], [-0.5507265040340796, -0.2502920987290854], [-0.45059441239151965, -0.2502920987290854], [-0.45059441239151965, -0.3504089382207196], [-0.5507265040340796, -0.3504089382207196] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.5507265040340796, -0.2502920987290854], [-0.5507265040340796, -0.15017525923745123], [-0.45059441239151965, -0.15017525923745123], [-0.45059441239151965, -0.2502920987290854], [-0.5507265040340796, -0.2502920987290854] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.5507265040340796, -0.15017525923745123], [-0.5507265040340796, -0.05005841974581704], [-0.45059441239151965, -0.05005841974581704], [-0.45059441239151965, -0.15017525923745123], [-0.5507265040340796, -0.15017525923745123] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.5507265040340796, -0.05005841974581704], [-0.5507265040340796, 0.05005841974581715], [-0.45059441239151965, 0.05005841974581715], [-0.45059441239151965, -0.05005841974581704], [-0.5507265040340796, -0.05005841974581704] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.5507265040340796, 0.05005841974581715], [-0.5507265040340796, 0.15017525923745134], [-0.45059441239151965, 0.15017525923745134], [-0.45059441239151965, 0.05005841974581715], [-0.5507265040340796, 0.05005841974581715] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.5507265040340796, 0.15017525923745134], [-0.5507265040340796, 0.25029209872908553], [-0.45059441239151965, 0.25029209872908553], [-0.45059441239151965, 0.15017525923745134], [-0.5507265040340796, 0.15017525923745134] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.5507265040340796, 0.25029209872908553], [-0.5507265040340796, 0.3504089382207197], [-0.45059441239151965, 0.3504089382207197], [-0.45059441239151965, 0.25029209872908553], [-0.5507265040340796, 0.25029209872908553] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.5507265040340796, 0.3504089382207197], [-0.5507265040340796, 0.4505257777123539], [-0.45059441239151965, 0.4505257777123539], [-0.45059441239151965, 0.3504089382207197], [-0.5507265040340796, 0.3504089382207197] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.5507265040340796, 0.4505257777123539], [-0.5507265040340796, 0.5506426172039881], [-0.45059441239151965, 0.5506426172039881], [-0.45059441239151965, 0.4505257777123539], [-0.5507265040340796, 0.4505257777123539] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.5507265040340796, 0.5506426172039881], [-0.5507265040340796, 0.6507594566956223], [-0.45059441239151965, 0.6507594566956223], [-0.45059441239151965, 0.5506426172039881], [-0.5507265040340796, 0.5506426172039881] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.5507265040340796, 0.6507594566956223], [-0.5507265040340796, 0.7508762961872565], [-0.45059441239151965, 0.7508762961872565], [-0.45059441239151965, 0.6507594566956223], [-0.5507265040340796, 0.6507594566956223] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.5507265040340796, 0.7508762961872565], [-0.5507265040340796, 0.8509931356788907], [-0.45059441239151965, 0.8509931356788907], [-0.45059441239151965, 0.7508762961872565], [-0.5507265040340796, 0.7508762961872565] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.5507265040340796, 0.8509931356788907], [-0.5507265040340796, 0.9511099751705249], [-0.45059441239151965, 0.9511099751705249], [-0.45059441239151965, 0.8509931356788907], [-0.5507265040340796, 0.8509931356788907] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.45059441239151965, -0.9511099751705248], [-0.45059441239151965, -0.8509931356788906], [-0.35046232074895967, -0.8509931356788906], [-0.35046232074895967, -0.9511099751705248], [-0.45059441239151965, -0.9511099751705248] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.45059441239151965, -0.8509931356788906], [-0.45059441239151965, -0.7508762961872564], [-0.35046232074895967, -0.7508762961872564], [-0.35046232074895967, -0.8509931356788906], [-0.45059441239151965, -0.8509931356788906] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.45059441239151965, -0.7508762961872564], [-0.45059441239151965, -0.6507594566956222], [-0.35046232074895967, -0.6507594566956222], [-0.35046232074895967, -0.7508762961872564], [-0.45059441239151965, -0.7508762961872564] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.45059441239151965, -0.6507594566956222], [-0.45059441239151965, -0.550642617203988], [-0.35046232074895967, -0.550642617203988], [-0.35046232074895967, -0.6507594566956222], [-0.45059441239151965, -0.6507594566956222] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.45059441239151965, -0.550642617203988], [-0.45059441239151965, -0.4505257777123538], [-0.35046232074895967, -0.4505257777123538], [-0.35046232074895967, -0.550642617203988], [-0.45059441239151965, -0.550642617203988] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.45059441239151965, -0.4505257777123538], [-0.45059441239151965, -0.3504089382207196], [-0.35046232074895967, -0.3504089382207196], [-0.35046232074895967, -0.4505257777123538], [-0.45059441239151965, -0.4505257777123538] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.45059441239151965, -0.3504089382207196], [-0.45059441239151965, -0.2502920987290854], [-0.35046232074895967, -0.2502920987290854], [-0.35046232074895967, -0.3504089382207196], [-0.45059441239151965, -0.3504089382207196] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.45059441239151965, -0.2502920987290854], [-0.45059441239151965, -0.15017525923745123], [-0.35046232074895967, -0.15017525923745123], [-0.35046232074895967, -0.2502920987290854], [-0.45059441239151965, -0.2502920987290854] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.45059441239151965, -0.15017525923745123], [-0.45059441239151965, -0.05005841974581704], [-0.35046232074895967, -0.05005841974581704], [-0.35046232074895967, -0.15017525923745123], [-0.45059441239151965, -0.15017525923745123] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.45059441239151965, -0.05005841974581704], [-0.45059441239151965, 0.05005841974581715], [-0.35046232074895967, 0.05005841974581715], [-0.35046232074895967, -0.05005841974581704], [-0.45059441239151965, -0.05005841974581704] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.45059441239151965, 0.05005841974581715], [-0.45059441239151965, 0.15017525923745134], [-0.35046232074895967, 0.15017525923745134], [-0.35046232074895967, 0.05005841974581715], [-0.45059441239151965, 0.05005841974581715] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.45059441239151965, 0.15017525923745134], [-0.45059441239151965, 0.25029209872908553], [-0.35046232074895967, 0.25029209872908553], [-0.35046232074895967, 0.15017525923745134], [-0.45059441239151965, 0.15017525923745134] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.45059441239151965, 0.25029209872908553], [-0.45059441239151965, 0.3504089382207197], [-0.35046232074895967, 0.3504089382207197], [-0.35046232074895967, 0.25029209872908553], [-0.45059441239151965, 0.25029209872908553] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.45059441239151965, 0.3504089382207197], [-0.45059441239151965, 0.4505257777123539], [-0.35046232074895967, 0.4505257777123539], [-0.35046232074895967, 0.3504089382207197], [-0.45059441239151965, 0.3504089382207197] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.45059441239151965, 0.4505257777123539], [-0.45059441239151965, 0.5506426172039881], [-0.35046232074895967, 0.5506426172039881], [-0.35046232074895967, 0.4505257777123539], [-0.45059441239151965, 0.4505257777123539] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.45059441239151965, 0.5506426172039881], [-0.45059441239151965, 0.6507594566956223], [-0.35046232074895967, 0.6507594566956223], [-0.35046232074895967, 0.5506426172039881], [-0.45059441239151965, 0.5506426172039881] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.45059441239151965, 0.6507594566956223], [-0.45059441239151965, 0.7508762961872565], [-0.35046232074895967, 0.7508762961872565], [-0.35046232074895967, 0.6507594566956223], [-0.45059441239151965, 0.6507594566956223] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.45059441239151965, 0.7508762961872565], [-0.45059441239151965, 0.8509931356788907], [-0.35046232074895967, 0.8509931356788907], [-0.35046232074895967, 0.7508762961872565], [-0.45059441239151965, 0.7508762961872565] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.45059441239151965, 0.8509931356788907], [-0.45059441239151965, 0.9511099751705249], [-0.35046232074895967, 0.9511099751705249], [-0.35046232074895967, 0.8509931356788907], [-0.45059441239151965, 0.8509931356788907] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.35046232074895967, -0.9511099751705248], [-0.35046232074895967, -0.8509931356788906], [-0.2503302291063997, -0.8509931356788906], [-0.2503302291063997, -0.9511099751705248], [-0.35046232074895967, -0.9511099751705248] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.35046232074895967, -0.8509931356788906], [-0.35046232074895967, -0.7508762961872564], [-0.2503302291063997, -0.7508762961872564], [-0.2503302291063997, -0.8509931356788906], [-0.35046232074895967, -0.8509931356788906] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.35046232074895967, -0.7508762961872564], [-0.35046232074895967, -0.6507594566956222], [-0.2503302291063997, -0.6507594566956222], [-0.2503302291063997, -0.7508762961872564], [-0.35046232074895967, -0.7508762961872564] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.35046232074895967, -0.6507594566956222], [-0.35046232074895967, -0.550642617203988], [-0.2503302291063997, -0.550642617203988], [-0.2503302291063997, -0.6507594566956222], [-0.35046232074895967, -0.6507594566956222] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.35046232074895967, -0.550642617203988], [-0.35046232074895967, -0.4505257777123538], [-0.2503302291063997, -0.4505257777123538], [-0.2503302291063997, -0.550642617203988], [-0.35046232074895967, -0.550642617203988] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.35046232074895967, -0.4505257777123538], [-0.35046232074895967, -0.3504089382207196], [-0.2503302291063997, -0.3504089382207196], [-0.2503302291063997, -0.4505257777123538], [-0.35046232074895967, -0.4505257777123538] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.35046232074895967, -0.3504089382207196], [-0.35046232074895967, -0.2502920987290854], [-0.2503302291063997, -0.2502920987290854], [-0.2503302291063997, -0.3504089382207196], [-0.35046232074895967, -0.3504089382207196] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.35046232074895967, -0.2502920987290854], [-0.35046232074895967, -0.15017525923745123], [-0.2503302291063997, -0.15017525923745123], [-0.2503302291063997, -0.2502920987290854], [-0.35046232074895967, -0.2502920987290854] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.35046232074895967, -0.15017525923745123], [-0.35046232074895967, -0.05005841974581704], [-0.2503302291063997, -0.05005841974581704], [-0.2503302291063997, -0.15017525923745123], [-0.35046232074895967, -0.15017525923745123] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.35046232074895967, -0.05005841974581704], [-0.35046232074895967, 0.05005841974581715], [-0.2503302291063997, 0.05005841974581715], [-0.2503302291063997, -0.05005841974581704], [-0.35046232074895967, -0.05005841974581704] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.35046232074895967, 0.05005841974581715], [-0.35046232074895967, 0.15017525923745134], [-0.2503302291063997, 0.15017525923745134], [-0.2503302291063997, 0.05005841974581715], [-0.35046232074895967, 0.05005841974581715] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.35046232074895967, 0.15017525923745134], [-0.35046232074895967, 0.25029209872908553], [-0.2503302291063997, 0.25029209872908553], [-0.2503302291063997, 0.15017525923745134], [-0.35046232074895967, 0.15017525923745134] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.35046232074895967, 0.25029209872908553], [-0.35046232074895967, 0.3504089382207197], [-0.2503302291063997, 0.3504089382207197], [-0.2503302291063997, 0.25029209872908553], [-0.35046232074895967, 0.25029209872908553] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.35046232074895967, 0.3504089382207197], [-0.35046232074895967, 0.4505257777123539], [-0.2503302291063997, 0.4505257777123539], [-0.2503302291063997, 0.3504089382207197], [-0.35046232074895967, 0.3504089382207197] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.35046232074895967, 0.4505257777123539], [-0.35046232074895967, 0.5506426172039881], [-0.2503302291063997, 0.5506426172039881], [-0.2503302291063997, 0.4505257777123539], [-0.35046232074895967, 0.4505257777123539] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.35046232074895967, 0.5506426172039881], [-0.35046232074895967, 0.6507594566956223], [-0.2503302291063997, 0.6507594566956223], [-0.2503302291063997, 0.5506426172039881], [-0.35046232074895967, 0.5506426172039881] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.35046232074895967, 0.6507594566956223], [-0.35046232074895967, 0.7508762961872565], [-0.2503302291063997, 0.7508762961872565], [-0.2503302291063997, 0.6507594566956223], [-0.35046232074895967, 0.6507594566956223] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.35046232074895967, 0.7508762961872565], [-0.35046232074895967, 0.8509931356788907], [-0.2503302291063997, 0.8509931356788907], [-0.2503302291063997, 0.7508762961872565], [-0.35046232074895967, 0.7508762961872565] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.35046232074895967, 0.8509931356788907], [-0.35046232074895967, 0.9511099751705249], [-0.2503302291063997, 0.9511099751705249], [-0.2503302291063997, 0.8509931356788907], [-0.35046232074895967, 0.8509931356788907] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.2503302291063997, -0.9511099751705248], [-0.2503302291063997, -0.8509931356788906], [-0.15019813746383973, -0.8509931356788906], [-0.15019813746383973, -0.9511099751705248], [-0.2503302291063997, -0.9511099751705248] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.2503302291063997, -0.8509931356788906], [-0.2503302291063997, -0.7508762961872564], [-0.15019813746383973, -0.7508762961872564], [-0.15019813746383973, -0.8509931356788906], [-0.2503302291063997, -0.8509931356788906] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.2503302291063997, -0.7508762961872564], [-0.2503302291063997, -0.6507594566956222], [-0.15019813746383973, -0.6507594566956222], [-0.15019813746383973, -0.7508762961872564], [-0.2503302291063997, -0.7508762961872564] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.2503302291063997, -0.6507594566956222], [-0.2503302291063997, -0.550642617203988], [-0.15019813746383973, -0.550642617203988], [-0.15019813746383973, -0.6507594566956222], [-0.2503302291063997, -0.6507594566956222] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.2503302291063997, -0.550642617203988], [-0.2503302291063997, -0.4505257777123538], [-0.15019813746383973, -0.4505257777123538], [-0.15019813746383973, -0.550642617203988], [-0.2503302291063997, -0.550642617203988] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.2503302291063997, -0.4505257777123538], [-0.2503302291063997, -0.3504089382207196], [-0.15019813746383973, -0.3504089382207196], [-0.15019813746383973, -0.4505257777123538], [-0.2503302291063997, -0.4505257777123538] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.2503302291063997, -0.3504089382207196], [-0.2503302291063997, -0.2502920987290854], [-0.15019813746383973, -0.2502920987290854], [-0.15019813746383973, -0.3504089382207196], [-0.2503302291063997, -0.3504089382207196] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.2503302291063997, -0.2502920987290854], [-0.2503302291063997, -0.15017525923745123], [-0.15019813746383973, -0.15017525923745123], [-0.15019813746383973, -0.2502920987290854], [-0.2503302291063997, -0.2502920987290854] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.2503302291063997, -0.15017525923745123], [-0.2503302291063997, -0.05005841974581704], [-0.15019813746383973, -0.05005841974581704], [-0.15019813746383973, -0.15017525923745123], [-0.2503302291063997, -0.15017525923745123] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.2503302291063997, -0.05005841974581704], [-0.2503302291063997, 0.05005841974581715], [-0.15019813746383973, 0.05005841974581715], [-0.15019813746383973, -0.05005841974581704], [-0.2503302291063997, -0.05005841974581704] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.2503302291063997, 0.05005841974581715], [-0.2503302291063997, 0.15017525923745134], [-0.15019813746383973, 0.15017525923745134], [-0.15019813746383973, 0.05005841974581715], [-0.2503302291063997, 0.05005841974581715] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.2503302291063997, 0.15017525923745134], [-0.2503302291063997, 0.25029209872908553], [-0.15019813746383973, 0.25029209872908553], [-0.15019813746383973, 0.15017525923745134], [-0.2503302291063997, 0.15017525923745134] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.2503302291063997, 0.25029209872908553], [-0.2503302291063997, 0.3504089382207197], [-0.15019813746383973, 0.3504089382207197], [-0.15019813746383973, 0.25029209872908553], [-0.2503302291063997, 0.25029209872908553] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.2503302291063997, 0.3504089382207197], [-0.2503302291063997, 0.4505257777123539], [-0.15019813746383973, 0.4505257777123539], [-0.15019813746383973, 0.3504089382207197], [-0.2503302291063997, 0.3504089382207197] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.2503302291063997, 0.4505257777123539], [-0.2503302291063997, 0.5506426172039881], [-0.15019813746383973, 0.5506426172039881], [-0.15019813746383973, 0.4505257777123539], [-0.2503302291063997, 0.4505257777123539] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.2503302291063997, 0.5506426172039881], [-0.2503302291063997, 0.6507594566956223], [-0.15019813746383973, 0.6507594566956223], [-0.15019813746383973, 0.5506426172039881], [-0.2503302291063997, 0.5506426172039881] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.2503302291063997, 0.6507594566956223], [-0.2503302291063997, 0.7508762961872565], [-0.15019813746383973, 0.7508762961872565], [-0.15019813746383973, 0.6507594566956223], [-0.2503302291063997, 0.6507594566956223] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.2503302291063997, 0.7508762961872565], [-0.2503302291063997, 0.8509931356788907], [-0.15019813746383973, 0.8509931356788907], [-0.15019813746383973, 0.7508762961872565], [-0.2503302291063997, 0.7508762961872565] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.2503302291063997, 0.8509931356788907], [-0.2503302291063997, 0.9511099751705249], [-0.15019813746383973, 0.9511099751705249], [-0.15019813746383973, 0.8509931356788907], [-0.2503302291063997, 0.8509931356788907] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.15019813746383973, -0.9511099751705248], [-0.15019813746383973, -0.8509931356788906], [-0.05006604582127977, -0.8509931356788906], [-0.05006604582127977, -0.9511099751705248], [-0.15019813746383973, -0.9511099751705248] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.15019813746383973, -0.8509931356788906], [-0.15019813746383973, -0.7508762961872564], [-0.05006604582127977, -0.7508762961872564], [-0.05006604582127977, -0.8509931356788906], [-0.15019813746383973, -0.8509931356788906] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.15019813746383973, -0.7508762961872564], [-0.15019813746383973, -0.6507594566956222], [-0.05006604582127977, -0.6507594566956222], [-0.05006604582127977, -0.7508762961872564], [-0.15019813746383973, -0.7508762961872564] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.15019813746383973, -0.6507594566956222], [-0.15019813746383973, -0.550642617203988], [-0.05006604582127977, -0.550642617203988], [-0.05006604582127977, -0.6507594566956222], [-0.15019813746383973, -0.6507594566956222] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.15019813746383973, -0.550642617203988], [-0.15019813746383973, -0.4505257777123538], [-0.05006604582127977, -0.4505257777123538], [-0.05006604582127977, -0.550642617203988], [-0.15019813746383973, -0.550642617203988] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.15019813746383973, -0.4505257777123538], [-0.15019813746383973, -0.3504089382207196], [-0.05006604582127977, -0.3504089382207196], [-0.05006604582127977, -0.4505257777123538], [-0.15019813746383973, -0.4505257777123538] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.15019813746383973, -0.3504089382207196], [-0.15019813746383973, -0.2502920987290854], [-0.05006604582127977, -0.2502920987290854], [-0.05006604582127977, -0.3504089382207196], [-0.15019813746383973, -0.3504089382207196] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.15019813746383973, -0.2502920987290854], [-0.15019813746383973, -0.15017525923745123], [-0.05006604582127977, -0.15017525923745123], [-0.05006604582127977, -0.2502920987290854], [-0.15019813746383973, -0.2502920987290854] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.15019813746383973, -0.15017525923745123], [-0.15019813746383973, -0.05005841974581704], [-0.05006604582127977, -0.05005841974581704], [-0.05006604582127977, -0.15017525923745123], [-0.15019813746383973, -0.15017525923745123] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.15019813746383973, -0.05005841974581704], [-0.15019813746383973, 0.05005841974581715], [-0.05006604582127977, 0.05005841974581715], [-0.05006604582127977, -0.05005841974581704], [-0.15019813746383973, -0.05005841974581704] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.15019813746383973, 0.05005841974581715], [-0.15019813746383973, 0.15017525923745134], [-0.05006604582127977, 0.15017525923745134], [-0.05006604582127977, 0.05005841974581715], [-0.15019813746383973, 0.05005841974581715] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.15019813746383973, 0.15017525923745134], [-0.15019813746383973, 0.25029209872908553], [-0.05006604582127977, 0.25029209872908553], [-0.05006604582127977, 0.15017525923745134], [-0.15019813746383973, 0.15017525923745134] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.15019813746383973, 0.25029209872908553], [-0.15019813746383973, 0.3504089382207197], [-0.05006604582127977, 0.3504089382207197], [-0.05006604582127977, 0.25029209872908553], [-0.15019813746383973, 0.25029209872908553] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.15019813746383973, 0.3504089382207197], [-0.15019813746383973, 0.4505257777123539], [-0.05006604582127977, 0.4505257777123539], [-0.05006604582127977, 0.3504089382207197], [-0.15019813746383973, 0.3504089382207197] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.15019813746383973, 0.4505257777123539], [-0.15019813746383973, 0.5506426172039881], [-0.05006604582127977, 0.5506426172039881], [-0.05006604582127977, 0.4505257777123539], [-0.15019813746383973, 0.4505257777123539] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.15019813746383973, 0.5506426172039881], [-0.15019813746383973, 0.6507594566956223], [-0.05006604582127977, 0.6507594566956223], [-0.05006604582127977, 0.5506426172039881], [-0.15019813746383973, 0.5506426172039881] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.15019813746383973, 0.6507594566956223], [-0.15019813746383973, 0.7508762961872565], [-0.05006604582127977, 0.7508762961872565], [-0.05006604582127977, 0.6507594566956223], [-0.15019813746383973, 0.6507594566956223] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.15019813746383973, 0.7508762961872565], [-0.15019813746383973, 0.8509931356788907], [-0.05006604582127977, 0.8509931356788907], [-0.05006604582127977, 0.7508762961872565], [-0.15019813746383973, 0.7508762961872565] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.15019813746383973, 0.8509931356788907], [-0.15019813746383973, 0.9511099751705249], [-0.05006604582127977, 0.9511099751705249], [-0.05006604582127977, 0.8509931356788907], [-0.15019813746383973, 0.8509931356788907] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.05006604582127977, -0.9511099751705248], [-0.05006604582127977, -0.8509931356788906], [0.050066045821280186, -0.8509931356788906], [0.050066045821280186, -0.9511099751705248], [-0.05006604582127977, -0.9511099751705248] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.05006604582127977, -0.8509931356788906], [-0.05006604582127977, -0.7508762961872564], [0.050066045821280186, -0.7508762961872564], [0.050066045821280186, -0.8509931356788906], [-0.05006604582127977, -0.8509931356788906] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.05006604582127977, -0.7508762961872564], [-0.05006604582127977, -0.6507594566956222], [0.050066045821280186, -0.6507594566956222], [0.050066045821280186, -0.7508762961872564], [-0.05006604582127977, -0.7508762961872564] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.05006604582127977, -0.6507594566956222], [-0.05006604582127977, -0.550642617203988], [0.050066045821280186, -0.550642617203988], [0.050066045821280186, -0.6507594566956222], [-0.05006604582127977, -0.6507594566956222] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.05006604582127977, -0.550642617203988], [-0.05006604582127977, -0.4505257777123538], [0.050066045821280186, -0.4505257777123538], [0.050066045821280186, -0.550642617203988], [-0.05006604582127977, -0.550642617203988] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.05006604582127977, -0.4505257777123538], [-0.05006604582127977, -0.3504089382207196], [0.050066045821280186, -0.3504089382207196], [0.050066045821280186, -0.4505257777123538], [-0.05006604582127977, -0.4505257777123538] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.05006604582127977, -0.3504089382207196], [-0.05006604582127977, -0.2502920987290854], [0.050066045821280186, -0.2502920987290854], [0.050066045821280186, -0.3504089382207196], [-0.05006604582127977, -0.3504089382207196] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.05006604582127977, -0.2502920987290854], [-0.05006604582127977, -0.15017525923745123], [0.050066045821280186, -0.15017525923745123], [0.050066045821280186, -0.2502920987290854], [-0.05006604582127977, -0.2502920987290854] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.05006604582127977, -0.15017525923745123], [-0.05006604582127977, -0.05005841974581704], [0.050066045821280186, -0.05005841974581704], [0.050066045821280186, -0.15017525923745123], [-0.05006604582127977, -0.15017525923745123] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.05006604582127977, -0.05005841974581704], [-0.05006604582127977, 0.05005841974581715], [0.050066045821280186, 0.05005841974581715], [0.050066045821280186, -0.05005841974581704], [-0.05006604582127977, -0.05005841974581704] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.05006604582127977, 0.05005841974581715], [-0.05006604582127977, 0.15017525923745134], [0.050066045821280186, 0.15017525923745134], [0.050066045821280186, 0.05005841974581715], [-0.05006604582127977, 0.05005841974581715] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.05006604582127977, 0.15017525923745134], [-0.05006604582127977, 0.25029209872908553], [0.050066045821280186, 0.25029209872908553], [0.050066045821280186, 0.15017525923745134], [-0.05006604582127977, 0.15017525923745134] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.05006604582127977, 0.25029209872908553], [-0.05006604582127977, 0.3504089382207197], [0.050066045821280186, 0.3504089382207197], [0.050066045821280186, 0.25029209872908553], [-0.05006604582127977, 0.25029209872908553] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.05006604582127977, 0.3504089382207197], [-0.05006604582127977, 0.4505257777123539], [0.050066045821280186, 0.4505257777123539], [0.050066045821280186, 0.3504089382207197], [-0.05006604582127977, 0.3504089382207197] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.05006604582127977, 0.4505257777123539], [-0.05006604582127977, 0.5506426172039881], [0.050066045821280186, 0.5506426172039881], [0.050066045821280186, 0.4505257777123539], [-0.05006604582127977, 0.4505257777123539] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.05006604582127977, 0.5506426172039881], [-0.05006604582127977, 0.6507594566956223], [0.050066045821280186, 0.6507594566956223], [0.050066045821280186, 0.5506426172039881], [-0.05006604582127977, 0.5506426172039881] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.05006604582127977, 0.6507594566956223], [-0.05006604582127977, 0.7508762961872565], [0.050066045821280186, 0.7508762961872565], [0.050066045821280186, 0.6507594566956223], [-0.05006604582127977, 0.6507594566956223] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.05006604582127977, 0.7508762961872565], [-0.05006604582127977, 0.8509931356788907], [0.050066045821280186, 0.8509931356788907], [0.050066045821280186, 0.7508762961872565], [-0.05006604582127977, 0.7508762961872565] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.05006604582127977, 0.8509931356788907], [-0.05006604582127977, 0.9511099751705249], [0.050066045821280186, 0.9511099751705249], [0.050066045821280186, 0.8509931356788907], [-0.05006604582127977, 0.8509931356788907] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.050066045821280186, -0.9511099751705248], [0.050066045821280186, -0.8509931356788906], [0.15019813746384014, -0.8509931356788906], [0.15019813746384014, -0.9511099751705248], [0.050066045821280186, -0.9511099751705248] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.050066045821280186, -0.8509931356788906], [0.050066045821280186, -0.7508762961872564], [0.15019813746384014, -0.7508762961872564], [0.15019813746384014, -0.8509931356788906], [0.050066045821280186, -0.8509931356788906] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.050066045821280186, -0.7508762961872564], [0.050066045821280186, -0.6507594566956222], [0.15019813746384014, -0.6507594566956222], [0.15019813746384014, -0.7508762961872564], [0.050066045821280186, -0.7508762961872564] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.050066045821280186, -0.6507594566956222], [0.050066045821280186, -0.550642617203988], [0.15019813746384014, -0.550642617203988], [0.15019813746384014, -0.6507594566956222], [0.050066045821280186, -0.6507594566956222] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.050066045821280186, -0.550642617203988], [0.050066045821280186, -0.4505257777123538], [0.15019813746384014, -0.4505257777123538], [0.15019813746384014, -0.550642617203988], [0.050066045821280186, -0.550642617203988] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.050066045821280186, -0.4505257777123538], [0.050066045821280186, -0.3504089382207196], [0.15019813746384014, -0.3504089382207196], [0.15019813746384014, -0.4505257777123538], [0.050066045821280186, -0.4505257777123538] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.050066045821280186, -0.3504089382207196], [0.050066045821280186, -0.2502920987290854], [0.15019813746384014, -0.2502920987290854], [0.15019813746384014, -0.3504089382207196], [0.050066045821280186, -0.3504089382207196] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.050066045821280186, -0.2502920987290854], [0.050066045821280186, -0.15017525923745123], [0.15019813746384014, -0.15017525923745123], [0.15019813746384014, -0.2502920987290854], [0.050066045821280186, -0.2502920987290854] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.050066045821280186, -0.15017525923745123], [0.050066045821280186, -0.05005841974581704], [0.15019813746384014, -0.05005841974581704], [0.15019813746384014, -0.15017525923745123], [0.050066045821280186, -0.15017525923745123] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.050066045821280186, -0.05005841974581704], [0.050066045821280186, 0.05005841974581715], [0.15019813746384014, 0.05005841974581715], [0.15019813746384014, -0.05005841974581704], [0.050066045821280186, -0.05005841974581704] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.050066045821280186, 0.05005841974581715], [0.050066045821280186, 0.15017525923745134], [0.15019813746384014, 0.15017525923745134], [0.15019813746384014, 0.05005841974581715], [0.050066045821280186, 0.05005841974581715] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.050066045821280186, 0.15017525923745134], [0.050066045821280186, 0.25029209872908553], [0.15019813746384014, 0.25029209872908553], [0.15019813746384014, 0.15017525923745134], [0.050066045821280186, 0.15017525923745134] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.050066045821280186, 0.25029209872908553], [0.050066045821280186, 0.3504089382207197], [0.15019813746384014, 0.3504089382207197], [0.15019813746384014, 0.25029209872908553], [0.050066045821280186, 0.25029209872908553] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.050066045821280186, 0.3504089382207197], [0.050066045821280186, 0.4505257777123539], [0.15019813746384014, 0.4505257777123539], [0.15019813746384014, 0.3504089382207197], [0.050066045821280186, 0.3504089382207197] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.050066045821280186, 0.4505257777123539], [0.050066045821280186, 0.5506426172039881], [0.15019813746384014, 0.5506426172039881], [0.15019813746384014, 0.4505257777123539], [0.050066045821280186, 0.4505257777123539] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.050066045821280186, 0.5506426172039881], [0.050066045821280186, 0.6507594566956223], [0.15019813746384014, 0.6507594566956223], [0.15019813746384014, 0.5506426172039881], [0.050066045821280186, 0.5506426172039881] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.050066045821280186, 0.6507594566956223], [0.050066045821280186, 0.7508762961872565], [0.15019813746384014, 0.7508762961872565], [0.15019813746384014, 0.6507594566956223], [0.050066045821280186, 0.6507594566956223] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.050066045821280186, 0.7508762961872565], [0.050066045821280186, 0.8509931356788907], [0.15019813746384014, 0.8509931356788907], [0.15019813746384014, 0.7508762961872565], [0.050066045821280186, 0.7508762961872565] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.050066045821280186, 0.8509931356788907], [0.050066045821280186, 0.9511099751705249], [0.15019813746384014, 0.9511099751705249], [0.15019813746384014, 0.8509931356788907], [0.050066045821280186, 0.8509931356788907] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.15019813746384014, -0.9511099751705248], [0.15019813746384014, -0.8509931356788906], [0.2503302291064001, -0.8509931356788906], [0.2503302291064001, -0.9511099751705248], [0.15019813746384014, -0.9511099751705248] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.15019813746384014, -0.8509931356788906], [0.15019813746384014, -0.7508762961872564], [0.2503302291064001, -0.7508762961872564], [0.2503302291064001, -0.8509931356788906], [0.15019813746384014, -0.8509931356788906] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.15019813746384014, -0.7508762961872564], [0.15019813746384014, -0.6507594566956222], [0.2503302291064001, -0.6507594566956222], [0.2503302291064001, -0.7508762961872564], [0.15019813746384014, -0.7508762961872564] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.15019813746384014, -0.6507594566956222], [0.15019813746384014, -0.550642617203988], [0.2503302291064001, -0.550642617203988], [0.2503302291064001, -0.6507594566956222], [0.15019813746384014, -0.6507594566956222] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.15019813746384014, -0.550642617203988], [0.15019813746384014, -0.4505257777123538], [0.2503302291064001, -0.4505257777123538], [0.2503302291064001, -0.550642617203988], [0.15019813746384014, -0.550642617203988] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.15019813746384014, -0.4505257777123538], [0.15019813746384014, -0.3504089382207196], [0.2503302291064001, -0.3504089382207196], [0.2503302291064001, -0.4505257777123538], [0.15019813746384014, -0.4505257777123538] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.15019813746384014, -0.3504089382207196], [0.15019813746384014, -0.2502920987290854], [0.2503302291064001, -0.2502920987290854], [0.2503302291064001, -0.3504089382207196], [0.15019813746384014, -0.3504089382207196] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.15019813746384014, -0.2502920987290854], [0.15019813746384014, -0.15017525923745123], [0.2503302291064001, -0.15017525923745123], [0.2503302291064001, -0.2502920987290854], [0.15019813746384014, -0.2502920987290854] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.15019813746384014, -0.15017525923745123], [0.15019813746384014, -0.05005841974581704], [0.2503302291064001, -0.05005841974581704], [0.2503302291064001, -0.15017525923745123], [0.15019813746384014, -0.15017525923745123] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.15019813746384014, -0.05005841974581704], [0.15019813746384014, 0.05005841974581715], [0.2503302291064001, 0.05005841974581715], [0.2503302291064001, -0.05005841974581704], [0.15019813746384014, -0.05005841974581704] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.15019813746384014, 0.05005841974581715], [0.15019813746384014, 0.15017525923745134], [0.2503302291064001, 0.15017525923745134], [0.2503302291064001, 0.05005841974581715], [0.15019813746384014, 0.05005841974581715] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.15019813746384014, 0.15017525923745134], [0.15019813746384014, 0.25029209872908553], [0.2503302291064001, 0.25029209872908553], [0.2503302291064001, 0.15017525923745134], [0.15019813746384014, 0.15017525923745134] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.15019813746384014, 0.25029209872908553], [0.15019813746384014, 0.3504089382207197], [0.2503302291064001, 0.3504089382207197], [0.2503302291064001, 0.25029209872908553], [0.15019813746384014, 0.25029209872908553] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.15019813746384014, 0.3504089382207197], [0.15019813746384014, 0.4505257777123539], [0.2503302291064001, 0.4505257777123539], [0.2503302291064001, 0.3504089382207197], [0.15019813746384014, 0.3504089382207197] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.15019813746384014, 0.4505257777123539], [0.15019813746384014, 0.5506426172039881], [0.2503302291064001, 0.5506426172039881], [0.2503302291064001, 0.4505257777123539], [0.15019813746384014, 0.4505257777123539] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.15019813746384014, 0.5506426172039881], [0.15019813746384014, 0.6507594566956223], [0.2503302291064001, 0.6507594566956223], [0.2503302291064001, 0.5506426172039881], [0.15019813746384014, 0.5506426172039881] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.15019813746384014, 0.6507594566956223], [0.15019813746384014, 0.7508762961872565], [0.2503302291064001, 0.7508762961872565], [0.2503302291064001, 0.6507594566956223], [0.15019813746384014, 0.6507594566956223] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.15019813746384014, 0.7508762961872565], [0.15019813746384014, 0.8509931356788907], [0.2503302291064001, 0.8509931356788907], [0.2503302291064001, 0.7508762961872565], [0.15019813746384014, 0.7508762961872565] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.15019813746384014, 0.8509931356788907], [0.15019813746384014, 0.9511099751705249], [0.2503302291064001, 0.9511099751705249], [0.2503302291064001, 0.8509931356788907], [0.15019813746384014, 0.8509931356788907] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.2503302291064001, -0.9511099751705248], [0.2503302291064001, -0.8509931356788906], [0.3504623207489601, -0.8509931356788906], [0.3504623207489601, -0.9511099751705248], [0.2503302291064001, -0.9511099751705248] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.2503302291064001, -0.8509931356788906], [0.2503302291064001, -0.7508762961872564], [0.3504623207489601, -0.7508762961872564], [0.3504623207489601, -0.8509931356788906], [0.2503302291064001, -0.8509931356788906] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.2503302291064001, -0.7508762961872564], [0.2503302291064001, -0.6507594566956222], [0.3504623207489601, -0.6507594566956222], [0.3504623207489601, -0.7508762961872564], [0.2503302291064001, -0.7508762961872564] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.2503302291064001, -0.6507594566956222], [0.2503302291064001, -0.550642617203988], [0.3504623207489601, -0.550642617203988], [0.3504623207489601, -0.6507594566956222], [0.2503302291064001, -0.6507594566956222] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.2503302291064001, -0.550642617203988], [0.2503302291064001, -0.4505257777123538], [0.3504623207489601, -0.4505257777123538], [0.3504623207489601, -0.550642617203988], [0.2503302291064001, -0.550642617203988] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.2503302291064001, -0.4505257777123538], [0.2503302291064001, -0.3504089382207196], [0.3504623207489601, -0.3504089382207196], [0.3504623207489601, -0.4505257777123538], [0.2503302291064001, -0.4505257777123538] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.2503302291064001, -0.3504089382207196], [0.2503302291064001, -0.2502920987290854], [0.3504623207489601, -0.2502920987290854], [0.3504623207489601, -0.3504089382207196], [0.2503302291064001, -0.3504089382207196] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.2503302291064001, -0.2502920987290854], [0.2503302291064001, -0.15017525923745123], [0.3504623207489601, -0.15017525923745123], [0.3504623207489601, -0.2502920987290854], [0.2503302291064001, -0.2502920987290854] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.2503302291064001, -0.15017525923745123], [0.2503302291064001, -0.05005841974581704], [0.3504623207489601, -0.05005841974581704], [0.3504623207489601, -0.15017525923745123], [0.2503302291064001, -0.15017525923745123] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.2503302291064001, -0.05005841974581704], [0.2503302291064001, 0.05005841974581715], [0.3504623207489601, 0.05005841974581715], [0.3504623207489601, -0.05005841974581704], [0.2503302291064001, -0.05005841974581704] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.2503302291064001, 0.05005841974581715], [0.2503302291064001, 0.15017525923745134], [0.3504623207489601, 0.15017525923745134], [0.3504623207489601, 0.05005841974581715], [0.2503302291064001, 0.05005841974581715] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.2503302291064001, 0.15017525923745134], [0.2503302291064001, 0.25029209872908553], [0.3504623207489601, 0.25029209872908553], [0.3504623207489601, 0.15017525923745134], [0.2503302291064001, 0.15017525923745134] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.2503302291064001, 0.25029209872908553], [0.2503302291064001, 0.3504089382207197], [0.3504623207489601, 0.3504089382207197], [0.3504623207489601, 0.25029209872908553], [0.2503302291064001, 0.25029209872908553] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.2503302291064001, 0.3504089382207197], [0.2503302291064001, 0.4505257777123539], [0.3504623207489601, 0.4505257777123539], [0.3504623207489601, 0.3504089382207197], [0.2503302291064001, 0.3504089382207197] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.2503302291064001, 0.4505257777123539], [0.2503302291064001, 0.5506426172039881], [0.3504623207489601, 0.5506426172039881], [0.3504623207489601, 0.4505257777123539], [0.2503302291064001, 0.4505257777123539] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.2503302291064001, 0.5506426172039881], [0.2503302291064001, 0.6507594566956223], [0.3504623207489601, 0.6507594566956223], [0.3504623207489601, 0.5506426172039881], [0.2503302291064001, 0.5506426172039881] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.2503302291064001, 0.6507594566956223], [0.2503302291064001, 0.7508762961872565], [0.3504623207489601, 0.7508762961872565], [0.3504623207489601, 0.6507594566956223], [0.2503302291064001, 0.6507594566956223] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.2503302291064001, 0.7508762961872565], [0.2503302291064001, 0.8509931356788907], [0.3504623207489601, 0.8509931356788907], [0.3504623207489601, 0.7508762961872565], [0.2503302291064001, 0.7508762961872565] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.2503302291064001, 0.8509931356788907], [0.2503302291064001, 0.9511099751705249], [0.3504623207489601, 0.9511099751705249], [0.3504623207489601, 0.8509931356788907], [0.2503302291064001, 0.8509931356788907] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.3504623207489601, -0.9511099751705248], [0.3504623207489601, -0.8509931356788906], [0.4505944123915201, -0.8509931356788906], [0.4505944123915201, -0.9511099751705248], [0.3504623207489601, -0.9511099751705248] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.3504623207489601, -0.8509931356788906], [0.3504623207489601, -0.7508762961872564], [0.4505944123915201, -0.7508762961872564], [0.4505944123915201, -0.8509931356788906], [0.3504623207489601, -0.8509931356788906] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.3504623207489601, -0.7508762961872564], [0.3504623207489601, -0.6507594566956222], [0.4505944123915201, -0.6507594566956222], [0.4505944123915201, -0.7508762961872564], [0.3504623207489601, -0.7508762961872564] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.3504623207489601, -0.6507594566956222], [0.3504623207489601, -0.550642617203988], [0.4505944123915201, -0.550642617203988], [0.4505944123915201, -0.6507594566956222], [0.3504623207489601, -0.6507594566956222] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.3504623207489601, -0.550642617203988], [0.3504623207489601, -0.4505257777123538], [0.4505944123915201, -0.4505257777123538], [0.4505944123915201, -0.550642617203988], [0.3504623207489601, -0.550642617203988] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.3504623207489601, -0.4505257777123538], [0.3504623207489601, -0.3504089382207196], [0.4505944123915201, -0.3504089382207196], [0.4505944123915201, -0.4505257777123538], [0.3504623207489601, -0.4505257777123538] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.3504623207489601, -0.3504089382207196], [0.3504623207489601, -0.2502920987290854], [0.4505944123915201, -0.2502920987290854], [0.4505944123915201, -0.3504089382207196], [0.3504623207489601, -0.3504089382207196] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.3504623207489601, -0.2502920987290854], [0.3504623207489601, -0.15017525923745123], [0.4505944123915201, -0.15017525923745123], [0.4505944123915201, -0.2502920987290854], [0.3504623207489601, -0.2502920987290854] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.3504623207489601, -0.15017525923745123], [0.3504623207489601, -0.05005841974581704], [0.4505944123915201, -0.05005841974581704], [0.4505944123915201, -0.15017525923745123], [0.3504623207489601, -0.15017525923745123] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.3504623207489601, -0.05005841974581704], [0.3504623207489601, 0.05005841974581715], [0.4505944123915201, 0.05005841974581715], [0.4505944123915201, -0.05005841974581704], [0.3504623207489601, -0.05005841974581704] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.3504623207489601, 0.05005841974581715], [0.3504623207489601, 0.15017525923745134], [0.4505944123915201, 0.15017525923745134], [0.4505944123915201, 0.05005841974581715], [0.3504623207489601, 0.05005841974581715] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.3504623207489601, 0.15017525923745134], [0.3504623207489601, 0.25029209872908553], [0.4505944123915201, 0.25029209872908553], [0.4505944123915201, 0.15017525923745134], [0.3504623207489601, 0.15017525923745134] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.3504623207489601, 0.25029209872908553], [0.3504623207489601, 0.3504089382207197], [0.4505944123915201, 0.3504089382207197], [0.4505944123915201, 0.25029209872908553], [0.3504623207489601, 0.25029209872908553] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.3504623207489601, 0.3504089382207197], [0.3504623207489601, 0.4505257777123539], [0.4505944123915201, 0.4505257777123539], [0.4505944123915201, 0.3504089382207197], [0.3504623207489601, 0.3504089382207197] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.3504623207489601, 0.4505257777123539], [0.3504623207489601, 0.5506426172039881], [0.4505944123915201, 0.5506426172039881], [0.4505944123915201, 0.4505257777123539], [0.3504623207489601, 0.4505257777123539] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.3504623207489601, 0.5506426172039881], [0.3504623207489601, 0.6507594566956223], [0.4505944123915201, 0.6507594566956223], [0.4505944123915201, 0.5506426172039881], [0.3504623207489601, 0.5506426172039881] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.3504623207489601, 0.6507594566956223], [0.3504623207489601, 0.7508762961872565], [0.4505944123915201, 0.7508762961872565], [0.4505944123915201, 0.6507594566956223], [0.3504623207489601, 0.6507594566956223] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.3504623207489601, 0.7508762961872565], [0.3504623207489601, 0.8509931356788907], [0.4505944123915201, 0.8509931356788907], [0.4505944123915201, 0.7508762961872565], [0.3504623207489601, 0.7508762961872565] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.3504623207489601, 0.8509931356788907], [0.3504623207489601, 0.9511099751705249], [0.4505944123915201, 0.9511099751705249], [0.4505944123915201, 0.8509931356788907], [0.3504623207489601, 0.8509931356788907] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.4505944123915201, -0.9511099751705248], [0.4505944123915201, -0.8509931356788906], [0.5507265040340801, -0.8509931356788906], [0.5507265040340801, -0.9511099751705248], [0.4505944123915201, -0.9511099751705248] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.4505944123915201, -0.8509931356788906], [0.4505944123915201, -0.7508762961872564], [0.5507265040340801, -0.7508762961872564], [0.5507265040340801, -0.8509931356788906], [0.4505944123915201, -0.8509931356788906] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.4505944123915201, -0.7508762961872564], [0.4505944123915201, -0.6507594566956222], [0.5507265040340801, -0.6507594566956222], [0.5507265040340801, -0.7508762961872564], [0.4505944123915201, -0.7508762961872564] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.4505944123915201, -0.6507594566956222], [0.4505944123915201, -0.550642617203988], [0.5507265040340801, -0.550642617203988], [0.5507265040340801, -0.6507594566956222], [0.4505944123915201, -0.6507594566956222] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.4505944123915201, -0.550642617203988], [0.4505944123915201, -0.4505257777123538], [0.5507265040340801, -0.4505257777123538], [0.5507265040340801, -0.550642617203988], [0.4505944123915201, -0.550642617203988] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.4505944123915201, -0.4505257777123538], [0.4505944123915201, -0.3504089382207196], [0.5507265040340801, -0.3504089382207196], [0.5507265040340801, -0.4505257777123538], [0.4505944123915201, -0.4505257777123538] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.4505944123915201, -0.3504089382207196], [0.4505944123915201, -0.2502920987290854], [0.5507265040340801, -0.2502920987290854], [0.5507265040340801, -0.3504089382207196], [0.4505944123915201, -0.3504089382207196] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.4505944123915201, -0.2502920987290854], [0.4505944123915201, -0.15017525923745123], [0.5507265040340801, -0.15017525923745123], [0.5507265040340801, -0.2502920987290854], [0.4505944123915201, -0.2502920987290854] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.4505944123915201, -0.15017525923745123], [0.4505944123915201, -0.05005841974581704], [0.5507265040340801, -0.05005841974581704], [0.5507265040340801, -0.15017525923745123], [0.4505944123915201, -0.15017525923745123] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.4505944123915201, -0.05005841974581704], [0.4505944123915201, 0.05005841974581715], [0.5507265040340801, 0.05005841974581715], [0.5507265040340801, -0.05005841974581704], [0.4505944123915201, -0.05005841974581704] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.4505944123915201, 0.05005841974581715], [0.4505944123915201, 0.15017525923745134], [0.5507265040340801, 0.15017525923745134], [0.5507265040340801, 0.05005841974581715], [0.4505944123915201, 0.05005841974581715] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.4505944123915201, 0.15017525923745134], [0.4505944123915201, 0.25029209872908553], [0.5507265040340801, 0.25029209872908553], [0.5507265040340801, 0.15017525923745134], [0.4505944123915201, 0.15017525923745134] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.4505944123915201, 0.25029209872908553], [0.4505944123915201, 0.3504089382207197], [0.5507265040340801, 0.3504089382207197], [0.5507265040340801, 0.25029209872908553], [0.4505944123915201, 0.25029209872908553] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.4505944123915201, 0.3504089382207197], [0.4505944123915201, 0.4505257777123539], [0.5507265040340801, 0.4505257777123539], [0.5507265040340801, 0.3504089382207197], [0.4505944123915201, 0.3504089382207197] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.4505944123915201, 0.4505257777123539], [0.4505944123915201, 0.5506426172039881], [0.5507265040340801, 0.5506426172039881], [0.5507265040340801, 0.4505257777123539], [0.4505944123915201, 0.4505257777123539] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.4505944123915201, 0.5506426172039881], [0.4505944123915201, 0.6507594566956223], [0.5507265040340801, 0.6507594566956223], [0.5507265040340801, 0.5506426172039881], [0.4505944123915201, 0.5506426172039881] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.4505944123915201, 0.6507594566956223], [0.4505944123915201, 0.7508762961872565], [0.5507265040340801, 0.7508762961872565], [0.5507265040340801, 0.6507594566956223], [0.4505944123915201, 0.6507594566956223] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.4505944123915201, 0.7508762961872565], [0.4505944123915201, 0.8509931356788907], [0.5507265040340801, 0.8509931356788907], [0.5507265040340801, 0.7508762961872565], [0.4505944123915201, 0.7508762961872565] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.4505944123915201, 0.8509931356788907], [0.4505944123915201, 0.9511099751705249], [0.5507265040340801, 0.9511099751705249], [0.5507265040340801, 0.8509931356788907], [0.4505944123915201, 0.8509931356788907] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.5507265040340801, -0.9511099751705248], [0.5507265040340801, -0.8509931356788906], [0.6508585956766401, -0.8509931356788906], [0.6508585956766401, -0.9511099751705248], [0.5507265040340801, -0.9511099751705248] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.5507265040340801, -0.8509931356788906], [0.5507265040340801, -0.7508762961872564], [0.6508585956766401, -0.7508762961872564], [0.6508585956766401, -0.8509931356788906], [0.5507265040340801, -0.8509931356788906] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.5507265040340801, -0.7508762961872564], [0.5507265040340801, -0.6507594566956222], [0.6508585956766401, -0.6507594566956222], [0.6508585956766401, -0.7508762961872564], [0.5507265040340801, -0.7508762961872564] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.5507265040340801, -0.6507594566956222], [0.5507265040340801, -0.550642617203988], [0.6508585956766401, -0.550642617203988], [0.6508585956766401, -0.6507594566956222], [0.5507265040340801, -0.6507594566956222] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.5507265040340801, -0.550642617203988], [0.5507265040340801, -0.4505257777123538], [0.6508585956766401, -0.4505257777123538], [0.6508585956766401, -0.550642617203988], [0.5507265040340801, -0.550642617203988] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.5507265040340801, -0.4505257777123538], [0.5507265040340801, -0.3504089382207196], [0.6508585956766401, -0.3504089382207196], [0.6508585956766401, -0.4505257777123538], [0.5507265040340801, -0.4505257777123538] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.5507265040340801, -0.3504089382207196], [0.5507265040340801, -0.2502920987290854], [0.6508585956766401, -0.2502920987290854], [0.6508585956766401, -0.3504089382207196], [0.5507265040340801, -0.3504089382207196] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.5507265040340801, -0.2502920987290854], [0.5507265040340801, -0.15017525923745123], [0.6508585956766401, -0.15017525923745123], [0.6508585956766401, -0.2502920987290854], [0.5507265040340801, -0.2502920987290854] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.5507265040340801, -0.15017525923745123], [0.5507265040340801, -0.05005841974581704], [0.6508585956766401, -0.05005841974581704], [0.6508585956766401, -0.15017525923745123], [0.5507265040340801, -0.15017525923745123] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.5507265040340801, -0.05005841974581704], [0.5507265040340801, 0.05005841974581715], [0.6508585956766401, 0.05005841974581715], [0.6508585956766401, -0.05005841974581704], [0.5507265040340801, -0.05005841974581704] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.5507265040340801, 0.05005841974581715], [0.5507265040340801, 0.15017525923745134], [0.6508585956766401, 0.15017525923745134], [0.6508585956766401, 0.05005841974581715], [0.5507265040340801, 0.05005841974581715] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.5507265040340801, 0.15017525923745134], [0.5507265040340801, 0.25029209872908553], [0.6508585956766401, 0.25029209872908553], [0.6508585956766401, 0.15017525923745134], [0.5507265040340801, 0.15017525923745134] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.5507265040340801, 0.25029209872908553], [0.5507265040340801, 0.3504089382207197], [0.6508585956766401, 0.3504089382207197], [0.6508585956766401, 0.25029209872908553], [0.5507265040340801, 0.25029209872908553] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.5507265040340801, 0.3504089382207197], [0.5507265040340801, 0.4505257777123539], [0.6508585956766401, 0.4505257777123539], [0.6508585956766401, 0.3504089382207197], [0.5507265040340801, 0.3504089382207197] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.5507265040340801, 0.4505257777123539], [0.5507265040340801, 0.5506426172039881], [0.6508585956766401, 0.5506426172039881], [0.6508585956766401, 0.4505257777123539], [0.5507265040340801, 0.4505257777123539] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.5507265040340801, 0.5506426172039881], [0.5507265040340801, 0.6507594566956223], [0.6508585956766401, 0.6507594566956223], [0.6508585956766401, 0.5506426172039881], [0.5507265040340801, 0.5506426172039881] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.5507265040340801, 0.6507594566956223], [0.5507265040340801, 0.7508762961872565], [0.6508585956766401, 0.7508762961872565], [0.6508585956766401, 0.6507594566956223], [0.5507265040340801, 0.6507594566956223] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.5507265040340801, 0.7508762961872565], [0.5507265040340801, 0.8509931356788907], [0.6508585956766401, 0.8509931356788907], [0.6508585956766401, 0.7508762961872565], [0.5507265040340801, 0.7508762961872565] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.5507265040340801, 0.8509931356788907], [0.5507265040340801, 0.9511099751705249], [0.6508585956766401, 0.9511099751705249], [0.6508585956766401, 0.8509931356788907], [0.5507265040340801, 0.8509931356788907] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.6508585956766401, -0.9511099751705248], [0.6508585956766401, -0.8509931356788906], [0.7509906873192, -0.8509931356788906], [0.7509906873192, -0.9511099751705248], [0.6508585956766401, -0.9511099751705248] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.6508585956766401, -0.8509931356788906], [0.6508585956766401, -0.7508762961872564], [0.7509906873192, -0.7508762961872564], [0.7509906873192, -0.8509931356788906], [0.6508585956766401, -0.8509931356788906] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.6508585956766401, -0.7508762961872564], [0.6508585956766401, -0.6507594566956222], [0.7509906873192, -0.6507594566956222], [0.7509906873192, -0.7508762961872564], [0.6508585956766401, -0.7508762961872564] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.6508585956766401, -0.6507594566956222], [0.6508585956766401, -0.550642617203988], [0.7509906873192, -0.550642617203988], [0.7509906873192, -0.6507594566956222], [0.6508585956766401, -0.6507594566956222] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.6508585956766401, -0.550642617203988], [0.6508585956766401, -0.4505257777123538], [0.7509906873192, -0.4505257777123538], [0.7509906873192, -0.550642617203988], [0.6508585956766401, -0.550642617203988] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.6508585956766401, -0.4505257777123538], [0.6508585956766401, -0.3504089382207196], [0.7509906873192, -0.3504089382207196], [0.7509906873192, -0.4505257777123538], [0.6508585956766401, -0.4505257777123538] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.6508585956766401, -0.3504089382207196], [0.6508585956766401, -0.2502920987290854], [0.7509906873192, -0.2502920987290854], [0.7509906873192, -0.3504089382207196], [0.6508585956766401, -0.3504089382207196] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.6508585956766401, -0.2502920987290854], [0.6508585956766401, -0.15017525923745123], [0.7509906873192, -0.15017525923745123], [0.7509906873192, -0.2502920987290854], [0.6508585956766401, -0.2502920987290854] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.6508585956766401, -0.15017525923745123], [0.6508585956766401, -0.05005841974581704], [0.7509906873192, -0.05005841974581704], [0.7509906873192, -0.15017525923745123], [0.6508585956766401, -0.15017525923745123] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.6508585956766401, -0.05005841974581704], [0.6508585956766401, 0.05005841974581715], [0.7509906873192, 0.05005841974581715], [0.7509906873192, -0.05005841974581704], [0.6508585956766401, -0.05005841974581704] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.6508585956766401, 0.05005841974581715], [0.6508585956766401, 0.15017525923745134], [0.7509906873192, 0.15017525923745134], [0.7509906873192, 0.05005841974581715], [0.6508585956766401, 0.05005841974581715] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.6508585956766401, 0.15017525923745134], [0.6508585956766401, 0.25029209872908553], [0.7509906873192, 0.25029209872908553], [0.7509906873192, 0.15017525923745134], [0.6508585956766401, 0.15017525923745134] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.6508585956766401, 0.25029209872908553], [0.6508585956766401, 0.3504089382207197], [0.7509906873192, 0.3504089382207197], [0.7509906873192, 0.25029209872908553], [0.6508585956766401, 0.25029209872908553] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.6508585956766401, 0.3504089382207197], [0.6508585956766401, 0.4505257777123539], [0.7509906873192, 0.4505257777123539], [0.7509906873192, 0.3504089382207197], [0.6508585956766401, 0.3504089382207197] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.6508585956766401, 0.4505257777123539], [0.6508585956766401, 0.5506426172039881], [0.7509906873192, 0.5506426172039881], [0.7509906873192, 0.4505257777123539], [0.6508585956766401, 0.4505257777123539] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.6508585956766401, 0.5506426172039881], [0.6508585956766401, 0.6507594566956223], [0.7509906873192, 0.6507594566956223], [0.7509906873192, 0.5506426172039881], [0.6508585956766401, 0.5506426172039881] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.6508585956766401, 0.6507594566956223], [0.6508585956766401, 0.7508762961872565], [0.7509906873192, 0.7508762961872565], [0.7509906873192, 0.6507594566956223], [0.6508585956766401, 0.6507594566956223] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.6508585956766401, 0.7508762961872565], [0.6508585956766401, 0.8509931356788907], [0.7509906873192, 0.8509931356788907], [0.7509906873192, 0.7508762961872565], [0.6508585956766401, 0.7508762961872565] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.6508585956766401, 0.8509931356788907], [0.6508585956766401, 0.9511099751705249], [0.7509906873192, 0.9511099751705249], [0.7509906873192, 0.8509931356788907], [0.6508585956766401, 0.8509931356788907] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.7509906873192, -0.9511099751705248], [0.7509906873192, -0.8509931356788906], [0.85112277896176, -0.8509931356788906], [0.85112277896176, -0.9511099751705248], [0.7509906873192, -0.9511099751705248] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.7509906873192, -0.8509931356788906], [0.7509906873192, -0.7508762961872564], [0.85112277896176, -0.7508762961872564], [0.85112277896176, -0.8509931356788906], [0.7509906873192, -0.8509931356788906] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.7509906873192, -0.7508762961872564], [0.7509906873192, -0.6507594566956222], [0.85112277896176, -0.6507594566956222], [0.85112277896176, -0.7508762961872564], [0.7509906873192, -0.7508762961872564] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.7509906873192, -0.6507594566956222], [0.7509906873192, -0.550642617203988], [0.85112277896176, -0.550642617203988], [0.85112277896176, -0.6507594566956222], [0.7509906873192, -0.6507594566956222] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.7509906873192, -0.550642617203988], [0.7509906873192, -0.4505257777123538], [0.85112277896176, -0.4505257777123538], [0.85112277896176, -0.550642617203988], [0.7509906873192, -0.550642617203988] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.7509906873192, -0.4505257777123538], [0.7509906873192, -0.3504089382207196], [0.85112277896176, -0.3504089382207196], [0.85112277896176, -0.4505257777123538], [0.7509906873192, -0.4505257777123538] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.7509906873192, -0.3504089382207196], [0.7509906873192, -0.2502920987290854], [0.85112277896176, -0.2502920987290854], [0.85112277896176, -0.3504089382207196], [0.7509906873192, -0.3504089382207196] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.7509906873192, -0.2502920987290854], [0.7509906873192, -0.15017525923745123], [0.85112277896176, -0.15017525923745123], [0.85112277896176, -0.2502920987290854], [0.7509906873192, -0.2502920987290854] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.7509906873192, -0.15017525923745123], [0.7509906873192, -0.05005841974581704], [0.85112277896176, -0.05005841974581704], [0.85112277896176, -0.15017525923745123], [0.7509906873192, -0.15017525923745123] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.7509906873192, -0.05005841974581704], [0.7509906873192, 0.05005841974581715], [0.85112277896176, 0.05005841974581715], [0.85112277896176, -0.05005841974581704], [0.7509906873192, -0.05005841974581704] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.7509906873192, 0.05005841974581715], [0.7509906873192, 0.15017525923745134], [0.85112277896176, 0.15017525923745134], [0.85112277896176, 0.05005841974581715], [0.7509906873192, 0.05005841974581715] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.7509906873192, 0.15017525923745134], [0.7509906873192, 0.25029209872908553], [0.85112277896176, 0.25029209872908553], [0.85112277896176, 0.15017525923745134], [0.7509906873192, 0.15017525923745134] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.7509906873192, 0.25029209872908553], [0.7509906873192, 0.3504089382207197], [0.85112277896176, 0.3504089382207197], [0.85112277896176, 0.25029209872908553], [0.7509906873192, 0.25029209872908553] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.7509906873192, 0.3504089382207197], [0.7509906873192, 0.4505257777123539], [0.85112277896176, 0.4505257777123539], [0.85112277896176, 0.3504089382207197], [0.7509906873192, 0.3504089382207197] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.7509906873192, 0.4505257777123539], [0.7509906873192, 0.5506426172039881], [0.85112277896176, 0.5506426172039881], [0.85112277896176, 0.4505257777123539], [0.7509906873192, 0.4505257777123539] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.7509906873192, 0.5506426172039881], [0.7509906873192, 0.6507594566956223], [0.85112277896176, 0.6507594566956223], [0.85112277896176, 0.5506426172039881], [0.7509906873192, 0.5506426172039881] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.7509906873192, 0.6507594566956223], [0.7509906873192, 0.7508762961872565], [0.85112277896176, 0.7508762961872565], [0.85112277896176, 0.6507594566956223], [0.7509906873192, 0.6507594566956223] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.7509906873192, 0.7508762961872565], [0.7509906873192, 0.8509931356788907], [0.85112277896176, 0.8509931356788907], [0.85112277896176, 0.7508762961872565], [0.7509906873192, 0.7508762961872565] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.7509906873192, 0.8509931356788907], [0.7509906873192, 0.9511099751705249], [0.85112277896176, 0.9511099751705249], [0.85112277896176, 0.8509931356788907], [0.7509906873192, 0.8509931356788907] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.85112277896176, -0.9511099751705248], [0.85112277896176, -0.8509931356788906], [0.95125487060432, -0.8509931356788906], [0.95125487060432, -0.9511099751705248], [0.85112277896176, -0.9511099751705248] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.85112277896176, -0.8509931356788906], [0.85112277896176, -0.7508762961872564], [0.95125487060432, -0.7508762961872564], [0.95125487060432, -0.8509931356788906], [0.85112277896176, -0.8509931356788906] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.85112277896176, -0.7508762961872564], [0.85112277896176, -0.6507594566956222], [0.95125487060432, -0.6507594566956222], [0.95125487060432, -0.7508762961872564], [0.85112277896176, -0.7508762961872564] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.85112277896176, -0.6507594566956222], [0.85112277896176, -0.550642617203988], [0.95125487060432, -0.550642617203988], [0.95125487060432, -0.6507594566956222], [0.85112277896176, -0.6507594566956222] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.85112277896176, -0.550642617203988], [0.85112277896176, -0.4505257777123538], [0.95125487060432, -0.4505257777123538], [0.95125487060432, -0.550642617203988], [0.85112277896176, -0.550642617203988] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.85112277896176, -0.4505257777123538], [0.85112277896176, -0.3504089382207196], [0.95125487060432, -0.3504089382207196], [0.95125487060432, -0.4505257777123538], [0.85112277896176, -0.4505257777123538] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.85112277896176, -0.3504089382207196], [0.85112277896176, -0.2502920987290854], [0.95125487060432, -0.2502920987290854], [0.95125487060432, -0.3504089382207196], [0.85112277896176, -0.3504089382207196] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.85112277896176, -0.2502920987290854], [0.85112277896176, -0.15017525923745123], [0.95125487060432, -0.15017525923745123], [0.95125487060432, -0.2502920987290854], [0.85112277896176, -0.2502920987290854] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.85112277896176, -0.15017525923745123], [0.85112277896176, -0.05005841974581704], [0.95125487060432, -0.05005841974581704], [0.95125487060432, -0.15017525923745123], [0.85112277896176, -0.15017525923745123] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.85112277896176, -0.05005841974581704], [0.85112277896176, 0.05005841974581715], [0.95125487060432, 0.05005841974581715], [0.95125487060432, -0.05005841974581704], [0.85112277896176, -0.05005841974581704] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.85112277896176, 0.05005841974581715], [0.85112277896176, 0.15017525923745134], [0.95125487060432, 0.15017525923745134], [0.95125487060432, 0.05005841974581715], [0.85112277896176, 0.05005841974581715] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.85112277896176, 0.15017525923745134], [0.85112277896176, 0.25029209872908553], [0.95125487060432, 0.25029209872908553], [0.95125487060432, 0.15017525923745134], [0.85112277896176, 0.15017525923745134] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.85112277896176, 0.25029209872908553], [0.85112277896176, 0.3504089382207197], [0.95125487060432, 0.3504089382207197], [0.95125487060432, 0.25029209872908553], [0.85112277896176, 0.25029209872908553] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.85112277896176, 0.3504089382207197], [0.85112277896176, 0.4505257777123539], [0.95125487060432, 0.4505257777123539], [0.95125487060432, 0.3504089382207197], [0.85112277896176, 0.3504089382207197] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.85112277896176, 0.4505257777123539], [0.85112277896176, 0.5506426172039881], [0.95125487060432, 0.5506426172039881], [0.95125487060432, 0.4505257777123539], [0.85112277896176, 0.4505257777123539] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.85112277896176, 0.5506426172039881], [0.85112277896176, 0.6507594566956223], [0.95125487060432, 0.6507594566956223], [0.95125487060432, 0.5506426172039881], [0.85112277896176, 0.5506426172039881] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.85112277896176, 0.6507594566956223], [0.85112277896176, 0.7508762961872565], [0.95125487060432, 0.7508762961872565], [0.95125487060432, 0.6507594566956223], [0.85112277896176, 0.6507594566956223] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.85112277896176, 0.7508762961872565], [0.85112277896176, 0.8509931356788907], [0.95125487060432, 0.8509931356788907], [0.95125487060432, 0.7508762961872565], [0.85112277896176, 0.7508762961872565] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.85112277896176, 0.8509931356788907], [0.85112277896176, 0.9511099751705249], [0.95125487060432, 0.9511099751705249], [0.95125487060432, 0.8509931356788907], [0.85112277896176, 0.8509931356788907] ] ] } } ] } ================================================ FILE: packages/turf-quadrat-analysis/test/out/uniformPoint.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9011888247830396, -0.9010515554247076] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9011888247830396, -0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9011888247830396, -0.7008178764414392] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9011888247830396, -0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9011888247830396, -0.5005841974581708] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9011888247830396, -0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9011888247830396, -0.3003505184749025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9011888247830396, -0.20023367898326833] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9011888247830396, -0.10011683949163414] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9011888247830396, 5.551115123125783e-17] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9011888247830396, 0.10011683949163425] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9011888247830396, 0.20023367898326844] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9011888247830396, 0.30035051847490263] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9011888247830396, 0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9011888247830396, 0.5005841974581711] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9011888247830396, 0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9011888247830396, 0.7008178764414394] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9011888247830396, 0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9011888247830396, 0.9010515554247078] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8010567331404796, -0.9010515554247076] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8010567331404796, -0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8010567331404796, -0.7008178764414392] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8010567331404796, -0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8010567331404796, -0.5005841974581708] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8010567331404796, -0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8010567331404796, -0.3003505184749025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8010567331404796, -0.20023367898326833] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8010567331404796, -0.10011683949163414] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8010567331404796, 5.551115123125783e-17] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8010567331404796, 0.10011683949163425] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8010567331404796, 0.20023367898326844] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8010567331404796, 0.30035051847490263] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8010567331404796, 0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8010567331404796, 0.5005841974581711] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8010567331404796, 0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8010567331404796, 0.7008178764414394] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8010567331404796, 0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8010567331404796, 0.9010515554247078] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7009246414979196, -0.9010515554247076] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7009246414979196, -0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7009246414979196, -0.7008178764414392] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7009246414979196, -0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7009246414979196, -0.5005841974581708] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7009246414979196, -0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7009246414979196, -0.3003505184749025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7009246414979196, -0.20023367898326833] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7009246414979196, -0.10011683949163414] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7009246414979196, 5.551115123125783e-17] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7009246414979196, 0.10011683949163425] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7009246414979196, 0.20023367898326844] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7009246414979196, 0.30035051847490263] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7009246414979196, 0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7009246414979196, 0.5005841974581711] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7009246414979196, 0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7009246414979196, 0.7008178764414394] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7009246414979196, 0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7009246414979196, 0.9010515554247078] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6007925498553597, -0.9010515554247076] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6007925498553597, -0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6007925498553597, -0.7008178764414392] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6007925498553597, -0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6007925498553597, -0.5005841974581708] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6007925498553597, -0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6007925498553597, -0.3003505184749025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6007925498553597, -0.20023367898326833] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6007925498553597, -0.10011683949163414] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6007925498553597, 5.551115123125783e-17] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6007925498553597, 0.10011683949163425] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6007925498553597, 0.20023367898326844] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6007925498553597, 0.30035051847490263] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6007925498553597, 0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6007925498553597, 0.5005841974581711] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6007925498553597, 0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6007925498553597, 0.7008178764414394] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6007925498553597, 0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6007925498553597, 0.9010515554247078] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5006604582127997, -0.9010515554247076] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5006604582127997, -0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5006604582127997, -0.7008178764414392] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5006604582127997, -0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5006604582127997, -0.5005841974581708] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5006604582127997, -0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5006604582127997, -0.3003505184749025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5006604582127997, -0.20023367898326833] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5006604582127997, -0.10011683949163414] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5006604582127997, 5.551115123125783e-17] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5006604582127997, 0.10011683949163425] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5006604582127997, 0.20023367898326844] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5006604582127997, 0.30035051847490263] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5006604582127997, 0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5006604582127997, 0.5005841974581711] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5006604582127997, 0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5006604582127997, 0.7008178764414394] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5006604582127997, 0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5006604582127997, 0.9010515554247078] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.40052836657023966, -0.9010515554247076] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.40052836657023966, -0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.40052836657023966, -0.7008178764414392] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.40052836657023966, -0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.40052836657023966, -0.5005841974581708] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.40052836657023966, -0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.40052836657023966, -0.3003505184749025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.40052836657023966, -0.20023367898326833] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.40052836657023966, -0.10011683949163414] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.40052836657023966, 5.551115123125783e-17] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.40052836657023966, 0.10011683949163425] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.40052836657023966, 0.20023367898326844] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.40052836657023966, 0.30035051847490263] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.40052836657023966, 0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.40052836657023966, 0.5005841974581711] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.40052836657023966, 0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.40052836657023966, 0.7008178764414394] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.40052836657023966, 0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.40052836657023966, 0.9010515554247078] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3003962749276797, -0.9010515554247076] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3003962749276797, -0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3003962749276797, -0.7008178764414392] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3003962749276797, -0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3003962749276797, -0.5005841974581708] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3003962749276797, -0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3003962749276797, -0.3003505184749025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3003962749276797, -0.20023367898326833] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3003962749276797, -0.10011683949163414] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3003962749276797, 5.551115123125783e-17] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3003962749276797, 0.10011683949163425] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3003962749276797, 0.20023367898326844] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3003962749276797, 0.30035051847490263] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3003962749276797, 0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3003962749276797, 0.5005841974581711] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3003962749276797, 0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3003962749276797, 0.7008178764414394] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3003962749276797, 0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3003962749276797, 0.9010515554247078] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2002641832851197, -0.9010515554247076] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2002641832851197, -0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2002641832851197, -0.7008178764414392] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2002641832851197, -0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2002641832851197, -0.5005841974581708] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2002641832851197, -0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2002641832851197, -0.3003505184749025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2002641832851197, -0.20023367898326833] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2002641832851197, -0.10011683949163414] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2002641832851197, 5.551115123125783e-17] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2002641832851197, 0.10011683949163425] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2002641832851197, 0.20023367898326844] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2002641832851197, 0.30035051847490263] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2002641832851197, 0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2002641832851197, 0.5005841974581711] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2002641832851197, 0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2002641832851197, 0.7008178764414394] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2002641832851197, 0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2002641832851197, 0.9010515554247078] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.10013209164255975, -0.9010515554247076] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.10013209164255975, -0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.10013209164255975, -0.7008178764414392] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.10013209164255975, -0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.10013209164255975, -0.5005841974581708] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.10013209164255975, -0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.10013209164255975, -0.3003505184749025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.10013209164255975, -0.20023367898326833] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.10013209164255975, -0.10011683949163414] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.10013209164255975, 5.551115123125783e-17] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.10013209164255975, 0.10011683949163425] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.10013209164255975, 0.20023367898326844] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.10013209164255975, 0.30035051847490263] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.10013209164255975, 0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.10013209164255975, 0.5005841974581711] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.10013209164255975, 0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.10013209164255975, 0.7008178764414394] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.10013209164255975, 0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.10013209164255975, 0.9010515554247078] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.0816681711721685e-16, -0.9010515554247076] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.0816681711721685e-16, -0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.0816681711721685e-16, -0.7008178764414392] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.0816681711721685e-16, -0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.0816681711721685e-16, -0.5005841974581708] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.0816681711721685e-16, -0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.0816681711721685e-16, -0.3003505184749025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.0816681711721685e-16, -0.20023367898326833] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.0816681711721685e-16, -0.10011683949163414] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.0816681711721685e-16, 5.551115123125783e-17] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.0816681711721685e-16, 0.10011683949163425] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.0816681711721685e-16, 0.20023367898326844] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.0816681711721685e-16, 0.30035051847490263] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.0816681711721685e-16, 0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.0816681711721685e-16, 0.5005841974581711] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.0816681711721685e-16, 0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.0816681711721685e-16, 0.7008178764414394] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.0816681711721685e-16, 0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [2.0816681711721685e-16, 0.9010515554247078] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.10013209164256016, -0.9010515554247076] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.10013209164256016, -0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.10013209164256016, -0.7008178764414392] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.10013209164256016, -0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.10013209164256016, -0.5005841974581708] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.10013209164256016, -0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.10013209164256016, -0.3003505184749025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.10013209164256016, -0.20023367898326833] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.10013209164256016, -0.10011683949163414] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.10013209164256016, 5.551115123125783e-17] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.10013209164256016, 0.10011683949163425] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.10013209164256016, 0.20023367898326844] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.10013209164256016, 0.30035051847490263] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.10013209164256016, 0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.10013209164256016, 0.5005841974581711] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.10013209164256016, 0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.10013209164256016, 0.7008178764414394] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.10013209164256016, 0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.10013209164256016, 0.9010515554247078] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.20026418328512013, -0.9010515554247076] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.20026418328512013, -0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.20026418328512013, -0.7008178764414392] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.20026418328512013, -0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.20026418328512013, -0.5005841974581708] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.20026418328512013, -0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.20026418328512013, -0.3003505184749025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.20026418328512013, -0.20023367898326833] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.20026418328512013, -0.10011683949163414] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.20026418328512013, 5.551115123125783e-17] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.20026418328512013, 0.10011683949163425] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.20026418328512013, 0.20023367898326844] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.20026418328512013, 0.30035051847490263] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.20026418328512013, 0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.20026418328512013, 0.5005841974581711] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.20026418328512013, 0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.20026418328512013, 0.7008178764414394] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.20026418328512013, 0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.20026418328512013, 0.9010515554247078] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3003962749276801, -0.9010515554247076] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3003962749276801, -0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3003962749276801, -0.7008178764414392] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3003962749276801, -0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3003962749276801, -0.5005841974581708] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3003962749276801, -0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3003962749276801, -0.3003505184749025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3003962749276801, -0.20023367898326833] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3003962749276801, -0.10011683949163414] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3003962749276801, 5.551115123125783e-17] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3003962749276801, 0.10011683949163425] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3003962749276801, 0.20023367898326844] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3003962749276801, 0.30035051847490263] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3003962749276801, 0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3003962749276801, 0.5005841974581711] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3003962749276801, 0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3003962749276801, 0.7008178764414394] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3003962749276801, 0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3003962749276801, 0.9010515554247078] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.40052836657024016, -0.9010515554247076] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.40052836657024016, -0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.40052836657024016, -0.7008178764414392] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.40052836657024016, -0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.40052836657024016, -0.5005841974581708] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.40052836657024016, -0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.40052836657024016, -0.3003505184749025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.40052836657024016, -0.20023367898326833] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.40052836657024016, -0.10011683949163414] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.40052836657024016, 5.551115123125783e-17] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.40052836657024016, 0.10011683949163425] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.40052836657024016, 0.20023367898326844] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.40052836657024016, 0.30035051847490263] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.40052836657024016, 0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.40052836657024016, 0.5005841974581711] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.40052836657024016, 0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.40052836657024016, 0.7008178764414394] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.40052836657024016, 0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.40052836657024016, 0.9010515554247078] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5006604582128, -0.9010515554247076] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5006604582128, -0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5006604582128, -0.7008178764414392] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5006604582128, -0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5006604582128, -0.5005841974581708] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5006604582128, -0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5006604582128, -0.3003505184749025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5006604582128, -0.20023367898326833] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5006604582128, -0.10011683949163414] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5006604582128, 5.551115123125783e-17] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5006604582128, 0.10011683949163425] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5006604582128, 0.20023367898326844] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5006604582128, 0.30035051847490263] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5006604582128, 0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5006604582128, 0.5005841974581711] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5006604582128, 0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5006604582128, 0.7008178764414394] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5006604582128, 0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5006604582128, 0.9010515554247078] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.60079254985536, -0.9010515554247076] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.60079254985536, -0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.60079254985536, -0.7008178764414392] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.60079254985536, -0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.60079254985536, -0.5005841974581708] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.60079254985536, -0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.60079254985536, -0.3003505184749025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.60079254985536, -0.20023367898326833] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.60079254985536, -0.10011683949163414] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.60079254985536, 5.551115123125783e-17] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.60079254985536, 0.10011683949163425] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.60079254985536, 0.20023367898326844] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.60079254985536, 0.30035051847490263] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.60079254985536, 0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.60079254985536, 0.5005841974581711] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.60079254985536, 0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.60079254985536, 0.7008178764414394] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.60079254985536, 0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.60079254985536, 0.9010515554247078] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7009246414979201, -0.9010515554247076] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7009246414979201, -0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7009246414979201, -0.7008178764414392] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7009246414979201, -0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7009246414979201, -0.5005841974581708] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7009246414979201, -0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7009246414979201, -0.3003505184749025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7009246414979201, -0.20023367898326833] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7009246414979201, -0.10011683949163414] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7009246414979201, 5.551115123125783e-17] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7009246414979201, 0.10011683949163425] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7009246414979201, 0.20023367898326844] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7009246414979201, 0.30035051847490263] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7009246414979201, 0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7009246414979201, 0.5005841974581711] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7009246414979201, 0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7009246414979201, 0.7008178764414394] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7009246414979201, 0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7009246414979201, 0.9010515554247078] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8010567331404801, -0.9010515554247076] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8010567331404801, -0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8010567331404801, -0.7008178764414392] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8010567331404801, -0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8010567331404801, -0.5005841974581708] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8010567331404801, -0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8010567331404801, -0.3003505184749025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8010567331404801, -0.20023367898326833] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8010567331404801, -0.10011683949163414] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8010567331404801, 5.551115123125783e-17] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8010567331404801, 0.10011683949163425] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8010567331404801, 0.20023367898326844] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8010567331404801, 0.30035051847490263] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8010567331404801, 0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8010567331404801, 0.5005841974581711] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8010567331404801, 0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8010567331404801, 0.7008178764414394] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8010567331404801, 0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8010567331404801, 0.9010515554247078] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.90118882478304, -0.9010515554247076] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.90118882478304, -0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.90118882478304, -0.7008178764414392] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.90118882478304, -0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.90118882478304, -0.5005841974581708] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.90118882478304, -0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.90118882478304, -0.3003505184749025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.90118882478304, -0.20023367898326833] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.90118882478304, -0.10011683949163414] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.90118882478304, 5.551115123125783e-17] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.90118882478304, 0.10011683949163425] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.90118882478304, 0.20023367898326844] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.90118882478304, 0.30035051847490263] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.90118882478304, 0.40046735796653676] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.90118882478304, 0.5005841974581711] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.90118882478304, 0.6007010369498051] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.90118882478304, 0.7008178764414394] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.90118882478304, 0.8009347159330735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.90118882478304, 0.9010515554247078] } } ] } ================================================ FILE: packages/turf-quadrat-analysis/test/randomPointSet.good.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.4587656907550346, 0.5597440965712925] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9347194333321354, 0.5944938695999316] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7052307408525742, 0.8595800470950943] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.14801176758985823, -0.19117567366986332] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6123860432683488, -0.6154075629341991] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.4737172759860524, -0.701958019523147] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3124166107516104, -0.1971978909332126] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.99688261872969, 0.9067484314599628] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.06540953755529166, -0.693686638513165] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8738566047425063, -0.770778855049854] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7681939444965207, -0.18543396214592045] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5453005580773644, -0.45181681621283243] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.4772689928716263, 0.680661004161724] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.4022905467671287, -0.5519033346602309] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3480157491920912, -0.8430150730686821] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.24572471517749772, -0.18438818766186538] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.39966708816857865, -0.4550162838410441] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.0026849594516451525, 0.4745927985456402] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7300808146677653, 0.584064562751073] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6193881398303174, -0.547358218134542] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7142339179564665, 0.5977282094591594] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5346720632004232, 0.5093507261484849] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.42914407297380164, -0.7631288975911747] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.2429118674775097, -0.040833000545521525] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5882626013991117, 0.9441458496142734] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9162509973897772, -0.07968198538198346] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6368045052159133, -0.9436592193968245] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9350306679411489, -0.47844202597059304] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.008712578973587792, -0.6679584769276401] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.29024313508242594, 0.13692042406054528] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6924858279410051, -0.697363749520838] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.34274013876437426, 0.9662142906401812] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.310692853245373, 0.9984337702070705] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.28349637636646907, 0.25479603270542306] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.0745438212819538, 0.44985903847329745] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5780742111385289, -0.479504537808471] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.09615803434053616, 0.2479224963280373] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.0014790480690054508, 0.2876591043080774] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.1326991805042237, -0.523585072873257] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.49438001518474994, 0.00887084251050041] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6974487073042468, -0.81419499189166] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7692482052546592, -0.5021527316138803] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3600562697754448, -0.3301932253640736] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.876858223613322, 0.7906002395808418] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.09041056166314743, 0.022723216301057114] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3453057657150791, 0.7885653471666991] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5217985008753261, -0.8811297799209372] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.1560618001798706, 0.34660954719781545] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8217647461731228, -0.39113450852604226] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.09661217721714443, -0.585892449410987] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.26247694414707956, 0.22837757166806805] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3028522484233265, -0.2764662275004359] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.14116444410066586, -0.7468083064100224] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.16483858914602312, 0.07710475038289655] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2039030726339135, -0.18127190605282095] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9697935441823149, 0.6612415912604508] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7587623089736226, 0.6300086724533318] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7304944807976796, -0.18267860475608488] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5261558203651959, -0.29663969412265967] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.017925526093812483, 0.3581518031599127] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.48059712155068857, 0.9583465857169542] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.1594199717831235, 0.20643879042437296] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3811205040992731, 0.9179933377136473] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7893122134257298, -0.20424496133583636] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.034471559447748934, 0.43036575587144954] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.15637723308320695, 0.11531297659007755] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.40532604712296916, -0.10153357857862266] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2180148018770054, -0.5405952503600688] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.45731541920647656, 0.21440484673564209] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6779744543568538, -0.16253372419854673] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6355770646443606, 0.9394258834955851] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.10531481716653879, 0.007581958787900689] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.602198182990211, -0.9785369181325061] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5531468303888278, -0.48339688189069063] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.49397855609818375, 0.23497757598484403] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.1475095039078469, -0.7165725610285789] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8919722395555838, -0.7953435893624383] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6152865524647195, -0.7417874243058451] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.12428179369876258, 0.7173815865174413] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9613091193290395, 0.3656972515736814] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.05016164140805568, -0.1253233620139511] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.19309915493921714, -0.26586874320345943] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.30000600513267583, 0.41229422329673904] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.37985983700355597, -0.8242366144901045] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.09006218370334285, 0.03498003491298096] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9214277322891786, -0.9386051803046476] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6024994261528538, 0.4689773235092667] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8401085385751941, 0.6558569627938327] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.25494394372138673, -0.11396742074014599] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5120205727781708, -0.9890290960000989] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.4109593737345585, -0.14211126435212185] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.46886339286457535, 0.8230354258927548] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7257963328293155, 0.17422827710599664] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.14005044542661604, 0.5664961793127268] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.18174080720647767, -0.8721782419674562] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.057160377787873085, 0.1999745233132284] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.4271435258282019, -0.692441894723729] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.1000268186938742, 0.04861732044628031] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5515740398069138, -0.7341862643611048] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5590290696650961, -0.6322781542326634] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.2796372665728053, 0.9109297918757262] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5109888522211055, -0.6961772264221908] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8659501162936865, 0.7374901979444277] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9110040107434525, -0.6321761663180161] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.760753099867205, 0.5584724033574759] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.43874588441618734, -0.5335336373018169] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.051013703362122964, 0.6683560393224881] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6563504999805843, -0.6443082876186645] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.37631065555085375, 0.49512693024785914] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.1818064227128735, 0.575002698471895] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9120715461820481, -0.8953759220776427] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.638401307565096, -0.136007142936037] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.4118318665669656, -0.24370366806571697] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.024428210543731232, -0.13162363766191998] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7600090380239766, 0.5091275430381375] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7119727178453923, -0.0625651906860405] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.78706520014899, -0.20686365033037335] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.20947458960154375, -0.7802198199030448] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6460412333286758, 0.7768950889642423] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.30486168598001484, 0.4956970168501096] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.41437022154178127, 0.45475642411331085] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3489567372816227, -0.7604351120156059] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2731008371765209, -0.014940919619044202] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8127598269709373, 0.6726370454065651] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6519579714049533, 0.9481613600763712] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.31079019411819875, 0.9093712968634806] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8235189270072683, 0.9142937437019794] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.4083832876473821, 0.9750295304113576] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8831728900453863, -0.9687202915413673] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.49993092842828535, 0.3990213787828001] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.28955062303756396, -0.19443880114719647] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6409966795493385, 0.14009598362639775] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9923691124689249, 0.3921938269905638] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.2218206363527857, -0.3379417705229475] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.07840043569624289, 0.5359578376428433] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.12176340913930961, 0.4253175281951109] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.4718216606343857, 0.6200132916836423] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.4157887045260984, 0.31865735601591494] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6411826162478831, 0.9524618416980726] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6554849074417555, 0.871058409518501] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.14710037251659447, 0.7589696911715733] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.15113255443319495, 0.06698464875600596] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.20815456046874115, -0.7329465894982312] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.1093152067199874, 0.28120590390650824] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.14945620031338303, -0.10513478734892479] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.46602717595907706, -0.9946506530864796] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.4649178986864708, -0.5254491638154537] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.4701175139615388, -0.7989848617861788] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.935805159032367, 0.9736640628683899] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.12115419368112157, -0.6830128769368549] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.2435088681301676, -0.449970973774628] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8657625239474003, 0.8156489722275162] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.59314732500073, 0.23382717520488416] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2667167297263666, -0.08465869249013691] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.034489077166337534, -0.521276522407971] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7444337367966596, -0.6632279838232167] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5782591716028525, 0.804923528716111] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6749541802298435, -0.992025182023712] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9979712582566203, 0.8094727758867553] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7120495410443399, -0.25783452603939105] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3728410004292848, -0.7140149010954775] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6856292159086372, 0.8669388017796424] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.47794711208429685, -0.03403023676293948] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8032638725381065, -0.49151710013385985] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7119058341314575, -0.42961387053796596] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7439907315658285, 0.09198686666988332] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.15198474420585395, -0.35533039810796163] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3582764679334338, 0.3667563631557962] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7892198803291142, -0.4170529829177574] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8018837657268345, 0.13652997954211488] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.1228179860834877, 0.478271808497571] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.4082342323340642, -0.796139937472319] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9098907356893915, -0.6213913279604792] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.1692138478751648, 0.8742984032419834] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6117049940427575, -0.9120939177435825] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.42921007798351773, -0.7084890835713127] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7158874794753758, 0.11364377990718966] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.022904195098797153, 0.5438250992208222] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5079394639124537, -0.4333280808621045] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8594375621135772, -0.5169328196214154] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8173132494956747, -0.42538437547786323] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.49382617896975356, 0.2819460208339537] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5775143679076749, 0.9733966750983272] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9444915778830936, -0.39814359830242685] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9128391135183649, -0.29820492859836634] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.10661605060994983, -0.1385745352120984] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.20350421041513522, 0.4027660561366848] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.17432540638361704, 0.8566624601174149] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.20089599700302907, -0.1623804279122929] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8780121830173848, 0.5735472866930533] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5039038719086748, -0.9887774069569244] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.91469736023096, -0.1387456900224815] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8466156444936748, 0.2680658876970363] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8475147806217223, -0.845260294176065] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7181811671216054, -0.2328458632632433] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.0012207571093600933, 0.3286549374050671] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5899727626345177, 0.6652602448099394] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.49561253360004454, -0.48780389516984046] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8987863193781092, -0.7768429088574407] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.12630212278546704, 0.0034034371674884767] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.35009139454245464, -0.3303366835157795] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.10114992639062992, 0.6091821386807892] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.44210337997768745, 0.4352747824462817] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.22793211233927346, 0.33988916976745687] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8025810272356324, -0.8038614579738321] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.15677060588166158, -0.4776642771258075] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.1539583853388149, -0.2615722269559826] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6557810592962761, -0.6846903908600392] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6721038393013847, 0.5801911839249154] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.11388959255116049, 0.25795033031131753] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.31949531338528914, 0.9647028321445812] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.039902648444571476, 0.5901907180233357] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.33741118979816687, 0.1559729457869592] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.25357832825097626, 0.33086118674549114] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.14942345670400048, -0.35445747882713574] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.23350921609807695, 0.9695547105247262] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5569128158427454, -0.6492225903023354] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9675762806703379, -0.12976663593177173] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7617656092771763, -0.10236597430896444] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.05968882588617541, -0.6184394903801427] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.03251342788335121, -0.68400874413005] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7905732901612041, -0.04566080179835774] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6597982155008566, 0.2840614412561271] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6641980755818788, 0.9579561839114925] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.14622629322607006, 0.9541286137077636] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5455574218778847, 0.04858344212637222] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5724662641500076, 0.9878665665279205] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6456789724233278, -0.06697162588128691] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.020358287424326438, -0.8294594584645001] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.4199107018674453, 0.5820390182360389] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.66202076197539, 0.21517718370790284] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.3064794317375257, -0.11294095475974775] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.1963761593911011, 0.6379943424845465] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8634099122683359, 0.19841870080444002] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6171758835038568, -0.7569647510600452] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8535103231129506, -0.8451767247558735] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8480975799062249, -0.4471630394549102] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.27246140625715665, -0.44932016509301187] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5031595574522032, -0.317121549087779] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8376463616466836, 0.03271012794344896] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8146163293760109, 0.907400227794021] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.37720711886944125, -0.20408198092848995] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8124976626984379, 0.6504110532119176] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.2268541662827488, -0.49161697864401566] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9805283233477402, -0.9428111871332789] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6872131403993365, -0.5939862461499774] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.4537772255879249, -0.5912731310947827] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.22610189272690517, -0.12983269221261118] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.1295537026435727, 0.6252475231774608] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.26430484772468565, -0.24116156903245] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9967153662623502, 0.9837225942194467] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5554562160702998, 0.4160372165025463] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9497765412524397, 0.7353276189456248] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6259667794904282, -0.2940298725237751] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.32630160779288797, 0.8361125221590444] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8505005073854828, 0.2277558790523] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.88157798871124, -0.13791096200073216] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.31177311521244633, 0.9941435371901819] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.12486215618039642, 0.3454980519676951] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8663882735704966, 0.9150223059254201] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7312724053659387, 0.2824226500119704] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.33987931698606744, -0.4754480603013769] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9407119907431625, 0.23724058742117515] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.004275536836027438, 0.8451447365669531] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5190951068076557, -0.1630205460889278] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5344549242681995, 0.6008475754784541] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.16431417831946238, -0.5047296522915605] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5698369467755251, -0.27790324014768863] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9352351695697942, -0.5031150768105213] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5727510439324708, 0.03155289857972665] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3560394950495489, 0.631176001096434] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.15253426239842494, 0.10150666506644068] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.31925766882144035, -0.19822222228524522] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7575134797520575, 0.29959890240602194] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7522760267393922, -0.2997979822546597] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6529723205545785, -0.9960118631941688] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.20000403135925415, -0.6665940995214572] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.686436508701481, 0.9401605081256847] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.2928703921255953, 0.7808477271795033] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.34174798167193243, 0.5049358523198815] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6176305673394644, -0.8284058816263342] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7991821200566207, -0.9848024972713136] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8598606676896119, 0.6129601314136499] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.13407509152556285, -0.7075101191430186] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.34714629520751616, 0.9827035769484849] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6639622400013998, -0.262938610677816] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6070381932953786, 0.18749808885076513] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9146164214509036, -0.7610949245061942] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.47590887501072343, -0.5540839500363557] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.4177879835352112, -0.08767867769571325] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7556636640986896, 0.023544810234534364] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.0631472875214496, 0.18130383255542393] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8201389388563696, 0.2901019704753298] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7567316712990682, -0.4239170665526055] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7881716959986345, 0.46721341327853194] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9189833798972362, -0.6433841252831956] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.012451255333035594, -0.9240723498724179] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6470635784690071, -0.2094392164874428] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7392086000267417, -0.054250297480539] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.04488828981455484, -0.695647442966933] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9736768306074866, 0.014722977102499701] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5345466796451319, -0.23222991099419987] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.34992242872382695, 0.6070909530145512] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5838925053964177, -0.5982170592913962] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5819384570438006, -0.6005774045431576] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.33773525282649164, 0.9245914385987821] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.17074947737039814, -0.3432275731349428] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.4808071816858903, -0.2170477978152774] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8062208281426617, 0.2747573552807032] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.16913680569595213, -0.0005749972759465649] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5913672763671185, -0.07345801334140445] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3459675473930792, 0.07495300166063856] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.4146741472477151, 0.031088650725640044] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7106890863760094, -0.07106228180725394] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.07535532648708676, -0.9379253319357357] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9293085405206001, -0.6728081338839931] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7217056719157315, 0.3299897608697786] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7194387114556244, -0.33402487348535415] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6126788326227359, 0.05185982776476772] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9676714659875865, -0.7611218952358869] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.040373209758328255, 0.3692071346100838] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.309444533707095, -0.5658670061097419] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.708423068136085, -0.16624080434540245] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.1822638877245062, -0.8699338261901697] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.1714773010438977, 0.09793662105983891] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8526961911755211, -0.3784348534998787] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.44370057655457984, -0.34860745458190356] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.23743785376544713, 0.7278914300873804] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.22755888250255119, 0.6702285802403098] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7334493202675394, -0.24243293037637859] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6732379391511394, 0.5839914047218944] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.726748170253019, -0.6359186706701636] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.12399423470493476, 0.15481715144551922] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7521886790991452, 0.1691968680870044] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.46497921792711594, -0.9622271461179683] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.08545369875434883, -0.9335161385558308] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.40059022717613546, 0.12158532037493375] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.0927732670350161, -0.9234564178485543] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.15062858288134784, 0.4725060825611971] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7988590686501924, 0.6951252196318793] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.16625769809136637, 0.4770064211356737] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.16938799424656592, -0.924221723271264] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.45988277229715635, -0.3821613755830291] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9096863253772267, 0.9637131092636251] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.09598195237344687, 0.43514770327967733] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7970330398492402, 0.2507560119817529] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.03885287315976882, -0.5830896065921278] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.4908850049213438, 0.800865751729376] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.20550006823911326, 0.9958037172667402] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9214598096804565, -0.4194287650017281] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7597347186999581, -0.3601641604067609] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5134815113806868, -0.9780212467899765] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.698057741483471, 0.7639163079553652] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.37519013081441965, -0.4901516591666324] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.782418707957679, 0.4383044517560495] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.9800426078079538, -0.285086364564481] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.1261158500146915, -0.7268684121544533] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.26562477944683804, -0.5060682928183109] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.4100015561433623, 0.47814745601458286] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3667431699867336, -0.7459378720084646] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7688199466906163, -0.873878675313029] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.19014372480648145, 0.11665225644602195] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.0784379511119, -0.7161145514767373] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.8014790333875341, 0.9520091460000262] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5480089547021008, -0.11738173753845782] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.39260507059298755, -0.17688592161384964] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5623119146424207, -0.6143554151112598] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8918144744951961, -0.22549447385003507] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5879643804151926, -0.04871554825169877] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.518896236161519, 0.3371601258433614] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6564630840655186, 0.4109220991678719] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.10048081328883063, 0.7096812999111006] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.8641849229186338, -0.7768790342218641] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6200244997677613, 0.74040364000277] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.35276347702051547, -0.32481721561255217] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.2934860299727653, -0.8012843331546984] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.44434261705860756, -0.6813014659384447] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9566975630532091, 0.22305815089498493] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5913816268654886, 0.22230129382197417] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.9182909407650146, -0.32413917731901654] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5340305796593388, -0.9939347674337422] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.5286436013733229, 0.6236908317325947] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.14199575937850106, -0.06297258477254664] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.70723170102079, -0.7211488622974618] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.23021506798945923, 0.1590209784805312] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.17894682307583487, -0.6644382101411668] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.5790439751373309, 0.6795862224587745] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.0705830062884436, 0.15782122707106483] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.7315598124694063, 0.3681895497149572] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.6546589446113789, -0.2870467078510721] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.1410436383289868, 0.767036636003914] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7624407841791281, -0.9582195346032543] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.37797252397357006, 0.7546922363051674] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.7645462293718435, -0.10521851834044416] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.06786606089931935, 0.25454005105483635] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.07752528958138827, 0.4377550049132748] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.32931699954164007, 0.03980241043933219] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [0.6842496463426686, -0.7417575237213998] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.40116531193213456, -0.3120409942649869] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-0.3716179684004173, 0.8827762535041073] } } ] } ================================================ FILE: packages/turf-quadrat-analysis/test.ts ================================================ import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { bbox } from "@turf/bbox"; import { centroid } from "@turf/centroid"; import { squareGrid } from "@turf/square-grid"; import { bboxPolygon } from "@turf/bbox-polygon"; import { randomPoint } from "@turf/random"; import { featureCollection } from "@turf/helpers"; import { quadratAnalysis } from "./index.js"; import fs from "fs"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); test("turf-quadrat-analysis geojson file", (t) => { const futianBboxPath = path.join(__dirname, "test", "in", "futian_bbox.json"); const futianPointPath = path.join( __dirname, "test", "in", "futian_random_point.json" ); const shenzhenBboxPath = path.join( __dirname, "test", "in", "shenzhen_bbox.json" ); const futianBbox = loadJsonFileSync(futianBboxPath); const futianPoint = loadJsonFileSync(futianPointPath); const shenzhenBbox = loadJsonFileSync(shenzhenBboxPath); const resultFutian = quadratAnalysis(futianPoint, { studyBbox: bbox(futianBbox), confidenceLevel: 20, }); const resultShenzhen = quadratAnalysis(futianPoint, { studyBbox: bbox(shenzhenBbox), confidenceLevel: 20, }); t.ok(resultFutian.isRandom, "ramdom pattern ok"); t.ok( resultFutian.maxAbsoluteDifference < resultFutian.criticalValue, "random pattern maxAbsoluteDifference < criticalValue" ); t.ok(!resultShenzhen.isRandom, "cluster pattern ok"); t.ok( resultShenzhen.maxAbsoluteDifference > resultShenzhen.criticalValue, "cluster pattern maxAbsoluteDifference > criticalValue" ); t.end(); }); test("turf-quadrat-analysis random point", (t) => { // random const smallBbox = [-1, -1, 1, 1]; // calculate randomPointSets until we get one that passes let randomPointSet = randomPoint(400, { bbox: smallBbox }); let result1 = quadratAnalysis(randomPointSet, { studyBbox: smallBbox, confidenceLevel: 20, }); // Sometimes we generate a randomPointSet that doesn't come back as random. // In order to keep the build passing we fall back to a set of points that // we know should pass the below tests in order to prevent build flakes. // Having this as the fallback allows us to keep using random inputs in most // cases, but keeps the builds passing when they should. if (!result1.isRandom) { console.warn( "WARNING: randomPointSet was not random, this might just be a rare test flake, switching to known good points" ); randomPointSet = JSON.parse( fs.readFileSync(path.join("test", "randomPointSet.good.json")) ); result1 = quadratAnalysis(randomPointSet, { studyBbox: smallBbox, confidenceLevel: 20, }); } t.ok(result1.isRandom, "random pattern ok"); t.ok( result1.maxAbsoluteDifference < result1.criticalValue, "random pattern maxAbsoluteDifference < criticalValue" ); // cluster const bigBbox = [-3, -3, 3, 3]; const result2 = quadratAnalysis(randomPointSet, { studyBbox: bigBbox, confidenceLevel: 20, }); t.ok(!result2.isRandom, "cluster pattern ok"); t.ok( result2.maxAbsoluteDifference > result2.criticalValue, "cluster pattern maxAbsoluteDifference > criticalValue" ); // uniform const smallGrid = squareGrid(smallBbox, 0.1, { units: "degrees", }); let uniformPointSet = []; smallGrid.features.map(function (feature) { uniformPointSet.push(centroid(feature)); }); uniformPointSet = featureCollection(uniformPointSet); const result3 = quadratAnalysis(uniformPointSet, { studyBbox: smallBbox, confidenceLevel: 20, }); t.ok(!result3.isRandom, "uniform pattern ok"); t.ok( result3.maxAbsoluteDifference > result3.criticalValue, "uniform pattern maxAbsoluteDifference > criticalValue" ); const randomPointSetPath = path.join( __dirname, "test", "out", "randomPoint.json" ); const uniformPointSetPath = path.join( __dirname, "test", "out", "uniformPoint.json" ); const smallBboxPath = path.join(__dirname, "test", "out", "smallBox.json"); const bigBboxPath = path.join(__dirname, "test", "out", "bigBox.json"); const smallGridPath = path.join(__dirname, "test", "out", "smallGrid.json"); // console.log(result1, result2, result3); if (process.env.REGEN) { writeJsonFileSync(randomPointSetPath, randomPointSet); writeJsonFileSync(uniformPointSetPath, uniformPointSet); writeJsonFileSync(smallBboxPath, bboxPolygon(smallBbox)); writeJsonFileSync(bigBboxPath, bboxPolygon(bigBbox)); writeJsonFileSync(smallGridPath, smallGrid); } t.end(); }); ================================================ FILE: packages/turf-quadrat-analysis/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-random/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-random/README.md ================================================ # @turf/random ## randomPosition Returns a random position within a [bounding box][1]. ### Parameters * `bbox` **[BBox][1]** a bounding box inside of which positions are placed. (optional, default `[-180,-90,180,90]`) ### Examples ```javascript var position = turf.randomPosition([-180, -90, 180, 90]) // => position ``` * Throws **[Error][2]** if bbox is invalid Returns **[Position][3]** Position \[longitude, latitude] ## randomPoint Returns a random [point][4]. ### Parameters * `count` **[number][5]** how many geometries will be generated (optional, default `1`) * `options` **[Object][6]** Optional parameters (optional, default `{}`) * `options.bbox` **[BBox][1]** a bounding box inside of which geometries are placed. (optional, default `[-180,-90,180,90]`) ### Examples ```javascript var points = turf.randomPoint(25, {bbox: [-180, -90, 180, 90]}) // => points ``` * Throws **[Error][2]** if bbox is invalid Returns **[FeatureCollection][7]<[Point][8]>** GeoJSON FeatureCollection of points ## randomPolygon Returns a random [polygon][9]. ### Parameters * `count` **[number][5]** how many geometries will be generated (optional, default `1`) * `options` **[Object][6]** Optional parameters (optional, default `{}`) * `options.bbox` **[BBox][1]** a bounding box inside of which geometries are placed. (optional, default `[-180,-90,180,90]`) * `options.num_vertices` **[number][5]** is how many coordinates each LineString will contain. (optional, default `10`) * `options.max_radial_length` **[number][5]** is the maximum number of decimal degrees latitude or longitude that a vertex can reach out of the center of the Polygon. (optional, default `10`) ### Examples ```javascript var polygons = turf.randomPolygon(25, {bbox: [-180, -90, 180, 90]}) // => polygons ``` * Throws **[Error][2]** if bbox is invalid Returns **[FeatureCollection][7]<[Polygon][10]>** GeoJSON FeatureCollection of polygons ## randomLineString Returns a random [LineString][11]. ### Parameters * `count` **[number][5]** how many geometries will be generated (optional, default `1`) * `options` **[Object][6]** Optional parameters (optional, default `{}`) * `options.bbox` **[BBox][1]** a bounding box inside of which geometries are placed. (optional, default `[-180,-90,180,90]`) * `options.num_vertices` **[number][5]** is how many coordinates each LineString will contain. (optional, default `10`) * `options.max_length` **[number][5]** is the maximum number of decimal degrees that a vertex can be from its predecessor (optional, default `0.0001`) * `options.max_rotation` **[number][5]** is the maximum number of radians that a line segment can turn from the previous segment. (optional, default `Math.PI/8`) ### Examples ```javascript var lineStrings = turf.randomLineString(25, {bbox: [-180, -90, 180, 90]}) // => lineStrings ``` * Throws **[Error][2]** if bbox is invalid Returns **[FeatureCollection][7]<[LineString][11]>** GeoJSON FeatureCollection of linestrings [1]: https://tools.ietf.org/html/rfc7946#section-5 [2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error [3]: https://developer.mozilla.org/docs/Web/API/Position [4]: point [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [7]: https://tools.ietf.org/html/rfc7946#section-3.3 [8]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [9]: polygon [10]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [11]: https://tools.ietf.org/html/rfc7946#section-3.1.4 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/random ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-random/bench.ts ================================================ import Benchmark, { Event } from "benchmark"; import { randomPolygon } from "./index.js"; let totalTime = 0.0; const suite = new Benchmark.Suite("turf-random"); suite .add("turf-random", () => randomPolygon(1, { num_vertices: 100000 }), { onComplete: (e: Event) => (totalTime = totalTime += e.target.times?.elapsed), }) .on("cycle", (e: Event) => console.log(String(e.target))) .on("complete", () => console.log(`completed in ${totalTime.toFixed(2)} seconds`) ) .run(); ================================================ FILE: packages/turf-random/index.ts ================================================ import { BBox, FeatureCollection, LineString, Point, Polygon, Position, } from "geojson"; import { featureCollection, isNumber, isObject, lineString, point, polygon, validateBBox, } from "@turf/helpers"; /** * Returns a random position within a {@link BBox|bounding box}. * * @function * @param {BBox} [bbox=[-180, -90, 180, 90]] a bounding box inside of which positions are placed. * @returns {Position} Position [longitude, latitude] * @throws {Error} if bbox is invalid * @example * var position = turf.randomPosition([-180, -90, 180, 90]) * // => position */ function randomPosition(bbox?: BBox | { bbox: BBox }): Position { checkBBox(bbox); return randomPositionUnchecked(bbox); } // does not check bbox for validity, that is handled by the exported functions function randomPositionUnchecked(bbox?: BBox | { bbox: BBox }): Position { if (Array.isArray(bbox)) { return coordInBBox(bbox); } if (bbox && bbox.bbox) { return coordInBBox(bbox.bbox); } return [lon(), lat()]; } function checkBBox(bbox?: BBox | { bbox: BBox }) { if (bbox == null) { return; } else if (Array.isArray(bbox)) { validateBBox(bbox); } else if (bbox.bbox != null) { validateBBox(bbox.bbox); } } /** * Returns a random {@link point}. * * @function * @param {number} [count=1] how many geometries will be generated * @param {Object} [options={}] Optional parameters * @param {BBox} [options.bbox=[-180, -90, 180, 90]] a bounding box inside of which geometries are placed. * @returns {FeatureCollection} GeoJSON FeatureCollection of points * @throws {Error} if bbox is invalid * @example * var points = turf.randomPoint(25, {bbox: [-180, -90, 180, 90]}) * // => points */ function randomPoint( count?: number, options: { bbox?: BBox; } = {} ): FeatureCollection { checkBBox(options.bbox); if (count === undefined || count === null) { count = 1; } const features = []; for (let i = 0; i < count; i++) { features.push(point(randomPositionUnchecked(options.bbox))); } return featureCollection(features); } /** * Returns a random {@link polygon}. * * @function * @param {number} [count=1] how many geometries will be generated * @param {Object} [options={}] Optional parameters * @param {BBox} [options.bbox=[-180, -90, 180, 90]] a bounding box inside of which geometries are placed. * @param {number} [options.num_vertices=10] is how many coordinates each LineString will contain. * @param {number} [options.max_radial_length=10] is the maximum number of decimal degrees latitude or longitude that a * vertex can reach out of the center of the Polygon. * @returns {FeatureCollection} GeoJSON FeatureCollection of polygons * @throws {Error} if bbox is invalid * @example * var polygons = turf.randomPolygon(25, {bbox: [-180, -90, 180, 90]}) * // => polygons */ function randomPolygon( count?: number, options: { bbox?: BBox; num_vertices?: number; max_radial_length?: number; } = {} ): FeatureCollection { checkBBox(options.bbox); // Default param if (count === undefined || count === null) { count = 1; } if (options.bbox === undefined || options.bbox === null) { options.bbox = [-180, -90, 180, 90]; } if (!isNumber(options.num_vertices) || options.num_vertices === undefined) { options.num_vertices = 10; } if ( !isNumber(options.max_radial_length) || options.max_radial_length === undefined ) { options.max_radial_length = 10; } const bboxWidth = Math.abs(options.bbox[0] - options.bbox[2]); const bboxHeight = Math.abs(options.bbox[1] - options.bbox[3]); const maxRadius = Math.min(bboxWidth / 2, bboxHeight / 2); if (options.max_radial_length > maxRadius) { throw new Error("max_radial_length is greater than the radius of the bbox"); } // Create a padded bbox to avoid the polygons to be too close to the border const paddedBbox = [ options.bbox[0] + options.max_radial_length, options.bbox[1] + options.max_radial_length, options.bbox[2] - options.max_radial_length, options.bbox[3] - options.max_radial_length, ] as BBox; const features = []; for (let i = 0; i < count; i++) { let vertices: number[][] = []; const circleOffsets = [...Array(options.num_vertices + 1)].map(Math.random); // Sum Offsets circleOffsets.forEach((cur, index, arr) => { arr[index] = index > 0 ? cur + arr[index - 1] : cur; }); // scaleOffsets circleOffsets.forEach((cur) => { cur = (cur * 2 * Math.PI) / circleOffsets[circleOffsets.length - 1]; const radialScaler = Math.random(); vertices.push([ radialScaler * (options.max_radial_length || 10) * Math.sin(cur), radialScaler * (options.max_radial_length || 10) * Math.cos(cur), ]); }); vertices[vertices.length - 1] = vertices[0]; // close the ring // center the polygon around something vertices = vertices .reverse() // Make counter-clockwise to adhere to right hand rule. .map(vertexToCoordinate(randomPositionUnchecked(paddedBbox))); features.push(polygon([vertices])); } return featureCollection(features); } /** * Returns a random {@link LineString}. * * @function * @param {number} [count=1] how many geometries will be generated * @param {Object} [options={}] Optional parameters * @param {BBox} [options.bbox=[-180, -90, 180, 90]] a bounding box inside of which geometries are placed. * @param {number} [options.num_vertices=10] is how many coordinates each LineString will contain. * @param {number} [options.max_length=0.0001] is the maximum number of decimal degrees that a * vertex can be from its predecessor * @param {number} [options.max_rotation=Math.PI / 8] is the maximum number of radians that a * line segment can turn from the previous segment. * @returns {FeatureCollection} GeoJSON FeatureCollection of linestrings * @throws {Error} if bbox is invalid * @example * var lineStrings = turf.randomLineString(25, {bbox: [-180, -90, 180, 90]}) * // => lineStrings */ function randomLineString( count?: number, options: { bbox?: BBox; num_vertices?: number; max_length?: number; max_rotation?: number; } = {} ): FeatureCollection { // Optional parameters options = options || {}; if (!isObject(options)) { throw new Error("options is invalid"); } const bbox = options.bbox; checkBBox(bbox); let num_vertices = options.num_vertices; let max_length = options.max_length; let max_rotation = options.max_rotation; if (count === undefined || count === null) { count = 1; } // Default parameters if ( !isNumber(num_vertices) || num_vertices === undefined || num_vertices < 2 ) { num_vertices = 10; } if (!isNumber(max_length) || max_length === undefined) { max_length = 0.0001; } if (!isNumber(max_rotation) || max_rotation === undefined) { max_rotation = Math.PI / 8; } const features = []; for (let i = 0; i < count; i++) { const startingPoint = randomPositionUnchecked(bbox); const vertices = [startingPoint]; for (let j = 0; j < num_vertices - 1; j++) { const priorAngle = j === 0 ? Math.random() * 2 * Math.PI : Math.tan( (vertices[j][1] - vertices[j - 1][1]) / (vertices[j][0] - vertices[j - 1][0]) ); const angle = priorAngle + (Math.random() - 0.5) * max_rotation * 2; const distance = Math.random() * max_length; vertices.push([ vertices[j][0] + distance * Math.cos(angle), vertices[j][1] + distance * Math.sin(angle), ]); } features.push(lineString(vertices)); } return featureCollection(features); } function vertexToCoordinate(hub: number[]) { return (cur: number[]) => { return [cur[0] + hub[0], cur[1] + hub[1]]; }; } function rnd() { return Math.random() - 0.5; } function lon() { return rnd() * 360; } function lat() { return rnd() * 180; } function coordInBBox(bbox: BBox) { return [ Math.random() * (bbox[2] - bbox[0]) + bbox[0], Math.random() * (bbox[3] - bbox[1]) + bbox[1], ]; } export { randomPosition, randomPoint, randomPolygon, randomLineString }; ================================================ FILE: packages/turf-random/package.json ================================================ { "name": "@turf/random", "version": "7.3.4", "description": "Generates random points, lines, or polygons for testing.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "gis" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-random/test.ts ================================================ import test from "tape"; import { randomPoint, randomPolygon, randomLineString, randomPosition, } from "./index.js"; test("random(points)", (t) => { var points = randomPoint(); t.equal(points.type, "FeatureCollection", "is a featurecollection"); t.equal(points.features.length, 1, "right number of features"); t.equal(points.features[0].geometry.type, "Point", "feature type correct"); t.end(); }); test("random(polygons)", (t) => { var points = randomPolygon(); t.equal(points.type, "FeatureCollection", "is a featurecollection"); t.equal(points.features.length, 1, "right number of features"); t.equal(points.features[0].geometry.type, "Polygon", "feature type correct"); t.end(); }); test("random(polygons, 10)", (t) => { var points = randomPolygon(10); t.equal(points.type, "FeatureCollection", "is a featurecollection"); t.equal(points.features.length, 10, "right number of features"); t.equal(points.features[0].geometry.type, "Polygon", "feature type correct"); t.end(); }); test("random(polygons, 1, {num_vertices})", (t) => { var points = randomPolygon(10, { num_vertices: 23 }); t.equal(points.type, "FeatureCollection", "is a featurecollection"); t.equal(points.features.length, 10, "right number of features"); t.equal( points.features[0].geometry.coordinates[0].length, 24, "num vertices" ); t.end(); }); test("random(points, 10, {bbox})", (t) => { var points = randomPoint(10, { bbox: [0, 0, 0, 0] }); t.equal(points.type, "FeatureCollection", "is a featurecollection"); t.equal(points.features.length, 10, "right number of features"); t.equal(points.features[0].geometry.type, "Point", "feature type correct"); t.deepEqual( points.features[0].geometry.coordinates, [0, 0], "feature type correct" ); t.end(); }); test("bbox input gets validated", (t) => { const bbox = [ [0, 0], [0, 0], [0, 0], [0, 0], ]; // this is invalid t.throws(() => { randomPoint(1, { bbox }); }, "randomPoint checks bbox validity"); t.throws(() => { randomPolygon(1, { bbox }); }, "randomPolygon checks bbox validity"); t.throws(() => { randomLineString(1, { bbox }); }, "randomLineString checks bbox validity"); t.throws(() => { randomPosition(bbox); }, "randomPosition checks bbox validity"); t.end(); }); ================================================ FILE: packages/turf-random/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-rectangle-grid/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-rectangle-grid/README.md ================================================ # @turf/rectangle-grid ## rectangleGrid Creates a grid of rectangular polygons with width and height consistent in degrees ### Parameters * `bbox` **[BBox][1]** extent of grid in \[minX, minY, maxX, maxY] order. If the grid does not fill the bbox perfectly, it is centered. * `cellWidth` **[number][2]** width of each cell, in units * `cellHeight` **[number][2]** height of each cell, in units * `options` **[Object][3]** Optional parameters (optional, default `{}`) * `options.units` **Units** the units of the cell width and height value. Supports all valid Turf [Units][4]. If you are looking for rectangles with equal width and height in linear units (e.g. kilometers) this is not the module for you. The cellWidth and cellHeight is converted from units provided to degrees internally, so the width and height of resulting polygons will be consistent only in degrees. (optional, default `'kilometers'`) * `options.mask` **[Feature][5]<([Polygon][6] | [MultiPolygon][7])>?** if passed a Polygon or MultiPolygon, the grid Points will be created only inside it * `options.properties` **[Object][3]** passed to each point of the grid (optional, default `{}`) ### Examples ```javascript var bbox = [-95, 30 ,-85, 40]; var cellWidth = 50; var cellHeight = 20; var options = {units: 'miles'}; var rectangleGrid = turf.rectangleGrid(bbox, cellWidth, cellHeight, options); //addToMap var addToMap = [rectangleGrid] ``` Returns **[FeatureCollection][8]<[Polygon][6]>** a grid of polygons [1]: https://tools.ietf.org/html/rfc7946#section-5 [2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [4]: https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/README_UNITS.md [5]: https://tools.ietf.org/html/rfc7946#section-3.2 [6]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [7]: https://tools.ietf.org/html/rfc7946#section-3.1.7 [8]: https://tools.ietf.org/html/rfc7946#section-3.3 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/rectangle-grid ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-rectangle-grid/bench.ts ================================================ import Benchmark from "benchmark"; import { rectangleGrid } from "./index.js"; var bbox = [-95, 30, -85, 40]; /** * Benchmark Results * * highres -- 206310 cells x 5.99 ops/sec ±13.42% (19 runs sampled) * midres -- 2006 cells x 3,388 ops/sec ±10.03% (85 runs sampled) * lowres -- 15 cells x 466,370 ops/sec ±1.14% (88 runs sampled) */ const lowres = () => rectangleGrid(bbox, 100, 200, { units: "miles" }); const midres = () => rectangleGrid(bbox, 10, 20, { units: "miles" }); const highres = () => rectangleGrid(bbox, 1, 2, { units: "miles" }); var suite = new Benchmark.Suite("turf-rectangle-grid"); suite .add("highres -- " + highres().features.length + " cells", highres) .add("midres -- " + midres().features.length + " cells", midres) .add("lowres -- " + lowres().features.length + " cells", lowres) .on("cycle", (e) => console.log(String(e.target))) .run(); ================================================ FILE: packages/turf-rectangle-grid/index.ts ================================================ import { booleanIntersects as intersect } from "@turf/boolean-intersects"; import { BBox, Feature, FeatureCollection, MultiPolygon, Polygon, GeoJsonProperties, } from "geojson"; import { convertLength, featureCollection, polygon, Units, } from "@turf/helpers"; /** * Creates a grid of rectangular polygons with width and height consistent in degrees * * @function * @param {BBox} bbox extent of grid in [minX, minY, maxX, maxY] order. If the grid does not fill the bbox perfectly, it is centered. * @param {number} cellWidth width of each cell, in units * @param {number} cellHeight height of each cell, in units * @param {Object} [options={}] Optional parameters * @param {Units} [options.units='kilometers'] the units of the cell width and height value. * Supports all valid Turf {@link https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/README_UNITS.md Units}. * If you are looking for rectangles with equal width and height in linear units (e.g. kilometers) this is not the module for you. * The cellWidth and cellHeight is converted from units provided to degrees internally, so the width and height of resulting polygons will be consistent only in degrees. * @param {Feature} [options.mask] if passed a Polygon or MultiPolygon, * the grid Points will be created only inside it * @param {Object} [options.properties={}] passed to each point of the grid * @returns {FeatureCollection} a grid of polygons * @example * var bbox = [-95, 30 ,-85, 40]; * var cellWidth = 50; * var cellHeight = 20; * var options = {units: 'miles'}; * * var rectangleGrid = turf.rectangleGrid(bbox, cellWidth, cellHeight, options); * * //addToMap * var addToMap = [rectangleGrid] */ function rectangleGrid

( bbox: BBox, cellWidth: number, cellHeight: number, options: { units?: Units; properties?: P; mask?: Feature | Polygon | MultiPolygon; } = {} ): FeatureCollection { // Containers const results = []; const west = bbox[0]; const south = bbox[1]; const east = bbox[2]; const north = bbox[3]; const bboxWidth = east - west; const cellWidthDeg = convertLength(cellWidth, options.units, "degrees"); const bboxHeight = north - south; const cellHeightDeg = convertLength(cellHeight, options.units, "degrees"); const columns = Math.floor(Math.abs(bboxWidth) / cellWidthDeg); const rows = Math.floor(Math.abs(bboxHeight) / cellHeightDeg); // if the grid does not fill the bbox perfectly, center it. const deltaX = (bboxWidth - columns * cellWidthDeg) / 2; const deltaY = (bboxHeight - rows * cellHeightDeg) / 2; // iterate over columns & rows let currentX = west + deltaX; for (let column = 0; column < columns; column++) { let currentY = south + deltaY; for (let row = 0; row < rows; row++) { const cellPoly = polygon( [ [ [currentX, currentY], [currentX, currentY + cellHeightDeg], [currentX + cellWidthDeg, currentY + cellHeightDeg], [currentX + cellWidthDeg, currentY], [currentX, currentY], ], ], options.properties ); if (options.mask) { if (intersect(options.mask, cellPoly)) { results.push(cellPoly); } } else { results.push(cellPoly); } currentY += cellHeightDeg; } currentX += cellWidthDeg; } return featureCollection(results); } export { rectangleGrid }; export default rectangleGrid; ================================================ FILE: packages/turf-rectangle-grid/package.json ================================================ { "name": "@turf/rectangle-grid", "version": "7.3.4", "description": "Creates a grid of rectangular polygons with width and height consistent in degrees.", "author": "Turf Authors", "contributors": [ "Steve Bennett <@stevage>", "Adam Michaleski <@adam3039>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "grid", "regular", "cartesian" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@turf/bbox-polygon": "workspace:*", "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/boolean-intersects": "workspace:*", "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-rectangle-grid/test/in/10x10-1degree.json ================================================ { "bbox": [-5.1, -5.1, 5.1, 5.1], "cellWidth": 1, "cellHeight": 1, "units": "degrees" } ================================================ FILE: packages/turf-rectangle-grid/test/in/australia-mask.json ================================================ { "bbox": [110, 0, 160, -50], "cellWidth": 1, "cellHeight": 2, "units": "degrees", "mask": { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [115.13671875, -33.7243396617476], [116.3671875, -35.02999636902566], [118.828125, -34.59704151614416], [123.74999999999999, -33.9433599465788], [126.38671874999999, -32.249974455863295], [131.484375, -31.12819929911196], [135.35156249999997, -34.30714385628803], [139.04296875, -35.24561909420681], [140.2734375, -37.78808138412045], [146.6015625, -38.8225909761771], [150.64453125, -37.43997405227057], [152.40234375, -33.504759069226075], [154.072265625, -28.690587654250685], [153.017578125, -25.641526373065755], [146.513671875, -18.646245142670598], [142.20703125, -10.055402736564224], [140.537109375, -17.224758206624628], [135.439453125, -14.859850400601037], [137.197265625, -11.953349393643416], [131.30859375, -11.178401873711772], [129.0234375, -14.434680215297268], [125.595703125, -14.179186142354169], [120.9375, -19.559790136497398], [114.873046875, -21.125497636606266], [114.169921875, -26.11598592533351], [115.13671875, -33.7243396617476] ] ] } } } ================================================ FILE: packages/turf-rectangle-grid/test/in/big-bbox-500x100-miles.json ================================================ { "bbox": [-220.78125, -80.64703474739618, -29.53125, 78.34941069014629], "cellWidth": 500, "cellHeight": 100, "units": "miles" } ================================================ FILE: packages/turf-rectangle-grid/test/in/fiji-10x5-miles.json ================================================ { "bbox": [ -180.3460693359375, -17.16703442146408, -179.5770263671875, -16.48349760264812 ], "cellWidth": 10, "cellHeight": 5, "units": "miles" } ================================================ FILE: packages/turf-rectangle-grid/test/in/global-grid.json ================================================ { "bbox": [-180, -90, 180, 90], "cellWidth": 10, "cellHeight": 10, "units": "degrees" } ================================================ FILE: packages/turf-rectangle-grid/test/in/victoria-20x100-km.json ================================================ { "bbox": [141, -39, 150, -34], "cellWidth": 20, "cellHeight": 100, "units": "kilometers" } ================================================ FILE: packages/turf-rectangle-grid/test/out/10x10-1degree.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-5, -5], [-5, -4], [-4, -4], [-4, -5], [-5, -5] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-5, -4], [-5, -3], [-4, -3], [-4, -4], [-5, -4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-5, -3], [-5, -2], [-4, -2], [-4, -3], [-5, -3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-5, -2], [-5, -1], [-4, -1], [-4, -2], [-5, -2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-5, -1], [-5, 0], [-4, 0], [-4, -1], [-5, -1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-5, 0], [-5, 1], [-4, 1], [-4, 0], [-5, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-5, 1], [-5, 2], [-4, 2], [-4, 1], [-5, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-5, 2], [-5, 3], [-4, 3], [-4, 2], [-5, 2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-5, 3], [-5, 4], [-4, 4], [-4, 3], [-5, 3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-5, 4], [-5, 5], [-4, 5], [-4, 4], [-5, 4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-4, -5], [-4, -4], [-3, -4], [-3, -5], [-4, -5] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-4, -4], [-4, -3], [-3, -3], [-3, -4], [-4, -4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-4, -3], [-4, -2], [-3, -2], [-3, -3], [-4, -3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-4, -2], [-4, -1], [-3, -1], [-3, -2], [-4, -2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-4, -1], [-4, 0], [-3, 0], [-3, -1], [-4, -1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-4, 0], [-4, 1], [-3, 1], [-3, 0], [-4, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-4, 1], [-4, 2], [-3, 2], [-3, 1], [-4, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-4, 2], [-4, 3], [-3, 3], [-3, 2], [-4, 2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-4, 3], [-4, 4], [-3, 4], [-3, 3], [-4, 3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-4, 4], [-4, 5], [-3, 5], [-3, 4], [-4, 4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-3, -5], [-3, -4], [-2, -4], [-2, -5], [-3, -5] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-3, -4], [-3, -3], [-2, -3], [-2, -4], [-3, -4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-3, -3], [-3, -2], [-2, -2], [-2, -3], [-3, -3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-3, -2], [-3, -1], [-2, -1], [-2, -2], [-3, -2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-3, -1], [-3, 0], [-2, 0], [-2, -1], [-3, -1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-3, 0], [-3, 1], [-2, 1], [-2, 0], [-3, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-3, 1], [-3, 2], [-2, 2], [-2, 1], [-3, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-3, 2], [-3, 3], [-2, 3], [-2, 2], [-3, 2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-3, 3], [-3, 4], [-2, 4], [-2, 3], [-3, 3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-3, 4], [-3, 5], [-2, 5], [-2, 4], [-3, 4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-2, -5], [-2, -4], [-1, -4], [-1, -5], [-2, -5] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-2, -4], [-2, -3], [-1, -3], [-1, -4], [-2, -4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-2, -3], [-2, -2], [-1, -2], [-1, -3], [-2, -3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-2, -2], [-2, -1], [-1, -1], [-1, -2], [-2, -2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-2, -1], [-2, 0], [-1, 0], [-1, -1], [-2, -1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-2, 0], [-2, 1], [-1, 1], [-1, 0], [-2, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-2, 1], [-2, 2], [-1, 2], [-1, 1], [-2, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-2, 2], [-2, 3], [-1, 3], [-1, 2], [-2, 2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-2, 3], [-2, 4], [-1, 4], [-1, 3], [-2, 3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-2, 4], [-2, 5], [-1, 5], [-1, 4], [-2, 4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, -5], [-1, -4], [0, -4], [0, -5], [-1, -5] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, -4], [-1, -3], [0, -3], [0, -4], [-1, -4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, -3], [-1, -2], [0, -2], [0, -3], [-1, -3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, -2], [-1, -1], [0, -1], [0, -2], [-1, -2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, -1], [-1, 0], [0, 0], [0, -1], [-1, -1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 0], [-1, 1], [0, 1], [0, 0], [-1, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 1], [-1, 2], [0, 2], [0, 1], [-1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 2], [-1, 3], [0, 3], [0, 2], [-1, 2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 3], [-1, 4], [0, 4], [0, 3], [-1, 3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-1, 4], [-1, 5], [0, 5], [0, 4], [-1, 4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, -5], [0, -4], [1, -4], [1, -5], [0, -5] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, -4], [0, -3], [1, -3], [1, -4], [0, -4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, -3], [0, -2], [1, -2], [1, -3], [0, -3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, -2], [0, -1], [1, -1], [1, -2], [0, -2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, -1], [0, 0], [1, 0], [1, -1], [0, -1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [0, 1], [1, 1], [1, 0], [0, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 1], [0, 2], [1, 2], [1, 1], [0, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 2], [0, 3], [1, 3], [1, 2], [0, 2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 3], [0, 4], [1, 4], [1, 3], [0, 3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 4], [0, 5], [1, 5], [1, 4], [0, 4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, -5], [1, -4], [2, -4], [2, -5], [1, -5] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, -4], [1, -3], [2, -3], [2, -4], [1, -4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, -3], [1, -2], [2, -2], [2, -3], [1, -3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, -2], [1, -1], [2, -1], [2, -2], [1, -2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, -1], [1, 0], [2, 0], [2, -1], [1, -1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 0], [1, 1], [2, 1], [2, 0], [1, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [1, 2], [2, 2], [2, 1], [1, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 2], [1, 3], [2, 3], [2, 2], [1, 2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 3], [1, 4], [2, 4], [2, 3], [1, 3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 4], [1, 5], [2, 5], [2, 4], [1, 4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [2, -5], [2, -4], [3, -4], [3, -5], [2, -5] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [2, -4], [2, -3], [3, -3], [3, -4], [2, -4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [2, -3], [2, -2], [3, -2], [3, -3], [2, -3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [2, -2], [2, -1], [3, -1], [3, -2], [2, -2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [2, -1], [2, 0], [3, 0], [3, -1], [2, -1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [2, 0], [2, 1], [3, 1], [3, 0], [2, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [2, 1], [2, 2], [3, 2], [3, 1], [2, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [2, 2], [2, 3], [3, 3], [3, 2], [2, 2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [2, 3], [2, 4], [3, 4], [3, 3], [2, 3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [2, 4], [2, 5], [3, 5], [3, 4], [2, 4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [3, -5], [3, -4], [4, -4], [4, -5], [3, -5] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [3, -4], [3, -3], [4, -3], [4, -4], [3, -4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [3, -3], [3, -2], [4, -2], [4, -3], [3, -3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [3, -2], [3, -1], [4, -1], [4, -2], [3, -2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [3, -1], [3, 0], [4, 0], [4, -1], [3, -1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [3, 0], [3, 1], [4, 1], [4, 0], [3, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [3, 1], [3, 2], [4, 2], [4, 1], [3, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [3, 2], [3, 3], [4, 3], [4, 2], [3, 2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [3, 3], [3, 4], [4, 4], [4, 3], [3, 3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [3, 4], [3, 5], [4, 5], [4, 4], [3, 4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4, -5], [4, -4], [5, -4], [5, -5], [4, -5] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4, -4], [4, -3], [5, -3], [5, -4], [4, -4] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4, -3], [4, -2], [5, -2], [5, -3], [4, -3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4, -2], [4, -1], [5, -1], [5, -2], [4, -2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4, -1], [4, 0], [5, 0], [5, -1], [4, -1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4, 0], [4, 1], [5, 1], [5, 0], [4, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4, 1], [4, 2], [5, 2], [5, 1], [4, 1] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4, 2], [4, 3], [5, 3], [5, 2], [4, 2] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4, 3], [4, 4], [5, 4], [5, 3], [4, 3] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4, 4], [4, 5], [5, 5], [5, 4], [4, 4] ] ] } }, { "type": "Feature", "bbox": [-5.1, -5.1, 5.1, 5.1], "properties": { "stroke": "#F00", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-5.1, -5.1], [5.1, -5.1], [5.1, 5.1], [-5.1, 5.1], [-5.1, -5.1] ] ] } } ] } ================================================ FILE: packages/turf-rectangle-grid/test/out/australia-mask.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114, -34], [114, -32], [115, -32], [115, -34], [114, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114, -32], [114, -30], [115, -30], [115, -32], [114, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114, -30], [114, -28], [115, -28], [115, -30], [114, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114, -28], [114, -26], [115, -26], [115, -28], [114, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114, -26], [114, -24], [115, -24], [115, -26], [114, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114, -24], [114, -22], [115, -22], [115, -24], [114, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [114, -22], [114, -20], [115, -20], [115, -22], [114, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [115, -36], [115, -34], [116, -34], [116, -36], [115, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [115, -34], [115, -32], [116, -32], [116, -34], [115, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [115, -32], [115, -30], [116, -30], [116, -32], [115, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [115, -30], [115, -28], [116, -28], [116, -30], [115, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [115, -28], [115, -26], [116, -26], [116, -28], [115, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [115, -26], [115, -24], [116, -24], [116, -26], [115, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [115, -24], [115, -22], [116, -22], [116, -24], [115, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [115, -22], [115, -20], [116, -20], [116, -22], [115, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [116, -36], [116, -34], [117, -34], [117, -36], [116, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [116, -34], [116, -32], [117, -32], [117, -34], [116, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [116, -32], [116, -30], [117, -30], [117, -32], [116, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [116, -30], [116, -28], [117, -28], [117, -30], [116, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [116, -28], [116, -26], [117, -26], [117, -28], [116, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [116, -26], [116, -24], [117, -24], [117, -26], [116, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [116, -24], [116, -22], [117, -22], [117, -24], [116, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [116, -22], [116, -20], [117, -20], [117, -22], [116, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [117, -36], [117, -34], [118, -34], [118, -36], [117, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [117, -34], [117, -32], [118, -32], [118, -34], [117, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [117, -32], [117, -30], [118, -30], [118, -32], [117, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [117, -30], [117, -28], [118, -28], [118, -30], [117, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [117, -28], [117, -26], [118, -26], [118, -28], [117, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [117, -26], [117, -24], [118, -24], [118, -26], [117, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [117, -24], [117, -22], [118, -22], [118, -24], [117, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [117, -22], [117, -20], [118, -20], [118, -22], [117, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [118, -36], [118, -34], [119, -34], [119, -36], [118, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [118, -34], [118, -32], [119, -32], [119, -34], [118, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [118, -32], [118, -30], [119, -30], [119, -32], [118, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [118, -30], [118, -28], [119, -28], [119, -30], [118, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [118, -28], [118, -26], [119, -26], [119, -28], [118, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [118, -26], [118, -24], [119, -24], [119, -26], [118, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [118, -24], [118, -22], [119, -22], [119, -24], [118, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [118, -22], [118, -20], [119, -20], [119, -22], [118, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [119, -36], [119, -34], [120, -34], [120, -36], [119, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [119, -34], [119, -32], [120, -32], [120, -34], [119, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [119, -32], [119, -30], [120, -30], [120, -32], [119, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [119, -30], [119, -28], [120, -28], [120, -30], [119, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [119, -28], [119, -26], [120, -26], [120, -28], [119, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [119, -26], [119, -24], [120, -24], [120, -26], [119, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [119, -24], [119, -22], [120, -22], [120, -24], [119, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [119, -22], [119, -20], [120, -20], [120, -22], [119, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [119, -20], [119, -18], [120, -18], [120, -20], [119, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, -36], [120, -34], [121, -34], [121, -36], [120, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, -34], [120, -32], [121, -32], [121, -34], [120, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, -32], [120, -30], [121, -30], [121, -32], [120, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, -30], [120, -28], [121, -28], [121, -30], [120, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, -28], [120, -26], [121, -26], [121, -28], [120, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, -26], [120, -24], [121, -24], [121, -26], [120, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, -24], [120, -22], [121, -22], [121, -24], [120, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, -22], [120, -20], [121, -20], [121, -22], [120, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, -20], [120, -18], [121, -18], [121, -20], [120, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [121, -36], [121, -34], [122, -34], [122, -36], [121, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [121, -34], [121, -32], [122, -32], [122, -34], [121, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [121, -32], [121, -30], [122, -30], [122, -32], [121, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [121, -30], [121, -28], [122, -28], [122, -30], [121, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [121, -28], [121, -26], [122, -26], [122, -28], [121, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [121, -26], [121, -24], [122, -24], [122, -26], [121, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [121, -24], [121, -22], [122, -22], [122, -24], [121, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [121, -22], [121, -20], [122, -20], [122, -22], [121, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [121, -20], [121, -18], [122, -18], [122, -20], [121, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [122, -36], [122, -34], [123, -34], [123, -36], [122, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [122, -34], [122, -32], [123, -32], [123, -34], [122, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [122, -32], [122, -30], [123, -30], [123, -32], [122, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [122, -30], [122, -28], [123, -28], [123, -30], [122, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [122, -28], [122, -26], [123, -26], [123, -28], [122, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [122, -26], [122, -24], [123, -24], [123, -26], [122, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [122, -24], [122, -22], [123, -22], [123, -24], [122, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [122, -22], [122, -20], [123, -20], [123, -22], [122, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [122, -20], [122, -18], [123, -18], [123, -20], [122, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [122, -18], [122, -16], [123, -16], [123, -18], [122, -18] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [123, -36], [123, -34], [124, -34], [124, -36], [123, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [123, -34], [123, -32], [124, -32], [124, -34], [123, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [123, -32], [123, -30], [124, -30], [124, -32], [123, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [123, -30], [123, -28], [124, -28], [124, -30], [123, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [123, -28], [123, -26], [124, -26], [124, -28], [123, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [123, -26], [123, -24], [124, -24], [124, -26], [123, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [123, -24], [123, -22], [124, -22], [124, -24], [123, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [123, -22], [123, -20], [124, -20], [124, -22], [123, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [123, -20], [123, -18], [124, -18], [124, -20], [123, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [123, -18], [123, -16], [124, -16], [124, -18], [123, -18] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [124, -34], [124, -32], [125, -32], [125, -34], [124, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [124, -32], [124, -30], [125, -30], [125, -32], [124, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [124, -30], [124, -28], [125, -28], [125, -30], [124, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [124, -28], [124, -26], [125, -26], [125, -28], [124, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [124, -26], [124, -24], [125, -24], [125, -26], [124, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [124, -24], [124, -22], [125, -22], [125, -24], [124, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [124, -22], [124, -20], [125, -20], [125, -22], [124, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [124, -20], [124, -18], [125, -18], [125, -20], [124, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [124, -18], [124, -16], [125, -16], [125, -18], [124, -18] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [124, -16], [124, -14], [125, -14], [125, -16], [124, -16] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [125, -34], [125, -32], [126, -32], [126, -34], [125, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [125, -32], [125, -30], [126, -30], [126, -32], [125, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [125, -30], [125, -28], [126, -28], [126, -30], [125, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [125, -28], [125, -26], [126, -26], [126, -28], [125, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [125, -26], [125, -24], [126, -24], [126, -26], [125, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [125, -24], [125, -22], [126, -22], [126, -24], [125, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [125, -22], [125, -20], [126, -20], [126, -22], [125, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [125, -20], [125, -18], [126, -18], [126, -20], [125, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [125, -18], [125, -16], [126, -16], [126, -18], [125, -18] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [125, -16], [125, -14], [126, -14], [126, -16], [125, -16] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [126, -34], [126, -32], [127, -32], [127, -34], [126, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [126, -32], [126, -30], [127, -30], [127, -32], [126, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [126, -30], [126, -28], [127, -28], [127, -30], [126, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [126, -28], [126, -26], [127, -26], [127, -28], [126, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [126, -26], [126, -24], [127, -24], [127, -26], [126, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [126, -24], [126, -22], [127, -22], [127, -24], [126, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [126, -22], [126, -20], [127, -20], [127, -22], [126, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [126, -20], [126, -18], [127, -18], [127, -20], [126, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [126, -18], [126, -16], [127, -16], [127, -18], [126, -18] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [126, -16], [126, -14], [127, -14], [127, -16], [126, -16] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [127, -34], [127, -32], [128, -32], [128, -34], [127, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [127, -32], [127, -30], [128, -30], [128, -32], [127, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [127, -30], [127, -28], [128, -28], [128, -30], [127, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [127, -28], [127, -26], [128, -26], [128, -28], [127, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [127, -26], [127, -24], [128, -24], [128, -26], [127, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [127, -24], [127, -22], [128, -22], [128, -24], [127, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [127, -22], [127, -20], [128, -20], [128, -22], [127, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [127, -20], [127, -18], [128, -18], [128, -20], [127, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [127, -18], [127, -16], [128, -16], [128, -18], [127, -18] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [127, -16], [127, -14], [128, -14], [128, -16], [127, -16] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [128, -32], [128, -30], [129, -30], [129, -32], [128, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [128, -30], [128, -28], [129, -28], [129, -30], [128, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [128, -28], [128, -26], [129, -26], [129, -28], [128, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [128, -26], [128, -24], [129, -24], [129, -26], [128, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [128, -24], [128, -22], [129, -22], [129, -24], [128, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [128, -22], [128, -20], [129, -20], [129, -22], [128, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [128, -20], [128, -18], [129, -18], [129, -20], [128, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [128, -18], [128, -16], [129, -16], [129, -18], [128, -18] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [128, -16], [128, -14], [129, -14], [129, -16], [128, -16] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [129, -32], [129, -30], [130, -30], [130, -32], [129, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [129, -30], [129, -28], [130, -28], [130, -30], [129, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [129, -28], [129, -26], [130, -26], [130, -28], [129, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [129, -26], [129, -24], [130, -24], [130, -26], [129, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [129, -24], [129, -22], [130, -22], [130, -24], [129, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [129, -22], [129, -20], [130, -20], [130, -22], [129, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [129, -20], [129, -18], [130, -18], [130, -20], [129, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [129, -18], [129, -16], [130, -16], [130, -18], [129, -18] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [129, -16], [129, -14], [130, -14], [130, -16], [129, -16] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [129, -14], [129, -12], [130, -12], [130, -14], [129, -14] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, -32], [130, -30], [131, -30], [131, -32], [130, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, -30], [130, -28], [131, -28], [131, -30], [130, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, -28], [130, -26], [131, -26], [131, -28], [130, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, -26], [130, -24], [131, -24], [131, -26], [130, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, -24], [130, -22], [131, -22], [131, -24], [130, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, -22], [130, -20], [131, -20], [131, -22], [130, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, -20], [130, -18], [131, -18], [131, -20], [130, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, -18], [130, -16], [131, -16], [131, -18], [130, -18] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, -16], [130, -14], [131, -14], [131, -16], [130, -16] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, -14], [130, -12], [131, -12], [131, -14], [130, -14] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, -12], [130, -10], [131, -10], [131, -12], [130, -12] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [131, -32], [131, -30], [132, -30], [132, -32], [131, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [131, -30], [131, -28], [132, -28], [132, -30], [131, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [131, -28], [131, -26], [132, -26], [132, -28], [131, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [131, -26], [131, -24], [132, -24], [132, -26], [131, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [131, -24], [131, -22], [132, -22], [132, -24], [131, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [131, -22], [131, -20], [132, -20], [132, -22], [131, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [131, -20], [131, -18], [132, -18], [132, -20], [131, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [131, -18], [131, -16], [132, -16], [132, -18], [131, -18] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [131, -16], [131, -14], [132, -14], [132, -16], [131, -16] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [131, -14], [131, -12], [132, -12], [132, -14], [131, -14] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [131, -12], [131, -10], [132, -10], [132, -12], [131, -12] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [132, -34], [132, -32], [133, -32], [133, -34], [132, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [132, -32], [132, -30], [133, -30], [133, -32], [132, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [132, -30], [132, -28], [133, -28], [133, -30], [132, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [132, -28], [132, -26], [133, -26], [133, -28], [132, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [132, -26], [132, -24], [133, -24], [133, -26], [132, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [132, -24], [132, -22], [133, -22], [133, -24], [132, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [132, -22], [132, -20], [133, -20], [133, -22], [132, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [132, -20], [132, -18], [133, -18], [133, -20], [132, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [132, -18], [132, -16], [133, -16], [133, -18], [132, -18] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [132, -16], [132, -14], [133, -14], [133, -16], [132, -16] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [132, -14], [132, -12], [133, -12], [133, -14], [132, -14] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [132, -12], [132, -10], [133, -10], [133, -12], [132, -12] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [133, -34], [133, -32], [134, -32], [134, -34], [133, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [133, -32], [133, -30], [134, -30], [134, -32], [133, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [133, -30], [133, -28], [134, -28], [134, -30], [133, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [133, -28], [133, -26], [134, -26], [134, -28], [133, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [133, -26], [133, -24], [134, -24], [134, -26], [133, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [133, -24], [133, -22], [134, -22], [134, -24], [133, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [133, -22], [133, -20], [134, -20], [134, -22], [133, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [133, -20], [133, -18], [134, -18], [134, -20], [133, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [133, -18], [133, -16], [134, -16], [134, -18], [133, -18] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [133, -16], [133, -14], [134, -14], [134, -16], [133, -16] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [133, -14], [133, -12], [134, -12], [134, -14], [133, -14] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [133, -12], [133, -10], [134, -10], [134, -12], [133, -12] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [134, -36], [134, -34], [135, -34], [135, -36], [134, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [134, -34], [134, -32], [135, -32], [135, -34], [134, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [134, -32], [134, -30], [135, -30], [135, -32], [134, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [134, -30], [134, -28], [135, -28], [135, -30], [134, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [134, -28], [134, -26], [135, -26], [135, -28], [134, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [134, -26], [134, -24], [135, -24], [135, -26], [134, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [134, -24], [134, -22], [135, -22], [135, -24], [134, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [134, -22], [134, -20], [135, -20], [135, -22], [134, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [134, -20], [134, -18], [135, -18], [135, -20], [134, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [134, -18], [134, -16], [135, -16], [135, -18], [134, -18] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [134, -16], [134, -14], [135, -14], [135, -16], [134, -16] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [134, -14], [134, -12], [135, -12], [135, -14], [134, -14] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [134, -12], [134, -10], [135, -10], [135, -12], [134, -12] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [135, -36], [135, -34], [136, -34], [136, -36], [135, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [135, -34], [135, -32], [136, -32], [136, -34], [135, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [135, -32], [135, -30], [136, -30], [136, -32], [135, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [135, -30], [135, -28], [136, -28], [136, -30], [135, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [135, -28], [135, -26], [136, -26], [136, -28], [135, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [135, -26], [135, -24], [136, -24], [136, -26], [135, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [135, -24], [135, -22], [136, -22], [136, -24], [135, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [135, -22], [135, -20], [136, -20], [136, -22], [135, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [135, -20], [135, -18], [136, -18], [136, -20], [135, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [135, -18], [135, -16], [136, -16], [136, -18], [135, -18] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [135, -16], [135, -14], [136, -14], [136, -16], [135, -16] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [135, -14], [135, -12], [136, -12], [136, -14], [135, -14] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [135, -12], [135, -10], [136, -10], [136, -12], [135, -12] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [136, -36], [136, -34], [137, -34], [137, -36], [136, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [136, -34], [136, -32], [137, -32], [137, -34], [136, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [136, -32], [136, -30], [137, -30], [137, -32], [136, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [136, -30], [136, -28], [137, -28], [137, -30], [136, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [136, -28], [136, -26], [137, -26], [137, -28], [136, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [136, -26], [136, -24], [137, -24], [137, -26], [136, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [136, -24], [136, -22], [137, -22], [137, -24], [136, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [136, -22], [136, -20], [137, -20], [137, -22], [136, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [136, -20], [136, -18], [137, -18], [137, -20], [136, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [136, -18], [136, -16], [137, -16], [137, -18], [136, -18] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [136, -16], [136, -14], [137, -14], [137, -16], [136, -16] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [136, -14], [136, -12], [137, -12], [137, -14], [136, -14] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [136, -12], [136, -10], [137, -10], [137, -12], [136, -12] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [137, -36], [137, -34], [138, -34], [138, -36], [137, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [137, -34], [137, -32], [138, -32], [138, -34], [137, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [137, -32], [137, -30], [138, -30], [138, -32], [137, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [137, -30], [137, -28], [138, -28], [138, -30], [137, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [137, -28], [137, -26], [138, -26], [138, -28], [137, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [137, -26], [137, -24], [138, -24], [138, -26], [137, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [137, -24], [137, -22], [138, -22], [138, -24], [137, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [137, -22], [137, -20], [138, -20], [138, -22], [137, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [137, -20], [137, -18], [138, -18], [138, -20], [137, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [137, -18], [137, -16], [138, -16], [138, -18], [137, -18] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [137, -16], [137, -14], [138, -14], [138, -16], [137, -16] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [137, -14], [137, -12], [138, -12], [138, -14], [137, -14] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [137, -12], [137, -10], [138, -10], [138, -12], [137, -12] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [138, -36], [138, -34], [139, -34], [139, -36], [138, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [138, -34], [138, -32], [139, -32], [139, -34], [138, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [138, -32], [138, -30], [139, -30], [139, -32], [138, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [138, -30], [138, -28], [139, -28], [139, -30], [138, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [138, -28], [138, -26], [139, -26], [139, -28], [138, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [138, -26], [138, -24], [139, -24], [139, -26], [138, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [138, -24], [138, -22], [139, -22], [139, -24], [138, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [138, -22], [138, -20], [139, -20], [139, -22], [138, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [138, -20], [138, -18], [139, -18], [139, -20], [138, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [138, -18], [138, -16], [139, -16], [139, -18], [138, -18] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [139, -38], [139, -36], [140, -36], [140, -38], [139, -38] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [139, -36], [139, -34], [140, -34], [140, -36], [139, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [139, -34], [139, -32], [140, -32], [140, -34], [139, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [139, -32], [139, -30], [140, -30], [140, -32], [139, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [139, -30], [139, -28], [140, -28], [140, -30], [139, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [139, -28], [139, -26], [140, -26], [140, -28], [139, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [139, -26], [139, -24], [140, -24], [140, -26], [139, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [139, -24], [139, -22], [140, -22], [140, -24], [139, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [139, -22], [139, -20], [140, -20], [140, -22], [139, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [139, -20], [139, -18], [140, -18], [140, -20], [139, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [139, -18], [139, -16], [140, -16], [140, -18], [139, -18] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, -38], [140, -36], [141, -36], [141, -38], [140, -38] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, -36], [140, -34], [141, -34], [141, -36], [140, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, -34], [140, -32], [141, -32], [141, -34], [140, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, -32], [140, -30], [141, -30], [141, -32], [140, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, -30], [140, -28], [141, -28], [141, -30], [140, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, -28], [140, -26], [141, -26], [141, -28], [140, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, -26], [140, -24], [141, -24], [141, -26], [140, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, -24], [140, -22], [141, -22], [141, -24], [140, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, -22], [140, -20], [141, -20], [141, -22], [140, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, -20], [140, -18], [141, -18], [141, -20], [140, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, -18], [140, -16], [141, -16], [141, -18], [140, -18] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, -16], [140, -14], [141, -14], [141, -16], [140, -16] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141, -40], [141, -38], [142, -38], [142, -40], [141, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141, -38], [141, -36], [142, -36], [142, -38], [141, -38] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141, -36], [141, -34], [142, -34], [142, -36], [141, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141, -34], [141, -32], [142, -32], [142, -34], [141, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141, -32], [141, -30], [142, -30], [142, -32], [141, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141, -30], [141, -28], [142, -28], [142, -30], [141, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141, -28], [141, -26], [142, -26], [142, -28], [141, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141, -26], [141, -24], [142, -24], [142, -26], [141, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141, -24], [141, -22], [142, -22], [142, -24], [141, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141, -22], [141, -20], [142, -20], [142, -22], [141, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141, -20], [141, -18], [142, -18], [142, -20], [141, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141, -18], [141, -16], [142, -16], [142, -18], [141, -18] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141, -16], [141, -14], [142, -14], [142, -16], [141, -16] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141, -14], [141, -12], [142, -12], [142, -14], [141, -14] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141, -12], [141, -10], [142, -10], [142, -12], [141, -12] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142, -40], [142, -38], [143, -38], [143, -40], [142, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142, -38], [142, -36], [143, -36], [143, -38], [142, -38] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142, -36], [142, -34], [143, -34], [143, -36], [142, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142, -34], [142, -32], [143, -32], [143, -34], [142, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142, -32], [142, -30], [143, -30], [143, -32], [142, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142, -30], [142, -28], [143, -28], [143, -30], [142, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142, -28], [142, -26], [143, -26], [143, -28], [142, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142, -26], [142, -24], [143, -24], [143, -26], [142, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142, -24], [142, -22], [143, -22], [143, -24], [142, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142, -22], [142, -20], [143, -20], [143, -22], [142, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142, -20], [142, -18], [143, -18], [143, -20], [142, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142, -18], [142, -16], [143, -16], [143, -18], [142, -18] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142, -16], [142, -14], [143, -14], [143, -16], [142, -16] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142, -14], [142, -12], [143, -12], [143, -14], [142, -14] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142, -12], [142, -10], [143, -10], [143, -12], [142, -12] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143, -40], [143, -38], [144, -38], [144, -40], [143, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143, -38], [143, -36], [144, -36], [144, -38], [143, -38] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143, -36], [143, -34], [144, -34], [144, -36], [143, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143, -34], [143, -32], [144, -32], [144, -34], [143, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143, -32], [143, -30], [144, -30], [144, -32], [143, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143, -30], [143, -28], [144, -28], [144, -30], [143, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143, -28], [143, -26], [144, -26], [144, -28], [143, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143, -26], [143, -24], [144, -24], [144, -26], [143, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143, -24], [143, -22], [144, -22], [144, -24], [143, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143, -22], [143, -20], [144, -20], [144, -22], [143, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143, -20], [143, -18], [144, -18], [144, -20], [143, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143, -18], [143, -16], [144, -16], [144, -18], [143, -18] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143, -16], [143, -14], [144, -14], [144, -16], [143, -16] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143, -14], [143, -12], [144, -12], [144, -14], [143, -14] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143, -12], [143, -10], [144, -10], [144, -12], [143, -12] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144, -40], [144, -38], [145, -38], [145, -40], [144, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144, -38], [144, -36], [145, -36], [145, -38], [144, -38] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144, -36], [144, -34], [145, -34], [145, -36], [144, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144, -34], [144, -32], [145, -32], [145, -34], [144, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144, -32], [144, -30], [145, -30], [145, -32], [144, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144, -30], [144, -28], [145, -28], [145, -30], [144, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144, -28], [144, -26], [145, -26], [145, -28], [144, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144, -26], [144, -24], [145, -24], [145, -26], [144, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144, -24], [144, -22], [145, -22], [145, -24], [144, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144, -22], [144, -20], [145, -20], [145, -22], [144, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144, -20], [144, -18], [145, -18], [145, -20], [144, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144, -18], [144, -16], [145, -16], [145, -18], [144, -18] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144, -16], [144, -14], [145, -14], [145, -16], [144, -16] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144, -14], [144, -12], [145, -12], [145, -14], [144, -14] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145, -40], [145, -38], [146, -38], [146, -40], [145, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145, -38], [145, -36], [146, -36], [146, -38], [145, -38] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145, -36], [145, -34], [146, -34], [146, -36], [145, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145, -34], [145, -32], [146, -32], [146, -34], [145, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145, -32], [145, -30], [146, -30], [146, -32], [145, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145, -30], [145, -28], [146, -28], [146, -30], [145, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145, -28], [145, -26], [146, -26], [146, -28], [145, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145, -26], [145, -24], [146, -24], [146, -26], [145, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145, -24], [145, -22], [146, -22], [146, -24], [145, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145, -22], [145, -20], [146, -20], [146, -22], [145, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145, -20], [145, -18], [146, -18], [146, -20], [145, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145, -18], [145, -16], [146, -16], [146, -18], [145, -18] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145, -16], [145, -14], [146, -14], [146, -16], [145, -16] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146, -40], [146, -38], [147, -38], [147, -40], [146, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146, -38], [146, -36], [147, -36], [147, -38], [146, -38] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146, -36], [146, -34], [147, -34], [147, -36], [146, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146, -34], [146, -32], [147, -32], [147, -34], [146, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146, -32], [146, -30], [147, -30], [147, -32], [146, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146, -30], [146, -28], [147, -28], [147, -30], [146, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146, -28], [146, -26], [147, -26], [147, -28], [146, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146, -26], [146, -24], [147, -24], [147, -26], [146, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146, -24], [146, -22], [147, -22], [147, -24], [146, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146, -22], [146, -20], [147, -20], [147, -22], [146, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146, -20], [146, -18], [147, -18], [147, -20], [146, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146, -18], [146, -16], [147, -16], [147, -18], [146, -18] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147, -40], [147, -38], [148, -38], [148, -40], [147, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147, -38], [147, -36], [148, -36], [148, -38], [147, -38] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147, -36], [147, -34], [148, -34], [148, -36], [147, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147, -34], [147, -32], [148, -32], [148, -34], [147, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147, -32], [147, -30], [148, -30], [148, -32], [147, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147, -30], [147, -28], [148, -28], [148, -30], [147, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147, -28], [147, -26], [148, -26], [148, -28], [147, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147, -26], [147, -24], [148, -24], [148, -26], [147, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147, -24], [147, -22], [148, -22], [148, -24], [147, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147, -22], [147, -20], [148, -20], [148, -22], [147, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147, -20], [147, -18], [148, -18], [148, -20], [147, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148, -40], [148, -38], [149, -38], [149, -40], [148, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148, -38], [148, -36], [149, -36], [149, -38], [148, -38] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148, -36], [148, -34], [149, -34], [149, -36], [148, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148, -34], [148, -32], [149, -32], [149, -34], [148, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148, -32], [148, -30], [149, -30], [149, -32], [148, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148, -30], [148, -28], [149, -28], [149, -30], [148, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148, -28], [148, -26], [149, -26], [149, -28], [148, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148, -26], [148, -24], [149, -24], [149, -26], [148, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148, -24], [148, -22], [149, -22], [149, -24], [148, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148, -22], [148, -20], [149, -20], [149, -22], [148, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149, -40], [149, -38], [150, -38], [150, -40], [149, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149, -38], [149, -36], [150, -36], [150, -38], [149, -38] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149, -36], [149, -34], [150, -34], [150, -36], [149, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149, -34], [149, -32], [150, -32], [150, -34], [149, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149, -32], [149, -30], [150, -30], [150, -32], [149, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149, -30], [149, -28], [150, -28], [150, -30], [149, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149, -28], [149, -26], [150, -26], [150, -28], [149, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149, -26], [149, -24], [150, -24], [150, -26], [149, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149, -24], [149, -22], [150, -22], [150, -24], [149, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149, -22], [149, -20], [150, -20], [150, -22], [149, -22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [150, -38], [150, -36], [151, -36], [151, -38], [150, -38] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [150, -36], [150, -34], [151, -34], [151, -36], [150, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [150, -34], [150, -32], [151, -32], [151, -34], [150, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [150, -32], [150, -30], [151, -30], [151, -32], [150, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [150, -30], [150, -28], [151, -28], [151, -30], [150, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [150, -28], [150, -26], [151, -26], [151, -28], [150, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [150, -26], [150, -24], [151, -24], [151, -26], [150, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [150, -24], [150, -22], [151, -22], [151, -24], [150, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [151, -38], [151, -36], [152, -36], [152, -38], [151, -38] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [151, -36], [151, -34], [152, -34], [152, -36], [151, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [151, -34], [151, -32], [152, -32], [152, -34], [151, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [151, -32], [151, -30], [152, -30], [152, -32], [151, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [151, -30], [151, -28], [152, -28], [152, -30], [151, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [151, -28], [151, -26], [152, -26], [152, -28], [151, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [151, -26], [151, -24], [152, -24], [152, -26], [151, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [151, -24], [151, -22], [152, -22], [152, -24], [151, -24] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [152, -36], [152, -34], [153, -34], [153, -36], [152, -36] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [152, -34], [152, -32], [153, -32], [153, -34], [152, -34] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [152, -32], [152, -30], [153, -30], [153, -32], [152, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [152, -30], [152, -28], [153, -28], [153, -30], [152, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [152, -28], [152, -26], [153, -26], [153, -28], [152, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [152, -26], [152, -24], [153, -24], [153, -26], [152, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [153, -32], [153, -30], [154, -30], [154, -32], [153, -32] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [153, -30], [153, -28], [154, -28], [154, -30], [153, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [153, -28], [153, -26], [154, -26], [154, -28], [153, -28] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [153, -26], [153, -24], [154, -24], [154, -26], [153, -26] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [154, -30], [154, -28], [155, -28], [155, -30], [154, -30] ] ] } }, { "type": "Feature", "bbox": [110, 0, 160, -50], "properties": { "stroke": "#F00", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [110, 0], [160, 0], [160, -50], [110, -50], [110, 0] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [115.13671875, -33.7243396617476], [116.3671875, -35.02999636902566], [118.828125, -34.59704151614416], [123.74999999999999, -33.9433599465788], [126.38671874999999, -32.249974455863295], [131.484375, -31.12819929911196], [135.35156249999997, -34.30714385628803], [139.04296875, -35.24561909420681], [140.2734375, -37.78808138412045], [146.6015625, -38.8225909761771], [150.64453125, -37.43997405227057], [152.40234375, -33.504759069226075], [154.072265625, -28.690587654250685], [153.017578125, -25.641526373065755], [146.513671875, -18.646245142670598], [142.20703125, -10.055402736564224], [140.537109375, -17.224758206624628], [135.439453125, -14.859850400601037], [137.197265625, -11.953349393643416], [131.30859375, -11.178401873711772], [129.0234375, -14.434680215297268], [125.595703125, -14.179186142354169], [120.9375, -19.559790136497398], [114.873046875, -21.125497636606266], [114.169921875, -26.11598592533351], [115.13671875, -33.7243396617476] ] ] } } ] } ================================================ FILE: packages/turf-rectangle-grid/test/out/big-bbox-500x100-miles.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -80.027525], [-219.231779, -78.580209], [-211.9952, -78.580209], [-211.9952, -80.027525], [-219.231779, -80.027525] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -78.580209], [-219.231779, -77.132893], [-211.9952, -77.132893], [-211.9952, -78.580209], [-219.231779, -78.580209] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -77.132893], [-219.231779, -75.685577], [-211.9952, -75.685577], [-211.9952, -77.132893], [-219.231779, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -75.685577], [-219.231779, -74.238262], [-211.9952, -74.238262], [-211.9952, -75.685577], [-219.231779, -75.685577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -74.238262], [-219.231779, -72.790946], [-211.9952, -72.790946], [-211.9952, -74.238262], [-219.231779, -74.238262] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -72.790946], [-219.231779, -71.34363], [-211.9952, -71.34363], [-211.9952, -72.790946], [-219.231779, -72.790946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -71.34363], [-219.231779, -69.896314], [-211.9952, -69.896314], [-211.9952, -71.34363], [-219.231779, -71.34363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -69.896314], [-219.231779, -68.448998], [-211.9952, -68.448998], [-211.9952, -69.896314], [-219.231779, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -68.448998], [-219.231779, -67.001682], [-211.9952, -67.001682], [-211.9952, -68.448998], [-219.231779, -68.448998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -67.001682], [-219.231779, -65.554367], [-211.9952, -65.554367], [-211.9952, -67.001682], [-219.231779, -67.001682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -65.554367], [-219.231779, -64.107051], [-211.9952, -64.107051], [-211.9952, -65.554367], [-219.231779, -65.554367] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -64.107051], [-219.231779, -62.659735], [-211.9952, -62.659735], [-211.9952, -64.107051], [-219.231779, -64.107051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -62.659735], [-219.231779, -61.212419], [-211.9952, -61.212419], [-211.9952, -62.659735], [-219.231779, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -61.212419], [-219.231779, -59.765103], [-211.9952, -59.765103], [-211.9952, -61.212419], [-219.231779, -61.212419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -59.765103], [-219.231779, -58.317787], [-211.9952, -58.317787], [-211.9952, -59.765103], [-219.231779, -59.765103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -58.317787], [-219.231779, -56.870472], [-211.9952, -56.870472], [-211.9952, -58.317787], [-219.231779, -58.317787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -56.870472], [-219.231779, -55.423156], [-211.9952, -55.423156], [-211.9952, -56.870472], [-219.231779, -56.870472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -55.423156], [-219.231779, -53.97584], [-211.9952, -53.97584], [-211.9952, -55.423156], [-219.231779, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -53.97584], [-219.231779, -52.528524], [-211.9952, -52.528524], [-211.9952, -53.97584], [-219.231779, -53.97584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -52.528524], [-219.231779, -51.081208], [-211.9952, -51.081208], [-211.9952, -52.528524], [-219.231779, -52.528524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -51.081208], [-219.231779, -49.633892], [-211.9952, -49.633892], [-211.9952, -51.081208], [-219.231779, -51.081208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -49.633892], [-219.231779, -48.186577], [-211.9952, -48.186577], [-211.9952, -49.633892], [-219.231779, -49.633892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -48.186577], [-219.231779, -46.739261], [-211.9952, -46.739261], [-211.9952, -48.186577], [-219.231779, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -46.739261], [-219.231779, -45.291945], [-211.9952, -45.291945], [-211.9952, -46.739261], [-219.231779, -46.739261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -45.291945], [-219.231779, -43.844629], [-211.9952, -43.844629], [-211.9952, -45.291945], [-219.231779, -45.291945] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -43.844629], [-219.231779, -42.397313], [-211.9952, -42.397313], [-211.9952, -43.844629], [-219.231779, -43.844629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -42.397313], [-219.231779, -40.949997], [-211.9952, -40.949997], [-211.9952, -42.397313], [-219.231779, -42.397313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -40.949997], [-219.231779, -39.502682], [-211.9952, -39.502682], [-211.9952, -40.949997], [-219.231779, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -39.502682], [-219.231779, -38.055366], [-211.9952, -38.055366], [-211.9952, -39.502682], [-219.231779, -39.502682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -38.055366], [-219.231779, -36.60805], [-211.9952, -36.60805], [-211.9952, -38.055366], [-219.231779, -38.055366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -36.60805], [-219.231779, -35.160734], [-211.9952, -35.160734], [-211.9952, -36.60805], [-219.231779, -36.60805] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -35.160734], [-219.231779, -33.713418], [-211.9952, -33.713418], [-211.9952, -35.160734], [-219.231779, -35.160734] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -33.713418], [-219.231779, -32.266102], [-211.9952, -32.266102], [-211.9952, -33.713418], [-219.231779, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -32.266102], [-219.231779, -30.818787], [-211.9952, -30.818787], [-211.9952, -32.266102], [-219.231779, -32.266102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -30.818787], [-219.231779, -29.371471], [-211.9952, -29.371471], [-211.9952, -30.818787], [-219.231779, -30.818787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -29.371471], [-219.231779, -27.924155], [-211.9952, -27.924155], [-211.9952, -29.371471], [-219.231779, -29.371471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -27.924155], [-219.231779, -26.476839], [-211.9952, -26.476839], [-211.9952, -27.924155], [-219.231779, -27.924155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -26.476839], [-219.231779, -25.029523], [-211.9952, -25.029523], [-211.9952, -26.476839], [-219.231779, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -25.029523], [-219.231779, -23.582207], [-211.9952, -23.582207], [-211.9952, -25.029523], [-219.231779, -25.029523] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -23.582207], [-219.231779, -22.134892], [-211.9952, -22.134892], [-211.9952, -23.582207], [-219.231779, -23.582207] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -22.134892], [-219.231779, -20.687576], [-211.9952, -20.687576], [-211.9952, -22.134892], [-219.231779, -22.134892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -20.687576], [-219.231779, -19.24026], [-211.9952, -19.24026], [-211.9952, -20.687576], [-219.231779, -20.687576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -19.24026], [-219.231779, -17.792944], [-211.9952, -17.792944], [-211.9952, -19.24026], [-219.231779, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -17.792944], [-219.231779, -16.345628], [-211.9952, -16.345628], [-211.9952, -17.792944], [-219.231779, -17.792944] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -16.345628], [-219.231779, -14.898312], [-211.9952, -14.898312], [-211.9952, -16.345628], [-219.231779, -16.345628] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -14.898312], [-219.231779, -13.450997], [-211.9952, -13.450997], [-211.9952, -14.898312], [-219.231779, -14.898312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -13.450997], [-219.231779, -12.003681], [-211.9952, -12.003681], [-211.9952, -13.450997], [-219.231779, -13.450997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -12.003681], [-219.231779, -10.556365], [-211.9952, -10.556365], [-211.9952, -12.003681], [-219.231779, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -10.556365], [-219.231779, -9.109049], [-211.9952, -9.109049], [-211.9952, -10.556365], [-219.231779, -10.556365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -9.109049], [-219.231779, -7.661733], [-211.9952, -7.661733], [-211.9952, -9.109049], [-219.231779, -9.109049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -7.661733], [-219.231779, -6.214417], [-211.9952, -6.214417], [-211.9952, -7.661733], [-219.231779, -7.661733] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -6.214417], [-219.231779, -4.767102], [-211.9952, -4.767102], [-211.9952, -6.214417], [-219.231779, -6.214417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -4.767102], [-219.231779, -3.319786], [-211.9952, -3.319786], [-211.9952, -4.767102], [-219.231779, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -3.319786], [-219.231779, -1.87247], [-211.9952, -1.87247], [-211.9952, -3.319786], [-219.231779, -3.319786] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -1.87247], [-219.231779, -0.425154], [-211.9952, -0.425154], [-211.9952, -1.87247], [-219.231779, -1.87247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -0.425154], [-219.231779, 1.022162], [-211.9952, 1.022162], [-211.9952, -0.425154], [-219.231779, -0.425154] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 1.022162], [-219.231779, 2.469478], [-211.9952, 2.469478], [-211.9952, 1.022162], [-219.231779, 1.022162] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 2.469478], [-219.231779, 3.916793], [-211.9952, 3.916793], [-211.9952, 2.469478], [-219.231779, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 3.916793], [-219.231779, 5.364109], [-211.9952, 5.364109], [-211.9952, 3.916793], [-219.231779, 3.916793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 5.364109], [-219.231779, 6.811425], [-211.9952, 6.811425], [-211.9952, 5.364109], [-219.231779, 5.364109] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 6.811425], [-219.231779, 8.258741], [-211.9952, 8.258741], [-211.9952, 6.811425], [-219.231779, 6.811425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 8.258741], [-219.231779, 9.706057], [-211.9952, 9.706057], [-211.9952, 8.258741], [-219.231779, 8.258741] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 9.706057], [-219.231779, 11.153373], [-211.9952, 11.153373], [-211.9952, 9.706057], [-219.231779, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 11.153373], [-219.231779, 12.600688], [-211.9952, 12.600688], [-211.9952, 11.153373], [-219.231779, 11.153373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 12.600688], [-219.231779, 14.048004], [-211.9952, 14.048004], [-211.9952, 12.600688], [-219.231779, 12.600688] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 14.048004], [-219.231779, 15.49532], [-211.9952, 15.49532], [-211.9952, 14.048004], [-219.231779, 14.048004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 15.49532], [-219.231779, 16.942636], [-211.9952, 16.942636], [-211.9952, 15.49532], [-219.231779, 15.49532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 16.942636], [-219.231779, 18.389952], [-211.9952, 18.389952], [-211.9952, 16.942636], [-219.231779, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 18.389952], [-219.231779, 19.837268], [-211.9952, 19.837268], [-211.9952, 18.389952], [-219.231779, 18.389952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 19.837268], [-219.231779, 21.284583], [-211.9952, 21.284583], [-211.9952, 19.837268], [-219.231779, 19.837268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 21.284583], [-219.231779, 22.731899], [-211.9952, 22.731899], [-211.9952, 21.284583], [-219.231779, 21.284583] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 22.731899], [-219.231779, 24.179215], [-211.9952, 24.179215], [-211.9952, 22.731899], [-219.231779, 22.731899] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 24.179215], [-219.231779, 25.626531], [-211.9952, 25.626531], [-211.9952, 24.179215], [-219.231779, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 25.626531], [-219.231779, 27.073847], [-211.9952, 27.073847], [-211.9952, 25.626531], [-219.231779, 25.626531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 27.073847], [-219.231779, 28.521163], [-211.9952, 28.521163], [-211.9952, 27.073847], [-219.231779, 27.073847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 28.521163], [-219.231779, 29.968478], [-211.9952, 29.968478], [-211.9952, 28.521163], [-219.231779, 28.521163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 29.968478], [-219.231779, 31.415794], [-211.9952, 31.415794], [-211.9952, 29.968478], [-219.231779, 29.968478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 31.415794], [-219.231779, 32.86311], [-211.9952, 32.86311], [-211.9952, 31.415794], [-219.231779, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 32.86311], [-219.231779, 34.310426], [-211.9952, 34.310426], [-211.9952, 32.86311], [-219.231779, 32.86311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 34.310426], [-219.231779, 35.757742], [-211.9952, 35.757742], [-211.9952, 34.310426], [-219.231779, 34.310426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 35.757742], [-219.231779, 37.205058], [-211.9952, 37.205058], [-211.9952, 35.757742], [-219.231779, 35.757742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 37.205058], [-219.231779, 38.652373], [-211.9952, 38.652373], [-211.9952, 37.205058], [-219.231779, 37.205058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 38.652373], [-219.231779, 40.099689], [-211.9952, 40.099689], [-211.9952, 38.652373], [-219.231779, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 40.099689], [-219.231779, 41.547005], [-211.9952, 41.547005], [-211.9952, 40.099689], [-219.231779, 40.099689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 41.547005], [-219.231779, 42.994321], [-211.9952, 42.994321], [-211.9952, 41.547005], [-219.231779, 41.547005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 42.994321], [-219.231779, 44.441637], [-211.9952, 44.441637], [-211.9952, 42.994321], [-219.231779, 42.994321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 44.441637], [-219.231779, 45.888952], [-211.9952, 45.888952], [-211.9952, 44.441637], [-219.231779, 44.441637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 45.888952], [-219.231779, 47.336268], [-211.9952, 47.336268], [-211.9952, 45.888952], [-219.231779, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 47.336268], [-219.231779, 48.783584], [-211.9952, 48.783584], [-211.9952, 47.336268], [-219.231779, 47.336268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 48.783584], [-219.231779, 50.2309], [-211.9952, 50.2309], [-211.9952, 48.783584], [-219.231779, 48.783584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 50.2309], [-219.231779, 51.678216], [-211.9952, 51.678216], [-211.9952, 50.2309], [-219.231779, 50.2309] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 51.678216], [-219.231779, 53.125532], [-211.9952, 53.125532], [-211.9952, 51.678216], [-219.231779, 51.678216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 53.125532], [-219.231779, 54.572847], [-211.9952, 54.572847], [-211.9952, 53.125532], [-219.231779, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 54.572847], [-219.231779, 56.020163], [-211.9952, 56.020163], [-211.9952, 54.572847], [-219.231779, 54.572847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 56.020163], [-219.231779, 57.467479], [-211.9952, 57.467479], [-211.9952, 56.020163], [-219.231779, 56.020163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 57.467479], [-219.231779, 58.914795], [-211.9952, 58.914795], [-211.9952, 57.467479], [-219.231779, 57.467479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 58.914795], [-219.231779, 60.362111], [-211.9952, 60.362111], [-211.9952, 58.914795], [-219.231779, 58.914795] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 60.362111], [-219.231779, 61.809427], [-211.9952, 61.809427], [-211.9952, 60.362111], [-219.231779, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 61.809427], [-219.231779, 63.256742], [-211.9952, 63.256742], [-211.9952, 61.809427], [-219.231779, 61.809427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 63.256742], [-219.231779, 64.704058], [-211.9952, 64.704058], [-211.9952, 63.256742], [-219.231779, 63.256742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 64.704058], [-219.231779, 66.151374], [-211.9952, 66.151374], [-211.9952, 64.704058], [-219.231779, 64.704058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 66.151374], [-219.231779, 67.59869], [-211.9952, 67.59869], [-211.9952, 66.151374], [-219.231779, 66.151374] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 67.59869], [-219.231779, 69.046006], [-211.9952, 69.046006], [-211.9952, 67.59869], [-219.231779, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 69.046006], [-219.231779, 70.493322], [-211.9952, 70.493322], [-211.9952, 69.046006], [-219.231779, 69.046006] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 70.493322], [-219.231779, 71.940637], [-211.9952, 71.940637], [-211.9952, 70.493322], [-219.231779, 70.493322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 71.940637], [-219.231779, 73.387953], [-211.9952, 73.387953], [-211.9952, 71.940637], [-219.231779, 71.940637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 73.387953], [-219.231779, 74.835269], [-211.9952, 74.835269], [-211.9952, 73.387953], [-219.231779, 73.387953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 74.835269], [-219.231779, 76.282585], [-211.9952, 76.282585], [-211.9952, 74.835269], [-219.231779, 74.835269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 76.282585], [-219.231779, 77.729901], [-211.9952, 77.729901], [-211.9952, 76.282585], [-219.231779, 76.282585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -80.027525], [-211.9952, -78.580209], [-204.758621, -78.580209], [-204.758621, -80.027525], [-211.9952, -80.027525] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -78.580209], [-211.9952, -77.132893], [-204.758621, -77.132893], [-204.758621, -78.580209], [-211.9952, -78.580209] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -77.132893], [-211.9952, -75.685577], [-204.758621, -75.685577], [-204.758621, -77.132893], [-211.9952, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -75.685577], [-211.9952, -74.238262], [-204.758621, -74.238262], [-204.758621, -75.685577], [-211.9952, -75.685577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -74.238262], [-211.9952, -72.790946], [-204.758621, -72.790946], [-204.758621, -74.238262], [-211.9952, -74.238262] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -72.790946], [-211.9952, -71.34363], [-204.758621, -71.34363], [-204.758621, -72.790946], [-211.9952, -72.790946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -71.34363], [-211.9952, -69.896314], [-204.758621, -69.896314], [-204.758621, -71.34363], [-211.9952, -71.34363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -69.896314], [-211.9952, -68.448998], [-204.758621, -68.448998], [-204.758621, -69.896314], [-211.9952, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -68.448998], [-211.9952, -67.001682], [-204.758621, -67.001682], [-204.758621, -68.448998], [-211.9952, -68.448998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -67.001682], [-211.9952, -65.554367], [-204.758621, -65.554367], [-204.758621, -67.001682], [-211.9952, -67.001682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -65.554367], [-211.9952, -64.107051], [-204.758621, -64.107051], [-204.758621, -65.554367], [-211.9952, -65.554367] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -64.107051], [-211.9952, -62.659735], [-204.758621, -62.659735], [-204.758621, -64.107051], [-211.9952, -64.107051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -62.659735], [-211.9952, -61.212419], [-204.758621, -61.212419], [-204.758621, -62.659735], [-211.9952, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -61.212419], [-211.9952, -59.765103], [-204.758621, -59.765103], [-204.758621, -61.212419], [-211.9952, -61.212419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -59.765103], [-211.9952, -58.317787], [-204.758621, -58.317787], [-204.758621, -59.765103], [-211.9952, -59.765103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -58.317787], [-211.9952, -56.870472], [-204.758621, -56.870472], [-204.758621, -58.317787], [-211.9952, -58.317787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -56.870472], [-211.9952, -55.423156], [-204.758621, -55.423156], [-204.758621, -56.870472], [-211.9952, -56.870472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -55.423156], [-211.9952, -53.97584], [-204.758621, -53.97584], [-204.758621, -55.423156], [-211.9952, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -53.97584], [-211.9952, -52.528524], [-204.758621, -52.528524], [-204.758621, -53.97584], [-211.9952, -53.97584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -52.528524], [-211.9952, -51.081208], [-204.758621, -51.081208], [-204.758621, -52.528524], [-211.9952, -52.528524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -51.081208], [-211.9952, -49.633892], [-204.758621, -49.633892], [-204.758621, -51.081208], [-211.9952, -51.081208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -49.633892], [-211.9952, -48.186577], [-204.758621, -48.186577], [-204.758621, -49.633892], [-211.9952, -49.633892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -48.186577], [-211.9952, -46.739261], [-204.758621, -46.739261], [-204.758621, -48.186577], [-211.9952, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -46.739261], [-211.9952, -45.291945], [-204.758621, -45.291945], [-204.758621, -46.739261], [-211.9952, -46.739261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -45.291945], [-211.9952, -43.844629], [-204.758621, -43.844629], [-204.758621, -45.291945], [-211.9952, -45.291945] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -43.844629], [-211.9952, -42.397313], [-204.758621, -42.397313], [-204.758621, -43.844629], [-211.9952, -43.844629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -42.397313], [-211.9952, -40.949997], [-204.758621, -40.949997], [-204.758621, -42.397313], [-211.9952, -42.397313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -40.949997], [-211.9952, -39.502682], [-204.758621, -39.502682], [-204.758621, -40.949997], [-211.9952, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -39.502682], [-211.9952, -38.055366], [-204.758621, -38.055366], [-204.758621, -39.502682], [-211.9952, -39.502682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -38.055366], [-211.9952, -36.60805], [-204.758621, -36.60805], [-204.758621, -38.055366], [-211.9952, -38.055366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -36.60805], [-211.9952, -35.160734], [-204.758621, -35.160734], [-204.758621, -36.60805], [-211.9952, -36.60805] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -35.160734], [-211.9952, -33.713418], [-204.758621, -33.713418], [-204.758621, -35.160734], [-211.9952, -35.160734] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -33.713418], [-211.9952, -32.266102], [-204.758621, -32.266102], [-204.758621, -33.713418], [-211.9952, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -32.266102], [-211.9952, -30.818787], [-204.758621, -30.818787], [-204.758621, -32.266102], [-211.9952, -32.266102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -30.818787], [-211.9952, -29.371471], [-204.758621, -29.371471], [-204.758621, -30.818787], [-211.9952, -30.818787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -29.371471], [-211.9952, -27.924155], [-204.758621, -27.924155], [-204.758621, -29.371471], [-211.9952, -29.371471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -27.924155], [-211.9952, -26.476839], [-204.758621, -26.476839], [-204.758621, -27.924155], [-211.9952, -27.924155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -26.476839], [-211.9952, -25.029523], [-204.758621, -25.029523], [-204.758621, -26.476839], [-211.9952, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -25.029523], [-211.9952, -23.582207], [-204.758621, -23.582207], [-204.758621, -25.029523], [-211.9952, -25.029523] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -23.582207], [-211.9952, -22.134892], [-204.758621, -22.134892], [-204.758621, -23.582207], [-211.9952, -23.582207] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -22.134892], [-211.9952, -20.687576], [-204.758621, -20.687576], [-204.758621, -22.134892], [-211.9952, -22.134892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -20.687576], [-211.9952, -19.24026], [-204.758621, -19.24026], [-204.758621, -20.687576], [-211.9952, -20.687576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -19.24026], [-211.9952, -17.792944], [-204.758621, -17.792944], [-204.758621, -19.24026], [-211.9952, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -17.792944], [-211.9952, -16.345628], [-204.758621, -16.345628], [-204.758621, -17.792944], [-211.9952, -17.792944] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -16.345628], [-211.9952, -14.898312], [-204.758621, -14.898312], [-204.758621, -16.345628], [-211.9952, -16.345628] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -14.898312], [-211.9952, -13.450997], [-204.758621, -13.450997], [-204.758621, -14.898312], [-211.9952, -14.898312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -13.450997], [-211.9952, -12.003681], [-204.758621, -12.003681], [-204.758621, -13.450997], [-211.9952, -13.450997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -12.003681], [-211.9952, -10.556365], [-204.758621, -10.556365], [-204.758621, -12.003681], [-211.9952, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -10.556365], [-211.9952, -9.109049], [-204.758621, -9.109049], [-204.758621, -10.556365], [-211.9952, -10.556365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -9.109049], [-211.9952, -7.661733], [-204.758621, -7.661733], [-204.758621, -9.109049], [-211.9952, -9.109049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -7.661733], [-211.9952, -6.214417], [-204.758621, -6.214417], [-204.758621, -7.661733], [-211.9952, -7.661733] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -6.214417], [-211.9952, -4.767102], [-204.758621, -4.767102], [-204.758621, -6.214417], [-211.9952, -6.214417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -4.767102], [-211.9952, -3.319786], [-204.758621, -3.319786], [-204.758621, -4.767102], [-211.9952, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -3.319786], [-211.9952, -1.87247], [-204.758621, -1.87247], [-204.758621, -3.319786], [-211.9952, -3.319786] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -1.87247], [-211.9952, -0.425154], [-204.758621, -0.425154], [-204.758621, -1.87247], [-211.9952, -1.87247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -0.425154], [-211.9952, 1.022162], [-204.758621, 1.022162], [-204.758621, -0.425154], [-211.9952, -0.425154] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 1.022162], [-211.9952, 2.469478], [-204.758621, 2.469478], [-204.758621, 1.022162], [-211.9952, 1.022162] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 2.469478], [-211.9952, 3.916793], [-204.758621, 3.916793], [-204.758621, 2.469478], [-211.9952, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 3.916793], [-211.9952, 5.364109], [-204.758621, 5.364109], [-204.758621, 3.916793], [-211.9952, 3.916793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 5.364109], [-211.9952, 6.811425], [-204.758621, 6.811425], [-204.758621, 5.364109], [-211.9952, 5.364109] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 6.811425], [-211.9952, 8.258741], [-204.758621, 8.258741], [-204.758621, 6.811425], [-211.9952, 6.811425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 8.258741], [-211.9952, 9.706057], [-204.758621, 9.706057], [-204.758621, 8.258741], [-211.9952, 8.258741] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 9.706057], [-211.9952, 11.153373], [-204.758621, 11.153373], [-204.758621, 9.706057], [-211.9952, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 11.153373], [-211.9952, 12.600688], [-204.758621, 12.600688], [-204.758621, 11.153373], [-211.9952, 11.153373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 12.600688], [-211.9952, 14.048004], [-204.758621, 14.048004], [-204.758621, 12.600688], [-211.9952, 12.600688] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 14.048004], [-211.9952, 15.49532], [-204.758621, 15.49532], [-204.758621, 14.048004], [-211.9952, 14.048004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 15.49532], [-211.9952, 16.942636], [-204.758621, 16.942636], [-204.758621, 15.49532], [-211.9952, 15.49532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 16.942636], [-211.9952, 18.389952], [-204.758621, 18.389952], [-204.758621, 16.942636], [-211.9952, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 18.389952], [-211.9952, 19.837268], [-204.758621, 19.837268], [-204.758621, 18.389952], [-211.9952, 18.389952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 19.837268], [-211.9952, 21.284583], [-204.758621, 21.284583], [-204.758621, 19.837268], [-211.9952, 19.837268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 21.284583], [-211.9952, 22.731899], [-204.758621, 22.731899], [-204.758621, 21.284583], [-211.9952, 21.284583] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 22.731899], [-211.9952, 24.179215], [-204.758621, 24.179215], [-204.758621, 22.731899], [-211.9952, 22.731899] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 24.179215], [-211.9952, 25.626531], [-204.758621, 25.626531], [-204.758621, 24.179215], [-211.9952, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 25.626531], [-211.9952, 27.073847], [-204.758621, 27.073847], [-204.758621, 25.626531], [-211.9952, 25.626531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 27.073847], [-211.9952, 28.521163], [-204.758621, 28.521163], [-204.758621, 27.073847], [-211.9952, 27.073847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 28.521163], [-211.9952, 29.968478], [-204.758621, 29.968478], [-204.758621, 28.521163], [-211.9952, 28.521163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 29.968478], [-211.9952, 31.415794], [-204.758621, 31.415794], [-204.758621, 29.968478], [-211.9952, 29.968478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 31.415794], [-211.9952, 32.86311], [-204.758621, 32.86311], [-204.758621, 31.415794], [-211.9952, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 32.86311], [-211.9952, 34.310426], [-204.758621, 34.310426], [-204.758621, 32.86311], [-211.9952, 32.86311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 34.310426], [-211.9952, 35.757742], [-204.758621, 35.757742], [-204.758621, 34.310426], [-211.9952, 34.310426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 35.757742], [-211.9952, 37.205058], [-204.758621, 37.205058], [-204.758621, 35.757742], [-211.9952, 35.757742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 37.205058], [-211.9952, 38.652373], [-204.758621, 38.652373], [-204.758621, 37.205058], [-211.9952, 37.205058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 38.652373], [-211.9952, 40.099689], [-204.758621, 40.099689], [-204.758621, 38.652373], [-211.9952, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 40.099689], [-211.9952, 41.547005], [-204.758621, 41.547005], [-204.758621, 40.099689], [-211.9952, 40.099689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 41.547005], [-211.9952, 42.994321], [-204.758621, 42.994321], [-204.758621, 41.547005], [-211.9952, 41.547005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 42.994321], [-211.9952, 44.441637], [-204.758621, 44.441637], [-204.758621, 42.994321], [-211.9952, 42.994321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 44.441637], [-211.9952, 45.888952], [-204.758621, 45.888952], [-204.758621, 44.441637], [-211.9952, 44.441637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 45.888952], [-211.9952, 47.336268], [-204.758621, 47.336268], [-204.758621, 45.888952], [-211.9952, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 47.336268], [-211.9952, 48.783584], [-204.758621, 48.783584], [-204.758621, 47.336268], [-211.9952, 47.336268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 48.783584], [-211.9952, 50.2309], [-204.758621, 50.2309], [-204.758621, 48.783584], [-211.9952, 48.783584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 50.2309], [-211.9952, 51.678216], [-204.758621, 51.678216], [-204.758621, 50.2309], [-211.9952, 50.2309] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 51.678216], [-211.9952, 53.125532], [-204.758621, 53.125532], [-204.758621, 51.678216], [-211.9952, 51.678216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 53.125532], [-211.9952, 54.572847], [-204.758621, 54.572847], [-204.758621, 53.125532], [-211.9952, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 54.572847], [-211.9952, 56.020163], [-204.758621, 56.020163], [-204.758621, 54.572847], [-211.9952, 54.572847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 56.020163], [-211.9952, 57.467479], [-204.758621, 57.467479], [-204.758621, 56.020163], [-211.9952, 56.020163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 57.467479], [-211.9952, 58.914795], [-204.758621, 58.914795], [-204.758621, 57.467479], [-211.9952, 57.467479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 58.914795], [-211.9952, 60.362111], [-204.758621, 60.362111], [-204.758621, 58.914795], [-211.9952, 58.914795] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 60.362111], [-211.9952, 61.809427], [-204.758621, 61.809427], [-204.758621, 60.362111], [-211.9952, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 61.809427], [-211.9952, 63.256742], [-204.758621, 63.256742], [-204.758621, 61.809427], [-211.9952, 61.809427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 63.256742], [-211.9952, 64.704058], [-204.758621, 64.704058], [-204.758621, 63.256742], [-211.9952, 63.256742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 64.704058], [-211.9952, 66.151374], [-204.758621, 66.151374], [-204.758621, 64.704058], [-211.9952, 64.704058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 66.151374], [-211.9952, 67.59869], [-204.758621, 67.59869], [-204.758621, 66.151374], [-211.9952, 66.151374] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 67.59869], [-211.9952, 69.046006], [-204.758621, 69.046006], [-204.758621, 67.59869], [-211.9952, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 69.046006], [-211.9952, 70.493322], [-204.758621, 70.493322], [-204.758621, 69.046006], [-211.9952, 69.046006] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 70.493322], [-211.9952, 71.940637], [-204.758621, 71.940637], [-204.758621, 70.493322], [-211.9952, 70.493322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 71.940637], [-211.9952, 73.387953], [-204.758621, 73.387953], [-204.758621, 71.940637], [-211.9952, 71.940637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 73.387953], [-211.9952, 74.835269], [-204.758621, 74.835269], [-204.758621, 73.387953], [-211.9952, 73.387953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 74.835269], [-211.9952, 76.282585], [-204.758621, 76.282585], [-204.758621, 74.835269], [-211.9952, 74.835269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 76.282585], [-211.9952, 77.729901], [-204.758621, 77.729901], [-204.758621, 76.282585], [-211.9952, 76.282585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -80.027525], [-204.758621, -78.580209], [-197.522042, -78.580209], [-197.522042, -80.027525], [-204.758621, -80.027525] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -78.580209], [-204.758621, -77.132893], [-197.522042, -77.132893], [-197.522042, -78.580209], [-204.758621, -78.580209] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -77.132893], [-204.758621, -75.685577], [-197.522042, -75.685577], [-197.522042, -77.132893], [-204.758621, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -75.685577], [-204.758621, -74.238262], [-197.522042, -74.238262], [-197.522042, -75.685577], [-204.758621, -75.685577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -74.238262], [-204.758621, -72.790946], [-197.522042, -72.790946], [-197.522042, -74.238262], [-204.758621, -74.238262] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -72.790946], [-204.758621, -71.34363], [-197.522042, -71.34363], [-197.522042, -72.790946], [-204.758621, -72.790946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -71.34363], [-204.758621, -69.896314], [-197.522042, -69.896314], [-197.522042, -71.34363], [-204.758621, -71.34363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -69.896314], [-204.758621, -68.448998], [-197.522042, -68.448998], [-197.522042, -69.896314], [-204.758621, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -68.448998], [-204.758621, -67.001682], [-197.522042, -67.001682], [-197.522042, -68.448998], [-204.758621, -68.448998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -67.001682], [-204.758621, -65.554367], [-197.522042, -65.554367], [-197.522042, -67.001682], [-204.758621, -67.001682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -65.554367], [-204.758621, -64.107051], [-197.522042, -64.107051], [-197.522042, -65.554367], [-204.758621, -65.554367] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -64.107051], [-204.758621, -62.659735], [-197.522042, -62.659735], [-197.522042, -64.107051], [-204.758621, -64.107051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -62.659735], [-204.758621, -61.212419], [-197.522042, -61.212419], [-197.522042, -62.659735], [-204.758621, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -61.212419], [-204.758621, -59.765103], [-197.522042, -59.765103], [-197.522042, -61.212419], [-204.758621, -61.212419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -59.765103], [-204.758621, -58.317787], [-197.522042, -58.317787], [-197.522042, -59.765103], [-204.758621, -59.765103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -58.317787], [-204.758621, -56.870472], [-197.522042, -56.870472], [-197.522042, -58.317787], [-204.758621, -58.317787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -56.870472], [-204.758621, -55.423156], [-197.522042, -55.423156], [-197.522042, -56.870472], [-204.758621, -56.870472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -55.423156], [-204.758621, -53.97584], [-197.522042, -53.97584], [-197.522042, -55.423156], [-204.758621, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -53.97584], [-204.758621, -52.528524], [-197.522042, -52.528524], [-197.522042, -53.97584], [-204.758621, -53.97584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -52.528524], [-204.758621, -51.081208], [-197.522042, -51.081208], [-197.522042, -52.528524], [-204.758621, -52.528524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -51.081208], [-204.758621, -49.633892], [-197.522042, -49.633892], [-197.522042, -51.081208], [-204.758621, -51.081208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -49.633892], [-204.758621, -48.186577], [-197.522042, -48.186577], [-197.522042, -49.633892], [-204.758621, -49.633892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -48.186577], [-204.758621, -46.739261], [-197.522042, -46.739261], [-197.522042, -48.186577], [-204.758621, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -46.739261], [-204.758621, -45.291945], [-197.522042, -45.291945], [-197.522042, -46.739261], [-204.758621, -46.739261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -45.291945], [-204.758621, -43.844629], [-197.522042, -43.844629], [-197.522042, -45.291945], [-204.758621, -45.291945] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -43.844629], [-204.758621, -42.397313], [-197.522042, -42.397313], [-197.522042, -43.844629], [-204.758621, -43.844629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -42.397313], [-204.758621, -40.949997], [-197.522042, -40.949997], [-197.522042, -42.397313], [-204.758621, -42.397313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -40.949997], [-204.758621, -39.502682], [-197.522042, -39.502682], [-197.522042, -40.949997], [-204.758621, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -39.502682], [-204.758621, -38.055366], [-197.522042, -38.055366], [-197.522042, -39.502682], [-204.758621, -39.502682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -38.055366], [-204.758621, -36.60805], [-197.522042, -36.60805], [-197.522042, -38.055366], [-204.758621, -38.055366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -36.60805], [-204.758621, -35.160734], [-197.522042, -35.160734], [-197.522042, -36.60805], [-204.758621, -36.60805] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -35.160734], [-204.758621, -33.713418], [-197.522042, -33.713418], [-197.522042, -35.160734], [-204.758621, -35.160734] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -33.713418], [-204.758621, -32.266102], [-197.522042, -32.266102], [-197.522042, -33.713418], [-204.758621, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -32.266102], [-204.758621, -30.818787], [-197.522042, -30.818787], [-197.522042, -32.266102], [-204.758621, -32.266102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -30.818787], [-204.758621, -29.371471], [-197.522042, -29.371471], [-197.522042, -30.818787], [-204.758621, -30.818787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -29.371471], [-204.758621, -27.924155], [-197.522042, -27.924155], [-197.522042, -29.371471], [-204.758621, -29.371471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -27.924155], [-204.758621, -26.476839], [-197.522042, -26.476839], [-197.522042, -27.924155], [-204.758621, -27.924155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -26.476839], [-204.758621, -25.029523], [-197.522042, -25.029523], [-197.522042, -26.476839], [-204.758621, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -25.029523], [-204.758621, -23.582207], [-197.522042, -23.582207], [-197.522042, -25.029523], [-204.758621, -25.029523] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -23.582207], [-204.758621, -22.134892], [-197.522042, -22.134892], [-197.522042, -23.582207], [-204.758621, -23.582207] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -22.134892], [-204.758621, -20.687576], [-197.522042, -20.687576], [-197.522042, -22.134892], [-204.758621, -22.134892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -20.687576], [-204.758621, -19.24026], [-197.522042, -19.24026], [-197.522042, -20.687576], [-204.758621, -20.687576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -19.24026], [-204.758621, -17.792944], [-197.522042, -17.792944], [-197.522042, -19.24026], [-204.758621, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -17.792944], [-204.758621, -16.345628], [-197.522042, -16.345628], [-197.522042, -17.792944], [-204.758621, -17.792944] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -16.345628], [-204.758621, -14.898312], [-197.522042, -14.898312], [-197.522042, -16.345628], [-204.758621, -16.345628] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -14.898312], [-204.758621, -13.450997], [-197.522042, -13.450997], [-197.522042, -14.898312], [-204.758621, -14.898312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -13.450997], [-204.758621, -12.003681], [-197.522042, -12.003681], [-197.522042, -13.450997], [-204.758621, -13.450997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -12.003681], [-204.758621, -10.556365], [-197.522042, -10.556365], [-197.522042, -12.003681], [-204.758621, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -10.556365], [-204.758621, -9.109049], [-197.522042, -9.109049], [-197.522042, -10.556365], [-204.758621, -10.556365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -9.109049], [-204.758621, -7.661733], [-197.522042, -7.661733], [-197.522042, -9.109049], [-204.758621, -9.109049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -7.661733], [-204.758621, -6.214417], [-197.522042, -6.214417], [-197.522042, -7.661733], [-204.758621, -7.661733] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -6.214417], [-204.758621, -4.767102], [-197.522042, -4.767102], [-197.522042, -6.214417], [-204.758621, -6.214417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -4.767102], [-204.758621, -3.319786], [-197.522042, -3.319786], [-197.522042, -4.767102], [-204.758621, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -3.319786], [-204.758621, -1.87247], [-197.522042, -1.87247], [-197.522042, -3.319786], [-204.758621, -3.319786] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -1.87247], [-204.758621, -0.425154], [-197.522042, -0.425154], [-197.522042, -1.87247], [-204.758621, -1.87247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -0.425154], [-204.758621, 1.022162], [-197.522042, 1.022162], [-197.522042, -0.425154], [-204.758621, -0.425154] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 1.022162], [-204.758621, 2.469478], [-197.522042, 2.469478], [-197.522042, 1.022162], [-204.758621, 1.022162] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 2.469478], [-204.758621, 3.916793], [-197.522042, 3.916793], [-197.522042, 2.469478], [-204.758621, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 3.916793], [-204.758621, 5.364109], [-197.522042, 5.364109], [-197.522042, 3.916793], [-204.758621, 3.916793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 5.364109], [-204.758621, 6.811425], [-197.522042, 6.811425], [-197.522042, 5.364109], [-204.758621, 5.364109] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 6.811425], [-204.758621, 8.258741], [-197.522042, 8.258741], [-197.522042, 6.811425], [-204.758621, 6.811425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 8.258741], [-204.758621, 9.706057], [-197.522042, 9.706057], [-197.522042, 8.258741], [-204.758621, 8.258741] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 9.706057], [-204.758621, 11.153373], [-197.522042, 11.153373], [-197.522042, 9.706057], [-204.758621, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 11.153373], [-204.758621, 12.600688], [-197.522042, 12.600688], [-197.522042, 11.153373], [-204.758621, 11.153373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 12.600688], [-204.758621, 14.048004], [-197.522042, 14.048004], [-197.522042, 12.600688], [-204.758621, 12.600688] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 14.048004], [-204.758621, 15.49532], [-197.522042, 15.49532], [-197.522042, 14.048004], [-204.758621, 14.048004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 15.49532], [-204.758621, 16.942636], [-197.522042, 16.942636], [-197.522042, 15.49532], [-204.758621, 15.49532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 16.942636], [-204.758621, 18.389952], [-197.522042, 18.389952], [-197.522042, 16.942636], [-204.758621, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 18.389952], [-204.758621, 19.837268], [-197.522042, 19.837268], [-197.522042, 18.389952], [-204.758621, 18.389952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 19.837268], [-204.758621, 21.284583], [-197.522042, 21.284583], [-197.522042, 19.837268], [-204.758621, 19.837268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 21.284583], [-204.758621, 22.731899], [-197.522042, 22.731899], [-197.522042, 21.284583], [-204.758621, 21.284583] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 22.731899], [-204.758621, 24.179215], [-197.522042, 24.179215], [-197.522042, 22.731899], [-204.758621, 22.731899] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 24.179215], [-204.758621, 25.626531], [-197.522042, 25.626531], [-197.522042, 24.179215], [-204.758621, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 25.626531], [-204.758621, 27.073847], [-197.522042, 27.073847], [-197.522042, 25.626531], [-204.758621, 25.626531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 27.073847], [-204.758621, 28.521163], [-197.522042, 28.521163], [-197.522042, 27.073847], [-204.758621, 27.073847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 28.521163], [-204.758621, 29.968478], [-197.522042, 29.968478], [-197.522042, 28.521163], [-204.758621, 28.521163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 29.968478], [-204.758621, 31.415794], [-197.522042, 31.415794], [-197.522042, 29.968478], [-204.758621, 29.968478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 31.415794], [-204.758621, 32.86311], [-197.522042, 32.86311], [-197.522042, 31.415794], [-204.758621, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 32.86311], [-204.758621, 34.310426], [-197.522042, 34.310426], [-197.522042, 32.86311], [-204.758621, 32.86311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 34.310426], [-204.758621, 35.757742], [-197.522042, 35.757742], [-197.522042, 34.310426], [-204.758621, 34.310426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 35.757742], [-204.758621, 37.205058], [-197.522042, 37.205058], [-197.522042, 35.757742], [-204.758621, 35.757742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 37.205058], [-204.758621, 38.652373], [-197.522042, 38.652373], [-197.522042, 37.205058], [-204.758621, 37.205058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 38.652373], [-204.758621, 40.099689], [-197.522042, 40.099689], [-197.522042, 38.652373], [-204.758621, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 40.099689], [-204.758621, 41.547005], [-197.522042, 41.547005], [-197.522042, 40.099689], [-204.758621, 40.099689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 41.547005], [-204.758621, 42.994321], [-197.522042, 42.994321], [-197.522042, 41.547005], [-204.758621, 41.547005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 42.994321], [-204.758621, 44.441637], [-197.522042, 44.441637], [-197.522042, 42.994321], [-204.758621, 42.994321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 44.441637], [-204.758621, 45.888952], [-197.522042, 45.888952], [-197.522042, 44.441637], [-204.758621, 44.441637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 45.888952], [-204.758621, 47.336268], [-197.522042, 47.336268], [-197.522042, 45.888952], [-204.758621, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 47.336268], [-204.758621, 48.783584], [-197.522042, 48.783584], [-197.522042, 47.336268], [-204.758621, 47.336268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 48.783584], [-204.758621, 50.2309], [-197.522042, 50.2309], [-197.522042, 48.783584], [-204.758621, 48.783584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 50.2309], [-204.758621, 51.678216], [-197.522042, 51.678216], [-197.522042, 50.2309], [-204.758621, 50.2309] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 51.678216], [-204.758621, 53.125532], [-197.522042, 53.125532], [-197.522042, 51.678216], [-204.758621, 51.678216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 53.125532], [-204.758621, 54.572847], [-197.522042, 54.572847], [-197.522042, 53.125532], [-204.758621, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 54.572847], [-204.758621, 56.020163], [-197.522042, 56.020163], [-197.522042, 54.572847], [-204.758621, 54.572847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 56.020163], [-204.758621, 57.467479], [-197.522042, 57.467479], [-197.522042, 56.020163], [-204.758621, 56.020163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 57.467479], [-204.758621, 58.914795], [-197.522042, 58.914795], [-197.522042, 57.467479], [-204.758621, 57.467479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 58.914795], [-204.758621, 60.362111], [-197.522042, 60.362111], [-197.522042, 58.914795], [-204.758621, 58.914795] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 60.362111], [-204.758621, 61.809427], [-197.522042, 61.809427], [-197.522042, 60.362111], [-204.758621, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 61.809427], [-204.758621, 63.256742], [-197.522042, 63.256742], [-197.522042, 61.809427], [-204.758621, 61.809427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 63.256742], [-204.758621, 64.704058], [-197.522042, 64.704058], [-197.522042, 63.256742], [-204.758621, 63.256742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 64.704058], [-204.758621, 66.151374], [-197.522042, 66.151374], [-197.522042, 64.704058], [-204.758621, 64.704058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 66.151374], [-204.758621, 67.59869], [-197.522042, 67.59869], [-197.522042, 66.151374], [-204.758621, 66.151374] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 67.59869], [-204.758621, 69.046006], [-197.522042, 69.046006], [-197.522042, 67.59869], [-204.758621, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 69.046006], [-204.758621, 70.493322], [-197.522042, 70.493322], [-197.522042, 69.046006], [-204.758621, 69.046006] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 70.493322], [-204.758621, 71.940637], [-197.522042, 71.940637], [-197.522042, 70.493322], [-204.758621, 70.493322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 71.940637], [-204.758621, 73.387953], [-197.522042, 73.387953], [-197.522042, 71.940637], [-204.758621, 71.940637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 73.387953], [-204.758621, 74.835269], [-197.522042, 74.835269], [-197.522042, 73.387953], [-204.758621, 73.387953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 74.835269], [-204.758621, 76.282585], [-197.522042, 76.282585], [-197.522042, 74.835269], [-204.758621, 74.835269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 76.282585], [-204.758621, 77.729901], [-197.522042, 77.729901], [-197.522042, 76.282585], [-204.758621, 76.282585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -80.027525], [-197.522042, -78.580209], [-190.285462, -78.580209], [-190.285462, -80.027525], [-197.522042, -80.027525] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -78.580209], [-197.522042, -77.132893], [-190.285462, -77.132893], [-190.285462, -78.580209], [-197.522042, -78.580209] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -77.132893], [-197.522042, -75.685577], [-190.285462, -75.685577], [-190.285462, -77.132893], [-197.522042, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -75.685577], [-197.522042, -74.238262], [-190.285462, -74.238262], [-190.285462, -75.685577], [-197.522042, -75.685577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -74.238262], [-197.522042, -72.790946], [-190.285462, -72.790946], [-190.285462, -74.238262], [-197.522042, -74.238262] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -72.790946], [-197.522042, -71.34363], [-190.285462, -71.34363], [-190.285462, -72.790946], [-197.522042, -72.790946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -71.34363], [-197.522042, -69.896314], [-190.285462, -69.896314], [-190.285462, -71.34363], [-197.522042, -71.34363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -69.896314], [-197.522042, -68.448998], [-190.285462, -68.448998], [-190.285462, -69.896314], [-197.522042, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -68.448998], [-197.522042, -67.001682], [-190.285462, -67.001682], [-190.285462, -68.448998], [-197.522042, -68.448998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -67.001682], [-197.522042, -65.554367], [-190.285462, -65.554367], [-190.285462, -67.001682], [-197.522042, -67.001682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -65.554367], [-197.522042, -64.107051], [-190.285462, -64.107051], [-190.285462, -65.554367], [-197.522042, -65.554367] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -64.107051], [-197.522042, -62.659735], [-190.285462, -62.659735], [-190.285462, -64.107051], [-197.522042, -64.107051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -62.659735], [-197.522042, -61.212419], [-190.285462, -61.212419], [-190.285462, -62.659735], [-197.522042, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -61.212419], [-197.522042, -59.765103], [-190.285462, -59.765103], [-190.285462, -61.212419], [-197.522042, -61.212419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -59.765103], [-197.522042, -58.317787], [-190.285462, -58.317787], [-190.285462, -59.765103], [-197.522042, -59.765103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -58.317787], [-197.522042, -56.870472], [-190.285462, -56.870472], [-190.285462, -58.317787], [-197.522042, -58.317787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -56.870472], [-197.522042, -55.423156], [-190.285462, -55.423156], [-190.285462, -56.870472], [-197.522042, -56.870472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -55.423156], [-197.522042, -53.97584], [-190.285462, -53.97584], [-190.285462, -55.423156], [-197.522042, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -53.97584], [-197.522042, -52.528524], [-190.285462, -52.528524], [-190.285462, -53.97584], [-197.522042, -53.97584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -52.528524], [-197.522042, -51.081208], [-190.285462, -51.081208], [-190.285462, -52.528524], [-197.522042, -52.528524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -51.081208], [-197.522042, -49.633892], [-190.285462, -49.633892], [-190.285462, -51.081208], [-197.522042, -51.081208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -49.633892], [-197.522042, -48.186577], [-190.285462, -48.186577], [-190.285462, -49.633892], [-197.522042, -49.633892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -48.186577], [-197.522042, -46.739261], [-190.285462, -46.739261], [-190.285462, -48.186577], [-197.522042, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -46.739261], [-197.522042, -45.291945], [-190.285462, -45.291945], [-190.285462, -46.739261], [-197.522042, -46.739261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -45.291945], [-197.522042, -43.844629], [-190.285462, -43.844629], [-190.285462, -45.291945], [-197.522042, -45.291945] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -43.844629], [-197.522042, -42.397313], [-190.285462, -42.397313], [-190.285462, -43.844629], [-197.522042, -43.844629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -42.397313], [-197.522042, -40.949997], [-190.285462, -40.949997], [-190.285462, -42.397313], [-197.522042, -42.397313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -40.949997], [-197.522042, -39.502682], [-190.285462, -39.502682], [-190.285462, -40.949997], [-197.522042, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -39.502682], [-197.522042, -38.055366], [-190.285462, -38.055366], [-190.285462, -39.502682], [-197.522042, -39.502682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -38.055366], [-197.522042, -36.60805], [-190.285462, -36.60805], [-190.285462, -38.055366], [-197.522042, -38.055366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -36.60805], [-197.522042, -35.160734], [-190.285462, -35.160734], [-190.285462, -36.60805], [-197.522042, -36.60805] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -35.160734], [-197.522042, -33.713418], [-190.285462, -33.713418], [-190.285462, -35.160734], [-197.522042, -35.160734] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -33.713418], [-197.522042, -32.266102], [-190.285462, -32.266102], [-190.285462, -33.713418], [-197.522042, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -32.266102], [-197.522042, -30.818787], [-190.285462, -30.818787], [-190.285462, -32.266102], [-197.522042, -32.266102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -30.818787], [-197.522042, -29.371471], [-190.285462, -29.371471], [-190.285462, -30.818787], [-197.522042, -30.818787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -29.371471], [-197.522042, -27.924155], [-190.285462, -27.924155], [-190.285462, -29.371471], [-197.522042, -29.371471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -27.924155], [-197.522042, -26.476839], [-190.285462, -26.476839], [-190.285462, -27.924155], [-197.522042, -27.924155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -26.476839], [-197.522042, -25.029523], [-190.285462, -25.029523], [-190.285462, -26.476839], [-197.522042, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -25.029523], [-197.522042, -23.582207], [-190.285462, -23.582207], [-190.285462, -25.029523], [-197.522042, -25.029523] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -23.582207], [-197.522042, -22.134892], [-190.285462, -22.134892], [-190.285462, -23.582207], [-197.522042, -23.582207] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -22.134892], [-197.522042, -20.687576], [-190.285462, -20.687576], [-190.285462, -22.134892], [-197.522042, -22.134892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -20.687576], [-197.522042, -19.24026], [-190.285462, -19.24026], [-190.285462, -20.687576], [-197.522042, -20.687576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -19.24026], [-197.522042, -17.792944], [-190.285462, -17.792944], [-190.285462, -19.24026], [-197.522042, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -17.792944], [-197.522042, -16.345628], [-190.285462, -16.345628], [-190.285462, -17.792944], [-197.522042, -17.792944] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -16.345628], [-197.522042, -14.898312], [-190.285462, -14.898312], [-190.285462, -16.345628], [-197.522042, -16.345628] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -14.898312], [-197.522042, -13.450997], [-190.285462, -13.450997], [-190.285462, -14.898312], [-197.522042, -14.898312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -13.450997], [-197.522042, -12.003681], [-190.285462, -12.003681], [-190.285462, -13.450997], [-197.522042, -13.450997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -12.003681], [-197.522042, -10.556365], [-190.285462, -10.556365], [-190.285462, -12.003681], [-197.522042, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -10.556365], [-197.522042, -9.109049], [-190.285462, -9.109049], [-190.285462, -10.556365], [-197.522042, -10.556365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -9.109049], [-197.522042, -7.661733], [-190.285462, -7.661733], [-190.285462, -9.109049], [-197.522042, -9.109049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -7.661733], [-197.522042, -6.214417], [-190.285462, -6.214417], [-190.285462, -7.661733], [-197.522042, -7.661733] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -6.214417], [-197.522042, -4.767102], [-190.285462, -4.767102], [-190.285462, -6.214417], [-197.522042, -6.214417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -4.767102], [-197.522042, -3.319786], [-190.285462, -3.319786], [-190.285462, -4.767102], [-197.522042, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -3.319786], [-197.522042, -1.87247], [-190.285462, -1.87247], [-190.285462, -3.319786], [-197.522042, -3.319786] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -1.87247], [-197.522042, -0.425154], [-190.285462, -0.425154], [-190.285462, -1.87247], [-197.522042, -1.87247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -0.425154], [-197.522042, 1.022162], [-190.285462, 1.022162], [-190.285462, -0.425154], [-197.522042, -0.425154] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 1.022162], [-197.522042, 2.469478], [-190.285462, 2.469478], [-190.285462, 1.022162], [-197.522042, 1.022162] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 2.469478], [-197.522042, 3.916793], [-190.285462, 3.916793], [-190.285462, 2.469478], [-197.522042, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 3.916793], [-197.522042, 5.364109], [-190.285462, 5.364109], [-190.285462, 3.916793], [-197.522042, 3.916793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 5.364109], [-197.522042, 6.811425], [-190.285462, 6.811425], [-190.285462, 5.364109], [-197.522042, 5.364109] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 6.811425], [-197.522042, 8.258741], [-190.285462, 8.258741], [-190.285462, 6.811425], [-197.522042, 6.811425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 8.258741], [-197.522042, 9.706057], [-190.285462, 9.706057], [-190.285462, 8.258741], [-197.522042, 8.258741] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 9.706057], [-197.522042, 11.153373], [-190.285462, 11.153373], [-190.285462, 9.706057], [-197.522042, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 11.153373], [-197.522042, 12.600688], [-190.285462, 12.600688], [-190.285462, 11.153373], [-197.522042, 11.153373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 12.600688], [-197.522042, 14.048004], [-190.285462, 14.048004], [-190.285462, 12.600688], [-197.522042, 12.600688] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 14.048004], [-197.522042, 15.49532], [-190.285462, 15.49532], [-190.285462, 14.048004], [-197.522042, 14.048004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 15.49532], [-197.522042, 16.942636], [-190.285462, 16.942636], [-190.285462, 15.49532], [-197.522042, 15.49532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 16.942636], [-197.522042, 18.389952], [-190.285462, 18.389952], [-190.285462, 16.942636], [-197.522042, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 18.389952], [-197.522042, 19.837268], [-190.285462, 19.837268], [-190.285462, 18.389952], [-197.522042, 18.389952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 19.837268], [-197.522042, 21.284583], [-190.285462, 21.284583], [-190.285462, 19.837268], [-197.522042, 19.837268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 21.284583], [-197.522042, 22.731899], [-190.285462, 22.731899], [-190.285462, 21.284583], [-197.522042, 21.284583] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 22.731899], [-197.522042, 24.179215], [-190.285462, 24.179215], [-190.285462, 22.731899], [-197.522042, 22.731899] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 24.179215], [-197.522042, 25.626531], [-190.285462, 25.626531], [-190.285462, 24.179215], [-197.522042, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 25.626531], [-197.522042, 27.073847], [-190.285462, 27.073847], [-190.285462, 25.626531], [-197.522042, 25.626531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 27.073847], [-197.522042, 28.521163], [-190.285462, 28.521163], [-190.285462, 27.073847], [-197.522042, 27.073847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 28.521163], [-197.522042, 29.968478], [-190.285462, 29.968478], [-190.285462, 28.521163], [-197.522042, 28.521163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 29.968478], [-197.522042, 31.415794], [-190.285462, 31.415794], [-190.285462, 29.968478], [-197.522042, 29.968478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 31.415794], [-197.522042, 32.86311], [-190.285462, 32.86311], [-190.285462, 31.415794], [-197.522042, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 32.86311], [-197.522042, 34.310426], [-190.285462, 34.310426], [-190.285462, 32.86311], [-197.522042, 32.86311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 34.310426], [-197.522042, 35.757742], [-190.285462, 35.757742], [-190.285462, 34.310426], [-197.522042, 34.310426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 35.757742], [-197.522042, 37.205058], [-190.285462, 37.205058], [-190.285462, 35.757742], [-197.522042, 35.757742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 37.205058], [-197.522042, 38.652373], [-190.285462, 38.652373], [-190.285462, 37.205058], [-197.522042, 37.205058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 38.652373], [-197.522042, 40.099689], [-190.285462, 40.099689], [-190.285462, 38.652373], [-197.522042, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 40.099689], [-197.522042, 41.547005], [-190.285462, 41.547005], [-190.285462, 40.099689], [-197.522042, 40.099689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 41.547005], [-197.522042, 42.994321], [-190.285462, 42.994321], [-190.285462, 41.547005], [-197.522042, 41.547005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 42.994321], [-197.522042, 44.441637], [-190.285462, 44.441637], [-190.285462, 42.994321], [-197.522042, 42.994321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 44.441637], [-197.522042, 45.888952], [-190.285462, 45.888952], [-190.285462, 44.441637], [-197.522042, 44.441637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 45.888952], [-197.522042, 47.336268], [-190.285462, 47.336268], [-190.285462, 45.888952], [-197.522042, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 47.336268], [-197.522042, 48.783584], [-190.285462, 48.783584], [-190.285462, 47.336268], [-197.522042, 47.336268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 48.783584], [-197.522042, 50.2309], [-190.285462, 50.2309], [-190.285462, 48.783584], [-197.522042, 48.783584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 50.2309], [-197.522042, 51.678216], [-190.285462, 51.678216], [-190.285462, 50.2309], [-197.522042, 50.2309] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 51.678216], [-197.522042, 53.125532], [-190.285462, 53.125532], [-190.285462, 51.678216], [-197.522042, 51.678216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 53.125532], [-197.522042, 54.572847], [-190.285462, 54.572847], [-190.285462, 53.125532], [-197.522042, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 54.572847], [-197.522042, 56.020163], [-190.285462, 56.020163], [-190.285462, 54.572847], [-197.522042, 54.572847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 56.020163], [-197.522042, 57.467479], [-190.285462, 57.467479], [-190.285462, 56.020163], [-197.522042, 56.020163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 57.467479], [-197.522042, 58.914795], [-190.285462, 58.914795], [-190.285462, 57.467479], [-197.522042, 57.467479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 58.914795], [-197.522042, 60.362111], [-190.285462, 60.362111], [-190.285462, 58.914795], [-197.522042, 58.914795] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 60.362111], [-197.522042, 61.809427], [-190.285462, 61.809427], [-190.285462, 60.362111], [-197.522042, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 61.809427], [-197.522042, 63.256742], [-190.285462, 63.256742], [-190.285462, 61.809427], [-197.522042, 61.809427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 63.256742], [-197.522042, 64.704058], [-190.285462, 64.704058], [-190.285462, 63.256742], [-197.522042, 63.256742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 64.704058], [-197.522042, 66.151374], [-190.285462, 66.151374], [-190.285462, 64.704058], [-197.522042, 64.704058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 66.151374], [-197.522042, 67.59869], [-190.285462, 67.59869], [-190.285462, 66.151374], [-197.522042, 66.151374] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 67.59869], [-197.522042, 69.046006], [-190.285462, 69.046006], [-190.285462, 67.59869], [-197.522042, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 69.046006], [-197.522042, 70.493322], [-190.285462, 70.493322], [-190.285462, 69.046006], [-197.522042, 69.046006] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 70.493322], [-197.522042, 71.940637], [-190.285462, 71.940637], [-190.285462, 70.493322], [-197.522042, 70.493322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 71.940637], [-197.522042, 73.387953], [-190.285462, 73.387953], [-190.285462, 71.940637], [-197.522042, 71.940637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 73.387953], [-197.522042, 74.835269], [-190.285462, 74.835269], [-190.285462, 73.387953], [-197.522042, 73.387953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 74.835269], [-197.522042, 76.282585], [-190.285462, 76.282585], [-190.285462, 74.835269], [-197.522042, 74.835269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 76.282585], [-197.522042, 77.729901], [-190.285462, 77.729901], [-190.285462, 76.282585], [-197.522042, 76.282585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -80.027525], [-190.285462, -78.580209], [-183.048883, -78.580209], [-183.048883, -80.027525], [-190.285462, -80.027525] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -78.580209], [-190.285462, -77.132893], [-183.048883, -77.132893], [-183.048883, -78.580209], [-190.285462, -78.580209] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -77.132893], [-190.285462, -75.685577], [-183.048883, -75.685577], [-183.048883, -77.132893], [-190.285462, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -75.685577], [-190.285462, -74.238262], [-183.048883, -74.238262], [-183.048883, -75.685577], [-190.285462, -75.685577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -74.238262], [-190.285462, -72.790946], [-183.048883, -72.790946], [-183.048883, -74.238262], [-190.285462, -74.238262] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -72.790946], [-190.285462, -71.34363], [-183.048883, -71.34363], [-183.048883, -72.790946], [-190.285462, -72.790946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -71.34363], [-190.285462, -69.896314], [-183.048883, -69.896314], [-183.048883, -71.34363], [-190.285462, -71.34363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -69.896314], [-190.285462, -68.448998], [-183.048883, -68.448998], [-183.048883, -69.896314], [-190.285462, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -68.448998], [-190.285462, -67.001682], [-183.048883, -67.001682], [-183.048883, -68.448998], [-190.285462, -68.448998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -67.001682], [-190.285462, -65.554367], [-183.048883, -65.554367], [-183.048883, -67.001682], [-190.285462, -67.001682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -65.554367], [-190.285462, -64.107051], [-183.048883, -64.107051], [-183.048883, -65.554367], [-190.285462, -65.554367] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -64.107051], [-190.285462, -62.659735], [-183.048883, -62.659735], [-183.048883, -64.107051], [-190.285462, -64.107051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -62.659735], [-190.285462, -61.212419], [-183.048883, -61.212419], [-183.048883, -62.659735], [-190.285462, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -61.212419], [-190.285462, -59.765103], [-183.048883, -59.765103], [-183.048883, -61.212419], [-190.285462, -61.212419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -59.765103], [-190.285462, -58.317787], [-183.048883, -58.317787], [-183.048883, -59.765103], [-190.285462, -59.765103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -58.317787], [-190.285462, -56.870472], [-183.048883, -56.870472], [-183.048883, -58.317787], [-190.285462, -58.317787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -56.870472], [-190.285462, -55.423156], [-183.048883, -55.423156], [-183.048883, -56.870472], [-190.285462, -56.870472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -55.423156], [-190.285462, -53.97584], [-183.048883, -53.97584], [-183.048883, -55.423156], [-190.285462, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -53.97584], [-190.285462, -52.528524], [-183.048883, -52.528524], [-183.048883, -53.97584], [-190.285462, -53.97584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -52.528524], [-190.285462, -51.081208], [-183.048883, -51.081208], [-183.048883, -52.528524], [-190.285462, -52.528524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -51.081208], [-190.285462, -49.633892], [-183.048883, -49.633892], [-183.048883, -51.081208], [-190.285462, -51.081208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -49.633892], [-190.285462, -48.186577], [-183.048883, -48.186577], [-183.048883, -49.633892], [-190.285462, -49.633892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -48.186577], [-190.285462, -46.739261], [-183.048883, -46.739261], [-183.048883, -48.186577], [-190.285462, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -46.739261], [-190.285462, -45.291945], [-183.048883, -45.291945], [-183.048883, -46.739261], [-190.285462, -46.739261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -45.291945], [-190.285462, -43.844629], [-183.048883, -43.844629], [-183.048883, -45.291945], [-190.285462, -45.291945] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -43.844629], [-190.285462, -42.397313], [-183.048883, -42.397313], [-183.048883, -43.844629], [-190.285462, -43.844629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -42.397313], [-190.285462, -40.949997], [-183.048883, -40.949997], [-183.048883, -42.397313], [-190.285462, -42.397313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -40.949997], [-190.285462, -39.502682], [-183.048883, -39.502682], [-183.048883, -40.949997], [-190.285462, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -39.502682], [-190.285462, -38.055366], [-183.048883, -38.055366], [-183.048883, -39.502682], [-190.285462, -39.502682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -38.055366], [-190.285462, -36.60805], [-183.048883, -36.60805], [-183.048883, -38.055366], [-190.285462, -38.055366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -36.60805], [-190.285462, -35.160734], [-183.048883, -35.160734], [-183.048883, -36.60805], [-190.285462, -36.60805] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -35.160734], [-190.285462, -33.713418], [-183.048883, -33.713418], [-183.048883, -35.160734], [-190.285462, -35.160734] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -33.713418], [-190.285462, -32.266102], [-183.048883, -32.266102], [-183.048883, -33.713418], [-190.285462, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -32.266102], [-190.285462, -30.818787], [-183.048883, -30.818787], [-183.048883, -32.266102], [-190.285462, -32.266102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -30.818787], [-190.285462, -29.371471], [-183.048883, -29.371471], [-183.048883, -30.818787], [-190.285462, -30.818787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -29.371471], [-190.285462, -27.924155], [-183.048883, -27.924155], [-183.048883, -29.371471], [-190.285462, -29.371471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -27.924155], [-190.285462, -26.476839], [-183.048883, -26.476839], [-183.048883, -27.924155], [-190.285462, -27.924155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -26.476839], [-190.285462, -25.029523], [-183.048883, -25.029523], [-183.048883, -26.476839], [-190.285462, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -25.029523], [-190.285462, -23.582207], [-183.048883, -23.582207], [-183.048883, -25.029523], [-190.285462, -25.029523] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -23.582207], [-190.285462, -22.134892], [-183.048883, -22.134892], [-183.048883, -23.582207], [-190.285462, -23.582207] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -22.134892], [-190.285462, -20.687576], [-183.048883, -20.687576], [-183.048883, -22.134892], [-190.285462, -22.134892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -20.687576], [-190.285462, -19.24026], [-183.048883, -19.24026], [-183.048883, -20.687576], [-190.285462, -20.687576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -19.24026], [-190.285462, -17.792944], [-183.048883, -17.792944], [-183.048883, -19.24026], [-190.285462, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -17.792944], [-190.285462, -16.345628], [-183.048883, -16.345628], [-183.048883, -17.792944], [-190.285462, -17.792944] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -16.345628], [-190.285462, -14.898312], [-183.048883, -14.898312], [-183.048883, -16.345628], [-190.285462, -16.345628] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -14.898312], [-190.285462, -13.450997], [-183.048883, -13.450997], [-183.048883, -14.898312], [-190.285462, -14.898312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -13.450997], [-190.285462, -12.003681], [-183.048883, -12.003681], [-183.048883, -13.450997], [-190.285462, -13.450997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -12.003681], [-190.285462, -10.556365], [-183.048883, -10.556365], [-183.048883, -12.003681], [-190.285462, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -10.556365], [-190.285462, -9.109049], [-183.048883, -9.109049], [-183.048883, -10.556365], [-190.285462, -10.556365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -9.109049], [-190.285462, -7.661733], [-183.048883, -7.661733], [-183.048883, -9.109049], [-190.285462, -9.109049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -7.661733], [-190.285462, -6.214417], [-183.048883, -6.214417], [-183.048883, -7.661733], [-190.285462, -7.661733] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -6.214417], [-190.285462, -4.767102], [-183.048883, -4.767102], [-183.048883, -6.214417], [-190.285462, -6.214417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -4.767102], [-190.285462, -3.319786], [-183.048883, -3.319786], [-183.048883, -4.767102], [-190.285462, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -3.319786], [-190.285462, -1.87247], [-183.048883, -1.87247], [-183.048883, -3.319786], [-190.285462, -3.319786] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -1.87247], [-190.285462, -0.425154], [-183.048883, -0.425154], [-183.048883, -1.87247], [-190.285462, -1.87247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -0.425154], [-190.285462, 1.022162], [-183.048883, 1.022162], [-183.048883, -0.425154], [-190.285462, -0.425154] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 1.022162], [-190.285462, 2.469478], [-183.048883, 2.469478], [-183.048883, 1.022162], [-190.285462, 1.022162] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 2.469478], [-190.285462, 3.916793], [-183.048883, 3.916793], [-183.048883, 2.469478], [-190.285462, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 3.916793], [-190.285462, 5.364109], [-183.048883, 5.364109], [-183.048883, 3.916793], [-190.285462, 3.916793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 5.364109], [-190.285462, 6.811425], [-183.048883, 6.811425], [-183.048883, 5.364109], [-190.285462, 5.364109] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 6.811425], [-190.285462, 8.258741], [-183.048883, 8.258741], [-183.048883, 6.811425], [-190.285462, 6.811425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 8.258741], [-190.285462, 9.706057], [-183.048883, 9.706057], [-183.048883, 8.258741], [-190.285462, 8.258741] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 9.706057], [-190.285462, 11.153373], [-183.048883, 11.153373], [-183.048883, 9.706057], [-190.285462, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 11.153373], [-190.285462, 12.600688], [-183.048883, 12.600688], [-183.048883, 11.153373], [-190.285462, 11.153373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 12.600688], [-190.285462, 14.048004], [-183.048883, 14.048004], [-183.048883, 12.600688], [-190.285462, 12.600688] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 14.048004], [-190.285462, 15.49532], [-183.048883, 15.49532], [-183.048883, 14.048004], [-190.285462, 14.048004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 15.49532], [-190.285462, 16.942636], [-183.048883, 16.942636], [-183.048883, 15.49532], [-190.285462, 15.49532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 16.942636], [-190.285462, 18.389952], [-183.048883, 18.389952], [-183.048883, 16.942636], [-190.285462, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 18.389952], [-190.285462, 19.837268], [-183.048883, 19.837268], [-183.048883, 18.389952], [-190.285462, 18.389952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 19.837268], [-190.285462, 21.284583], [-183.048883, 21.284583], [-183.048883, 19.837268], [-190.285462, 19.837268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 21.284583], [-190.285462, 22.731899], [-183.048883, 22.731899], [-183.048883, 21.284583], [-190.285462, 21.284583] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 22.731899], [-190.285462, 24.179215], [-183.048883, 24.179215], [-183.048883, 22.731899], [-190.285462, 22.731899] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 24.179215], [-190.285462, 25.626531], [-183.048883, 25.626531], [-183.048883, 24.179215], [-190.285462, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 25.626531], [-190.285462, 27.073847], [-183.048883, 27.073847], [-183.048883, 25.626531], [-190.285462, 25.626531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 27.073847], [-190.285462, 28.521163], [-183.048883, 28.521163], [-183.048883, 27.073847], [-190.285462, 27.073847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 28.521163], [-190.285462, 29.968478], [-183.048883, 29.968478], [-183.048883, 28.521163], [-190.285462, 28.521163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 29.968478], [-190.285462, 31.415794], [-183.048883, 31.415794], [-183.048883, 29.968478], [-190.285462, 29.968478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 31.415794], [-190.285462, 32.86311], [-183.048883, 32.86311], [-183.048883, 31.415794], [-190.285462, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 32.86311], [-190.285462, 34.310426], [-183.048883, 34.310426], [-183.048883, 32.86311], [-190.285462, 32.86311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 34.310426], [-190.285462, 35.757742], [-183.048883, 35.757742], [-183.048883, 34.310426], [-190.285462, 34.310426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 35.757742], [-190.285462, 37.205058], [-183.048883, 37.205058], [-183.048883, 35.757742], [-190.285462, 35.757742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 37.205058], [-190.285462, 38.652373], [-183.048883, 38.652373], [-183.048883, 37.205058], [-190.285462, 37.205058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 38.652373], [-190.285462, 40.099689], [-183.048883, 40.099689], [-183.048883, 38.652373], [-190.285462, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 40.099689], [-190.285462, 41.547005], [-183.048883, 41.547005], [-183.048883, 40.099689], [-190.285462, 40.099689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 41.547005], [-190.285462, 42.994321], [-183.048883, 42.994321], [-183.048883, 41.547005], [-190.285462, 41.547005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 42.994321], [-190.285462, 44.441637], [-183.048883, 44.441637], [-183.048883, 42.994321], [-190.285462, 42.994321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 44.441637], [-190.285462, 45.888952], [-183.048883, 45.888952], [-183.048883, 44.441637], [-190.285462, 44.441637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 45.888952], [-190.285462, 47.336268], [-183.048883, 47.336268], [-183.048883, 45.888952], [-190.285462, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 47.336268], [-190.285462, 48.783584], [-183.048883, 48.783584], [-183.048883, 47.336268], [-190.285462, 47.336268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 48.783584], [-190.285462, 50.2309], [-183.048883, 50.2309], [-183.048883, 48.783584], [-190.285462, 48.783584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 50.2309], [-190.285462, 51.678216], [-183.048883, 51.678216], [-183.048883, 50.2309], [-190.285462, 50.2309] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 51.678216], [-190.285462, 53.125532], [-183.048883, 53.125532], [-183.048883, 51.678216], [-190.285462, 51.678216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 53.125532], [-190.285462, 54.572847], [-183.048883, 54.572847], [-183.048883, 53.125532], [-190.285462, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 54.572847], [-190.285462, 56.020163], [-183.048883, 56.020163], [-183.048883, 54.572847], [-190.285462, 54.572847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 56.020163], [-190.285462, 57.467479], [-183.048883, 57.467479], [-183.048883, 56.020163], [-190.285462, 56.020163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 57.467479], [-190.285462, 58.914795], [-183.048883, 58.914795], [-183.048883, 57.467479], [-190.285462, 57.467479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 58.914795], [-190.285462, 60.362111], [-183.048883, 60.362111], [-183.048883, 58.914795], [-190.285462, 58.914795] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 60.362111], [-190.285462, 61.809427], [-183.048883, 61.809427], [-183.048883, 60.362111], [-190.285462, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 61.809427], [-190.285462, 63.256742], [-183.048883, 63.256742], [-183.048883, 61.809427], [-190.285462, 61.809427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 63.256742], [-190.285462, 64.704058], [-183.048883, 64.704058], [-183.048883, 63.256742], [-190.285462, 63.256742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 64.704058], [-190.285462, 66.151374], [-183.048883, 66.151374], [-183.048883, 64.704058], [-190.285462, 64.704058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 66.151374], [-190.285462, 67.59869], [-183.048883, 67.59869], [-183.048883, 66.151374], [-190.285462, 66.151374] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 67.59869], [-190.285462, 69.046006], [-183.048883, 69.046006], [-183.048883, 67.59869], [-190.285462, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 69.046006], [-190.285462, 70.493322], [-183.048883, 70.493322], [-183.048883, 69.046006], [-190.285462, 69.046006] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 70.493322], [-190.285462, 71.940637], [-183.048883, 71.940637], [-183.048883, 70.493322], [-190.285462, 70.493322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 71.940637], [-190.285462, 73.387953], [-183.048883, 73.387953], [-183.048883, 71.940637], [-190.285462, 71.940637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 73.387953], [-190.285462, 74.835269], [-183.048883, 74.835269], [-183.048883, 73.387953], [-190.285462, 73.387953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 74.835269], [-190.285462, 76.282585], [-183.048883, 76.282585], [-183.048883, 74.835269], [-190.285462, 74.835269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 76.282585], [-190.285462, 77.729901], [-183.048883, 77.729901], [-183.048883, 76.282585], [-190.285462, 76.282585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -80.027525], [-183.048883, -78.580209], [-175.812304, -78.580209], [-175.812304, -80.027525], [-183.048883, -80.027525] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -78.580209], [-183.048883, -77.132893], [-175.812304, -77.132893], [-175.812304, -78.580209], [-183.048883, -78.580209] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -77.132893], [-183.048883, -75.685577], [-175.812304, -75.685577], [-175.812304, -77.132893], [-183.048883, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -75.685577], [-183.048883, -74.238262], [-175.812304, -74.238262], [-175.812304, -75.685577], [-183.048883, -75.685577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -74.238262], [-183.048883, -72.790946], [-175.812304, -72.790946], [-175.812304, -74.238262], [-183.048883, -74.238262] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -72.790946], [-183.048883, -71.34363], [-175.812304, -71.34363], [-175.812304, -72.790946], [-183.048883, -72.790946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -71.34363], [-183.048883, -69.896314], [-175.812304, -69.896314], [-175.812304, -71.34363], [-183.048883, -71.34363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -69.896314], [-183.048883, -68.448998], [-175.812304, -68.448998], [-175.812304, -69.896314], [-183.048883, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -68.448998], [-183.048883, -67.001682], [-175.812304, -67.001682], [-175.812304, -68.448998], [-183.048883, -68.448998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -67.001682], [-183.048883, -65.554367], [-175.812304, -65.554367], [-175.812304, -67.001682], [-183.048883, -67.001682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -65.554367], [-183.048883, -64.107051], [-175.812304, -64.107051], [-175.812304, -65.554367], [-183.048883, -65.554367] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -64.107051], [-183.048883, -62.659735], [-175.812304, -62.659735], [-175.812304, -64.107051], [-183.048883, -64.107051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -62.659735], [-183.048883, -61.212419], [-175.812304, -61.212419], [-175.812304, -62.659735], [-183.048883, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -61.212419], [-183.048883, -59.765103], [-175.812304, -59.765103], [-175.812304, -61.212419], [-183.048883, -61.212419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -59.765103], [-183.048883, -58.317787], [-175.812304, -58.317787], [-175.812304, -59.765103], [-183.048883, -59.765103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -58.317787], [-183.048883, -56.870472], [-175.812304, -56.870472], [-175.812304, -58.317787], [-183.048883, -58.317787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -56.870472], [-183.048883, -55.423156], [-175.812304, -55.423156], [-175.812304, -56.870472], [-183.048883, -56.870472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -55.423156], [-183.048883, -53.97584], [-175.812304, -53.97584], [-175.812304, -55.423156], [-183.048883, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -53.97584], [-183.048883, -52.528524], [-175.812304, -52.528524], [-175.812304, -53.97584], [-183.048883, -53.97584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -52.528524], [-183.048883, -51.081208], [-175.812304, -51.081208], [-175.812304, -52.528524], [-183.048883, -52.528524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -51.081208], [-183.048883, -49.633892], [-175.812304, -49.633892], [-175.812304, -51.081208], [-183.048883, -51.081208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -49.633892], [-183.048883, -48.186577], [-175.812304, -48.186577], [-175.812304, -49.633892], [-183.048883, -49.633892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -48.186577], [-183.048883, -46.739261], [-175.812304, -46.739261], [-175.812304, -48.186577], [-183.048883, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -46.739261], [-183.048883, -45.291945], [-175.812304, -45.291945], [-175.812304, -46.739261], [-183.048883, -46.739261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -45.291945], [-183.048883, -43.844629], [-175.812304, -43.844629], [-175.812304, -45.291945], [-183.048883, -45.291945] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -43.844629], [-183.048883, -42.397313], [-175.812304, -42.397313], [-175.812304, -43.844629], [-183.048883, -43.844629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -42.397313], [-183.048883, -40.949997], [-175.812304, -40.949997], [-175.812304, -42.397313], [-183.048883, -42.397313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -40.949997], [-183.048883, -39.502682], [-175.812304, -39.502682], [-175.812304, -40.949997], [-183.048883, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -39.502682], [-183.048883, -38.055366], [-175.812304, -38.055366], [-175.812304, -39.502682], [-183.048883, -39.502682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -38.055366], [-183.048883, -36.60805], [-175.812304, -36.60805], [-175.812304, -38.055366], [-183.048883, -38.055366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -36.60805], [-183.048883, -35.160734], [-175.812304, -35.160734], [-175.812304, -36.60805], [-183.048883, -36.60805] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -35.160734], [-183.048883, -33.713418], [-175.812304, -33.713418], [-175.812304, -35.160734], [-183.048883, -35.160734] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -33.713418], [-183.048883, -32.266102], [-175.812304, -32.266102], [-175.812304, -33.713418], [-183.048883, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -32.266102], [-183.048883, -30.818787], [-175.812304, -30.818787], [-175.812304, -32.266102], [-183.048883, -32.266102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -30.818787], [-183.048883, -29.371471], [-175.812304, -29.371471], [-175.812304, -30.818787], [-183.048883, -30.818787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -29.371471], [-183.048883, -27.924155], [-175.812304, -27.924155], [-175.812304, -29.371471], [-183.048883, -29.371471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -27.924155], [-183.048883, -26.476839], [-175.812304, -26.476839], [-175.812304, -27.924155], [-183.048883, -27.924155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -26.476839], [-183.048883, -25.029523], [-175.812304, -25.029523], [-175.812304, -26.476839], [-183.048883, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -25.029523], [-183.048883, -23.582207], [-175.812304, -23.582207], [-175.812304, -25.029523], [-183.048883, -25.029523] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -23.582207], [-183.048883, -22.134892], [-175.812304, -22.134892], [-175.812304, -23.582207], [-183.048883, -23.582207] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -22.134892], [-183.048883, -20.687576], [-175.812304, -20.687576], [-175.812304, -22.134892], [-183.048883, -22.134892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -20.687576], [-183.048883, -19.24026], [-175.812304, -19.24026], [-175.812304, -20.687576], [-183.048883, -20.687576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -19.24026], [-183.048883, -17.792944], [-175.812304, -17.792944], [-175.812304, -19.24026], [-183.048883, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -17.792944], [-183.048883, -16.345628], [-175.812304, -16.345628], [-175.812304, -17.792944], [-183.048883, -17.792944] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -16.345628], [-183.048883, -14.898312], [-175.812304, -14.898312], [-175.812304, -16.345628], [-183.048883, -16.345628] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -14.898312], [-183.048883, -13.450997], [-175.812304, -13.450997], [-175.812304, -14.898312], [-183.048883, -14.898312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -13.450997], [-183.048883, -12.003681], [-175.812304, -12.003681], [-175.812304, -13.450997], [-183.048883, -13.450997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -12.003681], [-183.048883, -10.556365], [-175.812304, -10.556365], [-175.812304, -12.003681], [-183.048883, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -10.556365], [-183.048883, -9.109049], [-175.812304, -9.109049], [-175.812304, -10.556365], [-183.048883, -10.556365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -9.109049], [-183.048883, -7.661733], [-175.812304, -7.661733], [-175.812304, -9.109049], [-183.048883, -9.109049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -7.661733], [-183.048883, -6.214417], [-175.812304, -6.214417], [-175.812304, -7.661733], [-183.048883, -7.661733] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -6.214417], [-183.048883, -4.767102], [-175.812304, -4.767102], [-175.812304, -6.214417], [-183.048883, -6.214417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -4.767102], [-183.048883, -3.319786], [-175.812304, -3.319786], [-175.812304, -4.767102], [-183.048883, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -3.319786], [-183.048883, -1.87247], [-175.812304, -1.87247], [-175.812304, -3.319786], [-183.048883, -3.319786] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -1.87247], [-183.048883, -0.425154], [-175.812304, -0.425154], [-175.812304, -1.87247], [-183.048883, -1.87247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -0.425154], [-183.048883, 1.022162], [-175.812304, 1.022162], [-175.812304, -0.425154], [-183.048883, -0.425154] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 1.022162], [-183.048883, 2.469478], [-175.812304, 2.469478], [-175.812304, 1.022162], [-183.048883, 1.022162] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 2.469478], [-183.048883, 3.916793], [-175.812304, 3.916793], [-175.812304, 2.469478], [-183.048883, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 3.916793], [-183.048883, 5.364109], [-175.812304, 5.364109], [-175.812304, 3.916793], [-183.048883, 3.916793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 5.364109], [-183.048883, 6.811425], [-175.812304, 6.811425], [-175.812304, 5.364109], [-183.048883, 5.364109] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 6.811425], [-183.048883, 8.258741], [-175.812304, 8.258741], [-175.812304, 6.811425], [-183.048883, 6.811425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 8.258741], [-183.048883, 9.706057], [-175.812304, 9.706057], [-175.812304, 8.258741], [-183.048883, 8.258741] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 9.706057], [-183.048883, 11.153373], [-175.812304, 11.153373], [-175.812304, 9.706057], [-183.048883, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 11.153373], [-183.048883, 12.600688], [-175.812304, 12.600688], [-175.812304, 11.153373], [-183.048883, 11.153373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 12.600688], [-183.048883, 14.048004], [-175.812304, 14.048004], [-175.812304, 12.600688], [-183.048883, 12.600688] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 14.048004], [-183.048883, 15.49532], [-175.812304, 15.49532], [-175.812304, 14.048004], [-183.048883, 14.048004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 15.49532], [-183.048883, 16.942636], [-175.812304, 16.942636], [-175.812304, 15.49532], [-183.048883, 15.49532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 16.942636], [-183.048883, 18.389952], [-175.812304, 18.389952], [-175.812304, 16.942636], [-183.048883, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 18.389952], [-183.048883, 19.837268], [-175.812304, 19.837268], [-175.812304, 18.389952], [-183.048883, 18.389952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 19.837268], [-183.048883, 21.284583], [-175.812304, 21.284583], [-175.812304, 19.837268], [-183.048883, 19.837268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 21.284583], [-183.048883, 22.731899], [-175.812304, 22.731899], [-175.812304, 21.284583], [-183.048883, 21.284583] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 22.731899], [-183.048883, 24.179215], [-175.812304, 24.179215], [-175.812304, 22.731899], [-183.048883, 22.731899] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 24.179215], [-183.048883, 25.626531], [-175.812304, 25.626531], [-175.812304, 24.179215], [-183.048883, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 25.626531], [-183.048883, 27.073847], [-175.812304, 27.073847], [-175.812304, 25.626531], [-183.048883, 25.626531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 27.073847], [-183.048883, 28.521163], [-175.812304, 28.521163], [-175.812304, 27.073847], [-183.048883, 27.073847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 28.521163], [-183.048883, 29.968478], [-175.812304, 29.968478], [-175.812304, 28.521163], [-183.048883, 28.521163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 29.968478], [-183.048883, 31.415794], [-175.812304, 31.415794], [-175.812304, 29.968478], [-183.048883, 29.968478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 31.415794], [-183.048883, 32.86311], [-175.812304, 32.86311], [-175.812304, 31.415794], [-183.048883, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 32.86311], [-183.048883, 34.310426], [-175.812304, 34.310426], [-175.812304, 32.86311], [-183.048883, 32.86311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 34.310426], [-183.048883, 35.757742], [-175.812304, 35.757742], [-175.812304, 34.310426], [-183.048883, 34.310426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 35.757742], [-183.048883, 37.205058], [-175.812304, 37.205058], [-175.812304, 35.757742], [-183.048883, 35.757742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 37.205058], [-183.048883, 38.652373], [-175.812304, 38.652373], [-175.812304, 37.205058], [-183.048883, 37.205058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 38.652373], [-183.048883, 40.099689], [-175.812304, 40.099689], [-175.812304, 38.652373], [-183.048883, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 40.099689], [-183.048883, 41.547005], [-175.812304, 41.547005], [-175.812304, 40.099689], [-183.048883, 40.099689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 41.547005], [-183.048883, 42.994321], [-175.812304, 42.994321], [-175.812304, 41.547005], [-183.048883, 41.547005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 42.994321], [-183.048883, 44.441637], [-175.812304, 44.441637], [-175.812304, 42.994321], [-183.048883, 42.994321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 44.441637], [-183.048883, 45.888952], [-175.812304, 45.888952], [-175.812304, 44.441637], [-183.048883, 44.441637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 45.888952], [-183.048883, 47.336268], [-175.812304, 47.336268], [-175.812304, 45.888952], [-183.048883, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 47.336268], [-183.048883, 48.783584], [-175.812304, 48.783584], [-175.812304, 47.336268], [-183.048883, 47.336268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 48.783584], [-183.048883, 50.2309], [-175.812304, 50.2309], [-175.812304, 48.783584], [-183.048883, 48.783584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 50.2309], [-183.048883, 51.678216], [-175.812304, 51.678216], [-175.812304, 50.2309], [-183.048883, 50.2309] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 51.678216], [-183.048883, 53.125532], [-175.812304, 53.125532], [-175.812304, 51.678216], [-183.048883, 51.678216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 53.125532], [-183.048883, 54.572847], [-175.812304, 54.572847], [-175.812304, 53.125532], [-183.048883, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 54.572847], [-183.048883, 56.020163], [-175.812304, 56.020163], [-175.812304, 54.572847], [-183.048883, 54.572847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 56.020163], [-183.048883, 57.467479], [-175.812304, 57.467479], [-175.812304, 56.020163], [-183.048883, 56.020163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 57.467479], [-183.048883, 58.914795], [-175.812304, 58.914795], [-175.812304, 57.467479], [-183.048883, 57.467479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 58.914795], [-183.048883, 60.362111], [-175.812304, 60.362111], [-175.812304, 58.914795], [-183.048883, 58.914795] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 60.362111], [-183.048883, 61.809427], [-175.812304, 61.809427], [-175.812304, 60.362111], [-183.048883, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 61.809427], [-183.048883, 63.256742], [-175.812304, 63.256742], [-175.812304, 61.809427], [-183.048883, 61.809427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 63.256742], [-183.048883, 64.704058], [-175.812304, 64.704058], [-175.812304, 63.256742], [-183.048883, 63.256742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 64.704058], [-183.048883, 66.151374], [-175.812304, 66.151374], [-175.812304, 64.704058], [-183.048883, 64.704058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 66.151374], [-183.048883, 67.59869], [-175.812304, 67.59869], [-175.812304, 66.151374], [-183.048883, 66.151374] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 67.59869], [-183.048883, 69.046006], [-175.812304, 69.046006], [-175.812304, 67.59869], [-183.048883, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 69.046006], [-183.048883, 70.493322], [-175.812304, 70.493322], [-175.812304, 69.046006], [-183.048883, 69.046006] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 70.493322], [-183.048883, 71.940637], [-175.812304, 71.940637], [-175.812304, 70.493322], [-183.048883, 70.493322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 71.940637], [-183.048883, 73.387953], [-175.812304, 73.387953], [-175.812304, 71.940637], [-183.048883, 71.940637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 73.387953], [-183.048883, 74.835269], [-175.812304, 74.835269], [-175.812304, 73.387953], [-183.048883, 73.387953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 74.835269], [-183.048883, 76.282585], [-175.812304, 76.282585], [-175.812304, 74.835269], [-183.048883, 74.835269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 76.282585], [-183.048883, 77.729901], [-175.812304, 77.729901], [-175.812304, 76.282585], [-183.048883, 76.282585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -80.027525], [-175.812304, -78.580209], [-168.575725, -78.580209], [-168.575725, -80.027525], [-175.812304, -80.027525] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -78.580209], [-175.812304, -77.132893], [-168.575725, -77.132893], [-168.575725, -78.580209], [-175.812304, -78.580209] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -77.132893], [-175.812304, -75.685577], [-168.575725, -75.685577], [-168.575725, -77.132893], [-175.812304, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -75.685577], [-175.812304, -74.238262], [-168.575725, -74.238262], [-168.575725, -75.685577], [-175.812304, -75.685577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -74.238262], [-175.812304, -72.790946], [-168.575725, -72.790946], [-168.575725, -74.238262], [-175.812304, -74.238262] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -72.790946], [-175.812304, -71.34363], [-168.575725, -71.34363], [-168.575725, -72.790946], [-175.812304, -72.790946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -71.34363], [-175.812304, -69.896314], [-168.575725, -69.896314], [-168.575725, -71.34363], [-175.812304, -71.34363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -69.896314], [-175.812304, -68.448998], [-168.575725, -68.448998], [-168.575725, -69.896314], [-175.812304, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -68.448998], [-175.812304, -67.001682], [-168.575725, -67.001682], [-168.575725, -68.448998], [-175.812304, -68.448998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -67.001682], [-175.812304, -65.554367], [-168.575725, -65.554367], [-168.575725, -67.001682], [-175.812304, -67.001682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -65.554367], [-175.812304, -64.107051], [-168.575725, -64.107051], [-168.575725, -65.554367], [-175.812304, -65.554367] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -64.107051], [-175.812304, -62.659735], [-168.575725, -62.659735], [-168.575725, -64.107051], [-175.812304, -64.107051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -62.659735], [-175.812304, -61.212419], [-168.575725, -61.212419], [-168.575725, -62.659735], [-175.812304, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -61.212419], [-175.812304, -59.765103], [-168.575725, -59.765103], [-168.575725, -61.212419], [-175.812304, -61.212419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -59.765103], [-175.812304, -58.317787], [-168.575725, -58.317787], [-168.575725, -59.765103], [-175.812304, -59.765103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -58.317787], [-175.812304, -56.870472], [-168.575725, -56.870472], [-168.575725, -58.317787], [-175.812304, -58.317787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -56.870472], [-175.812304, -55.423156], [-168.575725, -55.423156], [-168.575725, -56.870472], [-175.812304, -56.870472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -55.423156], [-175.812304, -53.97584], [-168.575725, -53.97584], [-168.575725, -55.423156], [-175.812304, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -53.97584], [-175.812304, -52.528524], [-168.575725, -52.528524], [-168.575725, -53.97584], [-175.812304, -53.97584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -52.528524], [-175.812304, -51.081208], [-168.575725, -51.081208], [-168.575725, -52.528524], [-175.812304, -52.528524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -51.081208], [-175.812304, -49.633892], [-168.575725, -49.633892], [-168.575725, -51.081208], [-175.812304, -51.081208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -49.633892], [-175.812304, -48.186577], [-168.575725, -48.186577], [-168.575725, -49.633892], [-175.812304, -49.633892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -48.186577], [-175.812304, -46.739261], [-168.575725, -46.739261], [-168.575725, -48.186577], [-175.812304, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -46.739261], [-175.812304, -45.291945], [-168.575725, -45.291945], [-168.575725, -46.739261], [-175.812304, -46.739261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -45.291945], [-175.812304, -43.844629], [-168.575725, -43.844629], [-168.575725, -45.291945], [-175.812304, -45.291945] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -43.844629], [-175.812304, -42.397313], [-168.575725, -42.397313], [-168.575725, -43.844629], [-175.812304, -43.844629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -42.397313], [-175.812304, -40.949997], [-168.575725, -40.949997], [-168.575725, -42.397313], [-175.812304, -42.397313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -40.949997], [-175.812304, -39.502682], [-168.575725, -39.502682], [-168.575725, -40.949997], [-175.812304, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -39.502682], [-175.812304, -38.055366], [-168.575725, -38.055366], [-168.575725, -39.502682], [-175.812304, -39.502682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -38.055366], [-175.812304, -36.60805], [-168.575725, -36.60805], [-168.575725, -38.055366], [-175.812304, -38.055366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -36.60805], [-175.812304, -35.160734], [-168.575725, -35.160734], [-168.575725, -36.60805], [-175.812304, -36.60805] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -35.160734], [-175.812304, -33.713418], [-168.575725, -33.713418], [-168.575725, -35.160734], [-175.812304, -35.160734] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -33.713418], [-175.812304, -32.266102], [-168.575725, -32.266102], [-168.575725, -33.713418], [-175.812304, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -32.266102], [-175.812304, -30.818787], [-168.575725, -30.818787], [-168.575725, -32.266102], [-175.812304, -32.266102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -30.818787], [-175.812304, -29.371471], [-168.575725, -29.371471], [-168.575725, -30.818787], [-175.812304, -30.818787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -29.371471], [-175.812304, -27.924155], [-168.575725, -27.924155], [-168.575725, -29.371471], [-175.812304, -29.371471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -27.924155], [-175.812304, -26.476839], [-168.575725, -26.476839], [-168.575725, -27.924155], [-175.812304, -27.924155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -26.476839], [-175.812304, -25.029523], [-168.575725, -25.029523], [-168.575725, -26.476839], [-175.812304, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -25.029523], [-175.812304, -23.582207], [-168.575725, -23.582207], [-168.575725, -25.029523], [-175.812304, -25.029523] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -23.582207], [-175.812304, -22.134892], [-168.575725, -22.134892], [-168.575725, -23.582207], [-175.812304, -23.582207] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -22.134892], [-175.812304, -20.687576], [-168.575725, -20.687576], [-168.575725, -22.134892], [-175.812304, -22.134892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -20.687576], [-175.812304, -19.24026], [-168.575725, -19.24026], [-168.575725, -20.687576], [-175.812304, -20.687576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -19.24026], [-175.812304, -17.792944], [-168.575725, -17.792944], [-168.575725, -19.24026], [-175.812304, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -17.792944], [-175.812304, -16.345628], [-168.575725, -16.345628], [-168.575725, -17.792944], [-175.812304, -17.792944] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -16.345628], [-175.812304, -14.898312], [-168.575725, -14.898312], [-168.575725, -16.345628], [-175.812304, -16.345628] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -14.898312], [-175.812304, -13.450997], [-168.575725, -13.450997], [-168.575725, -14.898312], [-175.812304, -14.898312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -13.450997], [-175.812304, -12.003681], [-168.575725, -12.003681], [-168.575725, -13.450997], [-175.812304, -13.450997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -12.003681], [-175.812304, -10.556365], [-168.575725, -10.556365], [-168.575725, -12.003681], [-175.812304, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -10.556365], [-175.812304, -9.109049], [-168.575725, -9.109049], [-168.575725, -10.556365], [-175.812304, -10.556365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -9.109049], [-175.812304, -7.661733], [-168.575725, -7.661733], [-168.575725, -9.109049], [-175.812304, -9.109049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -7.661733], [-175.812304, -6.214417], [-168.575725, -6.214417], [-168.575725, -7.661733], [-175.812304, -7.661733] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -6.214417], [-175.812304, -4.767102], [-168.575725, -4.767102], [-168.575725, -6.214417], [-175.812304, -6.214417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -4.767102], [-175.812304, -3.319786], [-168.575725, -3.319786], [-168.575725, -4.767102], [-175.812304, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -3.319786], [-175.812304, -1.87247], [-168.575725, -1.87247], [-168.575725, -3.319786], [-175.812304, -3.319786] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -1.87247], [-175.812304, -0.425154], [-168.575725, -0.425154], [-168.575725, -1.87247], [-175.812304, -1.87247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -0.425154], [-175.812304, 1.022162], [-168.575725, 1.022162], [-168.575725, -0.425154], [-175.812304, -0.425154] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 1.022162], [-175.812304, 2.469478], [-168.575725, 2.469478], [-168.575725, 1.022162], [-175.812304, 1.022162] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 2.469478], [-175.812304, 3.916793], [-168.575725, 3.916793], [-168.575725, 2.469478], [-175.812304, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 3.916793], [-175.812304, 5.364109], [-168.575725, 5.364109], [-168.575725, 3.916793], [-175.812304, 3.916793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 5.364109], [-175.812304, 6.811425], [-168.575725, 6.811425], [-168.575725, 5.364109], [-175.812304, 5.364109] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 6.811425], [-175.812304, 8.258741], [-168.575725, 8.258741], [-168.575725, 6.811425], [-175.812304, 6.811425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 8.258741], [-175.812304, 9.706057], [-168.575725, 9.706057], [-168.575725, 8.258741], [-175.812304, 8.258741] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 9.706057], [-175.812304, 11.153373], [-168.575725, 11.153373], [-168.575725, 9.706057], [-175.812304, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 11.153373], [-175.812304, 12.600688], [-168.575725, 12.600688], [-168.575725, 11.153373], [-175.812304, 11.153373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 12.600688], [-175.812304, 14.048004], [-168.575725, 14.048004], [-168.575725, 12.600688], [-175.812304, 12.600688] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 14.048004], [-175.812304, 15.49532], [-168.575725, 15.49532], [-168.575725, 14.048004], [-175.812304, 14.048004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 15.49532], [-175.812304, 16.942636], [-168.575725, 16.942636], [-168.575725, 15.49532], [-175.812304, 15.49532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 16.942636], [-175.812304, 18.389952], [-168.575725, 18.389952], [-168.575725, 16.942636], [-175.812304, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 18.389952], [-175.812304, 19.837268], [-168.575725, 19.837268], [-168.575725, 18.389952], [-175.812304, 18.389952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 19.837268], [-175.812304, 21.284583], [-168.575725, 21.284583], [-168.575725, 19.837268], [-175.812304, 19.837268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 21.284583], [-175.812304, 22.731899], [-168.575725, 22.731899], [-168.575725, 21.284583], [-175.812304, 21.284583] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 22.731899], [-175.812304, 24.179215], [-168.575725, 24.179215], [-168.575725, 22.731899], [-175.812304, 22.731899] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 24.179215], [-175.812304, 25.626531], [-168.575725, 25.626531], [-168.575725, 24.179215], [-175.812304, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 25.626531], [-175.812304, 27.073847], [-168.575725, 27.073847], [-168.575725, 25.626531], [-175.812304, 25.626531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 27.073847], [-175.812304, 28.521163], [-168.575725, 28.521163], [-168.575725, 27.073847], [-175.812304, 27.073847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 28.521163], [-175.812304, 29.968478], [-168.575725, 29.968478], [-168.575725, 28.521163], [-175.812304, 28.521163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 29.968478], [-175.812304, 31.415794], [-168.575725, 31.415794], [-168.575725, 29.968478], [-175.812304, 29.968478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 31.415794], [-175.812304, 32.86311], [-168.575725, 32.86311], [-168.575725, 31.415794], [-175.812304, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 32.86311], [-175.812304, 34.310426], [-168.575725, 34.310426], [-168.575725, 32.86311], [-175.812304, 32.86311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 34.310426], [-175.812304, 35.757742], [-168.575725, 35.757742], [-168.575725, 34.310426], [-175.812304, 34.310426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 35.757742], [-175.812304, 37.205058], [-168.575725, 37.205058], [-168.575725, 35.757742], [-175.812304, 35.757742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 37.205058], [-175.812304, 38.652373], [-168.575725, 38.652373], [-168.575725, 37.205058], [-175.812304, 37.205058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 38.652373], [-175.812304, 40.099689], [-168.575725, 40.099689], [-168.575725, 38.652373], [-175.812304, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 40.099689], [-175.812304, 41.547005], [-168.575725, 41.547005], [-168.575725, 40.099689], [-175.812304, 40.099689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 41.547005], [-175.812304, 42.994321], [-168.575725, 42.994321], [-168.575725, 41.547005], [-175.812304, 41.547005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 42.994321], [-175.812304, 44.441637], [-168.575725, 44.441637], [-168.575725, 42.994321], [-175.812304, 42.994321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 44.441637], [-175.812304, 45.888952], [-168.575725, 45.888952], [-168.575725, 44.441637], [-175.812304, 44.441637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 45.888952], [-175.812304, 47.336268], [-168.575725, 47.336268], [-168.575725, 45.888952], [-175.812304, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 47.336268], [-175.812304, 48.783584], [-168.575725, 48.783584], [-168.575725, 47.336268], [-175.812304, 47.336268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 48.783584], [-175.812304, 50.2309], [-168.575725, 50.2309], [-168.575725, 48.783584], [-175.812304, 48.783584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 50.2309], [-175.812304, 51.678216], [-168.575725, 51.678216], [-168.575725, 50.2309], [-175.812304, 50.2309] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 51.678216], [-175.812304, 53.125532], [-168.575725, 53.125532], [-168.575725, 51.678216], [-175.812304, 51.678216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 53.125532], [-175.812304, 54.572847], [-168.575725, 54.572847], [-168.575725, 53.125532], [-175.812304, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 54.572847], [-175.812304, 56.020163], [-168.575725, 56.020163], [-168.575725, 54.572847], [-175.812304, 54.572847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 56.020163], [-175.812304, 57.467479], [-168.575725, 57.467479], [-168.575725, 56.020163], [-175.812304, 56.020163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 57.467479], [-175.812304, 58.914795], [-168.575725, 58.914795], [-168.575725, 57.467479], [-175.812304, 57.467479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 58.914795], [-175.812304, 60.362111], [-168.575725, 60.362111], [-168.575725, 58.914795], [-175.812304, 58.914795] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 60.362111], [-175.812304, 61.809427], [-168.575725, 61.809427], [-168.575725, 60.362111], [-175.812304, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 61.809427], [-175.812304, 63.256742], [-168.575725, 63.256742], [-168.575725, 61.809427], [-175.812304, 61.809427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 63.256742], [-175.812304, 64.704058], [-168.575725, 64.704058], [-168.575725, 63.256742], [-175.812304, 63.256742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 64.704058], [-175.812304, 66.151374], [-168.575725, 66.151374], [-168.575725, 64.704058], [-175.812304, 64.704058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 66.151374], [-175.812304, 67.59869], [-168.575725, 67.59869], [-168.575725, 66.151374], [-175.812304, 66.151374] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 67.59869], [-175.812304, 69.046006], [-168.575725, 69.046006], [-168.575725, 67.59869], [-175.812304, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 69.046006], [-175.812304, 70.493322], [-168.575725, 70.493322], [-168.575725, 69.046006], [-175.812304, 69.046006] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 70.493322], [-175.812304, 71.940637], [-168.575725, 71.940637], [-168.575725, 70.493322], [-175.812304, 70.493322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 71.940637], [-175.812304, 73.387953], [-168.575725, 73.387953], [-168.575725, 71.940637], [-175.812304, 71.940637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 73.387953], [-175.812304, 74.835269], [-168.575725, 74.835269], [-168.575725, 73.387953], [-175.812304, 73.387953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 74.835269], [-175.812304, 76.282585], [-168.575725, 76.282585], [-168.575725, 74.835269], [-175.812304, 74.835269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 76.282585], [-175.812304, 77.729901], [-168.575725, 77.729901], [-168.575725, 76.282585], [-175.812304, 76.282585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -80.027525], [-168.575725, -78.580209], [-161.339146, -78.580209], [-161.339146, -80.027525], [-168.575725, -80.027525] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -78.580209], [-168.575725, -77.132893], [-161.339146, -77.132893], [-161.339146, -78.580209], [-168.575725, -78.580209] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -77.132893], [-168.575725, -75.685577], [-161.339146, -75.685577], [-161.339146, -77.132893], [-168.575725, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -75.685577], [-168.575725, -74.238262], [-161.339146, -74.238262], [-161.339146, -75.685577], [-168.575725, -75.685577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -74.238262], [-168.575725, -72.790946], [-161.339146, -72.790946], [-161.339146, -74.238262], [-168.575725, -74.238262] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -72.790946], [-168.575725, -71.34363], [-161.339146, -71.34363], [-161.339146, -72.790946], [-168.575725, -72.790946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -71.34363], [-168.575725, -69.896314], [-161.339146, -69.896314], [-161.339146, -71.34363], [-168.575725, -71.34363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -69.896314], [-168.575725, -68.448998], [-161.339146, -68.448998], [-161.339146, -69.896314], [-168.575725, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -68.448998], [-168.575725, -67.001682], [-161.339146, -67.001682], [-161.339146, -68.448998], [-168.575725, -68.448998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -67.001682], [-168.575725, -65.554367], [-161.339146, -65.554367], [-161.339146, -67.001682], [-168.575725, -67.001682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -65.554367], [-168.575725, -64.107051], [-161.339146, -64.107051], [-161.339146, -65.554367], [-168.575725, -65.554367] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -64.107051], [-168.575725, -62.659735], [-161.339146, -62.659735], [-161.339146, -64.107051], [-168.575725, -64.107051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -62.659735], [-168.575725, -61.212419], [-161.339146, -61.212419], [-161.339146, -62.659735], [-168.575725, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -61.212419], [-168.575725, -59.765103], [-161.339146, -59.765103], [-161.339146, -61.212419], [-168.575725, -61.212419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -59.765103], [-168.575725, -58.317787], [-161.339146, -58.317787], [-161.339146, -59.765103], [-168.575725, -59.765103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -58.317787], [-168.575725, -56.870472], [-161.339146, -56.870472], [-161.339146, -58.317787], [-168.575725, -58.317787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -56.870472], [-168.575725, -55.423156], [-161.339146, -55.423156], [-161.339146, -56.870472], [-168.575725, -56.870472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -55.423156], [-168.575725, -53.97584], [-161.339146, -53.97584], [-161.339146, -55.423156], [-168.575725, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -53.97584], [-168.575725, -52.528524], [-161.339146, -52.528524], [-161.339146, -53.97584], [-168.575725, -53.97584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -52.528524], [-168.575725, -51.081208], [-161.339146, -51.081208], [-161.339146, -52.528524], [-168.575725, -52.528524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -51.081208], [-168.575725, -49.633892], [-161.339146, -49.633892], [-161.339146, -51.081208], [-168.575725, -51.081208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -49.633892], [-168.575725, -48.186577], [-161.339146, -48.186577], [-161.339146, -49.633892], [-168.575725, -49.633892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -48.186577], [-168.575725, -46.739261], [-161.339146, -46.739261], [-161.339146, -48.186577], [-168.575725, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -46.739261], [-168.575725, -45.291945], [-161.339146, -45.291945], [-161.339146, -46.739261], [-168.575725, -46.739261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -45.291945], [-168.575725, -43.844629], [-161.339146, -43.844629], [-161.339146, -45.291945], [-168.575725, -45.291945] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -43.844629], [-168.575725, -42.397313], [-161.339146, -42.397313], [-161.339146, -43.844629], [-168.575725, -43.844629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -42.397313], [-168.575725, -40.949997], [-161.339146, -40.949997], [-161.339146, -42.397313], [-168.575725, -42.397313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -40.949997], [-168.575725, -39.502682], [-161.339146, -39.502682], [-161.339146, -40.949997], [-168.575725, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -39.502682], [-168.575725, -38.055366], [-161.339146, -38.055366], [-161.339146, -39.502682], [-168.575725, -39.502682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -38.055366], [-168.575725, -36.60805], [-161.339146, -36.60805], [-161.339146, -38.055366], [-168.575725, -38.055366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -36.60805], [-168.575725, -35.160734], [-161.339146, -35.160734], [-161.339146, -36.60805], [-168.575725, -36.60805] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -35.160734], [-168.575725, -33.713418], [-161.339146, -33.713418], [-161.339146, -35.160734], [-168.575725, -35.160734] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -33.713418], [-168.575725, -32.266102], [-161.339146, -32.266102], [-161.339146, -33.713418], [-168.575725, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -32.266102], [-168.575725, -30.818787], [-161.339146, -30.818787], [-161.339146, -32.266102], [-168.575725, -32.266102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -30.818787], [-168.575725, -29.371471], [-161.339146, -29.371471], [-161.339146, -30.818787], [-168.575725, -30.818787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -29.371471], [-168.575725, -27.924155], [-161.339146, -27.924155], [-161.339146, -29.371471], [-168.575725, -29.371471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -27.924155], [-168.575725, -26.476839], [-161.339146, -26.476839], [-161.339146, -27.924155], [-168.575725, -27.924155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -26.476839], [-168.575725, -25.029523], [-161.339146, -25.029523], [-161.339146, -26.476839], [-168.575725, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -25.029523], [-168.575725, -23.582207], [-161.339146, -23.582207], [-161.339146, -25.029523], [-168.575725, -25.029523] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -23.582207], [-168.575725, -22.134892], [-161.339146, -22.134892], [-161.339146, -23.582207], [-168.575725, -23.582207] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -22.134892], [-168.575725, -20.687576], [-161.339146, -20.687576], [-161.339146, -22.134892], [-168.575725, -22.134892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -20.687576], [-168.575725, -19.24026], [-161.339146, -19.24026], [-161.339146, -20.687576], [-168.575725, -20.687576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -19.24026], [-168.575725, -17.792944], [-161.339146, -17.792944], [-161.339146, -19.24026], [-168.575725, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -17.792944], [-168.575725, -16.345628], [-161.339146, -16.345628], [-161.339146, -17.792944], [-168.575725, -17.792944] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -16.345628], [-168.575725, -14.898312], [-161.339146, -14.898312], [-161.339146, -16.345628], [-168.575725, -16.345628] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -14.898312], [-168.575725, -13.450997], [-161.339146, -13.450997], [-161.339146, -14.898312], [-168.575725, -14.898312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -13.450997], [-168.575725, -12.003681], [-161.339146, -12.003681], [-161.339146, -13.450997], [-168.575725, -13.450997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -12.003681], [-168.575725, -10.556365], [-161.339146, -10.556365], [-161.339146, -12.003681], [-168.575725, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -10.556365], [-168.575725, -9.109049], [-161.339146, -9.109049], [-161.339146, -10.556365], [-168.575725, -10.556365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -9.109049], [-168.575725, -7.661733], [-161.339146, -7.661733], [-161.339146, -9.109049], [-168.575725, -9.109049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -7.661733], [-168.575725, -6.214417], [-161.339146, -6.214417], [-161.339146, -7.661733], [-168.575725, -7.661733] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -6.214417], [-168.575725, -4.767102], [-161.339146, -4.767102], [-161.339146, -6.214417], [-168.575725, -6.214417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -4.767102], [-168.575725, -3.319786], [-161.339146, -3.319786], [-161.339146, -4.767102], [-168.575725, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -3.319786], [-168.575725, -1.87247], [-161.339146, -1.87247], [-161.339146, -3.319786], [-168.575725, -3.319786] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -1.87247], [-168.575725, -0.425154], [-161.339146, -0.425154], [-161.339146, -1.87247], [-168.575725, -1.87247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -0.425154], [-168.575725, 1.022162], [-161.339146, 1.022162], [-161.339146, -0.425154], [-168.575725, -0.425154] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 1.022162], [-168.575725, 2.469478], [-161.339146, 2.469478], [-161.339146, 1.022162], [-168.575725, 1.022162] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 2.469478], [-168.575725, 3.916793], [-161.339146, 3.916793], [-161.339146, 2.469478], [-168.575725, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 3.916793], [-168.575725, 5.364109], [-161.339146, 5.364109], [-161.339146, 3.916793], [-168.575725, 3.916793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 5.364109], [-168.575725, 6.811425], [-161.339146, 6.811425], [-161.339146, 5.364109], [-168.575725, 5.364109] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 6.811425], [-168.575725, 8.258741], [-161.339146, 8.258741], [-161.339146, 6.811425], [-168.575725, 6.811425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 8.258741], [-168.575725, 9.706057], [-161.339146, 9.706057], [-161.339146, 8.258741], [-168.575725, 8.258741] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 9.706057], [-168.575725, 11.153373], [-161.339146, 11.153373], [-161.339146, 9.706057], [-168.575725, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 11.153373], [-168.575725, 12.600688], [-161.339146, 12.600688], [-161.339146, 11.153373], [-168.575725, 11.153373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 12.600688], [-168.575725, 14.048004], [-161.339146, 14.048004], [-161.339146, 12.600688], [-168.575725, 12.600688] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 14.048004], [-168.575725, 15.49532], [-161.339146, 15.49532], [-161.339146, 14.048004], [-168.575725, 14.048004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 15.49532], [-168.575725, 16.942636], [-161.339146, 16.942636], [-161.339146, 15.49532], [-168.575725, 15.49532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 16.942636], [-168.575725, 18.389952], [-161.339146, 18.389952], [-161.339146, 16.942636], [-168.575725, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 18.389952], [-168.575725, 19.837268], [-161.339146, 19.837268], [-161.339146, 18.389952], [-168.575725, 18.389952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 19.837268], [-168.575725, 21.284583], [-161.339146, 21.284583], [-161.339146, 19.837268], [-168.575725, 19.837268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 21.284583], [-168.575725, 22.731899], [-161.339146, 22.731899], [-161.339146, 21.284583], [-168.575725, 21.284583] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 22.731899], [-168.575725, 24.179215], [-161.339146, 24.179215], [-161.339146, 22.731899], [-168.575725, 22.731899] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 24.179215], [-168.575725, 25.626531], [-161.339146, 25.626531], [-161.339146, 24.179215], [-168.575725, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 25.626531], [-168.575725, 27.073847], [-161.339146, 27.073847], [-161.339146, 25.626531], [-168.575725, 25.626531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 27.073847], [-168.575725, 28.521163], [-161.339146, 28.521163], [-161.339146, 27.073847], [-168.575725, 27.073847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 28.521163], [-168.575725, 29.968478], [-161.339146, 29.968478], [-161.339146, 28.521163], [-168.575725, 28.521163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 29.968478], [-168.575725, 31.415794], [-161.339146, 31.415794], [-161.339146, 29.968478], [-168.575725, 29.968478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 31.415794], [-168.575725, 32.86311], [-161.339146, 32.86311], [-161.339146, 31.415794], [-168.575725, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 32.86311], [-168.575725, 34.310426], [-161.339146, 34.310426], [-161.339146, 32.86311], [-168.575725, 32.86311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 34.310426], [-168.575725, 35.757742], [-161.339146, 35.757742], [-161.339146, 34.310426], [-168.575725, 34.310426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 35.757742], [-168.575725, 37.205058], [-161.339146, 37.205058], [-161.339146, 35.757742], [-168.575725, 35.757742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 37.205058], [-168.575725, 38.652373], [-161.339146, 38.652373], [-161.339146, 37.205058], [-168.575725, 37.205058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 38.652373], [-168.575725, 40.099689], [-161.339146, 40.099689], [-161.339146, 38.652373], [-168.575725, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 40.099689], [-168.575725, 41.547005], [-161.339146, 41.547005], [-161.339146, 40.099689], [-168.575725, 40.099689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 41.547005], [-168.575725, 42.994321], [-161.339146, 42.994321], [-161.339146, 41.547005], [-168.575725, 41.547005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 42.994321], [-168.575725, 44.441637], [-161.339146, 44.441637], [-161.339146, 42.994321], [-168.575725, 42.994321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 44.441637], [-168.575725, 45.888952], [-161.339146, 45.888952], [-161.339146, 44.441637], [-168.575725, 44.441637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 45.888952], [-168.575725, 47.336268], [-161.339146, 47.336268], [-161.339146, 45.888952], [-168.575725, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 47.336268], [-168.575725, 48.783584], [-161.339146, 48.783584], [-161.339146, 47.336268], [-168.575725, 47.336268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 48.783584], [-168.575725, 50.2309], [-161.339146, 50.2309], [-161.339146, 48.783584], [-168.575725, 48.783584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 50.2309], [-168.575725, 51.678216], [-161.339146, 51.678216], [-161.339146, 50.2309], [-168.575725, 50.2309] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 51.678216], [-168.575725, 53.125532], [-161.339146, 53.125532], [-161.339146, 51.678216], [-168.575725, 51.678216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 53.125532], [-168.575725, 54.572847], [-161.339146, 54.572847], [-161.339146, 53.125532], [-168.575725, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 54.572847], [-168.575725, 56.020163], [-161.339146, 56.020163], [-161.339146, 54.572847], [-168.575725, 54.572847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 56.020163], [-168.575725, 57.467479], [-161.339146, 57.467479], [-161.339146, 56.020163], [-168.575725, 56.020163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 57.467479], [-168.575725, 58.914795], [-161.339146, 58.914795], [-161.339146, 57.467479], [-168.575725, 57.467479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 58.914795], [-168.575725, 60.362111], [-161.339146, 60.362111], [-161.339146, 58.914795], [-168.575725, 58.914795] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 60.362111], [-168.575725, 61.809427], [-161.339146, 61.809427], [-161.339146, 60.362111], [-168.575725, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 61.809427], [-168.575725, 63.256742], [-161.339146, 63.256742], [-161.339146, 61.809427], [-168.575725, 61.809427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 63.256742], [-168.575725, 64.704058], [-161.339146, 64.704058], [-161.339146, 63.256742], [-168.575725, 63.256742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 64.704058], [-168.575725, 66.151374], [-161.339146, 66.151374], [-161.339146, 64.704058], [-168.575725, 64.704058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 66.151374], [-168.575725, 67.59869], [-161.339146, 67.59869], [-161.339146, 66.151374], [-168.575725, 66.151374] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 67.59869], [-168.575725, 69.046006], [-161.339146, 69.046006], [-161.339146, 67.59869], [-168.575725, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 69.046006], [-168.575725, 70.493322], [-161.339146, 70.493322], [-161.339146, 69.046006], [-168.575725, 69.046006] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 70.493322], [-168.575725, 71.940637], [-161.339146, 71.940637], [-161.339146, 70.493322], [-168.575725, 70.493322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 71.940637], [-168.575725, 73.387953], [-161.339146, 73.387953], [-161.339146, 71.940637], [-168.575725, 71.940637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 73.387953], [-168.575725, 74.835269], [-161.339146, 74.835269], [-161.339146, 73.387953], [-168.575725, 73.387953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 74.835269], [-168.575725, 76.282585], [-161.339146, 76.282585], [-161.339146, 74.835269], [-168.575725, 74.835269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 76.282585], [-168.575725, 77.729901], [-161.339146, 77.729901], [-161.339146, 76.282585], [-168.575725, 76.282585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -80.027525], [-161.339146, -78.580209], [-154.102567, -78.580209], [-154.102567, -80.027525], [-161.339146, -80.027525] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -78.580209], [-161.339146, -77.132893], [-154.102567, -77.132893], [-154.102567, -78.580209], [-161.339146, -78.580209] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -77.132893], [-161.339146, -75.685577], [-154.102567, -75.685577], [-154.102567, -77.132893], [-161.339146, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -75.685577], [-161.339146, -74.238262], [-154.102567, -74.238262], [-154.102567, -75.685577], [-161.339146, -75.685577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -74.238262], [-161.339146, -72.790946], [-154.102567, -72.790946], [-154.102567, -74.238262], [-161.339146, -74.238262] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -72.790946], [-161.339146, -71.34363], [-154.102567, -71.34363], [-154.102567, -72.790946], [-161.339146, -72.790946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -71.34363], [-161.339146, -69.896314], [-154.102567, -69.896314], [-154.102567, -71.34363], [-161.339146, -71.34363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -69.896314], [-161.339146, -68.448998], [-154.102567, -68.448998], [-154.102567, -69.896314], [-161.339146, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -68.448998], [-161.339146, -67.001682], [-154.102567, -67.001682], [-154.102567, -68.448998], [-161.339146, -68.448998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -67.001682], [-161.339146, -65.554367], [-154.102567, -65.554367], [-154.102567, -67.001682], [-161.339146, -67.001682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -65.554367], [-161.339146, -64.107051], [-154.102567, -64.107051], [-154.102567, -65.554367], [-161.339146, -65.554367] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -64.107051], [-161.339146, -62.659735], [-154.102567, -62.659735], [-154.102567, -64.107051], [-161.339146, -64.107051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -62.659735], [-161.339146, -61.212419], [-154.102567, -61.212419], [-154.102567, -62.659735], [-161.339146, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -61.212419], [-161.339146, -59.765103], [-154.102567, -59.765103], [-154.102567, -61.212419], [-161.339146, -61.212419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -59.765103], [-161.339146, -58.317787], [-154.102567, -58.317787], [-154.102567, -59.765103], [-161.339146, -59.765103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -58.317787], [-161.339146, -56.870472], [-154.102567, -56.870472], [-154.102567, -58.317787], [-161.339146, -58.317787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -56.870472], [-161.339146, -55.423156], [-154.102567, -55.423156], [-154.102567, -56.870472], [-161.339146, -56.870472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -55.423156], [-161.339146, -53.97584], [-154.102567, -53.97584], [-154.102567, -55.423156], [-161.339146, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -53.97584], [-161.339146, -52.528524], [-154.102567, -52.528524], [-154.102567, -53.97584], [-161.339146, -53.97584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -52.528524], [-161.339146, -51.081208], [-154.102567, -51.081208], [-154.102567, -52.528524], [-161.339146, -52.528524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -51.081208], [-161.339146, -49.633892], [-154.102567, -49.633892], [-154.102567, -51.081208], [-161.339146, -51.081208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -49.633892], [-161.339146, -48.186577], [-154.102567, -48.186577], [-154.102567, -49.633892], [-161.339146, -49.633892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -48.186577], [-161.339146, -46.739261], [-154.102567, -46.739261], [-154.102567, -48.186577], [-161.339146, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -46.739261], [-161.339146, -45.291945], [-154.102567, -45.291945], [-154.102567, -46.739261], [-161.339146, -46.739261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -45.291945], [-161.339146, -43.844629], [-154.102567, -43.844629], [-154.102567, -45.291945], [-161.339146, -45.291945] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -43.844629], [-161.339146, -42.397313], [-154.102567, -42.397313], [-154.102567, -43.844629], [-161.339146, -43.844629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -42.397313], [-161.339146, -40.949997], [-154.102567, -40.949997], [-154.102567, -42.397313], [-161.339146, -42.397313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -40.949997], [-161.339146, -39.502682], [-154.102567, -39.502682], [-154.102567, -40.949997], [-161.339146, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -39.502682], [-161.339146, -38.055366], [-154.102567, -38.055366], [-154.102567, -39.502682], [-161.339146, -39.502682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -38.055366], [-161.339146, -36.60805], [-154.102567, -36.60805], [-154.102567, -38.055366], [-161.339146, -38.055366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -36.60805], [-161.339146, -35.160734], [-154.102567, -35.160734], [-154.102567, -36.60805], [-161.339146, -36.60805] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -35.160734], [-161.339146, -33.713418], [-154.102567, -33.713418], [-154.102567, -35.160734], [-161.339146, -35.160734] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -33.713418], [-161.339146, -32.266102], [-154.102567, -32.266102], [-154.102567, -33.713418], [-161.339146, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -32.266102], [-161.339146, -30.818787], [-154.102567, -30.818787], [-154.102567, -32.266102], [-161.339146, -32.266102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -30.818787], [-161.339146, -29.371471], [-154.102567, -29.371471], [-154.102567, -30.818787], [-161.339146, -30.818787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -29.371471], [-161.339146, -27.924155], [-154.102567, -27.924155], [-154.102567, -29.371471], [-161.339146, -29.371471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -27.924155], [-161.339146, -26.476839], [-154.102567, -26.476839], [-154.102567, -27.924155], [-161.339146, -27.924155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -26.476839], [-161.339146, -25.029523], [-154.102567, -25.029523], [-154.102567, -26.476839], [-161.339146, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -25.029523], [-161.339146, -23.582207], [-154.102567, -23.582207], [-154.102567, -25.029523], [-161.339146, -25.029523] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -23.582207], [-161.339146, -22.134892], [-154.102567, -22.134892], [-154.102567, -23.582207], [-161.339146, -23.582207] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -22.134892], [-161.339146, -20.687576], [-154.102567, -20.687576], [-154.102567, -22.134892], [-161.339146, -22.134892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -20.687576], [-161.339146, -19.24026], [-154.102567, -19.24026], [-154.102567, -20.687576], [-161.339146, -20.687576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -19.24026], [-161.339146, -17.792944], [-154.102567, -17.792944], [-154.102567, -19.24026], [-161.339146, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -17.792944], [-161.339146, -16.345628], [-154.102567, -16.345628], [-154.102567, -17.792944], [-161.339146, -17.792944] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -16.345628], [-161.339146, -14.898312], [-154.102567, -14.898312], [-154.102567, -16.345628], [-161.339146, -16.345628] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -14.898312], [-161.339146, -13.450997], [-154.102567, -13.450997], [-154.102567, -14.898312], [-161.339146, -14.898312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -13.450997], [-161.339146, -12.003681], [-154.102567, -12.003681], [-154.102567, -13.450997], [-161.339146, -13.450997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -12.003681], [-161.339146, -10.556365], [-154.102567, -10.556365], [-154.102567, -12.003681], [-161.339146, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -10.556365], [-161.339146, -9.109049], [-154.102567, -9.109049], [-154.102567, -10.556365], [-161.339146, -10.556365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -9.109049], [-161.339146, -7.661733], [-154.102567, -7.661733], [-154.102567, -9.109049], [-161.339146, -9.109049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -7.661733], [-161.339146, -6.214417], [-154.102567, -6.214417], [-154.102567, -7.661733], [-161.339146, -7.661733] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -6.214417], [-161.339146, -4.767102], [-154.102567, -4.767102], [-154.102567, -6.214417], [-161.339146, -6.214417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -4.767102], [-161.339146, -3.319786], [-154.102567, -3.319786], [-154.102567, -4.767102], [-161.339146, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -3.319786], [-161.339146, -1.87247], [-154.102567, -1.87247], [-154.102567, -3.319786], [-161.339146, -3.319786] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -1.87247], [-161.339146, -0.425154], [-154.102567, -0.425154], [-154.102567, -1.87247], [-161.339146, -1.87247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -0.425154], [-161.339146, 1.022162], [-154.102567, 1.022162], [-154.102567, -0.425154], [-161.339146, -0.425154] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 1.022162], [-161.339146, 2.469478], [-154.102567, 2.469478], [-154.102567, 1.022162], [-161.339146, 1.022162] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 2.469478], [-161.339146, 3.916793], [-154.102567, 3.916793], [-154.102567, 2.469478], [-161.339146, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 3.916793], [-161.339146, 5.364109], [-154.102567, 5.364109], [-154.102567, 3.916793], [-161.339146, 3.916793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 5.364109], [-161.339146, 6.811425], [-154.102567, 6.811425], [-154.102567, 5.364109], [-161.339146, 5.364109] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 6.811425], [-161.339146, 8.258741], [-154.102567, 8.258741], [-154.102567, 6.811425], [-161.339146, 6.811425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 8.258741], [-161.339146, 9.706057], [-154.102567, 9.706057], [-154.102567, 8.258741], [-161.339146, 8.258741] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 9.706057], [-161.339146, 11.153373], [-154.102567, 11.153373], [-154.102567, 9.706057], [-161.339146, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 11.153373], [-161.339146, 12.600688], [-154.102567, 12.600688], [-154.102567, 11.153373], [-161.339146, 11.153373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 12.600688], [-161.339146, 14.048004], [-154.102567, 14.048004], [-154.102567, 12.600688], [-161.339146, 12.600688] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 14.048004], [-161.339146, 15.49532], [-154.102567, 15.49532], [-154.102567, 14.048004], [-161.339146, 14.048004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 15.49532], [-161.339146, 16.942636], [-154.102567, 16.942636], [-154.102567, 15.49532], [-161.339146, 15.49532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 16.942636], [-161.339146, 18.389952], [-154.102567, 18.389952], [-154.102567, 16.942636], [-161.339146, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 18.389952], [-161.339146, 19.837268], [-154.102567, 19.837268], [-154.102567, 18.389952], [-161.339146, 18.389952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 19.837268], [-161.339146, 21.284583], [-154.102567, 21.284583], [-154.102567, 19.837268], [-161.339146, 19.837268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 21.284583], [-161.339146, 22.731899], [-154.102567, 22.731899], [-154.102567, 21.284583], [-161.339146, 21.284583] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 22.731899], [-161.339146, 24.179215], [-154.102567, 24.179215], [-154.102567, 22.731899], [-161.339146, 22.731899] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 24.179215], [-161.339146, 25.626531], [-154.102567, 25.626531], [-154.102567, 24.179215], [-161.339146, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 25.626531], [-161.339146, 27.073847], [-154.102567, 27.073847], [-154.102567, 25.626531], [-161.339146, 25.626531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 27.073847], [-161.339146, 28.521163], [-154.102567, 28.521163], [-154.102567, 27.073847], [-161.339146, 27.073847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 28.521163], [-161.339146, 29.968478], [-154.102567, 29.968478], [-154.102567, 28.521163], [-161.339146, 28.521163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 29.968478], [-161.339146, 31.415794], [-154.102567, 31.415794], [-154.102567, 29.968478], [-161.339146, 29.968478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 31.415794], [-161.339146, 32.86311], [-154.102567, 32.86311], [-154.102567, 31.415794], [-161.339146, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 32.86311], [-161.339146, 34.310426], [-154.102567, 34.310426], [-154.102567, 32.86311], [-161.339146, 32.86311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 34.310426], [-161.339146, 35.757742], [-154.102567, 35.757742], [-154.102567, 34.310426], [-161.339146, 34.310426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 35.757742], [-161.339146, 37.205058], [-154.102567, 37.205058], [-154.102567, 35.757742], [-161.339146, 35.757742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 37.205058], [-161.339146, 38.652373], [-154.102567, 38.652373], [-154.102567, 37.205058], [-161.339146, 37.205058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 38.652373], [-161.339146, 40.099689], [-154.102567, 40.099689], [-154.102567, 38.652373], [-161.339146, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 40.099689], [-161.339146, 41.547005], [-154.102567, 41.547005], [-154.102567, 40.099689], [-161.339146, 40.099689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 41.547005], [-161.339146, 42.994321], [-154.102567, 42.994321], [-154.102567, 41.547005], [-161.339146, 41.547005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 42.994321], [-161.339146, 44.441637], [-154.102567, 44.441637], [-154.102567, 42.994321], [-161.339146, 42.994321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 44.441637], [-161.339146, 45.888952], [-154.102567, 45.888952], [-154.102567, 44.441637], [-161.339146, 44.441637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 45.888952], [-161.339146, 47.336268], [-154.102567, 47.336268], [-154.102567, 45.888952], [-161.339146, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 47.336268], [-161.339146, 48.783584], [-154.102567, 48.783584], [-154.102567, 47.336268], [-161.339146, 47.336268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 48.783584], [-161.339146, 50.2309], [-154.102567, 50.2309], [-154.102567, 48.783584], [-161.339146, 48.783584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 50.2309], [-161.339146, 51.678216], [-154.102567, 51.678216], [-154.102567, 50.2309], [-161.339146, 50.2309] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 51.678216], [-161.339146, 53.125532], [-154.102567, 53.125532], [-154.102567, 51.678216], [-161.339146, 51.678216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 53.125532], [-161.339146, 54.572847], [-154.102567, 54.572847], [-154.102567, 53.125532], [-161.339146, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 54.572847], [-161.339146, 56.020163], [-154.102567, 56.020163], [-154.102567, 54.572847], [-161.339146, 54.572847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 56.020163], [-161.339146, 57.467479], [-154.102567, 57.467479], [-154.102567, 56.020163], [-161.339146, 56.020163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 57.467479], [-161.339146, 58.914795], [-154.102567, 58.914795], [-154.102567, 57.467479], [-161.339146, 57.467479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 58.914795], [-161.339146, 60.362111], [-154.102567, 60.362111], [-154.102567, 58.914795], [-161.339146, 58.914795] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 60.362111], [-161.339146, 61.809427], [-154.102567, 61.809427], [-154.102567, 60.362111], [-161.339146, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 61.809427], [-161.339146, 63.256742], [-154.102567, 63.256742], [-154.102567, 61.809427], [-161.339146, 61.809427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 63.256742], [-161.339146, 64.704058], [-154.102567, 64.704058], [-154.102567, 63.256742], [-161.339146, 63.256742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 64.704058], [-161.339146, 66.151374], [-154.102567, 66.151374], [-154.102567, 64.704058], [-161.339146, 64.704058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 66.151374], [-161.339146, 67.59869], [-154.102567, 67.59869], [-154.102567, 66.151374], [-161.339146, 66.151374] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 67.59869], [-161.339146, 69.046006], [-154.102567, 69.046006], [-154.102567, 67.59869], [-161.339146, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 69.046006], [-161.339146, 70.493322], [-154.102567, 70.493322], [-154.102567, 69.046006], [-161.339146, 69.046006] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 70.493322], [-161.339146, 71.940637], [-154.102567, 71.940637], [-154.102567, 70.493322], [-161.339146, 70.493322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 71.940637], [-161.339146, 73.387953], [-154.102567, 73.387953], [-154.102567, 71.940637], [-161.339146, 71.940637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 73.387953], [-161.339146, 74.835269], [-154.102567, 74.835269], [-154.102567, 73.387953], [-161.339146, 73.387953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 74.835269], [-161.339146, 76.282585], [-154.102567, 76.282585], [-154.102567, 74.835269], [-161.339146, 74.835269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 76.282585], [-161.339146, 77.729901], [-154.102567, 77.729901], [-154.102567, 76.282585], [-161.339146, 76.282585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -80.027525], [-154.102567, -78.580209], [-146.865987, -78.580209], [-146.865987, -80.027525], [-154.102567, -80.027525] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -78.580209], [-154.102567, -77.132893], [-146.865987, -77.132893], [-146.865987, -78.580209], [-154.102567, -78.580209] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -77.132893], [-154.102567, -75.685577], [-146.865987, -75.685577], [-146.865987, -77.132893], [-154.102567, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -75.685577], [-154.102567, -74.238262], [-146.865987, -74.238262], [-146.865987, -75.685577], [-154.102567, -75.685577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -74.238262], [-154.102567, -72.790946], [-146.865987, -72.790946], [-146.865987, -74.238262], [-154.102567, -74.238262] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -72.790946], [-154.102567, -71.34363], [-146.865987, -71.34363], [-146.865987, -72.790946], [-154.102567, -72.790946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -71.34363], [-154.102567, -69.896314], [-146.865987, -69.896314], [-146.865987, -71.34363], [-154.102567, -71.34363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -69.896314], [-154.102567, -68.448998], [-146.865987, -68.448998], [-146.865987, -69.896314], [-154.102567, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -68.448998], [-154.102567, -67.001682], [-146.865987, -67.001682], [-146.865987, -68.448998], [-154.102567, -68.448998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -67.001682], [-154.102567, -65.554367], [-146.865987, -65.554367], [-146.865987, -67.001682], [-154.102567, -67.001682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -65.554367], [-154.102567, -64.107051], [-146.865987, -64.107051], [-146.865987, -65.554367], [-154.102567, -65.554367] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -64.107051], [-154.102567, -62.659735], [-146.865987, -62.659735], [-146.865987, -64.107051], [-154.102567, -64.107051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -62.659735], [-154.102567, -61.212419], [-146.865987, -61.212419], [-146.865987, -62.659735], [-154.102567, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -61.212419], [-154.102567, -59.765103], [-146.865987, -59.765103], [-146.865987, -61.212419], [-154.102567, -61.212419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -59.765103], [-154.102567, -58.317787], [-146.865987, -58.317787], [-146.865987, -59.765103], [-154.102567, -59.765103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -58.317787], [-154.102567, -56.870472], [-146.865987, -56.870472], [-146.865987, -58.317787], [-154.102567, -58.317787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -56.870472], [-154.102567, -55.423156], [-146.865987, -55.423156], [-146.865987, -56.870472], [-154.102567, -56.870472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -55.423156], [-154.102567, -53.97584], [-146.865987, -53.97584], [-146.865987, -55.423156], [-154.102567, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -53.97584], [-154.102567, -52.528524], [-146.865987, -52.528524], [-146.865987, -53.97584], [-154.102567, -53.97584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -52.528524], [-154.102567, -51.081208], [-146.865987, -51.081208], [-146.865987, -52.528524], [-154.102567, -52.528524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -51.081208], [-154.102567, -49.633892], [-146.865987, -49.633892], [-146.865987, -51.081208], [-154.102567, -51.081208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -49.633892], [-154.102567, -48.186577], [-146.865987, -48.186577], [-146.865987, -49.633892], [-154.102567, -49.633892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -48.186577], [-154.102567, -46.739261], [-146.865987, -46.739261], [-146.865987, -48.186577], [-154.102567, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -46.739261], [-154.102567, -45.291945], [-146.865987, -45.291945], [-146.865987, -46.739261], [-154.102567, -46.739261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -45.291945], [-154.102567, -43.844629], [-146.865987, -43.844629], [-146.865987, -45.291945], [-154.102567, -45.291945] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -43.844629], [-154.102567, -42.397313], [-146.865987, -42.397313], [-146.865987, -43.844629], [-154.102567, -43.844629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -42.397313], [-154.102567, -40.949997], [-146.865987, -40.949997], [-146.865987, -42.397313], [-154.102567, -42.397313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -40.949997], [-154.102567, -39.502682], [-146.865987, -39.502682], [-146.865987, -40.949997], [-154.102567, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -39.502682], [-154.102567, -38.055366], [-146.865987, -38.055366], [-146.865987, -39.502682], [-154.102567, -39.502682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -38.055366], [-154.102567, -36.60805], [-146.865987, -36.60805], [-146.865987, -38.055366], [-154.102567, -38.055366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -36.60805], [-154.102567, -35.160734], [-146.865987, -35.160734], [-146.865987, -36.60805], [-154.102567, -36.60805] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -35.160734], [-154.102567, -33.713418], [-146.865987, -33.713418], [-146.865987, -35.160734], [-154.102567, -35.160734] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -33.713418], [-154.102567, -32.266102], [-146.865987, -32.266102], [-146.865987, -33.713418], [-154.102567, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -32.266102], [-154.102567, -30.818787], [-146.865987, -30.818787], [-146.865987, -32.266102], [-154.102567, -32.266102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -30.818787], [-154.102567, -29.371471], [-146.865987, -29.371471], [-146.865987, -30.818787], [-154.102567, -30.818787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -29.371471], [-154.102567, -27.924155], [-146.865987, -27.924155], [-146.865987, -29.371471], [-154.102567, -29.371471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -27.924155], [-154.102567, -26.476839], [-146.865987, -26.476839], [-146.865987, -27.924155], [-154.102567, -27.924155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -26.476839], [-154.102567, -25.029523], [-146.865987, -25.029523], [-146.865987, -26.476839], [-154.102567, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -25.029523], [-154.102567, -23.582207], [-146.865987, -23.582207], [-146.865987, -25.029523], [-154.102567, -25.029523] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -23.582207], [-154.102567, -22.134892], [-146.865987, -22.134892], [-146.865987, -23.582207], [-154.102567, -23.582207] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -22.134892], [-154.102567, -20.687576], [-146.865987, -20.687576], [-146.865987, -22.134892], [-154.102567, -22.134892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -20.687576], [-154.102567, -19.24026], [-146.865987, -19.24026], [-146.865987, -20.687576], [-154.102567, -20.687576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -19.24026], [-154.102567, -17.792944], [-146.865987, -17.792944], [-146.865987, -19.24026], [-154.102567, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -17.792944], [-154.102567, -16.345628], [-146.865987, -16.345628], [-146.865987, -17.792944], [-154.102567, -17.792944] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -16.345628], [-154.102567, -14.898312], [-146.865987, -14.898312], [-146.865987, -16.345628], [-154.102567, -16.345628] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -14.898312], [-154.102567, -13.450997], [-146.865987, -13.450997], [-146.865987, -14.898312], [-154.102567, -14.898312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -13.450997], [-154.102567, -12.003681], [-146.865987, -12.003681], [-146.865987, -13.450997], [-154.102567, -13.450997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -12.003681], [-154.102567, -10.556365], [-146.865987, -10.556365], [-146.865987, -12.003681], [-154.102567, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -10.556365], [-154.102567, -9.109049], [-146.865987, -9.109049], [-146.865987, -10.556365], [-154.102567, -10.556365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -9.109049], [-154.102567, -7.661733], [-146.865987, -7.661733], [-146.865987, -9.109049], [-154.102567, -9.109049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -7.661733], [-154.102567, -6.214417], [-146.865987, -6.214417], [-146.865987, -7.661733], [-154.102567, -7.661733] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -6.214417], [-154.102567, -4.767102], [-146.865987, -4.767102], [-146.865987, -6.214417], [-154.102567, -6.214417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -4.767102], [-154.102567, -3.319786], [-146.865987, -3.319786], [-146.865987, -4.767102], [-154.102567, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -3.319786], [-154.102567, -1.87247], [-146.865987, -1.87247], [-146.865987, -3.319786], [-154.102567, -3.319786] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -1.87247], [-154.102567, -0.425154], [-146.865987, -0.425154], [-146.865987, -1.87247], [-154.102567, -1.87247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -0.425154], [-154.102567, 1.022162], [-146.865987, 1.022162], [-146.865987, -0.425154], [-154.102567, -0.425154] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 1.022162], [-154.102567, 2.469478], [-146.865987, 2.469478], [-146.865987, 1.022162], [-154.102567, 1.022162] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 2.469478], [-154.102567, 3.916793], [-146.865987, 3.916793], [-146.865987, 2.469478], [-154.102567, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 3.916793], [-154.102567, 5.364109], [-146.865987, 5.364109], [-146.865987, 3.916793], [-154.102567, 3.916793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 5.364109], [-154.102567, 6.811425], [-146.865987, 6.811425], [-146.865987, 5.364109], [-154.102567, 5.364109] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 6.811425], [-154.102567, 8.258741], [-146.865987, 8.258741], [-146.865987, 6.811425], [-154.102567, 6.811425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 8.258741], [-154.102567, 9.706057], [-146.865987, 9.706057], [-146.865987, 8.258741], [-154.102567, 8.258741] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 9.706057], [-154.102567, 11.153373], [-146.865987, 11.153373], [-146.865987, 9.706057], [-154.102567, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 11.153373], [-154.102567, 12.600688], [-146.865987, 12.600688], [-146.865987, 11.153373], [-154.102567, 11.153373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 12.600688], [-154.102567, 14.048004], [-146.865987, 14.048004], [-146.865987, 12.600688], [-154.102567, 12.600688] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 14.048004], [-154.102567, 15.49532], [-146.865987, 15.49532], [-146.865987, 14.048004], [-154.102567, 14.048004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 15.49532], [-154.102567, 16.942636], [-146.865987, 16.942636], [-146.865987, 15.49532], [-154.102567, 15.49532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 16.942636], [-154.102567, 18.389952], [-146.865987, 18.389952], [-146.865987, 16.942636], [-154.102567, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 18.389952], [-154.102567, 19.837268], [-146.865987, 19.837268], [-146.865987, 18.389952], [-154.102567, 18.389952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 19.837268], [-154.102567, 21.284583], [-146.865987, 21.284583], [-146.865987, 19.837268], [-154.102567, 19.837268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 21.284583], [-154.102567, 22.731899], [-146.865987, 22.731899], [-146.865987, 21.284583], [-154.102567, 21.284583] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 22.731899], [-154.102567, 24.179215], [-146.865987, 24.179215], [-146.865987, 22.731899], [-154.102567, 22.731899] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 24.179215], [-154.102567, 25.626531], [-146.865987, 25.626531], [-146.865987, 24.179215], [-154.102567, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 25.626531], [-154.102567, 27.073847], [-146.865987, 27.073847], [-146.865987, 25.626531], [-154.102567, 25.626531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 27.073847], [-154.102567, 28.521163], [-146.865987, 28.521163], [-146.865987, 27.073847], [-154.102567, 27.073847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 28.521163], [-154.102567, 29.968478], [-146.865987, 29.968478], [-146.865987, 28.521163], [-154.102567, 28.521163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 29.968478], [-154.102567, 31.415794], [-146.865987, 31.415794], [-146.865987, 29.968478], [-154.102567, 29.968478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 31.415794], [-154.102567, 32.86311], [-146.865987, 32.86311], [-146.865987, 31.415794], [-154.102567, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 32.86311], [-154.102567, 34.310426], [-146.865987, 34.310426], [-146.865987, 32.86311], [-154.102567, 32.86311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 34.310426], [-154.102567, 35.757742], [-146.865987, 35.757742], [-146.865987, 34.310426], [-154.102567, 34.310426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 35.757742], [-154.102567, 37.205058], [-146.865987, 37.205058], [-146.865987, 35.757742], [-154.102567, 35.757742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 37.205058], [-154.102567, 38.652373], [-146.865987, 38.652373], [-146.865987, 37.205058], [-154.102567, 37.205058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 38.652373], [-154.102567, 40.099689], [-146.865987, 40.099689], [-146.865987, 38.652373], [-154.102567, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 40.099689], [-154.102567, 41.547005], [-146.865987, 41.547005], [-146.865987, 40.099689], [-154.102567, 40.099689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 41.547005], [-154.102567, 42.994321], [-146.865987, 42.994321], [-146.865987, 41.547005], [-154.102567, 41.547005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 42.994321], [-154.102567, 44.441637], [-146.865987, 44.441637], [-146.865987, 42.994321], [-154.102567, 42.994321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 44.441637], [-154.102567, 45.888952], [-146.865987, 45.888952], [-146.865987, 44.441637], [-154.102567, 44.441637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 45.888952], [-154.102567, 47.336268], [-146.865987, 47.336268], [-146.865987, 45.888952], [-154.102567, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 47.336268], [-154.102567, 48.783584], [-146.865987, 48.783584], [-146.865987, 47.336268], [-154.102567, 47.336268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 48.783584], [-154.102567, 50.2309], [-146.865987, 50.2309], [-146.865987, 48.783584], [-154.102567, 48.783584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 50.2309], [-154.102567, 51.678216], [-146.865987, 51.678216], [-146.865987, 50.2309], [-154.102567, 50.2309] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 51.678216], [-154.102567, 53.125532], [-146.865987, 53.125532], [-146.865987, 51.678216], [-154.102567, 51.678216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 53.125532], [-154.102567, 54.572847], [-146.865987, 54.572847], [-146.865987, 53.125532], [-154.102567, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 54.572847], [-154.102567, 56.020163], [-146.865987, 56.020163], [-146.865987, 54.572847], [-154.102567, 54.572847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 56.020163], [-154.102567, 57.467479], [-146.865987, 57.467479], [-146.865987, 56.020163], [-154.102567, 56.020163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 57.467479], [-154.102567, 58.914795], [-146.865987, 58.914795], [-146.865987, 57.467479], [-154.102567, 57.467479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 58.914795], [-154.102567, 60.362111], [-146.865987, 60.362111], [-146.865987, 58.914795], [-154.102567, 58.914795] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 60.362111], [-154.102567, 61.809427], [-146.865987, 61.809427], [-146.865987, 60.362111], [-154.102567, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 61.809427], [-154.102567, 63.256742], [-146.865987, 63.256742], [-146.865987, 61.809427], [-154.102567, 61.809427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 63.256742], [-154.102567, 64.704058], [-146.865987, 64.704058], [-146.865987, 63.256742], [-154.102567, 63.256742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 64.704058], [-154.102567, 66.151374], [-146.865987, 66.151374], [-146.865987, 64.704058], [-154.102567, 64.704058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 66.151374], [-154.102567, 67.59869], [-146.865987, 67.59869], [-146.865987, 66.151374], [-154.102567, 66.151374] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 67.59869], [-154.102567, 69.046006], [-146.865987, 69.046006], [-146.865987, 67.59869], [-154.102567, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 69.046006], [-154.102567, 70.493322], [-146.865987, 70.493322], [-146.865987, 69.046006], [-154.102567, 69.046006] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 70.493322], [-154.102567, 71.940637], [-146.865987, 71.940637], [-146.865987, 70.493322], [-154.102567, 70.493322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 71.940637], [-154.102567, 73.387953], [-146.865987, 73.387953], [-146.865987, 71.940637], [-154.102567, 71.940637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 73.387953], [-154.102567, 74.835269], [-146.865987, 74.835269], [-146.865987, 73.387953], [-154.102567, 73.387953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 74.835269], [-154.102567, 76.282585], [-146.865987, 76.282585], [-146.865987, 74.835269], [-154.102567, 74.835269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 76.282585], [-154.102567, 77.729901], [-146.865987, 77.729901], [-146.865987, 76.282585], [-154.102567, 76.282585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -80.027525], [-146.865987, -78.580209], [-139.629408, -78.580209], [-139.629408, -80.027525], [-146.865987, -80.027525] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -78.580209], [-146.865987, -77.132893], [-139.629408, -77.132893], [-139.629408, -78.580209], [-146.865987, -78.580209] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -77.132893], [-146.865987, -75.685577], [-139.629408, -75.685577], [-139.629408, -77.132893], [-146.865987, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -75.685577], [-146.865987, -74.238262], [-139.629408, -74.238262], [-139.629408, -75.685577], [-146.865987, -75.685577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -74.238262], [-146.865987, -72.790946], [-139.629408, -72.790946], [-139.629408, -74.238262], [-146.865987, -74.238262] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -72.790946], [-146.865987, -71.34363], [-139.629408, -71.34363], [-139.629408, -72.790946], [-146.865987, -72.790946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -71.34363], [-146.865987, -69.896314], [-139.629408, -69.896314], [-139.629408, -71.34363], [-146.865987, -71.34363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -69.896314], [-146.865987, -68.448998], [-139.629408, -68.448998], [-139.629408, -69.896314], [-146.865987, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -68.448998], [-146.865987, -67.001682], [-139.629408, -67.001682], [-139.629408, -68.448998], [-146.865987, -68.448998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -67.001682], [-146.865987, -65.554367], [-139.629408, -65.554367], [-139.629408, -67.001682], [-146.865987, -67.001682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -65.554367], [-146.865987, -64.107051], [-139.629408, -64.107051], [-139.629408, -65.554367], [-146.865987, -65.554367] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -64.107051], [-146.865987, -62.659735], [-139.629408, -62.659735], [-139.629408, -64.107051], [-146.865987, -64.107051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -62.659735], [-146.865987, -61.212419], [-139.629408, -61.212419], [-139.629408, -62.659735], [-146.865987, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -61.212419], [-146.865987, -59.765103], [-139.629408, -59.765103], [-139.629408, -61.212419], [-146.865987, -61.212419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -59.765103], [-146.865987, -58.317787], [-139.629408, -58.317787], [-139.629408, -59.765103], [-146.865987, -59.765103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -58.317787], [-146.865987, -56.870472], [-139.629408, -56.870472], [-139.629408, -58.317787], [-146.865987, -58.317787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -56.870472], [-146.865987, -55.423156], [-139.629408, -55.423156], [-139.629408, -56.870472], [-146.865987, -56.870472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -55.423156], [-146.865987, -53.97584], [-139.629408, -53.97584], [-139.629408, -55.423156], [-146.865987, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -53.97584], [-146.865987, -52.528524], [-139.629408, -52.528524], [-139.629408, -53.97584], [-146.865987, -53.97584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -52.528524], [-146.865987, -51.081208], [-139.629408, -51.081208], [-139.629408, -52.528524], [-146.865987, -52.528524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -51.081208], [-146.865987, -49.633892], [-139.629408, -49.633892], [-139.629408, -51.081208], [-146.865987, -51.081208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -49.633892], [-146.865987, -48.186577], [-139.629408, -48.186577], [-139.629408, -49.633892], [-146.865987, -49.633892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -48.186577], [-146.865987, -46.739261], [-139.629408, -46.739261], [-139.629408, -48.186577], [-146.865987, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -46.739261], [-146.865987, -45.291945], [-139.629408, -45.291945], [-139.629408, -46.739261], [-146.865987, -46.739261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -45.291945], [-146.865987, -43.844629], [-139.629408, -43.844629], [-139.629408, -45.291945], [-146.865987, -45.291945] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -43.844629], [-146.865987, -42.397313], [-139.629408, -42.397313], [-139.629408, -43.844629], [-146.865987, -43.844629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -42.397313], [-146.865987, -40.949997], [-139.629408, -40.949997], [-139.629408, -42.397313], [-146.865987, -42.397313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -40.949997], [-146.865987, -39.502682], [-139.629408, -39.502682], [-139.629408, -40.949997], [-146.865987, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -39.502682], [-146.865987, -38.055366], [-139.629408, -38.055366], [-139.629408, -39.502682], [-146.865987, -39.502682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -38.055366], [-146.865987, -36.60805], [-139.629408, -36.60805], [-139.629408, -38.055366], [-146.865987, -38.055366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -36.60805], [-146.865987, -35.160734], [-139.629408, -35.160734], [-139.629408, -36.60805], [-146.865987, -36.60805] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -35.160734], [-146.865987, -33.713418], [-139.629408, -33.713418], [-139.629408, -35.160734], [-146.865987, -35.160734] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -33.713418], [-146.865987, -32.266102], [-139.629408, -32.266102], [-139.629408, -33.713418], [-146.865987, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -32.266102], [-146.865987, -30.818787], [-139.629408, -30.818787], [-139.629408, -32.266102], [-146.865987, -32.266102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -30.818787], [-146.865987, -29.371471], [-139.629408, -29.371471], [-139.629408, -30.818787], [-146.865987, -30.818787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -29.371471], [-146.865987, -27.924155], [-139.629408, -27.924155], [-139.629408, -29.371471], [-146.865987, -29.371471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -27.924155], [-146.865987, -26.476839], [-139.629408, -26.476839], [-139.629408, -27.924155], [-146.865987, -27.924155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -26.476839], [-146.865987, -25.029523], [-139.629408, -25.029523], [-139.629408, -26.476839], [-146.865987, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -25.029523], [-146.865987, -23.582207], [-139.629408, -23.582207], [-139.629408, -25.029523], [-146.865987, -25.029523] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -23.582207], [-146.865987, -22.134892], [-139.629408, -22.134892], [-139.629408, -23.582207], [-146.865987, -23.582207] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -22.134892], [-146.865987, -20.687576], [-139.629408, -20.687576], [-139.629408, -22.134892], [-146.865987, -22.134892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -20.687576], [-146.865987, -19.24026], [-139.629408, -19.24026], [-139.629408, -20.687576], [-146.865987, -20.687576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -19.24026], [-146.865987, -17.792944], [-139.629408, -17.792944], [-139.629408, -19.24026], [-146.865987, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -17.792944], [-146.865987, -16.345628], [-139.629408, -16.345628], [-139.629408, -17.792944], [-146.865987, -17.792944] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -16.345628], [-146.865987, -14.898312], [-139.629408, -14.898312], [-139.629408, -16.345628], [-146.865987, -16.345628] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -14.898312], [-146.865987, -13.450997], [-139.629408, -13.450997], [-139.629408, -14.898312], [-146.865987, -14.898312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -13.450997], [-146.865987, -12.003681], [-139.629408, -12.003681], [-139.629408, -13.450997], [-146.865987, -13.450997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -12.003681], [-146.865987, -10.556365], [-139.629408, -10.556365], [-139.629408, -12.003681], [-146.865987, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -10.556365], [-146.865987, -9.109049], [-139.629408, -9.109049], [-139.629408, -10.556365], [-146.865987, -10.556365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -9.109049], [-146.865987, -7.661733], [-139.629408, -7.661733], [-139.629408, -9.109049], [-146.865987, -9.109049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -7.661733], [-146.865987, -6.214417], [-139.629408, -6.214417], [-139.629408, -7.661733], [-146.865987, -7.661733] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -6.214417], [-146.865987, -4.767102], [-139.629408, -4.767102], [-139.629408, -6.214417], [-146.865987, -6.214417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -4.767102], [-146.865987, -3.319786], [-139.629408, -3.319786], [-139.629408, -4.767102], [-146.865987, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -3.319786], [-146.865987, -1.87247], [-139.629408, -1.87247], [-139.629408, -3.319786], [-146.865987, -3.319786] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -1.87247], [-146.865987, -0.425154], [-139.629408, -0.425154], [-139.629408, -1.87247], [-146.865987, -1.87247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -0.425154], [-146.865987, 1.022162], [-139.629408, 1.022162], [-139.629408, -0.425154], [-146.865987, -0.425154] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 1.022162], [-146.865987, 2.469478], [-139.629408, 2.469478], [-139.629408, 1.022162], [-146.865987, 1.022162] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 2.469478], [-146.865987, 3.916793], [-139.629408, 3.916793], [-139.629408, 2.469478], [-146.865987, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 3.916793], [-146.865987, 5.364109], [-139.629408, 5.364109], [-139.629408, 3.916793], [-146.865987, 3.916793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 5.364109], [-146.865987, 6.811425], [-139.629408, 6.811425], [-139.629408, 5.364109], [-146.865987, 5.364109] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 6.811425], [-146.865987, 8.258741], [-139.629408, 8.258741], [-139.629408, 6.811425], [-146.865987, 6.811425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 8.258741], [-146.865987, 9.706057], [-139.629408, 9.706057], [-139.629408, 8.258741], [-146.865987, 8.258741] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 9.706057], [-146.865987, 11.153373], [-139.629408, 11.153373], [-139.629408, 9.706057], [-146.865987, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 11.153373], [-146.865987, 12.600688], [-139.629408, 12.600688], [-139.629408, 11.153373], [-146.865987, 11.153373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 12.600688], [-146.865987, 14.048004], [-139.629408, 14.048004], [-139.629408, 12.600688], [-146.865987, 12.600688] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 14.048004], [-146.865987, 15.49532], [-139.629408, 15.49532], [-139.629408, 14.048004], [-146.865987, 14.048004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 15.49532], [-146.865987, 16.942636], [-139.629408, 16.942636], [-139.629408, 15.49532], [-146.865987, 15.49532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 16.942636], [-146.865987, 18.389952], [-139.629408, 18.389952], [-139.629408, 16.942636], [-146.865987, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 18.389952], [-146.865987, 19.837268], [-139.629408, 19.837268], [-139.629408, 18.389952], [-146.865987, 18.389952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 19.837268], [-146.865987, 21.284583], [-139.629408, 21.284583], [-139.629408, 19.837268], [-146.865987, 19.837268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 21.284583], [-146.865987, 22.731899], [-139.629408, 22.731899], [-139.629408, 21.284583], [-146.865987, 21.284583] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 22.731899], [-146.865987, 24.179215], [-139.629408, 24.179215], [-139.629408, 22.731899], [-146.865987, 22.731899] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 24.179215], [-146.865987, 25.626531], [-139.629408, 25.626531], [-139.629408, 24.179215], [-146.865987, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 25.626531], [-146.865987, 27.073847], [-139.629408, 27.073847], [-139.629408, 25.626531], [-146.865987, 25.626531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 27.073847], [-146.865987, 28.521163], [-139.629408, 28.521163], [-139.629408, 27.073847], [-146.865987, 27.073847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 28.521163], [-146.865987, 29.968478], [-139.629408, 29.968478], [-139.629408, 28.521163], [-146.865987, 28.521163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 29.968478], [-146.865987, 31.415794], [-139.629408, 31.415794], [-139.629408, 29.968478], [-146.865987, 29.968478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 31.415794], [-146.865987, 32.86311], [-139.629408, 32.86311], [-139.629408, 31.415794], [-146.865987, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 32.86311], [-146.865987, 34.310426], [-139.629408, 34.310426], [-139.629408, 32.86311], [-146.865987, 32.86311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 34.310426], [-146.865987, 35.757742], [-139.629408, 35.757742], [-139.629408, 34.310426], [-146.865987, 34.310426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 35.757742], [-146.865987, 37.205058], [-139.629408, 37.205058], [-139.629408, 35.757742], [-146.865987, 35.757742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 37.205058], [-146.865987, 38.652373], [-139.629408, 38.652373], [-139.629408, 37.205058], [-146.865987, 37.205058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 38.652373], [-146.865987, 40.099689], [-139.629408, 40.099689], [-139.629408, 38.652373], [-146.865987, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 40.099689], [-146.865987, 41.547005], [-139.629408, 41.547005], [-139.629408, 40.099689], [-146.865987, 40.099689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 41.547005], [-146.865987, 42.994321], [-139.629408, 42.994321], [-139.629408, 41.547005], [-146.865987, 41.547005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 42.994321], [-146.865987, 44.441637], [-139.629408, 44.441637], [-139.629408, 42.994321], [-146.865987, 42.994321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 44.441637], [-146.865987, 45.888952], [-139.629408, 45.888952], [-139.629408, 44.441637], [-146.865987, 44.441637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 45.888952], [-146.865987, 47.336268], [-139.629408, 47.336268], [-139.629408, 45.888952], [-146.865987, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 47.336268], [-146.865987, 48.783584], [-139.629408, 48.783584], [-139.629408, 47.336268], [-146.865987, 47.336268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 48.783584], [-146.865987, 50.2309], [-139.629408, 50.2309], [-139.629408, 48.783584], [-146.865987, 48.783584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 50.2309], [-146.865987, 51.678216], [-139.629408, 51.678216], [-139.629408, 50.2309], [-146.865987, 50.2309] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 51.678216], [-146.865987, 53.125532], [-139.629408, 53.125532], [-139.629408, 51.678216], [-146.865987, 51.678216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 53.125532], [-146.865987, 54.572847], [-139.629408, 54.572847], [-139.629408, 53.125532], [-146.865987, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 54.572847], [-146.865987, 56.020163], [-139.629408, 56.020163], [-139.629408, 54.572847], [-146.865987, 54.572847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 56.020163], [-146.865987, 57.467479], [-139.629408, 57.467479], [-139.629408, 56.020163], [-146.865987, 56.020163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 57.467479], [-146.865987, 58.914795], [-139.629408, 58.914795], [-139.629408, 57.467479], [-146.865987, 57.467479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 58.914795], [-146.865987, 60.362111], [-139.629408, 60.362111], [-139.629408, 58.914795], [-146.865987, 58.914795] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 60.362111], [-146.865987, 61.809427], [-139.629408, 61.809427], [-139.629408, 60.362111], [-146.865987, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 61.809427], [-146.865987, 63.256742], [-139.629408, 63.256742], [-139.629408, 61.809427], [-146.865987, 61.809427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 63.256742], [-146.865987, 64.704058], [-139.629408, 64.704058], [-139.629408, 63.256742], [-146.865987, 63.256742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 64.704058], [-146.865987, 66.151374], [-139.629408, 66.151374], [-139.629408, 64.704058], [-146.865987, 64.704058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 66.151374], [-146.865987, 67.59869], [-139.629408, 67.59869], [-139.629408, 66.151374], [-146.865987, 66.151374] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 67.59869], [-146.865987, 69.046006], [-139.629408, 69.046006], [-139.629408, 67.59869], [-146.865987, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 69.046006], [-146.865987, 70.493322], [-139.629408, 70.493322], [-139.629408, 69.046006], [-146.865987, 69.046006] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 70.493322], [-146.865987, 71.940637], [-139.629408, 71.940637], [-139.629408, 70.493322], [-146.865987, 70.493322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 71.940637], [-146.865987, 73.387953], [-139.629408, 73.387953], [-139.629408, 71.940637], [-146.865987, 71.940637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 73.387953], [-146.865987, 74.835269], [-139.629408, 74.835269], [-139.629408, 73.387953], [-146.865987, 73.387953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 74.835269], [-146.865987, 76.282585], [-139.629408, 76.282585], [-139.629408, 74.835269], [-146.865987, 74.835269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 76.282585], [-146.865987, 77.729901], [-139.629408, 77.729901], [-139.629408, 76.282585], [-146.865987, 76.282585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -80.027525], [-139.629408, -78.580209], [-132.392829, -78.580209], [-132.392829, -80.027525], [-139.629408, -80.027525] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -78.580209], [-139.629408, -77.132893], [-132.392829, -77.132893], [-132.392829, -78.580209], [-139.629408, -78.580209] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -77.132893], [-139.629408, -75.685577], [-132.392829, -75.685577], [-132.392829, -77.132893], [-139.629408, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -75.685577], [-139.629408, -74.238262], [-132.392829, -74.238262], [-132.392829, -75.685577], [-139.629408, -75.685577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -74.238262], [-139.629408, -72.790946], [-132.392829, -72.790946], [-132.392829, -74.238262], [-139.629408, -74.238262] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -72.790946], [-139.629408, -71.34363], [-132.392829, -71.34363], [-132.392829, -72.790946], [-139.629408, -72.790946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -71.34363], [-139.629408, -69.896314], [-132.392829, -69.896314], [-132.392829, -71.34363], [-139.629408, -71.34363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -69.896314], [-139.629408, -68.448998], [-132.392829, -68.448998], [-132.392829, -69.896314], [-139.629408, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -68.448998], [-139.629408, -67.001682], [-132.392829, -67.001682], [-132.392829, -68.448998], [-139.629408, -68.448998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -67.001682], [-139.629408, -65.554367], [-132.392829, -65.554367], [-132.392829, -67.001682], [-139.629408, -67.001682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -65.554367], [-139.629408, -64.107051], [-132.392829, -64.107051], [-132.392829, -65.554367], [-139.629408, -65.554367] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -64.107051], [-139.629408, -62.659735], [-132.392829, -62.659735], [-132.392829, -64.107051], [-139.629408, -64.107051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -62.659735], [-139.629408, -61.212419], [-132.392829, -61.212419], [-132.392829, -62.659735], [-139.629408, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -61.212419], [-139.629408, -59.765103], [-132.392829, -59.765103], [-132.392829, -61.212419], [-139.629408, -61.212419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -59.765103], [-139.629408, -58.317787], [-132.392829, -58.317787], [-132.392829, -59.765103], [-139.629408, -59.765103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -58.317787], [-139.629408, -56.870472], [-132.392829, -56.870472], [-132.392829, -58.317787], [-139.629408, -58.317787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -56.870472], [-139.629408, -55.423156], [-132.392829, -55.423156], [-132.392829, -56.870472], [-139.629408, -56.870472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -55.423156], [-139.629408, -53.97584], [-132.392829, -53.97584], [-132.392829, -55.423156], [-139.629408, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -53.97584], [-139.629408, -52.528524], [-132.392829, -52.528524], [-132.392829, -53.97584], [-139.629408, -53.97584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -52.528524], [-139.629408, -51.081208], [-132.392829, -51.081208], [-132.392829, -52.528524], [-139.629408, -52.528524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -51.081208], [-139.629408, -49.633892], [-132.392829, -49.633892], [-132.392829, -51.081208], [-139.629408, -51.081208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -49.633892], [-139.629408, -48.186577], [-132.392829, -48.186577], [-132.392829, -49.633892], [-139.629408, -49.633892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -48.186577], [-139.629408, -46.739261], [-132.392829, -46.739261], [-132.392829, -48.186577], [-139.629408, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -46.739261], [-139.629408, -45.291945], [-132.392829, -45.291945], [-132.392829, -46.739261], [-139.629408, -46.739261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -45.291945], [-139.629408, -43.844629], [-132.392829, -43.844629], [-132.392829, -45.291945], [-139.629408, -45.291945] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -43.844629], [-139.629408, -42.397313], [-132.392829, -42.397313], [-132.392829, -43.844629], [-139.629408, -43.844629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -42.397313], [-139.629408, -40.949997], [-132.392829, -40.949997], [-132.392829, -42.397313], [-139.629408, -42.397313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -40.949997], [-139.629408, -39.502682], [-132.392829, -39.502682], [-132.392829, -40.949997], [-139.629408, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -39.502682], [-139.629408, -38.055366], [-132.392829, -38.055366], [-132.392829, -39.502682], [-139.629408, -39.502682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -38.055366], [-139.629408, -36.60805], [-132.392829, -36.60805], [-132.392829, -38.055366], [-139.629408, -38.055366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -36.60805], [-139.629408, -35.160734], [-132.392829, -35.160734], [-132.392829, -36.60805], [-139.629408, -36.60805] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -35.160734], [-139.629408, -33.713418], [-132.392829, -33.713418], [-132.392829, -35.160734], [-139.629408, -35.160734] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -33.713418], [-139.629408, -32.266102], [-132.392829, -32.266102], [-132.392829, -33.713418], [-139.629408, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -32.266102], [-139.629408, -30.818787], [-132.392829, -30.818787], [-132.392829, -32.266102], [-139.629408, -32.266102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -30.818787], [-139.629408, -29.371471], [-132.392829, -29.371471], [-132.392829, -30.818787], [-139.629408, -30.818787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -29.371471], [-139.629408, -27.924155], [-132.392829, -27.924155], [-132.392829, -29.371471], [-139.629408, -29.371471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -27.924155], [-139.629408, -26.476839], [-132.392829, -26.476839], [-132.392829, -27.924155], [-139.629408, -27.924155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -26.476839], [-139.629408, -25.029523], [-132.392829, -25.029523], [-132.392829, -26.476839], [-139.629408, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -25.029523], [-139.629408, -23.582207], [-132.392829, -23.582207], [-132.392829, -25.029523], [-139.629408, -25.029523] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -23.582207], [-139.629408, -22.134892], [-132.392829, -22.134892], [-132.392829, -23.582207], [-139.629408, -23.582207] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -22.134892], [-139.629408, -20.687576], [-132.392829, -20.687576], [-132.392829, -22.134892], [-139.629408, -22.134892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -20.687576], [-139.629408, -19.24026], [-132.392829, -19.24026], [-132.392829, -20.687576], [-139.629408, -20.687576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -19.24026], [-139.629408, -17.792944], [-132.392829, -17.792944], [-132.392829, -19.24026], [-139.629408, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -17.792944], [-139.629408, -16.345628], [-132.392829, -16.345628], [-132.392829, -17.792944], [-139.629408, -17.792944] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -16.345628], [-139.629408, -14.898312], [-132.392829, -14.898312], [-132.392829, -16.345628], [-139.629408, -16.345628] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -14.898312], [-139.629408, -13.450997], [-132.392829, -13.450997], [-132.392829, -14.898312], [-139.629408, -14.898312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -13.450997], [-139.629408, -12.003681], [-132.392829, -12.003681], [-132.392829, -13.450997], [-139.629408, -13.450997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -12.003681], [-139.629408, -10.556365], [-132.392829, -10.556365], [-132.392829, -12.003681], [-139.629408, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -10.556365], [-139.629408, -9.109049], [-132.392829, -9.109049], [-132.392829, -10.556365], [-139.629408, -10.556365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -9.109049], [-139.629408, -7.661733], [-132.392829, -7.661733], [-132.392829, -9.109049], [-139.629408, -9.109049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -7.661733], [-139.629408, -6.214417], [-132.392829, -6.214417], [-132.392829, -7.661733], [-139.629408, -7.661733] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -6.214417], [-139.629408, -4.767102], [-132.392829, -4.767102], [-132.392829, -6.214417], [-139.629408, -6.214417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -4.767102], [-139.629408, -3.319786], [-132.392829, -3.319786], [-132.392829, -4.767102], [-139.629408, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -3.319786], [-139.629408, -1.87247], [-132.392829, -1.87247], [-132.392829, -3.319786], [-139.629408, -3.319786] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -1.87247], [-139.629408, -0.425154], [-132.392829, -0.425154], [-132.392829, -1.87247], [-139.629408, -1.87247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -0.425154], [-139.629408, 1.022162], [-132.392829, 1.022162], [-132.392829, -0.425154], [-139.629408, -0.425154] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 1.022162], [-139.629408, 2.469478], [-132.392829, 2.469478], [-132.392829, 1.022162], [-139.629408, 1.022162] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 2.469478], [-139.629408, 3.916793], [-132.392829, 3.916793], [-132.392829, 2.469478], [-139.629408, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 3.916793], [-139.629408, 5.364109], [-132.392829, 5.364109], [-132.392829, 3.916793], [-139.629408, 3.916793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 5.364109], [-139.629408, 6.811425], [-132.392829, 6.811425], [-132.392829, 5.364109], [-139.629408, 5.364109] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 6.811425], [-139.629408, 8.258741], [-132.392829, 8.258741], [-132.392829, 6.811425], [-139.629408, 6.811425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 8.258741], [-139.629408, 9.706057], [-132.392829, 9.706057], [-132.392829, 8.258741], [-139.629408, 8.258741] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 9.706057], [-139.629408, 11.153373], [-132.392829, 11.153373], [-132.392829, 9.706057], [-139.629408, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 11.153373], [-139.629408, 12.600688], [-132.392829, 12.600688], [-132.392829, 11.153373], [-139.629408, 11.153373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 12.600688], [-139.629408, 14.048004], [-132.392829, 14.048004], [-132.392829, 12.600688], [-139.629408, 12.600688] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 14.048004], [-139.629408, 15.49532], [-132.392829, 15.49532], [-132.392829, 14.048004], [-139.629408, 14.048004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 15.49532], [-139.629408, 16.942636], [-132.392829, 16.942636], [-132.392829, 15.49532], [-139.629408, 15.49532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 16.942636], [-139.629408, 18.389952], [-132.392829, 18.389952], [-132.392829, 16.942636], [-139.629408, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 18.389952], [-139.629408, 19.837268], [-132.392829, 19.837268], [-132.392829, 18.389952], [-139.629408, 18.389952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 19.837268], [-139.629408, 21.284583], [-132.392829, 21.284583], [-132.392829, 19.837268], [-139.629408, 19.837268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 21.284583], [-139.629408, 22.731899], [-132.392829, 22.731899], [-132.392829, 21.284583], [-139.629408, 21.284583] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 22.731899], [-139.629408, 24.179215], [-132.392829, 24.179215], [-132.392829, 22.731899], [-139.629408, 22.731899] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 24.179215], [-139.629408, 25.626531], [-132.392829, 25.626531], [-132.392829, 24.179215], [-139.629408, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 25.626531], [-139.629408, 27.073847], [-132.392829, 27.073847], [-132.392829, 25.626531], [-139.629408, 25.626531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 27.073847], [-139.629408, 28.521163], [-132.392829, 28.521163], [-132.392829, 27.073847], [-139.629408, 27.073847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 28.521163], [-139.629408, 29.968478], [-132.392829, 29.968478], [-132.392829, 28.521163], [-139.629408, 28.521163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 29.968478], [-139.629408, 31.415794], [-132.392829, 31.415794], [-132.392829, 29.968478], [-139.629408, 29.968478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 31.415794], [-139.629408, 32.86311], [-132.392829, 32.86311], [-132.392829, 31.415794], [-139.629408, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 32.86311], [-139.629408, 34.310426], [-132.392829, 34.310426], [-132.392829, 32.86311], [-139.629408, 32.86311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 34.310426], [-139.629408, 35.757742], [-132.392829, 35.757742], [-132.392829, 34.310426], [-139.629408, 34.310426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 35.757742], [-139.629408, 37.205058], [-132.392829, 37.205058], [-132.392829, 35.757742], [-139.629408, 35.757742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 37.205058], [-139.629408, 38.652373], [-132.392829, 38.652373], [-132.392829, 37.205058], [-139.629408, 37.205058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 38.652373], [-139.629408, 40.099689], [-132.392829, 40.099689], [-132.392829, 38.652373], [-139.629408, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 40.099689], [-139.629408, 41.547005], [-132.392829, 41.547005], [-132.392829, 40.099689], [-139.629408, 40.099689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 41.547005], [-139.629408, 42.994321], [-132.392829, 42.994321], [-132.392829, 41.547005], [-139.629408, 41.547005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 42.994321], [-139.629408, 44.441637], [-132.392829, 44.441637], [-132.392829, 42.994321], [-139.629408, 42.994321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 44.441637], [-139.629408, 45.888952], [-132.392829, 45.888952], [-132.392829, 44.441637], [-139.629408, 44.441637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 45.888952], [-139.629408, 47.336268], [-132.392829, 47.336268], [-132.392829, 45.888952], [-139.629408, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 47.336268], [-139.629408, 48.783584], [-132.392829, 48.783584], [-132.392829, 47.336268], [-139.629408, 47.336268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 48.783584], [-139.629408, 50.2309], [-132.392829, 50.2309], [-132.392829, 48.783584], [-139.629408, 48.783584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 50.2309], [-139.629408, 51.678216], [-132.392829, 51.678216], [-132.392829, 50.2309], [-139.629408, 50.2309] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 51.678216], [-139.629408, 53.125532], [-132.392829, 53.125532], [-132.392829, 51.678216], [-139.629408, 51.678216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 53.125532], [-139.629408, 54.572847], [-132.392829, 54.572847], [-132.392829, 53.125532], [-139.629408, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 54.572847], [-139.629408, 56.020163], [-132.392829, 56.020163], [-132.392829, 54.572847], [-139.629408, 54.572847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 56.020163], [-139.629408, 57.467479], [-132.392829, 57.467479], [-132.392829, 56.020163], [-139.629408, 56.020163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 57.467479], [-139.629408, 58.914795], [-132.392829, 58.914795], [-132.392829, 57.467479], [-139.629408, 57.467479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 58.914795], [-139.629408, 60.362111], [-132.392829, 60.362111], [-132.392829, 58.914795], [-139.629408, 58.914795] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 60.362111], [-139.629408, 61.809427], [-132.392829, 61.809427], [-132.392829, 60.362111], [-139.629408, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 61.809427], [-139.629408, 63.256742], [-132.392829, 63.256742], [-132.392829, 61.809427], [-139.629408, 61.809427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 63.256742], [-139.629408, 64.704058], [-132.392829, 64.704058], [-132.392829, 63.256742], [-139.629408, 63.256742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 64.704058], [-139.629408, 66.151374], [-132.392829, 66.151374], [-132.392829, 64.704058], [-139.629408, 64.704058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 66.151374], [-139.629408, 67.59869], [-132.392829, 67.59869], [-132.392829, 66.151374], [-139.629408, 66.151374] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 67.59869], [-139.629408, 69.046006], [-132.392829, 69.046006], [-132.392829, 67.59869], [-139.629408, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 69.046006], [-139.629408, 70.493322], [-132.392829, 70.493322], [-132.392829, 69.046006], [-139.629408, 69.046006] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 70.493322], [-139.629408, 71.940637], [-132.392829, 71.940637], [-132.392829, 70.493322], [-139.629408, 70.493322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 71.940637], [-139.629408, 73.387953], [-132.392829, 73.387953], [-132.392829, 71.940637], [-139.629408, 71.940637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 73.387953], [-139.629408, 74.835269], [-132.392829, 74.835269], [-132.392829, 73.387953], [-139.629408, 73.387953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 74.835269], [-139.629408, 76.282585], [-132.392829, 76.282585], [-132.392829, 74.835269], [-139.629408, 74.835269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 76.282585], [-139.629408, 77.729901], [-132.392829, 77.729901], [-132.392829, 76.282585], [-139.629408, 76.282585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -80.027525], [-132.392829, -78.580209], [-125.15625, -78.580209], [-125.15625, -80.027525], [-132.392829, -80.027525] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -78.580209], [-132.392829, -77.132893], [-125.15625, -77.132893], [-125.15625, -78.580209], [-132.392829, -78.580209] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -77.132893], [-132.392829, -75.685577], [-125.15625, -75.685577], [-125.15625, -77.132893], [-132.392829, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -75.685577], [-132.392829, -74.238262], [-125.15625, -74.238262], [-125.15625, -75.685577], [-132.392829, -75.685577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -74.238262], [-132.392829, -72.790946], [-125.15625, -72.790946], [-125.15625, -74.238262], [-132.392829, -74.238262] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -72.790946], [-132.392829, -71.34363], [-125.15625, -71.34363], [-125.15625, -72.790946], [-132.392829, -72.790946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -71.34363], [-132.392829, -69.896314], [-125.15625, -69.896314], [-125.15625, -71.34363], [-132.392829, -71.34363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -69.896314], [-132.392829, -68.448998], [-125.15625, -68.448998], [-125.15625, -69.896314], [-132.392829, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -68.448998], [-132.392829, -67.001682], [-125.15625, -67.001682], [-125.15625, -68.448998], [-132.392829, -68.448998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -67.001682], [-132.392829, -65.554367], [-125.15625, -65.554367], [-125.15625, -67.001682], [-132.392829, -67.001682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -65.554367], [-132.392829, -64.107051], [-125.15625, -64.107051], [-125.15625, -65.554367], [-132.392829, -65.554367] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -64.107051], [-132.392829, -62.659735], [-125.15625, -62.659735], [-125.15625, -64.107051], [-132.392829, -64.107051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -62.659735], [-132.392829, -61.212419], [-125.15625, -61.212419], [-125.15625, -62.659735], [-132.392829, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -61.212419], [-132.392829, -59.765103], [-125.15625, -59.765103], [-125.15625, -61.212419], [-132.392829, -61.212419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -59.765103], [-132.392829, -58.317787], [-125.15625, -58.317787], [-125.15625, -59.765103], [-132.392829, -59.765103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -58.317787], [-132.392829, -56.870472], [-125.15625, -56.870472], [-125.15625, -58.317787], [-132.392829, -58.317787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -56.870472], [-132.392829, -55.423156], [-125.15625, -55.423156], [-125.15625, -56.870472], [-132.392829, -56.870472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -55.423156], [-132.392829, -53.97584], [-125.15625, -53.97584], [-125.15625, -55.423156], [-132.392829, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -53.97584], [-132.392829, -52.528524], [-125.15625, -52.528524], [-125.15625, -53.97584], [-132.392829, -53.97584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -52.528524], [-132.392829, -51.081208], [-125.15625, -51.081208], [-125.15625, -52.528524], [-132.392829, -52.528524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -51.081208], [-132.392829, -49.633892], [-125.15625, -49.633892], [-125.15625, -51.081208], [-132.392829, -51.081208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -49.633892], [-132.392829, -48.186577], [-125.15625, -48.186577], [-125.15625, -49.633892], [-132.392829, -49.633892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -48.186577], [-132.392829, -46.739261], [-125.15625, -46.739261], [-125.15625, -48.186577], [-132.392829, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -46.739261], [-132.392829, -45.291945], [-125.15625, -45.291945], [-125.15625, -46.739261], [-132.392829, -46.739261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -45.291945], [-132.392829, -43.844629], [-125.15625, -43.844629], [-125.15625, -45.291945], [-132.392829, -45.291945] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -43.844629], [-132.392829, -42.397313], [-125.15625, -42.397313], [-125.15625, -43.844629], [-132.392829, -43.844629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -42.397313], [-132.392829, -40.949997], [-125.15625, -40.949997], [-125.15625, -42.397313], [-132.392829, -42.397313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -40.949997], [-132.392829, -39.502682], [-125.15625, -39.502682], [-125.15625, -40.949997], [-132.392829, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -39.502682], [-132.392829, -38.055366], [-125.15625, -38.055366], [-125.15625, -39.502682], [-132.392829, -39.502682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -38.055366], [-132.392829, -36.60805], [-125.15625, -36.60805], [-125.15625, -38.055366], [-132.392829, -38.055366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -36.60805], [-132.392829, -35.160734], [-125.15625, -35.160734], [-125.15625, -36.60805], [-132.392829, -36.60805] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -35.160734], [-132.392829, -33.713418], [-125.15625, -33.713418], [-125.15625, -35.160734], [-132.392829, -35.160734] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -33.713418], [-132.392829, -32.266102], [-125.15625, -32.266102], [-125.15625, -33.713418], [-132.392829, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -32.266102], [-132.392829, -30.818787], [-125.15625, -30.818787], [-125.15625, -32.266102], [-132.392829, -32.266102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -30.818787], [-132.392829, -29.371471], [-125.15625, -29.371471], [-125.15625, -30.818787], [-132.392829, -30.818787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -29.371471], [-132.392829, -27.924155], [-125.15625, -27.924155], [-125.15625, -29.371471], [-132.392829, -29.371471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -27.924155], [-132.392829, -26.476839], [-125.15625, -26.476839], [-125.15625, -27.924155], [-132.392829, -27.924155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -26.476839], [-132.392829, -25.029523], [-125.15625, -25.029523], [-125.15625, -26.476839], [-132.392829, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -25.029523], [-132.392829, -23.582207], [-125.15625, -23.582207], [-125.15625, -25.029523], [-132.392829, -25.029523] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -23.582207], [-132.392829, -22.134892], [-125.15625, -22.134892], [-125.15625, -23.582207], [-132.392829, -23.582207] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -22.134892], [-132.392829, -20.687576], [-125.15625, -20.687576], [-125.15625, -22.134892], [-132.392829, -22.134892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -20.687576], [-132.392829, -19.24026], [-125.15625, -19.24026], [-125.15625, -20.687576], [-132.392829, -20.687576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -19.24026], [-132.392829, -17.792944], [-125.15625, -17.792944], [-125.15625, -19.24026], [-132.392829, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -17.792944], [-132.392829, -16.345628], [-125.15625, -16.345628], [-125.15625, -17.792944], [-132.392829, -17.792944] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -16.345628], [-132.392829, -14.898312], [-125.15625, -14.898312], [-125.15625, -16.345628], [-132.392829, -16.345628] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -14.898312], [-132.392829, -13.450997], [-125.15625, -13.450997], [-125.15625, -14.898312], [-132.392829, -14.898312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -13.450997], [-132.392829, -12.003681], [-125.15625, -12.003681], [-125.15625, -13.450997], [-132.392829, -13.450997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -12.003681], [-132.392829, -10.556365], [-125.15625, -10.556365], [-125.15625, -12.003681], [-132.392829, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -10.556365], [-132.392829, -9.109049], [-125.15625, -9.109049], [-125.15625, -10.556365], [-132.392829, -10.556365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -9.109049], [-132.392829, -7.661733], [-125.15625, -7.661733], [-125.15625, -9.109049], [-132.392829, -9.109049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -7.661733], [-132.392829, -6.214417], [-125.15625, -6.214417], [-125.15625, -7.661733], [-132.392829, -7.661733] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -6.214417], [-132.392829, -4.767102], [-125.15625, -4.767102], [-125.15625, -6.214417], [-132.392829, -6.214417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -4.767102], [-132.392829, -3.319786], [-125.15625, -3.319786], [-125.15625, -4.767102], [-132.392829, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -3.319786], [-132.392829, -1.87247], [-125.15625, -1.87247], [-125.15625, -3.319786], [-132.392829, -3.319786] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -1.87247], [-132.392829, -0.425154], [-125.15625, -0.425154], [-125.15625, -1.87247], [-132.392829, -1.87247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -0.425154], [-132.392829, 1.022162], [-125.15625, 1.022162], [-125.15625, -0.425154], [-132.392829, -0.425154] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 1.022162], [-132.392829, 2.469478], [-125.15625, 2.469478], [-125.15625, 1.022162], [-132.392829, 1.022162] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 2.469478], [-132.392829, 3.916793], [-125.15625, 3.916793], [-125.15625, 2.469478], [-132.392829, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 3.916793], [-132.392829, 5.364109], [-125.15625, 5.364109], [-125.15625, 3.916793], [-132.392829, 3.916793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 5.364109], [-132.392829, 6.811425], [-125.15625, 6.811425], [-125.15625, 5.364109], [-132.392829, 5.364109] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 6.811425], [-132.392829, 8.258741], [-125.15625, 8.258741], [-125.15625, 6.811425], [-132.392829, 6.811425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 8.258741], [-132.392829, 9.706057], [-125.15625, 9.706057], [-125.15625, 8.258741], [-132.392829, 8.258741] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 9.706057], [-132.392829, 11.153373], [-125.15625, 11.153373], [-125.15625, 9.706057], [-132.392829, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 11.153373], [-132.392829, 12.600688], [-125.15625, 12.600688], [-125.15625, 11.153373], [-132.392829, 11.153373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 12.600688], [-132.392829, 14.048004], [-125.15625, 14.048004], [-125.15625, 12.600688], [-132.392829, 12.600688] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 14.048004], [-132.392829, 15.49532], [-125.15625, 15.49532], [-125.15625, 14.048004], [-132.392829, 14.048004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 15.49532], [-132.392829, 16.942636], [-125.15625, 16.942636], [-125.15625, 15.49532], [-132.392829, 15.49532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 16.942636], [-132.392829, 18.389952], [-125.15625, 18.389952], [-125.15625, 16.942636], [-132.392829, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 18.389952], [-132.392829, 19.837268], [-125.15625, 19.837268], [-125.15625, 18.389952], [-132.392829, 18.389952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 19.837268], [-132.392829, 21.284583], [-125.15625, 21.284583], [-125.15625, 19.837268], [-132.392829, 19.837268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 21.284583], [-132.392829, 22.731899], [-125.15625, 22.731899], [-125.15625, 21.284583], [-132.392829, 21.284583] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 22.731899], [-132.392829, 24.179215], [-125.15625, 24.179215], [-125.15625, 22.731899], [-132.392829, 22.731899] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 24.179215], [-132.392829, 25.626531], [-125.15625, 25.626531], [-125.15625, 24.179215], [-132.392829, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 25.626531], [-132.392829, 27.073847], [-125.15625, 27.073847], [-125.15625, 25.626531], [-132.392829, 25.626531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 27.073847], [-132.392829, 28.521163], [-125.15625, 28.521163], [-125.15625, 27.073847], [-132.392829, 27.073847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 28.521163], [-132.392829, 29.968478], [-125.15625, 29.968478], [-125.15625, 28.521163], [-132.392829, 28.521163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 29.968478], [-132.392829, 31.415794], [-125.15625, 31.415794], [-125.15625, 29.968478], [-132.392829, 29.968478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 31.415794], [-132.392829, 32.86311], [-125.15625, 32.86311], [-125.15625, 31.415794], [-132.392829, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 32.86311], [-132.392829, 34.310426], [-125.15625, 34.310426], [-125.15625, 32.86311], [-132.392829, 32.86311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 34.310426], [-132.392829, 35.757742], [-125.15625, 35.757742], [-125.15625, 34.310426], [-132.392829, 34.310426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 35.757742], [-132.392829, 37.205058], [-125.15625, 37.205058], [-125.15625, 35.757742], [-132.392829, 35.757742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 37.205058], [-132.392829, 38.652373], [-125.15625, 38.652373], [-125.15625, 37.205058], [-132.392829, 37.205058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 38.652373], [-132.392829, 40.099689], [-125.15625, 40.099689], [-125.15625, 38.652373], [-132.392829, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 40.099689], [-132.392829, 41.547005], [-125.15625, 41.547005], [-125.15625, 40.099689], [-132.392829, 40.099689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 41.547005], [-132.392829, 42.994321], [-125.15625, 42.994321], [-125.15625, 41.547005], [-132.392829, 41.547005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 42.994321], [-132.392829, 44.441637], [-125.15625, 44.441637], [-125.15625, 42.994321], [-132.392829, 42.994321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 44.441637], [-132.392829, 45.888952], [-125.15625, 45.888952], [-125.15625, 44.441637], [-132.392829, 44.441637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 45.888952], [-132.392829, 47.336268], [-125.15625, 47.336268], [-125.15625, 45.888952], [-132.392829, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 47.336268], [-132.392829, 48.783584], [-125.15625, 48.783584], [-125.15625, 47.336268], [-132.392829, 47.336268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 48.783584], [-132.392829, 50.2309], [-125.15625, 50.2309], [-125.15625, 48.783584], [-132.392829, 48.783584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 50.2309], [-132.392829, 51.678216], [-125.15625, 51.678216], [-125.15625, 50.2309], [-132.392829, 50.2309] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 51.678216], [-132.392829, 53.125532], [-125.15625, 53.125532], [-125.15625, 51.678216], [-132.392829, 51.678216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 53.125532], [-132.392829, 54.572847], [-125.15625, 54.572847], [-125.15625, 53.125532], [-132.392829, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 54.572847], [-132.392829, 56.020163], [-125.15625, 56.020163], [-125.15625, 54.572847], [-132.392829, 54.572847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 56.020163], [-132.392829, 57.467479], [-125.15625, 57.467479], [-125.15625, 56.020163], [-132.392829, 56.020163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 57.467479], [-132.392829, 58.914795], [-125.15625, 58.914795], [-125.15625, 57.467479], [-132.392829, 57.467479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 58.914795], [-132.392829, 60.362111], [-125.15625, 60.362111], [-125.15625, 58.914795], [-132.392829, 58.914795] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 60.362111], [-132.392829, 61.809427], [-125.15625, 61.809427], [-125.15625, 60.362111], [-132.392829, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 61.809427], [-132.392829, 63.256742], [-125.15625, 63.256742], [-125.15625, 61.809427], [-132.392829, 61.809427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 63.256742], [-132.392829, 64.704058], [-125.15625, 64.704058], [-125.15625, 63.256742], [-132.392829, 63.256742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 64.704058], [-132.392829, 66.151374], [-125.15625, 66.151374], [-125.15625, 64.704058], [-132.392829, 64.704058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 66.151374], [-132.392829, 67.59869], [-125.15625, 67.59869], [-125.15625, 66.151374], [-132.392829, 66.151374] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 67.59869], [-132.392829, 69.046006], [-125.15625, 69.046006], [-125.15625, 67.59869], [-132.392829, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 69.046006], [-132.392829, 70.493322], [-125.15625, 70.493322], [-125.15625, 69.046006], [-132.392829, 69.046006] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 70.493322], [-132.392829, 71.940637], [-125.15625, 71.940637], [-125.15625, 70.493322], [-132.392829, 70.493322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 71.940637], [-132.392829, 73.387953], [-125.15625, 73.387953], [-125.15625, 71.940637], [-132.392829, 71.940637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 73.387953], [-132.392829, 74.835269], [-125.15625, 74.835269], [-125.15625, 73.387953], [-132.392829, 73.387953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 74.835269], [-132.392829, 76.282585], [-125.15625, 76.282585], [-125.15625, 74.835269], [-132.392829, 74.835269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 76.282585], [-132.392829, 77.729901], [-125.15625, 77.729901], [-125.15625, 76.282585], [-132.392829, 76.282585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -80.027525], [-125.15625, -78.580209], [-117.919671, -78.580209], [-117.919671, -80.027525], [-125.15625, -80.027525] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -78.580209], [-125.15625, -77.132893], [-117.919671, -77.132893], [-117.919671, -78.580209], [-125.15625, -78.580209] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -77.132893], [-125.15625, -75.685577], [-117.919671, -75.685577], [-117.919671, -77.132893], [-125.15625, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -75.685577], [-125.15625, -74.238262], [-117.919671, -74.238262], [-117.919671, -75.685577], [-125.15625, -75.685577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -74.238262], [-125.15625, -72.790946], [-117.919671, -72.790946], [-117.919671, -74.238262], [-125.15625, -74.238262] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -72.790946], [-125.15625, -71.34363], [-117.919671, -71.34363], [-117.919671, -72.790946], [-125.15625, -72.790946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -71.34363], [-125.15625, -69.896314], [-117.919671, -69.896314], [-117.919671, -71.34363], [-125.15625, -71.34363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -69.896314], [-125.15625, -68.448998], [-117.919671, -68.448998], [-117.919671, -69.896314], [-125.15625, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -68.448998], [-125.15625, -67.001682], [-117.919671, -67.001682], [-117.919671, -68.448998], [-125.15625, -68.448998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -67.001682], [-125.15625, -65.554367], [-117.919671, -65.554367], [-117.919671, -67.001682], [-125.15625, -67.001682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -65.554367], [-125.15625, -64.107051], [-117.919671, -64.107051], [-117.919671, -65.554367], [-125.15625, -65.554367] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -64.107051], [-125.15625, -62.659735], [-117.919671, -62.659735], [-117.919671, -64.107051], [-125.15625, -64.107051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -62.659735], [-125.15625, -61.212419], [-117.919671, -61.212419], [-117.919671, -62.659735], [-125.15625, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -61.212419], [-125.15625, -59.765103], [-117.919671, -59.765103], [-117.919671, -61.212419], [-125.15625, -61.212419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -59.765103], [-125.15625, -58.317787], [-117.919671, -58.317787], [-117.919671, -59.765103], [-125.15625, -59.765103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -58.317787], [-125.15625, -56.870472], [-117.919671, -56.870472], [-117.919671, -58.317787], [-125.15625, -58.317787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -56.870472], [-125.15625, -55.423156], [-117.919671, -55.423156], [-117.919671, -56.870472], [-125.15625, -56.870472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -55.423156], [-125.15625, -53.97584], [-117.919671, -53.97584], [-117.919671, -55.423156], [-125.15625, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -53.97584], [-125.15625, -52.528524], [-117.919671, -52.528524], [-117.919671, -53.97584], [-125.15625, -53.97584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -52.528524], [-125.15625, -51.081208], [-117.919671, -51.081208], [-117.919671, -52.528524], [-125.15625, -52.528524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -51.081208], [-125.15625, -49.633892], [-117.919671, -49.633892], [-117.919671, -51.081208], [-125.15625, -51.081208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -49.633892], [-125.15625, -48.186577], [-117.919671, -48.186577], [-117.919671, -49.633892], [-125.15625, -49.633892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -48.186577], [-125.15625, -46.739261], [-117.919671, -46.739261], [-117.919671, -48.186577], [-125.15625, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -46.739261], [-125.15625, -45.291945], [-117.919671, -45.291945], [-117.919671, -46.739261], [-125.15625, -46.739261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -45.291945], [-125.15625, -43.844629], [-117.919671, -43.844629], [-117.919671, -45.291945], [-125.15625, -45.291945] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -43.844629], [-125.15625, -42.397313], [-117.919671, -42.397313], [-117.919671, -43.844629], [-125.15625, -43.844629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -42.397313], [-125.15625, -40.949997], [-117.919671, -40.949997], [-117.919671, -42.397313], [-125.15625, -42.397313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -40.949997], [-125.15625, -39.502682], [-117.919671, -39.502682], [-117.919671, -40.949997], [-125.15625, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -39.502682], [-125.15625, -38.055366], [-117.919671, -38.055366], [-117.919671, -39.502682], [-125.15625, -39.502682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -38.055366], [-125.15625, -36.60805], [-117.919671, -36.60805], [-117.919671, -38.055366], [-125.15625, -38.055366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -36.60805], [-125.15625, -35.160734], [-117.919671, -35.160734], [-117.919671, -36.60805], [-125.15625, -36.60805] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -35.160734], [-125.15625, -33.713418], [-117.919671, -33.713418], [-117.919671, -35.160734], [-125.15625, -35.160734] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -33.713418], [-125.15625, -32.266102], [-117.919671, -32.266102], [-117.919671, -33.713418], [-125.15625, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -32.266102], [-125.15625, -30.818787], [-117.919671, -30.818787], [-117.919671, -32.266102], [-125.15625, -32.266102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -30.818787], [-125.15625, -29.371471], [-117.919671, -29.371471], [-117.919671, -30.818787], [-125.15625, -30.818787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -29.371471], [-125.15625, -27.924155], [-117.919671, -27.924155], [-117.919671, -29.371471], [-125.15625, -29.371471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -27.924155], [-125.15625, -26.476839], [-117.919671, -26.476839], [-117.919671, -27.924155], [-125.15625, -27.924155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -26.476839], [-125.15625, -25.029523], [-117.919671, -25.029523], [-117.919671, -26.476839], [-125.15625, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -25.029523], [-125.15625, -23.582207], [-117.919671, -23.582207], [-117.919671, -25.029523], [-125.15625, -25.029523] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -23.582207], [-125.15625, -22.134892], [-117.919671, -22.134892], [-117.919671, -23.582207], [-125.15625, -23.582207] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -22.134892], [-125.15625, -20.687576], [-117.919671, -20.687576], [-117.919671, -22.134892], [-125.15625, -22.134892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -20.687576], [-125.15625, -19.24026], [-117.919671, -19.24026], [-117.919671, -20.687576], [-125.15625, -20.687576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -19.24026], [-125.15625, -17.792944], [-117.919671, -17.792944], [-117.919671, -19.24026], [-125.15625, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -17.792944], [-125.15625, -16.345628], [-117.919671, -16.345628], [-117.919671, -17.792944], [-125.15625, -17.792944] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -16.345628], [-125.15625, -14.898312], [-117.919671, -14.898312], [-117.919671, -16.345628], [-125.15625, -16.345628] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -14.898312], [-125.15625, -13.450997], [-117.919671, -13.450997], [-117.919671, -14.898312], [-125.15625, -14.898312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -13.450997], [-125.15625, -12.003681], [-117.919671, -12.003681], [-117.919671, -13.450997], [-125.15625, -13.450997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -12.003681], [-125.15625, -10.556365], [-117.919671, -10.556365], [-117.919671, -12.003681], [-125.15625, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -10.556365], [-125.15625, -9.109049], [-117.919671, -9.109049], [-117.919671, -10.556365], [-125.15625, -10.556365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -9.109049], [-125.15625, -7.661733], [-117.919671, -7.661733], [-117.919671, -9.109049], [-125.15625, -9.109049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -7.661733], [-125.15625, -6.214417], [-117.919671, -6.214417], [-117.919671, -7.661733], [-125.15625, -7.661733] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -6.214417], [-125.15625, -4.767102], [-117.919671, -4.767102], [-117.919671, -6.214417], [-125.15625, -6.214417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -4.767102], [-125.15625, -3.319786], [-117.919671, -3.319786], [-117.919671, -4.767102], [-125.15625, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -3.319786], [-125.15625, -1.87247], [-117.919671, -1.87247], [-117.919671, -3.319786], [-125.15625, -3.319786] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -1.87247], [-125.15625, -0.425154], [-117.919671, -0.425154], [-117.919671, -1.87247], [-125.15625, -1.87247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -0.425154], [-125.15625, 1.022162], [-117.919671, 1.022162], [-117.919671, -0.425154], [-125.15625, -0.425154] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 1.022162], [-125.15625, 2.469478], [-117.919671, 2.469478], [-117.919671, 1.022162], [-125.15625, 1.022162] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 2.469478], [-125.15625, 3.916793], [-117.919671, 3.916793], [-117.919671, 2.469478], [-125.15625, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 3.916793], [-125.15625, 5.364109], [-117.919671, 5.364109], [-117.919671, 3.916793], [-125.15625, 3.916793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 5.364109], [-125.15625, 6.811425], [-117.919671, 6.811425], [-117.919671, 5.364109], [-125.15625, 5.364109] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 6.811425], [-125.15625, 8.258741], [-117.919671, 8.258741], [-117.919671, 6.811425], [-125.15625, 6.811425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 8.258741], [-125.15625, 9.706057], [-117.919671, 9.706057], [-117.919671, 8.258741], [-125.15625, 8.258741] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 9.706057], [-125.15625, 11.153373], [-117.919671, 11.153373], [-117.919671, 9.706057], [-125.15625, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 11.153373], [-125.15625, 12.600688], [-117.919671, 12.600688], [-117.919671, 11.153373], [-125.15625, 11.153373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 12.600688], [-125.15625, 14.048004], [-117.919671, 14.048004], [-117.919671, 12.600688], [-125.15625, 12.600688] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 14.048004], [-125.15625, 15.49532], [-117.919671, 15.49532], [-117.919671, 14.048004], [-125.15625, 14.048004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 15.49532], [-125.15625, 16.942636], [-117.919671, 16.942636], [-117.919671, 15.49532], [-125.15625, 15.49532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 16.942636], [-125.15625, 18.389952], [-117.919671, 18.389952], [-117.919671, 16.942636], [-125.15625, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 18.389952], [-125.15625, 19.837268], [-117.919671, 19.837268], [-117.919671, 18.389952], [-125.15625, 18.389952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 19.837268], [-125.15625, 21.284583], [-117.919671, 21.284583], [-117.919671, 19.837268], [-125.15625, 19.837268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 21.284583], [-125.15625, 22.731899], [-117.919671, 22.731899], [-117.919671, 21.284583], [-125.15625, 21.284583] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 22.731899], [-125.15625, 24.179215], [-117.919671, 24.179215], [-117.919671, 22.731899], [-125.15625, 22.731899] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 24.179215], [-125.15625, 25.626531], [-117.919671, 25.626531], [-117.919671, 24.179215], [-125.15625, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 25.626531], [-125.15625, 27.073847], [-117.919671, 27.073847], [-117.919671, 25.626531], [-125.15625, 25.626531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 27.073847], [-125.15625, 28.521163], [-117.919671, 28.521163], [-117.919671, 27.073847], [-125.15625, 27.073847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 28.521163], [-125.15625, 29.968478], [-117.919671, 29.968478], [-117.919671, 28.521163], [-125.15625, 28.521163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 29.968478], [-125.15625, 31.415794], [-117.919671, 31.415794], [-117.919671, 29.968478], [-125.15625, 29.968478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 31.415794], [-125.15625, 32.86311], [-117.919671, 32.86311], [-117.919671, 31.415794], [-125.15625, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 32.86311], [-125.15625, 34.310426], [-117.919671, 34.310426], [-117.919671, 32.86311], [-125.15625, 32.86311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 34.310426], [-125.15625, 35.757742], [-117.919671, 35.757742], [-117.919671, 34.310426], [-125.15625, 34.310426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 35.757742], [-125.15625, 37.205058], [-117.919671, 37.205058], [-117.919671, 35.757742], [-125.15625, 35.757742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 37.205058], [-125.15625, 38.652373], [-117.919671, 38.652373], [-117.919671, 37.205058], [-125.15625, 37.205058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 38.652373], [-125.15625, 40.099689], [-117.919671, 40.099689], [-117.919671, 38.652373], [-125.15625, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 40.099689], [-125.15625, 41.547005], [-117.919671, 41.547005], [-117.919671, 40.099689], [-125.15625, 40.099689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 41.547005], [-125.15625, 42.994321], [-117.919671, 42.994321], [-117.919671, 41.547005], [-125.15625, 41.547005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 42.994321], [-125.15625, 44.441637], [-117.919671, 44.441637], [-117.919671, 42.994321], [-125.15625, 42.994321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 44.441637], [-125.15625, 45.888952], [-117.919671, 45.888952], [-117.919671, 44.441637], [-125.15625, 44.441637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 45.888952], [-125.15625, 47.336268], [-117.919671, 47.336268], [-117.919671, 45.888952], [-125.15625, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 47.336268], [-125.15625, 48.783584], [-117.919671, 48.783584], [-117.919671, 47.336268], [-125.15625, 47.336268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 48.783584], [-125.15625, 50.2309], [-117.919671, 50.2309], [-117.919671, 48.783584], [-125.15625, 48.783584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 50.2309], [-125.15625, 51.678216], [-117.919671, 51.678216], [-117.919671, 50.2309], [-125.15625, 50.2309] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 51.678216], [-125.15625, 53.125532], [-117.919671, 53.125532], [-117.919671, 51.678216], [-125.15625, 51.678216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 53.125532], [-125.15625, 54.572847], [-117.919671, 54.572847], [-117.919671, 53.125532], [-125.15625, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 54.572847], [-125.15625, 56.020163], [-117.919671, 56.020163], [-117.919671, 54.572847], [-125.15625, 54.572847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 56.020163], [-125.15625, 57.467479], [-117.919671, 57.467479], [-117.919671, 56.020163], [-125.15625, 56.020163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 57.467479], [-125.15625, 58.914795], [-117.919671, 58.914795], [-117.919671, 57.467479], [-125.15625, 57.467479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 58.914795], [-125.15625, 60.362111], [-117.919671, 60.362111], [-117.919671, 58.914795], [-125.15625, 58.914795] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 60.362111], [-125.15625, 61.809427], [-117.919671, 61.809427], [-117.919671, 60.362111], [-125.15625, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 61.809427], [-125.15625, 63.256742], [-117.919671, 63.256742], [-117.919671, 61.809427], [-125.15625, 61.809427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 63.256742], [-125.15625, 64.704058], [-117.919671, 64.704058], [-117.919671, 63.256742], [-125.15625, 63.256742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 64.704058], [-125.15625, 66.151374], [-117.919671, 66.151374], [-117.919671, 64.704058], [-125.15625, 64.704058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 66.151374], [-125.15625, 67.59869], [-117.919671, 67.59869], [-117.919671, 66.151374], [-125.15625, 66.151374] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 67.59869], [-125.15625, 69.046006], [-117.919671, 69.046006], [-117.919671, 67.59869], [-125.15625, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 69.046006], [-125.15625, 70.493322], [-117.919671, 70.493322], [-117.919671, 69.046006], [-125.15625, 69.046006] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 70.493322], [-125.15625, 71.940637], [-117.919671, 71.940637], [-117.919671, 70.493322], [-125.15625, 70.493322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 71.940637], [-125.15625, 73.387953], [-117.919671, 73.387953], [-117.919671, 71.940637], [-125.15625, 71.940637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 73.387953], [-125.15625, 74.835269], [-117.919671, 74.835269], [-117.919671, 73.387953], [-125.15625, 73.387953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 74.835269], [-125.15625, 76.282585], [-117.919671, 76.282585], [-117.919671, 74.835269], [-125.15625, 74.835269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 76.282585], [-125.15625, 77.729901], [-117.919671, 77.729901], [-117.919671, 76.282585], [-125.15625, 76.282585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -80.027525], [-117.919671, -78.580209], [-110.683092, -78.580209], [-110.683092, -80.027525], [-117.919671, -80.027525] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -78.580209], [-117.919671, -77.132893], [-110.683092, -77.132893], [-110.683092, -78.580209], [-117.919671, -78.580209] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -77.132893], [-117.919671, -75.685577], [-110.683092, -75.685577], [-110.683092, -77.132893], [-117.919671, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -75.685577], [-117.919671, -74.238262], [-110.683092, -74.238262], [-110.683092, -75.685577], [-117.919671, -75.685577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -74.238262], [-117.919671, -72.790946], [-110.683092, -72.790946], [-110.683092, -74.238262], [-117.919671, -74.238262] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -72.790946], [-117.919671, -71.34363], [-110.683092, -71.34363], [-110.683092, -72.790946], [-117.919671, -72.790946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -71.34363], [-117.919671, -69.896314], [-110.683092, -69.896314], [-110.683092, -71.34363], [-117.919671, -71.34363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -69.896314], [-117.919671, -68.448998], [-110.683092, -68.448998], [-110.683092, -69.896314], [-117.919671, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -68.448998], [-117.919671, -67.001682], [-110.683092, -67.001682], [-110.683092, -68.448998], [-117.919671, -68.448998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -67.001682], [-117.919671, -65.554367], [-110.683092, -65.554367], [-110.683092, -67.001682], [-117.919671, -67.001682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -65.554367], [-117.919671, -64.107051], [-110.683092, -64.107051], [-110.683092, -65.554367], [-117.919671, -65.554367] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -64.107051], [-117.919671, -62.659735], [-110.683092, -62.659735], [-110.683092, -64.107051], [-117.919671, -64.107051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -62.659735], [-117.919671, -61.212419], [-110.683092, -61.212419], [-110.683092, -62.659735], [-117.919671, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -61.212419], [-117.919671, -59.765103], [-110.683092, -59.765103], [-110.683092, -61.212419], [-117.919671, -61.212419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -59.765103], [-117.919671, -58.317787], [-110.683092, -58.317787], [-110.683092, -59.765103], [-117.919671, -59.765103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -58.317787], [-117.919671, -56.870472], [-110.683092, -56.870472], [-110.683092, -58.317787], [-117.919671, -58.317787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -56.870472], [-117.919671, -55.423156], [-110.683092, -55.423156], [-110.683092, -56.870472], [-117.919671, -56.870472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -55.423156], [-117.919671, -53.97584], [-110.683092, -53.97584], [-110.683092, -55.423156], [-117.919671, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -53.97584], [-117.919671, -52.528524], [-110.683092, -52.528524], [-110.683092, -53.97584], [-117.919671, -53.97584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -52.528524], [-117.919671, -51.081208], [-110.683092, -51.081208], [-110.683092, -52.528524], [-117.919671, -52.528524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -51.081208], [-117.919671, -49.633892], [-110.683092, -49.633892], [-110.683092, -51.081208], [-117.919671, -51.081208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -49.633892], [-117.919671, -48.186577], [-110.683092, -48.186577], [-110.683092, -49.633892], [-117.919671, -49.633892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -48.186577], [-117.919671, -46.739261], [-110.683092, -46.739261], [-110.683092, -48.186577], [-117.919671, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -46.739261], [-117.919671, -45.291945], [-110.683092, -45.291945], [-110.683092, -46.739261], [-117.919671, -46.739261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -45.291945], [-117.919671, -43.844629], [-110.683092, -43.844629], [-110.683092, -45.291945], [-117.919671, -45.291945] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -43.844629], [-117.919671, -42.397313], [-110.683092, -42.397313], [-110.683092, -43.844629], [-117.919671, -43.844629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -42.397313], [-117.919671, -40.949997], [-110.683092, -40.949997], [-110.683092, -42.397313], [-117.919671, -42.397313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -40.949997], [-117.919671, -39.502682], [-110.683092, -39.502682], [-110.683092, -40.949997], [-117.919671, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -39.502682], [-117.919671, -38.055366], [-110.683092, -38.055366], [-110.683092, -39.502682], [-117.919671, -39.502682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -38.055366], [-117.919671, -36.60805], [-110.683092, -36.60805], [-110.683092, -38.055366], [-117.919671, -38.055366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -36.60805], [-117.919671, -35.160734], [-110.683092, -35.160734], [-110.683092, -36.60805], [-117.919671, -36.60805] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -35.160734], [-117.919671, -33.713418], [-110.683092, -33.713418], [-110.683092, -35.160734], [-117.919671, -35.160734] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -33.713418], [-117.919671, -32.266102], [-110.683092, -32.266102], [-110.683092, -33.713418], [-117.919671, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -32.266102], [-117.919671, -30.818787], [-110.683092, -30.818787], [-110.683092, -32.266102], [-117.919671, -32.266102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -30.818787], [-117.919671, -29.371471], [-110.683092, -29.371471], [-110.683092, -30.818787], [-117.919671, -30.818787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -29.371471], [-117.919671, -27.924155], [-110.683092, -27.924155], [-110.683092, -29.371471], [-117.919671, -29.371471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -27.924155], [-117.919671, -26.476839], [-110.683092, -26.476839], [-110.683092, -27.924155], [-117.919671, -27.924155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -26.476839], [-117.919671, -25.029523], [-110.683092, -25.029523], [-110.683092, -26.476839], [-117.919671, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -25.029523], [-117.919671, -23.582207], [-110.683092, -23.582207], [-110.683092, -25.029523], [-117.919671, -25.029523] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -23.582207], [-117.919671, -22.134892], [-110.683092, -22.134892], [-110.683092, -23.582207], [-117.919671, -23.582207] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -22.134892], [-117.919671, -20.687576], [-110.683092, -20.687576], [-110.683092, -22.134892], [-117.919671, -22.134892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -20.687576], [-117.919671, -19.24026], [-110.683092, -19.24026], [-110.683092, -20.687576], [-117.919671, -20.687576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -19.24026], [-117.919671, -17.792944], [-110.683092, -17.792944], [-110.683092, -19.24026], [-117.919671, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -17.792944], [-117.919671, -16.345628], [-110.683092, -16.345628], [-110.683092, -17.792944], [-117.919671, -17.792944] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -16.345628], [-117.919671, -14.898312], [-110.683092, -14.898312], [-110.683092, -16.345628], [-117.919671, -16.345628] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -14.898312], [-117.919671, -13.450997], [-110.683092, -13.450997], [-110.683092, -14.898312], [-117.919671, -14.898312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -13.450997], [-117.919671, -12.003681], [-110.683092, -12.003681], [-110.683092, -13.450997], [-117.919671, -13.450997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -12.003681], [-117.919671, -10.556365], [-110.683092, -10.556365], [-110.683092, -12.003681], [-117.919671, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -10.556365], [-117.919671, -9.109049], [-110.683092, -9.109049], [-110.683092, -10.556365], [-117.919671, -10.556365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -9.109049], [-117.919671, -7.661733], [-110.683092, -7.661733], [-110.683092, -9.109049], [-117.919671, -9.109049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -7.661733], [-117.919671, -6.214417], [-110.683092, -6.214417], [-110.683092, -7.661733], [-117.919671, -7.661733] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -6.214417], [-117.919671, -4.767102], [-110.683092, -4.767102], [-110.683092, -6.214417], [-117.919671, -6.214417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -4.767102], [-117.919671, -3.319786], [-110.683092, -3.319786], [-110.683092, -4.767102], [-117.919671, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -3.319786], [-117.919671, -1.87247], [-110.683092, -1.87247], [-110.683092, -3.319786], [-117.919671, -3.319786] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -1.87247], [-117.919671, -0.425154], [-110.683092, -0.425154], [-110.683092, -1.87247], [-117.919671, -1.87247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -0.425154], [-117.919671, 1.022162], [-110.683092, 1.022162], [-110.683092, -0.425154], [-117.919671, -0.425154] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 1.022162], [-117.919671, 2.469478], [-110.683092, 2.469478], [-110.683092, 1.022162], [-117.919671, 1.022162] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 2.469478], [-117.919671, 3.916793], [-110.683092, 3.916793], [-110.683092, 2.469478], [-117.919671, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 3.916793], [-117.919671, 5.364109], [-110.683092, 5.364109], [-110.683092, 3.916793], [-117.919671, 3.916793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 5.364109], [-117.919671, 6.811425], [-110.683092, 6.811425], [-110.683092, 5.364109], [-117.919671, 5.364109] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 6.811425], [-117.919671, 8.258741], [-110.683092, 8.258741], [-110.683092, 6.811425], [-117.919671, 6.811425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 8.258741], [-117.919671, 9.706057], [-110.683092, 9.706057], [-110.683092, 8.258741], [-117.919671, 8.258741] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 9.706057], [-117.919671, 11.153373], [-110.683092, 11.153373], [-110.683092, 9.706057], [-117.919671, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 11.153373], [-117.919671, 12.600688], [-110.683092, 12.600688], [-110.683092, 11.153373], [-117.919671, 11.153373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 12.600688], [-117.919671, 14.048004], [-110.683092, 14.048004], [-110.683092, 12.600688], [-117.919671, 12.600688] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 14.048004], [-117.919671, 15.49532], [-110.683092, 15.49532], [-110.683092, 14.048004], [-117.919671, 14.048004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 15.49532], [-117.919671, 16.942636], [-110.683092, 16.942636], [-110.683092, 15.49532], [-117.919671, 15.49532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 16.942636], [-117.919671, 18.389952], [-110.683092, 18.389952], [-110.683092, 16.942636], [-117.919671, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 18.389952], [-117.919671, 19.837268], [-110.683092, 19.837268], [-110.683092, 18.389952], [-117.919671, 18.389952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 19.837268], [-117.919671, 21.284583], [-110.683092, 21.284583], [-110.683092, 19.837268], [-117.919671, 19.837268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 21.284583], [-117.919671, 22.731899], [-110.683092, 22.731899], [-110.683092, 21.284583], [-117.919671, 21.284583] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 22.731899], [-117.919671, 24.179215], [-110.683092, 24.179215], [-110.683092, 22.731899], [-117.919671, 22.731899] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 24.179215], [-117.919671, 25.626531], [-110.683092, 25.626531], [-110.683092, 24.179215], [-117.919671, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 25.626531], [-117.919671, 27.073847], [-110.683092, 27.073847], [-110.683092, 25.626531], [-117.919671, 25.626531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 27.073847], [-117.919671, 28.521163], [-110.683092, 28.521163], [-110.683092, 27.073847], [-117.919671, 27.073847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 28.521163], [-117.919671, 29.968478], [-110.683092, 29.968478], [-110.683092, 28.521163], [-117.919671, 28.521163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 29.968478], [-117.919671, 31.415794], [-110.683092, 31.415794], [-110.683092, 29.968478], [-117.919671, 29.968478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 31.415794], [-117.919671, 32.86311], [-110.683092, 32.86311], [-110.683092, 31.415794], [-117.919671, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 32.86311], [-117.919671, 34.310426], [-110.683092, 34.310426], [-110.683092, 32.86311], [-117.919671, 32.86311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 34.310426], [-117.919671, 35.757742], [-110.683092, 35.757742], [-110.683092, 34.310426], [-117.919671, 34.310426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 35.757742], [-117.919671, 37.205058], [-110.683092, 37.205058], [-110.683092, 35.757742], [-117.919671, 35.757742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 37.205058], [-117.919671, 38.652373], [-110.683092, 38.652373], [-110.683092, 37.205058], [-117.919671, 37.205058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 38.652373], [-117.919671, 40.099689], [-110.683092, 40.099689], [-110.683092, 38.652373], [-117.919671, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 40.099689], [-117.919671, 41.547005], [-110.683092, 41.547005], [-110.683092, 40.099689], [-117.919671, 40.099689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 41.547005], [-117.919671, 42.994321], [-110.683092, 42.994321], [-110.683092, 41.547005], [-117.919671, 41.547005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 42.994321], [-117.919671, 44.441637], [-110.683092, 44.441637], [-110.683092, 42.994321], [-117.919671, 42.994321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 44.441637], [-117.919671, 45.888952], [-110.683092, 45.888952], [-110.683092, 44.441637], [-117.919671, 44.441637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 45.888952], [-117.919671, 47.336268], [-110.683092, 47.336268], [-110.683092, 45.888952], [-117.919671, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 47.336268], [-117.919671, 48.783584], [-110.683092, 48.783584], [-110.683092, 47.336268], [-117.919671, 47.336268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 48.783584], [-117.919671, 50.2309], [-110.683092, 50.2309], [-110.683092, 48.783584], [-117.919671, 48.783584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 50.2309], [-117.919671, 51.678216], [-110.683092, 51.678216], [-110.683092, 50.2309], [-117.919671, 50.2309] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 51.678216], [-117.919671, 53.125532], [-110.683092, 53.125532], [-110.683092, 51.678216], [-117.919671, 51.678216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 53.125532], [-117.919671, 54.572847], [-110.683092, 54.572847], [-110.683092, 53.125532], [-117.919671, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 54.572847], [-117.919671, 56.020163], [-110.683092, 56.020163], [-110.683092, 54.572847], [-117.919671, 54.572847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 56.020163], [-117.919671, 57.467479], [-110.683092, 57.467479], [-110.683092, 56.020163], [-117.919671, 56.020163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 57.467479], [-117.919671, 58.914795], [-110.683092, 58.914795], [-110.683092, 57.467479], [-117.919671, 57.467479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 58.914795], [-117.919671, 60.362111], [-110.683092, 60.362111], [-110.683092, 58.914795], [-117.919671, 58.914795] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 60.362111], [-117.919671, 61.809427], [-110.683092, 61.809427], [-110.683092, 60.362111], [-117.919671, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 61.809427], [-117.919671, 63.256742], [-110.683092, 63.256742], [-110.683092, 61.809427], [-117.919671, 61.809427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 63.256742], [-117.919671, 64.704058], [-110.683092, 64.704058], [-110.683092, 63.256742], [-117.919671, 63.256742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 64.704058], [-117.919671, 66.151374], [-110.683092, 66.151374], [-110.683092, 64.704058], [-117.919671, 64.704058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 66.151374], [-117.919671, 67.59869], [-110.683092, 67.59869], [-110.683092, 66.151374], [-117.919671, 66.151374] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 67.59869], [-117.919671, 69.046006], [-110.683092, 69.046006], [-110.683092, 67.59869], [-117.919671, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 69.046006], [-117.919671, 70.493322], [-110.683092, 70.493322], [-110.683092, 69.046006], [-117.919671, 69.046006] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 70.493322], [-117.919671, 71.940637], [-110.683092, 71.940637], [-110.683092, 70.493322], [-117.919671, 70.493322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 71.940637], [-117.919671, 73.387953], [-110.683092, 73.387953], [-110.683092, 71.940637], [-117.919671, 71.940637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 73.387953], [-117.919671, 74.835269], [-110.683092, 74.835269], [-110.683092, 73.387953], [-117.919671, 73.387953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 74.835269], [-117.919671, 76.282585], [-110.683092, 76.282585], [-110.683092, 74.835269], [-117.919671, 74.835269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 76.282585], [-117.919671, 77.729901], [-110.683092, 77.729901], [-110.683092, 76.282585], [-117.919671, 76.282585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -80.027525], [-110.683092, -78.580209], [-103.446513, -78.580209], [-103.446513, -80.027525], [-110.683092, -80.027525] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -78.580209], [-110.683092, -77.132893], [-103.446513, -77.132893], [-103.446513, -78.580209], [-110.683092, -78.580209] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -77.132893], [-110.683092, -75.685577], [-103.446513, -75.685577], [-103.446513, -77.132893], [-110.683092, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -75.685577], [-110.683092, -74.238262], [-103.446513, -74.238262], [-103.446513, -75.685577], [-110.683092, -75.685577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -74.238262], [-110.683092, -72.790946], [-103.446513, -72.790946], [-103.446513, -74.238262], [-110.683092, -74.238262] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -72.790946], [-110.683092, -71.34363], [-103.446513, -71.34363], [-103.446513, -72.790946], [-110.683092, -72.790946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -71.34363], [-110.683092, -69.896314], [-103.446513, -69.896314], [-103.446513, -71.34363], [-110.683092, -71.34363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -69.896314], [-110.683092, -68.448998], [-103.446513, -68.448998], [-103.446513, -69.896314], [-110.683092, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -68.448998], [-110.683092, -67.001682], [-103.446513, -67.001682], [-103.446513, -68.448998], [-110.683092, -68.448998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -67.001682], [-110.683092, -65.554367], [-103.446513, -65.554367], [-103.446513, -67.001682], [-110.683092, -67.001682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -65.554367], [-110.683092, -64.107051], [-103.446513, -64.107051], [-103.446513, -65.554367], [-110.683092, -65.554367] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -64.107051], [-110.683092, -62.659735], [-103.446513, -62.659735], [-103.446513, -64.107051], [-110.683092, -64.107051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -62.659735], [-110.683092, -61.212419], [-103.446513, -61.212419], [-103.446513, -62.659735], [-110.683092, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -61.212419], [-110.683092, -59.765103], [-103.446513, -59.765103], [-103.446513, -61.212419], [-110.683092, -61.212419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -59.765103], [-110.683092, -58.317787], [-103.446513, -58.317787], [-103.446513, -59.765103], [-110.683092, -59.765103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -58.317787], [-110.683092, -56.870472], [-103.446513, -56.870472], [-103.446513, -58.317787], [-110.683092, -58.317787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -56.870472], [-110.683092, -55.423156], [-103.446513, -55.423156], [-103.446513, -56.870472], [-110.683092, -56.870472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -55.423156], [-110.683092, -53.97584], [-103.446513, -53.97584], [-103.446513, -55.423156], [-110.683092, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -53.97584], [-110.683092, -52.528524], [-103.446513, -52.528524], [-103.446513, -53.97584], [-110.683092, -53.97584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -52.528524], [-110.683092, -51.081208], [-103.446513, -51.081208], [-103.446513, -52.528524], [-110.683092, -52.528524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -51.081208], [-110.683092, -49.633892], [-103.446513, -49.633892], [-103.446513, -51.081208], [-110.683092, -51.081208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -49.633892], [-110.683092, -48.186577], [-103.446513, -48.186577], [-103.446513, -49.633892], [-110.683092, -49.633892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -48.186577], [-110.683092, -46.739261], [-103.446513, -46.739261], [-103.446513, -48.186577], [-110.683092, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -46.739261], [-110.683092, -45.291945], [-103.446513, -45.291945], [-103.446513, -46.739261], [-110.683092, -46.739261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -45.291945], [-110.683092, -43.844629], [-103.446513, -43.844629], [-103.446513, -45.291945], [-110.683092, -45.291945] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -43.844629], [-110.683092, -42.397313], [-103.446513, -42.397313], [-103.446513, -43.844629], [-110.683092, -43.844629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -42.397313], [-110.683092, -40.949997], [-103.446513, -40.949997], [-103.446513, -42.397313], [-110.683092, -42.397313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -40.949997], [-110.683092, -39.502682], [-103.446513, -39.502682], [-103.446513, -40.949997], [-110.683092, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -39.502682], [-110.683092, -38.055366], [-103.446513, -38.055366], [-103.446513, -39.502682], [-110.683092, -39.502682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -38.055366], [-110.683092, -36.60805], [-103.446513, -36.60805], [-103.446513, -38.055366], [-110.683092, -38.055366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -36.60805], [-110.683092, -35.160734], [-103.446513, -35.160734], [-103.446513, -36.60805], [-110.683092, -36.60805] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -35.160734], [-110.683092, -33.713418], [-103.446513, -33.713418], [-103.446513, -35.160734], [-110.683092, -35.160734] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -33.713418], [-110.683092, -32.266102], [-103.446513, -32.266102], [-103.446513, -33.713418], [-110.683092, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -32.266102], [-110.683092, -30.818787], [-103.446513, -30.818787], [-103.446513, -32.266102], [-110.683092, -32.266102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -30.818787], [-110.683092, -29.371471], [-103.446513, -29.371471], [-103.446513, -30.818787], [-110.683092, -30.818787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -29.371471], [-110.683092, -27.924155], [-103.446513, -27.924155], [-103.446513, -29.371471], [-110.683092, -29.371471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -27.924155], [-110.683092, -26.476839], [-103.446513, -26.476839], [-103.446513, -27.924155], [-110.683092, -27.924155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -26.476839], [-110.683092, -25.029523], [-103.446513, -25.029523], [-103.446513, -26.476839], [-110.683092, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -25.029523], [-110.683092, -23.582207], [-103.446513, -23.582207], [-103.446513, -25.029523], [-110.683092, -25.029523] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -23.582207], [-110.683092, -22.134892], [-103.446513, -22.134892], [-103.446513, -23.582207], [-110.683092, -23.582207] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -22.134892], [-110.683092, -20.687576], [-103.446513, -20.687576], [-103.446513, -22.134892], [-110.683092, -22.134892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -20.687576], [-110.683092, -19.24026], [-103.446513, -19.24026], [-103.446513, -20.687576], [-110.683092, -20.687576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -19.24026], [-110.683092, -17.792944], [-103.446513, -17.792944], [-103.446513, -19.24026], [-110.683092, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -17.792944], [-110.683092, -16.345628], [-103.446513, -16.345628], [-103.446513, -17.792944], [-110.683092, -17.792944] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -16.345628], [-110.683092, -14.898312], [-103.446513, -14.898312], [-103.446513, -16.345628], [-110.683092, -16.345628] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -14.898312], [-110.683092, -13.450997], [-103.446513, -13.450997], [-103.446513, -14.898312], [-110.683092, -14.898312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -13.450997], [-110.683092, -12.003681], [-103.446513, -12.003681], [-103.446513, -13.450997], [-110.683092, -13.450997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -12.003681], [-110.683092, -10.556365], [-103.446513, -10.556365], [-103.446513, -12.003681], [-110.683092, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -10.556365], [-110.683092, -9.109049], [-103.446513, -9.109049], [-103.446513, -10.556365], [-110.683092, -10.556365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -9.109049], [-110.683092, -7.661733], [-103.446513, -7.661733], [-103.446513, -9.109049], [-110.683092, -9.109049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -7.661733], [-110.683092, -6.214417], [-103.446513, -6.214417], [-103.446513, -7.661733], [-110.683092, -7.661733] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -6.214417], [-110.683092, -4.767102], [-103.446513, -4.767102], [-103.446513, -6.214417], [-110.683092, -6.214417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -4.767102], [-110.683092, -3.319786], [-103.446513, -3.319786], [-103.446513, -4.767102], [-110.683092, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -3.319786], [-110.683092, -1.87247], [-103.446513, -1.87247], [-103.446513, -3.319786], [-110.683092, -3.319786] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -1.87247], [-110.683092, -0.425154], [-103.446513, -0.425154], [-103.446513, -1.87247], [-110.683092, -1.87247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -0.425154], [-110.683092, 1.022162], [-103.446513, 1.022162], [-103.446513, -0.425154], [-110.683092, -0.425154] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 1.022162], [-110.683092, 2.469478], [-103.446513, 2.469478], [-103.446513, 1.022162], [-110.683092, 1.022162] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 2.469478], [-110.683092, 3.916793], [-103.446513, 3.916793], [-103.446513, 2.469478], [-110.683092, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 3.916793], [-110.683092, 5.364109], [-103.446513, 5.364109], [-103.446513, 3.916793], [-110.683092, 3.916793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 5.364109], [-110.683092, 6.811425], [-103.446513, 6.811425], [-103.446513, 5.364109], [-110.683092, 5.364109] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 6.811425], [-110.683092, 8.258741], [-103.446513, 8.258741], [-103.446513, 6.811425], [-110.683092, 6.811425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 8.258741], [-110.683092, 9.706057], [-103.446513, 9.706057], [-103.446513, 8.258741], [-110.683092, 8.258741] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 9.706057], [-110.683092, 11.153373], [-103.446513, 11.153373], [-103.446513, 9.706057], [-110.683092, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 11.153373], [-110.683092, 12.600688], [-103.446513, 12.600688], [-103.446513, 11.153373], [-110.683092, 11.153373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 12.600688], [-110.683092, 14.048004], [-103.446513, 14.048004], [-103.446513, 12.600688], [-110.683092, 12.600688] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 14.048004], [-110.683092, 15.49532], [-103.446513, 15.49532], [-103.446513, 14.048004], [-110.683092, 14.048004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 15.49532], [-110.683092, 16.942636], [-103.446513, 16.942636], [-103.446513, 15.49532], [-110.683092, 15.49532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 16.942636], [-110.683092, 18.389952], [-103.446513, 18.389952], [-103.446513, 16.942636], [-110.683092, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 18.389952], [-110.683092, 19.837268], [-103.446513, 19.837268], [-103.446513, 18.389952], [-110.683092, 18.389952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 19.837268], [-110.683092, 21.284583], [-103.446513, 21.284583], [-103.446513, 19.837268], [-110.683092, 19.837268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 21.284583], [-110.683092, 22.731899], [-103.446513, 22.731899], [-103.446513, 21.284583], [-110.683092, 21.284583] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 22.731899], [-110.683092, 24.179215], [-103.446513, 24.179215], [-103.446513, 22.731899], [-110.683092, 22.731899] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 24.179215], [-110.683092, 25.626531], [-103.446513, 25.626531], [-103.446513, 24.179215], [-110.683092, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 25.626531], [-110.683092, 27.073847], [-103.446513, 27.073847], [-103.446513, 25.626531], [-110.683092, 25.626531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 27.073847], [-110.683092, 28.521163], [-103.446513, 28.521163], [-103.446513, 27.073847], [-110.683092, 27.073847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 28.521163], [-110.683092, 29.968478], [-103.446513, 29.968478], [-103.446513, 28.521163], [-110.683092, 28.521163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 29.968478], [-110.683092, 31.415794], [-103.446513, 31.415794], [-103.446513, 29.968478], [-110.683092, 29.968478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 31.415794], [-110.683092, 32.86311], [-103.446513, 32.86311], [-103.446513, 31.415794], [-110.683092, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 32.86311], [-110.683092, 34.310426], [-103.446513, 34.310426], [-103.446513, 32.86311], [-110.683092, 32.86311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 34.310426], [-110.683092, 35.757742], [-103.446513, 35.757742], [-103.446513, 34.310426], [-110.683092, 34.310426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 35.757742], [-110.683092, 37.205058], [-103.446513, 37.205058], [-103.446513, 35.757742], [-110.683092, 35.757742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 37.205058], [-110.683092, 38.652373], [-103.446513, 38.652373], [-103.446513, 37.205058], [-110.683092, 37.205058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 38.652373], [-110.683092, 40.099689], [-103.446513, 40.099689], [-103.446513, 38.652373], [-110.683092, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 40.099689], [-110.683092, 41.547005], [-103.446513, 41.547005], [-103.446513, 40.099689], [-110.683092, 40.099689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 41.547005], [-110.683092, 42.994321], [-103.446513, 42.994321], [-103.446513, 41.547005], [-110.683092, 41.547005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 42.994321], [-110.683092, 44.441637], [-103.446513, 44.441637], [-103.446513, 42.994321], [-110.683092, 42.994321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 44.441637], [-110.683092, 45.888952], [-103.446513, 45.888952], [-103.446513, 44.441637], [-110.683092, 44.441637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 45.888952], [-110.683092, 47.336268], [-103.446513, 47.336268], [-103.446513, 45.888952], [-110.683092, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 47.336268], [-110.683092, 48.783584], [-103.446513, 48.783584], [-103.446513, 47.336268], [-110.683092, 47.336268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 48.783584], [-110.683092, 50.2309], [-103.446513, 50.2309], [-103.446513, 48.783584], [-110.683092, 48.783584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 50.2309], [-110.683092, 51.678216], [-103.446513, 51.678216], [-103.446513, 50.2309], [-110.683092, 50.2309] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 51.678216], [-110.683092, 53.125532], [-103.446513, 53.125532], [-103.446513, 51.678216], [-110.683092, 51.678216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 53.125532], [-110.683092, 54.572847], [-103.446513, 54.572847], [-103.446513, 53.125532], [-110.683092, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 54.572847], [-110.683092, 56.020163], [-103.446513, 56.020163], [-103.446513, 54.572847], [-110.683092, 54.572847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 56.020163], [-110.683092, 57.467479], [-103.446513, 57.467479], [-103.446513, 56.020163], [-110.683092, 56.020163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 57.467479], [-110.683092, 58.914795], [-103.446513, 58.914795], [-103.446513, 57.467479], [-110.683092, 57.467479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 58.914795], [-110.683092, 60.362111], [-103.446513, 60.362111], [-103.446513, 58.914795], [-110.683092, 58.914795] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 60.362111], [-110.683092, 61.809427], [-103.446513, 61.809427], [-103.446513, 60.362111], [-110.683092, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 61.809427], [-110.683092, 63.256742], [-103.446513, 63.256742], [-103.446513, 61.809427], [-110.683092, 61.809427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 63.256742], [-110.683092, 64.704058], [-103.446513, 64.704058], [-103.446513, 63.256742], [-110.683092, 63.256742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 64.704058], [-110.683092, 66.151374], [-103.446513, 66.151374], [-103.446513, 64.704058], [-110.683092, 64.704058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 66.151374], [-110.683092, 67.59869], [-103.446513, 67.59869], [-103.446513, 66.151374], [-110.683092, 66.151374] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 67.59869], [-110.683092, 69.046006], [-103.446513, 69.046006], [-103.446513, 67.59869], [-110.683092, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 69.046006], [-110.683092, 70.493322], [-103.446513, 70.493322], [-103.446513, 69.046006], [-110.683092, 69.046006] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 70.493322], [-110.683092, 71.940637], [-103.446513, 71.940637], [-103.446513, 70.493322], [-110.683092, 70.493322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 71.940637], [-110.683092, 73.387953], [-103.446513, 73.387953], [-103.446513, 71.940637], [-110.683092, 71.940637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 73.387953], [-110.683092, 74.835269], [-103.446513, 74.835269], [-103.446513, 73.387953], [-110.683092, 73.387953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 74.835269], [-110.683092, 76.282585], [-103.446513, 76.282585], [-103.446513, 74.835269], [-110.683092, 74.835269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 76.282585], [-110.683092, 77.729901], [-103.446513, 77.729901], [-103.446513, 76.282585], [-110.683092, 76.282585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -80.027525], [-103.446513, -78.580209], [-96.209933, -78.580209], [-96.209933, -80.027525], [-103.446513, -80.027525] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -78.580209], [-103.446513, -77.132893], [-96.209933, -77.132893], [-96.209933, -78.580209], [-103.446513, -78.580209] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -77.132893], [-103.446513, -75.685577], [-96.209933, -75.685577], [-96.209933, -77.132893], [-103.446513, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -75.685577], [-103.446513, -74.238262], [-96.209933, -74.238262], [-96.209933, -75.685577], [-103.446513, -75.685577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -74.238262], [-103.446513, -72.790946], [-96.209933, -72.790946], [-96.209933, -74.238262], [-103.446513, -74.238262] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -72.790946], [-103.446513, -71.34363], [-96.209933, -71.34363], [-96.209933, -72.790946], [-103.446513, -72.790946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -71.34363], [-103.446513, -69.896314], [-96.209933, -69.896314], [-96.209933, -71.34363], [-103.446513, -71.34363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -69.896314], [-103.446513, -68.448998], [-96.209933, -68.448998], [-96.209933, -69.896314], [-103.446513, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -68.448998], [-103.446513, -67.001682], [-96.209933, -67.001682], [-96.209933, -68.448998], [-103.446513, -68.448998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -67.001682], [-103.446513, -65.554367], [-96.209933, -65.554367], [-96.209933, -67.001682], [-103.446513, -67.001682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -65.554367], [-103.446513, -64.107051], [-96.209933, -64.107051], [-96.209933, -65.554367], [-103.446513, -65.554367] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -64.107051], [-103.446513, -62.659735], [-96.209933, -62.659735], [-96.209933, -64.107051], [-103.446513, -64.107051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -62.659735], [-103.446513, -61.212419], [-96.209933, -61.212419], [-96.209933, -62.659735], [-103.446513, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -61.212419], [-103.446513, -59.765103], [-96.209933, -59.765103], [-96.209933, -61.212419], [-103.446513, -61.212419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -59.765103], [-103.446513, -58.317787], [-96.209933, -58.317787], [-96.209933, -59.765103], [-103.446513, -59.765103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -58.317787], [-103.446513, -56.870472], [-96.209933, -56.870472], [-96.209933, -58.317787], [-103.446513, -58.317787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -56.870472], [-103.446513, -55.423156], [-96.209933, -55.423156], [-96.209933, -56.870472], [-103.446513, -56.870472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -55.423156], [-103.446513, -53.97584], [-96.209933, -53.97584], [-96.209933, -55.423156], [-103.446513, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -53.97584], [-103.446513, -52.528524], [-96.209933, -52.528524], [-96.209933, -53.97584], [-103.446513, -53.97584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -52.528524], [-103.446513, -51.081208], [-96.209933, -51.081208], [-96.209933, -52.528524], [-103.446513, -52.528524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -51.081208], [-103.446513, -49.633892], [-96.209933, -49.633892], [-96.209933, -51.081208], [-103.446513, -51.081208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -49.633892], [-103.446513, -48.186577], [-96.209933, -48.186577], [-96.209933, -49.633892], [-103.446513, -49.633892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -48.186577], [-103.446513, -46.739261], [-96.209933, -46.739261], [-96.209933, -48.186577], [-103.446513, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -46.739261], [-103.446513, -45.291945], [-96.209933, -45.291945], [-96.209933, -46.739261], [-103.446513, -46.739261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -45.291945], [-103.446513, -43.844629], [-96.209933, -43.844629], [-96.209933, -45.291945], [-103.446513, -45.291945] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -43.844629], [-103.446513, -42.397313], [-96.209933, -42.397313], [-96.209933, -43.844629], [-103.446513, -43.844629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -42.397313], [-103.446513, -40.949997], [-96.209933, -40.949997], [-96.209933, -42.397313], [-103.446513, -42.397313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -40.949997], [-103.446513, -39.502682], [-96.209933, -39.502682], [-96.209933, -40.949997], [-103.446513, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -39.502682], [-103.446513, -38.055366], [-96.209933, -38.055366], [-96.209933, -39.502682], [-103.446513, -39.502682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -38.055366], [-103.446513, -36.60805], [-96.209933, -36.60805], [-96.209933, -38.055366], [-103.446513, -38.055366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -36.60805], [-103.446513, -35.160734], [-96.209933, -35.160734], [-96.209933, -36.60805], [-103.446513, -36.60805] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -35.160734], [-103.446513, -33.713418], [-96.209933, -33.713418], [-96.209933, -35.160734], [-103.446513, -35.160734] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -33.713418], [-103.446513, -32.266102], [-96.209933, -32.266102], [-96.209933, -33.713418], [-103.446513, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -32.266102], [-103.446513, -30.818787], [-96.209933, -30.818787], [-96.209933, -32.266102], [-103.446513, -32.266102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -30.818787], [-103.446513, -29.371471], [-96.209933, -29.371471], [-96.209933, -30.818787], [-103.446513, -30.818787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -29.371471], [-103.446513, -27.924155], [-96.209933, -27.924155], [-96.209933, -29.371471], [-103.446513, -29.371471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -27.924155], [-103.446513, -26.476839], [-96.209933, -26.476839], [-96.209933, -27.924155], [-103.446513, -27.924155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -26.476839], [-103.446513, -25.029523], [-96.209933, -25.029523], [-96.209933, -26.476839], [-103.446513, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -25.029523], [-103.446513, -23.582207], [-96.209933, -23.582207], [-96.209933, -25.029523], [-103.446513, -25.029523] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -23.582207], [-103.446513, -22.134892], [-96.209933, -22.134892], [-96.209933, -23.582207], [-103.446513, -23.582207] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -22.134892], [-103.446513, -20.687576], [-96.209933, -20.687576], [-96.209933, -22.134892], [-103.446513, -22.134892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -20.687576], [-103.446513, -19.24026], [-96.209933, -19.24026], [-96.209933, -20.687576], [-103.446513, -20.687576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -19.24026], [-103.446513, -17.792944], [-96.209933, -17.792944], [-96.209933, -19.24026], [-103.446513, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -17.792944], [-103.446513, -16.345628], [-96.209933, -16.345628], [-96.209933, -17.792944], [-103.446513, -17.792944] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -16.345628], [-103.446513, -14.898312], [-96.209933, -14.898312], [-96.209933, -16.345628], [-103.446513, -16.345628] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -14.898312], [-103.446513, -13.450997], [-96.209933, -13.450997], [-96.209933, -14.898312], [-103.446513, -14.898312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -13.450997], [-103.446513, -12.003681], [-96.209933, -12.003681], [-96.209933, -13.450997], [-103.446513, -13.450997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -12.003681], [-103.446513, -10.556365], [-96.209933, -10.556365], [-96.209933, -12.003681], [-103.446513, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -10.556365], [-103.446513, -9.109049], [-96.209933, -9.109049], [-96.209933, -10.556365], [-103.446513, -10.556365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -9.109049], [-103.446513, -7.661733], [-96.209933, -7.661733], [-96.209933, -9.109049], [-103.446513, -9.109049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -7.661733], [-103.446513, -6.214417], [-96.209933, -6.214417], [-96.209933, -7.661733], [-103.446513, -7.661733] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -6.214417], [-103.446513, -4.767102], [-96.209933, -4.767102], [-96.209933, -6.214417], [-103.446513, -6.214417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -4.767102], [-103.446513, -3.319786], [-96.209933, -3.319786], [-96.209933, -4.767102], [-103.446513, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -3.319786], [-103.446513, -1.87247], [-96.209933, -1.87247], [-96.209933, -3.319786], [-103.446513, -3.319786] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -1.87247], [-103.446513, -0.425154], [-96.209933, -0.425154], [-96.209933, -1.87247], [-103.446513, -1.87247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -0.425154], [-103.446513, 1.022162], [-96.209933, 1.022162], [-96.209933, -0.425154], [-103.446513, -0.425154] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 1.022162], [-103.446513, 2.469478], [-96.209933, 2.469478], [-96.209933, 1.022162], [-103.446513, 1.022162] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 2.469478], [-103.446513, 3.916793], [-96.209933, 3.916793], [-96.209933, 2.469478], [-103.446513, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 3.916793], [-103.446513, 5.364109], [-96.209933, 5.364109], [-96.209933, 3.916793], [-103.446513, 3.916793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 5.364109], [-103.446513, 6.811425], [-96.209933, 6.811425], [-96.209933, 5.364109], [-103.446513, 5.364109] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 6.811425], [-103.446513, 8.258741], [-96.209933, 8.258741], [-96.209933, 6.811425], [-103.446513, 6.811425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 8.258741], [-103.446513, 9.706057], [-96.209933, 9.706057], [-96.209933, 8.258741], [-103.446513, 8.258741] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 9.706057], [-103.446513, 11.153373], [-96.209933, 11.153373], [-96.209933, 9.706057], [-103.446513, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 11.153373], [-103.446513, 12.600688], [-96.209933, 12.600688], [-96.209933, 11.153373], [-103.446513, 11.153373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 12.600688], [-103.446513, 14.048004], [-96.209933, 14.048004], [-96.209933, 12.600688], [-103.446513, 12.600688] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 14.048004], [-103.446513, 15.49532], [-96.209933, 15.49532], [-96.209933, 14.048004], [-103.446513, 14.048004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 15.49532], [-103.446513, 16.942636], [-96.209933, 16.942636], [-96.209933, 15.49532], [-103.446513, 15.49532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 16.942636], [-103.446513, 18.389952], [-96.209933, 18.389952], [-96.209933, 16.942636], [-103.446513, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 18.389952], [-103.446513, 19.837268], [-96.209933, 19.837268], [-96.209933, 18.389952], [-103.446513, 18.389952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 19.837268], [-103.446513, 21.284583], [-96.209933, 21.284583], [-96.209933, 19.837268], [-103.446513, 19.837268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 21.284583], [-103.446513, 22.731899], [-96.209933, 22.731899], [-96.209933, 21.284583], [-103.446513, 21.284583] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 22.731899], [-103.446513, 24.179215], [-96.209933, 24.179215], [-96.209933, 22.731899], [-103.446513, 22.731899] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 24.179215], [-103.446513, 25.626531], [-96.209933, 25.626531], [-96.209933, 24.179215], [-103.446513, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 25.626531], [-103.446513, 27.073847], [-96.209933, 27.073847], [-96.209933, 25.626531], [-103.446513, 25.626531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 27.073847], [-103.446513, 28.521163], [-96.209933, 28.521163], [-96.209933, 27.073847], [-103.446513, 27.073847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 28.521163], [-103.446513, 29.968478], [-96.209933, 29.968478], [-96.209933, 28.521163], [-103.446513, 28.521163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 29.968478], [-103.446513, 31.415794], [-96.209933, 31.415794], [-96.209933, 29.968478], [-103.446513, 29.968478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 31.415794], [-103.446513, 32.86311], [-96.209933, 32.86311], [-96.209933, 31.415794], [-103.446513, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 32.86311], [-103.446513, 34.310426], [-96.209933, 34.310426], [-96.209933, 32.86311], [-103.446513, 32.86311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 34.310426], [-103.446513, 35.757742], [-96.209933, 35.757742], [-96.209933, 34.310426], [-103.446513, 34.310426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 35.757742], [-103.446513, 37.205058], [-96.209933, 37.205058], [-96.209933, 35.757742], [-103.446513, 35.757742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 37.205058], [-103.446513, 38.652373], [-96.209933, 38.652373], [-96.209933, 37.205058], [-103.446513, 37.205058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 38.652373], [-103.446513, 40.099689], [-96.209933, 40.099689], [-96.209933, 38.652373], [-103.446513, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 40.099689], [-103.446513, 41.547005], [-96.209933, 41.547005], [-96.209933, 40.099689], [-103.446513, 40.099689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 41.547005], [-103.446513, 42.994321], [-96.209933, 42.994321], [-96.209933, 41.547005], [-103.446513, 41.547005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 42.994321], [-103.446513, 44.441637], [-96.209933, 44.441637], [-96.209933, 42.994321], [-103.446513, 42.994321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 44.441637], [-103.446513, 45.888952], [-96.209933, 45.888952], [-96.209933, 44.441637], [-103.446513, 44.441637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 45.888952], [-103.446513, 47.336268], [-96.209933, 47.336268], [-96.209933, 45.888952], [-103.446513, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 47.336268], [-103.446513, 48.783584], [-96.209933, 48.783584], [-96.209933, 47.336268], [-103.446513, 47.336268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 48.783584], [-103.446513, 50.2309], [-96.209933, 50.2309], [-96.209933, 48.783584], [-103.446513, 48.783584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 50.2309], [-103.446513, 51.678216], [-96.209933, 51.678216], [-96.209933, 50.2309], [-103.446513, 50.2309] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 51.678216], [-103.446513, 53.125532], [-96.209933, 53.125532], [-96.209933, 51.678216], [-103.446513, 51.678216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 53.125532], [-103.446513, 54.572847], [-96.209933, 54.572847], [-96.209933, 53.125532], [-103.446513, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 54.572847], [-103.446513, 56.020163], [-96.209933, 56.020163], [-96.209933, 54.572847], [-103.446513, 54.572847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 56.020163], [-103.446513, 57.467479], [-96.209933, 57.467479], [-96.209933, 56.020163], [-103.446513, 56.020163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 57.467479], [-103.446513, 58.914795], [-96.209933, 58.914795], [-96.209933, 57.467479], [-103.446513, 57.467479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 58.914795], [-103.446513, 60.362111], [-96.209933, 60.362111], [-96.209933, 58.914795], [-103.446513, 58.914795] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 60.362111], [-103.446513, 61.809427], [-96.209933, 61.809427], [-96.209933, 60.362111], [-103.446513, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 61.809427], [-103.446513, 63.256742], [-96.209933, 63.256742], [-96.209933, 61.809427], [-103.446513, 61.809427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 63.256742], [-103.446513, 64.704058], [-96.209933, 64.704058], [-96.209933, 63.256742], [-103.446513, 63.256742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 64.704058], [-103.446513, 66.151374], [-96.209933, 66.151374], [-96.209933, 64.704058], [-103.446513, 64.704058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 66.151374], [-103.446513, 67.59869], [-96.209933, 67.59869], [-96.209933, 66.151374], [-103.446513, 66.151374] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 67.59869], [-103.446513, 69.046006], [-96.209933, 69.046006], [-96.209933, 67.59869], [-103.446513, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 69.046006], [-103.446513, 70.493322], [-96.209933, 70.493322], [-96.209933, 69.046006], [-103.446513, 69.046006] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 70.493322], [-103.446513, 71.940637], [-96.209933, 71.940637], [-96.209933, 70.493322], [-103.446513, 70.493322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 71.940637], [-103.446513, 73.387953], [-96.209933, 73.387953], [-96.209933, 71.940637], [-103.446513, 71.940637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 73.387953], [-103.446513, 74.835269], [-96.209933, 74.835269], [-96.209933, 73.387953], [-103.446513, 73.387953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 74.835269], [-103.446513, 76.282585], [-96.209933, 76.282585], [-96.209933, 74.835269], [-103.446513, 74.835269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 76.282585], [-103.446513, 77.729901], [-96.209933, 77.729901], [-96.209933, 76.282585], [-103.446513, 76.282585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -80.027525], [-96.209933, -78.580209], [-88.973354, -78.580209], [-88.973354, -80.027525], [-96.209933, -80.027525] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -78.580209], [-96.209933, -77.132893], [-88.973354, -77.132893], [-88.973354, -78.580209], [-96.209933, -78.580209] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -77.132893], [-96.209933, -75.685577], [-88.973354, -75.685577], [-88.973354, -77.132893], [-96.209933, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -75.685577], [-96.209933, -74.238262], [-88.973354, -74.238262], [-88.973354, -75.685577], [-96.209933, -75.685577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -74.238262], [-96.209933, -72.790946], [-88.973354, -72.790946], [-88.973354, -74.238262], [-96.209933, -74.238262] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -72.790946], [-96.209933, -71.34363], [-88.973354, -71.34363], [-88.973354, -72.790946], [-96.209933, -72.790946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -71.34363], [-96.209933, -69.896314], [-88.973354, -69.896314], [-88.973354, -71.34363], [-96.209933, -71.34363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -69.896314], [-96.209933, -68.448998], [-88.973354, -68.448998], [-88.973354, -69.896314], [-96.209933, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -68.448998], [-96.209933, -67.001682], [-88.973354, -67.001682], [-88.973354, -68.448998], [-96.209933, -68.448998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -67.001682], [-96.209933, -65.554367], [-88.973354, -65.554367], [-88.973354, -67.001682], [-96.209933, -67.001682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -65.554367], [-96.209933, -64.107051], [-88.973354, -64.107051], [-88.973354, -65.554367], [-96.209933, -65.554367] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -64.107051], [-96.209933, -62.659735], [-88.973354, -62.659735], [-88.973354, -64.107051], [-96.209933, -64.107051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -62.659735], [-96.209933, -61.212419], [-88.973354, -61.212419], [-88.973354, -62.659735], [-96.209933, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -61.212419], [-96.209933, -59.765103], [-88.973354, -59.765103], [-88.973354, -61.212419], [-96.209933, -61.212419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -59.765103], [-96.209933, -58.317787], [-88.973354, -58.317787], [-88.973354, -59.765103], [-96.209933, -59.765103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -58.317787], [-96.209933, -56.870472], [-88.973354, -56.870472], [-88.973354, -58.317787], [-96.209933, -58.317787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -56.870472], [-96.209933, -55.423156], [-88.973354, -55.423156], [-88.973354, -56.870472], [-96.209933, -56.870472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -55.423156], [-96.209933, -53.97584], [-88.973354, -53.97584], [-88.973354, -55.423156], [-96.209933, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -53.97584], [-96.209933, -52.528524], [-88.973354, -52.528524], [-88.973354, -53.97584], [-96.209933, -53.97584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -52.528524], [-96.209933, -51.081208], [-88.973354, -51.081208], [-88.973354, -52.528524], [-96.209933, -52.528524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -51.081208], [-96.209933, -49.633892], [-88.973354, -49.633892], [-88.973354, -51.081208], [-96.209933, -51.081208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -49.633892], [-96.209933, -48.186577], [-88.973354, -48.186577], [-88.973354, -49.633892], [-96.209933, -49.633892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -48.186577], [-96.209933, -46.739261], [-88.973354, -46.739261], [-88.973354, -48.186577], [-96.209933, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -46.739261], [-96.209933, -45.291945], [-88.973354, -45.291945], [-88.973354, -46.739261], [-96.209933, -46.739261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -45.291945], [-96.209933, -43.844629], [-88.973354, -43.844629], [-88.973354, -45.291945], [-96.209933, -45.291945] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -43.844629], [-96.209933, -42.397313], [-88.973354, -42.397313], [-88.973354, -43.844629], [-96.209933, -43.844629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -42.397313], [-96.209933, -40.949997], [-88.973354, -40.949997], [-88.973354, -42.397313], [-96.209933, -42.397313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -40.949997], [-96.209933, -39.502682], [-88.973354, -39.502682], [-88.973354, -40.949997], [-96.209933, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -39.502682], [-96.209933, -38.055366], [-88.973354, -38.055366], [-88.973354, -39.502682], [-96.209933, -39.502682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -38.055366], [-96.209933, -36.60805], [-88.973354, -36.60805], [-88.973354, -38.055366], [-96.209933, -38.055366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -36.60805], [-96.209933, -35.160734], [-88.973354, -35.160734], [-88.973354, -36.60805], [-96.209933, -36.60805] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -35.160734], [-96.209933, -33.713418], [-88.973354, -33.713418], [-88.973354, -35.160734], [-96.209933, -35.160734] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -33.713418], [-96.209933, -32.266102], [-88.973354, -32.266102], [-88.973354, -33.713418], [-96.209933, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -32.266102], [-96.209933, -30.818787], [-88.973354, -30.818787], [-88.973354, -32.266102], [-96.209933, -32.266102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -30.818787], [-96.209933, -29.371471], [-88.973354, -29.371471], [-88.973354, -30.818787], [-96.209933, -30.818787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -29.371471], [-96.209933, -27.924155], [-88.973354, -27.924155], [-88.973354, -29.371471], [-96.209933, -29.371471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -27.924155], [-96.209933, -26.476839], [-88.973354, -26.476839], [-88.973354, -27.924155], [-96.209933, -27.924155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -26.476839], [-96.209933, -25.029523], [-88.973354, -25.029523], [-88.973354, -26.476839], [-96.209933, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -25.029523], [-96.209933, -23.582207], [-88.973354, -23.582207], [-88.973354, -25.029523], [-96.209933, -25.029523] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -23.582207], [-96.209933, -22.134892], [-88.973354, -22.134892], [-88.973354, -23.582207], [-96.209933, -23.582207] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -22.134892], [-96.209933, -20.687576], [-88.973354, -20.687576], [-88.973354, -22.134892], [-96.209933, -22.134892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -20.687576], [-96.209933, -19.24026], [-88.973354, -19.24026], [-88.973354, -20.687576], [-96.209933, -20.687576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -19.24026], [-96.209933, -17.792944], [-88.973354, -17.792944], [-88.973354, -19.24026], [-96.209933, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -17.792944], [-96.209933, -16.345628], [-88.973354, -16.345628], [-88.973354, -17.792944], [-96.209933, -17.792944] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -16.345628], [-96.209933, -14.898312], [-88.973354, -14.898312], [-88.973354, -16.345628], [-96.209933, -16.345628] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -14.898312], [-96.209933, -13.450997], [-88.973354, -13.450997], [-88.973354, -14.898312], [-96.209933, -14.898312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -13.450997], [-96.209933, -12.003681], [-88.973354, -12.003681], [-88.973354, -13.450997], [-96.209933, -13.450997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -12.003681], [-96.209933, -10.556365], [-88.973354, -10.556365], [-88.973354, -12.003681], [-96.209933, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -10.556365], [-96.209933, -9.109049], [-88.973354, -9.109049], [-88.973354, -10.556365], [-96.209933, -10.556365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -9.109049], [-96.209933, -7.661733], [-88.973354, -7.661733], [-88.973354, -9.109049], [-96.209933, -9.109049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -7.661733], [-96.209933, -6.214417], [-88.973354, -6.214417], [-88.973354, -7.661733], [-96.209933, -7.661733] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -6.214417], [-96.209933, -4.767102], [-88.973354, -4.767102], [-88.973354, -6.214417], [-96.209933, -6.214417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -4.767102], [-96.209933, -3.319786], [-88.973354, -3.319786], [-88.973354, -4.767102], [-96.209933, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -3.319786], [-96.209933, -1.87247], [-88.973354, -1.87247], [-88.973354, -3.319786], [-96.209933, -3.319786] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -1.87247], [-96.209933, -0.425154], [-88.973354, -0.425154], [-88.973354, -1.87247], [-96.209933, -1.87247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -0.425154], [-96.209933, 1.022162], [-88.973354, 1.022162], [-88.973354, -0.425154], [-96.209933, -0.425154] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 1.022162], [-96.209933, 2.469478], [-88.973354, 2.469478], [-88.973354, 1.022162], [-96.209933, 1.022162] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 2.469478], [-96.209933, 3.916793], [-88.973354, 3.916793], [-88.973354, 2.469478], [-96.209933, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 3.916793], [-96.209933, 5.364109], [-88.973354, 5.364109], [-88.973354, 3.916793], [-96.209933, 3.916793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 5.364109], [-96.209933, 6.811425], [-88.973354, 6.811425], [-88.973354, 5.364109], [-96.209933, 5.364109] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 6.811425], [-96.209933, 8.258741], [-88.973354, 8.258741], [-88.973354, 6.811425], [-96.209933, 6.811425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 8.258741], [-96.209933, 9.706057], [-88.973354, 9.706057], [-88.973354, 8.258741], [-96.209933, 8.258741] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 9.706057], [-96.209933, 11.153373], [-88.973354, 11.153373], [-88.973354, 9.706057], [-96.209933, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 11.153373], [-96.209933, 12.600688], [-88.973354, 12.600688], [-88.973354, 11.153373], [-96.209933, 11.153373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 12.600688], [-96.209933, 14.048004], [-88.973354, 14.048004], [-88.973354, 12.600688], [-96.209933, 12.600688] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 14.048004], [-96.209933, 15.49532], [-88.973354, 15.49532], [-88.973354, 14.048004], [-96.209933, 14.048004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 15.49532], [-96.209933, 16.942636], [-88.973354, 16.942636], [-88.973354, 15.49532], [-96.209933, 15.49532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 16.942636], [-96.209933, 18.389952], [-88.973354, 18.389952], [-88.973354, 16.942636], [-96.209933, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 18.389952], [-96.209933, 19.837268], [-88.973354, 19.837268], [-88.973354, 18.389952], [-96.209933, 18.389952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 19.837268], [-96.209933, 21.284583], [-88.973354, 21.284583], [-88.973354, 19.837268], [-96.209933, 19.837268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 21.284583], [-96.209933, 22.731899], [-88.973354, 22.731899], [-88.973354, 21.284583], [-96.209933, 21.284583] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 22.731899], [-96.209933, 24.179215], [-88.973354, 24.179215], [-88.973354, 22.731899], [-96.209933, 22.731899] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 24.179215], [-96.209933, 25.626531], [-88.973354, 25.626531], [-88.973354, 24.179215], [-96.209933, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 25.626531], [-96.209933, 27.073847], [-88.973354, 27.073847], [-88.973354, 25.626531], [-96.209933, 25.626531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 27.073847], [-96.209933, 28.521163], [-88.973354, 28.521163], [-88.973354, 27.073847], [-96.209933, 27.073847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 28.521163], [-96.209933, 29.968478], [-88.973354, 29.968478], [-88.973354, 28.521163], [-96.209933, 28.521163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 29.968478], [-96.209933, 31.415794], [-88.973354, 31.415794], [-88.973354, 29.968478], [-96.209933, 29.968478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 31.415794], [-96.209933, 32.86311], [-88.973354, 32.86311], [-88.973354, 31.415794], [-96.209933, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 32.86311], [-96.209933, 34.310426], [-88.973354, 34.310426], [-88.973354, 32.86311], [-96.209933, 32.86311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 34.310426], [-96.209933, 35.757742], [-88.973354, 35.757742], [-88.973354, 34.310426], [-96.209933, 34.310426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 35.757742], [-96.209933, 37.205058], [-88.973354, 37.205058], [-88.973354, 35.757742], [-96.209933, 35.757742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 37.205058], [-96.209933, 38.652373], [-88.973354, 38.652373], [-88.973354, 37.205058], [-96.209933, 37.205058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 38.652373], [-96.209933, 40.099689], [-88.973354, 40.099689], [-88.973354, 38.652373], [-96.209933, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 40.099689], [-96.209933, 41.547005], [-88.973354, 41.547005], [-88.973354, 40.099689], [-96.209933, 40.099689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 41.547005], [-96.209933, 42.994321], [-88.973354, 42.994321], [-88.973354, 41.547005], [-96.209933, 41.547005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 42.994321], [-96.209933, 44.441637], [-88.973354, 44.441637], [-88.973354, 42.994321], [-96.209933, 42.994321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 44.441637], [-96.209933, 45.888952], [-88.973354, 45.888952], [-88.973354, 44.441637], [-96.209933, 44.441637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 45.888952], [-96.209933, 47.336268], [-88.973354, 47.336268], [-88.973354, 45.888952], [-96.209933, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 47.336268], [-96.209933, 48.783584], [-88.973354, 48.783584], [-88.973354, 47.336268], [-96.209933, 47.336268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 48.783584], [-96.209933, 50.2309], [-88.973354, 50.2309], [-88.973354, 48.783584], [-96.209933, 48.783584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 50.2309], [-96.209933, 51.678216], [-88.973354, 51.678216], [-88.973354, 50.2309], [-96.209933, 50.2309] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 51.678216], [-96.209933, 53.125532], [-88.973354, 53.125532], [-88.973354, 51.678216], [-96.209933, 51.678216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 53.125532], [-96.209933, 54.572847], [-88.973354, 54.572847], [-88.973354, 53.125532], [-96.209933, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 54.572847], [-96.209933, 56.020163], [-88.973354, 56.020163], [-88.973354, 54.572847], [-96.209933, 54.572847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 56.020163], [-96.209933, 57.467479], [-88.973354, 57.467479], [-88.973354, 56.020163], [-96.209933, 56.020163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 57.467479], [-96.209933, 58.914795], [-88.973354, 58.914795], [-88.973354, 57.467479], [-96.209933, 57.467479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 58.914795], [-96.209933, 60.362111], [-88.973354, 60.362111], [-88.973354, 58.914795], [-96.209933, 58.914795] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 60.362111], [-96.209933, 61.809427], [-88.973354, 61.809427], [-88.973354, 60.362111], [-96.209933, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 61.809427], [-96.209933, 63.256742], [-88.973354, 63.256742], [-88.973354, 61.809427], [-96.209933, 61.809427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 63.256742], [-96.209933, 64.704058], [-88.973354, 64.704058], [-88.973354, 63.256742], [-96.209933, 63.256742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 64.704058], [-96.209933, 66.151374], [-88.973354, 66.151374], [-88.973354, 64.704058], [-96.209933, 64.704058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 66.151374], [-96.209933, 67.59869], [-88.973354, 67.59869], [-88.973354, 66.151374], [-96.209933, 66.151374] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 67.59869], [-96.209933, 69.046006], [-88.973354, 69.046006], [-88.973354, 67.59869], [-96.209933, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 69.046006], [-96.209933, 70.493322], [-88.973354, 70.493322], [-88.973354, 69.046006], [-96.209933, 69.046006] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 70.493322], [-96.209933, 71.940637], [-88.973354, 71.940637], [-88.973354, 70.493322], [-96.209933, 70.493322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 71.940637], [-96.209933, 73.387953], [-88.973354, 73.387953], [-88.973354, 71.940637], [-96.209933, 71.940637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 73.387953], [-96.209933, 74.835269], [-88.973354, 74.835269], [-88.973354, 73.387953], [-96.209933, 73.387953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 74.835269], [-96.209933, 76.282585], [-88.973354, 76.282585], [-88.973354, 74.835269], [-96.209933, 74.835269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 76.282585], [-96.209933, 77.729901], [-88.973354, 77.729901], [-88.973354, 76.282585], [-96.209933, 76.282585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -80.027525], [-88.973354, -78.580209], [-81.736775, -78.580209], [-81.736775, -80.027525], [-88.973354, -80.027525] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -78.580209], [-88.973354, -77.132893], [-81.736775, -77.132893], [-81.736775, -78.580209], [-88.973354, -78.580209] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -77.132893], [-88.973354, -75.685577], [-81.736775, -75.685577], [-81.736775, -77.132893], [-88.973354, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -75.685577], [-88.973354, -74.238262], [-81.736775, -74.238262], [-81.736775, -75.685577], [-88.973354, -75.685577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -74.238262], [-88.973354, -72.790946], [-81.736775, -72.790946], [-81.736775, -74.238262], [-88.973354, -74.238262] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -72.790946], [-88.973354, -71.34363], [-81.736775, -71.34363], [-81.736775, -72.790946], [-88.973354, -72.790946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -71.34363], [-88.973354, -69.896314], [-81.736775, -69.896314], [-81.736775, -71.34363], [-88.973354, -71.34363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -69.896314], [-88.973354, -68.448998], [-81.736775, -68.448998], [-81.736775, -69.896314], [-88.973354, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -68.448998], [-88.973354, -67.001682], [-81.736775, -67.001682], [-81.736775, -68.448998], [-88.973354, -68.448998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -67.001682], [-88.973354, -65.554367], [-81.736775, -65.554367], [-81.736775, -67.001682], [-88.973354, -67.001682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -65.554367], [-88.973354, -64.107051], [-81.736775, -64.107051], [-81.736775, -65.554367], [-88.973354, -65.554367] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -64.107051], [-88.973354, -62.659735], [-81.736775, -62.659735], [-81.736775, -64.107051], [-88.973354, -64.107051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -62.659735], [-88.973354, -61.212419], [-81.736775, -61.212419], [-81.736775, -62.659735], [-88.973354, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -61.212419], [-88.973354, -59.765103], [-81.736775, -59.765103], [-81.736775, -61.212419], [-88.973354, -61.212419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -59.765103], [-88.973354, -58.317787], [-81.736775, -58.317787], [-81.736775, -59.765103], [-88.973354, -59.765103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -58.317787], [-88.973354, -56.870472], [-81.736775, -56.870472], [-81.736775, -58.317787], [-88.973354, -58.317787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -56.870472], [-88.973354, -55.423156], [-81.736775, -55.423156], [-81.736775, -56.870472], [-88.973354, -56.870472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -55.423156], [-88.973354, -53.97584], [-81.736775, -53.97584], [-81.736775, -55.423156], [-88.973354, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -53.97584], [-88.973354, -52.528524], [-81.736775, -52.528524], [-81.736775, -53.97584], [-88.973354, -53.97584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -52.528524], [-88.973354, -51.081208], [-81.736775, -51.081208], [-81.736775, -52.528524], [-88.973354, -52.528524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -51.081208], [-88.973354, -49.633892], [-81.736775, -49.633892], [-81.736775, -51.081208], [-88.973354, -51.081208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -49.633892], [-88.973354, -48.186577], [-81.736775, -48.186577], [-81.736775, -49.633892], [-88.973354, -49.633892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -48.186577], [-88.973354, -46.739261], [-81.736775, -46.739261], [-81.736775, -48.186577], [-88.973354, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -46.739261], [-88.973354, -45.291945], [-81.736775, -45.291945], [-81.736775, -46.739261], [-88.973354, -46.739261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -45.291945], [-88.973354, -43.844629], [-81.736775, -43.844629], [-81.736775, -45.291945], [-88.973354, -45.291945] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -43.844629], [-88.973354, -42.397313], [-81.736775, -42.397313], [-81.736775, -43.844629], [-88.973354, -43.844629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -42.397313], [-88.973354, -40.949997], [-81.736775, -40.949997], [-81.736775, -42.397313], [-88.973354, -42.397313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -40.949997], [-88.973354, -39.502682], [-81.736775, -39.502682], [-81.736775, -40.949997], [-88.973354, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -39.502682], [-88.973354, -38.055366], [-81.736775, -38.055366], [-81.736775, -39.502682], [-88.973354, -39.502682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -38.055366], [-88.973354, -36.60805], [-81.736775, -36.60805], [-81.736775, -38.055366], [-88.973354, -38.055366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -36.60805], [-88.973354, -35.160734], [-81.736775, -35.160734], [-81.736775, -36.60805], [-88.973354, -36.60805] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -35.160734], [-88.973354, -33.713418], [-81.736775, -33.713418], [-81.736775, -35.160734], [-88.973354, -35.160734] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -33.713418], [-88.973354, -32.266102], [-81.736775, -32.266102], [-81.736775, -33.713418], [-88.973354, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -32.266102], [-88.973354, -30.818787], [-81.736775, -30.818787], [-81.736775, -32.266102], [-88.973354, -32.266102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -30.818787], [-88.973354, -29.371471], [-81.736775, -29.371471], [-81.736775, -30.818787], [-88.973354, -30.818787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -29.371471], [-88.973354, -27.924155], [-81.736775, -27.924155], [-81.736775, -29.371471], [-88.973354, -29.371471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -27.924155], [-88.973354, -26.476839], [-81.736775, -26.476839], [-81.736775, -27.924155], [-88.973354, -27.924155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -26.476839], [-88.973354, -25.029523], [-81.736775, -25.029523], [-81.736775, -26.476839], [-88.973354, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -25.029523], [-88.973354, -23.582207], [-81.736775, -23.582207], [-81.736775, -25.029523], [-88.973354, -25.029523] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -23.582207], [-88.973354, -22.134892], [-81.736775, -22.134892], [-81.736775, -23.582207], [-88.973354, -23.582207] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -22.134892], [-88.973354, -20.687576], [-81.736775, -20.687576], [-81.736775, -22.134892], [-88.973354, -22.134892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -20.687576], [-88.973354, -19.24026], [-81.736775, -19.24026], [-81.736775, -20.687576], [-88.973354, -20.687576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -19.24026], [-88.973354, -17.792944], [-81.736775, -17.792944], [-81.736775, -19.24026], [-88.973354, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -17.792944], [-88.973354, -16.345628], [-81.736775, -16.345628], [-81.736775, -17.792944], [-88.973354, -17.792944] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -16.345628], [-88.973354, -14.898312], [-81.736775, -14.898312], [-81.736775, -16.345628], [-88.973354, -16.345628] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -14.898312], [-88.973354, -13.450997], [-81.736775, -13.450997], [-81.736775, -14.898312], [-88.973354, -14.898312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -13.450997], [-88.973354, -12.003681], [-81.736775, -12.003681], [-81.736775, -13.450997], [-88.973354, -13.450997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -12.003681], [-88.973354, -10.556365], [-81.736775, -10.556365], [-81.736775, -12.003681], [-88.973354, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -10.556365], [-88.973354, -9.109049], [-81.736775, -9.109049], [-81.736775, -10.556365], [-88.973354, -10.556365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -9.109049], [-88.973354, -7.661733], [-81.736775, -7.661733], [-81.736775, -9.109049], [-88.973354, -9.109049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -7.661733], [-88.973354, -6.214417], [-81.736775, -6.214417], [-81.736775, -7.661733], [-88.973354, -7.661733] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -6.214417], [-88.973354, -4.767102], [-81.736775, -4.767102], [-81.736775, -6.214417], [-88.973354, -6.214417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -4.767102], [-88.973354, -3.319786], [-81.736775, -3.319786], [-81.736775, -4.767102], [-88.973354, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -3.319786], [-88.973354, -1.87247], [-81.736775, -1.87247], [-81.736775, -3.319786], [-88.973354, -3.319786] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -1.87247], [-88.973354, -0.425154], [-81.736775, -0.425154], [-81.736775, -1.87247], [-88.973354, -1.87247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -0.425154], [-88.973354, 1.022162], [-81.736775, 1.022162], [-81.736775, -0.425154], [-88.973354, -0.425154] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 1.022162], [-88.973354, 2.469478], [-81.736775, 2.469478], [-81.736775, 1.022162], [-88.973354, 1.022162] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 2.469478], [-88.973354, 3.916793], [-81.736775, 3.916793], [-81.736775, 2.469478], [-88.973354, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 3.916793], [-88.973354, 5.364109], [-81.736775, 5.364109], [-81.736775, 3.916793], [-88.973354, 3.916793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 5.364109], [-88.973354, 6.811425], [-81.736775, 6.811425], [-81.736775, 5.364109], [-88.973354, 5.364109] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 6.811425], [-88.973354, 8.258741], [-81.736775, 8.258741], [-81.736775, 6.811425], [-88.973354, 6.811425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 8.258741], [-88.973354, 9.706057], [-81.736775, 9.706057], [-81.736775, 8.258741], [-88.973354, 8.258741] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 9.706057], [-88.973354, 11.153373], [-81.736775, 11.153373], [-81.736775, 9.706057], [-88.973354, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 11.153373], [-88.973354, 12.600688], [-81.736775, 12.600688], [-81.736775, 11.153373], [-88.973354, 11.153373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 12.600688], [-88.973354, 14.048004], [-81.736775, 14.048004], [-81.736775, 12.600688], [-88.973354, 12.600688] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 14.048004], [-88.973354, 15.49532], [-81.736775, 15.49532], [-81.736775, 14.048004], [-88.973354, 14.048004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 15.49532], [-88.973354, 16.942636], [-81.736775, 16.942636], [-81.736775, 15.49532], [-88.973354, 15.49532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 16.942636], [-88.973354, 18.389952], [-81.736775, 18.389952], [-81.736775, 16.942636], [-88.973354, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 18.389952], [-88.973354, 19.837268], [-81.736775, 19.837268], [-81.736775, 18.389952], [-88.973354, 18.389952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 19.837268], [-88.973354, 21.284583], [-81.736775, 21.284583], [-81.736775, 19.837268], [-88.973354, 19.837268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 21.284583], [-88.973354, 22.731899], [-81.736775, 22.731899], [-81.736775, 21.284583], [-88.973354, 21.284583] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 22.731899], [-88.973354, 24.179215], [-81.736775, 24.179215], [-81.736775, 22.731899], [-88.973354, 22.731899] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 24.179215], [-88.973354, 25.626531], [-81.736775, 25.626531], [-81.736775, 24.179215], [-88.973354, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 25.626531], [-88.973354, 27.073847], [-81.736775, 27.073847], [-81.736775, 25.626531], [-88.973354, 25.626531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 27.073847], [-88.973354, 28.521163], [-81.736775, 28.521163], [-81.736775, 27.073847], [-88.973354, 27.073847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 28.521163], [-88.973354, 29.968478], [-81.736775, 29.968478], [-81.736775, 28.521163], [-88.973354, 28.521163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 29.968478], [-88.973354, 31.415794], [-81.736775, 31.415794], [-81.736775, 29.968478], [-88.973354, 29.968478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 31.415794], [-88.973354, 32.86311], [-81.736775, 32.86311], [-81.736775, 31.415794], [-88.973354, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 32.86311], [-88.973354, 34.310426], [-81.736775, 34.310426], [-81.736775, 32.86311], [-88.973354, 32.86311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 34.310426], [-88.973354, 35.757742], [-81.736775, 35.757742], [-81.736775, 34.310426], [-88.973354, 34.310426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 35.757742], [-88.973354, 37.205058], [-81.736775, 37.205058], [-81.736775, 35.757742], [-88.973354, 35.757742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 37.205058], [-88.973354, 38.652373], [-81.736775, 38.652373], [-81.736775, 37.205058], [-88.973354, 37.205058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 38.652373], [-88.973354, 40.099689], [-81.736775, 40.099689], [-81.736775, 38.652373], [-88.973354, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 40.099689], [-88.973354, 41.547005], [-81.736775, 41.547005], [-81.736775, 40.099689], [-88.973354, 40.099689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 41.547005], [-88.973354, 42.994321], [-81.736775, 42.994321], [-81.736775, 41.547005], [-88.973354, 41.547005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 42.994321], [-88.973354, 44.441637], [-81.736775, 44.441637], [-81.736775, 42.994321], [-88.973354, 42.994321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 44.441637], [-88.973354, 45.888952], [-81.736775, 45.888952], [-81.736775, 44.441637], [-88.973354, 44.441637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 45.888952], [-88.973354, 47.336268], [-81.736775, 47.336268], [-81.736775, 45.888952], [-88.973354, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 47.336268], [-88.973354, 48.783584], [-81.736775, 48.783584], [-81.736775, 47.336268], [-88.973354, 47.336268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 48.783584], [-88.973354, 50.2309], [-81.736775, 50.2309], [-81.736775, 48.783584], [-88.973354, 48.783584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 50.2309], [-88.973354, 51.678216], [-81.736775, 51.678216], [-81.736775, 50.2309], [-88.973354, 50.2309] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 51.678216], [-88.973354, 53.125532], [-81.736775, 53.125532], [-81.736775, 51.678216], [-88.973354, 51.678216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 53.125532], [-88.973354, 54.572847], [-81.736775, 54.572847], [-81.736775, 53.125532], [-88.973354, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 54.572847], [-88.973354, 56.020163], [-81.736775, 56.020163], [-81.736775, 54.572847], [-88.973354, 54.572847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 56.020163], [-88.973354, 57.467479], [-81.736775, 57.467479], [-81.736775, 56.020163], [-88.973354, 56.020163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 57.467479], [-88.973354, 58.914795], [-81.736775, 58.914795], [-81.736775, 57.467479], [-88.973354, 57.467479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 58.914795], [-88.973354, 60.362111], [-81.736775, 60.362111], [-81.736775, 58.914795], [-88.973354, 58.914795] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 60.362111], [-88.973354, 61.809427], [-81.736775, 61.809427], [-81.736775, 60.362111], [-88.973354, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 61.809427], [-88.973354, 63.256742], [-81.736775, 63.256742], [-81.736775, 61.809427], [-88.973354, 61.809427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 63.256742], [-88.973354, 64.704058], [-81.736775, 64.704058], [-81.736775, 63.256742], [-88.973354, 63.256742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 64.704058], [-88.973354, 66.151374], [-81.736775, 66.151374], [-81.736775, 64.704058], [-88.973354, 64.704058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 66.151374], [-88.973354, 67.59869], [-81.736775, 67.59869], [-81.736775, 66.151374], [-88.973354, 66.151374] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 67.59869], [-88.973354, 69.046006], [-81.736775, 69.046006], [-81.736775, 67.59869], [-88.973354, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 69.046006], [-88.973354, 70.493322], [-81.736775, 70.493322], [-81.736775, 69.046006], [-88.973354, 69.046006] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 70.493322], [-88.973354, 71.940637], [-81.736775, 71.940637], [-81.736775, 70.493322], [-88.973354, 70.493322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 71.940637], [-88.973354, 73.387953], [-81.736775, 73.387953], [-81.736775, 71.940637], [-88.973354, 71.940637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 73.387953], [-88.973354, 74.835269], [-81.736775, 74.835269], [-81.736775, 73.387953], [-88.973354, 73.387953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 74.835269], [-88.973354, 76.282585], [-81.736775, 76.282585], [-81.736775, 74.835269], [-88.973354, 74.835269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 76.282585], [-88.973354, 77.729901], [-81.736775, 77.729901], [-81.736775, 76.282585], [-88.973354, 76.282585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -80.027525], [-81.736775, -78.580209], [-74.500196, -78.580209], [-74.500196, -80.027525], [-81.736775, -80.027525] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -78.580209], [-81.736775, -77.132893], [-74.500196, -77.132893], [-74.500196, -78.580209], [-81.736775, -78.580209] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -77.132893], [-81.736775, -75.685577], [-74.500196, -75.685577], [-74.500196, -77.132893], [-81.736775, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -75.685577], [-81.736775, -74.238262], [-74.500196, -74.238262], [-74.500196, -75.685577], [-81.736775, -75.685577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -74.238262], [-81.736775, -72.790946], [-74.500196, -72.790946], [-74.500196, -74.238262], [-81.736775, -74.238262] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -72.790946], [-81.736775, -71.34363], [-74.500196, -71.34363], [-74.500196, -72.790946], [-81.736775, -72.790946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -71.34363], [-81.736775, -69.896314], [-74.500196, -69.896314], [-74.500196, -71.34363], [-81.736775, -71.34363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -69.896314], [-81.736775, -68.448998], [-74.500196, -68.448998], [-74.500196, -69.896314], [-81.736775, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -68.448998], [-81.736775, -67.001682], [-74.500196, -67.001682], [-74.500196, -68.448998], [-81.736775, -68.448998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -67.001682], [-81.736775, -65.554367], [-74.500196, -65.554367], [-74.500196, -67.001682], [-81.736775, -67.001682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -65.554367], [-81.736775, -64.107051], [-74.500196, -64.107051], [-74.500196, -65.554367], [-81.736775, -65.554367] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -64.107051], [-81.736775, -62.659735], [-74.500196, -62.659735], [-74.500196, -64.107051], [-81.736775, -64.107051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -62.659735], [-81.736775, -61.212419], [-74.500196, -61.212419], [-74.500196, -62.659735], [-81.736775, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -61.212419], [-81.736775, -59.765103], [-74.500196, -59.765103], [-74.500196, -61.212419], [-81.736775, -61.212419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -59.765103], [-81.736775, -58.317787], [-74.500196, -58.317787], [-74.500196, -59.765103], [-81.736775, -59.765103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -58.317787], [-81.736775, -56.870472], [-74.500196, -56.870472], [-74.500196, -58.317787], [-81.736775, -58.317787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -56.870472], [-81.736775, -55.423156], [-74.500196, -55.423156], [-74.500196, -56.870472], [-81.736775, -56.870472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -55.423156], [-81.736775, -53.97584], [-74.500196, -53.97584], [-74.500196, -55.423156], [-81.736775, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -53.97584], [-81.736775, -52.528524], [-74.500196, -52.528524], [-74.500196, -53.97584], [-81.736775, -53.97584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -52.528524], [-81.736775, -51.081208], [-74.500196, -51.081208], [-74.500196, -52.528524], [-81.736775, -52.528524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -51.081208], [-81.736775, -49.633892], [-74.500196, -49.633892], [-74.500196, -51.081208], [-81.736775, -51.081208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -49.633892], [-81.736775, -48.186577], [-74.500196, -48.186577], [-74.500196, -49.633892], [-81.736775, -49.633892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -48.186577], [-81.736775, -46.739261], [-74.500196, -46.739261], [-74.500196, -48.186577], [-81.736775, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -46.739261], [-81.736775, -45.291945], [-74.500196, -45.291945], [-74.500196, -46.739261], [-81.736775, -46.739261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -45.291945], [-81.736775, -43.844629], [-74.500196, -43.844629], [-74.500196, -45.291945], [-81.736775, -45.291945] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -43.844629], [-81.736775, -42.397313], [-74.500196, -42.397313], [-74.500196, -43.844629], [-81.736775, -43.844629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -42.397313], [-81.736775, -40.949997], [-74.500196, -40.949997], [-74.500196, -42.397313], [-81.736775, -42.397313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -40.949997], [-81.736775, -39.502682], [-74.500196, -39.502682], [-74.500196, -40.949997], [-81.736775, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -39.502682], [-81.736775, -38.055366], [-74.500196, -38.055366], [-74.500196, -39.502682], [-81.736775, -39.502682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -38.055366], [-81.736775, -36.60805], [-74.500196, -36.60805], [-74.500196, -38.055366], [-81.736775, -38.055366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -36.60805], [-81.736775, -35.160734], [-74.500196, -35.160734], [-74.500196, -36.60805], [-81.736775, -36.60805] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -35.160734], [-81.736775, -33.713418], [-74.500196, -33.713418], [-74.500196, -35.160734], [-81.736775, -35.160734] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -33.713418], [-81.736775, -32.266102], [-74.500196, -32.266102], [-74.500196, -33.713418], [-81.736775, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -32.266102], [-81.736775, -30.818787], [-74.500196, -30.818787], [-74.500196, -32.266102], [-81.736775, -32.266102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -30.818787], [-81.736775, -29.371471], [-74.500196, -29.371471], [-74.500196, -30.818787], [-81.736775, -30.818787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -29.371471], [-81.736775, -27.924155], [-74.500196, -27.924155], [-74.500196, -29.371471], [-81.736775, -29.371471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -27.924155], [-81.736775, -26.476839], [-74.500196, -26.476839], [-74.500196, -27.924155], [-81.736775, -27.924155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -26.476839], [-81.736775, -25.029523], [-74.500196, -25.029523], [-74.500196, -26.476839], [-81.736775, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -25.029523], [-81.736775, -23.582207], [-74.500196, -23.582207], [-74.500196, -25.029523], [-81.736775, -25.029523] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -23.582207], [-81.736775, -22.134892], [-74.500196, -22.134892], [-74.500196, -23.582207], [-81.736775, -23.582207] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -22.134892], [-81.736775, -20.687576], [-74.500196, -20.687576], [-74.500196, -22.134892], [-81.736775, -22.134892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -20.687576], [-81.736775, -19.24026], [-74.500196, -19.24026], [-74.500196, -20.687576], [-81.736775, -20.687576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -19.24026], [-81.736775, -17.792944], [-74.500196, -17.792944], [-74.500196, -19.24026], [-81.736775, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -17.792944], [-81.736775, -16.345628], [-74.500196, -16.345628], [-74.500196, -17.792944], [-81.736775, -17.792944] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -16.345628], [-81.736775, -14.898312], [-74.500196, -14.898312], [-74.500196, -16.345628], [-81.736775, -16.345628] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -14.898312], [-81.736775, -13.450997], [-74.500196, -13.450997], [-74.500196, -14.898312], [-81.736775, -14.898312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -13.450997], [-81.736775, -12.003681], [-74.500196, -12.003681], [-74.500196, -13.450997], [-81.736775, -13.450997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -12.003681], [-81.736775, -10.556365], [-74.500196, -10.556365], [-74.500196, -12.003681], [-81.736775, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -10.556365], [-81.736775, -9.109049], [-74.500196, -9.109049], [-74.500196, -10.556365], [-81.736775, -10.556365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -9.109049], [-81.736775, -7.661733], [-74.500196, -7.661733], [-74.500196, -9.109049], [-81.736775, -9.109049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -7.661733], [-81.736775, -6.214417], [-74.500196, -6.214417], [-74.500196, -7.661733], [-81.736775, -7.661733] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -6.214417], [-81.736775, -4.767102], [-74.500196, -4.767102], [-74.500196, -6.214417], [-81.736775, -6.214417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -4.767102], [-81.736775, -3.319786], [-74.500196, -3.319786], [-74.500196, -4.767102], [-81.736775, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -3.319786], [-81.736775, -1.87247], [-74.500196, -1.87247], [-74.500196, -3.319786], [-81.736775, -3.319786] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -1.87247], [-81.736775, -0.425154], [-74.500196, -0.425154], [-74.500196, -1.87247], [-81.736775, -1.87247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -0.425154], [-81.736775, 1.022162], [-74.500196, 1.022162], [-74.500196, -0.425154], [-81.736775, -0.425154] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 1.022162], [-81.736775, 2.469478], [-74.500196, 2.469478], [-74.500196, 1.022162], [-81.736775, 1.022162] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 2.469478], [-81.736775, 3.916793], [-74.500196, 3.916793], [-74.500196, 2.469478], [-81.736775, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 3.916793], [-81.736775, 5.364109], [-74.500196, 5.364109], [-74.500196, 3.916793], [-81.736775, 3.916793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 5.364109], [-81.736775, 6.811425], [-74.500196, 6.811425], [-74.500196, 5.364109], [-81.736775, 5.364109] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 6.811425], [-81.736775, 8.258741], [-74.500196, 8.258741], [-74.500196, 6.811425], [-81.736775, 6.811425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 8.258741], [-81.736775, 9.706057], [-74.500196, 9.706057], [-74.500196, 8.258741], [-81.736775, 8.258741] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 9.706057], [-81.736775, 11.153373], [-74.500196, 11.153373], [-74.500196, 9.706057], [-81.736775, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 11.153373], [-81.736775, 12.600688], [-74.500196, 12.600688], [-74.500196, 11.153373], [-81.736775, 11.153373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 12.600688], [-81.736775, 14.048004], [-74.500196, 14.048004], [-74.500196, 12.600688], [-81.736775, 12.600688] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 14.048004], [-81.736775, 15.49532], [-74.500196, 15.49532], [-74.500196, 14.048004], [-81.736775, 14.048004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 15.49532], [-81.736775, 16.942636], [-74.500196, 16.942636], [-74.500196, 15.49532], [-81.736775, 15.49532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 16.942636], [-81.736775, 18.389952], [-74.500196, 18.389952], [-74.500196, 16.942636], [-81.736775, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 18.389952], [-81.736775, 19.837268], [-74.500196, 19.837268], [-74.500196, 18.389952], [-81.736775, 18.389952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 19.837268], [-81.736775, 21.284583], [-74.500196, 21.284583], [-74.500196, 19.837268], [-81.736775, 19.837268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 21.284583], [-81.736775, 22.731899], [-74.500196, 22.731899], [-74.500196, 21.284583], [-81.736775, 21.284583] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 22.731899], [-81.736775, 24.179215], [-74.500196, 24.179215], [-74.500196, 22.731899], [-81.736775, 22.731899] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 24.179215], [-81.736775, 25.626531], [-74.500196, 25.626531], [-74.500196, 24.179215], [-81.736775, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 25.626531], [-81.736775, 27.073847], [-74.500196, 27.073847], [-74.500196, 25.626531], [-81.736775, 25.626531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 27.073847], [-81.736775, 28.521163], [-74.500196, 28.521163], [-74.500196, 27.073847], [-81.736775, 27.073847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 28.521163], [-81.736775, 29.968478], [-74.500196, 29.968478], [-74.500196, 28.521163], [-81.736775, 28.521163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 29.968478], [-81.736775, 31.415794], [-74.500196, 31.415794], [-74.500196, 29.968478], [-81.736775, 29.968478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 31.415794], [-81.736775, 32.86311], [-74.500196, 32.86311], [-74.500196, 31.415794], [-81.736775, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 32.86311], [-81.736775, 34.310426], [-74.500196, 34.310426], [-74.500196, 32.86311], [-81.736775, 32.86311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 34.310426], [-81.736775, 35.757742], [-74.500196, 35.757742], [-74.500196, 34.310426], [-81.736775, 34.310426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 35.757742], [-81.736775, 37.205058], [-74.500196, 37.205058], [-74.500196, 35.757742], [-81.736775, 35.757742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 37.205058], [-81.736775, 38.652373], [-74.500196, 38.652373], [-74.500196, 37.205058], [-81.736775, 37.205058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 38.652373], [-81.736775, 40.099689], [-74.500196, 40.099689], [-74.500196, 38.652373], [-81.736775, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 40.099689], [-81.736775, 41.547005], [-74.500196, 41.547005], [-74.500196, 40.099689], [-81.736775, 40.099689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 41.547005], [-81.736775, 42.994321], [-74.500196, 42.994321], [-74.500196, 41.547005], [-81.736775, 41.547005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 42.994321], [-81.736775, 44.441637], [-74.500196, 44.441637], [-74.500196, 42.994321], [-81.736775, 42.994321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 44.441637], [-81.736775, 45.888952], [-74.500196, 45.888952], [-74.500196, 44.441637], [-81.736775, 44.441637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 45.888952], [-81.736775, 47.336268], [-74.500196, 47.336268], [-74.500196, 45.888952], [-81.736775, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 47.336268], [-81.736775, 48.783584], [-74.500196, 48.783584], [-74.500196, 47.336268], [-81.736775, 47.336268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 48.783584], [-81.736775, 50.2309], [-74.500196, 50.2309], [-74.500196, 48.783584], [-81.736775, 48.783584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 50.2309], [-81.736775, 51.678216], [-74.500196, 51.678216], [-74.500196, 50.2309], [-81.736775, 50.2309] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 51.678216], [-81.736775, 53.125532], [-74.500196, 53.125532], [-74.500196, 51.678216], [-81.736775, 51.678216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 53.125532], [-81.736775, 54.572847], [-74.500196, 54.572847], [-74.500196, 53.125532], [-81.736775, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 54.572847], [-81.736775, 56.020163], [-74.500196, 56.020163], [-74.500196, 54.572847], [-81.736775, 54.572847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 56.020163], [-81.736775, 57.467479], [-74.500196, 57.467479], [-74.500196, 56.020163], [-81.736775, 56.020163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 57.467479], [-81.736775, 58.914795], [-74.500196, 58.914795], [-74.500196, 57.467479], [-81.736775, 57.467479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 58.914795], [-81.736775, 60.362111], [-74.500196, 60.362111], [-74.500196, 58.914795], [-81.736775, 58.914795] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 60.362111], [-81.736775, 61.809427], [-74.500196, 61.809427], [-74.500196, 60.362111], [-81.736775, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 61.809427], [-81.736775, 63.256742], [-74.500196, 63.256742], [-74.500196, 61.809427], [-81.736775, 61.809427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 63.256742], [-81.736775, 64.704058], [-74.500196, 64.704058], [-74.500196, 63.256742], [-81.736775, 63.256742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 64.704058], [-81.736775, 66.151374], [-74.500196, 66.151374], [-74.500196, 64.704058], [-81.736775, 64.704058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 66.151374], [-81.736775, 67.59869], [-74.500196, 67.59869], [-74.500196, 66.151374], [-81.736775, 66.151374] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 67.59869], [-81.736775, 69.046006], [-74.500196, 69.046006], [-74.500196, 67.59869], [-81.736775, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 69.046006], [-81.736775, 70.493322], [-74.500196, 70.493322], [-74.500196, 69.046006], [-81.736775, 69.046006] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 70.493322], [-81.736775, 71.940637], [-74.500196, 71.940637], [-74.500196, 70.493322], [-81.736775, 70.493322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 71.940637], [-81.736775, 73.387953], [-74.500196, 73.387953], [-74.500196, 71.940637], [-81.736775, 71.940637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 73.387953], [-81.736775, 74.835269], [-74.500196, 74.835269], [-74.500196, 73.387953], [-81.736775, 73.387953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 74.835269], [-81.736775, 76.282585], [-74.500196, 76.282585], [-74.500196, 74.835269], [-81.736775, 74.835269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 76.282585], [-81.736775, 77.729901], [-74.500196, 77.729901], [-74.500196, 76.282585], [-81.736775, 76.282585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -80.027525], [-74.500196, -78.580209], [-67.263617, -78.580209], [-67.263617, -80.027525], [-74.500196, -80.027525] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -78.580209], [-74.500196, -77.132893], [-67.263617, -77.132893], [-67.263617, -78.580209], [-74.500196, -78.580209] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -77.132893], [-74.500196, -75.685577], [-67.263617, -75.685577], [-67.263617, -77.132893], [-74.500196, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -75.685577], [-74.500196, -74.238262], [-67.263617, -74.238262], [-67.263617, -75.685577], [-74.500196, -75.685577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -74.238262], [-74.500196, -72.790946], [-67.263617, -72.790946], [-67.263617, -74.238262], [-74.500196, -74.238262] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -72.790946], [-74.500196, -71.34363], [-67.263617, -71.34363], [-67.263617, -72.790946], [-74.500196, -72.790946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -71.34363], [-74.500196, -69.896314], [-67.263617, -69.896314], [-67.263617, -71.34363], [-74.500196, -71.34363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -69.896314], [-74.500196, -68.448998], [-67.263617, -68.448998], [-67.263617, -69.896314], [-74.500196, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -68.448998], [-74.500196, -67.001682], [-67.263617, -67.001682], [-67.263617, -68.448998], [-74.500196, -68.448998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -67.001682], [-74.500196, -65.554367], [-67.263617, -65.554367], [-67.263617, -67.001682], [-74.500196, -67.001682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -65.554367], [-74.500196, -64.107051], [-67.263617, -64.107051], [-67.263617, -65.554367], [-74.500196, -65.554367] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -64.107051], [-74.500196, -62.659735], [-67.263617, -62.659735], [-67.263617, -64.107051], [-74.500196, -64.107051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -62.659735], [-74.500196, -61.212419], [-67.263617, -61.212419], [-67.263617, -62.659735], [-74.500196, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -61.212419], [-74.500196, -59.765103], [-67.263617, -59.765103], [-67.263617, -61.212419], [-74.500196, -61.212419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -59.765103], [-74.500196, -58.317787], [-67.263617, -58.317787], [-67.263617, -59.765103], [-74.500196, -59.765103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -58.317787], [-74.500196, -56.870472], [-67.263617, -56.870472], [-67.263617, -58.317787], [-74.500196, -58.317787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -56.870472], [-74.500196, -55.423156], [-67.263617, -55.423156], [-67.263617, -56.870472], [-74.500196, -56.870472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -55.423156], [-74.500196, -53.97584], [-67.263617, -53.97584], [-67.263617, -55.423156], [-74.500196, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -53.97584], [-74.500196, -52.528524], [-67.263617, -52.528524], [-67.263617, -53.97584], [-74.500196, -53.97584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -52.528524], [-74.500196, -51.081208], [-67.263617, -51.081208], [-67.263617, -52.528524], [-74.500196, -52.528524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -51.081208], [-74.500196, -49.633892], [-67.263617, -49.633892], [-67.263617, -51.081208], [-74.500196, -51.081208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -49.633892], [-74.500196, -48.186577], [-67.263617, -48.186577], [-67.263617, -49.633892], [-74.500196, -49.633892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -48.186577], [-74.500196, -46.739261], [-67.263617, -46.739261], [-67.263617, -48.186577], [-74.500196, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -46.739261], [-74.500196, -45.291945], [-67.263617, -45.291945], [-67.263617, -46.739261], [-74.500196, -46.739261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -45.291945], [-74.500196, -43.844629], [-67.263617, -43.844629], [-67.263617, -45.291945], [-74.500196, -45.291945] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -43.844629], [-74.500196, -42.397313], [-67.263617, -42.397313], [-67.263617, -43.844629], [-74.500196, -43.844629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -42.397313], [-74.500196, -40.949997], [-67.263617, -40.949997], [-67.263617, -42.397313], [-74.500196, -42.397313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -40.949997], [-74.500196, -39.502682], [-67.263617, -39.502682], [-67.263617, -40.949997], [-74.500196, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -39.502682], [-74.500196, -38.055366], [-67.263617, -38.055366], [-67.263617, -39.502682], [-74.500196, -39.502682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -38.055366], [-74.500196, -36.60805], [-67.263617, -36.60805], [-67.263617, -38.055366], [-74.500196, -38.055366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -36.60805], [-74.500196, -35.160734], [-67.263617, -35.160734], [-67.263617, -36.60805], [-74.500196, -36.60805] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -35.160734], [-74.500196, -33.713418], [-67.263617, -33.713418], [-67.263617, -35.160734], [-74.500196, -35.160734] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -33.713418], [-74.500196, -32.266102], [-67.263617, -32.266102], [-67.263617, -33.713418], [-74.500196, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -32.266102], [-74.500196, -30.818787], [-67.263617, -30.818787], [-67.263617, -32.266102], [-74.500196, -32.266102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -30.818787], [-74.500196, -29.371471], [-67.263617, -29.371471], [-67.263617, -30.818787], [-74.500196, -30.818787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -29.371471], [-74.500196, -27.924155], [-67.263617, -27.924155], [-67.263617, -29.371471], [-74.500196, -29.371471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -27.924155], [-74.500196, -26.476839], [-67.263617, -26.476839], [-67.263617, -27.924155], [-74.500196, -27.924155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -26.476839], [-74.500196, -25.029523], [-67.263617, -25.029523], [-67.263617, -26.476839], [-74.500196, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -25.029523], [-74.500196, -23.582207], [-67.263617, -23.582207], [-67.263617, -25.029523], [-74.500196, -25.029523] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -23.582207], [-74.500196, -22.134892], [-67.263617, -22.134892], [-67.263617, -23.582207], [-74.500196, -23.582207] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -22.134892], [-74.500196, -20.687576], [-67.263617, -20.687576], [-67.263617, -22.134892], [-74.500196, -22.134892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -20.687576], [-74.500196, -19.24026], [-67.263617, -19.24026], [-67.263617, -20.687576], [-74.500196, -20.687576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -19.24026], [-74.500196, -17.792944], [-67.263617, -17.792944], [-67.263617, -19.24026], [-74.500196, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -17.792944], [-74.500196, -16.345628], [-67.263617, -16.345628], [-67.263617, -17.792944], [-74.500196, -17.792944] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -16.345628], [-74.500196, -14.898312], [-67.263617, -14.898312], [-67.263617, -16.345628], [-74.500196, -16.345628] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -14.898312], [-74.500196, -13.450997], [-67.263617, -13.450997], [-67.263617, -14.898312], [-74.500196, -14.898312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -13.450997], [-74.500196, -12.003681], [-67.263617, -12.003681], [-67.263617, -13.450997], [-74.500196, -13.450997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -12.003681], [-74.500196, -10.556365], [-67.263617, -10.556365], [-67.263617, -12.003681], [-74.500196, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -10.556365], [-74.500196, -9.109049], [-67.263617, -9.109049], [-67.263617, -10.556365], [-74.500196, -10.556365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -9.109049], [-74.500196, -7.661733], [-67.263617, -7.661733], [-67.263617, -9.109049], [-74.500196, -9.109049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -7.661733], [-74.500196, -6.214417], [-67.263617, -6.214417], [-67.263617, -7.661733], [-74.500196, -7.661733] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -6.214417], [-74.500196, -4.767102], [-67.263617, -4.767102], [-67.263617, -6.214417], [-74.500196, -6.214417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -4.767102], [-74.500196, -3.319786], [-67.263617, -3.319786], [-67.263617, -4.767102], [-74.500196, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -3.319786], [-74.500196, -1.87247], [-67.263617, -1.87247], [-67.263617, -3.319786], [-74.500196, -3.319786] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -1.87247], [-74.500196, -0.425154], [-67.263617, -0.425154], [-67.263617, -1.87247], [-74.500196, -1.87247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -0.425154], [-74.500196, 1.022162], [-67.263617, 1.022162], [-67.263617, -0.425154], [-74.500196, -0.425154] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 1.022162], [-74.500196, 2.469478], [-67.263617, 2.469478], [-67.263617, 1.022162], [-74.500196, 1.022162] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 2.469478], [-74.500196, 3.916793], [-67.263617, 3.916793], [-67.263617, 2.469478], [-74.500196, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 3.916793], [-74.500196, 5.364109], [-67.263617, 5.364109], [-67.263617, 3.916793], [-74.500196, 3.916793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 5.364109], [-74.500196, 6.811425], [-67.263617, 6.811425], [-67.263617, 5.364109], [-74.500196, 5.364109] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 6.811425], [-74.500196, 8.258741], [-67.263617, 8.258741], [-67.263617, 6.811425], [-74.500196, 6.811425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 8.258741], [-74.500196, 9.706057], [-67.263617, 9.706057], [-67.263617, 8.258741], [-74.500196, 8.258741] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 9.706057], [-74.500196, 11.153373], [-67.263617, 11.153373], [-67.263617, 9.706057], [-74.500196, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 11.153373], [-74.500196, 12.600688], [-67.263617, 12.600688], [-67.263617, 11.153373], [-74.500196, 11.153373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 12.600688], [-74.500196, 14.048004], [-67.263617, 14.048004], [-67.263617, 12.600688], [-74.500196, 12.600688] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 14.048004], [-74.500196, 15.49532], [-67.263617, 15.49532], [-67.263617, 14.048004], [-74.500196, 14.048004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 15.49532], [-74.500196, 16.942636], [-67.263617, 16.942636], [-67.263617, 15.49532], [-74.500196, 15.49532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 16.942636], [-74.500196, 18.389952], [-67.263617, 18.389952], [-67.263617, 16.942636], [-74.500196, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 18.389952], [-74.500196, 19.837268], [-67.263617, 19.837268], [-67.263617, 18.389952], [-74.500196, 18.389952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 19.837268], [-74.500196, 21.284583], [-67.263617, 21.284583], [-67.263617, 19.837268], [-74.500196, 19.837268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 21.284583], [-74.500196, 22.731899], [-67.263617, 22.731899], [-67.263617, 21.284583], [-74.500196, 21.284583] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 22.731899], [-74.500196, 24.179215], [-67.263617, 24.179215], [-67.263617, 22.731899], [-74.500196, 22.731899] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 24.179215], [-74.500196, 25.626531], [-67.263617, 25.626531], [-67.263617, 24.179215], [-74.500196, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 25.626531], [-74.500196, 27.073847], [-67.263617, 27.073847], [-67.263617, 25.626531], [-74.500196, 25.626531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 27.073847], [-74.500196, 28.521163], [-67.263617, 28.521163], [-67.263617, 27.073847], [-74.500196, 27.073847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 28.521163], [-74.500196, 29.968478], [-67.263617, 29.968478], [-67.263617, 28.521163], [-74.500196, 28.521163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 29.968478], [-74.500196, 31.415794], [-67.263617, 31.415794], [-67.263617, 29.968478], [-74.500196, 29.968478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 31.415794], [-74.500196, 32.86311], [-67.263617, 32.86311], [-67.263617, 31.415794], [-74.500196, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 32.86311], [-74.500196, 34.310426], [-67.263617, 34.310426], [-67.263617, 32.86311], [-74.500196, 32.86311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 34.310426], [-74.500196, 35.757742], [-67.263617, 35.757742], [-67.263617, 34.310426], [-74.500196, 34.310426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 35.757742], [-74.500196, 37.205058], [-67.263617, 37.205058], [-67.263617, 35.757742], [-74.500196, 35.757742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 37.205058], [-74.500196, 38.652373], [-67.263617, 38.652373], [-67.263617, 37.205058], [-74.500196, 37.205058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 38.652373], [-74.500196, 40.099689], [-67.263617, 40.099689], [-67.263617, 38.652373], [-74.500196, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 40.099689], [-74.500196, 41.547005], [-67.263617, 41.547005], [-67.263617, 40.099689], [-74.500196, 40.099689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 41.547005], [-74.500196, 42.994321], [-67.263617, 42.994321], [-67.263617, 41.547005], [-74.500196, 41.547005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 42.994321], [-74.500196, 44.441637], [-67.263617, 44.441637], [-67.263617, 42.994321], [-74.500196, 42.994321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 44.441637], [-74.500196, 45.888952], [-67.263617, 45.888952], [-67.263617, 44.441637], [-74.500196, 44.441637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 45.888952], [-74.500196, 47.336268], [-67.263617, 47.336268], [-67.263617, 45.888952], [-74.500196, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 47.336268], [-74.500196, 48.783584], [-67.263617, 48.783584], [-67.263617, 47.336268], [-74.500196, 47.336268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 48.783584], [-74.500196, 50.2309], [-67.263617, 50.2309], [-67.263617, 48.783584], [-74.500196, 48.783584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 50.2309], [-74.500196, 51.678216], [-67.263617, 51.678216], [-67.263617, 50.2309], [-74.500196, 50.2309] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 51.678216], [-74.500196, 53.125532], [-67.263617, 53.125532], [-67.263617, 51.678216], [-74.500196, 51.678216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 53.125532], [-74.500196, 54.572847], [-67.263617, 54.572847], [-67.263617, 53.125532], [-74.500196, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 54.572847], [-74.500196, 56.020163], [-67.263617, 56.020163], [-67.263617, 54.572847], [-74.500196, 54.572847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 56.020163], [-74.500196, 57.467479], [-67.263617, 57.467479], [-67.263617, 56.020163], [-74.500196, 56.020163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 57.467479], [-74.500196, 58.914795], [-67.263617, 58.914795], [-67.263617, 57.467479], [-74.500196, 57.467479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 58.914795], [-74.500196, 60.362111], [-67.263617, 60.362111], [-67.263617, 58.914795], [-74.500196, 58.914795] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 60.362111], [-74.500196, 61.809427], [-67.263617, 61.809427], [-67.263617, 60.362111], [-74.500196, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 61.809427], [-74.500196, 63.256742], [-67.263617, 63.256742], [-67.263617, 61.809427], [-74.500196, 61.809427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 63.256742], [-74.500196, 64.704058], [-67.263617, 64.704058], [-67.263617, 63.256742], [-74.500196, 63.256742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 64.704058], [-74.500196, 66.151374], [-67.263617, 66.151374], [-67.263617, 64.704058], [-74.500196, 64.704058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 66.151374], [-74.500196, 67.59869], [-67.263617, 67.59869], [-67.263617, 66.151374], [-74.500196, 66.151374] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 67.59869], [-74.500196, 69.046006], [-67.263617, 69.046006], [-67.263617, 67.59869], [-74.500196, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 69.046006], [-74.500196, 70.493322], [-67.263617, 70.493322], [-67.263617, 69.046006], [-74.500196, 69.046006] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 70.493322], [-74.500196, 71.940637], [-67.263617, 71.940637], [-67.263617, 70.493322], [-74.500196, 70.493322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 71.940637], [-74.500196, 73.387953], [-67.263617, 73.387953], [-67.263617, 71.940637], [-74.500196, 71.940637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 73.387953], [-74.500196, 74.835269], [-67.263617, 74.835269], [-67.263617, 73.387953], [-74.500196, 73.387953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 74.835269], [-74.500196, 76.282585], [-67.263617, 76.282585], [-67.263617, 74.835269], [-74.500196, 74.835269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 76.282585], [-74.500196, 77.729901], [-67.263617, 77.729901], [-67.263617, 76.282585], [-74.500196, 76.282585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -80.027525], [-67.263617, -78.580209], [-60.027038, -78.580209], [-60.027038, -80.027525], [-67.263617, -80.027525] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -78.580209], [-67.263617, -77.132893], [-60.027038, -77.132893], [-60.027038, -78.580209], [-67.263617, -78.580209] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -77.132893], [-67.263617, -75.685577], [-60.027038, -75.685577], [-60.027038, -77.132893], [-67.263617, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -75.685577], [-67.263617, -74.238262], [-60.027038, -74.238262], [-60.027038, -75.685577], [-67.263617, -75.685577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -74.238262], [-67.263617, -72.790946], [-60.027038, -72.790946], [-60.027038, -74.238262], [-67.263617, -74.238262] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -72.790946], [-67.263617, -71.34363], [-60.027038, -71.34363], [-60.027038, -72.790946], [-67.263617, -72.790946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -71.34363], [-67.263617, -69.896314], [-60.027038, -69.896314], [-60.027038, -71.34363], [-67.263617, -71.34363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -69.896314], [-67.263617, -68.448998], [-60.027038, -68.448998], [-60.027038, -69.896314], [-67.263617, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -68.448998], [-67.263617, -67.001682], [-60.027038, -67.001682], [-60.027038, -68.448998], [-67.263617, -68.448998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -67.001682], [-67.263617, -65.554367], [-60.027038, -65.554367], [-60.027038, -67.001682], [-67.263617, -67.001682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -65.554367], [-67.263617, -64.107051], [-60.027038, -64.107051], [-60.027038, -65.554367], [-67.263617, -65.554367] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -64.107051], [-67.263617, -62.659735], [-60.027038, -62.659735], [-60.027038, -64.107051], [-67.263617, -64.107051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -62.659735], [-67.263617, -61.212419], [-60.027038, -61.212419], [-60.027038, -62.659735], [-67.263617, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -61.212419], [-67.263617, -59.765103], [-60.027038, -59.765103], [-60.027038, -61.212419], [-67.263617, -61.212419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -59.765103], [-67.263617, -58.317787], [-60.027038, -58.317787], [-60.027038, -59.765103], [-67.263617, -59.765103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -58.317787], [-67.263617, -56.870472], [-60.027038, -56.870472], [-60.027038, -58.317787], [-67.263617, -58.317787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -56.870472], [-67.263617, -55.423156], [-60.027038, -55.423156], [-60.027038, -56.870472], [-67.263617, -56.870472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -55.423156], [-67.263617, -53.97584], [-60.027038, -53.97584], [-60.027038, -55.423156], [-67.263617, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -53.97584], [-67.263617, -52.528524], [-60.027038, -52.528524], [-60.027038, -53.97584], [-67.263617, -53.97584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -52.528524], [-67.263617, -51.081208], [-60.027038, -51.081208], [-60.027038, -52.528524], [-67.263617, -52.528524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -51.081208], [-67.263617, -49.633892], [-60.027038, -49.633892], [-60.027038, -51.081208], [-67.263617, -51.081208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -49.633892], [-67.263617, -48.186577], [-60.027038, -48.186577], [-60.027038, -49.633892], [-67.263617, -49.633892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -48.186577], [-67.263617, -46.739261], [-60.027038, -46.739261], [-60.027038, -48.186577], [-67.263617, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -46.739261], [-67.263617, -45.291945], [-60.027038, -45.291945], [-60.027038, -46.739261], [-67.263617, -46.739261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -45.291945], [-67.263617, -43.844629], [-60.027038, -43.844629], [-60.027038, -45.291945], [-67.263617, -45.291945] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -43.844629], [-67.263617, -42.397313], [-60.027038, -42.397313], [-60.027038, -43.844629], [-67.263617, -43.844629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -42.397313], [-67.263617, -40.949997], [-60.027038, -40.949997], [-60.027038, -42.397313], [-67.263617, -42.397313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -40.949997], [-67.263617, -39.502682], [-60.027038, -39.502682], [-60.027038, -40.949997], [-67.263617, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -39.502682], [-67.263617, -38.055366], [-60.027038, -38.055366], [-60.027038, -39.502682], [-67.263617, -39.502682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -38.055366], [-67.263617, -36.60805], [-60.027038, -36.60805], [-60.027038, -38.055366], [-67.263617, -38.055366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -36.60805], [-67.263617, -35.160734], [-60.027038, -35.160734], [-60.027038, -36.60805], [-67.263617, -36.60805] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -35.160734], [-67.263617, -33.713418], [-60.027038, -33.713418], [-60.027038, -35.160734], [-67.263617, -35.160734] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -33.713418], [-67.263617, -32.266102], [-60.027038, -32.266102], [-60.027038, -33.713418], [-67.263617, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -32.266102], [-67.263617, -30.818787], [-60.027038, -30.818787], [-60.027038, -32.266102], [-67.263617, -32.266102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -30.818787], [-67.263617, -29.371471], [-60.027038, -29.371471], [-60.027038, -30.818787], [-67.263617, -30.818787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -29.371471], [-67.263617, -27.924155], [-60.027038, -27.924155], [-60.027038, -29.371471], [-67.263617, -29.371471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -27.924155], [-67.263617, -26.476839], [-60.027038, -26.476839], [-60.027038, -27.924155], [-67.263617, -27.924155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -26.476839], [-67.263617, -25.029523], [-60.027038, -25.029523], [-60.027038, -26.476839], [-67.263617, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -25.029523], [-67.263617, -23.582207], [-60.027038, -23.582207], [-60.027038, -25.029523], [-67.263617, -25.029523] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -23.582207], [-67.263617, -22.134892], [-60.027038, -22.134892], [-60.027038, -23.582207], [-67.263617, -23.582207] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -22.134892], [-67.263617, -20.687576], [-60.027038, -20.687576], [-60.027038, -22.134892], [-67.263617, -22.134892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -20.687576], [-67.263617, -19.24026], [-60.027038, -19.24026], [-60.027038, -20.687576], [-67.263617, -20.687576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -19.24026], [-67.263617, -17.792944], [-60.027038, -17.792944], [-60.027038, -19.24026], [-67.263617, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -17.792944], [-67.263617, -16.345628], [-60.027038, -16.345628], [-60.027038, -17.792944], [-67.263617, -17.792944] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -16.345628], [-67.263617, -14.898312], [-60.027038, -14.898312], [-60.027038, -16.345628], [-67.263617, -16.345628] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -14.898312], [-67.263617, -13.450997], [-60.027038, -13.450997], [-60.027038, -14.898312], [-67.263617, -14.898312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -13.450997], [-67.263617, -12.003681], [-60.027038, -12.003681], [-60.027038, -13.450997], [-67.263617, -13.450997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -12.003681], [-67.263617, -10.556365], [-60.027038, -10.556365], [-60.027038, -12.003681], [-67.263617, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -10.556365], [-67.263617, -9.109049], [-60.027038, -9.109049], [-60.027038, -10.556365], [-67.263617, -10.556365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -9.109049], [-67.263617, -7.661733], [-60.027038, -7.661733], [-60.027038, -9.109049], [-67.263617, -9.109049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -7.661733], [-67.263617, -6.214417], [-60.027038, -6.214417], [-60.027038, -7.661733], [-67.263617, -7.661733] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -6.214417], [-67.263617, -4.767102], [-60.027038, -4.767102], [-60.027038, -6.214417], [-67.263617, -6.214417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -4.767102], [-67.263617, -3.319786], [-60.027038, -3.319786], [-60.027038, -4.767102], [-67.263617, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -3.319786], [-67.263617, -1.87247], [-60.027038, -1.87247], [-60.027038, -3.319786], [-67.263617, -3.319786] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -1.87247], [-67.263617, -0.425154], [-60.027038, -0.425154], [-60.027038, -1.87247], [-67.263617, -1.87247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -0.425154], [-67.263617, 1.022162], [-60.027038, 1.022162], [-60.027038, -0.425154], [-67.263617, -0.425154] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 1.022162], [-67.263617, 2.469478], [-60.027038, 2.469478], [-60.027038, 1.022162], [-67.263617, 1.022162] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 2.469478], [-67.263617, 3.916793], [-60.027038, 3.916793], [-60.027038, 2.469478], [-67.263617, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 3.916793], [-67.263617, 5.364109], [-60.027038, 5.364109], [-60.027038, 3.916793], [-67.263617, 3.916793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 5.364109], [-67.263617, 6.811425], [-60.027038, 6.811425], [-60.027038, 5.364109], [-67.263617, 5.364109] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 6.811425], [-67.263617, 8.258741], [-60.027038, 8.258741], [-60.027038, 6.811425], [-67.263617, 6.811425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 8.258741], [-67.263617, 9.706057], [-60.027038, 9.706057], [-60.027038, 8.258741], [-67.263617, 8.258741] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 9.706057], [-67.263617, 11.153373], [-60.027038, 11.153373], [-60.027038, 9.706057], [-67.263617, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 11.153373], [-67.263617, 12.600688], [-60.027038, 12.600688], [-60.027038, 11.153373], [-67.263617, 11.153373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 12.600688], [-67.263617, 14.048004], [-60.027038, 14.048004], [-60.027038, 12.600688], [-67.263617, 12.600688] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 14.048004], [-67.263617, 15.49532], [-60.027038, 15.49532], [-60.027038, 14.048004], [-67.263617, 14.048004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 15.49532], [-67.263617, 16.942636], [-60.027038, 16.942636], [-60.027038, 15.49532], [-67.263617, 15.49532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 16.942636], [-67.263617, 18.389952], [-60.027038, 18.389952], [-60.027038, 16.942636], [-67.263617, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 18.389952], [-67.263617, 19.837268], [-60.027038, 19.837268], [-60.027038, 18.389952], [-67.263617, 18.389952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 19.837268], [-67.263617, 21.284583], [-60.027038, 21.284583], [-60.027038, 19.837268], [-67.263617, 19.837268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 21.284583], [-67.263617, 22.731899], [-60.027038, 22.731899], [-60.027038, 21.284583], [-67.263617, 21.284583] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 22.731899], [-67.263617, 24.179215], [-60.027038, 24.179215], [-60.027038, 22.731899], [-67.263617, 22.731899] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 24.179215], [-67.263617, 25.626531], [-60.027038, 25.626531], [-60.027038, 24.179215], [-67.263617, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 25.626531], [-67.263617, 27.073847], [-60.027038, 27.073847], [-60.027038, 25.626531], [-67.263617, 25.626531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 27.073847], [-67.263617, 28.521163], [-60.027038, 28.521163], [-60.027038, 27.073847], [-67.263617, 27.073847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 28.521163], [-67.263617, 29.968478], [-60.027038, 29.968478], [-60.027038, 28.521163], [-67.263617, 28.521163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 29.968478], [-67.263617, 31.415794], [-60.027038, 31.415794], [-60.027038, 29.968478], [-67.263617, 29.968478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 31.415794], [-67.263617, 32.86311], [-60.027038, 32.86311], [-60.027038, 31.415794], [-67.263617, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 32.86311], [-67.263617, 34.310426], [-60.027038, 34.310426], [-60.027038, 32.86311], [-67.263617, 32.86311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 34.310426], [-67.263617, 35.757742], [-60.027038, 35.757742], [-60.027038, 34.310426], [-67.263617, 34.310426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 35.757742], [-67.263617, 37.205058], [-60.027038, 37.205058], [-60.027038, 35.757742], [-67.263617, 35.757742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 37.205058], [-67.263617, 38.652373], [-60.027038, 38.652373], [-60.027038, 37.205058], [-67.263617, 37.205058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 38.652373], [-67.263617, 40.099689], [-60.027038, 40.099689], [-60.027038, 38.652373], [-67.263617, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 40.099689], [-67.263617, 41.547005], [-60.027038, 41.547005], [-60.027038, 40.099689], [-67.263617, 40.099689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 41.547005], [-67.263617, 42.994321], [-60.027038, 42.994321], [-60.027038, 41.547005], [-67.263617, 41.547005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 42.994321], [-67.263617, 44.441637], [-60.027038, 44.441637], [-60.027038, 42.994321], [-67.263617, 42.994321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 44.441637], [-67.263617, 45.888952], [-60.027038, 45.888952], [-60.027038, 44.441637], [-67.263617, 44.441637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 45.888952], [-67.263617, 47.336268], [-60.027038, 47.336268], [-60.027038, 45.888952], [-67.263617, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 47.336268], [-67.263617, 48.783584], [-60.027038, 48.783584], [-60.027038, 47.336268], [-67.263617, 47.336268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 48.783584], [-67.263617, 50.2309], [-60.027038, 50.2309], [-60.027038, 48.783584], [-67.263617, 48.783584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 50.2309], [-67.263617, 51.678216], [-60.027038, 51.678216], [-60.027038, 50.2309], [-67.263617, 50.2309] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 51.678216], [-67.263617, 53.125532], [-60.027038, 53.125532], [-60.027038, 51.678216], [-67.263617, 51.678216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 53.125532], [-67.263617, 54.572847], [-60.027038, 54.572847], [-60.027038, 53.125532], [-67.263617, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 54.572847], [-67.263617, 56.020163], [-60.027038, 56.020163], [-60.027038, 54.572847], [-67.263617, 54.572847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 56.020163], [-67.263617, 57.467479], [-60.027038, 57.467479], [-60.027038, 56.020163], [-67.263617, 56.020163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 57.467479], [-67.263617, 58.914795], [-60.027038, 58.914795], [-60.027038, 57.467479], [-67.263617, 57.467479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 58.914795], [-67.263617, 60.362111], [-60.027038, 60.362111], [-60.027038, 58.914795], [-67.263617, 58.914795] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 60.362111], [-67.263617, 61.809427], [-60.027038, 61.809427], [-60.027038, 60.362111], [-67.263617, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 61.809427], [-67.263617, 63.256742], [-60.027038, 63.256742], [-60.027038, 61.809427], [-67.263617, 61.809427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 63.256742], [-67.263617, 64.704058], [-60.027038, 64.704058], [-60.027038, 63.256742], [-67.263617, 63.256742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 64.704058], [-67.263617, 66.151374], [-60.027038, 66.151374], [-60.027038, 64.704058], [-67.263617, 64.704058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 66.151374], [-67.263617, 67.59869], [-60.027038, 67.59869], [-60.027038, 66.151374], [-67.263617, 66.151374] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 67.59869], [-67.263617, 69.046006], [-60.027038, 69.046006], [-60.027038, 67.59869], [-67.263617, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 69.046006], [-67.263617, 70.493322], [-60.027038, 70.493322], [-60.027038, 69.046006], [-67.263617, 69.046006] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 70.493322], [-67.263617, 71.940637], [-60.027038, 71.940637], [-60.027038, 70.493322], [-67.263617, 70.493322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 71.940637], [-67.263617, 73.387953], [-60.027038, 73.387953], [-60.027038, 71.940637], [-67.263617, 71.940637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 73.387953], [-67.263617, 74.835269], [-60.027038, 74.835269], [-60.027038, 73.387953], [-67.263617, 73.387953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 74.835269], [-67.263617, 76.282585], [-60.027038, 76.282585], [-60.027038, 74.835269], [-67.263617, 74.835269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 76.282585], [-67.263617, 77.729901], [-60.027038, 77.729901], [-60.027038, 76.282585], [-67.263617, 76.282585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -80.027525], [-60.027038, -78.580209], [-52.790458, -78.580209], [-52.790458, -80.027525], [-60.027038, -80.027525] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -78.580209], [-60.027038, -77.132893], [-52.790458, -77.132893], [-52.790458, -78.580209], [-60.027038, -78.580209] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -77.132893], [-60.027038, -75.685577], [-52.790458, -75.685577], [-52.790458, -77.132893], [-60.027038, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -75.685577], [-60.027038, -74.238262], [-52.790458, -74.238262], [-52.790458, -75.685577], [-60.027038, -75.685577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -74.238262], [-60.027038, -72.790946], [-52.790458, -72.790946], [-52.790458, -74.238262], [-60.027038, -74.238262] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -72.790946], [-60.027038, -71.34363], [-52.790458, -71.34363], [-52.790458, -72.790946], [-60.027038, -72.790946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -71.34363], [-60.027038, -69.896314], [-52.790458, -69.896314], [-52.790458, -71.34363], [-60.027038, -71.34363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -69.896314], [-60.027038, -68.448998], [-52.790458, -68.448998], [-52.790458, -69.896314], [-60.027038, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -68.448998], [-60.027038, -67.001682], [-52.790458, -67.001682], [-52.790458, -68.448998], [-60.027038, -68.448998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -67.001682], [-60.027038, -65.554367], [-52.790458, -65.554367], [-52.790458, -67.001682], [-60.027038, -67.001682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -65.554367], [-60.027038, -64.107051], [-52.790458, -64.107051], [-52.790458, -65.554367], [-60.027038, -65.554367] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -64.107051], [-60.027038, -62.659735], [-52.790458, -62.659735], [-52.790458, -64.107051], [-60.027038, -64.107051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -62.659735], [-60.027038, -61.212419], [-52.790458, -61.212419], [-52.790458, -62.659735], [-60.027038, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -61.212419], [-60.027038, -59.765103], [-52.790458, -59.765103], [-52.790458, -61.212419], [-60.027038, -61.212419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -59.765103], [-60.027038, -58.317787], [-52.790458, -58.317787], [-52.790458, -59.765103], [-60.027038, -59.765103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -58.317787], [-60.027038, -56.870472], [-52.790458, -56.870472], [-52.790458, -58.317787], [-60.027038, -58.317787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -56.870472], [-60.027038, -55.423156], [-52.790458, -55.423156], [-52.790458, -56.870472], [-60.027038, -56.870472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -55.423156], [-60.027038, -53.97584], [-52.790458, -53.97584], [-52.790458, -55.423156], [-60.027038, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -53.97584], [-60.027038, -52.528524], [-52.790458, -52.528524], [-52.790458, -53.97584], [-60.027038, -53.97584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -52.528524], [-60.027038, -51.081208], [-52.790458, -51.081208], [-52.790458, -52.528524], [-60.027038, -52.528524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -51.081208], [-60.027038, -49.633892], [-52.790458, -49.633892], [-52.790458, -51.081208], [-60.027038, -51.081208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -49.633892], [-60.027038, -48.186577], [-52.790458, -48.186577], [-52.790458, -49.633892], [-60.027038, -49.633892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -48.186577], [-60.027038, -46.739261], [-52.790458, -46.739261], [-52.790458, -48.186577], [-60.027038, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -46.739261], [-60.027038, -45.291945], [-52.790458, -45.291945], [-52.790458, -46.739261], [-60.027038, -46.739261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -45.291945], [-60.027038, -43.844629], [-52.790458, -43.844629], [-52.790458, -45.291945], [-60.027038, -45.291945] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -43.844629], [-60.027038, -42.397313], [-52.790458, -42.397313], [-52.790458, -43.844629], [-60.027038, -43.844629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -42.397313], [-60.027038, -40.949997], [-52.790458, -40.949997], [-52.790458, -42.397313], [-60.027038, -42.397313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -40.949997], [-60.027038, -39.502682], [-52.790458, -39.502682], [-52.790458, -40.949997], [-60.027038, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -39.502682], [-60.027038, -38.055366], [-52.790458, -38.055366], [-52.790458, -39.502682], [-60.027038, -39.502682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -38.055366], [-60.027038, -36.60805], [-52.790458, -36.60805], [-52.790458, -38.055366], [-60.027038, -38.055366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -36.60805], [-60.027038, -35.160734], [-52.790458, -35.160734], [-52.790458, -36.60805], [-60.027038, -36.60805] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -35.160734], [-60.027038, -33.713418], [-52.790458, -33.713418], [-52.790458, -35.160734], [-60.027038, -35.160734] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -33.713418], [-60.027038, -32.266102], [-52.790458, -32.266102], [-52.790458, -33.713418], [-60.027038, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -32.266102], [-60.027038, -30.818787], [-52.790458, -30.818787], [-52.790458, -32.266102], [-60.027038, -32.266102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -30.818787], [-60.027038, -29.371471], [-52.790458, -29.371471], [-52.790458, -30.818787], [-60.027038, -30.818787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -29.371471], [-60.027038, -27.924155], [-52.790458, -27.924155], [-52.790458, -29.371471], [-60.027038, -29.371471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -27.924155], [-60.027038, -26.476839], [-52.790458, -26.476839], [-52.790458, -27.924155], [-60.027038, -27.924155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -26.476839], [-60.027038, -25.029523], [-52.790458, -25.029523], [-52.790458, -26.476839], [-60.027038, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -25.029523], [-60.027038, -23.582207], [-52.790458, -23.582207], [-52.790458, -25.029523], [-60.027038, -25.029523] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -23.582207], [-60.027038, -22.134892], [-52.790458, -22.134892], [-52.790458, -23.582207], [-60.027038, -23.582207] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -22.134892], [-60.027038, -20.687576], [-52.790458, -20.687576], [-52.790458, -22.134892], [-60.027038, -22.134892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -20.687576], [-60.027038, -19.24026], [-52.790458, -19.24026], [-52.790458, -20.687576], [-60.027038, -20.687576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -19.24026], [-60.027038, -17.792944], [-52.790458, -17.792944], [-52.790458, -19.24026], [-60.027038, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -17.792944], [-60.027038, -16.345628], [-52.790458, -16.345628], [-52.790458, -17.792944], [-60.027038, -17.792944] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -16.345628], [-60.027038, -14.898312], [-52.790458, -14.898312], [-52.790458, -16.345628], [-60.027038, -16.345628] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -14.898312], [-60.027038, -13.450997], [-52.790458, -13.450997], [-52.790458, -14.898312], [-60.027038, -14.898312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -13.450997], [-60.027038, -12.003681], [-52.790458, -12.003681], [-52.790458, -13.450997], [-60.027038, -13.450997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -12.003681], [-60.027038, -10.556365], [-52.790458, -10.556365], [-52.790458, -12.003681], [-60.027038, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -10.556365], [-60.027038, -9.109049], [-52.790458, -9.109049], [-52.790458, -10.556365], [-60.027038, -10.556365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -9.109049], [-60.027038, -7.661733], [-52.790458, -7.661733], [-52.790458, -9.109049], [-60.027038, -9.109049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -7.661733], [-60.027038, -6.214417], [-52.790458, -6.214417], [-52.790458, -7.661733], [-60.027038, -7.661733] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -6.214417], [-60.027038, -4.767102], [-52.790458, -4.767102], [-52.790458, -6.214417], [-60.027038, -6.214417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -4.767102], [-60.027038, -3.319786], [-52.790458, -3.319786], [-52.790458, -4.767102], [-60.027038, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -3.319786], [-60.027038, -1.87247], [-52.790458, -1.87247], [-52.790458, -3.319786], [-60.027038, -3.319786] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -1.87247], [-60.027038, -0.425154], [-52.790458, -0.425154], [-52.790458, -1.87247], [-60.027038, -1.87247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -0.425154], [-60.027038, 1.022162], [-52.790458, 1.022162], [-52.790458, -0.425154], [-60.027038, -0.425154] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 1.022162], [-60.027038, 2.469478], [-52.790458, 2.469478], [-52.790458, 1.022162], [-60.027038, 1.022162] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 2.469478], [-60.027038, 3.916793], [-52.790458, 3.916793], [-52.790458, 2.469478], [-60.027038, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 3.916793], [-60.027038, 5.364109], [-52.790458, 5.364109], [-52.790458, 3.916793], [-60.027038, 3.916793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 5.364109], [-60.027038, 6.811425], [-52.790458, 6.811425], [-52.790458, 5.364109], [-60.027038, 5.364109] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 6.811425], [-60.027038, 8.258741], [-52.790458, 8.258741], [-52.790458, 6.811425], [-60.027038, 6.811425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 8.258741], [-60.027038, 9.706057], [-52.790458, 9.706057], [-52.790458, 8.258741], [-60.027038, 8.258741] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 9.706057], [-60.027038, 11.153373], [-52.790458, 11.153373], [-52.790458, 9.706057], [-60.027038, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 11.153373], [-60.027038, 12.600688], [-52.790458, 12.600688], [-52.790458, 11.153373], [-60.027038, 11.153373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 12.600688], [-60.027038, 14.048004], [-52.790458, 14.048004], [-52.790458, 12.600688], [-60.027038, 12.600688] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 14.048004], [-60.027038, 15.49532], [-52.790458, 15.49532], [-52.790458, 14.048004], [-60.027038, 14.048004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 15.49532], [-60.027038, 16.942636], [-52.790458, 16.942636], [-52.790458, 15.49532], [-60.027038, 15.49532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 16.942636], [-60.027038, 18.389952], [-52.790458, 18.389952], [-52.790458, 16.942636], [-60.027038, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 18.389952], [-60.027038, 19.837268], [-52.790458, 19.837268], [-52.790458, 18.389952], [-60.027038, 18.389952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 19.837268], [-60.027038, 21.284583], [-52.790458, 21.284583], [-52.790458, 19.837268], [-60.027038, 19.837268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 21.284583], [-60.027038, 22.731899], [-52.790458, 22.731899], [-52.790458, 21.284583], [-60.027038, 21.284583] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 22.731899], [-60.027038, 24.179215], [-52.790458, 24.179215], [-52.790458, 22.731899], [-60.027038, 22.731899] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 24.179215], [-60.027038, 25.626531], [-52.790458, 25.626531], [-52.790458, 24.179215], [-60.027038, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 25.626531], [-60.027038, 27.073847], [-52.790458, 27.073847], [-52.790458, 25.626531], [-60.027038, 25.626531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 27.073847], [-60.027038, 28.521163], [-52.790458, 28.521163], [-52.790458, 27.073847], [-60.027038, 27.073847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 28.521163], [-60.027038, 29.968478], [-52.790458, 29.968478], [-52.790458, 28.521163], [-60.027038, 28.521163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 29.968478], [-60.027038, 31.415794], [-52.790458, 31.415794], [-52.790458, 29.968478], [-60.027038, 29.968478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 31.415794], [-60.027038, 32.86311], [-52.790458, 32.86311], [-52.790458, 31.415794], [-60.027038, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 32.86311], [-60.027038, 34.310426], [-52.790458, 34.310426], [-52.790458, 32.86311], [-60.027038, 32.86311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 34.310426], [-60.027038, 35.757742], [-52.790458, 35.757742], [-52.790458, 34.310426], [-60.027038, 34.310426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 35.757742], [-60.027038, 37.205058], [-52.790458, 37.205058], [-52.790458, 35.757742], [-60.027038, 35.757742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 37.205058], [-60.027038, 38.652373], [-52.790458, 38.652373], [-52.790458, 37.205058], [-60.027038, 37.205058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 38.652373], [-60.027038, 40.099689], [-52.790458, 40.099689], [-52.790458, 38.652373], [-60.027038, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 40.099689], [-60.027038, 41.547005], [-52.790458, 41.547005], [-52.790458, 40.099689], [-60.027038, 40.099689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 41.547005], [-60.027038, 42.994321], [-52.790458, 42.994321], [-52.790458, 41.547005], [-60.027038, 41.547005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 42.994321], [-60.027038, 44.441637], [-52.790458, 44.441637], [-52.790458, 42.994321], [-60.027038, 42.994321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 44.441637], [-60.027038, 45.888952], [-52.790458, 45.888952], [-52.790458, 44.441637], [-60.027038, 44.441637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 45.888952], [-60.027038, 47.336268], [-52.790458, 47.336268], [-52.790458, 45.888952], [-60.027038, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 47.336268], [-60.027038, 48.783584], [-52.790458, 48.783584], [-52.790458, 47.336268], [-60.027038, 47.336268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 48.783584], [-60.027038, 50.2309], [-52.790458, 50.2309], [-52.790458, 48.783584], [-60.027038, 48.783584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 50.2309], [-60.027038, 51.678216], [-52.790458, 51.678216], [-52.790458, 50.2309], [-60.027038, 50.2309] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 51.678216], [-60.027038, 53.125532], [-52.790458, 53.125532], [-52.790458, 51.678216], [-60.027038, 51.678216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 53.125532], [-60.027038, 54.572847], [-52.790458, 54.572847], [-52.790458, 53.125532], [-60.027038, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 54.572847], [-60.027038, 56.020163], [-52.790458, 56.020163], [-52.790458, 54.572847], [-60.027038, 54.572847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 56.020163], [-60.027038, 57.467479], [-52.790458, 57.467479], [-52.790458, 56.020163], [-60.027038, 56.020163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 57.467479], [-60.027038, 58.914795], [-52.790458, 58.914795], [-52.790458, 57.467479], [-60.027038, 57.467479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 58.914795], [-60.027038, 60.362111], [-52.790458, 60.362111], [-52.790458, 58.914795], [-60.027038, 58.914795] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 60.362111], [-60.027038, 61.809427], [-52.790458, 61.809427], [-52.790458, 60.362111], [-60.027038, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 61.809427], [-60.027038, 63.256742], [-52.790458, 63.256742], [-52.790458, 61.809427], [-60.027038, 61.809427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 63.256742], [-60.027038, 64.704058], [-52.790458, 64.704058], [-52.790458, 63.256742], [-60.027038, 63.256742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 64.704058], [-60.027038, 66.151374], [-52.790458, 66.151374], [-52.790458, 64.704058], [-60.027038, 64.704058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 66.151374], [-60.027038, 67.59869], [-52.790458, 67.59869], [-52.790458, 66.151374], [-60.027038, 66.151374] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 67.59869], [-60.027038, 69.046006], [-52.790458, 69.046006], [-52.790458, 67.59869], [-60.027038, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 69.046006], [-60.027038, 70.493322], [-52.790458, 70.493322], [-52.790458, 69.046006], [-60.027038, 69.046006] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 70.493322], [-60.027038, 71.940637], [-52.790458, 71.940637], [-52.790458, 70.493322], [-60.027038, 70.493322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 71.940637], [-60.027038, 73.387953], [-52.790458, 73.387953], [-52.790458, 71.940637], [-60.027038, 71.940637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 73.387953], [-60.027038, 74.835269], [-52.790458, 74.835269], [-52.790458, 73.387953], [-60.027038, 73.387953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 74.835269], [-60.027038, 76.282585], [-52.790458, 76.282585], [-52.790458, 74.835269], [-60.027038, 74.835269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 76.282585], [-60.027038, 77.729901], [-52.790458, 77.729901], [-52.790458, 76.282585], [-60.027038, 76.282585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -80.027525], [-52.790458, -78.580209], [-45.553879, -78.580209], [-45.553879, -80.027525], [-52.790458, -80.027525] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -78.580209], [-52.790458, -77.132893], [-45.553879, -77.132893], [-45.553879, -78.580209], [-52.790458, -78.580209] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -77.132893], [-52.790458, -75.685577], [-45.553879, -75.685577], [-45.553879, -77.132893], [-52.790458, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -75.685577], [-52.790458, -74.238262], [-45.553879, -74.238262], [-45.553879, -75.685577], [-52.790458, -75.685577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -74.238262], [-52.790458, -72.790946], [-45.553879, -72.790946], [-45.553879, -74.238262], [-52.790458, -74.238262] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -72.790946], [-52.790458, -71.34363], [-45.553879, -71.34363], [-45.553879, -72.790946], [-52.790458, -72.790946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -71.34363], [-52.790458, -69.896314], [-45.553879, -69.896314], [-45.553879, -71.34363], [-52.790458, -71.34363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -69.896314], [-52.790458, -68.448998], [-45.553879, -68.448998], [-45.553879, -69.896314], [-52.790458, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -68.448998], [-52.790458, -67.001682], [-45.553879, -67.001682], [-45.553879, -68.448998], [-52.790458, -68.448998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -67.001682], [-52.790458, -65.554367], [-45.553879, -65.554367], [-45.553879, -67.001682], [-52.790458, -67.001682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -65.554367], [-52.790458, -64.107051], [-45.553879, -64.107051], [-45.553879, -65.554367], [-52.790458, -65.554367] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -64.107051], [-52.790458, -62.659735], [-45.553879, -62.659735], [-45.553879, -64.107051], [-52.790458, -64.107051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -62.659735], [-52.790458, -61.212419], [-45.553879, -61.212419], [-45.553879, -62.659735], [-52.790458, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -61.212419], [-52.790458, -59.765103], [-45.553879, -59.765103], [-45.553879, -61.212419], [-52.790458, -61.212419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -59.765103], [-52.790458, -58.317787], [-45.553879, -58.317787], [-45.553879, -59.765103], [-52.790458, -59.765103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -58.317787], [-52.790458, -56.870472], [-45.553879, -56.870472], [-45.553879, -58.317787], [-52.790458, -58.317787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -56.870472], [-52.790458, -55.423156], [-45.553879, -55.423156], [-45.553879, -56.870472], [-52.790458, -56.870472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -55.423156], [-52.790458, -53.97584], [-45.553879, -53.97584], [-45.553879, -55.423156], [-52.790458, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -53.97584], [-52.790458, -52.528524], [-45.553879, -52.528524], [-45.553879, -53.97584], [-52.790458, -53.97584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -52.528524], [-52.790458, -51.081208], [-45.553879, -51.081208], [-45.553879, -52.528524], [-52.790458, -52.528524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -51.081208], [-52.790458, -49.633892], [-45.553879, -49.633892], [-45.553879, -51.081208], [-52.790458, -51.081208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -49.633892], [-52.790458, -48.186577], [-45.553879, -48.186577], [-45.553879, -49.633892], [-52.790458, -49.633892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -48.186577], [-52.790458, -46.739261], [-45.553879, -46.739261], [-45.553879, -48.186577], [-52.790458, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -46.739261], [-52.790458, -45.291945], [-45.553879, -45.291945], [-45.553879, -46.739261], [-52.790458, -46.739261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -45.291945], [-52.790458, -43.844629], [-45.553879, -43.844629], [-45.553879, -45.291945], [-52.790458, -45.291945] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -43.844629], [-52.790458, -42.397313], [-45.553879, -42.397313], [-45.553879, -43.844629], [-52.790458, -43.844629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -42.397313], [-52.790458, -40.949997], [-45.553879, -40.949997], [-45.553879, -42.397313], [-52.790458, -42.397313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -40.949997], [-52.790458, -39.502682], [-45.553879, -39.502682], [-45.553879, -40.949997], [-52.790458, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -39.502682], [-52.790458, -38.055366], [-45.553879, -38.055366], [-45.553879, -39.502682], [-52.790458, -39.502682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -38.055366], [-52.790458, -36.60805], [-45.553879, -36.60805], [-45.553879, -38.055366], [-52.790458, -38.055366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -36.60805], [-52.790458, -35.160734], [-45.553879, -35.160734], [-45.553879, -36.60805], [-52.790458, -36.60805] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -35.160734], [-52.790458, -33.713418], [-45.553879, -33.713418], [-45.553879, -35.160734], [-52.790458, -35.160734] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -33.713418], [-52.790458, -32.266102], [-45.553879, -32.266102], [-45.553879, -33.713418], [-52.790458, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -32.266102], [-52.790458, -30.818787], [-45.553879, -30.818787], [-45.553879, -32.266102], [-52.790458, -32.266102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -30.818787], [-52.790458, -29.371471], [-45.553879, -29.371471], [-45.553879, -30.818787], [-52.790458, -30.818787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -29.371471], [-52.790458, -27.924155], [-45.553879, -27.924155], [-45.553879, -29.371471], [-52.790458, -29.371471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -27.924155], [-52.790458, -26.476839], [-45.553879, -26.476839], [-45.553879, -27.924155], [-52.790458, -27.924155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -26.476839], [-52.790458, -25.029523], [-45.553879, -25.029523], [-45.553879, -26.476839], [-52.790458, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -25.029523], [-52.790458, -23.582207], [-45.553879, -23.582207], [-45.553879, -25.029523], [-52.790458, -25.029523] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -23.582207], [-52.790458, -22.134892], [-45.553879, -22.134892], [-45.553879, -23.582207], [-52.790458, -23.582207] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -22.134892], [-52.790458, -20.687576], [-45.553879, -20.687576], [-45.553879, -22.134892], [-52.790458, -22.134892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -20.687576], [-52.790458, -19.24026], [-45.553879, -19.24026], [-45.553879, -20.687576], [-52.790458, -20.687576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -19.24026], [-52.790458, -17.792944], [-45.553879, -17.792944], [-45.553879, -19.24026], [-52.790458, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -17.792944], [-52.790458, -16.345628], [-45.553879, -16.345628], [-45.553879, -17.792944], [-52.790458, -17.792944] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -16.345628], [-52.790458, -14.898312], [-45.553879, -14.898312], [-45.553879, -16.345628], [-52.790458, -16.345628] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -14.898312], [-52.790458, -13.450997], [-45.553879, -13.450997], [-45.553879, -14.898312], [-52.790458, -14.898312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -13.450997], [-52.790458, -12.003681], [-45.553879, -12.003681], [-45.553879, -13.450997], [-52.790458, -13.450997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -12.003681], [-52.790458, -10.556365], [-45.553879, -10.556365], [-45.553879, -12.003681], [-52.790458, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -10.556365], [-52.790458, -9.109049], [-45.553879, -9.109049], [-45.553879, -10.556365], [-52.790458, -10.556365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -9.109049], [-52.790458, -7.661733], [-45.553879, -7.661733], [-45.553879, -9.109049], [-52.790458, -9.109049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -7.661733], [-52.790458, -6.214417], [-45.553879, -6.214417], [-45.553879, -7.661733], [-52.790458, -7.661733] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -6.214417], [-52.790458, -4.767102], [-45.553879, -4.767102], [-45.553879, -6.214417], [-52.790458, -6.214417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -4.767102], [-52.790458, -3.319786], [-45.553879, -3.319786], [-45.553879, -4.767102], [-52.790458, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -3.319786], [-52.790458, -1.87247], [-45.553879, -1.87247], [-45.553879, -3.319786], [-52.790458, -3.319786] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -1.87247], [-52.790458, -0.425154], [-45.553879, -0.425154], [-45.553879, -1.87247], [-52.790458, -1.87247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -0.425154], [-52.790458, 1.022162], [-45.553879, 1.022162], [-45.553879, -0.425154], [-52.790458, -0.425154] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 1.022162], [-52.790458, 2.469478], [-45.553879, 2.469478], [-45.553879, 1.022162], [-52.790458, 1.022162] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 2.469478], [-52.790458, 3.916793], [-45.553879, 3.916793], [-45.553879, 2.469478], [-52.790458, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 3.916793], [-52.790458, 5.364109], [-45.553879, 5.364109], [-45.553879, 3.916793], [-52.790458, 3.916793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 5.364109], [-52.790458, 6.811425], [-45.553879, 6.811425], [-45.553879, 5.364109], [-52.790458, 5.364109] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 6.811425], [-52.790458, 8.258741], [-45.553879, 8.258741], [-45.553879, 6.811425], [-52.790458, 6.811425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 8.258741], [-52.790458, 9.706057], [-45.553879, 9.706057], [-45.553879, 8.258741], [-52.790458, 8.258741] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 9.706057], [-52.790458, 11.153373], [-45.553879, 11.153373], [-45.553879, 9.706057], [-52.790458, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 11.153373], [-52.790458, 12.600688], [-45.553879, 12.600688], [-45.553879, 11.153373], [-52.790458, 11.153373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 12.600688], [-52.790458, 14.048004], [-45.553879, 14.048004], [-45.553879, 12.600688], [-52.790458, 12.600688] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 14.048004], [-52.790458, 15.49532], [-45.553879, 15.49532], [-45.553879, 14.048004], [-52.790458, 14.048004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 15.49532], [-52.790458, 16.942636], [-45.553879, 16.942636], [-45.553879, 15.49532], [-52.790458, 15.49532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 16.942636], [-52.790458, 18.389952], [-45.553879, 18.389952], [-45.553879, 16.942636], [-52.790458, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 18.389952], [-52.790458, 19.837268], [-45.553879, 19.837268], [-45.553879, 18.389952], [-52.790458, 18.389952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 19.837268], [-52.790458, 21.284583], [-45.553879, 21.284583], [-45.553879, 19.837268], [-52.790458, 19.837268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 21.284583], [-52.790458, 22.731899], [-45.553879, 22.731899], [-45.553879, 21.284583], [-52.790458, 21.284583] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 22.731899], [-52.790458, 24.179215], [-45.553879, 24.179215], [-45.553879, 22.731899], [-52.790458, 22.731899] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 24.179215], [-52.790458, 25.626531], [-45.553879, 25.626531], [-45.553879, 24.179215], [-52.790458, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 25.626531], [-52.790458, 27.073847], [-45.553879, 27.073847], [-45.553879, 25.626531], [-52.790458, 25.626531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 27.073847], [-52.790458, 28.521163], [-45.553879, 28.521163], [-45.553879, 27.073847], [-52.790458, 27.073847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 28.521163], [-52.790458, 29.968478], [-45.553879, 29.968478], [-45.553879, 28.521163], [-52.790458, 28.521163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 29.968478], [-52.790458, 31.415794], [-45.553879, 31.415794], [-45.553879, 29.968478], [-52.790458, 29.968478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 31.415794], [-52.790458, 32.86311], [-45.553879, 32.86311], [-45.553879, 31.415794], [-52.790458, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 32.86311], [-52.790458, 34.310426], [-45.553879, 34.310426], [-45.553879, 32.86311], [-52.790458, 32.86311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 34.310426], [-52.790458, 35.757742], [-45.553879, 35.757742], [-45.553879, 34.310426], [-52.790458, 34.310426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 35.757742], [-52.790458, 37.205058], [-45.553879, 37.205058], [-45.553879, 35.757742], [-52.790458, 35.757742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 37.205058], [-52.790458, 38.652373], [-45.553879, 38.652373], [-45.553879, 37.205058], [-52.790458, 37.205058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 38.652373], [-52.790458, 40.099689], [-45.553879, 40.099689], [-45.553879, 38.652373], [-52.790458, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 40.099689], [-52.790458, 41.547005], [-45.553879, 41.547005], [-45.553879, 40.099689], [-52.790458, 40.099689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 41.547005], [-52.790458, 42.994321], [-45.553879, 42.994321], [-45.553879, 41.547005], [-52.790458, 41.547005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 42.994321], [-52.790458, 44.441637], [-45.553879, 44.441637], [-45.553879, 42.994321], [-52.790458, 42.994321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 44.441637], [-52.790458, 45.888952], [-45.553879, 45.888952], [-45.553879, 44.441637], [-52.790458, 44.441637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 45.888952], [-52.790458, 47.336268], [-45.553879, 47.336268], [-45.553879, 45.888952], [-52.790458, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 47.336268], [-52.790458, 48.783584], [-45.553879, 48.783584], [-45.553879, 47.336268], [-52.790458, 47.336268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 48.783584], [-52.790458, 50.2309], [-45.553879, 50.2309], [-45.553879, 48.783584], [-52.790458, 48.783584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 50.2309], [-52.790458, 51.678216], [-45.553879, 51.678216], [-45.553879, 50.2309], [-52.790458, 50.2309] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 51.678216], [-52.790458, 53.125532], [-45.553879, 53.125532], [-45.553879, 51.678216], [-52.790458, 51.678216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 53.125532], [-52.790458, 54.572847], [-45.553879, 54.572847], [-45.553879, 53.125532], [-52.790458, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 54.572847], [-52.790458, 56.020163], [-45.553879, 56.020163], [-45.553879, 54.572847], [-52.790458, 54.572847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 56.020163], [-52.790458, 57.467479], [-45.553879, 57.467479], [-45.553879, 56.020163], [-52.790458, 56.020163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 57.467479], [-52.790458, 58.914795], [-45.553879, 58.914795], [-45.553879, 57.467479], [-52.790458, 57.467479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 58.914795], [-52.790458, 60.362111], [-45.553879, 60.362111], [-45.553879, 58.914795], [-52.790458, 58.914795] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 60.362111], [-52.790458, 61.809427], [-45.553879, 61.809427], [-45.553879, 60.362111], [-52.790458, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 61.809427], [-52.790458, 63.256742], [-45.553879, 63.256742], [-45.553879, 61.809427], [-52.790458, 61.809427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 63.256742], [-52.790458, 64.704058], [-45.553879, 64.704058], [-45.553879, 63.256742], [-52.790458, 63.256742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 64.704058], [-52.790458, 66.151374], [-45.553879, 66.151374], [-45.553879, 64.704058], [-52.790458, 64.704058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 66.151374], [-52.790458, 67.59869], [-45.553879, 67.59869], [-45.553879, 66.151374], [-52.790458, 66.151374] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 67.59869], [-52.790458, 69.046006], [-45.553879, 69.046006], [-45.553879, 67.59869], [-52.790458, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 69.046006], [-52.790458, 70.493322], [-45.553879, 70.493322], [-45.553879, 69.046006], [-52.790458, 69.046006] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 70.493322], [-52.790458, 71.940637], [-45.553879, 71.940637], [-45.553879, 70.493322], [-52.790458, 70.493322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 71.940637], [-52.790458, 73.387953], [-45.553879, 73.387953], [-45.553879, 71.940637], [-52.790458, 71.940637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 73.387953], [-52.790458, 74.835269], [-45.553879, 74.835269], [-45.553879, 73.387953], [-52.790458, 73.387953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 74.835269], [-52.790458, 76.282585], [-45.553879, 76.282585], [-45.553879, 74.835269], [-52.790458, 74.835269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 76.282585], [-52.790458, 77.729901], [-45.553879, 77.729901], [-45.553879, 76.282585], [-52.790458, 76.282585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -80.027525], [-45.553879, -78.580209], [-38.3173, -78.580209], [-38.3173, -80.027525], [-45.553879, -80.027525] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -78.580209], [-45.553879, -77.132893], [-38.3173, -77.132893], [-38.3173, -78.580209], [-45.553879, -78.580209] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -77.132893], [-45.553879, -75.685577], [-38.3173, -75.685577], [-38.3173, -77.132893], [-45.553879, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -75.685577], [-45.553879, -74.238262], [-38.3173, -74.238262], [-38.3173, -75.685577], [-45.553879, -75.685577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -74.238262], [-45.553879, -72.790946], [-38.3173, -72.790946], [-38.3173, -74.238262], [-45.553879, -74.238262] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -72.790946], [-45.553879, -71.34363], [-38.3173, -71.34363], [-38.3173, -72.790946], [-45.553879, -72.790946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -71.34363], [-45.553879, -69.896314], [-38.3173, -69.896314], [-38.3173, -71.34363], [-45.553879, -71.34363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -69.896314], [-45.553879, -68.448998], [-38.3173, -68.448998], [-38.3173, -69.896314], [-45.553879, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -68.448998], [-45.553879, -67.001682], [-38.3173, -67.001682], [-38.3173, -68.448998], [-45.553879, -68.448998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -67.001682], [-45.553879, -65.554367], [-38.3173, -65.554367], [-38.3173, -67.001682], [-45.553879, -67.001682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -65.554367], [-45.553879, -64.107051], [-38.3173, -64.107051], [-38.3173, -65.554367], [-45.553879, -65.554367] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -64.107051], [-45.553879, -62.659735], [-38.3173, -62.659735], [-38.3173, -64.107051], [-45.553879, -64.107051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -62.659735], [-45.553879, -61.212419], [-38.3173, -61.212419], [-38.3173, -62.659735], [-45.553879, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -61.212419], [-45.553879, -59.765103], [-38.3173, -59.765103], [-38.3173, -61.212419], [-45.553879, -61.212419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -59.765103], [-45.553879, -58.317787], [-38.3173, -58.317787], [-38.3173, -59.765103], [-45.553879, -59.765103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -58.317787], [-45.553879, -56.870472], [-38.3173, -56.870472], [-38.3173, -58.317787], [-45.553879, -58.317787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -56.870472], [-45.553879, -55.423156], [-38.3173, -55.423156], [-38.3173, -56.870472], [-45.553879, -56.870472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -55.423156], [-45.553879, -53.97584], [-38.3173, -53.97584], [-38.3173, -55.423156], [-45.553879, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -53.97584], [-45.553879, -52.528524], [-38.3173, -52.528524], [-38.3173, -53.97584], [-45.553879, -53.97584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -52.528524], [-45.553879, -51.081208], [-38.3173, -51.081208], [-38.3173, -52.528524], [-45.553879, -52.528524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -51.081208], [-45.553879, -49.633892], [-38.3173, -49.633892], [-38.3173, -51.081208], [-45.553879, -51.081208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -49.633892], [-45.553879, -48.186577], [-38.3173, -48.186577], [-38.3173, -49.633892], [-45.553879, -49.633892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -48.186577], [-45.553879, -46.739261], [-38.3173, -46.739261], [-38.3173, -48.186577], [-45.553879, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -46.739261], [-45.553879, -45.291945], [-38.3173, -45.291945], [-38.3173, -46.739261], [-45.553879, -46.739261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -45.291945], [-45.553879, -43.844629], [-38.3173, -43.844629], [-38.3173, -45.291945], [-45.553879, -45.291945] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -43.844629], [-45.553879, -42.397313], [-38.3173, -42.397313], [-38.3173, -43.844629], [-45.553879, -43.844629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -42.397313], [-45.553879, -40.949997], [-38.3173, -40.949997], [-38.3173, -42.397313], [-45.553879, -42.397313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -40.949997], [-45.553879, -39.502682], [-38.3173, -39.502682], [-38.3173, -40.949997], [-45.553879, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -39.502682], [-45.553879, -38.055366], [-38.3173, -38.055366], [-38.3173, -39.502682], [-45.553879, -39.502682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -38.055366], [-45.553879, -36.60805], [-38.3173, -36.60805], [-38.3173, -38.055366], [-45.553879, -38.055366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -36.60805], [-45.553879, -35.160734], [-38.3173, -35.160734], [-38.3173, -36.60805], [-45.553879, -36.60805] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -35.160734], [-45.553879, -33.713418], [-38.3173, -33.713418], [-38.3173, -35.160734], [-45.553879, -35.160734] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -33.713418], [-45.553879, -32.266102], [-38.3173, -32.266102], [-38.3173, -33.713418], [-45.553879, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -32.266102], [-45.553879, -30.818787], [-38.3173, -30.818787], [-38.3173, -32.266102], [-45.553879, -32.266102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -30.818787], [-45.553879, -29.371471], [-38.3173, -29.371471], [-38.3173, -30.818787], [-45.553879, -30.818787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -29.371471], [-45.553879, -27.924155], [-38.3173, -27.924155], [-38.3173, -29.371471], [-45.553879, -29.371471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -27.924155], [-45.553879, -26.476839], [-38.3173, -26.476839], [-38.3173, -27.924155], [-45.553879, -27.924155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -26.476839], [-45.553879, -25.029523], [-38.3173, -25.029523], [-38.3173, -26.476839], [-45.553879, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -25.029523], [-45.553879, -23.582207], [-38.3173, -23.582207], [-38.3173, -25.029523], [-45.553879, -25.029523] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -23.582207], [-45.553879, -22.134892], [-38.3173, -22.134892], [-38.3173, -23.582207], [-45.553879, -23.582207] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -22.134892], [-45.553879, -20.687576], [-38.3173, -20.687576], [-38.3173, -22.134892], [-45.553879, -22.134892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -20.687576], [-45.553879, -19.24026], [-38.3173, -19.24026], [-38.3173, -20.687576], [-45.553879, -20.687576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -19.24026], [-45.553879, -17.792944], [-38.3173, -17.792944], [-38.3173, -19.24026], [-45.553879, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -17.792944], [-45.553879, -16.345628], [-38.3173, -16.345628], [-38.3173, -17.792944], [-45.553879, -17.792944] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -16.345628], [-45.553879, -14.898312], [-38.3173, -14.898312], [-38.3173, -16.345628], [-45.553879, -16.345628] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -14.898312], [-45.553879, -13.450997], [-38.3173, -13.450997], [-38.3173, -14.898312], [-45.553879, -14.898312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -13.450997], [-45.553879, -12.003681], [-38.3173, -12.003681], [-38.3173, -13.450997], [-45.553879, -13.450997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -12.003681], [-45.553879, -10.556365], [-38.3173, -10.556365], [-38.3173, -12.003681], [-45.553879, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -10.556365], [-45.553879, -9.109049], [-38.3173, -9.109049], [-38.3173, -10.556365], [-45.553879, -10.556365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -9.109049], [-45.553879, -7.661733], [-38.3173, -7.661733], [-38.3173, -9.109049], [-45.553879, -9.109049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -7.661733], [-45.553879, -6.214417], [-38.3173, -6.214417], [-38.3173, -7.661733], [-45.553879, -7.661733] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -6.214417], [-45.553879, -4.767102], [-38.3173, -4.767102], [-38.3173, -6.214417], [-45.553879, -6.214417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -4.767102], [-45.553879, -3.319786], [-38.3173, -3.319786], [-38.3173, -4.767102], [-45.553879, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -3.319786], [-45.553879, -1.87247], [-38.3173, -1.87247], [-38.3173, -3.319786], [-45.553879, -3.319786] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -1.87247], [-45.553879, -0.425154], [-38.3173, -0.425154], [-38.3173, -1.87247], [-45.553879, -1.87247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -0.425154], [-45.553879, 1.022162], [-38.3173, 1.022162], [-38.3173, -0.425154], [-45.553879, -0.425154] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 1.022162], [-45.553879, 2.469478], [-38.3173, 2.469478], [-38.3173, 1.022162], [-45.553879, 1.022162] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 2.469478], [-45.553879, 3.916793], [-38.3173, 3.916793], [-38.3173, 2.469478], [-45.553879, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 3.916793], [-45.553879, 5.364109], [-38.3173, 5.364109], [-38.3173, 3.916793], [-45.553879, 3.916793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 5.364109], [-45.553879, 6.811425], [-38.3173, 6.811425], [-38.3173, 5.364109], [-45.553879, 5.364109] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 6.811425], [-45.553879, 8.258741], [-38.3173, 8.258741], [-38.3173, 6.811425], [-45.553879, 6.811425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 8.258741], [-45.553879, 9.706057], [-38.3173, 9.706057], [-38.3173, 8.258741], [-45.553879, 8.258741] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 9.706057], [-45.553879, 11.153373], [-38.3173, 11.153373], [-38.3173, 9.706057], [-45.553879, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 11.153373], [-45.553879, 12.600688], [-38.3173, 12.600688], [-38.3173, 11.153373], [-45.553879, 11.153373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 12.600688], [-45.553879, 14.048004], [-38.3173, 14.048004], [-38.3173, 12.600688], [-45.553879, 12.600688] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 14.048004], [-45.553879, 15.49532], [-38.3173, 15.49532], [-38.3173, 14.048004], [-45.553879, 14.048004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 15.49532], [-45.553879, 16.942636], [-38.3173, 16.942636], [-38.3173, 15.49532], [-45.553879, 15.49532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 16.942636], [-45.553879, 18.389952], [-38.3173, 18.389952], [-38.3173, 16.942636], [-45.553879, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 18.389952], [-45.553879, 19.837268], [-38.3173, 19.837268], [-38.3173, 18.389952], [-45.553879, 18.389952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 19.837268], [-45.553879, 21.284583], [-38.3173, 21.284583], [-38.3173, 19.837268], [-45.553879, 19.837268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 21.284583], [-45.553879, 22.731899], [-38.3173, 22.731899], [-38.3173, 21.284583], [-45.553879, 21.284583] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 22.731899], [-45.553879, 24.179215], [-38.3173, 24.179215], [-38.3173, 22.731899], [-45.553879, 22.731899] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 24.179215], [-45.553879, 25.626531], [-38.3173, 25.626531], [-38.3173, 24.179215], [-45.553879, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 25.626531], [-45.553879, 27.073847], [-38.3173, 27.073847], [-38.3173, 25.626531], [-45.553879, 25.626531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 27.073847], [-45.553879, 28.521163], [-38.3173, 28.521163], [-38.3173, 27.073847], [-45.553879, 27.073847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 28.521163], [-45.553879, 29.968478], [-38.3173, 29.968478], [-38.3173, 28.521163], [-45.553879, 28.521163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 29.968478], [-45.553879, 31.415794], [-38.3173, 31.415794], [-38.3173, 29.968478], [-45.553879, 29.968478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 31.415794], [-45.553879, 32.86311], [-38.3173, 32.86311], [-38.3173, 31.415794], [-45.553879, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 32.86311], [-45.553879, 34.310426], [-38.3173, 34.310426], [-38.3173, 32.86311], [-45.553879, 32.86311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 34.310426], [-45.553879, 35.757742], [-38.3173, 35.757742], [-38.3173, 34.310426], [-45.553879, 34.310426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 35.757742], [-45.553879, 37.205058], [-38.3173, 37.205058], [-38.3173, 35.757742], [-45.553879, 35.757742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 37.205058], [-45.553879, 38.652373], [-38.3173, 38.652373], [-38.3173, 37.205058], [-45.553879, 37.205058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 38.652373], [-45.553879, 40.099689], [-38.3173, 40.099689], [-38.3173, 38.652373], [-45.553879, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 40.099689], [-45.553879, 41.547005], [-38.3173, 41.547005], [-38.3173, 40.099689], [-45.553879, 40.099689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 41.547005], [-45.553879, 42.994321], [-38.3173, 42.994321], [-38.3173, 41.547005], [-45.553879, 41.547005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 42.994321], [-45.553879, 44.441637], [-38.3173, 44.441637], [-38.3173, 42.994321], [-45.553879, 42.994321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 44.441637], [-45.553879, 45.888952], [-38.3173, 45.888952], [-38.3173, 44.441637], [-45.553879, 44.441637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 45.888952], [-45.553879, 47.336268], [-38.3173, 47.336268], [-38.3173, 45.888952], [-45.553879, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 47.336268], [-45.553879, 48.783584], [-38.3173, 48.783584], [-38.3173, 47.336268], [-45.553879, 47.336268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 48.783584], [-45.553879, 50.2309], [-38.3173, 50.2309], [-38.3173, 48.783584], [-45.553879, 48.783584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 50.2309], [-45.553879, 51.678216], [-38.3173, 51.678216], [-38.3173, 50.2309], [-45.553879, 50.2309] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 51.678216], [-45.553879, 53.125532], [-38.3173, 53.125532], [-38.3173, 51.678216], [-45.553879, 51.678216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 53.125532], [-45.553879, 54.572847], [-38.3173, 54.572847], [-38.3173, 53.125532], [-45.553879, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 54.572847], [-45.553879, 56.020163], [-38.3173, 56.020163], [-38.3173, 54.572847], [-45.553879, 54.572847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 56.020163], [-45.553879, 57.467479], [-38.3173, 57.467479], [-38.3173, 56.020163], [-45.553879, 56.020163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 57.467479], [-45.553879, 58.914795], [-38.3173, 58.914795], [-38.3173, 57.467479], [-45.553879, 57.467479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 58.914795], [-45.553879, 60.362111], [-38.3173, 60.362111], [-38.3173, 58.914795], [-45.553879, 58.914795] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 60.362111], [-45.553879, 61.809427], [-38.3173, 61.809427], [-38.3173, 60.362111], [-45.553879, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 61.809427], [-45.553879, 63.256742], [-38.3173, 63.256742], [-38.3173, 61.809427], [-45.553879, 61.809427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 63.256742], [-45.553879, 64.704058], [-38.3173, 64.704058], [-38.3173, 63.256742], [-45.553879, 63.256742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 64.704058], [-45.553879, 66.151374], [-38.3173, 66.151374], [-38.3173, 64.704058], [-45.553879, 64.704058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 66.151374], [-45.553879, 67.59869], [-38.3173, 67.59869], [-38.3173, 66.151374], [-45.553879, 66.151374] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 67.59869], [-45.553879, 69.046006], [-38.3173, 69.046006], [-38.3173, 67.59869], [-45.553879, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 69.046006], [-45.553879, 70.493322], [-38.3173, 70.493322], [-38.3173, 69.046006], [-45.553879, 69.046006] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 70.493322], [-45.553879, 71.940637], [-38.3173, 71.940637], [-38.3173, 70.493322], [-45.553879, 70.493322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 71.940637], [-45.553879, 73.387953], [-38.3173, 73.387953], [-38.3173, 71.940637], [-45.553879, 71.940637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 73.387953], [-45.553879, 74.835269], [-38.3173, 74.835269], [-38.3173, 73.387953], [-45.553879, 73.387953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 74.835269], [-45.553879, 76.282585], [-38.3173, 76.282585], [-38.3173, 74.835269], [-45.553879, 74.835269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 76.282585], [-45.553879, 77.729901], [-38.3173, 77.729901], [-38.3173, 76.282585], [-45.553879, 76.282585] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -80.027525], [-38.3173, -78.580209], [-31.080721, -78.580209], [-31.080721, -80.027525], [-38.3173, -80.027525] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -78.580209], [-38.3173, -77.132893], [-31.080721, -77.132893], [-31.080721, -78.580209], [-38.3173, -78.580209] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -77.132893], [-38.3173, -75.685577], [-31.080721, -75.685577], [-31.080721, -77.132893], [-38.3173, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -75.685577], [-38.3173, -74.238262], [-31.080721, -74.238262], [-31.080721, -75.685577], [-38.3173, -75.685577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -74.238262], [-38.3173, -72.790946], [-31.080721, -72.790946], [-31.080721, -74.238262], [-38.3173, -74.238262] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -72.790946], [-38.3173, -71.34363], [-31.080721, -71.34363], [-31.080721, -72.790946], [-38.3173, -72.790946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -71.34363], [-38.3173, -69.896314], [-31.080721, -69.896314], [-31.080721, -71.34363], [-38.3173, -71.34363] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -69.896314], [-38.3173, -68.448998], [-31.080721, -68.448998], [-31.080721, -69.896314], [-38.3173, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -68.448998], [-38.3173, -67.001682], [-31.080721, -67.001682], [-31.080721, -68.448998], [-38.3173, -68.448998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -67.001682], [-38.3173, -65.554367], [-31.080721, -65.554367], [-31.080721, -67.001682], [-38.3173, -67.001682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -65.554367], [-38.3173, -64.107051], [-31.080721, -64.107051], [-31.080721, -65.554367], [-38.3173, -65.554367] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -64.107051], [-38.3173, -62.659735], [-31.080721, -62.659735], [-31.080721, -64.107051], [-38.3173, -64.107051] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -62.659735], [-38.3173, -61.212419], [-31.080721, -61.212419], [-31.080721, -62.659735], [-38.3173, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -61.212419], [-38.3173, -59.765103], [-31.080721, -59.765103], [-31.080721, -61.212419], [-38.3173, -61.212419] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -59.765103], [-38.3173, -58.317787], [-31.080721, -58.317787], [-31.080721, -59.765103], [-38.3173, -59.765103] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -58.317787], [-38.3173, -56.870472], [-31.080721, -56.870472], [-31.080721, -58.317787], [-38.3173, -58.317787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -56.870472], [-38.3173, -55.423156], [-31.080721, -55.423156], [-31.080721, -56.870472], [-38.3173, -56.870472] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -55.423156], [-38.3173, -53.97584], [-31.080721, -53.97584], [-31.080721, -55.423156], [-38.3173, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -53.97584], [-38.3173, -52.528524], [-31.080721, -52.528524], [-31.080721, -53.97584], [-38.3173, -53.97584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -52.528524], [-38.3173, -51.081208], [-31.080721, -51.081208], [-31.080721, -52.528524], [-38.3173, -52.528524] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -51.081208], [-38.3173, -49.633892], [-31.080721, -49.633892], [-31.080721, -51.081208], [-38.3173, -51.081208] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -49.633892], [-38.3173, -48.186577], [-31.080721, -48.186577], [-31.080721, -49.633892], [-38.3173, -49.633892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -48.186577], [-38.3173, -46.739261], [-31.080721, -46.739261], [-31.080721, -48.186577], [-38.3173, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -46.739261], [-38.3173, -45.291945], [-31.080721, -45.291945], [-31.080721, -46.739261], [-38.3173, -46.739261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -45.291945], [-38.3173, -43.844629], [-31.080721, -43.844629], [-31.080721, -45.291945], [-38.3173, -45.291945] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -43.844629], [-38.3173, -42.397313], [-31.080721, -42.397313], [-31.080721, -43.844629], [-38.3173, -43.844629] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -42.397313], [-38.3173, -40.949997], [-31.080721, -40.949997], [-31.080721, -42.397313], [-38.3173, -42.397313] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -40.949997], [-38.3173, -39.502682], [-31.080721, -39.502682], [-31.080721, -40.949997], [-38.3173, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -39.502682], [-38.3173, -38.055366], [-31.080721, -38.055366], [-31.080721, -39.502682], [-38.3173, -39.502682] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -38.055366], [-38.3173, -36.60805], [-31.080721, -36.60805], [-31.080721, -38.055366], [-38.3173, -38.055366] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -36.60805], [-38.3173, -35.160734], [-31.080721, -35.160734], [-31.080721, -36.60805], [-38.3173, -36.60805] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -35.160734], [-38.3173, -33.713418], [-31.080721, -33.713418], [-31.080721, -35.160734], [-38.3173, -35.160734] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -33.713418], [-38.3173, -32.266102], [-31.080721, -32.266102], [-31.080721, -33.713418], [-38.3173, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -32.266102], [-38.3173, -30.818787], [-31.080721, -30.818787], [-31.080721, -32.266102], [-38.3173, -32.266102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -30.818787], [-38.3173, -29.371471], [-31.080721, -29.371471], [-31.080721, -30.818787], [-38.3173, -30.818787] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -29.371471], [-38.3173, -27.924155], [-31.080721, -27.924155], [-31.080721, -29.371471], [-38.3173, -29.371471] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -27.924155], [-38.3173, -26.476839], [-31.080721, -26.476839], [-31.080721, -27.924155], [-38.3173, -27.924155] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -26.476839], [-38.3173, -25.029523], [-31.080721, -25.029523], [-31.080721, -26.476839], [-38.3173, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -25.029523], [-38.3173, -23.582207], [-31.080721, -23.582207], [-31.080721, -25.029523], [-38.3173, -25.029523] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -23.582207], [-38.3173, -22.134892], [-31.080721, -22.134892], [-31.080721, -23.582207], [-38.3173, -23.582207] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -22.134892], [-38.3173, -20.687576], [-31.080721, -20.687576], [-31.080721, -22.134892], [-38.3173, -22.134892] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -20.687576], [-38.3173, -19.24026], [-31.080721, -19.24026], [-31.080721, -20.687576], [-38.3173, -20.687576] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -19.24026], [-38.3173, -17.792944], [-31.080721, -17.792944], [-31.080721, -19.24026], [-38.3173, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -17.792944], [-38.3173, -16.345628], [-31.080721, -16.345628], [-31.080721, -17.792944], [-38.3173, -17.792944] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -16.345628], [-38.3173, -14.898312], [-31.080721, -14.898312], [-31.080721, -16.345628], [-38.3173, -16.345628] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -14.898312], [-38.3173, -13.450997], [-31.080721, -13.450997], [-31.080721, -14.898312], [-38.3173, -14.898312] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -13.450997], [-38.3173, -12.003681], [-31.080721, -12.003681], [-31.080721, -13.450997], [-38.3173, -13.450997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -12.003681], [-38.3173, -10.556365], [-31.080721, -10.556365], [-31.080721, -12.003681], [-38.3173, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -10.556365], [-38.3173, -9.109049], [-31.080721, -9.109049], [-31.080721, -10.556365], [-38.3173, -10.556365] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -9.109049], [-38.3173, -7.661733], [-31.080721, -7.661733], [-31.080721, -9.109049], [-38.3173, -9.109049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -7.661733], [-38.3173, -6.214417], [-31.080721, -6.214417], [-31.080721, -7.661733], [-38.3173, -7.661733] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -6.214417], [-38.3173, -4.767102], [-31.080721, -4.767102], [-31.080721, -6.214417], [-38.3173, -6.214417] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -4.767102], [-38.3173, -3.319786], [-31.080721, -3.319786], [-31.080721, -4.767102], [-38.3173, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -3.319786], [-38.3173, -1.87247], [-31.080721, -1.87247], [-31.080721, -3.319786], [-38.3173, -3.319786] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -1.87247], [-38.3173, -0.425154], [-31.080721, -0.425154], [-31.080721, -1.87247], [-38.3173, -1.87247] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -0.425154], [-38.3173, 1.022162], [-31.080721, 1.022162], [-31.080721, -0.425154], [-38.3173, -0.425154] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 1.022162], [-38.3173, 2.469478], [-31.080721, 2.469478], [-31.080721, 1.022162], [-38.3173, 1.022162] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 2.469478], [-38.3173, 3.916793], [-31.080721, 3.916793], [-31.080721, 2.469478], [-38.3173, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 3.916793], [-38.3173, 5.364109], [-31.080721, 5.364109], [-31.080721, 3.916793], [-38.3173, 3.916793] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 5.364109], [-38.3173, 6.811425], [-31.080721, 6.811425], [-31.080721, 5.364109], [-38.3173, 5.364109] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 6.811425], [-38.3173, 8.258741], [-31.080721, 8.258741], [-31.080721, 6.811425], [-38.3173, 6.811425] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 8.258741], [-38.3173, 9.706057], [-31.080721, 9.706057], [-31.080721, 8.258741], [-38.3173, 8.258741] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 9.706057], [-38.3173, 11.153373], [-31.080721, 11.153373], [-31.080721, 9.706057], [-38.3173, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 11.153373], [-38.3173, 12.600688], [-31.080721, 12.600688], [-31.080721, 11.153373], [-38.3173, 11.153373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 12.600688], [-38.3173, 14.048004], [-31.080721, 14.048004], [-31.080721, 12.600688], [-38.3173, 12.600688] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 14.048004], [-38.3173, 15.49532], [-31.080721, 15.49532], [-31.080721, 14.048004], [-38.3173, 14.048004] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 15.49532], [-38.3173, 16.942636], [-31.080721, 16.942636], [-31.080721, 15.49532], [-38.3173, 15.49532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 16.942636], [-38.3173, 18.389952], [-31.080721, 18.389952], [-31.080721, 16.942636], [-38.3173, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 18.389952], [-38.3173, 19.837268], [-31.080721, 19.837268], [-31.080721, 18.389952], [-38.3173, 18.389952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 19.837268], [-38.3173, 21.284583], [-31.080721, 21.284583], [-31.080721, 19.837268], [-38.3173, 19.837268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 21.284583], [-38.3173, 22.731899], [-31.080721, 22.731899], [-31.080721, 21.284583], [-38.3173, 21.284583] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 22.731899], [-38.3173, 24.179215], [-31.080721, 24.179215], [-31.080721, 22.731899], [-38.3173, 22.731899] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 24.179215], [-38.3173, 25.626531], [-31.080721, 25.626531], [-31.080721, 24.179215], [-38.3173, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 25.626531], [-38.3173, 27.073847], [-31.080721, 27.073847], [-31.080721, 25.626531], [-38.3173, 25.626531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 27.073847], [-38.3173, 28.521163], [-31.080721, 28.521163], [-31.080721, 27.073847], [-38.3173, 27.073847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 28.521163], [-38.3173, 29.968478], [-31.080721, 29.968478], [-31.080721, 28.521163], [-38.3173, 28.521163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 29.968478], [-38.3173, 31.415794], [-31.080721, 31.415794], [-31.080721, 29.968478], [-38.3173, 29.968478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 31.415794], [-38.3173, 32.86311], [-31.080721, 32.86311], [-31.080721, 31.415794], [-38.3173, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 32.86311], [-38.3173, 34.310426], [-31.080721, 34.310426], [-31.080721, 32.86311], [-38.3173, 32.86311] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 34.310426], [-38.3173, 35.757742], [-31.080721, 35.757742], [-31.080721, 34.310426], [-38.3173, 34.310426] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 35.757742], [-38.3173, 37.205058], [-31.080721, 37.205058], [-31.080721, 35.757742], [-38.3173, 35.757742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 37.205058], [-38.3173, 38.652373], [-31.080721, 38.652373], [-31.080721, 37.205058], [-38.3173, 37.205058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 38.652373], [-38.3173, 40.099689], [-31.080721, 40.099689], [-31.080721, 38.652373], [-38.3173, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 40.099689], [-38.3173, 41.547005], [-31.080721, 41.547005], [-31.080721, 40.099689], [-38.3173, 40.099689] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 41.547005], [-38.3173, 42.994321], [-31.080721, 42.994321], [-31.080721, 41.547005], [-38.3173, 41.547005] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 42.994321], [-38.3173, 44.441637], [-31.080721, 44.441637], [-31.080721, 42.994321], [-38.3173, 42.994321] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 44.441637], [-38.3173, 45.888952], [-31.080721, 45.888952], [-31.080721, 44.441637], [-38.3173, 44.441637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 45.888952], [-38.3173, 47.336268], [-31.080721, 47.336268], [-31.080721, 45.888952], [-38.3173, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 47.336268], [-38.3173, 48.783584], [-31.080721, 48.783584], [-31.080721, 47.336268], [-38.3173, 47.336268] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 48.783584], [-38.3173, 50.2309], [-31.080721, 50.2309], [-31.080721, 48.783584], [-38.3173, 48.783584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 50.2309], [-38.3173, 51.678216], [-31.080721, 51.678216], [-31.080721, 50.2309], [-38.3173, 50.2309] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 51.678216], [-38.3173, 53.125532], [-31.080721, 53.125532], [-31.080721, 51.678216], [-38.3173, 51.678216] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 53.125532], [-38.3173, 54.572847], [-31.080721, 54.572847], [-31.080721, 53.125532], [-38.3173, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 54.572847], [-38.3173, 56.020163], [-31.080721, 56.020163], [-31.080721, 54.572847], [-38.3173, 54.572847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 56.020163], [-38.3173, 57.467479], [-31.080721, 57.467479], [-31.080721, 56.020163], [-38.3173, 56.020163] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 57.467479], [-38.3173, 58.914795], [-31.080721, 58.914795], [-31.080721, 57.467479], [-38.3173, 57.467479] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 58.914795], [-38.3173, 60.362111], [-31.080721, 60.362111], [-31.080721, 58.914795], [-38.3173, 58.914795] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 60.362111], [-38.3173, 61.809427], [-31.080721, 61.809427], [-31.080721, 60.362111], [-38.3173, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 61.809427], [-38.3173, 63.256742], [-31.080721, 63.256742], [-31.080721, 61.809427], [-38.3173, 61.809427] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 63.256742], [-38.3173, 64.704058], [-31.080721, 64.704058], [-31.080721, 63.256742], [-38.3173, 63.256742] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 64.704058], [-38.3173, 66.151374], [-31.080721, 66.151374], [-31.080721, 64.704058], [-38.3173, 64.704058] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 66.151374], [-38.3173, 67.59869], [-31.080721, 67.59869], [-31.080721, 66.151374], [-38.3173, 66.151374] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 67.59869], [-38.3173, 69.046006], [-31.080721, 69.046006], [-31.080721, 67.59869], [-38.3173, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 69.046006], [-38.3173, 70.493322], [-31.080721, 70.493322], [-31.080721, 69.046006], [-38.3173, 69.046006] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 70.493322], [-38.3173, 71.940637], [-31.080721, 71.940637], [-31.080721, 70.493322], [-38.3173, 70.493322] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 71.940637], [-38.3173, 73.387953], [-31.080721, 73.387953], [-31.080721, 71.940637], [-38.3173, 71.940637] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 73.387953], [-38.3173, 74.835269], [-31.080721, 74.835269], [-31.080721, 73.387953], [-38.3173, 73.387953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 74.835269], [-38.3173, 76.282585], [-31.080721, 76.282585], [-31.080721, 74.835269], [-38.3173, 74.835269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 76.282585], [-38.3173, 77.729901], [-31.080721, 77.729901], [-31.080721, 76.282585], [-38.3173, 76.282585] ] ] } }, { "type": "Feature", "bbox": [-220.78125, -80.64703474739618, -29.53125, 78.34941069014629], "properties": { "stroke": "#F00", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -80.64703474739618], [-29.53125, -80.64703474739618], [-29.53125, 78.34941069014629], [-220.78125, 78.34941069014629], [-220.78125, -80.64703474739618] ] ] } } ] } ================================================ FILE: packages/turf-rectangle-grid/test/out/fiji-10x5-miles.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.323377, -17.150912], [-180.323377, -17.078546], [-180.178645, -17.078546], [-180.178645, -17.150912], [-180.323377, -17.150912] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.323377, -17.078546], [-180.323377, -17.00618], [-180.178645, -17.00618], [-180.178645, -17.078546], [-180.323377, -17.078546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.323377, -17.00618], [-180.323377, -16.933815], [-180.178645, -16.933815], [-180.178645, -17.00618], [-180.323377, -17.00618] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.323377, -16.933815], [-180.323377, -16.861449], [-180.178645, -16.861449], [-180.178645, -16.933815], [-180.323377, -16.933815] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.323377, -16.861449], [-180.323377, -16.789083], [-180.178645, -16.789083], [-180.178645, -16.861449], [-180.323377, -16.861449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.323377, -16.789083], [-180.323377, -16.716717], [-180.178645, -16.716717], [-180.178645, -16.789083], [-180.323377, -16.789083] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.323377, -16.716717], [-180.323377, -16.644352], [-180.178645, -16.644352], [-180.178645, -16.716717], [-180.323377, -16.716717] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.323377, -16.644352], [-180.323377, -16.571986], [-180.178645, -16.571986], [-180.178645, -16.644352], [-180.323377, -16.644352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.323377, -16.571986], [-180.323377, -16.49962], [-180.178645, -16.49962], [-180.178645, -16.571986], [-180.323377, -16.571986] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.178645, -17.150912], [-180.178645, -17.078546], [-180.033914, -17.078546], [-180.033914, -17.150912], [-180.178645, -17.150912] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.178645, -17.078546], [-180.178645, -17.00618], [-180.033914, -17.00618], [-180.033914, -17.078546], [-180.178645, -17.078546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.178645, -17.00618], [-180.178645, -16.933815], [-180.033914, -16.933815], [-180.033914, -17.00618], [-180.178645, -17.00618] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.178645, -16.933815], [-180.178645, -16.861449], [-180.033914, -16.861449], [-180.033914, -16.933815], [-180.178645, -16.933815] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.178645, -16.861449], [-180.178645, -16.789083], [-180.033914, -16.789083], [-180.033914, -16.861449], [-180.178645, -16.861449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.178645, -16.789083], [-180.178645, -16.716717], [-180.033914, -16.716717], [-180.033914, -16.789083], [-180.178645, -16.789083] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.178645, -16.716717], [-180.178645, -16.644352], [-180.033914, -16.644352], [-180.033914, -16.716717], [-180.178645, -16.716717] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.178645, -16.644352], [-180.178645, -16.571986], [-180.033914, -16.571986], [-180.033914, -16.644352], [-180.178645, -16.644352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.178645, -16.571986], [-180.178645, -16.49962], [-180.033914, -16.49962], [-180.033914, -16.571986], [-180.178645, -16.571986] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.033914, -17.150912], [-180.033914, -17.078546], [-179.889182, -17.078546], [-179.889182, -17.150912], [-180.033914, -17.150912] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.033914, -17.078546], [-180.033914, -17.00618], [-179.889182, -17.00618], [-179.889182, -17.078546], [-180.033914, -17.078546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.033914, -17.00618], [-180.033914, -16.933815], [-179.889182, -16.933815], [-179.889182, -17.00618], [-180.033914, -17.00618] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.033914, -16.933815], [-180.033914, -16.861449], [-179.889182, -16.861449], [-179.889182, -16.933815], [-180.033914, -16.933815] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.033914, -16.861449], [-180.033914, -16.789083], [-179.889182, -16.789083], [-179.889182, -16.861449], [-180.033914, -16.861449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.033914, -16.789083], [-180.033914, -16.716717], [-179.889182, -16.716717], [-179.889182, -16.789083], [-180.033914, -16.789083] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.033914, -16.716717], [-180.033914, -16.644352], [-179.889182, -16.644352], [-179.889182, -16.716717], [-180.033914, -16.716717] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.033914, -16.644352], [-180.033914, -16.571986], [-179.889182, -16.571986], [-179.889182, -16.644352], [-180.033914, -16.644352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.033914, -16.571986], [-180.033914, -16.49962], [-179.889182, -16.49962], [-179.889182, -16.571986], [-180.033914, -16.571986] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.889182, -17.150912], [-179.889182, -17.078546], [-179.74445, -17.078546], [-179.74445, -17.150912], [-179.889182, -17.150912] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.889182, -17.078546], [-179.889182, -17.00618], [-179.74445, -17.00618], [-179.74445, -17.078546], [-179.889182, -17.078546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.889182, -17.00618], [-179.889182, -16.933815], [-179.74445, -16.933815], [-179.74445, -17.00618], [-179.889182, -17.00618] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.889182, -16.933815], [-179.889182, -16.861449], [-179.74445, -16.861449], [-179.74445, -16.933815], [-179.889182, -16.933815] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.889182, -16.861449], [-179.889182, -16.789083], [-179.74445, -16.789083], [-179.74445, -16.861449], [-179.889182, -16.861449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.889182, -16.789083], [-179.889182, -16.716717], [-179.74445, -16.716717], [-179.74445, -16.789083], [-179.889182, -16.789083] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.889182, -16.716717], [-179.889182, -16.644352], [-179.74445, -16.644352], [-179.74445, -16.716717], [-179.889182, -16.716717] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.889182, -16.644352], [-179.889182, -16.571986], [-179.74445, -16.571986], [-179.74445, -16.644352], [-179.889182, -16.644352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.889182, -16.571986], [-179.889182, -16.49962], [-179.74445, -16.49962], [-179.74445, -16.571986], [-179.889182, -16.571986] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.74445, -17.150912], [-179.74445, -17.078546], [-179.599719, -17.078546], [-179.599719, -17.150912], [-179.74445, -17.150912] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.74445, -17.078546], [-179.74445, -17.00618], [-179.599719, -17.00618], [-179.599719, -17.078546], [-179.74445, -17.078546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.74445, -17.00618], [-179.74445, -16.933815], [-179.599719, -16.933815], [-179.599719, -17.00618], [-179.74445, -17.00618] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.74445, -16.933815], [-179.74445, -16.861449], [-179.599719, -16.861449], [-179.599719, -16.933815], [-179.74445, -16.933815] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.74445, -16.861449], [-179.74445, -16.789083], [-179.599719, -16.789083], [-179.599719, -16.861449], [-179.74445, -16.861449] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.74445, -16.789083], [-179.74445, -16.716717], [-179.599719, -16.716717], [-179.599719, -16.789083], [-179.74445, -16.789083] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.74445, -16.716717], [-179.74445, -16.644352], [-179.599719, -16.644352], [-179.599719, -16.716717], [-179.74445, -16.716717] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.74445, -16.644352], [-179.74445, -16.571986], [-179.599719, -16.571986], [-179.599719, -16.644352], [-179.74445, -16.644352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.74445, -16.571986], [-179.74445, -16.49962], [-179.599719, -16.49962], [-179.599719, -16.571986], [-179.74445, -16.571986] ] ] } }, { "type": "Feature", "bbox": [ -180.3460693359375, -17.16703442146408, -179.5770263671875, -16.48349760264812 ], "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] ] ] } } ] } ================================================ FILE: packages/turf-rectangle-grid/test/out/global-grid.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180, -90], [-180, -80], [-170, -80], [-170, -90], [-180, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180, -80], [-180, -70], [-170, -70], [-170, -80], [-180, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180, -70], [-180, -60], [-170, -60], [-170, -70], [-180, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180, -60], [-180, -50], [-170, -50], [-170, -60], [-180, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180, -50], [-180, -40], [-170, -40], [-170, -50], [-180, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180, -40], [-180, -30], [-170, -30], [-170, -40], [-180, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180, -30], [-180, -20], [-170, -20], [-170, -30], [-180, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180, -20], [-180, -10], [-170, -10], [-170, -20], [-180, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180, -10], [-180, 0], [-170, 0], [-170, -10], [-180, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180, 0], [-180, 10], [-170, 10], [-170, 0], [-180, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180, 10], [-180, 20], [-170, 20], [-170, 10], [-180, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180, 20], [-180, 30], [-170, 30], [-170, 20], [-180, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180, 30], [-180, 40], [-170, 40], [-170, 30], [-180, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180, 40], [-180, 50], [-170, 50], [-170, 40], [-180, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180, 50], [-180, 60], [-170, 60], [-170, 50], [-180, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180, 60], [-180, 70], [-170, 70], [-170, 60], [-180, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180, 70], [-180, 80], [-170, 80], [-170, 70], [-180, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180, 80], [-180, 90], [-170, 90], [-170, 80], [-180, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-170, -90], [-170, -80], [-160, -80], [-160, -90], [-170, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-170, -80], [-170, -70], [-160, -70], [-160, -80], [-170, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-170, -70], [-170, -60], [-160, -60], [-160, -70], [-170, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-170, -60], [-170, -50], [-160, -50], [-160, -60], [-170, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-170, -50], [-170, -40], [-160, -40], [-160, -50], [-170, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-170, -40], [-170, -30], [-160, -30], [-160, -40], [-170, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-170, -30], [-170, -20], [-160, -20], [-160, -30], [-170, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-170, -20], [-170, -10], [-160, -10], [-160, -20], [-170, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-170, -10], [-170, 0], [-160, 0], [-160, -10], [-170, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-170, 0], [-170, 10], [-160, 10], [-160, 0], [-170, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-170, 10], [-170, 20], [-160, 20], [-160, 10], [-170, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-170, 20], [-170, 30], [-160, 30], [-160, 20], [-170, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-170, 30], [-170, 40], [-160, 40], [-160, 30], [-170, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-170, 40], [-170, 50], [-160, 50], [-160, 40], [-170, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-170, 50], [-170, 60], [-160, 60], [-160, 50], [-170, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-170, 60], [-170, 70], [-160, 70], [-160, 60], [-170, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-170, 70], [-170, 80], [-160, 80], [-160, 70], [-170, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-170, 80], [-170, 90], [-160, 90], [-160, 80], [-170, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-160, -90], [-160, -80], [-150, -80], [-150, -90], [-160, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-160, -80], [-160, -70], [-150, -70], [-150, -80], [-160, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-160, -70], [-160, -60], [-150, -60], [-150, -70], [-160, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-160, -60], [-160, -50], [-150, -50], [-150, -60], [-160, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-160, -50], [-160, -40], [-150, -40], [-150, -50], [-160, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-160, -40], [-160, -30], [-150, -30], [-150, -40], [-160, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-160, -30], [-160, -20], [-150, -20], [-150, -30], [-160, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-160, -20], [-160, -10], [-150, -10], [-150, -20], [-160, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-160, -10], [-160, 0], [-150, 0], [-150, -10], [-160, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-160, 0], [-160, 10], [-150, 10], [-150, 0], [-160, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-160, 10], [-160, 20], [-150, 20], [-150, 10], [-160, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-160, 20], [-160, 30], [-150, 30], [-150, 20], [-160, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-160, 30], [-160, 40], [-150, 40], [-150, 30], [-160, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-160, 40], [-160, 50], [-150, 50], [-150, 40], [-160, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-160, 50], [-160, 60], [-150, 60], [-150, 50], [-160, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-160, 60], [-160, 70], [-150, 70], [-150, 60], [-160, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-160, 70], [-160, 80], [-150, 80], [-150, 70], [-160, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-160, 80], [-160, 90], [-150, 90], [-150, 80], [-160, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-150, -90], [-150, -80], [-140, -80], [-140, -90], [-150, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-150, -80], [-150, -70], [-140, -70], [-140, -80], [-150, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-150, -70], [-150, -60], [-140, -60], [-140, -70], [-150, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-150, -60], [-150, -50], [-140, -50], [-140, -60], [-150, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-150, -50], [-150, -40], [-140, -40], [-140, -50], [-150, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-150, -40], [-150, -30], [-140, -30], [-140, -40], [-150, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-150, -30], [-150, -20], [-140, -20], [-140, -30], [-150, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-150, -20], [-150, -10], [-140, -10], [-140, -20], [-150, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-150, -10], [-150, 0], [-140, 0], [-140, -10], [-150, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-150, 0], [-150, 10], [-140, 10], [-140, 0], [-150, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-150, 10], [-150, 20], [-140, 20], [-140, 10], [-150, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-150, 20], [-150, 30], [-140, 30], [-140, 20], [-150, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-150, 30], [-150, 40], [-140, 40], [-140, 30], [-150, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-150, 40], [-150, 50], [-140, 50], [-140, 40], [-150, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-150, 50], [-150, 60], [-140, 60], [-140, 50], [-150, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-150, 60], [-150, 70], [-140, 70], [-140, 60], [-150, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-150, 70], [-150, 80], [-140, 80], [-140, 70], [-150, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-150, 80], [-150, 90], [-140, 90], [-140, 80], [-150, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-140, -90], [-140, -80], [-130, -80], [-130, -90], [-140, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-140, -80], [-140, -70], [-130, -70], [-130, -80], [-140, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-140, -70], [-140, -60], [-130, -60], [-130, -70], [-140, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-140, -60], [-140, -50], [-130, -50], [-130, -60], [-140, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-140, -50], [-140, -40], [-130, -40], [-130, -50], [-140, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-140, -40], [-140, -30], [-130, -30], [-130, -40], [-140, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-140, -30], [-140, -20], [-130, -20], [-130, -30], [-140, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-140, -20], [-140, -10], [-130, -10], [-130, -20], [-140, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-140, -10], [-140, 0], [-130, 0], [-130, -10], [-140, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-140, 0], [-140, 10], [-130, 10], [-130, 0], [-140, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-140, 10], [-140, 20], [-130, 20], [-130, 10], [-140, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-140, 20], [-140, 30], [-130, 30], [-130, 20], [-140, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-140, 30], [-140, 40], [-130, 40], [-130, 30], [-140, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-140, 40], [-140, 50], [-130, 50], [-130, 40], [-140, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-140, 50], [-140, 60], [-130, 60], [-130, 50], [-140, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-140, 60], [-140, 70], [-130, 70], [-130, 60], [-140, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-140, 70], [-140, 80], [-130, 80], [-130, 70], [-140, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-140, 80], [-140, 90], [-130, 90], [-130, 80], [-140, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-130, -90], [-130, -80], [-120, -80], [-120, -90], [-130, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-130, -80], [-130, -70], [-120, -70], [-120, -80], [-130, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-130, -70], [-130, -60], [-120, -60], [-120, -70], [-130, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-130, -60], [-130, -50], [-120, -50], [-120, -60], [-130, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-130, -50], [-130, -40], [-120, -40], [-120, -50], [-130, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-130, -40], [-130, -30], [-120, -30], [-120, -40], [-130, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-130, -30], [-130, -20], [-120, -20], [-120, -30], [-130, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-130, -20], [-130, -10], [-120, -10], [-120, -20], [-130, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-130, -10], [-130, 0], [-120, 0], [-120, -10], [-130, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-130, 0], [-130, 10], [-120, 10], [-120, 0], [-130, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-130, 10], [-130, 20], [-120, 20], [-120, 10], [-130, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-130, 20], [-130, 30], [-120, 30], [-120, 20], [-130, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-130, 30], [-130, 40], [-120, 40], [-120, 30], [-130, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-130, 40], [-130, 50], [-120, 50], [-120, 40], [-130, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-130, 50], [-130, 60], [-120, 60], [-120, 50], [-130, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-130, 60], [-130, 70], [-120, 70], [-120, 60], [-130, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-130, 70], [-130, 80], [-120, 80], [-120, 70], [-130, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-130, 80], [-130, 90], [-120, 90], [-120, 80], [-130, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-120, -90], [-120, -80], [-110, -80], [-110, -90], [-120, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-120, -80], [-120, -70], [-110, -70], [-110, -80], [-120, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-120, -70], [-120, -60], [-110, -60], [-110, -70], [-120, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-120, -60], [-120, -50], [-110, -50], [-110, -60], [-120, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-120, -50], [-120, -40], [-110, -40], [-110, -50], [-120, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-120, -40], [-120, -30], [-110, -30], [-110, -40], [-120, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-120, -30], [-120, -20], [-110, -20], [-110, -30], [-120, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-120, -20], [-120, -10], [-110, -10], [-110, -20], [-120, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-120, -10], [-120, 0], [-110, 0], [-110, -10], [-120, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-120, 0], [-120, 10], [-110, 10], [-110, 0], [-120, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-120, 10], [-120, 20], [-110, 20], [-110, 10], [-120, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-120, 20], [-120, 30], [-110, 30], [-110, 20], [-120, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-120, 30], [-120, 40], [-110, 40], [-110, 30], [-120, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-120, 40], [-120, 50], [-110, 50], [-110, 40], [-120, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-120, 50], [-120, 60], [-110, 60], [-110, 50], [-120, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-120, 60], [-120, 70], [-110, 70], [-110, 60], [-120, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-120, 70], [-120, 80], [-110, 80], [-110, 70], [-120, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-120, 80], [-120, 90], [-110, 90], [-110, 80], [-120, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110, -90], [-110, -80], [-100, -80], [-100, -90], [-110, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110, -80], [-110, -70], [-100, -70], [-100, -80], [-110, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110, -70], [-110, -60], [-100, -60], [-100, -70], [-110, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110, -60], [-110, -50], [-100, -50], [-100, -60], [-110, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110, -50], [-110, -40], [-100, -40], [-100, -50], [-110, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110, -40], [-110, -30], [-100, -30], [-100, -40], [-110, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110, -30], [-110, -20], [-100, -20], [-100, -30], [-110, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110, -20], [-110, -10], [-100, -10], [-100, -20], [-110, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110, -10], [-110, 0], [-100, 0], [-100, -10], [-110, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110, 0], [-110, 10], [-100, 10], [-100, 0], [-110, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110, 10], [-110, 20], [-100, 20], [-100, 10], [-110, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110, 20], [-110, 30], [-100, 30], [-100, 20], [-110, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110, 30], [-110, 40], [-100, 40], [-100, 30], [-110, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110, 40], [-110, 50], [-100, 50], [-100, 40], [-110, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110, 50], [-110, 60], [-100, 60], [-100, 50], [-110, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110, 60], [-110, 70], [-100, 70], [-100, 60], [-110, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110, 70], [-110, 80], [-100, 80], [-100, 70], [-110, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110, 80], [-110, 90], [-100, 90], [-100, 80], [-110, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-100, -90], [-100, -80], [-90, -80], [-90, -90], [-100, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-100, -80], [-100, -70], [-90, -70], [-90, -80], [-100, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-100, -70], [-100, -60], [-90, -60], [-90, -70], [-100, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-100, -60], [-100, -50], [-90, -50], [-90, -60], [-100, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-100, -50], [-100, -40], [-90, -40], [-90, -50], [-100, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-100, -40], [-100, -30], [-90, -30], [-90, -40], [-100, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-100, -30], [-100, -20], [-90, -20], [-90, -30], [-100, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-100, -20], [-100, -10], [-90, -10], [-90, -20], [-100, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-100, -10], [-100, 0], [-90, 0], [-90, -10], [-100, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-100, 0], [-100, 10], [-90, 10], [-90, 0], [-100, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-100, 10], [-100, 20], [-90, 20], [-90, 10], [-100, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-100, 20], [-100, 30], [-90, 30], [-90, 20], [-100, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-100, 30], [-100, 40], [-90, 40], [-90, 30], [-100, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-100, 40], [-100, 50], [-90, 50], [-90, 40], [-100, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-100, 50], [-100, 60], [-90, 60], [-90, 50], [-100, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-100, 60], [-100, 70], [-90, 70], [-90, 60], [-100, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-100, 70], [-100, 80], [-90, 80], [-90, 70], [-100, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-100, 80], [-100, 90], [-90, 90], [-90, 80], [-100, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90, -90], [-90, -80], [-80, -80], [-80, -90], [-90, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90, -80], [-90, -70], [-80, -70], [-80, -80], [-90, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90, -70], [-90, -60], [-80, -60], [-80, -70], [-90, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90, -60], [-90, -50], [-80, -50], [-80, -60], [-90, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90, -50], [-90, -40], [-80, -40], [-80, -50], [-90, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90, -40], [-90, -30], [-80, -30], [-80, -40], [-90, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90, -30], [-90, -20], [-80, -20], [-80, -30], [-90, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90, -20], [-90, -10], [-80, -10], [-80, -20], [-90, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90, -10], [-90, 0], [-80, 0], [-80, -10], [-90, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90, 0], [-90, 10], [-80, 10], [-80, 0], [-90, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90, 10], [-90, 20], [-80, 20], [-80, 10], [-90, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90, 20], [-90, 30], [-80, 30], [-80, 20], [-90, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90, 30], [-90, 40], [-80, 40], [-80, 30], [-90, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90, 40], [-90, 50], [-80, 50], [-80, 40], [-90, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90, 50], [-90, 60], [-80, 60], [-80, 50], [-90, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90, 60], [-90, 70], [-80, 70], [-80, 60], [-90, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90, 70], [-90, 80], [-80, 80], [-80, 70], [-90, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-90, 80], [-90, 90], [-80, 90], [-80, 80], [-90, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80, -90], [-80, -80], [-70, -80], [-70, -90], [-80, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80, -80], [-80, -70], [-70, -70], [-70, -80], [-80, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80, -70], [-80, -60], [-70, -60], [-70, -70], [-80, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80, -60], [-80, -50], [-70, -50], [-70, -60], [-80, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80, -50], [-80, -40], [-70, -40], [-70, -50], [-80, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80, -40], [-80, -30], [-70, -30], [-70, -40], [-80, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80, -30], [-80, -20], [-70, -20], [-70, -30], [-80, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80, -20], [-80, -10], [-70, -10], [-70, -20], [-80, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80, -10], [-80, 0], [-70, 0], [-70, -10], [-80, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80, 0], [-80, 10], [-70, 10], [-70, 0], [-80, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80, 10], [-80, 20], [-70, 20], [-70, 10], [-80, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80, 20], [-80, 30], [-70, 30], [-70, 20], [-80, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80, 30], [-80, 40], [-70, 40], [-70, 30], [-80, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80, 40], [-80, 50], [-70, 50], [-70, 40], [-80, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80, 50], [-80, 60], [-70, 60], [-70, 50], [-80, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80, 60], [-80, 70], [-70, 70], [-70, 60], [-80, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80, 70], [-80, 80], [-70, 80], [-70, 70], [-80, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80, 80], [-80, 90], [-70, 90], [-70, 80], [-80, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-70, -90], [-70, -80], [-60, -80], [-60, -90], [-70, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-70, -80], [-70, -70], [-60, -70], [-60, -80], [-70, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-70, -70], [-70, -60], [-60, -60], [-60, -70], [-70, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-70, -60], [-70, -50], [-60, -50], [-60, -60], [-70, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-70, -50], [-70, -40], [-60, -40], [-60, -50], [-70, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-70, -40], [-70, -30], [-60, -30], [-60, -40], [-70, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-70, -30], [-70, -20], [-60, -20], [-60, -30], [-70, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-70, -20], [-70, -10], [-60, -10], [-60, -20], [-70, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-70, -10], [-70, 0], [-60, 0], [-60, -10], [-70, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-70, 0], [-70, 10], [-60, 10], [-60, 0], [-70, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-70, 10], [-70, 20], [-60, 20], [-60, 10], [-70, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-70, 20], [-70, 30], [-60, 30], [-60, 20], [-70, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-70, 30], [-70, 40], [-60, 40], [-60, 30], [-70, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-70, 40], [-70, 50], [-60, 50], [-60, 40], [-70, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-70, 50], [-70, 60], [-60, 60], [-60, 50], [-70, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-70, 60], [-70, 70], [-60, 70], [-60, 60], [-70, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-70, 70], [-70, 80], [-60, 80], [-60, 70], [-70, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-70, 80], [-70, 90], [-60, 90], [-60, 80], [-70, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60, -90], [-60, -80], [-50, -80], [-50, -90], [-60, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60, -80], [-60, -70], [-50, -70], [-50, -80], [-60, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60, -70], [-60, -60], [-50, -60], [-50, -70], [-60, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60, -60], [-60, -50], [-50, -50], [-50, -60], [-60, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60, -50], [-60, -40], [-50, -40], [-50, -50], [-60, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60, -40], [-60, -30], [-50, -30], [-50, -40], [-60, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60, -30], [-60, -20], [-50, -20], [-50, -30], [-60, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60, -20], [-60, -10], [-50, -10], [-50, -20], [-60, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60, -10], [-60, 0], [-50, 0], [-50, -10], [-60, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60, 0], [-60, 10], [-50, 10], [-50, 0], [-60, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60, 10], [-60, 20], [-50, 20], [-50, 10], [-60, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60, 20], [-60, 30], [-50, 30], [-50, 20], [-60, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60, 30], [-60, 40], [-50, 40], [-50, 30], [-60, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60, 40], [-60, 50], [-50, 50], [-50, 40], [-60, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60, 50], [-60, 60], [-50, 60], [-50, 50], [-60, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60, 60], [-60, 70], [-50, 70], [-50, 60], [-60, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60, 70], [-60, 80], [-50, 80], [-50, 70], [-60, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60, 80], [-60, 90], [-50, 90], [-50, 80], [-60, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-50, -90], [-50, -80], [-40, -80], [-40, -90], [-50, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-50, -80], [-50, -70], [-40, -70], [-40, -80], [-50, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-50, -70], [-50, -60], [-40, -60], [-40, -70], [-50, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-50, -60], [-50, -50], [-40, -50], [-40, -60], [-50, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-50, -50], [-50, -40], [-40, -40], [-40, -50], [-50, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-50, -40], [-50, -30], [-40, -30], [-40, -40], [-50, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-50, -30], [-50, -20], [-40, -20], [-40, -30], [-50, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-50, -20], [-50, -10], [-40, -10], [-40, -20], [-50, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-50, -10], [-50, 0], [-40, 0], [-40, -10], [-50, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-50, 0], [-50, 10], [-40, 10], [-40, 0], [-50, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-50, 10], [-50, 20], [-40, 20], [-40, 10], [-50, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-50, 20], [-50, 30], [-40, 30], [-40, 20], [-50, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-50, 30], [-50, 40], [-40, 40], [-40, 30], [-50, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-50, 40], [-50, 50], [-40, 50], [-40, 40], [-50, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-50, 50], [-50, 60], [-40, 60], [-40, 50], [-50, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-50, 60], [-50, 70], [-40, 70], [-40, 60], [-50, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-50, 70], [-50, 80], [-40, 80], [-40, 70], [-50, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-50, 80], [-50, 90], [-40, 90], [-40, 80], [-50, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40, -90], [-40, -80], [-30, -80], [-30, -90], [-40, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40, -80], [-40, -70], [-30, -70], [-30, -80], [-40, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40, -70], [-40, -60], [-30, -60], [-30, -70], [-40, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40, -60], [-40, -50], [-30, -50], [-30, -60], [-40, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40, -50], [-40, -40], [-30, -40], [-30, -50], [-40, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40, -40], [-40, -30], [-30, -30], [-30, -40], [-40, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40, -30], [-40, -20], [-30, -20], [-30, -30], [-40, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40, -20], [-40, -10], [-30, -10], [-30, -20], [-40, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40, -10], [-40, 0], [-30, 0], [-30, -10], [-40, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40, 0], [-40, 10], [-30, 10], [-30, 0], [-40, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40, 10], [-40, 20], [-30, 20], [-30, 10], [-40, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40, 20], [-40, 30], [-30, 30], [-30, 20], [-40, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40, 30], [-40, 40], [-30, 40], [-30, 30], [-40, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40, 40], [-40, 50], [-30, 50], [-30, 40], [-40, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40, 50], [-40, 60], [-30, 60], [-30, 50], [-40, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40, 60], [-40, 70], [-30, 70], [-30, 60], [-40, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40, 70], [-40, 80], [-30, 80], [-30, 70], [-40, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-40, 80], [-40, 90], [-30, 90], [-30, 80], [-40, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30, -90], [-30, -80], [-20, -80], [-20, -90], [-30, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30, -80], [-30, -70], [-20, -70], [-20, -80], [-30, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30, -70], [-30, -60], [-20, -60], [-20, -70], [-30, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30, -60], [-30, -50], [-20, -50], [-20, -60], [-30, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30, -50], [-30, -40], [-20, -40], [-20, -50], [-30, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30, -40], [-30, -30], [-20, -30], [-20, -40], [-30, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30, -30], [-30, -20], [-20, -20], [-20, -30], [-30, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30, -20], [-30, -10], [-20, -10], [-20, -20], [-30, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30, -10], [-30, 0], [-20, 0], [-20, -10], [-30, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30, 0], [-30, 10], [-20, 10], [-20, 0], [-30, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30, 10], [-30, 20], [-20, 20], [-20, 10], [-30, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30, 20], [-30, 30], [-20, 30], [-20, 20], [-30, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30, 30], [-30, 40], [-20, 40], [-20, 30], [-30, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30, 40], [-30, 50], [-20, 50], [-20, 40], [-30, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30, 50], [-30, 60], [-20, 60], [-20, 50], [-30, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30, 60], [-30, 70], [-20, 70], [-20, 60], [-30, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30, 70], [-30, 80], [-20, 80], [-20, 70], [-30, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-30, 80], [-30, 90], [-20, 90], [-20, 80], [-30, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-20, -90], [-20, -80], [-10, -80], [-10, -90], [-20, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-20, -80], [-20, -70], [-10, -70], [-10, -80], [-20, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-20, -70], [-20, -60], [-10, -60], [-10, -70], [-20, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-20, -60], [-20, -50], [-10, -50], [-10, -60], [-20, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-20, -50], [-20, -40], [-10, -40], [-10, -50], [-20, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-20, -40], [-20, -30], [-10, -30], [-10, -40], [-20, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-20, -30], [-20, -20], [-10, -20], [-10, -30], [-20, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-20, -20], [-20, -10], [-10, -10], [-10, -20], [-20, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-20, -10], [-20, 0], [-10, 0], [-10, -10], [-20, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-20, 0], [-20, 10], [-10, 10], [-10, 0], [-20, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-20, 10], [-20, 20], [-10, 20], [-10, 10], [-20, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-20, 20], [-20, 30], [-10, 30], [-10, 20], [-20, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-20, 30], [-20, 40], [-10, 40], [-10, 30], [-20, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-20, 40], [-20, 50], [-10, 50], [-10, 40], [-20, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-20, 50], [-20, 60], [-10, 60], [-10, 50], [-20, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-20, 60], [-20, 70], [-10, 70], [-10, 60], [-20, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-20, 70], [-20, 80], [-10, 80], [-10, 70], [-20, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-20, 80], [-20, 90], [-10, 90], [-10, 80], [-20, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-10, -90], [-10, -80], [0, -80], [0, -90], [-10, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-10, -80], [-10, -70], [0, -70], [0, -80], [-10, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-10, -70], [-10, -60], [0, -60], [0, -70], [-10, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-10, -60], [-10, -50], [0, -50], [0, -60], [-10, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-10, -50], [-10, -40], [0, -40], [0, -50], [-10, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-10, -40], [-10, -30], [0, -30], [0, -40], [-10, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-10, -30], [-10, -20], [0, -20], [0, -30], [-10, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-10, -20], [-10, -10], [0, -10], [0, -20], [-10, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-10, -10], [-10, 0], [0, 0], [0, -10], [-10, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-10, 0], [-10, 10], [0, 10], [0, 0], [-10, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-10, 10], [-10, 20], [0, 20], [0, 10], [-10, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-10, 20], [-10, 30], [0, 30], [0, 20], [-10, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-10, 30], [-10, 40], [0, 40], [0, 30], [-10, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-10, 40], [-10, 50], [0, 50], [0, 40], [-10, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-10, 50], [-10, 60], [0, 60], [0, 50], [-10, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-10, 60], [-10, 70], [0, 70], [0, 60], [-10, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-10, 70], [-10, 80], [0, 80], [0, 70], [-10, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-10, 80], [-10, 90], [0, 90], [0, 80], [-10, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, -90], [0, -80], [10, -80], [10, -90], [0, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, -80], [0, -70], [10, -70], [10, -80], [0, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, -70], [0, -60], [10, -60], [10, -70], [0, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, -60], [0, -50], [10, -50], [10, -60], [0, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, -50], [0, -40], [10, -40], [10, -50], [0, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, -40], [0, -30], [10, -30], [10, -40], [0, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, -30], [0, -20], [10, -20], [10, -30], [0, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, -20], [0, -10], [10, -10], [10, -20], [0, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, -10], [0, 0], [10, 0], [10, -10], [0, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [0, 10], [10, 10], [10, 0], [0, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 10], [0, 20], [10, 20], [10, 10], [0, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 20], [0, 30], [10, 30], [10, 20], [0, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 30], [0, 40], [10, 40], [10, 30], [0, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 40], [0, 50], [10, 50], [10, 40], [0, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 50], [0, 60], [10, 60], [10, 50], [0, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 60], [0, 70], [10, 70], [10, 60], [0, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 70], [0, 80], [10, 80], [10, 70], [0, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 80], [0, 90], [10, 90], [10, 80], [0, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [10, -90], [10, -80], [20, -80], [20, -90], [10, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [10, -80], [10, -70], [20, -70], [20, -80], [10, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [10, -70], [10, -60], [20, -60], [20, -70], [10, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [10, -60], [10, -50], [20, -50], [20, -60], [10, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [10, -50], [10, -40], [20, -40], [20, -50], [10, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [10, -40], [10, -30], [20, -30], [20, -40], [10, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [10, -30], [10, -20], [20, -20], [20, -30], [10, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [10, -20], [10, -10], [20, -10], [20, -20], [10, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [10, -10], [10, 0], [20, 0], [20, -10], [10, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [10, 0], [10, 10], [20, 10], [20, 0], [10, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [10, 10], [10, 20], [20, 20], [20, 10], [10, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [10, 20], [10, 30], [20, 30], [20, 20], [10, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [10, 30], [10, 40], [20, 40], [20, 30], [10, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [10, 40], [10, 50], [20, 50], [20, 40], [10, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [10, 50], [10, 60], [20, 60], [20, 50], [10, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [10, 60], [10, 70], [20, 70], [20, 60], [10, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [10, 70], [10, 80], [20, 80], [20, 70], [10, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [10, 80], [10, 90], [20, 90], [20, 80], [10, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [20, -90], [20, -80], [30, -80], [30, -90], [20, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [20, -80], [20, -70], [30, -70], [30, -80], [20, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [20, -70], [20, -60], [30, -60], [30, -70], [20, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [20, -60], [20, -50], [30, -50], [30, -60], [20, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [20, -50], [20, -40], [30, -40], [30, -50], [20, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [20, -40], [20, -30], [30, -30], [30, -40], [20, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [20, -30], [20, -20], [30, -20], [30, -30], [20, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [20, -20], [20, -10], [30, -10], [30, -20], [20, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [20, -10], [20, 0], [30, 0], [30, -10], [20, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [20, 0], [20, 10], [30, 10], [30, 0], [20, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [20, 10], [20, 20], [30, 20], [30, 10], [20, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [20, 20], [20, 30], [30, 30], [30, 20], [20, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [20, 30], [20, 40], [30, 40], [30, 30], [20, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [20, 40], [20, 50], [30, 50], [30, 40], [20, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [20, 50], [20, 60], [30, 60], [30, 50], [20, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [20, 60], [20, 70], [30, 70], [30, 60], [20, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [20, 70], [20, 80], [30, 80], [30, 70], [20, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [20, 80], [20, 90], [30, 90], [30, 80], [20, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [30, -90], [30, -80], [40, -80], [40, -90], [30, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [30, -80], [30, -70], [40, -70], [40, -80], [30, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [30, -70], [30, -60], [40, -60], [40, -70], [30, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [30, -60], [30, -50], [40, -50], [40, -60], [30, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [30, -50], [30, -40], [40, -40], [40, -50], [30, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [30, -40], [30, -30], [40, -30], [40, -40], [30, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [30, -30], [30, -20], [40, -20], [40, -30], [30, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [30, -20], [30, -10], [40, -10], [40, -20], [30, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [30, -10], [30, 0], [40, 0], [40, -10], [30, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [30, 0], [30, 10], [40, 10], [40, 0], [30, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [30, 10], [30, 20], [40, 20], [40, 10], [30, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [30, 20], [30, 30], [40, 30], [40, 20], [30, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [30, 30], [30, 40], [40, 40], [40, 30], [30, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [30, 40], [30, 50], [40, 50], [40, 40], [30, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [30, 50], [30, 60], [40, 60], [40, 50], [30, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [30, 60], [30, 70], [40, 70], [40, 60], [30, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [30, 70], [30, 80], [40, 80], [40, 70], [30, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [30, 80], [30, 90], [40, 90], [40, 80], [30, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [40, -90], [40, -80], [50, -80], [50, -90], [40, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [40, -80], [40, -70], [50, -70], [50, -80], [40, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [40, -70], [40, -60], [50, -60], [50, -70], [40, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [40, -60], [40, -50], [50, -50], [50, -60], [40, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [40, -50], [40, -40], [50, -40], [50, -50], [40, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [40, -40], [40, -30], [50, -30], [50, -40], [40, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [40, -30], [40, -20], [50, -20], [50, -30], [40, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [40, -20], [40, -10], [50, -10], [50, -20], [40, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [40, -10], [40, 0], [50, 0], [50, -10], [40, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [40, 0], [40, 10], [50, 10], [50, 0], [40, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [40, 10], [40, 20], [50, 20], [50, 10], [40, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [40, 20], [40, 30], [50, 30], [50, 20], [40, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [40, 30], [40, 40], [50, 40], [50, 30], [40, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [40, 40], [40, 50], [50, 50], [50, 40], [40, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [40, 50], [40, 60], [50, 60], [50, 50], [40, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [40, 60], [40, 70], [50, 70], [50, 60], [40, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [40, 70], [40, 80], [50, 80], [50, 70], [40, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [40, 80], [40, 90], [50, 90], [50, 80], [40, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [50, -90], [50, -80], [60, -80], [60, -90], [50, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [50, -80], [50, -70], [60, -70], [60, -80], [50, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [50, -70], [50, -60], [60, -60], [60, -70], [50, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [50, -60], [50, -50], [60, -50], [60, -60], [50, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [50, -50], [50, -40], [60, -40], [60, -50], [50, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [50, -40], [50, -30], [60, -30], [60, -40], [50, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [50, -30], [50, -20], [60, -20], [60, -30], [50, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [50, -20], [50, -10], [60, -10], [60, -20], [50, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [50, -10], [50, 0], [60, 0], [60, -10], [50, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [50, 0], [50, 10], [60, 10], [60, 0], [50, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [50, 10], [50, 20], [60, 20], [60, 10], [50, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [50, 20], [50, 30], [60, 30], [60, 20], [50, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [50, 30], [50, 40], [60, 40], [60, 30], [50, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [50, 40], [50, 50], [60, 50], [60, 40], [50, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [50, 50], [50, 60], [60, 60], [60, 50], [50, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [50, 60], [50, 70], [60, 70], [60, 60], [50, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [50, 70], [50, 80], [60, 80], [60, 70], [50, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [50, 80], [50, 90], [60, 90], [60, 80], [50, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [60, -90], [60, -80], [70, -80], [70, -90], [60, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [60, -80], [60, -70], [70, -70], [70, -80], [60, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [60, -70], [60, -60], [70, -60], [70, -70], [60, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [60, -60], [60, -50], [70, -50], [70, -60], [60, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [60, -50], [60, -40], [70, -40], [70, -50], [60, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [60, -40], [60, -30], [70, -30], [70, -40], [60, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [60, -30], [60, -20], [70, -20], [70, -30], [60, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [60, -20], [60, -10], [70, -10], [70, -20], [60, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [60, -10], [60, 0], [70, 0], [70, -10], [60, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [60, 0], [60, 10], [70, 10], [70, 0], [60, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [60, 10], [60, 20], [70, 20], [70, 10], [60, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [60, 20], [60, 30], [70, 30], [70, 20], [60, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [60, 30], [60, 40], [70, 40], [70, 30], [60, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [60, 40], [60, 50], [70, 50], [70, 40], [60, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [60, 50], [60, 60], [70, 60], [70, 50], [60, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [60, 60], [60, 70], [70, 70], [70, 60], [60, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [60, 70], [60, 80], [70, 80], [70, 70], [60, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [60, 80], [60, 90], [70, 90], [70, 80], [60, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [70, -90], [70, -80], [80, -80], [80, -90], [70, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [70, -80], [70, -70], [80, -70], [80, -80], [70, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [70, -70], [70, -60], [80, -60], [80, -70], [70, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [70, -60], [70, -50], [80, -50], [80, -60], [70, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [70, -50], [70, -40], [80, -40], [80, -50], [70, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [70, -40], [70, -30], [80, -30], [80, -40], [70, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [70, -30], [70, -20], [80, -20], [80, -30], [70, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [70, -20], [70, -10], [80, -10], [80, -20], [70, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [70, -10], [70, 0], [80, 0], [80, -10], [70, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [70, 0], [70, 10], [80, 10], [80, 0], [70, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [70, 10], [70, 20], [80, 20], [80, 10], [70, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [70, 20], [70, 30], [80, 30], [80, 20], [70, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [70, 30], [70, 40], [80, 40], [80, 30], [70, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [70, 40], [70, 50], [80, 50], [80, 40], [70, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [70, 50], [70, 60], [80, 60], [80, 50], [70, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [70, 60], [70, 70], [80, 70], [80, 60], [70, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [70, 70], [70, 80], [80, 80], [80, 70], [70, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [70, 80], [70, 90], [80, 90], [80, 80], [70, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [80, -90], [80, -80], [90, -80], [90, -90], [80, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [80, -80], [80, -70], [90, -70], [90, -80], [80, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [80, -70], [80, -60], [90, -60], [90, -70], [80, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [80, -60], [80, -50], [90, -50], [90, -60], [80, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [80, -50], [80, -40], [90, -40], [90, -50], [80, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [80, -40], [80, -30], [90, -30], [90, -40], [80, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [80, -30], [80, -20], [90, -20], [90, -30], [80, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [80, -20], [80, -10], [90, -10], [90, -20], [80, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [80, -10], [80, 0], [90, 0], [90, -10], [80, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [80, 0], [80, 10], [90, 10], [90, 0], [80, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [80, 10], [80, 20], [90, 20], [90, 10], [80, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [80, 20], [80, 30], [90, 30], [90, 20], [80, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [80, 30], [80, 40], [90, 40], [90, 30], [80, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [80, 40], [80, 50], [90, 50], [90, 40], [80, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [80, 50], [80, 60], [90, 60], [90, 50], [80, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [80, 60], [80, 70], [90, 70], [90, 60], [80, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [80, 70], [80, 80], [90, 80], [90, 70], [80, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [80, 80], [80, 90], [90, 90], [90, 80], [80, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [90, -90], [90, -80], [100, -80], [100, -90], [90, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [90, -80], [90, -70], [100, -70], [100, -80], [90, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [90, -70], [90, -60], [100, -60], [100, -70], [90, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [90, -60], [90, -50], [100, -50], [100, -60], [90, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [90, -50], [90, -40], [100, -40], [100, -50], [90, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [90, -40], [90, -30], [100, -30], [100, -40], [90, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [90, -30], [90, -20], [100, -20], [100, -30], [90, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [90, -20], [90, -10], [100, -10], [100, -20], [90, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [90, -10], [90, 0], [100, 0], [100, -10], [90, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [90, 0], [90, 10], [100, 10], [100, 0], [90, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [90, 10], [90, 20], [100, 20], [100, 10], [90, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [90, 20], [90, 30], [100, 30], [100, 20], [90, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [90, 30], [90, 40], [100, 40], [100, 30], [90, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [90, 40], [90, 50], [100, 50], [100, 40], [90, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [90, 50], [90, 60], [100, 60], [100, 50], [90, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [90, 60], [90, 70], [100, 70], [100, 60], [90, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [90, 70], [90, 80], [100, 80], [100, 70], [90, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [90, 80], [90, 90], [100, 90], [100, 80], [90, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [100, -90], [100, -80], [110, -80], [110, -90], [100, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [100, -80], [100, -70], [110, -70], [110, -80], [100, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [100, -70], [100, -60], [110, -60], [110, -70], [100, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [100, -60], [100, -50], [110, -50], [110, -60], [100, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [100, -50], [100, -40], [110, -40], [110, -50], [100, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [100, -40], [100, -30], [110, -30], [110, -40], [100, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [100, -30], [100, -20], [110, -20], [110, -30], [100, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [100, -20], [100, -10], [110, -10], [110, -20], [100, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [100, -10], [100, 0], [110, 0], [110, -10], [100, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [100, 0], [100, 10], [110, 10], [110, 0], [100, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [100, 10], [100, 20], [110, 20], [110, 10], [100, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [100, 20], [100, 30], [110, 30], [110, 20], [100, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [100, 30], [100, 40], [110, 40], [110, 30], [100, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [100, 40], [100, 50], [110, 50], [110, 40], [100, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [100, 50], [100, 60], [110, 60], [110, 50], [100, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [100, 60], [100, 70], [110, 70], [110, 60], [100, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [100, 70], [100, 80], [110, 80], [110, 70], [100, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [100, 80], [100, 90], [110, 90], [110, 80], [100, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [110, -90], [110, -80], [120, -80], [120, -90], [110, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [110, -80], [110, -70], [120, -70], [120, -80], [110, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [110, -70], [110, -60], [120, -60], [120, -70], [110, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [110, -60], [110, -50], [120, -50], [120, -60], [110, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [110, -50], [110, -40], [120, -40], [120, -50], [110, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [110, -40], [110, -30], [120, -30], [120, -40], [110, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [110, -30], [110, -20], [120, -20], [120, -30], [110, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [110, -20], [110, -10], [120, -10], [120, -20], [110, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [110, -10], [110, 0], [120, 0], [120, -10], [110, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [110, 0], [110, 10], [120, 10], [120, 0], [110, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [110, 10], [110, 20], [120, 20], [120, 10], [110, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [110, 20], [110, 30], [120, 30], [120, 20], [110, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [110, 30], [110, 40], [120, 40], [120, 30], [110, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [110, 40], [110, 50], [120, 50], [120, 40], [110, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [110, 50], [110, 60], [120, 60], [120, 50], [110, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [110, 60], [110, 70], [120, 70], [120, 60], [110, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [110, 70], [110, 80], [120, 80], [120, 70], [110, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [110, 80], [110, 90], [120, 90], [120, 80], [110, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, -90], [120, -80], [130, -80], [130, -90], [120, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, -80], [120, -70], [130, -70], [130, -80], [120, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, -70], [120, -60], [130, -60], [130, -70], [120, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, -60], [120, -50], [130, -50], [130, -60], [120, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, -50], [120, -40], [130, -40], [130, -50], [120, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, -40], [120, -30], [130, -30], [130, -40], [120, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, -30], [120, -20], [130, -20], [130, -30], [120, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, -20], [120, -10], [130, -10], [130, -20], [120, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, -10], [120, 0], [130, 0], [130, -10], [120, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, 0], [120, 10], [130, 10], [130, 0], [120, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, 10], [120, 20], [130, 20], [130, 10], [120, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, 20], [120, 30], [130, 30], [130, 20], [120, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, 30], [120, 40], [130, 40], [130, 30], [120, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, 40], [120, 50], [130, 50], [130, 40], [120, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, 50], [120, 60], [130, 60], [130, 50], [120, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, 60], [120, 70], [130, 70], [130, 60], [120, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, 70], [120, 80], [130, 80], [130, 70], [120, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [120, 80], [120, 90], [130, 90], [130, 80], [120, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, -90], [130, -80], [140, -80], [140, -90], [130, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, -80], [130, -70], [140, -70], [140, -80], [130, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, -70], [130, -60], [140, -60], [140, -70], [130, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, -60], [130, -50], [140, -50], [140, -60], [130, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, -50], [130, -40], [140, -40], [140, -50], [130, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, -40], [130, -30], [140, -30], [140, -40], [130, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, -30], [130, -20], [140, -20], [140, -30], [130, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, -20], [130, -10], [140, -10], [140, -20], [130, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, -10], [130, 0], [140, 0], [140, -10], [130, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, 0], [130, 10], [140, 10], [140, 0], [130, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, 10], [130, 20], [140, 20], [140, 10], [130, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, 20], [130, 30], [140, 30], [140, 20], [130, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, 30], [130, 40], [140, 40], [140, 30], [130, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, 40], [130, 50], [140, 50], [140, 40], [130, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, 50], [130, 60], [140, 60], [140, 50], [130, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, 60], [130, 70], [140, 70], [140, 60], [130, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, 70], [130, 80], [140, 80], [140, 70], [130, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130, 80], [130, 90], [140, 90], [140, 80], [130, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, -90], [140, -80], [150, -80], [150, -90], [140, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, -80], [140, -70], [150, -70], [150, -80], [140, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, -70], [140, -60], [150, -60], [150, -70], [140, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, -60], [140, -50], [150, -50], [150, -60], [140, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, -50], [140, -40], [150, -40], [150, -50], [140, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, -40], [140, -30], [150, -30], [150, -40], [140, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, -30], [140, -20], [150, -20], [150, -30], [140, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, -20], [140, -10], [150, -10], [150, -20], [140, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, -10], [140, 0], [150, 0], [150, -10], [140, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, 0], [140, 10], [150, 10], [150, 0], [140, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, 10], [140, 20], [150, 20], [150, 10], [140, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, 20], [140, 30], [150, 30], [150, 20], [140, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, 30], [140, 40], [150, 40], [150, 30], [140, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, 40], [140, 50], [150, 50], [150, 40], [140, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, 50], [140, 60], [150, 60], [150, 50], [140, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, 60], [140, 70], [150, 70], [150, 60], [140, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, 70], [140, 80], [150, 80], [150, 70], [140, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, 80], [140, 90], [150, 90], [150, 80], [140, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [150, -90], [150, -80], [160, -80], [160, -90], [150, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [150, -80], [150, -70], [160, -70], [160, -80], [150, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [150, -70], [150, -60], [160, -60], [160, -70], [150, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [150, -60], [150, -50], [160, -50], [160, -60], [150, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [150, -50], [150, -40], [160, -40], [160, -50], [150, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [150, -40], [150, -30], [160, -30], [160, -40], [150, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [150, -30], [150, -20], [160, -20], [160, -30], [150, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [150, -20], [150, -10], [160, -10], [160, -20], [150, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [150, -10], [150, 0], [160, 0], [160, -10], [150, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [150, 0], [150, 10], [160, 10], [160, 0], [150, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [150, 10], [150, 20], [160, 20], [160, 10], [150, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [150, 20], [150, 30], [160, 30], [160, 20], [150, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [150, 30], [150, 40], [160, 40], [160, 30], [150, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [150, 40], [150, 50], [160, 50], [160, 40], [150, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [150, 50], [150, 60], [160, 60], [160, 50], [150, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [150, 60], [150, 70], [160, 70], [160, 60], [150, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [150, 70], [150, 80], [160, 80], [160, 70], [150, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [150, 80], [150, 90], [160, 90], [160, 80], [150, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [160, -90], [160, -80], [170, -80], [170, -90], [160, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [160, -80], [160, -70], [170, -70], [170, -80], [160, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [160, -70], [160, -60], [170, -60], [170, -70], [160, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [160, -60], [160, -50], [170, -50], [170, -60], [160, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [160, -50], [160, -40], [170, -40], [170, -50], [160, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [160, -40], [160, -30], [170, -30], [170, -40], [160, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [160, -30], [160, -20], [170, -20], [170, -30], [160, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [160, -20], [160, -10], [170, -10], [170, -20], [160, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [160, -10], [160, 0], [170, 0], [170, -10], [160, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [160, 0], [160, 10], [170, 10], [170, 0], [160, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [160, 10], [160, 20], [170, 20], [170, 10], [160, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [160, 20], [160, 30], [170, 30], [170, 20], [160, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [160, 30], [160, 40], [170, 40], [170, 30], [160, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [160, 40], [160, 50], [170, 50], [170, 40], [160, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [160, 50], [160, 60], [170, 60], [170, 50], [160, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [160, 60], [160, 70], [170, 70], [170, 60], [160, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [160, 70], [160, 80], [170, 80], [170, 70], [160, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [160, 80], [160, 90], [170, 90], [170, 80], [160, 80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [170, -90], [170, -80], [180, -80], [180, -90], [170, -90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [170, -80], [170, -70], [180, -70], [180, -80], [170, -80] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [170, -70], [170, -60], [180, -60], [180, -70], [170, -70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [170, -60], [170, -50], [180, -50], [180, -60], [170, -60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [170, -50], [170, -40], [180, -40], [180, -50], [170, -50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [170, -40], [170, -30], [180, -30], [180, -40], [170, -40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [170, -30], [170, -20], [180, -20], [180, -30], [170, -30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [170, -20], [170, -10], [180, -10], [180, -20], [170, -20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [170, -10], [170, 0], [180, 0], [180, -10], [170, -10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [170, 0], [170, 10], [180, 10], [180, 0], [170, 0] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [170, 10], [170, 20], [180, 20], [180, 10], [170, 10] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [170, 20], [170, 30], [180, 30], [180, 20], [170, 20] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [170, 30], [170, 40], [180, 40], [180, 30], [170, 30] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [170, 40], [170, 50], [180, 50], [180, 40], [170, 40] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [170, 50], [170, 60], [180, 60], [180, 50], [170, 50] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [170, 60], [170, 70], [180, 70], [180, 60], [170, 60] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [170, 70], [170, 80], [180, 80], [180, 70], [170, 70] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [170, 80], [170, 90], [180, 90], [180, 80], [170, 80] ] ] } }, { "type": "Feature", "bbox": [-180, -90, 180, 90], "properties": { "stroke": "#F00", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-180, -90], [180, -90], [180, 90], [-180, 90], [-180, -90] ] ] } } ] } ================================================ FILE: packages/turf-rectangle-grid/test/out/victoria-20x100-km.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.003398, -38.748301], [141.003398, -37.848981], [141.183262, -37.848981], [141.183262, -38.748301], [141.003398, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.003398, -37.848981], [141.003398, -36.94966], [141.183262, -36.94966], [141.183262, -37.848981], [141.003398, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.003398, -36.94966], [141.003398, -36.05034], [141.183262, -36.05034], [141.183262, -36.94966], [141.003398, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.003398, -36.05034], [141.003398, -35.151019], [141.183262, -35.151019], [141.183262, -36.05034], [141.003398, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.003398, -35.151019], [141.003398, -34.251699], [141.183262, -34.251699], [141.183262, -35.151019], [141.003398, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.183262, -38.748301], [141.183262, -37.848981], [141.363126, -37.848981], [141.363126, -38.748301], [141.183262, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.183262, -37.848981], [141.183262, -36.94966], [141.363126, -36.94966], [141.363126, -37.848981], [141.183262, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.183262, -36.94966], [141.183262, -36.05034], [141.363126, -36.05034], [141.363126, -36.94966], [141.183262, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.183262, -36.05034], [141.183262, -35.151019], [141.363126, -35.151019], [141.363126, -36.05034], [141.183262, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.183262, -35.151019], [141.183262, -34.251699], [141.363126, -34.251699], [141.363126, -35.151019], [141.183262, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.363126, -38.748301], [141.363126, -37.848981], [141.54299, -37.848981], [141.54299, -38.748301], [141.363126, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.363126, -37.848981], [141.363126, -36.94966], [141.54299, -36.94966], [141.54299, -37.848981], [141.363126, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.363126, -36.94966], [141.363126, -36.05034], [141.54299, -36.05034], [141.54299, -36.94966], [141.363126, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.363126, -36.05034], [141.363126, -35.151019], [141.54299, -35.151019], [141.54299, -36.05034], [141.363126, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.363126, -35.151019], [141.363126, -34.251699], [141.54299, -34.251699], [141.54299, -35.151019], [141.363126, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.54299, -38.748301], [141.54299, -37.848981], [141.722854, -37.848981], [141.722854, -38.748301], [141.54299, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.54299, -37.848981], [141.54299, -36.94966], [141.722854, -36.94966], [141.722854, -37.848981], [141.54299, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.54299, -36.94966], [141.54299, -36.05034], [141.722854, -36.05034], [141.722854, -36.94966], [141.54299, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.54299, -36.05034], [141.54299, -35.151019], [141.722854, -35.151019], [141.722854, -36.05034], [141.54299, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.54299, -35.151019], [141.54299, -34.251699], [141.722854, -34.251699], [141.722854, -35.151019], [141.54299, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.722854, -38.748301], [141.722854, -37.848981], [141.902719, -37.848981], [141.902719, -38.748301], [141.722854, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.722854, -37.848981], [141.722854, -36.94966], [141.902719, -36.94966], [141.902719, -37.848981], [141.722854, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.722854, -36.94966], [141.722854, -36.05034], [141.902719, -36.05034], [141.902719, -36.94966], [141.722854, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.722854, -36.05034], [141.722854, -35.151019], [141.902719, -35.151019], [141.902719, -36.05034], [141.722854, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.722854, -35.151019], [141.722854, -34.251699], [141.902719, -34.251699], [141.902719, -35.151019], [141.722854, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.902719, -38.748301], [141.902719, -37.848981], [142.082583, -37.848981], [142.082583, -38.748301], [141.902719, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.902719, -37.848981], [141.902719, -36.94966], [142.082583, -36.94966], [142.082583, -37.848981], [141.902719, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.902719, -36.94966], [141.902719, -36.05034], [142.082583, -36.05034], [142.082583, -36.94966], [141.902719, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.902719, -36.05034], [141.902719, -35.151019], [142.082583, -35.151019], [142.082583, -36.05034], [141.902719, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [141.902719, -35.151019], [141.902719, -34.251699], [142.082583, -34.251699], [142.082583, -35.151019], [141.902719, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.082583, -38.748301], [142.082583, -37.848981], [142.262447, -37.848981], [142.262447, -38.748301], [142.082583, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.082583, -37.848981], [142.082583, -36.94966], [142.262447, -36.94966], [142.262447, -37.848981], [142.082583, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.082583, -36.94966], [142.082583, -36.05034], [142.262447, -36.05034], [142.262447, -36.94966], [142.082583, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.082583, -36.05034], [142.082583, -35.151019], [142.262447, -35.151019], [142.262447, -36.05034], [142.082583, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.082583, -35.151019], [142.082583, -34.251699], [142.262447, -34.251699], [142.262447, -35.151019], [142.082583, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.262447, -38.748301], [142.262447, -37.848981], [142.442311, -37.848981], [142.442311, -38.748301], [142.262447, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.262447, -37.848981], [142.262447, -36.94966], [142.442311, -36.94966], [142.442311, -37.848981], [142.262447, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.262447, -36.94966], [142.262447, -36.05034], [142.442311, -36.05034], [142.442311, -36.94966], [142.262447, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.262447, -36.05034], [142.262447, -35.151019], [142.442311, -35.151019], [142.442311, -36.05034], [142.262447, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.262447, -35.151019], [142.262447, -34.251699], [142.442311, -34.251699], [142.442311, -35.151019], [142.262447, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.442311, -38.748301], [142.442311, -37.848981], [142.622175, -37.848981], [142.622175, -38.748301], [142.442311, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.442311, -37.848981], [142.442311, -36.94966], [142.622175, -36.94966], [142.622175, -37.848981], [142.442311, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.442311, -36.94966], [142.442311, -36.05034], [142.622175, -36.05034], [142.622175, -36.94966], [142.442311, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.442311, -36.05034], [142.442311, -35.151019], [142.622175, -35.151019], [142.622175, -36.05034], [142.442311, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.442311, -35.151019], [142.442311, -34.251699], [142.622175, -34.251699], [142.622175, -35.151019], [142.442311, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.622175, -38.748301], [142.622175, -37.848981], [142.802039, -37.848981], [142.802039, -38.748301], [142.622175, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.622175, -37.848981], [142.622175, -36.94966], [142.802039, -36.94966], [142.802039, -37.848981], [142.622175, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.622175, -36.94966], [142.622175, -36.05034], [142.802039, -36.05034], [142.802039, -36.94966], [142.622175, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.622175, -36.05034], [142.622175, -35.151019], [142.802039, -35.151019], [142.802039, -36.05034], [142.622175, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.622175, -35.151019], [142.622175, -34.251699], [142.802039, -34.251699], [142.802039, -35.151019], [142.622175, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.802039, -38.748301], [142.802039, -37.848981], [142.981903, -37.848981], [142.981903, -38.748301], [142.802039, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.802039, -37.848981], [142.802039, -36.94966], [142.981903, -36.94966], [142.981903, -37.848981], [142.802039, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.802039, -36.94966], [142.802039, -36.05034], [142.981903, -36.05034], [142.981903, -36.94966], [142.802039, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.802039, -36.05034], [142.802039, -35.151019], [142.981903, -35.151019], [142.981903, -36.05034], [142.802039, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.802039, -35.151019], [142.802039, -34.251699], [142.981903, -34.251699], [142.981903, -35.151019], [142.802039, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.981903, -38.748301], [142.981903, -37.848981], [143.161767, -37.848981], [143.161767, -38.748301], [142.981903, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.981903, -37.848981], [142.981903, -36.94966], [143.161767, -36.94966], [143.161767, -37.848981], [142.981903, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.981903, -36.94966], [142.981903, -36.05034], [143.161767, -36.05034], [143.161767, -36.94966], [142.981903, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.981903, -36.05034], [142.981903, -35.151019], [143.161767, -35.151019], [143.161767, -36.05034], [142.981903, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [142.981903, -35.151019], [142.981903, -34.251699], [143.161767, -34.251699], [143.161767, -35.151019], [142.981903, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143.161767, -38.748301], [143.161767, -37.848981], [143.341631, -37.848981], [143.341631, -38.748301], [143.161767, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143.161767, -37.848981], [143.161767, -36.94966], [143.341631, -36.94966], [143.341631, -37.848981], [143.161767, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143.161767, -36.94966], [143.161767, -36.05034], [143.341631, -36.05034], [143.341631, -36.94966], [143.161767, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143.161767, -36.05034], [143.161767, -35.151019], [143.341631, -35.151019], [143.341631, -36.05034], [143.161767, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143.161767, -35.151019], [143.161767, -34.251699], [143.341631, -34.251699], [143.341631, -35.151019], [143.161767, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143.341631, -38.748301], [143.341631, -37.848981], [143.521495, -37.848981], [143.521495, -38.748301], [143.341631, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143.341631, -37.848981], [143.341631, -36.94966], [143.521495, -36.94966], [143.521495, -37.848981], [143.341631, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143.341631, -36.94966], [143.341631, -36.05034], [143.521495, -36.05034], [143.521495, -36.94966], [143.341631, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143.341631, -36.05034], [143.341631, -35.151019], [143.521495, -35.151019], [143.521495, -36.05034], [143.341631, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143.341631, -35.151019], [143.341631, -34.251699], [143.521495, -34.251699], [143.521495, -35.151019], [143.341631, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143.521495, -38.748301], [143.521495, -37.848981], [143.701359, -37.848981], [143.701359, -38.748301], [143.521495, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143.521495, -37.848981], [143.521495, -36.94966], [143.701359, -36.94966], [143.701359, -37.848981], [143.521495, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143.521495, -36.94966], [143.521495, -36.05034], [143.701359, -36.05034], [143.701359, -36.94966], [143.521495, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143.521495, -36.05034], [143.521495, -35.151019], [143.701359, -35.151019], [143.701359, -36.05034], [143.521495, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143.521495, -35.151019], [143.521495, -34.251699], [143.701359, -34.251699], [143.701359, -35.151019], [143.521495, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143.701359, -38.748301], [143.701359, -37.848981], [143.881223, -37.848981], [143.881223, -38.748301], [143.701359, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143.701359, -37.848981], [143.701359, -36.94966], [143.881223, -36.94966], [143.881223, -37.848981], [143.701359, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143.701359, -36.94966], [143.701359, -36.05034], [143.881223, -36.05034], [143.881223, -36.94966], [143.701359, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143.701359, -36.05034], [143.701359, -35.151019], [143.881223, -35.151019], [143.881223, -36.05034], [143.701359, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143.701359, -35.151019], [143.701359, -34.251699], [143.881223, -34.251699], [143.881223, -35.151019], [143.701359, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143.881223, -38.748301], [143.881223, -37.848981], [144.061087, -37.848981], [144.061087, -38.748301], [143.881223, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143.881223, -37.848981], [143.881223, -36.94966], [144.061087, -36.94966], [144.061087, -37.848981], [143.881223, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143.881223, -36.94966], [143.881223, -36.05034], [144.061087, -36.05034], [144.061087, -36.94966], [143.881223, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143.881223, -36.05034], [143.881223, -35.151019], [144.061087, -35.151019], [144.061087, -36.05034], [143.881223, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143.881223, -35.151019], [143.881223, -34.251699], [144.061087, -34.251699], [144.061087, -35.151019], [143.881223, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.061087, -38.748301], [144.061087, -37.848981], [144.240951, -37.848981], [144.240951, -38.748301], [144.061087, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.061087, -37.848981], [144.061087, -36.94966], [144.240951, -36.94966], [144.240951, -37.848981], [144.061087, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.061087, -36.94966], [144.061087, -36.05034], [144.240951, -36.05034], [144.240951, -36.94966], [144.061087, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.061087, -36.05034], [144.061087, -35.151019], [144.240951, -35.151019], [144.240951, -36.05034], [144.061087, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.061087, -35.151019], [144.061087, -34.251699], [144.240951, -34.251699], [144.240951, -35.151019], [144.061087, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.240951, -38.748301], [144.240951, -37.848981], [144.420816, -37.848981], [144.420816, -38.748301], [144.240951, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.240951, -37.848981], [144.240951, -36.94966], [144.420816, -36.94966], [144.420816, -37.848981], [144.240951, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.240951, -36.94966], [144.240951, -36.05034], [144.420816, -36.05034], [144.420816, -36.94966], [144.240951, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.240951, -36.05034], [144.240951, -35.151019], [144.420816, -35.151019], [144.420816, -36.05034], [144.240951, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.240951, -35.151019], [144.240951, -34.251699], [144.420816, -34.251699], [144.420816, -35.151019], [144.240951, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.420816, -38.748301], [144.420816, -37.848981], [144.60068, -37.848981], [144.60068, -38.748301], [144.420816, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.420816, -37.848981], [144.420816, -36.94966], [144.60068, -36.94966], [144.60068, -37.848981], [144.420816, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.420816, -36.94966], [144.420816, -36.05034], [144.60068, -36.05034], [144.60068, -36.94966], [144.420816, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.420816, -36.05034], [144.420816, -35.151019], [144.60068, -35.151019], [144.60068, -36.05034], [144.420816, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.420816, -35.151019], [144.420816, -34.251699], [144.60068, -34.251699], [144.60068, -35.151019], [144.420816, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.60068, -38.748301], [144.60068, -37.848981], [144.780544, -37.848981], [144.780544, -38.748301], [144.60068, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.60068, -37.848981], [144.60068, -36.94966], [144.780544, -36.94966], [144.780544, -37.848981], [144.60068, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.60068, -36.94966], [144.60068, -36.05034], [144.780544, -36.05034], [144.780544, -36.94966], [144.60068, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.60068, -36.05034], [144.60068, -35.151019], [144.780544, -35.151019], [144.780544, -36.05034], [144.60068, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.60068, -35.151019], [144.60068, -34.251699], [144.780544, -34.251699], [144.780544, -35.151019], [144.60068, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.780544, -38.748301], [144.780544, -37.848981], [144.960408, -37.848981], [144.960408, -38.748301], [144.780544, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.780544, -37.848981], [144.780544, -36.94966], [144.960408, -36.94966], [144.960408, -37.848981], [144.780544, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.780544, -36.94966], [144.780544, -36.05034], [144.960408, -36.05034], [144.960408, -36.94966], [144.780544, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.780544, -36.05034], [144.780544, -35.151019], [144.960408, -35.151019], [144.960408, -36.05034], [144.780544, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.780544, -35.151019], [144.780544, -34.251699], [144.960408, -34.251699], [144.960408, -35.151019], [144.780544, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.960408, -38.748301], [144.960408, -37.848981], [145.140272, -37.848981], [145.140272, -38.748301], [144.960408, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.960408, -37.848981], [144.960408, -36.94966], [145.140272, -36.94966], [145.140272, -37.848981], [144.960408, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.960408, -36.94966], [144.960408, -36.05034], [145.140272, -36.05034], [145.140272, -36.94966], [144.960408, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.960408, -36.05034], [144.960408, -35.151019], [145.140272, -35.151019], [145.140272, -36.05034], [144.960408, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.960408, -35.151019], [144.960408, -34.251699], [145.140272, -34.251699], [145.140272, -35.151019], [144.960408, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.140272, -38.748301], [145.140272, -37.848981], [145.320136, -37.848981], [145.320136, -38.748301], [145.140272, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.140272, -37.848981], [145.140272, -36.94966], [145.320136, -36.94966], [145.320136, -37.848981], [145.140272, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.140272, -36.94966], [145.140272, -36.05034], [145.320136, -36.05034], [145.320136, -36.94966], [145.140272, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.140272, -36.05034], [145.140272, -35.151019], [145.320136, -35.151019], [145.320136, -36.05034], [145.140272, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.140272, -35.151019], [145.140272, -34.251699], [145.320136, -34.251699], [145.320136, -35.151019], [145.140272, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.320136, -38.748301], [145.320136, -37.848981], [145.5, -37.848981], [145.5, -38.748301], [145.320136, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.320136, -37.848981], [145.320136, -36.94966], [145.5, -36.94966], [145.5, -37.848981], [145.320136, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.320136, -36.94966], [145.320136, -36.05034], [145.5, -36.05034], [145.5, -36.94966], [145.320136, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.320136, -36.05034], [145.320136, -35.151019], [145.5, -35.151019], [145.5, -36.05034], [145.320136, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.320136, -35.151019], [145.320136, -34.251699], [145.5, -34.251699], [145.5, -35.151019], [145.320136, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.5, -38.748301], [145.5, -37.848981], [145.679864, -37.848981], [145.679864, -38.748301], [145.5, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.5, -37.848981], [145.5, -36.94966], [145.679864, -36.94966], [145.679864, -37.848981], [145.5, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.5, -36.94966], [145.5, -36.05034], [145.679864, -36.05034], [145.679864, -36.94966], [145.5, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.5, -36.05034], [145.5, -35.151019], [145.679864, -35.151019], [145.679864, -36.05034], [145.5, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.5, -35.151019], [145.5, -34.251699], [145.679864, -34.251699], [145.679864, -35.151019], [145.5, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.679864, -38.748301], [145.679864, -37.848981], [145.859728, -37.848981], [145.859728, -38.748301], [145.679864, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.679864, -37.848981], [145.679864, -36.94966], [145.859728, -36.94966], [145.859728, -37.848981], [145.679864, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.679864, -36.94966], [145.679864, -36.05034], [145.859728, -36.05034], [145.859728, -36.94966], [145.679864, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.679864, -36.05034], [145.679864, -35.151019], [145.859728, -35.151019], [145.859728, -36.05034], [145.679864, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.679864, -35.151019], [145.679864, -34.251699], [145.859728, -34.251699], [145.859728, -35.151019], [145.679864, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.859728, -38.748301], [145.859728, -37.848981], [146.039592, -37.848981], [146.039592, -38.748301], [145.859728, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.859728, -37.848981], [145.859728, -36.94966], [146.039592, -36.94966], [146.039592, -37.848981], [145.859728, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.859728, -36.94966], [145.859728, -36.05034], [146.039592, -36.05034], [146.039592, -36.94966], [145.859728, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.859728, -36.05034], [145.859728, -35.151019], [146.039592, -35.151019], [146.039592, -36.05034], [145.859728, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.859728, -35.151019], [145.859728, -34.251699], [146.039592, -34.251699], [146.039592, -35.151019], [145.859728, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.039592, -38.748301], [146.039592, -37.848981], [146.219456, -37.848981], [146.219456, -38.748301], [146.039592, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.039592, -37.848981], [146.039592, -36.94966], [146.219456, -36.94966], [146.219456, -37.848981], [146.039592, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.039592, -36.94966], [146.039592, -36.05034], [146.219456, -36.05034], [146.219456, -36.94966], [146.039592, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.039592, -36.05034], [146.039592, -35.151019], [146.219456, -35.151019], [146.219456, -36.05034], [146.039592, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.039592, -35.151019], [146.039592, -34.251699], [146.219456, -34.251699], [146.219456, -35.151019], [146.039592, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.219456, -38.748301], [146.219456, -37.848981], [146.39932, -37.848981], [146.39932, -38.748301], [146.219456, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.219456, -37.848981], [146.219456, -36.94966], [146.39932, -36.94966], [146.39932, -37.848981], [146.219456, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.219456, -36.94966], [146.219456, -36.05034], [146.39932, -36.05034], [146.39932, -36.94966], [146.219456, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.219456, -36.05034], [146.219456, -35.151019], [146.39932, -35.151019], [146.39932, -36.05034], [146.219456, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.219456, -35.151019], [146.219456, -34.251699], [146.39932, -34.251699], [146.39932, -35.151019], [146.219456, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.39932, -38.748301], [146.39932, -37.848981], [146.579184, -37.848981], [146.579184, -38.748301], [146.39932, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.39932, -37.848981], [146.39932, -36.94966], [146.579184, -36.94966], [146.579184, -37.848981], [146.39932, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.39932, -36.94966], [146.39932, -36.05034], [146.579184, -36.05034], [146.579184, -36.94966], [146.39932, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.39932, -36.05034], [146.39932, -35.151019], [146.579184, -35.151019], [146.579184, -36.05034], [146.39932, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.39932, -35.151019], [146.39932, -34.251699], [146.579184, -34.251699], [146.579184, -35.151019], [146.39932, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.579184, -38.748301], [146.579184, -37.848981], [146.759049, -37.848981], [146.759049, -38.748301], [146.579184, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.579184, -37.848981], [146.579184, -36.94966], [146.759049, -36.94966], [146.759049, -37.848981], [146.579184, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.579184, -36.94966], [146.579184, -36.05034], [146.759049, -36.05034], [146.759049, -36.94966], [146.579184, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.579184, -36.05034], [146.579184, -35.151019], [146.759049, -35.151019], [146.759049, -36.05034], [146.579184, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.579184, -35.151019], [146.579184, -34.251699], [146.759049, -34.251699], [146.759049, -35.151019], [146.579184, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.759049, -38.748301], [146.759049, -37.848981], [146.938913, -37.848981], [146.938913, -38.748301], [146.759049, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.759049, -37.848981], [146.759049, -36.94966], [146.938913, -36.94966], [146.938913, -37.848981], [146.759049, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.759049, -36.94966], [146.759049, -36.05034], [146.938913, -36.05034], [146.938913, -36.94966], [146.759049, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.759049, -36.05034], [146.759049, -35.151019], [146.938913, -35.151019], [146.938913, -36.05034], [146.759049, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.759049, -35.151019], [146.759049, -34.251699], [146.938913, -34.251699], [146.938913, -35.151019], [146.759049, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.938913, -38.748301], [146.938913, -37.848981], [147.118777, -37.848981], [147.118777, -38.748301], [146.938913, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.938913, -37.848981], [146.938913, -36.94966], [147.118777, -36.94966], [147.118777, -37.848981], [146.938913, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.938913, -36.94966], [146.938913, -36.05034], [147.118777, -36.05034], [147.118777, -36.94966], [146.938913, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.938913, -36.05034], [146.938913, -35.151019], [147.118777, -35.151019], [147.118777, -36.05034], [146.938913, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146.938913, -35.151019], [146.938913, -34.251699], [147.118777, -34.251699], [147.118777, -35.151019], [146.938913, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147.118777, -38.748301], [147.118777, -37.848981], [147.298641, -37.848981], [147.298641, -38.748301], [147.118777, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147.118777, -37.848981], [147.118777, -36.94966], [147.298641, -36.94966], [147.298641, -37.848981], [147.118777, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147.118777, -36.94966], [147.118777, -36.05034], [147.298641, -36.05034], [147.298641, -36.94966], [147.118777, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147.118777, -36.05034], [147.118777, -35.151019], [147.298641, -35.151019], [147.298641, -36.05034], [147.118777, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147.118777, -35.151019], [147.118777, -34.251699], [147.298641, -34.251699], [147.298641, -35.151019], [147.118777, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147.298641, -38.748301], [147.298641, -37.848981], [147.478505, -37.848981], [147.478505, -38.748301], [147.298641, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147.298641, -37.848981], [147.298641, -36.94966], [147.478505, -36.94966], [147.478505, -37.848981], [147.298641, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147.298641, -36.94966], [147.298641, -36.05034], [147.478505, -36.05034], [147.478505, -36.94966], [147.298641, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147.298641, -36.05034], [147.298641, -35.151019], [147.478505, -35.151019], [147.478505, -36.05034], [147.298641, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147.298641, -35.151019], [147.298641, -34.251699], [147.478505, -34.251699], [147.478505, -35.151019], [147.298641, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147.478505, -38.748301], [147.478505, -37.848981], [147.658369, -37.848981], [147.658369, -38.748301], [147.478505, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147.478505, -37.848981], [147.478505, -36.94966], [147.658369, -36.94966], [147.658369, -37.848981], [147.478505, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147.478505, -36.94966], [147.478505, -36.05034], [147.658369, -36.05034], [147.658369, -36.94966], [147.478505, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147.478505, -36.05034], [147.478505, -35.151019], [147.658369, -35.151019], [147.658369, -36.05034], [147.478505, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147.478505, -35.151019], [147.478505, -34.251699], [147.658369, -34.251699], [147.658369, -35.151019], [147.478505, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147.658369, -38.748301], [147.658369, -37.848981], [147.838233, -37.848981], [147.838233, -38.748301], [147.658369, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147.658369, -37.848981], [147.658369, -36.94966], [147.838233, -36.94966], [147.838233, -37.848981], [147.658369, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147.658369, -36.94966], [147.658369, -36.05034], [147.838233, -36.05034], [147.838233, -36.94966], [147.658369, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147.658369, -36.05034], [147.658369, -35.151019], [147.838233, -35.151019], [147.838233, -36.05034], [147.658369, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147.658369, -35.151019], [147.658369, -34.251699], [147.838233, -34.251699], [147.838233, -35.151019], [147.658369, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147.838233, -38.748301], [147.838233, -37.848981], [148.018097, -37.848981], [148.018097, -38.748301], [147.838233, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147.838233, -37.848981], [147.838233, -36.94966], [148.018097, -36.94966], [148.018097, -37.848981], [147.838233, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147.838233, -36.94966], [147.838233, -36.05034], [148.018097, -36.05034], [148.018097, -36.94966], [147.838233, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147.838233, -36.05034], [147.838233, -35.151019], [148.018097, -35.151019], [148.018097, -36.05034], [147.838233, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [147.838233, -35.151019], [147.838233, -34.251699], [148.018097, -34.251699], [148.018097, -35.151019], [147.838233, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.018097, -38.748301], [148.018097, -37.848981], [148.197961, -37.848981], [148.197961, -38.748301], [148.018097, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.018097, -37.848981], [148.018097, -36.94966], [148.197961, -36.94966], [148.197961, -37.848981], [148.018097, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.018097, -36.94966], [148.018097, -36.05034], [148.197961, -36.05034], [148.197961, -36.94966], [148.018097, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.018097, -36.05034], [148.018097, -35.151019], [148.197961, -35.151019], [148.197961, -36.05034], [148.018097, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.018097, -35.151019], [148.018097, -34.251699], [148.197961, -34.251699], [148.197961, -35.151019], [148.018097, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.197961, -38.748301], [148.197961, -37.848981], [148.377825, -37.848981], [148.377825, -38.748301], [148.197961, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.197961, -37.848981], [148.197961, -36.94966], [148.377825, -36.94966], [148.377825, -37.848981], [148.197961, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.197961, -36.94966], [148.197961, -36.05034], [148.377825, -36.05034], [148.377825, -36.94966], [148.197961, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.197961, -36.05034], [148.197961, -35.151019], [148.377825, -35.151019], [148.377825, -36.05034], [148.197961, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.197961, -35.151019], [148.197961, -34.251699], [148.377825, -34.251699], [148.377825, -35.151019], [148.197961, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.377825, -38.748301], [148.377825, -37.848981], [148.557689, -37.848981], [148.557689, -38.748301], [148.377825, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.377825, -37.848981], [148.377825, -36.94966], [148.557689, -36.94966], [148.557689, -37.848981], [148.377825, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.377825, -36.94966], [148.377825, -36.05034], [148.557689, -36.05034], [148.557689, -36.94966], [148.377825, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.377825, -36.05034], [148.377825, -35.151019], [148.557689, -35.151019], [148.557689, -36.05034], [148.377825, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.377825, -35.151019], [148.377825, -34.251699], [148.557689, -34.251699], [148.557689, -35.151019], [148.377825, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.557689, -38.748301], [148.557689, -37.848981], [148.737553, -37.848981], [148.737553, -38.748301], [148.557689, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.557689, -37.848981], [148.557689, -36.94966], [148.737553, -36.94966], [148.737553, -37.848981], [148.557689, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.557689, -36.94966], [148.557689, -36.05034], [148.737553, -36.05034], [148.737553, -36.94966], [148.557689, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.557689, -36.05034], [148.557689, -35.151019], [148.737553, -35.151019], [148.737553, -36.05034], [148.557689, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.557689, -35.151019], [148.557689, -34.251699], [148.737553, -34.251699], [148.737553, -35.151019], [148.557689, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.737553, -38.748301], [148.737553, -37.848981], [148.917417, -37.848981], [148.917417, -38.748301], [148.737553, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.737553, -37.848981], [148.737553, -36.94966], [148.917417, -36.94966], [148.917417, -37.848981], [148.737553, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.737553, -36.94966], [148.737553, -36.05034], [148.917417, -36.05034], [148.917417, -36.94966], [148.737553, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.737553, -36.05034], [148.737553, -35.151019], [148.917417, -35.151019], [148.917417, -36.05034], [148.737553, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.737553, -35.151019], [148.737553, -34.251699], [148.917417, -34.251699], [148.917417, -35.151019], [148.737553, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.917417, -38.748301], [148.917417, -37.848981], [149.097281, -37.848981], [149.097281, -38.748301], [148.917417, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.917417, -37.848981], [148.917417, -36.94966], [149.097281, -36.94966], [149.097281, -37.848981], [148.917417, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.917417, -36.94966], [148.917417, -36.05034], [149.097281, -36.05034], [149.097281, -36.94966], [148.917417, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.917417, -36.05034], [148.917417, -35.151019], [149.097281, -35.151019], [149.097281, -36.05034], [148.917417, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [148.917417, -35.151019], [148.917417, -34.251699], [149.097281, -34.251699], [149.097281, -35.151019], [148.917417, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149.097281, -38.748301], [149.097281, -37.848981], [149.277146, -37.848981], [149.277146, -38.748301], [149.097281, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149.097281, -37.848981], [149.097281, -36.94966], [149.277146, -36.94966], [149.277146, -37.848981], [149.097281, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149.097281, -36.94966], [149.097281, -36.05034], [149.277146, -36.05034], [149.277146, -36.94966], [149.097281, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149.097281, -36.05034], [149.097281, -35.151019], [149.277146, -35.151019], [149.277146, -36.05034], [149.097281, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149.097281, -35.151019], [149.097281, -34.251699], [149.277146, -34.251699], [149.277146, -35.151019], [149.097281, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149.277146, -38.748301], [149.277146, -37.848981], [149.45701, -37.848981], [149.45701, -38.748301], [149.277146, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149.277146, -37.848981], [149.277146, -36.94966], [149.45701, -36.94966], [149.45701, -37.848981], [149.277146, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149.277146, -36.94966], [149.277146, -36.05034], [149.45701, -36.05034], [149.45701, -36.94966], [149.277146, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149.277146, -36.05034], [149.277146, -35.151019], [149.45701, -35.151019], [149.45701, -36.05034], [149.277146, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149.277146, -35.151019], [149.277146, -34.251699], [149.45701, -34.251699], [149.45701, -35.151019], [149.277146, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149.45701, -38.748301], [149.45701, -37.848981], [149.636874, -37.848981], [149.636874, -38.748301], [149.45701, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149.45701, -37.848981], [149.45701, -36.94966], [149.636874, -36.94966], [149.636874, -37.848981], [149.45701, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149.45701, -36.94966], [149.45701, -36.05034], [149.636874, -36.05034], [149.636874, -36.94966], [149.45701, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149.45701, -36.05034], [149.45701, -35.151019], [149.636874, -35.151019], [149.636874, -36.05034], [149.45701, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149.45701, -35.151019], [149.45701, -34.251699], [149.636874, -34.251699], [149.636874, -35.151019], [149.45701, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149.636874, -38.748301], [149.636874, -37.848981], [149.816738, -37.848981], [149.816738, -38.748301], [149.636874, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149.636874, -37.848981], [149.636874, -36.94966], [149.816738, -36.94966], [149.816738, -37.848981], [149.636874, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149.636874, -36.94966], [149.636874, -36.05034], [149.816738, -36.05034], [149.816738, -36.94966], [149.636874, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149.636874, -36.05034], [149.636874, -35.151019], [149.816738, -35.151019], [149.816738, -36.05034], [149.636874, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149.636874, -35.151019], [149.636874, -34.251699], [149.816738, -34.251699], [149.816738, -35.151019], [149.636874, -35.151019] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149.816738, -38.748301], [149.816738, -37.848981], [149.996602, -37.848981], [149.996602, -38.748301], [149.816738, -38.748301] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149.816738, -37.848981], [149.816738, -36.94966], [149.996602, -36.94966], [149.996602, -37.848981], [149.816738, -37.848981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149.816738, -36.94966], [149.816738, -36.05034], [149.996602, -36.05034], [149.996602, -36.94966], [149.816738, -36.94966] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149.816738, -36.05034], [149.816738, -35.151019], [149.996602, -35.151019], [149.996602, -36.05034], [149.816738, -36.05034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [149.816738, -35.151019], [149.816738, -34.251699], [149.996602, -34.251699], [149.996602, -35.151019], [149.816738, -35.151019] ] ] } }, { "type": "Feature", "bbox": [141, -39, 150, -34], "properties": { "stroke": "#F00", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [141, -39], [150, -39], [150, -34], [141, -34], [141, -39] ] ] } } ] } ================================================ FILE: packages/turf-rectangle-grid/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { bboxPolygon as bboxPoly } from "@turf/bbox-polygon"; import { truncate } from "@turf/truncate"; import { rectangleGrid } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; let fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, json: loadJsonFileSync(directories.in + filename), }; }); test("rectangle-grid", (t) => { for (const { name, json } of fixtures) { const { bbox, cellWidth, cellHeight, units, properties, mask } = json; const options = { mask, units, properties, }; const result = truncate( rectangleGrid(bbox, cellWidth, cellHeight, options) ); // Add styled GeoJSON to the result const poly = bboxPoly(bbox); poly.properties = { stroke: "#F00", "stroke-width": 6, "fill-opacity": 0, }; result.features.push(poly); if (options.mask) { options.mask.properties = { stroke: "#00F", "stroke-width": 6, "fill-opacity": 0, }; result.features.push(options.mask); } if (process.env.REGEN) writeJsonFileSync(directories.out + name + ".geojson", result); t.deepEqual( result, loadJsonFileSync(directories.out + name + ".geojson"), name ); } t.end(); }); ================================================ FILE: packages/turf-rectangle-grid/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-rewind/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-rewind/README.md ================================================ # @turf/rewind ## rewind Rewind [(Multi)LineString][1] or [(Multi)Polygon][2] outer ring counterclockwise and inner rings clockwise (Uses [Shoelace Formula][3]). ### Parameters * `geojson` **[GeoJSON][4]** input GeoJSON Polygon * `options` **[Object][5]** Optional parameters (optional, default `{}`) * `options.reverse` **[boolean][6]** enable reverse winding (optional, default `false`) * `options.mutate` **[boolean][6]** allows GeoJSON input to be mutated (significant performance increase if true) (optional, default `false`) ### Examples ```javascript var polygon = turf.polygon([[[121, -29], [138, -29], [138, -18], [121, -18], [121, -29]]]); var rewind = turf.rewind(polygon); //addToMap var addToMap = [rewind]; ``` Returns **[GeoJSON][4]** rewind Polygon [1]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [3]: http://en.wikipedia.org/wiki/Shoelace_formula [4]: https://tools.ietf.org/html/rfc7946#section-3 [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/rewind ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-rewind/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { rewind } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; let fixtures = fs.readdirSync(directory).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); // fixtures = fixtures.filter(fixture => fixture.name === 'polygons'); /** * Benchmark Results * * feature-collection x 2,476,533 ops/sec ±2.44% (80 runs sampled) * geometry-polygon-counter-clockwise x 7,422,622 ops/sec ±1.79% (87 runs sampled) * line-clockwise x 5,845,725 ops/sec ±1.55% (86 runs sampled) * line-counter-clockwise x 5,889,989 ops/sec ±1.03% (88 runs sampled) * polygon-clockwise x 4,898,849 ops/sec ±8.02% (75 runs sampled) * polygon-counter-clockwise x 6,586,601 ops/sec ±6.10% (82 runs sampled) */ const suite = new Benchmark.Suite("turf-rewind"); for (const { name, geojson } of fixtures) { suite.add(name, () => rewind(geojson, false, true)); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-rewind/index.ts ================================================ import type { Feature, Position, GeometryCollection, Geometry, LineString, MultiLineString, MultiPolygon, Polygon, FeatureCollection, } from "geojson"; import { clone } from "@turf/clone"; import { booleanClockwise } from "@turf/boolean-clockwise"; import { geomEach, featureEach } from "@turf/meta"; import { getCoords } from "@turf/invariant"; import { featureCollection, isObject } from "@turf/helpers"; import type { AllGeoJSON } from "@turf/helpers"; /** * Rewind {@link LineString|(Multi)LineString} or {@link Polygon|(Multi)Polygon} outer ring counterclockwise and inner rings clockwise (Uses {@link http://en.wikipedia.org/wiki/Shoelace_formula|Shoelace Formula}). * * @function * @param {GeoJSON} geojson input GeoJSON Polygon * @param {Object} [options={}] Optional parameters * @param {boolean} [options.reverse=false] enable reverse winding * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance increase if true) * @returns {GeoJSON} rewind Polygon * @example * var polygon = turf.polygon([[[121, -29], [138, -29], [138, -18], [121, -18], [121, -29]]]); * * var rewind = turf.rewind(polygon); * * //addToMap * var addToMap = [rewind]; */ function rewind( geojson: T, options: { reverse?: boolean; mutate?: boolean; } = {} ): Geometry | Feature | FeatureCollection { // Optional parameters options = options || {}; if (!isObject(options)) throw new Error("options is invalid"); const mutate = options.mutate ?? false; const reverse = options.reverse ?? false; // validation if (!geojson) throw new Error(" is required"); if (typeof reverse !== "boolean") throw new Error(" must be a boolean"); if (typeof mutate !== "boolean") throw new Error(" must be a boolean"); // Prevent input mutation if requested and necessary. if (!mutate && geojson.type !== "Point" && geojson.type !== "MultiPoint") { geojson = clone(geojson); } // Support Feature Collection or Geometry Collection const results: Feature[] = []; switch (geojson.type) { case "GeometryCollection": geomEach(geojson, function (geometry) { rewindFeature(geometry, reverse); }); return geojson; case "FeatureCollection": featureEach(geojson, function (feature) { const rewoundFeature = rewindFeature(feature, reverse) as Feature; featureEach(rewoundFeature, function (result) { results.push(result); }); }); return featureCollection(results); } // Support Feature or Geometry Objects return rewindFeature(geojson, reverse); } /** * Rewind * * @private * @param {Geometry|Feature} geojson Geometry or Feature * @param {Boolean} [reverse=false] enable reverse winding * @returns {Geometry|Feature} rewind Geometry or Feature */ function rewindFeature( geojson: Geometry | GeometryCollection | Feature, reverse: boolean ) { const type = geojson.type === "Feature" ? geojson.geometry.type : geojson.type; // Support all GeoJSON Geometry Objects switch (type) { case "GeometryCollection": geomEach(geojson, function (geometry) { rewindFeature(geometry, reverse); }); return geojson; case "LineString": rewindLineString(getCoords(geojson as LineString), reverse); return geojson; case "Polygon": rewindPolygon(getCoords(geojson as Polygon), reverse); return geojson; case "MultiLineString": getCoords(geojson as MultiLineString).forEach(function (lineCoords) { rewindLineString(lineCoords, reverse); }); return geojson; case "MultiPolygon": getCoords(geojson as MultiPolygon).forEach(function (lineCoords) { rewindPolygon(lineCoords, reverse); }); return geojson; case "Point": case "MultiPoint": // noop return geojson; } } /** * Rewind LineString - outer ring clockwise * * @private * @param {Array>} coords GeoJSON LineString geometry coordinates * @param {Boolean} [reverse=false] enable reverse winding * @returns {void} mutates coordinates */ function rewindLineString(coords: Position[], reverse: boolean) { if (booleanClockwise(coords) === reverse) coords.reverse(); } /** * Rewind Polygon - outer ring counterclockwise and inner rings clockwise. * * @private * @param {Array>>} coords GeoJSON Polygon geometry coordinates * @param {Boolean} [reverse=false] enable reverse winding * @returns {void} mutates coordinates */ function rewindPolygon(coords: Position[][], reverse: boolean) { // outer ring if (booleanClockwise(coords[0]) !== reverse) { coords[0].reverse(); } // inner rings for (let i = 1; i < coords.length; i++) { if (booleanClockwise(coords[i]) === reverse) { coords[i].reverse(); } } } export { rewind }; export default rewind; ================================================ FILE: packages/turf-rewind/package.json ================================================ { "name": "@turf/rewind", "version": "7.3.4", "description": "Rewind using Shoelace Formula.", "author": "Turf Authors", "contributors": [ "Abel Vázquez Montoro <@AbelVM>", "Tom MacWright <@tmcw>", "Denis Carriere <@DenisCarriere>", "Morgan Herlocker <@morganherlocker>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "geojson", "polygon", "rewind" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/boolean-clockwise": "workspace:*", "@turf/clone": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-rewind/test/in/feature-collection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130.1220703125, -16.383391123608387], [126.38671874999999, -17.518344187852207], [123.79394531249999, -21.248422235627014], [123.96972656249999, -26.431228064506424], [127.2216796875, -29.80251790576445], [132.5830078125, -30.637912028341113], [137.3291015625, -28.92163128242129], [140.09765625, -25.403584973186703], [140.18554687499997, -20.097206227083888], [137.1533203125, -16.804541076383455], [130.1220703125, -16.383391123608387] ] ] } } ] } ================================================ FILE: packages/turf-rewind/test/in/geometry-polygon-counter-clockwise.geojson ================================================ { "type": "Polygon", "coordinates": [ [ [121.9921875, -29.22889003019423], [138.515625, -29.22889003019423], [138.515625, -18.312810846425442], [121.9921875, -18.312810846425442], [121.9921875, -29.22889003019423] ] ] } ================================================ FILE: packages/turf-rewind/test/in/line-clockwise.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [122.87109375, -20.13847031245114], [126.21093749999999, -15.792253570362446], [129.5947265625, -14.604847155053898], [134.560546875, -15.834535741221552], [138.73535156249997, -20.014645445341355], [139.833984375, -25.799891182088306], [134.12109375, -30.183121842195504], [131.8798828125, -30.221101852485987], [128.49609375, -29.878755346037963], [124.4091796875, -27.839076094777802] ] } } ================================================ FILE: packages/turf-rewind/test/in/line-counter-clockwise.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [124.4091796875, -27.839076094777802], [128.49609375, -29.878755346037963], [131.8798828125, -30.221101852485987], [134.12109375, -30.183121842195504], [139.833984375, -25.799891182088306], [138.73535156249997, -20.014645445341355], [134.560546875, -15.834535741221552], [129.5947265625, -14.604847155053898], [126.21093749999999, -15.792253570362446], [122.87109375, -20.13847031245114] ] } } ================================================ FILE: packages/turf-rewind/test/in/polygon-clockwise.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [1, 1], [1, 0], [0, 0] ] ] } } ================================================ FILE: packages/turf-rewind/test/in/polygon-counter-clockwise.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [1, 0], [1, 1], [0, 0] ] ] } } ================================================ FILE: packages/turf-rewind/test/out/feature-collection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [130.1220703125, -16.383391123608387], [126.38671874999999, -17.518344187852207], [123.79394531249999, -21.248422235627014], [123.96972656249999, -26.431228064506424], [127.2216796875, -29.80251790576445], [132.5830078125, -30.637912028341113], [137.3291015625, -28.92163128242129], [140.09765625, -25.403584973186703], [140.18554687499997, -20.097206227083888], [137.1533203125, -16.804541076383455], [130.1220703125, -16.383391123608387] ] ] } } ] } ================================================ FILE: packages/turf-rewind/test/out/geometry-polygon-counter-clockwise.geojson ================================================ { "type": "Polygon", "coordinates": [ [ [121.9921875, -29.22889003019423], [138.515625, -29.22889003019423], [138.515625, -18.312810846425442], [121.9921875, -18.312810846425442], [121.9921875, -29.22889003019423] ] ] } ================================================ FILE: packages/turf-rewind/test/out/line-clockwise.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [122.87109375, -20.13847031245114], [126.21093749999999, -15.792253570362446], [129.5947265625, -14.604847155053898], [134.560546875, -15.834535741221552], [138.73535156249997, -20.014645445341355], [139.833984375, -25.799891182088306], [134.12109375, -30.183121842195504], [131.8798828125, -30.221101852485987], [128.49609375, -29.878755346037963], [124.4091796875, -27.839076094777802] ] } } ================================================ FILE: packages/turf-rewind/test/out/line-counter-clockwise.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [122.87109375, -20.13847031245114], [126.21093749999999, -15.792253570362446], [129.5947265625, -14.604847155053898], [134.560546875, -15.834535741221552], [138.73535156249997, -20.014645445341355], [139.833984375, -25.799891182088306], [134.12109375, -30.183121842195504], [131.8798828125, -30.221101852485987], [128.49609375, -29.878755346037963], [124.4091796875, -27.839076094777802] ] } } ================================================ FILE: packages/turf-rewind/test/out/polygon-clockwise.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [1, 0], [1, 1], [0, 0] ] ] } } ================================================ FILE: packages/turf-rewind/test/out/polygon-counter-clockwise.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [1, 0], [1, 1], [0, 0] ] ] } } ================================================ FILE: packages/turf-rewind/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { polygon, lineString, featureCollection, geometryCollection, } from "@turf/helpers"; import { rewind } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; let fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); // fixtures = fixtures.filter(fixture => fixture.name === 'polygon-clockwise'); test("turf-rewind", (t) => { for (const { filename, name, geojson } of fixtures) { const { reverse } = geojson.properties || {}; const results = rewind(geojson, reverse); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEqual(results, loadJsonFileSync(directories.out + filename), name); } t.end(); }); test("turf-buffer - Support Geometry Objects", (t) => { const line = lineString([ [11, 0], [22, 4], [31, 0], [31, 11], ]); const poly = polygon([ [ [11, 0], [22, 4], [31, 0], [31, 11], [21, 15], [11, 11], [11, 0], ], ]); const gc = geometryCollection([poly.geometry, line.geometry]); const fc = featureCollection([poly, line]); t.assert(rewind(line.geometry), "support LineString Geometry"); t.assert(rewind(poly.geometry), "support Polygon Geometry"); t.assert(rewind(fc), "support Feature Collection"); t.assert(rewind(gc), "support Geometry Collection"); t.end(); }); test("turf-buffer - Prevent Input Mutation", (t) => { const line = lineString([ [11, 0], [22, 4], [31, 0], [31, 11], ]); const poly = polygon([ [ [11, 0], [22, 4], [31, 0], [31, 11], [21, 15], [11, 11], [11, 0], ], ]); const beforePoly = JSON.parse(JSON.stringify(poly)); const beforeLine = JSON.parse(JSON.stringify(line)); rewind(poly); rewind(line); t.deepEqual(poly, beforePoly, "poly should not mutate"); t.deepEqual(line, beforeLine, "line should not mutate"); t.end(); }); ================================================ FILE: packages/turf-rewind/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-rewind/types.ts ================================================ import { polygon, lineString, multiLineString, multiPolygon, } from "@turf/helpers"; import { rewind } from "./index.js"; const coords = [ [121, -29], [138, -29], [138, -18], [121, -18], [121, -29], ]; const poly = polygon([coords]); const line = lineString(coords); const multiPoly = multiPolygon([[coords], [coords]]); const multiLine = multiLineString([coords, coords]); rewind(line); rewind(poly); rewind(multiPoly); rewind(multiLine); rewind(poly, { mutate: true }); rewind(poly, { mutate: true, reverse: true }); ================================================ FILE: packages/turf-rhumb-bearing/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-rhumb-bearing/README.md ================================================ # @turf/rhumb-bearing ## rhumbBearing Takes two [points][1] and finds the bearing angle between them along a Rhumb line i.e. the angle measured in degrees start the north line (0 degrees) ### Parameters * `start` **[Coord][2]** starting Point * `end` **[Coord][2]** ending Point * `options` **[Object][3]?** Optional parameters (optional, default `{}`) * `options.final` **[boolean][4]** calculates the final bearing if true (optional, default `false`) ### Examples ```javascript var point1 = turf.point([-75.343, 39.984], {"marker-color": "#F00"}); var point2 = turf.point([-75.534, 39.123], {"marker-color": "#00F"}); var bearing = turf.rhumbBearing(point1, point2); //addToMap var addToMap = [point1, point2]; point1.properties.bearing = bearing; point2.properties.bearing = bearing; ``` Returns **[number][5]** bearing from north in decimal degrees, between -180 and 180 degrees (positive clockwise) [1]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.1 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/rhumb-bearing ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-rhumb-bearing/bench.ts ================================================ import { point } from "@turf/helpers"; import Benchmark from "benchmark"; import { rhumbBearing } from "./index.js"; var start = point([-75.4, 39.4]); var end = point([-75.534, 39.123]); /** * Benchmark Results * * initial bearing x 1,108,233 ops/sec ±3.22% (86 runs sampled) * final bearing x 1,144,822 ops/sec ±2.01% (88 runs sampled) */ var suite = new Benchmark.Suite("turf-rhumb-bearing"); suite .add("initial bearing", () => rhumbBearing(start, end)) .add("final bearing", () => rhumbBearing(start, end, true)) .on("cycle", (e) => console.log(String(e.target))) .run(); ================================================ FILE: packages/turf-rhumb-bearing/index.ts ================================================ // https://en.wikipedia.org/wiki/Rhumb_line import { Coord, degreesToRadians, radiansToDegrees } from "@turf/helpers"; import { getCoord } from "@turf/invariant"; /** * Takes two {@link Point|points} and finds the bearing angle between them along a Rhumb line * i.e. the angle measured in degrees start the north line (0 degrees) * * @function * @param {Coord} start starting Point * @param {Coord} end ending Point * @param {Object} [options] Optional parameters * @param {boolean} [options.final=false] calculates the final bearing if true * @returns {number} bearing from north in decimal degrees, between -180 and 180 degrees (positive clockwise) * @example * var point1 = turf.point([-75.343, 39.984], {"marker-color": "#F00"}); * var point2 = turf.point([-75.534, 39.123], {"marker-color": "#00F"}); * * var bearing = turf.rhumbBearing(point1, point2); * * //addToMap * var addToMap = [point1, point2]; * point1.properties.bearing = bearing; * point2.properties.bearing = bearing; */ function rhumbBearing( start: Coord, end: Coord, options: { final?: boolean } = {} ): number { let bear360; if (options.final) { bear360 = calculateRhumbBearing(getCoord(end), getCoord(start)); } else { bear360 = calculateRhumbBearing(getCoord(start), getCoord(end)); } const bear180 = bear360 > 180 ? -(360 - bear360) : bear360; return bear180; } /** * Returns the bearing from ‘this’ point to destination point along a rhumb line. * Adapted from Geodesy: https://github.com/chrisveness/geodesy/blob/master/latlon-spherical.js * * @private * @param {Array} from - origin point. * @param {Array} to - destination point. * @returns {number} Bearing in degrees from north. * @example * var p1 = new LatLon(51.127, 1.338); * var p2 = new LatLon(50.964, 1.853); * var d = p1.rhumbBearingTo(p2); // 116.7 m */ function calculateRhumbBearing(from: number[], to: number[]) { // φ => phi // Δλ => deltaLambda // Δψ => deltaPsi // θ => theta const phi1 = degreesToRadians(from[1]); const phi2 = degreesToRadians(to[1]); let deltaLambda = degreesToRadians(to[0] - from[0]); // if deltaLambdaon over 180° take shorter rhumb line across the anti-meridian: if (deltaLambda > Math.PI) { deltaLambda -= 2 * Math.PI; } if (deltaLambda < -Math.PI) { deltaLambda += 2 * Math.PI; } const deltaPsi = Math.log( Math.tan(phi2 / 2 + Math.PI / 4) / Math.tan(phi1 / 2 + Math.PI / 4) ); const theta = Math.atan2(deltaLambda, deltaPsi); return (radiansToDegrees(theta) + 360) % 360; } export { rhumbBearing }; export default rhumbBearing; ================================================ FILE: packages/turf-rhumb-bearing/package.json ================================================ { "name": "@turf/rhumb-bearing", "version": "7.3.4", "description": "Takes two points and finds the bearing angle between them along a Rhumb line.", "author": "Turf Authors", "contributors": [ "Chris Veness <@chrisveness>", "Stefano Borghi <@stebogit>", "Denis Carriere <@DenisCarriere>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "bearing", "loxodrome", "rhumb", "rhumb line" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@turf/destination": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-rhumb-bearing/test/in/pair1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [-75, 45] } }, { "type": "Feature", "properties": { "marker-color": "#00F" }, "geometry": { "type": "Point", "coordinates": [20, 60] } } ] } ================================================ FILE: packages/turf-rhumb-bearing/test/out/pair1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [-75, 45] } }, { "type": "Feature", "properties": { "marker-color": "#00F" }, "geometry": { "type": "Point", "coordinates": [20, 60] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [-75, 45], [-66.10068737769872, 51.79325008492101] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6 }, "geometry": { "type": "LineString", "coordinates": [ [20, 60], [2.3844816279733956, 63.440396381483744] ] } } ] } ================================================ FILE: packages/turf-rhumb-bearing/test/out/pair1.json ================================================ { "initialBearing": 75.28061364784332, "finalBearing": -104.7193863521567 } ================================================ FILE: packages/turf-rhumb-bearing/test.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { point } from "@turf/helpers"; import { rhumbBearing } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; let fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("bearing", (t) => { fixtures.forEach((fixture) => { const name = fixture.name; const geojson = fixture.geojson; const start = geojson.features[0]; const end = geojson.features[1]; const initialBearing = rhumbBearing(start, end); const finalBearing = rhumbBearing(start, end, { final: true }); const result = { initialBearing: initialBearing, finalBearing: finalBearing, }; if (process.env.REGEN) writeJsonFileSync(directories.out + name + ".json", result); t.deepEqual( loadJsonFileSync(directories.out + name + ".json"), result, name ); }); t.throws(() => { rhumbBearing(point([12, -54]), "point"); }, "invalid point"); t.end(); }); ================================================ FILE: packages/turf-rhumb-bearing/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-rhumb-destination/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-rhumb-destination/README.md ================================================ # @turf/rhumb-destination ## rhumbDestination Returns the destination [Point][1] having travelled the given distance along a Rhumb line from the origin Point with the (varant) given bearing. ### Parameters * `origin` **[Coord][2]** starting point * `distance` **[number][3]** distance from the starting point * `bearing` **[number][3]** varant bearing angle ranging from -180 to 180 degrees from north * `options` **[Object][4]** Optional parameters (optional, default `{}`) * `options.units` **Units** Supports all valid Turf [Units][5] (optional, default `'kilometers'`) * `options.properties` **[Object][4]** translate properties to destination point (optional, default `{}`) ### Examples ```javascript var pt = turf.point([-75.343, 39.984], {"marker-color": "F00"}); var distance = 50; var bearing = 90; var options = {units: 'miles'}; var destination = turf.rhumbDestination(pt, distance, bearing, options); //addToMap var addToMap = [pt, destination] destination.properties['marker-color'] = '#00F'; ``` Returns **[Feature][6]<[Point][1]>** Destination point. [1]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.1 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [5]: https://turfjs.org/docs/api/types/Units [6]: https://tools.ietf.org/html/rfc7946#section-3.2 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/rhumb-destination ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-rhumb-destination/bench.ts ================================================ import { point } from "@turf/helpers"; import Benchmark from "benchmark"; import { rhumbDestination as destination } from "./index.js"; const pt1 = point([-75.0, 39.0]); const distance = 100; const bearing = 180; /** * Benchmark Results * * turf-rhumb-destination x 1,183,462 ops/sec ±3.56% (84 runs sampled) */ const suite = new Benchmark.Suite("turf-rhumb-destination"); suite .add("turf-rhumb-destination", () => destination(pt1, distance, bearing, "kilometers") ) .on("cycle", (e) => console.log(String(e.target))) .run(); ================================================ FILE: packages/turf-rhumb-destination/index.ts ================================================ // https://en.wikipedia.org/wiki/Rhumb_line import { Feature, Point, GeoJsonProperties } from "geojson"; import { convertLength, Coord, degreesToRadians, earthRadius, point, Units, } from "@turf/helpers"; import { getCoord } from "@turf/invariant"; /** * Returns the destination {@link Point} having travelled the given distance along a Rhumb line from the * origin Point with the (varant) given bearing. * * @function * @param {Coord} origin starting point * @param {number} distance distance from the starting point * @param {number} bearing varant bearing angle ranging from -180 to 180 degrees from north * @param {Object} [options={}] Optional parameters * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @param {Object} [options.properties={}] translate properties to destination point * @returns {Feature} Destination point. * @example * var pt = turf.point([-75.343, 39.984], {"marker-color": "F00"}); * var distance = 50; * var bearing = 90; * var options = {units: 'miles'}; * * var destination = turf.rhumbDestination(pt, distance, bearing, options); * * //addToMap * var addToMap = [pt, destination] * destination.properties['marker-color'] = '#00F'; */ function rhumbDestination

( origin: Coord, distance: number, bearing: number, options: { units?: Units; properties?: P; } = {} ): Feature { const wasNegativeDistance = distance < 0; let distanceInMeters = convertLength( Math.abs(distance), options.units, "meters" ); if (wasNegativeDistance) distanceInMeters = -Math.abs(distanceInMeters); const coords = getCoord(origin); const destination = calculateRhumbDestination( coords, distanceInMeters, bearing ); // compensate the crossing of the 180th meridian (https://macwright.org/2016/09/26/the-180th-meridian.html) // solution from https://github.com/mapbox/mapbox-gl-js/issues/3250#issuecomment-294887678 destination[0] += destination[0] - coords[0] > 180 ? -360 : coords[0] - destination[0] > 180 ? 360 : 0; return point(destination, options.properties); } /** * Returns the destination point having travelled along a rhumb line from origin point the given * distance on the given bearing. * Adapted from Geodesy: http://www.movable-type.co.uk/scripts/latlong.html#rhumblines * * @private * @param {Array} origin - point * @param {number} distance - Distance travelled, in same units as earth radius (default: metres). * @param {number} bearing - Bearing in degrees from north. * @param {number} [radius=6371e3] - (Mean) radius of earth (defaults to radius in metres). * @returns {Array} Destination point. */ function calculateRhumbDestination( origin: number[], distance: number, bearing: number, radius?: number ) { // φ => phi // λ => lambda // ψ => psi // Δ => Delta // δ => delta // θ => theta radius = radius === undefined ? earthRadius : Number(radius); const delta = distance / radius; // angular distance in radians const lambda1 = (origin[0] * Math.PI) / 180; // to radians, but without normalize to 𝜋 const phi1 = degreesToRadians(origin[1]); const theta = degreesToRadians(bearing); const DeltaPhi = delta * Math.cos(theta); let phi2 = phi1 + DeltaPhi; // check for some daft bugger going past the pole, normalise latitude if so if (Math.abs(phi2) > Math.PI / 2) { phi2 = phi2 > 0 ? Math.PI - phi2 : -Math.PI - phi2; } const DeltaPsi = Math.log( Math.tan(phi2 / 2 + Math.PI / 4) / Math.tan(phi1 / 2 + Math.PI / 4) ); // E-W course becomes ill-conditioned with 0/0 const q = Math.abs(DeltaPsi) > 10e-12 ? DeltaPhi / DeltaPsi : Math.cos(phi1); const DeltaLambda = (delta * Math.sin(theta)) / q; const lambda2 = lambda1 + DeltaLambda; return [ (((lambda2 * 180) / Math.PI + 540) % 360) - 180, (phi2 * 180) / Math.PI, ]; // normalise to −180..+180° } export { rhumbDestination }; export default rhumbDestination; ================================================ FILE: packages/turf-rhumb-destination/package.json ================================================ { "name": "@turf/rhumb-destination", "version": "7.3.4", "description": "Calculates the destination point having travelled the given distance along a Rhumb line.", "author": "Turf Authors", "contributors": [ "Chris Veness <@chrisveness>", "Stefano Borghi <@stebogit>", "Denis Carriere <@DenisCarriere>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "distance", "destination", "bearing", "loxodrome", "rhumb", "rhumb line", "miles", "km" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-rhumb-destination/test/in/fiji-east-west-539-lng.geojson ================================================ { "type": "Feature", "properties": { "bearing": -90, "dist": 100 }, "geometry": { "type": "Point", "coordinates": [-539.5, -16.5] } } ================================================ FILE: packages/turf-rhumb-destination/test/in/fiji-east-west.geojson ================================================ { "type": "Feature", "properties": { "bearing": -90, "dist": 100 }, "geometry": { "type": "Point", "coordinates": [-179.5, -16.5] } } ================================================ FILE: packages/turf-rhumb-destination/test/in/fiji-west-east.geojson ================================================ { "type": "Feature", "properties": { "bearing": 120, "dist": 150 }, "geometry": { "type": "Point", "coordinates": [179.5, -16.5] } } ================================================ FILE: packages/turf-rhumb-destination/test/in/point-0.geojson ================================================ { "type": "Feature", "properties": { "bearing": 0 }, "geometry": { "type": "Point", "coordinates": [-75, 38.10096062273525] } } ================================================ FILE: packages/turf-rhumb-destination/test/in/point-180.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75, 39] } } ================================================ FILE: packages/turf-rhumb-destination/test/in/point-90.geojson ================================================ { "type": "Feature", "properties": { "bearing": 90 }, "geometry": { "type": "Point", "coordinates": [-75, 39] } } ================================================ FILE: packages/turf-rhumb-destination/test/in/point-way-far-away.geojson ================================================ { "type": "Feature", "properties": { "bearing": 90, "dist": 5000, "units": "miles" }, "geometry": { "type": "Point", "coordinates": [-75, 39] } } ================================================ FILE: packages/turf-rhumb-destination/test/out/fiji-east-west-539-lng.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "LineString", "coordinates": [ [-539.5, -16.5], [-540.437945, -16.5] ] } }, { "type": "Feature", "properties": { "bearing": -90, "dist": 100, "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [-539.5, -16.5] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-540.4379451955566, -16.5] } } ] } ================================================ FILE: packages/turf-rhumb-destination/test/out/fiji-east-west.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "LineString", "coordinates": [ [-179.5, -16.5], [-180.437945, -16.5] ] } }, { "type": "Feature", "properties": { "bearing": -90, "dist": 100, "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [-179.5, -16.5] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-180.43794519555667, -16.5] } } ] } ================================================ FILE: packages/turf-rhumb-destination/test/out/fiji-west-east.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "LineString", "coordinates": [ [179.5, -16.5], [180.720584, -17.17449] ] } }, { "type": "Feature", "properties": { "bearing": 120, "dist": 150, "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [179.5, -16.5] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [180.72058412338447, -17.174490272793403] } } ] } ================================================ FILE: packages/turf-rhumb-destination/test/out/point-0.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "LineString", "coordinates": [ [-75, 38.100961], [-75, 39.000281] ] } }, { "type": "Feature", "properties": { "bearing": 0, "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [-75, 38.10096062273525] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75, 39.00028098645979] } } ] } ================================================ FILE: packages/turf-rhumb-destination/test/out/point-180.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "LineString", "coordinates": [ [-75, 39], [-75, 38.10068] ] } }, { "type": "Feature", "properties": { "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [-75, 39] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75, 38.10067963627546] } } ] } ================================================ FILE: packages/turf-rhumb-destination/test/out/point-90.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "LineString", "coordinates": [ [-75, 39], [-73.842791, 39] ] } }, { "type": "Feature", "properties": { "bearing": 90, "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [-75, 39] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-73.84279091917494, 39] } } ] } ================================================ FILE: packages/turf-rhumb-destination/test/out/point-way-far-away.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "LineString", "coordinates": [ [-75, 39], [18.117375, 39] ] } }, { "type": "Feature", "properties": { "bearing": 90, "dist": 5000, "units": "miles", "marker-color": "#F00" }, "geometry": { "type": "Point", "coordinates": [-75, 39] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [18.117374548567227, 39] } } ] } ================================================ FILE: packages/turf-rhumb-destination/test.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { writeJsonFileSync } from "write-json-file"; import { loadJsonFileSync } from "load-json-file"; import { truncate } from "@turf/truncate"; import { getCoords } from "@turf/invariant"; import { featureCollection, lineString, point } from "@turf/helpers"; import { rhumbDestination } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("turf-rhumb-destination", (t) => { for (const { filename, name, geojson } of fixtures) { let { bearing, dist, units } = geojson.properties || {}; bearing = bearing !== undefined ? bearing : 180; dist = dist !== undefined ? dist : 100; const destinationPoint = rhumbDestination(geojson, dist, bearing, { units: units, }); const line = truncate( lineString([getCoords(geojson), getCoords(destinationPoint)], { stroke: "#F00", "stroke-width": 4, }) ); geojson.properties["marker-color"] = "#F00"; const result = featureCollection([line, geojson, destinationPoint]); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, result); t.deepEqual(result, loadJsonFileSync(directories.out + filename), name); } t.end(); }); test("turf-rhumb-destintation -- throws error", (t) => { const pt = point([12, -54]); t.assert( rhumbDestination(pt, 0, 45).geometry.coordinates[0], "0 distance is valid" ); t.assert( rhumbDestination(pt, 100, 0).geometry.coordinates[0], "0 bearing is valid" ); // t.throws(() => rhumbDestination(pt, 100, 45, 'blah'), 'unknown option given to units'); // t.throws(() => rhumbDestination(pt, null, 75), 'missing distance'); // t.throws(() => rhumbDestination(pt, 'foo', 75), 'invalid distance - units param switched to distance'); // t.throws(() => rhumbDestination('foo', 200, 75, {units: 'miles'}), 'invalid point'); t.end(); }); test("turf-rhumb-destintation -- add properties", (t) => { const properties = { foo: "bar" }; const pt = point([12, -54], properties); t.deepEqual( rhumbDestination(pt, 0, 45, { properties }).properties, properties, "add properties" ); t.end(); }); test("turf-rhumb-destintation -- allows negative distance", (t) => { const pt = point([12, -54]); const out = rhumbDestination(pt, -100, 45); t.deepEqual( out.geometry.coordinates, [10.90974456038191, -54.63591552764877] ); t.end(); }); ================================================ FILE: packages/turf-rhumb-destination/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-rhumb-distance/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-rhumb-distance/README.md ================================================ # @turf/rhumb-distance ## rhumbDistance Calculates the distance along a rhumb line between two [points][1] in [Units][2] ### Parameters * `from` **[Coord][3]** origin point * `to` **[Coord][3]** destination point * `options` **[Object][4]?** Optional parameters (optional, default `{}`) * `options.units` **Units** Supports all valid Turf [Units][2] (optional, default `'kilometers'`) ### Examples ```javascript var from = turf.point([-75.343, 39.984]); var to = turf.point([-75.534, 39.123]); var options = {units: 'miles'}; var distance = turf.rhumbDistance(from, to, options); //addToMap var addToMap = [from, to]; from.properties.distance = distance; to.properties.distance = distance; ``` Returns **[number][5]** distance between the two points [1]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [2]: https://turfjs.org/docs/api/types/Units [3]: https://tools.ietf.org/html/rfc7946#section-3.1.1 [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/rhumb-distance ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-rhumb-distance/bench.ts ================================================ import { point } from "@turf/helpers"; import Benchmark from "benchmark"; import { rhumbDistance as distance } from "./index.js"; const pt1 = point([-75.4, 39.4]); const pt2 = point([-75.534, 39.123]); /** * Benchmark Results * * turf-rhumb-distance x 1,721,401 ops/sec ±0.86% (89 runs sampled) */ const suite = new Benchmark.Suite("turf-rhumb-distance"); suite .add("turf-rhumb-distance", () => distance(pt1, pt2, "miles")) .on("cycle", (e) => console.log(String(e.target))) .run(); ================================================ FILE: packages/turf-rhumb-distance/index.ts ================================================ // https://en.wikipedia.org/wiki/Rhumb_line import { convertLength, Coord, earthRadius, Units } from "@turf/helpers"; import { getCoord } from "@turf/invariant"; /** * Calculates the distance along a rhumb line between two {@link Point|points} in {@link https://turfjs.org/docs/api/types/Units Units} * * @function * @param {Coord} from origin point * @param {Coord} to destination point * @param {Object} [options] Optional parameters * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @returns {number} distance between the two points * @example * var from = turf.point([-75.343, 39.984]); * var to = turf.point([-75.534, 39.123]); * var options = {units: 'miles'}; * * var distance = turf.rhumbDistance(from, to, options); * * //addToMap * var addToMap = [from, to]; * from.properties.distance = distance; * to.properties.distance = distance; */ function rhumbDistance( from: Coord, to: Coord, options: { units?: Units; } = {} ): number { const origin = getCoord(from); const destination = getCoord(to); // compensate the crossing of the 180th meridian (https://macwright.org/2016/09/26/the-180th-meridian.html) // solution from https://github.com/mapbox/mapbox-gl-js/issues/3250#issuecomment-294887678 destination[0] += destination[0] - origin[0] > 180 ? -360 : origin[0] - destination[0] > 180 ? 360 : 0; const distanceInMeters = calculateRhumbDistance(origin, destination); const distance = convertLength(distanceInMeters, "meters", options.units); return distance; } /** * Returns the distance travelling from ‘this’ point to destination point along a rhumb line. * Adapted from Geodesy: https://github.com/chrisveness/geodesy/blob/master/latlon-spherical.js * * @private * @param {Array} origin point. * @param {Array} destination point. * @param {number} [radius=6371e3] - (Mean) radius of earth (defaults to radius in metres). * @returns {number} Distance in km between this point and destination point (same units as radius). * * @example * var p1 = new LatLon(51.127, 1.338); * var p2 = new LatLon(50.964, 1.853); * var d = p1.distanceTo(p2); // 40.31 km */ function calculateRhumbDistance( origin: number[], destination: number[], radius?: number ) { // φ => phi // λ => lambda // ψ => psi // Δ => Delta // δ => delta // θ => theta radius = radius === undefined ? earthRadius : Number(radius); // see www.edwilliams.org/avform.htm#Rhumb const R = radius; const phi1 = (origin[1] * Math.PI) / 180; const phi2 = (destination[1] * Math.PI) / 180; const DeltaPhi = phi2 - phi1; let DeltaLambda = (Math.abs(destination[0] - origin[0]) * Math.PI) / 180; // if dLon over 180° take shorter rhumb line across the anti-meridian: if (DeltaLambda > Math.PI) { DeltaLambda -= 2 * Math.PI; } // on Mercator projection, longitude distances shrink by latitude; q is the 'stretch factor' // q becomes ill-conditioned along E-W line (0/0); use empirical tolerance to avoid it const DeltaPsi = Math.log( Math.tan(phi2 / 2 + Math.PI / 4) / Math.tan(phi1 / 2 + Math.PI / 4) ); const q = Math.abs(DeltaPsi) > 10e-12 ? DeltaPhi / DeltaPsi : Math.cos(phi1); // distance is pythagoras on 'stretched' Mercator projection const delta = Math.sqrt( DeltaPhi * DeltaPhi + q * q * DeltaLambda * DeltaLambda ); // angular distance in radians const dist = delta * R; return dist; } export { rhumbDistance }; export default rhumbDistance; ================================================ FILE: packages/turf-rhumb-distance/package.json ================================================ { "name": "@turf/rhumb-distance", "version": "7.3.4", "description": "Calculates the distance along a rhumb line between two points.", "author": "Turf Authors", "contributors": [ "Chris Veness <@chrisveness>", "Stefano Borghi <@stebogit>", "Denis Carriere <@DenisCarriere>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "distance", "rhumb line", "rhumb", "loxodrome", "miles", "km" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@turf/distance": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-rhumb-distance/test/in/fiji-539-lng.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-539.5, -16.5] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-541.5, -18.5] } } ] } ================================================ FILE: packages/turf-rhumb-distance/test/in/points-fiji.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-179.5, -16.5] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [178.5, -16.5] } } ] } ================================================ FILE: packages/turf-rhumb-distance/test/in/points1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.343, 39.984] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.534, 39.123] } } ] } ================================================ FILE: packages/turf-rhumb-distance/test/in/points2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-119.17968749999999, 35.60371874069731] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-67.5, 46.92025531537451] } } ] } ================================================ FILE: packages/turf-rhumb-distance/test/out/fiji-539-lng.json ================================================ { "miles": 190.951278, "nauticalmiles": 165.932124, "kilometers": 307.306293, "greatCircleDistance": 307.304881, "radians": 0.048235, "degrees": 2.763668 } ================================================ FILE: packages/turf-rhumb-distance/test/out/points-fiji.json ================================================ { "miles": 132.496268, "nauticalmiles": 115.136109, "kilometers": 213.232075, "greatCircleDistance": 213.231201, "radians": 0.033469, "degrees": 1.917639 } ================================================ FILE: packages/turf-rhumb-distance/test/out/points1.json ================================================ { "miles": 60.353311, "nauticalmiles": 52.445594, "kilometers": 97.129239, "greatCircleDistance": 97.129221, "radians": 0.015246, "degrees": 0.873503 } ================================================ FILE: packages/turf-rhumb-distance/test/out/points2.json ================================================ { "miles": 2785.013176, "nauticalmiles": 2420.110283, "kilometers": 4482.044244, "greatCircleDistance": 4412.81774, "radians": 0.703506, "degrees": 40.307937 } ================================================ FILE: packages/turf-rhumb-distance/test.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { distance } from "@turf/distance"; import { point, round } from "@turf/helpers"; import { rhumbDistance } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("rhumb-distance", (t) => { fixtures.forEach((fixture) => { const name = fixture.name; const geojson = fixture.geojson; const pt1 = geojson.features[0]; const pt2 = geojson.features[1]; const distances = { miles: round(rhumbDistance(pt1, pt2, { units: "miles" }), 6), nauticalmiles: round( rhumbDistance(pt1, pt2, { units: "nauticalmiles" }), 6 ), kilometers: round(rhumbDistance(pt1, pt2, { units: "kilometers" }), 6), greatCircleDistance: round( distance(pt1, pt2, { units: "kilometers" }), 6 ), radians: round(rhumbDistance(pt1, pt2, { units: "radians" }), 6), degrees: round(rhumbDistance(pt1, pt2, { units: "degrees" }), 6), }; if (process.env.REGEN) writeJsonFileSync(directories.out + name + ".json", distances); t.deepEqual( distances, loadJsonFileSync(directories.out + name + ".json"), name ); }); // Now fails due to approximation error // TODO: to be added once earth radius is updated to 6371km // t.ok(distances.kilometers > distances.greatCircleDistance, name + ' distance comparison'); t.throws( () => rhumbDistance(point([0, 0]), point([1, 1]), { units: "foo" }), "unknown option given to units" ); t.throws(() => rhumbDistance(null, point([1, 1])), "null point"); t.throws(() => rhumbDistance(point([1, 1]), "point"), "invalid point"); t.end(); }); ================================================ FILE: packages/turf-rhumb-distance/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-sample/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-sample/README.md ================================================ # @turf/sample ## sample Takes a [FeatureCollection][1] and returns a FeatureCollection with given number of [features][2] at random. ### Parameters * `fc` **[FeatureCollection][1]\** * `num` **[number][3]** number of features to select * `featurecollection` **[FeatureCollection][1]** set of input features ### Examples ```javascript var points = turf.randomPoint(100, {bbox: [-80, 30, -60, 60]}); var sample = turf.sample(points, 5); //addToMap var addToMap = [points, sample] turf.featureEach(sample, function (currentFeature) { currentFeature.properties['marker-size'] = 'large'; currentFeature.properties['marker-color'] = '#000'; }); ``` Returns **[FeatureCollection][1]** a FeatureCollection with `n` features [1]: https://tools.ietf.org/html/rfc7946#section-3.3 [2]: https://tools.ietf.org/html/rfc7946#section-3.2 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/sample ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-sample/bench.ts ================================================ import Benchmark from "benchmark"; import { point, featureCollection } from "@turf/helpers"; import { sample } from "./index.js"; var points = featureCollection([ point(1, 2, { team: "Red Sox" }), point(2, 1, { team: "Yankees" }), point(3, 1, { team: "Nationals" }), point(2, 2, { team: "Yankees" }), point(2, 3, { team: "Red Sox" }), point(4, 2, { team: "Yankees" }), ]); new Benchmark.Suite("turf-sample") .add("turf-sample", function () { sample(points, 4); }) .on("cycle", function (event) { console.log(String(event.target)); }) .run(); ================================================ FILE: packages/turf-sample/index.ts ================================================ // http://stackoverflow.com/questions/11935175/sampling-a-random-subset-from-an-array import { Feature, FeatureCollection, Geometry, GeometryObject } from "geojson"; import { featureCollection } from "@turf/helpers"; /** * Takes a {@link FeatureCollection} and returns a FeatureCollection with given number of {@link Feature|features} at random. * * @function * @param {FeatureCollection} featurecollection set of input features * @param {number} num number of features to select * @returns {FeatureCollection} a FeatureCollection with `n` features * @example * var points = turf.randomPoint(100, {bbox: [-80, 30, -60, 60]}); * * var sample = turf.sample(points, 5); * * //addToMap * var addToMap = [points, sample] * turf.featureEach(sample, function (currentFeature) { * currentFeature.properties['marker-size'] = 'large'; * currentFeature.properties['marker-color'] = '#000'; * }); */ function sample( fc: FeatureCollection, num: number ): FeatureCollection { if (!fc) throw new Error("fc is required"); if (num === null || num === undefined) throw new Error("num is required"); if (typeof num !== "number") throw new Error("num must be a number"); var outFC = featureCollection(getRandomSubarray(fc.features, num)); return outFC; } function getRandomSubarray( arr: Feature[], size: number ) { var shuffled = arr.slice(0), i = arr.length, min = i - size, temp, index; while (i-- > min) { index = Math.floor((i + 1) * Math.random()); temp = shuffled[index]; shuffled[index] = shuffled[i]; shuffled[i] = temp; } return shuffled.slice(min); } export { sample }; export default sample; ================================================ FILE: packages/turf-sample/package.json ================================================ { "name": "@turf/sample", "version": "7.3.4", "description": "Takes a FeatureCollection and returns a FeatureCollection with given number of features at random.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "geojson", "stats", "sample", "turf" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-sample/test.ts ================================================ import test from "tape"; import { point } from "@turf/helpers"; import { featureCollection } from "@turf/helpers"; import { sample } from "./index.js"; test("remove", function (t) { var points = featureCollection([ point([1, 2], { team: "Red Sox" }), point([2, 1], { team: "Yankees" }), point([3, 1], { team: "Nationals" }), point([2, 2], { team: "Yankees" }), point([2, 3], { team: "Red Sox" }), point([4, 2], { team: "Yankees" }), ]); const results = sample(points, 4); t.equal(results.features.length, 4, "should sample 4 features"); t.end(); }); ================================================ FILE: packages/turf-sample/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-sector/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-sector/README.md ================================================ # @turf/sector ## sector Creates a circular sector of a circle of given radius and center [Point][1], between (clockwise) bearing1 and bearing2; 0 bearing is North of center point, positive clockwise. ### Parameters * `center` **[Coord][2]** center point * `radius` **[number][3]** radius of the circle * `bearing1` **[number][3]** angle, in decimal degrees, of the first radius of the sector * `bearing2` **[number][3]** angle, in decimal degrees, of the second radius of the sector * `options` **[Object][4]** Optional parameters (optional, default `{}`) * `options.units` **Units** Supports all valid Turf [Units][5] (optional, default `'kilometers'`) * `options.steps` **[number][3]** number of steps (optional, default `64`) * `options.properties` **Properties** Translate properties to Feature Polygon (optional, default `{}`) ### Examples ```javascript var center = turf.point([-75, 40]); var radius = 5; var bearing1 = 25; var bearing2 = 45; var sector = turf.sector(center, radius, bearing1, bearing2); //addToMap var addToMap = [center, sector]; ``` Returns **[Feature][6]<[Polygon][7]>** sector polygon [1]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.1 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [5]: https://turfjs.org/docs/api/types/Units [6]: https://tools.ietf.org/html/rfc7946#section-3.2 [7]: https://tools.ietf.org/html/rfc7946#section-3.1.6 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/sector ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-sector/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { sector } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); /** * Benchmark Results * * sector-full-360 x 29,179 ops/sec ±2.42% (76 runs sampled) * sector-greater-360 x 296,103 ops/sec ±10.92% (65 runs sampled) * sector1 x 189,709 ops/sec ±3.46% (75 runs sampled) * sector2 x 72,365 ops/sec ±2.11% (77 runs sampled) * sector3 x 38,093 ops/sec ±2.97% (77 runs sampled) * sector4 x 210,468 ops/sec ±2.58% (78 runs sampled) * sector5 x 26,438 ops/sec ±9.98% (70 runs sampled) * sector6 x 29,032 ops/sec ±2.36% (70 runs sampled) */ const suite = new Benchmark.Suite("turf-sector"); for (const { name, geojson } of fixtures) { const { radius, bearing1, bearing2 } = geojson.properties; suite.add(name, () => sector(geojson, radius, bearing1, bearing2)); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-sector/index.ts ================================================ import { Feature, Polygon, GeoJsonProperties } from "geojson"; import { circle } from "@turf/circle"; import { lineArc } from "@turf/line-arc"; import { coordEach } from "@turf/meta"; import { Units, Coord, isObject, polygon } from "@turf/helpers"; import { getCoords } from "@turf/invariant"; /** * Creates a circular sector of a circle of given radius and center {@link Point}, * between (clockwise) bearing1 and bearing2; 0 bearing is North of center point, positive clockwise. * * @function * @param {Coord} center center point * @param {number} radius radius of the circle * @param {number} bearing1 angle, in decimal degrees, of the first radius of the sector * @param {number} bearing2 angle, in decimal degrees, of the second radius of the sector * @param {Object} [options={}] Optional parameters * @param {Units} [options.units='kilometers'] Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @param {number} [options.steps=64] number of steps * @param {Properties} [options.properties={}] Translate properties to Feature Polygon * @returns {Feature} sector polygon * @example * var center = turf.point([-75, 40]); * var radius = 5; * var bearing1 = 25; * var bearing2 = 45; * * var sector = turf.sector(center, radius, bearing1, bearing2); * * //addToMap * var addToMap = [center, sector]; */ function sector( center: Coord, radius: number, bearing1: number, bearing2: number, options: { steps?: number; units?: Units; properties?: GeoJsonProperties; } = {} ): Feature { // Optional parameters options = options || {}; if (!isObject(options)) throw new Error("options is invalid"); // Most options only for passing through to circle() const properties = options.properties; // validation if (!center) throw new Error("center is required"); if (bearing1 === undefined || bearing1 === null) throw new Error("bearing1 is required"); if (bearing2 === undefined || bearing2 === null) throw new Error("bearing2 is required"); if (!radius) throw new Error("radius is required"); if (typeof options !== "object") throw new Error("options must be an object"); if (convertAngleTo360(bearing1) === convertAngleTo360(bearing2)) { return circle(center, radius, options); } const coords = getCoords(center); const arc = lineArc(center, radius, bearing1, bearing2, options); const sliceCoords = [[coords]]; coordEach(arc, function (currentCoords) { sliceCoords[0].push(currentCoords); }); sliceCoords[0].push(coords); return polygon(sliceCoords, properties); } /** * Takes any angle in degrees * and returns a valid angle between 0-360 degrees * * @private * @param {number} alpha angle between -180-180 degrees * @returns {number} angle between 0-360 degrees */ function convertAngleTo360(alpha: number) { let beta = alpha % 360; if (beta < 0) { beta += 360; } return beta; } export { sector }; export default sector; ================================================ FILE: packages/turf-sector/package.json ================================================ { "name": "@turf/sector", "version": "7.3.4", "description": "Creates a circular sector of a circle.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "gif" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/circle": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/line-arc": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-sector/test/in/pacman.geojson ================================================ { "type": "Feature", "properties": { "radius": 165, "bearing1": 125, "bearing2": 55 }, "geometry": { "type": "Point", "coordinates": [176.868896484375, -17.821915515968843] } } ================================================ FILE: packages/turf-sector/test/in/sector-full-360.geojson ================================================ { "type": "Feature", "properties": { "radius": 5, "bearing1": 180, "bearing2": -180 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } } ================================================ FILE: packages/turf-sector/test/in/sector-greater-360.geojson ================================================ { "type": "Feature", "properties": { "radius": 5, "bearing1": 0, "bearing2": 380 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } } ================================================ FILE: packages/turf-sector/test/in/sector1.geojson ================================================ { "type": "Feature", "properties": { "radius": 5, "bearing1": 20, "bearing2": 60 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } } ================================================ FILE: packages/turf-sector/test/in/sector2.geojson ================================================ { "type": "Feature", "properties": { "radius": 5, "bearing1": 90, "bearing2": -135 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } } ================================================ FILE: packages/turf-sector/test/in/sector3.geojson ================================================ { "type": "Feature", "properties": { "radius": 5, "bearing1": 45, "bearing2": -45 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } } ================================================ FILE: packages/turf-sector/test/in/sector4.geojson ================================================ { "type": "Feature", "properties": { "radius": 5, "bearing1": -50, "bearing2": -15 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } } ================================================ FILE: packages/turf-sector/test/in/sector5.geojson ================================================ { "type": "Feature", "properties": { "radius": 5, "bearing1": -15, "bearing2": -50 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } } ================================================ FILE: packages/turf-sector/test/in/sector6.geojson ================================================ { "type": "Feature", "properties": { "radius": 5, "bearing1": 60, "bearing2": 20 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } } ================================================ FILE: packages/turf-sector/test/out/pacman.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "radius": 165, "bearing1": 125, "bearing2": 55 }, "geometry": { "type": "Point", "coordinates": [176.868896484375, -17.821915515968843] } }, { "type": "Feature", "properties": { "stroke": "#000000", "stroke-width": 10, "stroke-opacity": 1, "fill": "#FF0", "fill-opacity": 0.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [176.868896, -17.821916], [178.151889, -18.668804], [178.077565, -18.762645], [177.995563, -18.850599], [177.906393, -18.932108], [177.810611, -19.006651], [177.708821, -19.073754], [177.601663, -19.132988], [177.489819, -19.183974], [177.373999, -19.226385], [177.254942, -19.25995], [177.13341, -19.284453], [177.010181, -19.299738], [176.886045, -19.305705], [176.7618, -19.302317], [176.638241, -19.289596], [176.516163, -19.267622], [176.396346, -19.236538], [176.279558, -19.196542], [176.166545, -19.147892], [176.058025, -19.090898], [175.954688, -19.025925], [175.857187, -18.953388], [175.766135, -18.873751], [175.682103, -18.787521], [175.605613, -18.695246], [175.537137, -18.597512], [175.477096, -18.494939], [175.425853, -18.388176], [175.383715, -18.277896], [175.350929, -18.164796], [175.327683, -18.049587], [175.314104, -17.932991], [175.310257, -17.815739], [175.316147, -17.698564], [175.331719, -17.582197], [175.356857, -17.467363], [175.391387, -17.354776], [175.435078, -17.245134], [175.487644, -17.139116], [175.548744, -17.037379], [175.617989, -16.940549], [175.694941, -16.849225], [175.779113, -16.763968], [175.869982, -16.685303], [175.96698, -16.613713], [176.069507, -16.549637], [176.17693, -16.493468], [176.288587, -16.445549], [176.403793, -16.406175], [176.521842, -16.375586], [176.64201, -16.353969], [176.763565, -16.341457], [176.885762, -16.338124], [177.007856, -16.343994], [177.129102, -16.359028], [177.248759, -16.383135], [177.366095, -16.416169], [177.480392, -16.457926], [177.590948, -16.508152], [177.697086, -16.566539], [177.79815, -16.632729], [177.893515, -16.706317], [177.982592, -16.786851], [178.064823, -16.873835], [178.139695, -16.966736], [176.868896, -17.821916] ] ] } } ] } ================================================ FILE: packages/turf-sector/test/out/sector-full-360.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "radius": 5, "bearing1": 180, "bearing2": -180 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } }, { "type": "Feature", "properties": { "stroke": "#000000", "stroke-width": 10, "stroke-opacity": 1, "fill": "#FF0", "fill-opacity": 0.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [11.343, 44.539966], [11.336816, 44.539749], [11.330693, 44.539101], [11.324687, 44.538028], [11.318859, 44.536541], [11.313264, 44.534653], [11.307955, 44.532383], [11.302985, 44.529752], [11.298401, 44.526787], [11.294247, 44.523516], [11.290563, 44.51997], [11.287385, 44.516183], [11.284743, 44.512193], [11.282663, 44.508037], [11.281164, 44.503756], [11.28026, 44.49939], [11.279962, 44.494983], [11.28027, 44.490575], [11.281182, 44.486211], [11.28269, 44.481931], [11.284777, 44.477777], [11.287425, 44.47379], [11.290608, 44.470006], [11.294294, 44.466464], [11.298449, 44.463196], [11.303033, 44.460234], [11.308, 44.457607], [11.313304, 44.45534], [11.318893, 44.453454], [11.324714, 44.451969], [11.330711, 44.450897], [11.336826, 44.45025], [11.343, 44.450034], [11.349174, 44.45025], [11.355289, 44.450897], [11.361286, 44.451969], [11.367107, 44.453454], [11.372696, 44.45534], [11.378, 44.457607], [11.382967, 44.460234], [11.387551, 44.463196], [11.391706, 44.466464], [11.395392, 44.470006], [11.398575, 44.47379], [11.401223, 44.477777], [11.40331, 44.481931], [11.404818, 44.486211], [11.40573, 44.490575], [11.406038, 44.494983], [11.40574, 44.49939], [11.404836, 44.503756], [11.403337, 44.508037], [11.401257, 44.512193], [11.398615, 44.516183], [11.395437, 44.51997], [11.391753, 44.523516], [11.387599, 44.526787], [11.383015, 44.529752], [11.378045, 44.532383], [11.372736, 44.534653], [11.367141, 44.536541], [11.361313, 44.538028], [11.355307, 44.539101], [11.349184, 44.539749], [11.343, 44.539966] ] ] } } ] } ================================================ FILE: packages/turf-sector/test/out/sector-greater-360.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "radius": 5, "bearing1": 0, "bearing2": 380 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } }, { "type": "Feature", "properties": { "stroke": "#000000", "stroke-width": 10, "stroke-opacity": 1, "fill": "#FF0", "fill-opacity": 0.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [11.343, 44.495], [11.343, 44.539966], [11.343344, 44.539965], [11.343688, 44.539963], [11.344032, 44.53996], [11.344376, 44.539955], [11.34472, 44.539949], [11.345064, 44.539942], [11.345408, 44.539933], [11.345752, 44.539923], [11.346096, 44.539912], [11.346439, 44.539899], [11.346783, 44.539885], [11.347126, 44.53987], [11.347469, 44.539853], [11.347813, 44.539835], [11.348156, 44.539816], [11.348498, 44.539795], [11.348841, 44.539773], [11.349184, 44.539749], [11.349526, 44.539725], [11.349868, 44.539699], [11.35021, 44.539671], [11.350552, 44.539642], [11.350893, 44.539612], [11.351234, 44.539581], [11.351575, 44.539548], [11.351916, 44.539514], [11.352257, 44.539479], [11.352597, 44.539442], [11.352937, 44.539404], [11.353276, 44.539365], [11.353616, 44.539324], [11.353955, 44.539282], [11.354294, 44.539239], [11.354632, 44.539194], [11.35497, 44.539149], [11.355307, 44.539101], [11.355645, 44.539053], [11.355982, 44.539003], [11.356318, 44.538952], [11.356654, 44.538899], [11.35699, 44.538846], [11.357325, 44.53879], [11.35766, 44.538734], [11.357995, 44.538676], [11.358329, 44.538617], [11.358662, 44.538557], [11.358995, 44.538496], [11.359328, 44.538433], [11.35966, 44.538369], [11.359991, 44.538303], [11.360322, 44.538236], [11.360653, 44.538168], [11.360983, 44.538099], [11.361313, 44.538028], [11.361642, 44.537956], [11.36197, 44.537883], [11.362298, 44.537809], [11.362625, 44.537733], [11.362952, 44.537656], [11.363278, 44.537578], [11.363603, 44.537498], [11.363928, 44.537418], [11.364252, 44.537336], [11.364576, 44.537252], [11.343, 44.495] ] ] } } ] } ================================================ FILE: packages/turf-sector/test/out/sector1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "radius": 5, "bearing1": 20, "bearing2": 60 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } }, { "type": "Feature", "properties": { "stroke": "#000000", "stroke-width": 10, "stroke-opacity": 1, "fill": "#FF0", "fill-opacity": 0.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [11.343, 44.495], [11.364576, 44.537252], [11.365221, 44.537082], [11.365864, 44.536906], [11.366504, 44.536726], [11.367141, 44.536541], [11.367775, 44.53635], [11.368406, 44.536155], [11.369035, 44.535955], [11.36966, 44.53575], [11.370282, 44.53554], [11.3709, 44.535325], [11.371516, 44.535106], [11.372128, 44.534882], [11.372736, 44.534653], [11.373341, 44.534419], [11.373943, 44.53418], [11.37454, 44.533937], [11.375134, 44.53369], [11.375724, 44.533437], [11.37631, 44.53318], [11.376893, 44.532919], [11.377471, 44.532653], [11.378045, 44.532383], [11.378615, 44.532108], [11.37918, 44.531828], [11.379741, 44.531545], [11.380298, 44.531257], [11.380851, 44.530964], [11.381399, 44.530668], [11.381942, 44.530367], [11.382481, 44.530062], [11.383015, 44.529752], [11.383544, 44.529439], [11.384069, 44.529121], [11.384588, 44.5288], [11.385103, 44.528474], [11.385612, 44.528145], [11.386117, 44.527811], [11.386616, 44.527474], [11.38711, 44.527132], [11.387599, 44.526787], [11.388083, 44.526438], [11.388561, 44.526086], [11.389034, 44.525729], [11.389501, 44.525369], [11.389963, 44.525006], [11.390419, 44.524638], [11.390869, 44.524268], [11.391314, 44.523893], [11.391753, 44.523516], [11.392186, 44.523135], [11.392614, 44.52275], [11.393035, 44.522363], [11.393451, 44.521972], [11.39386, 44.521578], [11.394264, 44.52118], [11.394661, 44.52078], [11.395052, 44.520376], [11.395437, 44.51997], [11.395816, 44.51956], [11.396188, 44.519148], [11.396554, 44.518733], [11.396914, 44.518314], [11.397267, 44.517894], [11.397614, 44.51747], [11.343, 44.495] ] ] } } ] } ================================================ FILE: packages/turf-sector/test/out/sector2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "radius": 5, "bearing1": 90, "bearing2": -135 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } }, { "type": "Feature", "properties": { "stroke": "#000000", "stroke-width": 10, "stroke-opacity": 1, "fill": "#FF0", "fill-opacity": 0.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [11.343, 44.495], [11.406038, 44.494983], [11.405994, 44.493328], [11.405864, 44.491675], [11.405649, 44.490027], [11.405349, 44.488385], [11.404965, 44.486753], [11.404496, 44.485131], [11.403945, 44.483524], [11.40331, 44.481931], [11.402595, 44.480357], [11.401798, 44.478802], [11.400922, 44.477269], [11.399967, 44.47576], [11.398936, 44.474278], [11.397828, 44.472823], [11.396646, 44.471399], [11.395392, 44.470006], [11.394067, 44.468648], [11.392673, 44.467325], [11.391211, 44.466039], [11.389684, 44.464793], [11.388094, 44.463588], [11.386443, 44.462425], [11.384734, 44.461307], [11.382967, 44.460234], [11.381147, 44.459208], [11.379275, 44.458231], [11.377354, 44.457303], [11.375387, 44.456427], [11.373376, 44.455603], [11.371323, 44.454832], [11.369233, 44.454115], [11.367107, 44.453454], [11.364948, 44.452849], [11.36276, 44.452302], [11.360544, 44.451812], [11.358306, 44.451381], [11.356046, 44.451008], [11.353769, 44.450695], [11.351477, 44.450443], [11.349174, 44.45025], [11.346863, 44.450119], [11.344546, 44.450048], [11.342227, 44.450037], [11.339909, 44.450088], [11.337596, 44.4502], [11.335289, 44.450372], [11.332993, 44.450605], [11.330711, 44.450897], [11.328445, 44.45125], [11.326199, 44.451662], [11.323976, 44.452132], [11.321778, 44.452661], [11.31961, 44.453246], [11.317472, 44.453889], [11.315369, 44.454587], [11.313304, 44.45534], [11.311279, 44.456146], [11.309297, 44.457005], [11.30736, 44.457916], [11.305471, 44.458877], [11.303634, 44.459887], [11.301849, 44.460944], [11.30012, 44.462047], [11.298449, 44.463196], [11.343, 44.495] ] ] } } ] } ================================================ FILE: packages/turf-sector/test/out/sector3.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "radius": 5, "bearing1": 45, "bearing2": -45 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } }, { "type": "Feature", "properties": { "stroke": "#000000", "stroke-width": 10, "stroke-opacity": 1, "fill": "#FF0", "fill-opacity": 0.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [11.343, 44.495], [11.387599, 44.526787], [11.390757, 44.524361], [11.393656, 44.521775], [11.39628, 44.519044], [11.398615, 44.516183], [11.400648, 44.513208], [11.402369, 44.510133], [11.403767, 44.506977], [11.404836, 44.503756], [11.40557, 44.500487], [11.405965, 44.497189], [11.406018, 44.493879], [11.40573, 44.490575], [11.405102, 44.487296], [11.404138, 44.484058], [11.402842, 44.480879], [11.401223, 44.477777], [11.399288, 44.474769], [11.397048, 44.47187], [11.394516, 44.469097], [11.391706, 44.466464], [11.388631, 44.463985], [11.38531, 44.461675], [11.38176, 44.459545], [11.378, 44.457607], [11.374051, 44.455871], [11.369934, 44.454348], [11.365671, 44.453045], [11.361286, 44.451969], [11.356801, 44.451126], [11.352243, 44.45052], [11.347634, 44.450156], [11.343, 44.450034], [11.338366, 44.450156], [11.333757, 44.45052], [11.329199, 44.451126], [11.324714, 44.451969], [11.320329, 44.453045], [11.316066, 44.454348], [11.311949, 44.455871], [11.308, 44.457607], [11.30424, 44.459545], [11.30069, 44.461675], [11.297369, 44.463985], [11.294294, 44.466464], [11.291484, 44.469097], [11.288952, 44.47187], [11.286712, 44.474769], [11.284777, 44.477777], [11.283158, 44.480879], [11.281862, 44.484058], [11.280898, 44.487296], [11.28027, 44.490575], [11.279982, 44.493879], [11.280035, 44.497189], [11.28043, 44.500487], [11.281164, 44.503756], [11.282233, 44.506977], [11.283631, 44.510133], [11.285352, 44.513208], [11.287385, 44.516183], [11.28972, 44.519044], [11.292344, 44.521775], [11.295243, 44.524361], [11.298401, 44.526787], [11.343, 44.495] ] ] } } ] } ================================================ FILE: packages/turf-sector/test/out/sector4.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "radius": 5, "bearing1": -50, "bearing2": -15 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } }, { "type": "Feature", "properties": { "stroke": "#000000", "stroke-width": 10, "stroke-opacity": 1, "fill": "#FF0", "fill-opacity": 0.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [11.343, 44.495], [11.294686, 44.523893], [11.295075, 44.524221], [11.295468, 44.524546], [11.295866, 44.524868], [11.296267, 44.525188], [11.296674, 44.525505], [11.297084, 44.525819], [11.297499, 44.52613], [11.297917, 44.526438], [11.29834, 44.526744], [11.298767, 44.527046], [11.299198, 44.527346], [11.299633, 44.527643], [11.300072, 44.527937], [11.300515, 44.528227], [11.300961, 44.528515], [11.301412, 44.5288], [11.301866, 44.529081], [11.302324, 44.52936], [11.302786, 44.529635], [11.303251, 44.529907], [11.303721, 44.530176], [11.304193, 44.530442], [11.304669, 44.530705], [11.305149, 44.530964], [11.305632, 44.53122], [11.306119, 44.531473], [11.306609, 44.531722], [11.307102, 44.531969], [11.307599, 44.532211], [11.308098, 44.532451], [11.308601, 44.532686], [11.309107, 44.532919], [11.309617, 44.533148], [11.310129, 44.533374], [11.310644, 44.533596], [11.311162, 44.533814], [11.311683, 44.534029], [11.312207, 44.534241], [11.312734, 44.534448], [11.313264, 44.534653], [11.313796, 44.534853], [11.314331, 44.53505], [11.314868, 44.535244], [11.315408, 44.535433], [11.315951, 44.535619], [11.316496, 44.535802], [11.317044, 44.53598], [11.317594, 44.536155], [11.318146, 44.536326], [11.3187, 44.536494], [11.319257, 44.536657], [11.319816, 44.536817], [11.320377, 44.536973], [11.32094, 44.537125], [11.321505, 44.537273], [11.322072, 44.537418], [11.322641, 44.537558], [11.323212, 44.537695], [11.323784, 44.537828], [11.324358, 44.537956], [11.324934, 44.538081], [11.325512, 44.538202], [11.326091, 44.53832], [11.326672, 44.538433], [11.343, 44.495] ] ] } } ] } ================================================ FILE: packages/turf-sector/test/out/sector5.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "radius": 5, "bearing1": -15, "bearing2": -50 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } }, { "type": "Feature", "properties": { "stroke": "#000000", "stroke-width": 10, "stroke-opacity": 1, "fill": "#FF0", "fill-opacity": 0.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [11.343, 44.495], [11.326672, 44.538433], [11.33213, 44.539293], [11.337673, 44.539805], [11.343258, 44.539966], [11.348841, 44.539773], [11.354378, 44.539228], [11.359826, 44.538336], [11.365141, 44.537103], [11.370282, 44.53554], [11.375208, 44.533658], [11.379881, 44.531473], [11.384264, 44.529001], [11.388323, 44.526262], [11.392025, 44.523278], [11.395341, 44.520072], [11.398247, 44.516669], [11.400718, 44.513095], [11.402735, 44.50938], [11.404284, 44.505552], [11.405351, 44.501642], [11.405928, 44.497679], [11.406011, 44.493695], [11.4056, 44.489722], [11.404697, 44.48579], [11.40331, 44.481931], [11.401451, 44.478175], [11.399132, 44.47455], [11.396374, 44.471086], [11.393197, 44.46781], [11.389626, 44.464748], [11.385691, 44.461923], [11.38142, 44.459357], [11.376848, 44.457071], [11.372012, 44.455083], [11.366948, 44.453408], [11.361696, 44.452059], [11.356298, 44.451047], [11.350796, 44.450379], [11.345233, 44.450062], [11.339652, 44.450097], [11.334097, 44.450485], [11.328613, 44.451222], [11.32324, 44.452302], [11.318023, 44.453717], [11.313001, 44.455456], [11.308215, 44.457505], [11.303701, 44.459848], [11.299495, 44.462468], [11.295629, 44.465342], [11.292135, 44.468449], [11.28904, 44.471765], [11.286368, 44.475263], [11.28414, 44.478916], [11.282374, 44.482696], [11.281083, 44.486572], [11.280278, 44.490514], [11.279966, 44.494492], [11.280148, 44.498474], [11.280824, 44.502429], [11.281988, 44.506325], [11.283631, 44.510133], [11.285741, 44.513822], [11.2883, 44.517364], [11.29129, 44.52073], [11.294686, 44.523893], [11.343, 44.495] ] ] } } ] } ================================================ FILE: packages/turf-sector/test/out/sector6.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "radius": 5, "bearing1": 60, "bearing2": 20 }, "geometry": { "type": "Point", "coordinates": [11.343, 44.495] } }, { "type": "Feature", "properties": { "stroke": "#000000", "stroke-width": 10, "stroke-opacity": 1, "fill": "#FF0", "fill-opacity": 0.8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [11.343, 44.495], [11.397614, 44.51747], [11.400151, 44.513989], [11.402252, 44.510364], [11.403903, 44.506622], [11.405089, 44.502791], [11.405803, 44.498902], [11.406038, 44.494983], [11.405794, 44.491064], [11.405072, 44.487175], [11.403878, 44.483346], [11.402221, 44.479605], [11.400114, 44.475982], [11.397572, 44.472504], [11.394615, 44.469197], [11.391266, 44.466086], [11.387551, 44.463196], [11.383496, 44.460547], [11.379135, 44.45816], [11.374498, 44.456054], [11.369623, 44.454244], [11.364545, 44.452744], [11.359303, 44.451565], [11.353938, 44.450717], [11.34849, 44.450205], [11.343, 44.450034], [11.33751, 44.450205], [11.332062, 44.450717], [11.326697, 44.451565], [11.321455, 44.452744], [11.316377, 44.454244], [11.311502, 44.456054], [11.306865, 44.45816], [11.302504, 44.460547], [11.298449, 44.463196], [11.294734, 44.466086], [11.291385, 44.469197], [11.288428, 44.472504], [11.285886, 44.475982], [11.283779, 44.479605], [11.282122, 44.483346], [11.280928, 44.487175], [11.280206, 44.491064], [11.279962, 44.494983], [11.280197, 44.498902], [11.280911, 44.502791], [11.282097, 44.506622], [11.283748, 44.510364], [11.285849, 44.513989], [11.288386, 44.51747], [11.291339, 44.52078], [11.294686, 44.523893], [11.298401, 44.526787], [11.302456, 44.529439], [11.30682, 44.531828], [11.31146, 44.533937], [11.31634, 44.53575], [11.321424, 44.537252], [11.326672, 44.538433], [11.332045, 44.539282], [11.337502, 44.539795], [11.343, 44.539966], [11.348498, 44.539795], [11.353955, 44.539282], [11.359328, 44.538433], [11.364576, 44.537252], [11.343, 44.495] ] ] } } ] } ================================================ FILE: packages/turf-sector/test.ts ================================================ import test from "tape"; import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { truncate } from "@turf/truncate"; import { featureCollection } from "@turf/helpers"; import { sector } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("turf-sector", (t) => { for (const { filename, name, geojson } of fixtures) { const { radius, bearing1, bearing2 } = geojson.properties; const sectored = colorize( truncate(sector(geojson, radius, bearing1, bearing2)) ); const results = featureCollection([geojson, sectored]); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEquals(results, loadJsonFileSync(directories.out + filename), name); } t.end(); }); function colorize(feature, color = "#FF0", width = 10) { feature.properties = { stroke: "#000000", "stroke-width": width, "stroke-opacity": 1, fill: color, "fill-opacity": 0.8, }; return feature; } ================================================ FILE: packages/turf-sector/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-sector/types.ts ================================================ import { point } from "@turf/helpers"; import { sector } from "./index.js"; const center = point([-75.343, 39.984]); const units = "kilometers"; const bearing1 = 10; const bearing2 = -30; const radius = 5; const steps = 10; sector(center, radius, bearing1, bearing2); sector(center, radius, bearing1, bearing2, { steps }); sector(center, radius, bearing1, bearing2, { steps, units }); ================================================ FILE: packages/turf-shortest-path/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-shortest-path/README.md ================================================ # @turf/shortest-path ## shortestPath Returns the shortest [path][1] from [start][2] to [end][2] without colliding with any [Feature][3] in obstacles [FeatureCollection][4]<[Polygon][5]> ### Parameters * `start` **[Coord][6]** point * `end` **[Coord][6]** point * `options` **[Object][7]** optional parameters (optional, default `{}`) * `options.obstacles` **([Polygon][5] | [Feature][3]<[Polygon][5]> | [FeatureCollection][4]<[Polygon][5]>)?** areas which path cannot travel * `options.units` **Units** unit in which resolution & minimum distance will be expressed in; Supports all valid Turf [Units][8]. (optional, default `'kilometers'`) * `options.resolution` **[number][9]** distance between matrix points on which the path will be calculated (optional, default `100`) ### Examples ```javascript var start = [-5, -6]; var end = [9, -6]; var options = { obstacles: turf.polygon([[[0, -7], [5, -7], [5, -3], [0, -3], [0, -7]]]).geometry }; var path = turf.shortestPath(start, end, options); //addToMap var addToMap = [start, end, options.obstacles, path]; ``` Returns **[Feature][3]<[LineString][1]>** shortest path between start and end [1]: https://tools.ietf.org/html/rfc7946#section-3.1.4 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [3]: https://tools.ietf.org/html/rfc7946#section-3.2 [4]: https://tools.ietf.org/html/rfc7946#section-3.3 [5]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [6]: https://tools.ietf.org/html/rfc7946#section-3.1.1 [7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [8]: https://turfjs.org/docs/api/types/Units [9]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/shortest-path ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-shortest-path/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { shortestPath } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { const geojson = loadJsonFileSync(directory + filename); return { name: path.parse(filename).name, start: geojson.features.shift(), end: geojson.features.shift(), options: Object.assign({}, geojson.properties, { obstacles: geojson }), }; }); /** * Single Process Benchmark * * simple: 57.895ms */ for (const { name, start, end, options } of fixtures) { console.time(name); shortestPath(start, end, options); console.timeEnd(name); } /** * Benchmark Results * * simple x 129 ops/sec ±4.53% (65 runs sampled) */ const suite = new Benchmark.Suite("turf-shortest-path"); for (const { name, start, end, options } of fixtures) { suite.add(name, () => shortestPath(start, end, options)); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-shortest-path/index.ts ================================================ import { Polygon, Feature, FeatureCollection, LineString, Geometry, Point, } from "geojson"; import { bbox } from "@turf/bbox"; import { booleanPointInPolygon } from "@turf/boolean-point-in-polygon"; import { distance } from "@turf/distance"; import { transformScale as scale } from "@turf/transform-scale"; import { cleanCoords } from "@turf/clean-coords"; import { bboxPolygon } from "@turf/bbox-polygon"; import { getCoord, getGeom } from "@turf/invariant"; import { Coord, Units, point, isNumber, lineString, isObject, featureCollection, feature, } from "@turf/helpers"; import { Graph, GridNode, astar } from "./lib/javascript-astar.js"; /** * Returns the shortest {@link LineString|path} from {@link Point|start} to {@link Point|end} without colliding with * any {@link Feature} in obstacles {@link FeatureCollection}<{@link Polygon}> * * @function * @param {Coord} start point * @param {Coord} end point * @param {Object} [options={}] optional parameters * @param {Polygon|Feature|FeatureCollection} [options.obstacles] areas which path cannot travel * @param {Units} [options.units='kilometers'] unit in which resolution & minimum distance will be expressed in; Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units}. * @param {number} [options.resolution=100] distance between matrix points on which the path will be calculated * @returns {Feature} shortest path between start and end * @example * var start = [-5, -6]; * var end = [9, -6]; * var options = { * obstacles: turf.polygon([[[0, -7], [5, -7], [5, -3], [0, -3], [0, -7]]]).geometry * }; * * var path = turf.shortestPath(start, end, options); * * //addToMap * var addToMap = [start, end, options.obstacles, path]; */ function shortestPath( start: Coord, end: Coord, options: { obstacles?: Polygon | Feature | FeatureCollection; units?: Units; resolution?: number; } = {} ): Feature { // Optional parameters options = options || {}; if (!isObject(options)) throw new Error("options is invalid"); let obstacles = options.obstacles || featureCollection([]); let resolution = options.resolution || 100; // validation if (!start) throw new Error("start is required"); if (!end) throw new Error("end is required"); if (resolution && (!isNumber(resolution) || resolution <= 0)) throw new Error("options.resolution must be a number, greater than 0"); // Normalize Inputs const startCoord = getCoord(start); const endCoord = getCoord(end); start = point(startCoord); end = point(endCoord); // Handle obstacles if (obstacles.type === "FeatureCollection") { if (obstacles.features.length === 0) { return lineString([startCoord, endCoord]); } } else if ( obstacles.type === "Feature" && obstacles.geometry.type === "Polygon" ) { obstacles = featureCollection([obstacles]); } else if (obstacles.type === "Polygon") { obstacles = featureCollection([feature(getGeom(obstacles))]); } else { throw new Error("invalid obstacles"); } // define path grid area const collection: FeatureCollection = obstacles; collection.features.push(start); collection.features.push(end); const box = bbox(scale(bboxPolygon(bbox(collection)), 1.15)); // extend 15% const [west, south, east, north] = box; collection.features.pop(); collection.features.pop(); const columnsWithFraction = distance([west, south], [east, south], options) / resolution; const cellWidth = (east - west) / columnsWithFraction; const rowsWithFraction = distance([west, south], [west, north], options) / resolution; const cellHeight = (north - south) / rowsWithFraction; // adjust origin of the grid const deltaX = ((columnsWithFraction % 1) * cellWidth) / 2; const deltaY = ((rowsWithFraction % 1) * cellHeight) / 2; // loop through points only once to speed up process // define matrix grid for A-star algorithm const pointMatrix: string[][] = []; const matrix: number[][] = []; let closestToStart: { x: number; y: number }; let closestToEnd: { x: number; y: number }; let minDistStart = Infinity; let minDistEnd = Infinity; let currentY = north - deltaY; let r = 0; while (currentY >= south) { // var currentY = south + deltaY; const matrixRow = []; const pointMatrixRow = []; let currentX = west + deltaX; let c = 0; while (currentX <= east) { const pt = point([currentX, currentY]); const isInsideObstacle = isInside(pt, obstacles); // feed obstacles matrix matrixRow.push(isInsideObstacle ? 0 : 1); // with javascript-astar // matrixRow.push(isInsideObstacle ? 1 : 0); // with astar-andrea // map point's coords pointMatrixRow.push(currentX + "|" + currentY); // set closest points const distStart = distance(pt, start); // if (distStart < minDistStart) { if (!isInsideObstacle && distStart < minDistStart) { minDistStart = distStart; closestToStart = { x: c, y: r }; } const distEnd = distance(pt, end); // if (distEnd < minDistEnd) { if (!isInsideObstacle && distEnd < minDistEnd) { minDistEnd = distEnd; closestToEnd = { x: c, y: r }; } currentX += cellWidth; c++; } matrix.push(matrixRow); pointMatrix.push(pointMatrixRow); currentY -= cellHeight; r++; } // find path on matrix grid // javascript-astar ---------------------- const graph = new Graph(matrix, { diagonal: true }); const startOnMatrix = graph.grid[closestToStart!.y][closestToStart!.x]; const endOnMatrix = graph.grid[closestToEnd!.y][closestToEnd!.x]; const result: GridNode[] = astar.search(graph, startOnMatrix, endOnMatrix); const path = [startCoord]; result.forEach(function (coord) { const coords = pointMatrix[coord.x][coord.y].split("|"); path.push([+coords[0], +coords[1]]); // make sure coords are numbers }); path.push(endCoord); // --------------------------------------- // astar-andrea ------------------------ // var result = aStar(matrix, [closestToStart.x, closestToStart.y], [closestToEnd.x, closestToEnd.y], 'DiagonalFree'); // var path = [start.geometry.coordinates]; // result.forEach(function (coord) { // var coords = pointMatrix[coord[1]][coord[0]].split('|'); // path.push([+coords[0], +coords[1]]); // make sure coords are numbers // }); // path.push(end.geometry.coordinates); // --------------------------------------- return cleanCoords(lineString(path)); } /** * Checks if Point is inside any of the Polygons * * @private * @param {Feature} pt to check * @param {FeatureCollection} polygons features * @returns {boolean} if inside or not */ function isInside(pt: Feature, polygons: FeatureCollection) { for (let i = 0; i < polygons.features.length; i++) { if (booleanPointInPolygon(pt, polygons.features[i])) { return true; } } return false; } export { shortestPath }; export default shortestPath; ================================================ FILE: packages/turf-shortest-path/lib/javascript-astar.ts ================================================ // javascript-astar 0.4.1 // http://github.com/bgrins/javascript-astar // Freely distributable under the MIT License. // Implements the astar search algorithm in javascript using a Binary Heap. // Includes Binary Heap (with modifications) from Marijn Haverbeke. // http://eloquentjavascript.net/appendix2.html function pathTo(node: GridNode) { var curr = node, path = []; while (curr.parent) { path.unshift(curr); curr = curr.parent; } return path; } function getHeap() { return new BinaryHeap(function (node) { return node.f; }); } /** * Astar * @private */ export var astar = { /** * Perform an A* Search on a graph given a start and end node. * * @private * @memberof astar * @param {Graph} graph Graph * @param {GridNode} start Start * @param {GridNode} end End * @param {Object} [options] Options * @param {bool} [options.closest] Specifies whether to return the path to the closest node if the target is unreachable. * @param {Function} [options.heuristic] Heuristic function (see astar.heuristics). * @returns {Object} Search */ search: function ( graph: Graph, start: GridNode, end: GridNode, options: { closest?: boolean; } = {} ) { graph.cleanDirty(); options = options || {}; var heuristic = astar.heuristics.manhattan, closest = options.closest ?? false; var openHeap = getHeap(), closestNode = start; // set the start node to be the closest if required start.h = heuristic(start, end); openHeap.push(start); while (openHeap.size() > 0) { // Grab the lowest f(x) to process next. Heap keeps this sorted for us. var currentNode = openHeap.pop(); // End case -- result has been found, return the traced path. if (currentNode === end) { return pathTo(currentNode); } // Normal case -- move currentNode from open to closed, process each of its neighbors. currentNode.closed = true; // Find all neighbors for the current node. var neighbors = graph.neighbors(currentNode); for (var i = 0, il = neighbors.length; i < il; ++i) { var neighbor = neighbors[i]; if (neighbor.closed || neighbor.isWall()) { // Not a valid node to process, skip to next neighbor. continue; } // The g score is the shortest distance from start to current node. // We need to check if the path we have arrived at this neighbor is the shortest one we have seen yet. var gScore = currentNode.g + neighbor.getCost(currentNode), beenVisited = neighbor.visited; if (!beenVisited || gScore < neighbor.g) { // Found an optimal (so far) path to this node. Take score for node to see how good it is. neighbor.visited = true; neighbor.parent = currentNode; neighbor.h = neighbor.h || heuristic(neighbor, end); neighbor.g = gScore; neighbor.f = neighbor.g + neighbor.h; graph.markDirty(neighbor); if (closest) { // If the neighbour is closer than the current closestNode or if it's equally close but has // a cheaper path than the current closest node then it becomes the closest node if ( neighbor.h < closestNode.h || (neighbor.h === closestNode.h && neighbor.g < closestNode.g) ) { closestNode = neighbor; } } if (!beenVisited) { // Pushing to heap will put it in proper place based on the 'f' value. openHeap.push(neighbor); } else { // Already seen the node, but since it has been rescored we need to reorder it in the heap openHeap.rescoreElement(neighbor); } } } } if (closest) { return pathTo(closestNode); } // No result was found - empty array signifies failure to find path. return []; }, // See list of heuristics: http://theory.stanford.edu/~amitp/GameProgramming/Heuristics.html heuristics: { manhattan: function ( pos0: { x: number; y: number }, pos1: { x: number; y: number } ) { var d1 = Math.abs(pos1.x - pos0.x); var d2 = Math.abs(pos1.y - pos0.y); return d1 + d2; }, diagonal: function ( pos0: { x: number; y: number }, pos1: { x: number; y: number } ) { var D = 1; var D2 = Math.sqrt(2); var d1 = Math.abs(pos1.x - pos0.x); var d2 = Math.abs(pos1.y - pos0.y); return D * (d1 + d2) + (D2 - 2 * D) * Math.min(d1, d2); }, }, cleanNode: function (node: GridNode) { node.f = 0; node.g = 0; node.h = 0; node.visited = false; node.closed = false; node.parent = undefined; }, }; /** * A graph memory structure * * @private * @param {Array} gridIn 2D array of input weights * @param {Object} [options] Options * @param {boolean} [options.diagonal] Specifies whether diagonal moves are allowed * @returns {void} Graph */ export class Graph { nodes: GridNode[] = []; diagonal: boolean; grid: GridNode[][] = []; dirtyNodes: GridNode[] = []; constructor(gridIn: number[][], options: { diagonal?: boolean } = {}) { this.diagonal = !!options.diagonal; for (var x = 0; x < gridIn.length; x++) { this.grid[x] = []; for (var y = 0, row = gridIn[x]; y < row.length; y++) { var node = new GridNode(x, y, row[y]); this.grid[x][y] = node; this.nodes.push(node); } } this.init(); } init() { this.dirtyNodes = []; for (var i = 0; i < this.nodes.length; i++) { astar.cleanNode(this.nodes[i]); } } cleanDirty() { for (var i = 0; i < this.dirtyNodes.length; i++) { astar.cleanNode(this.dirtyNodes[i]); } this.dirtyNodes = []; } markDirty(node: GridNode) { this.dirtyNodes.push(node); } neighbors(node: GridNode) { var ret = [], x = node.x, y = node.y, grid = this.grid; // West if (grid[x - 1] && grid[x - 1][y]) { ret.push(grid[x - 1][y]); } // East if (grid[x + 1] && grid[x + 1][y]) { ret.push(grid[x + 1][y]); } // South if (grid[x] && grid[x][y - 1]) { ret.push(grid[x][y - 1]); } // North if (grid[x] && grid[x][y + 1]) { ret.push(grid[x][y + 1]); } if (this.diagonal) { // Southwest if (grid[x - 1] && grid[x - 1][y - 1]) { ret.push(grid[x - 1][y - 1]); } // Southeast if (grid[x + 1] && grid[x + 1][y - 1]) { ret.push(grid[x + 1][y - 1]); } // Northwest if (grid[x - 1] && grid[x - 1][y + 1]) { ret.push(grid[x - 1][y + 1]); } // Northeast if (grid[x + 1] && grid[x + 1][y + 1]) { ret.push(grid[x + 1][y + 1]); } } return ret; } toString() { var graphString = [], nodes = this.grid, // when using grid rowDebug, row, y, l; for (var x = 0, len = nodes.length; x < len; x++) { rowDebug = []; row = nodes[x]; for (y = 0, l = row.length; y < l; y++) { rowDebug.push(row[y].weight); } graphString.push(rowDebug.join(" ")); } return graphString.join("\n"); } } export class GridNode { x: number; y: number; weight: number; visited: boolean = false; parent?: GridNode; h: number = 0; g: number = 0; f: number = 0; closed: boolean = false; constructor(x: number, y: number, weight: number) { this.x = x; this.y = y; this.weight = weight; } toString() { return "[" + this.x + " " + this.y + "]"; } getCost(fromNeighbor: GridNode) { // Take diagonal weight into consideration. if ( fromNeighbor && fromNeighbor.x !== this.x && fromNeighbor.y !== this.y ) { return this.weight * 1.41421; } return this.weight; } isWall() { return this.weight === 0; } } class BinaryHeap { content: T[] = []; scoreFunction: (o: T) => number; constructor(scoreFunction: (o: T) => number) { this.scoreFunction = scoreFunction; } push(element: T) { // Add the new element to the end of the array. this.content.push(element); // Allow it to sink down. this.sinkDown(this.content.length - 1); } pop() { // Store the first element so we can return it later. var result = this.content[0]; // Get the element at the end of the array. var end = this.content.pop(); // If there are any elements left, put the end element at the // start, and let it bubble up. if (this.content.length > 0) { this.content[0] = end!; this.bubbleUp(0); } return result; } remove(node: T) { var i = this.content.indexOf(node); // When it is found, the process seen in 'pop' is repeated // to fill up the hole. var end = this.content.pop()!; if (i !== this.content.length - 1) { this.content[i] = end; if (this.scoreFunction(end) < this.scoreFunction(node)) { this.sinkDown(i); } else { this.bubbleUp(i); } } } size() { return this.content.length; } rescoreElement(node: T) { this.sinkDown(this.content.indexOf(node)); } sinkDown(n: number) { // Fetch the element that has to be sunk. var element = this.content[n]; // When at 0, an element can not sink any further. while (n > 0) { // Compute the parent element's index, and fetch it. var parentN = ((n + 1) >> 1) - 1, parent = this.content[parentN]; // Swap the elements if the parent is greater. if (this.scoreFunction(element) < this.scoreFunction(parent)) { this.content[parentN] = element; this.content[n] = parent; // Update 'n' to continue at the new position. n = parentN; // Found a parent that is less, no need to sink any further. } else { break; } } } bubbleUp(n: number) { // Look up the target element and its score. var length = this.content.length, element = this.content[n], elemScore = this.scoreFunction(element); while (true) { // Compute the indices of the child elements. var child2N = (n + 1) << 1, child1N = child2N - 1; // This is used to store the new position of the element, if any. var swap = null, child1Score; // If the first child exists (is inside the array)... if (child1N < length) { // Look it up and compute its score. var child1 = this.content[child1N]; child1Score = this.scoreFunction(child1); // If the score is less than our element's, we need to swap. if (child1Score < elemScore) { swap = child1N; } } // Do the same checks for the other child. if (child2N < length) { var child2 = this.content[child2N], child2Score = this.scoreFunction(child2); if (child2Score < (swap === null ? elemScore : child1Score)!) { swap = child2N; } } // If the element needs to be moved, swap it, and continue. if (swap !== null) { this.content[n] = this.content[swap]; this.content[swap] = element; n = swap; // Otherwise, we are done. } else { break; } } } } ================================================ FILE: packages/turf-shortest-path/package.json ================================================ { "name": "@turf/shortest-path", "version": "7.3.4", "description": "Returns the shortest path from start to end without colliding with any Feature in obstacles.", "author": "Turf Authors", "contributors": [ "Stefano Borghi <@stebogit>", "Denis Carriere <@DenisCarriere>", "Daniel Ziegler <@ziegler-daniel>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "shortest-path", "path" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/bbox": "workspace:*", "@turf/bbox-polygon": "workspace:*", "@turf/boolean-point-in-polygon": "workspace:*", "@turf/clean-coords": "workspace:*", "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@turf/transform-scale": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-shortest-path/test/in/bermuda-triangle.json ================================================ { "type": "FeatureCollection", "properties": { "resolution": 20, "units": "kilometers" }, "features": [ { "type": "Feature", "properties": { "type": "start" }, "geometry": { "type": "Point", "coordinates": [-60.925, 22.335] } }, { "type": "Feature", "properties": { "type": "end" }, "geometry": { "type": "Point", "coordinates": [-79.991, 29.965] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80.19, 25.774], [-66.118, 18.466], [-64.757, 32.321], [-80.19, 25.774] ] ] } } ] } ================================================ FILE: packages/turf-shortest-path/test/in/farmland.json ================================================ { "type": "FeatureCollection", "properties": { "resolution": 10, "units": "meters" }, "features": [ { "type": "Feature", "properties": { "name": "start" }, "geometry": { "type": "Point", "coordinates": [13.811772, 52.151878] } }, { "type": "Feature", "properties": { "name": "end" }, "geometry": { "type": "Point", "coordinates": [13.807807, 52.157116] } }, { "type": "Feature", "properties": { "name": "obstacle" }, "geometry": { "type": "Polygon", "coordinates": [ [ [13.809135, 52.153309], [13.809135, 52.152021], [13.813001, 52.152021], [13.813001, 52.153309], [13.809135, 52.153309] ] ] } } ] } ================================================ FILE: packages/turf-shortest-path/test/in/multiple-obstacles.json ================================================ { "type": "FeatureCollection", "properties": { "resolution": 10, "units": "centimeters" }, "features": [ { "type": "Feature", "properties": { "type": "start" }, "geometry": { "type": "Point", "coordinates": [-0.158503, 51.50751] } }, { "type": "Feature", "properties": { "type": "end" }, "geometry": { "type": "Point", "coordinates": [-0.156938, 51.50724] } }, { "type": "Feature", "properties": { "name": "obstacle 1" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.158656, 51.507437], [-0.157762, 51.506957], [-0.157403, 51.507497], [-0.158402, 51.507721], [-0.158385, 51.507443], [-0.158656, 51.507437] ] ] } }, { "type": "Feature", "properties": { "name": "obstacle 2" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.157216, 51.507531], [-0.157216, 51.507311], [-0.156869, 51.507311], [-0.156869, 51.507531], [-0.157216, 51.507531] ] ] } }, { "type": "Feature", "properties": { "name": "obstacle 3" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.157414, 51.507373], [-0.157527, 51.507013], [-0.157171, 51.506986], [-0.156902, 51.507049], [-0.157192, 51.507232], [-0.157414, 51.507373] ] ] } }, { "type": "Feature", "properties": { "name": "obstacle 4" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.15781, 51.507865], [-0.157319, 51.507501], [-0.157231, 51.507728], [-0.15781, 51.507865] ] ] } } ] } ================================================ FILE: packages/turf-shortest-path/test/in/simple.json ================================================ { "type": "FeatureCollection", "properties": { "resolution": 10, "units": "kilometers" }, "features": [ { "type": "Feature", "properties": { "type": "start" }, "geometry": { "type": "Point", "coordinates": [5.625, 40.763] } }, { "type": "Feature", "properties": { "type": "end" }, "geometry": { "type": "Point", "coordinates": [11.931, 39.147] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.206787, 40.730608], [8.569335, 39.892879], [8.349609, 39.257778], [8.843994, 38.908132], [9.085693, 39.257778], [9.591064, 39.164141], [9.591064, 40.271143], [9.821777, 40.472024], [9.283447, 41.253032], [8.206787, 40.730608] ] ] } } ] } ================================================ FILE: packages/turf-shortest-path/test/out/bermuda-triangle.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80.19, 25.774], [-66.118, 18.466], [-64.757, 32.321], [-80.19, 25.774] ] ] } }, { "type": "Feature", "properties": { "type": "start" }, "geometry": { "type": "Point", "coordinates": [-60.925, 22.335] } }, { "type": "Feature", "properties": { "type": "end" }, "geometry": { "type": "Point", "coordinates": [-79.991, 29.965] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 5 }, "geometry": { "type": "LineString", "coordinates": [ [-60.925, 22.335], [-61.126249, 22.515675], [-62.257999, 23.594859], [-62.257999, 29.890102], [-64.521499, 32.048471], [-64.898749, 32.408199], [-65.087374, 32.228335], [-65.275999, 32.228335], [-65.464624, 32.048471], [-65.653249, 32.048471], [-65.841874, 31.868607], [-66.219125, 31.868607], [-66.40775, 31.688743], [-66.596375, 31.688743], [-66.785, 31.508878], [-66.973625, 31.508878], [-67.16225, 31.329014], [-67.350875, 31.329014], [-67.5395, 31.14915], [-67.91675, 31.14915], [-68.105375, 30.969286], [-68.294, 30.969286], [-68.482625, 30.789422], [-68.67125, 30.789422], [-68.859875, 30.609558], [-69.0485, 30.609558], [-69.237125, 30.429694], [-69.614375, 30.429694], [-69.803, 30.24983], [-69.991625, 30.24983], [-70.18025, 30.069966], [-70.368875, 30.069966], [-70.5575, 29.890102], [-79.988751, 29.890102], [-79.991, 29.965] ] } } ] } ================================================ FILE: packages/turf-shortest-path/test/out/farmland.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "name": "obstacle" }, "geometry": { "type": "Polygon", "coordinates": [ [ [13.809135, 52.153309], [13.809135, 52.152021], [13.813001, 52.152021], [13.813001, 52.153309], [13.809135, 52.153309] ] ] } }, { "type": "Feature", "properties": { "name": "start" }, "geometry": { "type": "Point", "coordinates": [13.811772, 52.151878] } }, { "type": "Feature", "properties": { "name": "end" }, "geometry": { "type": "Point", "coordinates": [13.807807, 52.157116] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 5 }, "geometry": { "type": "LineString", "coordinates": [ [13.811772, 52.151878], [13.811577, 52.151979], [13.809231, 52.151979], [13.807766, 52.152878], [13.807766, 52.157105], [13.807807, 52.157116] ] } } ] } ================================================ FILE: packages/turf-shortest-path/test/out/multiple-obstacles.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "name": "obstacle 1" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.158656, 51.507437], [-0.157762, 51.506957], [-0.157403, 51.507497], [-0.158402, 51.507721], [-0.158385, 51.507443], [-0.158656, 51.507437] ] ] } }, { "type": "Feature", "properties": { "name": "obstacle 2" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.157216, 51.507531], [-0.157216, 51.507311], [-0.156869, 51.507311], [-0.156869, 51.507531], [-0.157216, 51.507531] ] ] } }, { "type": "Feature", "properties": { "name": "obstacle 3" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.157414, 51.507373], [-0.157527, 51.507013], [-0.157171, 51.506986], [-0.156902, 51.507049], [-0.157192, 51.507232], [-0.157414, 51.507373] ] ] } }, { "type": "Feature", "properties": { "name": "obstacle 4" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.15781, 51.507865], [-0.157319, 51.507501], [-0.157231, 51.507728], [-0.15781, 51.507865] ] ] } }, { "type": "Feature", "properties": { "type": "start" }, "geometry": { "type": "Point", "coordinates": [-0.158503, 51.50751] } }, { "type": "Feature", "properties": { "type": "end" }, "geometry": { "type": "Point", "coordinates": [-0.156938, 51.50724] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 5 }, "geometry": { "type": "LineString", "coordinates": [ [-0.158503, 51.50751], [-0.158502, 51.507511], [-0.158502, 51.507512], [-0.158499, 51.507514], [-0.158499, 51.507537], [-0.158466, 51.507558], [-0.158466, 51.507559], [-0.158403, 51.507599], [-0.158403, 51.50772], [-0.158401, 51.507721], [-0.158398, 51.507721], [-0.158397, 51.50772], [-0.158394, 51.50772], [-0.158392, 51.507719], [-0.15839, 51.507719], [-0.158388, 51.507718], [-0.158385, 51.507718], [-0.158384, 51.507717], [-0.158382, 51.507717], [-0.158381, 51.507716], [-0.158378, 51.507716], [-0.158377, 51.507715], [-0.158374, 51.507715], [-0.158372, 51.507715], [-0.158369, 51.507715], [-0.158368, 51.507714], [-0.158366, 51.507714], [-0.158365, 51.507713], [-0.158362, 51.507713], [-0.158361, 51.507712], [-0.158358, 51.507712], [-0.158356, 51.507711], [-0.158353, 51.507711], [-0.158352, 51.50771], [-0.158349, 51.50771], [-0.158348, 51.507709], [-0.158346, 51.507709], [-0.158345, 51.507708], [-0.158342, 51.507708], [-0.15834, 51.507707], [-0.158338, 51.507707], [-0.158336, 51.507706], [-0.158333, 51.507706], [-0.158332, 51.507706], [-0.15833, 51.507706], [-0.158329, 51.507705], [-0.158326, 51.507705], [-0.158325, 51.507704], [-0.158322, 51.507704], [-0.15832, 51.507703], [-0.158317, 51.507703], [-0.158316, 51.507702], [-0.158313, 51.507702], [-0.158312, 51.507701], [-0.15831, 51.507701], [-0.158309, 51.5077], [-0.158306, 51.5077], [-0.158304, 51.507699], [-0.158301, 51.507699], [-0.1583, 51.507698], [-0.158297, 51.507698], [-0.158296, 51.507697], [-0.158294, 51.507697], [-0.158293, 51.507697], [-0.15829, 51.507697], [-0.158288, 51.507696], [-0.158286, 51.507696], [-0.158284, 51.507695], [-0.158281, 51.507695], [-0.15828, 51.507694], [-0.158277, 51.507694], [-0.158275, 51.507693], [-0.158274, 51.507693], [-0.158273, 51.507692], [-0.15827, 51.507692], [-0.158268, 51.507691], [-0.158265, 51.507691], [-0.158264, 51.50769], [-0.158261, 51.50769], [-0.15826, 51.507689], [-0.158258, 51.507689], [-0.158257, 51.507688], [-0.158254, 51.507688], [-0.158252, 51.507688], [-0.158249, 51.507688], [-0.158248, 51.507687], [-0.158245, 51.507687], [-0.158244, 51.507686], [-0.158241, 51.507686], [-0.158239, 51.507685], [-0.158238, 51.507685], [-0.158236, 51.507684], [-0.158234, 51.507684], [-0.158232, 51.507683], [-0.158229, 51.507683], [-0.158228, 51.507682], [-0.158225, 51.507682], [-0.158223, 51.507681], [-0.158222, 51.507681], [-0.158221, 51.50768], [-0.158218, 51.50768], [-0.158216, 51.507679], [-0.158213, 51.507679], [-0.158212, 51.507679], [-0.158209, 51.507679], [-0.158208, 51.507678], [-0.158206, 51.507678], [-0.158205, 51.507677], [-0.158202, 51.507677], [-0.1582, 51.507676], [-0.158197, 51.507676], [-0.158196, 51.507675], [-0.158193, 51.507675], [-0.158192, 51.507674], [-0.158189, 51.507674], [-0.158187, 51.507673], [-0.158186, 51.507673], [-0.158184, 51.507672], [-0.158182, 51.507672], [-0.15818, 51.507671], [-0.158177, 51.507671], [-0.158176, 51.50767], [-0.158173, 51.50767], [-0.158171, 51.50767], [-0.15817, 51.50767], [-0.158169, 51.507669], [-0.158166, 51.507669], [-0.158164, 51.507668], [-0.158161, 51.507668], [-0.15816, 51.507667], [-0.158157, 51.507667], [-0.158156, 51.507666], [-0.158153, 51.507666], [-0.158151, 51.507665], [-0.15815, 51.507665], [-0.158148, 51.507664], [-0.158145, 51.507664], [-0.158144, 51.507663], [-0.158141, 51.507663], [-0.15814, 51.507662], [-0.158137, 51.507662], [-0.158135, 51.507661], [-0.158134, 51.507661], [-0.158132, 51.507661], [-0.158129, 51.507661], [-0.158128, 51.50766], [-0.158125, 51.50766], [-0.158124, 51.507659], [-0.158121, 51.507659], [-0.158119, 51.507658], [-0.158116, 51.507658], [-0.158115, 51.507657], [-0.158114, 51.507657], [-0.158112, 51.507656], [-0.158109, 51.507656], [-0.158108, 51.507655], [-0.158105, 51.507655], [-0.158103, 51.507654], [-0.158101, 51.507654], [-0.158099, 51.507653], [-0.158098, 51.507653], [-0.158096, 51.507652], [-0.158093, 51.507652], [-0.158092, 51.507652], [-0.158089, 51.507652], [-0.158088, 51.507651], [-0.158085, 51.507651], [-0.158083, 51.50765], [-0.15808, 51.50765], [-0.158079, 51.507649], [-0.158077, 51.507649], [-0.158076, 51.507648], [-0.158073, 51.507648], [-0.158072, 51.507647], [-0.158069, 51.507647], [-0.158067, 51.507646], [-0.158064, 51.507646], [-0.158063, 51.507645], [-0.158062, 51.507645], [-0.15806, 51.507644], [-0.158057, 51.507644], [-0.158056, 51.507643], [-0.158053, 51.507643], [-0.158051, 51.507643], [-0.158049, 51.507643], [-0.158047, 51.507642], [-0.158044, 51.507642], [-0.158043, 51.507641], [-0.158041, 51.507641], [-0.15804, 51.50764], [-0.158037, 51.50764], [-0.158036, 51.507639], [-0.158033, 51.507639], [-0.158031, 51.507638], [-0.158028, 51.507638], [-0.158027, 51.507637], [-0.158025, 51.507637], [-0.158024, 51.507636], [-0.158021, 51.507636], [-0.15802, 51.507635], [-0.158017, 51.507635], [-0.158015, 51.507634], [-0.158012, 51.507634], [-0.158011, 51.507634], [-0.158008, 51.507634], [-0.158007, 51.507633], [-0.158005, 51.507633], [-0.158004, 51.507632], [-0.158001, 51.507632], [-0.157999, 51.507631], [-0.157997, 51.507631], [-0.157995, 51.50763], [-0.157992, 51.50763], [-0.157991, 51.507629], [-0.157989, 51.507629], [-0.157988, 51.507628], [-0.157985, 51.507628], [-0.157984, 51.507627], [-0.157981, 51.507627], [-0.157979, 51.507626], [-0.157976, 51.507626], [-0.157975, 51.507625], [-0.157973, 51.507625], [-0.157972, 51.507625], [-0.157969, 51.507625], [-0.157968, 51.507624], [-0.157965, 51.507624], [-0.157963, 51.507623], [-0.15796, 51.507623], [-0.157959, 51.507622], [-0.157956, 51.507622], [-0.157955, 51.507621], [-0.157953, 51.507621], [-0.157952, 51.50762], [-0.157949, 51.50762], [-0.157947, 51.507619], [-0.157945, 51.507619], [-0.157943, 51.507618], [-0.15794, 51.507618], [-0.157939, 51.507617], [-0.157937, 51.507617], [-0.157936, 51.507616], [-0.157933, 51.507616], [-0.157932, 51.507616], [-0.157929, 51.507616], [-0.157927, 51.507615], [-0.157924, 51.507615], [-0.157923, 51.507614], [-0.15792, 51.507614], [-0.157919, 51.507613], [-0.157917, 51.507613], [-0.157916, 51.507612], [-0.157913, 51.507612], [-0.157911, 51.507611], [-0.157908, 51.507611], [-0.157907, 51.50761], [-0.157904, 51.50761], [-0.157903, 51.507609], [-0.157901, 51.507609], [-0.1579, 51.507608], [-0.157897, 51.507608], [-0.157895, 51.507608], [-0.157893, 51.507608], [-0.157891, 51.507607], [-0.157888, 51.507607], [-0.157887, 51.507606], [-0.157884, 51.507606], [-0.157882, 51.507605], [-0.157881, 51.507605], [-0.15788, 51.507604], [-0.157877, 51.507604], [-0.157875, 51.507603], [-0.157872, 51.507603], [-0.157871, 51.507602], [-0.157868, 51.507602], [-0.157867, 51.507601], [-0.157865, 51.507601], [-0.157864, 51.5076], [-0.157861, 51.5076], [-0.157859, 51.507599], [-0.157856, 51.507599], [-0.157855, 51.507599], [-0.157852, 51.507599], [-0.157851, 51.507598], [-0.157848, 51.507598], [-0.157846, 51.507597], [-0.157845, 51.507597], [-0.157843, 51.507596], [-0.157841, 51.507596], [-0.157839, 51.507595], [-0.157836, 51.507595], [-0.157835, 51.507594], [-0.157832, 51.507594], [-0.15783, 51.507593], [-0.157829, 51.507593], [-0.157828, 51.507592], [-0.157825, 51.507592], [-0.157823, 51.507591], [-0.15782, 51.507591], [-0.157819, 51.50759], [-0.157816, 51.50759], [-0.157815, 51.50759], [-0.157812, 51.50759], [-0.15781, 51.507589], [-0.157809, 51.507589], [-0.157807, 51.507588], [-0.157804, 51.507588], [-0.157803, 51.507587], [-0.1578, 51.507587], [-0.157799, 51.507586], [-0.157796, 51.507586], [-0.157794, 51.507585], [-0.157793, 51.507585], [-0.157791, 51.507584], [-0.157789, 51.507584], [-0.157787, 51.507583], [-0.157784, 51.507583], [-0.157783, 51.507582], [-0.15778, 51.507582], [-0.157778, 51.507581], [-0.157776, 51.507581], [-0.157774, 51.507581], [-0.157773, 51.507581], [-0.157771, 51.50758], [-0.157768, 51.50758], [-0.157767, 51.507579], [-0.157764, 51.507579], [-0.157762, 51.507578], [-0.15776, 51.507578], [-0.157758, 51.507577], [-0.157757, 51.507577], [-0.157755, 51.507576], [-0.157752, 51.507576], [-0.157751, 51.507575], [-0.157748, 51.507575], [-0.157747, 51.507574], [-0.157744, 51.507574], [-0.157742, 51.507573], [-0.157741, 51.507573], [-0.157739, 51.507572], [-0.157736, 51.507572], [-0.157735, 51.507572], [-0.157732, 51.507572], [-0.157731, 51.507571], [-0.157728, 51.507571], [-0.157726, 51.50757], [-0.157723, 51.50757], [-0.157722, 51.507569], [-0.157721, 51.507569], [-0.157719, 51.507568], [-0.157716, 51.507568], [-0.157715, 51.507567], [-0.157712, 51.507567], [-0.15771, 51.507566], [-0.157708, 51.507566], [-0.157706, 51.507565], [-0.157705, 51.507565], [-0.157703, 51.507564], [-0.1577, 51.507564], [-0.157699, 51.507563], [-0.157696, 51.507563], [-0.157695, 51.507563], [-0.157692, 51.507563], [-0.15769, 51.507562], [-0.157687, 51.507562], [-0.157686, 51.507561], [-0.157684, 51.507561], [-0.157683, 51.50756], [-0.15768, 51.50756], [-0.157679, 51.507559], [-0.157676, 51.507559], [-0.157674, 51.507558], [-0.157671, 51.507558], [-0.15767, 51.507557], [-0.157669, 51.507557], [-0.157667, 51.507556], [-0.157664, 51.507556], [-0.157663, 51.507555], [-0.15766, 51.507555], [-0.157658, 51.507554], [-0.157656, 51.507554], [-0.157654, 51.507554], [-0.157651, 51.507554], [-0.15765, 51.507553], [-0.157648, 51.507553], [-0.157647, 51.507552], [-0.157644, 51.507552], [-0.157643, 51.507551], [-0.15764, 51.507551], [-0.157638, 51.50755], [-0.157635, 51.50755], [-0.157634, 51.507549], [-0.157632, 51.507549], [-0.157631, 51.507548], [-0.157628, 51.507548], [-0.157627, 51.507547], [-0.157624, 51.507547], [-0.157622, 51.507546], [-0.157619, 51.507546], [-0.157618, 51.507545], [-0.157615, 51.507545], [-0.157614, 51.507545], [-0.157612, 51.507545], [-0.157611, 51.507544], [-0.157608, 51.507544], [-0.157606, 51.507543], [-0.157604, 51.507543], [-0.157602, 51.507542], [-0.157599, 51.507542], [-0.157598, 51.507541], [-0.157596, 51.507541], [-0.157595, 51.50754], [-0.157592, 51.50754], [-0.157591, 51.507539], [-0.157588, 51.507539], [-0.157586, 51.507538], [-0.157583, 51.507538], [-0.157582, 51.507537], [-0.157579, 51.507537], [-0.157578, 51.507536], [-0.157576, 51.507536], [-0.157575, 51.507536], [-0.157572, 51.507536], [-0.15757, 51.507535], [-0.157567, 51.507535], [-0.157566, 51.507534], [-0.157563, 51.507534], [-0.157562, 51.507533], [-0.15756, 51.507533], [-0.157559, 51.507532], [-0.157556, 51.507532], [-0.157554, 51.507531], [-0.157552, 51.507531], [-0.15755, 51.50753], [-0.157547, 51.50753], [-0.157546, 51.507529], [-0.157543, 51.507529], [-0.157541, 51.507528], [-0.15754, 51.507528], [-0.157539, 51.507527], [-0.157536, 51.507527], [-0.157534, 51.507527], [-0.157531, 51.507527], [-0.15753, 51.507526], [-0.157527, 51.507526], [-0.157526, 51.507525], [-0.157524, 51.507525], [-0.157523, 51.507524], [-0.15752, 51.507524], [-0.157518, 51.507523], [-0.157515, 51.507523], [-0.157514, 51.507522], [-0.157511, 51.507522], [-0.15751, 51.507521], [-0.157508, 51.507521], [-0.157507, 51.50752], [-0.157504, 51.50752], [-0.157502, 51.507519], [-0.1575, 51.507519], [-0.157498, 51.507518], [-0.157495, 51.507518], [-0.157494, 51.507518], [-0.157491, 51.507518], [-0.157489, 51.507517], [-0.157488, 51.507517], [-0.157487, 51.507516], [-0.157484, 51.507516], [-0.157482, 51.507515], [-0.157479, 51.507515], [-0.157478, 51.507514], [-0.157475, 51.507514], [-0.157474, 51.507513], [-0.157472, 51.507513], [-0.157471, 51.507512], [-0.157468, 51.507512], [-0.157466, 51.507511], [-0.157463, 51.507511], [-0.157462, 51.50751], [-0.157459, 51.50751], [-0.157458, 51.507509], [-0.157455, 51.507509], [-0.157453, 51.507509], [-0.157452, 51.507509], [-0.15745, 51.507508], [-0.157448, 51.507508], [-0.157446, 51.507507], [-0.157443, 51.507507], [-0.157442, 51.507506], [-0.157439, 51.507506], [-0.157437, 51.507505], [-0.157436, 51.507505], [-0.157435, 51.507504], [-0.157432, 51.507504], [-0.15743, 51.507503], [-0.157427, 51.507503], [-0.157426, 51.507502], [-0.157423, 51.507502], [-0.157422, 51.507501], [-0.157419, 51.507501], [-0.157417, 51.5075], [-0.157416, 51.5075], [-0.157414, 51.5075], [-0.157411, 51.5075], [-0.15741, 51.507499], [-0.157407, 51.507499], [-0.157406, 51.507498], [-0.157404, 51.507498], [-0.157216, 51.507381], [-0.157216, 51.507312], [-0.157101, 51.50724], [-0.156937, 51.50724], [-0.156938, 51.50724] ] } } ] } ================================================ FILE: packages/turf-shortest-path/test/out/simple.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.206787, 40.730608], [8.569335, 39.892879], [8.349609, 39.257778], [8.843994, 38.908132], [9.085693, 39.257778], [9.591064, 39.164141], [9.591064, 40.271143], [9.821777, 40.472024], [9.283447, 41.253032], [8.206787, 40.730608] ] ] } }, { "type": "Feature", "properties": { "type": "start" }, "geometry": { "type": "Point", "coordinates": [5.625, 40.763] } }, { "type": "Feature", "properties": { "type": "end" }, "geometry": { "type": "Point", "coordinates": [11.931, 39.147] } }, { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 5 }, "geometry": { "type": "LineString", "coordinates": [ [5.625, 40.763], [5.77978, 40.66514], [7.740155, 39.136296], [8.432052, 39.136296], [8.778, 38.8665], [9.123948, 39.136296], [11.891536, 39.136296], [11.931, 39.147] ] } } ] } ================================================ FILE: packages/turf-shortest-path/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { truncate } from "@turf/truncate"; import { featureCollection, point } from "@turf/helpers"; import { getCoord } from "@turf/invariant"; import { featureEach } from "@turf/meta"; import { shortestPath } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("turf-shortest-path", (t) => { for (const { filename, name, geojson } of fixtures) { // First two features from Collection are Start & End Points const start = geojson.features.shift(); const end = geojson.features.shift(); // Any remaining features from Collection are obstacles const obstacles = geojson; const options = geojson.properties; options.obstacles = obstacles; const path = truncate(shortestPath(start, end, options)); path.properties["stroke"] = "#F00"; path.properties["stroke-width"] = 5; const results = featureCollection([]); if (obstacles) { featureEach(obstacles, (obstacle) => { results.features.push(obstacle); }); } results.features.push(point(getCoord(start), start.properties)); results.features.push(point(getCoord(end), end.properties)); results.features.push(path); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEqual(results, loadJsonFileSync(directories.out + filename), name); } t.end(); }); test("turf-shortest-path -- with polygon feature as obstacle", (t) => { const filename = "simple.json"; const geojson = loadJsonFileSync(directories.in + filename); const start = geojson.features.shift(); const end = geojson.features.shift(); const obstacle = geojson.features.shift(); const path = truncate( shortestPath(start, end, { ...geojson.properties, obstacles: obstacle, }) ); path.properties["stroke"] = "#F00"; path.properties["stroke-width"] = 5; const results = featureCollection([]); results.features.push(obstacle); results.features.push(point(getCoord(start), start.properties)); results.features.push(point(getCoord(end), end.properties)); results.features.push(path); t.deepEqual(results, loadJsonFileSync(directories.out + filename), "simple"); t.end(); }); ================================================ FILE: packages/turf-shortest-path/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-shortest-path/types.ts ================================================ import { point, feature, featureCollection, polygon } from "@turf/helpers"; import { shortestPath } from "./index.js"; const start = point([-5, -6]); const end = point([9, -6]); shortestPath(start.geometry, end.geometry.coordinates); shortestPath(start, end); shortestPath(start, end, { obstacles: polygon([ [ [0, -7], [5, -7], [5, -3], [0, -3], [0, -7], ], ]).geometry, }); shortestPath(start, end, { obstacles: polygon([ [ [0, -7], [5, -7], [5, -3], [0, -3], [0, -7], ], ]), }); shortestPath(start, end, { obstacles: featureCollection([ polygon([ [ [0, -7], [5, -7], [5, -3], [0, -3], [0, -7], ], ]), ]), }); shortestPath(start, end, { resolution: 1000, }); ================================================ FILE: packages/turf-simplify/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-simplify/README.md ================================================ # @turf/simplify ## simplify Simplifies the geometries in a GeoJSON object. Uses the 2d version of [simplify-js][1]. ### Parameters * `geojson` **[GeoJSON][2]** GeoJSON object to be simplified * `options` **[Object][3]** Optional parameters (optional, default `{}`) * `options.tolerance` **[number][4]** Simplification tolerance (optional, default `1`) * `options.highQuality` **[boolean][5]** Produce a higher-quality simplification using a slower algorithm (optional, default `false`) * `options.mutate` **[boolean][5]** Allow GeoJSON input to be mutated (significant performance improvement if true) (optional, default `false`) ### Examples ```javascript const geojson = turf.polygon([[ [-70.603637, -33.399918], [-70.614624, -33.395332], [-70.639343, -33.392466], [-70.659942, -33.394759], [-70.683975, -33.404504], [-70.697021, -33.419406], [-70.701141, -33.434306], [-70.700454, -33.446339], [-70.694274, -33.458369], [-70.682601, -33.465816], [-70.668869, -33.472117], [-70.646209, -33.473835], [-70.624923, -33.472117], [-70.609817, -33.468107], [-70.595397, -33.458369], [-70.587158, -33.442901], [-70.587158, -33.426283], [-70.590591, -33.414248], [-70.594711, -33.406224], [-70.603637, -33.399918] ]]); const result0_01 = turf.simplify(geojson, {tolerance: 0.01 }); const result0_005 = turf.simplify(geojson, {tolerance: 0.005 }); //addToMap const addToMap = [geojson, result0_01, result0_005] ``` Returns **[GeoJSON][2]** Simplified GeoJSON [1]: https://mourner.github.io/simplify-js/ [2]: https://tools.ietf.org/html/rfc7946#section-3 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/simplify ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-simplify/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { simplify } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); /** * Single Process Benchmark * * argentina: 4.695ms * featurecollection: 1.647ms * fiji-hiQ: 0.461ms * geometrycollection: 3.332ms * linestring: 0.460ms * multilinestring: 0.657ms * multipoint: 0.193ms * multipolygon: 6.108ms * point: 0.032ms * poly-issue#555-5: 4.956ms * polygon: 0.675ms * simple-polygon: 2.735ms */ for (const { name, geojson } of fixtures) { let { tolerance, highQuality } = geojson.properties || {}; tolerance = tolerance || 0.01; highQuality = highQuality || false; console.time(name); simplify(geojson, { tolerance, highQuality }); console.timeEnd(name); } /** * Benchmark Results * * argentina x 13,380 ops/sec ±4.31% (72 runs sampled) * featurecollection x 4,709 ops/sec ±2.24% (76 runs sampled) * fiji-hiQ x 41,197 ops/sec ±1.96% (80 runs sampled) * geometrycollection x 4,690 ops/sec ±2.25% (78 runs sampled) * linestring x 29,737 ops/sec ±2.26% (77 runs sampled) * multilinestring x 20,530 ops/sec ±2.08% (77 runs sampled) * multipoint x 394,980 ops/sec ±2.35% (77 runs sampled) * multipolygon x 809 ops/sec ±3.32% (70 runs sampled) * point x 5,157,027 ops/sec ±8.79% (72 runs sampled) * poly-issue#555-5 x 1,816 ops/sec ±2.43% (66 runs sampled) * polygon x 2,996 ops/sec ±2.85% (74 runs sampled) * simple-polygon x 369 ops/sec ±7.55% (66 runs sampled) */ const suite = new Benchmark.Suite("turf-transform-simplify"); for (const { name, geojson } of fixtures) { let { tolerance, highQuality } = geojson.properties || {}; tolerance = tolerance || 0.01; highQuality = highQuality || false; suite.add(name, () => simplify(geojson, { tolerance, highQuality })); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-simplify/index.ts ================================================ import { Geometry, Position } from "geojson"; import { cleanCoords } from "@turf/clean-coords"; import { clone } from "@turf/clone"; import { geomEach } from "@turf/meta"; import { AllGeoJSON, isObject } from "@turf/helpers"; import { simplify as simplifyJS } from "./lib/simplify.js"; /** * Simplifies the geometries in a GeoJSON object. Uses the 2d version of * [simplify-js](https://mourner.github.io/simplify-js/). * * @function * @param {GeoJSON} geojson GeoJSON object to be simplified * @param {Object} [options={}] Optional parameters * @param {number} [options.tolerance=1] Simplification tolerance * @param {boolean} [options.highQuality=false] Produce a higher-quality simplification using a slower algorithm * @param {boolean} [options.mutate=false] Allow GeoJSON input to be mutated (significant performance improvement if true) * @returns {GeoJSON} Simplified GeoJSON * @example * const geojson = turf.polygon([[ * [-70.603637, -33.399918], * [-70.614624, -33.395332], * [-70.639343, -33.392466], * [-70.659942, -33.394759], * [-70.683975, -33.404504], * [-70.697021, -33.419406], * [-70.701141, -33.434306], * [-70.700454, -33.446339], * [-70.694274, -33.458369], * [-70.682601, -33.465816], * [-70.668869, -33.472117], * [-70.646209, -33.473835], * [-70.624923, -33.472117], * [-70.609817, -33.468107], * [-70.595397, -33.458369], * [-70.587158, -33.442901], * [-70.587158, -33.426283], * [-70.590591, -33.414248], * [-70.594711, -33.406224], * [-70.603637, -33.399918] * ]]); * const result0_01 = turf.simplify(geojson, {tolerance: 0.01 }); * const result0_005 = turf.simplify(geojson, {tolerance: 0.005 }); * * //addToMap * const addToMap = [geojson, result0_01, result0_005] */ function simplify( geojson: T, options: { tolerance?: number; highQuality?: boolean; mutate?: boolean; } = {} ): T { // Optional parameters options = options ?? {}; if (!isObject(options)) throw new Error("options is invalid"); const tolerance = options.tolerance ?? 1; const highQuality = options.highQuality ?? false; const mutate = options.mutate ?? false; if (!geojson) throw new Error("geojson is required"); if (tolerance && tolerance < 0) throw new Error("invalid tolerance"); // Clone geojson to avoid side effects if (mutate !== true) geojson = clone(geojson); geomEach(geojson, function (geom) { simplifyGeom(geom, tolerance, highQuality); }); return geojson; } /** * Simplifies a feature's coordinates * * @private * @param {Geometry} geometry to be simplified * @param {number} [tolerance=1] simplification tolerance * @param {boolean} [highQuality=false] whether or not to spend more time to create a higher-quality simplification with a different algorithm * @returns {Geometry} output */ function simplifyGeom( geometry: Geometry, tolerance: number, highQuality: boolean ) { const type = geometry.type; // "unsimplyfiable" geometry types if (type === "Point" || type === "MultiPoint") return geometry; // Remove any extra coordinates cleanCoords(geometry, { mutate: true }); if (type !== "GeometryCollection") { // TODO should this cater for GeometryCollections too? switch (type) { case "LineString": geometry.coordinates = simplifyJS( geometry.coordinates, tolerance, highQuality ); break; case "MultiLineString": geometry.coordinates = geometry.coordinates.map((lines) => simplifyJS(lines, tolerance, highQuality) ); break; case "Polygon": geometry.coordinates = simplifyPolygon( geometry.coordinates, tolerance, highQuality ); break; case "MultiPolygon": geometry.coordinates = geometry.coordinates.map((rings) => simplifyPolygon(rings, tolerance, highQuality) ); } } return geometry; } /** * Simplifies the coordinates of a Polygon with simplify-js * * @private * @param {Array} coordinates to be processed * @param {number} tolerance simplification tolerance * @param {boolean} highQuality whether or not to spend more time to create a higher-quality * @returns {Array>>} simplified coords */ function simplifyPolygon( coordinates: Position[][], tolerance: number, highQuality: boolean ) { return coordinates.map(function (ring) { if (ring.length < 4) { throw new Error("invalid polygon"); } let ringTolerance = tolerance; let simpleRing = simplifyJS(ring, ringTolerance, highQuality); // If simplified ring isn't valid (has been over simplified) reduce the // tolerance by 1% and try again. while (!checkValidity(simpleRing) && ringTolerance >= Number.EPSILON) { ringTolerance -= ringTolerance * 0.01; simpleRing = simplifyJS(ring, ringTolerance, highQuality); } // If ring wasn't able to be simplified in a valid way, return it unchanged. if (!checkValidity(simpleRing)) { return ring; } // Close the ring if it wasn't already. if ( simpleRing[simpleRing.length - 1][0] !== simpleRing[0][0] || simpleRing[simpleRing.length - 1][1] !== simpleRing[0][1] ) { simpleRing.push(simpleRing[0]); } return simpleRing; }); } /** * Returns true if ring has at least 3 coordinates and its first coordinate is the same as its last * * @private * @param {Array} ring coordinates to be checked * @returns {boolean} true if valid */ function checkValidity(ring: Position[]) { if (ring.length < 3) return false; //if the last point is the same as the first, it's not a triangle return !( ring.length === 3 && ring[2][0] === ring[0][0] && ring[2][1] === ring[0][1] ); } export { simplify }; export default simplify; ================================================ FILE: packages/turf-simplify/lib/simplify.ts ================================================ /* (c) 2013, Vladimir Agafonkin Simplify.js, a high-performance JS polyline simplification library mourner.github.io/simplify-js */ // to suit your point format, run search/replace for '.x' and '.y'; // for 3D version, see 3d branch (configurability would draw significant performance overhead) // square distance between 2 points function getSqDist(p1: number[], p2: number[]) { var dx = p1[0] - p2[0], dy = p1[1] - p2[1]; return dx * dx + dy * dy; } // square distance from a point to a segment function getSqSegDist(p: number[], p1: number[], p2: number[]) { var x = p1[0], y = p1[1], dx = p2[0] - x, dy = p2[1] - y; if (dx !== 0 || dy !== 0) { var t = ((p[0] - x) * dx + (p[1] - y) * dy) / (dx * dx + dy * dy); if (t > 1) { x = p2[0]; y = p2[1]; } else if (t > 0) { x += dx * t; y += dy * t; } } dx = p[0] - x; dy = p[1] - y; return dx * dx + dy * dy; } // rest of the code doesn't care about point format // basic distance-based simplification function simplifyRadialDist(points: number[][], sqTolerance: number) { var prevPoint = points[0], newPoints = [prevPoint], point; for (var i = 1, len = points.length; i < len; i++) { point = points[i]; if (getSqDist(point, prevPoint) > sqTolerance) { newPoints.push(point); prevPoint = point; } } if (prevPoint !== point) newPoints.push(point!); return newPoints; } function simplifyDPStep( points: number[][], first: number, last: number, sqTolerance: number, simplified: number[][] ) { var maxSqDist = sqTolerance, index; for (var i = first + 1; i < last; i++) { var sqDist = getSqSegDist(points[i], points[first], points[last]); if (sqDist > maxSqDist) { index = i; maxSqDist = sqDist; } } if (maxSqDist > sqTolerance) { if (index! - first > 1) simplifyDPStep(points, first, index!, sqTolerance, simplified); simplified.push(points[index!]); if (last - index! > 1) simplifyDPStep(points, index!, last, sqTolerance, simplified); } } // simplification using Ramer-Douglas-Peucker algorithm function simplifyDouglasPeucker(points: number[][], sqTolerance: number) { var last = points.length - 1; var simplified = [points[0]]; simplifyDPStep(points, 0, last, sqTolerance, simplified); simplified.push(points[last]); return simplified; } // both algorithms combined for awesome performance export function simplify( points: number[][], tolerance: number, highestQuality: boolean ) { if (points.length <= 2) return points; var sqTolerance = tolerance !== undefined ? tolerance * tolerance : 1; points = highestQuality ? points : simplifyRadialDist(points, sqTolerance); points = simplifyDouglasPeucker(points, sqTolerance); return points; } ================================================ FILE: packages/turf-simplify/package.json ================================================ { "name": "@turf/simplify", "version": "7.3.4", "description": "Reduces the number of points in a shape while keeping its overall look.", "author": "Turf Authors", "contributors": [ "Vladimir Agafonkin <@mourner>", "Stefano Borghi <@stebogit>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "gis", "simplify", "Ramer-Douglas-Peucker", "algorithm", "peucker" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/clean-coords": "workspace:*", "@turf/clone": "workspace:*", "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-simplify/test/in/argentina.geojson ================================================ { "type": "Feature", "id": "ARG", "properties": { "tolerance": 0.1, "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-64.964892, -22.075862], [-64.377021, -22.798091], [-63.986838, -21.993644], [-62.846468, -22.034985], [-62.685057, -22.249029], [-60.846565, -23.880713], [-60.028966, -24.032796], [-58.807128, -24.771459], [-57.777217, -25.16234], [-57.63366, -25.603657], [-58.618174, -27.123719], [-57.60976, -27.395899], [-56.486702, -27.548499], [-55.695846, -27.387837], [-54.788795, -26.621786], [-54.625291, -25.739255], [-54.13005, -25.547639], [-53.628349, -26.124865], [-53.648735, -26.923473], [-54.490725, -27.474757], [-55.162286, -27.881915], [-56.2909, -28.852761], [-57.625133, -30.216295], [-57.874937, -31.016556], [-58.14244, -32.044504], [-58.132648, -33.040567], [-58.349611, -33.263189], [-58.427074, -33.909454], [-58.495442, -34.43149], [-57.22583, -35.288027], [-57.362359, -35.97739], [-56.737487, -36.413126], [-56.788285, -36.901572], [-57.749157, -38.183871], [-59.231857, -38.72022], [-61.237445, -38.928425], [-62.335957, -38.827707], [-62.125763, -39.424105], [-62.330531, -40.172586], [-62.145994, -40.676897], [-62.745803, -41.028761], [-63.770495, -41.166789], [-64.73209, -40.802677], [-65.118035, -41.064315], [-64.978561, -42.058001], [-64.303408, -42.359016], [-63.755948, -42.043687], [-63.458059, -42.563138], [-64.378804, -42.873558], [-65.181804, -43.495381], [-65.328823, -44.501366], [-65.565269, -45.036786], [-66.509966, -45.039628], [-67.293794, -45.551896], [-67.580546, -46.301773], [-66.597066, -47.033925], [-65.641027, -47.236135], [-65.985088, -48.133289], [-67.166179, -48.697337], [-67.816088, -49.869669], [-68.728745, -50.264218], [-69.138539, -50.73251], [-68.815561, -51.771104], [-68.149995, -52.349983], [-68.571545, -52.299444], [-69.498362, -52.142761], [-71.914804, -52.009022], [-72.329404, -51.425956], [-72.309974, -50.67701], [-72.975747, -50.74145], [-73.328051, -50.378785], [-73.415436, -49.318436], [-72.648247, -48.878618], [-72.331161, -48.244238], [-72.447355, -47.738533], [-71.917258, -46.884838], [-71.552009, -45.560733], [-71.659316, -44.973689], [-71.222779, -44.784243], [-71.329801, -44.407522], [-71.793623, -44.207172], [-71.464056, -43.787611], [-71.915424, -43.408565], [-72.148898, -42.254888], [-71.746804, -42.051386], [-71.915734, -40.832339], [-71.680761, -39.808164], [-71.413517, -38.916022], [-70.814664, -38.552995], [-71.118625, -37.576827], [-71.121881, -36.658124], [-70.364769, -36.005089], [-70.388049, -35.169688], [-69.817309, -34.193571], [-69.814777, -33.273886], [-70.074399, -33.09121], [-70.535069, -31.36501], [-69.919008, -30.336339], [-70.01355, -29.367923], [-69.65613, -28.459141], [-69.001235, -27.521214], [-68.295542, -26.89934], [-68.5948, -26.506909], [-68.386001, -26.185016], [-68.417653, -24.518555], [-67.328443, -24.025303], [-66.985234, -22.986349], [-67.106674, -22.735925], [-66.273339, -21.83231], [-64.964892, -22.075862] ] ] } } ================================================ FILE: packages/turf-simplify/test/in/featurecollection.geojson ================================================ { "type": "FeatureCollection", "properties": { "tolerance": 0.01 }, "features": [ { "type": "Feature", "properties": { "id": 1 }, "geometry": { "type": "LineString", "coordinates": [ [27.977542877197266, -26.17500493262446], [27.975482940673828, -26.17870225771557], [27.969818115234375, -26.177931991326645], [27.967071533203125, -26.177623883345735], [27.966899871826172, -26.1810130263384], [27.967758178710938, -26.1853263385099], [27.97290802001953, -26.1853263385099], [27.97496795654297, -26.18270756087535], [27.97840118408203, -26.1810130263384], [27.98011779785156, -26.183323749143113], [27.98011779785156, -26.18655868408986], [27.978744506835938, -26.18933141398614], [27.97496795654297, -26.19025564262006], [27.97119140625, -26.19040968001282], [27.969303131103516, -26.1899475672235], [27.96741485595703, -26.189639491012183], [27.9656982421875, -26.187945057286793], [27.965354919433594, -26.18563442612686], [27.96432495117187, -26.183015655416536] ] } }, { "type": "Feature", "properties": { "id": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [27.972049713134762, -26.199035448897074], [27.9741096496582, -26.196108920345292], [27.977371215820312, -26.197495179879635], [27.978572845458984, -26.20042167359348], [27.980976104736328, -26.200729721284862], [27.982349395751953, -26.197803235312957], [27.982177734375, -26.194414580727656], [27.982177734375, -26.19256618212382], [27.98406600952148, -26.192258112838022], [27.985267639160156, -26.191950042737417], [27.986125946044922, -26.19426054863105], [27.986984252929688, -26.196416979445644], [27.987327575683594, -26.198881422912123], [27.98715591430664, -26.201345814222698], [27.985095977783203, -26.20381015337393], [27.983036041259766, -26.20550435628209], [27.979946136474606, -26.20550435628209], [27.97719955444336, -26.20488828535003], [27.97445297241211, -26.203656133705152], [27.972564697265625, -26.201961903900578], [27.972049713134762, -26.199035448897074] ] ] } }, { "type": "Feature", "properties": { "id": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [27.946643829345703, -26.170845301716803], [27.94269561767578, -26.183631842055114], [27.935657501220703, -26.183323749143113], [27.92741775512695, -26.17685360983018], [27.926902770996094, -26.171153427614488], [27.928619384765625, -26.165298896316028], [27.936859130859375, -26.161292995018652], [27.94509887695312, -26.158981835530525], [27.950420379638672, -26.161601146157146], [27.951793670654297, -26.166223315536712], [27.954025268554688, -26.173464345889972], [27.954025268554688, -26.179626570662702], [27.951278686523438, -26.187945057286793], [27.944583892822266, -26.19395248382672], [27.936172485351562, -26.194876675795218], [27.930850982666016, -26.19379845111899], [27.925701141357422, -26.190563717201886], [27.92278289794922, -26.18655868408986], [27.92072296142578, -26.180858976522302], [27.917118072509766, -26.174080583026957], [27.916603088378906, -26.16683959094609], [27.917118072509766, -26.162987816205614], [27.920207977294922, -26.162987816205614], [27.920894622802734, -26.166069246175482], [27.9217529296875, -26.17146155269785], [27.923297882080078, -26.177469829049862], [27.92673110961914, -26.184248025435295], [27.930335998535156, -26.18856121785662], [27.936687469482422, -26.18871525748988], [27.942352294921875, -26.187945057286793], [27.94647216796875, -26.184248025435295], [27.946815490722653, -26.178548204845022], [27.946643829345703, -26.170845301716803] ], [ [27.936859130859375, -26.16591517661071], [27.934799194335938, -26.16945872510008], [27.93497085571289, -26.173926524048102], [27.93874740600586, -26.175621161617432], [27.94149398803711, -26.17007498340995], [27.94321060180664, -26.166223315536712], [27.939090728759762, -26.164528541367826], [27.937545776367188, -26.16406632595636], [27.936859130859375, -26.16591517661071] ] ] } }, { "type": "Feature", "properties": { "id": 4 }, "geometry": { "type": "Point", "coordinates": [27.95642852783203, -26.152510345365126] } } ] } ================================================ FILE: packages/turf-simplify/test/in/fiji-hiQ.geojson ================================================ { "type": "Feature", "properties": { "tolerance": 0.005, "highQuality": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [179.97528076171875, -16.514770282237], [179.97665405273438, -16.519707611417825], [179.97390747070312, -16.523986527973733], [179.98043060302734, -16.539126548282127], [179.985237121582, -16.536822708755626], [179.98695373535156, -16.531227555400562], [179.99073028564453, -16.531556686558297], [180.00205993652344, -16.525632239869275], [180.00686645507812, -16.525961380565427], [180.01029968261716, -16.523328239288848], [180.01304626464844, -16.524644814414863], [180.01235961914062, -16.526619660274722], [180.00995635986328, -16.52694879928784], [180.00823974609372, -16.532873205577378], [180.00755310058594, -16.534847967269407], [180.01819610595703, -16.539126548282127], [180.02334594726562, -16.537810071920884], [180.02437591552734, -16.534189715617043], [180.03707885742188, -16.534189715617043], [180.04188537597656, -16.526619660274722], [180.0487518310547, -16.52826534972986], [180.0497817993164, -16.525632239869275], [180.054931640625, -16.52727793773992], [180.05939483642578, -16.52497395679397], [180.06145477294922, -16.525632239869275], [180.06488800048825, -16.515757758166256], [180.0666046142578, -16.513124477808333], [180.0655746459961, -16.5108203280625], [180.06454467773438, -16.507528637922594], [180.05596160888672, -16.490410945973114], [180.0542449951172, -16.485802077854263], [180.0494384765625, -16.484814448981634], [180.04669189453125, -16.482839176122972], [180.04634857177734, -16.479547009916406], [180.05390167236328, -16.47460865568325], [180.05596160888672, -16.47526711018803], [180.0597381591797, -16.470987115907786], [180.0600814819336, -16.467365508451035], [180.06282806396482, -16.46110984528612], [180.07347106933594, -16.455183241385555], [180.07930755615232, -16.45057353538345], [180.08686065673828, -16.44761009512282], [180.08411407470703, -16.441353794870704], [180.06832122802734, -16.437402343465862], [180.05561828613278, -16.439707366557357], [180.04806518554688, -16.448597913571174], [180.0398254394531, -16.45057353538345], [180.02609252929688, -16.46473156961583], [180.02094268798828, -16.4624268437789], [180.01441955566406, -16.464073079315213], [180.00961303710935, -16.468682464447188], [180.00446319580078, -16.476584012483762], [179.99725341796875, -16.48250996202084], [179.99553680419922, -16.487118908513903], [179.99176025390625, -16.48975254296043], [179.99038696289062, -16.49271533887906], [179.9883270263672, -16.49403212250543], [179.98661041259763, -16.50226181712924], [179.98111724853516, -16.50489524545779], [179.97940063476562, -16.50719946582597], [179.97528076171875, -16.514770282237] ] ] } } ================================================ FILE: packages/turf-simplify/test/in/geometrycollection.geojson ================================================ { "type": "GeometryCollection", "properties": { "tolerance": 0.01 }, "geometries": [ { "type": "LineString", "coordinates": [ [27.977542877197266, -26.17500493262446], [27.975482940673828, -26.17870225771557], [27.969818115234375, -26.177931991326645], [27.967071533203125, -26.177623883345735], [27.966899871826172, -26.1810130263384], [27.967758178710938, -26.1853263385099], [27.97290802001953, -26.1853263385099], [27.97496795654297, -26.18270756087535], [27.97840118408203, -26.1810130263384], [27.98011779785156, -26.183323749143113], [27.98011779785156, -26.18655868408986], [27.978744506835938, -26.18933141398614], [27.97496795654297, -26.19025564262006], [27.97119140625, -26.19040968001282], [27.969303131103516, -26.1899475672235], [27.96741485595703, -26.189639491012183], [27.9656982421875, -26.187945057286793], [27.965354919433594, -26.18563442612686], [27.96432495117187, -26.183015655416536] ] }, { "type": "Polygon", "coordinates": [ [ [27.972049713134762, -26.199035448897074], [27.9741096496582, -26.196108920345292], [27.977371215820312, -26.197495179879635], [27.978572845458984, -26.20042167359348], [27.980976104736328, -26.200729721284862], [27.982349395751953, -26.197803235312957], [27.982177734375, -26.194414580727656], [27.982177734375, -26.19256618212382], [27.98406600952148, -26.192258112838022], [27.985267639160156, -26.191950042737417], [27.986125946044922, -26.19426054863105], [27.986984252929688, -26.196416979445644], [27.987327575683594, -26.198881422912123], [27.98715591430664, -26.201345814222698], [27.985095977783203, -26.20381015337393], [27.983036041259766, -26.20550435628209], [27.979946136474606, -26.20550435628209], [27.97719955444336, -26.20488828535003], [27.97445297241211, -26.203656133705152], [27.972564697265625, -26.201961903900578], [27.972049713134762, -26.199035448897074] ] ] }, { "type": "Polygon", "coordinates": [ [ [27.946643829345703, -26.170845301716803], [27.94269561767578, -26.183631842055114], [27.935657501220703, -26.183323749143113], [27.92741775512695, -26.17685360983018], [27.926902770996094, -26.171153427614488], [27.928619384765625, -26.165298896316028], [27.936859130859375, -26.161292995018652], [27.94509887695312, -26.158981835530525], [27.950420379638672, -26.161601146157146], [27.951793670654297, -26.166223315536712], [27.954025268554688, -26.173464345889972], [27.954025268554688, -26.179626570662702], [27.951278686523438, -26.187945057286793], [27.944583892822266, -26.19395248382672], [27.936172485351562, -26.194876675795218], [27.930850982666016, -26.19379845111899], [27.925701141357422, -26.190563717201886], [27.92278289794922, -26.18655868408986], [27.92072296142578, -26.180858976522302], [27.917118072509766, -26.174080583026957], [27.916603088378906, -26.16683959094609], [27.917118072509766, -26.162987816205614], [27.920207977294922, -26.162987816205614], [27.920894622802734, -26.166069246175482], [27.9217529296875, -26.17146155269785], [27.923297882080078, -26.177469829049862], [27.92673110961914, -26.184248025435295], [27.930335998535156, -26.18856121785662], [27.936687469482422, -26.18871525748988], [27.942352294921875, -26.187945057286793], [27.94647216796875, -26.184248025435295], [27.946815490722653, -26.178548204845022], [27.946643829345703, -26.170845301716803] ], [ [27.936859130859375, -26.16591517661071], [27.934799194335938, -26.16945872510008], [27.93497085571289, -26.173926524048102], [27.93874740600586, -26.175621161617432], [27.94149398803711, -26.17007498340995], [27.94321060180664, -26.166223315536712], [27.939090728759762, -26.164528541367826], [27.937545776367188, -26.16406632595636], [27.936859130859375, -26.16591517661071] ] ] }, { "type": "Point", "coordinates": [27.95642852783203, -26.152510345365126] } ] } ================================================ FILE: packages/turf-simplify/test/in/issue-#1144.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-70.603637, -33.399918], [-70.614624, -33.395332], [-70.639343, -33.392466], [-70.659942, -33.394759], [-70.683975, -33.404504], [-70.697021, -33.419406], [-70.701141, -33.434306], [-70.700454, -33.446339], [-70.694274, -33.458369], [-70.682601, -33.465816], [-70.668869, -33.472117], [-70.646209, -33.473835], [-70.624923, -33.472117], [-70.609817, -33.468107], [-70.595397, -33.458369], [-70.587158, -33.442901], [-70.587158, -33.426283], [-70.590591, -33.414248], [-70.594711, -33.406224], [-70.603637, -33.399918] ] ] } } ================================================ FILE: packages/turf-simplify/test/in/linestring.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-80.51399230957031, 28.069556808283608], [-80.51193237304688, 28.057438520876673], [-80.49819946289062, 28.05622661698537], [-80.5023193359375, 28.04471284867091], [-80.48583984375, 28.042288740362853], [-80.50575256347656, 28.028349057505775], [-80.50163269042969, 28.02168161433489], [-80.49476623535156, 28.021075462659883], [-80.48652648925781, 28.021075462659883], [-80.47691345214844, 28.021075462659883], [-80.46936035156249, 28.015619944017807], [-80.47760009765624, 28.007133032319448], [-80.49201965332031, 27.998039170620494], [-80.46730041503906, 27.962262536875905], [-80.46524047851562, 27.91980029694533], [-80.40550231933594, 27.930114089618602], [-80.39657592773438, 27.980455528671527], [-80.41305541992188, 27.982274659104082], [-80.42953491210938, 27.990763528690582], [-80.4144287109375, 28.00955793247135], [-80.3594970703125, 27.972572275562527], [-80.36224365234375, 27.948919060105453], [-80.38215637207031, 27.913732900444284], [-80.41786193847656, 27.881570017022806], [-80.40550231933594, 27.860932192608534], [-80.39382934570312, 27.85425440786446], [-80.37803649902344, 27.86336037597851], [-80.38215637207031, 27.880963078302393], [-80.36842346191405, 27.888246118437756], [-80.35743713378906, 27.882176952341734], [-80.35469055175781, 27.86882358965466], [-80.3594970703125, 27.8421119273228], [-80.37940979003906, 27.83300417483936], [-80.39932250976561, 27.82511017099003], [-80.40069580078125, 27.79352841586229], [-80.36155700683594, 27.786846483587688], [-80.35537719726562, 27.794743268514615], [-80.36705017089844, 27.800209937418252], [-80.36889553070068, 27.801918215058347], [-80.3690242767334, 27.803930152059845], [-80.36713600158691, 27.805942051806845], [-80.36584854125977, 27.805524490772143], [-80.36563396453857, 27.80465140342285], [-80.36619186401367, 27.803095012921272], [-80.36623477935791, 27.801842292177923], [-80.36524772644043, 27.80127286888392], [-80.36224365234375, 27.801158983867033], [-80.36065578460693, 27.802639479776524], [-80.36138534545898, 27.803740348273823], [-80.36220073699951, 27.804803245204976], [-80.36190032958984, 27.806625330038287], [-80.3609561920166, 27.80742248254359], [-80.35932540893555, 27.806853088493792], [-80.35889625549315, 27.806321651354835], [-80.35902500152588, 27.805448570411585], [-80.35863876342773, 27.804461600896783], [-80.35739421844482, 27.804461600896783], [-80.35700798034668, 27.805334689771293], [-80.35696506500244, 27.80673920932572], [-80.35726547241211, 27.80772615814989], [-80.35808086395264, 27.808295547623707], [-80.3585958480835, 27.80928248230861], [-80.35653591156006, 27.80943431761813], [-80.35572052001953, 27.808637179875486], [-80.3555917739868, 27.80772615814989], [-80.3555917739868, 27.806055931810487], [-80.35572052001953, 27.803778309057556], [-80.35537719726562, 27.801804330717825], [-80.3554630279541, 27.799564581098746], [-80.35670757293701, 27.799564581098746], [-80.35499095916748, 27.796831264786892], [-80.34610748291016, 27.79478123244122], [-80.34404754638672, 27.802070060660014], [-80.34748077392578, 27.804955086774896], [-80.3433609008789, 27.805790211616266], [-80.34353256225586, 27.8101555324401], [-80.33499240875244, 27.810079615315917], [-80.33383369445801, 27.805676331334084], [-80.33022880554199, 27.801652484744796], [-80.32872676849365, 27.80848534345178] ] } } ================================================ FILE: packages/turf-simplify/test/in/multilinestring.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-80.51399230957031, 28.069556808283608], [-80.51193237304688, 28.057438520876673], [-80.49819946289062, 28.05622661698537], [-80.5023193359375, 28.04471284867091], [-80.48583984375, 28.042288740362853], [-80.50575256347656, 28.028349057505775], [-80.50163269042969, 28.02168161433489], [-80.49476623535156, 28.021075462659883], [-80.48652648925781, 28.021075462659883], [-80.47691345214844, 28.021075462659883], [-80.46936035156249, 28.015619944017807], [-80.47760009765624, 28.007133032319448], [-80.49201965332031, 27.998039170620494], [-80.46730041503906, 27.962262536875905], [-80.46524047851562, 27.91980029694533], [-80.40550231933594, 27.930114089618602], [-80.39657592773438, 27.980455528671527], [-80.41305541992188, 27.982274659104082], [-80.42953491210938, 27.990763528690582], [-80.4144287109375, 28.00955793247135], [-80.3594970703125, 27.972572275562527], [-80.36224365234375, 27.948919060105453], [-80.38215637207031, 27.913732900444284], [-80.41786193847656, 27.881570017022806], [-80.40550231933594, 27.860932192608534], [-80.39382934570312, 27.85425440786446], [-80.37803649902344, 27.86336037597851], [-80.38215637207031, 27.880963078302393], [-80.36842346191405, 27.888246118437756], [-80.35743713378906, 27.882176952341734], [-80.35469055175781, 27.86882358965466], [-80.3594970703125, 27.8421119273228], [-80.37940979003906, 27.83300417483936], [-80.39932250976561, 27.82511017099003], [-80.40069580078125, 27.79352841586229], [-80.36155700683594, 27.786846483587688], [-80.35537719726562, 27.794743268514615], [-80.36705017089844, 27.800209937418252], [-80.36889553070068, 27.801918215058347], [-80.3690242767334, 27.803930152059845], [-80.36713600158691, 27.805942051806845], [-80.36584854125977, 27.805524490772143], [-80.36563396453857, 27.80465140342285], [-80.36619186401367, 27.803095012921272], [-80.36623477935791, 27.801842292177923], [-80.36524772644043, 27.80127286888392], [-80.36224365234375, 27.801158983867033], [-80.36065578460693, 27.802639479776524], [-80.36138534545898, 27.803740348273823], [-80.36220073699951, 27.804803245204976], [-80.36190032958984, 27.806625330038287], [-80.3609561920166, 27.80742248254359], [-80.35932540893555, 27.806853088493792], [-80.35889625549315, 27.806321651354835], [-80.35902500152588, 27.805448570411585], [-80.35863876342773, 27.804461600896783], [-80.35739421844482, 27.804461600896783], [-80.35700798034668, 27.805334689771293], [-80.35696506500244, 27.80673920932572], [-80.35726547241211, 27.80772615814989], [-80.35808086395264, 27.808295547623707], [-80.3585958480835, 27.80928248230861], [-80.35653591156006, 27.80943431761813], [-80.35572052001953, 27.808637179875486], [-80.3555917739868, 27.80772615814989], [-80.3555917739868, 27.806055931810487], [-80.35572052001953, 27.803778309057556], [-80.35537719726562, 27.801804330717825], [-80.3554630279541, 27.799564581098746], [-80.35670757293701, 27.799564581098746], [-80.35499095916748, 27.796831264786892], [-80.34610748291016, 27.79478123244122], [-80.34404754638672, 27.802070060660014], [-80.34748077392578, 27.804955086774896], [-80.3433609008789, 27.805790211616266], [-80.34353256225586, 27.8101555324401], [-80.33499240875244, 27.810079615315917], [-80.33383369445801, 27.805676331334084], [-80.33022880554199, 27.801652484744796], [-80.32872676849365, 27.80848534345178] ], [ [-80.51193237304688, 28.091366281406945], [-80.47760009765624, 28.074403740607135], [-80.47210693359375, 28.058650411105386], [-80.46936035156249, 28.01016414897993], [-80.45425415039061, 27.99682659773872], [-80.44464111328125, 28.02956127552927], [-80.43228149414062, 28.024712321517228], [-80.40069580078125, 28.01743848094423], [-80.3704833984375, 28.004101830368654], [-80.35537719726562, 27.991976169784156], [-80.3485107421875, 27.947099367319762], [-80.32379150390625, 27.937393821330247], [-80.34027099609375, 27.879142241732627], [-80.35263061523436, 27.90948552034696], [-80.36773681640625, 27.858503954841247], [-80.34027099609375, 27.822073862795612], [-80.29220581054688, 27.853647316127383], [-80.30319213867188, 27.860932192608534], [-80.30319213867188, 27.88278388425912], [-80.2935791015625, 27.894921808206057] ] ] } } ================================================ FILE: packages/turf-simplify/test/in/multipoint.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [0, 0], [1, 2] ] } } ================================================ FILE: packages/turf-simplify/test/in/multipolygon.geojson ================================================ { "type": "Feature", "properties": { "country": "South Africa", "tolerance": 0.01 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [19.418070002000036, -34.68667999799993], [19.418070002000036, -34.686830002999955], [19.41808000000003, -34.686920002999955], [19.418110010000078, -34.68702000099995], [19.418210000000045, -34.68706000199995], [19.418250001000047, -34.68711000099995], [19.41821999900003, -34.68724999999995], [19.41820000200005, -34.687349996999956], [19.41808000000003, -34.687349996999956], [19.41799000000003, -34.687330000999964], [19.41794999900003, -34.687370001999966], [19.41794999900003, -34.68747999799996], [19.417999998000028, -34.68754000299998], [19.418110010000078, -34.68764000099998], [19.418179998000028, -34.68774999699997], [19.41814999500002, -34.68786000099993], [19.418070002000036, -34.68785000299994], [19.41800999700007, -34.687810001999935], [19.41799000000003, -34.687869991999946], [19.41795999800007, -34.68794000299994], [19.417890002000036, -34.68796999799997], [19.417770000000075, -34.68791999899997], [19.417729999000073, -34.68796999799997], [19.41770000400004, -34.68804000099993], [19.417819999000073, -34.68810999599998], [19.41791999700007, -34.68825000299995], [19.41791999700007, -34.68838000299996], [19.41786999800007, -34.68844000099995], [19.417710003000025, -34.688399999999945], [19.417670002000023, -34.68844000099995], [19.417729999000073, -34.68853999899994], [19.417779990000042, -34.68862999799995], [19.417760002000023, -34.68879999999996], [19.417729999000073, -34.688849990999984], [19.417670002000023, -34.68891000399998], [19.41755999800006, -34.68891000399998], [19.41750999900006, -34.68887000299998], [19.417490002000022, -34.688830001999975], [19.417460000000062, -34.68878000299998], [19.417299997000043, -34.68878000299998], [19.41724000000005, -34.688830001999975], [19.417249990000073, -34.688920001999975], [19.417230001000064, -34.68906000099997], [19.41715000000005, -34.68911999799997], [19.417109999000047, -34.68915999899997], [19.41701000100005, -34.68915999899997], [19.416929999000047, -34.68912999599996], [19.416889999000034, -34.68906000099997], [19.41683000200004, -34.68906000099997], [19.41679999100006, -34.68910999999997], [19.416690003000042, -34.68910999999997], [19.416640012000073, -34.68903999599996], [19.41654999600007, -34.68903999599996], [19.416489999000078, -34.68910999999997], [19.416390001000025, -34.68919000099993], [19.416300001000025, -34.68920999799997], [19.416250002000027, -34.68912999599996], [19.41620000300003, -34.68910999999997], [19.416110011000058, -34.689149999999984], [19.41600999800005, -34.68924999799998], [19.415900001000068, -34.68924999799998], [19.415860001000055, -34.68920999799997], [19.415810002000057, -34.68923000199993], [19.415730000000053, -34.68927000299993], [19.415640000000053, -34.68928000099993], [19.415590001000055, -34.68930000499995], [19.415659997000034, -34.689439995999976], [19.415730000000053, -34.689490002999946], [19.41571000400006, -34.68959000099994], [19.41564999900004, -34.689630001999944], [19.415590001000055, -34.68977000099994], [19.41549000300006, -34.68990999899995], [19.41542000000004, -34.689969995999945], [19.415299998000023, -34.69004999799995], [19.415219996000076, -34.69000999699995], [19.41515000100003, -34.689869990999966], [19.414989998000067, -34.689869990999966], [19.41498000000007, -34.68994000199996], [19.414960003000033, -34.689990000999956], [19.414909996000063, -34.69004999799995], [19.41479999200004, -34.690039999999954], [19.41476000700004, -34.689969995999945], [19.414700002000075, -34.68991999799994], [19.414610002000074, -34.68991999799994], [19.41454999700005, -34.689969995999945], [19.414520003000064, -34.690059995999945], [19.414449999000055, -34.69008999899995], [19.41427999800004, -34.690059995999945], [19.41423000700007, -34.68999999899995], [19.414139999000042, -34.689969995999945], [19.41396000000003, -34.689879996999935], [19.413889996000023, -34.68980000299996], [19.41379999700007, -34.689739997999936], [19.413699999000073, -34.68974999599993], [19.41369000000003, -34.689810000999955], [19.41369000000003, -34.68991999799994], [19.413609999000073, -34.689969995999945], [19.413500003000024, -34.689969995999945], [19.413359996000054, -34.68998000299996], [19.413289993000035, -34.689869990999966], [19.413230003000024, -34.68985999999995], [19.41316000000006, -34.68990999899995], [19.41314000400007, -34.68999999899995], [19.413169998000058, -34.690150003999975], [19.413110001000064, -34.69028000399993], [19.412899999000047, -34.69028000399993], [19.412840002000053, -34.69032000499993], [19.412840002000053, -34.69035998999993], [19.412750002000053, -34.69042000299993], [19.412649996000027, -34.69046000399993], [19.41253000200004, -34.69046000399993], [19.412419998000075, -34.69043000099998], [19.412369999000077, -34.69032000499993], [19.41233999600007, -34.69021000099997], [19.412220002000026, -34.690219998999964], [19.41208000300003, -34.690219998999964], [19.412029996000058, -34.690150003999975], [19.412059999000064, -34.69003000199996], [19.41206999700006, -34.68985999999995], [19.41197999700006, -34.68977999899994], [19.41183999800006, -34.68979000499996], [19.411700000000053, -34.68977000099994], [19.411600002000057, -34.68968000099994], [19.411579997000047, -34.689559997999936], [19.41161999800005, -34.689400002999946], [19.411539997000034, -34.689349995999976], [19.411470001000055, -34.689400002999946], [19.411430000000053, -34.68951999799998], [19.411309998000036, -34.68953000399995], [19.411240003000046, -34.689490002999946], [19.411200002000044, -34.689349995999976], [19.411139997000078, -34.68923000199993], [19.411099996000075, -34.68924999799998], [19.410990000000027, -34.689239999999984], [19.410810000000026, -34.68918000299993], [19.41085000100003, -34.68905000299998], [19.410930003000033, -34.68897000099997], [19.410990000000027, -34.68888000099997], [19.410959997000077, -34.68878000299998], [19.410909998000022, -34.68861000199996], [19.410840003000033, -34.688579998999955], [19.41077000000007, -34.688669998999956], [19.410720001000072, -34.688719997999954], [19.410559998000053, -34.688740001999975], [19.41050000000007, -34.68869001099995], [19.410429989000022, -34.68862999799995], [19.41033999700005, -34.68867999699995], [19.410170004000065, -34.68876999699995], [19.410060000000044, -34.688669998999956], [19.410100001000046, -34.68853999899994], [19.410050002000048, -34.68843000199996], [19.409960002000048, -34.68830000199995], [19.409870002000048, -34.68816000299995], [19.409880000000044, -34.68804999899993], [19.409929999000042, -34.68798000399994], [19.41000000300005, -34.68795999899993], [19.410130003000063, -34.68799999999993], [19.410239999000055, -34.68804999899993], [19.410379998000053, -34.68803000299994], [19.41050000000007, -34.68795999899993], [19.410620003000076, -34.68794000299994], [19.410689998000066, -34.68795999899993], [19.41077000000007, -34.68804000099993], [19.410810000000026, -34.68814999699998], [19.41081999900007, -34.68823999699998], [19.410930003000033, -34.68832999699998], [19.411190004000048, -34.68826999899994], [19.411240003000046, -34.688189997999984], [19.411359997000034, -34.688189997999984], [19.41146000300006, -34.68830000199995], [19.411510002000057, -34.688399999999945], [19.41147999900005, -34.68854999699994], [19.411430000000053, -34.688600003999966], [19.41147999900005, -34.688719997999954], [19.411610000000053, -34.68879000099997], [19.411690001000068, -34.68885999699995], [19.411759997000047, -34.68888000099997], [19.411929998000062, -34.68885999699995], [19.41200000200007, -34.68881000599998], [19.41205000100007, -34.68885999699995], [19.41206999700006, -34.68894999699995], [19.412040002000026, -34.68901999999997], [19.412040002000026, -34.689079996999965], [19.41206999700006, -34.689149999999984], [19.41215999700006, -34.689149999999984], [19.41226000300003, -34.68915999899997], [19.412379997000073, -34.689220011999964], [19.412400001000037, -34.68928999899998], [19.412469997000073, -34.689310003999935], [19.412580001000038, -34.689349995999976], [19.412760008000078, -34.68941000199993], [19.412809999000046, -34.68946000099993], [19.413060002000066, -34.68946000099993], [19.413269996000054, -34.68941000199993], [19.413320003000024, -34.689349995999976], [19.413280002000022, -34.68924999799998], [19.413269996000054, -34.68920999799997], [19.413280002000022, -34.689149999999984], [19.413380000000075, -34.68911999799997], [19.413470000000075, -34.68911999799997], [19.413560000000075, -34.689169996999965], [19.413630003000037, -34.689239999999984], [19.41370999700007, -34.68924999799998], [19.41374999800007, -34.689149999999984], [19.41374999800007, -34.68901999999997], [19.413789998000027, -34.68893999799997], [19.41385000400004, -34.68893999799997], [19.413950001000046, -34.68900000399998], [19.413969998000027, -34.68906000099997], [19.414019997000025, -34.689149999999984], [19.41408000200005, -34.68919000099993], [19.414139999000042, -34.68918000299993], [19.41418999800004, -34.68911999799997], [19.41417000200005, -34.688989996999965], [19.41418999800004, -34.688920001999975], [19.41427999800004, -34.688920001999975], [19.414340003000063, -34.68892999999997], [19.41439000200006, -34.68903999599996], [19.414470004000066, -34.68901999999997], [19.414539999000056, -34.68891000399998], [19.414580000000058, -34.68885999699995], [19.414610002000074, -34.688830001999975], [19.414660001000072, -34.688830001999975], [19.41472999700005, -34.68893999799997], [19.41472999700005, -34.68901999999997], [19.414740003000077, -34.68910999999997], [19.41476000700004, -34.689149999999984], [19.41479999200004, -34.689169996999965], [19.41489000000007, -34.689169996999965], [19.41493999900007, -34.689149999999984], [19.41492000200003, -34.68906000099997], [19.414899998000067, -34.68900000399998], [19.414899998000067, -34.688920001999975], [19.41492000200003, -34.688830001999975], [19.41498000000007, -34.68883999999997], [19.415069999000025, -34.68879999999996], [19.415090004000035, -34.68875000099996], [19.41510000200003, -34.68867999699995], [19.415159999000025, -34.68862999799995], [19.415230002000044, -34.68862999799995], [19.41533000000004, -34.68861000199996], [19.41540000400005, -34.68853999899994], [19.41540000400005, -34.68844000099995], [19.41542000000004, -34.68835000099995], [19.41549000300006, -34.68835000099995], [19.415569997000034, -34.68838000299996], [19.415609998000036, -34.68847000299996], [19.415680001000055, -34.68867999699995], [19.415779991000022, -34.68867999699995], [19.415900001000068, -34.68862999799995], [19.415980003000072, -34.68858999799994], [19.41603000200007, -34.688489999999945], [19.416040000000066, -34.68844000099995], [19.416089999000064, -34.688419995999936], [19.416179999000065, -34.68848000099996], [19.416260000000023, -34.68852999999996], [19.416319998000063, -34.68854999699994], [19.416399999000078, -34.68853999899994], [19.416520001000038, -34.688489999999945], [19.416610001000038, -34.68845999699994], [19.416660000000036, -34.688489999999945], [19.416700001000038, -34.68853999899994], [19.41675999000006, -34.68849999799994], [19.41675999000006, -34.68844000099995], [19.416780003000042, -34.68838000299996], [19.41679999100006, -34.68835999099997], [19.41692000100005, -34.688399999999945], [19.41698999700003, -34.688419995999936], [19.417040004000057, -34.68844000099995], [19.417140002000053, -34.688399999999945], [19.417140002000053, -34.68834000299995], [19.41710000100005, -34.68825000299995], [19.41710000100005, -34.68814999699998], [19.417180002000066, -34.68808999999993], [19.417230001000064, -34.68808999999993], [19.41740000300007, -34.688099997999984], [19.41740000300007, -34.68805999699998], [19.417360002000066, -34.68796999799997], [19.417370000000062, -34.687869991999946], [19.417440003000024, -34.687779999999975], [19.417500001000064, -34.687709996999956], [19.41750999900006, -34.68764000099998], [19.417609997000056, -34.68755999999996], [19.417630001000077, -34.687489995999954], [19.417550000000062, -34.68746999999996], [19.417440003000024, -34.68746999999996], [19.417370000000062, -34.68742999899996], [19.417360002000066, -34.687349996999956], [19.417389996000054, -34.68720999899995], [19.417530003000024, -34.68717999599994], [19.41755999800006, -34.68714000299997], [19.417530003000024, -34.68706000199995], [19.417440003000024, -34.68702000099995], [19.417370000000062, -34.686989997999945], [19.417339997000056, -34.686899998999934], [19.417370000000062, -34.686779995999984], [19.41741999900006, -34.68672999699993], [19.417530003000024, -34.686759999999936], [19.417630001000077, -34.686779995999984], [19.41774000500004, -34.686779995999984], [19.417770000000075, -34.68667999799993], [19.417750003000037, -34.68653999999998], [19.417800002000035, -34.68649000099998], [19.41791999700007, -34.68649000099998], [19.41800999700007, -34.68653000099994], [19.41806000300005, -34.68658999899998], [19.418070002000036, -34.68667999799993] ] ], [ [ [19.418799998000054, -34.67816000099998], [19.418900004000022, -34.67817999699997], [19.419050001000073, -34.67804999699996], [19.419119996000063, -34.677899999999966], [19.41916999500006, -34.67786999699996], [19.419279999000025, -34.67786999699996], [19.419379997000078, -34.67792000399993], [19.41945000100003, -34.67802000199998], [19.419390003000046, -34.67813999599997], [19.419329998000023, -34.67820999999998], [19.419279999000025, -34.67826999699997], [19.419260003000034, -34.67833000199994], [19.419329998000023, -34.67838999899993], [19.419379997000078, -34.67839999699993], [19.41945000100003, -34.67848999699993], [19.419459999000026, -34.678590002999954], [19.419530002000045, -34.678609998999946], [19.419670001000043, -34.678590002999954], [19.41967999900004, -34.678410002999954], [19.419670001000043, -34.67829999899993], [19.419710002000045, -34.67820999999998], [19.419819998000037, -34.67816999899998], [19.419999997000048, -34.67820999999998], [19.420160000000067, -34.678219997999975], [19.420179997000048, -34.67829999899993], [19.420179997000048, -34.67838999899993], [19.42024000200007, -34.67842000199994], [19.42035999600006, -34.67839999699993], [19.420430000000067, -34.67829999899993], [19.420519999000078, -34.67829999899993], [19.420650000000023, -34.67828000299994], [19.420709997000074, -34.67829999899993], [19.420759988000043, -34.67838999899993], [19.420780000000036, -34.67846000199995], [19.420839998000076, -34.678539995999984], [19.420960000000036, -34.67852999799993], [19.42101999700003, -34.67848999699993], [19.421050000000037, -34.67834999799993], [19.421139999000047, -34.67834999799993], [19.421279998000045, -34.678410002999954], [19.421300002000066, -34.67848999699993], [19.421329997000043, -34.678590002999954], [19.42137999600004, -34.67864000199995], [19.42147000400007, -34.678590002999954], [19.42153999900006, -34.67851999199996], [19.421639997000057, -34.67851000099995], [19.421759999000074, -34.678539995999984], [19.421819997000057, -34.67860000099995], [19.421840001000078, -34.678680002999954], [19.421830003000025, -34.67878000099995], [19.421830003000025, -34.67884999599994], [19.42194999700007, -34.67882999999995], [19.421999996000068, -34.67878000099995], [19.42203999700007, -34.67873000199995], [19.422190002000036, -34.67873000199995], [19.42223000300004, -34.67875999599994], [19.422280002000036, -34.67890000299997], [19.422259997000026, -34.67897000599993], [19.422259997000026, -34.67905999799996], [19.42233999900003, -34.679040001999965], [19.42241000200005, -34.678929997999944], [19.422439997000026, -34.67886999999996], [19.422559999000043, -34.67886999999996], [19.422690000000046, -34.67891999899996], [19.42274999700004, -34.67899000299997], [19.422710004000066, -34.67908000199998], [19.42265999700004, -34.67917000199998], [19.422619996000037, -34.67925000399998], [19.42259000200005, -34.67935000199998], [19.42268000100006, -34.679400000999976], [19.422760003000064, -34.67930000299998], [19.422810002000062, -34.67922999899997], [19.422850003000065, -34.67917000199998], [19.42295000100006, -34.67915999599995], [19.42300000000006, -34.67921000299998], [19.423030002000075, -34.67927999799997], [19.42300000000006, -34.679400000999976], [19.422959999000057, -34.67948999999993], [19.42300000000006, -34.679539991999945], [19.423120002000076, -34.679520002999936], [19.423210002000076, -34.67948999999993], [19.42334000200003, -34.679520002999936], [19.423420004000036, -34.67954999799997], [19.423459997000066, -34.67963999699998], [19.423399999000026, -34.67972999699998], [19.423329996000064, -34.67980000099993], [19.423290003000034, -34.67985999799998], [19.423279997000066, -34.67992000299995], [19.423279997000066, -34.680020000999946], [19.423350000000028, -34.680089995999936], [19.423420004000036, -34.68014000299996], [19.423420004000036, -34.68024000099996], [19.423329996000064, -34.68029999799995], [19.423170001000074, -34.68024000099996], [19.423099998000055, -34.680180003999965], [19.423020004000023, -34.68015000099996], [19.422980003000077, -34.680159999999944], [19.42300000000006, -34.68020999899994], [19.42295000100006, -34.68029999799995], [19.42295000100006, -34.68038999799995], [19.423030002000075, -34.680429998999955], [19.42304000000007, -34.680540002999976], [19.42300000000006, -34.68061999699995], [19.422890003000077, -34.68061999699995], [19.422810002000062, -34.680500001999974], [19.422760003000064, -34.68049000399998], [19.42273000000006, -34.68058000399998], [19.42274999700004, -34.680680001999974], [19.422690000000046, -34.680749996999964], [19.42251999800004, -34.680770000999985], [19.422439997000026, -34.680680001999974], [19.422460001000047, -34.680540002999976], [19.422380000000032, -34.680500001999974], [19.422280002000036, -34.68052999699995], [19.422280002000036, -34.680590001999974], [19.42209000400004, -34.680680001999974], [19.421999996000068, -34.68072000199993], [19.421989998000072, -34.68091999799998], [19.421930001000078, -34.68097000499995], [19.421880002000023, -34.68097000499995], [19.42180999800007, -34.68091999799998], [19.421759999000074, -34.68085001099996], [19.42167999800006, -34.680749996999964], [19.421619993000036, -34.68073000099997], [19.421570002000067, -34.680749996999964], [19.421530001000065, -34.68086999899998], [19.42153999900006, -34.68097000499995], [19.42152000300007, -34.68108999999998], [19.42144999900006, -34.68108999999998], [19.42137999600004, -34.68103000199994], [19.42134000300007, -34.68094000299993], [19.421279998000045, -34.68099999999998], [19.421260002000054, -34.68114999699998], [19.421239997000043, -34.68127999699993], [19.421149998000033, -34.681300001999944], [19.421129993000022, -34.681229997999935], [19.421099999000035, -34.68112999999994], [19.42101999700003, -34.68112999999994], [19.421009999000034, -34.681229997999935], [19.421030003000055, -34.681319997999935], [19.421120003000055, -34.68148999899995], [19.421099999000035, -34.68161000199996], [19.42100000100004, -34.681660000999955], [19.42092999700003, -34.681660000999955], [19.420850004000044, -34.68174000199997], [19.420759988000043, -34.681749999999965], [19.420709997000074, -34.68188000099997], [19.420659998000076, -34.68198998899993], [19.420619997000074, -34.68203999599996], [19.420519999000078, -34.68201000199997], [19.420439998000063, -34.68197000099997], [19.42039999700006, -34.68198998899993], [19.420389999000065, -34.68205000199998], [19.420389999000065, -34.68213000399993], [19.42035999600006, -34.68223000199998], [19.42020000100007, -34.682249997999975], [19.420089997000048, -34.68222000399993], [19.41997000300006, -34.68218000299993], [19.419930002000058, -34.68228000099998], [19.41997000300006, -34.68237999899998], [19.41997000300006, -34.68249000299994], [19.419890001000056, -34.682549999999935], [19.419890001000056, -34.682620002999954], [19.41989999900005, -34.68269999699993], [19.41983000400006, -34.682800002999954], [19.419710002000045, -34.682800002999954], [19.419620010000074, -34.68268000099994], [19.41949999900004, -34.682659995999984], [19.41949999900004, -34.68273999799993], [19.41952000400005, -34.68285000999998], [19.419490001000042, -34.68294000199995], [19.41936000100003, -34.68290000099995], [19.41931000200003, -34.682800002999954], [19.419210004000035, -34.68276000199995], [19.41914999900007, -34.68294000199995], [19.419119996000063, -34.68308999899995], [19.418950003000077, -34.68316999999996], [19.418860003000077, -34.68309999699994], [19.418709998000054, -34.68297000399997], [19.418639995000035, -34.68303000099996], [19.41865000100006, -34.68311000299997], [19.418669997000052, -34.68325999999996], [19.418619998000054, -34.683319996999955], [19.418520000000058, -34.68330999899996], [19.418430001000047, -34.68324000299998], [19.418370003000064, -34.683160001999966], [19.41829000200005, -34.68321999899996], [19.418259999000043, -34.68330999899996], [19.41829000200005, -34.683409996999956], [19.41829000200005, -34.68352999899997], [19.418170000000032, -34.68352999899997], [19.41806000300005, -34.683479999999975], [19.417980002000036, -34.68336999599995], [19.41782999700007, -34.68337999399995], [19.417810001000078, -34.68347000199998], [19.41788000400004, -34.683600001999935], [19.41790000000003, -34.683690001999935], [19.417890002000036, -34.68378999999993], [19.417810001000078, -34.68383999899993], [19.417670002000023, -34.68378999999993], [19.417570004000027, -34.68371999699997], [19.417540001000077, -34.683780001999935], [19.417590000000075, -34.68386999399996], [19.417609997000056, -34.68404000299995], [19.41755999800006, -34.68409000199995], [19.41750999900006, -34.684009999999944], [19.417429997000056, -34.68393999699998], [19.417370000000062, -34.683889997999984], [19.41726000400007, -34.68392999899993], [19.417249990000073, -34.68405999899994], [19.417299997000043, -34.68418000199995], [19.417299997000043, -34.68426000299996], [19.417230001000064, -34.68426000299996], [19.41716999600004, -34.684189999999944], [19.41707999600004, -34.68413000299995], [19.417019999000047, -34.68404000299995], [19.416929999000047, -34.68404000299995], [19.41692000100005, -34.68413000299995], [19.416950004000057, -34.68422000299995], [19.416960002000053, -34.68428999799994], [19.41689999700003, -34.68432000799993], [19.41679999100006, -34.684279999999944], [19.41666999800003, -34.68418000199995], [19.41656000200004, -34.684230000999946], [19.41651000300004, -34.684299995999936], [19.41656000200004, -34.68446999699995], [19.416610001000038, -34.68458000199996], [19.416579999000078, -34.684660002999976], [19.41645999600007, -34.684639998999955], [19.416359998000075, -34.68458000199996], [19.416250002000027, -34.68450999799995], [19.416160002000026, -34.68441999799995], [19.41600999800005, -34.68440999999996], [19.41594000200007, -34.68446999699995], [19.41600999800005, -34.68458000199996], [19.416070003000073, -34.68467999999996], [19.41608000100007, -34.68476000099997], [19.41600999800005, -34.684819997999966], [19.41608000100007, -34.68494000099997], [19.416160002000026, -34.685010003999935], [19.416179999000065, -34.68507999899998], [19.416179999000065, -34.68517999699998], [19.416059997000048, -34.685229995999975], [19.41594000200007, -34.68512999799998], [19.41586999900005, -34.68512999799998], [19.41585000200007, -34.685190002999946], [19.415980003000072, -34.68532000399995], [19.41599000100007, -34.68541000399995], [19.41594000200007, -34.685510001999944], [19.415749997000034, -34.685420001999944], [19.41560000000004, -34.68541000399995], [19.41551000000004, -34.68547000099994], [19.41551000000004, -34.68565999899994], [19.415450003000046, -34.68569999899995], [19.415320002000044, -34.68565999899994], [19.415180003000046, -34.685619997999936], [19.415129996000076, -34.68569999899995], [19.415129996000076, -34.685849995999945], [19.415079998000067, -34.68597999699995], [19.415050003000033, -34.68601999799995], [19.41519000200003, -34.686189998999964], [19.415169997000078, -34.68628999699996], [19.41510000200003, -34.68632999799996], [19.41501000200003, -34.68628999699996], [19.41484999900007, -34.686189998999964], [19.41472000600004, -34.68618000099997], [19.41472000600004, -34.68623999799996], [19.414819996000062, -34.68637999699996], [19.414859997000065, -34.68648000299993], [19.414819996000062, -34.686549997999975], [19.414670000000058, -34.68652000299994], [19.414580000000058, -34.68644999999998], [19.41444000100006, -34.68649000099998], [19.41445999700005, -34.686669999999935], [19.41441999700004, -34.686740003999944], [19.414319999000043, -34.686740003999944], [19.414220001000047, -34.686650003999944], [19.41418999800004, -34.68644999999998], [19.414059998000027, -34.68641999699997], [19.41394000300005, -34.68652000299994], [19.413770002000035, -34.68659999699997], [19.413640001000033, -34.68652000299994], [19.41361999700007, -34.68639000299993], [19.413699999000073, -34.68628999699996], [19.413789998000027, -34.68621000299993], [19.413770002000035, -34.68606999699995], [19.413630003000037, -34.686099998999964], [19.41352999700007, -34.686189998999964], [19.413460002000022, -34.68617000199998], [19.413439998000058, -34.68601999799995], [19.413439998000058, -34.68591000099997], [19.413370002000022, -34.68578999899995], [19.413230003000024, -34.685759996999934], [19.413150002000066, -34.68586999299998], [19.41307000000006, -34.68591000099997], [19.412949998000045, -34.68586000199997], [19.412949998000045, -34.68572000399996], [19.41289000100005, -34.68556999899994], [19.412769999000034, -34.68551999999994], [19.41259999700003, -34.685619997999936], [19.412490001000037, -34.68573000199996], [19.41224999600007, -34.685690000999955], [19.41224999600007, -34.68556999899994], [19.41226000300003, -34.68547999899994], [19.412199997000073, -34.68537999299997], [19.412059999000064, -34.68541000399995], [19.411929998000062, -34.685510001999944], [19.41177999300004, -34.68551999999994], [19.411700000000053, -34.68542999999994], [19.411680003000072, -34.68530999799998], [19.411579997000047, -34.68521999799998], [19.411439999000038, -34.68520000199993], [19.411340001000042, -34.68517999699998], [19.411340001000042, -34.68507000099993], [19.411439999000038, -34.685010003999935], [19.411489998000036, -34.68494999899997], [19.41139000000004, -34.68485999899997], [19.41130000000004, -34.68481000799994], [19.41131999600003, -34.684729997999966], [19.41139000000004, -34.68471999999997], [19.41152999800005, -34.68454000099996], [19.411690001000068, -34.684549998999955], [19.41181999400004, -34.68450999799995], [19.41181999400004, -34.68440999999996], [19.411680003000072, -34.68428999799994], [19.411579997000047, -34.68423999899994], [19.411579997000047, -34.684099999999944], [19.411629996000045, -34.68400000199995], [19.411770003000072, -34.68400000199995], [19.411870001000068, -34.684050000999946], [19.411969999000064, -34.684050000999946], [19.41208000300003, -34.68398998799995], [19.412029996000058, -34.68386000399994], [19.41191000200007, -34.68375999799997], [19.41188999700006, -34.683659999999975], [19.411960001000068, -34.683569999999975], [19.41206999700006, -34.683569999999975], [19.412140000000022, -34.68362999699997], [19.412239998000075, -34.68366999799997], [19.41233999600007, -34.68366999799997], [19.41239000300004, -34.683569999999975], [19.41233999600007, -34.68349998899998], [19.41239000300004, -34.68339999899996], [19.412490001000037, -34.68335999799996], [19.412559996000027, -34.68334000899995], [19.41250999700003, -34.68321999899996], [19.41239000300004, -34.68315000399997], [19.41233999600007, -34.68299999899995], [19.41244000200004, -34.68285999999995], [19.41253000200004, -34.682869997999944], [19.412660002000052, -34.68299000099995], [19.41271000100005, -34.68297000399997], [19.41271000100005, -34.682869997999944], [19.412679999000034, -34.68277999899993], [19.41271000100005, -34.68268000099994], [19.412750002000053, -34.68263000199994], [19.41281999800003, -34.68268000099994], [19.412920003000067, -34.682729999999935], [19.41311999900006, -34.68268000099994], [19.413129998000045, -34.682569995999984], [19.413129998000045, -34.68250000099994], [19.413179997000043, -34.68241999999998], [19.413240002000066, -34.68241000099994], [19.413399997000056, -34.682479988999944], [19.413560000000075, -34.682479988999944], [19.413550002000022, -34.68234999599997], [19.413550002000022, -34.682159997999975], [19.41365999800007, -34.68213000399993], [19.413699999000073, -34.682159997999975], [19.41385000400004, -34.68236000999997], [19.41394000300005, -34.68236000999997], [19.414040001000046, -34.68234999599997], [19.414090000000044, -34.68223000199998], [19.414090000000044, -34.68206000099997], [19.414109997000025, -34.68193999799996], [19.414160004000053, -34.68193999799996], [19.414250003000063, -34.68197000099997], [19.414319999000043, -34.68202999799996], [19.41439000200006, -34.68210999899998], [19.41441999700004, -34.68229999699997], [19.414610002000074, -34.68236000999997], [19.414660001000072, -34.68229999699997], [19.414700002000075, -34.68220999699997], [19.414880002000075, -34.68220999699997], [19.41489000000007, -34.68205000199998], [19.41492000200003, -34.68189999699996], [19.41493999900007, -34.681870010999944], [19.415039997000065, -34.681870010999944], [19.415079998000067, -34.681979998999964], [19.415159999000025, -34.68206000099997], [19.415280001000042, -34.682090002999985], [19.415349997000078, -34.68192000199997], [19.415370001000042, -34.681820003999974], [19.415469999000038, -34.681729995999945], [19.41542000000004, -34.681589996999946], [19.415429998000036, -34.68148999899995], [19.415540002000057, -34.68147000299996], [19.415609998000036, -34.68153999799995], [19.415699998000036, -34.681589996999946], [19.41585000200007, -34.68156000299996], [19.41585000200007, -34.68147000299996], [19.41594000200007, -34.68137999499993], [19.41600999800005, -34.68135000099994], [19.41608000100007, -34.681409997999936], [19.416250002000027, -34.68139999999994], [19.416319998000063, -34.68135000099994], [19.41638000300003, -34.68117999899994], [19.416409997000073, -34.68104999899998], [19.41654999600007, -34.680980002999945], [19.41654999600007, -34.680770000999985], [19.41666999800003, -34.68067000299993], [19.416820003000055, -34.68068999999997], [19.416889999000034, -34.680770000999985], [19.41698999700003, -34.68072000199993], [19.41701000100005, -34.68061999699995], [19.41710000100005, -34.68058000399998], [19.41716999600004, -34.68059999999997], [19.417270002000066, -34.68070999599996], [19.41740000300007, -34.68076000299993], [19.417389996000054, -34.68073000099997], [19.41740000300007, -34.680590001999974], [19.417429997000056, -34.680500001999974], [19.417479996000054, -34.68051999099998], [19.417519997000056, -34.68048000599998], [19.417550000000062, -34.68037000199996], [19.417519997000056, -34.680270003999965], [19.417570004000027, -34.68019000199996], [19.41770000400004, -34.680180003999965], [19.417789996000067, -34.68023000299996], [19.417860000000076, -34.680339998999955], [19.41794999900003, -34.68039999599995], [19.41808000000003, -34.680410001999974], [19.418190004000053, -34.68036001099995], [19.41824000300005, -34.68029999799995], [19.41824000300005, -34.680180003999965], [19.418210000000045, -34.68002999099997], [19.418089998000028, -34.67985999799998], [19.41790000000003, -34.67971000099993], [19.417630001000077, -34.67958999799998], [19.41732999900006, -34.67941999699997], [19.417140002000053, -34.67932999699997], [19.41688000000005, -34.67915999599995], [19.416750000000036, -34.67905999799996], [19.416709999000034, -34.67895999999996], [19.416709999000034, -34.67882999999995], [19.416790001000038, -34.67875999599994], [19.416859996000028, -34.67878000099995], [19.41689999700003, -34.67890000299997], [19.416979998000045, -34.67897000599993], [19.41707999600004, -34.67897000599993], [19.41713001100004, -34.67891999899996], [19.41710000100005, -34.67882999999995], [19.417119997000043, -34.67870999699994], [19.41724000000005, -34.67864000199995], [19.41731000300007, -34.67866999699993], [19.417379998000058, -34.67873999999995], [19.417379998000058, -34.67879999699994], [19.417450002000066, -34.67882999999995], [19.417500001000064, -34.67882999999995], [19.417570004000027, -34.67878000099995], [19.417609997000056, -34.67864000199995], [19.417620011000054, -34.67855999999995], [19.417710003000025, -34.67851999199996], [19.417760002000023, -34.678539995999984], [19.417819999000073, -34.67864000199995], [19.417860000000076, -34.67866999699993], [19.41794999900003, -34.67866999699993], [19.41799000000003, -34.678590002999954], [19.41791999700007, -34.67848999699993], [19.41791999700007, -34.67839999699993], [19.417980002000036, -34.67829999899993], [19.418089998000028, -34.67833000199994], [19.418190004000053, -34.67834999799993], [19.418259999000043, -34.67825999899998], [19.41824000300005, -34.67816000099998], [19.41824000300005, -34.67802999199995], [19.418319997000026, -34.67793000199998], [19.418319997000026, -34.67782999599996], [19.418430001000047, -34.67776000099997], [19.418520000000058, -34.67777999699996], [19.418569999000056, -34.67786999699996], [19.418619998000054, -34.677970002999984], [19.418709998000054, -34.67810000299994], [19.418799998000054, -34.67816000099998] ] ], [ [ [19.456289997000056, -34.39274000199998], [19.495130001000064, -34.39983000199993], [19.499409998000033, -34.398500000999945], [19.514840003000074, -34.39353000199998], [19.524470000000065, -34.390319998999985], [19.555989999000076, -34.38973999999996], [19.548930006000035, -34.395770004999974], [19.68811000100004, -34.765320000999964], [19.687989999000024, -34.76540000199998], [19.687920003000045, -34.76536999999996], [19.687819997000076, -34.76535000299998], [19.687819997000076, -34.765429996999956], [19.687869996000074, -34.765499999999975], [19.687920003000045, -34.765589999999975], [19.687970002000043, -34.76567000199998], [19.68793000100004, -34.76573999699997], [19.68776999800008, -34.76579000399994], [19.68762999200004, -34.76573999699997], [19.687599997000063, -34.76568999799997], [19.68752000300003, -34.76563999899997], [19.687440002000073, -34.76563999899997], [19.687340004000077, -34.76567000199998], [19.687239998000052, -34.765589999999975], [19.687050000000056, -34.765589999999975], [19.686900003000062, -34.76553000299998], [19.686759997000024, -34.76545000899995], [19.686640002000047, -34.76540000199998], [19.686280003000036, -34.76540000199998], [19.68603999900006, -34.76529999599995], [19.685890002000065, -34.76519999899995], [19.685710002000064, -34.76510999899995], [19.685459999000045, -34.76510999899995], [19.685249997000028, -34.765180001999965], [19.685019999000076, -34.76529999599995], [19.684790000000078, -34.765499999999975], [19.68457999800006, -34.76562000299998], [19.68435000000005, -34.76580999999993], [19.684159994000026, -34.76607999999993], [19.68396999600003, -34.76629000199995], [19.683749988000045, -34.76653999699994], [19.683590009000056, -34.76690000399998], [19.683500001000027, -34.767159996999965], [19.68343999600006, -34.767480002999946], [19.683479997000063, -34.76780999899995], [19.683599999000023, -34.76808999699995], [19.683680001000027, -34.76829000099997], [19.683770000000038, -34.768389998999965], [19.683919997000032, -34.76845000399993], [19.68405999600003, -34.76852999699997], [19.684120009000026, -34.76863000299994], [19.677619999000058, -34.78188000299997], [19.677619999000058, -34.781980000999965], [19.677629997000054, -34.78206000299997], [19.677629997000054, -34.782160000999966], [19.677600002000077, -34.78221999799996], [19.67748000000006, -34.78221999799996], [19.677380002000064, -34.78227000499993], [19.67739000000006, -34.78233000199998], [19.67748000000006, -34.78237000299998], [19.677640003000022, -34.78237000299998], [19.677750007000043, -34.78239999699997], [19.671800002000055, -34.783570001999976], [19.671639998000046, -34.78359999699995], [19.67151999600003, -34.78359999699995], [19.67141999000006, -34.783549997999955], [19.671329998000033, -34.78353999899997], [19.671230000000037, -34.783549997999955], [19.671090002000028, -34.78357999999997], [19.671029997000062, -34.783639996999966], [19.670799998000064, -34.78367999799997], [19.67071999700005, -34.78375000199998], [19.67056000100007, -34.78385999799997], [19.670499996000046, -34.78390999699997], [19.670340001000056, -34.784010002999935], [19.670210001000044, -34.78405000299995], [19.67017000000004, -34.784100001999946], [19.67017000000004, -34.784259996999936], [19.67012999900004, -34.78436000299996], [19.669999999000026, -34.784399995999934], [19.669890002000045, -34.784399995999934], [19.669840003000047, -34.784330000999944], [19.669800003000034, -34.784330000999944], [19.669750004000036, -34.78442999899994], [19.669660004000036, -34.784529996999936], [19.669530003000034, -34.78455000099996], [19.669410001000074, -34.784509999999955], [19.669360002000076, -34.78429999799994], [19.66937000000007, -34.78420999799994], [19.669339998000055, -34.78418000399995], [19.66924000000006, -34.78418000399995], [19.669220003000078, -34.78427000399995], [19.66919000100006, -34.784370001999946], [19.669069998000055, -34.78447999799994], [19.668979999000044, -34.784529996999936], [19.668870003000052, -34.78456999799994], [19.66874000200005, -34.78456999799994], [19.668610001000047, -34.78455000099996], [19.66857999900003, -34.784529996999936], [19.66843999200006, -34.78445000299996], [19.66840000700006, -34.78447999799994], [19.668200003000038, -34.78456999799994], [19.668030002000023, -34.78455000099996], [19.667940002000023, -34.78456999799994], [19.667910008000035, -34.784670002999974], [19.667910008000035, -34.78477000099997], [19.667879997000057, -34.78486000099997], [19.667810002000067, -34.78490999999997], [19.66769000000005, -34.78487999799995], [19.638179999000045, -34.779159997999955], [19.638340002000064, -34.77919999899996], [19.638429994000035, -34.77937999799997], [19.63854998900007, -34.77938999699995], [19.63888999900007, -34.77920999699995], [19.639079997000067, -34.779069997999954], [19.639249998000025, -34.778929999999946], [19.63950999900004, -34.77870999899994], [19.63968999900004, -34.77854999599998], [19.63999000000007, -34.77849999699998], [19.640179998000065, -34.778430001999936], [19.64033000300003, -34.77826000099998], [19.640550003000044, -34.77807000299998], [19.64083000100004, -34.77778000699993], [19.641130003000058, -34.77750999999995], [19.641289998000047, -34.77714000299994], [19.641409992000035, -34.776859996999974], [19.641530002000025, -34.77654999699996], [19.641609996000057, -34.776089999999954], [19.641660003000027, -34.77556999799998], [19.641760001000023, -34.775060001999975], [19.641850001000023, -34.77449999999993], [19.641940000000034, -34.77408000299994], [19.61252999800007, -34.75730999899997], [19.612379993000047, -34.75735999799997], [19.612250001000064, -34.757330002999936], [19.612219998000057, -34.757259999999974], [19.612160001000063, -34.757259999999974], [19.612060003000067, -34.757369995999966], [19.611869997000042, -34.75735999799997], [19.611790004000056, -34.75726999799997], [19.61168999800003, -34.75725000199998], [19.61159999800003, -34.75731999699997], [19.60039999600008, -34.74716999799995], [19.600429999000028, -34.747289999999964], [19.60033000100003, -34.74741999999998], [19.60016999000004, -34.74747999799996], [19.60006000100003, -34.74751999799997], [19.59989999800007, -34.747559998999975], [19.599830003000022, -34.74755000099998], [19.599819997000054, -34.74745000299998], [19.599689996000052, -34.74734999699996], [19.599470004000068, -34.74733999899996], [19.59940000100005, -34.74729999799996], [19.599319999000045, -34.74727000399997], [19.59917000200005, -34.74727000399997], [19.599090001000036, -34.747379999999964], [19.59896999800003, -34.74742999899996], [19.598839998000074, -34.74738999799996], [19.598780000000033, -34.747309995999956], [19.59872000300004, -34.74718000399997], [19.598590003000027, -34.74716999799995], [19.598540012000058, -34.74725999699996], [19.59843999800006, -34.74733999899996], [19.598290001000066, -34.747379999999964], [19.598219998000047, -34.74729999799996], [19.598150002000068, -34.74725999699996], [19.598049996000043, -34.74723000299997], [19.597949998000047, -34.74729999799996], [19.597949998000047, -34.74742999899996], [19.597819998000034, -34.74751999799997], [19.597689997000032, -34.74752999699996], [19.597559997000076, -34.74750999999998], [19.597520012000075, -34.74745000299998], [19.597480003000044, -34.74742999899996], [19.597379997000075, -34.74738999799996], [19.59711999600006, -34.74745000299998], [19.596990004000077, -34.747399987999984], [19.596860003000074, -34.74733999899996], [19.594120002000068, -34.73309000399996], [19.594120002000068, -34.73297999899995], [19.594110004000072, -34.73292999999995], [19.594080001000066, -34.732719997999936], [19.59408999900006, -34.73267999799998], [19.594120002000068, -34.73262999899998], [19.59420999400004, -34.732560002999946], [19.594310000000064, -34.73254999699998], [19.594330004000028, -34.73253000099993], [19.594330004000028, -34.732470003999936], [19.594279997000058, -34.732419996999965], [19.59420999400004, -34.732380003999936], [19.594120002000068, -34.73234000299993], [19.59408999900006, -34.73230000199993], [19.571799999000064, -34.72350999699995], [19.571880001000068, -34.723430003999965], [19.572020000000066, -34.72337999699994], [19.572119990000033, -34.72339000299996], [19.57222000400003, -34.72344000199996], [19.572280001000024, -34.72335999999996], [19.572289999000077, -34.72328999699994], [19.57231000300004, -34.72319000699997], [19.572379999000077, -34.72313000199995], [19.57252999600007, -34.72310999699994], [19.572640000000035, -34.72304000199995], [19.572730000000035, -34.72304000199995], [19.572850002000052, -34.72313000199995], [19.57296999600004, -34.723159995999936], [19.57306000400007, -34.72321000299996], [19.57310000500007, -34.72337999699994], [19.572999999000047, -34.72344000199996], [19.57301999500004, -34.72354999799995], [19.573120001000063, -34.723589998999955], [19.573229997000055, -34.72368999699995], [19.57321999900006, -34.72375999199994], [19.573279996000053, -34.723819996999964], [19.57338000200002, -34.72380000099997], [19.57339999900006, -34.72372000699994], [19.573480000000075, -34.72365000399998], [19.573570000000075, -34.723660001999974], [19.573690002000035, -34.723750001999974], [19.57374999900003, -34.72384999999997], [19.573830001000033, -34.72392000299993], [19.57392999900003, -34.72389000099997], [19.573989996000023, -34.72380000099997], [19.537649997000074, -34.69208999799997], [19.537469997000073, -34.69211999999993], [19.537400002000027, -34.69217999699998], [19.537220002000026, -34.692219997999985], [19.537090010000043, -34.69219000399994], [19.537010000000066, -34.69208999799997], [19.537059999000064, -34.69195999699997], [19.537040003000072, -34.69180000199998], [19.537149999000064, -34.691720000999965], [19.53724998900003, -34.69171000999995], [19.537310002000027, -34.69162000299997], [19.53726000300003, -34.69148000399997], [19.537149999000064, -34.69136999999995], [19.537100000000066, -34.69125999599993], [19.536990004000074, -34.69114999899995], [19.536830001000055, -34.69111999699993], [19.536759990000064, -34.69100000199995], [19.536690002000057, -34.69093999699993], [19.536720005000063, -34.690839998999934], [19.536920001000055, -34.69074999999998], [19.536970000000053, -34.69065999999998], [19.536939997000047, -34.69056999999998], [19.536880000000053, -34.69052000099998], [19.536780002000057, -34.69047999999998], [19.536759990000064, -34.69039000099997], [19.53677000400006, -34.69032000499993], [19.536780002000057, -34.690239995999946], [19.536740001000055, -34.69012000099997], [19.53660001000003, -34.690080000999956], [19.53646000400005, -34.69007000199997], [19.536399999000025, -34.69016000199997], [19.536190004000048, -34.69013999799995], [19.536049998000067, -34.69013999799995], [19.535959998000067, -34.69007000199997], [19.535890003000077, -34.68994999999995], [19.535779998000066, -34.68993000399996], [19.53563000200006, -34.68994999999995], [19.535599999000056, -34.69007000199997], [19.535640000000058, -34.690200010999945], [19.535599999000056, -34.69030000099997], [19.53545000200006, -34.69033000299993], [19.53533999800004, -34.69025999999997], [19.53529999700004, -34.690150003999975], [19.53523000200005, -34.69002000299997], [19.535129996000023, -34.689990000999956], [19.535039996000023, -34.68990999899995], [19.53485999700007, -34.68985999999995], [19.53484000000003, -34.68998000299996], [19.534849998000027, -34.690059995999945], [19.534690003000037, -34.69011000299997], [19.534510004000026, -34.69011000299997], [19.495539999000073, -34.671620004999966], [19.495570002000022, -34.671779999999956], [19.495490000000075, -34.67186000199996], [19.495360008000034, -34.671850003999964], [19.49531999900006, -34.671779999999956], [19.495189999000047, -34.67173000099996], [19.495130001000064, -34.67181000299996], [19.495099999000047, -34.67191000099996], [19.494990003000055, -34.67191000099996], [19.494940004000057, -34.672009998999954], [19.494860002000053, -34.67206999599995], [19.49470999700003, -34.67208999999997], [19.494579997000073, -34.67201999699995], [19.494489997000073, -34.671869999999956], [19.49455000200004, -34.67173000099996], [19.494489997000073, -34.671620004999966], [19.494399997000073, -34.67165998999997], [19.494379993000052, -34.67174999799994], [19.494309997000073, -34.67186000199996], [19.494219998000062, -34.671869999999956], [19.494129998000062, -34.67181000299996], [19.49399999700006, -34.671690000999945], [19.494030000000066, -34.67153999599998], [19.49392999400004, -34.67146999999994], [19.49381999800005, -34.67152999799998], [19.493530002000057, -34.67156999799994], [19.49339000300006, -34.67146000199995], [19.493350003000046, -34.67137000199995], [19.493260003000046, -34.67126999699997], [19.493220002000044, -34.67111000099993], [19.493329998000036, -34.671070000999975], [19.493440002000057, -34.671049995999965], [19.493339997000078, -34.67094999799997], [19.49336000900007, -34.67084999999997], [19.493490001000055, -34.670819997999956], [19.493549999000038, -34.67083000399998], [19.493620002000057, -34.67076999899996], [19.496010002000048, -34.66878999599993], [19.496079998000027, -34.668869997999934], [19.496129997000025, -34.66897000399996], [19.49620999800004, -34.66900999699993], [19.496330001000047, -34.66900999699993], [19.49643999700004, -34.66898999999995], [19.496510000000058, -34.66906000299997], [19.496649999000056, -34.66900999699993], [19.49677999900007, -34.668869997999934], [19.496969997000065, -34.66873999699993], [19.496990002000075, -34.66864999799998], [19.496900002000075, -34.668620002999944], [19.496739999000056, -34.66858999999994], [19.492300000000057, -34.668410000999984], [19.492210001000046, -34.66846999799998], [19.492139997000038, -34.66858999999994], [19.491940001000046, -34.66858999999994], [19.49177000000003, -34.668570003999946], [19.456289997000056, -34.39274000199998] ] ] ] } } ================================================ FILE: packages/turf-simplify/test/in/point.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [5, 1] } } ================================================ FILE: packages/turf-simplify/test/in/poly-issue#555-5.geojson ================================================ { "type": "Feature", "properties": { "tolerance": 0.00005 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.788024, 45.345283], [-75.788012, 45.345262], [-75.787966, 45.345274], [-75.787959, 45.345262], [-75.787947, 45.345266], [-75.787931, 45.345237], [-75.787943, 45.345234], [-75.787928, 45.345207], [-75.787999, 45.345187], [-75.787975, 45.345143], [-75.787906, 45.345162], [-75.7879, 45.345151], [-75.787897, 45.345152], [-75.787882, 45.345125], [-75.787872, 45.345128], [-75.787855, 45.345099], [-75.787866, 45.345096], [-75.787862, 45.345088], [-75.787855, 45.34509], [-75.787832, 45.345086], [-75.787825, 45.345069], [-75.787842, 45.345056], [-75.787867, 45.34506], [-75.787872, 45.345081], [-75.787903, 45.345073], [-75.787897, 45.345052], [-75.787913, 45.345048], [-75.78792, 45.345059], [-75.787928, 45.345056], [-75.787928, 45.345055], [-75.788023, 45.345028], [-75.78814, 45.345236], [-75.788044, 45.345263], [-75.788043, 45.345262], [-75.78804, 45.345263], [-75.788032, 45.345265], [-75.78804, 45.345279], [-75.788024, 45.345283] ], [ [-75.787933, 45.345065], [-75.78793, 45.34506], [-75.78793, 45.345066], [-75.787933, 45.345065] ] ] } } ================================================ FILE: packages/turf-simplify/test/in/polygon.geojson ================================================ { "type": "Feature", "properties": { "tolerance": 1, "elevation": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.51527029981442, 39.11245], [-75.39282224024916, 39.12823474024917], [-75.3770375, 39.135447305104925], [-75.35235519043113, 39.13713230956888], [-75.34721355956887, 39.13713230956888], [-75.32253125, 39.139083755473514], [-75.29670096335326, 39.141125963353275], [-75.29326540004632, 39.14171584995367], [-75.268025, 39.14408623760705], [-75.25277832507136, 39.15170957507138], [-75.24515498760704, 39.166956250000005], [-75.23985410433178, 39.1932916043318], [-75.23985410433178, 39.19512714566821], [-75.23607469121049, 39.2214625], [-75.23324391324394, 39.24118766324395], [-75.23324391324394, 39.25624358675606], [-75.23104443417348, 39.27596875], [-75.22621125895654, 39.28866125895655], [-75.21351874999999, 39.30405720540773], [-75.19590688693847, 39.31286313693849], [-75.18710095540773, 39.33047500000001], [-75.18476066926435, 39.35622316926436], [-75.18476066926435, 39.359233080735656], [-75.1827803677246, 39.38498125], [-75.18108292305178, 39.407051673051775], [-75.18108292305178, 39.41741707694823], [-75.17961177196392, 39.439487500000006], [-75.17842510611122, 39.4589001061112], [-75.17842510611122, 39.474581143888805], [-75.1773677140917, 39.49399375], [-75.17806096906195, 39.513042219061944], [-75.17806096906195, 39.52945153093805], [-75.17880864635877, 39.548500000000004], [-75.17436569692443, 39.56385319692442], [-75.1590125, 39.57861883514683], [-75.14275422343123, 39.586747973431216], [-75.13462508514682, 39.60300625000001], [-75.13199158752832, 39.630027162471684], [-75.13192154096123, 39.63042154096124], [-75.12971192190646, 39.6575125], [-75.12958254641065, 39.68258879641065], [-75.12958254641065, 39.68694245358936], [-75.12945449224796, 39.712018750000006], [-75.13075282512311, 39.73826532512311], [-75.13075282512311, 39.74027842487689], [-75.13219370977114, 39.766525], [-75.13492951020307, 39.79060798979694], [-75.13711471606355, 39.799133466063545], [-75.14033360353974, 39.821031250000004], [-75.1408737447648, 39.839170005235225], [-75.14206588619443, 39.85859088619443], [-75.14260248550531, 39.87553750000001], [-75.14807249033687, 39.88647750966314], [-75.1590125, 39.8919475144947], [-75.17435420501783, 39.89087920501784], [-75.20237093707816, 39.886685312921855], [-75.21351874999999, 39.88578343964871], [-75.22299781995783, 39.88501656995784], [-75.26614108689465, 39.87742141310536], [-75.268025, 39.877239581040996], [-75.26957725960418, 39.87708975960419], [-75.27684240189953, 39.87553750000001], [-75.28419540106952, 39.85936709893049], [-75.29112392832597, 39.84413017832599], [-75.30162746500874, 39.821031250000004], [-75.30816161875036, 39.806661618750354], [-75.32253125, 39.77506054072003], [-75.32519930917472, 39.76919305917473], [-75.32641252811797, 39.766525], [-75.3296491997708, 39.75940705022919], [-75.34223699959911, 39.73172449959911], [-75.35119759122719, 39.712018750000006], [-75.36046052535204, 39.69544177535203], [-75.3754130206531, 39.659136979346904], [-75.37616437518106, 39.6575125], [-75.3766762492428, 39.65715124924281], [-75.3770375, 39.65615200822954], [-75.39832547007784, 39.62429422007785], [-75.4082395514723, 39.60300625000001], [-75.4215797545908, 39.5930422545908], [-75.43154375, 39.56834216367474], [-75.45835566060614, 39.57531191060614], [-75.45895426960922, 39.5755957303908], [-75.48605, 39.57947734440668], [-75.48898805047145, 39.60006819952855], [-75.48994051537133, 39.60300625], [-75.49123821601205, 39.60819446601205], [-75.49220788576012, 39.651354614239885], [-75.49509104207014, 39.6575125], [-75.50305100880664, 39.67451350880663], [-75.50416029911807, 39.69390845088193], [-75.52933401544658, 39.70079651544659], [-75.54055625, 39.707797525000004], [-75.5417414003631, 39.71083359963691], [-75.54210361986804, 39.71201875000001], [-75.5424789600527, 39.71394146005272], [-75.5438968233805, 39.76318442661949], [-75.54488896795854, 39.766525], [-75.54664835702378, 39.77261710702379], [-75.54776976280363, 39.81381773719638], [-75.55227698676161, 39.821031250000004], [-75.56289470095811, 39.84336970095812], [-75.56358754189749, 39.852506208102504], [-75.57539756961809, 39.8558725696181], [-75.59506249999998, 39.868174228685255], [-75.59931300492002, 39.871286995079984], [-75.60432992735852, 39.87553750000001], [-75.63504292712292, 39.89006332287709], [-75.64956874999999, 39.89284139354837], [-75.66838020678718, 39.89434895678719], [-75.68308195946902, 39.896530540530996], [-75.704075, 39.89798053092993], [-75.72818318448331, 39.89964568448332], [-75.73375331940231, 39.9003654305977], [-75.75858125, 39.901872157624666], [-75.78514101585267, 39.90348398414733], [-75.78652773414733, 39.90348398414733], [-75.8130875, 39.904921352207175], [-75.83722610887358, 39.905905141126446], [-75.84345514112644, 39.905905141126446], [-75.86759375, 39.906814783587755], [-75.88844527239183, 39.89638902239184], [-75.89887103358774, 39.87553750000001], [-75.89854841478977, 39.85198591478977], [-75.89854841478977, 39.84458283521024], [-75.89821670830216, 39.821031250000004], [-75.89787552465965, 39.79680677465965], [-75.89787552465965, 39.79074947534036], [-75.89752445181962, 39.766525], [-75.89716305350223, 39.74158805350222], [-75.89716305350223, 39.73695569649778], [-75.89679086738143, 39.712018750000006], [-75.89640740311208, 39.686326153112084], [-75.89640740311208, 39.683205096887924], [-75.89601214017446, 39.6575125], [-75.89560452551711, 39.63101702551712], [-75.89560452551711, 39.6295017244829], [-75.8951839709748, 39.60300625000001], [-75.89475288239396, 39.57584711760604], [-75.8947466163539, 39.57565286635391], [-75.89430149673764, 39.548500000000004], [-75.89387073552223, 39.52222301447779], [-75.89380341704393, 39.520203417043916], [-75.8933591950366, 39.49399375], [-75.89292978011362, 39.468657719886366], [-75.89279284789451, 39.46468659789453], [-75.89235076838531, 39.439487500000006], [-75.8913260472361, 39.4157552027639], [-75.89062746202809, 39.408014962028105], [-75.88953890003162, 39.38498125], [-75.88715925199065, 39.365415748009355], [-75.88127062628152, 39.34415187628153], [-75.87907248368842, 39.33047500000001], [-75.87748307496805, 39.32058567503195], [-75.86759375, 39.29476457315633], [-75.85538716547042, 39.288175334529576], [-75.8282870350059, 39.275968750000004], [-75.8173286270748, 39.27172762292521], [-75.8130875, 39.25578472660005], [-75.79794874486377, 39.236601255136236], [-75.79760439720079, 39.2214625], [-75.7676722437337, 39.2123715062663], [-75.75858125, 39.21117295929072], [-75.74836987958975, 39.21125112958973], [-75.7137522708571, 39.21178522914291], [-75.704075, 39.21186046264999], [-75.67996146438593, 39.19734896438593], [-75.66694581884633, 39.20408543115368], [-75.67566107970288, 39.193048579702875], [-75.67054949218115, 39.166956250000005], [-75.6635559114541, 39.15296908854591], [-75.64956874999999, 39.145975507818854], [-75.62914609464218, 39.14653359464219], [-75.61467186011258, 39.14734688988742], [-75.5950625, 39.14791373192817], [-75.57631446045869, 39.148208210458705], [-75.5587435012753, 39.148768998724705], [-75.54055625, 39.14906393405724], [-75.52104203854152, 39.13196421145847], [-75.51527029981442, 39.11245] ] ] } } ================================================ FILE: packages/turf-simplify/test/in/simple-polygon.geojson ================================================ { "type": "Feature", "properties": { "tolerance": 100 }, "geometry": { "type": "Polygon", "coordinates": [ [ [26.148429528000065, -28.29755210099995], [26.148582685000065, -28.29778390599995], [26.149207731000047, -28.29773837299996], [26.14925541100007, -28.297771688999944], [26.149255844000038, -28.297773261999964], [26.149276505000046, -28.29784835099997], [26.14928482700003, -28.29787859399994], [26.14928916200006, -28.29800647199994], [26.14931069800008, -28.298641791999955], [26.149339971000074, -28.298641232999955], [26.151298488000066, -28.29860385099994], [26.151290002000053, -28.298628995999934], [26.151417002000073, -28.299308003999954], [26.15159000400007, -28.299739003999946], [26.151951998000072, -28.30051100299994], [26.15206407200003, -28.30076885099993], [26.152066543000046, -28.30077453499996], [26.151987021000025, -28.300799009999935], [26.149896693000073, -28.301442350999935], [26.150354333000053, -28.30260575099993], [26.14914131000006, -28.302975170999957], [26.14836387300005, -28.302853868999932], [26.147575408000023, -28.30269948399996], [26.146257624000043, -28.302462392999928], [26.14557943400007, -28.302181192999967], [26.145492669000078, -28.302154609999945], [26.144921243000056, -28.303395982999973], [26.14482272200007, -28.30455853999996], [26.14431040900007, -28.30451913099995], [26.14429070400007, -28.304144747999942], [26.143837504000032, -28.304144747999942], [26.143613499000026, -28.304592757999956], [26.14346312200007, -28.304893512999968], [26.143260178000048, -28.304893512999968], [26.143246374000057, -28.304893512999968], [26.143147852000027, -28.304893512999968], [26.14295080900007, -28.304834399999947], [26.14200500000004, -28.30449942699994], [26.14198529600003, -28.304420608999976], [26.141525339000054, -28.304298579999966], [26.141019783000047, -28.30416445299994], [26.141118305000077, -28.304637356999933], [26.140940966000073, -28.30512996599998], [26.140376789000072, -28.306172836999963], [26.140476282000066, -28.30621363399996], [26.14041675800007, -28.306326533999936], [26.140146555000058, -28.30640398099996], [26.140073975000064, -28.306410747999962], [26.137315367000042, -28.305189078999945], [26.136645419000047, -28.304854104999947], [26.135719315000074, -28.30451913099995], [26.135515376000058, -28.304330879999952], [26.13546315800005, -28.304282678999982], [26.13558800000004, -28.30419999999998], [26.137463000000025, -28.30242899999996], [26.13794500000006, -28.30202799999995], [26.13796479100006, -28.30201049699997], [26.13798299700005, -28.302025000999947], [26.139450004000025, -28.30074499999995], [26.141302000000053, -28.29914199999996], [26.141913997000074, -28.29862600399997], [26.14212216900006, -28.29845037299998], [26.144304360000035, -28.296499429999983], [26.144799071000023, -28.29614006399993], [26.145209090000037, -28.295759748999956], [26.145465732000048, -28.295507246999932], [26.14575028200005, -28.295352539999953], [26.14589208800004, -28.295275441999934], [26.146584820000044, -28.295135245999973], [26.146587504000024, -28.295134702999974], [26.146827588000065, -28.295606591999956], [26.14685742000006, -28.29565372899998], [26.14691261200005, -28.29574093599996], [26.147077344000024, -28.296001226999977], [26.147117344000037, -28.296041226999932], [26.147907966000048, -28.29696016899993], [26.147913396000035, -28.296966331999954], [26.148429528000065, -28.29755210099995] ] ] } } ================================================ FILE: packages/turf-simplify/test/out/argentina.geojson ================================================ { "type": "Feature", "id": "ARG", "properties": { "tolerance": 0.1, "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-64.964892, -22.075862], [-64.377021, -22.798091], [-63.986838, -21.993644], [-62.846468, -22.034985], [-60.846565, -23.880713], [-60.028966, -24.032796], [-58.807128, -24.771459], [-57.777217, -25.16234], [-57.63366, -25.603657], [-58.618174, -27.123719], [-56.486702, -27.548499], [-55.695846, -27.387837], [-54.788795, -26.621786], [-54.625291, -25.739255], [-54.13005, -25.547639], [-53.628349, -26.124865], [-53.648735, -26.923473], [-55.162286, -27.881915], [-57.625133, -30.216295], [-58.14244, -32.044504], [-58.132648, -33.040567], [-58.349611, -33.263189], [-58.495442, -34.43149], [-57.22583, -35.288027], [-57.362359, -35.97739], [-56.737487, -36.413126], [-56.788285, -36.901572], [-57.749157, -38.183871], [-59.231857, -38.72022], [-61.237445, -38.928425], [-62.335957, -38.827707], [-62.125763, -39.424105], [-62.330531, -40.172586], [-62.145994, -40.676897], [-62.745803, -41.028761], [-63.770495, -41.166789], [-64.73209, -40.802677], [-65.118035, -41.064315], [-64.978561, -42.058001], [-64.303408, -42.359016], [-63.755948, -42.043687], [-63.458059, -42.563138], [-64.378804, -42.873558], [-65.181804, -43.495381], [-65.328823, -44.501366], [-65.565269, -45.036786], [-66.509966, -45.039628], [-67.293794, -45.551896], [-67.580546, -46.301773], [-66.597066, -47.033925], [-65.641027, -47.236135], [-65.985088, -48.133289], [-67.166179, -48.697337], [-67.816088, -49.869669], [-68.728745, -50.264218], [-69.138539, -50.73251], [-68.815561, -51.771104], [-68.149995, -52.349983], [-71.914804, -52.009022], [-72.329404, -51.425956], [-72.309974, -50.67701], [-72.975747, -50.74145], [-73.328051, -50.378785], [-73.415436, -49.318436], [-72.648247, -48.878618], [-72.331161, -48.244238], [-72.447355, -47.738533], [-71.917258, -46.884838], [-71.552009, -45.560733], [-71.659316, -44.973689], [-71.222779, -44.784243], [-71.329801, -44.407522], [-71.793623, -44.207172], [-71.464056, -43.787611], [-71.915424, -43.408565], [-72.148898, -42.254888], [-71.746804, -42.051386], [-71.915734, -40.832339], [-71.413517, -38.916022], [-70.814664, -38.552995], [-71.118625, -37.576827], [-71.121881, -36.658124], [-70.364769, -36.005089], [-70.388049, -35.169688], [-69.817309, -34.193571], [-69.814777, -33.273886], [-70.074399, -33.09121], [-70.535069, -31.36501], [-69.919008, -30.336339], [-70.01355, -29.367923], [-69.65613, -28.459141], [-69.001235, -27.521214], [-68.295542, -26.89934], [-68.5948, -26.506909], [-68.386001, -26.185016], [-68.417653, -24.518555], [-67.328443, -24.025303], [-66.985234, -22.986349], [-67.106674, -22.735925], [-66.273339, -21.83231], [-64.964892, -22.075862] ] ] } } ================================================ FILE: packages/turf-simplify/test/out/featurecollection.geojson ================================================ { "type": "FeatureCollection", "properties": { "tolerance": 0.01 }, "features": [ { "type": "Feature", "properties": { "id": 1 }, "geometry": { "type": "LineString", "coordinates": [ [27.977543, -26.175005], [27.964325, -26.183016] ] } }, { "type": "Feature", "properties": { "id": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [27.97205, -26.199035], [27.984066, -26.192258], [27.987156, -26.201346], [27.97205, -26.199035] ] ] } }, { "type": "Feature", "properties": { "id": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [27.946644, -26.170845], [27.942696, -26.183632], [27.928619, -26.165299], [27.945099, -26.158982], [27.954025, -26.173464], [27.936172, -26.194877], [27.916603, -26.16684], [27.930336, -26.188561], [27.946644, -26.170845] ], [ [27.936859, -26.165915], [27.934971, -26.173927], [27.941494, -26.170075], [27.936859, -26.165915] ] ] } }, { "type": "Feature", "properties": { "id": 4 }, "geometry": { "type": "Point", "coordinates": [27.956429, -26.15251] } } ] } ================================================ FILE: packages/turf-simplify/test/out/fiji-hiQ.geojson ================================================ { "type": "Feature", "properties": { "tolerance": 0.005, "highQuality": true }, "geometry": { "type": "Polygon", "coordinates": [ [ [179.975281, -16.51477], [179.980431, -16.539127], [180.0103, -16.523328], [180.007553, -16.534848], [180.018196, -16.539127], [180.061455, -16.525632], [180.066605, -16.513124], [180.046349, -16.479547], [180.086861, -16.44761], [180.084114, -16.441354], [180.055618, -16.439707], [180.026093, -16.464732], [180.01442, -16.464073], [179.975281, -16.51477] ] ] } } ================================================ FILE: packages/turf-simplify/test/out/geometrycollection.geojson ================================================ { "type": "GeometryCollection", "geometries": [ { "type": "LineString", "coordinates": [ [27.977543, -26.175005], [27.964325, -26.183016] ] }, { "type": "Polygon", "coordinates": [ [ [27.97205, -26.199035], [27.984066, -26.192258], [27.987156, -26.201346], [27.97205, -26.199035] ] ] }, { "type": "Polygon", "coordinates": [ [ [27.946644, -26.170845], [27.942696, -26.183632], [27.928619, -26.165299], [27.945099, -26.158982], [27.954025, -26.173464], [27.936172, -26.194877], [27.916603, -26.16684], [27.930336, -26.188561], [27.946644, -26.170845] ], [ [27.936859, -26.165915], [27.934971, -26.173927], [27.941494, -26.170075], [27.936859, -26.165915] ] ] }, { "type": "Point", "coordinates": [27.956429, -26.15251] } ] } ================================================ FILE: packages/turf-simplify/test/out/issue-#1144.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-70.603637, -33.399918], [-70.683975, -33.404504], [-70.701141, -33.434306], [-70.694274, -33.458369], [-70.668869, -33.472117], [-70.609817, -33.468107], [-70.587158, -33.442901], [-70.603637, -33.399918] ] ] } } ================================================ FILE: packages/turf-simplify/test/out/linestring.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "LineString", "coordinates": [ [-80.513992, 28.069557], [-80.48584, 28.042289], [-80.505753, 28.028349], [-80.476913, 28.021075], [-80.49202, 27.998039], [-80.4673, 27.962263], [-80.46524, 27.9198], [-80.405502, 27.930114], [-80.396576, 27.980456], [-80.429535, 27.990764], [-80.414429, 28.009558], [-80.359497, 27.972572], [-80.382156, 27.913733], [-80.417862, 27.88157], [-80.393829, 27.854254], [-80.368423, 27.888246], [-80.354691, 27.868824], [-80.359497, 27.842112], [-80.399323, 27.82511], [-80.400696, 27.793528], [-80.361557, 27.786846], [-80.359325, 27.806853], [-80.354991, 27.796831], [-80.328727, 27.808485] ] } } ================================================ FILE: packages/turf-simplify/test/out/multilinestring.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-80.513992, 28.069557], [-80.48584, 28.042289], [-80.505753, 28.028349], [-80.476913, 28.021075], [-80.49202, 27.998039], [-80.4673, 27.962263], [-80.46524, 27.9198], [-80.405502, 27.930114], [-80.396576, 27.980456], [-80.429535, 27.990764], [-80.414429, 28.009558], [-80.359497, 27.972572], [-80.382156, 27.913733], [-80.417862, 27.88157], [-80.393829, 27.854254], [-80.368423, 27.888246], [-80.354691, 27.868824], [-80.359497, 27.842112], [-80.399323, 27.82511], [-80.400696, 27.793528], [-80.361557, 27.786846], [-80.359325, 27.806853], [-80.354991, 27.796831], [-80.328727, 27.808485] ], [ [-80.511932, 28.091366], [-80.4776, 28.074404], [-80.46936, 28.010164], [-80.454254, 27.996827], [-80.444641, 28.029561], [-80.355377, 27.991976], [-80.348511, 27.947099], [-80.323792, 27.937394], [-80.340271, 27.879142], [-80.352631, 27.909486], [-80.367737, 27.858504], [-80.340271, 27.822074], [-80.292206, 27.853647], [-80.303192, 27.860932], [-80.293579, 27.894922] ] ] } } ================================================ FILE: packages/turf-simplify/test/out/multipoint.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPoint", "coordinates": [ [0, 0], [1, 2] ] } } ================================================ FILE: packages/turf-simplify/test/out/multipolygon.geojson ================================================ { "type": "Feature", "properties": { "country": "South Africa", "tolerance": 0.01 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [19.41807, -34.68668], [19.41455, -34.68997], [19.40993, -34.68798], [19.41807, -34.68668] ] ], [ [ [19.4188, -34.67816], [19.42342, -34.68024], [19.41508, -34.68598], [19.4188, -34.67816] ] ], [ [ [19.45629, -34.39274], [19.55599, -34.38974], [19.68811, -34.76532], [19.67762, -34.78188], [19.63818, -34.77916], [19.59412, -34.73309], [19.49554, -34.67162], [19.45629, -34.39274] ] ] ] } } ================================================ FILE: packages/turf-simplify/test/out/point.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [5, 1] } } ================================================ FILE: packages/turf-simplify/test/out/poly-issue#555-5.geojson ================================================ { "type": "Feature", "properties": { "tolerance": 0.00005 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.788024, 45.345283], [-75.787931, 45.345237], [-75.787975, 45.345143], [-75.787855, 45.345099], [-75.788023, 45.345028], [-75.78814, 45.345236], [-75.788024, 45.345283] ], [ [-75.787933, 45.345065], [-75.78793, 45.34506], [-75.78793, 45.345066], [-75.787933, 45.345065] ] ] } } ================================================ FILE: packages/turf-simplify/test/out/polygon.geojson ================================================ { "type": "Feature", "properties": { "tolerance": 1, "elevation": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.51527, 39.11245], [-75.142602, 39.875538], [-75.813087, 39.904921], [-75.51527, 39.11245] ] ] } } ================================================ FILE: packages/turf-simplify/test/out/simple-polygon.geojson ================================================ { "type": "Feature", "properties": { "tolerance": 100 }, "geometry": { "type": "Polygon", "coordinates": [ [ [26.14843, -28.297552], [26.150354, -28.302606], [26.135463, -28.304283], [26.14843, -28.297552] ] ] } } ================================================ FILE: packages/turf-simplify/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { truncate } from "@turf/truncate"; import { polygon, multiPolygon } from "@turf/helpers"; import { simplify } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; let fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); // fixtures = fixtures.filter(({name}) => name.includes('#555')); test("simplify", (t) => { for (const { filename, name, geojson } of fixtures) { let { tolerance, highQuality } = geojson.properties || {}; tolerance = tolerance || 0.01; highQuality = highQuality || false; const simplified = truncate( simplify(geojson, { tolerance: tolerance, highQuality: highQuality, }) ); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, simplified); t.deepEqual(simplified, loadJsonFileSync(directories.out + filename), name); } t.end(); }); test("simplify -- throw", (t) => { const poly = polygon([ [ [0, 0], [2, 2], [2, 0], [0, 0], ], ]); t.throws(() => simplify(null), /geojson is required/, "missing geojson"); t.throws( () => simplify(poly, { tolerance: -1 }), /invalid tolerance/, "negative tolerance" ); t.end(); }); test("simplify -- removes ID & BBox from properties", (t) => { const properties = { foo: "bar" }; const id = 12345; const bbox = [0, 0, 2, 2]; const poly = polygon( [ [ [0, 0], [2, 2], [2, 0], [0, 0], ], ], properties, { bbox, id } ); const simple = simplify(poly, { tolerance: 0.1 }); t.equal(simple.id, id); t.deepEqual(simple.bbox, bbox); t.deepEqual(simple.properties, properties); t.end(); }); test("simplify -- issue #555", (t) => { // polygons from issue #555 const poly1 = polygon([ [ [-75.693254, 45.431144], [-75.693335, 45.431109], [-75.693335, 45.431109], [-75.693254, 45.431144], ], ]); const poly2 = polygon([ [ [-75.627178, 45.438106], [-75.627179, 45.438106], [-75.62718, 45.438106], [-75.627178, 45.438106], ], ]); const poly3 = polygon([ [ [-75.684722, 45.410083], [-75.684641, 45.409989], [-75.684641, 45.409989], [-75.684722, 45.410083], [-75.684722, 45.410083], ], ]); const poly4 = polygon([ [ [-75.885634, 45.272762], [-75.885482, 45.272641], [-75.885554, 45.272596], [-75.885534, 45.272581], [-75.885581, 45.272551], [-75.885703, 45.272647], [-75.885706, 45.272645], [-75.885709, 45.272647], [-75.885767, 45.272693], [-75.885759, 45.272698], [-75.885716, 45.272728], [-75.885716, 45.272728], [-75.885712, 45.272731], [-75.885712, 45.272731], [-75.885708, 45.272734], [-75.885684, 45.272749], [-75.885671, 45.272739], [-75.885634, 45.272762], ], [ [-75.885708, 45.27273], [-75.885708, 45.272729], [-75.885708, 45.272729], [-75.885708, 45.27273], ], ]); const options = { tolerance: 0.000001, highQuality: true }; t.throws(() => simplify(poly1, options), /invalid polygon/); t.throws(() => simplify(poly2, options), /invalid polygon/); t.throws(() => simplify(poly3, options), /invalid polygon/); t.throws(() => simplify(poly4, options), /invalid polygon/); t.end(); }); test("simplify -- issue #918", (t) => { // simplify hangs on this input #918 t.throws( () => simplify( multiPolygon([ [ [ [0, 90], [0, 90], [0, 90], [0, 90], [0, 90], [0, 90], [0, 90], [0, 90], [0, 90], [0, 90], [0, 90], ], ], ]) ), /invalid polygon/, "invalid polygon" ); t.throws( () => simplify( multiPolygon([ [ [ [0, 1], [0, 2], [0, 3], [0, 2.5], [0, 1], ], ], ]) ), /invalid polygon/, "invalid polygon" ); t.throws( () => simplify( multiPolygon([ [ [ [0, 1], [0, 1], [1, 2], [0, 1], ], ], ]) ), /invalid polygon/, "invalid polygon" ); t.end(); }); test("simplify - issue 1788 - infinite loop", (t) => { // For particularly small polygons simplify was getting stuck in an // infinite loop. // https://github.com/Turfjs/turf/issues/1788#issue-521052548 const poly1 = polygon([ [ [11.662180661499999, 50.1081498005], [11.662192661499999, 50.108041800500004], [11.6621866615, 50.1080958005], [11.662180661499999, 50.1081498005], ], ]); simplify(poly1, { tolerance: 0.000001, highQuality: true, mutate: false, }); t.pass("issue 1788 test 1 didn't hang"); // https://github.com/Turfjs/turf/issues/1788#issuecomment-951109683 const poly2 = polygon([ [ [4.0881641, 6.8121605], [4.0881639, 6.8121607], [4.0881638, 6.8121608], [4.0881641, 6.8121605], ], ]); simplify(poly2); t.pass("issue 1788 test 2 didn't hang"); // https://github.com/Turfjs/turf/issues/1788#issuecomment-1362073785 const poly3 = multiPolygon([ [ [ [-10.06762725, -17.428977611], [-10.067626613, -17.428977323], [-10.067625943, -17.428976957], [-10.06762725, -17.428977611], ], ], [ [ [-10.067625943, -17.428976957], [-10.067599027, -17.428963499], [-10.067625941, -17.428976956], [-10.067625943, -17.428976957], ], ], ]); simplify(poly3, { tolerance: 0.00001, highQuality: true }); t.pass("issue 1788 test 3 didn't hang"); t.end(); }); ================================================ FILE: packages/turf-simplify/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-simplify/types.ts ================================================ import { Feature, Polygon } from "geojson"; import { polygon } from "@turf/helpers"; import { simplify } from "./index.js"; const poly = polygon([ [ [0, 0], [10, 10], [20, 20], [0, 0], ], ]); // Output type is the same as Input type const simple: Feature = simplify(poly); // Extra params simplify(poly, { tolerance: 1 }); simplify(poly, { tolerance: 1, highQuality: true }); ================================================ FILE: packages/turf-square/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-square/README.md ================================================ # @turf/square ## square Takes a bounding box and calculates the minimum square bounding box that would contain the input. ### Parameters * `bbox` **[BBox][1]** extent in \[west, south, east, north] order ### Examples ```javascript const bbox = [-20, -20, -15, 0]; const squared = turf.square(bbox); //addToMap const addToMap = [turf.bboxPolygon(bbox), turf.bboxPolygon(squared)] ``` Returns **[BBox][1]** a square surrounding `bbox` [1]: https://tools.ietf.org/html/rfc7946#section-5 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/square ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-square/bench.ts ================================================ import { BBox } from "geojson"; import Benchmark, { Event } from "benchmark"; import { square } from "./index.js"; const bbox: BBox = [0, 0, 5, 10]; const suite = new Benchmark.Suite("turf-square"); suite .add("turf-square", function () { square(bbox); }) .on("cycle", function (event: Event) { console.log(String(event.target)); }) .run(); ================================================ FILE: packages/turf-square/index.ts ================================================ import { distance } from "@turf/distance"; import { BBox } from "geojson"; /** * Takes a bounding box and calculates the minimum square bounding box that * would contain the input. * * @function * @param {BBox} bbox extent in [west, south, east, north] order * @returns {BBox} a square surrounding `bbox` * @example * const bbox = [-20, -20, -15, 0]; * const squared = turf.square(bbox); * * //addToMap * const addToMap = [turf.bboxPolygon(bbox), turf.bboxPolygon(squared)] */ function square(bbox: BBox): BBox { var west = bbox[0]; var south = bbox[1]; var east = bbox[2]; var north = bbox[3]; var horizontalDistance = distance(bbox.slice(0, 2), [east, south]); var verticalDistance = distance(bbox.slice(0, 2), [west, north]); if (horizontalDistance >= verticalDistance) { var verticalMidpoint = (south + north) / 2; return [ west, verticalMidpoint - (east - west) / 2, east, verticalMidpoint + (east - west) / 2, ]; } else { var horizontalMidpoint = (west + east) / 2; return [ horizontalMidpoint - (north - south) / 2, south, horizontalMidpoint + (north - south) / 2, north, ]; } } export { square }; export default square; ================================================ FILE: packages/turf-square/package.json ================================================ { "name": "@turf/square", "version": "7.3.4", "description": "Takes a bounding box and calculates the minimum square bounding box that would contain the input.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "gis", "geojson", "extent" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-square/test.ts ================================================ import { BBox } from "geojson"; import test from "tape"; import { square } from "./index.js"; test("square", function (t) { const bbox1: BBox = [0, 0, 5, 10]; const bbox2: BBox = [0, 0, 10, 5]; const sq1 = square(bbox1); const sq2 = square(bbox2); t.deepEqual(sq1, [-2.5, 0, 7.5, 10]); t.deepEqual(sq2, [0, -2.5, 10, 7.5]); t.end(); }); ================================================ FILE: packages/turf-square/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-square-grid/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-square-grid/README.md ================================================ # @turf/square-grid ## squareGrid Creates a grid of square polygons with cell length consistent in degrees ### Parameters * `bbox` **[BBox][1]** extent of grid in \[minX, minY, maxX, maxY] order. If the grid does not fill the bbox perfectly, it is centered. * `cellSide` **[number][2]** length of each cell side. * `options` **[Object][3]** Optional parameters (optional, default `{}`) * `options.units` **Units** the units of the cellSide value. Supports all valid Turf [Units][4]. If you are looking for squares with sides of equal lengths in linear units (e.g. kilometers) this is not the module for you. The cellSide is converted from units provided to degrees internally, so the width and height of resulting polygons will be consistent only in degrees. (optional, default `'kilometers'`) * `options.mask` **[Feature][5]<([Polygon][6] | [MultiPolygon][7])>?** if passed a Polygon or MultiPolygon, the grid Points will be created only inside it * `options.properties` **[Object][3]** passed to each point of the grid (optional, default `{}`) ### Examples ```javascript var bbox = [-95, 30 ,-85, 40]; var cellSide = 50; var options = {units: 'miles'}; var squareGrid = turf.squareGrid(bbox, cellSide, options); //addToMap var addToMap = [squareGrid] ``` Returns **[FeatureCollection][8]<[Polygon][6]>** a grid of polygons with equal width and height in degrees. [1]: https://tools.ietf.org/html/rfc7946#section-5 [2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [4]: https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/README_UNITS.md [5]: https://tools.ietf.org/html/rfc7946#section-3.2 [6]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [7]: https://tools.ietf.org/html/rfc7946#section-3.1.7 [8]: https://tools.ietf.org/html/rfc7946#section-3.3 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/square-grid ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-square-grid/bench.ts ================================================ import Benchmark from "benchmark"; import { squareGrid } from "./index.js"; var bbox = [-95, 30, -85, 40]; /** * Benchmark Results * * highres -- 30 cells x 136,441 ops/sec ±0.68% (93 runs sampled) * midres -- 4071 cells x 981 ops/sec ±2.43% (77 runs sampled) * lowres -- 412620 cells x 1.18 ops/sec ±9.27% (7 runs sampled) */ var highres = squareGrid(bbox, 100, { units: "miles" }).features.length; var midres = squareGrid(bbox, 10, { units: "miles" }).features.length; var lowres = squareGrid(bbox, 1, { units: "miles" }).features.length; var suite = new Benchmark.Suite("turf-square-grid"); suite .add("highres -- " + highres + " cells", () => squareGrid(bbox, 100, { units: "miles" }) ) .add("midres -- " + midres + " cells", () => squareGrid(bbox, 10, { units: "miles" }) ) .add("lowres -- " + lowres + " cells", () => squareGrid(bbox, 1, { units: "miles" }) ) .on("cycle", (e) => console.log(String(e.target))) .run(); ================================================ FILE: packages/turf-square-grid/index.ts ================================================ import { FeatureCollection, Polygon, BBox, Feature, MultiPolygon, GeoJsonProperties, } from "geojson"; import { Units } from "@turf/helpers"; import { rectangleGrid } from "@turf/rectangle-grid"; /** * Creates a grid of square polygons with cell length consistent in degrees * * @function * @param {BBox} bbox extent of grid in [minX, minY, maxX, maxY] order. If the grid does not fill the bbox perfectly, it is centered. * @param {number} cellSide length of each cell side. * @param {Object} [options={}] Optional parameters * @param {Units} [options.units='kilometers'] the units of the cellSide value. * Supports all valid Turf {@link https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/README_UNITS.md Units}. * If you are looking for squares with sides of equal lengths in linear units (e.g. kilometers) this is not the module for you. * The cellSide is converted from units provided to degrees internally, so the width and height of resulting polygons will be consistent only in degrees. * @param {Feature} [options.mask] if passed a Polygon or MultiPolygon, * the grid Points will be created only inside it * @param {Object} [options.properties={}] passed to each point of the grid * @returns {FeatureCollection} a grid of polygons with equal width and height in degrees. * @example * var bbox = [-95, 30 ,-85, 40]; * var cellSide = 50; * var options = {units: 'miles'}; * * var squareGrid = turf.squareGrid(bbox, cellSide, options); * * //addToMap * var addToMap = [squareGrid] */ function squareGrid

( bbox: BBox, cellSide: number, options: { units?: Units; properties?: P; mask?: Feature | Polygon | MultiPolygon; } = {} ): FeatureCollection { return rectangleGrid(bbox, cellSide, cellSide, options); } export { squareGrid }; export default squareGrid; ================================================ FILE: packages/turf-square-grid/package.json ================================================ { "name": "@turf/square-grid", "version": "7.3.4", "description": "Creates a square grid within a bounding box.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "grid", "regular", "cartesian", "grid" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@turf/bbox-polygon": "workspace:*", "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/rectangle-grid": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-square-grid/test/in/big-bbox.json ================================================ { "bbox": [-220.78125, -80.64703474739618, -29.53125, 78.34941069014629], "cellSide": 500, "units": "miles" } ================================================ FILE: packages/turf-square-grid/test/in/fiji-10-miles.json ================================================ { "bbox": [ -180.3460693359375, -17.16703442146408, -179.5770263671875, -16.48349760264812 ], "cellSide": 10, "units": "miles" } ================================================ FILE: packages/turf-square-grid/test/in/issue-1215.geojson ================================================ { "bbox": [37.69975662231445, 55.55151096909941, 37.70958423614502, 55.55615949302079], "cellSide": 0.01, "units": "kilometers", "mask": { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "fill-opacity": 0.3, "fill": "#00F" }, "geometry": { "type": "Polygon", "coordinates": [ [ [37.70651578903198, 55.55151096909941], [37.70958423614502, 55.555297797727704], [37.709230184555054, 55.555850013083], [37.70885467529296, 55.55615949302079], [37.70013213157654, 55.55376247689539], [37.69975662231445, 55.55329519343182], [37.70651578903198, 55.55151096909941] ] ] } } } ================================================ FILE: packages/turf-square-grid/test/in/london-20-miles.json ================================================ { "bbox": [-0.6207275390625, 51.23784668914442, 0.439453125, 51.767839887322154], "cellSide": 20, "units": "miles" } ================================================ FILE: packages/turf-square-grid/test/in/piedemont-mask.json ================================================ { "bbox": [6.3775634765625, 44.05601169578525, 9.437255859375, 46.50595444552049], "cellSide": 12.5, "units": "miles", "mask": { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "fill-opacity": 0.3, "fill": "#00F" }, "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] ] ] } } } ================================================ FILE: packages/turf-square-grid/test/in/properties.json ================================================ { "bbox": [2.131519317626953, 41.37835427979543, 2.2264480590820312, 41.44388449101261], "properties": { "marker-color": "#0ff" }, "cellSide": 1, "mask": { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [2.223186492919922, 41.416856461155575], [2.1716880798339844, 41.44182560856202], [2.1636199951171875, 41.41608406639095], [2.1334075927734375, 41.407200866420744], [2.1845626831054683, 41.37977115211044], [2.223186492919922, 41.416856461155575] ] ] } } } ================================================ FILE: packages/turf-square-grid/test/in/resolute.json ================================================ { "bbox": [-95.877685546875, 74.46849062193377, -94.031982421875, 74.90226611990785], "cellSide": 12.5, "units": "miles" } ================================================ FILE: packages/turf-square-grid/test/out/big-bbox.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -77.132893], [-219.231779, -69.896314], [-211.9952, -69.896314], [-211.9952, -77.132893], [-219.231779, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -69.896314], [-219.231779, -62.659735], [-211.9952, -62.659735], [-211.9952, -69.896314], [-219.231779, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -62.659735], [-219.231779, -55.423156], [-211.9952, -55.423156], [-211.9952, -62.659735], [-219.231779, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -55.423156], [-219.231779, -48.186577], [-211.9952, -48.186577], [-211.9952, -55.423156], [-219.231779, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -48.186577], [-219.231779, -40.949997], [-211.9952, -40.949997], [-211.9952, -48.186577], [-219.231779, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -40.949997], [-219.231779, -33.713418], [-211.9952, -33.713418], [-211.9952, -40.949997], [-219.231779, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -33.713418], [-219.231779, -26.476839], [-211.9952, -26.476839], [-211.9952, -33.713418], [-219.231779, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -26.476839], [-219.231779, -19.24026], [-211.9952, -19.24026], [-211.9952, -26.476839], [-219.231779, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -19.24026], [-219.231779, -12.003681], [-211.9952, -12.003681], [-211.9952, -19.24026], [-219.231779, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -12.003681], [-219.231779, -4.767102], [-211.9952, -4.767102], [-211.9952, -12.003681], [-219.231779, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, -4.767102], [-219.231779, 2.469478], [-211.9952, 2.469478], [-211.9952, -4.767102], [-219.231779, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 2.469478], [-219.231779, 9.706057], [-211.9952, 9.706057], [-211.9952, 2.469478], [-219.231779, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 9.706057], [-219.231779, 16.942636], [-211.9952, 16.942636], [-211.9952, 9.706057], [-219.231779, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 16.942636], [-219.231779, 24.179215], [-211.9952, 24.179215], [-211.9952, 16.942636], [-219.231779, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 24.179215], [-219.231779, 31.415794], [-211.9952, 31.415794], [-211.9952, 24.179215], [-219.231779, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 31.415794], [-219.231779, 38.652373], [-211.9952, 38.652373], [-211.9952, 31.415794], [-219.231779, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 38.652373], [-219.231779, 45.888952], [-211.9952, 45.888952], [-211.9952, 38.652373], [-219.231779, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 45.888952], [-219.231779, 53.125532], [-211.9952, 53.125532], [-211.9952, 45.888952], [-219.231779, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 53.125532], [-219.231779, 60.362111], [-211.9952, 60.362111], [-211.9952, 53.125532], [-219.231779, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 60.362111], [-219.231779, 67.59869], [-211.9952, 67.59869], [-211.9952, 60.362111], [-219.231779, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-219.231779, 67.59869], [-219.231779, 74.835269], [-211.9952, 74.835269], [-211.9952, 67.59869], [-219.231779, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -77.132893], [-211.9952, -69.896314], [-204.758621, -69.896314], [-204.758621, -77.132893], [-211.9952, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -69.896314], [-211.9952, -62.659735], [-204.758621, -62.659735], [-204.758621, -69.896314], [-211.9952, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -62.659735], [-211.9952, -55.423156], [-204.758621, -55.423156], [-204.758621, -62.659735], [-211.9952, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -55.423156], [-211.9952, -48.186577], [-204.758621, -48.186577], [-204.758621, -55.423156], [-211.9952, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -48.186577], [-211.9952, -40.949997], [-204.758621, -40.949997], [-204.758621, -48.186577], [-211.9952, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -40.949997], [-211.9952, -33.713418], [-204.758621, -33.713418], [-204.758621, -40.949997], [-211.9952, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -33.713418], [-211.9952, -26.476839], [-204.758621, -26.476839], [-204.758621, -33.713418], [-211.9952, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -26.476839], [-211.9952, -19.24026], [-204.758621, -19.24026], [-204.758621, -26.476839], [-211.9952, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -19.24026], [-211.9952, -12.003681], [-204.758621, -12.003681], [-204.758621, -19.24026], [-211.9952, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -12.003681], [-211.9952, -4.767102], [-204.758621, -4.767102], [-204.758621, -12.003681], [-211.9952, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, -4.767102], [-211.9952, 2.469478], [-204.758621, 2.469478], [-204.758621, -4.767102], [-211.9952, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 2.469478], [-211.9952, 9.706057], [-204.758621, 9.706057], [-204.758621, 2.469478], [-211.9952, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 9.706057], [-211.9952, 16.942636], [-204.758621, 16.942636], [-204.758621, 9.706057], [-211.9952, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 16.942636], [-211.9952, 24.179215], [-204.758621, 24.179215], [-204.758621, 16.942636], [-211.9952, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 24.179215], [-211.9952, 31.415794], [-204.758621, 31.415794], [-204.758621, 24.179215], [-211.9952, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 31.415794], [-211.9952, 38.652373], [-204.758621, 38.652373], [-204.758621, 31.415794], [-211.9952, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 38.652373], [-211.9952, 45.888952], [-204.758621, 45.888952], [-204.758621, 38.652373], [-211.9952, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 45.888952], [-211.9952, 53.125532], [-204.758621, 53.125532], [-204.758621, 45.888952], [-211.9952, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 53.125532], [-211.9952, 60.362111], [-204.758621, 60.362111], [-204.758621, 53.125532], [-211.9952, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 60.362111], [-211.9952, 67.59869], [-204.758621, 67.59869], [-204.758621, 60.362111], [-211.9952, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-211.9952, 67.59869], [-211.9952, 74.835269], [-204.758621, 74.835269], [-204.758621, 67.59869], [-211.9952, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -77.132893], [-204.758621, -69.896314], [-197.522042, -69.896314], [-197.522042, -77.132893], [-204.758621, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -69.896314], [-204.758621, -62.659735], [-197.522042, -62.659735], [-197.522042, -69.896314], [-204.758621, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -62.659735], [-204.758621, -55.423156], [-197.522042, -55.423156], [-197.522042, -62.659735], [-204.758621, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -55.423156], [-204.758621, -48.186577], [-197.522042, -48.186577], [-197.522042, -55.423156], [-204.758621, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -48.186577], [-204.758621, -40.949997], [-197.522042, -40.949997], [-197.522042, -48.186577], [-204.758621, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -40.949997], [-204.758621, -33.713418], [-197.522042, -33.713418], [-197.522042, -40.949997], [-204.758621, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -33.713418], [-204.758621, -26.476839], [-197.522042, -26.476839], [-197.522042, -33.713418], [-204.758621, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -26.476839], [-204.758621, -19.24026], [-197.522042, -19.24026], [-197.522042, -26.476839], [-204.758621, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -19.24026], [-204.758621, -12.003681], [-197.522042, -12.003681], [-197.522042, -19.24026], [-204.758621, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -12.003681], [-204.758621, -4.767102], [-197.522042, -4.767102], [-197.522042, -12.003681], [-204.758621, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, -4.767102], [-204.758621, 2.469478], [-197.522042, 2.469478], [-197.522042, -4.767102], [-204.758621, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 2.469478], [-204.758621, 9.706057], [-197.522042, 9.706057], [-197.522042, 2.469478], [-204.758621, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 9.706057], [-204.758621, 16.942636], [-197.522042, 16.942636], [-197.522042, 9.706057], [-204.758621, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 16.942636], [-204.758621, 24.179215], [-197.522042, 24.179215], [-197.522042, 16.942636], [-204.758621, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 24.179215], [-204.758621, 31.415794], [-197.522042, 31.415794], [-197.522042, 24.179215], [-204.758621, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 31.415794], [-204.758621, 38.652373], [-197.522042, 38.652373], [-197.522042, 31.415794], [-204.758621, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 38.652373], [-204.758621, 45.888952], [-197.522042, 45.888952], [-197.522042, 38.652373], [-204.758621, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 45.888952], [-204.758621, 53.125532], [-197.522042, 53.125532], [-197.522042, 45.888952], [-204.758621, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 53.125532], [-204.758621, 60.362111], [-197.522042, 60.362111], [-197.522042, 53.125532], [-204.758621, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 60.362111], [-204.758621, 67.59869], [-197.522042, 67.59869], [-197.522042, 60.362111], [-204.758621, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-204.758621, 67.59869], [-204.758621, 74.835269], [-197.522042, 74.835269], [-197.522042, 67.59869], [-204.758621, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -77.132893], [-197.522042, -69.896314], [-190.285462, -69.896314], [-190.285462, -77.132893], [-197.522042, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -69.896314], [-197.522042, -62.659735], [-190.285462, -62.659735], [-190.285462, -69.896314], [-197.522042, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -62.659735], [-197.522042, -55.423156], [-190.285462, -55.423156], [-190.285462, -62.659735], [-197.522042, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -55.423156], [-197.522042, -48.186577], [-190.285462, -48.186577], [-190.285462, -55.423156], [-197.522042, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -48.186577], [-197.522042, -40.949997], [-190.285462, -40.949997], [-190.285462, -48.186577], [-197.522042, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -40.949997], [-197.522042, -33.713418], [-190.285462, -33.713418], [-190.285462, -40.949997], [-197.522042, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -33.713418], [-197.522042, -26.476839], [-190.285462, -26.476839], [-190.285462, -33.713418], [-197.522042, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -26.476839], [-197.522042, -19.24026], [-190.285462, -19.24026], [-190.285462, -26.476839], [-197.522042, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -19.24026], [-197.522042, -12.003681], [-190.285462, -12.003681], [-190.285462, -19.24026], [-197.522042, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -12.003681], [-197.522042, -4.767102], [-190.285462, -4.767102], [-190.285462, -12.003681], [-197.522042, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, -4.767102], [-197.522042, 2.469478], [-190.285462, 2.469478], [-190.285462, -4.767102], [-197.522042, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 2.469478], [-197.522042, 9.706057], [-190.285462, 9.706057], [-190.285462, 2.469478], [-197.522042, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 9.706057], [-197.522042, 16.942636], [-190.285462, 16.942636], [-190.285462, 9.706057], [-197.522042, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 16.942636], [-197.522042, 24.179215], [-190.285462, 24.179215], [-190.285462, 16.942636], [-197.522042, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 24.179215], [-197.522042, 31.415794], [-190.285462, 31.415794], [-190.285462, 24.179215], [-197.522042, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 31.415794], [-197.522042, 38.652373], [-190.285462, 38.652373], [-190.285462, 31.415794], [-197.522042, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 38.652373], [-197.522042, 45.888952], [-190.285462, 45.888952], [-190.285462, 38.652373], [-197.522042, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 45.888952], [-197.522042, 53.125532], [-190.285462, 53.125532], [-190.285462, 45.888952], [-197.522042, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 53.125532], [-197.522042, 60.362111], [-190.285462, 60.362111], [-190.285462, 53.125532], [-197.522042, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 60.362111], [-197.522042, 67.59869], [-190.285462, 67.59869], [-190.285462, 60.362111], [-197.522042, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-197.522042, 67.59869], [-197.522042, 74.835269], [-190.285462, 74.835269], [-190.285462, 67.59869], [-197.522042, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -77.132893], [-190.285462, -69.896314], [-183.048883, -69.896314], [-183.048883, -77.132893], [-190.285462, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -69.896314], [-190.285462, -62.659735], [-183.048883, -62.659735], [-183.048883, -69.896314], [-190.285462, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -62.659735], [-190.285462, -55.423156], [-183.048883, -55.423156], [-183.048883, -62.659735], [-190.285462, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -55.423156], [-190.285462, -48.186577], [-183.048883, -48.186577], [-183.048883, -55.423156], [-190.285462, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -48.186577], [-190.285462, -40.949997], [-183.048883, -40.949997], [-183.048883, -48.186577], [-190.285462, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -40.949997], [-190.285462, -33.713418], [-183.048883, -33.713418], [-183.048883, -40.949997], [-190.285462, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -33.713418], [-190.285462, -26.476839], [-183.048883, -26.476839], [-183.048883, -33.713418], [-190.285462, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -26.476839], [-190.285462, -19.24026], [-183.048883, -19.24026], [-183.048883, -26.476839], [-190.285462, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -19.24026], [-190.285462, -12.003681], [-183.048883, -12.003681], [-183.048883, -19.24026], [-190.285462, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -12.003681], [-190.285462, -4.767102], [-183.048883, -4.767102], [-183.048883, -12.003681], [-190.285462, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, -4.767102], [-190.285462, 2.469478], [-183.048883, 2.469478], [-183.048883, -4.767102], [-190.285462, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 2.469478], [-190.285462, 9.706057], [-183.048883, 9.706057], [-183.048883, 2.469478], [-190.285462, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 9.706057], [-190.285462, 16.942636], [-183.048883, 16.942636], [-183.048883, 9.706057], [-190.285462, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 16.942636], [-190.285462, 24.179215], [-183.048883, 24.179215], [-183.048883, 16.942636], [-190.285462, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 24.179215], [-190.285462, 31.415794], [-183.048883, 31.415794], [-183.048883, 24.179215], [-190.285462, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 31.415794], [-190.285462, 38.652373], [-183.048883, 38.652373], [-183.048883, 31.415794], [-190.285462, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 38.652373], [-190.285462, 45.888952], [-183.048883, 45.888952], [-183.048883, 38.652373], [-190.285462, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 45.888952], [-190.285462, 53.125532], [-183.048883, 53.125532], [-183.048883, 45.888952], [-190.285462, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 53.125532], [-190.285462, 60.362111], [-183.048883, 60.362111], [-183.048883, 53.125532], [-190.285462, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 60.362111], [-190.285462, 67.59869], [-183.048883, 67.59869], [-183.048883, 60.362111], [-190.285462, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-190.285462, 67.59869], [-190.285462, 74.835269], [-183.048883, 74.835269], [-183.048883, 67.59869], [-190.285462, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -77.132893], [-183.048883, -69.896314], [-175.812304, -69.896314], [-175.812304, -77.132893], [-183.048883, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -69.896314], [-183.048883, -62.659735], [-175.812304, -62.659735], [-175.812304, -69.896314], [-183.048883, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -62.659735], [-183.048883, -55.423156], [-175.812304, -55.423156], [-175.812304, -62.659735], [-183.048883, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -55.423156], [-183.048883, -48.186577], [-175.812304, -48.186577], [-175.812304, -55.423156], [-183.048883, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -48.186577], [-183.048883, -40.949997], [-175.812304, -40.949997], [-175.812304, -48.186577], [-183.048883, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -40.949997], [-183.048883, -33.713418], [-175.812304, -33.713418], [-175.812304, -40.949997], [-183.048883, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -33.713418], [-183.048883, -26.476839], [-175.812304, -26.476839], [-175.812304, -33.713418], [-183.048883, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -26.476839], [-183.048883, -19.24026], [-175.812304, -19.24026], [-175.812304, -26.476839], [-183.048883, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -19.24026], [-183.048883, -12.003681], [-175.812304, -12.003681], [-175.812304, -19.24026], [-183.048883, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -12.003681], [-183.048883, -4.767102], [-175.812304, -4.767102], [-175.812304, -12.003681], [-183.048883, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, -4.767102], [-183.048883, 2.469478], [-175.812304, 2.469478], [-175.812304, -4.767102], [-183.048883, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 2.469478], [-183.048883, 9.706057], [-175.812304, 9.706057], [-175.812304, 2.469478], [-183.048883, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 9.706057], [-183.048883, 16.942636], [-175.812304, 16.942636], [-175.812304, 9.706057], [-183.048883, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 16.942636], [-183.048883, 24.179215], [-175.812304, 24.179215], [-175.812304, 16.942636], [-183.048883, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 24.179215], [-183.048883, 31.415794], [-175.812304, 31.415794], [-175.812304, 24.179215], [-183.048883, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 31.415794], [-183.048883, 38.652373], [-175.812304, 38.652373], [-175.812304, 31.415794], [-183.048883, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 38.652373], [-183.048883, 45.888952], [-175.812304, 45.888952], [-175.812304, 38.652373], [-183.048883, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 45.888952], [-183.048883, 53.125532], [-175.812304, 53.125532], [-175.812304, 45.888952], [-183.048883, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 53.125532], [-183.048883, 60.362111], [-175.812304, 60.362111], [-175.812304, 53.125532], [-183.048883, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 60.362111], [-183.048883, 67.59869], [-175.812304, 67.59869], [-175.812304, 60.362111], [-183.048883, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-183.048883, 67.59869], [-183.048883, 74.835269], [-175.812304, 74.835269], [-175.812304, 67.59869], [-183.048883, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -77.132893], [-175.812304, -69.896314], [-168.575725, -69.896314], [-168.575725, -77.132893], [-175.812304, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -69.896314], [-175.812304, -62.659735], [-168.575725, -62.659735], [-168.575725, -69.896314], [-175.812304, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -62.659735], [-175.812304, -55.423156], [-168.575725, -55.423156], [-168.575725, -62.659735], [-175.812304, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -55.423156], [-175.812304, -48.186577], [-168.575725, -48.186577], [-168.575725, -55.423156], [-175.812304, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -48.186577], [-175.812304, -40.949997], [-168.575725, -40.949997], [-168.575725, -48.186577], [-175.812304, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -40.949997], [-175.812304, -33.713418], [-168.575725, -33.713418], [-168.575725, -40.949997], [-175.812304, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -33.713418], [-175.812304, -26.476839], [-168.575725, -26.476839], [-168.575725, -33.713418], [-175.812304, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -26.476839], [-175.812304, -19.24026], [-168.575725, -19.24026], [-168.575725, -26.476839], [-175.812304, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -19.24026], [-175.812304, -12.003681], [-168.575725, -12.003681], [-168.575725, -19.24026], [-175.812304, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -12.003681], [-175.812304, -4.767102], [-168.575725, -4.767102], [-168.575725, -12.003681], [-175.812304, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, -4.767102], [-175.812304, 2.469478], [-168.575725, 2.469478], [-168.575725, -4.767102], [-175.812304, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 2.469478], [-175.812304, 9.706057], [-168.575725, 9.706057], [-168.575725, 2.469478], [-175.812304, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 9.706057], [-175.812304, 16.942636], [-168.575725, 16.942636], [-168.575725, 9.706057], [-175.812304, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 16.942636], [-175.812304, 24.179215], [-168.575725, 24.179215], [-168.575725, 16.942636], [-175.812304, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 24.179215], [-175.812304, 31.415794], [-168.575725, 31.415794], [-168.575725, 24.179215], [-175.812304, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 31.415794], [-175.812304, 38.652373], [-168.575725, 38.652373], [-168.575725, 31.415794], [-175.812304, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 38.652373], [-175.812304, 45.888952], [-168.575725, 45.888952], [-168.575725, 38.652373], [-175.812304, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 45.888952], [-175.812304, 53.125532], [-168.575725, 53.125532], [-168.575725, 45.888952], [-175.812304, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 53.125532], [-175.812304, 60.362111], [-168.575725, 60.362111], [-168.575725, 53.125532], [-175.812304, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 60.362111], [-175.812304, 67.59869], [-168.575725, 67.59869], [-168.575725, 60.362111], [-175.812304, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-175.812304, 67.59869], [-175.812304, 74.835269], [-168.575725, 74.835269], [-168.575725, 67.59869], [-175.812304, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -77.132893], [-168.575725, -69.896314], [-161.339146, -69.896314], [-161.339146, -77.132893], [-168.575725, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -69.896314], [-168.575725, -62.659735], [-161.339146, -62.659735], [-161.339146, -69.896314], [-168.575725, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -62.659735], [-168.575725, -55.423156], [-161.339146, -55.423156], [-161.339146, -62.659735], [-168.575725, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -55.423156], [-168.575725, -48.186577], [-161.339146, -48.186577], [-161.339146, -55.423156], [-168.575725, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -48.186577], [-168.575725, -40.949997], [-161.339146, -40.949997], [-161.339146, -48.186577], [-168.575725, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -40.949997], [-168.575725, -33.713418], [-161.339146, -33.713418], [-161.339146, -40.949997], [-168.575725, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -33.713418], [-168.575725, -26.476839], [-161.339146, -26.476839], [-161.339146, -33.713418], [-168.575725, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -26.476839], [-168.575725, -19.24026], [-161.339146, -19.24026], [-161.339146, -26.476839], [-168.575725, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -19.24026], [-168.575725, -12.003681], [-161.339146, -12.003681], [-161.339146, -19.24026], [-168.575725, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -12.003681], [-168.575725, -4.767102], [-161.339146, -4.767102], [-161.339146, -12.003681], [-168.575725, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, -4.767102], [-168.575725, 2.469478], [-161.339146, 2.469478], [-161.339146, -4.767102], [-168.575725, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 2.469478], [-168.575725, 9.706057], [-161.339146, 9.706057], [-161.339146, 2.469478], [-168.575725, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 9.706057], [-168.575725, 16.942636], [-161.339146, 16.942636], [-161.339146, 9.706057], [-168.575725, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 16.942636], [-168.575725, 24.179215], [-161.339146, 24.179215], [-161.339146, 16.942636], [-168.575725, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 24.179215], [-168.575725, 31.415794], [-161.339146, 31.415794], [-161.339146, 24.179215], [-168.575725, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 31.415794], [-168.575725, 38.652373], [-161.339146, 38.652373], [-161.339146, 31.415794], [-168.575725, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 38.652373], [-168.575725, 45.888952], [-161.339146, 45.888952], [-161.339146, 38.652373], [-168.575725, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 45.888952], [-168.575725, 53.125532], [-161.339146, 53.125532], [-161.339146, 45.888952], [-168.575725, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 53.125532], [-168.575725, 60.362111], [-161.339146, 60.362111], [-161.339146, 53.125532], [-168.575725, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 60.362111], [-168.575725, 67.59869], [-161.339146, 67.59869], [-161.339146, 60.362111], [-168.575725, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-168.575725, 67.59869], [-168.575725, 74.835269], [-161.339146, 74.835269], [-161.339146, 67.59869], [-168.575725, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -77.132893], [-161.339146, -69.896314], [-154.102567, -69.896314], [-154.102567, -77.132893], [-161.339146, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -69.896314], [-161.339146, -62.659735], [-154.102567, -62.659735], [-154.102567, -69.896314], [-161.339146, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -62.659735], [-161.339146, -55.423156], [-154.102567, -55.423156], [-154.102567, -62.659735], [-161.339146, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -55.423156], [-161.339146, -48.186577], [-154.102567, -48.186577], [-154.102567, -55.423156], [-161.339146, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -48.186577], [-161.339146, -40.949997], [-154.102567, -40.949997], [-154.102567, -48.186577], [-161.339146, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -40.949997], [-161.339146, -33.713418], [-154.102567, -33.713418], [-154.102567, -40.949997], [-161.339146, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -33.713418], [-161.339146, -26.476839], [-154.102567, -26.476839], [-154.102567, -33.713418], [-161.339146, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -26.476839], [-161.339146, -19.24026], [-154.102567, -19.24026], [-154.102567, -26.476839], [-161.339146, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -19.24026], [-161.339146, -12.003681], [-154.102567, -12.003681], [-154.102567, -19.24026], [-161.339146, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -12.003681], [-161.339146, -4.767102], [-154.102567, -4.767102], [-154.102567, -12.003681], [-161.339146, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, -4.767102], [-161.339146, 2.469478], [-154.102567, 2.469478], [-154.102567, -4.767102], [-161.339146, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 2.469478], [-161.339146, 9.706057], [-154.102567, 9.706057], [-154.102567, 2.469478], [-161.339146, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 9.706057], [-161.339146, 16.942636], [-154.102567, 16.942636], [-154.102567, 9.706057], [-161.339146, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 16.942636], [-161.339146, 24.179215], [-154.102567, 24.179215], [-154.102567, 16.942636], [-161.339146, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 24.179215], [-161.339146, 31.415794], [-154.102567, 31.415794], [-154.102567, 24.179215], [-161.339146, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 31.415794], [-161.339146, 38.652373], [-154.102567, 38.652373], [-154.102567, 31.415794], [-161.339146, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 38.652373], [-161.339146, 45.888952], [-154.102567, 45.888952], [-154.102567, 38.652373], [-161.339146, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 45.888952], [-161.339146, 53.125532], [-154.102567, 53.125532], [-154.102567, 45.888952], [-161.339146, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 53.125532], [-161.339146, 60.362111], [-154.102567, 60.362111], [-154.102567, 53.125532], [-161.339146, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 60.362111], [-161.339146, 67.59869], [-154.102567, 67.59869], [-154.102567, 60.362111], [-161.339146, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-161.339146, 67.59869], [-161.339146, 74.835269], [-154.102567, 74.835269], [-154.102567, 67.59869], [-161.339146, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -77.132893], [-154.102567, -69.896314], [-146.865987, -69.896314], [-146.865987, -77.132893], [-154.102567, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -69.896314], [-154.102567, -62.659735], [-146.865987, -62.659735], [-146.865987, -69.896314], [-154.102567, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -62.659735], [-154.102567, -55.423156], [-146.865987, -55.423156], [-146.865987, -62.659735], [-154.102567, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -55.423156], [-154.102567, -48.186577], [-146.865987, -48.186577], [-146.865987, -55.423156], [-154.102567, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -48.186577], [-154.102567, -40.949997], [-146.865987, -40.949997], [-146.865987, -48.186577], [-154.102567, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -40.949997], [-154.102567, -33.713418], [-146.865987, -33.713418], [-146.865987, -40.949997], [-154.102567, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -33.713418], [-154.102567, -26.476839], [-146.865987, -26.476839], [-146.865987, -33.713418], [-154.102567, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -26.476839], [-154.102567, -19.24026], [-146.865987, -19.24026], [-146.865987, -26.476839], [-154.102567, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -19.24026], [-154.102567, -12.003681], [-146.865987, -12.003681], [-146.865987, -19.24026], [-154.102567, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -12.003681], [-154.102567, -4.767102], [-146.865987, -4.767102], [-146.865987, -12.003681], [-154.102567, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, -4.767102], [-154.102567, 2.469478], [-146.865987, 2.469478], [-146.865987, -4.767102], [-154.102567, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 2.469478], [-154.102567, 9.706057], [-146.865987, 9.706057], [-146.865987, 2.469478], [-154.102567, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 9.706057], [-154.102567, 16.942636], [-146.865987, 16.942636], [-146.865987, 9.706057], [-154.102567, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 16.942636], [-154.102567, 24.179215], [-146.865987, 24.179215], [-146.865987, 16.942636], [-154.102567, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 24.179215], [-154.102567, 31.415794], [-146.865987, 31.415794], [-146.865987, 24.179215], [-154.102567, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 31.415794], [-154.102567, 38.652373], [-146.865987, 38.652373], [-146.865987, 31.415794], [-154.102567, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 38.652373], [-154.102567, 45.888952], [-146.865987, 45.888952], [-146.865987, 38.652373], [-154.102567, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 45.888952], [-154.102567, 53.125532], [-146.865987, 53.125532], [-146.865987, 45.888952], [-154.102567, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 53.125532], [-154.102567, 60.362111], [-146.865987, 60.362111], [-146.865987, 53.125532], [-154.102567, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 60.362111], [-154.102567, 67.59869], [-146.865987, 67.59869], [-146.865987, 60.362111], [-154.102567, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-154.102567, 67.59869], [-154.102567, 74.835269], [-146.865987, 74.835269], [-146.865987, 67.59869], [-154.102567, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -77.132893], [-146.865987, -69.896314], [-139.629408, -69.896314], [-139.629408, -77.132893], [-146.865987, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -69.896314], [-146.865987, -62.659735], [-139.629408, -62.659735], [-139.629408, -69.896314], [-146.865987, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -62.659735], [-146.865987, -55.423156], [-139.629408, -55.423156], [-139.629408, -62.659735], [-146.865987, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -55.423156], [-146.865987, -48.186577], [-139.629408, -48.186577], [-139.629408, -55.423156], [-146.865987, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -48.186577], [-146.865987, -40.949997], [-139.629408, -40.949997], [-139.629408, -48.186577], [-146.865987, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -40.949997], [-146.865987, -33.713418], [-139.629408, -33.713418], [-139.629408, -40.949997], [-146.865987, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -33.713418], [-146.865987, -26.476839], [-139.629408, -26.476839], [-139.629408, -33.713418], [-146.865987, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -26.476839], [-146.865987, -19.24026], [-139.629408, -19.24026], [-139.629408, -26.476839], [-146.865987, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -19.24026], [-146.865987, -12.003681], [-139.629408, -12.003681], [-139.629408, -19.24026], [-146.865987, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -12.003681], [-146.865987, -4.767102], [-139.629408, -4.767102], [-139.629408, -12.003681], [-146.865987, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, -4.767102], [-146.865987, 2.469478], [-139.629408, 2.469478], [-139.629408, -4.767102], [-146.865987, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 2.469478], [-146.865987, 9.706057], [-139.629408, 9.706057], [-139.629408, 2.469478], [-146.865987, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 9.706057], [-146.865987, 16.942636], [-139.629408, 16.942636], [-139.629408, 9.706057], [-146.865987, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 16.942636], [-146.865987, 24.179215], [-139.629408, 24.179215], [-139.629408, 16.942636], [-146.865987, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 24.179215], [-146.865987, 31.415794], [-139.629408, 31.415794], [-139.629408, 24.179215], [-146.865987, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 31.415794], [-146.865987, 38.652373], [-139.629408, 38.652373], [-139.629408, 31.415794], [-146.865987, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 38.652373], [-146.865987, 45.888952], [-139.629408, 45.888952], [-139.629408, 38.652373], [-146.865987, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 45.888952], [-146.865987, 53.125532], [-139.629408, 53.125532], [-139.629408, 45.888952], [-146.865987, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 53.125532], [-146.865987, 60.362111], [-139.629408, 60.362111], [-139.629408, 53.125532], [-146.865987, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 60.362111], [-146.865987, 67.59869], [-139.629408, 67.59869], [-139.629408, 60.362111], [-146.865987, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.865987, 67.59869], [-146.865987, 74.835269], [-139.629408, 74.835269], [-139.629408, 67.59869], [-146.865987, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -77.132893], [-139.629408, -69.896314], [-132.392829, -69.896314], [-132.392829, -77.132893], [-139.629408, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -69.896314], [-139.629408, -62.659735], [-132.392829, -62.659735], [-132.392829, -69.896314], [-139.629408, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -62.659735], [-139.629408, -55.423156], [-132.392829, -55.423156], [-132.392829, -62.659735], [-139.629408, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -55.423156], [-139.629408, -48.186577], [-132.392829, -48.186577], [-132.392829, -55.423156], [-139.629408, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -48.186577], [-139.629408, -40.949997], [-132.392829, -40.949997], [-132.392829, -48.186577], [-139.629408, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -40.949997], [-139.629408, -33.713418], [-132.392829, -33.713418], [-132.392829, -40.949997], [-139.629408, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -33.713418], [-139.629408, -26.476839], [-132.392829, -26.476839], [-132.392829, -33.713418], [-139.629408, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -26.476839], [-139.629408, -19.24026], [-132.392829, -19.24026], [-132.392829, -26.476839], [-139.629408, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -19.24026], [-139.629408, -12.003681], [-132.392829, -12.003681], [-132.392829, -19.24026], [-139.629408, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -12.003681], [-139.629408, -4.767102], [-132.392829, -4.767102], [-132.392829, -12.003681], [-139.629408, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, -4.767102], [-139.629408, 2.469478], [-132.392829, 2.469478], [-132.392829, -4.767102], [-139.629408, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 2.469478], [-139.629408, 9.706057], [-132.392829, 9.706057], [-132.392829, 2.469478], [-139.629408, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 9.706057], [-139.629408, 16.942636], [-132.392829, 16.942636], [-132.392829, 9.706057], [-139.629408, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 16.942636], [-139.629408, 24.179215], [-132.392829, 24.179215], [-132.392829, 16.942636], [-139.629408, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 24.179215], [-139.629408, 31.415794], [-132.392829, 31.415794], [-132.392829, 24.179215], [-139.629408, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 31.415794], [-139.629408, 38.652373], [-132.392829, 38.652373], [-132.392829, 31.415794], [-139.629408, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 38.652373], [-139.629408, 45.888952], [-132.392829, 45.888952], [-132.392829, 38.652373], [-139.629408, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 45.888952], [-139.629408, 53.125532], [-132.392829, 53.125532], [-132.392829, 45.888952], [-139.629408, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 53.125532], [-139.629408, 60.362111], [-132.392829, 60.362111], [-132.392829, 53.125532], [-139.629408, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 60.362111], [-139.629408, 67.59869], [-132.392829, 67.59869], [-132.392829, 60.362111], [-139.629408, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-139.629408, 67.59869], [-139.629408, 74.835269], [-132.392829, 74.835269], [-132.392829, 67.59869], [-139.629408, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -77.132893], [-132.392829, -69.896314], [-125.15625, -69.896314], [-125.15625, -77.132893], [-132.392829, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -69.896314], [-132.392829, -62.659735], [-125.15625, -62.659735], [-125.15625, -69.896314], [-132.392829, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -62.659735], [-132.392829, -55.423156], [-125.15625, -55.423156], [-125.15625, -62.659735], [-132.392829, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -55.423156], [-132.392829, -48.186577], [-125.15625, -48.186577], [-125.15625, -55.423156], [-132.392829, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -48.186577], [-132.392829, -40.949997], [-125.15625, -40.949997], [-125.15625, -48.186577], [-132.392829, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -40.949997], [-132.392829, -33.713418], [-125.15625, -33.713418], [-125.15625, -40.949997], [-132.392829, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -33.713418], [-132.392829, -26.476839], [-125.15625, -26.476839], [-125.15625, -33.713418], [-132.392829, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -26.476839], [-132.392829, -19.24026], [-125.15625, -19.24026], [-125.15625, -26.476839], [-132.392829, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -19.24026], [-132.392829, -12.003681], [-125.15625, -12.003681], [-125.15625, -19.24026], [-132.392829, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -12.003681], [-132.392829, -4.767102], [-125.15625, -4.767102], [-125.15625, -12.003681], [-132.392829, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, -4.767102], [-132.392829, 2.469478], [-125.15625, 2.469478], [-125.15625, -4.767102], [-132.392829, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 2.469478], [-132.392829, 9.706057], [-125.15625, 9.706057], [-125.15625, 2.469478], [-132.392829, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 9.706057], [-132.392829, 16.942636], [-125.15625, 16.942636], [-125.15625, 9.706057], [-132.392829, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 16.942636], [-132.392829, 24.179215], [-125.15625, 24.179215], [-125.15625, 16.942636], [-132.392829, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 24.179215], [-132.392829, 31.415794], [-125.15625, 31.415794], [-125.15625, 24.179215], [-132.392829, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 31.415794], [-132.392829, 38.652373], [-125.15625, 38.652373], [-125.15625, 31.415794], [-132.392829, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 38.652373], [-132.392829, 45.888952], [-125.15625, 45.888952], [-125.15625, 38.652373], [-132.392829, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 45.888952], [-132.392829, 53.125532], [-125.15625, 53.125532], [-125.15625, 45.888952], [-132.392829, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 53.125532], [-132.392829, 60.362111], [-125.15625, 60.362111], [-125.15625, 53.125532], [-132.392829, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 60.362111], [-132.392829, 67.59869], [-125.15625, 67.59869], [-125.15625, 60.362111], [-132.392829, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-132.392829, 67.59869], [-132.392829, 74.835269], [-125.15625, 74.835269], [-125.15625, 67.59869], [-132.392829, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -77.132893], [-125.15625, -69.896314], [-117.919671, -69.896314], [-117.919671, -77.132893], [-125.15625, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -69.896314], [-125.15625, -62.659735], [-117.919671, -62.659735], [-117.919671, -69.896314], [-125.15625, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -62.659735], [-125.15625, -55.423156], [-117.919671, -55.423156], [-117.919671, -62.659735], [-125.15625, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -55.423156], [-125.15625, -48.186577], [-117.919671, -48.186577], [-117.919671, -55.423156], [-125.15625, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -48.186577], [-125.15625, -40.949997], [-117.919671, -40.949997], [-117.919671, -48.186577], [-125.15625, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -40.949997], [-125.15625, -33.713418], [-117.919671, -33.713418], [-117.919671, -40.949997], [-125.15625, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -33.713418], [-125.15625, -26.476839], [-117.919671, -26.476839], [-117.919671, -33.713418], [-125.15625, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -26.476839], [-125.15625, -19.24026], [-117.919671, -19.24026], [-117.919671, -26.476839], [-125.15625, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -19.24026], [-125.15625, -12.003681], [-117.919671, -12.003681], [-117.919671, -19.24026], [-125.15625, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -12.003681], [-125.15625, -4.767102], [-117.919671, -4.767102], [-117.919671, -12.003681], [-125.15625, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, -4.767102], [-125.15625, 2.469478], [-117.919671, 2.469478], [-117.919671, -4.767102], [-125.15625, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 2.469478], [-125.15625, 9.706057], [-117.919671, 9.706057], [-117.919671, 2.469478], [-125.15625, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 9.706057], [-125.15625, 16.942636], [-117.919671, 16.942636], [-117.919671, 9.706057], [-125.15625, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 16.942636], [-125.15625, 24.179215], [-117.919671, 24.179215], [-117.919671, 16.942636], [-125.15625, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 24.179215], [-125.15625, 31.415794], [-117.919671, 31.415794], [-117.919671, 24.179215], [-125.15625, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 31.415794], [-125.15625, 38.652373], [-117.919671, 38.652373], [-117.919671, 31.415794], [-125.15625, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 38.652373], [-125.15625, 45.888952], [-117.919671, 45.888952], [-117.919671, 38.652373], [-125.15625, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 45.888952], [-125.15625, 53.125532], [-117.919671, 53.125532], [-117.919671, 45.888952], [-125.15625, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 53.125532], [-125.15625, 60.362111], [-117.919671, 60.362111], [-117.919671, 53.125532], [-125.15625, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 60.362111], [-125.15625, 67.59869], [-117.919671, 67.59869], [-117.919671, 60.362111], [-125.15625, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-125.15625, 67.59869], [-125.15625, 74.835269], [-117.919671, 74.835269], [-117.919671, 67.59869], [-125.15625, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -77.132893], [-117.919671, -69.896314], [-110.683092, -69.896314], [-110.683092, -77.132893], [-117.919671, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -69.896314], [-117.919671, -62.659735], [-110.683092, -62.659735], [-110.683092, -69.896314], [-117.919671, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -62.659735], [-117.919671, -55.423156], [-110.683092, -55.423156], [-110.683092, -62.659735], [-117.919671, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -55.423156], [-117.919671, -48.186577], [-110.683092, -48.186577], [-110.683092, -55.423156], [-117.919671, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -48.186577], [-117.919671, -40.949997], [-110.683092, -40.949997], [-110.683092, -48.186577], [-117.919671, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -40.949997], [-117.919671, -33.713418], [-110.683092, -33.713418], [-110.683092, -40.949997], [-117.919671, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -33.713418], [-117.919671, -26.476839], [-110.683092, -26.476839], [-110.683092, -33.713418], [-117.919671, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -26.476839], [-117.919671, -19.24026], [-110.683092, -19.24026], [-110.683092, -26.476839], [-117.919671, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -19.24026], [-117.919671, -12.003681], [-110.683092, -12.003681], [-110.683092, -19.24026], [-117.919671, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -12.003681], [-117.919671, -4.767102], [-110.683092, -4.767102], [-110.683092, -12.003681], [-117.919671, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, -4.767102], [-117.919671, 2.469478], [-110.683092, 2.469478], [-110.683092, -4.767102], [-117.919671, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 2.469478], [-117.919671, 9.706057], [-110.683092, 9.706057], [-110.683092, 2.469478], [-117.919671, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 9.706057], [-117.919671, 16.942636], [-110.683092, 16.942636], [-110.683092, 9.706057], [-117.919671, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 16.942636], [-117.919671, 24.179215], [-110.683092, 24.179215], [-110.683092, 16.942636], [-117.919671, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 24.179215], [-117.919671, 31.415794], [-110.683092, 31.415794], [-110.683092, 24.179215], [-117.919671, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 31.415794], [-117.919671, 38.652373], [-110.683092, 38.652373], [-110.683092, 31.415794], [-117.919671, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 38.652373], [-117.919671, 45.888952], [-110.683092, 45.888952], [-110.683092, 38.652373], [-117.919671, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 45.888952], [-117.919671, 53.125532], [-110.683092, 53.125532], [-110.683092, 45.888952], [-117.919671, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 53.125532], [-117.919671, 60.362111], [-110.683092, 60.362111], [-110.683092, 53.125532], [-117.919671, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 60.362111], [-117.919671, 67.59869], [-110.683092, 67.59869], [-110.683092, 60.362111], [-117.919671, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-117.919671, 67.59869], [-117.919671, 74.835269], [-110.683092, 74.835269], [-110.683092, 67.59869], [-117.919671, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -77.132893], [-110.683092, -69.896314], [-103.446513, -69.896314], [-103.446513, -77.132893], [-110.683092, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -69.896314], [-110.683092, -62.659735], [-103.446513, -62.659735], [-103.446513, -69.896314], [-110.683092, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -62.659735], [-110.683092, -55.423156], [-103.446513, -55.423156], [-103.446513, -62.659735], [-110.683092, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -55.423156], [-110.683092, -48.186577], [-103.446513, -48.186577], [-103.446513, -55.423156], [-110.683092, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -48.186577], [-110.683092, -40.949997], [-103.446513, -40.949997], [-103.446513, -48.186577], [-110.683092, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -40.949997], [-110.683092, -33.713418], [-103.446513, -33.713418], [-103.446513, -40.949997], [-110.683092, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -33.713418], [-110.683092, -26.476839], [-103.446513, -26.476839], [-103.446513, -33.713418], [-110.683092, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -26.476839], [-110.683092, -19.24026], [-103.446513, -19.24026], [-103.446513, -26.476839], [-110.683092, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -19.24026], [-110.683092, -12.003681], [-103.446513, -12.003681], [-103.446513, -19.24026], [-110.683092, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -12.003681], [-110.683092, -4.767102], [-103.446513, -4.767102], [-103.446513, -12.003681], [-110.683092, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, -4.767102], [-110.683092, 2.469478], [-103.446513, 2.469478], [-103.446513, -4.767102], [-110.683092, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 2.469478], [-110.683092, 9.706057], [-103.446513, 9.706057], [-103.446513, 2.469478], [-110.683092, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 9.706057], [-110.683092, 16.942636], [-103.446513, 16.942636], [-103.446513, 9.706057], [-110.683092, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 16.942636], [-110.683092, 24.179215], [-103.446513, 24.179215], [-103.446513, 16.942636], [-110.683092, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 24.179215], [-110.683092, 31.415794], [-103.446513, 31.415794], [-103.446513, 24.179215], [-110.683092, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 31.415794], [-110.683092, 38.652373], [-103.446513, 38.652373], [-103.446513, 31.415794], [-110.683092, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 38.652373], [-110.683092, 45.888952], [-103.446513, 45.888952], [-103.446513, 38.652373], [-110.683092, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 45.888952], [-110.683092, 53.125532], [-103.446513, 53.125532], [-103.446513, 45.888952], [-110.683092, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 53.125532], [-110.683092, 60.362111], [-103.446513, 60.362111], [-103.446513, 53.125532], [-110.683092, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 60.362111], [-110.683092, 67.59869], [-103.446513, 67.59869], [-103.446513, 60.362111], [-110.683092, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-110.683092, 67.59869], [-110.683092, 74.835269], [-103.446513, 74.835269], [-103.446513, 67.59869], [-110.683092, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -77.132893], [-103.446513, -69.896314], [-96.209933, -69.896314], [-96.209933, -77.132893], [-103.446513, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -69.896314], [-103.446513, -62.659735], [-96.209933, -62.659735], [-96.209933, -69.896314], [-103.446513, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -62.659735], [-103.446513, -55.423156], [-96.209933, -55.423156], [-96.209933, -62.659735], [-103.446513, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -55.423156], [-103.446513, -48.186577], [-96.209933, -48.186577], [-96.209933, -55.423156], [-103.446513, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -48.186577], [-103.446513, -40.949997], [-96.209933, -40.949997], [-96.209933, -48.186577], [-103.446513, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -40.949997], [-103.446513, -33.713418], [-96.209933, -33.713418], [-96.209933, -40.949997], [-103.446513, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -33.713418], [-103.446513, -26.476839], [-96.209933, -26.476839], [-96.209933, -33.713418], [-103.446513, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -26.476839], [-103.446513, -19.24026], [-96.209933, -19.24026], [-96.209933, -26.476839], [-103.446513, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -19.24026], [-103.446513, -12.003681], [-96.209933, -12.003681], [-96.209933, -19.24026], [-103.446513, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -12.003681], [-103.446513, -4.767102], [-96.209933, -4.767102], [-96.209933, -12.003681], [-103.446513, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, -4.767102], [-103.446513, 2.469478], [-96.209933, 2.469478], [-96.209933, -4.767102], [-103.446513, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 2.469478], [-103.446513, 9.706057], [-96.209933, 9.706057], [-96.209933, 2.469478], [-103.446513, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 9.706057], [-103.446513, 16.942636], [-96.209933, 16.942636], [-96.209933, 9.706057], [-103.446513, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 16.942636], [-103.446513, 24.179215], [-96.209933, 24.179215], [-96.209933, 16.942636], [-103.446513, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 24.179215], [-103.446513, 31.415794], [-96.209933, 31.415794], [-96.209933, 24.179215], [-103.446513, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 31.415794], [-103.446513, 38.652373], [-96.209933, 38.652373], [-96.209933, 31.415794], [-103.446513, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 38.652373], [-103.446513, 45.888952], [-96.209933, 45.888952], [-96.209933, 38.652373], [-103.446513, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 45.888952], [-103.446513, 53.125532], [-96.209933, 53.125532], [-96.209933, 45.888952], [-103.446513, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 53.125532], [-103.446513, 60.362111], [-96.209933, 60.362111], [-96.209933, 53.125532], [-103.446513, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 60.362111], [-103.446513, 67.59869], [-96.209933, 67.59869], [-96.209933, 60.362111], [-103.446513, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-103.446513, 67.59869], [-103.446513, 74.835269], [-96.209933, 74.835269], [-96.209933, 67.59869], [-103.446513, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -77.132893], [-96.209933, -69.896314], [-88.973354, -69.896314], [-88.973354, -77.132893], [-96.209933, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -69.896314], [-96.209933, -62.659735], [-88.973354, -62.659735], [-88.973354, -69.896314], [-96.209933, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -62.659735], [-96.209933, -55.423156], [-88.973354, -55.423156], [-88.973354, -62.659735], [-96.209933, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -55.423156], [-96.209933, -48.186577], [-88.973354, -48.186577], [-88.973354, -55.423156], [-96.209933, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -48.186577], [-96.209933, -40.949997], [-88.973354, -40.949997], [-88.973354, -48.186577], [-96.209933, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -40.949997], [-96.209933, -33.713418], [-88.973354, -33.713418], [-88.973354, -40.949997], [-96.209933, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -33.713418], [-96.209933, -26.476839], [-88.973354, -26.476839], [-88.973354, -33.713418], [-96.209933, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -26.476839], [-96.209933, -19.24026], [-88.973354, -19.24026], [-88.973354, -26.476839], [-96.209933, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -19.24026], [-96.209933, -12.003681], [-88.973354, -12.003681], [-88.973354, -19.24026], [-96.209933, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -12.003681], [-96.209933, -4.767102], [-88.973354, -4.767102], [-88.973354, -12.003681], [-96.209933, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, -4.767102], [-96.209933, 2.469478], [-88.973354, 2.469478], [-88.973354, -4.767102], [-96.209933, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 2.469478], [-96.209933, 9.706057], [-88.973354, 9.706057], [-88.973354, 2.469478], [-96.209933, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 9.706057], [-96.209933, 16.942636], [-88.973354, 16.942636], [-88.973354, 9.706057], [-96.209933, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 16.942636], [-96.209933, 24.179215], [-88.973354, 24.179215], [-88.973354, 16.942636], [-96.209933, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 24.179215], [-96.209933, 31.415794], [-88.973354, 31.415794], [-88.973354, 24.179215], [-96.209933, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 31.415794], [-96.209933, 38.652373], [-88.973354, 38.652373], [-88.973354, 31.415794], [-96.209933, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 38.652373], [-96.209933, 45.888952], [-88.973354, 45.888952], [-88.973354, 38.652373], [-96.209933, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 45.888952], [-96.209933, 53.125532], [-88.973354, 53.125532], [-88.973354, 45.888952], [-96.209933, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 53.125532], [-96.209933, 60.362111], [-88.973354, 60.362111], [-88.973354, 53.125532], [-96.209933, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 60.362111], [-96.209933, 67.59869], [-88.973354, 67.59869], [-88.973354, 60.362111], [-96.209933, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-96.209933, 67.59869], [-96.209933, 74.835269], [-88.973354, 74.835269], [-88.973354, 67.59869], [-96.209933, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -77.132893], [-88.973354, -69.896314], [-81.736775, -69.896314], [-81.736775, -77.132893], [-88.973354, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -69.896314], [-88.973354, -62.659735], [-81.736775, -62.659735], [-81.736775, -69.896314], [-88.973354, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -62.659735], [-88.973354, -55.423156], [-81.736775, -55.423156], [-81.736775, -62.659735], [-88.973354, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -55.423156], [-88.973354, -48.186577], [-81.736775, -48.186577], [-81.736775, -55.423156], [-88.973354, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -48.186577], [-88.973354, -40.949997], [-81.736775, -40.949997], [-81.736775, -48.186577], [-88.973354, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -40.949997], [-88.973354, -33.713418], [-81.736775, -33.713418], [-81.736775, -40.949997], [-88.973354, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -33.713418], [-88.973354, -26.476839], [-81.736775, -26.476839], [-81.736775, -33.713418], [-88.973354, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -26.476839], [-88.973354, -19.24026], [-81.736775, -19.24026], [-81.736775, -26.476839], [-88.973354, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -19.24026], [-88.973354, -12.003681], [-81.736775, -12.003681], [-81.736775, -19.24026], [-88.973354, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -12.003681], [-88.973354, -4.767102], [-81.736775, -4.767102], [-81.736775, -12.003681], [-88.973354, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, -4.767102], [-88.973354, 2.469478], [-81.736775, 2.469478], [-81.736775, -4.767102], [-88.973354, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 2.469478], [-88.973354, 9.706057], [-81.736775, 9.706057], [-81.736775, 2.469478], [-88.973354, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 9.706057], [-88.973354, 16.942636], [-81.736775, 16.942636], [-81.736775, 9.706057], [-88.973354, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 16.942636], [-88.973354, 24.179215], [-81.736775, 24.179215], [-81.736775, 16.942636], [-88.973354, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 24.179215], [-88.973354, 31.415794], [-81.736775, 31.415794], [-81.736775, 24.179215], [-88.973354, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 31.415794], [-88.973354, 38.652373], [-81.736775, 38.652373], [-81.736775, 31.415794], [-88.973354, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 38.652373], [-88.973354, 45.888952], [-81.736775, 45.888952], [-81.736775, 38.652373], [-88.973354, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 45.888952], [-88.973354, 53.125532], [-81.736775, 53.125532], [-81.736775, 45.888952], [-88.973354, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 53.125532], [-88.973354, 60.362111], [-81.736775, 60.362111], [-81.736775, 53.125532], [-88.973354, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 60.362111], [-88.973354, 67.59869], [-81.736775, 67.59869], [-81.736775, 60.362111], [-88.973354, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-88.973354, 67.59869], [-88.973354, 74.835269], [-81.736775, 74.835269], [-81.736775, 67.59869], [-88.973354, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -77.132893], [-81.736775, -69.896314], [-74.500196, -69.896314], [-74.500196, -77.132893], [-81.736775, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -69.896314], [-81.736775, -62.659735], [-74.500196, -62.659735], [-74.500196, -69.896314], [-81.736775, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -62.659735], [-81.736775, -55.423156], [-74.500196, -55.423156], [-74.500196, -62.659735], [-81.736775, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -55.423156], [-81.736775, -48.186577], [-74.500196, -48.186577], [-74.500196, -55.423156], [-81.736775, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -48.186577], [-81.736775, -40.949997], [-74.500196, -40.949997], [-74.500196, -48.186577], [-81.736775, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -40.949997], [-81.736775, -33.713418], [-74.500196, -33.713418], [-74.500196, -40.949997], [-81.736775, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -33.713418], [-81.736775, -26.476839], [-74.500196, -26.476839], [-74.500196, -33.713418], [-81.736775, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -26.476839], [-81.736775, -19.24026], [-74.500196, -19.24026], [-74.500196, -26.476839], [-81.736775, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -19.24026], [-81.736775, -12.003681], [-74.500196, -12.003681], [-74.500196, -19.24026], [-81.736775, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -12.003681], [-81.736775, -4.767102], [-74.500196, -4.767102], [-74.500196, -12.003681], [-81.736775, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, -4.767102], [-81.736775, 2.469478], [-74.500196, 2.469478], [-74.500196, -4.767102], [-81.736775, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 2.469478], [-81.736775, 9.706057], [-74.500196, 9.706057], [-74.500196, 2.469478], [-81.736775, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 9.706057], [-81.736775, 16.942636], [-74.500196, 16.942636], [-74.500196, 9.706057], [-81.736775, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 16.942636], [-81.736775, 24.179215], [-74.500196, 24.179215], [-74.500196, 16.942636], [-81.736775, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 24.179215], [-81.736775, 31.415794], [-74.500196, 31.415794], [-74.500196, 24.179215], [-81.736775, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 31.415794], [-81.736775, 38.652373], [-74.500196, 38.652373], [-74.500196, 31.415794], [-81.736775, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 38.652373], [-81.736775, 45.888952], [-74.500196, 45.888952], [-74.500196, 38.652373], [-81.736775, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 45.888952], [-81.736775, 53.125532], [-74.500196, 53.125532], [-74.500196, 45.888952], [-81.736775, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 53.125532], [-81.736775, 60.362111], [-74.500196, 60.362111], [-74.500196, 53.125532], [-81.736775, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 60.362111], [-81.736775, 67.59869], [-74.500196, 67.59869], [-74.500196, 60.362111], [-81.736775, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-81.736775, 67.59869], [-81.736775, 74.835269], [-74.500196, 74.835269], [-74.500196, 67.59869], [-81.736775, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -77.132893], [-74.500196, -69.896314], [-67.263617, -69.896314], [-67.263617, -77.132893], [-74.500196, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -69.896314], [-74.500196, -62.659735], [-67.263617, -62.659735], [-67.263617, -69.896314], [-74.500196, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -62.659735], [-74.500196, -55.423156], [-67.263617, -55.423156], [-67.263617, -62.659735], [-74.500196, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -55.423156], [-74.500196, -48.186577], [-67.263617, -48.186577], [-67.263617, -55.423156], [-74.500196, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -48.186577], [-74.500196, -40.949997], [-67.263617, -40.949997], [-67.263617, -48.186577], [-74.500196, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -40.949997], [-74.500196, -33.713418], [-67.263617, -33.713418], [-67.263617, -40.949997], [-74.500196, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -33.713418], [-74.500196, -26.476839], [-67.263617, -26.476839], [-67.263617, -33.713418], [-74.500196, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -26.476839], [-74.500196, -19.24026], [-67.263617, -19.24026], [-67.263617, -26.476839], [-74.500196, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -19.24026], [-74.500196, -12.003681], [-67.263617, -12.003681], [-67.263617, -19.24026], [-74.500196, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -12.003681], [-74.500196, -4.767102], [-67.263617, -4.767102], [-67.263617, -12.003681], [-74.500196, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, -4.767102], [-74.500196, 2.469478], [-67.263617, 2.469478], [-67.263617, -4.767102], [-74.500196, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 2.469478], [-74.500196, 9.706057], [-67.263617, 9.706057], [-67.263617, 2.469478], [-74.500196, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 9.706057], [-74.500196, 16.942636], [-67.263617, 16.942636], [-67.263617, 9.706057], [-74.500196, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 16.942636], [-74.500196, 24.179215], [-67.263617, 24.179215], [-67.263617, 16.942636], [-74.500196, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 24.179215], [-74.500196, 31.415794], [-67.263617, 31.415794], [-67.263617, 24.179215], [-74.500196, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 31.415794], [-74.500196, 38.652373], [-67.263617, 38.652373], [-67.263617, 31.415794], [-74.500196, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 38.652373], [-74.500196, 45.888952], [-67.263617, 45.888952], [-67.263617, 38.652373], [-74.500196, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 45.888952], [-74.500196, 53.125532], [-67.263617, 53.125532], [-67.263617, 45.888952], [-74.500196, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 53.125532], [-74.500196, 60.362111], [-67.263617, 60.362111], [-67.263617, 53.125532], [-74.500196, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 60.362111], [-74.500196, 67.59869], [-67.263617, 67.59869], [-67.263617, 60.362111], [-74.500196, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.500196, 67.59869], [-74.500196, 74.835269], [-67.263617, 74.835269], [-67.263617, 67.59869], [-74.500196, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -77.132893], [-67.263617, -69.896314], [-60.027038, -69.896314], [-60.027038, -77.132893], [-67.263617, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -69.896314], [-67.263617, -62.659735], [-60.027038, -62.659735], [-60.027038, -69.896314], [-67.263617, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -62.659735], [-67.263617, -55.423156], [-60.027038, -55.423156], [-60.027038, -62.659735], [-67.263617, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -55.423156], [-67.263617, -48.186577], [-60.027038, -48.186577], [-60.027038, -55.423156], [-67.263617, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -48.186577], [-67.263617, -40.949997], [-60.027038, -40.949997], [-60.027038, -48.186577], [-67.263617, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -40.949997], [-67.263617, -33.713418], [-60.027038, -33.713418], [-60.027038, -40.949997], [-67.263617, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -33.713418], [-67.263617, -26.476839], [-60.027038, -26.476839], [-60.027038, -33.713418], [-67.263617, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -26.476839], [-67.263617, -19.24026], [-60.027038, -19.24026], [-60.027038, -26.476839], [-67.263617, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -19.24026], [-67.263617, -12.003681], [-60.027038, -12.003681], [-60.027038, -19.24026], [-67.263617, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -12.003681], [-67.263617, -4.767102], [-60.027038, -4.767102], [-60.027038, -12.003681], [-67.263617, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, -4.767102], [-67.263617, 2.469478], [-60.027038, 2.469478], [-60.027038, -4.767102], [-67.263617, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 2.469478], [-67.263617, 9.706057], [-60.027038, 9.706057], [-60.027038, 2.469478], [-67.263617, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 9.706057], [-67.263617, 16.942636], [-60.027038, 16.942636], [-60.027038, 9.706057], [-67.263617, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 16.942636], [-67.263617, 24.179215], [-60.027038, 24.179215], [-60.027038, 16.942636], [-67.263617, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 24.179215], [-67.263617, 31.415794], [-60.027038, 31.415794], [-60.027038, 24.179215], [-67.263617, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 31.415794], [-67.263617, 38.652373], [-60.027038, 38.652373], [-60.027038, 31.415794], [-67.263617, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 38.652373], [-67.263617, 45.888952], [-60.027038, 45.888952], [-60.027038, 38.652373], [-67.263617, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 45.888952], [-67.263617, 53.125532], [-60.027038, 53.125532], [-60.027038, 45.888952], [-67.263617, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 53.125532], [-67.263617, 60.362111], [-60.027038, 60.362111], [-60.027038, 53.125532], [-67.263617, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 60.362111], [-67.263617, 67.59869], [-60.027038, 67.59869], [-60.027038, 60.362111], [-67.263617, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-67.263617, 67.59869], [-67.263617, 74.835269], [-60.027038, 74.835269], [-60.027038, 67.59869], [-67.263617, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -77.132893], [-60.027038, -69.896314], [-52.790458, -69.896314], [-52.790458, -77.132893], [-60.027038, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -69.896314], [-60.027038, -62.659735], [-52.790458, -62.659735], [-52.790458, -69.896314], [-60.027038, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -62.659735], [-60.027038, -55.423156], [-52.790458, -55.423156], [-52.790458, -62.659735], [-60.027038, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -55.423156], [-60.027038, -48.186577], [-52.790458, -48.186577], [-52.790458, -55.423156], [-60.027038, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -48.186577], [-60.027038, -40.949997], [-52.790458, -40.949997], [-52.790458, -48.186577], [-60.027038, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -40.949997], [-60.027038, -33.713418], [-52.790458, -33.713418], [-52.790458, -40.949997], [-60.027038, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -33.713418], [-60.027038, -26.476839], [-52.790458, -26.476839], [-52.790458, -33.713418], [-60.027038, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -26.476839], [-60.027038, -19.24026], [-52.790458, -19.24026], [-52.790458, -26.476839], [-60.027038, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -19.24026], [-60.027038, -12.003681], [-52.790458, -12.003681], [-52.790458, -19.24026], [-60.027038, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -12.003681], [-60.027038, -4.767102], [-52.790458, -4.767102], [-52.790458, -12.003681], [-60.027038, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, -4.767102], [-60.027038, 2.469478], [-52.790458, 2.469478], [-52.790458, -4.767102], [-60.027038, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 2.469478], [-60.027038, 9.706057], [-52.790458, 9.706057], [-52.790458, 2.469478], [-60.027038, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 9.706057], [-60.027038, 16.942636], [-52.790458, 16.942636], [-52.790458, 9.706057], [-60.027038, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 16.942636], [-60.027038, 24.179215], [-52.790458, 24.179215], [-52.790458, 16.942636], [-60.027038, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 24.179215], [-60.027038, 31.415794], [-52.790458, 31.415794], [-52.790458, 24.179215], [-60.027038, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 31.415794], [-60.027038, 38.652373], [-52.790458, 38.652373], [-52.790458, 31.415794], [-60.027038, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 38.652373], [-60.027038, 45.888952], [-52.790458, 45.888952], [-52.790458, 38.652373], [-60.027038, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 45.888952], [-60.027038, 53.125532], [-52.790458, 53.125532], [-52.790458, 45.888952], [-60.027038, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 53.125532], [-60.027038, 60.362111], [-52.790458, 60.362111], [-52.790458, 53.125532], [-60.027038, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 60.362111], [-60.027038, 67.59869], [-52.790458, 67.59869], [-52.790458, 60.362111], [-60.027038, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-60.027038, 67.59869], [-60.027038, 74.835269], [-52.790458, 74.835269], [-52.790458, 67.59869], [-60.027038, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -77.132893], [-52.790458, -69.896314], [-45.553879, -69.896314], [-45.553879, -77.132893], [-52.790458, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -69.896314], [-52.790458, -62.659735], [-45.553879, -62.659735], [-45.553879, -69.896314], [-52.790458, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -62.659735], [-52.790458, -55.423156], [-45.553879, -55.423156], [-45.553879, -62.659735], [-52.790458, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -55.423156], [-52.790458, -48.186577], [-45.553879, -48.186577], [-45.553879, -55.423156], [-52.790458, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -48.186577], [-52.790458, -40.949997], [-45.553879, -40.949997], [-45.553879, -48.186577], [-52.790458, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -40.949997], [-52.790458, -33.713418], [-45.553879, -33.713418], [-45.553879, -40.949997], [-52.790458, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -33.713418], [-52.790458, -26.476839], [-45.553879, -26.476839], [-45.553879, -33.713418], [-52.790458, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -26.476839], [-52.790458, -19.24026], [-45.553879, -19.24026], [-45.553879, -26.476839], [-52.790458, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -19.24026], [-52.790458, -12.003681], [-45.553879, -12.003681], [-45.553879, -19.24026], [-52.790458, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -12.003681], [-52.790458, -4.767102], [-45.553879, -4.767102], [-45.553879, -12.003681], [-52.790458, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, -4.767102], [-52.790458, 2.469478], [-45.553879, 2.469478], [-45.553879, -4.767102], [-52.790458, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 2.469478], [-52.790458, 9.706057], [-45.553879, 9.706057], [-45.553879, 2.469478], [-52.790458, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 9.706057], [-52.790458, 16.942636], [-45.553879, 16.942636], [-45.553879, 9.706057], [-52.790458, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 16.942636], [-52.790458, 24.179215], [-45.553879, 24.179215], [-45.553879, 16.942636], [-52.790458, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 24.179215], [-52.790458, 31.415794], [-45.553879, 31.415794], [-45.553879, 24.179215], [-52.790458, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 31.415794], [-52.790458, 38.652373], [-45.553879, 38.652373], [-45.553879, 31.415794], [-52.790458, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 38.652373], [-52.790458, 45.888952], [-45.553879, 45.888952], [-45.553879, 38.652373], [-52.790458, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 45.888952], [-52.790458, 53.125532], [-45.553879, 53.125532], [-45.553879, 45.888952], [-52.790458, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 53.125532], [-52.790458, 60.362111], [-45.553879, 60.362111], [-45.553879, 53.125532], [-52.790458, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 60.362111], [-52.790458, 67.59869], [-45.553879, 67.59869], [-45.553879, 60.362111], [-52.790458, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-52.790458, 67.59869], [-52.790458, 74.835269], [-45.553879, 74.835269], [-45.553879, 67.59869], [-52.790458, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -77.132893], [-45.553879, -69.896314], [-38.3173, -69.896314], [-38.3173, -77.132893], [-45.553879, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -69.896314], [-45.553879, -62.659735], [-38.3173, -62.659735], [-38.3173, -69.896314], [-45.553879, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -62.659735], [-45.553879, -55.423156], [-38.3173, -55.423156], [-38.3173, -62.659735], [-45.553879, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -55.423156], [-45.553879, -48.186577], [-38.3173, -48.186577], [-38.3173, -55.423156], [-45.553879, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -48.186577], [-45.553879, -40.949997], [-38.3173, -40.949997], [-38.3173, -48.186577], [-45.553879, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -40.949997], [-45.553879, -33.713418], [-38.3173, -33.713418], [-38.3173, -40.949997], [-45.553879, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -33.713418], [-45.553879, -26.476839], [-38.3173, -26.476839], [-38.3173, -33.713418], [-45.553879, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -26.476839], [-45.553879, -19.24026], [-38.3173, -19.24026], [-38.3173, -26.476839], [-45.553879, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -19.24026], [-45.553879, -12.003681], [-38.3173, -12.003681], [-38.3173, -19.24026], [-45.553879, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -12.003681], [-45.553879, -4.767102], [-38.3173, -4.767102], [-38.3173, -12.003681], [-45.553879, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, -4.767102], [-45.553879, 2.469478], [-38.3173, 2.469478], [-38.3173, -4.767102], [-45.553879, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 2.469478], [-45.553879, 9.706057], [-38.3173, 9.706057], [-38.3173, 2.469478], [-45.553879, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 9.706057], [-45.553879, 16.942636], [-38.3173, 16.942636], [-38.3173, 9.706057], [-45.553879, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 16.942636], [-45.553879, 24.179215], [-38.3173, 24.179215], [-38.3173, 16.942636], [-45.553879, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 24.179215], [-45.553879, 31.415794], [-38.3173, 31.415794], [-38.3173, 24.179215], [-45.553879, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 31.415794], [-45.553879, 38.652373], [-38.3173, 38.652373], [-38.3173, 31.415794], [-45.553879, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 38.652373], [-45.553879, 45.888952], [-38.3173, 45.888952], [-38.3173, 38.652373], [-45.553879, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 45.888952], [-45.553879, 53.125532], [-38.3173, 53.125532], [-38.3173, 45.888952], [-45.553879, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 53.125532], [-45.553879, 60.362111], [-38.3173, 60.362111], [-38.3173, 53.125532], [-45.553879, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 60.362111], [-45.553879, 67.59869], [-38.3173, 67.59869], [-38.3173, 60.362111], [-45.553879, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-45.553879, 67.59869], [-45.553879, 74.835269], [-38.3173, 74.835269], [-38.3173, 67.59869], [-45.553879, 67.59869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -77.132893], [-38.3173, -69.896314], [-31.080721, -69.896314], [-31.080721, -77.132893], [-38.3173, -77.132893] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -69.896314], [-38.3173, -62.659735], [-31.080721, -62.659735], [-31.080721, -69.896314], [-38.3173, -69.896314] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -62.659735], [-38.3173, -55.423156], [-31.080721, -55.423156], [-31.080721, -62.659735], [-38.3173, -62.659735] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -55.423156], [-38.3173, -48.186577], [-31.080721, -48.186577], [-31.080721, -55.423156], [-38.3173, -55.423156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -48.186577], [-38.3173, -40.949997], [-31.080721, -40.949997], [-31.080721, -48.186577], [-38.3173, -48.186577] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -40.949997], [-38.3173, -33.713418], [-31.080721, -33.713418], [-31.080721, -40.949997], [-38.3173, -40.949997] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -33.713418], [-38.3173, -26.476839], [-31.080721, -26.476839], [-31.080721, -33.713418], [-38.3173, -33.713418] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -26.476839], [-38.3173, -19.24026], [-31.080721, -19.24026], [-31.080721, -26.476839], [-38.3173, -26.476839] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -19.24026], [-38.3173, -12.003681], [-31.080721, -12.003681], [-31.080721, -19.24026], [-38.3173, -19.24026] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -12.003681], [-38.3173, -4.767102], [-31.080721, -4.767102], [-31.080721, -12.003681], [-38.3173, -12.003681] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, -4.767102], [-38.3173, 2.469478], [-31.080721, 2.469478], [-31.080721, -4.767102], [-38.3173, -4.767102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 2.469478], [-38.3173, 9.706057], [-31.080721, 9.706057], [-31.080721, 2.469478], [-38.3173, 2.469478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 9.706057], [-38.3173, 16.942636], [-31.080721, 16.942636], [-31.080721, 9.706057], [-38.3173, 9.706057] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 16.942636], [-38.3173, 24.179215], [-31.080721, 24.179215], [-31.080721, 16.942636], [-38.3173, 16.942636] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 24.179215], [-38.3173, 31.415794], [-31.080721, 31.415794], [-31.080721, 24.179215], [-38.3173, 24.179215] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 31.415794], [-38.3173, 38.652373], [-31.080721, 38.652373], [-31.080721, 31.415794], [-38.3173, 31.415794] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 38.652373], [-38.3173, 45.888952], [-31.080721, 45.888952], [-31.080721, 38.652373], [-38.3173, 38.652373] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 45.888952], [-38.3173, 53.125532], [-31.080721, 53.125532], [-31.080721, 45.888952], [-38.3173, 45.888952] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 53.125532], [-38.3173, 60.362111], [-31.080721, 60.362111], [-31.080721, 53.125532], [-38.3173, 53.125532] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 60.362111], [-38.3173, 67.59869], [-31.080721, 67.59869], [-31.080721, 60.362111], [-38.3173, 60.362111] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-38.3173, 67.59869], [-38.3173, 74.835269], [-31.080721, 74.835269], [-31.080721, 67.59869], [-38.3173, 67.59869] ] ] } }, { "type": "Feature", "bbox": [-220.78125, -80.64703474739618, -29.53125, 78.34941069014629], "properties": { "stroke": "#F00", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -80.64703474739618], [-29.53125, -80.64703474739618], [-29.53125, 78.34941069014629], [-220.78125, 78.34941069014629], [-220.78125, -80.64703474739618] ] ] } } ] } ================================================ FILE: packages/turf-square-grid/test/out/fiji-10-miles.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.323377, -17.114729], [-180.323377, -16.969998], [-180.178645, -16.969998], [-180.178645, -17.114729], [-180.323377, -17.114729] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.323377, -16.969998], [-180.323377, -16.825266], [-180.178645, -16.825266], [-180.178645, -16.969998], [-180.323377, -16.969998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.323377, -16.825266], [-180.323377, -16.680534], [-180.178645, -16.680534], [-180.178645, -16.825266], [-180.323377, -16.825266] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.323377, -16.680534], [-180.323377, -16.535803], [-180.178645, -16.535803], [-180.178645, -16.680534], [-180.323377, -16.680534] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.178645, -17.114729], [-180.178645, -16.969998], [-180.033914, -16.969998], [-180.033914, -17.114729], [-180.178645, -17.114729] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.178645, -16.969998], [-180.178645, -16.825266], [-180.033914, -16.825266], [-180.033914, -16.969998], [-180.178645, -16.969998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.178645, -16.825266], [-180.178645, -16.680534], [-180.033914, -16.680534], [-180.033914, -16.825266], [-180.178645, -16.825266] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.178645, -16.680534], [-180.178645, -16.535803], [-180.033914, -16.535803], [-180.033914, -16.680534], [-180.178645, -16.680534] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.033914, -17.114729], [-180.033914, -16.969998], [-179.889182, -16.969998], [-179.889182, -17.114729], [-180.033914, -17.114729] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.033914, -16.969998], [-180.033914, -16.825266], [-179.889182, -16.825266], [-179.889182, -16.969998], [-180.033914, -16.969998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.033914, -16.825266], [-180.033914, -16.680534], [-179.889182, -16.680534], [-179.889182, -16.825266], [-180.033914, -16.825266] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.033914, -16.680534], [-180.033914, -16.535803], [-179.889182, -16.535803], [-179.889182, -16.680534], [-180.033914, -16.680534] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.889182, -17.114729], [-179.889182, -16.969998], [-179.74445, -16.969998], [-179.74445, -17.114729], [-179.889182, -17.114729] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.889182, -16.969998], [-179.889182, -16.825266], [-179.74445, -16.825266], [-179.74445, -16.969998], [-179.889182, -16.969998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.889182, -16.825266], [-179.889182, -16.680534], [-179.74445, -16.680534], [-179.74445, -16.825266], [-179.889182, -16.825266] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.889182, -16.680534], [-179.889182, -16.535803], [-179.74445, -16.535803], [-179.74445, -16.680534], [-179.889182, -16.680534] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.74445, -17.114729], [-179.74445, -16.969998], [-179.599719, -16.969998], [-179.599719, -17.114729], [-179.74445, -17.114729] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.74445, -16.969998], [-179.74445, -16.825266], [-179.599719, -16.825266], [-179.599719, -16.969998], [-179.74445, -16.969998] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.74445, -16.825266], [-179.74445, -16.680534], [-179.599719, -16.680534], [-179.599719, -16.825266], [-179.74445, -16.825266] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.74445, -16.680534], [-179.74445, -16.535803], [-179.599719, -16.535803], [-179.599719, -16.680534], [-179.74445, -16.680534] ] ] } }, { "type": "Feature", "bbox": [ -180.3460693359375, -17.16703442146408, -179.5770263671875, -16.48349760264812 ], "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] ] ] } } ] } ================================================ FILE: packages/turf-square-grid/test/out/issue-1215.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.699769, 55.553251], [37.699769, 55.553341], [37.699859, 55.553341], [37.699859, 55.553251], [37.699769, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.699769, 55.553341], [37.699769, 55.553431], [37.699859, 55.553431], [37.699859, 55.553341], [37.699769, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.699859, 55.553161], [37.699859, 55.553251], [37.699949, 55.553251], [37.699949, 55.553161], [37.699859, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.699859, 55.553251], [37.699859, 55.553341], [37.699949, 55.553341], [37.699949, 55.553251], [37.699859, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.699859, 55.553341], [37.699859, 55.553431], [37.699949, 55.553431], [37.699949, 55.553341], [37.699859, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.699859, 55.553431], [37.699859, 55.55352], [37.699949, 55.55352], [37.699949, 55.553431], [37.699859, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.699859, 55.55352], [37.699859, 55.55361], [37.699949, 55.55361], [37.699949, 55.55352], [37.699859, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.699949, 55.553161], [37.699949, 55.553251], [37.700039, 55.553251], [37.700039, 55.553161], [37.699949, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.699949, 55.553251], [37.699949, 55.553341], [37.700039, 55.553341], [37.700039, 55.553251], [37.699949, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.699949, 55.553341], [37.699949, 55.553431], [37.700039, 55.553431], [37.700039, 55.553341], [37.699949, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.699949, 55.553431], [37.699949, 55.55352], [37.700039, 55.55352], [37.700039, 55.553431], [37.699949, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.699949, 55.55352], [37.699949, 55.55361], [37.700039, 55.55361], [37.700039, 55.55352], [37.699949, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.699949, 55.55361], [37.699949, 55.5537], [37.700039, 55.5537], [37.700039, 55.55361], [37.699949, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700039, 55.553161], [37.700039, 55.553251], [37.700129, 55.553251], [37.700129, 55.553161], [37.700039, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700039, 55.553251], [37.700039, 55.553341], [37.700129, 55.553341], [37.700129, 55.553251], [37.700039, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700039, 55.553341], [37.700039, 55.553431], [37.700129, 55.553431], [37.700129, 55.553341], [37.700039, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700039, 55.553431], [37.700039, 55.55352], [37.700129, 55.55352], [37.700129, 55.553431], [37.700039, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700039, 55.55352], [37.700039, 55.55361], [37.700129, 55.55361], [37.700129, 55.55352], [37.700039, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700039, 55.55361], [37.700039, 55.5537], [37.700129, 55.5537], [37.700129, 55.55361], [37.700039, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700039, 55.5537], [37.700039, 55.55379], [37.700129, 55.55379], [37.700129, 55.5537], [37.700039, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700129, 55.553161], [37.700129, 55.553251], [37.700219, 55.553251], [37.700219, 55.553161], [37.700129, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700129, 55.553251], [37.700129, 55.553341], [37.700219, 55.553341], [37.700219, 55.553251], [37.700129, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700129, 55.553341], [37.700129, 55.553431], [37.700219, 55.553431], [37.700219, 55.553341], [37.700129, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700129, 55.553431], [37.700129, 55.55352], [37.700219, 55.55352], [37.700219, 55.553431], [37.700129, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700129, 55.55352], [37.700129, 55.55361], [37.700219, 55.55361], [37.700219, 55.55352], [37.700129, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700129, 55.55361], [37.700129, 55.5537], [37.700219, 55.5537], [37.700219, 55.55361], [37.700129, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700129, 55.5537], [37.700129, 55.55379], [37.700219, 55.55379], [37.700219, 55.5537], [37.700129, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700219, 55.553071], [37.700219, 55.553161], [37.700309, 55.553161], [37.700309, 55.553071], [37.700219, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700219, 55.553161], [37.700219, 55.553251], [37.700309, 55.553251], [37.700309, 55.553161], [37.700219, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700219, 55.553251], [37.700219, 55.553341], [37.700309, 55.553341], [37.700309, 55.553251], [37.700219, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700219, 55.553341], [37.700219, 55.553431], [37.700309, 55.553431], [37.700309, 55.553341], [37.700219, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700219, 55.553431], [37.700219, 55.55352], [37.700309, 55.55352], [37.700309, 55.553431], [37.700219, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700219, 55.55352], [37.700219, 55.55361], [37.700309, 55.55361], [37.700309, 55.55352], [37.700219, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700219, 55.55361], [37.700219, 55.5537], [37.700309, 55.5537], [37.700309, 55.55361], [37.700219, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700219, 55.5537], [37.700219, 55.55379], [37.700309, 55.55379], [37.700309, 55.5537], [37.700219, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700219, 55.55379], [37.700219, 55.55388], [37.700309, 55.55388], [37.700309, 55.55379], [37.700219, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700309, 55.553071], [37.700309, 55.553161], [37.700399, 55.553161], [37.700399, 55.553071], [37.700309, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700309, 55.553161], [37.700309, 55.553251], [37.700399, 55.553251], [37.700399, 55.553161], [37.700309, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700309, 55.553251], [37.700309, 55.553341], [37.700399, 55.553341], [37.700399, 55.553251], [37.700309, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700309, 55.553341], [37.700309, 55.553431], [37.700399, 55.553431], [37.700399, 55.553341], [37.700309, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700309, 55.553431], [37.700309, 55.55352], [37.700399, 55.55352], [37.700399, 55.553431], [37.700309, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700309, 55.55352], [37.700309, 55.55361], [37.700399, 55.55361], [37.700399, 55.55352], [37.700309, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700309, 55.55361], [37.700309, 55.5537], [37.700399, 55.5537], [37.700399, 55.55361], [37.700309, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700309, 55.5537], [37.700309, 55.55379], [37.700399, 55.55379], [37.700399, 55.5537], [37.700309, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700309, 55.55379], [37.700309, 55.55388], [37.700399, 55.55388], [37.700399, 55.55379], [37.700309, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700399, 55.553071], [37.700399, 55.553161], [37.700489, 55.553161], [37.700489, 55.553071], [37.700399, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700399, 55.553161], [37.700399, 55.553251], [37.700489, 55.553251], [37.700489, 55.553161], [37.700399, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700399, 55.553251], [37.700399, 55.553341], [37.700489, 55.553341], [37.700489, 55.553251], [37.700399, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700399, 55.553341], [37.700399, 55.553431], [37.700489, 55.553431], [37.700489, 55.553341], [37.700399, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700399, 55.553431], [37.700399, 55.55352], [37.700489, 55.55352], [37.700489, 55.553431], [37.700399, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700399, 55.55352], [37.700399, 55.55361], [37.700489, 55.55361], [37.700489, 55.55352], [37.700399, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700399, 55.55361], [37.700399, 55.5537], [37.700489, 55.5537], [37.700489, 55.55361], [37.700399, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700399, 55.5537], [37.700399, 55.55379], [37.700489, 55.55379], [37.700489, 55.5537], [37.700399, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700399, 55.55379], [37.700399, 55.55388], [37.700489, 55.55388], [37.700489, 55.55379], [37.700399, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700489, 55.553071], [37.700489, 55.553161], [37.700579, 55.553161], [37.700579, 55.553071], [37.700489, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700489, 55.553161], [37.700489, 55.553251], [37.700579, 55.553251], [37.700579, 55.553161], [37.700489, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700489, 55.553251], [37.700489, 55.553341], [37.700579, 55.553341], [37.700579, 55.553251], [37.700489, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700489, 55.553341], [37.700489, 55.553431], [37.700579, 55.553431], [37.700579, 55.553341], [37.700489, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700489, 55.553431], [37.700489, 55.55352], [37.700579, 55.55352], [37.700579, 55.553431], [37.700489, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700489, 55.55352], [37.700489, 55.55361], [37.700579, 55.55361], [37.700579, 55.55352], [37.700489, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700489, 55.55361], [37.700489, 55.5537], [37.700579, 55.5537], [37.700579, 55.55361], [37.700489, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700489, 55.5537], [37.700489, 55.55379], [37.700579, 55.55379], [37.700579, 55.5537], [37.700489, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700489, 55.55379], [37.700489, 55.55388], [37.700579, 55.55388], [37.700579, 55.55379], [37.700489, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700489, 55.55388], [37.700489, 55.55397], [37.700579, 55.55397], [37.700579, 55.55388], [37.700489, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700579, 55.552981], [37.700579, 55.553071], [37.700668, 55.553071], [37.700668, 55.552981], [37.700579, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700579, 55.553071], [37.700579, 55.553161], [37.700668, 55.553161], [37.700668, 55.553071], [37.700579, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700579, 55.553161], [37.700579, 55.553251], [37.700668, 55.553251], [37.700668, 55.553161], [37.700579, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700579, 55.553251], [37.700579, 55.553341], [37.700668, 55.553341], [37.700668, 55.553251], [37.700579, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700579, 55.553341], [37.700579, 55.553431], [37.700668, 55.553431], [37.700668, 55.553341], [37.700579, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700579, 55.553431], [37.700579, 55.55352], [37.700668, 55.55352], [37.700668, 55.553431], [37.700579, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700579, 55.55352], [37.700579, 55.55361], [37.700668, 55.55361], [37.700668, 55.55352], [37.700579, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700579, 55.55361], [37.700579, 55.5537], [37.700668, 55.5537], [37.700668, 55.55361], [37.700579, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700579, 55.5537], [37.700579, 55.55379], [37.700668, 55.55379], [37.700668, 55.5537], [37.700579, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700579, 55.55379], [37.700579, 55.55388], [37.700668, 55.55388], [37.700668, 55.55379], [37.700579, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700579, 55.55388], [37.700579, 55.55397], [37.700668, 55.55397], [37.700668, 55.55388], [37.700579, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700668, 55.552981], [37.700668, 55.553071], [37.700758, 55.553071], [37.700758, 55.552981], [37.700668, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700668, 55.553071], [37.700668, 55.553161], [37.700758, 55.553161], [37.700758, 55.553071], [37.700668, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700668, 55.553161], [37.700668, 55.553251], [37.700758, 55.553251], [37.700758, 55.553161], [37.700668, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700668, 55.553251], [37.700668, 55.553341], [37.700758, 55.553341], [37.700758, 55.553251], [37.700668, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700668, 55.553341], [37.700668, 55.553431], [37.700758, 55.553431], [37.700758, 55.553341], [37.700668, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700668, 55.553431], [37.700668, 55.55352], [37.700758, 55.55352], [37.700758, 55.553431], [37.700668, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700668, 55.55352], [37.700668, 55.55361], [37.700758, 55.55361], [37.700758, 55.55352], [37.700668, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700668, 55.55361], [37.700668, 55.5537], [37.700758, 55.5537], [37.700758, 55.55361], [37.700668, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700668, 55.5537], [37.700668, 55.55379], [37.700758, 55.55379], [37.700758, 55.5537], [37.700668, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700668, 55.55379], [37.700668, 55.55388], [37.700758, 55.55388], [37.700758, 55.55379], [37.700668, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700668, 55.55388], [37.700668, 55.55397], [37.700758, 55.55397], [37.700758, 55.55388], [37.700668, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700758, 55.552981], [37.700758, 55.553071], [37.700848, 55.553071], [37.700848, 55.552981], [37.700758, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700758, 55.553071], [37.700758, 55.553161], [37.700848, 55.553161], [37.700848, 55.553071], [37.700758, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700758, 55.553161], [37.700758, 55.553251], [37.700848, 55.553251], [37.700848, 55.553161], [37.700758, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700758, 55.553251], [37.700758, 55.553341], [37.700848, 55.553341], [37.700848, 55.553251], [37.700758, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700758, 55.553341], [37.700758, 55.553431], [37.700848, 55.553431], [37.700848, 55.553341], [37.700758, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700758, 55.553431], [37.700758, 55.55352], [37.700848, 55.55352], [37.700848, 55.553431], [37.700758, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700758, 55.55352], [37.700758, 55.55361], [37.700848, 55.55361], [37.700848, 55.55352], [37.700758, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700758, 55.55361], [37.700758, 55.5537], [37.700848, 55.5537], [37.700848, 55.55361], [37.700758, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700758, 55.5537], [37.700758, 55.55379], [37.700848, 55.55379], [37.700848, 55.5537], [37.700758, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700758, 55.55379], [37.700758, 55.55388], [37.700848, 55.55388], [37.700848, 55.55379], [37.700758, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700758, 55.55388], [37.700758, 55.55397], [37.700848, 55.55397], [37.700848, 55.55388], [37.700758, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700848, 55.552981], [37.700848, 55.553071], [37.700938, 55.553071], [37.700938, 55.552981], [37.700848, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700848, 55.553071], [37.700848, 55.553161], [37.700938, 55.553161], [37.700938, 55.553071], [37.700848, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700848, 55.553161], [37.700848, 55.553251], [37.700938, 55.553251], [37.700938, 55.553161], [37.700848, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700848, 55.553251], [37.700848, 55.553341], [37.700938, 55.553341], [37.700938, 55.553251], [37.700848, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700848, 55.553341], [37.700848, 55.553431], [37.700938, 55.553431], [37.700938, 55.553341], [37.700848, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700848, 55.553431], [37.700848, 55.55352], [37.700938, 55.55352], [37.700938, 55.553431], [37.700848, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700848, 55.55352], [37.700848, 55.55361], [37.700938, 55.55361], [37.700938, 55.55352], [37.700848, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700848, 55.55361], [37.700848, 55.5537], [37.700938, 55.5537], [37.700938, 55.55361], [37.700848, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700848, 55.5537], [37.700848, 55.55379], [37.700938, 55.55379], [37.700938, 55.5537], [37.700848, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700848, 55.55379], [37.700848, 55.55388], [37.700938, 55.55388], [37.700938, 55.55379], [37.700848, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700848, 55.55388], [37.700848, 55.55397], [37.700938, 55.55397], [37.700938, 55.55388], [37.700848, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700848, 55.55397], [37.700848, 55.55406], [37.700938, 55.55406], [37.700938, 55.55397], [37.700848, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700938, 55.552891], [37.700938, 55.552981], [37.701028, 55.552981], [37.701028, 55.552891], [37.700938, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700938, 55.552981], [37.700938, 55.553071], [37.701028, 55.553071], [37.701028, 55.552981], [37.700938, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700938, 55.553071], [37.700938, 55.553161], [37.701028, 55.553161], [37.701028, 55.553071], [37.700938, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700938, 55.553161], [37.700938, 55.553251], [37.701028, 55.553251], [37.701028, 55.553161], [37.700938, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700938, 55.553251], [37.700938, 55.553341], [37.701028, 55.553341], [37.701028, 55.553251], [37.700938, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700938, 55.553341], [37.700938, 55.553431], [37.701028, 55.553431], [37.701028, 55.553341], [37.700938, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700938, 55.553431], [37.700938, 55.55352], [37.701028, 55.55352], [37.701028, 55.553431], [37.700938, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700938, 55.55352], [37.700938, 55.55361], [37.701028, 55.55361], [37.701028, 55.55352], [37.700938, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700938, 55.55361], [37.700938, 55.5537], [37.701028, 55.5537], [37.701028, 55.55361], [37.700938, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700938, 55.5537], [37.700938, 55.55379], [37.701028, 55.55379], [37.701028, 55.5537], [37.700938, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700938, 55.55379], [37.700938, 55.55388], [37.701028, 55.55388], [37.701028, 55.55379], [37.700938, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700938, 55.55388], [37.700938, 55.55397], [37.701028, 55.55397], [37.701028, 55.55388], [37.700938, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.700938, 55.55397], [37.700938, 55.55406], [37.701028, 55.55406], [37.701028, 55.55397], [37.700938, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701028, 55.552891], [37.701028, 55.552981], [37.701118, 55.552981], [37.701118, 55.552891], [37.701028, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701028, 55.552981], [37.701028, 55.553071], [37.701118, 55.553071], [37.701118, 55.552981], [37.701028, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701028, 55.553071], [37.701028, 55.553161], [37.701118, 55.553161], [37.701118, 55.553071], [37.701028, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701028, 55.553161], [37.701028, 55.553251], [37.701118, 55.553251], [37.701118, 55.553161], [37.701028, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701028, 55.553251], [37.701028, 55.553341], [37.701118, 55.553341], [37.701118, 55.553251], [37.701028, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701028, 55.553341], [37.701028, 55.553431], [37.701118, 55.553431], [37.701118, 55.553341], [37.701028, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701028, 55.553431], [37.701028, 55.55352], [37.701118, 55.55352], [37.701118, 55.553431], [37.701028, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701028, 55.55352], [37.701028, 55.55361], [37.701118, 55.55361], [37.701118, 55.55352], [37.701028, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701028, 55.55361], [37.701028, 55.5537], [37.701118, 55.5537], [37.701118, 55.55361], [37.701028, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701028, 55.5537], [37.701028, 55.55379], [37.701118, 55.55379], [37.701118, 55.5537], [37.701028, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701028, 55.55379], [37.701028, 55.55388], [37.701118, 55.55388], [37.701118, 55.55379], [37.701028, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701028, 55.55388], [37.701028, 55.55397], [37.701118, 55.55397], [37.701118, 55.55388], [37.701028, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701028, 55.55397], [37.701028, 55.55406], [37.701118, 55.55406], [37.701118, 55.55397], [37.701028, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701118, 55.552891], [37.701118, 55.552981], [37.701208, 55.552981], [37.701208, 55.552891], [37.701118, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701118, 55.552981], [37.701118, 55.553071], [37.701208, 55.553071], [37.701208, 55.552981], [37.701118, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701118, 55.553071], [37.701118, 55.553161], [37.701208, 55.553161], [37.701208, 55.553071], [37.701118, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701118, 55.553161], [37.701118, 55.553251], [37.701208, 55.553251], [37.701208, 55.553161], [37.701118, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701118, 55.553251], [37.701118, 55.553341], [37.701208, 55.553341], [37.701208, 55.553251], [37.701118, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701118, 55.553341], [37.701118, 55.553431], [37.701208, 55.553431], [37.701208, 55.553341], [37.701118, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701118, 55.553431], [37.701118, 55.55352], [37.701208, 55.55352], [37.701208, 55.553431], [37.701118, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701118, 55.55352], [37.701118, 55.55361], [37.701208, 55.55361], [37.701208, 55.55352], [37.701118, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701118, 55.55361], [37.701118, 55.5537], [37.701208, 55.5537], [37.701208, 55.55361], [37.701118, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701118, 55.5537], [37.701118, 55.55379], [37.701208, 55.55379], [37.701208, 55.5537], [37.701118, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701118, 55.55379], [37.701118, 55.55388], [37.701208, 55.55388], [37.701208, 55.55379], [37.701118, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701118, 55.55388], [37.701118, 55.55397], [37.701208, 55.55397], [37.701208, 55.55388], [37.701118, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701118, 55.55397], [37.701118, 55.55406], [37.701208, 55.55406], [37.701208, 55.55397], [37.701118, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701208, 55.552801], [37.701208, 55.552891], [37.701298, 55.552891], [37.701298, 55.552801], [37.701208, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701208, 55.552891], [37.701208, 55.552981], [37.701298, 55.552981], [37.701298, 55.552891], [37.701208, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701208, 55.552981], [37.701208, 55.553071], [37.701298, 55.553071], [37.701298, 55.552981], [37.701208, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701208, 55.553071], [37.701208, 55.553161], [37.701298, 55.553161], [37.701298, 55.553071], [37.701208, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701208, 55.553161], [37.701208, 55.553251], [37.701298, 55.553251], [37.701298, 55.553161], [37.701208, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701208, 55.553251], [37.701208, 55.553341], [37.701298, 55.553341], [37.701298, 55.553251], [37.701208, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701208, 55.553341], [37.701208, 55.553431], [37.701298, 55.553431], [37.701298, 55.553341], [37.701208, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701208, 55.553431], [37.701208, 55.55352], [37.701298, 55.55352], [37.701298, 55.553431], [37.701208, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701208, 55.55352], [37.701208, 55.55361], [37.701298, 55.55361], [37.701298, 55.55352], [37.701208, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701208, 55.55361], [37.701208, 55.5537], [37.701298, 55.5537], [37.701298, 55.55361], [37.701208, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701208, 55.5537], [37.701208, 55.55379], [37.701298, 55.55379], [37.701298, 55.5537], [37.701208, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701208, 55.55379], [37.701208, 55.55388], [37.701298, 55.55388], [37.701298, 55.55379], [37.701208, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701208, 55.55388], [37.701208, 55.55397], [37.701298, 55.55397], [37.701298, 55.55388], [37.701208, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701208, 55.55397], [37.701208, 55.55406], [37.701298, 55.55406], [37.701298, 55.55397], [37.701208, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701208, 55.55406], [37.701208, 55.55415], [37.701298, 55.55415], [37.701298, 55.55406], [37.701208, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701298, 55.552801], [37.701298, 55.552891], [37.701388, 55.552891], [37.701388, 55.552801], [37.701298, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701298, 55.552891], [37.701298, 55.552981], [37.701388, 55.552981], [37.701388, 55.552891], [37.701298, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701298, 55.552981], [37.701298, 55.553071], [37.701388, 55.553071], [37.701388, 55.552981], [37.701298, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701298, 55.553071], [37.701298, 55.553161], [37.701388, 55.553161], [37.701388, 55.553071], [37.701298, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701298, 55.553161], [37.701298, 55.553251], [37.701388, 55.553251], [37.701388, 55.553161], [37.701298, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701298, 55.553251], [37.701298, 55.553341], [37.701388, 55.553341], [37.701388, 55.553251], [37.701298, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701298, 55.553341], [37.701298, 55.553431], [37.701388, 55.553431], [37.701388, 55.553341], [37.701298, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701298, 55.553431], [37.701298, 55.55352], [37.701388, 55.55352], [37.701388, 55.553431], [37.701298, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701298, 55.55352], [37.701298, 55.55361], [37.701388, 55.55361], [37.701388, 55.55352], [37.701298, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701298, 55.55361], [37.701298, 55.5537], [37.701388, 55.5537], [37.701388, 55.55361], [37.701298, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701298, 55.5537], [37.701298, 55.55379], [37.701388, 55.55379], [37.701388, 55.5537], [37.701298, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701298, 55.55379], [37.701298, 55.55388], [37.701388, 55.55388], [37.701388, 55.55379], [37.701298, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701298, 55.55388], [37.701298, 55.55397], [37.701388, 55.55397], [37.701388, 55.55388], [37.701298, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701298, 55.55397], [37.701298, 55.55406], [37.701388, 55.55406], [37.701388, 55.55397], [37.701298, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701298, 55.55406], [37.701298, 55.55415], [37.701388, 55.55415], [37.701388, 55.55406], [37.701298, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701388, 55.552801], [37.701388, 55.552891], [37.701478, 55.552891], [37.701478, 55.552801], [37.701388, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701388, 55.552891], [37.701388, 55.552981], [37.701478, 55.552981], [37.701478, 55.552891], [37.701388, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701388, 55.552981], [37.701388, 55.553071], [37.701478, 55.553071], [37.701478, 55.552981], [37.701388, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701388, 55.553071], [37.701388, 55.553161], [37.701478, 55.553161], [37.701478, 55.553071], [37.701388, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701388, 55.553161], [37.701388, 55.553251], [37.701478, 55.553251], [37.701478, 55.553161], [37.701388, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701388, 55.553251], [37.701388, 55.553341], [37.701478, 55.553341], [37.701478, 55.553251], [37.701388, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701388, 55.553341], [37.701388, 55.553431], [37.701478, 55.553431], [37.701478, 55.553341], [37.701388, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701388, 55.553431], [37.701388, 55.55352], [37.701478, 55.55352], [37.701478, 55.553431], [37.701388, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701388, 55.55352], [37.701388, 55.55361], [37.701478, 55.55361], [37.701478, 55.55352], [37.701388, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701388, 55.55361], [37.701388, 55.5537], [37.701478, 55.5537], [37.701478, 55.55361], [37.701388, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701388, 55.5537], [37.701388, 55.55379], [37.701478, 55.55379], [37.701478, 55.5537], [37.701388, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701388, 55.55379], [37.701388, 55.55388], [37.701478, 55.55388], [37.701478, 55.55379], [37.701388, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701388, 55.55388], [37.701388, 55.55397], [37.701478, 55.55397], [37.701478, 55.55388], [37.701388, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701388, 55.55397], [37.701388, 55.55406], [37.701478, 55.55406], [37.701478, 55.55397], [37.701388, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701388, 55.55406], [37.701388, 55.55415], [37.701478, 55.55415], [37.701478, 55.55406], [37.701388, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701478, 55.552801], [37.701478, 55.552891], [37.701568, 55.552891], [37.701568, 55.552801], [37.701478, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701478, 55.552891], [37.701478, 55.552981], [37.701568, 55.552981], [37.701568, 55.552891], [37.701478, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701478, 55.552981], [37.701478, 55.553071], [37.701568, 55.553071], [37.701568, 55.552981], [37.701478, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701478, 55.553071], [37.701478, 55.553161], [37.701568, 55.553161], [37.701568, 55.553071], [37.701478, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701478, 55.553161], [37.701478, 55.553251], [37.701568, 55.553251], [37.701568, 55.553161], [37.701478, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701478, 55.553251], [37.701478, 55.553341], [37.701568, 55.553341], [37.701568, 55.553251], [37.701478, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701478, 55.553341], [37.701478, 55.553431], [37.701568, 55.553431], [37.701568, 55.553341], [37.701478, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701478, 55.553431], [37.701478, 55.55352], [37.701568, 55.55352], [37.701568, 55.553431], [37.701478, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701478, 55.55352], [37.701478, 55.55361], [37.701568, 55.55361], [37.701568, 55.55352], [37.701478, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701478, 55.55361], [37.701478, 55.5537], [37.701568, 55.5537], [37.701568, 55.55361], [37.701478, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701478, 55.5537], [37.701478, 55.55379], [37.701568, 55.55379], [37.701568, 55.5537], [37.701478, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701478, 55.55379], [37.701478, 55.55388], [37.701568, 55.55388], [37.701568, 55.55379], [37.701478, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701478, 55.55388], [37.701478, 55.55397], [37.701568, 55.55397], [37.701568, 55.55388], [37.701478, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701478, 55.55397], [37.701478, 55.55406], [37.701568, 55.55406], [37.701568, 55.55397], [37.701478, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701478, 55.55406], [37.701478, 55.55415], [37.701568, 55.55415], [37.701568, 55.55406], [37.701478, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701478, 55.55415], [37.701478, 55.55424], [37.701568, 55.55424], [37.701568, 55.55415], [37.701478, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701568, 55.552711], [37.701568, 55.552801], [37.701658, 55.552801], [37.701658, 55.552711], [37.701568, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701568, 55.552801], [37.701568, 55.552891], [37.701658, 55.552891], [37.701658, 55.552801], [37.701568, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701568, 55.552891], [37.701568, 55.552981], [37.701658, 55.552981], [37.701658, 55.552891], [37.701568, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701568, 55.552981], [37.701568, 55.553071], [37.701658, 55.553071], [37.701658, 55.552981], [37.701568, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701568, 55.553071], [37.701568, 55.553161], [37.701658, 55.553161], [37.701658, 55.553071], [37.701568, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701568, 55.553161], [37.701568, 55.553251], [37.701658, 55.553251], [37.701658, 55.553161], [37.701568, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701568, 55.553251], [37.701568, 55.553341], [37.701658, 55.553341], [37.701658, 55.553251], [37.701568, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701568, 55.553341], [37.701568, 55.553431], [37.701658, 55.553431], [37.701658, 55.553341], [37.701568, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701568, 55.553431], [37.701568, 55.55352], [37.701658, 55.55352], [37.701658, 55.553431], [37.701568, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701568, 55.55352], [37.701568, 55.55361], [37.701658, 55.55361], [37.701658, 55.55352], [37.701568, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701568, 55.55361], [37.701568, 55.5537], [37.701658, 55.5537], [37.701658, 55.55361], [37.701568, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701568, 55.5537], [37.701568, 55.55379], [37.701658, 55.55379], [37.701658, 55.5537], [37.701568, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701568, 55.55379], [37.701568, 55.55388], [37.701658, 55.55388], [37.701658, 55.55379], [37.701568, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701568, 55.55388], [37.701568, 55.55397], [37.701658, 55.55397], [37.701658, 55.55388], [37.701568, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701568, 55.55397], [37.701568, 55.55406], [37.701658, 55.55406], [37.701658, 55.55397], [37.701568, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701568, 55.55406], [37.701568, 55.55415], [37.701658, 55.55415], [37.701658, 55.55406], [37.701568, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701568, 55.55415], [37.701568, 55.55424], [37.701658, 55.55424], [37.701658, 55.55415], [37.701568, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701658, 55.552711], [37.701658, 55.552801], [37.701748, 55.552801], [37.701748, 55.552711], [37.701658, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701658, 55.552801], [37.701658, 55.552891], [37.701748, 55.552891], [37.701748, 55.552801], [37.701658, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701658, 55.552891], [37.701658, 55.552981], [37.701748, 55.552981], [37.701748, 55.552891], [37.701658, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701658, 55.552981], [37.701658, 55.553071], [37.701748, 55.553071], [37.701748, 55.552981], [37.701658, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701658, 55.553071], [37.701658, 55.553161], [37.701748, 55.553161], [37.701748, 55.553071], [37.701658, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701658, 55.553161], [37.701658, 55.553251], [37.701748, 55.553251], [37.701748, 55.553161], [37.701658, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701658, 55.553251], [37.701658, 55.553341], [37.701748, 55.553341], [37.701748, 55.553251], [37.701658, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701658, 55.553341], [37.701658, 55.553431], [37.701748, 55.553431], [37.701748, 55.553341], [37.701658, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701658, 55.553431], [37.701658, 55.55352], [37.701748, 55.55352], [37.701748, 55.553431], [37.701658, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701658, 55.55352], [37.701658, 55.55361], [37.701748, 55.55361], [37.701748, 55.55352], [37.701658, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701658, 55.55361], [37.701658, 55.5537], [37.701748, 55.5537], [37.701748, 55.55361], [37.701658, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701658, 55.5537], [37.701658, 55.55379], [37.701748, 55.55379], [37.701748, 55.5537], [37.701658, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701658, 55.55379], [37.701658, 55.55388], [37.701748, 55.55388], [37.701748, 55.55379], [37.701658, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701658, 55.55388], [37.701658, 55.55397], [37.701748, 55.55397], [37.701748, 55.55388], [37.701658, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701658, 55.55397], [37.701658, 55.55406], [37.701748, 55.55406], [37.701748, 55.55397], [37.701658, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701658, 55.55406], [37.701658, 55.55415], [37.701748, 55.55415], [37.701748, 55.55406], [37.701658, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701658, 55.55415], [37.701658, 55.55424], [37.701748, 55.55424], [37.701748, 55.55415], [37.701658, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701748, 55.552711], [37.701748, 55.552801], [37.701838, 55.552801], [37.701838, 55.552711], [37.701748, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701748, 55.552801], [37.701748, 55.552891], [37.701838, 55.552891], [37.701838, 55.552801], [37.701748, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701748, 55.552891], [37.701748, 55.552981], [37.701838, 55.552981], [37.701838, 55.552891], [37.701748, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701748, 55.552981], [37.701748, 55.553071], [37.701838, 55.553071], [37.701838, 55.552981], [37.701748, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701748, 55.553071], [37.701748, 55.553161], [37.701838, 55.553161], [37.701838, 55.553071], [37.701748, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701748, 55.553161], [37.701748, 55.553251], [37.701838, 55.553251], [37.701838, 55.553161], [37.701748, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701748, 55.553251], [37.701748, 55.553341], [37.701838, 55.553341], [37.701838, 55.553251], [37.701748, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701748, 55.553341], [37.701748, 55.553431], [37.701838, 55.553431], [37.701838, 55.553341], [37.701748, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701748, 55.553431], [37.701748, 55.55352], [37.701838, 55.55352], [37.701838, 55.553431], [37.701748, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701748, 55.55352], [37.701748, 55.55361], [37.701838, 55.55361], [37.701838, 55.55352], [37.701748, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701748, 55.55361], [37.701748, 55.5537], [37.701838, 55.5537], [37.701838, 55.55361], [37.701748, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701748, 55.5537], [37.701748, 55.55379], [37.701838, 55.55379], [37.701838, 55.5537], [37.701748, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701748, 55.55379], [37.701748, 55.55388], [37.701838, 55.55388], [37.701838, 55.55379], [37.701748, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701748, 55.55388], [37.701748, 55.55397], [37.701838, 55.55397], [37.701838, 55.55388], [37.701748, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701748, 55.55397], [37.701748, 55.55406], [37.701838, 55.55406], [37.701838, 55.55397], [37.701748, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701748, 55.55406], [37.701748, 55.55415], [37.701838, 55.55415], [37.701838, 55.55406], [37.701748, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701748, 55.55415], [37.701748, 55.55424], [37.701838, 55.55424], [37.701838, 55.55415], [37.701748, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701838, 55.552711], [37.701838, 55.552801], [37.701928, 55.552801], [37.701928, 55.552711], [37.701838, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701838, 55.552801], [37.701838, 55.552891], [37.701928, 55.552891], [37.701928, 55.552801], [37.701838, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701838, 55.552891], [37.701838, 55.552981], [37.701928, 55.552981], [37.701928, 55.552891], [37.701838, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701838, 55.552981], [37.701838, 55.553071], [37.701928, 55.553071], [37.701928, 55.552981], [37.701838, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701838, 55.553071], [37.701838, 55.553161], [37.701928, 55.553161], [37.701928, 55.553071], [37.701838, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701838, 55.553161], [37.701838, 55.553251], [37.701928, 55.553251], [37.701928, 55.553161], [37.701838, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701838, 55.553251], [37.701838, 55.553341], [37.701928, 55.553341], [37.701928, 55.553251], [37.701838, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701838, 55.553341], [37.701838, 55.553431], [37.701928, 55.553431], [37.701928, 55.553341], [37.701838, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701838, 55.553431], [37.701838, 55.55352], [37.701928, 55.55352], [37.701928, 55.553431], [37.701838, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701838, 55.55352], [37.701838, 55.55361], [37.701928, 55.55361], [37.701928, 55.55352], [37.701838, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701838, 55.55361], [37.701838, 55.5537], [37.701928, 55.5537], [37.701928, 55.55361], [37.701838, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701838, 55.5537], [37.701838, 55.55379], [37.701928, 55.55379], [37.701928, 55.5537], [37.701838, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701838, 55.55379], [37.701838, 55.55388], [37.701928, 55.55388], [37.701928, 55.55379], [37.701838, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701838, 55.55388], [37.701838, 55.55397], [37.701928, 55.55397], [37.701928, 55.55388], [37.701838, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701838, 55.55397], [37.701838, 55.55406], [37.701928, 55.55406], [37.701928, 55.55397], [37.701838, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701838, 55.55406], [37.701838, 55.55415], [37.701928, 55.55415], [37.701928, 55.55406], [37.701838, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701838, 55.55415], [37.701838, 55.55424], [37.701928, 55.55424], [37.701928, 55.55415], [37.701838, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701838, 55.55424], [37.701838, 55.55433], [37.701928, 55.55433], [37.701928, 55.55424], [37.701838, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701928, 55.552621], [37.701928, 55.552711], [37.702017, 55.552711], [37.702017, 55.552621], [37.701928, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701928, 55.552711], [37.701928, 55.552801], [37.702017, 55.552801], [37.702017, 55.552711], [37.701928, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701928, 55.552801], [37.701928, 55.552891], [37.702017, 55.552891], [37.702017, 55.552801], [37.701928, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701928, 55.552891], [37.701928, 55.552981], [37.702017, 55.552981], [37.702017, 55.552891], [37.701928, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701928, 55.552981], [37.701928, 55.553071], [37.702017, 55.553071], [37.702017, 55.552981], [37.701928, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701928, 55.553071], [37.701928, 55.553161], [37.702017, 55.553161], [37.702017, 55.553071], [37.701928, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701928, 55.553161], [37.701928, 55.553251], [37.702017, 55.553251], [37.702017, 55.553161], [37.701928, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701928, 55.553251], [37.701928, 55.553341], [37.702017, 55.553341], [37.702017, 55.553251], [37.701928, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701928, 55.553341], [37.701928, 55.553431], [37.702017, 55.553431], [37.702017, 55.553341], [37.701928, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701928, 55.553431], [37.701928, 55.55352], [37.702017, 55.55352], [37.702017, 55.553431], [37.701928, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701928, 55.55352], [37.701928, 55.55361], [37.702017, 55.55361], [37.702017, 55.55352], [37.701928, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701928, 55.55361], [37.701928, 55.5537], [37.702017, 55.5537], [37.702017, 55.55361], [37.701928, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701928, 55.5537], [37.701928, 55.55379], [37.702017, 55.55379], [37.702017, 55.5537], [37.701928, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701928, 55.55379], [37.701928, 55.55388], [37.702017, 55.55388], [37.702017, 55.55379], [37.701928, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701928, 55.55388], [37.701928, 55.55397], [37.702017, 55.55397], [37.702017, 55.55388], [37.701928, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701928, 55.55397], [37.701928, 55.55406], [37.702017, 55.55406], [37.702017, 55.55397], [37.701928, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701928, 55.55406], [37.701928, 55.55415], [37.702017, 55.55415], [37.702017, 55.55406], [37.701928, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701928, 55.55415], [37.701928, 55.55424], [37.702017, 55.55424], [37.702017, 55.55415], [37.701928, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.701928, 55.55424], [37.701928, 55.55433], [37.702017, 55.55433], [37.702017, 55.55424], [37.701928, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702017, 55.552621], [37.702017, 55.552711], [37.702107, 55.552711], [37.702107, 55.552621], [37.702017, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702017, 55.552711], [37.702017, 55.552801], [37.702107, 55.552801], [37.702107, 55.552711], [37.702017, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702017, 55.552801], [37.702017, 55.552891], [37.702107, 55.552891], [37.702107, 55.552801], [37.702017, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702017, 55.552891], [37.702017, 55.552981], [37.702107, 55.552981], [37.702107, 55.552891], [37.702017, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702017, 55.552981], [37.702017, 55.553071], [37.702107, 55.553071], [37.702107, 55.552981], [37.702017, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702017, 55.553071], [37.702017, 55.553161], [37.702107, 55.553161], [37.702107, 55.553071], [37.702017, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702017, 55.553161], [37.702017, 55.553251], [37.702107, 55.553251], [37.702107, 55.553161], [37.702017, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702017, 55.553251], [37.702017, 55.553341], [37.702107, 55.553341], [37.702107, 55.553251], [37.702017, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702017, 55.553341], [37.702017, 55.553431], [37.702107, 55.553431], [37.702107, 55.553341], [37.702017, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702017, 55.553431], [37.702017, 55.55352], [37.702107, 55.55352], [37.702107, 55.553431], [37.702017, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702017, 55.55352], [37.702017, 55.55361], [37.702107, 55.55361], [37.702107, 55.55352], [37.702017, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702017, 55.55361], [37.702017, 55.5537], [37.702107, 55.5537], [37.702107, 55.55361], [37.702017, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702017, 55.5537], [37.702017, 55.55379], [37.702107, 55.55379], [37.702107, 55.5537], [37.702017, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702017, 55.55379], [37.702017, 55.55388], [37.702107, 55.55388], [37.702107, 55.55379], [37.702017, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702017, 55.55388], [37.702017, 55.55397], [37.702107, 55.55397], [37.702107, 55.55388], [37.702017, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702017, 55.55397], [37.702017, 55.55406], [37.702107, 55.55406], [37.702107, 55.55397], [37.702017, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702017, 55.55406], [37.702017, 55.55415], [37.702107, 55.55415], [37.702107, 55.55406], [37.702017, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702017, 55.55415], [37.702017, 55.55424], [37.702107, 55.55424], [37.702107, 55.55415], [37.702017, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702017, 55.55424], [37.702017, 55.55433], [37.702107, 55.55433], [37.702107, 55.55424], [37.702017, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702107, 55.552621], [37.702107, 55.552711], [37.702197, 55.552711], [37.702197, 55.552621], [37.702107, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702107, 55.552711], [37.702107, 55.552801], [37.702197, 55.552801], [37.702197, 55.552711], [37.702107, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702107, 55.552801], [37.702107, 55.552891], [37.702197, 55.552891], [37.702197, 55.552801], [37.702107, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702107, 55.552891], [37.702107, 55.552981], [37.702197, 55.552981], [37.702197, 55.552891], [37.702107, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702107, 55.552981], [37.702107, 55.553071], [37.702197, 55.553071], [37.702197, 55.552981], [37.702107, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702107, 55.553071], [37.702107, 55.553161], [37.702197, 55.553161], [37.702197, 55.553071], [37.702107, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702107, 55.553161], [37.702107, 55.553251], [37.702197, 55.553251], [37.702197, 55.553161], [37.702107, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702107, 55.553251], [37.702107, 55.553341], [37.702197, 55.553341], [37.702197, 55.553251], [37.702107, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702107, 55.553341], [37.702107, 55.553431], [37.702197, 55.553431], [37.702197, 55.553341], [37.702107, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702107, 55.553431], [37.702107, 55.55352], [37.702197, 55.55352], [37.702197, 55.553431], [37.702107, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702107, 55.55352], [37.702107, 55.55361], [37.702197, 55.55361], [37.702197, 55.55352], [37.702107, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702107, 55.55361], [37.702107, 55.5537], [37.702197, 55.5537], [37.702197, 55.55361], [37.702107, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702107, 55.5537], [37.702107, 55.55379], [37.702197, 55.55379], [37.702197, 55.5537], [37.702107, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702107, 55.55379], [37.702107, 55.55388], [37.702197, 55.55388], [37.702197, 55.55379], [37.702107, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702107, 55.55388], [37.702107, 55.55397], [37.702197, 55.55397], [37.702197, 55.55388], [37.702107, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702107, 55.55397], [37.702107, 55.55406], [37.702197, 55.55406], [37.702197, 55.55397], [37.702107, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702107, 55.55406], [37.702107, 55.55415], [37.702197, 55.55415], [37.702197, 55.55406], [37.702107, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702107, 55.55415], [37.702107, 55.55424], [37.702197, 55.55424], [37.702197, 55.55415], [37.702107, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702107, 55.55424], [37.702107, 55.55433], [37.702197, 55.55433], [37.702197, 55.55424], [37.702107, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702107, 55.55433], [37.702107, 55.55442], [37.702197, 55.55442], [37.702197, 55.55433], [37.702107, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702197, 55.552621], [37.702197, 55.552711], [37.702287, 55.552711], [37.702287, 55.552621], [37.702197, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702197, 55.552711], [37.702197, 55.552801], [37.702287, 55.552801], [37.702287, 55.552711], [37.702197, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702197, 55.552801], [37.702197, 55.552891], [37.702287, 55.552891], [37.702287, 55.552801], [37.702197, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702197, 55.552891], [37.702197, 55.552981], [37.702287, 55.552981], [37.702287, 55.552891], [37.702197, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702197, 55.552981], [37.702197, 55.553071], [37.702287, 55.553071], [37.702287, 55.552981], [37.702197, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702197, 55.553071], [37.702197, 55.553161], [37.702287, 55.553161], [37.702287, 55.553071], [37.702197, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702197, 55.553161], [37.702197, 55.553251], [37.702287, 55.553251], [37.702287, 55.553161], [37.702197, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702197, 55.553251], [37.702197, 55.553341], [37.702287, 55.553341], [37.702287, 55.553251], [37.702197, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702197, 55.553341], [37.702197, 55.553431], [37.702287, 55.553431], [37.702287, 55.553341], [37.702197, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702197, 55.553431], [37.702197, 55.55352], [37.702287, 55.55352], [37.702287, 55.553431], [37.702197, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702197, 55.55352], [37.702197, 55.55361], [37.702287, 55.55361], [37.702287, 55.55352], [37.702197, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702197, 55.55361], [37.702197, 55.5537], [37.702287, 55.5537], [37.702287, 55.55361], [37.702197, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702197, 55.5537], [37.702197, 55.55379], [37.702287, 55.55379], [37.702287, 55.5537], [37.702197, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702197, 55.55379], [37.702197, 55.55388], [37.702287, 55.55388], [37.702287, 55.55379], [37.702197, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702197, 55.55388], [37.702197, 55.55397], [37.702287, 55.55397], [37.702287, 55.55388], [37.702197, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702197, 55.55397], [37.702197, 55.55406], [37.702287, 55.55406], [37.702287, 55.55397], [37.702197, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702197, 55.55406], [37.702197, 55.55415], [37.702287, 55.55415], [37.702287, 55.55406], [37.702197, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702197, 55.55415], [37.702197, 55.55424], [37.702287, 55.55424], [37.702287, 55.55415], [37.702197, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702197, 55.55424], [37.702197, 55.55433], [37.702287, 55.55433], [37.702287, 55.55424], [37.702197, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702197, 55.55433], [37.702197, 55.55442], [37.702287, 55.55442], [37.702287, 55.55433], [37.702197, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702287, 55.552531], [37.702287, 55.552621], [37.702377, 55.552621], [37.702377, 55.552531], [37.702287, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702287, 55.552621], [37.702287, 55.552711], [37.702377, 55.552711], [37.702377, 55.552621], [37.702287, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702287, 55.552711], [37.702287, 55.552801], [37.702377, 55.552801], [37.702377, 55.552711], [37.702287, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702287, 55.552801], [37.702287, 55.552891], [37.702377, 55.552891], [37.702377, 55.552801], [37.702287, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702287, 55.552891], [37.702287, 55.552981], [37.702377, 55.552981], [37.702377, 55.552891], [37.702287, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702287, 55.552981], [37.702287, 55.553071], [37.702377, 55.553071], [37.702377, 55.552981], [37.702287, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702287, 55.553071], [37.702287, 55.553161], [37.702377, 55.553161], [37.702377, 55.553071], [37.702287, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702287, 55.553161], [37.702287, 55.553251], [37.702377, 55.553251], [37.702377, 55.553161], [37.702287, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702287, 55.553251], [37.702287, 55.553341], [37.702377, 55.553341], [37.702377, 55.553251], [37.702287, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702287, 55.553341], [37.702287, 55.553431], [37.702377, 55.553431], [37.702377, 55.553341], [37.702287, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702287, 55.553431], [37.702287, 55.55352], [37.702377, 55.55352], [37.702377, 55.553431], [37.702287, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702287, 55.55352], [37.702287, 55.55361], [37.702377, 55.55361], [37.702377, 55.55352], [37.702287, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702287, 55.55361], [37.702287, 55.5537], [37.702377, 55.5537], [37.702377, 55.55361], [37.702287, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702287, 55.5537], [37.702287, 55.55379], [37.702377, 55.55379], [37.702377, 55.5537], [37.702287, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702287, 55.55379], [37.702287, 55.55388], [37.702377, 55.55388], [37.702377, 55.55379], [37.702287, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702287, 55.55388], [37.702287, 55.55397], [37.702377, 55.55397], [37.702377, 55.55388], [37.702287, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702287, 55.55397], [37.702287, 55.55406], [37.702377, 55.55406], [37.702377, 55.55397], [37.702287, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702287, 55.55406], [37.702287, 55.55415], [37.702377, 55.55415], [37.702377, 55.55406], [37.702287, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702287, 55.55415], [37.702287, 55.55424], [37.702377, 55.55424], [37.702377, 55.55415], [37.702287, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702287, 55.55424], [37.702287, 55.55433], [37.702377, 55.55433], [37.702377, 55.55424], [37.702287, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702287, 55.55433], [37.702287, 55.55442], [37.702377, 55.55442], [37.702377, 55.55433], [37.702287, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702377, 55.552531], [37.702377, 55.552621], [37.702467, 55.552621], [37.702467, 55.552531], [37.702377, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702377, 55.552621], [37.702377, 55.552711], [37.702467, 55.552711], [37.702467, 55.552621], [37.702377, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702377, 55.552711], [37.702377, 55.552801], [37.702467, 55.552801], [37.702467, 55.552711], [37.702377, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702377, 55.552801], [37.702377, 55.552891], [37.702467, 55.552891], [37.702467, 55.552801], [37.702377, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702377, 55.552891], [37.702377, 55.552981], [37.702467, 55.552981], [37.702467, 55.552891], [37.702377, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702377, 55.552981], [37.702377, 55.553071], [37.702467, 55.553071], [37.702467, 55.552981], [37.702377, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702377, 55.553071], [37.702377, 55.553161], [37.702467, 55.553161], [37.702467, 55.553071], [37.702377, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702377, 55.553161], [37.702377, 55.553251], [37.702467, 55.553251], [37.702467, 55.553161], [37.702377, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702377, 55.553251], [37.702377, 55.553341], [37.702467, 55.553341], [37.702467, 55.553251], [37.702377, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702377, 55.553341], [37.702377, 55.553431], [37.702467, 55.553431], [37.702467, 55.553341], [37.702377, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702377, 55.553431], [37.702377, 55.55352], [37.702467, 55.55352], [37.702467, 55.553431], [37.702377, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702377, 55.55352], [37.702377, 55.55361], [37.702467, 55.55361], [37.702467, 55.55352], [37.702377, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702377, 55.55361], [37.702377, 55.5537], [37.702467, 55.5537], [37.702467, 55.55361], [37.702377, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702377, 55.5537], [37.702377, 55.55379], [37.702467, 55.55379], [37.702467, 55.5537], [37.702377, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702377, 55.55379], [37.702377, 55.55388], [37.702467, 55.55388], [37.702467, 55.55379], [37.702377, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702377, 55.55388], [37.702377, 55.55397], [37.702467, 55.55397], [37.702467, 55.55388], [37.702377, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702377, 55.55397], [37.702377, 55.55406], [37.702467, 55.55406], [37.702467, 55.55397], [37.702377, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702377, 55.55406], [37.702377, 55.55415], [37.702467, 55.55415], [37.702467, 55.55406], [37.702377, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702377, 55.55415], [37.702377, 55.55424], [37.702467, 55.55424], [37.702467, 55.55415], [37.702377, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702377, 55.55424], [37.702377, 55.55433], [37.702467, 55.55433], [37.702467, 55.55424], [37.702377, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702377, 55.55433], [37.702377, 55.55442], [37.702467, 55.55442], [37.702467, 55.55433], [37.702377, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702467, 55.552531], [37.702467, 55.552621], [37.702557, 55.552621], [37.702557, 55.552531], [37.702467, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702467, 55.552621], [37.702467, 55.552711], [37.702557, 55.552711], [37.702557, 55.552621], [37.702467, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702467, 55.552711], [37.702467, 55.552801], [37.702557, 55.552801], [37.702557, 55.552711], [37.702467, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702467, 55.552801], [37.702467, 55.552891], [37.702557, 55.552891], [37.702557, 55.552801], [37.702467, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702467, 55.552891], [37.702467, 55.552981], [37.702557, 55.552981], [37.702557, 55.552891], [37.702467, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702467, 55.552981], [37.702467, 55.553071], [37.702557, 55.553071], [37.702557, 55.552981], [37.702467, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702467, 55.553071], [37.702467, 55.553161], [37.702557, 55.553161], [37.702557, 55.553071], [37.702467, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702467, 55.553161], [37.702467, 55.553251], [37.702557, 55.553251], [37.702557, 55.553161], [37.702467, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702467, 55.553251], [37.702467, 55.553341], [37.702557, 55.553341], [37.702557, 55.553251], [37.702467, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702467, 55.553341], [37.702467, 55.553431], [37.702557, 55.553431], [37.702557, 55.553341], [37.702467, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702467, 55.553431], [37.702467, 55.55352], [37.702557, 55.55352], [37.702557, 55.553431], [37.702467, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702467, 55.55352], [37.702467, 55.55361], [37.702557, 55.55361], [37.702557, 55.55352], [37.702467, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702467, 55.55361], [37.702467, 55.5537], [37.702557, 55.5537], [37.702557, 55.55361], [37.702467, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702467, 55.5537], [37.702467, 55.55379], [37.702557, 55.55379], [37.702557, 55.5537], [37.702467, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702467, 55.55379], [37.702467, 55.55388], [37.702557, 55.55388], [37.702557, 55.55379], [37.702467, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702467, 55.55388], [37.702467, 55.55397], [37.702557, 55.55397], [37.702557, 55.55388], [37.702467, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702467, 55.55397], [37.702467, 55.55406], [37.702557, 55.55406], [37.702557, 55.55397], [37.702467, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702467, 55.55406], [37.702467, 55.55415], [37.702557, 55.55415], [37.702557, 55.55406], [37.702467, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702467, 55.55415], [37.702467, 55.55424], [37.702557, 55.55424], [37.702557, 55.55415], [37.702467, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702467, 55.55424], [37.702467, 55.55433], [37.702557, 55.55433], [37.702557, 55.55424], [37.702467, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702467, 55.55433], [37.702467, 55.55442], [37.702557, 55.55442], [37.702557, 55.55433], [37.702467, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702467, 55.55442], [37.702467, 55.55451], [37.702557, 55.55451], [37.702557, 55.55442], [37.702467, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702557, 55.552531], [37.702557, 55.552621], [37.702647, 55.552621], [37.702647, 55.552531], [37.702557, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702557, 55.552621], [37.702557, 55.552711], [37.702647, 55.552711], [37.702647, 55.552621], [37.702557, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702557, 55.552711], [37.702557, 55.552801], [37.702647, 55.552801], [37.702647, 55.552711], [37.702557, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702557, 55.552801], [37.702557, 55.552891], [37.702647, 55.552891], [37.702647, 55.552801], [37.702557, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702557, 55.552891], [37.702557, 55.552981], [37.702647, 55.552981], [37.702647, 55.552891], [37.702557, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702557, 55.552981], [37.702557, 55.553071], [37.702647, 55.553071], [37.702647, 55.552981], [37.702557, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702557, 55.553071], [37.702557, 55.553161], [37.702647, 55.553161], [37.702647, 55.553071], [37.702557, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702557, 55.553161], [37.702557, 55.553251], [37.702647, 55.553251], [37.702647, 55.553161], [37.702557, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702557, 55.553251], [37.702557, 55.553341], [37.702647, 55.553341], [37.702647, 55.553251], [37.702557, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702557, 55.553341], [37.702557, 55.553431], [37.702647, 55.553431], [37.702647, 55.553341], [37.702557, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702557, 55.553431], [37.702557, 55.55352], [37.702647, 55.55352], [37.702647, 55.553431], [37.702557, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702557, 55.55352], [37.702557, 55.55361], [37.702647, 55.55361], [37.702647, 55.55352], [37.702557, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702557, 55.55361], [37.702557, 55.5537], [37.702647, 55.5537], [37.702647, 55.55361], [37.702557, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702557, 55.5537], [37.702557, 55.55379], [37.702647, 55.55379], [37.702647, 55.5537], [37.702557, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702557, 55.55379], [37.702557, 55.55388], [37.702647, 55.55388], [37.702647, 55.55379], [37.702557, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702557, 55.55388], [37.702557, 55.55397], [37.702647, 55.55397], [37.702647, 55.55388], [37.702557, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702557, 55.55397], [37.702557, 55.55406], [37.702647, 55.55406], [37.702647, 55.55397], [37.702557, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702557, 55.55406], [37.702557, 55.55415], [37.702647, 55.55415], [37.702647, 55.55406], [37.702557, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702557, 55.55415], [37.702557, 55.55424], [37.702647, 55.55424], [37.702647, 55.55415], [37.702557, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702557, 55.55424], [37.702557, 55.55433], [37.702647, 55.55433], [37.702647, 55.55424], [37.702557, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702557, 55.55433], [37.702557, 55.55442], [37.702647, 55.55442], [37.702647, 55.55433], [37.702557, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702557, 55.55442], [37.702557, 55.55451], [37.702647, 55.55451], [37.702647, 55.55442], [37.702557, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702647, 55.552441], [37.702647, 55.552531], [37.702737, 55.552531], [37.702737, 55.552441], [37.702647, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702647, 55.552531], [37.702647, 55.552621], [37.702737, 55.552621], [37.702737, 55.552531], [37.702647, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702647, 55.552621], [37.702647, 55.552711], [37.702737, 55.552711], [37.702737, 55.552621], [37.702647, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702647, 55.552711], [37.702647, 55.552801], [37.702737, 55.552801], [37.702737, 55.552711], [37.702647, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702647, 55.552801], [37.702647, 55.552891], [37.702737, 55.552891], [37.702737, 55.552801], [37.702647, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702647, 55.552891], [37.702647, 55.552981], [37.702737, 55.552981], [37.702737, 55.552891], [37.702647, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702647, 55.552981], [37.702647, 55.553071], [37.702737, 55.553071], [37.702737, 55.552981], [37.702647, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702647, 55.553071], [37.702647, 55.553161], [37.702737, 55.553161], [37.702737, 55.553071], [37.702647, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702647, 55.553161], [37.702647, 55.553251], [37.702737, 55.553251], [37.702737, 55.553161], [37.702647, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702647, 55.553251], [37.702647, 55.553341], [37.702737, 55.553341], [37.702737, 55.553251], [37.702647, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702647, 55.553341], [37.702647, 55.553431], [37.702737, 55.553431], [37.702737, 55.553341], [37.702647, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702647, 55.553431], [37.702647, 55.55352], [37.702737, 55.55352], [37.702737, 55.553431], [37.702647, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702647, 55.55352], [37.702647, 55.55361], [37.702737, 55.55361], [37.702737, 55.55352], [37.702647, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702647, 55.55361], [37.702647, 55.5537], [37.702737, 55.5537], [37.702737, 55.55361], [37.702647, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702647, 55.5537], [37.702647, 55.55379], [37.702737, 55.55379], [37.702737, 55.5537], [37.702647, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702647, 55.55379], [37.702647, 55.55388], [37.702737, 55.55388], [37.702737, 55.55379], [37.702647, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702647, 55.55388], [37.702647, 55.55397], [37.702737, 55.55397], [37.702737, 55.55388], [37.702647, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702647, 55.55397], [37.702647, 55.55406], [37.702737, 55.55406], [37.702737, 55.55397], [37.702647, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702647, 55.55406], [37.702647, 55.55415], [37.702737, 55.55415], [37.702737, 55.55406], [37.702647, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702647, 55.55415], [37.702647, 55.55424], [37.702737, 55.55424], [37.702737, 55.55415], [37.702647, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702647, 55.55424], [37.702647, 55.55433], [37.702737, 55.55433], [37.702737, 55.55424], [37.702647, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702647, 55.55433], [37.702647, 55.55442], [37.702737, 55.55442], [37.702737, 55.55433], [37.702647, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702647, 55.55442], [37.702647, 55.55451], [37.702737, 55.55451], [37.702737, 55.55442], [37.702647, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702737, 55.552441], [37.702737, 55.552531], [37.702827, 55.552531], [37.702827, 55.552441], [37.702737, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702737, 55.552531], [37.702737, 55.552621], [37.702827, 55.552621], [37.702827, 55.552531], [37.702737, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702737, 55.552621], [37.702737, 55.552711], [37.702827, 55.552711], [37.702827, 55.552621], [37.702737, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702737, 55.552711], [37.702737, 55.552801], [37.702827, 55.552801], [37.702827, 55.552711], [37.702737, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702737, 55.552801], [37.702737, 55.552891], [37.702827, 55.552891], [37.702827, 55.552801], [37.702737, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702737, 55.552891], [37.702737, 55.552981], [37.702827, 55.552981], [37.702827, 55.552891], [37.702737, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702737, 55.552981], [37.702737, 55.553071], [37.702827, 55.553071], [37.702827, 55.552981], [37.702737, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702737, 55.553071], [37.702737, 55.553161], [37.702827, 55.553161], [37.702827, 55.553071], [37.702737, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702737, 55.553161], [37.702737, 55.553251], [37.702827, 55.553251], [37.702827, 55.553161], [37.702737, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702737, 55.553251], [37.702737, 55.553341], [37.702827, 55.553341], [37.702827, 55.553251], [37.702737, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702737, 55.553341], [37.702737, 55.553431], [37.702827, 55.553431], [37.702827, 55.553341], [37.702737, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702737, 55.553431], [37.702737, 55.55352], [37.702827, 55.55352], [37.702827, 55.553431], [37.702737, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702737, 55.55352], [37.702737, 55.55361], [37.702827, 55.55361], [37.702827, 55.55352], [37.702737, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702737, 55.55361], [37.702737, 55.5537], [37.702827, 55.5537], [37.702827, 55.55361], [37.702737, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702737, 55.5537], [37.702737, 55.55379], [37.702827, 55.55379], [37.702827, 55.5537], [37.702737, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702737, 55.55379], [37.702737, 55.55388], [37.702827, 55.55388], [37.702827, 55.55379], [37.702737, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702737, 55.55388], [37.702737, 55.55397], [37.702827, 55.55397], [37.702827, 55.55388], [37.702737, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702737, 55.55397], [37.702737, 55.55406], [37.702827, 55.55406], [37.702827, 55.55397], [37.702737, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702737, 55.55406], [37.702737, 55.55415], [37.702827, 55.55415], [37.702827, 55.55406], [37.702737, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702737, 55.55415], [37.702737, 55.55424], [37.702827, 55.55424], [37.702827, 55.55415], [37.702737, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702737, 55.55424], [37.702737, 55.55433], [37.702827, 55.55433], [37.702827, 55.55424], [37.702737, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702737, 55.55433], [37.702737, 55.55442], [37.702827, 55.55442], [37.702827, 55.55433], [37.702737, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702737, 55.55442], [37.702737, 55.55451], [37.702827, 55.55451], [37.702827, 55.55442], [37.702737, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702827, 55.552441], [37.702827, 55.552531], [37.702917, 55.552531], [37.702917, 55.552441], [37.702827, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702827, 55.552531], [37.702827, 55.552621], [37.702917, 55.552621], [37.702917, 55.552531], [37.702827, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702827, 55.552621], [37.702827, 55.552711], [37.702917, 55.552711], [37.702917, 55.552621], [37.702827, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702827, 55.552711], [37.702827, 55.552801], [37.702917, 55.552801], [37.702917, 55.552711], [37.702827, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702827, 55.552801], [37.702827, 55.552891], [37.702917, 55.552891], [37.702917, 55.552801], [37.702827, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702827, 55.552891], [37.702827, 55.552981], [37.702917, 55.552981], [37.702917, 55.552891], [37.702827, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702827, 55.552981], [37.702827, 55.553071], [37.702917, 55.553071], [37.702917, 55.552981], [37.702827, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702827, 55.553071], [37.702827, 55.553161], [37.702917, 55.553161], [37.702917, 55.553071], [37.702827, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702827, 55.553161], [37.702827, 55.553251], [37.702917, 55.553251], [37.702917, 55.553161], [37.702827, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702827, 55.553251], [37.702827, 55.553341], [37.702917, 55.553341], [37.702917, 55.553251], [37.702827, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702827, 55.553341], [37.702827, 55.553431], [37.702917, 55.553431], [37.702917, 55.553341], [37.702827, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702827, 55.553431], [37.702827, 55.55352], [37.702917, 55.55352], [37.702917, 55.553431], [37.702827, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702827, 55.55352], [37.702827, 55.55361], [37.702917, 55.55361], [37.702917, 55.55352], [37.702827, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702827, 55.55361], [37.702827, 55.5537], [37.702917, 55.5537], [37.702917, 55.55361], [37.702827, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702827, 55.5537], [37.702827, 55.55379], [37.702917, 55.55379], [37.702917, 55.5537], [37.702827, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702827, 55.55379], [37.702827, 55.55388], [37.702917, 55.55388], [37.702917, 55.55379], [37.702827, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702827, 55.55388], [37.702827, 55.55397], [37.702917, 55.55397], [37.702917, 55.55388], [37.702827, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702827, 55.55397], [37.702827, 55.55406], [37.702917, 55.55406], [37.702917, 55.55397], [37.702827, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702827, 55.55406], [37.702827, 55.55415], [37.702917, 55.55415], [37.702917, 55.55406], [37.702827, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702827, 55.55415], [37.702827, 55.55424], [37.702917, 55.55424], [37.702917, 55.55415], [37.702827, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702827, 55.55424], [37.702827, 55.55433], [37.702917, 55.55433], [37.702917, 55.55424], [37.702827, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702827, 55.55433], [37.702827, 55.55442], [37.702917, 55.55442], [37.702917, 55.55433], [37.702827, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702827, 55.55442], [37.702827, 55.55451], [37.702917, 55.55451], [37.702917, 55.55442], [37.702827, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702827, 55.55451], [37.702827, 55.5546], [37.702917, 55.5546], [37.702917, 55.55451], [37.702827, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702917, 55.552351], [37.702917, 55.552441], [37.703007, 55.552441], [37.703007, 55.552351], [37.702917, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702917, 55.552441], [37.702917, 55.552531], [37.703007, 55.552531], [37.703007, 55.552441], [37.702917, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702917, 55.552531], [37.702917, 55.552621], [37.703007, 55.552621], [37.703007, 55.552531], [37.702917, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702917, 55.552621], [37.702917, 55.552711], [37.703007, 55.552711], [37.703007, 55.552621], [37.702917, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702917, 55.552711], [37.702917, 55.552801], [37.703007, 55.552801], [37.703007, 55.552711], [37.702917, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702917, 55.552801], [37.702917, 55.552891], [37.703007, 55.552891], [37.703007, 55.552801], [37.702917, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702917, 55.552891], [37.702917, 55.552981], [37.703007, 55.552981], [37.703007, 55.552891], [37.702917, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702917, 55.552981], [37.702917, 55.553071], [37.703007, 55.553071], [37.703007, 55.552981], [37.702917, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702917, 55.553071], [37.702917, 55.553161], [37.703007, 55.553161], [37.703007, 55.553071], [37.702917, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702917, 55.553161], [37.702917, 55.553251], [37.703007, 55.553251], [37.703007, 55.553161], [37.702917, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702917, 55.553251], [37.702917, 55.553341], [37.703007, 55.553341], [37.703007, 55.553251], [37.702917, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702917, 55.553341], [37.702917, 55.553431], [37.703007, 55.553431], [37.703007, 55.553341], [37.702917, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702917, 55.553431], [37.702917, 55.55352], [37.703007, 55.55352], [37.703007, 55.553431], [37.702917, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702917, 55.55352], [37.702917, 55.55361], [37.703007, 55.55361], [37.703007, 55.55352], [37.702917, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702917, 55.55361], [37.702917, 55.5537], [37.703007, 55.5537], [37.703007, 55.55361], [37.702917, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702917, 55.5537], [37.702917, 55.55379], [37.703007, 55.55379], [37.703007, 55.5537], [37.702917, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702917, 55.55379], [37.702917, 55.55388], [37.703007, 55.55388], [37.703007, 55.55379], [37.702917, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702917, 55.55388], [37.702917, 55.55397], [37.703007, 55.55397], [37.703007, 55.55388], [37.702917, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702917, 55.55397], [37.702917, 55.55406], [37.703007, 55.55406], [37.703007, 55.55397], [37.702917, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702917, 55.55406], [37.702917, 55.55415], [37.703007, 55.55415], [37.703007, 55.55406], [37.702917, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702917, 55.55415], [37.702917, 55.55424], [37.703007, 55.55424], [37.703007, 55.55415], [37.702917, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702917, 55.55424], [37.702917, 55.55433], [37.703007, 55.55433], [37.703007, 55.55424], [37.702917, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702917, 55.55433], [37.702917, 55.55442], [37.703007, 55.55442], [37.703007, 55.55433], [37.702917, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702917, 55.55442], [37.702917, 55.55451], [37.703007, 55.55451], [37.703007, 55.55442], [37.702917, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.702917, 55.55451], [37.702917, 55.5546], [37.703007, 55.5546], [37.703007, 55.55451], [37.702917, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703007, 55.552351], [37.703007, 55.552441], [37.703097, 55.552441], [37.703097, 55.552351], [37.703007, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703007, 55.552441], [37.703007, 55.552531], [37.703097, 55.552531], [37.703097, 55.552441], [37.703007, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703007, 55.552531], [37.703007, 55.552621], [37.703097, 55.552621], [37.703097, 55.552531], [37.703007, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703007, 55.552621], [37.703007, 55.552711], [37.703097, 55.552711], [37.703097, 55.552621], [37.703007, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703007, 55.552711], [37.703007, 55.552801], [37.703097, 55.552801], [37.703097, 55.552711], [37.703007, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703007, 55.552801], [37.703007, 55.552891], [37.703097, 55.552891], [37.703097, 55.552801], [37.703007, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703007, 55.552891], [37.703007, 55.552981], [37.703097, 55.552981], [37.703097, 55.552891], [37.703007, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703007, 55.552981], [37.703007, 55.553071], [37.703097, 55.553071], [37.703097, 55.552981], [37.703007, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703007, 55.553071], [37.703007, 55.553161], [37.703097, 55.553161], [37.703097, 55.553071], [37.703007, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703007, 55.553161], [37.703007, 55.553251], [37.703097, 55.553251], [37.703097, 55.553161], [37.703007, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703007, 55.553251], [37.703007, 55.553341], [37.703097, 55.553341], [37.703097, 55.553251], [37.703007, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703007, 55.553341], [37.703007, 55.553431], [37.703097, 55.553431], [37.703097, 55.553341], [37.703007, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703007, 55.553431], [37.703007, 55.55352], [37.703097, 55.55352], [37.703097, 55.553431], [37.703007, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703007, 55.55352], [37.703007, 55.55361], [37.703097, 55.55361], [37.703097, 55.55352], [37.703007, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703007, 55.55361], [37.703007, 55.5537], [37.703097, 55.5537], [37.703097, 55.55361], [37.703007, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703007, 55.5537], [37.703007, 55.55379], [37.703097, 55.55379], [37.703097, 55.5537], [37.703007, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703007, 55.55379], [37.703007, 55.55388], [37.703097, 55.55388], [37.703097, 55.55379], [37.703007, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703007, 55.55388], [37.703007, 55.55397], [37.703097, 55.55397], [37.703097, 55.55388], [37.703007, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703007, 55.55397], [37.703007, 55.55406], [37.703097, 55.55406], [37.703097, 55.55397], [37.703007, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703007, 55.55406], [37.703007, 55.55415], [37.703097, 55.55415], [37.703097, 55.55406], [37.703007, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703007, 55.55415], [37.703007, 55.55424], [37.703097, 55.55424], [37.703097, 55.55415], [37.703007, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703007, 55.55424], [37.703007, 55.55433], [37.703097, 55.55433], [37.703097, 55.55424], [37.703007, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703007, 55.55433], [37.703007, 55.55442], [37.703097, 55.55442], [37.703097, 55.55433], [37.703007, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703007, 55.55442], [37.703007, 55.55451], [37.703097, 55.55451], [37.703097, 55.55442], [37.703007, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703007, 55.55451], [37.703007, 55.5546], [37.703097, 55.5546], [37.703097, 55.55451], [37.703007, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703097, 55.552351], [37.703097, 55.552441], [37.703187, 55.552441], [37.703187, 55.552351], [37.703097, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703097, 55.552441], [37.703097, 55.552531], [37.703187, 55.552531], [37.703187, 55.552441], [37.703097, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703097, 55.552531], [37.703097, 55.552621], [37.703187, 55.552621], [37.703187, 55.552531], [37.703097, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703097, 55.552621], [37.703097, 55.552711], [37.703187, 55.552711], [37.703187, 55.552621], [37.703097, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703097, 55.552711], [37.703097, 55.552801], [37.703187, 55.552801], [37.703187, 55.552711], [37.703097, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703097, 55.552801], [37.703097, 55.552891], [37.703187, 55.552891], [37.703187, 55.552801], [37.703097, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703097, 55.552891], [37.703097, 55.552981], [37.703187, 55.552981], [37.703187, 55.552891], [37.703097, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703097, 55.552981], [37.703097, 55.553071], [37.703187, 55.553071], [37.703187, 55.552981], [37.703097, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703097, 55.553071], [37.703097, 55.553161], [37.703187, 55.553161], [37.703187, 55.553071], [37.703097, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703097, 55.553161], [37.703097, 55.553251], [37.703187, 55.553251], [37.703187, 55.553161], [37.703097, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703097, 55.553251], [37.703097, 55.553341], [37.703187, 55.553341], [37.703187, 55.553251], [37.703097, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703097, 55.553341], [37.703097, 55.553431], [37.703187, 55.553431], [37.703187, 55.553341], [37.703097, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703097, 55.553431], [37.703097, 55.55352], [37.703187, 55.55352], [37.703187, 55.553431], [37.703097, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703097, 55.55352], [37.703097, 55.55361], [37.703187, 55.55361], [37.703187, 55.55352], [37.703097, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703097, 55.55361], [37.703097, 55.5537], [37.703187, 55.5537], [37.703187, 55.55361], [37.703097, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703097, 55.5537], [37.703097, 55.55379], [37.703187, 55.55379], [37.703187, 55.5537], [37.703097, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703097, 55.55379], [37.703097, 55.55388], [37.703187, 55.55388], [37.703187, 55.55379], [37.703097, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703097, 55.55388], [37.703097, 55.55397], [37.703187, 55.55397], [37.703187, 55.55388], [37.703097, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703097, 55.55397], [37.703097, 55.55406], [37.703187, 55.55406], [37.703187, 55.55397], [37.703097, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703097, 55.55406], [37.703097, 55.55415], [37.703187, 55.55415], [37.703187, 55.55406], [37.703097, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703097, 55.55415], [37.703097, 55.55424], [37.703187, 55.55424], [37.703187, 55.55415], [37.703097, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703097, 55.55424], [37.703097, 55.55433], [37.703187, 55.55433], [37.703187, 55.55424], [37.703097, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703097, 55.55433], [37.703097, 55.55442], [37.703187, 55.55442], [37.703187, 55.55433], [37.703097, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703097, 55.55442], [37.703097, 55.55451], [37.703187, 55.55451], [37.703187, 55.55442], [37.703097, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703097, 55.55451], [37.703097, 55.5546], [37.703187, 55.5546], [37.703187, 55.55451], [37.703097, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703097, 55.5546], [37.703097, 55.55469], [37.703187, 55.55469], [37.703187, 55.5546], [37.703097, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703187, 55.552351], [37.703187, 55.552441], [37.703276, 55.552441], [37.703276, 55.552351], [37.703187, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703187, 55.552441], [37.703187, 55.552531], [37.703276, 55.552531], [37.703276, 55.552441], [37.703187, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703187, 55.552531], [37.703187, 55.552621], [37.703276, 55.552621], [37.703276, 55.552531], [37.703187, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703187, 55.552621], [37.703187, 55.552711], [37.703276, 55.552711], [37.703276, 55.552621], [37.703187, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703187, 55.552711], [37.703187, 55.552801], [37.703276, 55.552801], [37.703276, 55.552711], [37.703187, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703187, 55.552801], [37.703187, 55.552891], [37.703276, 55.552891], [37.703276, 55.552801], [37.703187, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703187, 55.552891], [37.703187, 55.552981], [37.703276, 55.552981], [37.703276, 55.552891], [37.703187, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703187, 55.552981], [37.703187, 55.553071], [37.703276, 55.553071], [37.703276, 55.552981], [37.703187, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703187, 55.553071], [37.703187, 55.553161], [37.703276, 55.553161], [37.703276, 55.553071], [37.703187, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703187, 55.553161], [37.703187, 55.553251], [37.703276, 55.553251], [37.703276, 55.553161], [37.703187, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703187, 55.553251], [37.703187, 55.553341], [37.703276, 55.553341], [37.703276, 55.553251], [37.703187, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703187, 55.553341], [37.703187, 55.553431], [37.703276, 55.553431], [37.703276, 55.553341], [37.703187, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703187, 55.553431], [37.703187, 55.55352], [37.703276, 55.55352], [37.703276, 55.553431], [37.703187, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703187, 55.55352], [37.703187, 55.55361], [37.703276, 55.55361], [37.703276, 55.55352], [37.703187, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703187, 55.55361], [37.703187, 55.5537], [37.703276, 55.5537], [37.703276, 55.55361], [37.703187, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703187, 55.5537], [37.703187, 55.55379], [37.703276, 55.55379], [37.703276, 55.5537], [37.703187, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703187, 55.55379], [37.703187, 55.55388], [37.703276, 55.55388], [37.703276, 55.55379], [37.703187, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703187, 55.55388], [37.703187, 55.55397], [37.703276, 55.55397], [37.703276, 55.55388], [37.703187, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703187, 55.55397], [37.703187, 55.55406], [37.703276, 55.55406], [37.703276, 55.55397], [37.703187, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703187, 55.55406], [37.703187, 55.55415], [37.703276, 55.55415], [37.703276, 55.55406], [37.703187, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703187, 55.55415], [37.703187, 55.55424], [37.703276, 55.55424], [37.703276, 55.55415], [37.703187, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703187, 55.55424], [37.703187, 55.55433], [37.703276, 55.55433], [37.703276, 55.55424], [37.703187, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703187, 55.55433], [37.703187, 55.55442], [37.703276, 55.55442], [37.703276, 55.55433], [37.703187, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703187, 55.55442], [37.703187, 55.55451], [37.703276, 55.55451], [37.703276, 55.55442], [37.703187, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703187, 55.55451], [37.703187, 55.5546], [37.703276, 55.5546], [37.703276, 55.55451], [37.703187, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703187, 55.5546], [37.703187, 55.55469], [37.703276, 55.55469], [37.703276, 55.5546], [37.703187, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.552261], [37.703276, 55.552351], [37.703366, 55.552351], [37.703366, 55.552261], [37.703276, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.552351], [37.703276, 55.552441], [37.703366, 55.552441], [37.703366, 55.552351], [37.703276, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.552441], [37.703276, 55.552531], [37.703366, 55.552531], [37.703366, 55.552441], [37.703276, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.552531], [37.703276, 55.552621], [37.703366, 55.552621], [37.703366, 55.552531], [37.703276, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.552621], [37.703276, 55.552711], [37.703366, 55.552711], [37.703366, 55.552621], [37.703276, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.552711], [37.703276, 55.552801], [37.703366, 55.552801], [37.703366, 55.552711], [37.703276, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.552801], [37.703276, 55.552891], [37.703366, 55.552891], [37.703366, 55.552801], [37.703276, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.552891], [37.703276, 55.552981], [37.703366, 55.552981], [37.703366, 55.552891], [37.703276, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.552981], [37.703276, 55.553071], [37.703366, 55.553071], [37.703366, 55.552981], [37.703276, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.553071], [37.703276, 55.553161], [37.703366, 55.553161], [37.703366, 55.553071], [37.703276, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.553161], [37.703276, 55.553251], [37.703366, 55.553251], [37.703366, 55.553161], [37.703276, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.553251], [37.703276, 55.553341], [37.703366, 55.553341], [37.703366, 55.553251], [37.703276, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.553341], [37.703276, 55.553431], [37.703366, 55.553431], [37.703366, 55.553341], [37.703276, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.553431], [37.703276, 55.55352], [37.703366, 55.55352], [37.703366, 55.553431], [37.703276, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.55352], [37.703276, 55.55361], [37.703366, 55.55361], [37.703366, 55.55352], [37.703276, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.55361], [37.703276, 55.5537], [37.703366, 55.5537], [37.703366, 55.55361], [37.703276, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.5537], [37.703276, 55.55379], [37.703366, 55.55379], [37.703366, 55.5537], [37.703276, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.55379], [37.703276, 55.55388], [37.703366, 55.55388], [37.703366, 55.55379], [37.703276, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.55388], [37.703276, 55.55397], [37.703366, 55.55397], [37.703366, 55.55388], [37.703276, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.55397], [37.703276, 55.55406], [37.703366, 55.55406], [37.703366, 55.55397], [37.703276, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.55406], [37.703276, 55.55415], [37.703366, 55.55415], [37.703366, 55.55406], [37.703276, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.55415], [37.703276, 55.55424], [37.703366, 55.55424], [37.703366, 55.55415], [37.703276, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.55424], [37.703276, 55.55433], [37.703366, 55.55433], [37.703366, 55.55424], [37.703276, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.55433], [37.703276, 55.55442], [37.703366, 55.55442], [37.703366, 55.55433], [37.703276, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.55442], [37.703276, 55.55451], [37.703366, 55.55451], [37.703366, 55.55442], [37.703276, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.55451], [37.703276, 55.5546], [37.703366, 55.5546], [37.703366, 55.55451], [37.703276, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703276, 55.5546], [37.703276, 55.55469], [37.703366, 55.55469], [37.703366, 55.5546], [37.703276, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.552261], [37.703366, 55.552351], [37.703456, 55.552351], [37.703456, 55.552261], [37.703366, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.552351], [37.703366, 55.552441], [37.703456, 55.552441], [37.703456, 55.552351], [37.703366, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.552441], [37.703366, 55.552531], [37.703456, 55.552531], [37.703456, 55.552441], [37.703366, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.552531], [37.703366, 55.552621], [37.703456, 55.552621], [37.703456, 55.552531], [37.703366, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.552621], [37.703366, 55.552711], [37.703456, 55.552711], [37.703456, 55.552621], [37.703366, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.552711], [37.703366, 55.552801], [37.703456, 55.552801], [37.703456, 55.552711], [37.703366, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.552801], [37.703366, 55.552891], [37.703456, 55.552891], [37.703456, 55.552801], [37.703366, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.552891], [37.703366, 55.552981], [37.703456, 55.552981], [37.703456, 55.552891], [37.703366, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.552981], [37.703366, 55.553071], [37.703456, 55.553071], [37.703456, 55.552981], [37.703366, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.553071], [37.703366, 55.553161], [37.703456, 55.553161], [37.703456, 55.553071], [37.703366, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.553161], [37.703366, 55.553251], [37.703456, 55.553251], [37.703456, 55.553161], [37.703366, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.553251], [37.703366, 55.553341], [37.703456, 55.553341], [37.703456, 55.553251], [37.703366, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.553341], [37.703366, 55.553431], [37.703456, 55.553431], [37.703456, 55.553341], [37.703366, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.553431], [37.703366, 55.55352], [37.703456, 55.55352], [37.703456, 55.553431], [37.703366, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.55352], [37.703366, 55.55361], [37.703456, 55.55361], [37.703456, 55.55352], [37.703366, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.55361], [37.703366, 55.5537], [37.703456, 55.5537], [37.703456, 55.55361], [37.703366, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.5537], [37.703366, 55.55379], [37.703456, 55.55379], [37.703456, 55.5537], [37.703366, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.55379], [37.703366, 55.55388], [37.703456, 55.55388], [37.703456, 55.55379], [37.703366, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.55388], [37.703366, 55.55397], [37.703456, 55.55397], [37.703456, 55.55388], [37.703366, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.55397], [37.703366, 55.55406], [37.703456, 55.55406], [37.703456, 55.55397], [37.703366, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.55406], [37.703366, 55.55415], [37.703456, 55.55415], [37.703456, 55.55406], [37.703366, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.55415], [37.703366, 55.55424], [37.703456, 55.55424], [37.703456, 55.55415], [37.703366, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.55424], [37.703366, 55.55433], [37.703456, 55.55433], [37.703456, 55.55424], [37.703366, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.55433], [37.703366, 55.55442], [37.703456, 55.55442], [37.703456, 55.55433], [37.703366, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.55442], [37.703366, 55.55451], [37.703456, 55.55451], [37.703456, 55.55442], [37.703366, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.55451], [37.703366, 55.5546], [37.703456, 55.5546], [37.703456, 55.55451], [37.703366, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703366, 55.5546], [37.703366, 55.55469], [37.703456, 55.55469], [37.703456, 55.5546], [37.703366, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.552261], [37.703456, 55.552351], [37.703546, 55.552351], [37.703546, 55.552261], [37.703456, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.552351], [37.703456, 55.552441], [37.703546, 55.552441], [37.703546, 55.552351], [37.703456, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.552441], [37.703456, 55.552531], [37.703546, 55.552531], [37.703546, 55.552441], [37.703456, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.552531], [37.703456, 55.552621], [37.703546, 55.552621], [37.703546, 55.552531], [37.703456, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.552621], [37.703456, 55.552711], [37.703546, 55.552711], [37.703546, 55.552621], [37.703456, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.552711], [37.703456, 55.552801], [37.703546, 55.552801], [37.703546, 55.552711], [37.703456, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.552801], [37.703456, 55.552891], [37.703546, 55.552891], [37.703546, 55.552801], [37.703456, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.552891], [37.703456, 55.552981], [37.703546, 55.552981], [37.703546, 55.552891], [37.703456, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.552981], [37.703456, 55.553071], [37.703546, 55.553071], [37.703546, 55.552981], [37.703456, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.553071], [37.703456, 55.553161], [37.703546, 55.553161], [37.703546, 55.553071], [37.703456, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.553161], [37.703456, 55.553251], [37.703546, 55.553251], [37.703546, 55.553161], [37.703456, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.553251], [37.703456, 55.553341], [37.703546, 55.553341], [37.703546, 55.553251], [37.703456, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.553341], [37.703456, 55.553431], [37.703546, 55.553431], [37.703546, 55.553341], [37.703456, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.553431], [37.703456, 55.55352], [37.703546, 55.55352], [37.703546, 55.553431], [37.703456, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.55352], [37.703456, 55.55361], [37.703546, 55.55361], [37.703546, 55.55352], [37.703456, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.55361], [37.703456, 55.5537], [37.703546, 55.5537], [37.703546, 55.55361], [37.703456, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.5537], [37.703456, 55.55379], [37.703546, 55.55379], [37.703546, 55.5537], [37.703456, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.55379], [37.703456, 55.55388], [37.703546, 55.55388], [37.703546, 55.55379], [37.703456, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.55388], [37.703456, 55.55397], [37.703546, 55.55397], [37.703546, 55.55388], [37.703456, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.55397], [37.703456, 55.55406], [37.703546, 55.55406], [37.703546, 55.55397], [37.703456, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.55406], [37.703456, 55.55415], [37.703546, 55.55415], [37.703546, 55.55406], [37.703456, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.55415], [37.703456, 55.55424], [37.703546, 55.55424], [37.703546, 55.55415], [37.703456, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.55424], [37.703456, 55.55433], [37.703546, 55.55433], [37.703546, 55.55424], [37.703456, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.55433], [37.703456, 55.55442], [37.703546, 55.55442], [37.703546, 55.55433], [37.703456, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.55442], [37.703456, 55.55451], [37.703546, 55.55451], [37.703546, 55.55442], [37.703456, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.55451], [37.703456, 55.5546], [37.703546, 55.5546], [37.703546, 55.55451], [37.703456, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.5546], [37.703456, 55.55469], [37.703546, 55.55469], [37.703546, 55.5546], [37.703456, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703456, 55.55469], [37.703456, 55.55478], [37.703546, 55.55478], [37.703546, 55.55469], [37.703456, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.552261], [37.703546, 55.552351], [37.703636, 55.552351], [37.703636, 55.552261], [37.703546, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.552351], [37.703546, 55.552441], [37.703636, 55.552441], [37.703636, 55.552351], [37.703546, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.552441], [37.703546, 55.552531], [37.703636, 55.552531], [37.703636, 55.552441], [37.703546, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.552531], [37.703546, 55.552621], [37.703636, 55.552621], [37.703636, 55.552531], [37.703546, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.552621], [37.703546, 55.552711], [37.703636, 55.552711], [37.703636, 55.552621], [37.703546, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.552711], [37.703546, 55.552801], [37.703636, 55.552801], [37.703636, 55.552711], [37.703546, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.552801], [37.703546, 55.552891], [37.703636, 55.552891], [37.703636, 55.552801], [37.703546, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.552891], [37.703546, 55.552981], [37.703636, 55.552981], [37.703636, 55.552891], [37.703546, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.552981], [37.703546, 55.553071], [37.703636, 55.553071], [37.703636, 55.552981], [37.703546, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.553071], [37.703546, 55.553161], [37.703636, 55.553161], [37.703636, 55.553071], [37.703546, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.553161], [37.703546, 55.553251], [37.703636, 55.553251], [37.703636, 55.553161], [37.703546, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.553251], [37.703546, 55.553341], [37.703636, 55.553341], [37.703636, 55.553251], [37.703546, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.553341], [37.703546, 55.553431], [37.703636, 55.553431], [37.703636, 55.553341], [37.703546, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.553431], [37.703546, 55.55352], [37.703636, 55.55352], [37.703636, 55.553431], [37.703546, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.55352], [37.703546, 55.55361], [37.703636, 55.55361], [37.703636, 55.55352], [37.703546, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.55361], [37.703546, 55.5537], [37.703636, 55.5537], [37.703636, 55.55361], [37.703546, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.5537], [37.703546, 55.55379], [37.703636, 55.55379], [37.703636, 55.5537], [37.703546, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.55379], [37.703546, 55.55388], [37.703636, 55.55388], [37.703636, 55.55379], [37.703546, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.55388], [37.703546, 55.55397], [37.703636, 55.55397], [37.703636, 55.55388], [37.703546, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.55397], [37.703546, 55.55406], [37.703636, 55.55406], [37.703636, 55.55397], [37.703546, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.55406], [37.703546, 55.55415], [37.703636, 55.55415], [37.703636, 55.55406], [37.703546, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.55415], [37.703546, 55.55424], [37.703636, 55.55424], [37.703636, 55.55415], [37.703546, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.55424], [37.703546, 55.55433], [37.703636, 55.55433], [37.703636, 55.55424], [37.703546, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.55433], [37.703546, 55.55442], [37.703636, 55.55442], [37.703636, 55.55433], [37.703546, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.55442], [37.703546, 55.55451], [37.703636, 55.55451], [37.703636, 55.55442], [37.703546, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.55451], [37.703546, 55.5546], [37.703636, 55.5546], [37.703636, 55.55451], [37.703546, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.5546], [37.703546, 55.55469], [37.703636, 55.55469], [37.703636, 55.5546], [37.703546, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703546, 55.55469], [37.703546, 55.55478], [37.703636, 55.55478], [37.703636, 55.55469], [37.703546, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.552171], [37.703636, 55.552261], [37.703726, 55.552261], [37.703726, 55.552171], [37.703636, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.552261], [37.703636, 55.552351], [37.703726, 55.552351], [37.703726, 55.552261], [37.703636, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.552351], [37.703636, 55.552441], [37.703726, 55.552441], [37.703726, 55.552351], [37.703636, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.552441], [37.703636, 55.552531], [37.703726, 55.552531], [37.703726, 55.552441], [37.703636, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.552531], [37.703636, 55.552621], [37.703726, 55.552621], [37.703726, 55.552531], [37.703636, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.552621], [37.703636, 55.552711], [37.703726, 55.552711], [37.703726, 55.552621], [37.703636, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.552711], [37.703636, 55.552801], [37.703726, 55.552801], [37.703726, 55.552711], [37.703636, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.552801], [37.703636, 55.552891], [37.703726, 55.552891], [37.703726, 55.552801], [37.703636, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.552891], [37.703636, 55.552981], [37.703726, 55.552981], [37.703726, 55.552891], [37.703636, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.552981], [37.703636, 55.553071], [37.703726, 55.553071], [37.703726, 55.552981], [37.703636, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.553071], [37.703636, 55.553161], [37.703726, 55.553161], [37.703726, 55.553071], [37.703636, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.553161], [37.703636, 55.553251], [37.703726, 55.553251], [37.703726, 55.553161], [37.703636, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.553251], [37.703636, 55.553341], [37.703726, 55.553341], [37.703726, 55.553251], [37.703636, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.553341], [37.703636, 55.553431], [37.703726, 55.553431], [37.703726, 55.553341], [37.703636, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.553431], [37.703636, 55.55352], [37.703726, 55.55352], [37.703726, 55.553431], [37.703636, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.55352], [37.703636, 55.55361], [37.703726, 55.55361], [37.703726, 55.55352], [37.703636, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.55361], [37.703636, 55.5537], [37.703726, 55.5537], [37.703726, 55.55361], [37.703636, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.5537], [37.703636, 55.55379], [37.703726, 55.55379], [37.703726, 55.5537], [37.703636, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.55379], [37.703636, 55.55388], [37.703726, 55.55388], [37.703726, 55.55379], [37.703636, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.55388], [37.703636, 55.55397], [37.703726, 55.55397], [37.703726, 55.55388], [37.703636, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.55397], [37.703636, 55.55406], [37.703726, 55.55406], [37.703726, 55.55397], [37.703636, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.55406], [37.703636, 55.55415], [37.703726, 55.55415], [37.703726, 55.55406], [37.703636, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.55415], [37.703636, 55.55424], [37.703726, 55.55424], [37.703726, 55.55415], [37.703636, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.55424], [37.703636, 55.55433], [37.703726, 55.55433], [37.703726, 55.55424], [37.703636, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.55433], [37.703636, 55.55442], [37.703726, 55.55442], [37.703726, 55.55433], [37.703636, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.55442], [37.703636, 55.55451], [37.703726, 55.55451], [37.703726, 55.55442], [37.703636, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.55451], [37.703636, 55.5546], [37.703726, 55.5546], [37.703726, 55.55451], [37.703636, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.5546], [37.703636, 55.55469], [37.703726, 55.55469], [37.703726, 55.5546], [37.703636, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703636, 55.55469], [37.703636, 55.55478], [37.703726, 55.55478], [37.703726, 55.55469], [37.703636, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.552171], [37.703726, 55.552261], [37.703816, 55.552261], [37.703816, 55.552171], [37.703726, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.552261], [37.703726, 55.552351], [37.703816, 55.552351], [37.703816, 55.552261], [37.703726, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.552351], [37.703726, 55.552441], [37.703816, 55.552441], [37.703816, 55.552351], [37.703726, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.552441], [37.703726, 55.552531], [37.703816, 55.552531], [37.703816, 55.552441], [37.703726, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.552531], [37.703726, 55.552621], [37.703816, 55.552621], [37.703816, 55.552531], [37.703726, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.552621], [37.703726, 55.552711], [37.703816, 55.552711], [37.703816, 55.552621], [37.703726, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.552711], [37.703726, 55.552801], [37.703816, 55.552801], [37.703816, 55.552711], [37.703726, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.552801], [37.703726, 55.552891], [37.703816, 55.552891], [37.703816, 55.552801], [37.703726, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.552891], [37.703726, 55.552981], [37.703816, 55.552981], [37.703816, 55.552891], [37.703726, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.552981], [37.703726, 55.553071], [37.703816, 55.553071], [37.703816, 55.552981], [37.703726, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.553071], [37.703726, 55.553161], [37.703816, 55.553161], [37.703816, 55.553071], [37.703726, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.553161], [37.703726, 55.553251], [37.703816, 55.553251], [37.703816, 55.553161], [37.703726, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.553251], [37.703726, 55.553341], [37.703816, 55.553341], [37.703816, 55.553251], [37.703726, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.553341], [37.703726, 55.553431], [37.703816, 55.553431], [37.703816, 55.553341], [37.703726, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.553431], [37.703726, 55.55352], [37.703816, 55.55352], [37.703816, 55.553431], [37.703726, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.55352], [37.703726, 55.55361], [37.703816, 55.55361], [37.703816, 55.55352], [37.703726, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.55361], [37.703726, 55.5537], [37.703816, 55.5537], [37.703816, 55.55361], [37.703726, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.5537], [37.703726, 55.55379], [37.703816, 55.55379], [37.703816, 55.5537], [37.703726, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.55379], [37.703726, 55.55388], [37.703816, 55.55388], [37.703816, 55.55379], [37.703726, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.55388], [37.703726, 55.55397], [37.703816, 55.55397], [37.703816, 55.55388], [37.703726, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.55397], [37.703726, 55.55406], [37.703816, 55.55406], [37.703816, 55.55397], [37.703726, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.55406], [37.703726, 55.55415], [37.703816, 55.55415], [37.703816, 55.55406], [37.703726, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.55415], [37.703726, 55.55424], [37.703816, 55.55424], [37.703816, 55.55415], [37.703726, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.55424], [37.703726, 55.55433], [37.703816, 55.55433], [37.703816, 55.55424], [37.703726, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.55433], [37.703726, 55.55442], [37.703816, 55.55442], [37.703816, 55.55433], [37.703726, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.55442], [37.703726, 55.55451], [37.703816, 55.55451], [37.703816, 55.55442], [37.703726, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.55451], [37.703726, 55.5546], [37.703816, 55.5546], [37.703816, 55.55451], [37.703726, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.5546], [37.703726, 55.55469], [37.703816, 55.55469], [37.703816, 55.5546], [37.703726, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703726, 55.55469], [37.703726, 55.55478], [37.703816, 55.55478], [37.703816, 55.55469], [37.703726, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.552171], [37.703816, 55.552261], [37.703906, 55.552261], [37.703906, 55.552171], [37.703816, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.552261], [37.703816, 55.552351], [37.703906, 55.552351], [37.703906, 55.552261], [37.703816, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.552351], [37.703816, 55.552441], [37.703906, 55.552441], [37.703906, 55.552351], [37.703816, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.552441], [37.703816, 55.552531], [37.703906, 55.552531], [37.703906, 55.552441], [37.703816, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.552531], [37.703816, 55.552621], [37.703906, 55.552621], [37.703906, 55.552531], [37.703816, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.552621], [37.703816, 55.552711], [37.703906, 55.552711], [37.703906, 55.552621], [37.703816, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.552711], [37.703816, 55.552801], [37.703906, 55.552801], [37.703906, 55.552711], [37.703816, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.552801], [37.703816, 55.552891], [37.703906, 55.552891], [37.703906, 55.552801], [37.703816, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.552891], [37.703816, 55.552981], [37.703906, 55.552981], [37.703906, 55.552891], [37.703816, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.552981], [37.703816, 55.553071], [37.703906, 55.553071], [37.703906, 55.552981], [37.703816, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.553071], [37.703816, 55.553161], [37.703906, 55.553161], [37.703906, 55.553071], [37.703816, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.553161], [37.703816, 55.553251], [37.703906, 55.553251], [37.703906, 55.553161], [37.703816, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.553251], [37.703816, 55.553341], [37.703906, 55.553341], [37.703906, 55.553251], [37.703816, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.553341], [37.703816, 55.553431], [37.703906, 55.553431], [37.703906, 55.553341], [37.703816, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.553431], [37.703816, 55.55352], [37.703906, 55.55352], [37.703906, 55.553431], [37.703816, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.55352], [37.703816, 55.55361], [37.703906, 55.55361], [37.703906, 55.55352], [37.703816, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.55361], [37.703816, 55.5537], [37.703906, 55.5537], [37.703906, 55.55361], [37.703816, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.5537], [37.703816, 55.55379], [37.703906, 55.55379], [37.703906, 55.5537], [37.703816, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.55379], [37.703816, 55.55388], [37.703906, 55.55388], [37.703906, 55.55379], [37.703816, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.55388], [37.703816, 55.55397], [37.703906, 55.55397], [37.703906, 55.55388], [37.703816, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.55397], [37.703816, 55.55406], [37.703906, 55.55406], [37.703906, 55.55397], [37.703816, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.55406], [37.703816, 55.55415], [37.703906, 55.55415], [37.703906, 55.55406], [37.703816, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.55415], [37.703816, 55.55424], [37.703906, 55.55424], [37.703906, 55.55415], [37.703816, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.55424], [37.703816, 55.55433], [37.703906, 55.55433], [37.703906, 55.55424], [37.703816, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.55433], [37.703816, 55.55442], [37.703906, 55.55442], [37.703906, 55.55433], [37.703816, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.55442], [37.703816, 55.55451], [37.703906, 55.55451], [37.703906, 55.55442], [37.703816, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.55451], [37.703816, 55.5546], [37.703906, 55.5546], [37.703906, 55.55451], [37.703816, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.5546], [37.703816, 55.55469], [37.703906, 55.55469], [37.703906, 55.5546], [37.703816, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.55469], [37.703816, 55.55478], [37.703906, 55.55478], [37.703906, 55.55469], [37.703816, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703816, 55.55478], [37.703816, 55.554869], [37.703906, 55.554869], [37.703906, 55.55478], [37.703816, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.552171], [37.703906, 55.552261], [37.703996, 55.552261], [37.703996, 55.552171], [37.703906, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.552261], [37.703906, 55.552351], [37.703996, 55.552351], [37.703996, 55.552261], [37.703906, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.552351], [37.703906, 55.552441], [37.703996, 55.552441], [37.703996, 55.552351], [37.703906, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.552441], [37.703906, 55.552531], [37.703996, 55.552531], [37.703996, 55.552441], [37.703906, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.552531], [37.703906, 55.552621], [37.703996, 55.552621], [37.703996, 55.552531], [37.703906, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.552621], [37.703906, 55.552711], [37.703996, 55.552711], [37.703996, 55.552621], [37.703906, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.552711], [37.703906, 55.552801], [37.703996, 55.552801], [37.703996, 55.552711], [37.703906, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.552801], [37.703906, 55.552891], [37.703996, 55.552891], [37.703996, 55.552801], [37.703906, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.552891], [37.703906, 55.552981], [37.703996, 55.552981], [37.703996, 55.552891], [37.703906, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.552981], [37.703906, 55.553071], [37.703996, 55.553071], [37.703996, 55.552981], [37.703906, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.553071], [37.703906, 55.553161], [37.703996, 55.553161], [37.703996, 55.553071], [37.703906, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.553161], [37.703906, 55.553251], [37.703996, 55.553251], [37.703996, 55.553161], [37.703906, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.553251], [37.703906, 55.553341], [37.703996, 55.553341], [37.703996, 55.553251], [37.703906, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.553341], [37.703906, 55.553431], [37.703996, 55.553431], [37.703996, 55.553341], [37.703906, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.553431], [37.703906, 55.55352], [37.703996, 55.55352], [37.703996, 55.553431], [37.703906, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.55352], [37.703906, 55.55361], [37.703996, 55.55361], [37.703996, 55.55352], [37.703906, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.55361], [37.703906, 55.5537], [37.703996, 55.5537], [37.703996, 55.55361], [37.703906, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.5537], [37.703906, 55.55379], [37.703996, 55.55379], [37.703996, 55.5537], [37.703906, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.55379], [37.703906, 55.55388], [37.703996, 55.55388], [37.703996, 55.55379], [37.703906, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.55388], [37.703906, 55.55397], [37.703996, 55.55397], [37.703996, 55.55388], [37.703906, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.55397], [37.703906, 55.55406], [37.703996, 55.55406], [37.703996, 55.55397], [37.703906, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.55406], [37.703906, 55.55415], [37.703996, 55.55415], [37.703996, 55.55406], [37.703906, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.55415], [37.703906, 55.55424], [37.703996, 55.55424], [37.703996, 55.55415], [37.703906, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.55424], [37.703906, 55.55433], [37.703996, 55.55433], [37.703996, 55.55424], [37.703906, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.55433], [37.703906, 55.55442], [37.703996, 55.55442], [37.703996, 55.55433], [37.703906, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.55442], [37.703906, 55.55451], [37.703996, 55.55451], [37.703996, 55.55442], [37.703906, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.55451], [37.703906, 55.5546], [37.703996, 55.5546], [37.703996, 55.55451], [37.703906, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.5546], [37.703906, 55.55469], [37.703996, 55.55469], [37.703996, 55.5546], [37.703906, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.55469], [37.703906, 55.55478], [37.703996, 55.55478], [37.703996, 55.55469], [37.703906, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703906, 55.55478], [37.703906, 55.554869], [37.703996, 55.554869], [37.703996, 55.55478], [37.703906, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.552082], [37.703996, 55.552171], [37.704086, 55.552171], [37.704086, 55.552082], [37.703996, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.552171], [37.703996, 55.552261], [37.704086, 55.552261], [37.704086, 55.552171], [37.703996, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.552261], [37.703996, 55.552351], [37.704086, 55.552351], [37.704086, 55.552261], [37.703996, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.552351], [37.703996, 55.552441], [37.704086, 55.552441], [37.704086, 55.552351], [37.703996, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.552441], [37.703996, 55.552531], [37.704086, 55.552531], [37.704086, 55.552441], [37.703996, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.552531], [37.703996, 55.552621], [37.704086, 55.552621], [37.704086, 55.552531], [37.703996, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.552621], [37.703996, 55.552711], [37.704086, 55.552711], [37.704086, 55.552621], [37.703996, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.552711], [37.703996, 55.552801], [37.704086, 55.552801], [37.704086, 55.552711], [37.703996, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.552801], [37.703996, 55.552891], [37.704086, 55.552891], [37.704086, 55.552801], [37.703996, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.552891], [37.703996, 55.552981], [37.704086, 55.552981], [37.704086, 55.552891], [37.703996, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.552981], [37.703996, 55.553071], [37.704086, 55.553071], [37.704086, 55.552981], [37.703996, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.553071], [37.703996, 55.553161], [37.704086, 55.553161], [37.704086, 55.553071], [37.703996, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.553161], [37.703996, 55.553251], [37.704086, 55.553251], [37.704086, 55.553161], [37.703996, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.553251], [37.703996, 55.553341], [37.704086, 55.553341], [37.704086, 55.553251], [37.703996, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.553341], [37.703996, 55.553431], [37.704086, 55.553431], [37.704086, 55.553341], [37.703996, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.553431], [37.703996, 55.55352], [37.704086, 55.55352], [37.704086, 55.553431], [37.703996, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.55352], [37.703996, 55.55361], [37.704086, 55.55361], [37.704086, 55.55352], [37.703996, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.55361], [37.703996, 55.5537], [37.704086, 55.5537], [37.704086, 55.55361], [37.703996, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.5537], [37.703996, 55.55379], [37.704086, 55.55379], [37.704086, 55.5537], [37.703996, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.55379], [37.703996, 55.55388], [37.704086, 55.55388], [37.704086, 55.55379], [37.703996, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.55388], [37.703996, 55.55397], [37.704086, 55.55397], [37.704086, 55.55388], [37.703996, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.55397], [37.703996, 55.55406], [37.704086, 55.55406], [37.704086, 55.55397], [37.703996, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.55406], [37.703996, 55.55415], [37.704086, 55.55415], [37.704086, 55.55406], [37.703996, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.55415], [37.703996, 55.55424], [37.704086, 55.55424], [37.704086, 55.55415], [37.703996, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.55424], [37.703996, 55.55433], [37.704086, 55.55433], [37.704086, 55.55424], [37.703996, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.55433], [37.703996, 55.55442], [37.704086, 55.55442], [37.704086, 55.55433], [37.703996, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.55442], [37.703996, 55.55451], [37.704086, 55.55451], [37.704086, 55.55442], [37.703996, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.55451], [37.703996, 55.5546], [37.704086, 55.5546], [37.704086, 55.55451], [37.703996, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.5546], [37.703996, 55.55469], [37.704086, 55.55469], [37.704086, 55.5546], [37.703996, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.55469], [37.703996, 55.55478], [37.704086, 55.55478], [37.704086, 55.55469], [37.703996, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.703996, 55.55478], [37.703996, 55.554869], [37.704086, 55.554869], [37.704086, 55.55478], [37.703996, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.552082], [37.704086, 55.552171], [37.704176, 55.552171], [37.704176, 55.552082], [37.704086, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.552171], [37.704086, 55.552261], [37.704176, 55.552261], [37.704176, 55.552171], [37.704086, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.552261], [37.704086, 55.552351], [37.704176, 55.552351], [37.704176, 55.552261], [37.704086, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.552351], [37.704086, 55.552441], [37.704176, 55.552441], [37.704176, 55.552351], [37.704086, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.552441], [37.704086, 55.552531], [37.704176, 55.552531], [37.704176, 55.552441], [37.704086, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.552531], [37.704086, 55.552621], [37.704176, 55.552621], [37.704176, 55.552531], [37.704086, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.552621], [37.704086, 55.552711], [37.704176, 55.552711], [37.704176, 55.552621], [37.704086, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.552711], [37.704086, 55.552801], [37.704176, 55.552801], [37.704176, 55.552711], [37.704086, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.552801], [37.704086, 55.552891], [37.704176, 55.552891], [37.704176, 55.552801], [37.704086, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.552891], [37.704086, 55.552981], [37.704176, 55.552981], [37.704176, 55.552891], [37.704086, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.552981], [37.704086, 55.553071], [37.704176, 55.553071], [37.704176, 55.552981], [37.704086, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.553071], [37.704086, 55.553161], [37.704176, 55.553161], [37.704176, 55.553071], [37.704086, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.553161], [37.704086, 55.553251], [37.704176, 55.553251], [37.704176, 55.553161], [37.704086, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.553251], [37.704086, 55.553341], [37.704176, 55.553341], [37.704176, 55.553251], [37.704086, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.553341], [37.704086, 55.553431], [37.704176, 55.553431], [37.704176, 55.553341], [37.704086, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.553431], [37.704086, 55.55352], [37.704176, 55.55352], [37.704176, 55.553431], [37.704086, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.55352], [37.704086, 55.55361], [37.704176, 55.55361], [37.704176, 55.55352], [37.704086, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.55361], [37.704086, 55.5537], [37.704176, 55.5537], [37.704176, 55.55361], [37.704086, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.5537], [37.704086, 55.55379], [37.704176, 55.55379], [37.704176, 55.5537], [37.704086, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.55379], [37.704086, 55.55388], [37.704176, 55.55388], [37.704176, 55.55379], [37.704086, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.55388], [37.704086, 55.55397], [37.704176, 55.55397], [37.704176, 55.55388], [37.704086, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.55397], [37.704086, 55.55406], [37.704176, 55.55406], [37.704176, 55.55397], [37.704086, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.55406], [37.704086, 55.55415], [37.704176, 55.55415], [37.704176, 55.55406], [37.704086, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.55415], [37.704086, 55.55424], [37.704176, 55.55424], [37.704176, 55.55415], [37.704086, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.55424], [37.704086, 55.55433], [37.704176, 55.55433], [37.704176, 55.55424], [37.704086, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.55433], [37.704086, 55.55442], [37.704176, 55.55442], [37.704176, 55.55433], [37.704086, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.55442], [37.704086, 55.55451], [37.704176, 55.55451], [37.704176, 55.55442], [37.704086, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.55451], [37.704086, 55.5546], [37.704176, 55.5546], [37.704176, 55.55451], [37.704086, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.5546], [37.704086, 55.55469], [37.704176, 55.55469], [37.704176, 55.5546], [37.704086, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.55469], [37.704086, 55.55478], [37.704176, 55.55478], [37.704176, 55.55469], [37.704086, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.55478], [37.704086, 55.554869], [37.704176, 55.554869], [37.704176, 55.55478], [37.704086, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704086, 55.554869], [37.704086, 55.554959], [37.704176, 55.554959], [37.704176, 55.554869], [37.704086, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.552082], [37.704176, 55.552171], [37.704266, 55.552171], [37.704266, 55.552082], [37.704176, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.552171], [37.704176, 55.552261], [37.704266, 55.552261], [37.704266, 55.552171], [37.704176, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.552261], [37.704176, 55.552351], [37.704266, 55.552351], [37.704266, 55.552261], [37.704176, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.552351], [37.704176, 55.552441], [37.704266, 55.552441], [37.704266, 55.552351], [37.704176, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.552441], [37.704176, 55.552531], [37.704266, 55.552531], [37.704266, 55.552441], [37.704176, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.552531], [37.704176, 55.552621], [37.704266, 55.552621], [37.704266, 55.552531], [37.704176, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.552621], [37.704176, 55.552711], [37.704266, 55.552711], [37.704266, 55.552621], [37.704176, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.552711], [37.704176, 55.552801], [37.704266, 55.552801], [37.704266, 55.552711], [37.704176, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.552801], [37.704176, 55.552891], [37.704266, 55.552891], [37.704266, 55.552801], [37.704176, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.552891], [37.704176, 55.552981], [37.704266, 55.552981], [37.704266, 55.552891], [37.704176, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.552981], [37.704176, 55.553071], [37.704266, 55.553071], [37.704266, 55.552981], [37.704176, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.553071], [37.704176, 55.553161], [37.704266, 55.553161], [37.704266, 55.553071], [37.704176, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.553161], [37.704176, 55.553251], [37.704266, 55.553251], [37.704266, 55.553161], [37.704176, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.553251], [37.704176, 55.553341], [37.704266, 55.553341], [37.704266, 55.553251], [37.704176, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.553341], [37.704176, 55.553431], [37.704266, 55.553431], [37.704266, 55.553341], [37.704176, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.553431], [37.704176, 55.55352], [37.704266, 55.55352], [37.704266, 55.553431], [37.704176, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.55352], [37.704176, 55.55361], [37.704266, 55.55361], [37.704266, 55.55352], [37.704176, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.55361], [37.704176, 55.5537], [37.704266, 55.5537], [37.704266, 55.55361], [37.704176, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.5537], [37.704176, 55.55379], [37.704266, 55.55379], [37.704266, 55.5537], [37.704176, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.55379], [37.704176, 55.55388], [37.704266, 55.55388], [37.704266, 55.55379], [37.704176, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.55388], [37.704176, 55.55397], [37.704266, 55.55397], [37.704266, 55.55388], [37.704176, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.55397], [37.704176, 55.55406], [37.704266, 55.55406], [37.704266, 55.55397], [37.704176, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.55406], [37.704176, 55.55415], [37.704266, 55.55415], [37.704266, 55.55406], [37.704176, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.55415], [37.704176, 55.55424], [37.704266, 55.55424], [37.704266, 55.55415], [37.704176, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.55424], [37.704176, 55.55433], [37.704266, 55.55433], [37.704266, 55.55424], [37.704176, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.55433], [37.704176, 55.55442], [37.704266, 55.55442], [37.704266, 55.55433], [37.704176, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.55442], [37.704176, 55.55451], [37.704266, 55.55451], [37.704266, 55.55442], [37.704176, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.55451], [37.704176, 55.5546], [37.704266, 55.5546], [37.704266, 55.55451], [37.704176, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.5546], [37.704176, 55.55469], [37.704266, 55.55469], [37.704266, 55.5546], [37.704176, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.55469], [37.704176, 55.55478], [37.704266, 55.55478], [37.704266, 55.55469], [37.704176, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.55478], [37.704176, 55.554869], [37.704266, 55.554869], [37.704266, 55.55478], [37.704176, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704176, 55.554869], [37.704176, 55.554959], [37.704266, 55.554959], [37.704266, 55.554869], [37.704176, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.551992], [37.704266, 55.552082], [37.704356, 55.552082], [37.704356, 55.551992], [37.704266, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.552082], [37.704266, 55.552171], [37.704356, 55.552171], [37.704356, 55.552082], [37.704266, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.552171], [37.704266, 55.552261], [37.704356, 55.552261], [37.704356, 55.552171], [37.704266, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.552261], [37.704266, 55.552351], [37.704356, 55.552351], [37.704356, 55.552261], [37.704266, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.552351], [37.704266, 55.552441], [37.704356, 55.552441], [37.704356, 55.552351], [37.704266, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.552441], [37.704266, 55.552531], [37.704356, 55.552531], [37.704356, 55.552441], [37.704266, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.552531], [37.704266, 55.552621], [37.704356, 55.552621], [37.704356, 55.552531], [37.704266, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.552621], [37.704266, 55.552711], [37.704356, 55.552711], [37.704356, 55.552621], [37.704266, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.552711], [37.704266, 55.552801], [37.704356, 55.552801], [37.704356, 55.552711], [37.704266, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.552801], [37.704266, 55.552891], [37.704356, 55.552891], [37.704356, 55.552801], [37.704266, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.552891], [37.704266, 55.552981], [37.704356, 55.552981], [37.704356, 55.552891], [37.704266, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.552981], [37.704266, 55.553071], [37.704356, 55.553071], [37.704356, 55.552981], [37.704266, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.553071], [37.704266, 55.553161], [37.704356, 55.553161], [37.704356, 55.553071], [37.704266, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.553161], [37.704266, 55.553251], [37.704356, 55.553251], [37.704356, 55.553161], [37.704266, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.553251], [37.704266, 55.553341], [37.704356, 55.553341], [37.704356, 55.553251], [37.704266, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.553341], [37.704266, 55.553431], [37.704356, 55.553431], [37.704356, 55.553341], [37.704266, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.553431], [37.704266, 55.55352], [37.704356, 55.55352], [37.704356, 55.553431], [37.704266, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.55352], [37.704266, 55.55361], [37.704356, 55.55361], [37.704356, 55.55352], [37.704266, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.55361], [37.704266, 55.5537], [37.704356, 55.5537], [37.704356, 55.55361], [37.704266, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.5537], [37.704266, 55.55379], [37.704356, 55.55379], [37.704356, 55.5537], [37.704266, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.55379], [37.704266, 55.55388], [37.704356, 55.55388], [37.704356, 55.55379], [37.704266, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.55388], [37.704266, 55.55397], [37.704356, 55.55397], [37.704356, 55.55388], [37.704266, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.55397], [37.704266, 55.55406], [37.704356, 55.55406], [37.704356, 55.55397], [37.704266, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.55406], [37.704266, 55.55415], [37.704356, 55.55415], [37.704356, 55.55406], [37.704266, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.55415], [37.704266, 55.55424], [37.704356, 55.55424], [37.704356, 55.55415], [37.704266, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.55424], [37.704266, 55.55433], [37.704356, 55.55433], [37.704356, 55.55424], [37.704266, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.55433], [37.704266, 55.55442], [37.704356, 55.55442], [37.704356, 55.55433], [37.704266, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.55442], [37.704266, 55.55451], [37.704356, 55.55451], [37.704356, 55.55442], [37.704266, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.55451], [37.704266, 55.5546], [37.704356, 55.5546], [37.704356, 55.55451], [37.704266, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.5546], [37.704266, 55.55469], [37.704356, 55.55469], [37.704356, 55.5546], [37.704266, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.55469], [37.704266, 55.55478], [37.704356, 55.55478], [37.704356, 55.55469], [37.704266, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.55478], [37.704266, 55.554869], [37.704356, 55.554869], [37.704356, 55.55478], [37.704266, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704266, 55.554869], [37.704266, 55.554959], [37.704356, 55.554959], [37.704356, 55.554869], [37.704266, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.551992], [37.704356, 55.552082], [37.704446, 55.552082], [37.704446, 55.551992], [37.704356, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.552082], [37.704356, 55.552171], [37.704446, 55.552171], [37.704446, 55.552082], [37.704356, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.552171], [37.704356, 55.552261], [37.704446, 55.552261], [37.704446, 55.552171], [37.704356, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.552261], [37.704356, 55.552351], [37.704446, 55.552351], [37.704446, 55.552261], [37.704356, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.552351], [37.704356, 55.552441], [37.704446, 55.552441], [37.704446, 55.552351], [37.704356, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.552441], [37.704356, 55.552531], [37.704446, 55.552531], [37.704446, 55.552441], [37.704356, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.552531], [37.704356, 55.552621], [37.704446, 55.552621], [37.704446, 55.552531], [37.704356, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.552621], [37.704356, 55.552711], [37.704446, 55.552711], [37.704446, 55.552621], [37.704356, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.552711], [37.704356, 55.552801], [37.704446, 55.552801], [37.704446, 55.552711], [37.704356, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.552801], [37.704356, 55.552891], [37.704446, 55.552891], [37.704446, 55.552801], [37.704356, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.552891], [37.704356, 55.552981], [37.704446, 55.552981], [37.704446, 55.552891], [37.704356, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.552981], [37.704356, 55.553071], [37.704446, 55.553071], [37.704446, 55.552981], [37.704356, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.553071], [37.704356, 55.553161], [37.704446, 55.553161], [37.704446, 55.553071], [37.704356, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.553161], [37.704356, 55.553251], [37.704446, 55.553251], [37.704446, 55.553161], [37.704356, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.553251], [37.704356, 55.553341], [37.704446, 55.553341], [37.704446, 55.553251], [37.704356, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.553341], [37.704356, 55.553431], [37.704446, 55.553431], [37.704446, 55.553341], [37.704356, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.553431], [37.704356, 55.55352], [37.704446, 55.55352], [37.704446, 55.553431], [37.704356, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.55352], [37.704356, 55.55361], [37.704446, 55.55361], [37.704446, 55.55352], [37.704356, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.55361], [37.704356, 55.5537], [37.704446, 55.5537], [37.704446, 55.55361], [37.704356, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.5537], [37.704356, 55.55379], [37.704446, 55.55379], [37.704446, 55.5537], [37.704356, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.55379], [37.704356, 55.55388], [37.704446, 55.55388], [37.704446, 55.55379], [37.704356, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.55388], [37.704356, 55.55397], [37.704446, 55.55397], [37.704446, 55.55388], [37.704356, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.55397], [37.704356, 55.55406], [37.704446, 55.55406], [37.704446, 55.55397], [37.704356, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.55406], [37.704356, 55.55415], [37.704446, 55.55415], [37.704446, 55.55406], [37.704356, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.55415], [37.704356, 55.55424], [37.704446, 55.55424], [37.704446, 55.55415], [37.704356, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.55424], [37.704356, 55.55433], [37.704446, 55.55433], [37.704446, 55.55424], [37.704356, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.55433], [37.704356, 55.55442], [37.704446, 55.55442], [37.704446, 55.55433], [37.704356, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.55442], [37.704356, 55.55451], [37.704446, 55.55451], [37.704446, 55.55442], [37.704356, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.55451], [37.704356, 55.5546], [37.704446, 55.5546], [37.704446, 55.55451], [37.704356, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.5546], [37.704356, 55.55469], [37.704446, 55.55469], [37.704446, 55.5546], [37.704356, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.55469], [37.704356, 55.55478], [37.704446, 55.55478], [37.704446, 55.55469], [37.704356, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.55478], [37.704356, 55.554869], [37.704446, 55.554869], [37.704446, 55.55478], [37.704356, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704356, 55.554869], [37.704356, 55.554959], [37.704446, 55.554959], [37.704446, 55.554869], [37.704356, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.551992], [37.704446, 55.552082], [37.704536, 55.552082], [37.704536, 55.551992], [37.704446, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.552082], [37.704446, 55.552171], [37.704536, 55.552171], [37.704536, 55.552082], [37.704446, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.552171], [37.704446, 55.552261], [37.704536, 55.552261], [37.704536, 55.552171], [37.704446, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.552261], [37.704446, 55.552351], [37.704536, 55.552351], [37.704536, 55.552261], [37.704446, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.552351], [37.704446, 55.552441], [37.704536, 55.552441], [37.704536, 55.552351], [37.704446, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.552441], [37.704446, 55.552531], [37.704536, 55.552531], [37.704536, 55.552441], [37.704446, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.552531], [37.704446, 55.552621], [37.704536, 55.552621], [37.704536, 55.552531], [37.704446, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.552621], [37.704446, 55.552711], [37.704536, 55.552711], [37.704536, 55.552621], [37.704446, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.552711], [37.704446, 55.552801], [37.704536, 55.552801], [37.704536, 55.552711], [37.704446, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.552801], [37.704446, 55.552891], [37.704536, 55.552891], [37.704536, 55.552801], [37.704446, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.552891], [37.704446, 55.552981], [37.704536, 55.552981], [37.704536, 55.552891], [37.704446, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.552981], [37.704446, 55.553071], [37.704536, 55.553071], [37.704536, 55.552981], [37.704446, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.553071], [37.704446, 55.553161], [37.704536, 55.553161], [37.704536, 55.553071], [37.704446, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.553161], [37.704446, 55.553251], [37.704536, 55.553251], [37.704536, 55.553161], [37.704446, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.553251], [37.704446, 55.553341], [37.704536, 55.553341], [37.704536, 55.553251], [37.704446, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.553341], [37.704446, 55.553431], [37.704536, 55.553431], [37.704536, 55.553341], [37.704446, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.553431], [37.704446, 55.55352], [37.704536, 55.55352], [37.704536, 55.553431], [37.704446, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.55352], [37.704446, 55.55361], [37.704536, 55.55361], [37.704536, 55.55352], [37.704446, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.55361], [37.704446, 55.5537], [37.704536, 55.5537], [37.704536, 55.55361], [37.704446, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.5537], [37.704446, 55.55379], [37.704536, 55.55379], [37.704536, 55.5537], [37.704446, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.55379], [37.704446, 55.55388], [37.704536, 55.55388], [37.704536, 55.55379], [37.704446, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.55388], [37.704446, 55.55397], [37.704536, 55.55397], [37.704536, 55.55388], [37.704446, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.55397], [37.704446, 55.55406], [37.704536, 55.55406], [37.704536, 55.55397], [37.704446, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.55406], [37.704446, 55.55415], [37.704536, 55.55415], [37.704536, 55.55406], [37.704446, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.55415], [37.704446, 55.55424], [37.704536, 55.55424], [37.704536, 55.55415], [37.704446, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.55424], [37.704446, 55.55433], [37.704536, 55.55433], [37.704536, 55.55424], [37.704446, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.55433], [37.704446, 55.55442], [37.704536, 55.55442], [37.704536, 55.55433], [37.704446, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.55442], [37.704446, 55.55451], [37.704536, 55.55451], [37.704536, 55.55442], [37.704446, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.55451], [37.704446, 55.5546], [37.704536, 55.5546], [37.704536, 55.55451], [37.704446, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.5546], [37.704446, 55.55469], [37.704536, 55.55469], [37.704536, 55.5546], [37.704446, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.55469], [37.704446, 55.55478], [37.704536, 55.55478], [37.704536, 55.55469], [37.704446, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.55478], [37.704446, 55.554869], [37.704536, 55.554869], [37.704536, 55.55478], [37.704446, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.554869], [37.704446, 55.554959], [37.704536, 55.554959], [37.704536, 55.554869], [37.704446, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704446, 55.554959], [37.704446, 55.555049], [37.704536, 55.555049], [37.704536, 55.554959], [37.704446, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.551992], [37.704536, 55.552082], [37.704625, 55.552082], [37.704625, 55.551992], [37.704536, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.552082], [37.704536, 55.552171], [37.704625, 55.552171], [37.704625, 55.552082], [37.704536, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.552171], [37.704536, 55.552261], [37.704625, 55.552261], [37.704625, 55.552171], [37.704536, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.552261], [37.704536, 55.552351], [37.704625, 55.552351], [37.704625, 55.552261], [37.704536, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.552351], [37.704536, 55.552441], [37.704625, 55.552441], [37.704625, 55.552351], [37.704536, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.552441], [37.704536, 55.552531], [37.704625, 55.552531], [37.704625, 55.552441], [37.704536, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.552531], [37.704536, 55.552621], [37.704625, 55.552621], [37.704625, 55.552531], [37.704536, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.552621], [37.704536, 55.552711], [37.704625, 55.552711], [37.704625, 55.552621], [37.704536, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.552711], [37.704536, 55.552801], [37.704625, 55.552801], [37.704625, 55.552711], [37.704536, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.552801], [37.704536, 55.552891], [37.704625, 55.552891], [37.704625, 55.552801], [37.704536, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.552891], [37.704536, 55.552981], [37.704625, 55.552981], [37.704625, 55.552891], [37.704536, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.552981], [37.704536, 55.553071], [37.704625, 55.553071], [37.704625, 55.552981], [37.704536, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.553071], [37.704536, 55.553161], [37.704625, 55.553161], [37.704625, 55.553071], [37.704536, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.553161], [37.704536, 55.553251], [37.704625, 55.553251], [37.704625, 55.553161], [37.704536, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.553251], [37.704536, 55.553341], [37.704625, 55.553341], [37.704625, 55.553251], [37.704536, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.553341], [37.704536, 55.553431], [37.704625, 55.553431], [37.704625, 55.553341], [37.704536, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.553431], [37.704536, 55.55352], [37.704625, 55.55352], [37.704625, 55.553431], [37.704536, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.55352], [37.704536, 55.55361], [37.704625, 55.55361], [37.704625, 55.55352], [37.704536, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.55361], [37.704536, 55.5537], [37.704625, 55.5537], [37.704625, 55.55361], [37.704536, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.5537], [37.704536, 55.55379], [37.704625, 55.55379], [37.704625, 55.5537], [37.704536, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.55379], [37.704536, 55.55388], [37.704625, 55.55388], [37.704625, 55.55379], [37.704536, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.55388], [37.704536, 55.55397], [37.704625, 55.55397], [37.704625, 55.55388], [37.704536, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.55397], [37.704536, 55.55406], [37.704625, 55.55406], [37.704625, 55.55397], [37.704536, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.55406], [37.704536, 55.55415], [37.704625, 55.55415], [37.704625, 55.55406], [37.704536, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.55415], [37.704536, 55.55424], [37.704625, 55.55424], [37.704625, 55.55415], [37.704536, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.55424], [37.704536, 55.55433], [37.704625, 55.55433], [37.704625, 55.55424], [37.704536, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.55433], [37.704536, 55.55442], [37.704625, 55.55442], [37.704625, 55.55433], [37.704536, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.55442], [37.704536, 55.55451], [37.704625, 55.55451], [37.704625, 55.55442], [37.704536, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.55451], [37.704536, 55.5546], [37.704625, 55.5546], [37.704625, 55.55451], [37.704536, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.5546], [37.704536, 55.55469], [37.704625, 55.55469], [37.704625, 55.5546], [37.704536, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.55469], [37.704536, 55.55478], [37.704625, 55.55478], [37.704625, 55.55469], [37.704536, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.55478], [37.704536, 55.554869], [37.704625, 55.554869], [37.704625, 55.55478], [37.704536, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.554869], [37.704536, 55.554959], [37.704625, 55.554959], [37.704625, 55.554869], [37.704536, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704536, 55.554959], [37.704536, 55.555049], [37.704625, 55.555049], [37.704625, 55.554959], [37.704536, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.551902], [37.704625, 55.551992], [37.704715, 55.551992], [37.704715, 55.551902], [37.704625, 55.551902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.551992], [37.704625, 55.552082], [37.704715, 55.552082], [37.704715, 55.551992], [37.704625, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.552082], [37.704625, 55.552171], [37.704715, 55.552171], [37.704715, 55.552082], [37.704625, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.552171], [37.704625, 55.552261], [37.704715, 55.552261], [37.704715, 55.552171], [37.704625, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.552261], [37.704625, 55.552351], [37.704715, 55.552351], [37.704715, 55.552261], [37.704625, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.552351], [37.704625, 55.552441], [37.704715, 55.552441], [37.704715, 55.552351], [37.704625, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.552441], [37.704625, 55.552531], [37.704715, 55.552531], [37.704715, 55.552441], [37.704625, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.552531], [37.704625, 55.552621], [37.704715, 55.552621], [37.704715, 55.552531], [37.704625, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.552621], [37.704625, 55.552711], [37.704715, 55.552711], [37.704715, 55.552621], [37.704625, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.552711], [37.704625, 55.552801], [37.704715, 55.552801], [37.704715, 55.552711], [37.704625, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.552801], [37.704625, 55.552891], [37.704715, 55.552891], [37.704715, 55.552801], [37.704625, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.552891], [37.704625, 55.552981], [37.704715, 55.552981], [37.704715, 55.552891], [37.704625, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.552981], [37.704625, 55.553071], [37.704715, 55.553071], [37.704715, 55.552981], [37.704625, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.553071], [37.704625, 55.553161], [37.704715, 55.553161], [37.704715, 55.553071], [37.704625, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.553161], [37.704625, 55.553251], [37.704715, 55.553251], [37.704715, 55.553161], [37.704625, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.553251], [37.704625, 55.553341], [37.704715, 55.553341], [37.704715, 55.553251], [37.704625, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.553341], [37.704625, 55.553431], [37.704715, 55.553431], [37.704715, 55.553341], [37.704625, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.553431], [37.704625, 55.55352], [37.704715, 55.55352], [37.704715, 55.553431], [37.704625, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.55352], [37.704625, 55.55361], [37.704715, 55.55361], [37.704715, 55.55352], [37.704625, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.55361], [37.704625, 55.5537], [37.704715, 55.5537], [37.704715, 55.55361], [37.704625, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.5537], [37.704625, 55.55379], [37.704715, 55.55379], [37.704715, 55.5537], [37.704625, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.55379], [37.704625, 55.55388], [37.704715, 55.55388], [37.704715, 55.55379], [37.704625, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.55388], [37.704625, 55.55397], [37.704715, 55.55397], [37.704715, 55.55388], [37.704625, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.55397], [37.704625, 55.55406], [37.704715, 55.55406], [37.704715, 55.55397], [37.704625, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.55406], [37.704625, 55.55415], [37.704715, 55.55415], [37.704715, 55.55406], [37.704625, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.55415], [37.704625, 55.55424], [37.704715, 55.55424], [37.704715, 55.55415], [37.704625, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.55424], [37.704625, 55.55433], [37.704715, 55.55433], [37.704715, 55.55424], [37.704625, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.55433], [37.704625, 55.55442], [37.704715, 55.55442], [37.704715, 55.55433], [37.704625, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.55442], [37.704625, 55.55451], [37.704715, 55.55451], [37.704715, 55.55442], [37.704625, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.55451], [37.704625, 55.5546], [37.704715, 55.5546], [37.704715, 55.55451], [37.704625, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.5546], [37.704625, 55.55469], [37.704715, 55.55469], [37.704715, 55.5546], [37.704625, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.55469], [37.704625, 55.55478], [37.704715, 55.55478], [37.704715, 55.55469], [37.704625, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.55478], [37.704625, 55.554869], [37.704715, 55.554869], [37.704715, 55.55478], [37.704625, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.554869], [37.704625, 55.554959], [37.704715, 55.554959], [37.704715, 55.554869], [37.704625, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704625, 55.554959], [37.704625, 55.555049], [37.704715, 55.555049], [37.704715, 55.554959], [37.704625, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.551902], [37.704715, 55.551992], [37.704805, 55.551992], [37.704805, 55.551902], [37.704715, 55.551902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.551992], [37.704715, 55.552082], [37.704805, 55.552082], [37.704805, 55.551992], [37.704715, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.552082], [37.704715, 55.552171], [37.704805, 55.552171], [37.704805, 55.552082], [37.704715, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.552171], [37.704715, 55.552261], [37.704805, 55.552261], [37.704805, 55.552171], [37.704715, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.552261], [37.704715, 55.552351], [37.704805, 55.552351], [37.704805, 55.552261], [37.704715, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.552351], [37.704715, 55.552441], [37.704805, 55.552441], [37.704805, 55.552351], [37.704715, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.552441], [37.704715, 55.552531], [37.704805, 55.552531], [37.704805, 55.552441], [37.704715, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.552531], [37.704715, 55.552621], [37.704805, 55.552621], [37.704805, 55.552531], [37.704715, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.552621], [37.704715, 55.552711], [37.704805, 55.552711], [37.704805, 55.552621], [37.704715, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.552711], [37.704715, 55.552801], [37.704805, 55.552801], [37.704805, 55.552711], [37.704715, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.552801], [37.704715, 55.552891], [37.704805, 55.552891], [37.704805, 55.552801], [37.704715, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.552891], [37.704715, 55.552981], [37.704805, 55.552981], [37.704805, 55.552891], [37.704715, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.552981], [37.704715, 55.553071], [37.704805, 55.553071], [37.704805, 55.552981], [37.704715, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.553071], [37.704715, 55.553161], [37.704805, 55.553161], [37.704805, 55.553071], [37.704715, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.553161], [37.704715, 55.553251], [37.704805, 55.553251], [37.704805, 55.553161], [37.704715, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.553251], [37.704715, 55.553341], [37.704805, 55.553341], [37.704805, 55.553251], [37.704715, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.553341], [37.704715, 55.553431], [37.704805, 55.553431], [37.704805, 55.553341], [37.704715, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.553431], [37.704715, 55.55352], [37.704805, 55.55352], [37.704805, 55.553431], [37.704715, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.55352], [37.704715, 55.55361], [37.704805, 55.55361], [37.704805, 55.55352], [37.704715, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.55361], [37.704715, 55.5537], [37.704805, 55.5537], [37.704805, 55.55361], [37.704715, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.5537], [37.704715, 55.55379], [37.704805, 55.55379], [37.704805, 55.5537], [37.704715, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.55379], [37.704715, 55.55388], [37.704805, 55.55388], [37.704805, 55.55379], [37.704715, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.55388], [37.704715, 55.55397], [37.704805, 55.55397], [37.704805, 55.55388], [37.704715, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.55397], [37.704715, 55.55406], [37.704805, 55.55406], [37.704805, 55.55397], [37.704715, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.55406], [37.704715, 55.55415], [37.704805, 55.55415], [37.704805, 55.55406], [37.704715, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.55415], [37.704715, 55.55424], [37.704805, 55.55424], [37.704805, 55.55415], [37.704715, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.55424], [37.704715, 55.55433], [37.704805, 55.55433], [37.704805, 55.55424], [37.704715, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.55433], [37.704715, 55.55442], [37.704805, 55.55442], [37.704805, 55.55433], [37.704715, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.55442], [37.704715, 55.55451], [37.704805, 55.55451], [37.704805, 55.55442], [37.704715, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.55451], [37.704715, 55.5546], [37.704805, 55.5546], [37.704805, 55.55451], [37.704715, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.5546], [37.704715, 55.55469], [37.704805, 55.55469], [37.704805, 55.5546], [37.704715, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.55469], [37.704715, 55.55478], [37.704805, 55.55478], [37.704805, 55.55469], [37.704715, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.55478], [37.704715, 55.554869], [37.704805, 55.554869], [37.704805, 55.55478], [37.704715, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.554869], [37.704715, 55.554959], [37.704805, 55.554959], [37.704805, 55.554869], [37.704715, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704715, 55.554959], [37.704715, 55.555049], [37.704805, 55.555049], [37.704805, 55.554959], [37.704715, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.551902], [37.704805, 55.551992], [37.704895, 55.551992], [37.704895, 55.551902], [37.704805, 55.551902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.551992], [37.704805, 55.552082], [37.704895, 55.552082], [37.704895, 55.551992], [37.704805, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.552082], [37.704805, 55.552171], [37.704895, 55.552171], [37.704895, 55.552082], [37.704805, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.552171], [37.704805, 55.552261], [37.704895, 55.552261], [37.704895, 55.552171], [37.704805, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.552261], [37.704805, 55.552351], [37.704895, 55.552351], [37.704895, 55.552261], [37.704805, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.552351], [37.704805, 55.552441], [37.704895, 55.552441], [37.704895, 55.552351], [37.704805, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.552441], [37.704805, 55.552531], [37.704895, 55.552531], [37.704895, 55.552441], [37.704805, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.552531], [37.704805, 55.552621], [37.704895, 55.552621], [37.704895, 55.552531], [37.704805, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.552621], [37.704805, 55.552711], [37.704895, 55.552711], [37.704895, 55.552621], [37.704805, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.552711], [37.704805, 55.552801], [37.704895, 55.552801], [37.704895, 55.552711], [37.704805, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.552801], [37.704805, 55.552891], [37.704895, 55.552891], [37.704895, 55.552801], [37.704805, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.552891], [37.704805, 55.552981], [37.704895, 55.552981], [37.704895, 55.552891], [37.704805, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.552981], [37.704805, 55.553071], [37.704895, 55.553071], [37.704895, 55.552981], [37.704805, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.553071], [37.704805, 55.553161], [37.704895, 55.553161], [37.704895, 55.553071], [37.704805, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.553161], [37.704805, 55.553251], [37.704895, 55.553251], [37.704895, 55.553161], [37.704805, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.553251], [37.704805, 55.553341], [37.704895, 55.553341], [37.704895, 55.553251], [37.704805, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.553341], [37.704805, 55.553431], [37.704895, 55.553431], [37.704895, 55.553341], [37.704805, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.553431], [37.704805, 55.55352], [37.704895, 55.55352], [37.704895, 55.553431], [37.704805, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.55352], [37.704805, 55.55361], [37.704895, 55.55361], [37.704895, 55.55352], [37.704805, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.55361], [37.704805, 55.5537], [37.704895, 55.5537], [37.704895, 55.55361], [37.704805, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.5537], [37.704805, 55.55379], [37.704895, 55.55379], [37.704895, 55.5537], [37.704805, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.55379], [37.704805, 55.55388], [37.704895, 55.55388], [37.704895, 55.55379], [37.704805, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.55388], [37.704805, 55.55397], [37.704895, 55.55397], [37.704895, 55.55388], [37.704805, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.55397], [37.704805, 55.55406], [37.704895, 55.55406], [37.704895, 55.55397], [37.704805, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.55406], [37.704805, 55.55415], [37.704895, 55.55415], [37.704895, 55.55406], [37.704805, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.55415], [37.704805, 55.55424], [37.704895, 55.55424], [37.704895, 55.55415], [37.704805, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.55424], [37.704805, 55.55433], [37.704895, 55.55433], [37.704895, 55.55424], [37.704805, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.55433], [37.704805, 55.55442], [37.704895, 55.55442], [37.704895, 55.55433], [37.704805, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.55442], [37.704805, 55.55451], [37.704895, 55.55451], [37.704895, 55.55442], [37.704805, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.55451], [37.704805, 55.5546], [37.704895, 55.5546], [37.704895, 55.55451], [37.704805, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.5546], [37.704805, 55.55469], [37.704895, 55.55469], [37.704895, 55.5546], [37.704805, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.55469], [37.704805, 55.55478], [37.704895, 55.55478], [37.704895, 55.55469], [37.704805, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.55478], [37.704805, 55.554869], [37.704895, 55.554869], [37.704895, 55.55478], [37.704805, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.554869], [37.704805, 55.554959], [37.704895, 55.554959], [37.704895, 55.554869], [37.704805, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.554959], [37.704805, 55.555049], [37.704895, 55.555049], [37.704895, 55.554959], [37.704805, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704805, 55.555049], [37.704805, 55.555139], [37.704895, 55.555139], [37.704895, 55.555049], [37.704805, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.551902], [37.704895, 55.551992], [37.704985, 55.551992], [37.704985, 55.551902], [37.704895, 55.551902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.551992], [37.704895, 55.552082], [37.704985, 55.552082], [37.704985, 55.551992], [37.704895, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.552082], [37.704895, 55.552171], [37.704985, 55.552171], [37.704985, 55.552082], [37.704895, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.552171], [37.704895, 55.552261], [37.704985, 55.552261], [37.704985, 55.552171], [37.704895, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.552261], [37.704895, 55.552351], [37.704985, 55.552351], [37.704985, 55.552261], [37.704895, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.552351], [37.704895, 55.552441], [37.704985, 55.552441], [37.704985, 55.552351], [37.704895, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.552441], [37.704895, 55.552531], [37.704985, 55.552531], [37.704985, 55.552441], [37.704895, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.552531], [37.704895, 55.552621], [37.704985, 55.552621], [37.704985, 55.552531], [37.704895, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.552621], [37.704895, 55.552711], [37.704985, 55.552711], [37.704985, 55.552621], [37.704895, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.552711], [37.704895, 55.552801], [37.704985, 55.552801], [37.704985, 55.552711], [37.704895, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.552801], [37.704895, 55.552891], [37.704985, 55.552891], [37.704985, 55.552801], [37.704895, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.552891], [37.704895, 55.552981], [37.704985, 55.552981], [37.704985, 55.552891], [37.704895, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.552981], [37.704895, 55.553071], [37.704985, 55.553071], [37.704985, 55.552981], [37.704895, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.553071], [37.704895, 55.553161], [37.704985, 55.553161], [37.704985, 55.553071], [37.704895, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.553161], [37.704895, 55.553251], [37.704985, 55.553251], [37.704985, 55.553161], [37.704895, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.553251], [37.704895, 55.553341], [37.704985, 55.553341], [37.704985, 55.553251], [37.704895, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.553341], [37.704895, 55.553431], [37.704985, 55.553431], [37.704985, 55.553341], [37.704895, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.553431], [37.704895, 55.55352], [37.704985, 55.55352], [37.704985, 55.553431], [37.704895, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.55352], [37.704895, 55.55361], [37.704985, 55.55361], [37.704985, 55.55352], [37.704895, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.55361], [37.704895, 55.5537], [37.704985, 55.5537], [37.704985, 55.55361], [37.704895, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.5537], [37.704895, 55.55379], [37.704985, 55.55379], [37.704985, 55.5537], [37.704895, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.55379], [37.704895, 55.55388], [37.704985, 55.55388], [37.704985, 55.55379], [37.704895, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.55388], [37.704895, 55.55397], [37.704985, 55.55397], [37.704985, 55.55388], [37.704895, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.55397], [37.704895, 55.55406], [37.704985, 55.55406], [37.704985, 55.55397], [37.704895, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.55406], [37.704895, 55.55415], [37.704985, 55.55415], [37.704985, 55.55406], [37.704895, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.55415], [37.704895, 55.55424], [37.704985, 55.55424], [37.704985, 55.55415], [37.704895, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.55424], [37.704895, 55.55433], [37.704985, 55.55433], [37.704985, 55.55424], [37.704895, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.55433], [37.704895, 55.55442], [37.704985, 55.55442], [37.704985, 55.55433], [37.704895, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.55442], [37.704895, 55.55451], [37.704985, 55.55451], [37.704985, 55.55442], [37.704895, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.55451], [37.704895, 55.5546], [37.704985, 55.5546], [37.704985, 55.55451], [37.704895, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.5546], [37.704895, 55.55469], [37.704985, 55.55469], [37.704985, 55.5546], [37.704895, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.55469], [37.704895, 55.55478], [37.704985, 55.55478], [37.704985, 55.55469], [37.704895, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.55478], [37.704895, 55.554869], [37.704985, 55.554869], [37.704985, 55.55478], [37.704895, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.554869], [37.704895, 55.554959], [37.704985, 55.554959], [37.704985, 55.554869], [37.704895, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.554959], [37.704895, 55.555049], [37.704985, 55.555049], [37.704985, 55.554959], [37.704895, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704895, 55.555049], [37.704895, 55.555139], [37.704985, 55.555139], [37.704985, 55.555049], [37.704895, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.551812], [37.704985, 55.551902], [37.705075, 55.551902], [37.705075, 55.551812], [37.704985, 55.551812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.551902], [37.704985, 55.551992], [37.705075, 55.551992], [37.705075, 55.551902], [37.704985, 55.551902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.551992], [37.704985, 55.552082], [37.705075, 55.552082], [37.705075, 55.551992], [37.704985, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.552082], [37.704985, 55.552171], [37.705075, 55.552171], [37.705075, 55.552082], [37.704985, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.552171], [37.704985, 55.552261], [37.705075, 55.552261], [37.705075, 55.552171], [37.704985, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.552261], [37.704985, 55.552351], [37.705075, 55.552351], [37.705075, 55.552261], [37.704985, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.552351], [37.704985, 55.552441], [37.705075, 55.552441], [37.705075, 55.552351], [37.704985, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.552441], [37.704985, 55.552531], [37.705075, 55.552531], [37.705075, 55.552441], [37.704985, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.552531], [37.704985, 55.552621], [37.705075, 55.552621], [37.705075, 55.552531], [37.704985, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.552621], [37.704985, 55.552711], [37.705075, 55.552711], [37.705075, 55.552621], [37.704985, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.552711], [37.704985, 55.552801], [37.705075, 55.552801], [37.705075, 55.552711], [37.704985, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.552801], [37.704985, 55.552891], [37.705075, 55.552891], [37.705075, 55.552801], [37.704985, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.552891], [37.704985, 55.552981], [37.705075, 55.552981], [37.705075, 55.552891], [37.704985, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.552981], [37.704985, 55.553071], [37.705075, 55.553071], [37.705075, 55.552981], [37.704985, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.553071], [37.704985, 55.553161], [37.705075, 55.553161], [37.705075, 55.553071], [37.704985, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.553161], [37.704985, 55.553251], [37.705075, 55.553251], [37.705075, 55.553161], [37.704985, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.553251], [37.704985, 55.553341], [37.705075, 55.553341], [37.705075, 55.553251], [37.704985, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.553341], [37.704985, 55.553431], [37.705075, 55.553431], [37.705075, 55.553341], [37.704985, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.553431], [37.704985, 55.55352], [37.705075, 55.55352], [37.705075, 55.553431], [37.704985, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.55352], [37.704985, 55.55361], [37.705075, 55.55361], [37.705075, 55.55352], [37.704985, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.55361], [37.704985, 55.5537], [37.705075, 55.5537], [37.705075, 55.55361], [37.704985, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.5537], [37.704985, 55.55379], [37.705075, 55.55379], [37.705075, 55.5537], [37.704985, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.55379], [37.704985, 55.55388], [37.705075, 55.55388], [37.705075, 55.55379], [37.704985, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.55388], [37.704985, 55.55397], [37.705075, 55.55397], [37.705075, 55.55388], [37.704985, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.55397], [37.704985, 55.55406], [37.705075, 55.55406], [37.705075, 55.55397], [37.704985, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.55406], [37.704985, 55.55415], [37.705075, 55.55415], [37.705075, 55.55406], [37.704985, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.55415], [37.704985, 55.55424], [37.705075, 55.55424], [37.705075, 55.55415], [37.704985, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.55424], [37.704985, 55.55433], [37.705075, 55.55433], [37.705075, 55.55424], [37.704985, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.55433], [37.704985, 55.55442], [37.705075, 55.55442], [37.705075, 55.55433], [37.704985, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.55442], [37.704985, 55.55451], [37.705075, 55.55451], [37.705075, 55.55442], [37.704985, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.55451], [37.704985, 55.5546], [37.705075, 55.5546], [37.705075, 55.55451], [37.704985, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.5546], [37.704985, 55.55469], [37.705075, 55.55469], [37.705075, 55.5546], [37.704985, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.55469], [37.704985, 55.55478], [37.705075, 55.55478], [37.705075, 55.55469], [37.704985, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.55478], [37.704985, 55.554869], [37.705075, 55.554869], [37.705075, 55.55478], [37.704985, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.554869], [37.704985, 55.554959], [37.705075, 55.554959], [37.705075, 55.554869], [37.704985, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.554959], [37.704985, 55.555049], [37.705075, 55.555049], [37.705075, 55.554959], [37.704985, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.704985, 55.555049], [37.704985, 55.555139], [37.705075, 55.555139], [37.705075, 55.555049], [37.704985, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.551812], [37.705075, 55.551902], [37.705165, 55.551902], [37.705165, 55.551812], [37.705075, 55.551812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.551902], [37.705075, 55.551992], [37.705165, 55.551992], [37.705165, 55.551902], [37.705075, 55.551902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.551992], [37.705075, 55.552082], [37.705165, 55.552082], [37.705165, 55.551992], [37.705075, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.552082], [37.705075, 55.552171], [37.705165, 55.552171], [37.705165, 55.552082], [37.705075, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.552171], [37.705075, 55.552261], [37.705165, 55.552261], [37.705165, 55.552171], [37.705075, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.552261], [37.705075, 55.552351], [37.705165, 55.552351], [37.705165, 55.552261], [37.705075, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.552351], [37.705075, 55.552441], [37.705165, 55.552441], [37.705165, 55.552351], [37.705075, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.552441], [37.705075, 55.552531], [37.705165, 55.552531], [37.705165, 55.552441], [37.705075, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.552531], [37.705075, 55.552621], [37.705165, 55.552621], [37.705165, 55.552531], [37.705075, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.552621], [37.705075, 55.552711], [37.705165, 55.552711], [37.705165, 55.552621], [37.705075, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.552711], [37.705075, 55.552801], [37.705165, 55.552801], [37.705165, 55.552711], [37.705075, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.552801], [37.705075, 55.552891], [37.705165, 55.552891], [37.705165, 55.552801], [37.705075, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.552891], [37.705075, 55.552981], [37.705165, 55.552981], [37.705165, 55.552891], [37.705075, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.552981], [37.705075, 55.553071], [37.705165, 55.553071], [37.705165, 55.552981], [37.705075, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.553071], [37.705075, 55.553161], [37.705165, 55.553161], [37.705165, 55.553071], [37.705075, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.553161], [37.705075, 55.553251], [37.705165, 55.553251], [37.705165, 55.553161], [37.705075, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.553251], [37.705075, 55.553341], [37.705165, 55.553341], [37.705165, 55.553251], [37.705075, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.553341], [37.705075, 55.553431], [37.705165, 55.553431], [37.705165, 55.553341], [37.705075, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.553431], [37.705075, 55.55352], [37.705165, 55.55352], [37.705165, 55.553431], [37.705075, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.55352], [37.705075, 55.55361], [37.705165, 55.55361], [37.705165, 55.55352], [37.705075, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.55361], [37.705075, 55.5537], [37.705165, 55.5537], [37.705165, 55.55361], [37.705075, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.5537], [37.705075, 55.55379], [37.705165, 55.55379], [37.705165, 55.5537], [37.705075, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.55379], [37.705075, 55.55388], [37.705165, 55.55388], [37.705165, 55.55379], [37.705075, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.55388], [37.705075, 55.55397], [37.705165, 55.55397], [37.705165, 55.55388], [37.705075, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.55397], [37.705075, 55.55406], [37.705165, 55.55406], [37.705165, 55.55397], [37.705075, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.55406], [37.705075, 55.55415], [37.705165, 55.55415], [37.705165, 55.55406], [37.705075, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.55415], [37.705075, 55.55424], [37.705165, 55.55424], [37.705165, 55.55415], [37.705075, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.55424], [37.705075, 55.55433], [37.705165, 55.55433], [37.705165, 55.55424], [37.705075, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.55433], [37.705075, 55.55442], [37.705165, 55.55442], [37.705165, 55.55433], [37.705075, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.55442], [37.705075, 55.55451], [37.705165, 55.55451], [37.705165, 55.55442], [37.705075, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.55451], [37.705075, 55.5546], [37.705165, 55.5546], [37.705165, 55.55451], [37.705075, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.5546], [37.705075, 55.55469], [37.705165, 55.55469], [37.705165, 55.5546], [37.705075, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.55469], [37.705075, 55.55478], [37.705165, 55.55478], [37.705165, 55.55469], [37.705075, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.55478], [37.705075, 55.554869], [37.705165, 55.554869], [37.705165, 55.55478], [37.705075, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.554869], [37.705075, 55.554959], [37.705165, 55.554959], [37.705165, 55.554869], [37.705075, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.554959], [37.705075, 55.555049], [37.705165, 55.555049], [37.705165, 55.554959], [37.705075, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.555049], [37.705075, 55.555139], [37.705165, 55.555139], [37.705165, 55.555049], [37.705075, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705075, 55.555139], [37.705075, 55.555229], [37.705165, 55.555229], [37.705165, 55.555139], [37.705075, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.551812], [37.705165, 55.551902], [37.705255, 55.551902], [37.705255, 55.551812], [37.705165, 55.551812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.551902], [37.705165, 55.551992], [37.705255, 55.551992], [37.705255, 55.551902], [37.705165, 55.551902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.551992], [37.705165, 55.552082], [37.705255, 55.552082], [37.705255, 55.551992], [37.705165, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.552082], [37.705165, 55.552171], [37.705255, 55.552171], [37.705255, 55.552082], [37.705165, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.552171], [37.705165, 55.552261], [37.705255, 55.552261], [37.705255, 55.552171], [37.705165, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.552261], [37.705165, 55.552351], [37.705255, 55.552351], [37.705255, 55.552261], [37.705165, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.552351], [37.705165, 55.552441], [37.705255, 55.552441], [37.705255, 55.552351], [37.705165, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.552441], [37.705165, 55.552531], [37.705255, 55.552531], [37.705255, 55.552441], [37.705165, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.552531], [37.705165, 55.552621], [37.705255, 55.552621], [37.705255, 55.552531], [37.705165, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.552621], [37.705165, 55.552711], [37.705255, 55.552711], [37.705255, 55.552621], [37.705165, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.552711], [37.705165, 55.552801], [37.705255, 55.552801], [37.705255, 55.552711], [37.705165, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.552801], [37.705165, 55.552891], [37.705255, 55.552891], [37.705255, 55.552801], [37.705165, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.552891], [37.705165, 55.552981], [37.705255, 55.552981], [37.705255, 55.552891], [37.705165, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.552981], [37.705165, 55.553071], [37.705255, 55.553071], [37.705255, 55.552981], [37.705165, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.553071], [37.705165, 55.553161], [37.705255, 55.553161], [37.705255, 55.553071], [37.705165, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.553161], [37.705165, 55.553251], [37.705255, 55.553251], [37.705255, 55.553161], [37.705165, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.553251], [37.705165, 55.553341], [37.705255, 55.553341], [37.705255, 55.553251], [37.705165, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.553341], [37.705165, 55.553431], [37.705255, 55.553431], [37.705255, 55.553341], [37.705165, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.553431], [37.705165, 55.55352], [37.705255, 55.55352], [37.705255, 55.553431], [37.705165, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.55352], [37.705165, 55.55361], [37.705255, 55.55361], [37.705255, 55.55352], [37.705165, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.55361], [37.705165, 55.5537], [37.705255, 55.5537], [37.705255, 55.55361], [37.705165, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.5537], [37.705165, 55.55379], [37.705255, 55.55379], [37.705255, 55.5537], [37.705165, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.55379], [37.705165, 55.55388], [37.705255, 55.55388], [37.705255, 55.55379], [37.705165, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.55388], [37.705165, 55.55397], [37.705255, 55.55397], [37.705255, 55.55388], [37.705165, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.55397], [37.705165, 55.55406], [37.705255, 55.55406], [37.705255, 55.55397], [37.705165, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.55406], [37.705165, 55.55415], [37.705255, 55.55415], [37.705255, 55.55406], [37.705165, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.55415], [37.705165, 55.55424], [37.705255, 55.55424], [37.705255, 55.55415], [37.705165, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.55424], [37.705165, 55.55433], [37.705255, 55.55433], [37.705255, 55.55424], [37.705165, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.55433], [37.705165, 55.55442], [37.705255, 55.55442], [37.705255, 55.55433], [37.705165, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.55442], [37.705165, 55.55451], [37.705255, 55.55451], [37.705255, 55.55442], [37.705165, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.55451], [37.705165, 55.5546], [37.705255, 55.5546], [37.705255, 55.55451], [37.705165, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.5546], [37.705165, 55.55469], [37.705255, 55.55469], [37.705255, 55.5546], [37.705165, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.55469], [37.705165, 55.55478], [37.705255, 55.55478], [37.705255, 55.55469], [37.705165, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.55478], [37.705165, 55.554869], [37.705255, 55.554869], [37.705255, 55.55478], [37.705165, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.554869], [37.705165, 55.554959], [37.705255, 55.554959], [37.705255, 55.554869], [37.705165, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.554959], [37.705165, 55.555049], [37.705255, 55.555049], [37.705255, 55.554959], [37.705165, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.555049], [37.705165, 55.555139], [37.705255, 55.555139], [37.705255, 55.555049], [37.705165, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705165, 55.555139], [37.705165, 55.555229], [37.705255, 55.555229], [37.705255, 55.555139], [37.705165, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.551812], [37.705255, 55.551902], [37.705345, 55.551902], [37.705345, 55.551812], [37.705255, 55.551812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.551902], [37.705255, 55.551992], [37.705345, 55.551992], [37.705345, 55.551902], [37.705255, 55.551902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.551992], [37.705255, 55.552082], [37.705345, 55.552082], [37.705345, 55.551992], [37.705255, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.552082], [37.705255, 55.552171], [37.705345, 55.552171], [37.705345, 55.552082], [37.705255, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.552171], [37.705255, 55.552261], [37.705345, 55.552261], [37.705345, 55.552171], [37.705255, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.552261], [37.705255, 55.552351], [37.705345, 55.552351], [37.705345, 55.552261], [37.705255, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.552351], [37.705255, 55.552441], [37.705345, 55.552441], [37.705345, 55.552351], [37.705255, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.552441], [37.705255, 55.552531], [37.705345, 55.552531], [37.705345, 55.552441], [37.705255, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.552531], [37.705255, 55.552621], [37.705345, 55.552621], [37.705345, 55.552531], [37.705255, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.552621], [37.705255, 55.552711], [37.705345, 55.552711], [37.705345, 55.552621], [37.705255, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.552711], [37.705255, 55.552801], [37.705345, 55.552801], [37.705345, 55.552711], [37.705255, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.552801], [37.705255, 55.552891], [37.705345, 55.552891], [37.705345, 55.552801], [37.705255, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.552891], [37.705255, 55.552981], [37.705345, 55.552981], [37.705345, 55.552891], [37.705255, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.552981], [37.705255, 55.553071], [37.705345, 55.553071], [37.705345, 55.552981], [37.705255, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.553071], [37.705255, 55.553161], [37.705345, 55.553161], [37.705345, 55.553071], [37.705255, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.553161], [37.705255, 55.553251], [37.705345, 55.553251], [37.705345, 55.553161], [37.705255, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.553251], [37.705255, 55.553341], [37.705345, 55.553341], [37.705345, 55.553251], [37.705255, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.553341], [37.705255, 55.553431], [37.705345, 55.553431], [37.705345, 55.553341], [37.705255, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.553431], [37.705255, 55.55352], [37.705345, 55.55352], [37.705345, 55.553431], [37.705255, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.55352], [37.705255, 55.55361], [37.705345, 55.55361], [37.705345, 55.55352], [37.705255, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.55361], [37.705255, 55.5537], [37.705345, 55.5537], [37.705345, 55.55361], [37.705255, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.5537], [37.705255, 55.55379], [37.705345, 55.55379], [37.705345, 55.5537], [37.705255, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.55379], [37.705255, 55.55388], [37.705345, 55.55388], [37.705345, 55.55379], [37.705255, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.55388], [37.705255, 55.55397], [37.705345, 55.55397], [37.705345, 55.55388], [37.705255, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.55397], [37.705255, 55.55406], [37.705345, 55.55406], [37.705345, 55.55397], [37.705255, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.55406], [37.705255, 55.55415], [37.705345, 55.55415], [37.705345, 55.55406], [37.705255, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.55415], [37.705255, 55.55424], [37.705345, 55.55424], [37.705345, 55.55415], [37.705255, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.55424], [37.705255, 55.55433], [37.705345, 55.55433], [37.705345, 55.55424], [37.705255, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.55433], [37.705255, 55.55442], [37.705345, 55.55442], [37.705345, 55.55433], [37.705255, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.55442], [37.705255, 55.55451], [37.705345, 55.55451], [37.705345, 55.55442], [37.705255, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.55451], [37.705255, 55.5546], [37.705345, 55.5546], [37.705345, 55.55451], [37.705255, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.5546], [37.705255, 55.55469], [37.705345, 55.55469], [37.705345, 55.5546], [37.705255, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.55469], [37.705255, 55.55478], [37.705345, 55.55478], [37.705345, 55.55469], [37.705255, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.55478], [37.705255, 55.554869], [37.705345, 55.554869], [37.705345, 55.55478], [37.705255, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.554869], [37.705255, 55.554959], [37.705345, 55.554959], [37.705345, 55.554869], [37.705255, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.554959], [37.705255, 55.555049], [37.705345, 55.555049], [37.705345, 55.554959], [37.705255, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.555049], [37.705255, 55.555139], [37.705345, 55.555139], [37.705345, 55.555049], [37.705255, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705255, 55.555139], [37.705255, 55.555229], [37.705345, 55.555229], [37.705345, 55.555139], [37.705255, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.551722], [37.705345, 55.551812], [37.705435, 55.551812], [37.705435, 55.551722], [37.705345, 55.551722] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.551812], [37.705345, 55.551902], [37.705435, 55.551902], [37.705435, 55.551812], [37.705345, 55.551812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.551902], [37.705345, 55.551992], [37.705435, 55.551992], [37.705435, 55.551902], [37.705345, 55.551902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.551992], [37.705345, 55.552082], [37.705435, 55.552082], [37.705435, 55.551992], [37.705345, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.552082], [37.705345, 55.552171], [37.705435, 55.552171], [37.705435, 55.552082], [37.705345, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.552171], [37.705345, 55.552261], [37.705435, 55.552261], [37.705435, 55.552171], [37.705345, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.552261], [37.705345, 55.552351], [37.705435, 55.552351], [37.705435, 55.552261], [37.705345, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.552351], [37.705345, 55.552441], [37.705435, 55.552441], [37.705435, 55.552351], [37.705345, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.552441], [37.705345, 55.552531], [37.705435, 55.552531], [37.705435, 55.552441], [37.705345, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.552531], [37.705345, 55.552621], [37.705435, 55.552621], [37.705435, 55.552531], [37.705345, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.552621], [37.705345, 55.552711], [37.705435, 55.552711], [37.705435, 55.552621], [37.705345, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.552711], [37.705345, 55.552801], [37.705435, 55.552801], [37.705435, 55.552711], [37.705345, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.552801], [37.705345, 55.552891], [37.705435, 55.552891], [37.705435, 55.552801], [37.705345, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.552891], [37.705345, 55.552981], [37.705435, 55.552981], [37.705435, 55.552891], [37.705345, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.552981], [37.705345, 55.553071], [37.705435, 55.553071], [37.705435, 55.552981], [37.705345, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.553071], [37.705345, 55.553161], [37.705435, 55.553161], [37.705435, 55.553071], [37.705345, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.553161], [37.705345, 55.553251], [37.705435, 55.553251], [37.705435, 55.553161], [37.705345, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.553251], [37.705345, 55.553341], [37.705435, 55.553341], [37.705435, 55.553251], [37.705345, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.553341], [37.705345, 55.553431], [37.705435, 55.553431], [37.705435, 55.553341], [37.705345, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.553431], [37.705345, 55.55352], [37.705435, 55.55352], [37.705435, 55.553431], [37.705345, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.55352], [37.705345, 55.55361], [37.705435, 55.55361], [37.705435, 55.55352], [37.705345, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.55361], [37.705345, 55.5537], [37.705435, 55.5537], [37.705435, 55.55361], [37.705345, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.5537], [37.705345, 55.55379], [37.705435, 55.55379], [37.705435, 55.5537], [37.705345, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.55379], [37.705345, 55.55388], [37.705435, 55.55388], [37.705435, 55.55379], [37.705345, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.55388], [37.705345, 55.55397], [37.705435, 55.55397], [37.705435, 55.55388], [37.705345, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.55397], [37.705345, 55.55406], [37.705435, 55.55406], [37.705435, 55.55397], [37.705345, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.55406], [37.705345, 55.55415], [37.705435, 55.55415], [37.705435, 55.55406], [37.705345, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.55415], [37.705345, 55.55424], [37.705435, 55.55424], [37.705435, 55.55415], [37.705345, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.55424], [37.705345, 55.55433], [37.705435, 55.55433], [37.705435, 55.55424], [37.705345, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.55433], [37.705345, 55.55442], [37.705435, 55.55442], [37.705435, 55.55433], [37.705345, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.55442], [37.705345, 55.55451], [37.705435, 55.55451], [37.705435, 55.55442], [37.705345, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.55451], [37.705345, 55.5546], [37.705435, 55.5546], [37.705435, 55.55451], [37.705345, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.5546], [37.705345, 55.55469], [37.705435, 55.55469], [37.705435, 55.5546], [37.705345, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.55469], [37.705345, 55.55478], [37.705435, 55.55478], [37.705435, 55.55469], [37.705345, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.55478], [37.705345, 55.554869], [37.705435, 55.554869], [37.705435, 55.55478], [37.705345, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.554869], [37.705345, 55.554959], [37.705435, 55.554959], [37.705435, 55.554869], [37.705345, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.554959], [37.705345, 55.555049], [37.705435, 55.555049], [37.705435, 55.554959], [37.705345, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.555049], [37.705345, 55.555139], [37.705435, 55.555139], [37.705435, 55.555049], [37.705345, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705345, 55.555139], [37.705345, 55.555229], [37.705435, 55.555229], [37.705435, 55.555139], [37.705345, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.551722], [37.705435, 55.551812], [37.705525, 55.551812], [37.705525, 55.551722], [37.705435, 55.551722] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.551812], [37.705435, 55.551902], [37.705525, 55.551902], [37.705525, 55.551812], [37.705435, 55.551812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.551902], [37.705435, 55.551992], [37.705525, 55.551992], [37.705525, 55.551902], [37.705435, 55.551902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.551992], [37.705435, 55.552082], [37.705525, 55.552082], [37.705525, 55.551992], [37.705435, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.552082], [37.705435, 55.552171], [37.705525, 55.552171], [37.705525, 55.552082], [37.705435, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.552171], [37.705435, 55.552261], [37.705525, 55.552261], [37.705525, 55.552171], [37.705435, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.552261], [37.705435, 55.552351], [37.705525, 55.552351], [37.705525, 55.552261], [37.705435, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.552351], [37.705435, 55.552441], [37.705525, 55.552441], [37.705525, 55.552351], [37.705435, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.552441], [37.705435, 55.552531], [37.705525, 55.552531], [37.705525, 55.552441], [37.705435, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.552531], [37.705435, 55.552621], [37.705525, 55.552621], [37.705525, 55.552531], [37.705435, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.552621], [37.705435, 55.552711], [37.705525, 55.552711], [37.705525, 55.552621], [37.705435, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.552711], [37.705435, 55.552801], [37.705525, 55.552801], [37.705525, 55.552711], [37.705435, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.552801], [37.705435, 55.552891], [37.705525, 55.552891], [37.705525, 55.552801], [37.705435, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.552891], [37.705435, 55.552981], [37.705525, 55.552981], [37.705525, 55.552891], [37.705435, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.552981], [37.705435, 55.553071], [37.705525, 55.553071], [37.705525, 55.552981], [37.705435, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.553071], [37.705435, 55.553161], [37.705525, 55.553161], [37.705525, 55.553071], [37.705435, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.553161], [37.705435, 55.553251], [37.705525, 55.553251], [37.705525, 55.553161], [37.705435, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.553251], [37.705435, 55.553341], [37.705525, 55.553341], [37.705525, 55.553251], [37.705435, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.553341], [37.705435, 55.553431], [37.705525, 55.553431], [37.705525, 55.553341], [37.705435, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.553431], [37.705435, 55.55352], [37.705525, 55.55352], [37.705525, 55.553431], [37.705435, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.55352], [37.705435, 55.55361], [37.705525, 55.55361], [37.705525, 55.55352], [37.705435, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.55361], [37.705435, 55.5537], [37.705525, 55.5537], [37.705525, 55.55361], [37.705435, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.5537], [37.705435, 55.55379], [37.705525, 55.55379], [37.705525, 55.5537], [37.705435, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.55379], [37.705435, 55.55388], [37.705525, 55.55388], [37.705525, 55.55379], [37.705435, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.55388], [37.705435, 55.55397], [37.705525, 55.55397], [37.705525, 55.55388], [37.705435, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.55397], [37.705435, 55.55406], [37.705525, 55.55406], [37.705525, 55.55397], [37.705435, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.55406], [37.705435, 55.55415], [37.705525, 55.55415], [37.705525, 55.55406], [37.705435, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.55415], [37.705435, 55.55424], [37.705525, 55.55424], [37.705525, 55.55415], [37.705435, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.55424], [37.705435, 55.55433], [37.705525, 55.55433], [37.705525, 55.55424], [37.705435, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.55433], [37.705435, 55.55442], [37.705525, 55.55442], [37.705525, 55.55433], [37.705435, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.55442], [37.705435, 55.55451], [37.705525, 55.55451], [37.705525, 55.55442], [37.705435, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.55451], [37.705435, 55.5546], [37.705525, 55.5546], [37.705525, 55.55451], [37.705435, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.5546], [37.705435, 55.55469], [37.705525, 55.55469], [37.705525, 55.5546], [37.705435, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.55469], [37.705435, 55.55478], [37.705525, 55.55478], [37.705525, 55.55469], [37.705435, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.55478], [37.705435, 55.554869], [37.705525, 55.554869], [37.705525, 55.55478], [37.705435, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.554869], [37.705435, 55.554959], [37.705525, 55.554959], [37.705525, 55.554869], [37.705435, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.554959], [37.705435, 55.555049], [37.705525, 55.555049], [37.705525, 55.554959], [37.705435, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.555049], [37.705435, 55.555139], [37.705525, 55.555139], [37.705525, 55.555049], [37.705435, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.555139], [37.705435, 55.555229], [37.705525, 55.555229], [37.705525, 55.555139], [37.705435, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705435, 55.555229], [37.705435, 55.555319], [37.705525, 55.555319], [37.705525, 55.555229], [37.705435, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.551722], [37.705525, 55.551812], [37.705615, 55.551812], [37.705615, 55.551722], [37.705525, 55.551722] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.551812], [37.705525, 55.551902], [37.705615, 55.551902], [37.705615, 55.551812], [37.705525, 55.551812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.551902], [37.705525, 55.551992], [37.705615, 55.551992], [37.705615, 55.551902], [37.705525, 55.551902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.551992], [37.705525, 55.552082], [37.705615, 55.552082], [37.705615, 55.551992], [37.705525, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.552082], [37.705525, 55.552171], [37.705615, 55.552171], [37.705615, 55.552082], [37.705525, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.552171], [37.705525, 55.552261], [37.705615, 55.552261], [37.705615, 55.552171], [37.705525, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.552261], [37.705525, 55.552351], [37.705615, 55.552351], [37.705615, 55.552261], [37.705525, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.552351], [37.705525, 55.552441], [37.705615, 55.552441], [37.705615, 55.552351], [37.705525, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.552441], [37.705525, 55.552531], [37.705615, 55.552531], [37.705615, 55.552441], [37.705525, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.552531], [37.705525, 55.552621], [37.705615, 55.552621], [37.705615, 55.552531], [37.705525, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.552621], [37.705525, 55.552711], [37.705615, 55.552711], [37.705615, 55.552621], [37.705525, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.552711], [37.705525, 55.552801], [37.705615, 55.552801], [37.705615, 55.552711], [37.705525, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.552801], [37.705525, 55.552891], [37.705615, 55.552891], [37.705615, 55.552801], [37.705525, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.552891], [37.705525, 55.552981], [37.705615, 55.552981], [37.705615, 55.552891], [37.705525, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.552981], [37.705525, 55.553071], [37.705615, 55.553071], [37.705615, 55.552981], [37.705525, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.553071], [37.705525, 55.553161], [37.705615, 55.553161], [37.705615, 55.553071], [37.705525, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.553161], [37.705525, 55.553251], [37.705615, 55.553251], [37.705615, 55.553161], [37.705525, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.553251], [37.705525, 55.553341], [37.705615, 55.553341], [37.705615, 55.553251], [37.705525, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.553341], [37.705525, 55.553431], [37.705615, 55.553431], [37.705615, 55.553341], [37.705525, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.553431], [37.705525, 55.55352], [37.705615, 55.55352], [37.705615, 55.553431], [37.705525, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.55352], [37.705525, 55.55361], [37.705615, 55.55361], [37.705615, 55.55352], [37.705525, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.55361], [37.705525, 55.5537], [37.705615, 55.5537], [37.705615, 55.55361], [37.705525, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.5537], [37.705525, 55.55379], [37.705615, 55.55379], [37.705615, 55.5537], [37.705525, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.55379], [37.705525, 55.55388], [37.705615, 55.55388], [37.705615, 55.55379], [37.705525, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.55388], [37.705525, 55.55397], [37.705615, 55.55397], [37.705615, 55.55388], [37.705525, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.55397], [37.705525, 55.55406], [37.705615, 55.55406], [37.705615, 55.55397], [37.705525, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.55406], [37.705525, 55.55415], [37.705615, 55.55415], [37.705615, 55.55406], [37.705525, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.55415], [37.705525, 55.55424], [37.705615, 55.55424], [37.705615, 55.55415], [37.705525, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.55424], [37.705525, 55.55433], [37.705615, 55.55433], [37.705615, 55.55424], [37.705525, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.55433], [37.705525, 55.55442], [37.705615, 55.55442], [37.705615, 55.55433], [37.705525, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.55442], [37.705525, 55.55451], [37.705615, 55.55451], [37.705615, 55.55442], [37.705525, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.55451], [37.705525, 55.5546], [37.705615, 55.5546], [37.705615, 55.55451], [37.705525, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.5546], [37.705525, 55.55469], [37.705615, 55.55469], [37.705615, 55.5546], [37.705525, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.55469], [37.705525, 55.55478], [37.705615, 55.55478], [37.705615, 55.55469], [37.705525, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.55478], [37.705525, 55.554869], [37.705615, 55.554869], [37.705615, 55.55478], [37.705525, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.554869], [37.705525, 55.554959], [37.705615, 55.554959], [37.705615, 55.554869], [37.705525, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.554959], [37.705525, 55.555049], [37.705615, 55.555049], [37.705615, 55.554959], [37.705525, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.555049], [37.705525, 55.555139], [37.705615, 55.555139], [37.705615, 55.555049], [37.705525, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.555139], [37.705525, 55.555229], [37.705615, 55.555229], [37.705615, 55.555139], [37.705525, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705525, 55.555229], [37.705525, 55.555319], [37.705615, 55.555319], [37.705615, 55.555229], [37.705525, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.551722], [37.705615, 55.551812], [37.705705, 55.551812], [37.705705, 55.551722], [37.705615, 55.551722] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.551812], [37.705615, 55.551902], [37.705705, 55.551902], [37.705705, 55.551812], [37.705615, 55.551812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.551902], [37.705615, 55.551992], [37.705705, 55.551992], [37.705705, 55.551902], [37.705615, 55.551902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.551992], [37.705615, 55.552082], [37.705705, 55.552082], [37.705705, 55.551992], [37.705615, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.552082], [37.705615, 55.552171], [37.705705, 55.552171], [37.705705, 55.552082], [37.705615, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.552171], [37.705615, 55.552261], [37.705705, 55.552261], [37.705705, 55.552171], [37.705615, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.552261], [37.705615, 55.552351], [37.705705, 55.552351], [37.705705, 55.552261], [37.705615, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.552351], [37.705615, 55.552441], [37.705705, 55.552441], [37.705705, 55.552351], [37.705615, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.552441], [37.705615, 55.552531], [37.705705, 55.552531], [37.705705, 55.552441], [37.705615, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.552531], [37.705615, 55.552621], [37.705705, 55.552621], [37.705705, 55.552531], [37.705615, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.552621], [37.705615, 55.552711], [37.705705, 55.552711], [37.705705, 55.552621], [37.705615, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.552711], [37.705615, 55.552801], [37.705705, 55.552801], [37.705705, 55.552711], [37.705615, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.552801], [37.705615, 55.552891], [37.705705, 55.552891], [37.705705, 55.552801], [37.705615, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.552891], [37.705615, 55.552981], [37.705705, 55.552981], [37.705705, 55.552891], [37.705615, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.552981], [37.705615, 55.553071], [37.705705, 55.553071], [37.705705, 55.552981], [37.705615, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.553071], [37.705615, 55.553161], [37.705705, 55.553161], [37.705705, 55.553071], [37.705615, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.553161], [37.705615, 55.553251], [37.705705, 55.553251], [37.705705, 55.553161], [37.705615, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.553251], [37.705615, 55.553341], [37.705705, 55.553341], [37.705705, 55.553251], [37.705615, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.553341], [37.705615, 55.553431], [37.705705, 55.553431], [37.705705, 55.553341], [37.705615, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.553431], [37.705615, 55.55352], [37.705705, 55.55352], [37.705705, 55.553431], [37.705615, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.55352], [37.705615, 55.55361], [37.705705, 55.55361], [37.705705, 55.55352], [37.705615, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.55361], [37.705615, 55.5537], [37.705705, 55.5537], [37.705705, 55.55361], [37.705615, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.5537], [37.705615, 55.55379], [37.705705, 55.55379], [37.705705, 55.5537], [37.705615, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.55379], [37.705615, 55.55388], [37.705705, 55.55388], [37.705705, 55.55379], [37.705615, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.55388], [37.705615, 55.55397], [37.705705, 55.55397], [37.705705, 55.55388], [37.705615, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.55397], [37.705615, 55.55406], [37.705705, 55.55406], [37.705705, 55.55397], [37.705615, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.55406], [37.705615, 55.55415], [37.705705, 55.55415], [37.705705, 55.55406], [37.705615, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.55415], [37.705615, 55.55424], [37.705705, 55.55424], [37.705705, 55.55415], [37.705615, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.55424], [37.705615, 55.55433], [37.705705, 55.55433], [37.705705, 55.55424], [37.705615, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.55433], [37.705615, 55.55442], [37.705705, 55.55442], [37.705705, 55.55433], [37.705615, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.55442], [37.705615, 55.55451], [37.705705, 55.55451], [37.705705, 55.55442], [37.705615, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.55451], [37.705615, 55.5546], [37.705705, 55.5546], [37.705705, 55.55451], [37.705615, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.5546], [37.705615, 55.55469], [37.705705, 55.55469], [37.705705, 55.5546], [37.705615, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.55469], [37.705615, 55.55478], [37.705705, 55.55478], [37.705705, 55.55469], [37.705615, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.55478], [37.705615, 55.554869], [37.705705, 55.554869], [37.705705, 55.55478], [37.705615, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.554869], [37.705615, 55.554959], [37.705705, 55.554959], [37.705705, 55.554869], [37.705615, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.554959], [37.705615, 55.555049], [37.705705, 55.555049], [37.705705, 55.554959], [37.705615, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.555049], [37.705615, 55.555139], [37.705705, 55.555139], [37.705705, 55.555049], [37.705615, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.555139], [37.705615, 55.555229], [37.705705, 55.555229], [37.705705, 55.555139], [37.705615, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705615, 55.555229], [37.705615, 55.555319], [37.705705, 55.555319], [37.705705, 55.555229], [37.705615, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.551632], [37.705705, 55.551722], [37.705795, 55.551722], [37.705795, 55.551632], [37.705705, 55.551632] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.551722], [37.705705, 55.551812], [37.705795, 55.551812], [37.705795, 55.551722], [37.705705, 55.551722] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.551812], [37.705705, 55.551902], [37.705795, 55.551902], [37.705795, 55.551812], [37.705705, 55.551812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.551902], [37.705705, 55.551992], [37.705795, 55.551992], [37.705795, 55.551902], [37.705705, 55.551902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.551992], [37.705705, 55.552082], [37.705795, 55.552082], [37.705795, 55.551992], [37.705705, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.552082], [37.705705, 55.552171], [37.705795, 55.552171], [37.705795, 55.552082], [37.705705, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.552171], [37.705705, 55.552261], [37.705795, 55.552261], [37.705795, 55.552171], [37.705705, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.552261], [37.705705, 55.552351], [37.705795, 55.552351], [37.705795, 55.552261], [37.705705, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.552351], [37.705705, 55.552441], [37.705795, 55.552441], [37.705795, 55.552351], [37.705705, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.552441], [37.705705, 55.552531], [37.705795, 55.552531], [37.705795, 55.552441], [37.705705, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.552531], [37.705705, 55.552621], [37.705795, 55.552621], [37.705795, 55.552531], [37.705705, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.552621], [37.705705, 55.552711], [37.705795, 55.552711], [37.705795, 55.552621], [37.705705, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.552711], [37.705705, 55.552801], [37.705795, 55.552801], [37.705795, 55.552711], [37.705705, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.552801], [37.705705, 55.552891], [37.705795, 55.552891], [37.705795, 55.552801], [37.705705, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.552891], [37.705705, 55.552981], [37.705795, 55.552981], [37.705795, 55.552891], [37.705705, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.552981], [37.705705, 55.553071], [37.705795, 55.553071], [37.705795, 55.552981], [37.705705, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.553071], [37.705705, 55.553161], [37.705795, 55.553161], [37.705795, 55.553071], [37.705705, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.553161], [37.705705, 55.553251], [37.705795, 55.553251], [37.705795, 55.553161], [37.705705, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.553251], [37.705705, 55.553341], [37.705795, 55.553341], [37.705795, 55.553251], [37.705705, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.553341], [37.705705, 55.553431], [37.705795, 55.553431], [37.705795, 55.553341], [37.705705, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.553431], [37.705705, 55.55352], [37.705795, 55.55352], [37.705795, 55.553431], [37.705705, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.55352], [37.705705, 55.55361], [37.705795, 55.55361], [37.705795, 55.55352], [37.705705, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.55361], [37.705705, 55.5537], [37.705795, 55.5537], [37.705795, 55.55361], [37.705705, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.5537], [37.705705, 55.55379], [37.705795, 55.55379], [37.705795, 55.5537], [37.705705, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.55379], [37.705705, 55.55388], [37.705795, 55.55388], [37.705795, 55.55379], [37.705705, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.55388], [37.705705, 55.55397], [37.705795, 55.55397], [37.705795, 55.55388], [37.705705, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.55397], [37.705705, 55.55406], [37.705795, 55.55406], [37.705795, 55.55397], [37.705705, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.55406], [37.705705, 55.55415], [37.705795, 55.55415], [37.705795, 55.55406], [37.705705, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.55415], [37.705705, 55.55424], [37.705795, 55.55424], [37.705795, 55.55415], [37.705705, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.55424], [37.705705, 55.55433], [37.705795, 55.55433], [37.705795, 55.55424], [37.705705, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.55433], [37.705705, 55.55442], [37.705795, 55.55442], [37.705795, 55.55433], [37.705705, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.55442], [37.705705, 55.55451], [37.705795, 55.55451], [37.705795, 55.55442], [37.705705, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.55451], [37.705705, 55.5546], [37.705795, 55.5546], [37.705795, 55.55451], [37.705705, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.5546], [37.705705, 55.55469], [37.705795, 55.55469], [37.705795, 55.5546], [37.705705, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.55469], [37.705705, 55.55478], [37.705795, 55.55478], [37.705795, 55.55469], [37.705705, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.55478], [37.705705, 55.554869], [37.705795, 55.554869], [37.705795, 55.55478], [37.705705, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.554869], [37.705705, 55.554959], [37.705795, 55.554959], [37.705795, 55.554869], [37.705705, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.554959], [37.705705, 55.555049], [37.705795, 55.555049], [37.705795, 55.554959], [37.705705, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.555049], [37.705705, 55.555139], [37.705795, 55.555139], [37.705795, 55.555049], [37.705705, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.555139], [37.705705, 55.555229], [37.705795, 55.555229], [37.705795, 55.555139], [37.705705, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705705, 55.555229], [37.705705, 55.555319], [37.705795, 55.555319], [37.705795, 55.555229], [37.705705, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.551632], [37.705795, 55.551722], [37.705885, 55.551722], [37.705885, 55.551632], [37.705795, 55.551632] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.551722], [37.705795, 55.551812], [37.705885, 55.551812], [37.705885, 55.551722], [37.705795, 55.551722] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.551812], [37.705795, 55.551902], [37.705885, 55.551902], [37.705885, 55.551812], [37.705795, 55.551812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.551902], [37.705795, 55.551992], [37.705885, 55.551992], [37.705885, 55.551902], [37.705795, 55.551902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.551992], [37.705795, 55.552082], [37.705885, 55.552082], [37.705885, 55.551992], [37.705795, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.552082], [37.705795, 55.552171], [37.705885, 55.552171], [37.705885, 55.552082], [37.705795, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.552171], [37.705795, 55.552261], [37.705885, 55.552261], [37.705885, 55.552171], [37.705795, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.552261], [37.705795, 55.552351], [37.705885, 55.552351], [37.705885, 55.552261], [37.705795, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.552351], [37.705795, 55.552441], [37.705885, 55.552441], [37.705885, 55.552351], [37.705795, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.552441], [37.705795, 55.552531], [37.705885, 55.552531], [37.705885, 55.552441], [37.705795, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.552531], [37.705795, 55.552621], [37.705885, 55.552621], [37.705885, 55.552531], [37.705795, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.552621], [37.705795, 55.552711], [37.705885, 55.552711], [37.705885, 55.552621], [37.705795, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.552711], [37.705795, 55.552801], [37.705885, 55.552801], [37.705885, 55.552711], [37.705795, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.552801], [37.705795, 55.552891], [37.705885, 55.552891], [37.705885, 55.552801], [37.705795, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.552891], [37.705795, 55.552981], [37.705885, 55.552981], [37.705885, 55.552891], [37.705795, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.552981], [37.705795, 55.553071], [37.705885, 55.553071], [37.705885, 55.552981], [37.705795, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.553071], [37.705795, 55.553161], [37.705885, 55.553161], [37.705885, 55.553071], [37.705795, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.553161], [37.705795, 55.553251], [37.705885, 55.553251], [37.705885, 55.553161], [37.705795, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.553251], [37.705795, 55.553341], [37.705885, 55.553341], [37.705885, 55.553251], [37.705795, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.553341], [37.705795, 55.553431], [37.705885, 55.553431], [37.705885, 55.553341], [37.705795, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.553431], [37.705795, 55.55352], [37.705885, 55.55352], [37.705885, 55.553431], [37.705795, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.55352], [37.705795, 55.55361], [37.705885, 55.55361], [37.705885, 55.55352], [37.705795, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.55361], [37.705795, 55.5537], [37.705885, 55.5537], [37.705885, 55.55361], [37.705795, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.5537], [37.705795, 55.55379], [37.705885, 55.55379], [37.705885, 55.5537], [37.705795, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.55379], [37.705795, 55.55388], [37.705885, 55.55388], [37.705885, 55.55379], [37.705795, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.55388], [37.705795, 55.55397], [37.705885, 55.55397], [37.705885, 55.55388], [37.705795, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.55397], [37.705795, 55.55406], [37.705885, 55.55406], [37.705885, 55.55397], [37.705795, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.55406], [37.705795, 55.55415], [37.705885, 55.55415], [37.705885, 55.55406], [37.705795, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.55415], [37.705795, 55.55424], [37.705885, 55.55424], [37.705885, 55.55415], [37.705795, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.55424], [37.705795, 55.55433], [37.705885, 55.55433], [37.705885, 55.55424], [37.705795, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.55433], [37.705795, 55.55442], [37.705885, 55.55442], [37.705885, 55.55433], [37.705795, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.55442], [37.705795, 55.55451], [37.705885, 55.55451], [37.705885, 55.55442], [37.705795, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.55451], [37.705795, 55.5546], [37.705885, 55.5546], [37.705885, 55.55451], [37.705795, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.5546], [37.705795, 55.55469], [37.705885, 55.55469], [37.705885, 55.5546], [37.705795, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.55469], [37.705795, 55.55478], [37.705885, 55.55478], [37.705885, 55.55469], [37.705795, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.55478], [37.705795, 55.554869], [37.705885, 55.554869], [37.705885, 55.55478], [37.705795, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.554869], [37.705795, 55.554959], [37.705885, 55.554959], [37.705885, 55.554869], [37.705795, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.554959], [37.705795, 55.555049], [37.705885, 55.555049], [37.705885, 55.554959], [37.705795, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.555049], [37.705795, 55.555139], [37.705885, 55.555139], [37.705885, 55.555049], [37.705795, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.555139], [37.705795, 55.555229], [37.705885, 55.555229], [37.705885, 55.555139], [37.705795, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.555229], [37.705795, 55.555319], [37.705885, 55.555319], [37.705885, 55.555229], [37.705795, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705795, 55.555319], [37.705795, 55.555409], [37.705885, 55.555409], [37.705885, 55.555319], [37.705795, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.551632], [37.705885, 55.551722], [37.705974, 55.551722], [37.705974, 55.551632], [37.705885, 55.551632] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.551722], [37.705885, 55.551812], [37.705974, 55.551812], [37.705974, 55.551722], [37.705885, 55.551722] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.551812], [37.705885, 55.551902], [37.705974, 55.551902], [37.705974, 55.551812], [37.705885, 55.551812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.551902], [37.705885, 55.551992], [37.705974, 55.551992], [37.705974, 55.551902], [37.705885, 55.551902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.551992], [37.705885, 55.552082], [37.705974, 55.552082], [37.705974, 55.551992], [37.705885, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.552082], [37.705885, 55.552171], [37.705974, 55.552171], [37.705974, 55.552082], [37.705885, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.552171], [37.705885, 55.552261], [37.705974, 55.552261], [37.705974, 55.552171], [37.705885, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.552261], [37.705885, 55.552351], [37.705974, 55.552351], [37.705974, 55.552261], [37.705885, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.552351], [37.705885, 55.552441], [37.705974, 55.552441], [37.705974, 55.552351], [37.705885, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.552441], [37.705885, 55.552531], [37.705974, 55.552531], [37.705974, 55.552441], [37.705885, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.552531], [37.705885, 55.552621], [37.705974, 55.552621], [37.705974, 55.552531], [37.705885, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.552621], [37.705885, 55.552711], [37.705974, 55.552711], [37.705974, 55.552621], [37.705885, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.552711], [37.705885, 55.552801], [37.705974, 55.552801], [37.705974, 55.552711], [37.705885, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.552801], [37.705885, 55.552891], [37.705974, 55.552891], [37.705974, 55.552801], [37.705885, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.552891], [37.705885, 55.552981], [37.705974, 55.552981], [37.705974, 55.552891], [37.705885, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.552981], [37.705885, 55.553071], [37.705974, 55.553071], [37.705974, 55.552981], [37.705885, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.553071], [37.705885, 55.553161], [37.705974, 55.553161], [37.705974, 55.553071], [37.705885, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.553161], [37.705885, 55.553251], [37.705974, 55.553251], [37.705974, 55.553161], [37.705885, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.553251], [37.705885, 55.553341], [37.705974, 55.553341], [37.705974, 55.553251], [37.705885, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.553341], [37.705885, 55.553431], [37.705974, 55.553431], [37.705974, 55.553341], [37.705885, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.553431], [37.705885, 55.55352], [37.705974, 55.55352], [37.705974, 55.553431], [37.705885, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.55352], [37.705885, 55.55361], [37.705974, 55.55361], [37.705974, 55.55352], [37.705885, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.55361], [37.705885, 55.5537], [37.705974, 55.5537], [37.705974, 55.55361], [37.705885, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.5537], [37.705885, 55.55379], [37.705974, 55.55379], [37.705974, 55.5537], [37.705885, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.55379], [37.705885, 55.55388], [37.705974, 55.55388], [37.705974, 55.55379], [37.705885, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.55388], [37.705885, 55.55397], [37.705974, 55.55397], [37.705974, 55.55388], [37.705885, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.55397], [37.705885, 55.55406], [37.705974, 55.55406], [37.705974, 55.55397], [37.705885, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.55406], [37.705885, 55.55415], [37.705974, 55.55415], [37.705974, 55.55406], [37.705885, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.55415], [37.705885, 55.55424], [37.705974, 55.55424], [37.705974, 55.55415], [37.705885, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.55424], [37.705885, 55.55433], [37.705974, 55.55433], [37.705974, 55.55424], [37.705885, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.55433], [37.705885, 55.55442], [37.705974, 55.55442], [37.705974, 55.55433], [37.705885, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.55442], [37.705885, 55.55451], [37.705974, 55.55451], [37.705974, 55.55442], [37.705885, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.55451], [37.705885, 55.5546], [37.705974, 55.5546], [37.705974, 55.55451], [37.705885, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.5546], [37.705885, 55.55469], [37.705974, 55.55469], [37.705974, 55.5546], [37.705885, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.55469], [37.705885, 55.55478], [37.705974, 55.55478], [37.705974, 55.55469], [37.705885, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.55478], [37.705885, 55.554869], [37.705974, 55.554869], [37.705974, 55.55478], [37.705885, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.554869], [37.705885, 55.554959], [37.705974, 55.554959], [37.705974, 55.554869], [37.705885, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.554959], [37.705885, 55.555049], [37.705974, 55.555049], [37.705974, 55.554959], [37.705885, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.555049], [37.705885, 55.555139], [37.705974, 55.555139], [37.705974, 55.555049], [37.705885, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.555139], [37.705885, 55.555229], [37.705974, 55.555229], [37.705974, 55.555139], [37.705885, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.555229], [37.705885, 55.555319], [37.705974, 55.555319], [37.705974, 55.555229], [37.705885, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705885, 55.555319], [37.705885, 55.555409], [37.705974, 55.555409], [37.705974, 55.555319], [37.705885, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.551542], [37.705974, 55.551632], [37.706064, 55.551632], [37.706064, 55.551542], [37.705974, 55.551542] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.551632], [37.705974, 55.551722], [37.706064, 55.551722], [37.706064, 55.551632], [37.705974, 55.551632] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.551722], [37.705974, 55.551812], [37.706064, 55.551812], [37.706064, 55.551722], [37.705974, 55.551722] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.551812], [37.705974, 55.551902], [37.706064, 55.551902], [37.706064, 55.551812], [37.705974, 55.551812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.551902], [37.705974, 55.551992], [37.706064, 55.551992], [37.706064, 55.551902], [37.705974, 55.551902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.551992], [37.705974, 55.552082], [37.706064, 55.552082], [37.706064, 55.551992], [37.705974, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.552082], [37.705974, 55.552171], [37.706064, 55.552171], [37.706064, 55.552082], [37.705974, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.552171], [37.705974, 55.552261], [37.706064, 55.552261], [37.706064, 55.552171], [37.705974, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.552261], [37.705974, 55.552351], [37.706064, 55.552351], [37.706064, 55.552261], [37.705974, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.552351], [37.705974, 55.552441], [37.706064, 55.552441], [37.706064, 55.552351], [37.705974, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.552441], [37.705974, 55.552531], [37.706064, 55.552531], [37.706064, 55.552441], [37.705974, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.552531], [37.705974, 55.552621], [37.706064, 55.552621], [37.706064, 55.552531], [37.705974, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.552621], [37.705974, 55.552711], [37.706064, 55.552711], [37.706064, 55.552621], [37.705974, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.552711], [37.705974, 55.552801], [37.706064, 55.552801], [37.706064, 55.552711], [37.705974, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.552801], [37.705974, 55.552891], [37.706064, 55.552891], [37.706064, 55.552801], [37.705974, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.552891], [37.705974, 55.552981], [37.706064, 55.552981], [37.706064, 55.552891], [37.705974, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.552981], [37.705974, 55.553071], [37.706064, 55.553071], [37.706064, 55.552981], [37.705974, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.553071], [37.705974, 55.553161], [37.706064, 55.553161], [37.706064, 55.553071], [37.705974, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.553161], [37.705974, 55.553251], [37.706064, 55.553251], [37.706064, 55.553161], [37.705974, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.553251], [37.705974, 55.553341], [37.706064, 55.553341], [37.706064, 55.553251], [37.705974, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.553341], [37.705974, 55.553431], [37.706064, 55.553431], [37.706064, 55.553341], [37.705974, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.553431], [37.705974, 55.55352], [37.706064, 55.55352], [37.706064, 55.553431], [37.705974, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.55352], [37.705974, 55.55361], [37.706064, 55.55361], [37.706064, 55.55352], [37.705974, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.55361], [37.705974, 55.5537], [37.706064, 55.5537], [37.706064, 55.55361], [37.705974, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.5537], [37.705974, 55.55379], [37.706064, 55.55379], [37.706064, 55.5537], [37.705974, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.55379], [37.705974, 55.55388], [37.706064, 55.55388], [37.706064, 55.55379], [37.705974, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.55388], [37.705974, 55.55397], [37.706064, 55.55397], [37.706064, 55.55388], [37.705974, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.55397], [37.705974, 55.55406], [37.706064, 55.55406], [37.706064, 55.55397], [37.705974, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.55406], [37.705974, 55.55415], [37.706064, 55.55415], [37.706064, 55.55406], [37.705974, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.55415], [37.705974, 55.55424], [37.706064, 55.55424], [37.706064, 55.55415], [37.705974, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.55424], [37.705974, 55.55433], [37.706064, 55.55433], [37.706064, 55.55424], [37.705974, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.55433], [37.705974, 55.55442], [37.706064, 55.55442], [37.706064, 55.55433], [37.705974, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.55442], [37.705974, 55.55451], [37.706064, 55.55451], [37.706064, 55.55442], [37.705974, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.55451], [37.705974, 55.5546], [37.706064, 55.5546], [37.706064, 55.55451], [37.705974, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.5546], [37.705974, 55.55469], [37.706064, 55.55469], [37.706064, 55.5546], [37.705974, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.55469], [37.705974, 55.55478], [37.706064, 55.55478], [37.706064, 55.55469], [37.705974, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.55478], [37.705974, 55.554869], [37.706064, 55.554869], [37.706064, 55.55478], [37.705974, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.554869], [37.705974, 55.554959], [37.706064, 55.554959], [37.706064, 55.554869], [37.705974, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.554959], [37.705974, 55.555049], [37.706064, 55.555049], [37.706064, 55.554959], [37.705974, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.555049], [37.705974, 55.555139], [37.706064, 55.555139], [37.706064, 55.555049], [37.705974, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.555139], [37.705974, 55.555229], [37.706064, 55.555229], [37.706064, 55.555139], [37.705974, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.555229], [37.705974, 55.555319], [37.706064, 55.555319], [37.706064, 55.555229], [37.705974, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.705974, 55.555319], [37.705974, 55.555409], [37.706064, 55.555409], [37.706064, 55.555319], [37.705974, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.551542], [37.706064, 55.551632], [37.706154, 55.551632], [37.706154, 55.551542], [37.706064, 55.551542] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.551632], [37.706064, 55.551722], [37.706154, 55.551722], [37.706154, 55.551632], [37.706064, 55.551632] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.551722], [37.706064, 55.551812], [37.706154, 55.551812], [37.706154, 55.551722], [37.706064, 55.551722] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.551812], [37.706064, 55.551902], [37.706154, 55.551902], [37.706154, 55.551812], [37.706064, 55.551812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.551902], [37.706064, 55.551992], [37.706154, 55.551992], [37.706154, 55.551902], [37.706064, 55.551902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.551992], [37.706064, 55.552082], [37.706154, 55.552082], [37.706154, 55.551992], [37.706064, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.552082], [37.706064, 55.552171], [37.706154, 55.552171], [37.706154, 55.552082], [37.706064, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.552171], [37.706064, 55.552261], [37.706154, 55.552261], [37.706154, 55.552171], [37.706064, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.552261], [37.706064, 55.552351], [37.706154, 55.552351], [37.706154, 55.552261], [37.706064, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.552351], [37.706064, 55.552441], [37.706154, 55.552441], [37.706154, 55.552351], [37.706064, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.552441], [37.706064, 55.552531], [37.706154, 55.552531], [37.706154, 55.552441], [37.706064, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.552531], [37.706064, 55.552621], [37.706154, 55.552621], [37.706154, 55.552531], [37.706064, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.552621], [37.706064, 55.552711], [37.706154, 55.552711], [37.706154, 55.552621], [37.706064, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.552711], [37.706064, 55.552801], [37.706154, 55.552801], [37.706154, 55.552711], [37.706064, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.552801], [37.706064, 55.552891], [37.706154, 55.552891], [37.706154, 55.552801], [37.706064, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.552891], [37.706064, 55.552981], [37.706154, 55.552981], [37.706154, 55.552891], [37.706064, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.552981], [37.706064, 55.553071], [37.706154, 55.553071], [37.706154, 55.552981], [37.706064, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.553071], [37.706064, 55.553161], [37.706154, 55.553161], [37.706154, 55.553071], [37.706064, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.553161], [37.706064, 55.553251], [37.706154, 55.553251], [37.706154, 55.553161], [37.706064, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.553251], [37.706064, 55.553341], [37.706154, 55.553341], [37.706154, 55.553251], [37.706064, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.553341], [37.706064, 55.553431], [37.706154, 55.553431], [37.706154, 55.553341], [37.706064, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.553431], [37.706064, 55.55352], [37.706154, 55.55352], [37.706154, 55.553431], [37.706064, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.55352], [37.706064, 55.55361], [37.706154, 55.55361], [37.706154, 55.55352], [37.706064, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.55361], [37.706064, 55.5537], [37.706154, 55.5537], [37.706154, 55.55361], [37.706064, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.5537], [37.706064, 55.55379], [37.706154, 55.55379], [37.706154, 55.5537], [37.706064, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.55379], [37.706064, 55.55388], [37.706154, 55.55388], [37.706154, 55.55379], [37.706064, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.55388], [37.706064, 55.55397], [37.706154, 55.55397], [37.706154, 55.55388], [37.706064, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.55397], [37.706064, 55.55406], [37.706154, 55.55406], [37.706154, 55.55397], [37.706064, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.55406], [37.706064, 55.55415], [37.706154, 55.55415], [37.706154, 55.55406], [37.706064, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.55415], [37.706064, 55.55424], [37.706154, 55.55424], [37.706154, 55.55415], [37.706064, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.55424], [37.706064, 55.55433], [37.706154, 55.55433], [37.706154, 55.55424], [37.706064, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.55433], [37.706064, 55.55442], [37.706154, 55.55442], [37.706154, 55.55433], [37.706064, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.55442], [37.706064, 55.55451], [37.706154, 55.55451], [37.706154, 55.55442], [37.706064, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.55451], [37.706064, 55.5546], [37.706154, 55.5546], [37.706154, 55.55451], [37.706064, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.5546], [37.706064, 55.55469], [37.706154, 55.55469], [37.706154, 55.5546], [37.706064, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.55469], [37.706064, 55.55478], [37.706154, 55.55478], [37.706154, 55.55469], [37.706064, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.55478], [37.706064, 55.554869], [37.706154, 55.554869], [37.706154, 55.55478], [37.706064, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.554869], [37.706064, 55.554959], [37.706154, 55.554959], [37.706154, 55.554869], [37.706064, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.554959], [37.706064, 55.555049], [37.706154, 55.555049], [37.706154, 55.554959], [37.706064, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.555049], [37.706064, 55.555139], [37.706154, 55.555139], [37.706154, 55.555049], [37.706064, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.555139], [37.706064, 55.555229], [37.706154, 55.555229], [37.706154, 55.555139], [37.706064, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.555229], [37.706064, 55.555319], [37.706154, 55.555319], [37.706154, 55.555229], [37.706064, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.555319], [37.706064, 55.555409], [37.706154, 55.555409], [37.706154, 55.555319], [37.706064, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706064, 55.555409], [37.706064, 55.555499], [37.706154, 55.555499], [37.706154, 55.555409], [37.706064, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.551542], [37.706154, 55.551632], [37.706244, 55.551632], [37.706244, 55.551542], [37.706154, 55.551542] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.551632], [37.706154, 55.551722], [37.706244, 55.551722], [37.706244, 55.551632], [37.706154, 55.551632] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.551722], [37.706154, 55.551812], [37.706244, 55.551812], [37.706244, 55.551722], [37.706154, 55.551722] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.551812], [37.706154, 55.551902], [37.706244, 55.551902], [37.706244, 55.551812], [37.706154, 55.551812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.551902], [37.706154, 55.551992], [37.706244, 55.551992], [37.706244, 55.551902], [37.706154, 55.551902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.551992], [37.706154, 55.552082], [37.706244, 55.552082], [37.706244, 55.551992], [37.706154, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.552082], [37.706154, 55.552171], [37.706244, 55.552171], [37.706244, 55.552082], [37.706154, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.552171], [37.706154, 55.552261], [37.706244, 55.552261], [37.706244, 55.552171], [37.706154, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.552261], [37.706154, 55.552351], [37.706244, 55.552351], [37.706244, 55.552261], [37.706154, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.552351], [37.706154, 55.552441], [37.706244, 55.552441], [37.706244, 55.552351], [37.706154, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.552441], [37.706154, 55.552531], [37.706244, 55.552531], [37.706244, 55.552441], [37.706154, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.552531], [37.706154, 55.552621], [37.706244, 55.552621], [37.706244, 55.552531], [37.706154, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.552621], [37.706154, 55.552711], [37.706244, 55.552711], [37.706244, 55.552621], [37.706154, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.552711], [37.706154, 55.552801], [37.706244, 55.552801], [37.706244, 55.552711], [37.706154, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.552801], [37.706154, 55.552891], [37.706244, 55.552891], [37.706244, 55.552801], [37.706154, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.552891], [37.706154, 55.552981], [37.706244, 55.552981], [37.706244, 55.552891], [37.706154, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.552981], [37.706154, 55.553071], [37.706244, 55.553071], [37.706244, 55.552981], [37.706154, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.553071], [37.706154, 55.553161], [37.706244, 55.553161], [37.706244, 55.553071], [37.706154, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.553161], [37.706154, 55.553251], [37.706244, 55.553251], [37.706244, 55.553161], [37.706154, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.553251], [37.706154, 55.553341], [37.706244, 55.553341], [37.706244, 55.553251], [37.706154, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.553341], [37.706154, 55.553431], [37.706244, 55.553431], [37.706244, 55.553341], [37.706154, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.553431], [37.706154, 55.55352], [37.706244, 55.55352], [37.706244, 55.553431], [37.706154, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.55352], [37.706154, 55.55361], [37.706244, 55.55361], [37.706244, 55.55352], [37.706154, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.55361], [37.706154, 55.5537], [37.706244, 55.5537], [37.706244, 55.55361], [37.706154, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.5537], [37.706154, 55.55379], [37.706244, 55.55379], [37.706244, 55.5537], [37.706154, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.55379], [37.706154, 55.55388], [37.706244, 55.55388], [37.706244, 55.55379], [37.706154, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.55388], [37.706154, 55.55397], [37.706244, 55.55397], [37.706244, 55.55388], [37.706154, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.55397], [37.706154, 55.55406], [37.706244, 55.55406], [37.706244, 55.55397], [37.706154, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.55406], [37.706154, 55.55415], [37.706244, 55.55415], [37.706244, 55.55406], [37.706154, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.55415], [37.706154, 55.55424], [37.706244, 55.55424], [37.706244, 55.55415], [37.706154, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.55424], [37.706154, 55.55433], [37.706244, 55.55433], [37.706244, 55.55424], [37.706154, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.55433], [37.706154, 55.55442], [37.706244, 55.55442], [37.706244, 55.55433], [37.706154, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.55442], [37.706154, 55.55451], [37.706244, 55.55451], [37.706244, 55.55442], [37.706154, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.55451], [37.706154, 55.5546], [37.706244, 55.5546], [37.706244, 55.55451], [37.706154, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.5546], [37.706154, 55.55469], [37.706244, 55.55469], [37.706244, 55.5546], [37.706154, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.55469], [37.706154, 55.55478], [37.706244, 55.55478], [37.706244, 55.55469], [37.706154, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.55478], [37.706154, 55.554869], [37.706244, 55.554869], [37.706244, 55.55478], [37.706154, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.554869], [37.706154, 55.554959], [37.706244, 55.554959], [37.706244, 55.554869], [37.706154, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.554959], [37.706154, 55.555049], [37.706244, 55.555049], [37.706244, 55.554959], [37.706154, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.555049], [37.706154, 55.555139], [37.706244, 55.555139], [37.706244, 55.555049], [37.706154, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.555139], [37.706154, 55.555229], [37.706244, 55.555229], [37.706244, 55.555139], [37.706154, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.555229], [37.706154, 55.555319], [37.706244, 55.555319], [37.706244, 55.555229], [37.706154, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.555319], [37.706154, 55.555409], [37.706244, 55.555409], [37.706244, 55.555319], [37.706154, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706154, 55.555409], [37.706154, 55.555499], [37.706244, 55.555499], [37.706244, 55.555409], [37.706154, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.551542], [37.706244, 55.551632], [37.706334, 55.551632], [37.706334, 55.551542], [37.706244, 55.551542] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.551632], [37.706244, 55.551722], [37.706334, 55.551722], [37.706334, 55.551632], [37.706244, 55.551632] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.551722], [37.706244, 55.551812], [37.706334, 55.551812], [37.706334, 55.551722], [37.706244, 55.551722] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.551812], [37.706244, 55.551902], [37.706334, 55.551902], [37.706334, 55.551812], [37.706244, 55.551812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.551902], [37.706244, 55.551992], [37.706334, 55.551992], [37.706334, 55.551902], [37.706244, 55.551902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.551992], [37.706244, 55.552082], [37.706334, 55.552082], [37.706334, 55.551992], [37.706244, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.552082], [37.706244, 55.552171], [37.706334, 55.552171], [37.706334, 55.552082], [37.706244, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.552171], [37.706244, 55.552261], [37.706334, 55.552261], [37.706334, 55.552171], [37.706244, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.552261], [37.706244, 55.552351], [37.706334, 55.552351], [37.706334, 55.552261], [37.706244, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.552351], [37.706244, 55.552441], [37.706334, 55.552441], [37.706334, 55.552351], [37.706244, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.552441], [37.706244, 55.552531], [37.706334, 55.552531], [37.706334, 55.552441], [37.706244, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.552531], [37.706244, 55.552621], [37.706334, 55.552621], [37.706334, 55.552531], [37.706244, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.552621], [37.706244, 55.552711], [37.706334, 55.552711], [37.706334, 55.552621], [37.706244, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.552711], [37.706244, 55.552801], [37.706334, 55.552801], [37.706334, 55.552711], [37.706244, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.552801], [37.706244, 55.552891], [37.706334, 55.552891], [37.706334, 55.552801], [37.706244, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.552891], [37.706244, 55.552981], [37.706334, 55.552981], [37.706334, 55.552891], [37.706244, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.552981], [37.706244, 55.553071], [37.706334, 55.553071], [37.706334, 55.552981], [37.706244, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.553071], [37.706244, 55.553161], [37.706334, 55.553161], [37.706334, 55.553071], [37.706244, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.553161], [37.706244, 55.553251], [37.706334, 55.553251], [37.706334, 55.553161], [37.706244, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.553251], [37.706244, 55.553341], [37.706334, 55.553341], [37.706334, 55.553251], [37.706244, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.553341], [37.706244, 55.553431], [37.706334, 55.553431], [37.706334, 55.553341], [37.706244, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.553431], [37.706244, 55.55352], [37.706334, 55.55352], [37.706334, 55.553431], [37.706244, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.55352], [37.706244, 55.55361], [37.706334, 55.55361], [37.706334, 55.55352], [37.706244, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.55361], [37.706244, 55.5537], [37.706334, 55.5537], [37.706334, 55.55361], [37.706244, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.5537], [37.706244, 55.55379], [37.706334, 55.55379], [37.706334, 55.5537], [37.706244, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.55379], [37.706244, 55.55388], [37.706334, 55.55388], [37.706334, 55.55379], [37.706244, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.55388], [37.706244, 55.55397], [37.706334, 55.55397], [37.706334, 55.55388], [37.706244, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.55397], [37.706244, 55.55406], [37.706334, 55.55406], [37.706334, 55.55397], [37.706244, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.55406], [37.706244, 55.55415], [37.706334, 55.55415], [37.706334, 55.55406], [37.706244, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.55415], [37.706244, 55.55424], [37.706334, 55.55424], [37.706334, 55.55415], [37.706244, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.55424], [37.706244, 55.55433], [37.706334, 55.55433], [37.706334, 55.55424], [37.706244, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.55433], [37.706244, 55.55442], [37.706334, 55.55442], [37.706334, 55.55433], [37.706244, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.55442], [37.706244, 55.55451], [37.706334, 55.55451], [37.706334, 55.55442], [37.706244, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.55451], [37.706244, 55.5546], [37.706334, 55.5546], [37.706334, 55.55451], [37.706244, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.5546], [37.706244, 55.55469], [37.706334, 55.55469], [37.706334, 55.5546], [37.706244, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.55469], [37.706244, 55.55478], [37.706334, 55.55478], [37.706334, 55.55469], [37.706244, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.55478], [37.706244, 55.554869], [37.706334, 55.554869], [37.706334, 55.55478], [37.706244, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.554869], [37.706244, 55.554959], [37.706334, 55.554959], [37.706334, 55.554869], [37.706244, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.554959], [37.706244, 55.555049], [37.706334, 55.555049], [37.706334, 55.554959], [37.706244, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.555049], [37.706244, 55.555139], [37.706334, 55.555139], [37.706334, 55.555049], [37.706244, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.555139], [37.706244, 55.555229], [37.706334, 55.555229], [37.706334, 55.555139], [37.706244, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.555229], [37.706244, 55.555319], [37.706334, 55.555319], [37.706334, 55.555229], [37.706244, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.555319], [37.706244, 55.555409], [37.706334, 55.555409], [37.706334, 55.555319], [37.706244, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706244, 55.555409], [37.706244, 55.555499], [37.706334, 55.555499], [37.706334, 55.555409], [37.706244, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.551542], [37.706334, 55.551632], [37.706424, 55.551632], [37.706424, 55.551542], [37.706334, 55.551542] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.551632], [37.706334, 55.551722], [37.706424, 55.551722], [37.706424, 55.551632], [37.706334, 55.551632] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.551722], [37.706334, 55.551812], [37.706424, 55.551812], [37.706424, 55.551722], [37.706334, 55.551722] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.551812], [37.706334, 55.551902], [37.706424, 55.551902], [37.706424, 55.551812], [37.706334, 55.551812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.551902], [37.706334, 55.551992], [37.706424, 55.551992], [37.706424, 55.551902], [37.706334, 55.551902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.551992], [37.706334, 55.552082], [37.706424, 55.552082], [37.706424, 55.551992], [37.706334, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.552082], [37.706334, 55.552171], [37.706424, 55.552171], [37.706424, 55.552082], [37.706334, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.552171], [37.706334, 55.552261], [37.706424, 55.552261], [37.706424, 55.552171], [37.706334, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.552261], [37.706334, 55.552351], [37.706424, 55.552351], [37.706424, 55.552261], [37.706334, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.552351], [37.706334, 55.552441], [37.706424, 55.552441], [37.706424, 55.552351], [37.706334, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.552441], [37.706334, 55.552531], [37.706424, 55.552531], [37.706424, 55.552441], [37.706334, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.552531], [37.706334, 55.552621], [37.706424, 55.552621], [37.706424, 55.552531], [37.706334, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.552621], [37.706334, 55.552711], [37.706424, 55.552711], [37.706424, 55.552621], [37.706334, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.552711], [37.706334, 55.552801], [37.706424, 55.552801], [37.706424, 55.552711], [37.706334, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.552801], [37.706334, 55.552891], [37.706424, 55.552891], [37.706424, 55.552801], [37.706334, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.552891], [37.706334, 55.552981], [37.706424, 55.552981], [37.706424, 55.552891], [37.706334, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.552981], [37.706334, 55.553071], [37.706424, 55.553071], [37.706424, 55.552981], [37.706334, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.553071], [37.706334, 55.553161], [37.706424, 55.553161], [37.706424, 55.553071], [37.706334, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.553161], [37.706334, 55.553251], [37.706424, 55.553251], [37.706424, 55.553161], [37.706334, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.553251], [37.706334, 55.553341], [37.706424, 55.553341], [37.706424, 55.553251], [37.706334, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.553341], [37.706334, 55.553431], [37.706424, 55.553431], [37.706424, 55.553341], [37.706334, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.553431], [37.706334, 55.55352], [37.706424, 55.55352], [37.706424, 55.553431], [37.706334, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.55352], [37.706334, 55.55361], [37.706424, 55.55361], [37.706424, 55.55352], [37.706334, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.55361], [37.706334, 55.5537], [37.706424, 55.5537], [37.706424, 55.55361], [37.706334, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.5537], [37.706334, 55.55379], [37.706424, 55.55379], [37.706424, 55.5537], [37.706334, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.55379], [37.706334, 55.55388], [37.706424, 55.55388], [37.706424, 55.55379], [37.706334, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.55388], [37.706334, 55.55397], [37.706424, 55.55397], [37.706424, 55.55388], [37.706334, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.55397], [37.706334, 55.55406], [37.706424, 55.55406], [37.706424, 55.55397], [37.706334, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.55406], [37.706334, 55.55415], [37.706424, 55.55415], [37.706424, 55.55406], [37.706334, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.55415], [37.706334, 55.55424], [37.706424, 55.55424], [37.706424, 55.55415], [37.706334, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.55424], [37.706334, 55.55433], [37.706424, 55.55433], [37.706424, 55.55424], [37.706334, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.55433], [37.706334, 55.55442], [37.706424, 55.55442], [37.706424, 55.55433], [37.706334, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.55442], [37.706334, 55.55451], [37.706424, 55.55451], [37.706424, 55.55442], [37.706334, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.55451], [37.706334, 55.5546], [37.706424, 55.5546], [37.706424, 55.55451], [37.706334, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.5546], [37.706334, 55.55469], [37.706424, 55.55469], [37.706424, 55.5546], [37.706334, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.55469], [37.706334, 55.55478], [37.706424, 55.55478], [37.706424, 55.55469], [37.706334, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.55478], [37.706334, 55.554869], [37.706424, 55.554869], [37.706424, 55.55478], [37.706334, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.554869], [37.706334, 55.554959], [37.706424, 55.554959], [37.706424, 55.554869], [37.706334, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.554959], [37.706334, 55.555049], [37.706424, 55.555049], [37.706424, 55.554959], [37.706334, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.555049], [37.706334, 55.555139], [37.706424, 55.555139], [37.706424, 55.555049], [37.706334, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.555139], [37.706334, 55.555229], [37.706424, 55.555229], [37.706424, 55.555139], [37.706334, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.555229], [37.706334, 55.555319], [37.706424, 55.555319], [37.706424, 55.555229], [37.706334, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.555319], [37.706334, 55.555409], [37.706424, 55.555409], [37.706424, 55.555319], [37.706334, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706334, 55.555409], [37.706334, 55.555499], [37.706424, 55.555499], [37.706424, 55.555409], [37.706334, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.551542], [37.706424, 55.551632], [37.706514, 55.551632], [37.706514, 55.551542], [37.706424, 55.551542] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.551632], [37.706424, 55.551722], [37.706514, 55.551722], [37.706514, 55.551632], [37.706424, 55.551632] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.551722], [37.706424, 55.551812], [37.706514, 55.551812], [37.706514, 55.551722], [37.706424, 55.551722] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.551812], [37.706424, 55.551902], [37.706514, 55.551902], [37.706514, 55.551812], [37.706424, 55.551812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.551902], [37.706424, 55.551992], [37.706514, 55.551992], [37.706514, 55.551902], [37.706424, 55.551902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.551992], [37.706424, 55.552082], [37.706514, 55.552082], [37.706514, 55.551992], [37.706424, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.552082], [37.706424, 55.552171], [37.706514, 55.552171], [37.706514, 55.552082], [37.706424, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.552171], [37.706424, 55.552261], [37.706514, 55.552261], [37.706514, 55.552171], [37.706424, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.552261], [37.706424, 55.552351], [37.706514, 55.552351], [37.706514, 55.552261], [37.706424, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.552351], [37.706424, 55.552441], [37.706514, 55.552441], [37.706514, 55.552351], [37.706424, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.552441], [37.706424, 55.552531], [37.706514, 55.552531], [37.706514, 55.552441], [37.706424, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.552531], [37.706424, 55.552621], [37.706514, 55.552621], [37.706514, 55.552531], [37.706424, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.552621], [37.706424, 55.552711], [37.706514, 55.552711], [37.706514, 55.552621], [37.706424, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.552711], [37.706424, 55.552801], [37.706514, 55.552801], [37.706514, 55.552711], [37.706424, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.552801], [37.706424, 55.552891], [37.706514, 55.552891], [37.706514, 55.552801], [37.706424, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.552891], [37.706424, 55.552981], [37.706514, 55.552981], [37.706514, 55.552891], [37.706424, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.552981], [37.706424, 55.553071], [37.706514, 55.553071], [37.706514, 55.552981], [37.706424, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.553071], [37.706424, 55.553161], [37.706514, 55.553161], [37.706514, 55.553071], [37.706424, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.553161], [37.706424, 55.553251], [37.706514, 55.553251], [37.706514, 55.553161], [37.706424, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.553251], [37.706424, 55.553341], [37.706514, 55.553341], [37.706514, 55.553251], [37.706424, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.553341], [37.706424, 55.553431], [37.706514, 55.553431], [37.706514, 55.553341], [37.706424, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.553431], [37.706424, 55.55352], [37.706514, 55.55352], [37.706514, 55.553431], [37.706424, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.55352], [37.706424, 55.55361], [37.706514, 55.55361], [37.706514, 55.55352], [37.706424, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.55361], [37.706424, 55.5537], [37.706514, 55.5537], [37.706514, 55.55361], [37.706424, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.5537], [37.706424, 55.55379], [37.706514, 55.55379], [37.706514, 55.5537], [37.706424, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.55379], [37.706424, 55.55388], [37.706514, 55.55388], [37.706514, 55.55379], [37.706424, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.55388], [37.706424, 55.55397], [37.706514, 55.55397], [37.706514, 55.55388], [37.706424, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.55397], [37.706424, 55.55406], [37.706514, 55.55406], [37.706514, 55.55397], [37.706424, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.55406], [37.706424, 55.55415], [37.706514, 55.55415], [37.706514, 55.55406], [37.706424, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.55415], [37.706424, 55.55424], [37.706514, 55.55424], [37.706514, 55.55415], [37.706424, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.55424], [37.706424, 55.55433], [37.706514, 55.55433], [37.706514, 55.55424], [37.706424, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.55433], [37.706424, 55.55442], [37.706514, 55.55442], [37.706514, 55.55433], [37.706424, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.55442], [37.706424, 55.55451], [37.706514, 55.55451], [37.706514, 55.55442], [37.706424, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.55451], [37.706424, 55.5546], [37.706514, 55.5546], [37.706514, 55.55451], [37.706424, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.5546], [37.706424, 55.55469], [37.706514, 55.55469], [37.706514, 55.5546], [37.706424, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.55469], [37.706424, 55.55478], [37.706514, 55.55478], [37.706514, 55.55469], [37.706424, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.55478], [37.706424, 55.554869], [37.706514, 55.554869], [37.706514, 55.55478], [37.706424, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.554869], [37.706424, 55.554959], [37.706514, 55.554959], [37.706514, 55.554869], [37.706424, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.554959], [37.706424, 55.555049], [37.706514, 55.555049], [37.706514, 55.554959], [37.706424, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.555049], [37.706424, 55.555139], [37.706514, 55.555139], [37.706514, 55.555049], [37.706424, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.555139], [37.706424, 55.555229], [37.706514, 55.555229], [37.706514, 55.555139], [37.706424, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.555229], [37.706424, 55.555319], [37.706514, 55.555319], [37.706514, 55.555229], [37.706424, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.555319], [37.706424, 55.555409], [37.706514, 55.555409], [37.706514, 55.555319], [37.706424, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.555409], [37.706424, 55.555499], [37.706514, 55.555499], [37.706514, 55.555409], [37.706424, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706424, 55.555499], [37.706424, 55.555589], [37.706514, 55.555589], [37.706514, 55.555499], [37.706424, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.551542], [37.706514, 55.551632], [37.706604, 55.551632], [37.706604, 55.551542], [37.706514, 55.551542] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.551632], [37.706514, 55.551722], [37.706604, 55.551722], [37.706604, 55.551632], [37.706514, 55.551632] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.551722], [37.706514, 55.551812], [37.706604, 55.551812], [37.706604, 55.551722], [37.706514, 55.551722] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.551812], [37.706514, 55.551902], [37.706604, 55.551902], [37.706604, 55.551812], [37.706514, 55.551812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.551902], [37.706514, 55.551992], [37.706604, 55.551992], [37.706604, 55.551902], [37.706514, 55.551902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.551992], [37.706514, 55.552082], [37.706604, 55.552082], [37.706604, 55.551992], [37.706514, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.552082], [37.706514, 55.552171], [37.706604, 55.552171], [37.706604, 55.552082], [37.706514, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.552171], [37.706514, 55.552261], [37.706604, 55.552261], [37.706604, 55.552171], [37.706514, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.552261], [37.706514, 55.552351], [37.706604, 55.552351], [37.706604, 55.552261], [37.706514, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.552351], [37.706514, 55.552441], [37.706604, 55.552441], [37.706604, 55.552351], [37.706514, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.552441], [37.706514, 55.552531], [37.706604, 55.552531], [37.706604, 55.552441], [37.706514, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.552531], [37.706514, 55.552621], [37.706604, 55.552621], [37.706604, 55.552531], [37.706514, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.552621], [37.706514, 55.552711], [37.706604, 55.552711], [37.706604, 55.552621], [37.706514, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.552711], [37.706514, 55.552801], [37.706604, 55.552801], [37.706604, 55.552711], [37.706514, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.552801], [37.706514, 55.552891], [37.706604, 55.552891], [37.706604, 55.552801], [37.706514, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.552891], [37.706514, 55.552981], [37.706604, 55.552981], [37.706604, 55.552891], [37.706514, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.552981], [37.706514, 55.553071], [37.706604, 55.553071], [37.706604, 55.552981], [37.706514, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.553071], [37.706514, 55.553161], [37.706604, 55.553161], [37.706604, 55.553071], [37.706514, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.553161], [37.706514, 55.553251], [37.706604, 55.553251], [37.706604, 55.553161], [37.706514, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.553251], [37.706514, 55.553341], [37.706604, 55.553341], [37.706604, 55.553251], [37.706514, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.553341], [37.706514, 55.553431], [37.706604, 55.553431], [37.706604, 55.553341], [37.706514, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.553431], [37.706514, 55.55352], [37.706604, 55.55352], [37.706604, 55.553431], [37.706514, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.55352], [37.706514, 55.55361], [37.706604, 55.55361], [37.706604, 55.55352], [37.706514, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.55361], [37.706514, 55.5537], [37.706604, 55.5537], [37.706604, 55.55361], [37.706514, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.5537], [37.706514, 55.55379], [37.706604, 55.55379], [37.706604, 55.5537], [37.706514, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.55379], [37.706514, 55.55388], [37.706604, 55.55388], [37.706604, 55.55379], [37.706514, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.55388], [37.706514, 55.55397], [37.706604, 55.55397], [37.706604, 55.55388], [37.706514, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.55397], [37.706514, 55.55406], [37.706604, 55.55406], [37.706604, 55.55397], [37.706514, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.55406], [37.706514, 55.55415], [37.706604, 55.55415], [37.706604, 55.55406], [37.706514, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.55415], [37.706514, 55.55424], [37.706604, 55.55424], [37.706604, 55.55415], [37.706514, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.55424], [37.706514, 55.55433], [37.706604, 55.55433], [37.706604, 55.55424], [37.706514, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.55433], [37.706514, 55.55442], [37.706604, 55.55442], [37.706604, 55.55433], [37.706514, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.55442], [37.706514, 55.55451], [37.706604, 55.55451], [37.706604, 55.55442], [37.706514, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.55451], [37.706514, 55.5546], [37.706604, 55.5546], [37.706604, 55.55451], [37.706514, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.5546], [37.706514, 55.55469], [37.706604, 55.55469], [37.706604, 55.5546], [37.706514, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.55469], [37.706514, 55.55478], [37.706604, 55.55478], [37.706604, 55.55469], [37.706514, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.55478], [37.706514, 55.554869], [37.706604, 55.554869], [37.706604, 55.55478], [37.706514, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.554869], [37.706514, 55.554959], [37.706604, 55.554959], [37.706604, 55.554869], [37.706514, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.554959], [37.706514, 55.555049], [37.706604, 55.555049], [37.706604, 55.554959], [37.706514, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.555049], [37.706514, 55.555139], [37.706604, 55.555139], [37.706604, 55.555049], [37.706514, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.555139], [37.706514, 55.555229], [37.706604, 55.555229], [37.706604, 55.555139], [37.706514, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.555229], [37.706514, 55.555319], [37.706604, 55.555319], [37.706604, 55.555229], [37.706514, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.555319], [37.706514, 55.555409], [37.706604, 55.555409], [37.706604, 55.555319], [37.706514, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.555409], [37.706514, 55.555499], [37.706604, 55.555499], [37.706604, 55.555409], [37.706514, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706514, 55.555499], [37.706514, 55.555589], [37.706604, 55.555589], [37.706604, 55.555499], [37.706514, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.551542], [37.706604, 55.551632], [37.706694, 55.551632], [37.706694, 55.551542], [37.706604, 55.551542] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.551632], [37.706604, 55.551722], [37.706694, 55.551722], [37.706694, 55.551632], [37.706604, 55.551632] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.551722], [37.706604, 55.551812], [37.706694, 55.551812], [37.706694, 55.551722], [37.706604, 55.551722] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.551812], [37.706604, 55.551902], [37.706694, 55.551902], [37.706694, 55.551812], [37.706604, 55.551812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.551902], [37.706604, 55.551992], [37.706694, 55.551992], [37.706694, 55.551902], [37.706604, 55.551902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.551992], [37.706604, 55.552082], [37.706694, 55.552082], [37.706694, 55.551992], [37.706604, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.552082], [37.706604, 55.552171], [37.706694, 55.552171], [37.706694, 55.552082], [37.706604, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.552171], [37.706604, 55.552261], [37.706694, 55.552261], [37.706694, 55.552171], [37.706604, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.552261], [37.706604, 55.552351], [37.706694, 55.552351], [37.706694, 55.552261], [37.706604, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.552351], [37.706604, 55.552441], [37.706694, 55.552441], [37.706694, 55.552351], [37.706604, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.552441], [37.706604, 55.552531], [37.706694, 55.552531], [37.706694, 55.552441], [37.706604, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.552531], [37.706604, 55.552621], [37.706694, 55.552621], [37.706694, 55.552531], [37.706604, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.552621], [37.706604, 55.552711], [37.706694, 55.552711], [37.706694, 55.552621], [37.706604, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.552711], [37.706604, 55.552801], [37.706694, 55.552801], [37.706694, 55.552711], [37.706604, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.552801], [37.706604, 55.552891], [37.706694, 55.552891], [37.706694, 55.552801], [37.706604, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.552891], [37.706604, 55.552981], [37.706694, 55.552981], [37.706694, 55.552891], [37.706604, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.552981], [37.706604, 55.553071], [37.706694, 55.553071], [37.706694, 55.552981], [37.706604, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.553071], [37.706604, 55.553161], [37.706694, 55.553161], [37.706694, 55.553071], [37.706604, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.553161], [37.706604, 55.553251], [37.706694, 55.553251], [37.706694, 55.553161], [37.706604, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.553251], [37.706604, 55.553341], [37.706694, 55.553341], [37.706694, 55.553251], [37.706604, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.553341], [37.706604, 55.553431], [37.706694, 55.553431], [37.706694, 55.553341], [37.706604, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.553431], [37.706604, 55.55352], [37.706694, 55.55352], [37.706694, 55.553431], [37.706604, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.55352], [37.706604, 55.55361], [37.706694, 55.55361], [37.706694, 55.55352], [37.706604, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.55361], [37.706604, 55.5537], [37.706694, 55.5537], [37.706694, 55.55361], [37.706604, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.5537], [37.706604, 55.55379], [37.706694, 55.55379], [37.706694, 55.5537], [37.706604, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.55379], [37.706604, 55.55388], [37.706694, 55.55388], [37.706694, 55.55379], [37.706604, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.55388], [37.706604, 55.55397], [37.706694, 55.55397], [37.706694, 55.55388], [37.706604, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.55397], [37.706604, 55.55406], [37.706694, 55.55406], [37.706694, 55.55397], [37.706604, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.55406], [37.706604, 55.55415], [37.706694, 55.55415], [37.706694, 55.55406], [37.706604, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.55415], [37.706604, 55.55424], [37.706694, 55.55424], [37.706694, 55.55415], [37.706604, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.55424], [37.706604, 55.55433], [37.706694, 55.55433], [37.706694, 55.55424], [37.706604, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.55433], [37.706604, 55.55442], [37.706694, 55.55442], [37.706694, 55.55433], [37.706604, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.55442], [37.706604, 55.55451], [37.706694, 55.55451], [37.706694, 55.55442], [37.706604, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.55451], [37.706604, 55.5546], [37.706694, 55.5546], [37.706694, 55.55451], [37.706604, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.5546], [37.706604, 55.55469], [37.706694, 55.55469], [37.706694, 55.5546], [37.706604, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.55469], [37.706604, 55.55478], [37.706694, 55.55478], [37.706694, 55.55469], [37.706604, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.55478], [37.706604, 55.554869], [37.706694, 55.554869], [37.706694, 55.55478], [37.706604, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.554869], [37.706604, 55.554959], [37.706694, 55.554959], [37.706694, 55.554869], [37.706604, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.554959], [37.706604, 55.555049], [37.706694, 55.555049], [37.706694, 55.554959], [37.706604, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.555049], [37.706604, 55.555139], [37.706694, 55.555139], [37.706694, 55.555049], [37.706604, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.555139], [37.706604, 55.555229], [37.706694, 55.555229], [37.706694, 55.555139], [37.706604, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.555229], [37.706604, 55.555319], [37.706694, 55.555319], [37.706694, 55.555229], [37.706604, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.555319], [37.706604, 55.555409], [37.706694, 55.555409], [37.706694, 55.555319], [37.706604, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.555409], [37.706604, 55.555499], [37.706694, 55.555499], [37.706694, 55.555409], [37.706604, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706604, 55.555499], [37.706604, 55.555589], [37.706694, 55.555589], [37.706694, 55.555499], [37.706604, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.551722], [37.706694, 55.551812], [37.706784, 55.551812], [37.706784, 55.551722], [37.706694, 55.551722] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.551812], [37.706694, 55.551902], [37.706784, 55.551902], [37.706784, 55.551812], [37.706694, 55.551812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.551902], [37.706694, 55.551992], [37.706784, 55.551992], [37.706784, 55.551902], [37.706694, 55.551902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.551992], [37.706694, 55.552082], [37.706784, 55.552082], [37.706784, 55.551992], [37.706694, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.552082], [37.706694, 55.552171], [37.706784, 55.552171], [37.706784, 55.552082], [37.706694, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.552171], [37.706694, 55.552261], [37.706784, 55.552261], [37.706784, 55.552171], [37.706694, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.552261], [37.706694, 55.552351], [37.706784, 55.552351], [37.706784, 55.552261], [37.706694, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.552351], [37.706694, 55.552441], [37.706784, 55.552441], [37.706784, 55.552351], [37.706694, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.552441], [37.706694, 55.552531], [37.706784, 55.552531], [37.706784, 55.552441], [37.706694, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.552531], [37.706694, 55.552621], [37.706784, 55.552621], [37.706784, 55.552531], [37.706694, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.552621], [37.706694, 55.552711], [37.706784, 55.552711], [37.706784, 55.552621], [37.706694, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.552711], [37.706694, 55.552801], [37.706784, 55.552801], [37.706784, 55.552711], [37.706694, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.552801], [37.706694, 55.552891], [37.706784, 55.552891], [37.706784, 55.552801], [37.706694, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.552891], [37.706694, 55.552981], [37.706784, 55.552981], [37.706784, 55.552891], [37.706694, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.552981], [37.706694, 55.553071], [37.706784, 55.553071], [37.706784, 55.552981], [37.706694, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.553071], [37.706694, 55.553161], [37.706784, 55.553161], [37.706784, 55.553071], [37.706694, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.553161], [37.706694, 55.553251], [37.706784, 55.553251], [37.706784, 55.553161], [37.706694, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.553251], [37.706694, 55.553341], [37.706784, 55.553341], [37.706784, 55.553251], [37.706694, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.553341], [37.706694, 55.553431], [37.706784, 55.553431], [37.706784, 55.553341], [37.706694, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.553431], [37.706694, 55.55352], [37.706784, 55.55352], [37.706784, 55.553431], [37.706694, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.55352], [37.706694, 55.55361], [37.706784, 55.55361], [37.706784, 55.55352], [37.706694, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.55361], [37.706694, 55.5537], [37.706784, 55.5537], [37.706784, 55.55361], [37.706694, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.5537], [37.706694, 55.55379], [37.706784, 55.55379], [37.706784, 55.5537], [37.706694, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.55379], [37.706694, 55.55388], [37.706784, 55.55388], [37.706784, 55.55379], [37.706694, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.55388], [37.706694, 55.55397], [37.706784, 55.55397], [37.706784, 55.55388], [37.706694, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.55397], [37.706694, 55.55406], [37.706784, 55.55406], [37.706784, 55.55397], [37.706694, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.55406], [37.706694, 55.55415], [37.706784, 55.55415], [37.706784, 55.55406], [37.706694, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.55415], [37.706694, 55.55424], [37.706784, 55.55424], [37.706784, 55.55415], [37.706694, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.55424], [37.706694, 55.55433], [37.706784, 55.55433], [37.706784, 55.55424], [37.706694, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.55433], [37.706694, 55.55442], [37.706784, 55.55442], [37.706784, 55.55433], [37.706694, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.55442], [37.706694, 55.55451], [37.706784, 55.55451], [37.706784, 55.55442], [37.706694, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.55451], [37.706694, 55.5546], [37.706784, 55.5546], [37.706784, 55.55451], [37.706694, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.5546], [37.706694, 55.55469], [37.706784, 55.55469], [37.706784, 55.5546], [37.706694, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.55469], [37.706694, 55.55478], [37.706784, 55.55478], [37.706784, 55.55469], [37.706694, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.55478], [37.706694, 55.554869], [37.706784, 55.554869], [37.706784, 55.55478], [37.706694, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.554869], [37.706694, 55.554959], [37.706784, 55.554959], [37.706784, 55.554869], [37.706694, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.554959], [37.706694, 55.555049], [37.706784, 55.555049], [37.706784, 55.554959], [37.706694, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.555049], [37.706694, 55.555139], [37.706784, 55.555139], [37.706784, 55.555049], [37.706694, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.555139], [37.706694, 55.555229], [37.706784, 55.555229], [37.706784, 55.555139], [37.706694, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.555229], [37.706694, 55.555319], [37.706784, 55.555319], [37.706784, 55.555229], [37.706694, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.555319], [37.706694, 55.555409], [37.706784, 55.555409], [37.706784, 55.555319], [37.706694, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.555409], [37.706694, 55.555499], [37.706784, 55.555499], [37.706784, 55.555409], [37.706694, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.555499], [37.706694, 55.555589], [37.706784, 55.555589], [37.706784, 55.555499], [37.706694, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706694, 55.555589], [37.706694, 55.555679], [37.706784, 55.555679], [37.706784, 55.555589], [37.706694, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.551812], [37.706784, 55.551902], [37.706874, 55.551902], [37.706874, 55.551812], [37.706784, 55.551812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.551902], [37.706784, 55.551992], [37.706874, 55.551992], [37.706874, 55.551902], [37.706784, 55.551902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.551992], [37.706784, 55.552082], [37.706874, 55.552082], [37.706874, 55.551992], [37.706784, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.552082], [37.706784, 55.552171], [37.706874, 55.552171], [37.706874, 55.552082], [37.706784, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.552171], [37.706784, 55.552261], [37.706874, 55.552261], [37.706874, 55.552171], [37.706784, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.552261], [37.706784, 55.552351], [37.706874, 55.552351], [37.706874, 55.552261], [37.706784, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.552351], [37.706784, 55.552441], [37.706874, 55.552441], [37.706874, 55.552351], [37.706784, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.552441], [37.706784, 55.552531], [37.706874, 55.552531], [37.706874, 55.552441], [37.706784, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.552531], [37.706784, 55.552621], [37.706874, 55.552621], [37.706874, 55.552531], [37.706784, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.552621], [37.706784, 55.552711], [37.706874, 55.552711], [37.706874, 55.552621], [37.706784, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.552711], [37.706784, 55.552801], [37.706874, 55.552801], [37.706874, 55.552711], [37.706784, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.552801], [37.706784, 55.552891], [37.706874, 55.552891], [37.706874, 55.552801], [37.706784, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.552891], [37.706784, 55.552981], [37.706874, 55.552981], [37.706874, 55.552891], [37.706784, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.552981], [37.706784, 55.553071], [37.706874, 55.553071], [37.706874, 55.552981], [37.706784, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.553071], [37.706784, 55.553161], [37.706874, 55.553161], [37.706874, 55.553071], [37.706784, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.553161], [37.706784, 55.553251], [37.706874, 55.553251], [37.706874, 55.553161], [37.706784, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.553251], [37.706784, 55.553341], [37.706874, 55.553341], [37.706874, 55.553251], [37.706784, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.553341], [37.706784, 55.553431], [37.706874, 55.553431], [37.706874, 55.553341], [37.706784, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.553431], [37.706784, 55.55352], [37.706874, 55.55352], [37.706874, 55.553431], [37.706784, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.55352], [37.706784, 55.55361], [37.706874, 55.55361], [37.706874, 55.55352], [37.706784, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.55361], [37.706784, 55.5537], [37.706874, 55.5537], [37.706874, 55.55361], [37.706784, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.5537], [37.706784, 55.55379], [37.706874, 55.55379], [37.706874, 55.5537], [37.706784, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.55379], [37.706784, 55.55388], [37.706874, 55.55388], [37.706874, 55.55379], [37.706784, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.55388], [37.706784, 55.55397], [37.706874, 55.55397], [37.706874, 55.55388], [37.706784, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.55397], [37.706784, 55.55406], [37.706874, 55.55406], [37.706874, 55.55397], [37.706784, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.55406], [37.706784, 55.55415], [37.706874, 55.55415], [37.706874, 55.55406], [37.706784, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.55415], [37.706784, 55.55424], [37.706874, 55.55424], [37.706874, 55.55415], [37.706784, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.55424], [37.706784, 55.55433], [37.706874, 55.55433], [37.706874, 55.55424], [37.706784, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.55433], [37.706784, 55.55442], [37.706874, 55.55442], [37.706874, 55.55433], [37.706784, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.55442], [37.706784, 55.55451], [37.706874, 55.55451], [37.706874, 55.55442], [37.706784, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.55451], [37.706784, 55.5546], [37.706874, 55.5546], [37.706874, 55.55451], [37.706784, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.5546], [37.706784, 55.55469], [37.706874, 55.55469], [37.706874, 55.5546], [37.706784, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.55469], [37.706784, 55.55478], [37.706874, 55.55478], [37.706874, 55.55469], [37.706784, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.55478], [37.706784, 55.554869], [37.706874, 55.554869], [37.706874, 55.55478], [37.706784, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.554869], [37.706784, 55.554959], [37.706874, 55.554959], [37.706874, 55.554869], [37.706784, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.554959], [37.706784, 55.555049], [37.706874, 55.555049], [37.706874, 55.554959], [37.706784, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.555049], [37.706784, 55.555139], [37.706874, 55.555139], [37.706874, 55.555049], [37.706784, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.555139], [37.706784, 55.555229], [37.706874, 55.555229], [37.706874, 55.555139], [37.706784, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.555229], [37.706784, 55.555319], [37.706874, 55.555319], [37.706874, 55.555229], [37.706784, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.555319], [37.706784, 55.555409], [37.706874, 55.555409], [37.706874, 55.555319], [37.706784, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.555409], [37.706784, 55.555499], [37.706874, 55.555499], [37.706874, 55.555409], [37.706784, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.555499], [37.706784, 55.555589], [37.706874, 55.555589], [37.706874, 55.555499], [37.706784, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706784, 55.555589], [37.706784, 55.555679], [37.706874, 55.555679], [37.706874, 55.555589], [37.706784, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.551902], [37.706874, 55.551992], [37.706964, 55.551992], [37.706964, 55.551902], [37.706874, 55.551902] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.551992], [37.706874, 55.552082], [37.706964, 55.552082], [37.706964, 55.551992], [37.706874, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.552082], [37.706874, 55.552171], [37.706964, 55.552171], [37.706964, 55.552082], [37.706874, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.552171], [37.706874, 55.552261], [37.706964, 55.552261], [37.706964, 55.552171], [37.706874, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.552261], [37.706874, 55.552351], [37.706964, 55.552351], [37.706964, 55.552261], [37.706874, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.552351], [37.706874, 55.552441], [37.706964, 55.552441], [37.706964, 55.552351], [37.706874, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.552441], [37.706874, 55.552531], [37.706964, 55.552531], [37.706964, 55.552441], [37.706874, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.552531], [37.706874, 55.552621], [37.706964, 55.552621], [37.706964, 55.552531], [37.706874, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.552621], [37.706874, 55.552711], [37.706964, 55.552711], [37.706964, 55.552621], [37.706874, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.552711], [37.706874, 55.552801], [37.706964, 55.552801], [37.706964, 55.552711], [37.706874, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.552801], [37.706874, 55.552891], [37.706964, 55.552891], [37.706964, 55.552801], [37.706874, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.552891], [37.706874, 55.552981], [37.706964, 55.552981], [37.706964, 55.552891], [37.706874, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.552981], [37.706874, 55.553071], [37.706964, 55.553071], [37.706964, 55.552981], [37.706874, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.553071], [37.706874, 55.553161], [37.706964, 55.553161], [37.706964, 55.553071], [37.706874, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.553161], [37.706874, 55.553251], [37.706964, 55.553251], [37.706964, 55.553161], [37.706874, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.553251], [37.706874, 55.553341], [37.706964, 55.553341], [37.706964, 55.553251], [37.706874, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.553341], [37.706874, 55.553431], [37.706964, 55.553431], [37.706964, 55.553341], [37.706874, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.553431], [37.706874, 55.55352], [37.706964, 55.55352], [37.706964, 55.553431], [37.706874, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.55352], [37.706874, 55.55361], [37.706964, 55.55361], [37.706964, 55.55352], [37.706874, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.55361], [37.706874, 55.5537], [37.706964, 55.5537], [37.706964, 55.55361], [37.706874, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.5537], [37.706874, 55.55379], [37.706964, 55.55379], [37.706964, 55.5537], [37.706874, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.55379], [37.706874, 55.55388], [37.706964, 55.55388], [37.706964, 55.55379], [37.706874, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.55388], [37.706874, 55.55397], [37.706964, 55.55397], [37.706964, 55.55388], [37.706874, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.55397], [37.706874, 55.55406], [37.706964, 55.55406], [37.706964, 55.55397], [37.706874, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.55406], [37.706874, 55.55415], [37.706964, 55.55415], [37.706964, 55.55406], [37.706874, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.55415], [37.706874, 55.55424], [37.706964, 55.55424], [37.706964, 55.55415], [37.706874, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.55424], [37.706874, 55.55433], [37.706964, 55.55433], [37.706964, 55.55424], [37.706874, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.55433], [37.706874, 55.55442], [37.706964, 55.55442], [37.706964, 55.55433], [37.706874, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.55442], [37.706874, 55.55451], [37.706964, 55.55451], [37.706964, 55.55442], [37.706874, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.55451], [37.706874, 55.5546], [37.706964, 55.5546], [37.706964, 55.55451], [37.706874, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.5546], [37.706874, 55.55469], [37.706964, 55.55469], [37.706964, 55.5546], [37.706874, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.55469], [37.706874, 55.55478], [37.706964, 55.55478], [37.706964, 55.55469], [37.706874, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.55478], [37.706874, 55.554869], [37.706964, 55.554869], [37.706964, 55.55478], [37.706874, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.554869], [37.706874, 55.554959], [37.706964, 55.554959], [37.706964, 55.554869], [37.706874, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.554959], [37.706874, 55.555049], [37.706964, 55.555049], [37.706964, 55.554959], [37.706874, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.555049], [37.706874, 55.555139], [37.706964, 55.555139], [37.706964, 55.555049], [37.706874, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.555139], [37.706874, 55.555229], [37.706964, 55.555229], [37.706964, 55.555139], [37.706874, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.555229], [37.706874, 55.555319], [37.706964, 55.555319], [37.706964, 55.555229], [37.706874, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.555319], [37.706874, 55.555409], [37.706964, 55.555409], [37.706964, 55.555319], [37.706874, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.555409], [37.706874, 55.555499], [37.706964, 55.555499], [37.706964, 55.555409], [37.706874, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.555499], [37.706874, 55.555589], [37.706964, 55.555589], [37.706964, 55.555499], [37.706874, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706874, 55.555589], [37.706874, 55.555679], [37.706964, 55.555679], [37.706964, 55.555589], [37.706874, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.551992], [37.706964, 55.552082], [37.707054, 55.552082], [37.707054, 55.551992], [37.706964, 55.551992] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.552082], [37.706964, 55.552171], [37.707054, 55.552171], [37.707054, 55.552082], [37.706964, 55.552082] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.552171], [37.706964, 55.552261], [37.707054, 55.552261], [37.707054, 55.552171], [37.706964, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.552261], [37.706964, 55.552351], [37.707054, 55.552351], [37.707054, 55.552261], [37.706964, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.552351], [37.706964, 55.552441], [37.707054, 55.552441], [37.707054, 55.552351], [37.706964, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.552441], [37.706964, 55.552531], [37.707054, 55.552531], [37.707054, 55.552441], [37.706964, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.552531], [37.706964, 55.552621], [37.707054, 55.552621], [37.707054, 55.552531], [37.706964, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.552621], [37.706964, 55.552711], [37.707054, 55.552711], [37.707054, 55.552621], [37.706964, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.552711], [37.706964, 55.552801], [37.707054, 55.552801], [37.707054, 55.552711], [37.706964, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.552801], [37.706964, 55.552891], [37.707054, 55.552891], [37.707054, 55.552801], [37.706964, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.552891], [37.706964, 55.552981], [37.707054, 55.552981], [37.707054, 55.552891], [37.706964, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.552981], [37.706964, 55.553071], [37.707054, 55.553071], [37.707054, 55.552981], [37.706964, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.553071], [37.706964, 55.553161], [37.707054, 55.553161], [37.707054, 55.553071], [37.706964, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.553161], [37.706964, 55.553251], [37.707054, 55.553251], [37.707054, 55.553161], [37.706964, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.553251], [37.706964, 55.553341], [37.707054, 55.553341], [37.707054, 55.553251], [37.706964, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.553341], [37.706964, 55.553431], [37.707054, 55.553431], [37.707054, 55.553341], [37.706964, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.553431], [37.706964, 55.55352], [37.707054, 55.55352], [37.707054, 55.553431], [37.706964, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.55352], [37.706964, 55.55361], [37.707054, 55.55361], [37.707054, 55.55352], [37.706964, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.55361], [37.706964, 55.5537], [37.707054, 55.5537], [37.707054, 55.55361], [37.706964, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.5537], [37.706964, 55.55379], [37.707054, 55.55379], [37.707054, 55.5537], [37.706964, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.55379], [37.706964, 55.55388], [37.707054, 55.55388], [37.707054, 55.55379], [37.706964, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.55388], [37.706964, 55.55397], [37.707054, 55.55397], [37.707054, 55.55388], [37.706964, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.55397], [37.706964, 55.55406], [37.707054, 55.55406], [37.707054, 55.55397], [37.706964, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.55406], [37.706964, 55.55415], [37.707054, 55.55415], [37.707054, 55.55406], [37.706964, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.55415], [37.706964, 55.55424], [37.707054, 55.55424], [37.707054, 55.55415], [37.706964, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.55424], [37.706964, 55.55433], [37.707054, 55.55433], [37.707054, 55.55424], [37.706964, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.55433], [37.706964, 55.55442], [37.707054, 55.55442], [37.707054, 55.55433], [37.706964, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.55442], [37.706964, 55.55451], [37.707054, 55.55451], [37.707054, 55.55442], [37.706964, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.55451], [37.706964, 55.5546], [37.707054, 55.5546], [37.707054, 55.55451], [37.706964, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.5546], [37.706964, 55.55469], [37.707054, 55.55469], [37.707054, 55.5546], [37.706964, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.55469], [37.706964, 55.55478], [37.707054, 55.55478], [37.707054, 55.55469], [37.706964, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.55478], [37.706964, 55.554869], [37.707054, 55.554869], [37.707054, 55.55478], [37.706964, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.554869], [37.706964, 55.554959], [37.707054, 55.554959], [37.707054, 55.554869], [37.706964, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.554959], [37.706964, 55.555049], [37.707054, 55.555049], [37.707054, 55.554959], [37.706964, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.555049], [37.706964, 55.555139], [37.707054, 55.555139], [37.707054, 55.555049], [37.706964, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.555139], [37.706964, 55.555229], [37.707054, 55.555229], [37.707054, 55.555139], [37.706964, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.555229], [37.706964, 55.555319], [37.707054, 55.555319], [37.707054, 55.555229], [37.706964, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.555319], [37.706964, 55.555409], [37.707054, 55.555409], [37.707054, 55.555319], [37.706964, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.555409], [37.706964, 55.555499], [37.707054, 55.555499], [37.707054, 55.555409], [37.706964, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.555499], [37.706964, 55.555589], [37.707054, 55.555589], [37.707054, 55.555499], [37.706964, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.706964, 55.555589], [37.706964, 55.555679], [37.707054, 55.555679], [37.707054, 55.555589], [37.706964, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.552171], [37.707054, 55.552261], [37.707144, 55.552261], [37.707144, 55.552171], [37.707054, 55.552171] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.552261], [37.707054, 55.552351], [37.707144, 55.552351], [37.707144, 55.552261], [37.707054, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.552351], [37.707054, 55.552441], [37.707144, 55.552441], [37.707144, 55.552351], [37.707054, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.552441], [37.707054, 55.552531], [37.707144, 55.552531], [37.707144, 55.552441], [37.707054, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.552531], [37.707054, 55.552621], [37.707144, 55.552621], [37.707144, 55.552531], [37.707054, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.552621], [37.707054, 55.552711], [37.707144, 55.552711], [37.707144, 55.552621], [37.707054, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.552711], [37.707054, 55.552801], [37.707144, 55.552801], [37.707144, 55.552711], [37.707054, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.552801], [37.707054, 55.552891], [37.707144, 55.552891], [37.707144, 55.552801], [37.707054, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.552891], [37.707054, 55.552981], [37.707144, 55.552981], [37.707144, 55.552891], [37.707054, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.552981], [37.707054, 55.553071], [37.707144, 55.553071], [37.707144, 55.552981], [37.707054, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.553071], [37.707054, 55.553161], [37.707144, 55.553161], [37.707144, 55.553071], [37.707054, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.553161], [37.707054, 55.553251], [37.707144, 55.553251], [37.707144, 55.553161], [37.707054, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.553251], [37.707054, 55.553341], [37.707144, 55.553341], [37.707144, 55.553251], [37.707054, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.553341], [37.707054, 55.553431], [37.707144, 55.553431], [37.707144, 55.553341], [37.707054, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.553431], [37.707054, 55.55352], [37.707144, 55.55352], [37.707144, 55.553431], [37.707054, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.55352], [37.707054, 55.55361], [37.707144, 55.55361], [37.707144, 55.55352], [37.707054, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.55361], [37.707054, 55.5537], [37.707144, 55.5537], [37.707144, 55.55361], [37.707054, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.5537], [37.707054, 55.55379], [37.707144, 55.55379], [37.707144, 55.5537], [37.707054, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.55379], [37.707054, 55.55388], [37.707144, 55.55388], [37.707144, 55.55379], [37.707054, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.55388], [37.707054, 55.55397], [37.707144, 55.55397], [37.707144, 55.55388], [37.707054, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.55397], [37.707054, 55.55406], [37.707144, 55.55406], [37.707144, 55.55397], [37.707054, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.55406], [37.707054, 55.55415], [37.707144, 55.55415], [37.707144, 55.55406], [37.707054, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.55415], [37.707054, 55.55424], [37.707144, 55.55424], [37.707144, 55.55415], [37.707054, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.55424], [37.707054, 55.55433], [37.707144, 55.55433], [37.707144, 55.55424], [37.707054, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.55433], [37.707054, 55.55442], [37.707144, 55.55442], [37.707144, 55.55433], [37.707054, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.55442], [37.707054, 55.55451], [37.707144, 55.55451], [37.707144, 55.55442], [37.707054, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.55451], [37.707054, 55.5546], [37.707144, 55.5546], [37.707144, 55.55451], [37.707054, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.5546], [37.707054, 55.55469], [37.707144, 55.55469], [37.707144, 55.5546], [37.707054, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.55469], [37.707054, 55.55478], [37.707144, 55.55478], [37.707144, 55.55469], [37.707054, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.55478], [37.707054, 55.554869], [37.707144, 55.554869], [37.707144, 55.55478], [37.707054, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.554869], [37.707054, 55.554959], [37.707144, 55.554959], [37.707144, 55.554869], [37.707054, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.554959], [37.707054, 55.555049], [37.707144, 55.555049], [37.707144, 55.554959], [37.707054, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.555049], [37.707054, 55.555139], [37.707144, 55.555139], [37.707144, 55.555049], [37.707054, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.555139], [37.707054, 55.555229], [37.707144, 55.555229], [37.707144, 55.555139], [37.707054, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.555229], [37.707054, 55.555319], [37.707144, 55.555319], [37.707144, 55.555229], [37.707054, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.555319], [37.707054, 55.555409], [37.707144, 55.555409], [37.707144, 55.555319], [37.707054, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.555409], [37.707054, 55.555499], [37.707144, 55.555499], [37.707144, 55.555409], [37.707054, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.555499], [37.707054, 55.555589], [37.707144, 55.555589], [37.707144, 55.555499], [37.707054, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.555589], [37.707054, 55.555679], [37.707144, 55.555679], [37.707144, 55.555589], [37.707054, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707054, 55.555679], [37.707054, 55.555769], [37.707144, 55.555769], [37.707144, 55.555679], [37.707054, 55.555679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.552261], [37.707144, 55.552351], [37.707233, 55.552351], [37.707233, 55.552261], [37.707144, 55.552261] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.552351], [37.707144, 55.552441], [37.707233, 55.552441], [37.707233, 55.552351], [37.707144, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.552441], [37.707144, 55.552531], [37.707233, 55.552531], [37.707233, 55.552441], [37.707144, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.552531], [37.707144, 55.552621], [37.707233, 55.552621], [37.707233, 55.552531], [37.707144, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.552621], [37.707144, 55.552711], [37.707233, 55.552711], [37.707233, 55.552621], [37.707144, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.552711], [37.707144, 55.552801], [37.707233, 55.552801], [37.707233, 55.552711], [37.707144, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.552801], [37.707144, 55.552891], [37.707233, 55.552891], [37.707233, 55.552801], [37.707144, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.552891], [37.707144, 55.552981], [37.707233, 55.552981], [37.707233, 55.552891], [37.707144, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.552981], [37.707144, 55.553071], [37.707233, 55.553071], [37.707233, 55.552981], [37.707144, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.553071], [37.707144, 55.553161], [37.707233, 55.553161], [37.707233, 55.553071], [37.707144, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.553161], [37.707144, 55.553251], [37.707233, 55.553251], [37.707233, 55.553161], [37.707144, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.553251], [37.707144, 55.553341], [37.707233, 55.553341], [37.707233, 55.553251], [37.707144, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.553341], [37.707144, 55.553431], [37.707233, 55.553431], [37.707233, 55.553341], [37.707144, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.553431], [37.707144, 55.55352], [37.707233, 55.55352], [37.707233, 55.553431], [37.707144, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.55352], [37.707144, 55.55361], [37.707233, 55.55361], [37.707233, 55.55352], [37.707144, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.55361], [37.707144, 55.5537], [37.707233, 55.5537], [37.707233, 55.55361], [37.707144, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.5537], [37.707144, 55.55379], [37.707233, 55.55379], [37.707233, 55.5537], [37.707144, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.55379], [37.707144, 55.55388], [37.707233, 55.55388], [37.707233, 55.55379], [37.707144, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.55388], [37.707144, 55.55397], [37.707233, 55.55397], [37.707233, 55.55388], [37.707144, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.55397], [37.707144, 55.55406], [37.707233, 55.55406], [37.707233, 55.55397], [37.707144, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.55406], [37.707144, 55.55415], [37.707233, 55.55415], [37.707233, 55.55406], [37.707144, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.55415], [37.707144, 55.55424], [37.707233, 55.55424], [37.707233, 55.55415], [37.707144, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.55424], [37.707144, 55.55433], [37.707233, 55.55433], [37.707233, 55.55424], [37.707144, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.55433], [37.707144, 55.55442], [37.707233, 55.55442], [37.707233, 55.55433], [37.707144, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.55442], [37.707144, 55.55451], [37.707233, 55.55451], [37.707233, 55.55442], [37.707144, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.55451], [37.707144, 55.5546], [37.707233, 55.5546], [37.707233, 55.55451], [37.707144, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.5546], [37.707144, 55.55469], [37.707233, 55.55469], [37.707233, 55.5546], [37.707144, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.55469], [37.707144, 55.55478], [37.707233, 55.55478], [37.707233, 55.55469], [37.707144, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.55478], [37.707144, 55.554869], [37.707233, 55.554869], [37.707233, 55.55478], [37.707144, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.554869], [37.707144, 55.554959], [37.707233, 55.554959], [37.707233, 55.554869], [37.707144, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.554959], [37.707144, 55.555049], [37.707233, 55.555049], [37.707233, 55.554959], [37.707144, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.555049], [37.707144, 55.555139], [37.707233, 55.555139], [37.707233, 55.555049], [37.707144, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.555139], [37.707144, 55.555229], [37.707233, 55.555229], [37.707233, 55.555139], [37.707144, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.555229], [37.707144, 55.555319], [37.707233, 55.555319], [37.707233, 55.555229], [37.707144, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.555319], [37.707144, 55.555409], [37.707233, 55.555409], [37.707233, 55.555319], [37.707144, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.555409], [37.707144, 55.555499], [37.707233, 55.555499], [37.707233, 55.555409], [37.707144, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.555499], [37.707144, 55.555589], [37.707233, 55.555589], [37.707233, 55.555499], [37.707144, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.555589], [37.707144, 55.555679], [37.707233, 55.555679], [37.707233, 55.555589], [37.707144, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707144, 55.555679], [37.707144, 55.555769], [37.707233, 55.555769], [37.707233, 55.555679], [37.707144, 55.555679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.552351], [37.707233, 55.552441], [37.707323, 55.552441], [37.707323, 55.552351], [37.707233, 55.552351] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.552441], [37.707233, 55.552531], [37.707323, 55.552531], [37.707323, 55.552441], [37.707233, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.552531], [37.707233, 55.552621], [37.707323, 55.552621], [37.707323, 55.552531], [37.707233, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.552621], [37.707233, 55.552711], [37.707323, 55.552711], [37.707323, 55.552621], [37.707233, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.552711], [37.707233, 55.552801], [37.707323, 55.552801], [37.707323, 55.552711], [37.707233, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.552801], [37.707233, 55.552891], [37.707323, 55.552891], [37.707323, 55.552801], [37.707233, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.552891], [37.707233, 55.552981], [37.707323, 55.552981], [37.707323, 55.552891], [37.707233, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.552981], [37.707233, 55.553071], [37.707323, 55.553071], [37.707323, 55.552981], [37.707233, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.553071], [37.707233, 55.553161], [37.707323, 55.553161], [37.707323, 55.553071], [37.707233, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.553161], [37.707233, 55.553251], [37.707323, 55.553251], [37.707323, 55.553161], [37.707233, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.553251], [37.707233, 55.553341], [37.707323, 55.553341], [37.707323, 55.553251], [37.707233, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.553341], [37.707233, 55.553431], [37.707323, 55.553431], [37.707323, 55.553341], [37.707233, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.553431], [37.707233, 55.55352], [37.707323, 55.55352], [37.707323, 55.553431], [37.707233, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.55352], [37.707233, 55.55361], [37.707323, 55.55361], [37.707323, 55.55352], [37.707233, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.55361], [37.707233, 55.5537], [37.707323, 55.5537], [37.707323, 55.55361], [37.707233, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.5537], [37.707233, 55.55379], [37.707323, 55.55379], [37.707323, 55.5537], [37.707233, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.55379], [37.707233, 55.55388], [37.707323, 55.55388], [37.707323, 55.55379], [37.707233, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.55388], [37.707233, 55.55397], [37.707323, 55.55397], [37.707323, 55.55388], [37.707233, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.55397], [37.707233, 55.55406], [37.707323, 55.55406], [37.707323, 55.55397], [37.707233, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.55406], [37.707233, 55.55415], [37.707323, 55.55415], [37.707323, 55.55406], [37.707233, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.55415], [37.707233, 55.55424], [37.707323, 55.55424], [37.707323, 55.55415], [37.707233, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.55424], [37.707233, 55.55433], [37.707323, 55.55433], [37.707323, 55.55424], [37.707233, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.55433], [37.707233, 55.55442], [37.707323, 55.55442], [37.707323, 55.55433], [37.707233, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.55442], [37.707233, 55.55451], [37.707323, 55.55451], [37.707323, 55.55442], [37.707233, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.55451], [37.707233, 55.5546], [37.707323, 55.5546], [37.707323, 55.55451], [37.707233, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.5546], [37.707233, 55.55469], [37.707323, 55.55469], [37.707323, 55.5546], [37.707233, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.55469], [37.707233, 55.55478], [37.707323, 55.55478], [37.707323, 55.55469], [37.707233, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.55478], [37.707233, 55.554869], [37.707323, 55.554869], [37.707323, 55.55478], [37.707233, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.554869], [37.707233, 55.554959], [37.707323, 55.554959], [37.707323, 55.554869], [37.707233, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.554959], [37.707233, 55.555049], [37.707323, 55.555049], [37.707323, 55.554959], [37.707233, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.555049], [37.707233, 55.555139], [37.707323, 55.555139], [37.707323, 55.555049], [37.707233, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.555139], [37.707233, 55.555229], [37.707323, 55.555229], [37.707323, 55.555139], [37.707233, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.555229], [37.707233, 55.555319], [37.707323, 55.555319], [37.707323, 55.555229], [37.707233, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.555319], [37.707233, 55.555409], [37.707323, 55.555409], [37.707323, 55.555319], [37.707233, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.555409], [37.707233, 55.555499], [37.707323, 55.555499], [37.707323, 55.555409], [37.707233, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.555499], [37.707233, 55.555589], [37.707323, 55.555589], [37.707323, 55.555499], [37.707233, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.555589], [37.707233, 55.555679], [37.707323, 55.555679], [37.707323, 55.555589], [37.707233, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707233, 55.555679], [37.707233, 55.555769], [37.707323, 55.555769], [37.707323, 55.555679], [37.707233, 55.555679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.552441], [37.707323, 55.552531], [37.707413, 55.552531], [37.707413, 55.552441], [37.707323, 55.552441] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.552531], [37.707323, 55.552621], [37.707413, 55.552621], [37.707413, 55.552531], [37.707323, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.552621], [37.707323, 55.552711], [37.707413, 55.552711], [37.707413, 55.552621], [37.707323, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.552711], [37.707323, 55.552801], [37.707413, 55.552801], [37.707413, 55.552711], [37.707323, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.552801], [37.707323, 55.552891], [37.707413, 55.552891], [37.707413, 55.552801], [37.707323, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.552891], [37.707323, 55.552981], [37.707413, 55.552981], [37.707413, 55.552891], [37.707323, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.552981], [37.707323, 55.553071], [37.707413, 55.553071], [37.707413, 55.552981], [37.707323, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.553071], [37.707323, 55.553161], [37.707413, 55.553161], [37.707413, 55.553071], [37.707323, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.553161], [37.707323, 55.553251], [37.707413, 55.553251], [37.707413, 55.553161], [37.707323, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.553251], [37.707323, 55.553341], [37.707413, 55.553341], [37.707413, 55.553251], [37.707323, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.553341], [37.707323, 55.553431], [37.707413, 55.553431], [37.707413, 55.553341], [37.707323, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.553431], [37.707323, 55.55352], [37.707413, 55.55352], [37.707413, 55.553431], [37.707323, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.55352], [37.707323, 55.55361], [37.707413, 55.55361], [37.707413, 55.55352], [37.707323, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.55361], [37.707323, 55.5537], [37.707413, 55.5537], [37.707413, 55.55361], [37.707323, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.5537], [37.707323, 55.55379], [37.707413, 55.55379], [37.707413, 55.5537], [37.707323, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.55379], [37.707323, 55.55388], [37.707413, 55.55388], [37.707413, 55.55379], [37.707323, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.55388], [37.707323, 55.55397], [37.707413, 55.55397], [37.707413, 55.55388], [37.707323, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.55397], [37.707323, 55.55406], [37.707413, 55.55406], [37.707413, 55.55397], [37.707323, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.55406], [37.707323, 55.55415], [37.707413, 55.55415], [37.707413, 55.55406], [37.707323, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.55415], [37.707323, 55.55424], [37.707413, 55.55424], [37.707413, 55.55415], [37.707323, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.55424], [37.707323, 55.55433], [37.707413, 55.55433], [37.707413, 55.55424], [37.707323, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.55433], [37.707323, 55.55442], [37.707413, 55.55442], [37.707413, 55.55433], [37.707323, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.55442], [37.707323, 55.55451], [37.707413, 55.55451], [37.707413, 55.55442], [37.707323, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.55451], [37.707323, 55.5546], [37.707413, 55.5546], [37.707413, 55.55451], [37.707323, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.5546], [37.707323, 55.55469], [37.707413, 55.55469], [37.707413, 55.5546], [37.707323, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.55469], [37.707323, 55.55478], [37.707413, 55.55478], [37.707413, 55.55469], [37.707323, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.55478], [37.707323, 55.554869], [37.707413, 55.554869], [37.707413, 55.55478], [37.707323, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.554869], [37.707323, 55.554959], [37.707413, 55.554959], [37.707413, 55.554869], [37.707323, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.554959], [37.707323, 55.555049], [37.707413, 55.555049], [37.707413, 55.554959], [37.707323, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.555049], [37.707323, 55.555139], [37.707413, 55.555139], [37.707413, 55.555049], [37.707323, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.555139], [37.707323, 55.555229], [37.707413, 55.555229], [37.707413, 55.555139], [37.707323, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.555229], [37.707323, 55.555319], [37.707413, 55.555319], [37.707413, 55.555229], [37.707323, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.555319], [37.707323, 55.555409], [37.707413, 55.555409], [37.707413, 55.555319], [37.707323, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.555409], [37.707323, 55.555499], [37.707413, 55.555499], [37.707413, 55.555409], [37.707323, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.555499], [37.707323, 55.555589], [37.707413, 55.555589], [37.707413, 55.555499], [37.707323, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.555589], [37.707323, 55.555679], [37.707413, 55.555679], [37.707413, 55.555589], [37.707323, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707323, 55.555679], [37.707323, 55.555769], [37.707413, 55.555769], [37.707413, 55.555679], [37.707323, 55.555679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.552531], [37.707413, 55.552621], [37.707503, 55.552621], [37.707503, 55.552531], [37.707413, 55.552531] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.552621], [37.707413, 55.552711], [37.707503, 55.552711], [37.707503, 55.552621], [37.707413, 55.552621] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.552711], [37.707413, 55.552801], [37.707503, 55.552801], [37.707503, 55.552711], [37.707413, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.552801], [37.707413, 55.552891], [37.707503, 55.552891], [37.707503, 55.552801], [37.707413, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.552891], [37.707413, 55.552981], [37.707503, 55.552981], [37.707503, 55.552891], [37.707413, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.552981], [37.707413, 55.553071], [37.707503, 55.553071], [37.707503, 55.552981], [37.707413, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.553071], [37.707413, 55.553161], [37.707503, 55.553161], [37.707503, 55.553071], [37.707413, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.553161], [37.707413, 55.553251], [37.707503, 55.553251], [37.707503, 55.553161], [37.707413, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.553251], [37.707413, 55.553341], [37.707503, 55.553341], [37.707503, 55.553251], [37.707413, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.553341], [37.707413, 55.553431], [37.707503, 55.553431], [37.707503, 55.553341], [37.707413, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.553431], [37.707413, 55.55352], [37.707503, 55.55352], [37.707503, 55.553431], [37.707413, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.55352], [37.707413, 55.55361], [37.707503, 55.55361], [37.707503, 55.55352], [37.707413, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.55361], [37.707413, 55.5537], [37.707503, 55.5537], [37.707503, 55.55361], [37.707413, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.5537], [37.707413, 55.55379], [37.707503, 55.55379], [37.707503, 55.5537], [37.707413, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.55379], [37.707413, 55.55388], [37.707503, 55.55388], [37.707503, 55.55379], [37.707413, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.55388], [37.707413, 55.55397], [37.707503, 55.55397], [37.707503, 55.55388], [37.707413, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.55397], [37.707413, 55.55406], [37.707503, 55.55406], [37.707503, 55.55397], [37.707413, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.55406], [37.707413, 55.55415], [37.707503, 55.55415], [37.707503, 55.55406], [37.707413, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.55415], [37.707413, 55.55424], [37.707503, 55.55424], [37.707503, 55.55415], [37.707413, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.55424], [37.707413, 55.55433], [37.707503, 55.55433], [37.707503, 55.55424], [37.707413, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.55433], [37.707413, 55.55442], [37.707503, 55.55442], [37.707503, 55.55433], [37.707413, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.55442], [37.707413, 55.55451], [37.707503, 55.55451], [37.707503, 55.55442], [37.707413, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.55451], [37.707413, 55.5546], [37.707503, 55.5546], [37.707503, 55.55451], [37.707413, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.5546], [37.707413, 55.55469], [37.707503, 55.55469], [37.707503, 55.5546], [37.707413, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.55469], [37.707413, 55.55478], [37.707503, 55.55478], [37.707503, 55.55469], [37.707413, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.55478], [37.707413, 55.554869], [37.707503, 55.554869], [37.707503, 55.55478], [37.707413, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.554869], [37.707413, 55.554959], [37.707503, 55.554959], [37.707503, 55.554869], [37.707413, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.554959], [37.707413, 55.555049], [37.707503, 55.555049], [37.707503, 55.554959], [37.707413, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.555049], [37.707413, 55.555139], [37.707503, 55.555139], [37.707503, 55.555049], [37.707413, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.555139], [37.707413, 55.555229], [37.707503, 55.555229], [37.707503, 55.555139], [37.707413, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.555229], [37.707413, 55.555319], [37.707503, 55.555319], [37.707503, 55.555229], [37.707413, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.555319], [37.707413, 55.555409], [37.707503, 55.555409], [37.707503, 55.555319], [37.707413, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.555409], [37.707413, 55.555499], [37.707503, 55.555499], [37.707503, 55.555409], [37.707413, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.555499], [37.707413, 55.555589], [37.707503, 55.555589], [37.707503, 55.555499], [37.707413, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.555589], [37.707413, 55.555679], [37.707503, 55.555679], [37.707503, 55.555589], [37.707413, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.555679], [37.707413, 55.555769], [37.707503, 55.555769], [37.707503, 55.555679], [37.707413, 55.555679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707413, 55.555769], [37.707413, 55.555859], [37.707503, 55.555859], [37.707503, 55.555769], [37.707413, 55.555769] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.552711], [37.707503, 55.552801], [37.707593, 55.552801], [37.707593, 55.552711], [37.707503, 55.552711] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.552801], [37.707503, 55.552891], [37.707593, 55.552891], [37.707593, 55.552801], [37.707503, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.552891], [37.707503, 55.552981], [37.707593, 55.552981], [37.707593, 55.552891], [37.707503, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.552981], [37.707503, 55.553071], [37.707593, 55.553071], [37.707593, 55.552981], [37.707503, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.553071], [37.707503, 55.553161], [37.707593, 55.553161], [37.707593, 55.553071], [37.707503, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.553161], [37.707503, 55.553251], [37.707593, 55.553251], [37.707593, 55.553161], [37.707503, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.553251], [37.707503, 55.553341], [37.707593, 55.553341], [37.707593, 55.553251], [37.707503, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.553341], [37.707503, 55.553431], [37.707593, 55.553431], [37.707593, 55.553341], [37.707503, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.553431], [37.707503, 55.55352], [37.707593, 55.55352], [37.707593, 55.553431], [37.707503, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.55352], [37.707503, 55.55361], [37.707593, 55.55361], [37.707593, 55.55352], [37.707503, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.55361], [37.707503, 55.5537], [37.707593, 55.5537], [37.707593, 55.55361], [37.707503, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.5537], [37.707503, 55.55379], [37.707593, 55.55379], [37.707593, 55.5537], [37.707503, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.55379], [37.707503, 55.55388], [37.707593, 55.55388], [37.707593, 55.55379], [37.707503, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.55388], [37.707503, 55.55397], [37.707593, 55.55397], [37.707593, 55.55388], [37.707503, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.55397], [37.707503, 55.55406], [37.707593, 55.55406], [37.707593, 55.55397], [37.707503, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.55406], [37.707503, 55.55415], [37.707593, 55.55415], [37.707593, 55.55406], [37.707503, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.55415], [37.707503, 55.55424], [37.707593, 55.55424], [37.707593, 55.55415], [37.707503, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.55424], [37.707503, 55.55433], [37.707593, 55.55433], [37.707593, 55.55424], [37.707503, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.55433], [37.707503, 55.55442], [37.707593, 55.55442], [37.707593, 55.55433], [37.707503, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.55442], [37.707503, 55.55451], [37.707593, 55.55451], [37.707593, 55.55442], [37.707503, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.55451], [37.707503, 55.5546], [37.707593, 55.5546], [37.707593, 55.55451], [37.707503, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.5546], [37.707503, 55.55469], [37.707593, 55.55469], [37.707593, 55.5546], [37.707503, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.55469], [37.707503, 55.55478], [37.707593, 55.55478], [37.707593, 55.55469], [37.707503, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.55478], [37.707503, 55.554869], [37.707593, 55.554869], [37.707593, 55.55478], [37.707503, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.554869], [37.707503, 55.554959], [37.707593, 55.554959], [37.707593, 55.554869], [37.707503, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.554959], [37.707503, 55.555049], [37.707593, 55.555049], [37.707593, 55.554959], [37.707503, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.555049], [37.707503, 55.555139], [37.707593, 55.555139], [37.707593, 55.555049], [37.707503, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.555139], [37.707503, 55.555229], [37.707593, 55.555229], [37.707593, 55.555139], [37.707503, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.555229], [37.707503, 55.555319], [37.707593, 55.555319], [37.707593, 55.555229], [37.707503, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.555319], [37.707503, 55.555409], [37.707593, 55.555409], [37.707593, 55.555319], [37.707503, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.555409], [37.707503, 55.555499], [37.707593, 55.555499], [37.707593, 55.555409], [37.707503, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.555499], [37.707503, 55.555589], [37.707593, 55.555589], [37.707593, 55.555499], [37.707503, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.555589], [37.707503, 55.555679], [37.707593, 55.555679], [37.707593, 55.555589], [37.707503, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.555679], [37.707503, 55.555769], [37.707593, 55.555769], [37.707593, 55.555679], [37.707503, 55.555679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707503, 55.555769], [37.707503, 55.555859], [37.707593, 55.555859], [37.707593, 55.555769], [37.707503, 55.555769] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.552801], [37.707593, 55.552891], [37.707683, 55.552891], [37.707683, 55.552801], [37.707593, 55.552801] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.552891], [37.707593, 55.552981], [37.707683, 55.552981], [37.707683, 55.552891], [37.707593, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.552981], [37.707593, 55.553071], [37.707683, 55.553071], [37.707683, 55.552981], [37.707593, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.553071], [37.707593, 55.553161], [37.707683, 55.553161], [37.707683, 55.553071], [37.707593, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.553161], [37.707593, 55.553251], [37.707683, 55.553251], [37.707683, 55.553161], [37.707593, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.553251], [37.707593, 55.553341], [37.707683, 55.553341], [37.707683, 55.553251], [37.707593, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.553341], [37.707593, 55.553431], [37.707683, 55.553431], [37.707683, 55.553341], [37.707593, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.553431], [37.707593, 55.55352], [37.707683, 55.55352], [37.707683, 55.553431], [37.707593, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.55352], [37.707593, 55.55361], [37.707683, 55.55361], [37.707683, 55.55352], [37.707593, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.55361], [37.707593, 55.5537], [37.707683, 55.5537], [37.707683, 55.55361], [37.707593, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.5537], [37.707593, 55.55379], [37.707683, 55.55379], [37.707683, 55.5537], [37.707593, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.55379], [37.707593, 55.55388], [37.707683, 55.55388], [37.707683, 55.55379], [37.707593, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.55388], [37.707593, 55.55397], [37.707683, 55.55397], [37.707683, 55.55388], [37.707593, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.55397], [37.707593, 55.55406], [37.707683, 55.55406], [37.707683, 55.55397], [37.707593, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.55406], [37.707593, 55.55415], [37.707683, 55.55415], [37.707683, 55.55406], [37.707593, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.55415], [37.707593, 55.55424], [37.707683, 55.55424], [37.707683, 55.55415], [37.707593, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.55424], [37.707593, 55.55433], [37.707683, 55.55433], [37.707683, 55.55424], [37.707593, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.55433], [37.707593, 55.55442], [37.707683, 55.55442], [37.707683, 55.55433], [37.707593, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.55442], [37.707593, 55.55451], [37.707683, 55.55451], [37.707683, 55.55442], [37.707593, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.55451], [37.707593, 55.5546], [37.707683, 55.5546], [37.707683, 55.55451], [37.707593, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.5546], [37.707593, 55.55469], [37.707683, 55.55469], [37.707683, 55.5546], [37.707593, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.55469], [37.707593, 55.55478], [37.707683, 55.55478], [37.707683, 55.55469], [37.707593, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.55478], [37.707593, 55.554869], [37.707683, 55.554869], [37.707683, 55.55478], [37.707593, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.554869], [37.707593, 55.554959], [37.707683, 55.554959], [37.707683, 55.554869], [37.707593, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.554959], [37.707593, 55.555049], [37.707683, 55.555049], [37.707683, 55.554959], [37.707593, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.555049], [37.707593, 55.555139], [37.707683, 55.555139], [37.707683, 55.555049], [37.707593, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.555139], [37.707593, 55.555229], [37.707683, 55.555229], [37.707683, 55.555139], [37.707593, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.555229], [37.707593, 55.555319], [37.707683, 55.555319], [37.707683, 55.555229], [37.707593, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.555319], [37.707593, 55.555409], [37.707683, 55.555409], [37.707683, 55.555319], [37.707593, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.555409], [37.707593, 55.555499], [37.707683, 55.555499], [37.707683, 55.555409], [37.707593, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.555499], [37.707593, 55.555589], [37.707683, 55.555589], [37.707683, 55.555499], [37.707593, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.555589], [37.707593, 55.555679], [37.707683, 55.555679], [37.707683, 55.555589], [37.707593, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.555679], [37.707593, 55.555769], [37.707683, 55.555769], [37.707683, 55.555679], [37.707593, 55.555679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707593, 55.555769], [37.707593, 55.555859], [37.707683, 55.555859], [37.707683, 55.555769], [37.707593, 55.555769] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.552891], [37.707683, 55.552981], [37.707773, 55.552981], [37.707773, 55.552891], [37.707683, 55.552891] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.552981], [37.707683, 55.553071], [37.707773, 55.553071], [37.707773, 55.552981], [37.707683, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.553071], [37.707683, 55.553161], [37.707773, 55.553161], [37.707773, 55.553071], [37.707683, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.553161], [37.707683, 55.553251], [37.707773, 55.553251], [37.707773, 55.553161], [37.707683, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.553251], [37.707683, 55.553341], [37.707773, 55.553341], [37.707773, 55.553251], [37.707683, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.553341], [37.707683, 55.553431], [37.707773, 55.553431], [37.707773, 55.553341], [37.707683, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.553431], [37.707683, 55.55352], [37.707773, 55.55352], [37.707773, 55.553431], [37.707683, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.55352], [37.707683, 55.55361], [37.707773, 55.55361], [37.707773, 55.55352], [37.707683, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.55361], [37.707683, 55.5537], [37.707773, 55.5537], [37.707773, 55.55361], [37.707683, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.5537], [37.707683, 55.55379], [37.707773, 55.55379], [37.707773, 55.5537], [37.707683, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.55379], [37.707683, 55.55388], [37.707773, 55.55388], [37.707773, 55.55379], [37.707683, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.55388], [37.707683, 55.55397], [37.707773, 55.55397], [37.707773, 55.55388], [37.707683, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.55397], [37.707683, 55.55406], [37.707773, 55.55406], [37.707773, 55.55397], [37.707683, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.55406], [37.707683, 55.55415], [37.707773, 55.55415], [37.707773, 55.55406], [37.707683, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.55415], [37.707683, 55.55424], [37.707773, 55.55424], [37.707773, 55.55415], [37.707683, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.55424], [37.707683, 55.55433], [37.707773, 55.55433], [37.707773, 55.55424], [37.707683, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.55433], [37.707683, 55.55442], [37.707773, 55.55442], [37.707773, 55.55433], [37.707683, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.55442], [37.707683, 55.55451], [37.707773, 55.55451], [37.707773, 55.55442], [37.707683, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.55451], [37.707683, 55.5546], [37.707773, 55.5546], [37.707773, 55.55451], [37.707683, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.5546], [37.707683, 55.55469], [37.707773, 55.55469], [37.707773, 55.5546], [37.707683, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.55469], [37.707683, 55.55478], [37.707773, 55.55478], [37.707773, 55.55469], [37.707683, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.55478], [37.707683, 55.554869], [37.707773, 55.554869], [37.707773, 55.55478], [37.707683, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.554869], [37.707683, 55.554959], [37.707773, 55.554959], [37.707773, 55.554869], [37.707683, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.554959], [37.707683, 55.555049], [37.707773, 55.555049], [37.707773, 55.554959], [37.707683, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.555049], [37.707683, 55.555139], [37.707773, 55.555139], [37.707773, 55.555049], [37.707683, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.555139], [37.707683, 55.555229], [37.707773, 55.555229], [37.707773, 55.555139], [37.707683, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.555229], [37.707683, 55.555319], [37.707773, 55.555319], [37.707773, 55.555229], [37.707683, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.555319], [37.707683, 55.555409], [37.707773, 55.555409], [37.707773, 55.555319], [37.707683, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.555409], [37.707683, 55.555499], [37.707773, 55.555499], [37.707773, 55.555409], [37.707683, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.555499], [37.707683, 55.555589], [37.707773, 55.555589], [37.707773, 55.555499], [37.707683, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.555589], [37.707683, 55.555679], [37.707773, 55.555679], [37.707773, 55.555589], [37.707683, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.555679], [37.707683, 55.555769], [37.707773, 55.555769], [37.707773, 55.555679], [37.707683, 55.555679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.555769], [37.707683, 55.555859], [37.707773, 55.555859], [37.707773, 55.555769], [37.707683, 55.555769] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707683, 55.555859], [37.707683, 55.555949], [37.707773, 55.555949], [37.707773, 55.555859], [37.707683, 55.555859] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.552981], [37.707773, 55.553071], [37.707863, 55.553071], [37.707863, 55.552981], [37.707773, 55.552981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.553071], [37.707773, 55.553161], [37.707863, 55.553161], [37.707863, 55.553071], [37.707773, 55.553071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.553161], [37.707773, 55.553251], [37.707863, 55.553251], [37.707863, 55.553161], [37.707773, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.553251], [37.707773, 55.553341], [37.707863, 55.553341], [37.707863, 55.553251], [37.707773, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.553341], [37.707773, 55.553431], [37.707863, 55.553431], [37.707863, 55.553341], [37.707773, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.553431], [37.707773, 55.55352], [37.707863, 55.55352], [37.707863, 55.553431], [37.707773, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.55352], [37.707773, 55.55361], [37.707863, 55.55361], [37.707863, 55.55352], [37.707773, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.55361], [37.707773, 55.5537], [37.707863, 55.5537], [37.707863, 55.55361], [37.707773, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.5537], [37.707773, 55.55379], [37.707863, 55.55379], [37.707863, 55.5537], [37.707773, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.55379], [37.707773, 55.55388], [37.707863, 55.55388], [37.707863, 55.55379], [37.707773, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.55388], [37.707773, 55.55397], [37.707863, 55.55397], [37.707863, 55.55388], [37.707773, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.55397], [37.707773, 55.55406], [37.707863, 55.55406], [37.707863, 55.55397], [37.707773, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.55406], [37.707773, 55.55415], [37.707863, 55.55415], [37.707863, 55.55406], [37.707773, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.55415], [37.707773, 55.55424], [37.707863, 55.55424], [37.707863, 55.55415], [37.707773, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.55424], [37.707773, 55.55433], [37.707863, 55.55433], [37.707863, 55.55424], [37.707773, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.55433], [37.707773, 55.55442], [37.707863, 55.55442], [37.707863, 55.55433], [37.707773, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.55442], [37.707773, 55.55451], [37.707863, 55.55451], [37.707863, 55.55442], [37.707773, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.55451], [37.707773, 55.5546], [37.707863, 55.5546], [37.707863, 55.55451], [37.707773, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.5546], [37.707773, 55.55469], [37.707863, 55.55469], [37.707863, 55.5546], [37.707773, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.55469], [37.707773, 55.55478], [37.707863, 55.55478], [37.707863, 55.55469], [37.707773, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.55478], [37.707773, 55.554869], [37.707863, 55.554869], [37.707863, 55.55478], [37.707773, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.554869], [37.707773, 55.554959], [37.707863, 55.554959], [37.707863, 55.554869], [37.707773, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.554959], [37.707773, 55.555049], [37.707863, 55.555049], [37.707863, 55.554959], [37.707773, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.555049], [37.707773, 55.555139], [37.707863, 55.555139], [37.707863, 55.555049], [37.707773, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.555139], [37.707773, 55.555229], [37.707863, 55.555229], [37.707863, 55.555139], [37.707773, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.555229], [37.707773, 55.555319], [37.707863, 55.555319], [37.707863, 55.555229], [37.707773, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.555319], [37.707773, 55.555409], [37.707863, 55.555409], [37.707863, 55.555319], [37.707773, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.555409], [37.707773, 55.555499], [37.707863, 55.555499], [37.707863, 55.555409], [37.707773, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.555499], [37.707773, 55.555589], [37.707863, 55.555589], [37.707863, 55.555499], [37.707773, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.555589], [37.707773, 55.555679], [37.707863, 55.555679], [37.707863, 55.555589], [37.707773, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.555679], [37.707773, 55.555769], [37.707863, 55.555769], [37.707863, 55.555679], [37.707773, 55.555679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.555769], [37.707773, 55.555859], [37.707863, 55.555859], [37.707863, 55.555769], [37.707773, 55.555769] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707773, 55.555859], [37.707773, 55.555949], [37.707863, 55.555949], [37.707863, 55.555859], [37.707773, 55.555859] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.553161], [37.707863, 55.553251], [37.707953, 55.553251], [37.707953, 55.553161], [37.707863, 55.553161] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.553251], [37.707863, 55.553341], [37.707953, 55.553341], [37.707953, 55.553251], [37.707863, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.553341], [37.707863, 55.553431], [37.707953, 55.553431], [37.707953, 55.553341], [37.707863, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.553431], [37.707863, 55.55352], [37.707953, 55.55352], [37.707953, 55.553431], [37.707863, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.55352], [37.707863, 55.55361], [37.707953, 55.55361], [37.707953, 55.55352], [37.707863, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.55361], [37.707863, 55.5537], [37.707953, 55.5537], [37.707953, 55.55361], [37.707863, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.5537], [37.707863, 55.55379], [37.707953, 55.55379], [37.707953, 55.5537], [37.707863, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.55379], [37.707863, 55.55388], [37.707953, 55.55388], [37.707953, 55.55379], [37.707863, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.55388], [37.707863, 55.55397], [37.707953, 55.55397], [37.707953, 55.55388], [37.707863, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.55397], [37.707863, 55.55406], [37.707953, 55.55406], [37.707953, 55.55397], [37.707863, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.55406], [37.707863, 55.55415], [37.707953, 55.55415], [37.707953, 55.55406], [37.707863, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.55415], [37.707863, 55.55424], [37.707953, 55.55424], [37.707953, 55.55415], [37.707863, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.55424], [37.707863, 55.55433], [37.707953, 55.55433], [37.707953, 55.55424], [37.707863, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.55433], [37.707863, 55.55442], [37.707953, 55.55442], [37.707953, 55.55433], [37.707863, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.55442], [37.707863, 55.55451], [37.707953, 55.55451], [37.707953, 55.55442], [37.707863, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.55451], [37.707863, 55.5546], [37.707953, 55.5546], [37.707953, 55.55451], [37.707863, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.5546], [37.707863, 55.55469], [37.707953, 55.55469], [37.707953, 55.5546], [37.707863, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.55469], [37.707863, 55.55478], [37.707953, 55.55478], [37.707953, 55.55469], [37.707863, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.55478], [37.707863, 55.554869], [37.707953, 55.554869], [37.707953, 55.55478], [37.707863, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.554869], [37.707863, 55.554959], [37.707953, 55.554959], [37.707953, 55.554869], [37.707863, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.554959], [37.707863, 55.555049], [37.707953, 55.555049], [37.707953, 55.554959], [37.707863, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.555049], [37.707863, 55.555139], [37.707953, 55.555139], [37.707953, 55.555049], [37.707863, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.555139], [37.707863, 55.555229], [37.707953, 55.555229], [37.707953, 55.555139], [37.707863, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.555229], [37.707863, 55.555319], [37.707953, 55.555319], [37.707953, 55.555229], [37.707863, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.555319], [37.707863, 55.555409], [37.707953, 55.555409], [37.707953, 55.555319], [37.707863, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.555409], [37.707863, 55.555499], [37.707953, 55.555499], [37.707953, 55.555409], [37.707863, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.555499], [37.707863, 55.555589], [37.707953, 55.555589], [37.707953, 55.555499], [37.707863, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.555589], [37.707863, 55.555679], [37.707953, 55.555679], [37.707953, 55.555589], [37.707863, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.555679], [37.707863, 55.555769], [37.707953, 55.555769], [37.707953, 55.555679], [37.707863, 55.555679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.555769], [37.707863, 55.555859], [37.707953, 55.555859], [37.707953, 55.555769], [37.707863, 55.555769] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707863, 55.555859], [37.707863, 55.555949], [37.707953, 55.555949], [37.707953, 55.555859], [37.707863, 55.555859] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.553251], [37.707953, 55.553341], [37.708043, 55.553341], [37.708043, 55.553251], [37.707953, 55.553251] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.553341], [37.707953, 55.553431], [37.708043, 55.553431], [37.708043, 55.553341], [37.707953, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.553431], [37.707953, 55.55352], [37.708043, 55.55352], [37.708043, 55.553431], [37.707953, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.55352], [37.707953, 55.55361], [37.708043, 55.55361], [37.708043, 55.55352], [37.707953, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.55361], [37.707953, 55.5537], [37.708043, 55.5537], [37.708043, 55.55361], [37.707953, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.5537], [37.707953, 55.55379], [37.708043, 55.55379], [37.708043, 55.5537], [37.707953, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.55379], [37.707953, 55.55388], [37.708043, 55.55388], [37.708043, 55.55379], [37.707953, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.55388], [37.707953, 55.55397], [37.708043, 55.55397], [37.708043, 55.55388], [37.707953, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.55397], [37.707953, 55.55406], [37.708043, 55.55406], [37.708043, 55.55397], [37.707953, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.55406], [37.707953, 55.55415], [37.708043, 55.55415], [37.708043, 55.55406], [37.707953, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.55415], [37.707953, 55.55424], [37.708043, 55.55424], [37.708043, 55.55415], [37.707953, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.55424], [37.707953, 55.55433], [37.708043, 55.55433], [37.708043, 55.55424], [37.707953, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.55433], [37.707953, 55.55442], [37.708043, 55.55442], [37.708043, 55.55433], [37.707953, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.55442], [37.707953, 55.55451], [37.708043, 55.55451], [37.708043, 55.55442], [37.707953, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.55451], [37.707953, 55.5546], [37.708043, 55.5546], [37.708043, 55.55451], [37.707953, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.5546], [37.707953, 55.55469], [37.708043, 55.55469], [37.708043, 55.5546], [37.707953, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.55469], [37.707953, 55.55478], [37.708043, 55.55478], [37.708043, 55.55469], [37.707953, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.55478], [37.707953, 55.554869], [37.708043, 55.554869], [37.708043, 55.55478], [37.707953, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.554869], [37.707953, 55.554959], [37.708043, 55.554959], [37.708043, 55.554869], [37.707953, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.554959], [37.707953, 55.555049], [37.708043, 55.555049], [37.708043, 55.554959], [37.707953, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.555049], [37.707953, 55.555139], [37.708043, 55.555139], [37.708043, 55.555049], [37.707953, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.555139], [37.707953, 55.555229], [37.708043, 55.555229], [37.708043, 55.555139], [37.707953, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.555229], [37.707953, 55.555319], [37.708043, 55.555319], [37.708043, 55.555229], [37.707953, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.555319], [37.707953, 55.555409], [37.708043, 55.555409], [37.708043, 55.555319], [37.707953, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.555409], [37.707953, 55.555499], [37.708043, 55.555499], [37.708043, 55.555409], [37.707953, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.555499], [37.707953, 55.555589], [37.708043, 55.555589], [37.708043, 55.555499], [37.707953, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.555589], [37.707953, 55.555679], [37.708043, 55.555679], [37.708043, 55.555589], [37.707953, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.555679], [37.707953, 55.555769], [37.708043, 55.555769], [37.708043, 55.555679], [37.707953, 55.555679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.555769], [37.707953, 55.555859], [37.708043, 55.555859], [37.708043, 55.555769], [37.707953, 55.555769] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.707953, 55.555859], [37.707953, 55.555949], [37.708043, 55.555949], [37.708043, 55.555859], [37.707953, 55.555859] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.553341], [37.708043, 55.553431], [37.708133, 55.553431], [37.708133, 55.553341], [37.708043, 55.553341] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.553431], [37.708043, 55.55352], [37.708133, 55.55352], [37.708133, 55.553431], [37.708043, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.55352], [37.708043, 55.55361], [37.708133, 55.55361], [37.708133, 55.55352], [37.708043, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.55361], [37.708043, 55.5537], [37.708133, 55.5537], [37.708133, 55.55361], [37.708043, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.5537], [37.708043, 55.55379], [37.708133, 55.55379], [37.708133, 55.5537], [37.708043, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.55379], [37.708043, 55.55388], [37.708133, 55.55388], [37.708133, 55.55379], [37.708043, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.55388], [37.708043, 55.55397], [37.708133, 55.55397], [37.708133, 55.55388], [37.708043, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.55397], [37.708043, 55.55406], [37.708133, 55.55406], [37.708133, 55.55397], [37.708043, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.55406], [37.708043, 55.55415], [37.708133, 55.55415], [37.708133, 55.55406], [37.708043, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.55415], [37.708043, 55.55424], [37.708133, 55.55424], [37.708133, 55.55415], [37.708043, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.55424], [37.708043, 55.55433], [37.708133, 55.55433], [37.708133, 55.55424], [37.708043, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.55433], [37.708043, 55.55442], [37.708133, 55.55442], [37.708133, 55.55433], [37.708043, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.55442], [37.708043, 55.55451], [37.708133, 55.55451], [37.708133, 55.55442], [37.708043, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.55451], [37.708043, 55.5546], [37.708133, 55.5546], [37.708133, 55.55451], [37.708043, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.5546], [37.708043, 55.55469], [37.708133, 55.55469], [37.708133, 55.5546], [37.708043, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.55469], [37.708043, 55.55478], [37.708133, 55.55478], [37.708133, 55.55469], [37.708043, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.55478], [37.708043, 55.554869], [37.708133, 55.554869], [37.708133, 55.55478], [37.708043, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.554869], [37.708043, 55.554959], [37.708133, 55.554959], [37.708133, 55.554869], [37.708043, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.554959], [37.708043, 55.555049], [37.708133, 55.555049], [37.708133, 55.554959], [37.708043, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.555049], [37.708043, 55.555139], [37.708133, 55.555139], [37.708133, 55.555049], [37.708043, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.555139], [37.708043, 55.555229], [37.708133, 55.555229], [37.708133, 55.555139], [37.708043, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.555229], [37.708043, 55.555319], [37.708133, 55.555319], [37.708133, 55.555229], [37.708043, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.555319], [37.708043, 55.555409], [37.708133, 55.555409], [37.708133, 55.555319], [37.708043, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.555409], [37.708043, 55.555499], [37.708133, 55.555499], [37.708133, 55.555409], [37.708043, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.555499], [37.708043, 55.555589], [37.708133, 55.555589], [37.708133, 55.555499], [37.708043, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.555589], [37.708043, 55.555679], [37.708133, 55.555679], [37.708133, 55.555589], [37.708043, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.555679], [37.708043, 55.555769], [37.708133, 55.555769], [37.708133, 55.555679], [37.708043, 55.555679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.555769], [37.708043, 55.555859], [37.708133, 55.555859], [37.708133, 55.555769], [37.708043, 55.555769] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.555859], [37.708043, 55.555949], [37.708133, 55.555949], [37.708133, 55.555859], [37.708043, 55.555859] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708043, 55.555949], [37.708043, 55.556039], [37.708133, 55.556039], [37.708133, 55.555949], [37.708043, 55.555949] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.553431], [37.708133, 55.55352], [37.708223, 55.55352], [37.708223, 55.553431], [37.708133, 55.553431] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.55352], [37.708133, 55.55361], [37.708223, 55.55361], [37.708223, 55.55352], [37.708133, 55.55352] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.55361], [37.708133, 55.5537], [37.708223, 55.5537], [37.708223, 55.55361], [37.708133, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.5537], [37.708133, 55.55379], [37.708223, 55.55379], [37.708223, 55.5537], [37.708133, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.55379], [37.708133, 55.55388], [37.708223, 55.55388], [37.708223, 55.55379], [37.708133, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.55388], [37.708133, 55.55397], [37.708223, 55.55397], [37.708223, 55.55388], [37.708133, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.55397], [37.708133, 55.55406], [37.708223, 55.55406], [37.708223, 55.55397], [37.708133, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.55406], [37.708133, 55.55415], [37.708223, 55.55415], [37.708223, 55.55406], [37.708133, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.55415], [37.708133, 55.55424], [37.708223, 55.55424], [37.708223, 55.55415], [37.708133, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.55424], [37.708133, 55.55433], [37.708223, 55.55433], [37.708223, 55.55424], [37.708133, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.55433], [37.708133, 55.55442], [37.708223, 55.55442], [37.708223, 55.55433], [37.708133, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.55442], [37.708133, 55.55451], [37.708223, 55.55451], [37.708223, 55.55442], [37.708133, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.55451], [37.708133, 55.5546], [37.708223, 55.5546], [37.708223, 55.55451], [37.708133, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.5546], [37.708133, 55.55469], [37.708223, 55.55469], [37.708223, 55.5546], [37.708133, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.55469], [37.708133, 55.55478], [37.708223, 55.55478], [37.708223, 55.55469], [37.708133, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.55478], [37.708133, 55.554869], [37.708223, 55.554869], [37.708223, 55.55478], [37.708133, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.554869], [37.708133, 55.554959], [37.708223, 55.554959], [37.708223, 55.554869], [37.708133, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.554959], [37.708133, 55.555049], [37.708223, 55.555049], [37.708223, 55.554959], [37.708133, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.555049], [37.708133, 55.555139], [37.708223, 55.555139], [37.708223, 55.555049], [37.708133, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.555139], [37.708133, 55.555229], [37.708223, 55.555229], [37.708223, 55.555139], [37.708133, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.555229], [37.708133, 55.555319], [37.708223, 55.555319], [37.708223, 55.555229], [37.708133, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.555319], [37.708133, 55.555409], [37.708223, 55.555409], [37.708223, 55.555319], [37.708133, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.555409], [37.708133, 55.555499], [37.708223, 55.555499], [37.708223, 55.555409], [37.708133, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.555499], [37.708133, 55.555589], [37.708223, 55.555589], [37.708223, 55.555499], [37.708133, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.555589], [37.708133, 55.555679], [37.708223, 55.555679], [37.708223, 55.555589], [37.708133, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.555679], [37.708133, 55.555769], [37.708223, 55.555769], [37.708223, 55.555679], [37.708133, 55.555679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.555769], [37.708133, 55.555859], [37.708223, 55.555859], [37.708223, 55.555769], [37.708133, 55.555769] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.555859], [37.708133, 55.555949], [37.708223, 55.555949], [37.708223, 55.555859], [37.708133, 55.555859] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708133, 55.555949], [37.708133, 55.556039], [37.708223, 55.556039], [37.708223, 55.555949], [37.708133, 55.555949] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.55361], [37.708223, 55.5537], [37.708313, 55.5537], [37.708313, 55.55361], [37.708223, 55.55361] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.5537], [37.708223, 55.55379], [37.708313, 55.55379], [37.708313, 55.5537], [37.708223, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.55379], [37.708223, 55.55388], [37.708313, 55.55388], [37.708313, 55.55379], [37.708223, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.55388], [37.708223, 55.55397], [37.708313, 55.55397], [37.708313, 55.55388], [37.708223, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.55397], [37.708223, 55.55406], [37.708313, 55.55406], [37.708313, 55.55397], [37.708223, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.55406], [37.708223, 55.55415], [37.708313, 55.55415], [37.708313, 55.55406], [37.708223, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.55415], [37.708223, 55.55424], [37.708313, 55.55424], [37.708313, 55.55415], [37.708223, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.55424], [37.708223, 55.55433], [37.708313, 55.55433], [37.708313, 55.55424], [37.708223, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.55433], [37.708223, 55.55442], [37.708313, 55.55442], [37.708313, 55.55433], [37.708223, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.55442], [37.708223, 55.55451], [37.708313, 55.55451], [37.708313, 55.55442], [37.708223, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.55451], [37.708223, 55.5546], [37.708313, 55.5546], [37.708313, 55.55451], [37.708223, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.5546], [37.708223, 55.55469], [37.708313, 55.55469], [37.708313, 55.5546], [37.708223, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.55469], [37.708223, 55.55478], [37.708313, 55.55478], [37.708313, 55.55469], [37.708223, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.55478], [37.708223, 55.554869], [37.708313, 55.554869], [37.708313, 55.55478], [37.708223, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.554869], [37.708223, 55.554959], [37.708313, 55.554959], [37.708313, 55.554869], [37.708223, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.554959], [37.708223, 55.555049], [37.708313, 55.555049], [37.708313, 55.554959], [37.708223, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.555049], [37.708223, 55.555139], [37.708313, 55.555139], [37.708313, 55.555049], [37.708223, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.555139], [37.708223, 55.555229], [37.708313, 55.555229], [37.708313, 55.555139], [37.708223, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.555229], [37.708223, 55.555319], [37.708313, 55.555319], [37.708313, 55.555229], [37.708223, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.555319], [37.708223, 55.555409], [37.708313, 55.555409], [37.708313, 55.555319], [37.708223, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.555409], [37.708223, 55.555499], [37.708313, 55.555499], [37.708313, 55.555409], [37.708223, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.555499], [37.708223, 55.555589], [37.708313, 55.555589], [37.708313, 55.555499], [37.708223, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.555589], [37.708223, 55.555679], [37.708313, 55.555679], [37.708313, 55.555589], [37.708223, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.555679], [37.708223, 55.555769], [37.708313, 55.555769], [37.708313, 55.555679], [37.708223, 55.555679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.555769], [37.708223, 55.555859], [37.708313, 55.555859], [37.708313, 55.555769], [37.708223, 55.555769] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.555859], [37.708223, 55.555949], [37.708313, 55.555949], [37.708313, 55.555859], [37.708223, 55.555859] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708223, 55.555949], [37.708223, 55.556039], [37.708313, 55.556039], [37.708313, 55.555949], [37.708223, 55.555949] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708313, 55.5537], [37.708313, 55.55379], [37.708403, 55.55379], [37.708403, 55.5537], [37.708313, 55.5537] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708313, 55.55379], [37.708313, 55.55388], [37.708403, 55.55388], [37.708403, 55.55379], [37.708313, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708313, 55.55388], [37.708313, 55.55397], [37.708403, 55.55397], [37.708403, 55.55388], [37.708313, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708313, 55.55397], [37.708313, 55.55406], [37.708403, 55.55406], [37.708403, 55.55397], [37.708313, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708313, 55.55406], [37.708313, 55.55415], [37.708403, 55.55415], [37.708403, 55.55406], [37.708313, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708313, 55.55415], [37.708313, 55.55424], [37.708403, 55.55424], [37.708403, 55.55415], [37.708313, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708313, 55.55424], [37.708313, 55.55433], [37.708403, 55.55433], [37.708403, 55.55424], [37.708313, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708313, 55.55433], [37.708313, 55.55442], [37.708403, 55.55442], [37.708403, 55.55433], [37.708313, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708313, 55.55442], [37.708313, 55.55451], [37.708403, 55.55451], [37.708403, 55.55442], [37.708313, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708313, 55.55451], [37.708313, 55.5546], [37.708403, 55.5546], [37.708403, 55.55451], [37.708313, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708313, 55.5546], [37.708313, 55.55469], [37.708403, 55.55469], [37.708403, 55.5546], [37.708313, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708313, 55.55469], [37.708313, 55.55478], [37.708403, 55.55478], [37.708403, 55.55469], [37.708313, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708313, 55.55478], [37.708313, 55.554869], [37.708403, 55.554869], [37.708403, 55.55478], [37.708313, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708313, 55.554869], [37.708313, 55.554959], [37.708403, 55.554959], [37.708403, 55.554869], [37.708313, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708313, 55.554959], [37.708313, 55.555049], [37.708403, 55.555049], [37.708403, 55.554959], [37.708313, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708313, 55.555049], [37.708313, 55.555139], [37.708403, 55.555139], [37.708403, 55.555049], [37.708313, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708313, 55.555139], [37.708313, 55.555229], [37.708403, 55.555229], [37.708403, 55.555139], [37.708313, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708313, 55.555229], [37.708313, 55.555319], [37.708403, 55.555319], [37.708403, 55.555229], [37.708313, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708313, 55.555319], [37.708313, 55.555409], [37.708403, 55.555409], [37.708403, 55.555319], [37.708313, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708313, 55.555409], [37.708313, 55.555499], [37.708403, 55.555499], [37.708403, 55.555409], [37.708313, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708313, 55.555499], [37.708313, 55.555589], [37.708403, 55.555589], [37.708403, 55.555499], [37.708313, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708313, 55.555589], [37.708313, 55.555679], [37.708403, 55.555679], [37.708403, 55.555589], [37.708313, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708313, 55.555679], [37.708313, 55.555769], [37.708403, 55.555769], [37.708403, 55.555679], [37.708313, 55.555679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708313, 55.555769], [37.708313, 55.555859], [37.708403, 55.555859], [37.708403, 55.555769], [37.708313, 55.555769] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708313, 55.555859], [37.708313, 55.555949], [37.708403, 55.555949], [37.708403, 55.555859], [37.708313, 55.555859] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708313, 55.555949], [37.708313, 55.556039], [37.708403, 55.556039], [37.708403, 55.555949], [37.708313, 55.555949] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708403, 55.55379], [37.708403, 55.55388], [37.708493, 55.55388], [37.708493, 55.55379], [37.708403, 55.55379] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708403, 55.55388], [37.708403, 55.55397], [37.708493, 55.55397], [37.708493, 55.55388], [37.708403, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708403, 55.55397], [37.708403, 55.55406], [37.708493, 55.55406], [37.708493, 55.55397], [37.708403, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708403, 55.55406], [37.708403, 55.55415], [37.708493, 55.55415], [37.708493, 55.55406], [37.708403, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708403, 55.55415], [37.708403, 55.55424], [37.708493, 55.55424], [37.708493, 55.55415], [37.708403, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708403, 55.55424], [37.708403, 55.55433], [37.708493, 55.55433], [37.708493, 55.55424], [37.708403, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708403, 55.55433], [37.708403, 55.55442], [37.708493, 55.55442], [37.708493, 55.55433], [37.708403, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708403, 55.55442], [37.708403, 55.55451], [37.708493, 55.55451], [37.708493, 55.55442], [37.708403, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708403, 55.55451], [37.708403, 55.5546], [37.708493, 55.5546], [37.708493, 55.55451], [37.708403, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708403, 55.5546], [37.708403, 55.55469], [37.708493, 55.55469], [37.708493, 55.5546], [37.708403, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708403, 55.55469], [37.708403, 55.55478], [37.708493, 55.55478], [37.708493, 55.55469], [37.708403, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708403, 55.55478], [37.708403, 55.554869], [37.708493, 55.554869], [37.708493, 55.55478], [37.708403, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708403, 55.554869], [37.708403, 55.554959], [37.708493, 55.554959], [37.708493, 55.554869], [37.708403, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708403, 55.554959], [37.708403, 55.555049], [37.708493, 55.555049], [37.708493, 55.554959], [37.708403, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708403, 55.555049], [37.708403, 55.555139], [37.708493, 55.555139], [37.708493, 55.555049], [37.708403, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708403, 55.555139], [37.708403, 55.555229], [37.708493, 55.555229], [37.708493, 55.555139], [37.708403, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708403, 55.555229], [37.708403, 55.555319], [37.708493, 55.555319], [37.708493, 55.555229], [37.708403, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708403, 55.555319], [37.708403, 55.555409], [37.708493, 55.555409], [37.708493, 55.555319], [37.708403, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708403, 55.555409], [37.708403, 55.555499], [37.708493, 55.555499], [37.708493, 55.555409], [37.708403, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708403, 55.555499], [37.708403, 55.555589], [37.708493, 55.555589], [37.708493, 55.555499], [37.708403, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708403, 55.555589], [37.708403, 55.555679], [37.708493, 55.555679], [37.708493, 55.555589], [37.708403, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708403, 55.555679], [37.708403, 55.555769], [37.708493, 55.555769], [37.708493, 55.555679], [37.708403, 55.555679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708403, 55.555769], [37.708403, 55.555859], [37.708493, 55.555859], [37.708493, 55.555769], [37.708403, 55.555769] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708403, 55.555859], [37.708403, 55.555949], [37.708493, 55.555949], [37.708493, 55.555859], [37.708403, 55.555859] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708403, 55.555949], [37.708403, 55.556039], [37.708493, 55.556039], [37.708493, 55.555949], [37.708403, 55.555949] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708403, 55.556039], [37.708403, 55.556128], [37.708493, 55.556128], [37.708493, 55.556039], [37.708403, 55.556039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708493, 55.55388], [37.708493, 55.55397], [37.708582, 55.55397], [37.708582, 55.55388], [37.708493, 55.55388] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708493, 55.55397], [37.708493, 55.55406], [37.708582, 55.55406], [37.708582, 55.55397], [37.708493, 55.55397] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708493, 55.55406], [37.708493, 55.55415], [37.708582, 55.55415], [37.708582, 55.55406], [37.708493, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708493, 55.55415], [37.708493, 55.55424], [37.708582, 55.55424], [37.708582, 55.55415], [37.708493, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708493, 55.55424], [37.708493, 55.55433], [37.708582, 55.55433], [37.708582, 55.55424], [37.708493, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708493, 55.55433], [37.708493, 55.55442], [37.708582, 55.55442], [37.708582, 55.55433], [37.708493, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708493, 55.55442], [37.708493, 55.55451], [37.708582, 55.55451], [37.708582, 55.55442], [37.708493, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708493, 55.55451], [37.708493, 55.5546], [37.708582, 55.5546], [37.708582, 55.55451], [37.708493, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708493, 55.5546], [37.708493, 55.55469], [37.708582, 55.55469], [37.708582, 55.5546], [37.708493, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708493, 55.55469], [37.708493, 55.55478], [37.708582, 55.55478], [37.708582, 55.55469], [37.708493, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708493, 55.55478], [37.708493, 55.554869], [37.708582, 55.554869], [37.708582, 55.55478], [37.708493, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708493, 55.554869], [37.708493, 55.554959], [37.708582, 55.554959], [37.708582, 55.554869], [37.708493, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708493, 55.554959], [37.708493, 55.555049], [37.708582, 55.555049], [37.708582, 55.554959], [37.708493, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708493, 55.555049], [37.708493, 55.555139], [37.708582, 55.555139], [37.708582, 55.555049], [37.708493, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708493, 55.555139], [37.708493, 55.555229], [37.708582, 55.555229], [37.708582, 55.555139], [37.708493, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708493, 55.555229], [37.708493, 55.555319], [37.708582, 55.555319], [37.708582, 55.555229], [37.708493, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708493, 55.555319], [37.708493, 55.555409], [37.708582, 55.555409], [37.708582, 55.555319], [37.708493, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708493, 55.555409], [37.708493, 55.555499], [37.708582, 55.555499], [37.708582, 55.555409], [37.708493, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708493, 55.555499], [37.708493, 55.555589], [37.708582, 55.555589], [37.708582, 55.555499], [37.708493, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708493, 55.555589], [37.708493, 55.555679], [37.708582, 55.555679], [37.708582, 55.555589], [37.708493, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708493, 55.555679], [37.708493, 55.555769], [37.708582, 55.555769], [37.708582, 55.555679], [37.708493, 55.555679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708493, 55.555769], [37.708493, 55.555859], [37.708582, 55.555859], [37.708582, 55.555769], [37.708493, 55.555769] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708493, 55.555859], [37.708493, 55.555949], [37.708582, 55.555949], [37.708582, 55.555859], [37.708493, 55.555859] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708493, 55.555949], [37.708493, 55.556039], [37.708582, 55.556039], [37.708582, 55.555949], [37.708493, 55.555949] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708493, 55.556039], [37.708493, 55.556128], [37.708582, 55.556128], [37.708582, 55.556039], [37.708493, 55.556039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708582, 55.55406], [37.708582, 55.55415], [37.708672, 55.55415], [37.708672, 55.55406], [37.708582, 55.55406] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708582, 55.55415], [37.708582, 55.55424], [37.708672, 55.55424], [37.708672, 55.55415], [37.708582, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708582, 55.55424], [37.708582, 55.55433], [37.708672, 55.55433], [37.708672, 55.55424], [37.708582, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708582, 55.55433], [37.708582, 55.55442], [37.708672, 55.55442], [37.708672, 55.55433], [37.708582, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708582, 55.55442], [37.708582, 55.55451], [37.708672, 55.55451], [37.708672, 55.55442], [37.708582, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708582, 55.55451], [37.708582, 55.5546], [37.708672, 55.5546], [37.708672, 55.55451], [37.708582, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708582, 55.5546], [37.708582, 55.55469], [37.708672, 55.55469], [37.708672, 55.5546], [37.708582, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708582, 55.55469], [37.708582, 55.55478], [37.708672, 55.55478], [37.708672, 55.55469], [37.708582, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708582, 55.55478], [37.708582, 55.554869], [37.708672, 55.554869], [37.708672, 55.55478], [37.708582, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708582, 55.554869], [37.708582, 55.554959], [37.708672, 55.554959], [37.708672, 55.554869], [37.708582, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708582, 55.554959], [37.708582, 55.555049], [37.708672, 55.555049], [37.708672, 55.554959], [37.708582, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708582, 55.555049], [37.708582, 55.555139], [37.708672, 55.555139], [37.708672, 55.555049], [37.708582, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708582, 55.555139], [37.708582, 55.555229], [37.708672, 55.555229], [37.708672, 55.555139], [37.708582, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708582, 55.555229], [37.708582, 55.555319], [37.708672, 55.555319], [37.708672, 55.555229], [37.708582, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708582, 55.555319], [37.708582, 55.555409], [37.708672, 55.555409], [37.708672, 55.555319], [37.708582, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708582, 55.555409], [37.708582, 55.555499], [37.708672, 55.555499], [37.708672, 55.555409], [37.708582, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708582, 55.555499], [37.708582, 55.555589], [37.708672, 55.555589], [37.708672, 55.555499], [37.708582, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708582, 55.555589], [37.708582, 55.555679], [37.708672, 55.555679], [37.708672, 55.555589], [37.708582, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708582, 55.555679], [37.708582, 55.555769], [37.708672, 55.555769], [37.708672, 55.555679], [37.708582, 55.555679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708582, 55.555769], [37.708582, 55.555859], [37.708672, 55.555859], [37.708672, 55.555769], [37.708582, 55.555769] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708582, 55.555859], [37.708582, 55.555949], [37.708672, 55.555949], [37.708672, 55.555859], [37.708582, 55.555859] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708582, 55.555949], [37.708582, 55.556039], [37.708672, 55.556039], [37.708672, 55.555949], [37.708582, 55.555949] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708582, 55.556039], [37.708582, 55.556128], [37.708672, 55.556128], [37.708672, 55.556039], [37.708582, 55.556039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708672, 55.55415], [37.708672, 55.55424], [37.708762, 55.55424], [37.708762, 55.55415], [37.708672, 55.55415] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708672, 55.55424], [37.708672, 55.55433], [37.708762, 55.55433], [37.708762, 55.55424], [37.708672, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708672, 55.55433], [37.708672, 55.55442], [37.708762, 55.55442], [37.708762, 55.55433], [37.708672, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708672, 55.55442], [37.708672, 55.55451], [37.708762, 55.55451], [37.708762, 55.55442], [37.708672, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708672, 55.55451], [37.708672, 55.5546], [37.708762, 55.5546], [37.708762, 55.55451], [37.708672, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708672, 55.5546], [37.708672, 55.55469], [37.708762, 55.55469], [37.708762, 55.5546], [37.708672, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708672, 55.55469], [37.708672, 55.55478], [37.708762, 55.55478], [37.708762, 55.55469], [37.708672, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708672, 55.55478], [37.708672, 55.554869], [37.708762, 55.554869], [37.708762, 55.55478], [37.708672, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708672, 55.554869], [37.708672, 55.554959], [37.708762, 55.554959], [37.708762, 55.554869], [37.708672, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708672, 55.554959], [37.708672, 55.555049], [37.708762, 55.555049], [37.708762, 55.554959], [37.708672, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708672, 55.555049], [37.708672, 55.555139], [37.708762, 55.555139], [37.708762, 55.555049], [37.708672, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708672, 55.555139], [37.708672, 55.555229], [37.708762, 55.555229], [37.708762, 55.555139], [37.708672, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708672, 55.555229], [37.708672, 55.555319], [37.708762, 55.555319], [37.708762, 55.555229], [37.708672, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708672, 55.555319], [37.708672, 55.555409], [37.708762, 55.555409], [37.708762, 55.555319], [37.708672, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708672, 55.555409], [37.708672, 55.555499], [37.708762, 55.555499], [37.708762, 55.555409], [37.708672, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708672, 55.555499], [37.708672, 55.555589], [37.708762, 55.555589], [37.708762, 55.555499], [37.708672, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708672, 55.555589], [37.708672, 55.555679], [37.708762, 55.555679], [37.708762, 55.555589], [37.708672, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708672, 55.555679], [37.708672, 55.555769], [37.708762, 55.555769], [37.708762, 55.555679], [37.708672, 55.555679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708672, 55.555769], [37.708672, 55.555859], [37.708762, 55.555859], [37.708762, 55.555769], [37.708672, 55.555769] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708672, 55.555859], [37.708672, 55.555949], [37.708762, 55.555949], [37.708762, 55.555859], [37.708672, 55.555859] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708672, 55.555949], [37.708672, 55.556039], [37.708762, 55.556039], [37.708762, 55.555949], [37.708672, 55.555949] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708672, 55.556039], [37.708672, 55.556128], [37.708762, 55.556128], [37.708762, 55.556039], [37.708672, 55.556039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708762, 55.55424], [37.708762, 55.55433], [37.708852, 55.55433], [37.708852, 55.55424], [37.708762, 55.55424] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708762, 55.55433], [37.708762, 55.55442], [37.708852, 55.55442], [37.708852, 55.55433], [37.708762, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708762, 55.55442], [37.708762, 55.55451], [37.708852, 55.55451], [37.708852, 55.55442], [37.708762, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708762, 55.55451], [37.708762, 55.5546], [37.708852, 55.5546], [37.708852, 55.55451], [37.708762, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708762, 55.5546], [37.708762, 55.55469], [37.708852, 55.55469], [37.708852, 55.5546], [37.708762, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708762, 55.55469], [37.708762, 55.55478], [37.708852, 55.55478], [37.708852, 55.55469], [37.708762, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708762, 55.55478], [37.708762, 55.554869], [37.708852, 55.554869], [37.708852, 55.55478], [37.708762, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708762, 55.554869], [37.708762, 55.554959], [37.708852, 55.554959], [37.708852, 55.554869], [37.708762, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708762, 55.554959], [37.708762, 55.555049], [37.708852, 55.555049], [37.708852, 55.554959], [37.708762, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708762, 55.555049], [37.708762, 55.555139], [37.708852, 55.555139], [37.708852, 55.555049], [37.708762, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708762, 55.555139], [37.708762, 55.555229], [37.708852, 55.555229], [37.708852, 55.555139], [37.708762, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708762, 55.555229], [37.708762, 55.555319], [37.708852, 55.555319], [37.708852, 55.555229], [37.708762, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708762, 55.555319], [37.708762, 55.555409], [37.708852, 55.555409], [37.708852, 55.555319], [37.708762, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708762, 55.555409], [37.708762, 55.555499], [37.708852, 55.555499], [37.708852, 55.555409], [37.708762, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708762, 55.555499], [37.708762, 55.555589], [37.708852, 55.555589], [37.708852, 55.555499], [37.708762, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708762, 55.555589], [37.708762, 55.555679], [37.708852, 55.555679], [37.708852, 55.555589], [37.708762, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708762, 55.555679], [37.708762, 55.555769], [37.708852, 55.555769], [37.708852, 55.555679], [37.708762, 55.555679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708762, 55.555769], [37.708762, 55.555859], [37.708852, 55.555859], [37.708852, 55.555769], [37.708762, 55.555769] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708762, 55.555859], [37.708762, 55.555949], [37.708852, 55.555949], [37.708852, 55.555859], [37.708762, 55.555859] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708762, 55.555949], [37.708762, 55.556039], [37.708852, 55.556039], [37.708852, 55.555949], [37.708762, 55.555949] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708762, 55.556039], [37.708762, 55.556128], [37.708852, 55.556128], [37.708852, 55.556039], [37.708762, 55.556039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708852, 55.55433], [37.708852, 55.55442], [37.708942, 55.55442], [37.708942, 55.55433], [37.708852, 55.55433] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708852, 55.55442], [37.708852, 55.55451], [37.708942, 55.55451], [37.708942, 55.55442], [37.708852, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708852, 55.55451], [37.708852, 55.5546], [37.708942, 55.5546], [37.708942, 55.55451], [37.708852, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708852, 55.5546], [37.708852, 55.55469], [37.708942, 55.55469], [37.708942, 55.5546], [37.708852, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708852, 55.55469], [37.708852, 55.55478], [37.708942, 55.55478], [37.708942, 55.55469], [37.708852, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708852, 55.55478], [37.708852, 55.554869], [37.708942, 55.554869], [37.708942, 55.55478], [37.708852, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708852, 55.554869], [37.708852, 55.554959], [37.708942, 55.554959], [37.708942, 55.554869], [37.708852, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708852, 55.554959], [37.708852, 55.555049], [37.708942, 55.555049], [37.708942, 55.554959], [37.708852, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708852, 55.555049], [37.708852, 55.555139], [37.708942, 55.555139], [37.708942, 55.555049], [37.708852, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708852, 55.555139], [37.708852, 55.555229], [37.708942, 55.555229], [37.708942, 55.555139], [37.708852, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708852, 55.555229], [37.708852, 55.555319], [37.708942, 55.555319], [37.708942, 55.555229], [37.708852, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708852, 55.555319], [37.708852, 55.555409], [37.708942, 55.555409], [37.708942, 55.555319], [37.708852, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708852, 55.555409], [37.708852, 55.555499], [37.708942, 55.555499], [37.708942, 55.555409], [37.708852, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708852, 55.555499], [37.708852, 55.555589], [37.708942, 55.555589], [37.708942, 55.555499], [37.708852, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708852, 55.555589], [37.708852, 55.555679], [37.708942, 55.555679], [37.708942, 55.555589], [37.708852, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708852, 55.555679], [37.708852, 55.555769], [37.708942, 55.555769], [37.708942, 55.555679], [37.708852, 55.555679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708852, 55.555769], [37.708852, 55.555859], [37.708942, 55.555859], [37.708942, 55.555769], [37.708852, 55.555769] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708852, 55.555859], [37.708852, 55.555949], [37.708942, 55.555949], [37.708942, 55.555859], [37.708852, 55.555859] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708852, 55.555949], [37.708852, 55.556039], [37.708942, 55.556039], [37.708942, 55.555949], [37.708852, 55.555949] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708852, 55.556039], [37.708852, 55.556128], [37.708942, 55.556128], [37.708942, 55.556039], [37.708852, 55.556039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708942, 55.55442], [37.708942, 55.55451], [37.709032, 55.55451], [37.709032, 55.55442], [37.708942, 55.55442] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708942, 55.55451], [37.708942, 55.5546], [37.709032, 55.5546], [37.709032, 55.55451], [37.708942, 55.55451] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708942, 55.5546], [37.708942, 55.55469], [37.709032, 55.55469], [37.709032, 55.5546], [37.708942, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708942, 55.55469], [37.708942, 55.55478], [37.709032, 55.55478], [37.709032, 55.55469], [37.708942, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708942, 55.55478], [37.708942, 55.554869], [37.709032, 55.554869], [37.709032, 55.55478], [37.708942, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708942, 55.554869], [37.708942, 55.554959], [37.709032, 55.554959], [37.709032, 55.554869], [37.708942, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708942, 55.554959], [37.708942, 55.555049], [37.709032, 55.555049], [37.709032, 55.554959], [37.708942, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708942, 55.555049], [37.708942, 55.555139], [37.709032, 55.555139], [37.709032, 55.555049], [37.708942, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708942, 55.555139], [37.708942, 55.555229], [37.709032, 55.555229], [37.709032, 55.555139], [37.708942, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708942, 55.555229], [37.708942, 55.555319], [37.709032, 55.555319], [37.709032, 55.555229], [37.708942, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708942, 55.555319], [37.708942, 55.555409], [37.709032, 55.555409], [37.709032, 55.555319], [37.708942, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708942, 55.555409], [37.708942, 55.555499], [37.709032, 55.555499], [37.709032, 55.555409], [37.708942, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708942, 55.555499], [37.708942, 55.555589], [37.709032, 55.555589], [37.709032, 55.555499], [37.708942, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708942, 55.555589], [37.708942, 55.555679], [37.709032, 55.555679], [37.709032, 55.555589], [37.708942, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708942, 55.555679], [37.708942, 55.555769], [37.709032, 55.555769], [37.709032, 55.555679], [37.708942, 55.555679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708942, 55.555769], [37.708942, 55.555859], [37.709032, 55.555859], [37.709032, 55.555769], [37.708942, 55.555769] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708942, 55.555859], [37.708942, 55.555949], [37.709032, 55.555949], [37.709032, 55.555859], [37.708942, 55.555859] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708942, 55.555949], [37.708942, 55.556039], [37.709032, 55.556039], [37.709032, 55.555949], [37.708942, 55.555949] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.708942, 55.556039], [37.708942, 55.556128], [37.709032, 55.556128], [37.709032, 55.556039], [37.708942, 55.556039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709032, 55.5546], [37.709032, 55.55469], [37.709122, 55.55469], [37.709122, 55.5546], [37.709032, 55.5546] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709032, 55.55469], [37.709032, 55.55478], [37.709122, 55.55478], [37.709122, 55.55469], [37.709032, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709032, 55.55478], [37.709032, 55.554869], [37.709122, 55.554869], [37.709122, 55.55478], [37.709032, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709032, 55.554869], [37.709032, 55.554959], [37.709122, 55.554959], [37.709122, 55.554869], [37.709032, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709032, 55.554959], [37.709032, 55.555049], [37.709122, 55.555049], [37.709122, 55.554959], [37.709032, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709032, 55.555049], [37.709032, 55.555139], [37.709122, 55.555139], [37.709122, 55.555049], [37.709032, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709032, 55.555139], [37.709032, 55.555229], [37.709122, 55.555229], [37.709122, 55.555139], [37.709032, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709032, 55.555229], [37.709032, 55.555319], [37.709122, 55.555319], [37.709122, 55.555229], [37.709032, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709032, 55.555319], [37.709032, 55.555409], [37.709122, 55.555409], [37.709122, 55.555319], [37.709032, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709032, 55.555409], [37.709032, 55.555499], [37.709122, 55.555499], [37.709122, 55.555409], [37.709032, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709032, 55.555499], [37.709032, 55.555589], [37.709122, 55.555589], [37.709122, 55.555499], [37.709032, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709032, 55.555589], [37.709032, 55.555679], [37.709122, 55.555679], [37.709122, 55.555589], [37.709032, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709032, 55.555679], [37.709032, 55.555769], [37.709122, 55.555769], [37.709122, 55.555679], [37.709032, 55.555679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709032, 55.555769], [37.709032, 55.555859], [37.709122, 55.555859], [37.709122, 55.555769], [37.709032, 55.555769] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709032, 55.555859], [37.709032, 55.555949], [37.709122, 55.555949], [37.709122, 55.555859], [37.709032, 55.555859] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709032, 55.555949], [37.709032, 55.556039], [37.709122, 55.556039], [37.709122, 55.555949], [37.709032, 55.555949] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709122, 55.55469], [37.709122, 55.55478], [37.709212, 55.55478], [37.709212, 55.55469], [37.709122, 55.55469] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709122, 55.55478], [37.709122, 55.554869], [37.709212, 55.554869], [37.709212, 55.55478], [37.709122, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709122, 55.554869], [37.709122, 55.554959], [37.709212, 55.554959], [37.709212, 55.554869], [37.709122, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709122, 55.554959], [37.709122, 55.555049], [37.709212, 55.555049], [37.709212, 55.554959], [37.709122, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709122, 55.555049], [37.709122, 55.555139], [37.709212, 55.555139], [37.709212, 55.555049], [37.709122, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709122, 55.555139], [37.709122, 55.555229], [37.709212, 55.555229], [37.709212, 55.555139], [37.709122, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709122, 55.555229], [37.709122, 55.555319], [37.709212, 55.555319], [37.709212, 55.555229], [37.709122, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709122, 55.555319], [37.709122, 55.555409], [37.709212, 55.555409], [37.709212, 55.555319], [37.709122, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709122, 55.555409], [37.709122, 55.555499], [37.709212, 55.555499], [37.709212, 55.555409], [37.709122, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709122, 55.555499], [37.709122, 55.555589], [37.709212, 55.555589], [37.709212, 55.555499], [37.709122, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709122, 55.555589], [37.709122, 55.555679], [37.709212, 55.555679], [37.709212, 55.555589], [37.709122, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709122, 55.555679], [37.709122, 55.555769], [37.709212, 55.555769], [37.709212, 55.555679], [37.709122, 55.555679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709122, 55.555769], [37.709122, 55.555859], [37.709212, 55.555859], [37.709212, 55.555769], [37.709122, 55.555769] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709122, 55.555859], [37.709122, 55.555949], [37.709212, 55.555949], [37.709212, 55.555859], [37.709122, 55.555859] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709212, 55.55478], [37.709212, 55.554869], [37.709302, 55.554869], [37.709302, 55.55478], [37.709212, 55.55478] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709212, 55.554869], [37.709212, 55.554959], [37.709302, 55.554959], [37.709302, 55.554869], [37.709212, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709212, 55.554959], [37.709212, 55.555049], [37.709302, 55.555049], [37.709302, 55.554959], [37.709212, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709212, 55.555049], [37.709212, 55.555139], [37.709302, 55.555139], [37.709302, 55.555049], [37.709212, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709212, 55.555139], [37.709212, 55.555229], [37.709302, 55.555229], [37.709302, 55.555139], [37.709212, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709212, 55.555229], [37.709212, 55.555319], [37.709302, 55.555319], [37.709302, 55.555229], [37.709212, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709212, 55.555319], [37.709212, 55.555409], [37.709302, 55.555409], [37.709302, 55.555319], [37.709212, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709212, 55.555409], [37.709212, 55.555499], [37.709302, 55.555499], [37.709302, 55.555409], [37.709212, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709212, 55.555499], [37.709212, 55.555589], [37.709302, 55.555589], [37.709302, 55.555499], [37.709212, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709212, 55.555589], [37.709212, 55.555679], [37.709302, 55.555679], [37.709302, 55.555589], [37.709212, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709212, 55.555679], [37.709212, 55.555769], [37.709302, 55.555769], [37.709302, 55.555679], [37.709212, 55.555679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709212, 55.555769], [37.709212, 55.555859], [37.709302, 55.555859], [37.709302, 55.555769], [37.709212, 55.555769] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709212, 55.555859], [37.709212, 55.555949], [37.709302, 55.555949], [37.709302, 55.555859], [37.709212, 55.555859] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709302, 55.554869], [37.709302, 55.554959], [37.709392, 55.554959], [37.709392, 55.554869], [37.709302, 55.554869] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709302, 55.554959], [37.709302, 55.555049], [37.709392, 55.555049], [37.709392, 55.554959], [37.709302, 55.554959] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709302, 55.555049], [37.709302, 55.555139], [37.709392, 55.555139], [37.709392, 55.555049], [37.709302, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709302, 55.555139], [37.709302, 55.555229], [37.709392, 55.555229], [37.709392, 55.555139], [37.709302, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709302, 55.555229], [37.709302, 55.555319], [37.709392, 55.555319], [37.709392, 55.555229], [37.709302, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709302, 55.555319], [37.709302, 55.555409], [37.709392, 55.555409], [37.709392, 55.555319], [37.709302, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709302, 55.555409], [37.709302, 55.555499], [37.709392, 55.555499], [37.709392, 55.555409], [37.709302, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709302, 55.555499], [37.709302, 55.555589], [37.709392, 55.555589], [37.709392, 55.555499], [37.709302, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709302, 55.555589], [37.709302, 55.555679], [37.709392, 55.555679], [37.709392, 55.555589], [37.709302, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709302, 55.555679], [37.709302, 55.555769], [37.709392, 55.555769], [37.709392, 55.555679], [37.709302, 55.555679] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709392, 55.555049], [37.709392, 55.555139], [37.709482, 55.555139], [37.709482, 55.555049], [37.709392, 55.555049] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709392, 55.555139], [37.709392, 55.555229], [37.709482, 55.555229], [37.709482, 55.555139], [37.709392, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709392, 55.555229], [37.709392, 55.555319], [37.709482, 55.555319], [37.709482, 55.555229], [37.709392, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709392, 55.555319], [37.709392, 55.555409], [37.709482, 55.555409], [37.709482, 55.555319], [37.709392, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709392, 55.555409], [37.709392, 55.555499], [37.709482, 55.555499], [37.709482, 55.555409], [37.709392, 55.555409] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709392, 55.555499], [37.709392, 55.555589], [37.709482, 55.555589], [37.709482, 55.555499], [37.709392, 55.555499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709392, 55.555589], [37.709392, 55.555679], [37.709482, 55.555679], [37.709482, 55.555589], [37.709392, 55.555589] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709482, 55.555139], [37.709482, 55.555229], [37.709572, 55.555229], [37.709572, 55.555139], [37.709482, 55.555139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709482, 55.555229], [37.709482, 55.555319], [37.709572, 55.555319], [37.709572, 55.555229], [37.709482, 55.555229] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709482, 55.555319], [37.709482, 55.555409], [37.709572, 55.555409], [37.709572, 55.555319], [37.709482, 55.555319] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [37.709482, 55.555409], [37.709482, 55.555499], [37.709572, 55.555499], [37.709572, 55.555409], [37.709482, 55.555409] ] ] } }, { "type": "Feature", "bbox": [ 37.69975662231445, 55.55151096909941, 37.70958423614502, 55.55615949302079 ], "properties": { "stroke": "#F00", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [37.69975662231445, 55.55151096909941], [37.70958423614502, 55.55151096909941], [37.70958423614502, 55.55615949302079], [37.69975662231445, 55.55615949302079], [37.69975662231445, 55.55151096909941] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [37.70651578903198, 55.55151096909941], [37.70958423614502, 55.555297797727704], [37.709230184555054, 55.555850013083], [37.70885467529296, 55.55615949302079], [37.70013213157654, 55.55376247689539], [37.69975662231445, 55.55329519343182], [37.70651578903198, 55.55151096909941] ] ] } } ] } ================================================ FILE: packages/turf-square-grid/test/out/london-20-miles.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.524832, 51.358112], [-0.524832, 51.647575], [-0.235369, 51.647575], [-0.235369, 51.358112], [-0.524832, 51.358112] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.235369, 51.358112], [-0.235369, 51.647575], [0.054094, 51.647575], [0.054094, 51.358112], [-0.235369, 51.358112] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.054094, 51.358112], [0.054094, 51.647575], [0.343558, 51.647575], [0.343558, 51.358112], [0.054094, 51.358112] ] ] } }, { "type": "Feature", "bbox": [-0.6207275390625, 51.23784668914442, 0.439453125, 51.767839887322154], "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] ] ] } } ] } ================================================ FILE: packages/turf-square-grid/test/out/piedemont-mask.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.460094, 45.009611], [6.460094, 45.190526], [6.641008, 45.190526], [6.641008, 45.009611], [6.460094, 45.009611] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.641008, 44.828697], [6.641008, 45.009611], [6.821923, 45.009611], [6.821923, 44.828697], [6.641008, 44.828697] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.641008, 45.009611], [6.641008, 45.190526], [6.821923, 45.190526], [6.821923, 45.009611], [6.641008, 45.009611] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.821923, 44.105039], [6.821923, 44.285953], [7.002837, 44.285953], [7.002837, 44.105039], [6.821923, 44.105039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.821923, 44.285953], [6.821923, 44.466868], [7.002837, 44.466868], [7.002837, 44.285953], [6.821923, 44.285953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.821923, 44.466868], [6.821923, 44.647782], [7.002837, 44.647782], [7.002837, 44.466868], [6.821923, 44.466868] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.821923, 44.647782], [6.821923, 44.828697], [7.002837, 44.828697], [7.002837, 44.647782], [6.821923, 44.647782] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.821923, 44.828697], [6.821923, 45.009611], [7.002837, 45.009611], [7.002837, 44.828697], [6.821923, 44.828697] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.821923, 45.009611], [6.821923, 45.190526], [7.002837, 45.190526], [7.002837, 45.009611], [6.821923, 45.009611] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.821923, 45.190526], [6.821923, 45.37144], [7.002837, 45.37144], [7.002837, 45.190526], [6.821923, 45.190526] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.002837, 44.105039], [7.002837, 44.285953], [7.183752, 44.285953], [7.183752, 44.105039], [7.002837, 44.105039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.002837, 44.285953], [7.002837, 44.466868], [7.183752, 44.466868], [7.183752, 44.285953], [7.002837, 44.285953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.002837, 44.466868], [7.002837, 44.647782], [7.183752, 44.647782], [7.183752, 44.466868], [7.002837, 44.466868] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.002837, 44.647782], [7.002837, 44.828697], [7.183752, 44.828697], [7.183752, 44.647782], [7.002837, 44.647782] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.002837, 44.828697], [7.002837, 45.009611], [7.183752, 45.009611], [7.183752, 44.828697], [7.002837, 44.828697] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.002837, 45.009611], [7.002837, 45.190526], [7.183752, 45.190526], [7.183752, 45.009611], [7.002837, 45.009611] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.002837, 45.190526], [7.002837, 45.37144], [7.183752, 45.37144], [7.183752, 45.190526], [7.002837, 45.190526] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.002837, 45.37144], [7.002837, 45.552355], [7.183752, 45.552355], [7.183752, 45.37144], [7.002837, 45.37144] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.183752, 44.105039], [7.183752, 44.285953], [7.364666, 44.285953], [7.364666, 44.105039], [7.183752, 44.105039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.183752, 44.285953], [7.183752, 44.466868], [7.364666, 44.466868], [7.364666, 44.285953], [7.183752, 44.285953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.183752, 44.466868], [7.183752, 44.647782], [7.364666, 44.647782], [7.364666, 44.466868], [7.183752, 44.466868] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.183752, 44.647782], [7.183752, 44.828697], [7.364666, 44.828697], [7.364666, 44.647782], [7.183752, 44.647782] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.183752, 44.828697], [7.183752, 45.009611], [7.364666, 45.009611], [7.364666, 44.828697], [7.183752, 44.828697] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.183752, 45.009611], [7.183752, 45.190526], [7.364666, 45.190526], [7.364666, 45.009611], [7.183752, 45.009611] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.183752, 45.190526], [7.183752, 45.37144], [7.364666, 45.37144], [7.364666, 45.190526], [7.183752, 45.190526] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.183752, 45.37144], [7.183752, 45.552355], [7.364666, 45.552355], [7.364666, 45.37144], [7.183752, 45.37144] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.364666, 44.105039], [7.364666, 44.285953], [7.545581, 44.285953], [7.545581, 44.105039], [7.364666, 44.105039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.364666, 44.285953], [7.364666, 44.466868], [7.545581, 44.466868], [7.545581, 44.285953], [7.364666, 44.285953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.364666, 44.466868], [7.364666, 44.647782], [7.545581, 44.647782], [7.545581, 44.466868], [7.364666, 44.466868] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.364666, 44.647782], [7.364666, 44.828697], [7.545581, 44.828697], [7.545581, 44.647782], [7.364666, 44.647782] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.364666, 44.828697], [7.364666, 45.009611], [7.545581, 45.009611], [7.545581, 44.828697], [7.364666, 44.828697] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.364666, 45.009611], [7.364666, 45.190526], [7.545581, 45.190526], [7.545581, 45.009611], [7.364666, 45.009611] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.364666, 45.190526], [7.364666, 45.37144], [7.545581, 45.37144], [7.545581, 45.190526], [7.364666, 45.190526] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.364666, 45.37144], [7.364666, 45.552355], [7.545581, 45.552355], [7.545581, 45.37144], [7.364666, 45.37144] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.364666, 45.552355], [7.364666, 45.733269], [7.545581, 45.733269], [7.545581, 45.552355], [7.364666, 45.552355] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.545581, 44.105039], [7.545581, 44.285953], [7.726495, 44.285953], [7.726495, 44.105039], [7.545581, 44.105039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.545581, 44.285953], [7.545581, 44.466868], [7.726495, 44.466868], [7.726495, 44.285953], [7.545581, 44.285953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.545581, 44.466868], [7.545581, 44.647782], [7.726495, 44.647782], [7.726495, 44.466868], [7.545581, 44.466868] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.545581, 44.647782], [7.545581, 44.828697], [7.726495, 44.828697], [7.726495, 44.647782], [7.545581, 44.647782] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.545581, 44.828697], [7.545581, 45.009611], [7.726495, 45.009611], [7.726495, 44.828697], [7.545581, 44.828697] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.545581, 45.009611], [7.545581, 45.190526], [7.726495, 45.190526], [7.726495, 45.009611], [7.545581, 45.009611] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.545581, 45.190526], [7.545581, 45.37144], [7.726495, 45.37144], [7.726495, 45.190526], [7.545581, 45.190526] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.545581, 45.37144], [7.545581, 45.552355], [7.726495, 45.552355], [7.726495, 45.37144], [7.545581, 45.37144] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.545581, 45.552355], [7.545581, 45.733269], [7.726495, 45.733269], [7.726495, 45.552355], [7.545581, 45.552355] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.726495, 44.105039], [7.726495, 44.285953], [7.90741, 44.285953], [7.90741, 44.105039], [7.726495, 44.105039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.726495, 44.285953], [7.726495, 44.466868], [7.90741, 44.466868], [7.90741, 44.285953], [7.726495, 44.285953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.726495, 44.466868], [7.726495, 44.647782], [7.90741, 44.647782], [7.90741, 44.466868], [7.726495, 44.466868] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.726495, 44.647782], [7.726495, 44.828697], [7.90741, 44.828697], [7.90741, 44.647782], [7.726495, 44.647782] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.726495, 44.828697], [7.726495, 45.009611], [7.90741, 45.009611], [7.90741, 44.828697], [7.726495, 44.828697] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.726495, 45.009611], [7.726495, 45.190526], [7.90741, 45.190526], [7.90741, 45.009611], [7.726495, 45.009611] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.726495, 45.190526], [7.726495, 45.37144], [7.90741, 45.37144], [7.90741, 45.190526], [7.726495, 45.190526] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.726495, 45.37144], [7.726495, 45.552355], [7.90741, 45.552355], [7.90741, 45.37144], [7.726495, 45.37144] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.726495, 45.552355], [7.726495, 45.733269], [7.90741, 45.733269], [7.90741, 45.552355], [7.726495, 45.552355] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.726495, 45.733269], [7.726495, 45.914184], [7.90741, 45.914184], [7.90741, 45.733269], [7.726495, 45.733269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.726495, 45.914184], [7.726495, 46.095098], [7.90741, 46.095098], [7.90741, 45.914184], [7.726495, 45.914184] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.90741, 44.105039], [7.90741, 44.285953], [8.088324, 44.285953], [8.088324, 44.105039], [7.90741, 44.105039] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.90741, 44.285953], [7.90741, 44.466868], [8.088324, 44.466868], [8.088324, 44.285953], [7.90741, 44.285953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.90741, 44.466868], [7.90741, 44.647782], [8.088324, 44.647782], [8.088324, 44.466868], [7.90741, 44.466868] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.90741, 44.647782], [7.90741, 44.828697], [8.088324, 44.828697], [8.088324, 44.647782], [7.90741, 44.647782] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.90741, 44.828697], [7.90741, 45.009611], [8.088324, 45.009611], [8.088324, 44.828697], [7.90741, 44.828697] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.90741, 45.009611], [7.90741, 45.190526], [8.088324, 45.190526], [8.088324, 45.009611], [7.90741, 45.009611] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.90741, 45.190526], [7.90741, 45.37144], [8.088324, 45.37144], [8.088324, 45.190526], [7.90741, 45.190526] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.90741, 45.37144], [7.90741, 45.552355], [8.088324, 45.552355], [8.088324, 45.37144], [7.90741, 45.37144] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.90741, 45.552355], [7.90741, 45.733269], [8.088324, 45.733269], [8.088324, 45.552355], [7.90741, 45.552355] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.90741, 45.733269], [7.90741, 45.914184], [8.088324, 45.914184], [8.088324, 45.733269], [7.90741, 45.733269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.90741, 45.914184], [7.90741, 46.095098], [8.088324, 46.095098], [8.088324, 45.914184], [7.90741, 45.914184] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.90741, 46.095098], [7.90741, 46.276013], [8.088324, 46.276013], [8.088324, 46.095098], [7.90741, 46.095098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.088324, 44.285953], [8.088324, 44.466868], [8.269239, 44.466868], [8.269239, 44.285953], [8.088324, 44.285953] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.088324, 44.466868], [8.088324, 44.647782], [8.269239, 44.647782], [8.269239, 44.466868], [8.088324, 44.466868] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.088324, 44.647782], [8.088324, 44.828697], [8.269239, 44.828697], [8.269239, 44.647782], [8.088324, 44.647782] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.088324, 44.828697], [8.088324, 45.009611], [8.269239, 45.009611], [8.269239, 44.828697], [8.088324, 44.828697] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.088324, 45.009611], [8.088324, 45.190526], [8.269239, 45.190526], [8.269239, 45.009611], [8.088324, 45.009611] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.088324, 45.190526], [8.088324, 45.37144], [8.269239, 45.37144], [8.269239, 45.190526], [8.088324, 45.190526] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.088324, 45.37144], [8.088324, 45.552355], [8.269239, 45.552355], [8.269239, 45.37144], [8.088324, 45.37144] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.088324, 45.552355], [8.088324, 45.733269], [8.269239, 45.733269], [8.269239, 45.552355], [8.088324, 45.552355] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.088324, 45.733269], [8.088324, 45.914184], [8.269239, 45.914184], [8.269239, 45.733269], [8.088324, 45.733269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.088324, 45.914184], [8.088324, 46.095098], [8.269239, 46.095098], [8.269239, 45.914184], [8.088324, 45.914184] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.088324, 46.095098], [8.088324, 46.276013], [8.269239, 46.276013], [8.269239, 46.095098], [8.088324, 46.095098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.088324, 46.276013], [8.088324, 46.456927], [8.269239, 46.456927], [8.269239, 46.276013], [8.088324, 46.276013] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.269239, 44.466868], [8.269239, 44.647782], [8.450153, 44.647782], [8.450153, 44.466868], [8.269239, 44.466868] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.269239, 44.647782], [8.269239, 44.828697], [8.450153, 44.828697], [8.450153, 44.647782], [8.269239, 44.647782] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.269239, 44.828697], [8.269239, 45.009611], [8.450153, 45.009611], [8.450153, 44.828697], [8.269239, 44.828697] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.269239, 45.009611], [8.269239, 45.190526], [8.450153, 45.190526], [8.450153, 45.009611], [8.269239, 45.009611] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.269239, 45.190526], [8.269239, 45.37144], [8.450153, 45.37144], [8.450153, 45.190526], [8.269239, 45.190526] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.269239, 45.37144], [8.269239, 45.552355], [8.450153, 45.552355], [8.450153, 45.37144], [8.269239, 45.37144] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.269239, 45.552355], [8.269239, 45.733269], [8.450153, 45.733269], [8.450153, 45.552355], [8.269239, 45.552355] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.269239, 45.733269], [8.269239, 45.914184], [8.450153, 45.914184], [8.450153, 45.733269], [8.269239, 45.733269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.269239, 45.914184], [8.269239, 46.095098], [8.450153, 46.095098], [8.450153, 45.914184], [8.269239, 45.914184] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.269239, 46.095098], [8.269239, 46.276013], [8.450153, 46.276013], [8.450153, 46.095098], [8.269239, 46.095098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.269239, 46.276013], [8.269239, 46.456927], [8.450153, 46.456927], [8.450153, 46.276013], [8.269239, 46.276013] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.450153, 44.466868], [8.450153, 44.647782], [8.631068, 44.647782], [8.631068, 44.466868], [8.450153, 44.466868] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.450153, 44.647782], [8.450153, 44.828697], [8.631068, 44.828697], [8.631068, 44.647782], [8.450153, 44.647782] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.450153, 44.828697], [8.450153, 45.009611], [8.631068, 45.009611], [8.631068, 44.828697], [8.450153, 44.828697] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.450153, 45.009611], [8.450153, 45.190526], [8.631068, 45.190526], [8.631068, 45.009611], [8.450153, 45.009611] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.450153, 45.190526], [8.450153, 45.37144], [8.631068, 45.37144], [8.631068, 45.190526], [8.450153, 45.190526] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.450153, 45.37144], [8.450153, 45.552355], [8.631068, 45.552355], [8.631068, 45.37144], [8.450153, 45.37144] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.450153, 45.552355], [8.450153, 45.733269], [8.631068, 45.733269], [8.631068, 45.552355], [8.450153, 45.552355] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.450153, 45.733269], [8.450153, 45.914184], [8.631068, 45.914184], [8.631068, 45.733269], [8.450153, 45.733269] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.450153, 45.914184], [8.450153, 46.095098], [8.631068, 46.095098], [8.631068, 45.914184], [8.450153, 45.914184] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.450153, 46.095098], [8.450153, 46.276013], [8.631068, 46.276013], [8.631068, 46.095098], [8.450153, 46.095098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.450153, 46.276013], [8.450153, 46.456927], [8.631068, 46.456927], [8.631068, 46.276013], [8.450153, 46.276013] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.631068, 44.466868], [8.631068, 44.647782], [8.811982, 44.647782], [8.811982, 44.466868], [8.631068, 44.466868] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.631068, 44.647782], [8.631068, 44.828697], [8.811982, 44.828697], [8.811982, 44.647782], [8.631068, 44.647782] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.631068, 44.828697], [8.631068, 45.009611], [8.811982, 45.009611], [8.811982, 44.828697], [8.631068, 44.828697] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.631068, 45.009611], [8.631068, 45.190526], [8.811982, 45.190526], [8.811982, 45.009611], [8.631068, 45.009611] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.631068, 45.190526], [8.631068, 45.37144], [8.811982, 45.37144], [8.811982, 45.190526], [8.631068, 45.190526] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.631068, 45.37144], [8.631068, 45.552355], [8.811982, 45.552355], [8.811982, 45.37144], [8.631068, 45.37144] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.631068, 45.552355], [8.631068, 45.733269], [8.811982, 45.733269], [8.811982, 45.552355], [8.631068, 45.552355] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.631068, 45.914184], [8.631068, 46.095098], [8.811982, 46.095098], [8.811982, 45.914184], [8.631068, 45.914184] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.631068, 46.095098], [8.631068, 46.276013], [8.811982, 46.276013], [8.811982, 46.095098], [8.631068, 46.095098] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.811982, 44.466868], [8.811982, 44.647782], [8.992897, 44.647782], [8.992897, 44.466868], [8.811982, 44.466868] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.811982, 44.647782], [8.811982, 44.828697], [8.992897, 44.828697], [8.992897, 44.647782], [8.811982, 44.647782] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.811982, 44.828697], [8.811982, 45.009611], [8.992897, 45.009611], [8.992897, 44.828697], [8.811982, 44.828697] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.811982, 45.009611], [8.811982, 45.190526], [8.992897, 45.190526], [8.992897, 45.009611], [8.811982, 45.009611] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.811982, 45.37144], [8.811982, 45.552355], [8.992897, 45.552355], [8.992897, 45.37144], [8.811982, 45.37144] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.992897, 44.466868], [8.992897, 44.647782], [9.173811, 44.647782], [9.173811, 44.466868], [8.992897, 44.466868] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.992897, 44.647782], [8.992897, 44.828697], [9.173811, 44.828697], [9.173811, 44.647782], [8.992897, 44.647782] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.992897, 44.828697], [8.992897, 45.009611], [9.173811, 45.009611], [9.173811, 44.828697], [8.992897, 44.828697] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [9.173811, 44.466868], [9.173811, 44.647782], [9.354725, 44.647782], [9.354725, 44.466868], [9.173811, 44.466868] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [9.173811, 44.647782], [9.173811, 44.828697], [9.354725, 44.828697], [9.354725, 44.647782], [9.173811, 44.647782] ] ] } }, { "type": "Feature", "bbox": [6.3775634765625, 44.05601169578525, 9.437255859375, 46.50595444552049], "properties": { "stroke": "#F00", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [6.3775634765625, 44.05601169578525], [9.437255859375, 44.05601169578525], [9.437255859375, 46.50595444552049], [6.3775634765625, 46.50595444552049], [6.3775634765625, 44.05601169578525] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "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] ] ] } } ] } ================================================ FILE: packages/turf-square-grid/test/out/properties.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.134018, 41.39763], [2.134018, 41.406623], [2.143011, 41.406623], [2.143011, 41.39763], [2.134018, 41.39763] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.134018, 41.406623], [2.134018, 41.415616], [2.143011, 41.415616], [2.143011, 41.406623], [2.134018, 41.406623] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.143011, 41.388636], [2.143011, 41.39763], [2.152004, 41.39763], [2.152004, 41.388636], [2.143011, 41.388636] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.143011, 41.39763], [2.143011, 41.406623], [2.152004, 41.406623], [2.152004, 41.39763], [2.143011, 41.39763] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.143011, 41.406623], [2.143011, 41.415616], [2.152004, 41.415616], [2.152004, 41.406623], [2.143011, 41.406623] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.152004, 41.388636], [2.152004, 41.39763], [2.160997, 41.39763], [2.160997, 41.388636], [2.152004, 41.388636] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.152004, 41.39763], [2.152004, 41.406623], [2.160997, 41.406623], [2.160997, 41.39763], [2.152004, 41.39763] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.152004, 41.406623], [2.152004, 41.415616], [2.160997, 41.415616], [2.160997, 41.406623], [2.152004, 41.406623] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.160997, 41.379643], [2.160997, 41.388636], [2.16999, 41.388636], [2.16999, 41.379643], [2.160997, 41.379643] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.160997, 41.388636], [2.160997, 41.39763], [2.16999, 41.39763], [2.16999, 41.388636], [2.160997, 41.388636] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.160997, 41.39763], [2.160997, 41.406623], [2.16999, 41.406623], [2.16999, 41.39763], [2.160997, 41.39763] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.160997, 41.406623], [2.160997, 41.415616], [2.16999, 41.415616], [2.16999, 41.406623], [2.160997, 41.406623] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.160997, 41.415616], [2.160997, 41.424609], [2.16999, 41.424609], [2.16999, 41.415616], [2.160997, 41.415616] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.160997, 41.424609], [2.160997, 41.433602], [2.16999, 41.433602], [2.16999, 41.424609], [2.160997, 41.424609] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.160997, 41.433602], [2.160997, 41.442596], [2.16999, 41.442596], [2.16999, 41.433602], [2.160997, 41.433602] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.16999, 41.379643], [2.16999, 41.388636], [2.178984, 41.388636], [2.178984, 41.379643], [2.16999, 41.379643] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.16999, 41.388636], [2.16999, 41.39763], [2.178984, 41.39763], [2.178984, 41.388636], [2.16999, 41.388636] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.16999, 41.39763], [2.16999, 41.406623], [2.178984, 41.406623], [2.178984, 41.39763], [2.16999, 41.39763] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.16999, 41.406623], [2.16999, 41.415616], [2.178984, 41.415616], [2.178984, 41.406623], [2.16999, 41.406623] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.16999, 41.415616], [2.16999, 41.424609], [2.178984, 41.424609], [2.178984, 41.415616], [2.16999, 41.415616] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.16999, 41.424609], [2.16999, 41.433602], [2.178984, 41.433602], [2.178984, 41.424609], [2.16999, 41.424609] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.16999, 41.433602], [2.16999, 41.442596], [2.178984, 41.442596], [2.178984, 41.433602], [2.16999, 41.433602] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.178984, 41.379643], [2.178984, 41.388636], [2.187977, 41.388636], [2.187977, 41.379643], [2.178984, 41.379643] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.178984, 41.388636], [2.178984, 41.39763], [2.187977, 41.39763], [2.187977, 41.388636], [2.178984, 41.388636] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.178984, 41.39763], [2.178984, 41.406623], [2.187977, 41.406623], [2.187977, 41.39763], [2.178984, 41.39763] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.178984, 41.406623], [2.178984, 41.415616], [2.187977, 41.415616], [2.187977, 41.406623], [2.178984, 41.406623] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.178984, 41.415616], [2.178984, 41.424609], [2.187977, 41.424609], [2.187977, 41.415616], [2.178984, 41.415616] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.178984, 41.424609], [2.178984, 41.433602], [2.187977, 41.433602], [2.187977, 41.424609], [2.178984, 41.424609] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.178984, 41.433602], [2.178984, 41.442596], [2.187977, 41.442596], [2.187977, 41.433602], [2.178984, 41.433602] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.187977, 41.379643], [2.187977, 41.388636], [2.19697, 41.388636], [2.19697, 41.379643], [2.187977, 41.379643] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.187977, 41.388636], [2.187977, 41.39763], [2.19697, 41.39763], [2.19697, 41.388636], [2.187977, 41.388636] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.187977, 41.39763], [2.187977, 41.406623], [2.19697, 41.406623], [2.19697, 41.39763], [2.187977, 41.39763] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.187977, 41.406623], [2.187977, 41.415616], [2.19697, 41.415616], [2.19697, 41.406623], [2.187977, 41.406623] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.187977, 41.415616], [2.187977, 41.424609], [2.19697, 41.424609], [2.19697, 41.415616], [2.187977, 41.415616] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.187977, 41.424609], [2.187977, 41.433602], [2.19697, 41.433602], [2.19697, 41.424609], [2.187977, 41.424609] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.187977, 41.433602], [2.187977, 41.442596], [2.19697, 41.442596], [2.19697, 41.433602], [2.187977, 41.433602] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.19697, 41.388636], [2.19697, 41.39763], [2.205963, 41.39763], [2.205963, 41.388636], [2.19697, 41.388636] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.19697, 41.39763], [2.19697, 41.406623], [2.205963, 41.406623], [2.205963, 41.39763], [2.19697, 41.39763] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.19697, 41.406623], [2.19697, 41.415616], [2.205963, 41.415616], [2.205963, 41.406623], [2.19697, 41.406623] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.19697, 41.415616], [2.19697, 41.424609], [2.205963, 41.424609], [2.205963, 41.415616], [2.19697, 41.415616] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.19697, 41.424609], [2.19697, 41.433602], [2.205963, 41.433602], [2.205963, 41.424609], [2.19697, 41.424609] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.205963, 41.39763], [2.205963, 41.406623], [2.214957, 41.406623], [2.214957, 41.39763], [2.205963, 41.39763] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.205963, 41.406623], [2.205963, 41.415616], [2.214957, 41.415616], [2.214957, 41.406623], [2.205963, 41.406623] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.205963, 41.415616], [2.205963, 41.424609], [2.214957, 41.424609], [2.214957, 41.415616], [2.205963, 41.415616] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.205963, 41.424609], [2.205963, 41.433602], [2.214957, 41.433602], [2.214957, 41.424609], [2.205963, 41.424609] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.214957, 41.406623], [2.214957, 41.415616], [2.22395, 41.415616], [2.22395, 41.406623], [2.214957, 41.406623] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.214957, 41.415616], [2.214957, 41.424609], [2.22395, 41.424609], [2.22395, 41.415616], [2.214957, 41.415616] ] ] } }, { "type": "Feature", "bbox": [ 2.131519317626953, 41.37835427979543, 2.2264480590820312, 41.44388449101261 ], "properties": { "stroke": "#F00", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.131519317626953, 41.37835427979543], [2.2264480590820312, 41.37835427979543], [2.2264480590820312, 41.44388449101261], [2.131519317626953, 41.44388449101261], [2.131519317626953, 41.37835427979543] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.223186492919922, 41.416856461155575], [2.1716880798339844, 41.44182560856202], [2.1636199951171875, 41.41608406639095], [2.1334075927734375, 41.407200866420744], [2.1845626831054683, 41.37977115211044], [2.223186492919922, 41.416856461155575] ] ] } } ] } ================================================ FILE: packages/turf-square-grid/test/out/resolute.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.859406, 74.504464], [-95.859406, 74.685378], [-95.678492, 74.685378], [-95.678492, 74.504464], [-95.859406, 74.504464] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.859406, 74.685378], [-95.859406, 74.866293], [-95.678492, 74.866293], [-95.678492, 74.685378], [-95.859406, 74.685378] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.678492, 74.504464], [-95.678492, 74.685378], [-95.497577, 74.685378], [-95.497577, 74.504464], [-95.678492, 74.504464] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.678492, 74.685378], [-95.678492, 74.866293], [-95.497577, 74.866293], [-95.497577, 74.685378], [-95.678492, 74.685378] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.497577, 74.504464], [-95.497577, 74.685378], [-95.316663, 74.685378], [-95.316663, 74.504464], [-95.497577, 74.504464] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.497577, 74.685378], [-95.497577, 74.866293], [-95.316663, 74.866293], [-95.316663, 74.685378], [-95.497577, 74.685378] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.316663, 74.504464], [-95.316663, 74.685378], [-95.135748, 74.685378], [-95.135748, 74.504464], [-95.316663, 74.504464] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.316663, 74.685378], [-95.316663, 74.866293], [-95.135748, 74.866293], [-95.135748, 74.685378], [-95.316663, 74.685378] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.135748, 74.504464], [-95.135748, 74.685378], [-94.954834, 74.685378], [-94.954834, 74.504464], [-95.135748, 74.504464] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.135748, 74.685378], [-95.135748, 74.866293], [-94.954834, 74.866293], [-94.954834, 74.685378], [-95.135748, 74.685378] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.954834, 74.504464], [-94.954834, 74.685378], [-94.77392, 74.685378], [-94.77392, 74.504464], [-94.954834, 74.504464] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.954834, 74.685378], [-94.954834, 74.866293], [-94.77392, 74.866293], [-94.77392, 74.685378], [-94.954834, 74.685378] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.77392, 74.504464], [-94.77392, 74.685378], [-94.593005, 74.685378], [-94.593005, 74.504464], [-94.77392, 74.504464] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.77392, 74.685378], [-94.77392, 74.866293], [-94.593005, 74.866293], [-94.593005, 74.685378], [-94.77392, 74.685378] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.593005, 74.504464], [-94.593005, 74.685378], [-94.412091, 74.685378], [-94.412091, 74.504464], [-94.593005, 74.504464] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.593005, 74.685378], [-94.593005, 74.866293], [-94.412091, 74.866293], [-94.412091, 74.685378], [-94.593005, 74.685378] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.412091, 74.504464], [-94.412091, 74.685378], [-94.231176, 74.685378], [-94.231176, 74.504464], [-94.412091, 74.504464] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.412091, 74.685378], [-94.412091, 74.866293], [-94.231176, 74.866293], [-94.231176, 74.685378], [-94.412091, 74.685378] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.231176, 74.504464], [-94.231176, 74.685378], [-94.050262, 74.685378], [-94.050262, 74.504464], [-94.231176, 74.504464] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.231176, 74.685378], [-94.231176, 74.866293], [-94.050262, 74.866293], [-94.050262, 74.685378], [-94.231176, 74.685378] ] ] } }, { "type": "Feature", "bbox": [-95.877685546875, 74.46849062193377, -94.031982421875, 74.90226611990785], "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] ] ] } } ] } ================================================ FILE: packages/turf-square-grid/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { bboxPolygon as bboxPoly } from "@turf/bbox-polygon"; import { truncate } from "@turf/truncate"; import { squareGrid } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; let fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, json: loadJsonFileSync(directories.in + filename), }; }); test("square-grid", (t) => { for (const { name, json } of fixtures) { const { bbox, cellSide, units, properties, mask } = json; const options = { mask, units, properties, }; const result = truncate(squareGrid(bbox, cellSide, options)); // Add styled GeoJSON to the result const poly = bboxPoly(bbox); poly.properties = { stroke: "#F00", "stroke-width": 6, "fill-opacity": 0, }; result.features.push(poly); if (options.mask) { options.mask.properties = { stroke: "#00F", "stroke-width": 6, "fill-opacity": 0, }; result.features.push(options.mask); } if (process.env.REGEN) writeJsonFileSync(directories.out + name + ".geojson", result); t.deepEqual( result, loadJsonFileSync(directories.out + name + ".geojson"), name ); } t.end(); }); ================================================ FILE: packages/turf-square-grid/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-standard-deviational-ellipse/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-standard-deviational-ellipse/README.md ================================================ # @turf/standard-deviational-ellipse ## standardDeviationalEllipse Takes a collection of features and returns a standard deviational ellipse, also known as a “directional distribution.” The standard deviational ellipse aims to show the direction and the distribution of a dataset by drawing an ellipse that contains about one standard deviation’s worth (\~ 70%) of the data. This module mirrors the functionality of [Directional Distribution][1] in ArcGIS and the [QGIS Standard Deviational Ellipse Plugin][2] **Bibliography** • Robert S. Yuill, “The Standard Deviational Ellipse; An Updated Tool for Spatial Description,” *Geografiska Annaler* 53, no. 1 (1971): 28–39, doi:{@link [https://doi.org/10.2307/490885|10.2307/490885}][3]. • Paul Hanly Furfey, “A Note on Lefever’s “Standard Deviational Ellipse,” *American Journal of Sociology* 33, no. 1 (1927): 94—98, doi:{@link [https://doi.org/10.1086/214336|10.1086/214336}][4]. ### Parameters * `points` **[FeatureCollection][5]<[Point][6]>** GeoJSON points * `options` **[Object][7]** Optional parameters (optional, default `{}`) * `options.weight` **[string][8]?** the property name used to weight the center * `options.steps` **[number][9]** number of steps for the polygon (optional, default `64`) * `options.properties` **[Object][7]** properties to pass to the resulting ellipse (optional, default `{}`) ### Examples ```javascript const bbox = [-74, 40.72, -73.98, 40.74]; const points = turf.randomPoint(400, {bbox: bbox}); const sdEllipse = turf.standardDeviationalEllipse(points); //addToMap const addToMap = [points, sdEllipse]; ``` Returns **[Feature][10]<[Polygon][11]>** an elliptical Polygon that includes approximately 1 SD of the dataset within it. [1]: http://desktop.arcgis.com/en/arcmap/10.3/tools/spatial-statistics-toolbox/directional-distribution.htm [2]: http://arken.nmbu.no/~havatv/gis/qgisplugins/SDEllipse/ [3]: https://doi.org/10.2307/490885|10.2307/490885} [4]: https://doi.org/10.1086/214336|10.1086/214336} [5]: https://tools.ietf.org/html/rfc7946#section-3.3 [6]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [7]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [8]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String [9]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [10]: https://tools.ietf.org/html/rfc7946#section-3.2 [11]: https://tools.ietf.org/html/rfc7946#section-3.1.6 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/standard-deviational-ellipse ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-standard-deviational-ellipse/bench.ts ================================================ import { BBox } from "geojson"; import { randomPoint } from "@turf/random"; import { standardDeviationalEllipse } from "./index.js"; import Benchmark, { Event } from "benchmark"; /** * Benchmark Results * * turf-standard-deviational-ellipse - 150 points x 1,874 ops/sec ±5.89% (89 runs sampled) * turf-standard-deviational-ellipse - 300 points x 1,092 ops/sec ±0.79% (93 runs sampled) * turf-standard-deviational-ellipse - 600 points x 574 ops/sec ±1.14% (92 runs sampled) */ const suite = new Benchmark.Suite("turf-standard-deviational-ellipse"); const properties: { bbox: BBox } = { bbox: [-10, -10, 10, 10] }; suite .add("turf-standard-deviational-ellipse - 150 points", () => standardDeviationalEllipse(randomPoint(150, properties)) ) .add("turf-standard-deviational-ellipse - 300 points", () => standardDeviationalEllipse(randomPoint(300, properties)) ) .add("turf-standard-deviational-ellipse - 600 points", () => standardDeviationalEllipse(randomPoint(600, properties)) ) .on("cycle", (e: Event) => console.log(String(e.target))) .run(); ================================================ FILE: packages/turf-standard-deviational-ellipse/index.ts ================================================ import { FeatureCollection, Feature, Position, Polygon, GeoJsonProperties, Point, } from "geojson"; import { coordAll, featureEach } from "@turf/meta"; import { getCoords } from "@turf/invariant"; import { featureCollection, isObject, isNumber } from "@turf/helpers"; import { centerMean } from "@turf/center-mean"; import { pointsWithinPolygon } from "@turf/points-within-polygon"; import { ellipse } from "@turf/ellipse"; declare interface SDEProps { meanCenterCoordinates: Position; semiMajorAxis: number; semiMinorAxis: number; numberOfFeatures: number; angle: number; percentageWithinEllipse: number; } declare interface StandardDeviationalEllipse extends Feature { properties: { standardDeviationalEllipse: SDEProps; [key: string]: any; } | null; } /** * Takes a collection of features and returns a standard deviational ellipse, * also known as a “directional distribution.” The standard deviational ellipse * aims to show the direction and the distribution of a dataset by drawing * an ellipse that contains about one standard deviation’s worth (~ 70%) of the * data. * * This module mirrors the functionality of {@link http://desktop.arcgis.com/en/arcmap/10.3/tools/spatial-statistics-toolbox/directional-distribution.htm|Directional Distribution} * in ArcGIS and the {@link http://arken.nmbu.no/~havatv/gis/qgisplugins/SDEllipse/|QGIS Standard Deviational Ellipse Plugin} * * **Bibliography** * * • Robert S. Yuill, “The Standard Deviational Ellipse; An Updated Tool for * Spatial Description,” _Geografiska Annaler_ 53, no. 1 (1971): 28–39, * doi:{@link https://doi.org/10.2307/490885|10.2307/490885}. * * • Paul Hanly Furfey, “A Note on Lefever’s “Standard Deviational Ellipse,” * _American Journal of Sociology_ 33, no. 1 (1927): 94—98, * doi:{@link https://doi.org/10.1086/214336|10.1086/214336}. * * * @function * @param {FeatureCollection} points GeoJSON points * @param {Object} [options={}] Optional parameters * @param {string} [options.weight] the property name used to weight the center * @param {number} [options.steps=64] number of steps for the polygon * @param {Object} [options.properties={}] properties to pass to the resulting ellipse * @returns {Feature} an elliptical Polygon that includes approximately 1 SD of the dataset within it. * @example * * const bbox = [-74, 40.72, -73.98, 40.74]; * const points = turf.randomPoint(400, {bbox: bbox}); * const sdEllipse = turf.standardDeviationalEllipse(points); * * //addToMap * const addToMap = [points, sdEllipse]; * */ function standardDeviationalEllipse( points: FeatureCollection, options?: { properties?: GeoJsonProperties; weight?: string; steps?: number; } ): StandardDeviationalEllipse { // Optional params options = options || {}; if (!isObject(options)) throw new Error("options is invalid"); const steps = options.steps || 64; const weightTerm = options.weight; const properties = options.properties || {}; // Validation: if (!isNumber(steps)) throw new Error("steps must be a number"); if (!isObject(properties)) throw new Error("properties must be a number"); // Calculate mean center & number of features: const numberOfFeatures = coordAll(points).length; const meanCenter = centerMean(points, { weight: weightTerm }); // Calculate angle of rotation: // [X, Y] = mean center of all [x, y]. // theta = arctan( (A + B) / C ) // A = sum((x - X)^2) - sum((y - Y)^2) // B = sqrt(A^2 + 4(sum((x - X)(y - Y))^2)) // C = 2(sum((x - X)(y - Y))) let xDeviationSquaredSum = 0; let yDeviationSquaredSum = 0; let xyDeviationSum = 0; featureEach(points, function (point) { // weightTerm or point.properties might be undefined, hence this check. const weight = weightTerm ? point.properties?.[weightTerm] || 1 : 1; const deviation = getDeviations(getCoords(point), getCoords(meanCenter)); xDeviationSquaredSum += Math.pow(deviation.x, 2) * weight; yDeviationSquaredSum += Math.pow(deviation.y, 2) * weight; xyDeviationSum += deviation.x * deviation.y * weight; }); const bigA = xDeviationSquaredSum - yDeviationSquaredSum; const bigB = Math.sqrt(Math.pow(bigA, 2) + 4 * Math.pow(xyDeviationSum, 2)); const bigC = 2 * xyDeviationSum; const theta = Math.atan((bigA + bigB) / bigC); const thetaDeg = (theta * 180) / Math.PI; // Calculate axes: // sigmaX = sqrt((1 / n - 2) * sum((((x - X) * cos(theta)) - ((y - Y) * sin(theta)))^2)) // sigmaY = sqrt((1 / n - 2) * sum((((x - X) * sin(theta)) - ((y - Y) * cos(theta)))^2)) let sigmaXsum = 0; let sigmaYsum = 0; let weightsum = 0; featureEach(points, function (point) { // weightTerm or point.properties might be undefined, hence this check. const weight = weightTerm ? point.properties?.[weightTerm] || 1 : 1; const deviation = getDeviations(getCoords(point), getCoords(meanCenter)); sigmaXsum += Math.pow( deviation.x * Math.cos(theta) - deviation.y * Math.sin(theta), 2 ) * weight; sigmaYsum += Math.pow( deviation.x * Math.sin(theta) + deviation.y * Math.cos(theta), 2 ) * weight; weightsum += weight; }); const sigmaX = Math.sqrt((2 * sigmaXsum) / weightsum); const sigmaY = Math.sqrt((2 * sigmaYsum) / weightsum); const theEllipse: Feature = ellipse(meanCenter, sigmaX, sigmaY, { units: "degrees", angle: thetaDeg, steps: steps, properties: properties, }); const pointsWithinEllipse = pointsWithinPolygon( points, featureCollection([theEllipse]) ); const standardDeviationalEllipseProperties = { meanCenterCoordinates: getCoords(meanCenter), semiMajorAxis: sigmaX, semiMinorAxis: sigmaY, numberOfFeatures: numberOfFeatures, angle: thetaDeg, percentageWithinEllipse: (100 * coordAll(pointsWithinEllipse).length) / numberOfFeatures, }; // Make sure properties object exists. theEllipse.properties = theEllipse.properties ?? {}; theEllipse.properties.standardDeviationalEllipse = standardDeviationalEllipseProperties; // We have added the StandardDeviationalEllipse specific properties, so // confirm this to Typescript with a cast. return theEllipse as StandardDeviationalEllipse; } /** * Get x_i - X and y_i - Y * * @private * @param {Position} coordinates Array of [x_i, y_i] * @param {Position} center Array of [X, Y] * @returns {Object} { x: n, y: m } */ function getDeviations(coordinates: Position, center: Position) { return { x: coordinates[0] - center[0], y: coordinates[1] - center[1], }; } export { standardDeviationalEllipse, SDEProps, StandardDeviationalEllipse }; export default standardDeviationalEllipse; ================================================ FILE: packages/turf-standard-deviational-ellipse/package.json ================================================ { "name": "@turf/standard-deviational-ellipse", "version": "7.3.4", "description": "Takes a collection of features and returns a standard deviational ellipse.", "author": "Turf Authors", "contributors": [ "Moacir P. de Sá Pereira <@muziejus>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "standard-deviational-ellipse", "geostatistics", "directional distribution" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/random": "workspace:*", "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/center-mean": "workspace:*", "@turf/ellipse": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@turf/points-within-polygon": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-standard-deviational-ellipse/test/in/mta-stations-unweighted.json ================================================ { "type": "FeatureCollection", "options": { "weight": null }, "esriEllipse": { "type": "Feature", "properties": { "CenterX": -73.937241989100002, "CenterY": 40.729767710399997, "XStdDist": 0.076118465941399996, "YStdDist": 0.111162799783, "Rotation": 16.480452681300001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.937242, 40.836186], [-73.95061, 40.832464], [-73.962925, 40.827467], [-73.974045, 40.821573], [-73.983949, 40.815099], [-73.992697, 40.808283], [-74.00039, 40.801291], [-74.007142, 40.794228], [-74.013069, 40.787155], [-74.018273, 40.780095], [-74.022843, 40.773051], [-74.026852, 40.76601], [-74.030356, 40.758945], [-74.033397, 40.751824], [-74.035999, 40.744608], [-74.038172, 40.737256], [-74.039907, 40.729722], [-74.041179, 40.721963], [-74.041939, 40.713935], [-74.042117, 40.705603], [-74.041611, 40.696944], [-74.04029, 40.687956], [-74.037986, 40.678674], [-74.034501, 40.669186], [-74.029617, 40.659656], [-74.023121, 40.650342], [-74.01485, 40.641608], [-74.004753, 40.633898], [-73.992947, 40.627687], [-73.979755, 40.623387], [-73.96568, 40.621247], [-73.951317, 40.621297], [-73.937242, 40.62335], [-73.923915, 40.62707], [-73.911634, 40.632063], [-73.90054, 40.637951], [-73.890654, 40.644418], [-73.881917, 40.651226], [-73.87423, 40.65821], [-73.867477, 40.665265], [-73.861546, 40.672331], [-73.856334, 40.679384], [-73.851753, 40.686421], [-73.84773, 40.693457], [-73.844209, 40.700516], [-73.841151, 40.707632], [-73.838529, 40.714843], [-73.836335, 40.722192], [-73.834577, 40.729722], [-73.833281, 40.737479], [-73.832495, 40.745506], [-73.832291, 40.753837], [-73.83277, 40.762497], [-73.834065, 40.771488], [-73.836343, 40.780774], [-73.839806, 40.790268], [-73.844672, 40.799806], [-73.851158, 40.809129], [-73.859428, 40.817876], [-73.869536, 40.825598], [-73.881366, 40.831822], [-73.894592, 40.836133], [-73.908711, 40.838281], [-73.923121, 40.838237], [-73.937242, 40.836186] ] ] } }, "features": [ { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-73.991069, 40.730054] } }, { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-74.000192, 40.718803] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.983848, 40.761727] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.974999, 40.680862] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.894885, 40.664714] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.90087, 40.884667] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.958066, 40.800581] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.940858, 40.679918] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.898788, 40.749719] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.929018, 40.75196] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.987409, 40.718306] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.891657, 40.678028] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.879625, 40.68152] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.844435, 40.695165] } }, { "type": "Feature", "properties": { "weight": 9 }, "geometry": { "type": "Point", "coordinates": [-73.98177, 40.690648] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.82758, 40.583268] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.813651, 40.588091] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.891752, 40.829987] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.896617, 40.822142] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.90074, 40.856092] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.910136, 40.845899] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.918432, 40.833768] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.845624, 40.754621] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.869527, 40.749144] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.83003, 40.759599] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.832569, 40.846809] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.926138, 40.810476] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.851221, 40.834254] } }, { "type": "Feature", "properties": { "weight": 15 }, "geometry": { "type": "Point", "coordinates": [-74.004131, 40.713064] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.847035, 40.836488] } }, { "type": "Feature", "properties": { "weight": 15 }, "geometry": { "type": "Point", "coordinates": [-73.976713, 40.751807] } }, { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-73.982076, 40.74608] } }, { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-73.95107, 40.785671] } }, { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-73.959873, 40.77362] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.910383, 40.682851] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.983109, 40.677315] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.882034, 40.74237] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.920785, 40.678822] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.86748, 40.857192] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.866134, 40.877839] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.854315, 40.898286] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.958099, 40.670765] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.893066, 40.823976] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.868356, 40.848768] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.950079, 40.656659] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.889404, 40.665517] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.927384, 40.818303] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.925691, 40.82823] } }, { "type": "Feature", "properties": { "weight": 15 }, "geometry": { "type": "Point", "coordinates": [-73.967967, 40.762526] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.904097, 40.812117] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.874515, 40.829521] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.886282, 40.826525] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.867617, 40.831509] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.902984, 40.74563] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.755404, 40.603995] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.976336, 40.775519] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.964602, 40.791618] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.93956, 40.840718] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.893509, 40.866977] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.98459, 40.754184] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.962031, 40.661633] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.995348, 40.631478] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.817012, 40.702898] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.83037, 40.714034] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.808004, 40.700382] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.946054, 40.747768] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.85286, 40.726505] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.87722, 40.736813] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.978171, 40.636118] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.95999, 40.688889] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.950312, 40.706126] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.950247, 40.714072] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.901916, 40.669145] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.903958, 40.688866] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.916638, 40.686415] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.947354, 40.703844] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-74.011515, 40.63497] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.929861, 40.756442] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.925822, 40.761431] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.986768, 40.754611] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.979188, 40.752768] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.957624, 40.674771] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.832162, 40.684331] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-74.000308, 40.732254] } }, { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-73.97192, 40.757106] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.976217, 40.788644] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.857362, 40.893143] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.982208, 40.77344] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.890549, 40.820947] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.006277, 40.722853] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.836321, 40.843863] } }, { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-73.986599, 40.739864] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.945264, 40.747022] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.981929, 40.768247] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.948916, 40.742215] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.995657, 40.74408] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.005367, 40.728251] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.837683, 40.681711] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.815832, 40.608402] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.9685, 40.576311] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.95358, 40.742625] } }, { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-73.96387, 40.768141] } }, { "type": "Feature", "properties": { "weight": 15 }, "geometry": { "type": "Point", "coordinates": [-73.940163, 40.750635] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.843852, 40.680428] } }, { "type": "Feature", "properties": { "weight": 15 }, "geometry": { "type": "Point", "coordinates": [-73.98995, 40.734673] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.953522, 40.689627] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.979735, 40.660035] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.980251, 40.666244] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.975775, 40.650781] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.979721, 40.644272] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.964357, 40.643904] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.962882, 40.650493] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.962694, 40.635141] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.961453, 40.655073] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.970956, 40.675294] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.977549, 40.68442] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.911945, 40.678339] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.975374, 40.687118] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.966795, 40.688094] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.972852, 40.677102] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.976783, 40.684488] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.978809, 40.683665] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.990151, 40.692403] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.835918, 40.672096] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.860495, 40.854363] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.855359, 40.858984] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.950426, 40.680438] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.980406, 40.68831] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.964222, 40.672032] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.948847, 40.645123] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.949455, 40.65086] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.948299, 40.639991] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.947541, 40.632842] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.950728, 40.662772] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.932932, 40.668978] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.942159, 40.669481] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.951183, 40.724479] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.954425, 40.731266] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.957832, 40.708383] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.953488, 40.706889] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.929848, 40.813223] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.975248, 40.760086] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.969072, 40.757468] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.988698, 40.745453] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.987936, 40.749644] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.98168, 40.730974] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.986228, 40.755983] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.951423, 40.712774] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.940496, 40.711576] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.943943, 40.714575] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.956664, 40.717173] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.939792, 40.707391] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.943815, 40.746305] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.949599, 40.744128] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.932851, 40.752763] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.950359, 40.82655] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.944889, 40.834041] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.972322, 40.793919] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.968378, 40.799446] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.951822, 40.799074] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.96137, 40.79606] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.98197, 40.778453] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.972097, 40.781346] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.836923, 40.718044] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.968828, 40.785823] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.966847, 40.803966] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.964109, 40.807722] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.945495, 40.807753] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.94077, 40.814229] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.949625, 40.802097] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.905227, 40.850409] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.953676, 40.822007] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.936244, 40.82042] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.911793, 40.84848] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.907684, 40.853453] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.913399, 40.839305] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.940132, 40.840555] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.933595, 40.849504] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.929411, 40.855225] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.939703, 40.847391] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.776012, 40.592942] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.788521, 40.592374] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.82052, 40.585385] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.83559, 40.580955] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.768174, 40.595398] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.761352, 40.600066] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.803289, 40.707571] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.793474, 40.710517] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.862699, 40.749865] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.855333, 40.751729] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.861618, 40.729763] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.865049, 40.677044] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.979917, 40.783933] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.903096, 40.675344] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.002905, 40.733422] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.825797, 40.68595] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.98769, 40.755477] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.975957, 40.576033] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.993365, 40.747214] } }, { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-73.984264, 40.743069] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.828121, 40.852461] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.842951, 40.839892] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.997871, 40.741039] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.976041, 40.751431] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.796923, 40.590927] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-74.000495, 40.732337] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.860087, 40.692426] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.852051, 40.693703] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.836793, 40.697114] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.828349, 40.700481] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.903934, 40.695518] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.910975, 40.699471] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.88411, 40.666314] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.890358, 40.672709] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.885194, 40.679777] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.900562, 40.664057] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.902448, 40.663589] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.908958, 40.662617] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.90185, 40.646653] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.899547, 40.650468] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.91633, 40.661529] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.922521, 40.664766] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.899277, 40.658914] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.904289, 40.679366] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.898526, 40.676998] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.880749, 40.67413] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.873929, 40.683152] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.873321, 40.689616] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.867287, 40.69129] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.896402, 40.746324] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.891205, 40.746867] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.869432, 40.733097] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.912178, 40.699454] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.907581, 40.702918] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.918232, 40.703692] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.912548, 40.744149] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.913521, 40.756316] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.906065, 40.752824] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.918435, 40.743132] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.883697, 40.747658] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.876612, 40.748408] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.830301, 40.660476] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.834057, 40.668234] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.820692, 40.709161] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.844516, 40.721594] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.810832, 40.705417] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.801096, 40.702067] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.860214, 40.888028] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.879158, 40.828584] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.896434, 40.816103] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.918095, 40.770036] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.912034, 40.775035] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.907701, 40.816437] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.901777, 40.819487] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.914041, 40.805368] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.887693, 40.837195] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.867234, 40.865483] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.907656, 40.808719] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.897174, 40.86776] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.890064, 40.873411] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.93647, 40.82388] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.914684, 40.844434] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.897749, 40.861295] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.91779, 40.840074] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.887137, 40.873243] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.90983, 40.87456] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.904834, 40.878855] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.915278, 40.869443] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.918819, 40.864614] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.919899, 40.868071] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.898583, 40.889248] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.879961, 40.840207] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.862509, 40.883887] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.884654, 40.879749] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.878854, 40.874811] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.867053, 40.871258] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.83859, 40.878663] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.830834, 40.888299] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.783817, 40.712645] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.850619, 40.903125] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.959244, 40.670342] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.905261, 40.68286] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.903117, 40.678456] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.846384, 40.869525] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.873346, 40.841863] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.925536, 40.860531] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.958372, 40.81558] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.955827, 40.680595] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.926722, 40.81833] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.917791, 40.816029] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.921399, 40.835536] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.919239, 40.807565] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.930996, 40.744586] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.924015, 40.743781] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.944087, 40.824766] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.938208, 40.830134] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.92565, 40.827904] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.930728, 40.679363] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.920526, 40.756987] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.928508, 40.693172] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.922156, 40.689583] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.927242, 40.697873] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.91972, 40.69866] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.921479, 40.766778] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.922913, 40.706606] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.933147, 40.706151] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.937138, 40.748917] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.97697, 40.629754] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-74.025509, 40.629741] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-74.023376, 40.634966] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.994658, 40.63626] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-74.005351, 40.631385] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.986829, 40.597703] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.993676, 40.60195] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.984521, 40.617108] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.990453, 40.620686] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-74.030876, 40.616621] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-74.028397, 40.622686] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-74.000582, 40.613158] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.99884, 40.619258] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.998174, 40.604676] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-74.001592, 40.607735] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.996857, 40.626224] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.996353, 40.624841] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.973376, 40.595924] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.972355, 40.603258] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.961353, 40.57771] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.954057, 40.586547] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.955811, 40.599308] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.957608, 40.608638] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.979084, 40.597235] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.980373, 40.604058] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.974592, 40.580738] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.974265, 40.589449] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.983765, 40.58884] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.978188, 40.592465] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.973002, 40.608842] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.974048, 40.614356] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.975256, 40.620731] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.959243, 40.617397] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.98178, 40.611455] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.976069, 40.625017] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.960693, 40.625022] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.961517, 40.629208] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.955078, 40.595321] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.941937, 40.753739] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.985984, 40.762455] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.981697, 40.76297] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.981331, 40.758641] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.977368, 40.764085] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.966089, 40.764618] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.953234, 40.759171] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.981648, 40.768249] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.984209, 40.759801] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.980729, 40.764565] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.973347, 40.76481] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.967375, 40.762708] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.991056, 40.750373] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.987495, 40.755289] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.007623, 40.710162] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.008584, 40.714111] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.989735, 40.757307] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.949066, 40.694618] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.950234, 40.700376] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.992765, 40.742954] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.987771, 40.749789] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.985036, 40.688408] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.987218, 40.69247] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.990177, 40.713855] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.988078, 40.71868] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.989938, 40.723401] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.941377, 40.700404] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.935623, 40.697195] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.989778, 40.670271] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.995891, 40.673641] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.990756, 40.68611] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.986056, 40.692255] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.991818, 40.694196] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.990538, 40.735872] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.989344, 40.741302] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.992872, 40.665413] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.988301, 40.670846] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.98575, 40.73269] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.990669, 40.734763] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.896548, 40.674541] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.905316, 40.678333] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.01788, 40.641361] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.010006, 40.648938] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-74.003548, 40.655143] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.994448, 40.646484] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.014033, 40.645068] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.994202, 40.640912] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.99809, 40.660396] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.994946, 40.680273] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-74.003738, 40.726227] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.937969, 40.851694] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.934179, 40.859021] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.954797, 40.805058] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.952247, 40.811071] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.997702, 40.724328] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.992507, 40.730464] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.00657, 40.709415] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.00881, 40.71305] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-74.009266, 40.715478] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.985063, 40.690544] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.989997, 40.693218] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.903879, 40.858407] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.901033, 40.862802] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-74.009744, 40.712563] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-74.005229, 40.720824] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.941514, 40.830517] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.939892, 40.836012] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.007938, 40.710022] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.003406, 40.713233] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.999826, 40.718173] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.006985, 40.713272] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.001826, 40.719465] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-74.013168, 40.70173] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.014007, 40.704913] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.011861, 40.707557] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.013007, 40.703142] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.012974, 40.707744] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.895898, 40.706225] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.889577, 40.711431] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-74.013783, 40.707512] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-74.012188, 40.711835] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.009508, 40.710367] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.011055, 40.706476] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.011131, 40.710512] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.009099, 40.70682] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.92727, 40.86549] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.993752, 40.718266] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.996203, 40.725296] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.993806, 40.720246] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.001054, 40.718814] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.998041, 40.745905] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.99339, 40.752287] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.891298, 40.746539] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-74.000201, 40.737825] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.947534, 40.817905] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.996208, 40.738227] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.99775, 40.737741] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-74.002578, 40.739776] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-74.001689, 40.740893] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.950426, 40.669938] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.993085, 40.697465] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.956848, 40.681379] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.965837, 40.683262] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.903075, 40.704412] } }, { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-73.944249, 40.79502] } }, { "type": "Feature", "properties": { "weight": 15 }, "geometry": { "type": "Point", "coordinates": [-73.955588, 40.779491] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.986884, 40.699742] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.990531, 40.699336] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.973945, 40.686113] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.950589, 40.667883] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.87875, 40.886037] } }, { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-73.994659, 40.725914] } }, { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-73.947478, 40.7906] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.872106, 40.675376] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.85147, 40.679843] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.96379, 40.64094] } }, { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-73.941616, 40.798629] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.860816, 40.833225] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.006886, 40.719318] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.858992, 40.679371] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.981962, 40.753821] } }, { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-73.997141, 40.7223] } }, { "type": "Feature", "properties": { "weight": 15 }, "geometry": { "type": "Point", "coordinates": [-73.937594, 40.804138] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.981235, 40.577281] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-74.002197, 40.755446] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.958361, 40.768802] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.95177, 40.777861] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.947066, 40.784236] } } ] } ================================================ FILE: packages/turf-standard-deviational-ellipse/test/in/mta-stations-weighted.json ================================================ { "type": "FeatureCollection", "options": { "weight": "weight" }, "esriEllipse": { "type": "Feature", "properties": { "CenterX": -73.943062056800002, "CenterY": 40.741053779799998, "XStdDist": 0.070694780293799997, "YStdDist": 0.095782853119499994, "Rotation": 29.231047966799999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.943062, 40.828517], [-73.954059, 40.825539], [-73.964297, 40.821839], [-73.973743, 40.817592], [-73.982408, 40.812939], [-73.990332, 40.807982], [-73.997572, 40.802794], [-74.004185, 40.79742], [-74.010229, 40.791885], [-74.015753, 40.786199], [-74.020799, 40.780359], [-74.025399, 40.774353], [-74.029572, 40.76816], [-74.033324, 40.761758], [-74.036647, 40.755117], [-74.039516, 40.748211], [-74.041886, 40.741012], [-74.043691, 40.7335], [-74.044837, 40.725667], [-74.045205, 40.717524], [-74.044648, 40.709112], [-74.042995, 40.700515], [-74.040065, 40.691868], [-74.035686, 40.683373], [-74.02973, 40.675291], [-74.022154, 40.667927], [-74.013031, 40.661598], [-74.00257, 40.656579], [-73.991101, 40.653056], [-73.979028, 40.651095], [-73.966766, 40.65064], [-73.954682, 40.651541], [-73.943062, 40.65359], [-73.932093, 40.656568], [-73.921879, 40.660265], [-73.912452, 40.664507], [-73.903802, 40.669155], [-73.895887, 40.674106], [-73.888653, 40.679288], [-73.882042, 40.684655], [-73.875998, 40.690183], [-73.87047, 40.695863], [-73.865417, 40.701696], [-73.860808, 40.707696], [-73.856623, 40.713883], [-73.852857, 40.72028], [-73.849517, 40.726915], [-73.846629, 40.733817], [-73.844238, 40.741012], [-73.842411, 40.74852], [-73.84124, 40.756351], [-73.840847, 40.764493], [-73.841378, 40.772906], [-73.843007, 40.781506], [-73.845916, 40.790158], [-73.850278, 40.79866], [-73.856222, 40.806752], [-73.863796, 40.814126], [-73.872926, 40.820467], [-73.883402, 40.825498], [-73.894896, 40.829032], [-73.906999, 40.831002], [-73.919294, 40.831463], [-73.93141, 40.830566], [-73.943062, 40.828517] ] ] } }, "features": [ { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-73.991069, 40.730054] } }, { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-74.000192, 40.718803] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.983848, 40.761727] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.974999, 40.680862] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.894885, 40.664714] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.90087, 40.884667] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.958066, 40.800581] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.940858, 40.679918] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.898788, 40.749719] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.929018, 40.75196] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.987409, 40.718306] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.891657, 40.678028] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.879625, 40.68152] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.844435, 40.695165] } }, { "type": "Feature", "properties": { "weight": 9 }, "geometry": { "type": "Point", "coordinates": [-73.98177, 40.690648] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.82758, 40.583268] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.813651, 40.588091] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.891752, 40.829987] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.896617, 40.822142] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.90074, 40.856092] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.910136, 40.845899] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.918432, 40.833768] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.845624, 40.754621] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.869527, 40.749144] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.83003, 40.759599] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.832569, 40.846809] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.926138, 40.810476] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.851221, 40.834254] } }, { "type": "Feature", "properties": { "weight": 15 }, "geometry": { "type": "Point", "coordinates": [-74.004131, 40.713064] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.847035, 40.836488] } }, { "type": "Feature", "properties": { "weight": 15 }, "geometry": { "type": "Point", "coordinates": [-73.976713, 40.751807] } }, { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-73.982076, 40.74608] } }, { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-73.95107, 40.785671] } }, { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-73.959873, 40.77362] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.910383, 40.682851] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.983109, 40.677315] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.882034, 40.74237] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.920785, 40.678822] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.86748, 40.857192] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.866134, 40.877839] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.854315, 40.898286] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.958099, 40.670765] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.893066, 40.823976] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.868356, 40.848768] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.950079, 40.656659] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.889404, 40.665517] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.927384, 40.818303] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.925691, 40.82823] } }, { "type": "Feature", "properties": { "weight": 15 }, "geometry": { "type": "Point", "coordinates": [-73.967967, 40.762526] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.904097, 40.812117] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.874515, 40.829521] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.886282, 40.826525] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.867617, 40.831509] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.902984, 40.74563] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.755404, 40.603995] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.976336, 40.775519] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.964602, 40.791618] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.93956, 40.840718] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.893509, 40.866977] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.98459, 40.754184] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.962031, 40.661633] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.995348, 40.631478] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.817012, 40.702898] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.83037, 40.714034] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.808004, 40.700382] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.946054, 40.747768] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.85286, 40.726505] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.87722, 40.736813] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.978171, 40.636118] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.95999, 40.688889] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.950312, 40.706126] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.950247, 40.714072] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.901916, 40.669145] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.903958, 40.688866] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.916638, 40.686415] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.947354, 40.703844] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-74.011515, 40.63497] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.929861, 40.756442] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.925822, 40.761431] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.986768, 40.754611] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.979188, 40.752768] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.957624, 40.674771] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.832162, 40.684331] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-74.000308, 40.732254] } }, { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-73.97192, 40.757106] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.976217, 40.788644] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.857362, 40.893143] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.982208, 40.77344] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.890549, 40.820947] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.006277, 40.722853] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.836321, 40.843863] } }, { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-73.986599, 40.739864] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.945264, 40.747022] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.981929, 40.768247] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.948916, 40.742215] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.995657, 40.74408] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.005367, 40.728251] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.837683, 40.681711] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.815832, 40.608402] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.9685, 40.576311] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.95358, 40.742625] } }, { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-73.96387, 40.768141] } }, { "type": "Feature", "properties": { "weight": 15 }, "geometry": { "type": "Point", "coordinates": [-73.940163, 40.750635] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.843852, 40.680428] } }, { "type": "Feature", "properties": { "weight": 15 }, "geometry": { "type": "Point", "coordinates": [-73.98995, 40.734673] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.953522, 40.689627] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.979735, 40.660035] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.980251, 40.666244] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.975775, 40.650781] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.979721, 40.644272] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.964357, 40.643904] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.962882, 40.650493] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.962694, 40.635141] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.961453, 40.655073] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.970956, 40.675294] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.977549, 40.68442] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.911945, 40.678339] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.975374, 40.687118] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.966795, 40.688094] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.972852, 40.677102] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.976783, 40.684488] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.978809, 40.683665] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.990151, 40.692403] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.835918, 40.672096] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.860495, 40.854363] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.855359, 40.858984] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.950426, 40.680438] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.980406, 40.68831] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.964222, 40.672032] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.948847, 40.645123] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.949455, 40.65086] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.948299, 40.639991] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.947541, 40.632842] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.950728, 40.662772] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.932932, 40.668978] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.942159, 40.669481] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.951183, 40.724479] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.954425, 40.731266] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.957832, 40.708383] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.953488, 40.706889] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.929848, 40.813223] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.975248, 40.760086] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.969072, 40.757468] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.988698, 40.745453] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.987936, 40.749644] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.98168, 40.730974] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.986228, 40.755983] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.951423, 40.712774] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.940496, 40.711576] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.943943, 40.714575] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.956664, 40.717173] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.939792, 40.707391] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.943815, 40.746305] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.949599, 40.744128] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.932851, 40.752763] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.950359, 40.82655] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.944889, 40.834041] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.972322, 40.793919] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.968378, 40.799446] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.951822, 40.799074] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.96137, 40.79606] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.98197, 40.778453] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.972097, 40.781346] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.836923, 40.718044] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.968828, 40.785823] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.966847, 40.803966] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.964109, 40.807722] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.945495, 40.807753] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.94077, 40.814229] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.949625, 40.802097] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.905227, 40.850409] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.953676, 40.822007] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.936244, 40.82042] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.911793, 40.84848] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.907684, 40.853453] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.913399, 40.839305] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.940132, 40.840555] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.933595, 40.849504] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.929411, 40.855225] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.939703, 40.847391] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.776012, 40.592942] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.788521, 40.592374] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.82052, 40.585385] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.83559, 40.580955] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.768174, 40.595398] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.761352, 40.600066] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.803289, 40.707571] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.793474, 40.710517] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.862699, 40.749865] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.855333, 40.751729] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.861618, 40.729763] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.865049, 40.677044] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.979917, 40.783933] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.903096, 40.675344] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.002905, 40.733422] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.825797, 40.68595] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.98769, 40.755477] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.975957, 40.576033] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.993365, 40.747214] } }, { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-73.984264, 40.743069] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.828121, 40.852461] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.842951, 40.839892] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.997871, 40.741039] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.976041, 40.751431] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.796923, 40.590927] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-74.000495, 40.732337] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.860087, 40.692426] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.852051, 40.693703] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.836793, 40.697114] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.828349, 40.700481] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.903934, 40.695518] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.910975, 40.699471] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.88411, 40.666314] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.890358, 40.672709] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.885194, 40.679777] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.900562, 40.664057] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.902448, 40.663589] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.908958, 40.662617] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.90185, 40.646653] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.899547, 40.650468] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.91633, 40.661529] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.922521, 40.664766] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.899277, 40.658914] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.904289, 40.679366] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.898526, 40.676998] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.880749, 40.67413] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.873929, 40.683152] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.873321, 40.689616] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.867287, 40.69129] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.896402, 40.746324] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.891205, 40.746867] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.869432, 40.733097] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.912178, 40.699454] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.907581, 40.702918] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.918232, 40.703692] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.912548, 40.744149] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.913521, 40.756316] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.906065, 40.752824] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.918435, 40.743132] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.883697, 40.747658] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.876612, 40.748408] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.830301, 40.660476] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.834057, 40.668234] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.820692, 40.709161] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.844516, 40.721594] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.810832, 40.705417] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.801096, 40.702067] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.860214, 40.888028] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.879158, 40.828584] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.896434, 40.816103] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.918095, 40.770036] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.912034, 40.775035] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.907701, 40.816437] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.901777, 40.819487] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.914041, 40.805368] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.887693, 40.837195] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.867234, 40.865483] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.907656, 40.808719] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.897174, 40.86776] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.890064, 40.873411] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.93647, 40.82388] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.914684, 40.844434] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.897749, 40.861295] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.91779, 40.840074] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.887137, 40.873243] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.90983, 40.87456] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.904834, 40.878855] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.915278, 40.869443] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.918819, 40.864614] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.919899, 40.868071] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.898583, 40.889248] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.879961, 40.840207] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.862509, 40.883887] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.884654, 40.879749] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.878854, 40.874811] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.867053, 40.871258] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.83859, 40.878663] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.830834, 40.888299] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.783817, 40.712645] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.850619, 40.903125] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.959244, 40.670342] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.905261, 40.68286] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.903117, 40.678456] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.846384, 40.869525] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.873346, 40.841863] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.925536, 40.860531] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.958372, 40.81558] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.955827, 40.680595] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.926722, 40.81833] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.917791, 40.816029] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.921399, 40.835536] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.919239, 40.807565] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.930996, 40.744586] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.924015, 40.743781] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.944087, 40.824766] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.938208, 40.830134] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.92565, 40.827904] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.930728, 40.679363] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.920526, 40.756987] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.928508, 40.693172] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.922156, 40.689583] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.927242, 40.697873] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.91972, 40.69866] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.921479, 40.766778] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.922913, 40.706606] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.933147, 40.706151] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.937138, 40.748917] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.97697, 40.629754] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-74.025509, 40.629741] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-74.023376, 40.634966] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.994658, 40.63626] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-74.005351, 40.631385] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.986829, 40.597703] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.993676, 40.60195] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.984521, 40.617108] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.990453, 40.620686] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-74.030876, 40.616621] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-74.028397, 40.622686] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-74.000582, 40.613158] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.99884, 40.619258] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.998174, 40.604676] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-74.001592, 40.607735] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.996857, 40.626224] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.996353, 40.624841] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.973376, 40.595924] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.972355, 40.603258] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.961353, 40.57771] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.954057, 40.586547] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.955811, 40.599308] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.957608, 40.608638] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.979084, 40.597235] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.980373, 40.604058] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.974592, 40.580738] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.974265, 40.589449] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.983765, 40.58884] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.978188, 40.592465] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.973002, 40.608842] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.974048, 40.614356] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.975256, 40.620731] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.959243, 40.617397] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.98178, 40.611455] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.976069, 40.625017] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.960693, 40.625022] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.961517, 40.629208] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.955078, 40.595321] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.941937, 40.753739] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.985984, 40.762455] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.981697, 40.76297] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.981331, 40.758641] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.977368, 40.764085] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.966089, 40.764618] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.953234, 40.759171] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.981648, 40.768249] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.984209, 40.759801] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.980729, 40.764565] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.973347, 40.76481] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.967375, 40.762708] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.991056, 40.750373] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.987495, 40.755289] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.007623, 40.710162] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.008584, 40.714111] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.989735, 40.757307] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.949066, 40.694618] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.950234, 40.700376] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.992765, 40.742954] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.987771, 40.749789] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.985036, 40.688408] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.987218, 40.69247] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.990177, 40.713855] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.988078, 40.71868] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.989938, 40.723401] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.941377, 40.700404] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.935623, 40.697195] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.989778, 40.670271] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.995891, 40.673641] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.990756, 40.68611] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.986056, 40.692255] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.991818, 40.694196] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.990538, 40.735872] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.989344, 40.741302] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.992872, 40.665413] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.988301, 40.670846] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.98575, 40.73269] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.990669, 40.734763] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.896548, 40.674541] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.905316, 40.678333] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.01788, 40.641361] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.010006, 40.648938] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-74.003548, 40.655143] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.994448, 40.646484] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.014033, 40.645068] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.994202, 40.640912] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.99809, 40.660396] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.994946, 40.680273] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-74.003738, 40.726227] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.937969, 40.851694] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.934179, 40.859021] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.954797, 40.805058] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.952247, 40.811071] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.997702, 40.724328] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.992507, 40.730464] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.00657, 40.709415] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.00881, 40.71305] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-74.009266, 40.715478] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.985063, 40.690544] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.989997, 40.693218] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.903879, 40.858407] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.901033, 40.862802] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-74.009744, 40.712563] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-74.005229, 40.720824] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.941514, 40.830517] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.939892, 40.836012] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.007938, 40.710022] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.003406, 40.713233] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.999826, 40.718173] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.006985, 40.713272] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.001826, 40.719465] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-74.013168, 40.70173] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.014007, 40.704913] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.011861, 40.707557] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.013007, 40.703142] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.012974, 40.707744] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.895898, 40.706225] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.889577, 40.711431] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-74.013783, 40.707512] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-74.012188, 40.711835] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.009508, 40.710367] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.011055, 40.706476] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.011131, 40.710512] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.009099, 40.70682] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.92727, 40.86549] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.993752, 40.718266] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.996203, 40.725296] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.993806, 40.720246] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.001054, 40.718814] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.998041, 40.745905] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.99339, 40.752287] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.891298, 40.746539] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-74.000201, 40.737825] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.947534, 40.817905] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.996208, 40.738227] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.99775, 40.737741] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-74.002578, 40.739776] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-74.001689, 40.740893] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.950426, 40.669938] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.993085, 40.697465] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.956848, 40.681379] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.965837, 40.683262] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.903075, 40.704412] } }, { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-73.944249, 40.79502] } }, { "type": "Feature", "properties": { "weight": 15 }, "geometry": { "type": "Point", "coordinates": [-73.955588, 40.779491] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.986884, 40.699742] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.990531, 40.699336] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.973945, 40.686113] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.950589, 40.667883] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.87875, 40.886037] } }, { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-73.994659, 40.725914] } }, { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-73.947478, 40.7906] } }, { "type": "Feature", "properties": { "weight": 5 }, "geometry": { "type": "Point", "coordinates": [-73.872106, 40.675376] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.85147, 40.679843] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.96379, 40.64094] } }, { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-73.941616, 40.798629] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.860816, 40.833225] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-74.006886, 40.719318] } }, { "type": "Feature", "properties": { "weight": 3 }, "geometry": { "type": "Point", "coordinates": [-73.858992, 40.679371] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-73.981962, 40.753821] } }, { "type": "Feature", "properties": { "weight": 13 }, "geometry": { "type": "Point", "coordinates": [-73.997141, 40.7223] } }, { "type": "Feature", "properties": { "weight": 15 }, "geometry": { "type": "Point", "coordinates": [-73.937594, 40.804138] } }, { "type": "Feature", "properties": { "weight": 7 }, "geometry": { "type": "Point", "coordinates": [-73.981235, 40.577281] } }, { "type": "Feature", "properties": { "weight": 11 }, "geometry": { "type": "Point", "coordinates": [-74.002197, 40.755446] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.958361, 40.768802] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.95177, 40.777861] } }, { "type": "Feature", "properties": { "weight": 1 }, "geometry": { "type": "Point", "coordinates": [-73.947066, 40.784236] } } ] } ================================================ FILE: packages/turf-standard-deviational-ellipse/test/out/mta-stations-unweighted.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "CenterX": -73.9372419891, "CenterY": 40.7297677104, "XStdDist": 0.0761184659414, "YStdDist": 0.111162799783, "Rotation": 16.4804526813, "fill": "#A00", "stroke": "#A00", "stroke-width": 3, "stroke-opacity": 1, "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.937242, 40.836186], [-73.95061, 40.832464], [-73.962925, 40.827467], [-73.974045, 40.821573], [-73.983949, 40.815099], [-73.992697, 40.808283], [-74.00039, 40.801291], [-74.007142, 40.794228], [-74.013069, 40.787155], [-74.018273, 40.780095], [-74.022843, 40.773051], [-74.026852, 40.76601], [-74.030356, 40.758945], [-74.033397, 40.751824], [-74.035999, 40.744608], [-74.038172, 40.737256], [-74.039907, 40.729722], [-74.041179, 40.721963], [-74.041939, 40.713935], [-74.042117, 40.705603], [-74.041611, 40.696944], [-74.04029, 40.687956], [-74.037986, 40.678674], [-74.034501, 40.669186], [-74.029617, 40.659656], [-74.023121, 40.650342], [-74.01485, 40.641608], [-74.004753, 40.633898], [-73.992947, 40.627687], [-73.979755, 40.623387], [-73.96568, 40.621247], [-73.951317, 40.621297], [-73.937242, 40.62335], [-73.923915, 40.62707], [-73.911634, 40.632063], [-73.90054, 40.637951], [-73.890654, 40.644418], [-73.881917, 40.651226], [-73.87423, 40.65821], [-73.867477, 40.665265], [-73.861546, 40.672331], [-73.856334, 40.679384], [-73.851753, 40.686421], [-73.84773, 40.693457], [-73.844209, 40.700516], [-73.841151, 40.707632], [-73.838529, 40.714843], [-73.836335, 40.722192], [-73.834577, 40.729722], [-73.833281, 40.737479], [-73.832495, 40.745506], [-73.832291, 40.753837], [-73.83277, 40.762497], [-73.834065, 40.771488], [-73.836343, 40.780774], [-73.839806, 40.790268], [-73.844672, 40.799806], [-73.851158, 40.809129], [-73.859428, 40.817876], [-73.869536, 40.825598], [-73.881366, 40.831822], [-73.894592, 40.836133], [-73.908711, 40.838281], [-73.923121, 40.838237], [-73.937242, 40.836186] ] ] } }, { "type": "Feature", "properties": { "standardDeviationalEllipse": { "meanCenterCoordinates": [-73.93724145877376, 40.72976717758984], "semiMajorAxis": 0.07611848164718067, "semiMinorAxis": 0.11116279583689635, "numberOfFeatures": 473, "angle": 16.480444767293083, "percentageWithinEllipse": 71.88160676532769 }, "fill": "#FFF", "stroke": "#0A0", "stroke-width": 3, "stroke-opacity": 1, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.03359324546851, 40.75132103218129], [-74.02980293400115, 40.76012863103802], [-74.02528552411586, 40.76887197102854], [-74.0200350928131, 40.777482909918255], [-74.01405082863232, 40.7858879763643], [-74.00733773756559, 40.79400823663968], [-73.99990742755185, 40.801759182943094], [-73.99177898248347, 40.80905064919711], [-73.98297993893047, 40.81578676164539], [-73.97354738172352, 40.821865933378426], [-73.96352917838684, 40.82718091429612], [-73.9529853775278, 40.8316189111703], [-73.94198980319563, 40.835061796717234], [-73.93063188669697, 40.8373864324002], [-73.919018790595, 40.8384651377768], [-73.90727789847813, 40.83816635070532], [-73.89555977154562, 40.83635553942771], [-73.88443014504873, 40.83304344443191], [-73.87437098343747, 40.82845426835252], [-73.86541133661937, 40.82276283715078], [-73.85756288120297, 40.8161319079139], [-73.8508231008489, 40.80871263328326], [-73.84517788429955, 40.80064504272652], [-73.8406036708805, 40.79205853130578], [-73.83706923820884, 40.78307234930186], [-73.83453720269986, 40.77379608793092], [-73.83296528646396, 40.76433015771664], [-73.83230739197033, 40.75476625704031], [-73.83251451691409, 40.74518782909243], [-73.8335355350701, 40.73567050597184], [-73.83531786388474, 40.72628253907192], [-73.83780803569908, 40.71708521519108], [-73.84095218649749, 40.70813325803411], [-73.84476451396527, 40.699331854062216], [-73.84930090197322, 40.690595566053084], [-73.85456655089425, 40.68199237410667], [-73.86056159765634, 40.67359555113398], [-73.86728043775769, 40.66548379754552], [-73.87471097122668, 40.657741355762894], [-73.88283376112537, 40.650458098876975], [-73.89162109071555, 40.64372958637409], [-73.90103590221698, 40.63765707803131], [-73.91103059593168, 40.63234749469166], [-73.92154566302204, 40.62791331145134], [-73.93250811787672, 40.624472364501344], [-73.94382968598299, 40.6221475469883], [-73.95540468933167, 40.62106636106392], [-73.9671075517279, 40.62136028164354], [-73.97878981795107, 40.62316387047818], [-73.98988907748351, 40.626466916318215], [-73.99992569571032, 40.63104607657647], [-74.00887104266555, 40.63672711589932], [-74.01671341138922, 40.64334780103107], [-74.02345492440752, 40.65075742560566], [-74.02910901786136, 40.658816323886754], [-74.0336983714282, 40.667395381445], [-74.03725318812609, 40.67637554829524], [-74.03980975286483, 40.68564735834254], [-74.04140921605757, 40.69511045782774], [-74.04209656113622, 40.704673144647536], [-74.04191972396667, 40.71425191984239], [-74.0409288389554, 40.723771052124086], [-74.03917559175294, 40.73316215600696], [-74.03671266236184, 40.742363783879206], [-74.03359324546851, 40.75132103218129] ] ] } } ] } ================================================ FILE: packages/turf-standard-deviational-ellipse/test/out/mta-stations-weighted.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "CenterX": -73.9430620568, "CenterY": 40.7410537798, "XStdDist": 0.0706947802938, "YStdDist": 0.0957828531195, "Rotation": 29.2310479668, "fill": "#A00", "stroke": "#A00", "stroke-width": 3, "stroke-opacity": 1, "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-73.943062, 40.828517], [-73.954059, 40.825539], [-73.964297, 40.821839], [-73.973743, 40.817592], [-73.982408, 40.812939], [-73.990332, 40.807982], [-73.997572, 40.802794], [-74.004185, 40.79742], [-74.010229, 40.791885], [-74.015753, 40.786199], [-74.020799, 40.780359], [-74.025399, 40.774353], [-74.029572, 40.76816], [-74.033324, 40.761758], [-74.036647, 40.755117], [-74.039516, 40.748211], [-74.041886, 40.741012], [-74.043691, 40.7335], [-74.044837, 40.725667], [-74.045205, 40.717524], [-74.044648, 40.709112], [-74.042995, 40.700515], [-74.040065, 40.691868], [-74.035686, 40.683373], [-74.02973, 40.675291], [-74.022154, 40.667927], [-74.013031, 40.661598], [-74.00257, 40.656579], [-73.991101, 40.653056], [-73.979028, 40.651095], [-73.966766, 40.65064], [-73.954682, 40.651541], [-73.943062, 40.65359], [-73.932093, 40.656568], [-73.921879, 40.660265], [-73.912452, 40.664507], [-73.903802, 40.669155], [-73.895887, 40.674106], [-73.888653, 40.679288], [-73.882042, 40.684655], [-73.875998, 40.690183], [-73.87047, 40.695863], [-73.865417, 40.701696], [-73.860808, 40.707696], [-73.856623, 40.713883], [-73.852857, 40.72028], [-73.849517, 40.726915], [-73.846629, 40.733817], [-73.844238, 40.741012], [-73.842411, 40.74852], [-73.84124, 40.756351], [-73.840847, 40.764493], [-73.841378, 40.772906], [-73.843007, 40.781506], [-73.845916, 40.790158], [-73.850278, 40.79866], [-73.856222, 40.806752], [-73.863796, 40.814126], [-73.872926, 40.820467], [-73.883402, 40.825498], [-73.894896, 40.829032], [-73.906999, 40.831002], [-73.919294, 40.831463], [-73.93141, 40.830566], [-73.943062, 40.828517] ] ] } }, { "type": "Feature", "properties": { "standardDeviationalEllipse": { "meanCenterCoordinates": [-73.94306156958916, 40.74105326364194], "semiMajorAxis": 0.07069482381164381, "semiMinorAxis": 0.095782813512421, "numberOfFeatures": 473, "angle": 29.231003681507175, "percentageWithinEllipse": 60.46511627906977 }, "fill": "#FFF", "stroke": "#0A0", "stroke-width": 3, "stroke-opacity": 1, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.02452801068807, 40.775547173294186], [-74.01893422646326, 40.78259752726428], [-74.01268414445943, 40.78943811380472], [-74.00579638065156, 40.796006107373], [-73.99829617235616, 40.80223594694747], [-73.99021592245862, 40.80805957219015], [-73.98159576262077, 40.8134067167014], [-73.9724841338293, 40.81820526653445], [-73.9629383821334, 40.82238169342446], [-73.95302536680158, 40.8258615737414], [-73.94282207737366, 40.82857020607593], [-73.93241625516164, 40.83043334270903], [-73.92190701361201, 40.831378053136305], [-73.91140545051374, 40.83133374149704], [-73.90103524323057, 40.83023334445488], [-73.89093321581471, 40.82801474214651], [-73.88124986383536, 40.82462242277314], [-73.87237279234334, 40.82014233496311], [-73.86460097509195, 40.81477985802708], [-73.85795003463295, 40.80866105611467], [-73.85242093101229, 40.80190655870187], [-73.84800215245467, 40.79463104771375], [-73.84467163625422, 40.786942903004004], [-73.84239845801515, 40.77894397546494], [-73.84114432030273, 40.77072946332155], [-73.84086486634928, 40.76238787196388], [-73.84151084025547, 40.75400104139124], [-73.8430291118138, 40.7456442282593], [-73.84536358143308, 40.73738623183474], [-73.84845597849838, 40.72928955501612], [-73.85224656474314, 40.72141059307866], [-73.85667475275184, 40.71379984402171], [-73.86167964848912, 40.70650213540208], [-73.86728368644258, 40.69945937985531], [-73.87354025396233, 40.69262664020811], [-73.88043036281451, 40.68606650975553], [-73.88792850688942, 40.67984429861887], [-73.89600213853876, 40.67402780376825], [-73.90461112478266, 40.668687023307626], [-73.91370718412121, 40.66389380684423], [-73.92323330506247, 40.659721432427446], [-73.93312314796478, 40.656244098923295], [-73.94330043241949, 40.653536320714245], [-73.953678313213, 40.65167220918066], [-73.96415874896458, 40.65072462239258], [-73.9746318689202, 40.650764160635475], [-73.98497534519998, 40.651857980554134], [-73.99505378020882, 40.65406839446653], [-74.00471812214236, 40.657451213261425], [-74.01358239966163, 40.66192116955677], [-74.02134836223475, 40.66727365770246], [-74.02800018349505, 40.67338307986641], [-74.03353641529728, 40.68012919335254], [-74.03796786068695, 40.687397618451094], [-74.04131571419732, 40.695080192396205], [-74.04360992940073, 40.70307519921561], [-74.04488778136994, 40.7112874990724], [-74.04519259763617, 40.71962857599848], [-74.04457263584214, 40.72801651930139], [-74.04308008991914, 40.73637595110584], [-74.04077020950417, 40.744637910270065], [-74.03770051963454, 40.75273970114755], [-74.03393012963858, 40.76062471424352], [-74.02951912168086, 40.76824222466161], [-74.02452801068807, 40.775547173294186] ] ] } } ] } ================================================ FILE: packages/turf-standard-deviational-ellipse/test.ts ================================================ import { Feature, FeatureCollection, Point } from "geojson"; import test from "tape"; import { glob } from "glob"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { featureCollection } from "@turf/helpers"; import { standardDeviationalEllipse } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); test("turf-standard-deviational-ellipse", (t) => { glob .sync(path.join(__dirname, "test", "in", "*.json")) .forEach((filepath) => { // Define params const { name } = path.parse(filepath); const geojson = loadJsonFileSync(filepath) as FeatureCollection & { options: any; esriEllipse: any; }; // Non-standard FeatureCollection options used for testing. const options = geojson.options; // Optional: ESRI Polygon in GeoJSON test/in to compare results const esriEllipse = geojson.esriEllipse; // Colorized results const results = featureCollection([ colorize(standardDeviationalEllipse(geojson, options)), ]); if (esriEllipse) results.features.unshift(colorize(esriEllipse, "#A00", "#A00", 0.5)); // Save to file const out = filepath.replace( path.join("test", "in"), path.join("test", "out") ); if (process.env.REGEN) writeJsonFileSync(out, results); t.deepEqual(results, loadJsonFileSync(out), name); }); t.end(); }); function colorize( feature: Feature, stroke = "#0A0", fill = "#FFF", opacity = 0 ) { const properties = { fill, stroke, "stroke-width": 3, "stroke-opacity": 1, "fill-opacity": opacity, }; // Make sure feature properties is defined. feature.properties = feature.properties ?? {}; Object.assign(feature.properties, properties); return feature; } ================================================ FILE: packages/turf-standard-deviational-ellipse/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-standard-deviational-ellipse/types.ts ================================================ import { points } from "@turf/helpers"; import { standardDeviationalEllipse } from "./index.js"; const pts = points([ [10, 10], [0, 5], ]); const stdEllipse = standardDeviationalEllipse(pts); // Access custom properties // It's correct to use optional chaining here ?. as even though the function // *always* adds properties, that does not change the overall optional nature of // the containing properties attribute. stdEllipse.properties?.standardDeviationalEllipse.meanCenterCoordinates; ================================================ FILE: packages/turf-tag/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-tag/README.md ================================================ # @turf/tag ## tag Takes a set of [points][1] and a set of [polygons][2] and/or [multipolygons][3] and performs a spatial join. ### Parameters * `points` **[FeatureCollection][4]<[Point][1]>** input points * `polygons` **[FeatureCollection][4]<([Polygon][2] | [MultiPolygon][3])>** input (multi)polygons * `field` **[string][5]** property in `polygons` to add to joined {} features * `outField` **[string][5]** property in `points` in which to store joined property from `polygons` ### Examples ```javascript var pt1 = turf.point([-77, 44]); var pt2 = turf.point([-77, 38]); var poly1 = turf.polygon([[ [-81, 41], [-81, 47], [-72, 47], [-72, 41], [-81, 41] ]], {pop: 3000}); var poly2 = turf.polygon([[ [-81, 35], [-81, 41], [-72, 41], [-72, 35], [-81, 35] ]], {pop: 1000}); var points = turf.featureCollection([pt1, pt2]); var polygons = turf.featureCollection([poly1, poly2]); var tagged = turf.tag(points, polygons, 'pop', 'population'); //addToMap var addToMap = [tagged, polygons] ``` Returns **[FeatureCollection][4]<[Point][1]>** points with `containingPolyId` property containing values from `polyId` [1]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.7 [4]: https://tools.ietf.org/html/rfc7946#section-3.3 [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/tag ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-tag/bench.ts ================================================ import fs from "fs"; import Benchmark from "benchmark"; import { tag } from "./index.js"; var points = JSON.parse(fs.readFileSync("./test/tagPoints.geojson")); var polygons = JSON.parse(fs.readFileSync("./test/tagPolygons.geojson")); var suite = new Benchmark.Suite("turf-tag"); suite .add("turf-tag", function () { tag(points, polygons, "polyID", "containingPolyID"); }) .on("cycle", function (event) { console.log(String(event.target)); }) .run(); ================================================ FILE: packages/turf-tag/index.ts ================================================ import { Point, FeatureCollection, Polygon, MultiPolygon } from "geojson"; import { booleanPointInPolygon } from "@turf/boolean-point-in-polygon"; import { clone } from "@turf/clone"; import { featureEach } from "@turf/meta"; /** * Takes a set of {@link Point|points} and a set of {@link Polygon|polygons} and/or {@link MultiPolygon|multipolygons} and performs a spatial join. * * @function * @param {FeatureCollection} points input points * @param {FeatureCollection} polygons input (multi)polygons * @param {string} field property in `polygons` to add to joined {} features * @param {string} outField property in `points` in which to store joined property from `polygons` * @returns {FeatureCollection} points with `containingPolyId` property containing values from `polyId` * @example * var pt1 = turf.point([-77, 44]); * var pt2 = turf.point([-77, 38]); * var poly1 = turf.polygon([[ * [-81, 41], * [-81, 47], * [-72, 47], * [-72, 41], * [-81, 41] * ]], {pop: 3000}); * var poly2 = turf.polygon([[ * [-81, 35], * [-81, 41], * [-72, 41], * [-72, 35], * [-81, 35] * ]], {pop: 1000}); * * var points = turf.featureCollection([pt1, pt2]); * var polygons = turf.featureCollection([poly1, poly2]); * * var tagged = turf.tag(points, polygons, 'pop', 'population'); * * //addToMap * var addToMap = [tagged, polygons] */ function tag( points: FeatureCollection, polygons: FeatureCollection, field: string, outField: string ): FeatureCollection { // prevent mutations points = clone(points); polygons = clone(polygons); featureEach(points, function (pt) { if (!pt.properties) pt.properties = {}; featureEach(polygons, function (poly) { if (pt.properties && poly.properties) { if (pt.properties[outField] === undefined) { if (booleanPointInPolygon(pt, poly)) pt.properties[outField] = poly.properties[field]; } } }); }); return points; } export { tag }; export default tag; ================================================ FILE: packages/turf-tag/package.json ================================================ { "name": "@turf/tag", "version": "7.3.4", "description": "Takes a set of points and a set of polygons and/or multipolygons and performs a spatial join.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "geojson", "turf", "tag", "polygon", "featurecollection", "point", "data", "analysis" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/boolean-point-in-polygon": "workspace:*", "@turf/clone": "workspace:*", "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-tag/test/tagMultiPolygons.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "polyID": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [149.12554264068604, -35.30367340303379], [149.129319190979, -35.30601992579261], [149.13966178894043, -35.301852174285195], [149.13820266723633, -35.29898015335499], [149.13094997406006, -35.29470695796296], [149.12691593170166, -35.29421657684743], [149.12554264068604, -35.30367340303379] ] ], [ [ [149.1247272491455, -35.303813495854975], [149.12163734436035, -35.304373864714066], [149.12026405334473, -35.30601992579261], [149.11949157714844, -35.30763093186632], [149.11983489990234, -35.310012360341524], [149.12228107452393, -35.31183340540136], [149.1256284713745, -35.312008503727334], [149.1277313232422, -35.31113300830699], [149.1289758682251, -35.30938198903829], [149.12940502166745, -35.30742080245862], [149.12850379943848, -35.30577476988212], [149.1269588470459, -35.304513956322424], [149.12477016448972, -35.3036383797906], [149.1247272491455, -35.303813495854975] ] ] ] } }, { "type": "Feature", "properties": { "polyID": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [149.1418933868408, -35.310782807485545], [149.1456699371338, -35.31638583868518], [149.14772987365723, -35.315720499040026], [149.14875984191895, -35.311308108149134], [149.1476011276245, -35.30959211335184], [149.1454553604126, -35.310152442186244], [149.14283752441406, -35.3094870512633], [149.1418933868408, -35.310782807485545] ] ] } } ] } ================================================ FILE: packages/turf-tag/test/tagMultiPolygonsPoints.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [149.14446830749512, -35.311378147979866] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [149.1457986831665, -35.31365440946375] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [149.12734508514404, -35.30020602841594] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [149.12288188934326, -35.31785657005635] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [149.1247272491455, -35.30892671781984] } } ] } ================================================ FILE: packages/turf-tag/test/tagPoints.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.26959228515624, 37.82768377181361] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.31216430664061, 37.72782336496339] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.21397399902344, 37.77722770873696] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.20230102539062, 37.72890952922229] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.12333679199219, 37.688167468408025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.17140197753905, 37.75334401310656] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.16796875, 37.688167468408025] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.16728210449219, 37.72673718477409] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.43370056152344, 37.761487048570935] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.36022949218749, 37.83093781796035] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.17483520507811, 37.837445479729666] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.11647033691406, 37.6327223292973] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.07389831542969, 37.627828123247475] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.24349975585938, 37.795678008523424] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.09587097167967, 37.81737834565083] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.05398559570312, 37.773428545820956] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.26821899414061, 37.71533133102705] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.06497192382811, 37.70663997801686] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.06771850585939, 37.58594229860422] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-122.33413696289064, 37.93011726880927] } } ] } ================================================ FILE: packages/turf-tag/test/tagPolygons.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "polyID": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.32040405273438, 37.83202246811909], [-122.37327575683594, 37.77722770873696], [-122.31285095214842, 37.722392304715854], [-122.25448608398436, 37.73379707124429], [-122.32040405273438, 37.83202246811909] ] ] } }, { "type": "Feature", "properties": { "polyID": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.32040405273438, 37.83202246811909], [-122.33207702636717, 37.89002800137124], [-122.38632202148438, 37.90411590881245], [-122.3272705078125, 37.92686760148135], [-122.21466064453125, 37.823344820392535], [-122.32040405273438, 37.83202246811909] ] ] } }, { "type": "Feature", "properties": { "polyID": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.31971740722656, 37.83202246811909], [-122.09861755371092, 37.81792077237497], [-122.08694458007812, 37.69305769827658], [-122.16590881347656, 37.769629187677], [-122.21466064453125, 37.7652868250379], [-122.31971740722656, 37.83202246811909] ] ] } }, { "type": "Feature", "properties": { "polyID": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.32040405273438, 37.82931081282506], [-122.20779418945311, 37.66588567407962], [-122.16316223144531, 37.60280825923639], [-122.03201293945311, 37.62347744729925], [-122.08694458007812, 37.69305769827658], [-122.32040405273438, 37.82931081282506] ] ] } }, { "type": "Feature", "properties": { "polyID": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.08831787109375, 37.69523103025956], [-122.16659545898438, 37.76908640629127], [-122.21466064453125, 37.76637243960176], [-122.08831787109375, 37.69523103025956] ] ] } } ] } ================================================ FILE: packages/turf-tag/test.ts ================================================ import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { loadJsonFileSync } from "load-json-file"; import { tag } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); test("tag", (t) => { const points = loadJsonFileSync( path.join(__dirname, "test", "tagPoints.geojson") ); const polygons = loadJsonFileSync( path.join(__dirname, "test", "tagPolygons.geojson") ); const taggedPoints = tag(points, polygons, "polyID", "containingPolyID"); t.ok(taggedPoints.features, "features should be ok"); t.equal( taggedPoints.features.length, points.features.length, "tagged points should have the same length as the input points" ); const count = taggedPoints.features.filter( (pt) => pt.properties.containingPolyID === 4 ).length; t.equal(count, 6, "polygon 4 should have tagged 6 points"); t.end(); }); test("tag -- multipolygon support", (t) => { const points = loadJsonFileSync( path.join(__dirname, "test", "tagMultiPolygonsPoints.geojson") ); const polygons = loadJsonFileSync( path.join(__dirname, "test", "tagMultiPolygons.geojson") ); const taggedPoints = tag(points, polygons, "polyID", "containingPolyID"); t.ok(taggedPoints.features, "features should be ok"); t.equal( taggedPoints.features.length, points.features.length, "tagged points should have the same length as the input points" ); const count1 = taggedPoints.features.filter( (pt) => pt.properties.containingPolyID === 1 ).length; t.equal(count1, 2, "polygon 1 should have 2 points"); const countUndefined = taggedPoints.features.filter( (pt) => !Object.prototype.hasOwnProperty.call(pt.properties, "containingPolyID") ).length; t.equal(countUndefined, 1, "1 point should have no containingPolyID"); t.end(); }); ================================================ FILE: packages/turf-tag/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-tesselate/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-tesselate/README.md ================================================ # @turf/tesselate ## tesselate Tesselates a polygon or multipolygon into a collection of triangle polygons using [earcut][1]. ### Parameters * `poly` **[Feature][2]<([Polygon][3] | [MultiPolygon][4])>** the polygon to tesselate ### Examples ```javascript const poly = turf.polygon([[[11, 0], [22, 4], [31, 0], [31, 11], [21, 15], [11, 11], [11, 0]]]); const triangles = turf.tesselate(poly); //addToMap const addToMap = [poly, triangles] ``` Returns **[FeatureCollection][5]<[Polygon][3]>** collection of polygon tesselations [1]: https://github.com/mapbox/earcut [2]: https://tools.ietf.org/html/rfc7946#section-3.2 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [4]: https://tools.ietf.org/html/rfc7946#section-3.1.7 [5]: https://tools.ietf.org/html/rfc7946#section-3.3 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/tesselate ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-tesselate/bench.ts ================================================ import Benchmark, { Event } from "benchmark"; import { polygon } from "@turf/helpers"; import { tesselate } from "./index.js"; var poly = polygon([ [ [11, 0], [22, 4], [31, 0], [31, 11], [21, 15], [11, 11], [11, 0], ], ]); /** * Benchmark Results * */ new Benchmark.Suite("turf-tesselate") .add("polygon", () => tesselate(poly)) .on("cycle", (e: Event) => console.log(String(e.target))) .run(); ================================================ FILE: packages/turf-tesselate/earcut.d.ts ================================================ declare module "earcut" { declare function earcut( vertices: number[], holes: number[], dimensions: number ); export default earcut; } ================================================ FILE: packages/turf-tesselate/index.ts ================================================ import { Feature, FeatureCollection, MultiPolygon, Polygon, Position, } from "geojson"; import earcut from "earcut"; import { polygon } from "@turf/helpers"; /** * Tesselates a polygon or multipolygon into a collection of triangle polygons * using [earcut](https://github.com/mapbox/earcut). * * @function * @param {Feature} poly the polygon to tesselate * @returns {FeatureCollection} collection of polygon tesselations * @example * const poly = turf.polygon([[[11, 0], [22, 4], [31, 0], [31, 11], [21, 15], [11, 11], [11, 0]]]); * const triangles = turf.tesselate(poly); * * //addToMap * const addToMap = [poly, triangles] */ function tesselate( poly: Feature ): FeatureCollection { if ( !poly.geometry || (poly.geometry.type !== "Polygon" && poly.geometry.type !== "MultiPolygon") ) { throw new Error("input must be a Polygon or MultiPolygon"); } const fc: FeatureCollection = { type: "FeatureCollection", features: [], }; if (poly.geometry.type === "Polygon") { fc.features = processPolygon(poly.geometry.coordinates); } else { poly.geometry.coordinates.forEach(function (coordinates) { fc.features = fc.features.concat(processPolygon(coordinates)); }); } return fc; } function processPolygon(coordinates: Position[][]) { const data = flattenCoords(coordinates); // coordinates are normalized to 3 dimensions by passing through original elevation value, or padding with undefined const dim = 3; const result = earcut(data.vertices, data.holes, dim); const features: Feature[] = []; const vertices: Position[] = []; result.forEach(function (vert: any, i: number) { const index = result[i]; // if elevation component is included in the original coordinate, include it in the output coordinate if (data.vertices[index * dim + 2] !== undefined) { vertices.push([ data.vertices[index * dim], data.vertices[index * dim + 1], data.vertices[index * dim + 2], ]); } else { vertices.push([ data.vertices[index * dim], data.vertices[index * dim + 1], ]); } }); for (var i = 0; i < vertices.length; i += 3) { const coords = vertices.slice(i, i + 3); coords.push(vertices[i]); features.push(polygon([coords])); } return features; } function flattenCoords(data: Position[][]) { // coordinates are normalized to 3 dimensions by passing through original elevation value, or padding with undefined const dim = 3, result: { vertices: number[]; holes: number[]; dimensions: number } = { vertices: [], holes: [], dimensions: dim, }; let holeIndex = 0; for (let i = 0; i < data.length; i++) { for (let j = 0; j < data[i].length; j++) { // elevation member is either included, or undefined is put in its place for (let d = 0; d < dim; d++) result.vertices.push(data[i][j][d]); } if (i > 0) { holeIndex += data[i - 1].length; result.holes.push(holeIndex); } } return result; } export { tesselate }; export default tesselate; ================================================ FILE: packages/turf-tesselate/package.json ================================================ { "name": "@turf/tesselate", "version": "7.3.4", "description": "Tesselates a polygon or multipolygon into a collection of triangle polygons using earcut.", "author": "Turf Authors", "contributors": [ "Abel Vázquez <@AbelVM>", "Morgan Herlocker <@morganherlocker>", "Tom MacWright <@tmcw>", "Vladimir Agafonkin <@mourner>", "Pavel Rozvora <@prozvora>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "turfjs", "tesselation", "earcut", "polygon", "triangles" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", "earcut": "^2.2.4", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-tesselate/test.ts ================================================ import test from "tape"; import { tesselate } from "./index.js"; import { featureCollection as featurecollection } from "@turf/helpers"; import { point } from "@turf/helpers"; test("tesselate", function (t) { var polygon = { type: "Feature", id: "USA-CA", properties: { fips: "06", name: "California" }, geometry: { type: "Polygon", coordinates: [ [ [-123.233256, 42.006186], [-122.378853, 42.011663], [-121.037003, 41.995232], [-120.001861, 41.995232], [-119.996384, 40.264519], [-120.001861, 38.999346], [-118.71478, 38.101128], [-117.498899, 37.21934], [-116.540435, 36.501861], [-115.85034, 35.970598], [-114.634459, 35.00118], [-114.634459, 34.87521], [-114.470151, 34.710902], [-114.333228, 34.448009], [-114.136058, 34.305608], [-114.256551, 34.174162], [-114.415382, 34.108438], [-114.535874, 33.933176], [-114.497536, 33.697668], [-114.524921, 33.54979], [-114.727567, 33.40739], [-114.661844, 33.034958], [-114.524921, 33.029481], [-114.470151, 32.843265], [-114.524921, 32.755634], [-114.72209, 32.717295], [-116.04751, 32.624187], [-117.126467, 32.536556], [-117.24696, 32.668003], [-117.252437, 32.876127], [-117.329114, 33.122589], [-117.471515, 33.297851], [-117.7837, 33.538836], [-118.183517, 33.763391], [-118.260194, 33.703145], [-118.413548, 33.741483], [-118.391641, 33.840068], [-118.566903, 34.042715], [-118.802411, 33.998899], [-119.218659, 34.146777], [-119.278905, 34.26727], [-119.558229, 34.415147], [-119.875891, 34.40967], [-120.138784, 34.475393], [-120.472878, 34.448009], [-120.64814, 34.579455], [-120.609801, 34.858779], [-120.670048, 34.902595], [-120.631709, 35.099764], [-120.894602, 35.247642], [-120.905556, 35.450289], [-121.004141, 35.461243], [-121.168449, 35.636505], [-121.283465, 35.674843], [-121.332757, 35.784382], [-121.716143, 36.195153], [-121.896882, 36.315645], [-121.935221, 36.638785], [-121.858544, 36.6114], [-121.787344, 36.803093], [-121.929744, 36.978355], [-122.105006, 36.956447], [-122.335038, 37.115279], [-122.417192, 37.241248], [-122.400761, 37.361741], [-122.515777, 37.520572], [-122.515777, 37.783465], [-122.329561, 37.783465], [-122.406238, 38.15042], [-122.488392, 38.112082], [-122.504823, 37.931343], [-122.701993, 37.893004], [-122.937501, 38.029928], [-122.97584, 38.265436], [-123.129194, 38.451652], [-123.331841, 38.566668], [-123.44138, 38.698114], [-123.737134, 38.95553], [-123.687842, 39.032208], [-123.824765, 39.366301], [-123.764519, 39.552517], [-123.85215, 39.831841], [-124.109566, 40.105688], [-124.361506, 40.259042], [-124.410798, 40.439781], [-124.158859, 40.877937], [-124.109566, 41.025814], [-124.158859, 41.14083], [-124.065751, 41.442061], [-124.147905, 41.715908], [-124.257444, 41.781632], [-124.213628, 42.000709], [-123.233256, 42.006186], ], ], }, }; var triangles = tesselate(polygon); t.equal( triangles.type, "FeatureCollection", "Polygon returns a FeatureCollection" ); t.equal( triangles.features[0].geometry.type, "Polygon", "contains at least 1 triangle" ); t.equal( triangles.features[0].geometry.coordinates[0].length, 4, "triangle is valid" ); var multipolygon = { type: "Feature", properties: { name: "Michigan" }, geometry: { type: "MultiPolygon", coordinates: [ [ [ [-88.684434, 48.115785], [-88.675628, 48.120444], [-88.676395, 48.124876], [-88.674192, 48.127165], [-88.656915, 48.139225], [-88.614026, 48.154797], [-88.578413, 48.16237], [-88.547033, 48.174891], [-88.524753, 48.165291], [-88.501088, 48.168181], [-88.491961, 48.175466], [-88.482039, 48.179915], [-88.459735, 48.183807], [-88.447236, 48.182916], [-88.422601, 48.190975], [-88.418244, 48.18037], [-88.419875, 48.170731], [-88.427373, 48.166764], [-88.449502, 48.163312], [-88.459697, 48.158551], [-88.469573, 48.152879], [-88.4857, 48.137683], [-88.511902, 48.121699], [-88.566938, 48.093719], [-88.578053, 48.084373], [-88.578395, 48.078003], [-88.575869, 48.075166], [-88.573924, 48.068861], [-88.575048, 48.064154], [-88.579784, 48.058669], [-88.670073, 48.011446], [-88.718555, 47.995134], [-88.772357, 47.981126], [-88.791959, 47.978938], [-88.832063, 47.965213], [-88.852923, 47.965322], [-88.899184, 47.9533], [-88.918029, 47.945605], [-88.923573, 47.937976], [-88.962664, 47.923512], [-88.968903, 47.909474], [-88.968903, 47.901675], [-88.957985, 47.895436], [-88.942387, 47.895436], [-88.899698, 47.902445], [-88.898986, 47.900685], [-88.911665, 47.891344], [-88.998939, 47.86749], [-89.022736, 47.858532], [-89.044463, 47.85575], [-89.056412, 47.852598], [-89.107991, 47.835705], [-89.124134, 47.828616], [-89.157738, 47.824015], [-89.19017, 47.831603], [-89.192681, 47.83343], [-89.192207, 47.84106], [-89.201812, 47.850243], [-89.234533, 47.851718], [-89.235552, 47.853774], [-89.234535, 47.855373], [-89.228507, 47.858039], [-89.246774, 47.871016], [-89.250936, 47.870377], [-89.255202, 47.876102], [-89.247127, 47.888503], [-89.226327, 47.895438], [-89.22071, 47.90085], [-89.221332, 47.908069], [-89.214499, 47.913895], [-89.179154, 47.93503], [-89.095207, 47.967922], [-89.018303, 47.992525], [-88.994163, 48.00229], [-88.940886, 48.01959], [-88.931487, 48.021637], [-88.927529, 48.019615], [-88.915032, 48.020681], [-88.895069, 48.029059], [-88.896327, 48.031801], [-88.893701, 48.03477], [-88.835714, 48.056752], [-88.816084, 48.057006], [-88.810461, 48.055247], [-88.787556, 48.063035], [-88.772077, 48.070502], [-88.77183, 48.079457], [-88.764256, 48.085189], [-88.744458, 48.092769], [-88.728198, 48.101914], [-88.705586, 48.111013], [-88.695353, 48.110549], [-88.684434, 48.115785], ], ], [ [ [-85.566441, 45.760222], [-85.54956, 45.757266], [-85.54375, 45.751413], [-85.53562, 45.750394], [-85.525237, 45.750462], [-85.506133, 45.754715], [-85.501267, 45.754415], [-85.497656, 45.746246], [-85.503758, 45.742771], [-85.508818, 45.742358], [-85.510091, 45.742888], [-85.508522, 45.744991], [-85.50904, 45.748488], [-85.515145, 45.749451], [-85.520569, 45.744745], [-85.521911, 45.739419], [-85.520803, 45.737247], [-85.510895, 45.734414], [-85.498777, 45.726291], [-85.494154, 45.705378], [-85.494016, 45.698476], [-85.5028, 45.690998], [-85.506104, 45.681148], [-85.503767, 45.670472], [-85.500451, 45.664298], [-85.490252, 45.652122], [-85.487026, 45.621211], [-85.491347, 45.609665], [-85.509276, 45.596475], [-85.518038, 45.592912], [-85.526895, 45.59159], [-85.530273, 45.589253], [-85.534064, 45.578198], [-85.541129, 45.575045], [-85.561634, 45.572213], [-85.618049, 45.582647], [-85.622741, 45.586028], [-85.630016, 45.598166], [-85.61985, 45.624547], [-85.608653, 45.632008], [-85.604521, 45.639256], [-85.604951, 45.647599], [-85.609295, 45.658067], [-85.604881, 45.681932], [-85.600842, 45.68886], [-85.590769, 45.698051], [-85.583724, 45.700796], [-85.572309, 45.711449], [-85.565132, 45.730719], [-85.564774, 45.745462], [-85.567128, 45.750419], [-85.567781, 45.757655], [-85.566441, 45.760222], ], ], [ [ [-87.590208, 45.095264], [-87.59188, 45.094689], [-87.614897, 45.100064], [-87.621609, 45.102399], [-87.62764, 45.103328], [-87.628829, 45.104039], [-87.629571, 45.105324], [-87.631535, 45.106224], [-87.63611, 45.105918], [-87.648191, 45.106368], [-87.652512, 45.108633], [-87.657135, 45.107568], [-87.659952, 45.107512], [-87.661211, 45.108279], [-87.661296, 45.112566], [-87.667102, 45.118109], [-87.671, 45.120069], [-87.672447, 45.121294], [-87.678209, 45.130084], [-87.678511, 45.131204], [-87.676024, 45.134089], [-87.675816, 45.135059], [-87.683902, 45.144135], [-87.688425, 45.147433], [-87.692375, 45.149505], [-87.695055, 45.150522], [-87.700618, 45.151188], [-87.703492, 45.152206], [-87.707391, 45.154679], [-87.708134, 45.156004], [-87.711322, 45.158946], [-87.717945, 45.161156], [-87.723121, 45.165141], [-87.724601, 45.167452], [-87.727768, 45.169596], [-87.730866, 45.170913], [-87.735135, 45.171538], [-87.736104, 45.172244], [-87.736509, 45.173389], [-87.73521, 45.177642], [-87.741805, 45.197051], [-87.741732, 45.198201], [-87.739492, 45.202126], [-87.736339, 45.204653], [-87.72796, 45.207956], [-87.726198, 45.209391], [-87.726175, 45.21264], [-87.727276, 45.216129], [-87.726952, 45.218949], [-87.722473, 45.223309], [-87.721354, 45.226847], [-87.721935, 45.228444], [-87.72492, 45.229977], [-87.725205, 45.231539], [-87.724156, 45.233236], [-87.718264, 45.238333], [-87.717051, 45.238743], [-87.713398, 45.238564], [-87.712184, 45.239014], [-87.711339, 45.239965], [-87.71148, 45.245224], [-87.709145, 45.254649], [-87.707779, 45.258343], [-87.709137, 45.260341], [-87.703053, 45.267041], [-87.69878, 45.26942], [-87.698456, 45.272072], [-87.699492, 45.276659], [-87.698248, 45.281512], [-87.693468, 45.287675], [-87.690364, 45.29027], [-87.687578, 45.296283], [-87.687498, 45.298055], [-87.679085, 45.305841], [-87.675328, 45.307907], [-87.667423, 45.31636], [-87.665243, 45.317115], [-87.663666, 45.318257], [-87.6615, 45.321386], [-87.662029, 45.326434], [-87.661603, 45.327608], [-87.65983, 45.329144], [-87.655775, 45.330847], [-87.648126, 45.339396], [-87.647454, 45.345232], [-87.647729, 45.350721], [-87.648476, 45.352243], [-87.650661, 45.353798], [-87.653568, 45.354204], [-87.656632, 45.358617], [-87.655807, 45.362706], [-87.656624, 45.367295], [-87.657349, 45.368752], [-87.673513, 45.376946], [-87.674403, 45.378065], [-87.67455, 45.381649], [-87.675017, 45.382454], [-87.682866, 45.38495], [-87.685934, 45.388711], [-87.690281, 45.389822], [-87.693956, 45.389893], [-87.699797, 45.387927], [-87.704337, 45.385462], [-87.706767, 45.383827], [-87.708329, 45.381218], [-87.718891, 45.377462], [-87.733409, 45.364432], [-87.737801, 45.359635], [-87.738352, 45.358243], [-87.750928, 45.355037], [-87.751626, 45.354169], [-87.751452, 45.351755], [-87.754104, 45.349442], [-87.762128, 45.348401], [-87.769172, 45.351195], [-87.771384, 45.35121], [-87.773901, 45.351226], [-87.783076, 45.349725], [-87.787967, 45.352612], [-87.790324, 45.353444], [-87.800464, 45.353608], [-87.810076, 45.351269], [-87.823028, 45.35265], [-87.823554, 45.351637], [-87.824855, 45.350713], [-87.826918, 45.350538], [-87.829775, 45.352005], [-87.832612, 45.352249], [-87.835303, 45.35098], [-87.836782, 45.346451], [-87.838141, 45.345101], [-87.848368, 45.340676], [-87.850133, 45.340435], [-87.851318, 45.341346], [-87.851475, 45.342335], [-87.849899, 45.344651], [-87.850418, 45.347492], [-87.852784, 45.349497], [-87.858617, 45.350378], [-87.860871, 45.351192], [-87.863489, 45.35302], [-87.864873, 45.354767], [-87.865274, 45.355969], [-87.865675, 45.358213], [-87.867037, 45.360137], [-87.86856, 45.360537], [-87.870243, 45.360617], [-87.871204, 45.360056], [-87.871285, 45.358614], [-87.871124, 45.357011], [-87.871685, 45.355729], [-87.873529, 45.354286], [-87.879835, 45.35149], [-87.881114, 45.351278], [-87.88517, 45.351736], [-87.886949, 45.35311], [-87.888052, 45.354697], [-87.887828, 45.358122], [-87.884855, 45.362792], [-87.876862, 45.368535], [-87.871485, 45.371546], [-87.871789, 45.373557], [-87.875692, 45.377052], [-87.875424, 45.379373], [-87.873568, 45.381357], [-87.870905, 45.383116], [-87.864677, 45.385232], [-87.859418, 45.388227], [-87.85683, 45.393106], [-87.859603, 45.396409], [-87.859773, 45.397278], [-87.859131, 45.398967], [-87.850969, 45.401925], [-87.849322, 45.403872], [-87.849668, 45.409518], [-87.850533, 45.411685], [-87.85181, 45.413103], [-87.856216, 45.416101], [-87.860432, 45.423504], [-87.860127, 45.429584], [-87.86195, 45.433072], [-87.861697, 45.434473], [-87.855298, 45.441379], [-87.847429, 45.444177], [-87.844815, 45.448411], [-87.836008, 45.450877], [-87.833042, 45.453596], [-87.832456, 45.45502], [-87.82743, 45.458076], [-87.821057, 45.459955], [-87.812976, 45.464159], [-87.812971, 45.4661], [-87.811469, 45.467991], [-87.805773, 45.473139], [-87.805873, 45.47438], [-87.807388, 45.477031], [-87.806891, 45.479092], [-87.79896, 45.485147], [-87.798362, 45.486564], [-87.797824, 45.491468], [-87.796409, 45.494679], [-87.793447, 45.498372], [-87.792769, 45.499967], [-87.793215, 45.505028], [-87.798794, 45.506287], [-87.802267, 45.514233], [-87.804203, 45.524676], [-87.80472, 45.531244], [-87.804528, 45.534373], [-87.803364, 45.537016], [-87.80339, 45.538272], [-87.807159, 45.543523], [-87.813737, 45.548616], [-87.818791, 45.5521], [-87.827215, 45.55562], [-87.832296, 45.558767], [-87.832968, 45.559461], [-87.833591, 45.562529], [-87.831689, 45.568035], [-87.829346, 45.568776], [-87.813745, 45.565175], [-87.806104, 45.562863], [-87.797536, 45.562124], [-87.792372, 45.563055], [-87.790874, 45.564096], [-87.788798, 45.565947], [-87.788326, 45.567941], [-87.787292, 45.574906], [-87.787534, 45.581376], [-87.786767, 45.58283], [-87.785647, 45.58396], [-87.781255, 45.585682], [-87.777199, 45.588499], [-87.776238, 45.597797], [-87.777671, 45.609204], [-87.780845, 45.614599], [-87.792016, 45.616756], [-87.79588, 45.618846], [-87.796179, 45.622074], [-87.796983, 45.623613], [-87.804481, 45.628933], [-87.810194, 45.638732], [-87.817277, 45.643926], [-87.821818, 45.645589], [-87.824102, 45.647138], [-87.824676, 45.653211], [-87.822693, 45.656077], [-87.822425, 45.658012], [-87.823672, 45.659817], [-87.823868, 45.66192], [-87.823164, 45.662732], [-87.80329, 45.666494], [-87.798903, 45.67014], [-87.795355, 45.671334], [-87.781623, 45.67328], [-87.781007, 45.673934], [-87.780737, 45.675458], [-87.780808, 45.680349], [-87.782226, 45.683053], [-87.787727, 45.68718], [-87.80188, 45.693862], [-87.804993, 45.695796], [-87.809075, 45.699717], [-87.809181, 45.700337], [-87.805076, 45.703556], [-87.805081, 45.704974], [-87.805867, 45.706841], [-87.810144, 45.71023], [-87.812338, 45.711303], [-87.831442, 45.714938], [-87.837343, 45.716919], [-87.85548, 45.726943], [-87.86432, 45.737139], [-87.863874, 45.74266], [-87.86305, 45.74309], [-87.864141, 45.745697], [-87.868111, 45.749477], [-87.873339, 45.750439], [-87.875813, 45.753888], [-87.879812, 45.754843], [-87.882261, 45.754779], [-87.891905, 45.754055], [-87.896032, 45.752285], [-87.898363, 45.752503], [-87.900005, 45.753497], [-87.901299, 45.756553], [-87.902707, 45.757932], [-87.904657, 45.759163], [-87.905873, 45.759364], [-87.907771, 45.75928], [-87.908933, 45.758297], [-87.921999, 45.756989], [-87.926611, 45.75959], [-87.92913, 45.760364], [-87.934585, 45.758094], [-87.944113, 45.757422], [-87.954459, 45.758414], [-87.959277, 45.757367], [-87.963452, 45.75822], [-87.964725, 45.759461], [-87.963996, 45.760794], [-87.96697, 45.764021], [-87.972451, 45.766319], [-87.976835, 45.767015], [-87.986429, 45.769596], [-87.989656, 45.772025], [-87.989829, 45.772945], [-87.985597, 45.774926], [-87.983392, 45.774696], [-87.981789, 45.775081], [-87.98087, 45.776977], [-87.982617, 45.782944], [-87.987942, 45.793075], [-87.989831, 45.794827], [-87.991447, 45.795393], [-87.995876, 45.795435], [-88.001593, 45.794091], [-88.007043, 45.792192], [-88.017588, 45.792455], [-88.0236, 45.790094], [-88.027228, 45.78919], [-88.031124, 45.789233], [-88.033568, 45.789816], [-88.039729, 45.789626], [-88.040221, 45.789236], [-88.040892, 45.786452], [-88.044697, 45.783718], [-88.048514, 45.782549], [-88.050634, 45.780972], [-88.072091, 45.780261], [-88.076375, 45.781606], [-88.078361, 45.784249], [-88.079764, 45.78495], [-88.08859, 45.784697], [-88.094047, 45.785658], [-88.099616, 45.790186], [-88.103247, 45.791361], [-88.106351, 45.797573], [-88.105518, 45.798839], [-88.105355, 45.800104], [-88.107506, 45.802668], [-88.109506, 45.803584], [-88.116024, 45.804079], [-88.129461, 45.809288], [-88.131834, 45.811312], [-88.13611, 45.819029], [-88.135067, 45.821694], [-88.13364, 45.823128], [-88.127808, 45.827173], [-88.122947, 45.829565], [-88.120723, 45.832995], [-88.114267, 45.837891], [-88.111726, 45.839196], [-88.109089, 45.839492], [-88.106622, 45.841072], [-88.098326, 45.850142], [-88.088825, 45.85586], [-88.087419, 45.857459], [-88.084985, 45.862443], [-88.08259, 45.864944], [-88.081641, 45.865087], [-88.077534, 45.863825], [-88.075146, 45.864832], [-88.073134, 45.871952], [-88.073944, 45.875593], [-88.081781, 45.880516], [-88.083965, 45.881186], [-88.095841, 45.880042], [-88.100218, 45.881205], [-88.101814, 45.883504], [-88.105447, 45.896593], [-88.105981, 45.897091], [-88.106136, 45.900811], [-88.105677, 45.904387], [-88.104576, 45.906847], [-88.101973, 45.91055], [-88.099172, 45.912362], [-88.095354, 45.913895], [-88.095409, 45.915175], [-88.096496, 45.917273], [-88.102908, 45.921869], [-88.104686, 45.922121], [-88.115346, 45.922211], [-88.118507, 45.92114], [-88.121864, 45.92075], [-88.126382, 45.921499], [-88.127594, 45.922414], [-88.12743, 45.923214], [-88.126122, 45.924639], [-88.127428, 45.926153], [-88.141001, 45.930608], [-88.145928, 45.933646], [-88.146419, 45.934194], [-88.146352, 45.935314], [-88.158704, 45.939064], [-88.163105, 45.939043], [-88.163959, 45.93834], [-88.170096, 45.93947], [-88.172628, 45.941015], [-88.175532, 45.944897], [-88.178008, 45.947111], [-88.189789, 45.952208], [-88.191991, 45.95274], [-88.196316, 45.953311], [-88.197627, 45.953082], [-88.202116, 45.949836], [-88.201852, 45.945173], [-88.209585, 45.94428], [-88.211158, 45.944531], [-88.215025, 45.946976], [-88.222167, 45.948513], [-88.223773, 45.948712], [-88.227988, 45.947688], [-88.23314, 45.947405], [-88.239672, 45.948982], [-88.242518, 45.950363], [-88.244452, 45.952142], [-88.245752, 45.954147], [-88.246579, 45.956597], [-88.245937, 45.958726], [-88.246307, 45.962983], [-88.249117, 45.963663], [-88.250133, 45.963572], [-88.250133, 45.963147], [-88.254816, 45.963538], [-88.256455, 45.962739], [-88.259343, 45.959494], [-88.26839, 45.957486], [-88.283335, 45.955091], [-88.292381, 45.951115], [-88.295264, 45.951253], [-88.296968, 45.953767], [-88.300965, 45.956168], [-88.30952, 45.959369], [-88.316894, 45.960969], [-88.320531, 45.959963], [-88.326003, 45.9553], [-88.326953, 45.955071], [-88.330296, 45.956625], [-88.327872, 45.958934], [-88.328333, 45.964054], [-88.330137, 45.965951], [-88.334628, 45.968808], [-88.380183, 45.991654], [-88.385234, 45.990239], [-88.384318, 45.988113], [-88.388847, 45.982675], [-88.395308, 45.980391], [-88.399046, 45.980278], [-88.402848, 45.981194], [-88.409864, 45.979688], [-88.411077, 45.979139], [-88.414849, 45.975483], [-88.416914, 45.975323], [-88.420356, 45.976764], [-88.423044, 45.978547], [-88.422322, 45.98017], [-88.423437, 45.98193], [-88.426125, 45.984102], [-88.43406, 45.986205], [-88.435798, 45.988125], [-88.439733, 45.990456], [-88.443078, 45.990685], [-88.448751, 45.98977], [-88.450325, 45.990181], [-88.454261, 45.993426], [-88.453868, 45.996169], [-88.454361, 45.997518], [-88.458658, 45.999391], [-88.465542, 46.000685], [-88.470855, 46.001004], [-88.474695, 45.99877], [-88.475152, 45.996598], [-88.474036, 45.994655], [-88.476002, 45.992826], [-88.478984, 45.991797], [-88.486755, 45.990949], [-88.492495, 45.992157], [-88.497417, 45.995149], [-88.498108, 45.99636], [-88.496897, 45.998281], [-88.496898, 45.999012], [-88.498765, 46.000393], [-88.500133, 46.000457], [-88.505946, 46.013385], [-88.506205, 46.017134], [-88.507188, 46.0183], [-88.509516, 46.019169], [-88.514601, 46.019926], [-88.523131, 46.019518], [-88.526673, 46.020822], [-88.532414, 46.021212], [-88.533825, 46.020915], [-88.53353, 46.019932], [-88.534876, 46.018104], [-88.539011, 46.014791], [-88.541078, 46.013763], [-88.550756, 46.012896], [-88.554987, 46.014977], [-88.565485, 46.015708], [-88.571553, 46.013811], [-88.572995, 46.011799], [-88.58067, 46.006975], [-88.589, 46.005077], [-88.589755, 46.005602], [-88.592874, 46.01159], [-88.593302, 46.014447], [-88.59386, 46.015132], [-88.598093, 46.017623], [-88.60144, 46.017599], [-88.603965, 46.016181], [-88.607438, 46.010991], [-88.611466, 46.003332], [-88.611563, 45.99881], [-88.613063, 45.990627], [-88.614176, 45.988775], [-88.616405, 45.9877], [-88.623947, 45.988633], [-88.634055, 45.987999], [-88.634842, 45.987565], [-88.635598, 45.985119], [-88.6375, 45.98496], [-88.65776, 45.989287], [-88.661312, 45.988819], [-88.662902, 45.98873], [-88.663697, 45.989084], [-88.664802, 45.989835], [-88.66436, 45.991337], [-88.663609, 45.992397], [-88.663923, 45.993242], [-88.667464, 45.995048], [-88.671267, 45.999026], [-88.670939, 45.999957], [-88.670115, 45.999957], [-88.671458, 46.005104], [-88.674606, 46.010567], [-88.679132, 46.013538], [-88.691662, 46.015435], [-88.698716, 46.017903], [-88.704687, 46.018154], [-88.710328, 46.016303], [-88.713049, 46.012668], [-88.718397, 46.013284], [-88.721319, 46.018608], [-88.721125, 46.022013], [-88.724801, 46.024503], [-88.730675, 46.026535], [-88.739994, 46.027308], [-88.746422, 46.025798], [-88.752176, 46.023584], [-88.754033, 46.02246], [-88.756295, 46.020173], [-88.758618, 46.019542], [-88.760044, 46.019815], [-88.763767, 46.021943], [-88.765208, 46.022086], [-88.766156, 46.022149], [-88.767104, 46.021896], [-88.76761, 46.021643], [-88.768305, 46.021201], [-88.768692, 46.020571], [-88.769712, 46.018968], [-88.776187, 46.015931], [-88.779915, 46.015436], [-88.782104, 46.016558], [-88.783891, 46.020934], [-88.784007, 46.022984], [-88.783635, 46.024357], [-88.778734, 46.028875], [-88.778628, 46.031271], [-88.779221, 46.031869], [-88.784411, 46.032709], [-88.791796, 46.032057], [-88.796182, 46.033712], [-88.80067, 46.030036], [-88.796242, 46.026853], [-88.79579, 46.024864], [-88.79646, 46.023605], [-88.801761, 46.023737], [-88.811948, 46.021609], [-88.815629, 46.02232], [-88.815427, 46.022954], [-88.816489, 46.023924], [-88.820592, 46.026261], [-88.831544, 46.02962], [-88.835249, 46.03033], [-88.837991, 46.030176], [-88.840584, 46.031112], [-88.843903, 46.03305], [-88.847599, 46.037161], [-88.848464, 46.038858], [-88.85027, 46.040274], [-88.943279, 46.077943], [-88.948698, 46.080205], [-88.990807, 46.097298], [-89.09163, 46.138505], [-89.125136, 46.144531], [-89.161757, 46.151816], [-89.166887, 46.152868], [-89.194508, 46.157942], [-89.201283, 46.159426], [-89.203289, 46.16002], [-89.205657, 46.160408], [-89.218156, 46.162988], [-89.219964, 46.163319], [-89.276489, 46.174047], [-89.276883, 46.174116], [-89.495723, 46.216301], [-89.533801, 46.224119], [-89.638416, 46.243804], [-89.667617, 46.249797], [-89.764506, 46.268082], [-89.908196, 46.296037], [-89.90991, 46.296402], [-89.918798, 46.297741], [-90.120489, 46.336852], [-90.121248, 46.337217], [-90.12138, 46.338131], [-90.121084, 46.338656], [-90.119468, 46.3397], [-90.118791, 46.342253], [-90.119572, 46.34418], [-90.120198, 46.345066], [-90.120614, 46.34642], [-90.119729, 46.348504], [-90.117466, 46.349487], [-90.116741, 46.350652], [-90.116844, 46.355153], [-90.118827, 46.359241], [-90.119691, 46.359755], [-90.119757, 46.359748], [-90.120973, 46.35972], [-90.122287, 46.360139], [-90.122785, 46.361259], [-90.122757, 46.362621], [-90.122923, 46.363603], [-90.126517, 46.366889], [-90.131036, 46.369199], [-90.133871, 46.371828], [-90.134663, 46.374947], [-90.134656, 46.374979], [-90.13225, 46.381249], [-90.133966, 46.382118], [-90.135253, 46.38221], [-90.13941, 46.384999], [-90.144359, 46.390255], [-90.146816, 46.397205], [-90.148347, 46.399258], [-90.152936, 46.401293], [-90.157851, 46.409291], [-90.158972, 46.413769], [-90.158241, 46.420485], [-90.158603, 46.422656], [-90.163422, 46.434605], [-90.166526, 46.437576], [-90.166909, 46.439311], [-90.166919, 46.439851], [-90.174556, 46.439656], [-90.17786, 46.440548], [-90.179212, 46.45309], [-90.180336, 46.456746], [-90.189162, 46.459054], [-90.190749, 46.460173], [-90.193294, 46.463143], [-90.192005, 46.465611], [-90.189426, 46.467004], [-90.188633, 46.468101], [-90.188996, 46.469015], [-90.193394, 46.472487], [-90.201727, 46.476074], [-90.204009, 46.478175], [-90.211753, 46.490351], [-90.214843, 46.498181], [-90.214866, 46.499947], [-90.216594, 46.501759], [-90.220532, 46.503403], [-90.222351, 46.50338], [-90.228735, 46.501573], [-90.230324, 46.501732], [-90.23102, 46.503354], [-90.230921, 46.504656], [-90.229402, 46.507992], [-90.230363, 46.509705], [-90.231587, 46.509842], [-90.236283, 46.507121], [-90.243395, 46.505245], [-90.246043, 46.504832], [-90.248194, 46.505357], [-90.25716, 46.504716], [-90.25865, 46.503483], [-90.260504, 46.502822], [-90.263018, 46.502777], [-90.265269, 46.503829], [-90.265143, 46.505089], [-90.265143, 46.506222], [-90.266528, 46.507356], [-90.26848, 46.507167], [-90.27018, 46.507356], [-90.270684, 46.508237], [-90.270558, 46.50956], [-90.270432, 46.510756], [-90.270422, 46.51169], [-90.274721, 46.515416], [-90.271971, 46.519756], [-90.272599, 46.521127], [-90.277131, 46.524487], [-90.278356, 46.523847], [-90.27892, 46.522271], [-90.283423, 46.518868], [-90.285707, 46.518846], [-90.292854, 46.520972], [-90.294311, 46.519876], [-90.294411, 46.518848], [-90.298284, 46.51782], [-90.303546, 46.517432], [-90.306558, 46.518484], [-90.307716, 46.518392], [-90.312581, 46.517113], [-90.313839, 46.516199], [-90.313894, 46.516199], [-90.316983, 46.517319], [-90.317777, 46.521637], [-90.314434, 46.523784], [-90.311886, 46.528695], [-90.310329, 46.536852], [-90.310859, 46.539365], [-90.320428, 46.546287], [-90.324699, 46.545602], [-90.326686, 46.54615], [-90.328044, 46.548046], [-90.327548, 46.550262], [-90.331887, 46.553278], [-90.336921, 46.554076], [-90.344338, 46.552087], [-90.347514, 46.547083], [-90.349462, 46.53808], [-90.350121, 46.537337], [-90.35158, 46.537074], [-90.353534, 46.537553], [-90.355689, 46.540317], [-90.357014, 46.540591], [-90.357676, 46.540271], [-90.3616, 46.541434], [-90.369964, 46.540549], [-90.374461, 46.539212], [-90.387228, 46.533663], [-90.39332, 46.532615], [-90.395272, 46.533941], [-90.395568, 46.536317], [-90.398742, 46.542738], [-90.400041, 46.544384], [-90.400429, 46.544384], [-90.402019, 46.544384], [-90.405593, 46.547584], [-90.407775, 46.552246], [-90.414464, 46.55732], [-90.414596, 46.55732], [-90.41562, 46.563169], [-90.418136, 46.566094], [-90.348407, 46.600635], [-90.327626, 46.607744], [-90.306609, 46.602741], [-90.265294, 46.618516], [-90.237609, 46.624485], [-90.164026, 46.645515], [-90.100695, 46.655132], [-90.04542, 46.668272], [-90.028392, 46.67439], [-89.996034, 46.693225], [-89.985817, 46.70319], [-89.973803, 46.710322], [-89.957101, 46.716929], [-89.918466, 46.740324], [-89.892355, 46.763088], [-89.848652, 46.795711], [-89.831956, 46.804053], [-89.790663, 46.818469], [-89.720277, 46.830413], [-89.673375, 46.833229], [-89.660625, 46.831056], [-89.642255, 46.82534], [-89.634938, 46.819488], [-89.619329, 46.81889], [-89.569808, 46.831859], [-89.535683, 46.835878], [-89.513938, 46.841835], [-89.49908, 46.841621], [-89.491252, 46.838448], [-89.47154, 46.837359], [-89.437047, 46.839512], [-89.415154, 46.843983], [-89.372032, 46.857386], [-89.249143, 46.903326], [-89.227914, 46.912954], [-89.201511, 46.931149], [-89.168244, 46.965536], [-89.142595, 46.984859], [-89.128698, 46.992599], [-89.118339, 46.99422], [-89.113158, 46.989356], [-89.106277, 46.98648], [-89.086742, 46.985298], [-89.063103, 46.988522], [-89.03949, 46.999419], [-89.02893, 47.00114], [-89.022994, 46.99512], [-88.998417, 46.995314], [-88.987197, 46.997239], [-88.972802, 47.002096], [-88.959409, 47.008496], [-88.944045, 47.020129], [-88.924492, 47.042156], [-88.914189, 47.059246], [-88.903706, 47.086161], [-88.88914, 47.100575], [-88.855372, 47.114263], [-88.848176, 47.115065], [-88.814834, 47.141399], [-88.789813, 47.150925], [-88.778022, 47.150465], [-88.764351, 47.155762], [-88.729688, 47.185834], [-88.69966, 47.204831], [-88.672395, 47.219137], [-88.656359, 47.225624], [-88.640323, 47.226784], [-88.623579, 47.232352], [-88.60983, 47.238894], [-88.584912, 47.242361], [-88.573997, 47.245989], [-88.50078, 47.293503], [-88.477733, 47.31346], [-88.470484, 47.327653], [-88.459262, 47.339903], [-88.418673, 47.371188], [-88.389459, 47.384431], [-88.324083, 47.403542], [-88.303447, 47.412204], [-88.285195, 47.422392], [-88.239161, 47.429969], [-88.227446, 47.435093], [-88.218424, 47.441585], [-88.216977, 47.445493], [-88.217822, 47.448738], [-88.18182, 47.457657], [-88.150571, 47.460093], [-88.139651, 47.462693], [-88.085252, 47.468961], [-88.076388, 47.467752], [-88.049326, 47.469785], [-88.048226, 47.470008], [-88.048077, 47.474973], [-88.040291, 47.475999], [-87.978934, 47.47942], [-87.929269, 47.478737], [-87.902416, 47.477045], [-87.898036, 47.474872], [-87.816958, 47.471998], [-87.801184, 47.473301], [-87.756739, 47.460717], [-87.730804, 47.449112], [-87.715942, 47.439816], [-87.710471, 47.4062], [-87.712421, 47.4014], [-87.721274, 47.401032], [-87.742417, 47.405823], [-87.75138, 47.405066], [-87.759057, 47.403013], [-87.765019, 47.398652], [-87.800294, 47.392148], [-87.815371, 47.38479], [-87.827115, 47.38616], [-87.834822, 47.390478], [-87.848252, 47.394864], [-87.8567, 47.395387], [-87.882245, 47.395588], [-87.941613, 47.390073], [-87.957058, 47.38726], [-87.965063, 47.37443], [-87.965598, 47.368645], [-87.962567, 47.362543], [-87.954796, 47.356809], [-87.947397, 47.355461], [-87.938787, 47.346777], [-87.93825, 47.342299], [-87.94336, 47.335899], [-87.946352, 47.334254], [-87.958386, 47.334435], [-87.968604, 47.332582], [-87.989133, 47.322633], [-88.016478, 47.306275], [-88.054849, 47.29824], [-88.06009, 47.295796], [-88.071476, 47.286768], [-88.096851, 47.261351], [-88.108833, 47.259131], [-88.117456, 47.255174], [-88.131943, 47.239554], [-88.163059, 47.216278], [-88.194218, 47.209242], [-88.204849, 47.210498], [-88.212361, 47.209423], [-88.228987, 47.199042], [-88.236892, 47.189236], [-88.242006, 47.174767], [-88.24266, 47.158426], [-88.23947, 47.151137], [-88.236721, 47.149287], [-88.231797, 47.149609], [-88.232164, 47.145975], [-88.239895, 47.139436], [-88.247628, 47.135981], [-88.249571, 47.136231], [-88.250785, 47.140209], [-88.255303, 47.14364], [-88.262972, 47.145174], [-88.272017, 47.143511], [-88.281701, 47.138212], [-88.28904, 47.129689], [-88.289543, 47.126604], [-88.28787, 47.125374], [-88.287173, 47.12042], [-88.288347, 47.114547], [-88.297625, 47.098505], [-88.340052, 47.080494], [-88.346709, 47.079372], [-88.349952, 47.076377], [-88.353191, 47.069063], [-88.353952, 47.058047], [-88.359054, 47.039739], [-88.367624, 47.019213], [-88.373966, 47.012262], [-88.385606, 47.004522], [-88.404498, 46.983353], [-88.411145, 46.977984], [-88.443901, 46.972251], [-88.44857, 46.946769], [-88.455404, 46.923321], [-88.475859, 46.886042], [-88.477935, 46.85056], [-88.483748, 46.831727], [-88.482579, 46.826197], [-88.473342, 46.806226], [-88.462349, 46.786711], [-88.438427, 46.786714], [-88.433835, 46.793502], [-88.415225, 46.811715], [-88.38141, 46.838466], [-88.382204, 46.844477], [-88.382052, 46.845437], [-88.390135, 46.851595], [-88.404008, 46.848331], [-88.389727, 46.8671], [-88.372591, 46.872812], [-88.375855, 46.863428], [-88.369848, 46.857568], [-88.368767, 46.857313], [-88.360868, 46.856202], [-88.35194, 46.857028], [-88.31029, 46.889748], [-88.281244, 46.906632], [-88.261593, 46.915516], [-88.244437, 46.929612], [-88.167227, 46.958855], [-88.155374, 46.965069], [-88.143688, 46.966665], [-88.132876, 46.962204], [-88.150114, 46.94363], [-88.187522, 46.918999], [-88.175197, 46.90458], [-88.161913, 46.904941], [-88.126927, 46.90984], [-88.101315, 46.917207], [-88.08187, 46.920458], [-88.065192, 46.918563], [-88.032408, 46.90889], [-88.004298, 46.906982], [-87.986113, 46.905957], [-87.956, 46.909051], [-87.900339, 46.909686], [-87.874538, 46.892578], [-87.846195, 46.883905], [-87.841228, 46.884363], [-87.827162, 46.889713], [-87.816794, 46.891154], [-87.813226, 46.888023], [-87.793194, 46.880822], [-87.782461, 46.879859], [-87.77693, 46.876726], [-87.776313, 46.872591], [-87.778752, 46.870422], [-87.776804, 46.866823], [-87.765989, 46.861316], [-87.755868, 46.860453], [-87.746646, 46.865427], [-87.741014, 46.865247], [-87.73487, 46.85012], [-87.736732, 46.847216], [-87.734325, 46.836955], [-87.731522, 46.831196], [-87.727358, 46.827656], [-87.713737, 46.825534], [-87.69459, 46.827182], [-87.685698, 46.83253], [-87.68793, 46.839159], [-87.687164, 46.841742], [-87.680668, 46.842496], [-87.674541, 46.836964], [-87.673177, 46.827593], [-87.674345, 46.82405], [-87.672015, 46.820415], [-87.662261, 46.815157], [-87.65151, 46.812411], [-87.641887, 46.813733], [-87.6333, 46.812107], [-87.628081, 46.805157], [-87.607988, 46.788408], [-87.595307, 46.78295], [-87.590767, 46.753009], [-87.582745, 46.730527], [-87.573203, 46.720471], [-87.523308, 46.688488], [-87.524444, 46.677586], [-87.503025, 46.647497], [-87.49286, 46.642561], [-87.467965, 46.635623], [-87.466537, 46.631555], [-87.467563, 46.626228], [-87.464108, 46.614811], [-87.451368, 46.605923], [-87.442612, 46.602776], [-87.411167, 46.601669], [-87.403275, 46.595215], [-87.383961, 46.59307], [-87.381649, 46.580059], [-87.392974, 46.572523], [-87.392828, 46.570852], [-87.382206, 46.553681], [-87.375613, 46.54714], [-87.3903, 46.542577], [-87.393985, 46.533183], [-87.38929, 46.524472], [-87.381349, 46.517292], [-87.366767, 46.507303], [-87.351071, 46.500749], [-87.310755, 46.492017], [-87.258732, 46.488255], [-87.202404, 46.490827], [-87.175065, 46.497548], [-87.12744, 46.494014], [-87.107559, 46.496124], [-87.09876, 46.503609], [-87.077279, 46.515339], [-87.046022, 46.519956], [-87.029892, 46.525599], [-87.017136, 46.53355], [-87.008724, 46.532723], [-86.976958, 46.526581], [-86.964534, 46.516549], [-86.962842, 46.509646], [-86.94698, 46.484567], [-86.946218, 46.479059], [-86.949526, 46.476315], [-86.947077, 46.472064], [-86.927725, 46.464566], [-86.903742, 46.466138], [-86.889094, 46.458499], [-86.883976, 46.450976], [-86.883919, 46.441514], [-86.875151, 46.43728], [-86.850111, 46.434114], [-86.837448, 46.434186], [-86.816026, 46.437892], [-86.810967, 46.449663], [-86.808817, 46.460611], [-86.803557, 46.466669], [-86.787905, 46.477729], [-86.768516, 46.479072], [-86.750157, 46.479109], [-86.735929, 46.475231], [-86.731096, 46.47176], [-86.730829, 46.468057], [-86.710573, 46.444908], [-86.70323, 46.439378], [-86.698139, 46.438624], [-86.686412, 46.454965], [-86.688816, 46.463152], [-86.686468, 46.471655], [-86.683819, 46.498079], [-86.696001, 46.50316], [-86.701929, 46.511571], [-86.709325, 46.543914], [-86.695645, 46.555026], [-86.678182, 46.561039], [-86.675764, 46.557061], [-86.670927, 46.556489], [-86.656479, 46.558453], [-86.652865, 46.560555], [-86.62738, 46.53371], [-86.629086, 46.518144], [-86.632109, 46.508865], [-86.63453, 46.504523], [-86.641088, 46.500438], [-86.645528, 46.492039], [-86.646393, 46.485776], [-86.636671, 46.478298], [-86.627441, 46.47754], [-86.620603, 46.483873], [-86.618061, 46.489452], [-86.612173, 46.493295], [-86.609393, 46.492976], [-86.606932, 46.478531], [-86.609039, 46.470239], [-86.586168, 46.463324], [-86.557731, 46.487434], [-86.524959, 46.505381], [-86.495054, 46.524874], [-86.484003, 46.535965], [-86.481956, 46.542709], [-86.469306, 46.551422], [-86.45993, 46.551928], [-86.44439, 46.548137], [-86.437167, 46.54896], [-86.390409, 46.563194], [-86.34989, 46.578035], [-86.188024, 46.654008], [-86.161681, 46.669475], [-86.138295, 46.672935], [-86.119862, 46.657256], [-86.112126, 46.655044], [-86.099843, 46.654615], [-86.074219, 46.657799], [-86.036969, 46.667627], [-85.995044, 46.673676], [-85.95367, 46.676869], [-85.924047, 46.684733], [-85.877908, 46.690914], [-85.841057, 46.688896], [-85.794923, 46.681083], [-85.750606, 46.677368], [-85.714415, 46.677156], [-85.668753, 46.680404], [-85.624573, 46.678862], [-85.587345, 46.674627], [-85.542517, 46.674263], [-85.50951, 46.675786], [-85.482096, 46.680432], [-85.369805, 46.713754], [-85.289846, 46.744644], [-85.25686, 46.75338], [-85.173042, 46.763634], [-85.063556, 46.757856], [-85.036286, 46.760435], [-85.00924, 46.769224], [-84.989497, 46.772403], [-84.964652, 46.772845], [-84.954009, 46.771362], [-84.95158, 46.769488], [-84.987539, 46.745483], [-85.007616, 46.728339], [-85.020159, 46.712463], [-85.027513, 46.697451], [-85.030078, 46.684769], [-85.028291, 46.675125], [-85.035504, 46.625021], [-85.037056, 46.600995], [-85.035476, 46.581547], [-85.031507, 46.568703], [-85.029594, 46.554419], [-85.027374, 46.553756], [-85.025491, 46.546397], [-85.027083, 46.543038], [-85.045534, 46.537694], [-85.052954, 46.532827], [-85.056133, 46.52652], [-85.054943, 46.51475], [-85.049847, 46.503963], [-85.033766, 46.48767], [-85.025598, 46.483028], [-85.015211, 46.479712], [-84.969464, 46.47629], [-84.955307, 46.480269], [-84.947269, 46.487399], [-84.937145, 46.489252], [-84.934432, 46.480315], [-84.921931, 46.469962], [-84.915184, 46.467515], [-84.893423, 46.465406], [-84.87507, 46.466781], [-84.861448, 46.46993], [-84.849767, 46.460245], [-84.843907, 46.448661], [-84.829491, 46.444071], [-84.800101, 46.446219], [-84.769151, 46.453523], [-84.723338, 46.468266], [-84.689672, 46.483923], [-84.678423, 46.487694], [-84.65388, 46.48225], [-84.63102, 46.484868], [-84.616489, 46.47187], [-84.607945, 46.456747], [-84.584167, 46.43941], [-84.573522, 46.427895], [-84.551496, 46.418522], [-84.503719, 46.43919], [-84.493401, 46.440313], [-84.479513, 46.432573], [-84.471848, 46.434289], [-84.462597, 46.44094], [-84.455527, 46.453897], [-84.455256, 46.462785], [-84.463322, 46.467435], [-84.445149, 46.489016], [-84.420274, 46.501077], [-84.394725, 46.499242], [-84.37504, 46.508669], [-84.373968, 46.509098], [-84.343599, 46.507713], [-84.337732, 46.505577], [-84.325371, 46.500021], [-84.293016, 46.492803], [-84.275814, 46.492821], [-84.265391, 46.494393], [-84.264266, 46.495055], [-84.254434, 46.500821], [-84.226131, 46.53392], [-84.193729, 46.53992], [-84.177428, 46.52692], [-84.166028, 46.52622], [-84.153027, 46.52832], [-84.146526, 46.531119], [-84.139426, 46.532219], [-84.128925, 46.530119], [-84.123325, 46.520919], [-84.117925, 46.517619], [-84.111225, 46.504119], [-84.125026, 46.470143], [-84.146172, 46.41852], [-84.138906, 46.372221], [-84.119122, 46.337014], [-84.106247, 46.321963], [-84.119629, 46.315013], [-84.115563, 46.268225], [-84.097766, 46.256512], [-84.108089, 46.241238], [-84.118175, 46.233968], [-84.125024, 46.232885], [-84.134652, 46.23214], [-84.14595, 46.224995], [-84.14715, 46.224184], [-84.14922, 46.223808], [-84.150725, 46.223808], [-84.151666, 46.224184], [-84.152042, 46.224937], [-84.15223, 46.226254], [-84.152499, 46.227875], [-84.159485, 46.233233], [-84.182732, 46.23545], [-84.219494, 46.231992], [-84.233117, 46.224037], [-84.249164, 46.206461], [-84.245233, 46.192571], [-84.247687, 46.17989], [-84.251424, 46.175888], [-84.221001, 46.163062], [-84.196669, 46.16615], [-84.177298, 46.183993], [-84.17164, 46.181731], [-84.125022, 46.180209], [-84.114941, 46.174114], [-84.113259, 46.16886], [-84.100126, 46.15077], [-84.095818, 46.147733], [-84.089309, 46.146432], [-84.060383, 46.146138], [-84.026536, 46.131648], [-84.031036, 46.123186], [-84.038696, 46.12562], [-84.0519, 46.11981], [-84.061329, 46.113482], [-84.069147, 46.103978], [-84.072398, 46.09669], [-84.071741, 46.092441], [-84.066257, 46.087438], [-84.051712, 46.079189], [-84.027861, 46.054784], [-84.006082, 46.044586], [-83.989526, 46.032823], [-83.963808, 46.027833], [-83.95141, 46.029042], [-83.943933, 46.031465], [-83.939012, 46.029226], [-83.93547, 46.020385], [-83.931175, 46.017871], [-83.908583, 46.011471], [-83.900535, 45.998918], [-83.896489, 45.989194], [-83.898594, 45.97953], [-83.901942, 45.97264], [-83.903923, 45.96621], [-83.916168, 45.955326], [-83.921257, 45.958075], [-83.952183, 45.965498], [-83.985141, 45.967133], [-83.996471, 45.961461], [-84.000033, 45.948452], [-84.017565, 45.959046], [-84.080071, 45.970822], [-84.090391, 45.967256], [-84.10537, 45.972948], [-84.107204, 45.977161], [-84.111174, 45.978675], [-84.140816, 45.975308], [-84.17225, 45.966072], [-84.17806, 45.969175], [-84.238174, 45.967595], [-84.254952, 45.956068], [-84.330021, 45.956247], [-84.353272, 45.941663], [-84.376429, 45.931962], [-84.428689, 45.958371], [-84.437633, 45.97375], [-84.443138, 45.977863], [-84.463128, 45.968925], [-84.480436, 45.977764], [-84.483062, 45.982242], [-84.482442, 45.985441], [-84.484009, 45.98825], [-84.507201, 45.991169], [-84.514123, 45.987242], [-84.514071, 45.971292], [-84.525052, 45.968578], [-84.532392, 45.969448], [-84.534422, 45.972762], [-84.534648, 45.978132], [-84.530444, 45.991385], [-84.533426, 46.00572], [-84.540995, 46.019501], [-84.544405, 46.02286], [-84.563891, 46.032459], [-84.581081, 46.031041], [-84.586592, 46.026584], [-84.609063, 46.026418], [-84.647609, 46.049704], [-84.656567, 46.052654], [-84.66671, 46.050486], [-84.675835, 46.046009], [-84.687322, 46.03488], [-84.692735, 46.027019], [-84.6927, 46.016963], [-84.686269, 45.979144], [-84.684368, 45.977499], [-84.685254, 45.973454], [-84.687712, 45.97126], [-84.703948, 45.970901], [-84.723039, 45.967279], [-84.730179, 45.961198], [-84.738849, 45.945792], [-84.73937, 45.941816], [-84.733041, 45.932837], [-84.718955, 45.927449], [-84.713614, 45.920366], [-84.713251, 45.916047], [-84.734002, 45.907026], [-84.721276, 45.873908], [-84.715481, 45.865934], [-84.701183, 45.853092], [-84.702295, 45.850464], [-84.706383, 45.848658], [-84.720836, 45.848107], [-84.722764, 45.846621], [-84.725734, 45.837045], [-84.746985, 45.835597], [-84.792763, 45.858691], [-84.831396, 45.872038], [-84.838472, 45.881512], [-84.837624, 45.889054], [-84.842243, 45.898194], [-84.852916, 45.900111], [-84.873254, 45.909815], [-84.879835, 45.915847], [-84.902913, 45.923673], [-84.917484, 45.93067], [-84.937134, 45.955949], [-84.973556, 45.986134], [-85.003597, 46.00613], [-85.01399, 46.010774], [-85.055581, 46.023148], [-85.088818, 46.028378], [-85.102899, 46.032488], [-85.130433, 46.046076], [-85.140835, 46.049601], [-85.152027, 46.050725], [-85.19063, 46.047622], [-85.197523, 46.044878], [-85.222511, 46.060689], [-85.266385, 46.065779], [-85.287693, 46.072276], [-85.316264, 46.086608], [-85.335911, 46.092595], [-85.356214, 46.092086], [-85.366622, 46.086778], [-85.381394, 46.082044], [-85.393832, 46.095465], [-85.412064, 46.101437], [-85.426916, 46.101964], [-85.441932, 46.095793], [-85.442293, 46.093941], [-85.440191, 46.092593], [-85.44699, 46.085164], [-85.480603, 46.096379], [-85.5001, 46.09694], [-85.512696, 46.094727], [-85.52157, 46.091257], [-85.540858, 46.079581], [-85.603785, 46.030363], [-85.617709, 46.008458], [-85.648581, 45.983695], [-85.654686, 45.973686], [-85.663966, 45.967013], [-85.697203, 45.960158], [-85.724246, 45.965409], [-85.743618, 45.965173], [-85.770938, 45.971349], [-85.790639, 45.977594], [-85.810442, 45.980087], [-85.817558, 45.979447], [-85.825819, 45.976292], [-85.832603, 45.967742], [-85.842404, 45.965247], [-85.861157, 45.968167], [-85.882442, 45.96862], [-85.893196, 45.967253], [-85.9091, 45.959074], [-85.922737, 45.948287], [-85.926213, 45.938093], [-85.926017, 45.932104], [-85.917238, 45.927782], [-85.910264, 45.922112], [-85.913769, 45.919439], [-85.920581, 45.920994], [-85.954063, 45.936629], [-85.998868, 45.950968], [-86.050956, 45.962205], [-86.072067, 45.965313], [-86.094753, 45.966704], [-86.123567, 45.964748], [-86.145714, 45.957372], [-86.150173, 45.954494], [-86.159415, 45.953765], [-86.196618, 45.963185], [-86.208255, 45.962978], [-86.220546, 45.958883], [-86.22906, 45.94857], [-86.233613, 45.945802], [-86.248008, 45.944849], [-86.254768, 45.94864], [-86.278007, 45.942057], [-86.315981, 45.915247], [-86.324232, 45.90608], [-86.332625, 45.851813], [-86.349134, 45.83416], [-86.355062, 45.805355], [-86.351658, 45.798132], [-86.363808, 45.790057], [-86.369918, 45.789254], [-86.395809, 45.78974], [-86.401656, 45.795412], [-86.415971, 45.793793], [-86.424828, 45.789747], [-86.428423, 45.785587], [-86.428946, 45.782524], [-86.427183, 45.77905], [-86.428294, 45.77562], [-86.431921, 45.767756], [-86.439661, 45.760669], [-86.455534, 45.75685], [-86.466039, 45.759741], [-86.47905, 45.757416], [-86.486028, 45.746608], [-86.496251, 45.749255], [-86.504216, 45.75423], [-86.51457, 45.752337], [-86.518281, 45.747688], [-86.523197, 45.736498], [-86.525166, 45.720797], [-86.53328, 45.710849], [-86.537258, 45.708361], [-86.54143, 45.70811], [-86.570627, 45.716412], [-86.580936, 45.71192], [-86.585847, 45.704922], [-86.584771, 45.682007], [-86.587528, 45.666456], [-86.593613, 45.665625], [-86.611306, 45.669733], [-86.62043, 45.667098], [-86.625132, 45.663819], [-86.627938, 45.659293], [-86.616972, 45.620581], [-86.60418, 45.606457], [-86.613803, 45.599583], [-86.616893, 45.606796], [-86.62387, 45.613262], [-86.633224, 45.618249], [-86.648439, 45.615992], [-86.666127, 45.621689], [-86.687208, 45.634253], [-86.688772, 45.639969], [-86.695275, 45.648175], [-86.708038, 45.649202], [-86.717828, 45.668106], [-86.718191, 45.67732], [-86.715781, 45.683949], [-86.705184, 45.690901], [-86.689102, 45.687862], [-86.676184, 45.691862], [-86.665677, 45.702217], [-86.665511, 45.70903], [-86.669263, 45.71086], [-86.67148, 45.72053], [-86.662762, 45.728964], [-86.647319, 45.732618], [-86.633138, 45.747654], [-86.634902, 45.763536], [-86.631018, 45.782019], [-86.617336, 45.783538], [-86.612137, 45.779356], [-86.597661, 45.775385], [-86.583391, 45.778242], [-86.576869, 45.788502], [-86.581071, 45.791802], [-86.581759, 45.794797], [-86.576858, 45.801473], [-86.571172, 45.805452], [-86.563392, 45.804469], [-86.557215, 45.808172], [-86.555547, 45.813499], [-86.559044, 45.822323], [-86.555186, 45.831696], [-86.549723, 45.836039], [-86.545602, 45.836495], [-86.538831, 45.840083], [-86.529208, 45.853043], [-86.528224, 45.856974], [-86.529573, 45.874974], [-86.532989, 45.882665], [-86.541464, 45.890234], [-86.553608, 45.896476], [-86.567719, 45.9005], [-86.583304, 45.898784], [-86.593184, 45.88511], [-86.603293, 45.876626], [-86.613536, 45.875982], [-86.625736, 45.868295], [-86.633168, 45.860068], [-86.632478, 45.843309], [-86.645998, 45.833888], [-86.721113, 45.845431], [-86.72852, 45.848759], [-86.742466, 45.864719], [-86.749638, 45.867796], [-86.758449, 45.867274], [-86.78208, 45.860195], [-86.784177, 45.854641], [-86.782259, 45.82995], [-86.777225, 45.827183], [-86.774612, 45.821696], [-86.773279, 45.811385], [-86.785722, 45.794517], [-86.805524, 45.791275], [-86.801476, 45.780027], [-86.821523, 45.770356], [-86.823743, 45.765486], [-86.820868, 45.760776], [-86.821814, 45.757164], [-86.838658, 45.741831], [-86.841818, 45.729051], [-86.838746, 45.722307], [-86.870392, 45.710087], [-86.876904, 45.711891], [-86.895342, 45.711464], [-86.904089, 45.709546], [-86.92106, 45.697868], [-86.944158, 45.695833], [-86.964275, 45.672761], [-86.966885, 45.675001], [-86.967315, 45.684923], [-86.969765, 45.691895], [-86.981349, 45.696463], [-86.984588, 45.705812], [-86.982413, 45.719873], [-86.977655, 45.728768], [-86.975224, 45.75313], [-86.981341, 45.76616], [-86.981624, 45.792221], [-86.988438, 45.810621], [-87.00508, 45.831718], [-87.018902, 45.838886], [-87.031435, 45.837238], [-87.039842, 45.834245], [-87.052043, 45.821879], [-87.057439, 45.812483], [-87.058844, 45.80151], [-87.058127, 45.779152], [-87.063975, 45.76651], [-87.064302, 45.758828], [-87.062406, 45.753296], [-87.05555, 45.751535], [-87.052908, 45.747983], [-87.057444, 45.736822], [-87.061721, 45.732821], [-87.070442, 45.718779], [-87.059533, 45.708497], [-87.095455, 45.701039], [-87.099401, 45.698614], [-87.099725, 45.695231], [-87.111638, 45.685905], [-87.129412, 45.68171], [-87.172241, 45.661788], [-87.196852, 45.636275], [-87.223647, 45.599338], [-87.234612, 45.588817], [-87.263488, 45.552032], [-87.288726, 45.501606], [-87.306122, 45.475513], [-87.319703, 45.464929], [-87.333147, 45.447208], [-87.334249, 45.442315], [-87.33324, 45.436897], [-87.329958, 45.431937], [-87.325834, 45.43004], [-87.327749, 45.425307], [-87.336152, 45.41536], [-87.350852, 45.407743], [-87.359512, 45.399829], [-87.364368, 45.388532], [-87.3925, 45.369028], [-87.399973, 45.349322], [-87.431684, 45.316383], [-87.437257, 45.3055], [-87.438908, 45.293405], [-87.465201, 45.273351], [-87.512336, 45.224252], [-87.548964, 45.191591], [-87.563417, 45.18407], [-87.585651, 45.166394], [-87.600796, 45.146842], [-87.60928, 45.13232], [-87.612019, 45.123377], [-87.610073, 45.114141], [-87.60012, 45.103011], [-87.59027, 45.096406], [-87.581969, 45.097206], [-87.590208, 45.095264], ], ], [ [ [-86.033174, 45.15842], [-86.005946, 45.155751], [-85.993194, 45.152805], [-85.989412, 45.151069], [-85.976803, 45.138363], [-85.976434, 45.120706], [-85.980433, 45.113046], [-85.984095, 45.087073], [-85.982799, 45.080787], [-85.977082, 45.072993], [-85.96059, 45.062223], [-85.95976, 45.058486], [-85.976883, 45.06266], [-85.99736, 45.055929], [-86.013073, 45.063774], [-86.019874, 45.071665], [-86.037129, 45.086576], [-86.052424, 45.095311], [-86.058653, 45.100776], [-86.060396, 45.104617], [-86.065016, 45.140266], [-86.059393, 45.152291], [-86.050473, 45.158418], [-86.04443, 45.159582], [-86.033174, 45.15842], ], ], [ [ [-86.093536, 45.007838], [-86.115699, 44.999093], [-86.133655, 44.996874], [-86.154824, 45.002394], [-86.156689, 45.010535], [-86.154557, 45.018102], [-86.141644, 45.040251], [-86.138095, 45.043038], [-86.117908, 45.048478], [-86.093166, 45.041492], [-86.079103, 45.030795], [-86.093451, 45.03166], [-86.097094, 45.030128], [-86.100315, 45.02624], [-86.101894, 45.022811], [-86.101214, 45.018101], [-86.093536, 45.007838], ], ], [ [ [-82.415937, 43.005555], [-82.422586, 43.000029], [-82.424206, 42.996938], [-82.42455, 42.993393], [-82.423086, 42.988728], [-82.420346, 42.984451], [-82.412965, 42.977041], [-82.416737, 42.966613], [-82.428603, 42.952001], [-82.447142, 42.937752], [-82.455027, 42.926866], [-82.46404, 42.901456], [-82.469912, 42.887459], [-82.470032, 42.881421], [-82.46822, 42.859107], [-82.468961, 42.852314], [-82.472681, 42.836784], [-82.47864, 42.825187], [-82.482045, 42.808629], [-82.481576, 42.805519], [-82.480394, 42.802272], [-82.471159, 42.784002], [-82.467394, 42.769298], [-82.467483, 42.76191], [-82.483604, 42.733624], [-82.48387, 42.71798], [-82.494491, 42.700823], [-82.510533, 42.665172], [-82.509935, 42.637294], [-82.518782, 42.613888], [-82.523337, 42.607486], [-82.548169, 42.591848], [-82.549717, 42.590338], [-82.554236, 42.583981], [-82.555938, 42.582425], [-82.569801, 42.573551], [-82.57738, 42.567078], [-82.579205, 42.56534], [-82.583996, 42.554041], [-82.589779, 42.550678], [-82.604686, 42.548592], [-82.607068, 42.548843], [-82.611059, 42.550419], [-82.616848, 42.554601], [-82.624907, 42.557229], [-82.633491, 42.557051], [-82.640916, 42.554973], [-82.64268, 42.554333], [-82.648776, 42.550401], [-82.661677, 42.541875], [-82.666596, 42.535084], [-82.679059, 42.52221], [-82.686417, 42.518597], [-82.685397, 42.528659], [-82.679522, 42.53552], [-82.670956, 42.537989], [-82.664335, 42.546244], [-82.680758, 42.557909], [-82.681036, 42.574695], [-82.688061, 42.588417], [-82.701152, 42.585991], [-82.711151, 42.590884], [-82.713042, 42.597904], [-82.700818, 42.606687], [-82.683482, 42.609433], [-82.681593, 42.618672], [-82.690124, 42.625033], [-82.689836, 42.627148], [-82.669103, 42.637225], [-82.645715, 42.631145], [-82.630922, 42.64211], [-82.626396, 42.647385], [-82.623043, 42.655951], [-82.623797, 42.665395], [-82.630851, 42.673341], [-82.635262, 42.675552], [-82.659781, 42.678618], [-82.674287, 42.687049], [-82.6855, 42.690036], [-82.700964, 42.689548], [-82.706135, 42.683578], [-82.726366, 42.682768], [-82.753317, 42.669732], [-82.765583, 42.655725], [-82.780817, 42.652232], [-82.792418, 42.655132], [-82.797318, 42.654032], [-82.813518, 42.640833], [-82.820118, 42.626333], [-82.819017, 42.616333], [-82.811017, 42.610933], [-82.789017, 42.603434], [-82.771844, 42.595517], [-82.76959, 42.59338], [-82.788612, 42.588501], [-82.788116, 42.582835], [-82.781514, 42.571634], [-82.782414, 42.564834], [-82.784514, 42.563634], [-82.789114, 42.568434], [-82.796715, 42.571034], [-82.821016, 42.570734], [-82.834216, 42.567849], [-82.845916, 42.560634], [-82.849316, 42.555734], [-82.851016, 42.548935], [-82.859316, 42.541935], [-82.874416, 42.523535], [-82.882316, 42.501035], [-82.883915, 42.471836], [-82.870347, 42.450888], [-82.886113, 42.408137], [-82.888413, 42.398237], [-82.894013, 42.389437], [-82.898413, 42.385437], [-82.915114, 42.378137], [-82.919114, 42.374437], [-82.928815, 42.359437], [-82.92397, 42.352068], [-82.945415, 42.347337], [-82.959416, 42.339638], [-82.988619, 42.332439], [-83.01832, 42.329739], [-83.064121, 42.317738], [-83.079721, 42.308638], [-83.096521, 42.290138], [-83.110922, 42.260638], [-83.128022, 42.238839], [-83.133923, 42.17474], [-83.121323, 42.125742], [-83.133511, 42.088143], [-83.157624, 42.085542], [-83.168759, 42.073601], [-83.188598, 42.066431], [-83.189115, 42.061853], [-83.186877, 42.061206], [-83.185526, 42.052243], [-83.18824, 42.031329], [-83.185858, 42.029451], [-83.17089, 42.022403], [-83.17089, 42.015185], [-83.193918, 41.997656], [-83.212479, 41.98872], [-83.216897, 41.988561], [-83.223354, 41.989191], [-83.228502, 41.987291], [-83.249204, 41.972402], [-83.257009, 41.959686], [-83.257292, 41.950745], [-83.253552, 41.944897], [-83.26455, 41.929086], [-83.270484, 41.939335], [-83.28713, 41.944397], [-83.295982, 41.944742], [-83.302904, 41.943073], [-83.315859, 41.935893], [-83.326024, 41.924961], [-83.333642, 41.907261], [-83.335961, 41.889721], [-83.341557, 41.879956], [-83.359467, 41.867849], [-83.366187, 41.865505], [-83.372445, 41.874477], [-83.381955, 41.870877], [-83.39622, 41.852965], [-83.409596, 41.830325], [-83.422316, 41.822278], [-83.434204, 41.818562], [-83.439612, 41.813162], [-83.441668, 41.808646], [-83.443364, 41.789118], [-83.437516, 41.769694], [-83.427308, 41.750214], [-83.424076, 41.740738], [-83.43436, 41.737058], [-83.451897, 41.734486], [-83.453832, 41.732647], [-83.497733, 41.731847], [-83.499733, 41.731647], [-83.503433, 41.731547], [-83.504334, 41.731547], [-83.585235, 41.729348], [-83.593835, 41.729148], [-83.595235, 41.729148], [-83.636636, 41.727849], [-83.639636, 41.727749], [-83.665937, 41.726949], [-83.685337, 41.726449], [-83.708937, 41.72515], [-83.763038, 41.72355], [-83.859541, 41.72125], [-83.880539, 41.720081], [-83.899764, 41.719961], [-83.998849, 41.716822], [-84.019373, 41.716668], [-84.134417, 41.712931], [-84.360546, 41.706621], [-84.396547, 41.705935], [-84.438067, 41.704903], [-84.749955, 41.698245], [-84.806082, 41.696089], [-84.806018, 41.707485], [-84.806042, 41.720544], [-84.806065, 41.732909], [-84.806074, 41.737603], [-84.806134, 41.743115], [-84.805883, 41.760216], [-84.818873, 41.760059], [-84.825196, 41.75999], [-84.932484, 41.759691], [-84.96086, 41.759438], [-84.961562, 41.759552], [-84.971551, 41.759527], [-84.972803, 41.759366], [-85.037817, 41.759801], [-85.039436, 41.759985], [-85.117267, 41.7597], [-85.123102, 41.759743], [-85.17223, 41.759618], [-85.196637, 41.759735], [-85.232835, 41.759839], [-85.272216, 41.759999], [-85.272951, 41.759911], [-85.273713, 41.75977], [-85.292099, 41.759962], [-85.298365, 41.760028], [-85.30814, 41.760097], [-85.318129, 41.759983], [-85.330623, 41.759982], [-85.350174, 41.759908], [-85.379133, 41.759875], [-85.427553, 41.759706], [-85.432471, 41.759684], [-85.515959, 41.759352], [-85.518251, 41.759513], [-85.607548, 41.759079], [-85.608312, 41.759193], [-85.622608, 41.759049], [-85.624987, 41.759093], [-85.632714, 41.759164], [-85.647683, 41.759125], [-85.650738, 41.759103], [-85.724534, 41.759085], [-85.749992, 41.759091], [-85.750469, 41.75909], [-85.775039, 41.759147], [-85.791363, 41.759051], [-85.872041, 41.759365], [-85.874997, 41.759341], [-85.888825, 41.759422], [-85.974901, 41.759849], [-85.97498, 41.759849], [-85.991302, 41.759949], [-86.041027, 41.760512], [-86.12506, 41.760576], [-86.12546, 41.76056], [-86.127844, 41.760592], [-86.21759, 41.760016], [-86.22607, 41.760016], [-86.265496, 41.760207], [-86.501773, 41.759553], [-86.519318, 41.759447], [-86.640044, 41.759671], [-86.641186, 41.759633], [-86.746521, 41.759982], [-86.748096, 41.759967], [-86.800611, 41.760251], [-86.800707, 41.76024], [-86.801578, 41.76024], [-86.804427, 41.76024], [-86.823628, 41.76024], [-86.824828, 41.76024], [-86.777227, 41.78474], [-86.717037, 41.819349], [-86.679355, 41.844793], [-86.619442, 41.893827], [-86.597899, 41.918291], [-86.582197, 41.942241], [-86.556421, 42.000042], [-86.501322, 42.08454], [-86.490122, 42.105139], [-86.485223, 42.118239], [-86.466262, 42.134406], [-86.404146, 42.196379], [-86.385179, 42.217279], [-86.356218, 42.254166], [-86.321803, 42.310743], [-86.297168, 42.358207], [-86.284448, 42.394563], [-86.284969, 42.401814], [-86.276878, 42.413317], [-86.261573, 42.443894], [-86.24971, 42.480212], [-86.240642, 42.54], [-86.23528, 42.564958], [-86.228082, 42.583397], [-86.225613, 42.594765], [-86.22905, 42.637693], [-86.226638, 42.644922], [-86.21602, 42.664413], [-86.208654, 42.69209], [-86.206834, 42.719424], [-86.208309, 42.762789], [-86.210863, 42.783832], [-86.211815, 42.833236], [-86.210737, 42.859128], [-86.214138, 42.883555], [-86.216209, 42.919007], [-86.226305, 42.988284], [-86.232707, 43.015762], [-86.244277, 43.049681], [-86.250069, 43.057489], [-86.250517, 43.066993], [-86.254646, 43.083409], [-86.280756, 43.136015], [-86.316259, 43.195114], [-86.39575, 43.316225], [-86.407832, 43.338436], [-86.435124, 43.396702], [-86.448743, 43.432013], [-86.468747, 43.491963], [-86.479276, 43.515335], [-86.520205, 43.576718], [-86.529507, 43.593462], [-86.538497, 43.617501], [-86.540916, 43.633158], [-86.540787, 43.644593], [-86.538482, 43.658795], [-86.529179, 43.677889], [-86.510319, 43.698625], [-86.481854, 43.725135], [-86.461554, 43.746685], [-86.445123, 43.771564], [-86.437391, 43.789334], [-86.431043, 43.815975], [-86.431198, 43.84072], [-86.433915, 43.855608], [-86.445455, 43.889726], [-86.447915, 43.918089], [-86.463136, 43.970976], [-86.483331, 44.001179], [-86.501738, 44.021912], [-86.508827, 44.032755], [-86.514742, 44.04792], [-86.514702, 44.058119], [-86.508764, 44.067881], [-86.500453, 44.075607], [-86.446883, 44.10597], [-86.429871, 44.119782], [-86.421108, 44.12948], [-86.400645, 44.156848], [-86.380062, 44.189472], [-86.362847, 44.208113], [-86.351638, 44.229429], [-86.343793, 44.249608], [-86.327287, 44.263057], [-86.316025, 44.28421], [-86.300264, 44.308197], [-86.26871, 44.345324], [-86.251926, 44.400984], [-86.248083, 44.420946], [-86.24832, 44.434758], [-86.251843, 44.451632], [-86.251605, 44.465443], [-86.248914, 44.483004], [-86.243745, 44.488929], [-86.238743, 44.501682], [-86.223788, 44.549043], [-86.220697, 44.566742], [-86.22545, 44.59459], [-86.231828, 44.609107], [-86.25395, 44.64808], [-86.259029, 44.663654], [-86.256796, 44.686769], [-86.254996, 44.691935], [-86.248474, 44.699046], [-86.232482, 44.70605], [-86.172201, 44.720623], [-86.160268, 44.728189], [-86.121125, 44.727972], [-86.106182, 44.731088], [-86.089186, 44.741496], [-86.077933, 44.758234], [-86.073506, 44.769803], [-86.071746, 44.804717], [-86.065966, 44.821522], [-86.066031, 44.834852], [-86.071112, 44.86542], [-86.072468, 44.884788], [-86.07099, 44.895876], [-86.066745, 44.905685], [-86.058862, 44.911012], [-86.038332, 44.915696], [-86.031194, 44.907349], [-86.021513, 44.902774], [-86.009355, 44.899454], [-85.992535, 44.900026], [-85.980219, 44.906136], [-85.972824, 44.914781], [-85.967169, 44.929484], [-85.961603, 44.935567], [-85.952721, 44.940758], [-85.942099, 44.954317], [-85.938589, 44.964559], [-85.9316, 44.968788], [-85.915851, 44.968307], [-85.897626, 44.962014], [-85.891543, 44.957783], [-85.879934, 44.943305], [-85.869852, 44.939031], [-85.854304, 44.938147], [-85.83615, 44.940256], [-85.815451, 44.945631], [-85.807403, 44.949814], [-85.780439, 44.977932], [-85.778278, 44.983075], [-85.776207, 45.000574], [-85.771395, 45.015181], [-85.761943, 45.023454], [-85.746444, 45.051229], [-85.740836, 45.055575], [-85.712262, 45.065622], [-85.695715, 45.076461], [-85.681096, 45.092693], [-85.675671, 45.10554], [-85.674861, 45.116216], [-85.656024, 45.145788], [-85.618639, 45.186771], [-85.613174, 45.184624], [-85.611684, 45.181104], [-85.606963, 45.178477], [-85.593064, 45.178527], [-85.585986, 45.180381], [-85.564654, 45.192546], [-85.561809, 45.200524], [-85.551072, 45.210742], [-85.540497, 45.210169], [-85.526734, 45.189316], [-85.531461, 45.177247], [-85.536892, 45.173385], [-85.552179, 45.167352], [-85.56168, 45.15894], [-85.554083, 45.142568], [-85.558373, 45.133209], [-85.564612, 45.137498], [-85.564612, 45.147247], [-85.570178, 45.155145], [-85.573893, 45.155488], [-85.590434, 45.153175], [-85.599801, 45.149286], [-85.614319, 45.127562], [-85.609266, 45.11351], [-85.595029, 45.103962], [-85.597496, 45.094454], [-85.583198, 45.071304], [-85.573353, 45.068382], [-85.566066, 45.059201], [-85.56613, 45.043633], [-85.57016, 45.041278], [-85.573976, 45.043361], [-85.597181, 45.040547], [-85.599652, 45.021749], [-85.609123, 45.013103], [-85.621878, 45.004529], [-85.606588, 44.990662], [-85.604301, 44.990983], [-85.602356, 44.974272], [-85.602034, 44.926743], [-85.621403, 44.923123], [-85.625497, 44.921107], [-85.639842, 44.890255], [-85.645456, 44.883645], [-85.648932, 44.87401], [-85.652355, 44.849092], [-85.651435, 44.831624], [-85.641652, 44.810816], [-85.637, 44.790078], [-85.640781, 44.775561], [-85.636097, 44.771329], [-85.627982, 44.767508], [-85.610776, 44.76516], [-85.599256, 44.765919], [-85.593571, 44.768783], [-85.590985, 44.783914], [-85.581717, 44.807784], [-85.545891, 44.864024], [-85.532931, 44.87319], [-85.530649, 44.889763], [-85.553509, 44.890924], [-85.559524, 44.888113], [-85.564509, 44.895246], [-85.539703, 44.916779], [-85.533553, 44.925762], [-85.520205, 44.960347], [-85.5221, 44.966727], [-85.520034, 44.973996], [-85.4926, 44.989834], [-85.475204, 44.991053], [-85.470462, 44.980745], [-85.464944, 44.961062], [-85.46665, 44.958844], [-85.472258, 44.959391], [-85.48574, 44.953626], [-85.491286, 44.927585], [-85.49249, 44.90822], [-85.488624, 44.901707], [-85.498007, 44.865451], [-85.502182, 44.855802], [-85.508617, 44.847872], [-85.519096, 44.845339], [-85.539924, 44.834166], [-85.555894, 44.818256], [-85.560231, 44.810072], [-85.560488, 44.789679], [-85.576566, 44.760208], [-85.571301, 44.755293], [-85.554326, 44.748744], [-85.538285, 44.746821], [-85.527216, 44.748235], [-85.504775, 44.768082], [-85.503935, 44.772951], [-85.505244, 44.781594], [-85.509251, 44.787334], [-85.499591, 44.803838], [-85.474796, 44.814959], [-85.462916, 44.825067], [-85.460445, 44.835667], [-85.425804, 44.881646], [-85.423003, 44.895019], [-85.406173, 44.911773], [-85.3958, 44.931018], [-85.378286, 44.998587], [-85.381654, 45.018407], [-85.380659, 45.046319], [-85.377586, 45.055713], [-85.366412, 45.069023], [-85.366908, 45.116938], [-85.372571, 45.126241], [-85.376948, 45.142881], [-85.380464, 45.180876], [-85.386726, 45.189497], [-85.388593, 45.23524], [-85.371593, 45.270834], [-85.355478, 45.282774], [-85.335016, 45.294027], [-85.323941, 45.303355], [-85.307646, 45.31314], [-85.294848, 45.316408], [-85.289568, 45.314052], [-85.273789, 45.315443], [-85.262996, 45.319507], [-85.25505, 45.325675], [-85.252193, 45.330863], [-85.235629, 45.339374], [-85.209673, 45.356937], [-85.196704, 45.360641], [-85.182471, 45.360824], [-85.143651, 45.370369], [-85.054805, 45.364091], [-85.043101, 45.361506], [-85.032813, 45.361251], [-85.022234, 45.366701], [-84.959119, 45.375973], [-84.91585, 45.393115], [-84.912537, 45.402828], [-84.912956, 45.409776], [-84.916165, 45.417639], [-84.922006, 45.421914], [-84.980953, 45.429382], [-84.990041, 45.427618], [-84.990785, 45.425264], [-84.983836, 45.420764], [-84.977116, 45.420035], [-84.978608, 45.418663], [-85.040936, 45.436701], [-85.069573, 45.459239], [-85.088386, 45.476928], [-85.109252, 45.521626], [-85.115479, 45.539406], [-85.119737, 45.569026], [-85.118637, 45.575175], [-85.111909, 45.585829], [-85.093525, 45.600121], [-85.079528, 45.617083], [-85.075686, 45.623688], [-85.07491, 45.629242], [-85.061488, 45.639505], [-85.015341, 45.651564], [-85.007026, 45.65636], [-85.001154, 45.661225], [-84.996336, 45.669685], [-84.992958, 45.679983], [-84.987847, 45.682997], [-84.975768, 45.683174], [-84.97095, 45.686334], [-84.943756, 45.71029], [-84.940526, 45.721832], [-84.942125, 45.72846], [-84.95084, 45.736893], [-84.982328, 45.75196], [-85.002914, 45.75394], [-85.048441, 45.760807], [-85.074563, 45.762182], [-85.077313, 45.765619], [-85.049129, 45.770431], [-85.030568, 45.769056], [-85.00741, 45.763168], [-84.995105, 45.759855], [-84.938312, 45.759892], [-84.924664, 45.756897], [-84.910398, 45.75001], [-84.866976, 45.752066], [-84.840981, 45.744751], [-84.806642, 45.746171], [-84.799558, 45.74713], [-84.788821, 45.752283], [-84.781373, 45.76108], [-84.7798, 45.76965], [-84.792337, 45.778497], [-84.793153, 45.780463], [-84.780313, 45.787224], [-84.772765, 45.789301], [-84.751571, 45.782733], [-84.742, 45.784134], [-84.734065, 45.788205], [-84.726192, 45.786905], [-84.718904, 45.777599], [-84.715996, 45.766174], [-84.681967, 45.756197], [-84.679546, 45.749095], [-84.644822, 45.73999], [-84.604712, 45.721668], [-84.573631, 45.710381], [-84.555496, 45.702268], [-84.553311, 45.698566], [-84.538998, 45.690383], [-84.46168, 45.652404], [-84.442348, 45.654771], [-84.435415, 45.664106], [-84.427495, 45.669201], [-84.413642, 45.669427], [-84.400283, 45.663345], [-84.376403, 45.655565], [-84.329537, 45.66438], [-84.289685, 45.653296], [-84.270238, 45.64479], [-84.215268, 45.634767], [-84.196043, 45.621456], [-84.180514, 45.604639], [-84.157121, 45.585305], [-84.139462, 45.573714], [-84.128867, 45.562284], [-84.126532, 45.556616], [-84.126971, 45.542428], [-84.122309, 45.523788], [-84.116687, 45.51305], [-84.109238, 45.505171], [-84.095905, 45.497298], [-84.075792, 45.490537], [-84.056138, 45.489349], [-84.039958, 45.493733], [-84.036286, 45.496245], [-84.028813, 45.497225], [-84.009582, 45.495069], [-83.99835, 45.491158], [-83.978017, 45.494138], [-83.939261, 45.493189], [-83.909472, 45.485784], [-83.881813, 45.467907], [-83.85856, 45.446865], [-83.841543, 45.435287], [-83.806622, 45.419159], [-83.788777, 45.416415], [-83.773171, 45.417302], [-83.755569, 45.411034], [-83.737321, 45.410943], [-83.721815, 45.413304], [-83.697316, 45.396239], [-83.667934, 45.384675], [-83.64379, 45.37171], [-83.599273, 45.352561], [-83.570361, 45.347198], [-83.550268, 45.350832], [-83.546799, 45.352637], [-83.545729, 45.358397], [-83.538306, 45.358167], [-83.520258, 45.347239], [-83.514717, 45.34646], [-83.496704, 45.357536], [-83.488826, 45.355872], [-83.477794, 45.341891], [-83.445672, 45.310612], [-83.43304, 45.303688], [-83.42514, 45.296808], [-83.422389, 45.290775], [-83.401091, 45.279572], [-83.388274, 45.276916], [-83.385104, 45.274195], [-83.381743, 45.268983], [-83.388034, 45.254976], [-83.412569, 45.245807], [-83.41241, 45.238905], [-83.405914, 45.227157], [-83.384265, 45.203472], [-83.381647, 45.203357], [-83.368896, 45.182168], [-83.368046, 45.172478], [-83.363678, 45.166469], [-83.359895, 45.16302], [-83.348684, 45.161516], [-83.337822, 45.14712], [-83.316118, 45.141958], [-83.315924, 45.139992], [-83.319315, 45.137684], [-83.318442, 45.12893], [-83.30788, 45.099093], [-83.298275, 45.090483], [-83.290827, 45.069157], [-83.291346, 45.062597], [-83.280272, 45.045962], [-83.277037, 45.044767], [-83.271464, 45.038114], [-83.265896, 45.026844], [-83.271506, 45.023417], [-83.287974, 45.026462], [-83.302153, 45.032315], [-83.340257, 45.041545], [-83.357609, 45.050613], [-83.36747, 45.062268], [-83.399255, 45.070364], [-83.433798, 45.057616], [-83.442052, 45.051056], [-83.453363, 45.035331], [-83.454168, 45.03188], [-83.446342, 45.016655], [-83.435249, 45.011883], [-83.431254, 45.007998], [-83.435822, 45.000012], [-83.438948, 45.000011], [-83.450013, 44.990219], [-83.443718, 44.952247], [-83.438856, 44.940843], [-83.433032, 44.93289], [-83.425311, 44.926741], [-83.404596, 44.918761], [-83.398879, 44.906417], [-83.39396, 44.903056], [-83.352815, 44.886164], [-83.320503, 44.880571], [-83.312903, 44.884191], [-83.314966, 44.86838], [-83.321241, 44.852962], [-83.314429, 44.84222], [-83.300648, 44.829831], [-83.299736, 44.823359], [-83.290906, 44.807888], [-83.295718, 44.784516], [-83.288844, 44.765955], [-83.298287, 44.754907], [-83.2973, 44.746134], [-83.290665, 44.729265], [-83.284128, 44.721766], [-83.273393, 44.713901], [-83.276836, 44.689354], [-83.289442, 44.652968], [-83.307504, 44.629816], [-83.314517, 44.608725], [-83.315603, 44.595079], [-83.313649, 44.564588], [-83.308918, 44.54836], [-83.308471, 44.539902], [-83.318279, 44.514416], [-83.31761, 44.486058], [-83.326824, 44.444411], [-83.327171, 44.429234], [-83.324616, 44.415039], [-83.321553, 44.409119], [-83.321648, 44.404502], [-83.333757, 44.372486], [-83.335248, 44.357995], [-83.332533, 44.340464], [-83.336988, 44.332919], [-83.343738, 44.329763], [-83.352115, 44.332366], [-83.364312, 44.33259], [-83.373607, 44.327784], [-83.401822, 44.301831], [-83.414301, 44.294543], [-83.419236, 44.2878], [-83.425762, 44.272487], [-83.445176, 44.252823], [-83.465111, 44.245949], [-83.442731, 44.265361], [-83.445805, 44.273378], [-83.463049, 44.278838], [-83.479531, 44.28009], [-83.500392, 44.27661], [-83.508839, 44.273711], [-83.524817, 44.261558], [-83.53771, 44.248171], [-83.549096, 44.227282], [-83.552872, 44.210718], [-83.553834, 44.197956], [-83.567744, 44.155899], [-83.568915, 44.126734], [-83.567714, 44.119652], [-83.573071, 44.101298], [-83.588004, 44.086758], [-83.591361, 44.079237], [-83.590437, 44.069569], [-83.58409, 44.056748], [-83.601173, 44.054686], [-83.621078, 44.056186], [-83.650116, 44.052404], [-83.679654, 44.036365], [-83.687892, 44.020709], [-83.680108, 43.994196], [-83.743806, 43.991529], [-83.746779, 43.988807], [-83.763774, 43.985158], [-83.787863, 43.985279], [-83.829077, 43.989095], [-83.848276, 43.981594], [-83.85493, 43.977067], [-83.856128, 43.972632], [-83.869406, 43.960719], [-83.877694, 43.959235], [-83.885328, 43.946691], [-83.890145, 43.934672], [-83.890912, 43.923314], [-83.907388, 43.918062], [-83.916815, 43.89905], [-83.917875, 43.856509], [-83.926345, 43.787398], [-83.929375, 43.777091], [-83.945426, 43.759946], [-83.954792, 43.760932], [-83.956021, 43.759286], [-83.954347, 43.750647], [-83.939297, 43.715369], [-83.909479, 43.672622], [-83.897078, 43.664022], [-83.852076, 43.644922], [-83.844118, 43.652896], [-83.83816, 43.654384], [-83.814674, 43.643022], [-83.806774, 43.641221], [-83.778919, 43.630056], [-83.770693, 43.628691], [-83.769886, 43.634924], [-83.725793, 43.618691], [-83.703446, 43.597646], [-83.669795, 43.59079], [-83.666052, 43.591292], [-83.654192, 43.59929], [-83.618602, 43.628891], [-83.595579, 43.650249], [-83.563157, 43.684564], [-83.553707, 43.685432], [-83.549044, 43.693798], [-83.55147, 43.699901], [-83.540187, 43.708746], [-83.524837, 43.716948], [-83.515853, 43.718157], [-83.513461, 43.714607], [-83.506657, 43.710907], [-83.48007, 43.714636], [-83.470053, 43.723418], [-83.46508, 43.733843], [-83.459628, 43.740931], [-83.440171, 43.761694], [-83.438878, 43.767135], [-83.441591, 43.770175], [-83.446752, 43.77186], [-83.438311, 43.786846], [-83.426068, 43.799915], [-83.416378, 43.801034], [-83.411453, 43.805033], [-83.410663, 43.80773], [-83.428481, 43.817907], [-83.442917, 43.811033], [-83.471788, 43.789723], [-83.480725, 43.791786], [-83.448416, 43.861902], [-83.427794, 43.861215], [-83.425732, 43.849529], [-83.417483, 43.841967], [-83.404422, 43.84128], [-83.384487, 43.85434], [-83.358869, 43.857395], [-83.33227, 43.880522], [-83.331788, 43.893901], [-83.333532, 43.89852], [-83.340976, 43.904541], [-83.403047, 43.910709], [-83.400985, 43.916208], [-83.338067, 43.915687], [-83.318656, 43.91762], [-83.30569, 43.922489], [-83.28231, 43.938031], [-83.26898, 43.956132], [-83.26185, 43.969021], [-83.26153, 43.973525], [-83.227093, 43.981003], [-83.195688, 43.983137], [-83.180618, 43.982109], [-83.145407, 43.989441], [-83.134881, 43.993147], [-83.120659, 44.00095], [-83.10782, 44.003245], [-83.079297, 44.001079], [-83.066026, 44.003366], [-83.058741, 44.006224], [-83.046577, 44.01571], [-83.029868, 44.041175], [-83.024604, 44.045174], [-82.999283, 44.04651], [-82.990728, 44.048846], [-82.967439, 44.066138], [-82.958688, 44.065774], [-82.956658, 44.063306], [-82.947368, 44.062187], [-82.928884, 44.069389], [-82.915976, 44.070503], [-82.889831, 44.050952], [-82.875889, 44.045046], [-82.833103, 44.036851], [-82.793205, 44.023247], [-82.788298, 44.013712], [-82.783198, 44.009366], [-82.765018, 44.006845], [-82.746255, 43.996037], [-82.738992, 43.989506], [-82.728528, 43.972615], [-82.712235, 43.94961], [-82.709839, 43.948226], [-82.693505, 43.91798], [-82.678642, 43.88373], [-82.65545, 43.867883], [-82.643166, 43.852468], [-82.642899, 43.846419], [-82.647467, 43.84449], [-82.647784, 43.842684], [-82.644345, 43.837539], [-82.633641, 43.831224], [-82.617955, 43.768596], [-82.619079, 43.756088], [-82.617213, 43.746788], [-82.612224, 43.739771], [-82.60483, 43.678884], [-82.605783, 43.669489], [-82.6005, 43.602935], [-82.597911, 43.590016], [-82.593785, 43.581467], [-82.585654, 43.543969], [-82.565691, 43.502904], [-82.565505, 43.497063], [-82.55354, 43.464111], [-82.539517, 43.437539], [-82.538578, 43.431594], [-82.53993, 43.422378], [-82.535627, 43.368062], [-82.536794, 43.34851], [-82.530128, 43.333805], [-82.529416, 43.316243], [-82.532396, 43.30577], [-82.523086, 43.225361], [-82.519123, 43.212737], [-82.508881, 43.196748], [-82.501656, 43.161656], [-82.494194, 43.143736], [-82.490614, 43.118172], [-82.486042, 43.102486], [-82.471053, 43.087581], [-82.457221, 43.061285], [-82.422768, 43.007956], [-82.415937, 43.005555], ], ], [ [ [-83.436745, 44.021656], [-83.442245, 44.02853], [-83.441551, 44.038841], [-83.425743, 44.02853], [-83.436745, 44.021656], ], ], [ [ [-83.414047, 43.877026], [-83.427109, 43.877026], [-83.436729, 43.882526], [-83.43261, 43.885273], [-83.414047, 43.877026], ], ], [ [ [-87.600342, 47.407711], [-87.617531, 47.407711], [-87.629898, 47.415272], [-87.65052, 47.416649], [-87.623718, 47.42696], [-87.585907, 47.419399], [-87.600342, 47.407711], ], ], [ [ [-83.761154, 46.086082], [-83.784348, 46.090248], [-83.805168, 46.092033], [-83.821236, 46.091438], [-83.828964, 46.09679], [-83.828964, 46.102741], [-83.81707, 46.111069], [-83.803978, 46.109879], [-83.787323, 46.108093], [-83.774239, 46.09798], [-83.763527, 46.093815], [-83.758179, 46.090248], [-83.761154, 46.086082], ], ], [ [ [-83.97345, 46.065285], [-84.003006, 46.079033], [-84.012634, 46.08728], [-84.00576, 46.097591], [-83.987885, 46.103779], [-83.974136, 46.073532], [-83.97345, 46.065285], ], ], [ [ [-83.853355, 46.050987], [-83.858116, 46.055149], [-83.858116, 46.062885], [-83.858711, 46.067047], [-83.865845, 46.069427], [-83.871201, 46.07597], [-83.864059, 46.083702], [-83.85276, 46.085487], [-83.847404, 46.082516], [-83.840271, 46.071808], [-83.839081, 46.064072], [-83.846214, 46.051582], [-83.853355, 46.050987], ], ], [ [ [-83.749252, 46.034328], [-83.758774, 46.036114], [-83.763527, 46.043846], [-83.77018, 46.043228], [-83.773781, 46.051472], [-83.764122, 46.065857], [-83.749847, 46.065857], [-83.733192, 46.053364], [-83.732002, 46.048012], [-83.737358, 46.043846], [-83.743896, 46.035519], [-83.749252, 46.034328], ], ], [ [ [-84.638847, 45.955563], [-84.640915, 45.971375], [-84.639633, 45.977913], [-84.634041, 45.980309], [-84.613937, 45.973629], [-84.60775, 45.967918], [-84.608704, 45.964111], [-84.619171, 45.957447], [-84.638847, 45.955563], ], ], [ [ [-84.568253, 45.950787], [-84.582527, 45.958874], [-84.583954, 45.963634], [-84.579674, 45.968391], [-84.575386, 45.970299], [-84.563492, 45.967442], [-84.559212, 45.958401], [-84.564919, 45.95126], [-84.568253, 45.950787], ], ], [ [ [-83.561836, 45.912563], [-83.583054, 45.91592], [-83.63221, 45.932285], [-83.657661, 45.945461], [-83.687691, 45.93539], [-83.719429, 45.934078], [-83.732986, 45.937641], [-83.742775, 45.938004], [-83.766235, 45.935223], [-83.768852, 45.932068], [-83.78611, 45.933376], [-83.801041, 45.93758], [-83.803329, 45.943363], [-83.808144, 45.945694], [-83.822807, 45.943985], [-83.827568, 45.941235], [-83.835503, 45.941841], [-83.840866, 45.952724], [-83.846436, 45.953182], [-83.864861, 45.959465], [-83.881058, 45.968185], [-83.884827, 45.977165], [-83.873146, 45.993427], [-83.868233, 45.995075], [-83.845398, 46.025681], [-83.830147, 46.022324], [-83.818199, 46.002426], [-83.794052, 45.9958], [-83.776436, 46.004204], [-83.765274, 46.018364], [-83.765259, 46.024681], [-83.759369, 46.027191], [-83.746872, 46.024811], [-83.735573, 46.026596], [-83.727837, 46.034924], [-83.711777, 46.040279], [-83.692146, 46.039089], [-83.686195, 46.046227], [-83.679657, 46.057529], [-83.677872, 46.064667], [-83.682632, 46.071808], [-83.699883, 46.075375], [-83.719513, 46.081326], [-83.731407, 46.086678], [-83.723297, 46.093811], [-83.719788, 46.101032], [-83.703857, 46.103367], [-83.661163, 46.100258], [-83.634979, 46.103954], [-83.625557, 46.102211], [-83.615341, 46.095978], [-83.59861, 46.090084], [-83.581314, 46.089615], [-83.576088, 46.083511], [-83.572639, 46.074921], [-83.572571, 46.069897], [-83.565353, 46.061897], [-83.554062, 46.058884], [-83.547203, 46.047867], [-83.543365, 46.037197], [-83.540848, 46.021248], [-83.532913, 46.01133], [-83.494843, 45.999542], [-83.48835, 45.999542], [-83.480637, 45.996162], [-83.473946, 45.98856], [-83.473221, 45.984421], [-83.481766, 45.971874], [-83.488808, 45.968739], [-83.51062, 45.929325], [-83.517242, 45.923615], [-83.526344, 45.918636], [-83.561836, 45.912563], ], ], [ [ [-84.861969, 45.851276], [-84.88121, 45.860901], [-84.87915, 45.868462], [-84.861969, 45.860214], [-84.861969, 45.851276], ], ], [ [ [-84.617607, 45.844925], [-84.638428, 45.850872], [-84.650917, 45.859798], [-84.651512, 45.86277], [-84.645561, 45.874668], [-84.647346, 45.884186], [-84.644974, 45.885376], [-84.624153, 45.88002], [-84.602142, 45.852062], [-84.607491, 45.8479], [-84.617607, 45.844925], ], ], [ [ [-85.590889, 45.833141], [-85.595177, 45.835522], [-85.593811, 45.839809], [-85.581467, 45.841042], [-85.584709, 45.834095], [-85.590889, 45.833141], ], ], [ [ [-84.595001, 45.821129], [-84.609871, 45.82589], [-84.613441, 45.834217], [-84.612846, 45.836002], [-84.596786, 45.833622], [-84.58905, 45.827675], [-84.589645, 45.821724], [-84.595001, 45.821129], ], ], [ [ [-85.611832, 45.806015], [-85.617538, 45.810776], [-85.617538, 45.814106], [-85.612305, 45.81601], [-85.606598, 45.81506], [-85.603264, 45.813156], [-85.601837, 45.811253], [-85.611832, 45.806015], ], ], [ [ [-85.683296, 45.769455], [-85.690704, 45.769455], [-85.696259, 45.774391], [-85.691933, 45.777477], [-85.683296, 45.769455], ], ], [ [ [-85.377129, 45.769012], [-85.396172, 45.774723], [-85.394264, 45.77853], [-85.379036, 45.789951], [-85.379036, 45.802326], [-85.377129, 45.812794], [-85.370468, 45.818504], [-85.360954, 45.817554], [-85.35334, 45.806133], [-85.351433, 45.795662], [-85.359047, 45.776627], [-85.377129, 45.769012], ], ], [ [ [-85.462578, 45.765865], [-85.495575, 45.772739], [-85.507263, 45.778236], [-85.532013, 45.798172], [-85.529259, 45.818108], [-85.524445, 45.829792], [-85.496948, 45.822231], [-85.45433, 45.800236], [-85.450203, 45.796677], [-85.44783, 45.790134], [-85.450203, 45.776451], [-85.455559, 45.768719], [-85.462578, 45.765865], ], ], [ [ [-84.420113, 45.718815], [-84.431412, 45.724762], [-84.434387, 45.726547], [-84.442719, 45.726547], [-84.452827, 45.725952], [-84.472458, 45.731304], [-84.481384, 45.729523], [-84.50042, 45.736065], [-84.510529, 45.75034], [-84.512314, 45.7551], [-84.525406, 45.761047], [-84.558716, 45.793766], [-84.580727, 45.801498], [-84.588455, 45.807449], [-84.59024, 45.812801], [-84.58905, 45.816372], [-84.580727, 45.819939], [-84.5718, 45.819347], [-84.550385, 45.811016], [-84.525406, 45.80864], [-84.511124, 45.811611], [-84.504585, 45.811611], [-84.50042, 45.811016], [-84.490303, 45.804474], [-84.439148, 45.789604], [-84.433197, 45.787819], [-84.427841, 45.790195], [-84.423088, 45.792576], [-84.421303, 45.796146], [-84.423088, 45.805069], [-84.427246, 45.811611], [-84.418922, 45.811611], [-84.408211, 45.795551], [-84.402267, 45.787224], [-84.398697, 45.785439], [-84.390961, 45.785439], [-84.375496, 45.777706], [-84.357056, 45.77235], [-84.35408, 45.770565], [-84.35408, 45.767593], [-84.364197, 45.75629], [-84.37133, 45.746773], [-84.379662, 45.739635], [-84.390366, 45.734875], [-84.392151, 45.729523], [-84.399292, 45.722977], [-84.409996, 45.720005], [-84.420113, 45.718815], ], ], [ [ [-85.672188, 45.696632], [-85.696869, 45.69725], [-85.696259, 45.712063], [-85.69529, 45.724697], [-85.701813, 45.73613], [-85.68885, 45.747238], [-85.651863, 45.743141], [-85.649353, 45.722553], [-85.672188, 45.696632], ], ], [ [ [-85.84375, 45.69046], [-85.84375, 45.710209], [-85.835114, 45.711445], [-85.83326, 45.696632], [-85.84375, 45.69046], ], ], [ [ [-86.682877, 45.594818], [-86.691704, 45.595818], [-86.702019, 45.602692], [-86.712326, 45.610939], [-86.69239, 45.617126], [-86.677269, 45.613689], [-86.669022, 45.609566], [-86.665749, 45.606239], [-86.670982, 45.600529], [-86.682877, 45.594818], ], ], [ [ [-86.636894, 45.542053], [-86.648788, 45.543243], [-86.654144, 45.555737], [-86.661285, 45.574177], [-86.661285, 45.582504], [-86.658905, 45.586075], [-86.654739, 45.587856], [-86.644035, 45.58548], [-86.62619, 45.573582], [-86.620239, 45.562279], [-86.622025, 45.556332], [-86.630348, 45.546814], [-86.636894, 45.542053], ], ], [ [ [-86.66069, 45.520042], [-86.666641, 45.520042], [-86.669609, 45.524208], [-86.670204, 45.52956], [-86.667236, 45.53194], [-86.6595, 45.532536], [-86.656525, 45.525993], [-86.66069, 45.520042], ], ], [ [ [-86.71508, 45.497517], [-86.728142, 45.522949], [-86.723328, 45.520889], [-86.715767, 45.509201], [-86.71508, 45.497517], ], ], [ [ [-86.758385, 45.476204], [-86.782448, 45.487206], [-86.782448, 45.506451], [-86.774193, 45.511951], [-86.756325, 45.50164], [-86.758385, 45.476204], ], ], [ [ [-85.770958, 45.461353], [-85.792961, 45.481976], [-85.782646, 45.491596], [-85.770958, 45.487473], [-85.766838, 45.475788], [-85.770958, 45.461353], ], ], [ [ [-85.833519, 45.378174], [-85.87339, 45.421482], [-85.883011, 45.443478], [-85.858261, 45.440041], [-85.834892, 45.428356], [-85.825958, 45.404297], [-85.833519, 45.378174], ], ], [ [ [-83.322464, 45.186062], [-83.338272, 45.189499], [-83.334145, 45.199123], [-83.31971, 45.194313], [-83.322464, 45.186062], ], ], [ [ [-83.190582, 45.033356], [-83.229767, 45.039539], [-83.233894, 45.054665], [-83.231827, 45.058102], [-83.213959, 45.056728], [-83.201584, 45.046413], [-83.190582, 45.033356], ], ], [ [ [-85.582054, 44.859333], [-85.583755, 44.861454], [-85.581207, 44.869938], [-85.569328, 44.873333], [-85.569756, 44.863152], [-85.582054, 44.859333], ], ], [ [ [-83.829224, 43.662632], [-83.831284, 43.669506], [-83.821663, 43.677067], [-83.816162, 43.672943], [-83.816162, 43.666756], [-83.829224, 43.662632], ], ], ], }, }; var multiTriangles = tesselate(multipolygon); t.equal( multiTriangles.type, "FeatureCollection", "MultiPolygon returns a FeatureCollection" ); t.equal( multiTriangles.features[0].geometry.type, "Polygon", "contains at least 1 triangle" ); t.equal( multiTriangles.features[0].geometry.coordinates[0].length, 4, "triangle is valid" ); t.throws(function () { tesselate(point([0, 0])); }, /input must be a Polygon or MultiPolygon/); t.throws(function () { tesselate(featurecollection([])); }, /input must be a Polygon or MultiPolygon/); var simplePolygonWithElevation = { type: "Feature", id: "CoordsWithElevation", properties: { name: "CoordsWithElevation" }, geometry: { type: "Polygon", coordinates: [ [ [-123.233256, 42.006186, 130], [-114.634459, 35.00118, 130], [-118.183517, 33.763391, 130], [-124.213628, 42.000709, 130], [-123.233256, 42.006186, 130], ], ], }, }; var simpleTrianglesWithElevation = tesselate(simplePolygonWithElevation); t.equal( simpleTrianglesWithElevation.type, "FeatureCollection", "Polygon returns a FeatureCollection" ); t.equal( simpleTrianglesWithElevation.features[0].geometry.type, "Polygon", "contains at least 1 triangle" ); t.equal( simpleTrianglesWithElevation.features[0].geometry.coordinates[0].length, 4, "triangle is valid" ); t.equal( simpleTrianglesWithElevation.features[0].geometry.coordinates[0][0][2], 130, "triangle coordinates contain elevation" ); var simpleSquareWithVariableElevation = { type: "Feature", id: "SquareWithVariableElevation", properties: { name: "SquareWithVariableElevation" }, geometry: { type: "Polygon", coordinates: [ [ [1, 1], [1, 2, 50], [2, 2, 75], [2, 1], [1, 1], ], ], }, }; var simpleVariableElevationTriangles = tesselate( simpleSquareWithVariableElevation ); t.equal( simpleVariableElevationTriangles.type, "FeatureCollection", "Polygon returns a FeatureCollection" ); t.deepEqual( simpleVariableElevationTriangles.features[0].geometry.coordinates, [ [ [1, 2, 50], [1, 1], [2, 1], [1, 2, 50], ], ], "first triangle coordinates contain original elevations" ); t.deepEqual( simpleVariableElevationTriangles.features[1].geometry.coordinates, [ [ [2, 1], [2, 2, 75], [1, 2, 50], [2, 1], ], ], "second triangle coordinates contain original elevations" ); t.end(); }); ================================================ FILE: packages/turf-tesselate/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-tin/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-tin/README.md ================================================ # @turf/tin ## tin Takes a set of [points][1] and creates a [Triangulated Irregular Network][2], or a TIN for short, returned as a collection of Polygons. These are often used for developing elevation contour maps or stepped heat visualizations. If an optional z-value property is provided then it is added as properties called `a`, `b`, and `c` representing its value at each of the points that represent the corners of the triangle. ### Parameters * `points` **[FeatureCollection][3]<[Point][1]>** input points * `z` **[String][4]?** name of the property from which to pull z values This is optional: if not given, then there will be no extra data added to the derived triangles. ### Examples ```javascript // generate some random point data var points = turf.randomPoint(30, {bbox: [50, 30, 70, 50]}); // add a random property to each point between 0 and 9 for (var i = 0; i < points.features.length; i++) { points.features[i].properties.z = ~~(Math.random() * 9); } var tin = turf.tin(points, 'z'); //addToMap var addToMap = [tin, points] for (var i = 0; i < tin.features.length; i++) { var properties = tin.features[i].properties; properties.fill = '#' + properties.a + properties.b + properties.c; } ``` Returns **[FeatureCollection][3]<[Polygon][5]>** TIN output [1]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [2]: http://en.wikipedia.org/wiki/Triangulated_irregular_network [3]: https://tools.ietf.org/html/rfc7946#section-3.3 [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String [5]: https://tools.ietf.org/html/rfc7946#section-3.1.6 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/tin ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-tin/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import Benchmark from "benchmark"; import { tin } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const points = JSON.parse( fs.readFileSync(path.join(__dirname, "test", "Points.json")) ); const suite = new Benchmark.Suite("turf-tin"); suite .add("turf-tin", () => tin(points, "elevation")) .on("cycle", (event) => console.log(String(event.target))) .run(); ================================================ FILE: packages/turf-tin/index.ts ================================================ // http://en.wikipedia.org/wiki/Delaunay_triangulation // https://github.com/ironwallaby/delaunay import { FeatureCollection, Point, Polygon } from "geojson"; import { featureCollection, polygon } from "@turf/helpers"; interface Pt { x: number; y: number; z?: number; __sentinel?: boolean; } interface Vertice { x: number; y: number; } /** * Takes a set of {@link Point|points} and creates a * [Triangulated Irregular Network](http://en.wikipedia.org/wiki/Triangulated_irregular_network), * or a TIN for short, returned as a collection of Polygons. These are often used * for developing elevation contour maps or stepped heat visualizations. * * If an optional z-value property is provided then it is added as properties called `a`, `b`, * and `c` representing its value at each of the points that represent the corners of the * triangle. * * @function * @param {FeatureCollection} points input points * @param {String} [z] name of the property from which to pull z values * This is optional: if not given, then there will be no extra data added to the derived triangles. * @returns {FeatureCollection} TIN output * @example * // generate some random point data * var points = turf.randomPoint(30, {bbox: [50, 30, 70, 50]}); * * // add a random property to each point between 0 and 9 * for (var i = 0; i < points.features.length; i++) { * points.features[i].properties.z = ~~(Math.random() * 9); * } * var tin = turf.tin(points, 'z'); * * //addToMap * var addToMap = [tin, points] * for (var i = 0; i < tin.features.length; i++) { * var properties = tin.features[i].properties; * properties.fill = '#' + properties.a + properties.b + properties.c; * } */ function tin( points: FeatureCollection, z?: string ): FeatureCollection { // break down points let isPointZ = false; return featureCollection( triangulate( points.features.map((p) => { const point: Pt = { x: p.geometry.coordinates[0], y: p.geometry.coordinates[1], }; if (z) { point.z = p.properties[z]; } else if (p.geometry.coordinates.length === 3) { isPointZ = true; point.z = p.geometry.coordinates[2]; } return point; }) ).map((triangle: any) => { const a = [triangle.a.x, triangle.a.y]; const b = [triangle.b.x, triangle.b.y]; const c = [triangle.c.x, triangle.c.y]; let properties = {}; // Add z coordinates to triangle points if user passed // them in that way otherwise add it as a property. if (isPointZ) { a.push(triangle.a.z); b.push(triangle.b.z); c.push(triangle.c.z); } else { properties = { a: triangle.a.z, b: triangle.b.z, c: triangle.c.z, }; } return polygon([[a, b, c, a]], properties); }) ); } class Triangle { public a: Pt; public b: Pt; public c: Pt; public x: number; public y: number; public r: number; constructor(a: Pt, b: Pt, c: Pt) { this.a = a; this.b = b; this.c = c; const A = b.x - a.x; const B = b.y - a.y; const C = c.x - a.x; const D = c.y - a.y; const E = A * (a.x + b.x) + B * (a.y + b.y); const F = C * (a.x + c.x) + D * (a.y + c.y); const G = 2 * (A * (c.y - b.y) - B * (c.x - b.x)); let dx; let dy; // If the points of the triangle are collinear, then just find the // extremes and use the midpoint as the center of the circumcircle. this.x = (D * E - B * F) / G; this.y = (A * F - C * E) / G; dx = this.x - a.x; dy = this.y - a.y; this.r = dx * dx + dy * dy; } } function byX(a: Pt, b: Pt) { return b.x - a.x; } function dedup(edges: number[]) { let j = edges.length; let a; let b; let i; let m; let n; outer: while (j) { b = edges[--j]; a = edges[--j]; i = j; while (i) { n = edges[--i]; m = edges[--i]; if ((a === m && b === n) || (a === n && b === m)) { edges.splice(j, 2); edges.splice(i, 2); j -= 2; continue outer; } } } } function triangulate(vertices: Vertice[]) { // Bail if there aren't enough vertices to form any triangles. if (vertices.length < 3) { return []; } // Ensure the vertex array is in order of descending X coordinate // (which is needed to ensure a subquadratic runtime), and then find // the bounding box around the points. vertices.sort(byX); let i = vertices.length - 1; const xmin = vertices[i].x; const xmax = vertices[0].x; let ymin = vertices[i].y; let ymax = ymin; const epsilon = 1e-12; let a; let b; let c; let A; let B; let G; while (i--) { if (vertices[i].y < ymin) { ymin = vertices[i].y; } if (vertices[i].y > ymax) { ymax = vertices[i].y; } } // Find a supertriangle, which is a triangle that surrounds all the // vertices. This is used like something of a sentinel value to remove // cases in the main algorithm, and is removed before we return any // results. // Once found, put it in the "open" list. (The "open" list is for // triangles who may still need to be considered; the "closed" list is // for triangles which do not.) let dx = xmax - xmin; let dy = ymax - ymin; const dmax = dx > dy ? dx : dy; const xmid = (xmax + xmin) * 0.5; const ymid = (ymax + ymin) * 0.5; const open = [ new Triangle( { __sentinel: true, x: xmid - 20 * dmax, y: ymid - dmax, }, { __sentinel: true, x: xmid, y: ymid + 20 * dmax, }, { __sentinel: true, x: xmid + 20 * dmax, y: ymid - dmax, } ), ]; const closed = []; const edges: any = []; let j; // Incrementally add each vertex to the mesh. i = vertices.length; while (i--) { // For each open triangle, check to see if the current point is // inside it's circumcircle. If it is, remove the triangle and add // it's edges to an edge list. edges.length = 0; j = open.length; while (j--) { // If this point is to the right of this triangle's circumcircle, // then this triangle should never get checked again. Remove it // from the open list, add it to the closed list, and skip. dx = vertices[i].x - open[j].x; if (dx > 0 && dx * dx > open[j].r) { closed.push(open[j]); open.splice(j, 1); continue; } // If not, skip this triangle. dy = vertices[i].y - open[j].y; if (dx * dx + dy * dy > open[j].r) { continue; } // Remove the triangle and add it's edges to the edge list. edges.push( open[j].a, open[j].b, open[j].b, open[j].c, open[j].c, open[j].a ); open.splice(j, 1); } // Remove any doubled edges. dedup(edges); // Add a new triangle for each edge. j = edges.length; while (j) { b = edges[--j]; a = edges[--j]; c = vertices[i]; // Avoid adding colinear triangles (which have error-prone // circumcircles) A = b.x - a.x; B = b.y - a.y; G = 2 * (A * (c.y - b.y) - B * (c.x - b.x)); if (Math.abs(G) > epsilon) { open.push(new Triangle(a, b, c)); } } } // Copy any remaining open triangles to the closed list, and then // remove any triangles that share a vertex with the supertriangle. Array.prototype.push.apply(closed, open); i = closed.length; while (i--) { if ( closed[i].a.__sentinel || closed[i].b.__sentinel || closed[i].c.__sentinel ) { closed.splice(i, 1); } } return closed; } export { Pt, Vertice, tin }; export default tin; ================================================ FILE: packages/turf-tin/package.json ================================================ { "name": "@turf/tin", "version": "7.3.4", "description": "Takes a set of points and creates a Triangulated Irregular Network.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "tin", "triangulate" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, "dependencies": { "@turf/helpers": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-tin/test/Points.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.833, 39.284, 25] }, "properties": { "name": "Location B", "category": "House", "elevation": 25 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.6, 39.984, 23] }, "properties": { "name": "Location A", "category": "Store", "elevation": 23 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.221, 39.125, 29] }, "properties": { "name": "Location C", "category": "Office", "elevation": 29 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.358, 39.987, 12] }, "properties": { "name": "Location A", "category": "Store", "elevation": 12 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.9221, 39.27, 11] }, "properties": { "name": "Location B", "category": "House", "elevation": 11 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.534, 39.123, 49] }, "properties": { "name": "Location C", "category": "Office", "elevation": 49 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.21, 39.12, 50] }, "properties": { "name": "Location A", "category": "Store", "elevation": 50 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.22, 39.33, 90] }, "properties": { "name": "Location B", "category": "House", "elevation": 90 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.44, 39.55, 22] }, "properties": { "name": "Location C", "category": "Office", "elevation": 22 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.77, 39.66, 99] }, "properties": { "name": "Location A", "category": "Store", "elevation": 99 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.44, 39.11, 55] }, "properties": { "name": "Location B", "category": "House", "elevation": 55 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.05, 39.92, 41] }, "properties": { "name": "Location C", "category": "Office", "elevation": 41 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.88, 39.98, 52] }, "properties": { "name": "Location A", "category": "Store", "elevation": 52 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.55, 39.55, 143] }, "properties": { "name": "Location B", "category": "House", "elevation": 143 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.33, 39.44, 76] }, "properties": { "name": "Location C", "category": "Office", "elevation": 76 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.56, 39.24, 18] }, "properties": { "name": "Location C", "category": "Office", "elevation": 18 } }, { "type": "Feature", "geometry": { "type": "Point", "coordinates": [-75.56, 39.36, 52] }, "properties": { "name": "Location C", "category": "Office", "elevation": 52 } } ] } ================================================ FILE: packages/turf-tin/test/Tin-z.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.9221, 39.27, 11], [-75.88, 39.98, 52], [-75.77, 39.66, 99], [-75.9221, 39.27, 11] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.833, 39.284, 25], [-75.9221, 39.27, 11], [-75.77, 39.66, 99], [-75.833, 39.284, 25] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.833, 39.284, 25], [-75.56, 39.36, 52], [-75.56, 39.24, 18], [-75.833, 39.284, 25] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.77, 39.66, 99], [-75.88, 39.98, 52], [-75.6, 39.984, 23], [-75.77, 39.66, 99] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.9221, 39.27, 11], [-75.833, 39.284, 25], [-75.534, 39.123, 49], [-75.9221, 39.27, 11] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.833, 39.284, 25], [-75.56, 39.24, 18], [-75.534, 39.123, 49], [-75.833, 39.284, 25] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.56, 39.36, 52], [-75.77, 39.66, 99], [-75.55, 39.55, 143], [-75.56, 39.36, 52] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.833, 39.284, 25], [-75.77, 39.66, 99], [-75.56, 39.36, 52], [-75.833, 39.284, 25] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.56, 39.36, 52], [-75.55, 39.55, 143], [-75.44, 39.55, 22], [-75.56, 39.36, 52] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.534, 39.123, 49], [-75.56, 39.24, 18], [-75.44, 39.11, 55], [-75.534, 39.123, 49] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.77, 39.66, 99], [-75.6, 39.984, 23], [-75.55, 39.55, 143], [-75.77, 39.66, 99] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.56, 39.36, 52], [-75.44, 39.55, 22], [-75.33, 39.44, 76], [-75.56, 39.36, 52] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.56, 39.24, 18], [-75.56, 39.36, 52], [-75.33, 39.44, 76], [-75.56, 39.24, 18] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.44, 39.55, 22], [-75.6, 39.984, 23], [-75.358, 39.987, 12], [-75.44, 39.55, 22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.55, 39.55, 143], [-75.6, 39.984, 23], [-75.44, 39.55, 22], [-75.55, 39.55, 143] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.44, 39.11, 55], [-75.33, 39.44, 76], [-75.22, 39.33, 90], [-75.44, 39.11, 55] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.44, 39.11, 55], [-75.56, 39.24, 18], [-75.33, 39.44, 76], [-75.44, 39.11, 55] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.221, 39.125, 29], [-75.22, 39.33, 90], [-75.21, 39.12, 50], [-75.221, 39.125, 29] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.44, 39.11, 55], [-75.221, 39.125, 29], [-75.21, 39.12, 50], [-75.44, 39.11, 55] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.221, 39.125, 29], [-75.44, 39.11, 55], [-75.22, 39.33, 90], [-75.221, 39.125, 29] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.33, 39.44, 76], [-75.44, 39.55, 22], [-75.05, 39.92, 41], [-75.33, 39.44, 76] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.44, 39.55, 22], [-75.358, 39.987, 12], [-75.05, 39.92, 41], [-75.44, 39.55, 22] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.22, 39.33, 90], [-75.33, 39.44, 76], [-75.05, 39.92, 41], [-75.22, 39.33, 90] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.21, 39.12, 50], [-75.22, 39.33, 90], [-75.05, 39.92, 41], [-75.21, 39.12, 50] ] ] } } ] } ================================================ FILE: packages/turf-tin/test/Tin.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "a": 11, "b": 52, "c": 99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.9221, 39.27], [-75.88, 39.98], [-75.77, 39.66], [-75.9221, 39.27] ] ] } }, { "type": "Feature", "properties": { "a": 25, "b": 11, "c": 99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.833, 39.284], [-75.9221, 39.27], [-75.77, 39.66], [-75.833, 39.284] ] ] } }, { "type": "Feature", "properties": { "a": 25, "b": 52, "c": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.833, 39.284], [-75.56, 39.36], [-75.56, 39.24], [-75.833, 39.284] ] ] } }, { "type": "Feature", "properties": { "a": 99, "b": 52, "c": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.77, 39.66], [-75.88, 39.98], [-75.6, 39.984], [-75.77, 39.66] ] ] } }, { "type": "Feature", "properties": { "a": 11, "b": 25, "c": 49 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.9221, 39.27], [-75.833, 39.284], [-75.534, 39.123], [-75.9221, 39.27] ] ] } }, { "type": "Feature", "properties": { "a": 25, "b": 18, "c": 49 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.833, 39.284], [-75.56, 39.24], [-75.534, 39.123], [-75.833, 39.284] ] ] } }, { "type": "Feature", "properties": { "a": 52, "b": 99, "c": 143 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.56, 39.36], [-75.77, 39.66], [-75.55, 39.55], [-75.56, 39.36] ] ] } }, { "type": "Feature", "properties": { "a": 25, "b": 99, "c": 52 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.833, 39.284], [-75.77, 39.66], [-75.56, 39.36], [-75.833, 39.284] ] ] } }, { "type": "Feature", "properties": { "a": 52, "b": 143, "c": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.56, 39.36], [-75.55, 39.55], [-75.44, 39.55], [-75.56, 39.36] ] ] } }, { "type": "Feature", "properties": { "a": 49, "b": 18, "c": 55 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.534, 39.123], [-75.56, 39.24], [-75.44, 39.11], [-75.534, 39.123] ] ] } }, { "type": "Feature", "properties": { "a": 99, "b": 23, "c": 143 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.77, 39.66], [-75.6, 39.984], [-75.55, 39.55], [-75.77, 39.66] ] ] } }, { "type": "Feature", "properties": { "a": 52, "b": 22, "c": 76 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.56, 39.36], [-75.44, 39.55], [-75.33, 39.44], [-75.56, 39.36] ] ] } }, { "type": "Feature", "properties": { "a": 18, "b": 52, "c": 76 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.56, 39.24], [-75.56, 39.36], [-75.33, 39.44], [-75.56, 39.24] ] ] } }, { "type": "Feature", "properties": { "a": 22, "b": 23, "c": 12 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.44, 39.55], [-75.6, 39.984], [-75.358, 39.987], [-75.44, 39.55] ] ] } }, { "type": "Feature", "properties": { "a": 143, "b": 23, "c": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.55, 39.55], [-75.6, 39.984], [-75.44, 39.55], [-75.55, 39.55] ] ] } }, { "type": "Feature", "properties": { "a": 55, "b": 76, "c": 90 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.44, 39.11], [-75.33, 39.44], [-75.22, 39.33], [-75.44, 39.11] ] ] } }, { "type": "Feature", "properties": { "a": 55, "b": 18, "c": 76 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.44, 39.11], [-75.56, 39.24], [-75.33, 39.44], [-75.44, 39.11] ] ] } }, { "type": "Feature", "properties": { "a": 29, "b": 90, "c": 50 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.221, 39.125], [-75.22, 39.33], [-75.21, 39.12], [-75.221, 39.125] ] ] } }, { "type": "Feature", "properties": { "a": 55, "b": 29, "c": 50 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.44, 39.11], [-75.221, 39.125], [-75.21, 39.12], [-75.44, 39.11] ] ] } }, { "type": "Feature", "properties": { "a": 29, "b": 55, "c": 90 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.221, 39.125], [-75.44, 39.11], [-75.22, 39.33], [-75.221, 39.125] ] ] } }, { "type": "Feature", "properties": { "a": 76, "b": 22, "c": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.33, 39.44], [-75.44, 39.55], [-75.05, 39.92], [-75.33, 39.44] ] ] } }, { "type": "Feature", "properties": { "a": 22, "b": 12, "c": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.44, 39.55], [-75.358, 39.987], [-75.05, 39.92], [-75.44, 39.55] ] ] } }, { "type": "Feature", "properties": { "a": 90, "b": 76, "c": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.22, 39.33], [-75.33, 39.44], [-75.05, 39.92], [-75.22, 39.33] ] ] } }, { "type": "Feature", "properties": { "a": 50, "b": 90, "c": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.21, 39.12], [-75.22, 39.33], [-75.05, 39.92], [-75.21, 39.12] ] ] } } ] } ================================================ FILE: packages/turf-tin/test.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { loadJsonFileSync } from "load-json-file"; import { tin } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const points = loadJsonFileSync(path.join(__dirname, "test", "Points.json")); test("tin - z property", (t) => { const expected = loadJsonFileSync(path.join(__dirname, "test", "Tin.json")); const tinned = tin(points, "elevation"); t.equal(tinned.features[0].geometry.type, "Polygon"); t.equal(tinned.features.length, 24); t.deepEqual(tinned, expected, "tinned polygons match"); if (process.env.REGEN) { fs.writeFileSync( path.join(__dirname, "test", "Tin.json"), JSON.stringify(tinned, null, 2) ); } t.end(); }); test("tin - z coordinate", (t) => { const expected = loadJsonFileSync(path.join(__dirname, "test", "Tin-z.json")); const tinned = tin(points); t.equal(tinned.features[0].geometry.type, "Polygon"); t.equal(tinned.features.length, 24); t.deepEqual(tinned, expected, "tinned polygons match"); if (process.env.REGEN) { fs.writeFileSync( path.join(__dirname, "test", "Tin-z.json"), JSON.stringify(tinned, null, 2) ); } t.end(); }); ================================================ FILE: packages/turf-tin/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-tin/types.ts ================================================ import { featureCollection, point } from "@turf/helpers"; import { tin } from "./index.js"; const points = featureCollection([ point([0, 0], { elevation: 20 }), point([10, 10], { elevation: 10 }), point([30, 30], { elevation: 50 }), ]); tin(points); tin(points, "elevation"); ================================================ FILE: packages/turf-transform-rotate/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-transform-rotate/README.md ================================================ # @turf/transform-rotate ## transformRotate Rotates any geojson Feature or Geometry of a specified angle, around its `centroid` or a given `pivot` point. ### Parameters * `geojson` **[GeoJSON][1]** object to be rotated * `angle` **[number][2]** of rotation in decimal degrees, positive clockwise * `options` **[Object][3]** Optional parameters (optional, default `{}`) * `options.pivot` **[Coord][4]** point around which the rotation will be performed (optional, default `'centroid'`) * `options.mutate` **[boolean][5]** allows GeoJSON input to be mutated (significant performance increase if true) (optional, default `false`) ### Examples ```javascript const poly = turf.polygon([[[0,29],[3.5,29],[2.5,32],[0,29]]]); const options = {pivot: [0, 25]}; const rotatedPoly = turf.transformRotate(poly, 10, options); //addToMap const addToMap = [poly, rotatedPoly]; rotatedPoly.properties = {stroke: '#F00', 'stroke-width': 4}; ``` Returns **[GeoJSON][1]** the rotated GeoJSON feature [1]: https://tools.ietf.org/html/rfc7946#section-3 [2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [4]: https://tools.ietf.org/html/rfc7946#section-3.1.1 [5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/transform-rotate ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-transform-rotate/bench.ts ================================================ import { Feature } from "geojson"; import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark, { Event } from "benchmark"; import { transformRotate as rotate } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename) as Feature, }; }); /** * Single Process Benchmark * * line: 3.145ms * multiLine: 0.148ms * multiPoint: 1.137ms * multiPolygon: 5.770ms * no-rotation: 0.009ms * point: 0.032ms * polygon-with-hole: 0.823ms * polygon: 0.045ms * z-coord: 0.053ms */ for (const { name, geojson } of fixtures) { const { angle, pivot } = geojson.properties || {}; console.time(name); rotate(geojson, angle, { pivot, mutate: true }); console.timeEnd(name); } /** * Benchmark Results * * line x 66,571 ops/sec ±2.07% (86 runs sampled) * multiLine x 136,950 ops/sec ±2.39% (87 runs sampled) * multiPoint x 190,062 ops/sec ±1.96% (85 runs sampled) * multiPolygon x 9,588 ops/sec ±0.92% (91 runs sampled) * no-rotation x 35,080,702 ops/sec ±1.17% (87 runs sampled) * point x 732,603 ops/sec ±1.75% (83 runs sampled) * polygon-with-hole x 20,217 ops/sec ±4.15% (83 runs sampled) * polygon x 198,680 ops/sec ±3.38% (81 runs sampled) * z-coord x 139,558 ops/sec ±1.61% (86 runs sampled) */ const suite = new Benchmark.Suite("turf-transform-rotate"); for (const { name, geojson } of fixtures) { const { angle, pivot } = geojson.properties || {}; suite.add(name, () => rotate(geojson, angle, { pivot, mutate: true })); } suite.on("cycle", (e: Event) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-transform-rotate/index.ts ================================================ import { GeoJSON, GeometryCollection } from "geojson"; import { centroid } from "@turf/centroid"; import { rhumbBearing } from "@turf/rhumb-bearing"; import { rhumbDistance } from "@turf/rhumb-distance"; import { rhumbDestination } from "@turf/rhumb-destination"; import { clone } from "@turf/clone"; import { coordEach } from "@turf/meta"; import { getCoords } from "@turf/invariant"; import { isObject, Coord } from "@turf/helpers"; /** * Rotates any geojson Feature or Geometry of a specified angle, around its `centroid` or a given `pivot` point. * * @function * @param {GeoJSON} geojson object to be rotated * @param {number} angle of rotation in decimal degrees, positive clockwise * @param {Object} [options={}] Optional parameters * @param {Coord} [options.pivot='centroid'] point around which the rotation will be performed * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance increase if true) * @returns {GeoJSON} the rotated GeoJSON feature * @example * const poly = turf.polygon([[[0,29],[3.5,29],[2.5,32],[0,29]]]); * const options = {pivot: [0, 25]}; * const rotatedPoly = turf.transformRotate(poly, 10, options); * * //addToMap * const addToMap = [poly, rotatedPoly]; * rotatedPoly.properties = {stroke: '#F00', 'stroke-width': 4}; */ function transformRotate( geojson: T, angle: number, options?: { pivot?: Coord; mutate?: boolean; } ): T { // Optional parameters options = options || {}; if (!isObject(options)) throw new Error("options is invalid"); const pivot = options.pivot; const mutate = options.mutate; // Input validation if (!geojson) throw new Error("geojson is required"); if (angle === undefined || angle === null || isNaN(angle)) throw new Error("angle is required"); // Shortcut no-rotation if (angle === 0) return geojson; // Use centroid of GeoJSON if pivot is not provided const pivotCoord = pivot ?? centroid(geojson); // Clone geojson to avoid side effects if (mutate === false || mutate === undefined) geojson = clone(geojson); // Rotate each coordinate coordEach(geojson, function (pointCoords) { const initialAngle = rhumbBearing(pivotCoord, pointCoords); const finalAngle = initialAngle + angle; const distance = rhumbDistance(pivotCoord, pointCoords); const newCoords = getCoords( rhumbDestination(pivotCoord, distance, finalAngle) ); pointCoords[0] = newCoords[0]; pointCoords[1] = newCoords[1]; }); return geojson; } export { transformRotate }; export default transformRotate; ================================================ FILE: packages/turf-transform-rotate/package.json ================================================ { "name": "@turf/transform-rotate", "version": "7.3.4", "description": "Rotates a geometry around its center or a given point.", "author": "Turf Authors", "contributors": [ "Stefano Borghi <@stebogit>", "Denis Carriere <@DenisCarriere>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "transform", "transformation", "rotate" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/centroid": "workspace:*", "@turf/clone": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@turf/rhumb-bearing": "workspace:*", "@turf/rhumb-destination": "workspace:*", "@turf/rhumb-distance": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-transform-rotate/test/in/line.geojson ================================================ { "type": "Feature", "properties": { "angle": 30 }, "geometry": { "type": "LineString", "coordinates": [ [11.259269714355469, 44.48450449695473], [11.268196105957031, 44.48866833139464], [11.272315979003906, 44.5063000997406], [11.286735534667969, 44.52343698529045], [11.306304931640625, 44.52515039667307], [11.325874328613281, 44.53298249265435], [11.347160339355469, 44.5302903284497], [11.37359619140625, 44.51878604321948], [11.381149291992186, 44.50948304524639], [11.381492614746094, 44.503606702401854], [11.392478942871094, 44.49185223953622], [11.406898498535156, 44.48548424944496] ] } } ================================================ FILE: packages/turf-transform-rotate/test/in/multiLine.geojson ================================================ { "type": "Feature", "properties": { "angle": 90, "pivot": [-98.9, 19.15] }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-99.2, 19.1], [-99.1, 19.17], [-99, 19.1] ], [ [-99.2, 19.16], [-99.1, 19.23], [-99, 19.16] ] ] } } ================================================ FILE: packages/turf-transform-rotate/test/in/multiPoint.geojson ================================================ { "type": "Feature", "properties": { "angle": -110 }, "geometry": { "type": "MultiPoint", "coordinates": [ [100.0, 0.0], [101.0, 1.0], [101.15, -0.86], [99.8, 1.8] ] } } ================================================ FILE: packages/turf-transform-rotate/test/in/multiPolygon.geojson ================================================ { "type": "Feature", "properties": { "angle": -35 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-80.83740234375, -33.75146241858857], [-80.8267593383789, -33.76316538009658], [-80.83036422729492, -33.77643631739436], [-80.79448699951172, -33.81181543283183], [-80.77629089355469, -33.8159515518711], [-80.76066970825195, -33.805254282102595], [-80.75637817382812, -33.76587681391894], [-80.77457427978516, -33.723197462817026], [-80.80615997314453, -33.724054113439884], [-80.83740234375, -33.75146241858857] ] ], [ [ [-78.87805938720703, -33.60575555447342], [-78.88629913330078, -33.61318971884082], [-78.87943267822264, -33.63034303571294], [-78.89350891113281, -33.64520648119226], [-78.90380859375, -33.64720713369291], [-78.90827178955078, -33.64434904445886], [-78.9151382446289, -33.64606390938584], [-78.92166137695312, -33.65206566761678], [-78.92303466796875, -33.65492350063952], [-78.93024444580078, -33.65749546922024], [-78.94020080566406, -33.66778257479216], [-78.93573760986328, -33.67092561169521], [-78.93882751464844, -33.674354248232504], [-78.94191741943358, -33.67292566628718], [-78.94878387451172, -33.67692563592954], [-78.94123077392578, -33.682353868548184], [-78.93539428710938, -33.68321092658006], [-78.93814086914062, -33.678639851675534], [-78.93848419189453, -33.675782806445994], [-78.93299102783203, -33.671497060610534], [-78.92406463623047, -33.671211336627486], [-78.92131805419922, -33.6652109137176], [-78.92406463623047, -33.66178191269289], [-78.914794921875, -33.65578083204094], [-78.90758514404297, -33.662924928220384], [-78.90449523925781, -33.660353121928814], [-78.90552520751953, -33.657209698729595], [-78.89934539794922, -33.652637241813174], [-78.89213562011719, -33.66006736092875], [-78.88458251953125, -33.65606660727672], [-78.87428283691406, -33.644920669896656], [-78.8656997680664, -33.64520648119226], [-78.86089324951172, -33.66549665763364], [-78.82793426513672, -33.66092464108171], [-78.78398895263672, -33.6794969467326], [-78.76922607421875, -33.670639885813706], [-78.7771224975586, -33.662067667998414], [-78.77918243408203, -33.655495055856136], [-78.79051208496094, -33.641490860339054], [-78.81351470947266, -33.64063338660099], [-78.81729125976561, -33.64434904445886], [-78.83068084716797, -33.640919212129155], [-78.83033752441406, -33.63148646875166], [-78.84819030761717, -33.618621971969276], [-78.848876953125, -33.61347563543629], [-78.86295318603516, -33.6071852512562], [-78.87805938720703, -33.60575555447342] ] ], [ [ [-78.95161628723145, -33.69528025294664], [-78.95530700683594, -33.70006466462807], [-78.9521312713623, -33.70163560737423], [-78.9506721496582, -33.700278885784996], [-78.94861221313477, -33.701207171292374], [-78.94972801208496, -33.70306371221516], [-78.95075798034668, -33.70284949800254], [-78.95178794860838, -33.7045631967461], [-78.9480972290039, -33.70784769044128], [-78.94947052001952, -33.70934709145684], [-78.94303321838379, -33.71377374172037], [-78.93917083740234, -33.71363095011231], [-78.93771171569824, -33.71455909132016], [-78.93874168395996, -33.7163439500602], [-78.93659591674805, -33.714987460801574], [-78.93685340881348, -33.7134881582668], [-78.93479347229004, -33.714916066036416], [-78.93410682678223, -33.71355955421924], [-78.93075942993164, -33.71355955421924], [-78.92475128173828, -33.715201644740844], [-78.92380714416502, -33.714773276327996], [-78.92483711242676, -33.71377374172037], [-78.92706871032715, -33.712988384937574], [-78.92998695373535, -33.712845592023534], [-78.92998695373535, -33.71170324016297], [-78.93118858337402, -33.70970408784028], [-78.93393516540527, -33.70998968387856], [-78.93625259399414, -33.70791909108323], [-78.9378833770752, -33.708276093402596], [-78.93925666809082, -33.7064196651371], [-78.9411449432373, -33.706205459293635], [-78.94020080566406, -33.70506301910626], [-78.94140243530273, -33.704206178993886], [-78.94037246704102, -33.70263528325574], [-78.94208908081055, -33.69792242367998], [-78.94320487976074, -33.69742255977288], [-78.94569396972656, -33.699350590247136], [-78.94929885864258, -33.69799383257217], [-78.94981384277342, -33.69649423337286], [-78.9492130279541, -33.695922950602935], [-78.95015716552734, -33.69513743059241], [-78.95092964172363, -33.69578012931697], [-78.95161628723145, -33.69528025294664] ] ] ] } } ================================================ FILE: packages/turf-transform-rotate/test/in/no-rotation.geojson ================================================ { "type": "Feature", "properties": { "angle": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [128.84, -25.76], [128.18, -25.6], [127.96, -25.52], [127.88, -25.52], [127.7, -25.6], [127.26, -25.79], [126.6, -26.11], [126.16, -26.78], [126.12, -27.68], [126.21, -28.42], [126.69, -29.49], [127.74, -29.8], [128.8, -29.72], [129.41, -29.03], [129.72, -27.95], [129.68, -27.21], [129.33, -26.23], [128.84, -25.76] ], [ [128.45, -27.44], [128.32, -26.94], [127.7, -26.82], [127.35, -27.05], [127.17, -27.8], [127.57, -28.22], [128.1, -28.42], [128.49, -27.8], [128.45, -27.44] ] ] } } ================================================ FILE: packages/turf-transform-rotate/test/in/point.geojson ================================================ { "type": "Feature", "properties": { "angle": 80, "pivot": [-75.6, 45.3] }, "geometry": { "type": "Point", "coordinates": [-75.69926351308823, 45.43145021122502] } } ================================================ FILE: packages/turf-transform-rotate/test/in/polygon-fiji.geojson ================================================ { "type": "Feature", "properties": { "angle": 90 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-179.6319580078125, -16.762467717941593], [-179.659423828125, -16.64671805097192], [-179.725341796875, -16.578287608637478], [-179.99450683593747, -16.641455036937753], [-180.1702880859375, -16.935960102864705], [-180.1373291015625, -17.056784609942543], [-179.93408203125, -17.00951473208515], [-179.6319580078125, -16.762467717941593] ] ], [ [ [-180.06591796875, -16.509832826905836], [-179.79125976562497, -16.093320185359257], [-180.0933837890625, -16.0352548623504], [-180.7086181640625, -16.0774858690887], [-181.63146972656247, -16.525632239869275], [-181.6644287109375, -16.836089974560213], [-181.4996337890625, -17.06728740376787], [-181.219482421875, -17.06728740376787], [-180.9503173828125, -16.956978651248072], [-180.59326171875, -16.914939206301646], [-180.1922607421875, -16.867633616803836], [-180.06591796875, -16.509832826905836] ] ] ] } } ================================================ FILE: packages/turf-transform-rotate/test/in/polygon-resolute-bay.geojson ================================================ { "type": "Feature", "properties": { "angle": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.174560546875, 75.60953172351893], [-96.03149414062499, 75.4282153667069], [-96.492919921875, 75.16048677152294], [-96.6357421875, 75.03617629075062], [-95.723876953125, 74.80466599405533], [-94.910888671875, 74.66582807452669], [-94.317626953125, 74.62218784846145], [-93.49365234375, 74.66292249033842], [-93.438720703125, 74.86788912917916], [-93.515625, 75.03901279805076], [-93.55957031249999, 75.3060980061604], [-94.163818359375, 75.52189820596192], [-94.449462890625, 75.60953172351893], [-94.82299804687499, 75.63681056594325], [-95.174560546875, 75.60953172351893] ], [ [-95.108642578125, 75.40054889588245], [-95.6634521484375, 75.22926698530169], [-95.614013671875, 75.01062406678055], [-94.647216796875, 74.84061980605131], [-94.0264892578125, 74.83774656082585], [-94.0155029296875, 75.17876503868581], [-94.5867919921875, 75.3700564253908], [-95.108642578125, 75.40054889588245] ] ] } } ================================================ FILE: packages/turf-transform-rotate/test/in/polygon-with-hole.geojson ================================================ { "type": "Feature", "properties": { "angle": 120, "name": "Bled Lake", "area": "1.45", "area-unit": "km2", "volume": "0.0257", "volume-unit": "km3", "picture": "https://en.wikipedia.org/wiki/Lake_Bled#/media/File:Lake_Bled_from_the_Mountain.jpg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [14.086918830871582, 46.368163916782294], [14.085588455200194, 46.3670386292829], [14.086060523986816, 46.36644636339309], [14.08374309539795, 46.36366262769442], [14.081940650939941, 46.362714940623896], [14.082798957824707, 46.36155992478001], [14.084773063659668, 46.36188570095187], [14.08473014831543, 46.36016795016414], [14.085588455200194, 46.35895364547403], [14.089837074279785, 46.3583020562222], [14.090909957885742, 46.35856861640076], [14.091768264770508, 46.35936828913414], [14.093270301818846, 46.35996063176163], [14.09816265106201, 46.35978292964766], [14.099278450012207, 46.36022718384896], [14.098892211914062, 46.36215224364764], [14.106316566467285, 46.36499528482401], [14.108591079711914, 46.36840081645984], [14.106273651123047, 46.36958529943602], [14.103312492370605, 46.36937801676938], [14.09996509552002, 46.36854887823657], [14.097347259521484, 46.368163916782294], [14.095587730407715, 46.36801585396206], [14.094429016113281, 46.36733475981976], [14.092626571655273, 46.36724592082726], [14.086918830871582, 46.368163916782294] ], [ [14.089826345443726, 46.36308513284238], [14.08948302268982, 46.362611286353214], [14.089547395706177, 46.362026376425554], [14.089912176132202, 46.36157473282996], [14.090116024017334, 46.36154511672605], [14.09022331237793, 46.36160434891784], [14.090287685394287, 46.36172281310876], [14.090502262115479, 46.36203378038783], [14.090588092803955, 46.36238916939662], [14.090534448623657, 46.36260388246917], [14.089933633804321, 46.36306292138001], [14.089826345443726, 46.36308513284238] ] ] } } ================================================ FILE: packages/turf-transform-rotate/test/in/polygon.geojson ================================================ { "type": "Feature", "properties": { "angle": 200, "pivot": [2.48291015625, 27.819644755099446] }, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 29], [3.5, 29], [2.5, 32], [0, 29] ] ] } } ================================================ FILE: packages/turf-transform-rotate/test/in/z-coord.geojson ================================================ { "type": "Feature", "properties": { "angle": 50 }, "geometry": { "type": "Polygon", "coordinates": [ [ [121.46484375, -23.88583769986199, 10], [125.5078125, -27.488781168937983, 10], [129.638671875, -25.562265014427492, 10], [129.2431640625, -22.06527806776582, 10], [124.93652343749999, -20.385825381874263, 10], [121.46484375, -23.88583769986199, 10] ] ] } } ================================================ FILE: packages/turf-transform-rotate/test/out/line.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "angle": 30, "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "LineString", "coordinates": [ [11.252453, 44.514161], [11.263107, 44.514583], [11.27904, 44.52838], [11.30355, 44.538077], [11.321702, 44.532583], [11.344144, 44.532389], [11.360688, 44.522469], [11.37551, 44.50308], [11.375528, 44.492329], [11.371706, 44.487117], [11.37298, 44.473017], [11.381001, 44.462359] ] } }, { "type": "Feature", "properties": { "angle": 30 }, "geometry": { "type": "LineString", "coordinates": [ [11.259269714355469, 44.48450449695473], [11.268196105957031, 44.48866833139464], [11.272315979003906, 44.5063000997406], [11.286735534667969, 44.52343698529045], [11.306304931640625, 44.52515039667307], [11.325874328613281, 44.53298249265435], [11.347160339355469, 44.5302903284497], [11.37359619140625, 44.51878604321948], [11.381149291992186, 44.50948304524639], [11.381492614746094, 44.503606702401854], [11.392478942871094, 44.49185223953622], [11.406898498535156, 44.48548424944496] ] } }, { "type": "Feature", "properties": { "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [11.333456039428711, 44.50837878425054] } } ] } ================================================ FILE: packages/turf-transform-rotate/test/out/multiLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "angle": 90, "pivot": [-98.9, 19.15], "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-98.952975, 19.433442], [-98.878816, 19.338921], [-98.952944, 19.244481] ], [ [-98.889405, 19.43339], [-98.815265, 19.338887], [-98.889411, 19.244463] ] ] } }, { "type": "Feature", "properties": { "angle": 90, "pivot": [-98.9, 19.15] }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-99.2, 19.1], [-99.1, 19.17], [-99, 19.1] ], [ [-99.2, 19.16], [-99.1, 19.23], [-99, 19.16] ] ] } }, { "type": "Feature", "properties": { "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [-98.9, 19.15] } } ] } ================================================ FILE: packages/turf-transform-rotate/test/out/multiPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "angle": -110, "marker-color": "#F00", "marker-symbol": "star" }, "geometry": { "type": "MultiPoint", "coordinates": [ [101.109995, 0.192785], [99.828247, 0.79041], [101.524987, 1.567546], [99.486875, -0.610653] ] } }, { "type": "Feature", "properties": { "angle": -110 }, "geometry": { "type": "MultiPoint", "coordinates": [ [100, 0], [101, 1], [101.15, -0.86], [99.8, 1.8] ] } }, { "type": "Feature", "properties": { "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [100.4875, 0.485] } } ] } ================================================ FILE: packages/turf-transform-rotate/test/out/multiPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "angle": -35, "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-80.483378, -34.57529], [-80.466447, -34.579743], [-80.460209, -34.592269], [-80.405962, -34.603968], [-80.388046, -34.598658], [-80.382565, -34.582496], [-80.406368, -34.548376], [-80.451046, -34.522296], [-80.476572, -34.538065], [-80.483378, -34.57529] ] ], [ [ [-78.972099, -33.521085], [-78.973726, -33.531113], [-78.956299, -33.541895], [-78.957586, -33.560799], [-78.964638, -33.567356], [-78.970259, -33.567144], [-78.974698, -33.571827], [-78.975904, -33.57986], [-78.97506, -33.582858], [-78.97919, -33.588408], [-78.980255, -33.601591], [-78.974436, -33.602037], [-78.974604, -33.606321], [-78.978117, -33.606625], [-78.980982, -33.613181], [-78.97106, -33.614025], [-78.965693, -33.611941], [-78.97109, -33.609506], [-78.973339, -33.607328], [-78.971795, -33.601194], [-78.964686, -33.596699], [-78.96657, -33.59047], [-78.97118, -33.588971], [-78.967726, -33.579627], [-78.956905, -33.582042], [-78.956147, -33.578459], [-78.959155, -33.576374], [-78.957246, -33.569676], [-78.946229, -33.572325], [-78.942803, -33.56544], [-78.942049, -33.551387], [-78.934829, -33.547524], [-78.916926, -33.561862], [-78.89311, -33.542382], [-78.84438, -33.536635], [-78.838404, -33.522326], [-78.850762, -33.519065], [-78.85697, -33.514659], [-78.875875, -33.508584], [-78.895281, -33.518862], [-78.895813, -33.523712], [-78.909128, -33.527291], [-78.915339, -33.519394], [-78.9388, -33.517371], [-78.942904, -33.513479], [-78.958752, -33.515044], [-78.972099, -33.521085] ] ], [ [ [-78.970655, -33.629575], [-78.97038, -33.635257], [-78.966698, -33.635029], [-78.966438, -33.633221], [-78.964113, -33.632998], [-78.963747, -33.635052], [-78.964737, -33.635368], [-78.9644, -33.637264], [-78.959116, -33.638195], [-78.959206, -33.640079], [-78.950887, -33.640635], [-78.947825, -33.638675], [-78.945991, -33.638739], [-78.945604, -33.640694], [-78.944783, -33.638558], [-78.946026, -33.637452], [-78.943357, -33.637639], [-78.943729, -33.6362], [-78.94099, -33.634603], [-78.934942, -33.633081], [-78.934464, -33.63228], [-78.935996, -33.631952], [-78.938363, -33.632373], [-78.94085, -33.633649], [-78.941637, -33.632713], [-78.943998, -33.631648], [-78.946049, -33.633192], [-78.949372, -33.632601], [-78.950461, -33.633672], [-78.952864, -33.632806], [-78.954557, -33.633531], [-78.954571, -33.632144], [-78.956145, -33.632016], [-78.956385, -33.630237], [-78.961037, -33.627193], [-78.962295, -33.627316], [-78.963003, -33.630084], [-78.966889, -33.630693], [-78.968344, -33.62971], [-78.968245, -33.628955], [-78.969559, -33.628761], [-78.969749, -33.629657], [-78.970655, -33.629575] ] ] ] } }, { "type": "Feature", "properties": { "angle": -35 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-80.83740234375, -33.75146241858857], [-80.8267593383789, -33.76316538009658], [-80.83036422729492, -33.77643631739436], [-80.79448699951172, -33.81181543283183], [-80.77629089355469, -33.8159515518711], [-80.76066970825195, -33.805254282102595], [-80.75637817382812, -33.76587681391894], [-80.77457427978516, -33.723197462817026], [-80.80615997314453, -33.724054113439884], [-80.83740234375, -33.75146241858857] ] ], [ [ [-78.87805938720703, -33.60575555447342], [-78.88629913330078, -33.61318971884082], [-78.87943267822264, -33.63034303571294], [-78.89350891113281, -33.64520648119226], [-78.90380859375, -33.64720713369291], [-78.90827178955078, -33.64434904445886], [-78.9151382446289, -33.64606390938584], [-78.92166137695312, -33.65206566761678], [-78.92303466796875, -33.65492350063952], [-78.93024444580078, -33.65749546922024], [-78.94020080566406, -33.66778257479216], [-78.93573760986328, -33.67092561169521], [-78.93882751464844, -33.674354248232504], [-78.94191741943358, -33.67292566628718], [-78.94878387451172, -33.67692563592954], [-78.94123077392578, -33.682353868548184], [-78.93539428710938, -33.68321092658006], [-78.93814086914062, -33.678639851675534], [-78.93848419189453, -33.675782806445994], [-78.93299102783203, -33.671497060610534], [-78.92406463623047, -33.671211336627486], [-78.92131805419922, -33.6652109137176], [-78.92406463623047, -33.66178191269289], [-78.914794921875, -33.65578083204094], [-78.90758514404297, -33.662924928220384], [-78.90449523925781, -33.660353121928814], [-78.90552520751953, -33.657209698729595], [-78.89934539794922, -33.652637241813174], [-78.89213562011719, -33.66006736092875], [-78.88458251953125, -33.65606660727672], [-78.87428283691406, -33.644920669896656], [-78.8656997680664, -33.64520648119226], [-78.86089324951172, -33.66549665763364], [-78.82793426513672, -33.66092464108171], [-78.78398895263672, -33.6794969467326], [-78.76922607421875, -33.670639885813706], [-78.7771224975586, -33.662067667998414], [-78.77918243408203, -33.655495055856136], [-78.79051208496094, -33.641490860339054], [-78.81351470947266, -33.64063338660099], [-78.81729125976561, -33.64434904445886], [-78.83068084716797, -33.640919212129155], [-78.83033752441406, -33.63148646875166], [-78.84819030761717, -33.618621971969276], [-78.848876953125, -33.61347563543629], [-78.86295318603516, -33.6071852512562], [-78.87805938720703, -33.60575555447342] ] ], [ [ [-78.95161628723145, -33.69528025294664], [-78.95530700683594, -33.70006466462807], [-78.9521312713623, -33.70163560737423], [-78.9506721496582, -33.700278885784996], [-78.94861221313477, -33.701207171292374], [-78.94972801208496, -33.70306371221516], [-78.95075798034668, -33.70284949800254], [-78.95178794860838, -33.7045631967461], [-78.9480972290039, -33.70784769044128], [-78.94947052001952, -33.70934709145684], [-78.94303321838379, -33.71377374172037], [-78.93917083740234, -33.71363095011231], [-78.93771171569824, -33.71455909132016], [-78.93874168395996, -33.7163439500602], [-78.93659591674805, -33.714987460801574], [-78.93685340881348, -33.7134881582668], [-78.93479347229004, -33.714916066036416], [-78.93410682678223, -33.71355955421924], [-78.93075942993164, -33.71355955421924], [-78.92475128173828, -33.715201644740844], [-78.92380714416502, -33.714773276327996], [-78.92483711242676, -33.71377374172037], [-78.92706871032715, -33.712988384937574], [-78.92998695373535, -33.712845592023534], [-78.92998695373535, -33.71170324016297], [-78.93118858337402, -33.70970408784028], [-78.93393516540527, -33.70998968387856], [-78.93625259399414, -33.70791909108323], [-78.9378833770752, -33.708276093402596], [-78.93925666809082, -33.7064196651371], [-78.9411449432373, -33.706205459293635], [-78.94020080566406, -33.70506301910626], [-78.94140243530273, -33.704206178993886], [-78.94037246704102, -33.70263528325574], [-78.94208908081055, -33.69792242367998], [-78.94320487976074, -33.69742255977288], [-78.94569396972656, -33.699350590247136], [-78.94929885864258, -33.69799383257217], [-78.94981384277342, -33.69649423337286], [-78.9492130279541, -33.695922950602935], [-78.95015716552734, -33.69513743059241], [-78.95092964172363, -33.69578012931697], [-78.95161628723145, -33.69528025294664] ] ] ] } }, { "type": "Feature", "properties": { "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [-79.08634303771343, -33.68749020845278] } } ] } ================================================ FILE: packages/turf-transform-rotate/test/out/no-rotation.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "angle": 0, "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [128.84, -25.76], [128.18, -25.6], [127.96, -25.52], [127.88, -25.52], [127.7, -25.6], [127.26, -25.79], [126.6, -26.11], [126.16, -26.78], [126.12, -27.68], [126.21, -28.42], [126.69, -29.49], [127.74, -29.8], [128.8, -29.72], [129.41, -29.03], [129.72, -27.95], [129.68, -27.21], [129.33, -26.23], [128.84, -25.76] ], [ [128.45, -27.44], [128.32, -26.94], [127.7, -26.82], [127.35, -27.05], [127.17, -27.8], [127.57, -28.22], [128.1, -28.42], [128.49, -27.8], [128.45, -27.44] ] ] } }, { "type": "Feature", "properties": { "angle": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [128.84, -25.76], [128.18, -25.6], [127.96, -25.52], [127.88, -25.52], [127.7, -25.6], [127.26, -25.79], [126.6, -26.11], [126.16, -26.78], [126.12, -27.68], [126.21, -28.42], [126.69, -29.49], [127.74, -29.8], [128.8, -29.72], [129.41, -29.03], [129.72, -27.95], [129.68, -27.21], [129.33, -26.23], [128.84, -25.76] ], [ [128.45, -27.44], [128.32, -26.94], [127.7, -26.82], [127.35, -27.05], [127.17, -27.8], [127.57, -28.22], [128.1, -28.42], [128.49, -27.8], [128.45, -27.44] ] ] } }, { "type": "Feature", "properties": { "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [127.89720000000001, -27.307999999999993] } } ] } ================================================ FILE: packages/turf-transform-rotate/test/out/point.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "angle": 80, "pivot": [-75.6, 45.3], "marker-color": "#F00", "marker-symbol": "star" }, "geometry": { "type": "Point", "coordinates": [-75.433041, 45.391507] } }, { "type": "Feature", "properties": { "angle": 80, "pivot": [-75.6, 45.3] }, "geometry": { "type": "Point", "coordinates": [-75.69926351308823, 45.43145021122502] } }, { "type": "Feature", "properties": { "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [-75.6, 45.3] } } ] } ================================================ FILE: packages/turf-transform-rotate/test/out/polygon-fiji.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "angle": 90, "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-180.492063, -17.459212], [-180.370976, -17.433132], [-180.299414, -17.370105], [-180.365522, -17.112142], [-180.673219, -16.943559], [-180.799476, -16.97502], [-180.750256, -17.169571], [-180.492063, -17.459212] ] ], [ [ [-180.22799, -17.04385], [-179.792297, -17.307707], [-179.732114, -17.017918], [-179.777245, -16.427649], [-180.245198, -15.543629], [-180.56836, -15.51301], [-180.809159, -15.671427], [-180.809418, -15.939503], [-180.694654, -16.196919], [-180.651019, -16.538667], [-180.601828, -16.922566], [-180.22799, -17.04385] ] ] ] } }, { "type": "Feature", "properties": { "angle": 90 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-179.6319580078125, -16.762467717941593], [-179.659423828125, -16.64671805097192], [-179.725341796875, -16.578287608637478], [-179.99450683593747, -16.641455036937753], [-180.1702880859375, -16.935960102864705], [-180.1373291015625, -17.056784609942543], [-179.93408203125, -17.00951473208515], [-179.6319580078125, -16.762467717941593] ] ], [ [ [-180.06591796875, -16.509832826905836], [-179.79125976562497, -16.093320185359257], [-180.0933837890625, -16.0352548623504], [-180.7086181640625, -16.0774858690887], [-181.63146972656247, -16.525632239869275], [-181.6644287109375, -16.836089974560213], [-181.4996337890625, -17.06728740376787], [-181.219482421875, -17.06728740376787], [-180.9503173828125, -16.956978651248072], [-180.59326171875, -16.914939206301646], [-180.1922607421875, -16.867633616803836], [-180.06591796875, -16.509832826905836] ] ] ] } }, { "type": "Feature", "properties": { "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [-180.42572021484375, -16.69905167218912] } } ] } ================================================ FILE: packages/turf-transform-rotate/test/out/polygon-resolute-bay.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "angle": 45, "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-93.733309, 75.540938], [-94.849869, 75.567104], [-95.933141, 75.46343], [-96.383707, 75.402789], [-96.362684, 75.074432], [-96.154, 74.827292], [-95.846124, 74.687046], [-95.151349, 74.564184], [-94.563287, 74.700624], [-94.154507, 74.836985], [-93.455303, 75.035786], [-93.27606, 75.298173], [-93.228527, 75.411469], [-93.411057, 75.497447], [-93.733309, 75.540938] ], [ [-94.274994, 75.381808], [-95.14635, 75.361361], [-95.717624, 75.198903], [-95.491872, 74.902463], [-95.058838, 74.786731], [-94.122584, 75.027407], [-93.993843, 75.266376], [-94.274994, 75.381808] ] ] } }, { "type": "Feature", "properties": { "angle": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.174560546875, 75.60953172351893], [-96.03149414062499, 75.4282153667069], [-96.492919921875, 75.16048677152294], [-96.6357421875, 75.03617629075062], [-95.723876953125, 74.80466599405533], [-94.910888671875, 74.66582807452669], [-94.317626953125, 74.62218784846145], [-93.49365234375, 74.66292249033842], [-93.438720703125, 74.86788912917916], [-93.515625, 75.03901279805076], [-93.55957031249999, 75.3060980061604], [-94.163818359375, 75.52189820596192], [-94.449462890625, 75.60953172351893], [-94.82299804687499, 75.63681056594325], [-95.174560546875, 75.60953172351893] ], [ [-95.108642578125, 75.40054889588245], [-95.6634521484375, 75.22926698530169], [-95.614013671875, 75.01062406678055], [-94.647216796875, 74.84061980605131], [-94.0264892578125, 74.83774656082585], [-94.0155029296875, 75.17876503868581], [-94.5867919921875, 75.3700564253908], [-95.108642578125, 75.40054889588245] ] ] } }, { "type": "Feature", "properties": { "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [-94.78062220982143, 75.13518489369591] } } ] } ================================================ FILE: packages/turf-transform-rotate/test/out/polygon-with-hole.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "angle": 120, "name": "Bled Lake", "area": "1.45", "area-unit": "km2", "volume": "0.0257", "volume-unit": "km3", "picture": "https://en.wikipedia.org/wiki/Lake_Bled#/media/File:Lake_Bled_from_the_Mountain.jpg", "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [14.100752, 46.364285], [14.100005, 46.365643], [14.099026, 46.365657], [14.096691, 46.368434], [14.096403, 46.369985], [14.094524, 46.37005], [14.093946, 46.368707], [14.091812, 46.369592], [14.089859, 46.369686], [14.086916, 46.367472], [14.086714, 46.366698], [14.087289, 46.365785], [14.087281, 46.364591], [14.084612, 46.361756], [14.084612, 46.360867], [14.087221, 46.360136], [14.087077, 46.354277], [14.090214, 46.351215], [14.092859, 46.352008], [14.094079, 46.353881], [14.094712, 46.356296], [14.095538, 46.358053], [14.096232, 46.359179], [14.095956, 46.360212], [14.096746, 46.361333], [14.100752, 46.364285] ], [ [14.092924, 46.365087], [14.092501, 46.365529], [14.091735, 46.365783], [14.090986, 46.365791], [14.090847, 46.365684], [14.090868, 46.36559], [14.090984, 46.365493], [14.091267, 46.365209], [14.09167, 46.36498], [14.091966, 46.364905], [14.092843, 46.365034], [14.092924, 46.365087] ] ] } }, { "type": "Feature", "properties": { "angle": 120, "name": "Bled Lake", "area": "1.45", "area-unit": "km2", "volume": "0.0257", "volume-unit": "km3", "picture": "https://en.wikipedia.org/wiki/Lake_Bled#/media/File:Lake_Bled_from_the_Mountain.jpg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [14.086918830871582, 46.368163916782294], [14.085588455200194, 46.3670386292829], [14.086060523986816, 46.36644636339309], [14.08374309539795, 46.36366262769442], [14.081940650939941, 46.362714940623896], [14.082798957824707, 46.36155992478001], [14.084773063659668, 46.36188570095187], [14.08473014831543, 46.36016795016414], [14.085588455200194, 46.35895364547403], [14.089837074279785, 46.3583020562222], [14.090909957885742, 46.35856861640076], [14.091768264770508, 46.35936828913414], [14.093270301818846, 46.35996063176163], [14.09816265106201, 46.35978292964766], [14.099278450012207, 46.36022718384896], [14.098892211914062, 46.36215224364764], [14.106316566467285, 46.36499528482401], [14.108591079711914, 46.36840081645984], [14.106273651123047, 46.36958529943602], [14.103312492370605, 46.36937801676938], [14.09996509552002, 46.36854887823657], [14.097347259521484, 46.368163916782294], [14.095587730407715, 46.36801585396206], [14.094429016113281, 46.36733475981976], [14.092626571655273, 46.36724592082726], [14.086918830871582, 46.368163916782294] ], [ [14.089826345443726, 46.36308513284238], [14.08948302268982, 46.362611286353214], [14.089547395706177, 46.362026376425554], [14.089912176132202, 46.36157473282996], [14.090116024017334, 46.36154511672605], [14.09022331237793, 46.36160434891784], [14.090287685394287, 46.36172281310876], [14.090502262115479, 46.36203378038783], [14.090588092803955, 46.36238916939662], [14.090534448623657, 46.36260388246917], [14.089933633804321, 46.36306292138001], [14.089826345443726, 46.36308513284238] ] ] } }, { "type": "Feature", "properties": { "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [14.092212915420532, 46.36346899882679] } } ] } ================================================ FILE: packages/turf-transform-rotate/test/out/polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "angle": 200, "pivot": [2.48291015625, 27.819644755099446], "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [4.331318, 25.963562], [1.0811, 27.016436], [0.878141, 23.89646], [4.331318, 25.963562] ] ] } }, { "type": "Feature", "properties": { "angle": 200, "pivot": [2.48291015625, 27.819644755099446] }, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 29], [3.5, 29], [2.5, 32], [0, 29] ] ] } }, { "type": "Feature", "properties": { "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [2.48291015625, 27.819644755099446] } } ] } ================================================ FILE: packages/turf-transform-rotate/test/out/z-coord.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "angle": 50, "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [123.17066, -20.595392, 10], [122.695301, -25.749925, 10], [126.980874, -27.382228, 10], [129.68694, -24.888351, 10], [128.263897, -20.766401, 10], [123.17066, -20.595392, 10] ] ] } }, { "type": "Feature", "properties": { "angle": 50 }, "geometry": { "type": "Polygon", "coordinates": [ [ [121.46484375, -23.88583769986199, 10], [125.5078125, -27.488781168937983, 10], [129.638671875, -25.562265014427492, 10], [129.2431640625, -22.06527806776582, 10], [124.93652343749999, -20.385825381874263, 10], [121.46484375, -23.88583769986199, 10] ] ] } }, { "type": "Feature", "properties": { "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [126.158203125, -23.87759746657351] } } ] } ================================================ FILE: packages/turf-transform-rotate/test.ts ================================================ import { Feature, GeoJSON, GeometryCollection } from "geojson"; import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { centroid } from "@turf/centroid"; import { truncate } from "@turf/truncate"; import { getCoord } from "@turf/invariant"; import { point, lineString, featureCollection, geometryCollection, Coord, } from "@turf/helpers"; import { transformRotate as rotate } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename) as Feature, }; }); test("rotate", (t) => { for (const { filename, name, geojson } of fixtures) { const { angle, pivot } = geojson.properties || {}; const rotated = rotate(geojson, angle, { pivot: pivot }); const result = featureCollection([ colorize(truncate(rotated, { precision: 6, coordinates: 3 })), geojson, makePivot(pivot, geojson), ]); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, result); t.deepEqual(result, loadJsonFileSync(directories.out + filename), name); } t.end(); }); test("rotate -- throws", (t) => { const line = lineString([ [10, 10], [12, 15], ]); // @ts-expect-error testing JS runtime for mis-typed option t.throws(() => rotate(null, 100), /geojson is required/, "missing geojson"); // @ts-expect-error testing JS runtime for mis-typed option t.throws(() => rotate(line, null), /angle is required/, "missing angle"); t.throws( // @ts-expect-error testing JS runtime for mis-typed option () => rotate(line, 56, { pivot: "notApoint" }), /coord must be GeoJSON Point or an Array of numbers/, "coord must be GeoJSON Point or an Array of numbers" ); t.end(); }); test("rotate -- mutated input", (t) => { const line = lineString([ [10, 10], [12, 15], ]); const lineBefore = JSON.parse(JSON.stringify(line)); rotate(line, 100); t.deepEqual(line, lineBefore, "input should NOT be mutated"); rotate(line, 100, { mutate: true }); t.deepEqual( truncate(line, { precision: 1 }), lineString([ [8.6, 13.9], [13.3, 11.1], ]), "input should be mutated" ); t.end(); }); test("rotate -- geometry support", (t) => { const line = lineString([ [10, 10], [12, 15], ]); const pt = point([10, 10]); t.assert( rotate(geometryCollection([line.geometry]), 100), "geometryCollection support" ); t.assert( rotate(geometryCollection([line.geometry]).geometry, 100), "geometryCollection support" ); t.assert(rotate(featureCollection([line]), 100), "featureCollection support"); t.assert(rotate(line.geometry, 100), "geometry line support"); t.assert( rotate(line.geometry, 100, { pivot: pt.geometry }), "geometry pt support" ); t.assert( rotate(line.geometry, 100, { pivot: pt.geometry.coordinates }), "pt coordinate support" ); t.end(); }); // style result function colorize(geojson: Feature) { // We are going to add some properties, so make sure properties attribute is // present. geojson.properties = geojson.properties ?? {}; if ( geojson.geometry.type === "Point" || geojson.geometry.type === "MultiPoint" ) { geojson.properties["marker-color"] = "#F00"; geojson.properties["marker-symbol"] = "star"; } else { geojson.properties["stroke"] = "#F00"; geojson.properties["stroke-width"] = 4; } return geojson; } function makePivot(pivot: Coord, geojson: GeoJSON | GeometryCollection) { if (!pivot) { const pt = centroid(geojson); pt.properties = pt.properties ?? {}; pt.properties["marker-symbol"] = "circle"; return pt; } return point(getCoord(pivot), { "marker-symbol": "circle" }); } ================================================ FILE: packages/turf-transform-rotate/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-transform-rotate/types.ts ================================================ import { Point, Feature, Polygon, FeatureCollection } from "geojson"; import { polygon, point, featureCollection, geometryCollection, } from "@turf/helpers"; import { transformRotate as rotate } from "./index.js"; const pt = point([15, 15]); const poly = polygon([ [ [0, 29], [3.5, 29], [2.5, 32], [0, 29], ], ]); // Does not mutate Geometry type const rotatedPoly: Feature = rotate(poly, 100, { pivot: pt }); const rotatedFCPoly: FeatureCollection = rotate( featureCollection([poly]), 100, { pivot: pt } ); // Different Geometry Inputs rotate(poly, 100, { pivot: pt }); rotate(poly, 100, { pivot: pt.geometry }); rotate(poly.geometry, 100, { pivot: pt.geometry.coordinates }); rotate(featureCollection([poly]), 100, { pivot: pt.geometry }); rotate(featureCollection([poly, pt]), 100, { pivot: pt }); rotate(geometryCollection([poly.geometry]).geometry, 100, { pivot: pt.geometry, }); rotate(geometryCollection([poly.geometry]), 100, { pivot: pt.geometry }); rotate(geometryCollection([poly.geometry, pt.geometry]), 100, { pivot: pt }); // Allow mutating rotate(poly, 100, { pivot: pt, mutate: true }); ================================================ FILE: packages/turf-transform-scale/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-transform-scale/README.md ================================================ # @turf/transform-scale ## transformScale Scale GeoJSON objects from a given point by a scaling factor e.g. factor=2 would make each object 200% larger. If a FeatureCollection is provided, the origin point will be calculated based on each individual feature *unless* an exact ### Parameters * `geojson` **([GeoJSON][1] | [GeometryCollection][2])** objects to be scaled * `factor` **[number][3]** of scaling, positive values greater than 0. Numbers between 0 and 1 will shrink the geojson, numbers greater than 1 will expand it, a factor of 1 will not change the geojson. * `options` **[Object][4]** Optional parameters (optional, default `{}`) * `options.origin` **(Corners | [Coord][5])** Point from which the scaling will occur (string options: sw/se/nw/ne/center/centroid) (optional, default `'centroid'`) * `options.mutate` **[boolean][6]** allows GeoJSON input to be mutated (significant performance improvement if true) (optional, default `false`) ### Examples ```javascript const poly = turf.polygon([[[0,29],[3.5,29],[2.5,32],[0,29]]]); const scaledPoly = turf.transformScale(poly, 3); //addToMap const addToMap = [poly, scaledPoly]; scaledPoly.properties = {stroke: '#F00', 'stroke-width': 4}; ``` Returns **([GeoJSON][1] | [GeometryCollection][2])** scaled GeoJSON [1]: https://tools.ietf.org/html/rfc7946#section-3 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.8 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [5]: https://tools.ietf.org/html/rfc7946#section-3.1.1 [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/transform-scale ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-transform-scale/bench.ts ================================================ import { Feature, FeatureCollection } from "geojson"; import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark, { Event } from "benchmark"; import { Coord, Corners } from "@turf/helpers"; import { transformScale as scale } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename) as | FeatureCollection | Feature, }; }); /** * Single Process Benchmark * * line: 3.586ms * multiLine: 0.228ms * multiPoint: 3.490ms * multiPolygon: 2.211ms * no-scale: 0.336ms * point: 0.038ms * poly-double: 2.511ms * poly-half: 0.176ms * polygon-with-hole: 1.094ms * polygon: 0.143ms * z-scaling: 0.237ms */ for (const { name, geojson } of fixtures) { let factor: number = 2, origin: Coord | Corners = "centroid"; if (geojson.type === "Feature") { // Override any test options specified in the feature's properties. factor = geojson.properties?.factor ?? factor; origin = geojson.properties?.origin ?? origin; } console.time(name); scale(geojson, factor || 2, { origin, mutate: true }); console.timeEnd(name); } /** * Benchmark Results * * line x 15,591 ops/sec ±2.38% (77 runs sampled) * multiLine x 27,635 ops/sec ±2.27% (78 runs sampled) * multiPoint x 19,728 ops/sec ±2.18% (76 runs sampled) * multiPolygon x 2,178 ops/sec ±2.31% (77 runs sampled) * no-scale x 28,279 ops/sec ±2.48% (76 runs sampled) * point x 138,281 ops/sec ±2.48% (76 runs sampled) * poly-double x 34,934 ops/sec ±2.05% (76 runs sampled) * poly-half x 33,563 ops/sec ±2.49% (74 runs sampled) * polygon-with-hole x 5,046 ops/sec ±3.55% (75 runs sampled) * polygon x 35,747 ops/sec ±2.65% (77 runs sampled) * z-scaling x 26,205 ops/sec ±2.05% (75 runs sampled) */ const suite = new Benchmark.Suite("turf-transform-scale"); for (const { name, geojson } of fixtures) { let factor: number = 2, origin: Coord | Corners = "centroid"; if (geojson.type === "Feature") { // Override any test options specified in the feature's properties. factor = geojson.properties?.factor ?? factor; origin = geojson.properties?.origin ?? origin; } suite.add(name, () => scale(geojson, factor || 2, { origin })); } suite.on("cycle", (e: Event) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-transform-scale/index.ts ================================================ import { Corners, Coord } from "@turf/helpers"; import { FeatureCollection, GeoJSON, GeometryCollection } from "geojson"; import { clone } from "@turf/clone"; import { center } from "@turf/center"; import { centroid } from "@turf/centroid"; import { bbox as turfBBox } from "@turf/bbox"; import { rhumbBearing } from "@turf/rhumb-bearing"; import { rhumbDistance } from "@turf/rhumb-distance"; import { rhumbDestination } from "@turf/rhumb-destination"; import { coordEach, featureEach } from "@turf/meta"; import { point, isObject } from "@turf/helpers"; import { getCoord, getCoords, getType } from "@turf/invariant"; /** * Scale GeoJSON objects from a given point by a scaling factor e.g. factor=2 * would make each object 200% larger. * If a FeatureCollection is provided, the origin point will be calculated * based on each individual feature _unless_ an exact * * @function * @param {GeoJSON|GeometryCollection} geojson objects to be scaled * @param {number} factor of scaling, positive values greater than 0. Numbers between 0 and 1 will shrink the geojson, numbers greater than 1 will expand it, a factor of 1 will not change the geojson. * @param {Object} [options={}] Optional parameters * @param {Corners|Coord} [options.origin='centroid'] Point from which the scaling will occur (string options: sw/se/nw/ne/center/centroid) * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance improvement if true) * @returns {GeoJSON|GeometryCollection} scaled GeoJSON * @example * const poly = turf.polygon([[[0,29],[3.5,29],[2.5,32],[0,29]]]); * const scaledPoly = turf.transformScale(poly, 3); * * //addToMap * const addToMap = [poly, scaledPoly]; * scaledPoly.properties = {stroke: '#F00', 'stroke-width': 4}; */ function transformScale( geojson: T, factor: number, options?: { origin?: Corners | Coord; mutate?: boolean; } ): T { // Optional parameters options = options || {}; if (!isObject(options)) throw new Error("options is invalid"); const origin = options.origin || "centroid"; const mutate = options.mutate || false; // Input validation if (!geojson) throw new Error("geojson required"); if (typeof factor !== "number" || factor <= 0) throw new Error("invalid factor"); const originIsPoint = Array.isArray(origin) || typeof origin === "object"; // Clone geojson to avoid side effects if (mutate !== true) geojson = clone(geojson); // Scale each Feature separately if a feature collection AND the user didn't // pass a single explicit point to scale the whole collection from. if (geojson.type === "FeatureCollection" && !originIsPoint) { featureEach(geojson, function (feature, index) { // The type guard above is not recognised in the callback so we have to // cast to accept responsibility. (geojson as FeatureCollection).features[index] = scale( feature, factor, origin ); }); return geojson; } // Scale Feature/Geometry return scale(geojson, factor, origin); } /** * Scale Feature/Geometry * * @private * @param {GeoJSON|GeometryCollection} feature feature or geometry collection to scale * @param {number} factor of scaling, positive or negative values greater than 0 * @param {Corners|Coord} [origin="centroid"] Point from which the scaling will occur (string options: sw/se/nw/ne/center/centroid) * @returns {GeoJSON|GeometryCollection} scaled GeoJSON Feature/Geometry */ function scale( feature: T, factor: number, origin: Corners | Coord ): T { // Default params const isPoint = getType(feature) === "Point"; // Work with a Coord equivalent of the origin from here on. const originCoord: Coord = defineOrigin(feature, origin); // Shortcut no-scaling if (factor === 1 || isPoint) return feature; // Scale each coordinate coordEach(feature, function (coord) { const originalDistance = rhumbDistance(originCoord, coord); const bearing = rhumbBearing(originCoord, coord); const newDistance = originalDistance * factor; const newCoord = getCoords( rhumbDestination(originCoord, newDistance, bearing) ); coord[0] = newCoord[0]; coord[1] = newCoord[1]; if (coord.length === 3) coord[2] *= factor; }); delete feature.bbox; return feature; } /** * Define Origin * * @private * @param {GeoJSON|GeometryCollection} geojson GeoJSON * @param {Corners|Coord} origin sw/se/nw/ne/center/centroid * @returns {Feature} Point origin */ function defineOrigin( geojson: GeoJSON | GeometryCollection, origin: Corners | Coord ): Coord { // Default params if (origin === undefined || origin === null) origin = "centroid"; // Input Coord if (Array.isArray(origin) || typeof origin === "object") return getCoord(origin); // Define BBox const bbox = geojson.bbox ? geojson.bbox : turfBBox(geojson, { recompute: true }); const west = bbox[0]; const south = bbox[1]; const east = bbox[2]; const north = bbox[3]; // Having to disable eslint below for lines which fail the no-fallthrough // rule, though only because of the ts-expect-error rules. Once we remove // southeast, bottomright, rightbottom, etc we should be able to remove all // these supressions. /* eslint-disable no-fallthrough */ switch (origin) { case "sw": // @ts-expect-error undocumented, to be removed for v8 #techdebt case "southwest": // @ts-expect-error undocumented, to be removed for v8 #techdebt case "westsouth": // @ts-expect-error undocumented, to be removed for v8 #techdebt case "bottomleft": return point([west, south]); case "se": // @ts-expect-error undocumented, to be removed for v8 #techdebt case "southeast": // @ts-expect-error undocumented, to be removed for v8 #techdebt case "eastsouth": // @ts-expect-error undocumented, to be removed for v8 #techdebt case "bottomright": return point([east, south]); case "nw": // @ts-expect-error undocumented, to be removed for v8 #techdebt case "northwest": // @ts-expect-error undocumented, to be removed for v8 #techdebt case "westnorth": // @ts-expect-error undocumented, to be removed for v8 #techdebt case "topleft": return point([west, north]); case "ne": // @ts-expect-error undocumented, to be removed for v8 #techdebt case "northeast": // @ts-expect-error undocumented, to be removed for v8 #techdebt case "eastnorth": // @ts-expect-error undocumented, to be removed for v8 #techdebt case "topright": return point([east, north]); case "center": return center(geojson); case undefined: case null: case "centroid": return centroid(geojson); default: throw new Error("invalid origin"); } /* eslint-enable no-fallthrough */ } export { transformScale }; export default transformScale; ================================================ FILE: packages/turf-transform-scale/package.json ================================================ { "name": "@turf/transform-scale", "version": "7.3.4", "description": "Changes the size of a geometry by scaling it up or down.", "author": "Turf Authors", "contributors": [ "Stefano Borghi <@stebogit>", "Denis Carriere <@DenisCarriere>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "transform", "transformation", "scale", "enlarge", "contract", "zoom-in", "zoom-out" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/bbox-polygon": "workspace:*", "@turf/hex-grid": "workspace:*", "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/bbox": "workspace:*", "@turf/center": "workspace:*", "@turf/centroid": "workspace:*", "@turf/clone": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@turf/rhumb-bearing": "workspace:*", "@turf/rhumb-destination": "workspace:*", "@turf/rhumb-distance": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-transform-scale/test/in/feature-collection-polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill": "#0F0", "factor": 0.8, "origin": "center" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-80.83740234375, -33.75146241858857], [-80.8267593383789, -33.76316538009658], [-80.83036422729492, -33.77643631739436], [-80.79448699951172, -33.81181543283183], [-80.77629089355469, -33.8159515518711], [-80.76066970825195, -33.805254282102595], [-80.75637817382812, -33.76587681391894], [-80.77457427978516, -33.723197462817026], [-80.80615997314453, -33.724054113439884], [-80.83740234375, -33.75146241858857] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "factor": 0.8, "origin": "center" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-78.87805938720703, -33.60575555447342], [-78.88629913330078, -33.61318971884082], [-78.87943267822264, -33.63034303571294], [-78.89350891113281, -33.64520648119226], [-78.90380859375, -33.64720713369291], [-78.90827178955078, -33.64434904445886], [-78.9151382446289, -33.64606390938584], [-78.92166137695312, -33.65206566761678], [-78.92303466796875, -33.65492350063952], [-78.93024444580078, -33.65749546922024], [-78.94020080566406, -33.66778257479216], [-78.93573760986328, -33.67092561169521], [-78.93882751464844, -33.674354248232504], [-78.94191741943358, -33.67292566628718], [-78.94878387451172, -33.67692563592954], [-78.94123077392578, -33.682353868548184], [-78.93539428710938, -33.68321092658006], [-78.93814086914062, -33.678639851675534], [-78.93848419189453, -33.675782806445994], [-78.93299102783203, -33.671497060610534], [-78.92406463623047, -33.671211336627486], [-78.92131805419922, -33.6652109137176], [-78.92406463623047, -33.66178191269289], [-78.914794921875, -33.65578083204094], [-78.90758514404297, -33.662924928220384], [-78.90449523925781, -33.660353121928814], [-78.90552520751953, -33.657209698729595], [-78.89934539794922, -33.652637241813174], [-78.89213562011719, -33.66006736092875], [-78.88458251953125, -33.65606660727672], [-78.87428283691406, -33.644920669896656], [-78.8656997680664, -33.64520648119226], [-78.86089324951172, -33.66549665763364], [-78.82793426513672, -33.66092464108171], [-78.78398895263672, -33.6794969467326], [-78.76922607421875, -33.670639885813706], [-78.7771224975586, -33.662067667998414], [-78.77918243408203, -33.655495055856136], [-78.79051208496094, -33.641490860339054], [-78.81351470947266, -33.64063338660099], [-78.81729125976561, -33.64434904445886], [-78.83068084716797, -33.640919212129155], [-78.83033752441406, -33.63148646875166], [-78.84819030761717, -33.618621971969276], [-78.848876953125, -33.61347563543629], [-78.86295318603516, -33.6071852512562], [-78.87805938720703, -33.60575555447342] ] ], [ [ [-78.95161628723145, -33.69528025294664], [-78.95530700683594, -33.70006466462807], [-78.9521312713623, -33.70163560737423], [-78.9506721496582, -33.700278885784996], [-78.94861221313477, -33.701207171292374], [-78.94972801208496, -33.70306371221516], [-78.95075798034668, -33.70284949800254], [-78.95178794860838, -33.7045631967461], [-78.9480972290039, -33.70784769044128], [-78.94947052001952, -33.70934709145684], [-78.94303321838379, -33.71377374172037], [-78.93917083740234, -33.71363095011231], [-78.93771171569824, -33.71455909132016], [-78.93874168395996, -33.7163439500602], [-78.93659591674805, -33.714987460801574], [-78.93685340881348, -33.7134881582668], [-78.93479347229004, -33.714916066036416], [-78.93410682678223, -33.71355955421924], [-78.93075942993164, -33.71355955421924], [-78.92475128173828, -33.715201644740844], [-78.92380714416502, -33.714773276327996], [-78.92483711242676, -33.71377374172037], [-78.92706871032715, -33.712988384937574], [-78.92998695373535, -33.712845592023534], [-78.92998695373535, -33.71170324016297], [-78.93118858337402, -33.70970408784028], [-78.93393516540527, -33.70998968387856], [-78.93625259399414, -33.70791909108323], [-78.9378833770752, -33.708276093402596], [-78.93925666809082, -33.7064196651371], [-78.9411449432373, -33.706205459293635], [-78.94020080566406, -33.70506301910626], [-78.94140243530273, -33.704206178993886], [-78.94037246704102, -33.70263528325574], [-78.94208908081055, -33.69792242367998], [-78.94320487976074, -33.69742255977288], [-78.94569396972656, -33.699350590247136], [-78.94929885864258, -33.69799383257217], [-78.94981384277342, -33.69649423337286], [-78.9492130279541, -33.695922950602935], [-78.95015716552734, -33.69513743059241], [-78.95092964172363, -33.69578012931697], [-78.95161628723145, -33.69528025294664] ] ] ] } } ] } ================================================ FILE: packages/turf-transform-scale/test/in/issue-#1059.geojson ================================================ { "type": "Feature", "properties": { "factor": 2, "name": "Europe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-26.19140625, 33.87041555094183], [42.01171875, 33.87041555094183], [42.01171875, 71.52490903732816], [-26.19140625, 71.52490903732816], [-26.19140625, 33.87041555094183] ] ] } } ================================================ FILE: packages/turf-transform-scale/test/in/line.geojson ================================================ { "type": "Feature", "properties": { "factor": 1.5 }, "geometry": { "type": "LineString", "coordinates": [ [11.259269714355469, 44.48450449695473], [11.268196105957031, 44.48866833139464], [11.272315979003906, 44.5063000997406], [11.286735534667969, 44.52343698529045], [11.306304931640625, 44.52515039667307], [11.325874328613281, 44.53298249265435], [11.347160339355469, 44.5302903284497], [11.37359619140625, 44.51878604321948], [11.381149291992186, 44.50948304524639], [11.381492614746094, 44.503606702401854], [11.392478942871094, 44.49185223953622], [11.406898498535156, 44.48548424944496] ] } } ================================================ FILE: packages/turf-transform-scale/test/in/multiLine.geojson ================================================ { "type": "Feature", "properties": { "factor": 1.8, "origin": "topleft" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-99.2, 19.1], [-99.1, 19.17], [-99, 19.1] ], [ [-99.2, 19.16], [-99.1, 19.23], [-99, 19.16] ] ] } } ================================================ FILE: packages/turf-transform-scale/test/in/multiPoint.geojson ================================================ { "type": "Feature", "properties": { "factor": 1.3, "origin": "center" }, "geometry": { "type": "MultiPoint", "coordinates": [ [100, 0], [101, 1], [101.15, -0.86], [99.8, 1.8], [99.73, 0.75], [100.8, 1.46], [100.09, 1.08], [101.71, 0.51], [101.3, 0.28] ] } } ================================================ FILE: packages/turf-transform-scale/test/in/multiPolygon.geojson ================================================ { "type": "Feature", "properties": { "factor": 0.8, "origin": "center" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-80.83740234375, -33.75146241858857], [-80.8267593383789, -33.76316538009658], [-80.83036422729492, -33.77643631739436], [-80.79448699951172, -33.81181543283183], [-80.77629089355469, -33.8159515518711], [-80.76066970825195, -33.805254282102595], [-80.75637817382812, -33.76587681391894], [-80.77457427978516, -33.723197462817026], [-80.80615997314453, -33.724054113439884], [-80.83740234375, -33.75146241858857] ] ], [ [ [-78.87805938720703, -33.60575555447342], [-78.88629913330078, -33.61318971884082], [-78.87943267822264, -33.63034303571294], [-78.89350891113281, -33.64520648119226], [-78.90380859375, -33.64720713369291], [-78.90827178955078, -33.64434904445886], [-78.9151382446289, -33.64606390938584], [-78.92166137695312, -33.65206566761678], [-78.92303466796875, -33.65492350063952], [-78.93024444580078, -33.65749546922024], [-78.94020080566406, -33.66778257479216], [-78.93573760986328, -33.67092561169521], [-78.93882751464844, -33.674354248232504], [-78.94191741943358, -33.67292566628718], [-78.94878387451172, -33.67692563592954], [-78.94123077392578, -33.682353868548184], [-78.93539428710938, -33.68321092658006], [-78.93814086914062, -33.678639851675534], [-78.93848419189453, -33.675782806445994], [-78.93299102783203, -33.671497060610534], [-78.92406463623047, -33.671211336627486], [-78.92131805419922, -33.6652109137176], [-78.92406463623047, -33.66178191269289], [-78.914794921875, -33.65578083204094], [-78.90758514404297, -33.662924928220384], [-78.90449523925781, -33.660353121928814], [-78.90552520751953, -33.657209698729595], [-78.89934539794922, -33.652637241813174], [-78.89213562011719, -33.66006736092875], [-78.88458251953125, -33.65606660727672], [-78.87428283691406, -33.644920669896656], [-78.8656997680664, -33.64520648119226], [-78.86089324951172, -33.66549665763364], [-78.82793426513672, -33.66092464108171], [-78.78398895263672, -33.6794969467326], [-78.76922607421875, -33.670639885813706], [-78.7771224975586, -33.662067667998414], [-78.77918243408203, -33.655495055856136], [-78.79051208496094, -33.641490860339054], [-78.81351470947266, -33.64063338660099], [-78.81729125976561, -33.64434904445886], [-78.83068084716797, -33.640919212129155], [-78.83033752441406, -33.63148646875166], [-78.84819030761717, -33.618621971969276], [-78.848876953125, -33.61347563543629], [-78.86295318603516, -33.6071852512562], [-78.87805938720703, -33.60575555447342] ] ], [ [ [-78.95161628723145, -33.69528025294664], [-78.95530700683594, -33.70006466462807], [-78.9521312713623, -33.70163560737423], [-78.9506721496582, -33.700278885784996], [-78.94861221313477, -33.701207171292374], [-78.94972801208496, -33.70306371221516], [-78.95075798034668, -33.70284949800254], [-78.95178794860838, -33.7045631967461], [-78.9480972290039, -33.70784769044128], [-78.94947052001952, -33.70934709145684], [-78.94303321838379, -33.71377374172037], [-78.93917083740234, -33.71363095011231], [-78.93771171569824, -33.71455909132016], [-78.93874168395996, -33.7163439500602], [-78.93659591674805, -33.714987460801574], [-78.93685340881348, -33.7134881582668], [-78.93479347229004, -33.714916066036416], [-78.93410682678223, -33.71355955421924], [-78.93075942993164, -33.71355955421924], [-78.92475128173828, -33.715201644740844], [-78.92380714416502, -33.714773276327996], [-78.92483711242676, -33.71377374172037], [-78.92706871032715, -33.712988384937574], [-78.92998695373535, -33.712845592023534], [-78.92998695373535, -33.71170324016297], [-78.93118858337402, -33.70970408784028], [-78.93393516540527, -33.70998968387856], [-78.93625259399414, -33.70791909108323], [-78.9378833770752, -33.708276093402596], [-78.93925666809082, -33.7064196651371], [-78.9411449432373, -33.706205459293635], [-78.94020080566406, -33.70506301910626], [-78.94140243530273, -33.704206178993886], [-78.94037246704102, -33.70263528325574], [-78.94208908081055, -33.69792242367998], [-78.94320487976074, -33.69742255977288], [-78.94569396972656, -33.699350590247136], [-78.94929885864258, -33.69799383257217], [-78.94981384277342, -33.69649423337286], [-78.9492130279541, -33.695922950602935], [-78.95015716552734, -33.69513743059241], [-78.95092964172363, -33.69578012931697], [-78.95161628723145, -33.69528025294664] ] ] ] } } ================================================ FILE: packages/turf-transform-scale/test/in/no-scale.geojson ================================================ { "type": "Feature", "properties": { "factor": 1, "origin": "ne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [128.84, -25.76], [128.18, -25.6], [127.96, -25.52], [127.88, -25.52], [127.7, -25.6], [127.26, -25.79], [126.6, -26.11], [126.16, -26.78], [126.12, -27.68], [126.21, -28.42], [126.69, -29.49], [127.74, -29.8], [128.8, -29.72], [129.41, -29.03], [129.72, -27.95], [129.68, -27.21], [129.33, -26.23], [128.84, -25.76] ], [ [128.45, -27.44], [128.32, -26.94], [127.7, -26.82], [127.35, -27.05], [127.17, -27.8], [127.57, -28.22], [128.1, -28.42], [128.49, -27.8], [128.45, -27.44] ] ] } } ================================================ FILE: packages/turf-transform-scale/test/in/origin-inside-bbox.geojson ================================================ { "type": "Feature", "properties": { "factor": 1.8, "origin": [-127.59384155273438, 50.198001033269506] }, "geometry": { "type": "Polygon", "coordinates": [ [ [-127.66113281249999, 50.5064398321055], [-127.4029541015625, 50.35597574998605], [-127.46337890625001, 50.162824333817284], [-127.04040527343749, 50.0923932109388], [-126.78771972656249, 50.391010070956696], [-127.144775390625, 50.56579378237965], [-127.66113281249999, 50.5064398321055] ] ] } } ================================================ FILE: packages/turf-transform-scale/test/in/origin-inside-feature.geojson ================================================ { "type": "Feature", "properties": { "factor": 1.8, "origin": [-127.35351562499999, 50.2682767372753] }, "geometry": { "type": "Polygon", "coordinates": [ [ [-127.66113281249999, 50.5064398321055], [-127.4029541015625, 50.35597574998605], [-127.46337890625001, 50.162824333817284], [-127.04040527343749, 50.0923932109388], [-126.78771972656249, 50.391010070956696], [-127.144775390625, 50.56579378237965], [-127.66113281249999, 50.5064398321055] ] ] } } ================================================ FILE: packages/turf-transform-scale/test/in/origin-outside-bbox.geojson ================================================ { "type": "Feature", "properties": { "factor": 1.8, "origin": [-128.12530517578125, 50.27178780378988] }, "geometry": { "type": "Polygon", "coordinates": [ [ [-127.66113281249999, 50.5064398321055], [-127.4029541015625, 50.35597574998605], [-127.46337890625001, 50.162824333817284], [-127.04040527343749, 50.0923932109388], [-126.78771972656249, 50.391010070956696], [-127.144775390625, 50.56579378237965], [-127.66113281249999, 50.5064398321055] ] ] } } ================================================ FILE: packages/turf-transform-scale/test/in/point.geojson ================================================ { "type": "Feature", "properties": { "factor": 5, "origin": "southwest" }, "geometry": { "type": "Point", "coordinates": [-75.69926351308823, 45.43145021122502] } } ================================================ FILE: packages/turf-transform-scale/test/in/poly-double.geojson ================================================ { "type": "Feature", "properties": { "factor": 2, "origin": "bottomleft" }, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [2, 0], [2, 1], [0, 1], [0, 0] ] ] } } ================================================ FILE: packages/turf-transform-scale/test/in/poly-half.geojson ================================================ { "type": "Feature", "properties": { "factor": 0.5, "origin": "bottomleft" }, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [2, 0], [2, 1], [0, 1], [0, 0] ] ] } } ================================================ FILE: packages/turf-transform-scale/test/in/polygon-fiji.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-179.6319580078125, -16.762467717941593], [-179.659423828125, -16.64671805097192], [-179.725341796875, -16.578287608637478], [-179.99450683593747, -16.641455036937753], [-180.1702880859375, -16.935960102864705], [-180.1373291015625, -17.056784609942543], [-179.93408203125, -17.00951473208515], [-179.6319580078125, -16.762467717941593] ] ], [ [ [-180.06591796875, -16.509832826905836], [-179.79125976562497, -16.093320185359257], [-180.0933837890625, -16.0352548623504], [-180.7086181640625, -16.0774858690887], [-181.63146972656247, -16.525632239869275], [-181.6644287109375, -16.836089974560213], [-181.4996337890625, -17.06728740376787], [-181.219482421875, -17.06728740376787], [-180.9503173828125, -16.956978651248072], [-180.59326171875, -16.914939206301646], [-180.1922607421875, -16.867633616803836], [-180.06591796875, -16.509832826905836] ] ] ] } } ================================================ FILE: packages/turf-transform-scale/test/in/polygon-resolute-bay.geojson ================================================ { "type": "Feature", "properties": { "factor": 2.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.174560546875, 75.60953172351893], [-96.03149414062499, 75.4282153667069], [-96.492919921875, 75.16048677152294], [-96.6357421875, 75.03617629075062], [-95.723876953125, 74.80466599405533], [-94.910888671875, 74.66582807452669], [-94.317626953125, 74.62218784846145], [-93.49365234375, 74.66292249033842], [-93.438720703125, 74.86788912917916], [-93.515625, 75.03901279805076], [-93.55957031249999, 75.3060980061604], [-94.163818359375, 75.52189820596192], [-94.449462890625, 75.60953172351893], [-94.82299804687499, 75.63681056594325], [-95.174560546875, 75.60953172351893] ], [ [-95.108642578125, 75.40054889588245], [-95.6634521484375, 75.22926698530169], [-95.614013671875, 75.01062406678055], [-94.647216796875, 74.84061980605131], [-94.0264892578125, 74.83774656082585], [-94.0155029296875, 75.17876503868581], [-94.5867919921875, 75.3700564253908], [-95.108642578125, 75.40054889588245] ] ] } } ================================================ FILE: packages/turf-transform-scale/test/in/polygon-with-hole.geojson ================================================ { "type": "Feature", "properties": { "factor": 5, "origin": "sw", "name": "Bled Lake", "area": "1.45", "area-unit": "km2", "volume": "0.0257", "volume-unit": "km3", "picture": "https://en.wikipedia.org/wiki/Lake_Bled#/media/File:Lake_Bled_from_the_Mountain.jpg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [14.086918830871582, 46.368163916782294], [14.085588455200194, 46.3670386292829], [14.086060523986816, 46.36644636339309], [14.08374309539795, 46.36366262769442], [14.081940650939941, 46.362714940623896], [14.082798957824707, 46.36155992478001], [14.084773063659668, 46.36188570095187], [14.08473014831543, 46.36016795016414], [14.085588455200194, 46.35895364547403], [14.089837074279785, 46.3583020562222], [14.090909957885742, 46.35856861640076], [14.091768264770508, 46.35936828913414], [14.093270301818846, 46.35996063176163], [14.09816265106201, 46.35978292964766], [14.099278450012207, 46.36022718384896], [14.098892211914062, 46.36215224364764], [14.106316566467285, 46.36499528482401], [14.108591079711914, 46.36840081645984], [14.106273651123047, 46.36958529943602], [14.103312492370605, 46.36937801676938], [14.09996509552002, 46.36854887823657], [14.097347259521484, 46.368163916782294], [14.095587730407715, 46.36801585396206], [14.094429016113281, 46.36733475981976], [14.092626571655273, 46.36724592082726], [14.086918830871582, 46.368163916782294] ], [ [14.089826345443726, 46.36308513284238], [14.08948302268982, 46.362611286353214], [14.089547395706177, 46.362026376425554], [14.089912176132202, 46.36157473282996], [14.090116024017334, 46.36154511672605], [14.09022331237793, 46.36160434891784], [14.090287685394287, 46.36172281310876], [14.090502262115479, 46.36203378038783], [14.090588092803955, 46.36238916939662], [14.090534448623657, 46.36260388246917], [14.089933633804321, 46.36306292138001], [14.089826345443726, 46.36308513284238] ] ] } } ================================================ FILE: packages/turf-transform-scale/test/in/polygon.geojson ================================================ { "type": "Feature", "properties": { "factor": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 29], [3.5, 29], [2.5, 32], [0, 29] ] ] } } ================================================ FILE: packages/turf-transform-scale/test/in/z-scaling.geojson ================================================ { "type": "Feature", "properties": { "factor": 2.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [121.46484375, -23.88583769986199, 10], [125.5078125, -27.488781168937983, 11], [129.638671875, -25.562265014427492, 12], [129.2431640625, -22.06527806776582, 13], [124.93652343749999, -20.385825381874263, 14], [121.46484375, -23.88583769986199, 10] ] ] } } ================================================ FILE: packages/turf-transform-scale/test/out/feature-collection-polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "fill": "#0F0", "factor": 0.8, "origin": "center", "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-80.878897, -33.732123], [-80.857617, -33.755529], [-80.864832, -33.782071], [-80.793075, -33.852829], [-80.756673, -33.861102], [-80.725427, -33.839707], [-80.71686, -33.760952], [-80.753262, -33.675593], [-80.816416, -33.677307], [-80.878897, -33.732123] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "factor": 0.8, "origin": "center", "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-78.844645, -33.532541], [-78.861115, -33.54741], [-78.847381, -33.581716], [-78.875523, -33.611443], [-78.896118, -33.615445], [-78.905043, -33.609728], [-78.918773, -33.613158], [-78.931817, -33.625162], [-78.934564, -33.630877], [-78.948982, -33.636021], [-78.968896, -33.656595], [-78.959971, -33.662881], [-78.966151, -33.669739], [-78.972331, -33.666882], [-78.986065, -33.674882], [-78.970961, -33.685738], [-78.959288, -33.687452], [-78.964779, -33.67831], [-78.965465, -33.672596], [-78.954478, -33.664024], [-78.936626, -33.663453], [-78.931132, -33.651452], [-78.936625, -33.644594], [-78.918087, -33.632592], [-78.903669, -33.64688], [-78.89749, -33.641737], [-78.89955, -33.63545], [-78.887192, -33.626305], [-78.872773, -33.641165], [-78.85767, -33.633163], [-78.837078, -33.610872], [-78.819915, -33.611443], [-78.810292, -33.652024], [-78.744384, -33.64288], [-78.656475, -33.680024], [-78.626964, -33.66231], [-78.642769, -33.645166], [-78.646899, -33.63202], [-78.669575, -33.604012], [-78.715571, -33.602297], [-78.723118, -33.609728], [-78.749895, -33.602869], [-78.749218, -33.584003], [-78.784923, -33.558274], [-78.786299, -33.547982], [-78.814445, -33.535401], [-78.844645, -33.532541] ] ], [ [ [-78.991738, -33.711591], [-78.999123, -33.72116], [-78.992771, -33.724301], [-78.989852, -33.721588], [-78.985732, -33.723445], [-78.987965, -33.727158], [-78.990025, -33.726729], [-78.992086, -33.730157], [-78.984705, -33.736726], [-78.987452, -33.739724], [-78.974577, -33.748578], [-78.966851, -33.748292], [-78.963932, -33.750148], [-78.965993, -33.753718], [-78.9617, -33.751005], [-78.962215, -33.748007], [-78.958095, -33.750862], [-78.956721, -33.748149], [-78.950024, -33.748149], [-78.938006, -33.751434], [-78.936117, -33.750577], [-78.938177, -33.748578], [-78.942641, -33.747007], [-78.948479, -33.746721], [-78.948479, -33.744437], [-78.950882, -33.740438], [-78.956376, -33.74101], [-78.961011, -33.736868], [-78.964274, -33.737582], [-78.96702, -33.73387], [-78.970797, -33.733441], [-78.968908, -33.731156], [-78.971312, -33.729443], [-78.969251, -33.726301], [-78.972683, -33.716875], [-78.974914, -33.715875], [-78.979894, -33.719731], [-78.987104, -33.717018], [-78.988133, -33.714019], [-78.986931, -33.712876], [-78.988819, -33.711305], [-78.990365, -33.712591], [-78.991738, -33.711591] ] ] ] } }, { "type": "Feature", "properties": { "fill": "#0F0", "factor": 0.8, "origin": "center" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-80.83740234375, -33.75146241858857], [-80.8267593383789, -33.76316538009658], [-80.83036422729492, -33.77643631739436], [-80.79448699951172, -33.81181543283183], [-80.77629089355469, -33.8159515518711], [-80.76066970825195, -33.805254282102595], [-80.75637817382812, -33.76587681391894], [-80.77457427978516, -33.723197462817026], [-80.80615997314453, -33.724054113439884], [-80.83740234375, -33.75146241858857] ] ] } }, { "type": "Feature", "properties": { "fill": "#00F", "factor": 0.8, "origin": "center" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-78.87805938720703, -33.60575555447342], [-78.88629913330078, -33.61318971884082], [-78.87943267822264, -33.63034303571294], [-78.89350891113281, -33.64520648119226], [-78.90380859375, -33.64720713369291], [-78.90827178955078, -33.64434904445886], [-78.9151382446289, -33.64606390938584], [-78.92166137695312, -33.65206566761678], [-78.92303466796875, -33.65492350063952], [-78.93024444580078, -33.65749546922024], [-78.94020080566406, -33.66778257479216], [-78.93573760986328, -33.67092561169521], [-78.93882751464844, -33.674354248232504], [-78.94191741943358, -33.67292566628718], [-78.94878387451172, -33.67692563592954], [-78.94123077392578, -33.682353868548184], [-78.93539428710938, -33.68321092658006], [-78.93814086914062, -33.678639851675534], [-78.93848419189453, -33.675782806445994], [-78.93299102783203, -33.671497060610534], [-78.92406463623047, -33.671211336627486], [-78.92131805419922, -33.6652109137176], [-78.92406463623047, -33.66178191269289], [-78.914794921875, -33.65578083204094], [-78.90758514404297, -33.662924928220384], [-78.90449523925781, -33.660353121928814], [-78.90552520751953, -33.657209698729595], [-78.89934539794922, -33.652637241813174], [-78.89213562011719, -33.66006736092875], [-78.88458251953125, -33.65606660727672], [-78.87428283691406, -33.644920669896656], [-78.8656997680664, -33.64520648119226], [-78.86089324951172, -33.66549665763364], [-78.82793426513672, -33.66092464108171], [-78.78398895263672, -33.6794969467326], [-78.76922607421875, -33.670639885813706], [-78.7771224975586, -33.662067667998414], [-78.77918243408203, -33.655495055856136], [-78.79051208496094, -33.641490860339054], [-78.81351470947266, -33.64063338660099], [-78.81729125976561, -33.64434904445886], [-78.83068084716797, -33.640919212129155], [-78.83033752441406, -33.63148646875166], [-78.84819030761717, -33.618621971969276], [-78.848876953125, -33.61347563543629], [-78.86295318603516, -33.6071852512562], [-78.87805938720703, -33.60575555447342] ] ], [ [ [-78.95161628723145, -33.69528025294664], [-78.95530700683594, -33.70006466462807], [-78.9521312713623, -33.70163560737423], [-78.9506721496582, -33.700278885784996], [-78.94861221313477, -33.701207171292374], [-78.94972801208496, -33.70306371221516], [-78.95075798034668, -33.70284949800254], [-78.95178794860838, -33.7045631967461], [-78.9480972290039, -33.70784769044128], [-78.94947052001952, -33.70934709145684], [-78.94303321838379, -33.71377374172037], [-78.93917083740234, -33.71363095011231], [-78.93771171569824, -33.71455909132016], [-78.93874168395996, -33.7163439500602], [-78.93659591674805, -33.714987460801574], [-78.93685340881348, -33.7134881582668], [-78.93479347229004, -33.714916066036416], [-78.93410682678223, -33.71355955421924], [-78.93075942993164, -33.71355955421924], [-78.92475128173828, -33.715201644740844], [-78.92380714416502, -33.714773276327996], [-78.92483711242676, -33.71377374172037], [-78.92706871032715, -33.712988384937574], [-78.92998695373535, -33.712845592023534], [-78.92998695373535, -33.71170324016297], [-78.93118858337402, -33.70970408784028], [-78.93393516540527, -33.70998968387856], [-78.93625259399414, -33.70791909108323], [-78.9378833770752, -33.708276093402596], [-78.93925666809082, -33.7064196651371], [-78.9411449432373, -33.706205459293635], [-78.94020080566406, -33.70506301910626], [-78.94140243530273, -33.704206178993886], [-78.94037246704102, -33.70263528325574], [-78.94208908081055, -33.69792242367998], [-78.94320487976074, -33.69742255977288], [-78.94569396972656, -33.699350590247136], [-78.94929885864258, -33.69799383257217], [-78.94981384277342, -33.69649423337286], [-78.9492130279541, -33.695922950602935], [-78.95015716552734, -33.69513743059241], [-78.95092964172363, -33.69578012931697], [-78.95161628723145, -33.69528025294664] ] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#00F", "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [-80.7958984375, -33.770801530340094] } }, { "type": "Feature", "properties": { "marker-color": "#00F", "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [-78.91150214455344, -33.67896973235066] } } ] } ================================================ FILE: packages/turf-transform-scale/test/out/issue-#1059.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "factor": 2, "name": "Europe", "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-53.292048, 15.043169], [69.112361, 15.043169], [-132.621875, 89.647844], [148.442187, 89.647844], [-53.292048, 15.043169] ] ] } }, { "type": "Feature", "properties": { "factor": 2, "name": "Europe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [-26.19140625, 33.87041555094183], [42.01171875, 33.87041555094183], [42.01171875, 71.52490903732816], [-26.19140625, 71.52490903732816], [-26.19140625, 33.87041555094183] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#00F", "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [7.91015625, 52.697662294134986] } } ] } ================================================ FILE: packages/turf-transform-scale/test/out/issue-#895.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.84359383762614, 45.42809052672104], [-122.85186614854638, 45.43811782493964], [-122.86840636065244, 45.43811782493964], [-122.87667867157268, 45.42809052672104], [-122.86840856465221, 45.41806322850245], [-122.85186394454661, 45.41806322850245], [-122.84359383762614, 45.42809052672104] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.83532262913945, 45.47822701781403], [-122.84773054633155, 45.49326796514193], [-122.87254196286727, 45.49326796514193], [-122.88494988005937, 45.47822701781403], [-122.87254417072825, 45.463186070486124], [-122.84772833847057, 45.463186070486124], [-122.83532262913945, 45.47822701781403] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.84359383762614, 45.52836350890701], [-122.85186615241241, 45.53839080712561], [-122.86840635678641, 45.53839080712561], [-122.87667867157268, 45.52836350890701], [-122.86840856851524, 45.51833621068842], [-122.85186394068364, 45.51833621068842], [-122.84359383762614, 45.52836350890701] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.83532262913945, 45.5785], [-122.84773055020491, 45.59354094732789], [-122.8725419589939, 45.59354094732789], [-122.88494988005937, 45.5785], [-122.87254417459769, 45.5634590526721], [-122.84772833460113, 45.5634590526721], [-122.83532262913945, 45.5785] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.84359383762614, 45.62863649109298], [-122.8518661562922, 45.638663789311586], [-122.86840635290662, 45.638663789311586], [-122.87667867157268, 45.62863649109298], [-122.86840857239201, 45.61860919287439], [-122.85186393680681, 45.61860919287439], [-122.84359383762614, 45.62863649109298] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.83532262913945, 45.678772982185976], [-122.8477305540921, 45.693813929513865], [-122.87254195510673, 45.693813929513865], [-122.88494988005937, 45.678772982185976], [-122.87254417848095, 45.66373203485807], [-122.84772833071787, 45.66373203485807], [-122.83532262913945, 45.678772982185976] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.84359383762614, 45.728909473278954], [-122.85186616018592, 45.73893677149755], [-122.8684063490129, 45.73893677149755], [-122.87667867157268, 45.728909473278954], [-122.86840857628272, 45.71888217506035], [-122.8518639329161, 45.71888217506035], [-122.84359383762614, 45.728909473278954] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.77328856548962, 45.45315877226753], [-122.78569648171549, 45.46819971959543], [-122.81050790018361, 45.46819971959543], [-122.82291581640948, 45.45315877226753], [-122.81051010611316, 45.43811782493964], [-122.785694275786, 45.43811782493964], [-122.77328856548962, 45.45315877226753] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.78155977397626, 45.50329526336053], [-122.78983208779476, 45.513322561579116], [-122.80637229410439, 45.513322561579116], [-122.8146446079229, 45.50329526336053], [-122.80637450389833, 45.49326796514193], [-122.78982987800077, 45.49326796514193], [-122.78155977397626, 45.50329526336053] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.77328856548962, 45.553431754453506], [-122.78569648558539, 45.5684727017814], [-122.81050789631371, 45.5684727017814], [-122.82291581640948, 45.553431754453506], [-122.81051010997913, 45.53839080712561], [-122.78569427191997, 45.53839080712561], [-122.77328856548962, 45.553431754453506] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.78155977397626, 45.60356824554649], [-122.78983209167109, 45.613595543765086], [-122.80637229022801, 45.613595543765086], [-122.8146446079229, 45.60356824554649], [-122.8063745077717, 45.59354094732789], [-122.78982987412746, 45.59354094732789], [-122.78155977397626, 45.60356824554649] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.77328856548962, 45.653704736639476], [-122.78569648946916, 45.66874568396738], [-122.81050789243, 45.66874568396738], [-122.82291581640948, 45.653704736639476], [-122.81051011385898, 45.638663789311586], [-122.78569426804017, 45.638663789311586], [-122.77328856548962, 45.653704736639476] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.78155977397626, 45.70384122773246], [-122.78983209556134, 45.71386852595106], [-122.80637228633776, 45.71386852595106], [-122.8146446079229, 45.70384122773246], [-122.80637451165887, 45.693813929513865], [-122.78982987024023, 45.693813929513865], [-122.78155977397626, 45.70384122773246] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.71125450183973, 45.42809052672104], [-122.72366241710034, 45.44313147404894], [-122.74847383749909, 45.44313147404894], [-122.76088175275964, 45.42809052672104], [-122.74847604149892, 45.413049579393146], [-122.72366021310046, 45.413049579393146], [-122.71125450183973, 45.42809052672104] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.71952571032642, 45.47822701781403], [-122.72779802317797, 45.48825431603263], [-122.74433823142147, 45.48825431603263], [-122.75261054427301, 45.47822701781403], [-122.74434043928227, 45.46819971959543], [-122.72779581531711, 45.46819971959543], [-122.71952571032642, 45.47822701781403] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.71125450183973, 45.52836350890701], [-122.72366242096678, 45.54340445623491], [-122.7484738336326, 45.54340445623491], [-122.76088175275964, 45.52836350890701], [-122.74847604536154, 45.513322561579116], [-122.72366020923789, 45.513322561579116], [-122.71125450183973, 45.52836350890701] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.71952571032642, 45.5785], [-122.72779802705082, 45.588527298218594], [-122.74433822754855, 45.588527298218594], [-122.75261054427301, 45.5785], [-122.74434044315217, 45.5684727017814], [-122.72779581144721, 45.5684727017814], [-122.71952571032642, 45.5785] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.71125450183973, 45.62863649109298], [-122.72366242484702, 45.64367743842088], [-122.74847382975236, 45.64367743842088], [-122.76088175275964, 45.62863649109298], [-122.74847604923787, 45.613595543765086], [-122.72366020536151, 45.613595543765086], [-122.71125450183973, 45.62863649109298] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.71952571032642, 45.678772982185976], [-122.7277980309376, 45.68880028040457], [-122.74433822366177, 45.68880028040457], [-122.75261054427301, 45.678772982185976], [-122.74434044703594, 45.66874568396738], [-122.72779580756344, 45.66874568396738], [-122.71952571032642, 45.678772982185976] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.71125450183973, 45.728909473278954], [-122.72366242874125, 45.74395042060685], [-122.74847382585818, 45.74395042060685], [-122.76088175275964, 45.728909473278954], [-122.74847605312812, 45.71386852595106], [-122.72366020147132, 45.71386852595106], [-122.71125450183973, 45.728909473278954] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.65749164667659, 45.45315877226753], [-122.66576395856202, 45.463186070486124], [-122.68230416873769, 45.463186070486124], [-122.69057648062318, 45.45315877226753], [-122.68230637466712, 45.44313147404894], [-122.66576175263265, 45.44313147404894], [-122.65749164667659, 45.45315877226753] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.6492204381899, 45.50329526336053], [-122.66162835634907, 45.51833621068842], [-122.6864397709507, 45.51833621068842], [-122.69884768910981, 45.50329526336053], [-122.68644198074475, 45.48825431603263], [-122.66162614655502, 45.48825431603263], [-122.6492204381899, 45.50329526336053] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.65749164667659, 45.553431754453506], [-122.66576396243147, 45.5634590526721], [-122.68230416486824, 45.5634590526721], [-122.69057648062318, 45.553431754453506], [-122.68230637853355, 45.54340445623491], [-122.66576174876616, 45.54340445623491], [-122.65749164667659, 45.553431754453506] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.6492204381899, 45.60356824554649], [-122.66162836022585, 45.61860919287439], [-122.68643976707392, 45.61860919287439], [-122.69884768910981, 45.60356824554649], [-122.68644198461766, 45.588527298218594], [-122.66162614268211, 45.588527298218594], [-122.6492204381899, 45.60356824554649] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.65749164667659, 45.653704736639476], [-122.66576396631478, 45.66373203485807], [-122.68230416098498, 45.66373203485807], [-122.69057648062318, 45.653704736639476], [-122.68230638241386, 45.64367743842088], [-122.66576174488591, 45.64367743842088], [-122.65749164667659, 45.653704736639476] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.6492204381899, 45.70384122773246], [-122.66162836411655, 45.71888217506035], [-122.68643976318316, 45.71888217506035], [-122.69884768910981, 45.70384122773246], [-122.68644198850438, 45.68880028040457], [-122.66162613879533, 45.68880028040457], [-122.6492204381899, 45.70384122773246] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.5954575830267, 45.42809052672104], [-122.60372989394699, 45.43811782493964], [-122.620270106053, 45.43811782493964], [-122.62854241697329, 45.42809052672104], [-122.62027231005277, 45.41806322850245], [-122.60372768994722, 45.41806322850245], [-122.5954575830267, 45.42809052672104] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.58718637454007, 45.47822701781403], [-122.59959429173216, 45.49326796514193], [-122.62440570826783, 45.49326796514193], [-122.63681362545992, 45.47822701781403], [-122.6244079161288, 45.463186070486124], [-122.59959208387119, 45.463186070486124], [-122.58718637454007, 45.47822701781403] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.5954575830267, 45.52836350890701], [-122.60372989781297, 45.53839080712561], [-122.62027010218702, 45.53839080712561], [-122.62854241697329, 45.52836350890701], [-122.62027231391579, 45.51833621068842], [-122.6037276860842, 45.51833621068842], [-122.5954575830267, 45.52836350890701] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.58718637454007, 45.5785], [-122.59959429560547, 45.59354094732789], [-122.62440570439452, 45.59354094732789], [-122.63681362545992, 45.5785], [-122.62440791999825, 45.5634590526721], [-122.59959208000174, 45.5634590526721], [-122.58718637454007, 45.5785] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.5954575830267, 45.62863649109298], [-122.60372990169276, 45.638663789311586], [-122.62027009830723, 45.638663789311586], [-122.62854241697329, 45.62863649109298], [-122.62027231779257, 45.61860919287439], [-122.60372768220736, 45.61860919287439], [-122.5954575830267, 45.62863649109298] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.58718637454007, 45.678772982185976], [-122.59959429949265, 45.693813929513865], [-122.62440570050728, 45.693813929513865], [-122.63681362545992, 45.678772982185976], [-122.6244079238815, 45.66373203485807], [-122.59959207611848, 45.66373203485807], [-122.58718637454007, 45.678772982185976] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.5954575830267, 45.728909473278954], [-122.60372990558653, 45.73893677149755], [-122.62027009441351, 45.73893677149755], [-122.62854241697329, 45.728909473278954], [-122.62027232168327, 45.71888217506035], [-122.60372767831666, 45.71888217506035], [-122.5954575830267, 45.728909473278954] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.52515231089023, 45.45315877226753], [-122.5375602271161, 45.46819971959543], [-122.56237164558422, 45.46819971959543], [-122.57477956181009, 45.45315877226753], [-122.56237385151371, 45.43811782493964], [-122.53755802118656, 45.43811782493964], [-122.52515231089023, 45.45315877226753] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.53342351937687, 45.50329526336053], [-122.54169583319538, 45.513322561579116], [-122.55823603950495, 45.513322561579116], [-122.56650835332346, 45.50329526336053], [-122.55823824929894, 45.49326796514193], [-122.54169362340139, 45.49326796514193], [-122.53342351937687, 45.50329526336053] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.52515231089023, 45.553431754453506], [-122.537560230986, 45.5684727017814], [-122.56237164171432, 45.5684727017814], [-122.57477956181009, 45.553431754453506], [-122.56237385537975, 45.53839080712561], [-122.53755801732058, 45.53839080712561], [-122.52515231089023, 45.553431754453506] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.53342351937687, 45.60356824554649], [-122.54169583707164, 45.613595543765086], [-122.55823603562862, 45.613595543765086], [-122.56650835332346, 45.60356824554649], [-122.55823825317225, 45.59354094732789], [-122.54169361952802, 45.59354094732789], [-122.53342351937687, 45.60356824554649] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.52515231089023, 45.653704736639476], [-122.53756023486972, 45.66874568396738], [-122.56237163783055, 45.66874568396738], [-122.57477956181009, 45.653704736639476], [-122.56237385925954, 45.638663789311586], [-122.53755801344073, 45.638663789311586], [-122.52515231089023, 45.653704736639476] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.53342351937687, 45.70384122773246], [-122.54169584096195, 45.71386852595106], [-122.55823603173837, 45.71386852595106], [-122.56650835332346, 45.70384122773246], [-122.55823825705949, 45.693813929513865], [-122.54169361564084, 45.693813929513865], [-122.53342351937687, 45.70384122773246] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.46311824724035, 45.42809052672104], [-122.4755261625009, 45.44313147404894], [-122.50033758289965, 45.44313147404894], [-122.51274549816026, 45.42809052672104], [-122.50033978689953, 45.413049579393146], [-122.47552395850101, 45.413049579393146], [-122.46311824724035, 45.42809052672104] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.47138945572698, 45.47822701781403], [-122.47966176857852, 45.48825431603263], [-122.49620197682202, 45.48825431603263], [-122.50447428967357, 45.47822701781403], [-122.49620418468288, 45.46819971959543], [-122.47965956071772, 45.46819971959543], [-122.47138945572698, 45.47822701781403] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.46311824724035, 45.52836350890701], [-122.47552616636739, 45.54340445623491], [-122.50033757903321, 45.54340445623491], [-122.51274549816026, 45.52836350890701], [-122.5003397907621, 45.513322561579116], [-122.47552395463845, 45.513322561579116], [-122.46311824724035, 45.52836350890701] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.47138945572698, 45.5785], [-122.47966177245144, 45.588527298218594], [-122.49620197294911, 45.588527298218594], [-122.50447428967357, 45.5785], [-122.49620418855278, 45.5684727017814], [-122.47965955684782, 45.5684727017814], [-122.47138945572698, 45.5785] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.46311824724035, 45.62863649109298], [-122.47552617024763, 45.64367743842088], [-122.50033757515291, 45.64367743842088], [-122.51274549816026, 45.62863649109298], [-122.50033979463842, 45.613595543765086], [-122.47552395076212, 45.613595543765086], [-122.46311824724035, 45.62863649109298] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.47138945572698, 45.678772982185976], [-122.47966177633816, 45.68880028040457], [-122.49620196906238, 45.68880028040457], [-122.50447428967357, 45.678772982185976], [-122.4962041924365, 45.66874568396738], [-122.47965955296411, 45.66874568396738], [-122.47138945572698, 45.678772982185976] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.46311824724035, 45.728909473278954], [-122.4755261741418, 45.74395042060685], [-122.50033757125874, 45.74395042060685], [-122.51274549816026, 45.728909473278954], [-122.50033979852867, 45.71386852595106], [-122.47552394687187, 45.71386852595106], [-122.46311824724035, 45.728909473278954] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.40935539207715, 45.45315877226753], [-122.41762770396258, 45.463186070486124], [-122.43416791413824, 45.463186070486124], [-122.44244022602373, 45.45315877226753], [-122.43417012006768, 45.44313147404894], [-122.4176254980332, 45.44313147404894], [-122.40935539207715, 45.45315877226753] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.40108418359046, 45.50329526336053], [-122.41349210174963, 45.51833621068842], [-122.43830351635125, 45.51833621068842], [-122.45071143451037, 45.50329526336053], [-122.43830572614536, 45.48825431603263], [-122.41348989195552, 45.48825431603263], [-122.40108418359046, 45.50329526336053] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.40935539207715, 45.553431754453506], [-122.41762770783203, 45.5634590526721], [-122.4341679102688, 45.5634590526721], [-122.44244022602373, 45.553431754453506], [-122.43417012393411, 45.54340445623491], [-122.41762549416671, 45.54340445623491], [-122.40935539207715, 45.553431754453506] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.40108418359046, 45.60356824554649], [-122.4134921056264, 45.61860919287439], [-122.43830351247448, 45.61860919287439], [-122.45071143451037, 45.60356824554649], [-122.43830573001821, 45.588527298218594], [-122.41348988808267, 45.588527298218594], [-122.40108418359046, 45.60356824554649] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.40935539207715, 45.653704736639476], [-122.41762771171534, 45.66373203485807], [-122.43416790638548, 45.66373203485807], [-122.44244022602373, 45.653704736639476], [-122.43417012781441, 45.64367743842088], [-122.41762549028647, 45.64367743842088], [-122.40935539207715, 45.653704736639476] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.40108418359046, 45.70384122773246], [-122.41349210951711, 45.71888217506035], [-122.43830350858377, 45.71888217506035], [-122.45071143451037, 45.70384122773246], [-122.43830573390494, 45.68880028040457], [-122.41348988419588, 45.68880028040457], [-122.40108418359046, 45.70384122773246] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.34732132842726, 45.42809052672104], [-122.3555936393476, 45.43811782493964], [-122.37213385145355, 45.43811782493964], [-122.3804061623739, 45.42809052672104], [-122.37213605545332, 45.41806322850245], [-122.35559143534783, 45.41806322850245], [-122.34732132842726, 45.42809052672104] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.33905011994062, 45.47822701781403], [-122.35145803713272, 45.49326796514193], [-122.37626945366844, 45.49326796514193], [-122.38867737086053, 45.47822701781403], [-122.37627166152936, 45.463186070486124], [-122.3514558292718, 45.463186070486124], [-122.33905011994062, 45.47822701781403] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.34732132842726, 45.52836350890701], [-122.35559364321352, 45.53839080712561], [-122.37213384758763, 45.53839080712561], [-122.3804061623739, 45.52836350890701], [-122.3721360593164, 45.51833621068842], [-122.35559143148475, 45.51833621068842], [-122.34732132842726, 45.52836350890701] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.33905011994062, 45.5785], [-122.35145804100608, 45.59354094732789], [-122.37626944979507, 45.59354094732789], [-122.38867737086053, 45.5785], [-122.3762716653988, 45.5634590526721], [-122.35145582540235, 45.5634590526721], [-122.33905011994062, 45.5785] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.34732132842726, 45.62863649109298], [-122.35559364709337, 45.638663789311586], [-122.37213384370779, 45.638663789311586], [-122.3804061623739, 45.62863649109298], [-122.37213606319318, 45.61860919287439], [-122.35559142760798, 45.61860919287439], [-122.34732132842726, 45.62863649109298] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.33905011994062, 45.678772982185976], [-122.35145804489332, 45.693813929513865], [-122.37626944590784, 45.693813929513865], [-122.38867737086053, 45.678772982185976], [-122.37627166928212, 45.66373203485807], [-122.35145582151904, 45.66373203485807], [-122.33905011994062, 45.678772982185976] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.34732132842726, 45.728909473278954], [-122.35559365098709, 45.73893677149755], [-122.37213383981407, 45.73893677149755], [-122.3804061623739, 45.728909473278954], [-122.37213606708389, 45.71888217506035], [-122.35559142371727, 45.71888217506035], [-122.34732132842726, 45.728909473278954] ] ] } }, { "type": "Feature", "bbox": [-122.93, 45.385, -122.294, 45.772], "properties": { "stroke": "#F00", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-122.93, 45.385], [-122.294, 45.385], [-122.294, 45.772], [-122.93, 45.772], [-122.93, 45.385] ] ] } } ] } ================================================ FILE: packages/turf-transform-scale/test/out/line.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "factor": 1.5, "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "LineString", "coordinates": [ [11.222188, 44.472567], [11.235574, 44.478813], [11.241747, 44.505261], [11.263371, 44.530966], [11.292726, 44.533536], [11.322082, 44.545284], [11.354014, 44.541246], [11.393669, 44.52399], [11.404996, 44.510035], [11.405509, 44.501221], [11.421984, 44.483589], [11.443609, 44.474037] ] } }, { "type": "Feature", "properties": { "factor": 1.5 }, "geometry": { "type": "LineString", "coordinates": [ [11.259269714355469, 44.48450449695473], [11.268196105957031, 44.48866833139464], [11.272315979003906, 44.5063000997406], [11.286735534667969, 44.52343698529045], [11.306304931640625, 44.52515039667307], [11.325874328613281, 44.53298249265435], [11.347160339355469, 44.5302903284497], [11.37359619140625, 44.51878604321948], [11.381149291992186, 44.50948304524639], [11.381492614746094, 44.503606702401854], [11.392478942871094, 44.49185223953622], [11.406898498535156, 44.48548424944496] ] } }, { "type": "Feature", "properties": { "marker-color": "#00F", "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [11.333456039428711, 44.50837878425054] } } ] } ================================================ FILE: packages/turf-transform-scale/test/out/multiLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "factor": 1.8, "origin": "topleft", "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-99.2, 18.996], [-99.020026, 19.122], [-98.840113, 18.996] ], [ [-99.2, 19.104], [-99.02, 19.23], [-98.840061, 19.104] ] ] } }, { "type": "Feature", "properties": { "factor": 1.8, "origin": "topleft" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-99.2, 19.1], [-99.1, 19.17], [-99, 19.1] ], [ [-99.2, 19.16], [-99.1, 19.23], [-99, 19.16] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#00F", "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [-99.2, 19.23] } } ] } ================================================ FILE: packages/turf-transform-scale/test/out/multiPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "factor": 1.3, "origin": "center", "marker-color": "#F00", "marker-symbol": "star" }, "geometry": { "type": "MultiPoint", "coordinates": [ [99.784002, -0.141], [101.084008, 1.159], [101.279019, -1.259], [99.523892, 2.199], [99.432989, 0.834], [100.824006, 1.757], [99.900979, 1.263], [102.007001, 0.522], [101.473998, 0.223] ] } }, { "type": "Feature", "properties": { "factor": 1.3, "origin": "center" }, "geometry": { "type": "MultiPoint", "coordinates": [ [100, 0], [101, 1], [101.15, -0.86], [99.8, 1.8], [99.73, 0.75], [100.8, 1.46], [100.09, 1.08], [101.71, 0.51], [101.3, 0.28] ] } }, { "type": "Feature", "properties": { "marker-color": "#00F", "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [100.72, 0.47000000000000003] } } ] } ================================================ FILE: packages/turf-transform-scale/test/out/multiPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "factor": 0.8, "origin": "center", "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-80.630546, -33.743341], [-80.62202, -33.752703], [-80.624891, -33.76332], [-80.596159, -33.791623], [-80.5816, -33.794932], [-80.569114, -33.786374], [-80.565716, -33.754872], [-80.580311, -33.720729], [-80.605578, -33.721414], [-80.630546, -33.743341] ] ], [ [ [-79.06302, -33.626775], [-79.069619, -33.632722], [-79.06414, -33.646445], [-79.075414, -33.658336], [-79.083656, -33.659936], [-79.087225, -33.65765], [-79.09272, -33.659022], [-79.097944, -33.663823], [-79.099045, -33.66611], [-79.104815, -33.668167], [-79.112789, -33.676397], [-79.109221, -33.678911], [-79.111695, -33.681654], [-79.114166, -33.680511], [-79.119663, -33.683711], [-79.113625, -33.688054], [-79.108956, -33.688739], [-79.11115, -33.685083], [-79.111422, -33.682797], [-79.107024, -33.679368], [-79.099882, -33.67914], [-79.09768, -33.674339], [-79.099874, -33.671596], [-79.092453, -33.666795], [-79.086691, -33.672511], [-79.084217, -33.670453], [-79.085038, -33.667938], [-79.08009, -33.664281], [-79.074328, -33.670225], [-79.068282, -33.667024], [-79.060032, -33.658107], [-79.053165, -33.658336], [-79.049338, -33.674568], [-79.022965, -33.67091], [-78.987824, -33.685768], [-78.976005, -33.678683], [-78.982314, -33.671825], [-78.983956, -33.666567], [-78.993007, -33.655363], [-79.01141, -33.654677], [-79.014435, -33.65765], [-79.025144, -33.654906], [-79.024861, -33.64736], [-79.039133, -33.637068], [-79.039678, -33.632951], [-79.050935, -33.627919], [-79.06302, -33.626775] ] ], [ [ [-79.121944, -33.698395], [-79.1249, -33.702222], [-79.122361, -33.703479], [-79.121192, -33.702394], [-79.119545, -33.703136], [-79.120439, -33.704622], [-79.121263, -33.70445], [-79.122088, -33.705821], [-79.119138, -33.708449], [-79.120238, -33.709648], [-79.115092, -33.71319], [-79.112002, -33.713075], [-79.110835, -33.713818], [-79.111661, -33.715246], [-79.109943, -33.714161], [-79.110148, -33.712961], [-79.108501, -33.714104], [-79.10795, -33.713018], [-79.105273, -33.713018], [-79.100467, -33.714332], [-79.099712, -33.713989], [-79.100535, -33.71319], [-79.10232, -33.712561], [-79.104654, -33.712447], [-79.104653, -33.711533], [-79.105613, -33.709934], [-79.10781, -33.710162], [-79.109663, -33.708506], [-79.110967, -33.708792], [-79.112065, -33.707306], [-79.113575, -33.707135], [-79.112819, -33.706221], [-79.113779, -33.705536], [-79.112954, -33.704279], [-79.114324, -33.700509], [-79.115216, -33.700109], [-79.117209, -33.701651], [-79.120092, -33.700566], [-79.120503, -33.699366], [-79.120021, -33.698909], [-79.120776, -33.698281], [-79.121395, -33.698795], [-79.121944, -33.698395] ] ] ] } }, { "type": "Feature", "properties": { "factor": 0.8, "origin": "center" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-80.83740234375, -33.75146241858857], [-80.8267593383789, -33.76316538009658], [-80.83036422729492, -33.77643631739436], [-80.79448699951172, -33.81181543283183], [-80.77629089355469, -33.8159515518711], [-80.76066970825195, -33.805254282102595], [-80.75637817382812, -33.76587681391894], [-80.77457427978516, -33.723197462817026], [-80.80615997314453, -33.724054113439884], [-80.83740234375, -33.75146241858857] ] ], [ [ [-78.87805938720703, -33.60575555447342], [-78.88629913330078, -33.61318971884082], [-78.87943267822264, -33.63034303571294], [-78.89350891113281, -33.64520648119226], [-78.90380859375, -33.64720713369291], [-78.90827178955078, -33.64434904445886], [-78.9151382446289, -33.64606390938584], [-78.92166137695312, -33.65206566761678], [-78.92303466796875, -33.65492350063952], [-78.93024444580078, -33.65749546922024], [-78.94020080566406, -33.66778257479216], [-78.93573760986328, -33.67092561169521], [-78.93882751464844, -33.674354248232504], [-78.94191741943358, -33.67292566628718], [-78.94878387451172, -33.67692563592954], [-78.94123077392578, -33.682353868548184], [-78.93539428710938, -33.68321092658006], [-78.93814086914062, -33.678639851675534], [-78.93848419189453, -33.675782806445994], [-78.93299102783203, -33.671497060610534], [-78.92406463623047, -33.671211336627486], [-78.92131805419922, -33.6652109137176], [-78.92406463623047, -33.66178191269289], [-78.914794921875, -33.65578083204094], [-78.90758514404297, -33.662924928220384], [-78.90449523925781, -33.660353121928814], [-78.90552520751953, -33.657209698729595], [-78.89934539794922, -33.652637241813174], [-78.89213562011719, -33.66006736092875], [-78.88458251953125, -33.65606660727672], [-78.87428283691406, -33.644920669896656], [-78.8656997680664, -33.64520648119226], [-78.86089324951172, -33.66549665763364], [-78.82793426513672, -33.66092464108171], [-78.78398895263672, -33.6794969467326], [-78.76922607421875, -33.670639885813706], [-78.7771224975586, -33.662067667998414], [-78.77918243408203, -33.655495055856136], [-78.79051208496094, -33.641490860339054], [-78.81351470947266, -33.64063338660099], [-78.81729125976561, -33.64434904445886], [-78.83068084716797, -33.640919212129155], [-78.83033752441406, -33.63148646875166], [-78.84819030761717, -33.618621971969276], [-78.848876953125, -33.61347563543629], [-78.86295318603516, -33.6071852512562], [-78.87805938720703, -33.60575555447342] ] ], [ [ [-78.95161628723145, -33.69528025294664], [-78.95530700683594, -33.70006466462807], [-78.9521312713623, -33.70163560737423], [-78.9506721496582, -33.700278885784996], [-78.94861221313477, -33.701207171292374], [-78.94972801208496, -33.70306371221516], [-78.95075798034668, -33.70284949800254], [-78.95178794860838, -33.7045631967461], [-78.9480972290039, -33.70784769044128], [-78.94947052001952, -33.70934709145684], [-78.94303321838379, -33.71377374172037], [-78.93917083740234, -33.71363095011231], [-78.93771171569824, -33.71455909132016], [-78.93874168395996, -33.7163439500602], [-78.93659591674805, -33.714987460801574], [-78.93685340881348, -33.7134881582668], [-78.93479347229004, -33.714916066036416], [-78.93410682678223, -33.71355955421924], [-78.93075942993164, -33.71355955421924], [-78.92475128173828, -33.715201644740844], [-78.92380714416502, -33.714773276327996], [-78.92483711242676, -33.71377374172037], [-78.92706871032715, -33.712988384937574], [-78.92998695373535, -33.712845592023534], [-78.92998695373535, -33.71170324016297], [-78.93118858337402, -33.70970408784028], [-78.93393516540527, -33.70998968387856], [-78.93625259399414, -33.70791909108323], [-78.9378833770752, -33.708276093402596], [-78.93925666809082, -33.7064196651371], [-78.9411449432373, -33.706205459293635], [-78.94020080566406, -33.70506301910626], [-78.94140243530273, -33.704206178993886], [-78.94037246704102, -33.70263528325574], [-78.94208908081055, -33.69792242367998], [-78.94320487976074, -33.69742255977288], [-78.94569396972656, -33.699350590247136], [-78.94929885864258, -33.69799383257217], [-78.94981384277342, -33.69649423337286], [-78.9492130279541, -33.695922950602935], [-78.95015716552734, -33.69513743059241], [-78.95092964172363, -33.69578012931697], [-78.95161628723145, -33.69528025294664] ] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#00F", "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [-79.80331420898438, -33.71085355317226] } } ] } ================================================ FILE: packages/turf-transform-scale/test/out/no-scale.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "factor": 1, "origin": "ne", "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [128.84, -25.76], [128.18, -25.6], [127.96, -25.52], [127.88, -25.52], [127.7, -25.6], [127.26, -25.79], [126.6, -26.11], [126.16, -26.78], [126.12, -27.68], [126.21, -28.42], [126.69, -29.49], [127.74, -29.8], [128.8, -29.72], [129.41, -29.03], [129.72, -27.95], [129.68, -27.21], [129.33, -26.23], [128.84, -25.76] ], [ [128.45, -27.44], [128.32, -26.94], [127.7, -26.82], [127.35, -27.05], [127.17, -27.8], [127.57, -28.22], [128.1, -28.42], [128.49, -27.8], [128.45, -27.44] ] ] } }, { "type": "Feature", "properties": { "factor": 1, "origin": "ne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [128.84, -25.76], [128.18, -25.6], [127.96, -25.52], [127.88, -25.52], [127.7, -25.6], [127.26, -25.79], [126.6, -26.11], [126.16, -26.78], [126.12, -27.68], [126.21, -28.42], [126.69, -29.49], [127.74, -29.8], [128.8, -29.72], [129.41, -29.03], [129.72, -27.95], [129.68, -27.21], [129.33, -26.23], [128.84, -25.76] ], [ [128.45, -27.44], [128.32, -26.94], [127.7, -26.82], [127.35, -27.05], [127.17, -27.8], [127.57, -28.22], [128.1, -28.42], [128.49, -27.8], [128.45, -27.44] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#00F", "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [129.72, -25.52] } } ] } ================================================ FILE: packages/turf-transform-scale/test/out/origin-inside-bbox.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "factor": 1.8, "origin": [-127.59384155273438, 50.198001033269506], "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-127.715283, 50.753191], [-127.249786, 50.482356], [-127.359078, 50.134683], [-126.598534, 50.007907], [-126.140457, 50.545417], [-126.782992, 50.860028], [-127.715283, 50.753191] ] ] } }, { "type": "Feature", "properties": { "factor": 1.8, "origin": [-127.59384155273438, 50.198001033269506] }, "geometry": { "type": "Polygon", "coordinates": [ [ [-127.66113281249999, 50.5064398321055], [-127.4029541015625, 50.35597574998605], [-127.46337890625001, 50.162824333817284], [-127.04040527343749, 50.0923932109388], [-126.78771972656249, 50.391010070956696], [-127.144775390625, 50.56579378237965], [-127.66113281249999, 50.5064398321055] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#00F", "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [-127.59384155273438, 50.198001033269506] } } ] } ================================================ FILE: packages/turf-transform-scale/test/out/origin-inside-feature.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "factor": 1.8, "origin": [-127.35351562499999, 50.2682767372753], "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-127.908345, 50.69697], [-127.442571, 50.426135], [-127.551095, 50.078462], [-126.790743, 49.951686], [-126.334028, 50.489197], [-126.976832, 50.803807], [-127.908345, 50.69697] ] ] } }, { "type": "Feature", "properties": { "factor": 1.8, "origin": [-127.35351562499999, 50.2682767372753] }, "geometry": { "type": "Polygon", "coordinates": [ [ [-127.66113281249999, 50.5064398321055], [-127.4029541015625, 50.35597574998605], [-127.46337890625001, 50.162824333817284], [-127.04040527343749, 50.0923932109388], [-126.78771972656249, 50.391010070956696], [-127.144775390625, 50.56579378237965], [-127.66113281249999, 50.5064398321055] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#00F", "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [-127.35351562499999, 50.2682767372753] } } ] } ================================================ FILE: packages/turf-transform-scale/test/out/origin-outside-bbox.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "factor": 1.8, "origin": [-128.12530517578125, 50.27178780378988], "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-127.288131, 50.694161], [-126.82415, 50.423326], [-126.934924, 50.075654], [-126.175406, 49.948878], [-125.715228, 50.486388], [-126.355938, 50.800999], [-127.288131, 50.694161] ] ] } }, { "type": "Feature", "properties": { "factor": 1.8, "origin": [-128.12530517578125, 50.27178780378988] }, "geometry": { "type": "Polygon", "coordinates": [ [ [-127.66113281249999, 50.5064398321055], [-127.4029541015625, 50.35597574998605], [-127.46337890625001, 50.162824333817284], [-127.04040527343749, 50.0923932109388], [-126.78771972656249, 50.391010070956696], [-127.144775390625, 50.56579378237965], [-127.66113281249999, 50.5064398321055] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#00F", "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [-128.12530517578125, 50.27178780378988] } } ] } ================================================ FILE: packages/turf-transform-scale/test/out/point.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "factor": 5, "origin": "southwest", "marker-color": "#F00", "marker-symbol": "star" }, "geometry": { "type": "Point", "coordinates": [-75.699264, 45.43145] } }, { "type": "Feature", "properties": { "factor": 5, "origin": "southwest" }, "geometry": { "type": "Point", "coordinates": [-75.69926351308823, 45.43145021122502] } }, { "type": "Feature", "properties": { "marker-color": "#00F", "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [-75.69926351308823, 45.43145021122502] } } ] } ================================================ FILE: packages/turf-transform-scale/test/out/poly-double.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "factor": 2, "origin": "bottomleft", "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [4, 0], [4.000609, 2], [0, 2], [0, 0] ] ] } }, { "type": "Feature", "properties": { "factor": 2, "origin": "bottomleft" }, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [2, 0], [2, 1], [0, 1], [0, 0] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#00F", "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [0, 0] } } ] } ================================================ FILE: packages/turf-transform-scale/test/out/poly-half.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "factor": 0.5, "origin": "bottomleft", "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [1, 0], [0.999962, 0.5], [0, 0.5], [0, 0] ] ] } }, { "type": "Feature", "properties": { "factor": 0.5, "origin": "bottomleft" }, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [2, 0], [2, 1], [0, 1], [0, 0] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#00F", "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [0, 0] } } ] } ================================================ FILE: packages/turf-transform-scale/test/out/polygon-fiji.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-178.837931, -16.825884], [-178.893337, -16.594384], [-179.025403, -16.457524], [-179.563423, -16.583858], [-179.914534, -17.172869], [-179.848385, -17.414518], [-179.441628, -17.319978], [-178.837931, -16.825884] ] ], [ [ [-179.706468, -16.320614], [-179.158732, -15.487589], [-179.762152, -15.371458], [-180.990633, -15.45592], [-182.836137, -16.352213], [-182.904034, -16.973128], [-182.575668, -17.435523], [-182.014812, -17.435523], [-181.475635, -17.214906], [-180.760995, -17.130827], [-179.958593, -17.036216], [-179.706468, -16.320614] ] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-179.6319580078125, -16.762467717941593], [-179.659423828125, -16.64671805097192], [-179.725341796875, -16.578287608637478], [-179.99450683593747, -16.641455036937753], [-180.1702880859375, -16.935960102864705], [-180.1373291015625, -17.056784609942543], [-179.93408203125, -17.00951473208515], [-179.6319580078125, -16.762467717941593] ] ], [ [ [-180.06591796875, -16.509832826905836], [-179.79125976562497, -16.093320185359257], [-180.0933837890625, -16.0352548623504], [-180.7086181640625, -16.0774858690887], [-181.63146972656247, -16.525632239869275], [-181.6644287109375, -16.836089974560213], [-181.4996337890625, -17.06728740376787], [-181.219482421875, -17.06728740376787], [-180.9503173828125, -16.956978651248072], [-180.59326171875, -16.914939206301646], [-180.1922607421875, -16.867633616803836], [-180.06591796875, -16.509832826905836] ] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#00F", "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [-180.42572021484375, -16.69905167218912] } } ] } ================================================ FILE: packages/turf-transform-scale/test/out/polygon-resolute-bay.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "factor": 2.5, "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.789976, 76.321052], [-97.95473, 75.867761], [-99.066725, 75.19844], [-99.396055, 74.887663], [-97.101854, 74.308888], [-95.09917, 73.961793], [-93.650646, 73.852692], [-91.633938, 73.954529], [-91.468654, 74.466945], [-91.632949, 74.894755], [-91.701695, 75.562468], [-93.207694, 76.101968], [-93.932121, 76.321052], [-94.88936, 76.389249], [-95.789976, 76.321052] ], [ [-95.611777, 75.798595], [-96.998061, 75.37039], [-96.8515, 74.823783], [-94.451781, 74.398772], [-92.921949, 74.391589], [-92.86369, 75.244135], [-94.290262, 75.722364], [-95.611777, 75.798595] ] ] } }, { "type": "Feature", "properties": { "factor": 2.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.174560546875, 75.60953172351893], [-96.03149414062499, 75.4282153667069], [-96.492919921875, 75.16048677152294], [-96.6357421875, 75.03617629075062], [-95.723876953125, 74.80466599405533], [-94.910888671875, 74.66582807452669], [-94.317626953125, 74.62218784846145], [-93.49365234375, 74.66292249033842], [-93.438720703125, 74.86788912917916], [-93.515625, 75.03901279805076], [-93.55957031249999, 75.3060980061604], [-94.163818359375, 75.52189820596192], [-94.449462890625, 75.60953172351893], [-94.82299804687499, 75.63681056594325], [-95.174560546875, 75.60953172351893] ], [ [-95.108642578125, 75.40054889588245], [-95.6634521484375, 75.22926698530169], [-95.614013671875, 75.01062406678055], [-94.647216796875, 74.84061980605131], [-94.0264892578125, 74.83774656082585], [-94.0155029296875, 75.17876503868581], [-94.5867919921875, 75.3700564253908], [-95.108642578125, 75.40054889588245] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#00F", "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [-94.78062220982143, 75.13518489369591] } } ] } ================================================ FILE: packages/turf-transform-scale/test/out/polygon-with-hole.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "factor": 5, "origin": "sw", "name": "Bled Lake", "area": "1.45", "area-unit": "km2", "volume": "0.0257", "volume-unit": "km3", "picture": "https://en.wikipedia.org/wiki/Lake_Bled#/media/File:Lake_Bled_from_the_Mountain.jpg", "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [14.106841, 46.407611], [14.100186, 46.401985], [14.102546, 46.399024], [14.090955, 46.385105], [14.081941, 46.380366], [14.086233, 46.374591], [14.096105, 46.37622], [14.095889, 46.367632], [14.10018, 46.36156], [14.121423, 46.358302], [14.126788, 46.359635], [14.131081, 46.363633], [14.138592, 46.366595], [14.163055, 46.365706], [14.168636, 46.367928], [14.16671, 46.377553], [14.20385, 46.391768], [14.215242, 46.408796], [14.203656, 46.414718], [14.188843, 46.413682], [14.172097, 46.409536], [14.159002, 46.407611], [14.1502, 46.406871], [14.144403, 46.403466], [14.135388, 46.403021], [14.106841, 46.407611] ], [ [14.121376, 46.382217], [14.119658, 46.379848], [14.11998, 46.376924], [14.121803, 46.374665], [14.122822, 46.374517], [14.123359, 46.374814], [14.123681, 46.375406], [14.124755, 46.376961], [14.125184, 46.378738], [14.124916, 46.379811], [14.121913, 46.382106], [14.121376, 46.382217] ] ] } }, { "type": "Feature", "properties": { "factor": 5, "origin": "sw", "name": "Bled Lake", "area": "1.45", "area-unit": "km2", "volume": "0.0257", "volume-unit": "km3", "picture": "https://en.wikipedia.org/wiki/Lake_Bled#/media/File:Lake_Bled_from_the_Mountain.jpg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [14.086918830871582, 46.368163916782294], [14.085588455200194, 46.3670386292829], [14.086060523986816, 46.36644636339309], [14.08374309539795, 46.36366262769442], [14.081940650939941, 46.362714940623896], [14.082798957824707, 46.36155992478001], [14.084773063659668, 46.36188570095187], [14.08473014831543, 46.36016795016414], [14.085588455200194, 46.35895364547403], [14.089837074279785, 46.3583020562222], [14.090909957885742, 46.35856861640076], [14.091768264770508, 46.35936828913414], [14.093270301818846, 46.35996063176163], [14.09816265106201, 46.35978292964766], [14.099278450012207, 46.36022718384896], [14.098892211914062, 46.36215224364764], [14.106316566467285, 46.36499528482401], [14.108591079711914, 46.36840081645984], [14.106273651123047, 46.36958529943602], [14.103312492370605, 46.36937801676938], [14.09996509552002, 46.36854887823657], [14.097347259521484, 46.368163916782294], [14.095587730407715, 46.36801585396206], [14.094429016113281, 46.36733475981976], [14.092626571655273, 46.36724592082726], [14.086918830871582, 46.368163916782294] ], [ [14.089826345443726, 46.36308513284238], [14.08948302268982, 46.362611286353214], [14.089547395706177, 46.362026376425554], [14.089912176132202, 46.36157473282996], [14.090116024017334, 46.36154511672605], [14.09022331237793, 46.36160434891784], [14.090287685394287, 46.36172281310876], [14.090502262115479, 46.36203378038783], [14.090588092803955, 46.36238916939662], [14.090534448623657, 46.36260388246917], [14.089933633804321, 46.36306292138001], [14.089826345443726, 46.36308513284238] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#00F", "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [14.081940650939941, 46.3583020562222] } } ] } ================================================ FILE: packages/turf-transform-scale/test/out/polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "factor": 0.1, "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [1.799105, 29.9], [2.150671, 29.9], [2.049534, 30.2], [1.799105, 29.9] ] ] } }, { "type": "Feature", "properties": { "factor": 0.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 29], [3.5, 29], [2.5, 32], [0, 29] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#00F", "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [2, 30] } } ] } ================================================ FILE: packages/turf-transform-scale/test/out/z-scaling.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "factor": 2.3, "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [115.36303, -23.89655, 23], [124.629212, -32.18332, 25.3], [134.23767, -27.752333, 27.6], [133.195438, -19.709263, 29.9], [123.388452, -15.846522, 32.2], [115.36303, -23.89655, 23] ] ] } }, { "type": "Feature", "properties": { "factor": 2.3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [121.46484375, -23.88583769986199, 10], [125.5078125, -27.488781168937983, 11], [129.638671875, -25.562265014427492, 12], [129.2431640625, -22.06527806776582, 13], [124.93652343749999, -20.385825381874263, 14], [121.46484375, -23.88583769986199, 10] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#00F", "marker-symbol": "circle" }, "geometry": { "type": "Point", "coordinates": [126.158203125, -23.87759746657351] } } ] } ================================================ FILE: packages/turf-transform-scale/test.ts ================================================ import { BBox, Feature, FeatureCollection } from "geojson"; import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { center } from "@turf/center"; import { hexGrid } from "@turf/hex-grid"; import { truncate } from "@turf/truncate"; import { bbox as turfBBox } from "@turf/bbox"; import { bboxPolygon } from "@turf/bbox-polygon"; import { centroid } from "@turf/centroid"; import { featureEach } from "@turf/meta"; import { getCoord } from "@turf/invariant"; import { point, lineString, geometryCollection, featureCollection, Coord, Corners, } from "@turf/helpers"; import { transformScale as scale } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename) as | FeatureCollection | Feature, }; }); test("scale", (t) => { for (const { filename, name, geojson } of fixtures) { let factor: number = 2, origin: Coord | Corners = "centroid", mutate = false; if (geojson.type === "Feature") { // Override any test options specified in the feature's properties. factor = geojson.properties?.factor ?? factor; origin = geojson.properties?.origin ?? origin; mutate = geojson.properties?.mutate ?? mutate; } const scaled = scale(geojson, factor, { origin: origin, mutate: mutate, }); const result = featureCollection([]); featureEach( colorize(truncate(scaled, { precision: 6, coordinates: 3 })), (feature) => result.features.push(feature) ); featureEach(geojson, (feature) => result.features.push(feature)); featureEach(geojson, (feature) => result.features.push(markedOrigin(feature, origin)) ); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, result); t.deepEqual(result, loadJsonFileSync(directories.out + filename), name); } t.end(); }); test("scale -- throws", (t) => { const line = lineString([ [10, 10], [12, 15], ]); // @ts-expect-error testing JS runtime for mis-typed option t.throws(() => scale(null, 1.5), /geojson required/); // @ts-expect-error testing JS runtime for mis-typed option t.throws(() => scale(line, null), /invalid factor/); t.throws(() => scale(line, 0), /invalid factor/); // @ts-expect-error testing JS runtime for mis-typed option t.throws(() => scale(line, 1.5, { origin: "foobar" }), /invalid origin/); // @ts-expect-error testing JS runtime for mis-typed option t.throws(() => scale(line, 1.5, { origin: 2 }), /invalid origin/); t.end(); }); test("scale -- additional params", (t) => { const line = lineString([ [10, 10], [12, 15], ]); const bbox: BBox = [-180, -90, 180, 90]; t.assert(scale(line, 1.5, { origin: "sw" })); t.assert(scale(line, 1.5, { origin: "se" })); t.assert(scale(line, 1.5, { origin: "nw" })); t.assert(scale(line, 1.5, { origin: "ne" })); t.assert(scale(line, 1.5, { origin: "center" })); t.assert(scale(line, 1.5, { origin: "centroid" })); // @ts-expect-error testing JS runtime for mis-typed option t.assert(scale(line, 1.5, { origin: null })); line.bbox = bbox; t.assert(scale(line, 1.5)); t.end(); }); test("scale -- bbox provided", (t) => { const line = lineString([ [10, 10], [12, 15], ]); line.bbox = [-180, -90, 180, 90]; t.assert(scale(line, 1.5)); t.end(); }); test("scale -- mutated input", (t) => { const line = lineString([ [10, 10], [12, 15], ]); const lineBefore = JSON.parse(JSON.stringify(line)); scale(line, 1.5); t.deepEqual( line, lineBefore, "mutate = undefined - input should NOT be mutated" ); scale(line, 1.5, { origin: "centroid", mutate: false }); t.deepEqual(line, lineBefore, "mutate = false - input should NOT be mutated"); // @ts-expect-error testing JS runtime for mis-typed option scale(line, 1.5, { origin: "centroid", mutate: "nonBoolean" }); t.deepEqual( line, lineBefore, "non-boolean mutate - input should NOT be mutated" ); scale(line, 1.5, { origin: "centroid", mutate: true }); t.deepEqual( truncate(line, { precision: 1 }), lineString([ [9.5, 8.8], [12.5, 16.2], ]), "mutate = true - input should be mutated" ); t.end(); }); test("scale -- mutated FeatureCollection", (t) => { const line = featureCollection([ lineString([ [10, 10], [12, 15], ]), lineString([ [15, 15], [22, 35], ]), lineString([ [30, 30], [42, 45], ]), ]); const lineBefore = JSON.parse(JSON.stringify(line)); scale(line, 1.5); t.deepEqual( line, lineBefore, "mutate = undefined - input should NOT be mutated" ); scale(line, 1.5, { origin: "centroid", mutate: false }); t.deepEqual(line, lineBefore, "mutate = false - input should NOT be mutated"); // @ts-expect-error testing JS runtime for mis-typed option scale(line, 1.5, { origin: "centroid", mutate: "nonBoolean" }); t.deepEqual( line, lineBefore, "non-boolean mutate - input should NOT be mutated" ); t.end(); }); test("scale -- Issue #895", (t) => { const bbox: BBox = [-122.93, 45.385, -122.294, 45.772]; const grid = hexGrid(bbox, 2, { units: "miles" }); featureEach(grid, (feature, index) => { const factor = index % 2 === 0 ? 0.4 : 0.6; scale(feature, factor, { origin: "centroid", mutate: true }); }); // Add styled GeoJSON to the result const poly = bboxPolygon(bbox); poly.properties = { stroke: "#F00", "stroke-width": 6, "fill-opacity": 0, }; grid.features.push(poly); const output = directories.out + "issue-#895.geojson"; if (process.env.REGEN) writeJsonFileSync(output, grid); t.deepEqual(grid, loadJsonFileSync(output)); t.end(); }); test("scale -- geometry support", (t) => { const pt = point([10, 10]); const line = lineString([ [10, 10], [12, 15], ]); t.assert( scale(geometryCollection([line.geometry]), 1.5), "geometryCollection support" ); t.assert( scale(geometryCollection([line.geometry]).geometry, 1.5), "geometryCollection support" ); t.assert(scale(featureCollection([line]), 1.5), "featureCollection support"); t.assert(scale(line.geometry, 1.5), "geometry line support"); t.assert(scale(pt.geometry, 1.5), "geometry point support"); t.assert(scale(pt, 1.5), "geometry point support"); t.assert(scale(pt, 1.5, { origin: pt }), "feature point support"); t.assert(scale(pt, 1.5, { origin: pt.geometry }), "geometry point support"); t.assert( scale(pt, 1.5, { origin: pt.geometry.coordinates }), "coordinate point support" ); t.end(); }); test("scale -- factor 0 or less throws error", (t) => { const pt = point([10, 10]); t.throws(() => { scale(pt, 0); }, "should throw for zero"); t.throws(() => { scale(pt, -1); }, "should throw for negative"); t.end(); }); // style result function colorize(geojson: FeatureCollection | Feature) { featureEach(geojson, (feature, index) => { // We are going to add some properties, so make sure properties attribute is // present. feature.properties = feature.properties ?? {}; if ( feature.geometry.type === "Point" || feature.geometry.type === "MultiPoint" ) { feature.properties["marker-color"] = "#F00"; feature.properties["marker-symbol"] = "star"; } else { feature.properties["stroke"] = "#F00"; feature.properties["stroke-width"] = 4; } if (geojson.type === "Feature") return feature; geojson.features[index] = feature; }); return geojson; } // define origin, as defined in transform-scale, and style it function markedOrigin( geojson: Feature, origin: Corners | Coord | undefined, properties = { "marker-color": "#00F", "marker-symbol": "circle" } ) { // Input Geometry|Feature|Array if (Array.isArray(origin) || typeof origin === "object") return point(getCoord(origin), properties); // Define BBox const [west, south, east, north] = geojson.bbox ? geojson.bbox : turfBBox(geojson); // Having to disable eslint below for lines which fail the no-fallthrough // rule, though only because of the ts-expect-error rules. Once we remove // southeast, bottomright, rightbottom, etc we should be able to remove all // these supressions. /* eslint-disable no-fallthrough */ switch (origin) { case "sw": // @ts-expect-error undocumented, to be removed for v8 #techdebt case "southwest": // @ts-expect-error undocumented, to be removed for v8 #techdebt case "westsouth": // @ts-expect-error undocumented, to be removed for v8 #techdebt case "bottomleft": return point([west, south], properties); case "se": // @ts-expect-error undocumented, to be removed for v8 #techdebt case "southeast": // @ts-expect-error undocumented, to be removed for v8 #techdebt case "eastsouth": // @ts-expect-error undocumented, to be removed for v8 #techdebt case "bottomright": return point([east, south], properties); case "nw": // @ts-expect-error undocumented, to be removed for v8 #techdebt case "northwest": // @ts-expect-error undocumented, to be removed for v8 #techdebt case "westnorth": // @ts-expect-error undocumented, to be removed for v8 #techdebt case "topleft": return point([west, north], properties); case "ne": // @ts-expect-error undocumented, to be removed for v8 #techdebt case "northeast": // @ts-expect-error undocumented, to be removed for v8 #techdebt case "eastnorth": // @ts-expect-error undocumented, to be removed for v8 #techdebt case "topright": return point([east, north], properties); case "center": var cr = center(geojson); cr.properties = properties; return cr; default: var cid = centroid(geojson); cid.properties = properties; return cid; } /* eslint-enable no-fallthrough */ } ================================================ FILE: packages/turf-transform-scale/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-transform-scale/types.ts ================================================ import { LineString, Feature, Polygon } from "geojson"; import { lineString, polygon, featureCollection } from "@turf/helpers"; import { transformScale as scale } from "./index.js"; const line = lineString([ [0, 0], [10, 29], ]); const poly = polygon([ [ [0, 29], [3.5, 29], [2.5, 32], [0, 29], ], ]); // Does not mutate Geometry type const scaledPt: LineString = scale(line.geometry, 1.5); const scaledPoly: Feature = scale(poly, 1.5); // Diferent Geometry inputs scale(line.geometry, 1.5); scale(poly.geometry, 1.5); scale(featureCollection([poly]), 1.5); // All params scale(poly, 1.5); scale(poly, 1.5, { origin: [10, 10] }); scale(poly, 1.5, { origin: "ne", mutate: true }); ================================================ FILE: packages/turf-transform-translate/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-transform-translate/README.md ================================================ # @turf/transform-translate ## transformTranslate Moves any geojson Feature or Geometry of a specified distance along a Rhumb Line on the provided direction angle. Note that this moves the points of your shape individually and can therefore change the overall shape. How noticable this is depends on the distance and the used projection. ### Parameters * `geojson` **([GeoJSON][1] | [GeometryCollection][2])** object to be translated * `distance` **[number][3]** length of the motion; negative values determine motion in opposite direction * `direction` **[number][3]** of the motion; angle from North in decimal degrees, positive clockwise * `options` **[Object][4]** Optional parameters (optional, default `{}`) * `options.units` **Units** in which `distance` will be expressed; Supports all valid Turf [Units][5] (optional, default `'kilometers'`) * `options.zTranslation` **[number][3]** length of the vertical motion, same unit of distance (optional, default `0`) * `options.mutate` **[boolean][6]** allows GeoJSON input to be mutated (significant performance increase if true) (optional, default `false`) ### Examples ```javascript var poly = turf.polygon([[[0,29],[3.5,29],[2.5,32],[0,29]]]); var translatedPoly = turf.transformTranslate(poly, 100, 35); //addToMap var addToMap = [poly, translatedPoly]; translatedPoly.properties = {stroke: '#F00', 'stroke-width': 4}; ``` Returns **([GeoJSON][1] | [GeometryCollection][2])** the translated GeoJSON object [1]: https://tools.ietf.org/html/rfc7946#section-3 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.8 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [5]: https://turfjs.org/docs/api/types/Units [6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/transform-translate ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-transform-translate/bench.ts ================================================ import { Feature } from "geojson"; import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark, { Event } from "benchmark"; import { transformTranslate as translate } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename) as Feature, }; }); /** * Single Process Benchmark * * line: 1.364ms * multiLine: 0.072ms * multiPoint: 0.053ms * multiPolygon: 1.482ms * no-motion: 1.352ms * point: 0.022ms * polygon-with-hole: 0.100ms * polygon: 0.018ms * z-translation: 0.073ms */ for (const { name, geojson } of fixtures) { const { distance, direction, units, zTranslation } = geojson.properties || {}; console.time(name); translate(geojson, distance, direction, { units, zTranslation, mutate: true, }); console.timeEnd(name); } /** * Benchmark Results * * line x 26,602 ops/sec ±2.77% (77 runs sampled) * multiLine x 56,968 ops/sec ±2.22% (79 runs sampled) * multiPoint x 55,514 ops/sec ±18.05% (58 runs sampled) * multiPolygon x 3,685 ops/sec ±2.36% (74 runs sampled) * no-motion x 17,622 ops/sec ±3.22% (75 runs sampled) * point x 121,712 ops/sec ±2.02% (79 runs sampled) * polygon-with-hole x 9,527 ops/sec ±2.52% (75 runs sampled) * polygon x 73,538 ops/sec ±5.07% (72 runs sampled) * z-translation x 44,638 ops/sec ±3.09% (78 runs sampled) */ const suite = new Benchmark.Suite("turf-transform-translate"); for (const { name, geojson } of fixtures) { const { distance, direction, units, zTranslation } = geojson.properties || {}; suite.add(name, () => translate(geojson, distance, direction, { units, zTranslation }) ); } suite.on("cycle", (e: Event) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-transform-translate/index.ts ================================================ import { GeoJSON, GeometryCollection } from "geojson"; import { coordEach } from "@turf/meta"; import { isObject, Units } from "@turf/helpers"; import { getCoords } from "@turf/invariant"; import { clone } from "@turf/clone"; import { rhumbDestination } from "@turf/rhumb-destination"; /** * Moves any geojson Feature or Geometry of a specified distance along a Rhumb Line * on the provided direction angle. * * Note that this moves the points of your shape individually and can therefore change * the overall shape. How noticable this is depends on the distance and the used projection. * * @function * @param {GeoJSON|GeometryCollection} geojson object to be translated * @param {number} distance length of the motion; negative values determine motion in opposite direction * @param {number} direction of the motion; angle from North in decimal degrees, positive clockwise * @param {Object} [options={}] Optional parameters * @param {Units} [options.units='kilometers'] in which `distance` will be expressed; Supports all valid Turf {@link https://turfjs.org/docs/api/types/Units Units} * @param {number} [options.zTranslation=0] length of the vertical motion, same unit of distance * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance increase if true) * @returns {GeoJSON|GeometryCollection} the translated GeoJSON object * @example * var poly = turf.polygon([[[0,29],[3.5,29],[2.5,32],[0,29]]]); * var translatedPoly = turf.transformTranslate(poly, 100, 35); * * //addToMap * var addToMap = [poly, translatedPoly]; * translatedPoly.properties = {stroke: '#F00', 'stroke-width': 4}; */ function transformTranslate( geojson: T, distance: number, direction: number, options?: { units?: Units; zTranslation?: number; mutate?: boolean; } ): T { // Optional parameters options = options || {}; if (!isObject(options)) throw new Error("options is invalid"); var units = options.units; var zTranslation = options.zTranslation; var mutate = options.mutate; // Input validation if (!geojson) throw new Error("geojson is required"); if (distance === undefined || distance === null || isNaN(distance)) throw new Error("distance is required"); if (zTranslation && typeof zTranslation !== "number" && isNaN(zTranslation)) throw new Error("zTranslation is not a number"); // Shortcut no-motion zTranslation = zTranslation !== undefined ? zTranslation : 0; if (distance === 0 && zTranslation === 0) return geojson; if (direction === undefined || direction === null || isNaN(direction)) throw new Error("direction is required"); // Invert with negative distances if (distance < 0) { distance = -distance; direction = direction + 180; } // Clone geojson to avoid side effects if (mutate === false || mutate === undefined) geojson = clone(geojson); // Translate each coordinate coordEach(geojson, function (pointCoords) { var newCoords = getCoords( rhumbDestination(pointCoords, distance, direction, { units: units }) ); pointCoords[0] = newCoords[0]; pointCoords[1] = newCoords[1]; if (zTranslation && pointCoords.length === 3) pointCoords[2] += zTranslation; }); return geojson; } export { transformTranslate }; export default transformTranslate; ================================================ FILE: packages/turf-transform-translate/package.json ================================================ { "name": "@turf/transform-translate", "version": "7.3.4", "description": "Moves a shape or location in a specific direction.", "author": "Turf Authors", "contributors": [ "Stefano Borghi <@stebogit>", "Denis Carriere <@DenisCarriere>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "transform", "transformation", "translate", "move", "shift" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/clone": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@turf/rhumb-destination": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-transform-translate/test/in/line.geojson ================================================ { "type": "Feature", "properties": { "distance": 3, "units": "miles", "direction": 175 }, "geometry": { "type": "LineString", "coordinates": [ [11.259269714355469, 44.48450449695473], [11.268196105957031, 44.48866833139464], [11.272315979003906, 44.5063000997406], [11.286735534667969, 44.52343698529045], [11.306304931640625, 44.52515039667307], [11.325874328613281, 44.53298249265435], [11.347160339355469, 44.5302903284497], [11.37359619140625, 44.51878604321948], [11.381149291992186, 44.50948304524639], [11.381492614746094, 44.503606702401854], [11.392478942871094, 44.49185223953622], [11.406898498535156, 44.48548424944496] ] } } ================================================ FILE: packages/turf-transform-translate/test/in/multiLine.geojson ================================================ { "type": "Feature", "properties": { "distance": 13.45, "direction": 0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-99.2, 19.1], [-99.1, 19.17], [-99, 19.1] ], [ [-99.2, 19.16], [-99.1, 19.23], [-99, 19.16] ] ] } } ================================================ FILE: packages/turf-transform-translate/test/in/multiPoint.geojson ================================================ { "type": "Feature", "properties": { "distance": -10, "units": "miles", "direction": 90 }, "geometry": { "type": "MultiPoint", "coordinates": [ [100.0, 0.0], [101.0, 1.0], [101.15, -0.86], [99.8, 1.8] ] } } ================================================ FILE: packages/turf-transform-translate/test/in/multiPolygon.geojson ================================================ { "type": "Feature", "properties": { "distance": 40, "units": "miles", "direction": -35 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-80.83740234375, -33.75146241858857], [-80.8267593383789, -33.76316538009658], [-80.83036422729492, -33.77643631739436], [-80.79448699951172, -33.81181543283183], [-80.77629089355469, -33.8159515518711], [-80.76066970825195, -33.805254282102595], [-80.75637817382812, -33.76587681391894], [-80.77457427978516, -33.723197462817026], [-80.80615997314453, -33.724054113439884], [-80.83740234375, -33.75146241858857] ] ], [ [ [-78.87805938720703, -33.60575555447342], [-78.88629913330078, -33.61318971884082], [-78.87943267822264, -33.63034303571294], [-78.89350891113281, -33.64520648119226], [-78.90380859375, -33.64720713369291], [-78.90827178955078, -33.64434904445886], [-78.9151382446289, -33.64606390938584], [-78.92166137695312, -33.65206566761678], [-78.92303466796875, -33.65492350063952], [-78.93024444580078, -33.65749546922024], [-78.94020080566406, -33.66778257479216], [-78.93573760986328, -33.67092561169521], [-78.93882751464844, -33.674354248232504], [-78.94191741943358, -33.67292566628718], [-78.94878387451172, -33.67692563592954], [-78.94123077392578, -33.682353868548184], [-78.93539428710938, -33.68321092658006], [-78.93814086914062, -33.678639851675534], [-78.93848419189453, -33.675782806445994], [-78.93299102783203, -33.671497060610534], [-78.92406463623047, -33.671211336627486], [-78.92131805419922, -33.6652109137176], [-78.92406463623047, -33.66178191269289], [-78.914794921875, -33.65578083204094], [-78.90758514404297, -33.662924928220384], [-78.90449523925781, -33.660353121928814], [-78.90552520751953, -33.657209698729595], [-78.89934539794922, -33.652637241813174], [-78.89213562011719, -33.66006736092875], [-78.88458251953125, -33.65606660727672], [-78.87428283691406, -33.644920669896656], [-78.8656997680664, -33.64520648119226], [-78.86089324951172, -33.66549665763364], [-78.82793426513672, -33.66092464108171], [-78.78398895263672, -33.6794969467326], [-78.76922607421875, -33.670639885813706], [-78.7771224975586, -33.662067667998414], [-78.77918243408203, -33.655495055856136], [-78.79051208496094, -33.641490860339054], [-78.81351470947266, -33.64063338660099], [-78.81729125976561, -33.64434904445886], [-78.83068084716797, -33.640919212129155], [-78.83033752441406, -33.63148646875166], [-78.84819030761717, -33.618621971969276], [-78.848876953125, -33.61347563543629], [-78.86295318603516, -33.6071852512562], [-78.87805938720703, -33.60575555447342] ] ], [ [ [-78.95161628723145, -33.69528025294664], [-78.95530700683594, -33.70006466462807], [-78.9521312713623, -33.70163560737423], [-78.9506721496582, -33.700278885784996], [-78.94861221313477, -33.701207171292374], [-78.94972801208496, -33.70306371221516], [-78.95075798034668, -33.70284949800254], [-78.95178794860838, -33.7045631967461], [-78.9480972290039, -33.70784769044128], [-78.94947052001952, -33.70934709145684], [-78.94303321838379, -33.71377374172037], [-78.93917083740234, -33.71363095011231], [-78.93771171569824, -33.71455909132016], [-78.93874168395996, -33.7163439500602], [-78.93659591674805, -33.714987460801574], [-78.93685340881348, -33.7134881582668], [-78.93479347229004, -33.714916066036416], [-78.93410682678223, -33.71355955421924], [-78.93075942993164, -33.71355955421924], [-78.92475128173828, -33.715201644740844], [-78.92380714416502, -33.714773276327996], [-78.92483711242676, -33.71377374172037], [-78.92706871032715, -33.712988384937574], [-78.92998695373535, -33.712845592023534], [-78.92998695373535, -33.71170324016297], [-78.93118858337402, -33.70970408784028], [-78.93393516540527, -33.70998968387856], [-78.93625259399414, -33.70791909108323], [-78.9378833770752, -33.708276093402596], [-78.93925666809082, -33.7064196651371], [-78.9411449432373, -33.706205459293635], [-78.94020080566406, -33.70506301910626], [-78.94140243530273, -33.704206178993886], [-78.94037246704102, -33.70263528325574], [-78.94208908081055, -33.69792242367998], [-78.94320487976074, -33.69742255977288], [-78.94569396972656, -33.699350590247136], [-78.94929885864258, -33.69799383257217], [-78.94981384277342, -33.69649423337286], [-78.9492130279541, -33.695922950602935], [-78.95015716552734, -33.69513743059241], [-78.95092964172363, -33.69578012931697], [-78.95161628723145, -33.69528025294664] ] ] ] } } ================================================ FILE: packages/turf-transform-translate/test/in/no-motion.geojson ================================================ { "type": "Feature", "properties": { "distance": 0, "direction": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [128.84, -25.76], [128.18, -25.6], [127.96, -25.52], [127.88, -25.52], [127.7, -25.6], [127.26, -25.79], [126.6, -26.11], [126.16, -26.78], [126.12, -27.68], [126.21, -28.42], [126.69, -29.49], [127.74, -29.8], [128.8, -29.72], [129.41, -29.03], [129.72, -27.95], [129.68, -27.21], [129.33, -26.23], [128.84, -25.76] ], [ [128.45, -27.44], [128.32, -26.94], [127.7, -26.82], [127.35, -27.05], [127.17, -27.8], [127.57, -28.22], [128.1, -28.42], [128.49, -27.8], [128.45, -27.44] ] ] } } ================================================ FILE: packages/turf-transform-translate/test/in/point.geojson ================================================ { "type": "Feature", "properties": { "distance": 20, "units": "miles", "direction": 45 }, "geometry": { "type": "Point", "coordinates": [-75.69926351308823, 45.43145021122502] } } ================================================ FILE: packages/turf-transform-translate/test/in/polygon-fiji.geojson ================================================ { "type": "Feature", "properties": { "distance": 15, "units": "miles", "direction": 100 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-179.6319580078125, -16.762467717941593], [-179.659423828125, -16.64671805097192], [-179.725341796875, -16.578287608637478], [-179.99450683593747, -16.641455036937753], [-180.1702880859375, -16.935960102864705], [-180.1373291015625, -17.056784609942543], [-179.93408203125, -17.00951473208515], [-179.6319580078125, -16.762467717941593] ] ], [ [ [-180.06591796875, -16.509832826905836], [-179.79125976562497, -16.093320185359257], [-180.0933837890625, -16.0352548623504], [-180.7086181640625, -16.0774858690887], [-181.63146972656247, -16.525632239869275], [-181.6644287109375, -16.836089974560213], [-181.4996337890625, -17.06728740376787], [-181.219482421875, -17.06728740376787], [-180.9503173828125, -16.956978651248072], [-180.59326171875, -16.914939206301646], [-180.1922607421875, -16.867633616803836], [-180.06591796875, -16.509832826905836] ] ] ] } } ================================================ FILE: packages/turf-transform-translate/test/in/polygon-resolute-bay.geojson ================================================ { "type": "Feature", "properties": { "distance": 15, "units": "miles", "direction": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.174560546875, 75.60953172351893], [-96.03149414062499, 75.4282153667069], [-96.492919921875, 75.16048677152294], [-96.6357421875, 75.03617629075062], [-95.723876953125, 74.80466599405533], [-94.910888671875, 74.66582807452669], [-94.317626953125, 74.62218784846145], [-93.49365234375, 74.66292249033842], [-93.438720703125, 74.86788912917916], [-93.515625, 75.03901279805076], [-93.55957031249999, 75.3060980061604], [-94.163818359375, 75.52189820596192], [-94.449462890625, 75.60953172351893], [-94.82299804687499, 75.63681056594325], [-95.174560546875, 75.60953172351893] ], [ [-95.108642578125, 75.40054889588245], [-95.6634521484375, 75.22926698530169], [-95.614013671875, 75.01062406678055], [-94.647216796875, 74.84061980605131], [-94.0264892578125, 74.83774656082585], [-94.0155029296875, 75.17876503868581], [-94.5867919921875, 75.3700564253908], [-95.108642578125, 75.40054889588245] ] ] } } ================================================ FILE: packages/turf-transform-translate/test/in/polygon-with-hole.geojson ================================================ { "type": "Feature", "properties": { "distance": 15, "direction": -195, "name": "Bled Lake", "area": "1.45", "area-unit": "km2", "volume": "0.0257", "volume-unit": "km3", "picture": "https://en.wikipedia.org/wiki/Lake_Bled#/media/File:Lake_Bled_from_the_Mountain.jpg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [14.086918830871582, 46.368163916782294], [14.085588455200194, 46.3670386292829], [14.086060523986816, 46.36644636339309], [14.08374309539795, 46.36366262769442], [14.081940650939941, 46.362714940623896], [14.082798957824707, 46.36155992478001], [14.084773063659668, 46.36188570095187], [14.08473014831543, 46.36016795016414], [14.085588455200194, 46.35895364547403], [14.089837074279785, 46.3583020562222], [14.090909957885742, 46.35856861640076], [14.091768264770508, 46.35936828913414], [14.093270301818846, 46.35996063176163], [14.09816265106201, 46.35978292964766], [14.099278450012207, 46.36022718384896], [14.098892211914062, 46.36215224364764], [14.106316566467285, 46.36499528482401], [14.108591079711914, 46.36840081645984], [14.106273651123047, 46.36958529943602], [14.103312492370605, 46.36937801676938], [14.09996509552002, 46.36854887823657], [14.097347259521484, 46.368163916782294], [14.095587730407715, 46.36801585396206], [14.094429016113281, 46.36733475981976], [14.092626571655273, 46.36724592082726], [14.086918830871582, 46.368163916782294] ], [ [14.089826345443726, 46.36308513284238], [14.08948302268982, 46.362611286353214], [14.089547395706177, 46.362026376425554], [14.089912176132202, 46.36157473282996], [14.090116024017334, 46.36154511672605], [14.09022331237793, 46.36160434891784], [14.090287685394287, 46.36172281310876], [14.090502262115479, 46.36203378038783], [14.090588092803955, 46.36238916939662], [14.090534448623657, 46.36260388246917], [14.089933633804321, 46.36306292138001], [14.089826345443726, 46.36308513284238] ] ] } } ================================================ FILE: packages/turf-transform-translate/test/in/polygon.geojson ================================================ { "type": "Feature", "properties": { "direction": 70, "distance": 300 }, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 29], [3.5, 29], [2.5, 32], [0, 29] ] ] } } ================================================ FILE: packages/turf-transform-translate/test/in/z-translation.geojson ================================================ { "type": "Feature", "properties": { "distance": 120, "units": "miles", "direction": 165, "zTranslation": 15 }, "geometry": { "type": "Polygon", "coordinates": [ [ [121.46484375, -23.88583769986199, 10], [125.5078125, -27.488781168937983, 11], [129.638671875, -25.562265014427492, 12], [129.2431640625, -22.06527806776582, 13], [124.93652343749999, -20.385825381874263, 14], [121.46484375, -23.88583769986199, 10] ] ] } } ================================================ FILE: packages/turf-transform-translate/test/out/line.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "distance": 3, "units": "miles", "direction": 175, "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "LineString", "coordinates": [ [11.264572, 44.44125], [11.273499, 44.445414], [11.27762, 44.463046], [11.292041, 44.480183], [11.311611, 44.481896], [11.331181, 44.489728], [11.352467, 44.487036], [11.378902, 44.475532], [11.386454, 44.466229], [11.386797, 44.460352], [11.397782, 44.448598], [11.412201, 44.44223] ] } }, { "type": "Feature", "properties": { "distance": 3, "units": "miles", "direction": 175 }, "geometry": { "type": "LineString", "coordinates": [ [11.259269714355469, 44.48450449695473], [11.268196105957031, 44.48866833139464], [11.272315979003906, 44.5063000997406], [11.286735534667969, 44.52343698529045], [11.306304931640625, 44.52515039667307], [11.325874328613281, 44.53298249265435], [11.347160339355469, 44.5302903284497], [11.37359619140625, 44.51878604321948], [11.381149291992186, 44.50948304524639], [11.381492614746094, 44.503606702401854], [11.392478942871094, 44.49185223953622], [11.406898498535156, 44.48548424944496] ] } } ] } ================================================ FILE: packages/turf-transform-translate/test/out/multiLine.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "distance": 13.45, "direction": 0, "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-99.2, 19.220959], [-99.1, 19.290959], [-99, 19.220959] ], [ [-99.2, 19.280959], [-99.1, 19.350959], [-99, 19.280959] ] ] } }, { "type": "Feature", "properties": { "distance": 13.45, "direction": 0 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [-99.2, 19.1], [-99.1, 19.17], [-99, 19.1] ], [ [-99.2, 19.16], [-99.1, 19.23], [-99, 19.16] ] ] } } ] } ================================================ FILE: packages/turf-transform-translate/test/out/multiPoint.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "distance": -10, "units": "miles", "direction": 90, "marker-color": "#F00", "marker-symbol": "star" }, "geometry": { "type": "MultiPoint", "coordinates": [ [99.855268, 0], [100.855246, 1], [101.005252, -0.86], [99.655197, 1.8] ] } }, { "type": "Feature", "properties": { "distance": -10, "units": "miles", "direction": 90 }, "geometry": { "type": "MultiPoint", "coordinates": [ [100, 0], [101, 1], [101.15, -0.86], [99.8, 1.8] ] } } ] } ================================================ FILE: packages/turf-transform-translate/test/out/multiPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "distance": 40, "units": "miles", "direction": -35, "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-81.235677, -33.277234], [-81.225088, -33.288937], [-81.228754, -33.302208], [-81.19304, -33.337587], [-81.174863, -33.341723], [-81.159192, -33.331026], [-81.154719, -33.291648], [-81.172719, -33.248969], [-81.204308, -33.249825], [-81.235677, -33.277234] ] ], [ [ [-79.275665, -33.131527], [-79.283939, -33.138961], [-79.277151, -33.156114], [-79.291295, -33.170978], [-79.301604, -33.172978], [-79.306054, -33.17012], [-79.312929, -33.171835], [-79.319479, -33.177837], [-79.320866, -33.180695], [-79.328087, -33.183267], [-79.338091, -33.193554], [-79.333642, -33.196697], [-79.336748, -33.200126], [-79.339831, -33.198697], [-79.346716, -33.202697], [-79.339188, -33.208125], [-79.333355, -33.208982], [-79.336081, -33.204411], [-79.336411, -33.201554], [-79.330898, -33.197268], [-79.32197, -33.196983], [-79.319196, -33.190982], [-79.321927, -33.187553], [-79.31263, -33.181552], [-79.305453, -33.188696], [-79.302351, -33.186124], [-79.303367, -33.182981], [-79.297166, -33.178409], [-79.28999, -33.185839], [-79.282419, -33.181838], [-79.272068, -33.170692], [-79.263486, -33.170978], [-79.258773, -33.191268], [-79.225793, -33.186696], [-79.181933, -33.205268], [-79.167129, -33.196411], [-79.174986, -33.187839], [-79.177016, -33.181266], [-79.188282, -33.167262], [-79.21128, -33.166405], [-79.215074, -33.17012], [-79.228448, -33.166691], [-79.228061, -33.157258], [-79.245855, -33.144393], [-79.246518, -33.139247], [-79.260566, -33.132957], [-79.275665, -33.131527] ] ], [ [ [-79.349632, -33.221052], [-79.353345, -33.225836], [-79.350177, -33.227407], [-79.348711, -33.22605], [-79.346656, -33.226978], [-79.34778, -33.228835], [-79.348809, -33.228621], [-79.349847, -33.230335], [-79.346171, -33.233619], [-79.347551, -33.235118], [-79.341134, -33.239545], [-79.337271, -33.239402], [-79.335816, -33.24033], [-79.336855, -33.242115], [-79.334703, -33.240759], [-79.334953, -33.239259], [-79.3329, -33.240687], [-79.332207, -33.239331], [-79.328859, -33.239331], [-79.322859, -33.240973], [-79.321913, -33.240545], [-79.322938, -33.239545], [-79.325166, -33.23876], [-79.328084, -33.238617], [-79.328078, -33.237475], [-79.329271, -33.235475], [-79.332019, -33.235761], [-79.334327, -33.23369], [-79.335959, -33.234047], [-79.337324, -33.232191], [-79.339211, -33.231977], [-79.338262, -33.230834], [-79.33946, -33.229977], [-79.338422, -33.228407], [-79.340117, -33.223694], [-79.341231, -33.223194], [-79.343729, -33.225122], [-79.347327, -33.223765], [-79.347835, -33.222266], [-79.347232, -33.221694], [-79.348173, -33.220909], [-79.348948, -33.221551], [-79.349632, -33.221052] ] ] ] } }, { "type": "Feature", "properties": { "distance": 40, "units": "miles", "direction": -35 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-80.83740234375, -33.75146241858857], [-80.8267593383789, -33.76316538009658], [-80.83036422729492, -33.77643631739436], [-80.79448699951172, -33.81181543283183], [-80.77629089355469, -33.8159515518711], [-80.76066970825195, -33.805254282102595], [-80.75637817382812, -33.76587681391894], [-80.77457427978516, -33.723197462817026], [-80.80615997314453, -33.724054113439884], [-80.83740234375, -33.75146241858857] ] ], [ [ [-78.87805938720703, -33.60575555447342], [-78.88629913330078, -33.61318971884082], [-78.87943267822264, -33.63034303571294], [-78.89350891113281, -33.64520648119226], [-78.90380859375, -33.64720713369291], [-78.90827178955078, -33.64434904445886], [-78.9151382446289, -33.64606390938584], [-78.92166137695312, -33.65206566761678], [-78.92303466796875, -33.65492350063952], [-78.93024444580078, -33.65749546922024], [-78.94020080566406, -33.66778257479216], [-78.93573760986328, -33.67092561169521], [-78.93882751464844, -33.674354248232504], [-78.94191741943358, -33.67292566628718], [-78.94878387451172, -33.67692563592954], [-78.94123077392578, -33.682353868548184], [-78.93539428710938, -33.68321092658006], [-78.93814086914062, -33.678639851675534], [-78.93848419189453, -33.675782806445994], [-78.93299102783203, -33.671497060610534], [-78.92406463623047, -33.671211336627486], [-78.92131805419922, -33.6652109137176], [-78.92406463623047, -33.66178191269289], [-78.914794921875, -33.65578083204094], [-78.90758514404297, -33.662924928220384], [-78.90449523925781, -33.660353121928814], [-78.90552520751953, -33.657209698729595], [-78.89934539794922, -33.652637241813174], [-78.89213562011719, -33.66006736092875], [-78.88458251953125, -33.65606660727672], [-78.87428283691406, -33.644920669896656], [-78.8656997680664, -33.64520648119226], [-78.86089324951172, -33.66549665763364], [-78.82793426513672, -33.66092464108171], [-78.78398895263672, -33.6794969467326], [-78.76922607421875, -33.670639885813706], [-78.7771224975586, -33.662067667998414], [-78.77918243408203, -33.655495055856136], [-78.79051208496094, -33.641490860339054], [-78.81351470947266, -33.64063338660099], [-78.81729125976561, -33.64434904445886], [-78.83068084716797, -33.640919212129155], [-78.83033752441406, -33.63148646875166], [-78.84819030761717, -33.618621971969276], [-78.848876953125, -33.61347563543629], [-78.86295318603516, -33.6071852512562], [-78.87805938720703, -33.60575555447342] ] ], [ [ [-78.95161628723145, -33.69528025294664], [-78.95530700683594, -33.70006466462807], [-78.9521312713623, -33.70163560737423], [-78.9506721496582, -33.700278885784996], [-78.94861221313477, -33.701207171292374], [-78.94972801208496, -33.70306371221516], [-78.95075798034668, -33.70284949800254], [-78.95178794860838, -33.7045631967461], [-78.9480972290039, -33.70784769044128], [-78.94947052001952, -33.70934709145684], [-78.94303321838379, -33.71377374172037], [-78.93917083740234, -33.71363095011231], [-78.93771171569824, -33.71455909132016], [-78.93874168395996, -33.7163439500602], [-78.93659591674805, -33.714987460801574], [-78.93685340881348, -33.7134881582668], [-78.93479347229004, -33.714916066036416], [-78.93410682678223, -33.71355955421924], [-78.93075942993164, -33.71355955421924], [-78.92475128173828, -33.715201644740844], [-78.92380714416502, -33.714773276327996], [-78.92483711242676, -33.71377374172037], [-78.92706871032715, -33.712988384937574], [-78.92998695373535, -33.712845592023534], [-78.92998695373535, -33.71170324016297], [-78.93118858337402, -33.70970408784028], [-78.93393516540527, -33.70998968387856], [-78.93625259399414, -33.70791909108323], [-78.9378833770752, -33.708276093402596], [-78.93925666809082, -33.7064196651371], [-78.9411449432373, -33.706205459293635], [-78.94020080566406, -33.70506301910626], [-78.94140243530273, -33.704206178993886], [-78.94037246704102, -33.70263528325574], [-78.94208908081055, -33.69792242367998], [-78.94320487976074, -33.69742255977288], [-78.94569396972656, -33.699350590247136], [-78.94929885864258, -33.69799383257217], [-78.94981384277342, -33.69649423337286], [-78.9492130279541, -33.695922950602935], [-78.95015716552734, -33.69513743059241], [-78.95092964172363, -33.69578012931697], [-78.95161628723145, -33.69528025294664] ] ] ] } } ] } ================================================ FILE: packages/turf-transform-translate/test/out/no-motion.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "distance": 0, "direction": 45, "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [128.84, -25.76], [128.18, -25.6], [127.96, -25.52], [127.88, -25.52], [127.7, -25.6], [127.26, -25.79], [126.6, -26.11], [126.16, -26.78], [126.12, -27.68], [126.21, -28.42], [126.69, -29.49], [127.74, -29.8], [128.8, -29.72], [129.41, -29.03], [129.72, -27.95], [129.68, -27.21], [129.33, -26.23], [128.84, -25.76] ], [ [128.45, -27.44], [128.32, -26.94], [127.7, -26.82], [127.35, -27.05], [127.17, -27.8], [127.57, -28.22], [128.1, -28.42], [128.49, -27.8], [128.45, -27.44] ] ] } }, { "type": "Feature", "properties": { "distance": 0, "direction": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [128.84, -25.76], [128.18, -25.6], [127.96, -25.52], [127.88, -25.52], [127.7, -25.6], [127.26, -25.79], [126.6, -26.11], [126.16, -26.78], [126.12, -27.68], [126.21, -28.42], [126.69, -29.49], [127.74, -29.8], [128.8, -29.72], [129.41, -29.03], [129.72, -27.95], [129.68, -27.21], [129.33, -26.23], [128.84, -25.76] ], [ [128.45, -27.44], [128.32, -26.94], [127.7, -26.82], [127.35, -27.05], [127.17, -27.8], [127.57, -28.22], [128.1, -28.42], [128.49, -27.8], [128.45, -27.44] ] ] } } ] } ================================================ FILE: packages/turf-transform-translate/test/out/point.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "distance": 20, "units": "miles", "direction": 45, "marker-color": "#F00", "marker-symbol": "star" }, "geometry": { "type": "Point", "coordinates": [-75.407065, 45.636132] } }, { "type": "Feature", "properties": { "distance": 20, "units": "miles", "direction": 45 }, "geometry": { "type": "Point", "coordinates": [-75.69926351308823, 45.43145021122502] } } ] } ================================================ FILE: packages/turf-transform-translate/test/out/polygon-fiji.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "distance": 15, "units": "miles", "direction": 100, "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-179.408649, -16.800166], [-179.43625, -16.684417], [-179.502248, -16.615986], [-179.771339, -16.679154], [-179.946774, -16.973659], [-179.913671, -17.094483], [-179.71048, -17.047213], [-179.408649, -16.800166] ] ], [ [ [-179.842903, -16.547531], [-179.568719, -16.131019], [-179.870908, -16.072953], [-180.486095, -16.115184], [-181.408437, -16.563331], [-181.441033, -16.873789], [-181.275963, -17.104986], [-180.995811, -17.104986], [-180.726778, -16.994677], [-180.369772, -16.952638], [-179.968828, -16.905332], [-179.842903, -16.547531] ] ] ] } }, { "type": "Feature", "properties": { "distance": 15, "units": "miles", "direction": 100 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-179.6319580078125, -16.762467717941593], [-179.659423828125, -16.64671805097192], [-179.725341796875, -16.578287608637478], [-179.99450683593747, -16.641455036937753], [-180.1702880859375, -16.935960102864705], [-180.1373291015625, -17.056784609942543], [-179.93408203125, -17.00951473208515], [-179.6319580078125, -16.762467717941593] ] ], [ [ [-180.06591796875, -16.509832826905836], [-179.79125976562497, -16.093320185359257], [-180.0933837890625, -16.0352548623504], [-180.7086181640625, -16.0774858690887], [-181.63146972656247, -16.525632239869275], [-181.6644287109375, -16.836089974560213], [-181.4996337890625, -17.06728740376787], [-181.219482421875, -17.06728740376787], [-180.9503173828125, -16.956978651248072], [-180.59326171875, -16.914939206301646], [-180.1922607421875, -16.867633616803836], [-180.06591796875, -16.509832826905836] ] ] ] } } ] } ================================================ FILE: packages/turf-transform-translate/test/out/polygon-resolute-bay.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "distance": 15, "units": "miles", "direction": 45, "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.553633, 75.763043], [-95.418171, 75.581726], [-95.890479, 75.313998], [-96.038219, 75.189687], [-95.135296, 74.958177], [-94.327538, 74.819339], [-93.7359, 74.775699], [-92.91041, 74.816434], [-92.847725, 75.0214], [-92.917991, 75.192524], [-92.951261, 75.459609], [-93.54659, 75.675409], [-93.828535, 75.763043], [-94.20091, 75.790322], [-94.553633, 75.763043] ], [ [-94.496462, 75.55406], [-95.058254, 75.382778], [-95.017492, 75.164135], [-94.057265, 74.994131], [-93.436647, 74.991258], [-93.412332, 75.332276], [-93.975867, 75.523567], [-94.496462, 75.55406] ] ] } }, { "type": "Feature", "properties": { "distance": 15, "units": "miles", "direction": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.174560546875, 75.60953172351893], [-96.03149414062499, 75.4282153667069], [-96.492919921875, 75.16048677152294], [-96.6357421875, 75.03617629075062], [-95.723876953125, 74.80466599405533], [-94.910888671875, 74.66582807452669], [-94.317626953125, 74.62218784846145], [-93.49365234375, 74.66292249033842], [-93.438720703125, 74.86788912917916], [-93.515625, 75.03901279805076], [-93.55957031249999, 75.3060980061604], [-94.163818359375, 75.52189820596192], [-94.449462890625, 75.60953172351893], [-94.82299804687499, 75.63681056594325], [-95.174560546875, 75.60953172351893] ], [ [-95.108642578125, 75.40054889588245], [-95.6634521484375, 75.22926698530169], [-95.614013671875, 75.01062406678055], [-94.647216796875, 74.84061980605131], [-94.0264892578125, 74.83774656082585], [-94.0155029296875, 75.17876503868581], [-94.5867919921875, 75.3700564253908], [-95.108642578125, 75.40054889588245] ] ] } } ] } ================================================ FILE: packages/turf-transform-translate/test/out/polygon-with-hole.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "distance": 15, "direction": -195, "name": "Bled Lake", "area": "1.45", "area-unit": "km2", "volume": "0.0257", "volume-unit": "km3", "picture": "https://en.wikipedia.org/wiki/Lake_Bled#/media/File:Lake_Bled_from_the_Mountain.jpg", "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [14.137457, 46.237862], [14.136126, 46.236737], [14.136597, 46.236145], [14.134277, 46.233361], [14.132474, 46.232413], [14.133331, 46.231258], [14.135306, 46.231584], [14.135261, 46.229866], [14.136118, 46.228652], [14.140366, 46.228001], [14.14144, 46.228267], [14.142299, 46.229067], [14.143801, 46.229659], [14.148693, 46.229481], [14.14981, 46.229926], [14.149425, 46.231851], [14.156852, 46.234694], [14.15913, 46.238099], [14.156813, 46.239284], [14.153852, 46.239077], [14.150504, 46.238247], [14.147886, 46.237862], [14.146126, 46.237714], [14.144967, 46.237033], [14.143164, 46.236944], [14.137457, 46.237862] ], [ [14.14036, 46.232784], [14.140016, 46.23231], [14.14008, 46.231725], [14.140445, 46.231273], [14.140648, 46.231244], [14.140756, 46.231303], [14.14082, 46.231421], [14.141035, 46.231732], [14.141121, 46.232088], [14.141068, 46.232302], [14.140467, 46.232761], [14.14036, 46.232784] ] ] } }, { "type": "Feature", "properties": { "distance": 15, "direction": -195, "name": "Bled Lake", "area": "1.45", "area-unit": "km2", "volume": "0.0257", "volume-unit": "km3", "picture": "https://en.wikipedia.org/wiki/Lake_Bled#/media/File:Lake_Bled_from_the_Mountain.jpg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [14.086918830871582, 46.368163916782294], [14.085588455200194, 46.3670386292829], [14.086060523986816, 46.36644636339309], [14.08374309539795, 46.36366262769442], [14.081940650939941, 46.362714940623896], [14.082798957824707, 46.36155992478001], [14.084773063659668, 46.36188570095187], [14.08473014831543, 46.36016795016414], [14.085588455200194, 46.35895364547403], [14.089837074279785, 46.3583020562222], [14.090909957885742, 46.35856861640076], [14.091768264770508, 46.35936828913414], [14.093270301818846, 46.35996063176163], [14.09816265106201, 46.35978292964766], [14.099278450012207, 46.36022718384896], [14.098892211914062, 46.36215224364764], [14.106316566467285, 46.36499528482401], [14.108591079711914, 46.36840081645984], [14.106273651123047, 46.36958529943602], [14.103312492370605, 46.36937801676938], [14.09996509552002, 46.36854887823657], [14.097347259521484, 46.368163916782294], [14.095587730407715, 46.36801585396206], [14.094429016113281, 46.36733475981976], [14.092626571655273, 46.36724592082726], [14.086918830871582, 46.368163916782294] ], [ [14.089826345443726, 46.36308513284238], [14.08948302268982, 46.362611286353214], [14.089547395706177, 46.362026376425554], [14.089912176132202, 46.36157473282996], [14.090116024017334, 46.36154511672605], [14.09022331237793, 46.36160434891784], [14.090287685394287, 46.36172281310876], [14.090502262115479, 46.36203378038783], [14.090588092803955, 46.36238916939662], [14.090534448623657, 46.36260388246917], [14.089933633804321, 46.36306292138001], [14.089826345443726, 46.36308513284238] ] ] } } ] } ================================================ FILE: packages/turf-transform-translate/test/out/polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "direction": 70, "distance": 300, "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.911836, 29.922757], [6.411836, 29.922757], [5.504792, 32.922757], [2.911836, 29.922757] ] ] } }, { "type": "Feature", "properties": { "direction": 70, "distance": 300 }, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 29], [3.5, 29], [2.5, 32], [0, 29] ] ] } } ] } ================================================ FILE: packages/turf-transform-translate/test/out/z-translation.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "distance": 120, "units": "miles", "direction": 165, "zTranslation": 15, "stroke": "#F00", "stroke-width": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [121.959747, -25.563437, 25], [126.018505, -29.166381, 26], [130.140552, -27.239865, 27], [129.731173, -23.742878, 28], [125.418767, -22.063425, 29], [121.959747, -25.563437, 25] ] ] } }, { "type": "Feature", "properties": { "distance": 120, "units": "miles", "direction": 165, "zTranslation": 15 }, "geometry": { "type": "Polygon", "coordinates": [ [ [121.46484375, -23.88583769986199, 10], [125.5078125, -27.488781168937983, 11], [129.638671875, -25.562265014427492, 12], [129.2431640625, -22.06527806776582, 13], [124.93652343749999, -20.385825381874263, 14], [121.46484375, -23.88583769986199, 10] ] ] } } ] } ================================================ FILE: packages/turf-transform-translate/test.ts ================================================ import { Feature } from "geojson"; import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { truncate } from "@turf/truncate"; import { point, lineString, geometryCollection, featureCollection, } from "@turf/helpers"; import { transformTranslate as translate } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename) as Feature, }; }); test("translate", (t) => { for (const { filename, name, geojson } of fixtures) { let { distance, direction, units, zTranslation } = geojson.properties || {}; const translated = translate(geojson, distance, direction, { units, zTranslation, }); const result = featureCollection([ colorize(truncate(translated, { precision: 6, coordinates: 3 })), geojson, ]); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, result); t.deepLooseEqual( result, loadJsonFileSync(directories.out + filename), name ); } t.end(); }); test("translate -- throws", (t) => { const pt = point([-70.823364, -33.553984]); // @ts-expect-error intentional invalid parameter t.throws(() => translate(null, 100, -29), "missing geojson"); // @ts-expect-error intentional invalid parameter t.throws(() => translate(pt, null, 98), "missing distance"); // @ts-expect-error intentional invalid parameter t.throws(() => translate(pt, 23, null), "missing direction"); // @ts-expect-error intentional invalid parameter t.throws(() => translate(pt, 56, 57, { units: "foo" }), "invalid units"); t.throws( // @ts-expect-error intentional invalid parameter () => translate(pt, 56, 57, { zTranslation: "foo" }), "invalid zTranslation" ); t.end(); }); test("negative distance handling", (t) => { const result = translate(point([0, 0]), 10, 0); const result2 = translate(point([0, 0]), -10, 0); t.deepEqual(result, { type: "Feature", properties: {}, geometry: { type: "Point", coordinates: [0, 0.08993203637245381] }, }); t.deepEqual(result2, { type: "Feature", properties: {}, geometry: { type: "Point", coordinates: [0, -0.08993203637245381] }, }); t.end(); }); test("rotate -- mutated input", (t) => { const line = lineString([ [10, 10], [12, 15], ]); const lineBefore = JSON.parse(JSON.stringify(line)); translate(line, 100, 50); t.deepEqual(line, lineBefore, "input should NOT be mutated"); translate(line, 100, 50, { units: "kilometers", mutate: true }); t.deepEqual( truncate(line, { precision: 1 }), lineString([ [10.7, 10.6], [12.7, 15.6], ]), "input should be mutated" ); t.end(); }); test("rotate -- geometry support", (t) => { const line = lineString([ [10, 10], [12, 15], ]); t.assert( translate(geometryCollection([line.geometry]), 100, 50), "geometryCollection support" ); t.assert( translate(geometryCollection([line.geometry]).geometry, 100, 50), "geometryCollection support" ); t.assert( translate(featureCollection([line]), 100, 50), "featureCollection support" ); t.assert(translate(line.geometry, 100, 50), "geometry line support"); t.assert(translate(line.geometry, 100, 50), "geometry pt support"); t.assert(translate(line, 0, 100), "shortcut no-motion"); t.end(); }); // style result function colorize(geojson: Feature) { // We are going to add some properties, so make sure properties attribute is // present. geojson.properties = geojson.properties ?? {}; if ( geojson.geometry.type === "Point" || geojson.geometry.type === "MultiPoint" ) { geojson.properties["marker-color"] = "#F00"; geojson.properties["marker-symbol"] = "star"; } else { geojson.properties["stroke"] = "#F00"; geojson.properties["stroke-width"] = 4; } return geojson; } ================================================ FILE: packages/turf-transform-translate/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-transform-translate/types.ts ================================================ import { Point, Feature, Polygon } from "geojson"; import { point, polygon, featureCollection } from "@turf/helpers"; import { transformTranslate as translate } from "./index.js"; const pt = point([0, 0]); const poly = polygon([ [ [0, 29], [3.5, 29], [2.5, 32], [0, 29], ], ]); // Does not mutate Geometry type const translatedPt: Point = translate(pt.geometry, 100, 35); const translatedPoly: Feature = translate(poly, 100, 35); // Diferent Geometry inputs translate(pt.geometry, 100, 35); translate(poly.geometry, 100, 35); translate(featureCollection([poly]), 100, 35); // All params translate(poly, 100, 35, { units: "kilometers" }); translate(poly, 100, 35, { units: "kilometers", zTranslation: 10 }); translate(poly, 100, 35, { units: "kilometers", zTranslation: 10, mutate: true, }); ================================================ FILE: packages/turf-triangle-grid/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-triangle-grid/README.md ================================================ # @turf/triangle-grid ## triangleGrid Creates a grid of triangular polygons. ### Parameters * `bbox` **[BBox][1]** extent of grid in \[minX, minY, maxX, maxY] order * `cellSide` **[number][2]** dimension of each grid cell. Two triangles are created in each cell. * `options` **[Object][3]** Optional parameters (optional, default `{}`) * `options.units` **Units** used in calculating cellSide. Supports all valid Turf [Units][4] (optional, default `'kilometers'`) * `options.mask` **[Feature][5]<[Polygon][6]>?** if passed a Polygon or MultiPolygon, the grid Points will be created only inside it * `options.properties` **[Object][3]** passed to each point of the grid (optional, default `{}`) ### Examples ```javascript var bbox = [-95, 30 ,-85, 40]; var cellSide = 50; var options = {units: 'miles'}; var triangleGrid = turf.triangleGrid(bbox, cellSide, options); //addToMap var addToMap = [triangleGrid]; ``` Returns **[FeatureCollection][7]<[Polygon][6]>** grid of polygons [1]: https://tools.ietf.org/html/rfc7946#section-5 [2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [4]: https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/README_UNITS.md [5]: https://tools.ietf.org/html/rfc7946#section-3.2 [6]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [7]: https://tools.ietf.org/html/rfc7946#section-3.3 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/triangle-grid ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-triangle-grid/bench.ts ================================================ import Benchmark from "benchmark"; import { triangleGrid as grid } from "./index.js"; // prettier-ignore var bbox1 = [ -96.6357421875, 31.12819929911196, -84.9462890625, 40.58058466412764, ]; var highres = grid(bbox1, 100, "miles").features.length; var midres = grid(bbox1, 10, "miles").features.length; var lowres = grid(bbox1, 1, "miles").features.length; var suite = new Benchmark.Suite("turf-triangle-grid"); suite .add("turf-triangle-grid -- " + highres + " cells", function () { grid(bbox1, 100, "miles"); }) .add("turf-triangle-grid -- " + midres + " cells", function () { grid(bbox1, 10, "miles"); }) .add("turf-triangle-grid -- " + lowres + " cells", function () { grid(bbox1, 1, "miles"); }) .on("cycle", function (event) { console.log(String(event.target)); }) .run(); ================================================ FILE: packages/turf-triangle-grid/index.ts ================================================ import { BBox, Feature, Polygon, FeatureCollection, GeoJsonProperties, } from "geojson"; import { distance } from "@turf/distance"; import { intersect } from "@turf/intersect"; import { polygon, featureCollection, Units } from "@turf/helpers"; /** * Creates a grid of triangular polygons. * * @function * @param {BBox} bbox extent of grid in [minX, minY, maxX, maxY] order * @param {number} cellSide dimension of each grid cell. Two triangles are created in each cell. * @param {Object} [options={}] Optional parameters * @param {Units} [options.units='kilometers'] used in calculating cellSide. Supports all valid Turf {@link https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/README_UNITS.md Units} * @param {Feature} [options.mask] if passed a Polygon or MultiPolygon, the grid Points will be created only inside it * @param {Object} [options.properties={}] passed to each point of the grid * @returns {FeatureCollection} grid of polygons * @example * var bbox = [-95, 30 ,-85, 40]; * var cellSide = 50; * var options = {units: 'miles'}; * * var triangleGrid = turf.triangleGrid(bbox, cellSide, options); * * //addToMap * var addToMap = [triangleGrid]; */ function triangleGrid

( bbox: BBox, cellSide: number, options: { units?: Units; properties?: P; mask?: Feature; } = {} ): FeatureCollection { // Containers var results: Feature[] = []; // Input Validation is being handled by Typescript // if (cellSide === null || cellSide === undefined) throw new Error('cellSide is required'); // if (!isNumber(cellSide)) throw new Error('cellSide is invalid'); // if (!bbox) throw new Error('bbox is required'); // if (!Array.isArray(bbox)) throw new Error('bbox must be array'); // if (bbox.length !== 4) throw new Error('bbox must contain 4 numbers'); // if (mask && ['Polygon', 'MultiPolygon'].indexOf(getType(mask)) === -1) throw new Error('options.mask must be a (Multi)Polygon'); // Main var xFraction = cellSide / distance([bbox[0], bbox[1]], [bbox[2], bbox[1]], options); var cellWidth = xFraction * (bbox[2] - bbox[0]); var yFraction = cellSide / distance([bbox[0], bbox[1]], [bbox[0], bbox[3]], options); var cellHeight = yFraction * (bbox[3] - bbox[1]); var xi = 0; var currentX = bbox[0]; while (currentX <= bbox[2]) { var yi = 0; var currentY = bbox[1]; while (currentY <= bbox[3]) { var cellTriangle1 = null; var cellTriangle2 = null; if (xi % 2 === 0 && yi % 2 === 0) { cellTriangle1 = polygon( [ [ [currentX, currentY], [currentX, currentY + cellHeight], [currentX + cellWidth, currentY], [currentX, currentY], ], ], options.properties ); cellTriangle2 = polygon( [ [ [currentX, currentY + cellHeight], [currentX + cellWidth, currentY + cellHeight], [currentX + cellWidth, currentY], [currentX, currentY + cellHeight], ], ], options.properties ); } else if (xi % 2 === 0 && yi % 2 === 1) { cellTriangle1 = polygon( [ [ [currentX, currentY], [currentX + cellWidth, currentY + cellHeight], [currentX + cellWidth, currentY], [currentX, currentY], ], ], options.properties ); cellTriangle2 = polygon( [ [ [currentX, currentY], [currentX, currentY + cellHeight], [currentX + cellWidth, currentY + cellHeight], [currentX, currentY], ], ], options.properties ); } else if (yi % 2 === 0 && xi % 2 === 1) { cellTriangle1 = polygon( [ [ [currentX, currentY], [currentX, currentY + cellHeight], [currentX + cellWidth, currentY + cellHeight], [currentX, currentY], ], ], options.properties ); cellTriangle2 = polygon( [ [ [currentX, currentY], [currentX + cellWidth, currentY + cellHeight], [currentX + cellWidth, currentY], [currentX, currentY], ], ], options.properties ); } else if (yi % 2 === 1 && xi % 2 === 1) { cellTriangle1 = polygon( [ [ [currentX, currentY], [currentX, currentY + cellHeight], [currentX + cellWidth, currentY], [currentX, currentY], ], ], options.properties ); cellTriangle2 = polygon( [ [ [currentX, currentY + cellHeight], [currentX + cellWidth, currentY + cellHeight], [currentX + cellWidth, currentY], [currentX, currentY + cellHeight], ], ], options.properties ); } if (options.mask) { if (intersect(featureCollection([options.mask, cellTriangle1!]))) results.push(cellTriangle1!); if (intersect(featureCollection([options.mask, cellTriangle2!]))) results.push(cellTriangle2!); } else { results.push(cellTriangle1!); results.push(cellTriangle2!); } currentY += cellHeight; yi++; } xi++; currentX += cellWidth; } return featureCollection(results); } export { triangleGrid }; export default triangleGrid; ================================================ FILE: packages/turf-triangle-grid/package.json ================================================ { "name": "@turf/triangle-grid", "version": "7.3.4", "description": "Creates a triangular grid within a bounding box.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "triangle", "grid", "polygons", "analysis", "gis" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/bbox-polygon": "workspace:*", "@turf/truncate": "workspace:*", "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", "@turf/intersect": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-triangle-grid/test/in/big-bbox.json ================================================ { "bbox": [-220.78125, -80.64703474739618, -29.53125, 78.34941069014629], "cellSide": 500, "units": "miles" } ================================================ FILE: packages/turf-triangle-grid/test/in/fiji-10-miles.json ================================================ { "bbox": [ -180.3460693359375, -17.16703442146408, -179.5770263671875, -16.48349760264812 ], "cellSide": 10, "units": "miles" } ================================================ FILE: packages/turf-triangle-grid/test/in/london-20-miles.json ================================================ { "bbox": [-0.6207275390625, 51.23784668914442, 0.439453125, 51.767839887322154], "cellSide": 20, "units": "miles" } ================================================ FILE: packages/turf-triangle-grid/test/in/piedemont-mask.json ================================================ { "bbox": [6.3775634765625, 44.05601169578525, 9.437255859375, 46.50595444552049], "cellSide": 12.5, "units": "miles", "mask": { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "fill-opacity": 0.3, "fill": "#00F" }, "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] ] ] } } } ================================================ FILE: packages/turf-triangle-grid/test/in/properties.json ================================================ { "bbox": [2.131519317626953, 41.37835427979543, 2.2264480590820312, 41.44388449101261], "properties": { "marker-color": "#0ff" }, "cellSide": 1, "mask": { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [2.223186492919922, 41.416856461155575], [2.1716880798339844, 41.44182560856202], [2.1636199951171875, 41.41608406639095], [2.1334075927734375, 41.407200866420744], [2.1845626831054683, 41.37977115211044], [2.223186492919922, 41.416856461155575] ] ] } } } ================================================ FILE: packages/turf-triangle-grid/test/in/resolute.json ================================================ { "bbox": [-95.877685546875, 74.46849062193377, -94.031982421875, 74.90226611990785], "cellSide": 12.5, "units": "miles" } ================================================ FILE: packages/turf-triangle-grid/test/out/big-bbox.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -80.647035], [-220.78125, -73.410456], [-146.433048, -80.647035], [-220.78125, -80.647035] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -73.410456], [-146.433048, -73.410456], [-146.433048, -80.647035], [-220.78125, -73.410456] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -73.410456], [-146.433048, -66.173876], [-146.433048, -73.410456], [-220.78125, -73.410456] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -73.410456], [-220.78125, -66.173876], [-146.433048, -66.173876], [-220.78125, -73.410456] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -66.173876], [-220.78125, -58.937297], [-146.433048, -66.173876], [-220.78125, -66.173876] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -58.937297], [-146.433048, -58.937297], [-146.433048, -66.173876], [-220.78125, -58.937297] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -58.937297], [-146.433048, -51.700718], [-146.433048, -58.937297], [-220.78125, -58.937297] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -58.937297], [-220.78125, -51.700718], [-146.433048, -51.700718], [-220.78125, -58.937297] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -51.700718], [-220.78125, -44.464139], [-146.433048, -51.700718], [-220.78125, -51.700718] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -44.464139], [-146.433048, -44.464139], [-146.433048, -51.700718], [-220.78125, -44.464139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -44.464139], [-146.433048, -37.22756], [-146.433048, -44.464139], [-220.78125, -44.464139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -44.464139], [-220.78125, -37.22756], [-146.433048, -37.22756], [-220.78125, -44.464139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -37.22756], [-220.78125, -29.990981], [-146.433048, -37.22756], [-220.78125, -37.22756] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -29.990981], [-146.433048, -29.990981], [-146.433048, -37.22756], [-220.78125, -29.990981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -29.990981], [-146.433048, -22.754401], [-146.433048, -29.990981], [-220.78125, -29.990981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -29.990981], [-220.78125, -22.754401], [-146.433048, -22.754401], [-220.78125, -29.990981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -22.754401], [-220.78125, -15.517822], [-146.433048, -22.754401], [-220.78125, -22.754401] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -15.517822], [-146.433048, -15.517822], [-146.433048, -22.754401], [-220.78125, -15.517822] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -15.517822], [-146.433048, -8.281243], [-146.433048, -15.517822], [-220.78125, -15.517822] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -15.517822], [-220.78125, -8.281243], [-146.433048, -8.281243], [-220.78125, -15.517822] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -8.281243], [-220.78125, -1.044664], [-146.433048, -8.281243], [-220.78125, -8.281243] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -1.044664], [-146.433048, -1.044664], [-146.433048, -8.281243], [-220.78125, -1.044664] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -1.044664], [-146.433048, 6.191915], [-146.433048, -1.044664], [-220.78125, -1.044664] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -1.044664], [-220.78125, 6.191915], [-146.433048, 6.191915], [-220.78125, -1.044664] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, 6.191915], [-220.78125, 13.428494], [-146.433048, 6.191915], [-220.78125, 6.191915] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, 13.428494], [-146.433048, 13.428494], [-146.433048, 6.191915], [-220.78125, 13.428494] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, 13.428494], [-146.433048, 20.665073], [-146.433048, 13.428494], [-220.78125, 13.428494] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, 13.428494], [-220.78125, 20.665073], [-146.433048, 20.665073], [-220.78125, 13.428494] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, 20.665073], [-220.78125, 27.901653], [-146.433048, 20.665073], [-220.78125, 20.665073] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, 27.901653], [-146.433048, 27.901653], [-146.433048, 20.665073], [-220.78125, 27.901653] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, 27.901653], [-146.433048, 35.138232], [-146.433048, 27.901653], [-220.78125, 27.901653] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, 27.901653], [-220.78125, 35.138232], [-146.433048, 35.138232], [-220.78125, 27.901653] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, 35.138232], [-220.78125, 42.374811], [-146.433048, 35.138232], [-220.78125, 35.138232] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, 42.374811], [-146.433048, 42.374811], [-146.433048, 35.138232], [-220.78125, 42.374811] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, 42.374811], [-146.433048, 49.61139], [-146.433048, 42.374811], [-220.78125, 42.374811] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, 42.374811], [-220.78125, 49.61139], [-146.433048, 49.61139], [-220.78125, 42.374811] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, 49.61139], [-220.78125, 56.847969], [-146.433048, 49.61139], [-220.78125, 49.61139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, 56.847969], [-146.433048, 56.847969], [-146.433048, 49.61139], [-220.78125, 56.847969] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, 56.847969], [-146.433048, 64.084548], [-146.433048, 56.847969], [-220.78125, 56.847969] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, 56.847969], [-220.78125, 64.084548], [-146.433048, 64.084548], [-220.78125, 56.847969] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, 64.084548], [-220.78125, 71.321128], [-146.433048, 64.084548], [-220.78125, 64.084548] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, 71.321128], [-146.433048, 71.321128], [-146.433048, 64.084548], [-220.78125, 71.321128] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, 71.321128], [-146.433048, 78.557707], [-146.433048, 71.321128], [-220.78125, 71.321128] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, 71.321128], [-220.78125, 78.557707], [-146.433048, 78.557707], [-220.78125, 71.321128] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, -80.647035], [-146.433048, -73.410456], [-72.084846, -73.410456], [-146.433048, -80.647035] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, -80.647035], [-72.084846, -73.410456], [-72.084846, -80.647035], [-146.433048, -80.647035] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, -73.410456], [-146.433048, -66.173876], [-72.084846, -73.410456], [-146.433048, -73.410456] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, -66.173876], [-72.084846, -66.173876], [-72.084846, -73.410456], [-146.433048, -66.173876] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, -66.173876], [-146.433048, -58.937297], [-72.084846, -58.937297], [-146.433048, -66.173876] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, -66.173876], [-72.084846, -58.937297], [-72.084846, -66.173876], [-146.433048, -66.173876] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, -58.937297], [-146.433048, -51.700718], [-72.084846, -58.937297], [-146.433048, -58.937297] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, -51.700718], [-72.084846, -51.700718], [-72.084846, -58.937297], [-146.433048, -51.700718] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, -51.700718], [-146.433048, -44.464139], [-72.084846, -44.464139], [-146.433048, -51.700718] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, -51.700718], [-72.084846, -44.464139], [-72.084846, -51.700718], [-146.433048, -51.700718] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, -44.464139], [-146.433048, -37.22756], [-72.084846, -44.464139], [-146.433048, -44.464139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, -37.22756], [-72.084846, -37.22756], [-72.084846, -44.464139], [-146.433048, -37.22756] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, -37.22756], [-146.433048, -29.990981], [-72.084846, -29.990981], [-146.433048, -37.22756] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, -37.22756], [-72.084846, -29.990981], [-72.084846, -37.22756], [-146.433048, -37.22756] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, -29.990981], [-146.433048, -22.754401], [-72.084846, -29.990981], [-146.433048, -29.990981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, -22.754401], [-72.084846, -22.754401], [-72.084846, -29.990981], [-146.433048, -22.754401] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, -22.754401], [-146.433048, -15.517822], [-72.084846, -15.517822], [-146.433048, -22.754401] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, -22.754401], [-72.084846, -15.517822], [-72.084846, -22.754401], [-146.433048, -22.754401] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, -15.517822], [-146.433048, -8.281243], [-72.084846, -15.517822], [-146.433048, -15.517822] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, -8.281243], [-72.084846, -8.281243], [-72.084846, -15.517822], [-146.433048, -8.281243] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, -8.281243], [-146.433048, -1.044664], [-72.084846, -1.044664], [-146.433048, -8.281243] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, -8.281243], [-72.084846, -1.044664], [-72.084846, -8.281243], [-146.433048, -8.281243] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, -1.044664], [-146.433048, 6.191915], [-72.084846, -1.044664], [-146.433048, -1.044664] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, 6.191915], [-72.084846, 6.191915], [-72.084846, -1.044664], [-146.433048, 6.191915] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, 6.191915], [-146.433048, 13.428494], [-72.084846, 13.428494], [-146.433048, 6.191915] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, 6.191915], [-72.084846, 13.428494], [-72.084846, 6.191915], [-146.433048, 6.191915] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, 13.428494], [-146.433048, 20.665073], [-72.084846, 13.428494], [-146.433048, 13.428494] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, 20.665073], [-72.084846, 20.665073], [-72.084846, 13.428494], [-146.433048, 20.665073] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, 20.665073], [-146.433048, 27.901653], [-72.084846, 27.901653], [-146.433048, 20.665073] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, 20.665073], [-72.084846, 27.901653], [-72.084846, 20.665073], [-146.433048, 20.665073] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, 27.901653], [-146.433048, 35.138232], [-72.084846, 27.901653], [-146.433048, 27.901653] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, 35.138232], [-72.084846, 35.138232], [-72.084846, 27.901653], [-146.433048, 35.138232] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, 35.138232], [-146.433048, 42.374811], [-72.084846, 42.374811], [-146.433048, 35.138232] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, 35.138232], [-72.084846, 42.374811], [-72.084846, 35.138232], [-146.433048, 35.138232] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, 42.374811], [-146.433048, 49.61139], [-72.084846, 42.374811], [-146.433048, 42.374811] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, 49.61139], [-72.084846, 49.61139], [-72.084846, 42.374811], [-146.433048, 49.61139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, 49.61139], [-146.433048, 56.847969], [-72.084846, 56.847969], [-146.433048, 49.61139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, 49.61139], [-72.084846, 56.847969], [-72.084846, 49.61139], [-146.433048, 49.61139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, 56.847969], [-146.433048, 64.084548], [-72.084846, 56.847969], [-146.433048, 56.847969] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, 64.084548], [-72.084846, 64.084548], [-72.084846, 56.847969], [-146.433048, 64.084548] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, 64.084548], [-146.433048, 71.321128], [-72.084846, 71.321128], [-146.433048, 64.084548] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, 64.084548], [-72.084846, 71.321128], [-72.084846, 64.084548], [-146.433048, 64.084548] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, 71.321128], [-146.433048, 78.557707], [-72.084846, 71.321128], [-146.433048, 71.321128] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-146.433048, 78.557707], [-72.084846, 78.557707], [-72.084846, 71.321128], [-146.433048, 78.557707] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, -80.647035], [-72.084846, -73.410456], [2.263356, -80.647035], [-72.084846, -80.647035] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, -73.410456], [2.263356, -73.410456], [2.263356, -80.647035], [-72.084846, -73.410456] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, -73.410456], [2.263356, -66.173876], [2.263356, -73.410456], [-72.084846, -73.410456] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, -73.410456], [-72.084846, -66.173876], [2.263356, -66.173876], [-72.084846, -73.410456] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, -66.173876], [-72.084846, -58.937297], [2.263356, -66.173876], [-72.084846, -66.173876] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, -58.937297], [2.263356, -58.937297], [2.263356, -66.173876], [-72.084846, -58.937297] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, -58.937297], [2.263356, -51.700718], [2.263356, -58.937297], [-72.084846, -58.937297] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, -58.937297], [-72.084846, -51.700718], [2.263356, -51.700718], [-72.084846, -58.937297] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, -51.700718], [-72.084846, -44.464139], [2.263356, -51.700718], [-72.084846, -51.700718] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, -44.464139], [2.263356, -44.464139], [2.263356, -51.700718], [-72.084846, -44.464139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, -44.464139], [2.263356, -37.22756], [2.263356, -44.464139], [-72.084846, -44.464139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, -44.464139], [-72.084846, -37.22756], [2.263356, -37.22756], [-72.084846, -44.464139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, -37.22756], [-72.084846, -29.990981], [2.263356, -37.22756], [-72.084846, -37.22756] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, -29.990981], [2.263356, -29.990981], [2.263356, -37.22756], [-72.084846, -29.990981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, -29.990981], [2.263356, -22.754401], [2.263356, -29.990981], [-72.084846, -29.990981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, -29.990981], [-72.084846, -22.754401], [2.263356, -22.754401], [-72.084846, -29.990981] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, -22.754401], [-72.084846, -15.517822], [2.263356, -22.754401], [-72.084846, -22.754401] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, -15.517822], [2.263356, -15.517822], [2.263356, -22.754401], [-72.084846, -15.517822] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, -15.517822], [2.263356, -8.281243], [2.263356, -15.517822], [-72.084846, -15.517822] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, -15.517822], [-72.084846, -8.281243], [2.263356, -8.281243], [-72.084846, -15.517822] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, -8.281243], [-72.084846, -1.044664], [2.263356, -8.281243], [-72.084846, -8.281243] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, -1.044664], [2.263356, -1.044664], [2.263356, -8.281243], [-72.084846, -1.044664] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, -1.044664], [2.263356, 6.191915], [2.263356, -1.044664], [-72.084846, -1.044664] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, -1.044664], [-72.084846, 6.191915], [2.263356, 6.191915], [-72.084846, -1.044664] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, 6.191915], [-72.084846, 13.428494], [2.263356, 6.191915], [-72.084846, 6.191915] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, 13.428494], [2.263356, 13.428494], [2.263356, 6.191915], [-72.084846, 13.428494] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, 13.428494], [2.263356, 20.665073], [2.263356, 13.428494], [-72.084846, 13.428494] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, 13.428494], [-72.084846, 20.665073], [2.263356, 20.665073], [-72.084846, 13.428494] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, 20.665073], [-72.084846, 27.901653], [2.263356, 20.665073], [-72.084846, 20.665073] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, 27.901653], [2.263356, 27.901653], [2.263356, 20.665073], [-72.084846, 27.901653] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, 27.901653], [2.263356, 35.138232], [2.263356, 27.901653], [-72.084846, 27.901653] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, 27.901653], [-72.084846, 35.138232], [2.263356, 35.138232], [-72.084846, 27.901653] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, 35.138232], [-72.084846, 42.374811], [2.263356, 35.138232], [-72.084846, 35.138232] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, 42.374811], [2.263356, 42.374811], [2.263356, 35.138232], [-72.084846, 42.374811] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, 42.374811], [2.263356, 49.61139], [2.263356, 42.374811], [-72.084846, 42.374811] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, 42.374811], [-72.084846, 49.61139], [2.263356, 49.61139], [-72.084846, 42.374811] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, 49.61139], [-72.084846, 56.847969], [2.263356, 49.61139], [-72.084846, 49.61139] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, 56.847969], [2.263356, 56.847969], [2.263356, 49.61139], [-72.084846, 56.847969] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, 56.847969], [2.263356, 64.084548], [2.263356, 56.847969], [-72.084846, 56.847969] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, 56.847969], [-72.084846, 64.084548], [2.263356, 64.084548], [-72.084846, 56.847969] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, 64.084548], [-72.084846, 71.321128], [2.263356, 64.084548], [-72.084846, 64.084548] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, 71.321128], [2.263356, 71.321128], [2.263356, 64.084548], [-72.084846, 71.321128] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, 71.321128], [2.263356, 78.557707], [2.263356, 71.321128], [-72.084846, 71.321128] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-72.084846, 71.321128], [-72.084846, 78.557707], [2.263356, 78.557707], [-72.084846, 71.321128] ] ] } }, { "type": "Feature", "bbox": [-220.78125, -80.64703474739618, -29.53125, 78.34941069014629], "properties": { "stroke": "#F00", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-220.78125, -80.64703474739618], [-29.53125, -80.64703474739618], [-29.53125, 78.34941069014629], [-220.78125, 78.34941069014629], [-220.78125, -80.64703474739618] ] ] } } ] } ================================================ FILE: packages/turf-triangle-grid/test/out/fiji-10-miles.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.346069, -17.167034], [-180.346069, -17.022303], [-180.194589, -17.167034], [-180.346069, -17.167034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.346069, -17.022303], [-180.194589, -17.022303], [-180.194589, -17.167034], [-180.346069, -17.022303] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.346069, -17.022303], [-180.194589, -16.877571], [-180.194589, -17.022303], [-180.346069, -17.022303] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.346069, -17.022303], [-180.346069, -16.877571], [-180.194589, -16.877571], [-180.346069, -17.022303] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.346069, -16.877571], [-180.346069, -16.73284], [-180.194589, -16.877571], [-180.346069, -16.877571] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.346069, -16.73284], [-180.194589, -16.73284], [-180.194589, -16.877571], [-180.346069, -16.73284] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.346069, -16.73284], [-180.194589, -16.588108], [-180.194589, -16.73284], [-180.346069, -16.73284] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.346069, -16.73284], [-180.346069, -16.588108], [-180.194589, -16.588108], [-180.346069, -16.73284] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.346069, -16.588108], [-180.346069, -16.443377], [-180.194589, -16.588108], [-180.346069, -16.588108] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.346069, -16.443377], [-180.194589, -16.443377], [-180.194589, -16.588108], [-180.346069, -16.443377] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.194589, -17.167034], [-180.194589, -17.022303], [-180.043109, -17.022303], [-180.194589, -17.167034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.194589, -17.167034], [-180.043109, -17.022303], [-180.043109, -17.167034], [-180.194589, -17.167034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.194589, -17.022303], [-180.194589, -16.877571], [-180.043109, -17.022303], [-180.194589, -17.022303] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.194589, -16.877571], [-180.043109, -16.877571], [-180.043109, -17.022303], [-180.194589, -16.877571] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.194589, -16.877571], [-180.194589, -16.73284], [-180.043109, -16.73284], [-180.194589, -16.877571] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.194589, -16.877571], [-180.043109, -16.73284], [-180.043109, -16.877571], [-180.194589, -16.877571] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.194589, -16.73284], [-180.194589, -16.588108], [-180.043109, -16.73284], [-180.194589, -16.73284] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.194589, -16.588108], [-180.043109, -16.588108], [-180.043109, -16.73284], [-180.194589, -16.588108] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.194589, -16.588108], [-180.194589, -16.443377], [-180.043109, -16.443377], [-180.194589, -16.588108] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.194589, -16.588108], [-180.043109, -16.443377], [-180.043109, -16.588108], [-180.194589, -16.588108] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.043109, -17.167034], [-180.043109, -17.022303], [-179.891628, -17.167034], [-180.043109, -17.167034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.043109, -17.022303], [-179.891628, -17.022303], [-179.891628, -17.167034], [-180.043109, -17.022303] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.043109, -17.022303], [-179.891628, -16.877571], [-179.891628, -17.022303], [-180.043109, -17.022303] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.043109, -17.022303], [-180.043109, -16.877571], [-179.891628, -16.877571], [-180.043109, -17.022303] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.043109, -16.877571], [-180.043109, -16.73284], [-179.891628, -16.877571], [-180.043109, -16.877571] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.043109, -16.73284], [-179.891628, -16.73284], [-179.891628, -16.877571], [-180.043109, -16.73284] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.043109, -16.73284], [-179.891628, -16.588108], [-179.891628, -16.73284], [-180.043109, -16.73284] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.043109, -16.73284], [-180.043109, -16.588108], [-179.891628, -16.588108], [-180.043109, -16.73284] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.043109, -16.588108], [-180.043109, -16.443377], [-179.891628, -16.588108], [-180.043109, -16.588108] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180.043109, -16.443377], [-179.891628, -16.443377], [-179.891628, -16.588108], [-180.043109, -16.443377] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.891628, -17.167034], [-179.891628, -17.022303], [-179.740148, -17.022303], [-179.891628, -17.167034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.891628, -17.167034], [-179.740148, -17.022303], [-179.740148, -17.167034], [-179.891628, -17.167034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.891628, -17.022303], [-179.891628, -16.877571], [-179.740148, -17.022303], [-179.891628, -17.022303] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.891628, -16.877571], [-179.740148, -16.877571], [-179.740148, -17.022303], [-179.891628, -16.877571] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.891628, -16.877571], [-179.891628, -16.73284], [-179.740148, -16.73284], [-179.891628, -16.877571] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.891628, -16.877571], [-179.740148, -16.73284], [-179.740148, -16.877571], [-179.891628, -16.877571] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.891628, -16.73284], [-179.891628, -16.588108], [-179.740148, -16.73284], [-179.891628, -16.73284] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.891628, -16.588108], [-179.740148, -16.588108], [-179.740148, -16.73284], [-179.891628, -16.588108] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.891628, -16.588108], [-179.891628, -16.443377], [-179.740148, -16.443377], [-179.891628, -16.588108] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.891628, -16.588108], [-179.740148, -16.443377], [-179.740148, -16.588108], [-179.891628, -16.588108] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.740148, -17.167034], [-179.740148, -17.022303], [-179.588667, -17.167034], [-179.740148, -17.167034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.740148, -17.022303], [-179.588667, -17.022303], [-179.588667, -17.167034], [-179.740148, -17.022303] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.740148, -17.022303], [-179.588667, -16.877571], [-179.588667, -17.022303], [-179.740148, -17.022303] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.740148, -17.022303], [-179.740148, -16.877571], [-179.588667, -16.877571], [-179.740148, -17.022303] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.740148, -16.877571], [-179.740148, -16.73284], [-179.588667, -16.877571], [-179.740148, -16.877571] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.740148, -16.73284], [-179.588667, -16.73284], [-179.588667, -16.877571], [-179.740148, -16.73284] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.740148, -16.73284], [-179.588667, -16.588108], [-179.588667, -16.73284], [-179.740148, -16.73284] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.740148, -16.73284], [-179.740148, -16.588108], [-179.588667, -16.588108], [-179.740148, -16.73284] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.740148, -16.588108], [-179.740148, -16.443377], [-179.588667, -16.588108], [-179.740148, -16.588108] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.740148, -16.443377], [-179.588667, -16.443377], [-179.588667, -16.588108], [-179.740148, -16.443377] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.588667, -17.167034], [-179.588667, -17.022303], [-179.437187, -17.022303], [-179.588667, -17.167034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.588667, -17.167034], [-179.437187, -17.022303], [-179.437187, -17.167034], [-179.588667, -17.167034] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.588667, -17.022303], [-179.588667, -16.877571], [-179.437187, -17.022303], [-179.588667, -17.022303] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.588667, -16.877571], [-179.437187, -16.877571], [-179.437187, -17.022303], [-179.588667, -16.877571] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.588667, -16.877571], [-179.588667, -16.73284], [-179.437187, -16.73284], [-179.588667, -16.877571] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.588667, -16.877571], [-179.437187, -16.73284], [-179.437187, -16.877571], [-179.588667, -16.877571] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.588667, -16.73284], [-179.588667, -16.588108], [-179.437187, -16.73284], [-179.588667, -16.73284] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.588667, -16.588108], [-179.437187, -16.588108], [-179.437187, -16.73284], [-179.588667, -16.588108] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.588667, -16.588108], [-179.588667, -16.443377], [-179.437187, -16.443377], [-179.588667, -16.588108] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-179.588667, -16.588108], [-179.437187, -16.443377], [-179.437187, -16.588108], [-179.588667, -16.588108] ] ] } }, { "type": "Feature", "bbox": [ -180.3460693359375, -17.16703442146408, -179.5770263671875, -16.48349760264812 ], "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] ] ] } } ] } ================================================ FILE: packages/turf-triangle-grid/test/out/london-20-miles.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.620728, 51.237847], [-0.620728, 51.52731], [-0.158388, 51.237847], [-0.620728, 51.237847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.620728, 51.52731], [-0.158388, 51.52731], [-0.158388, 51.237847], [-0.620728, 51.52731] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.620728, 51.52731], [-0.158388, 51.816773], [-0.158388, 51.52731], [-0.620728, 51.52731] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.620728, 51.52731], [-0.620728, 51.816773], [-0.158388, 51.816773], [-0.620728, 51.52731] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.158388, 51.237847], [-0.158388, 51.52731], [0.303952, 51.52731], [-0.158388, 51.237847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.158388, 51.237847], [0.303952, 51.52731], [0.303952, 51.237847], [-0.158388, 51.237847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.158388, 51.52731], [-0.158388, 51.816773], [0.303952, 51.52731], [-0.158388, 51.52731] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.158388, 51.816773], [0.303952, 51.816773], [0.303952, 51.52731], [-0.158388, 51.816773] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.303952, 51.237847], [0.303952, 51.52731], [0.766291, 51.237847], [0.303952, 51.237847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.303952, 51.52731], [0.766291, 51.52731], [0.766291, 51.237847], [0.303952, 51.52731] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.303952, 51.52731], [0.766291, 51.816773], [0.766291, 51.52731], [0.303952, 51.52731] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [0.303952, 51.52731], [0.303952, 51.816773], [0.766291, 51.816773], [0.303952, 51.52731] ] ] } }, { "type": "Feature", "bbox": [-0.6207275390625, 51.23784668914442, 0.439453125, 51.767839887322154], "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] ] ] } } ] } ================================================ FILE: packages/turf-triangle-grid/test/out/piedemont-mask.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.629316, 44.417841], [6.881069, 44.598755], [6.881069, 44.417841], [6.629316, 44.417841] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.629316, 44.77967], [6.629316, 44.960584], [6.881069, 44.960584], [6.629316, 44.77967] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.629316, 44.77967], [6.881069, 44.960584], [6.881069, 44.77967], [6.629316, 44.77967] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.629316, 44.960584], [6.629316, 45.141499], [6.881069, 44.960584], [6.629316, 44.960584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.629316, 45.141499], [6.881069, 45.141499], [6.881069, 44.960584], [6.629316, 45.141499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.629316, 45.141499], [6.881069, 45.322413], [6.881069, 45.141499], [6.629316, 45.141499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.881069, 44.236926], [7.132822, 44.236926], [7.132822, 44.056012], [6.881069, 44.236926] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.881069, 44.236926], [7.132822, 44.417841], [7.132822, 44.236926], [6.881069, 44.236926] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.881069, 44.236926], [6.881069, 44.417841], [7.132822, 44.417841], [6.881069, 44.236926] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.881069, 44.417841], [6.881069, 44.598755], [7.132822, 44.417841], [6.881069, 44.417841] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.881069, 44.598755], [7.132822, 44.598755], [7.132822, 44.417841], [6.881069, 44.598755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.881069, 44.598755], [7.132822, 44.77967], [7.132822, 44.598755], [6.881069, 44.598755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.881069, 44.598755], [6.881069, 44.77967], [7.132822, 44.77967], [6.881069, 44.598755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.881069, 44.77967], [6.881069, 44.960584], [7.132822, 44.77967], [6.881069, 44.77967] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.881069, 44.960584], [7.132822, 44.960584], [7.132822, 44.77967], [6.881069, 44.960584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.881069, 44.960584], [7.132822, 45.141499], [7.132822, 44.960584], [6.881069, 44.960584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.881069, 44.960584], [6.881069, 45.141499], [7.132822, 45.141499], [6.881069, 44.960584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.881069, 45.141499], [6.881069, 45.322413], [7.132822, 45.141499], [6.881069, 45.141499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.881069, 45.322413], [7.132822, 45.322413], [7.132822, 45.141499], [6.881069, 45.322413] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [6.881069, 45.322413], [7.132822, 45.503328], [7.132822, 45.322413], [6.881069, 45.322413] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.132822, 44.056012], [7.132822, 44.236926], [7.384575, 44.236926], [7.132822, 44.056012] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.132822, 44.056012], [7.384575, 44.236926], [7.384575, 44.056012], [7.132822, 44.056012] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.132822, 44.236926], [7.132822, 44.417841], [7.384575, 44.236926], [7.132822, 44.236926] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.132822, 44.417841], [7.384575, 44.417841], [7.384575, 44.236926], [7.132822, 44.417841] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.132822, 44.417841], [7.132822, 44.598755], [7.384575, 44.598755], [7.132822, 44.417841] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.132822, 44.417841], [7.384575, 44.598755], [7.384575, 44.417841], [7.132822, 44.417841] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.132822, 44.598755], [7.132822, 44.77967], [7.384575, 44.598755], [7.132822, 44.598755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.132822, 44.77967], [7.384575, 44.77967], [7.384575, 44.598755], [7.132822, 44.77967] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.132822, 44.77967], [7.132822, 44.960584], [7.384575, 44.960584], [7.132822, 44.77967] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.132822, 44.77967], [7.384575, 44.960584], [7.384575, 44.77967], [7.132822, 44.77967] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.132822, 44.960584], [7.132822, 45.141499], [7.384575, 44.960584], [7.132822, 44.960584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.132822, 45.141499], [7.384575, 45.141499], [7.384575, 44.960584], [7.132822, 45.141499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.132822, 45.141499], [7.132822, 45.322413], [7.384575, 45.322413], [7.132822, 45.141499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.132822, 45.141499], [7.384575, 45.322413], [7.384575, 45.141499], [7.132822, 45.141499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.132822, 45.322413], [7.132822, 45.503328], [7.384575, 45.322413], [7.132822, 45.322413] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.132822, 45.503328], [7.384575, 45.503328], [7.384575, 45.322413], [7.132822, 45.503328] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.132822, 45.503328], [7.384575, 45.684242], [7.384575, 45.503328], [7.132822, 45.503328] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.384575, 44.056012], [7.384575, 44.236926], [7.636328, 44.056012], [7.384575, 44.056012] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.384575, 44.236926], [7.636328, 44.236926], [7.636328, 44.056012], [7.384575, 44.236926] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.384575, 44.236926], [7.636328, 44.417841], [7.636328, 44.236926], [7.384575, 44.236926] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.384575, 44.236926], [7.384575, 44.417841], [7.636328, 44.417841], [7.384575, 44.236926] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.384575, 44.417841], [7.384575, 44.598755], [7.636328, 44.417841], [7.384575, 44.417841] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.384575, 44.598755], [7.636328, 44.598755], [7.636328, 44.417841], [7.384575, 44.598755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.384575, 44.598755], [7.636328, 44.77967], [7.636328, 44.598755], [7.384575, 44.598755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.384575, 44.598755], [7.384575, 44.77967], [7.636328, 44.77967], [7.384575, 44.598755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.384575, 44.77967], [7.384575, 44.960584], [7.636328, 44.77967], [7.384575, 44.77967] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.384575, 44.960584], [7.636328, 44.960584], [7.636328, 44.77967], [7.384575, 44.960584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.384575, 44.960584], [7.636328, 45.141499], [7.636328, 44.960584], [7.384575, 44.960584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.384575, 44.960584], [7.384575, 45.141499], [7.636328, 45.141499], [7.384575, 44.960584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.384575, 45.141499], [7.384575, 45.322413], [7.636328, 45.141499], [7.384575, 45.141499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.384575, 45.322413], [7.636328, 45.322413], [7.636328, 45.141499], [7.384575, 45.322413] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.384575, 45.322413], [7.636328, 45.503328], [7.636328, 45.322413], [7.384575, 45.322413] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.384575, 45.322413], [7.384575, 45.503328], [7.636328, 45.503328], [7.384575, 45.322413] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.384575, 45.503328], [7.384575, 45.684242], [7.636328, 45.503328], [7.384575, 45.503328] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.384575, 45.684242], [7.636328, 45.684242], [7.636328, 45.503328], [7.384575, 45.684242] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.636328, 44.056012], [7.636328, 44.236926], [7.888081, 44.236926], [7.636328, 44.056012] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.636328, 44.056012], [7.888081, 44.236926], [7.888081, 44.056012], [7.636328, 44.056012] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.636328, 44.236926], [7.636328, 44.417841], [7.888081, 44.236926], [7.636328, 44.236926] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.636328, 44.417841], [7.888081, 44.417841], [7.888081, 44.236926], [7.636328, 44.417841] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.636328, 44.417841], [7.636328, 44.598755], [7.888081, 44.598755], [7.636328, 44.417841] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.636328, 44.417841], [7.888081, 44.598755], [7.888081, 44.417841], [7.636328, 44.417841] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.636328, 44.598755], [7.636328, 44.77967], [7.888081, 44.598755], [7.636328, 44.598755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.636328, 44.77967], [7.888081, 44.77967], [7.888081, 44.598755], [7.636328, 44.77967] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.636328, 44.77967], [7.636328, 44.960584], [7.888081, 44.960584], [7.636328, 44.77967] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.636328, 44.77967], [7.888081, 44.960584], [7.888081, 44.77967], [7.636328, 44.77967] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.636328, 44.960584], [7.636328, 45.141499], [7.888081, 44.960584], [7.636328, 44.960584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.636328, 45.141499], [7.888081, 45.141499], [7.888081, 44.960584], [7.636328, 45.141499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.636328, 45.141499], [7.636328, 45.322413], [7.888081, 45.322413], [7.636328, 45.141499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.636328, 45.141499], [7.888081, 45.322413], [7.888081, 45.141499], [7.636328, 45.141499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.636328, 45.322413], [7.636328, 45.503328], [7.888081, 45.322413], [7.636328, 45.322413] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.636328, 45.503328], [7.888081, 45.503328], [7.888081, 45.322413], [7.636328, 45.503328] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.636328, 45.503328], [7.636328, 45.684242], [7.888081, 45.684242], [7.636328, 45.503328] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.636328, 45.503328], [7.888081, 45.684242], [7.888081, 45.503328], [7.636328, 45.503328] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.636328, 45.865156], [7.888081, 45.865156], [7.888081, 45.684242], [7.636328, 45.865156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.636328, 45.865156], [7.888081, 46.046071], [7.888081, 45.865156], [7.636328, 45.865156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.888081, 44.056012], [7.888081, 44.236926], [8.139834, 44.056012], [7.888081, 44.056012] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.888081, 44.236926], [8.139834, 44.236926], [8.139834, 44.056012], [7.888081, 44.236926] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.888081, 44.236926], [8.139834, 44.417841], [8.139834, 44.236926], [7.888081, 44.236926] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.888081, 44.236926], [7.888081, 44.417841], [8.139834, 44.417841], [7.888081, 44.236926] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.888081, 44.417841], [7.888081, 44.598755], [8.139834, 44.417841], [7.888081, 44.417841] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.888081, 44.598755], [8.139834, 44.598755], [8.139834, 44.417841], [7.888081, 44.598755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.888081, 44.598755], [8.139834, 44.77967], [8.139834, 44.598755], [7.888081, 44.598755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.888081, 44.598755], [7.888081, 44.77967], [8.139834, 44.77967], [7.888081, 44.598755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.888081, 44.77967], [7.888081, 44.960584], [8.139834, 44.77967], [7.888081, 44.77967] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.888081, 44.960584], [8.139834, 44.960584], [8.139834, 44.77967], [7.888081, 44.960584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.888081, 44.960584], [8.139834, 45.141499], [8.139834, 44.960584], [7.888081, 44.960584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.888081, 44.960584], [7.888081, 45.141499], [8.139834, 45.141499], [7.888081, 44.960584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.888081, 45.141499], [7.888081, 45.322413], [8.139834, 45.141499], [7.888081, 45.141499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.888081, 45.322413], [8.139834, 45.322413], [8.139834, 45.141499], [7.888081, 45.322413] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.888081, 45.322413], [8.139834, 45.503328], [8.139834, 45.322413], [7.888081, 45.322413] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.888081, 45.322413], [7.888081, 45.503328], [8.139834, 45.503328], [7.888081, 45.322413] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.888081, 45.503328], [7.888081, 45.684242], [8.139834, 45.503328], [7.888081, 45.503328] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.888081, 45.684242], [8.139834, 45.684242], [8.139834, 45.503328], [7.888081, 45.684242] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.888081, 45.684242], [8.139834, 45.865156], [8.139834, 45.684242], [7.888081, 45.684242] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.888081, 45.684242], [7.888081, 45.865156], [8.139834, 45.865156], [7.888081, 45.684242] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.888081, 45.865156], [7.888081, 46.046071], [8.139834, 45.865156], [7.888081, 45.865156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.888081, 46.046071], [8.139834, 46.046071], [8.139834, 45.865156], [7.888081, 46.046071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.888081, 46.046071], [8.139834, 46.226985], [8.139834, 46.046071], [7.888081, 46.046071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.888081, 46.046071], [7.888081, 46.226985], [8.139834, 46.226985], [7.888081, 46.046071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.888081, 46.226985], [7.888081, 46.4079], [8.139834, 46.226985], [7.888081, 46.226985] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [7.888081, 46.4079], [8.139834, 46.4079], [8.139834, 46.226985], [7.888081, 46.4079] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.139834, 44.236926], [8.139834, 44.417841], [8.391587, 44.236926], [8.139834, 44.236926] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.139834, 44.417841], [8.391587, 44.417841], [8.391587, 44.236926], [8.139834, 44.417841] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.139834, 44.417841], [8.139834, 44.598755], [8.391587, 44.598755], [8.139834, 44.417841] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.139834, 44.417841], [8.391587, 44.598755], [8.391587, 44.417841], [8.139834, 44.417841] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.139834, 44.598755], [8.139834, 44.77967], [8.391587, 44.598755], [8.139834, 44.598755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.139834, 44.77967], [8.391587, 44.77967], [8.391587, 44.598755], [8.139834, 44.77967] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.139834, 44.77967], [8.139834, 44.960584], [8.391587, 44.960584], [8.139834, 44.77967] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.139834, 44.77967], [8.391587, 44.960584], [8.391587, 44.77967], [8.139834, 44.77967] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.139834, 44.960584], [8.139834, 45.141499], [8.391587, 44.960584], [8.139834, 44.960584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.139834, 45.141499], [8.391587, 45.141499], [8.391587, 44.960584], [8.139834, 45.141499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.139834, 45.141499], [8.139834, 45.322413], [8.391587, 45.322413], [8.139834, 45.141499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.139834, 45.141499], [8.391587, 45.322413], [8.391587, 45.141499], [8.139834, 45.141499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.139834, 45.322413], [8.139834, 45.503328], [8.391587, 45.322413], [8.139834, 45.322413] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.139834, 45.503328], [8.391587, 45.503328], [8.391587, 45.322413], [8.139834, 45.503328] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.139834, 45.503328], [8.139834, 45.684242], [8.391587, 45.684242], [8.139834, 45.503328] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.139834, 45.503328], [8.391587, 45.684242], [8.391587, 45.503328], [8.139834, 45.503328] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.139834, 45.684242], [8.139834, 45.865156], [8.391587, 45.684242], [8.139834, 45.684242] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.139834, 45.865156], [8.391587, 45.865156], [8.391587, 45.684242], [8.139834, 45.865156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.139834, 45.865156], [8.139834, 46.046071], [8.391587, 46.046071], [8.139834, 45.865156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.139834, 45.865156], [8.391587, 46.046071], [8.391587, 45.865156], [8.139834, 45.865156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.139834, 46.046071], [8.139834, 46.226985], [8.391587, 46.046071], [8.139834, 46.046071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.139834, 46.226985], [8.391587, 46.226985], [8.391587, 46.046071], [8.139834, 46.226985] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.139834, 46.226985], [8.139834, 46.4079], [8.391587, 46.4079], [8.139834, 46.226985] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.139834, 46.226985], [8.391587, 46.4079], [8.391587, 46.226985], [8.139834, 46.226985] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.139834, 46.4079], [8.139834, 46.588814], [8.391587, 46.4079], [8.139834, 46.4079] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.139834, 46.588814], [8.391587, 46.588814], [8.391587, 46.4079], [8.139834, 46.588814] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.391587, 44.417841], [8.391587, 44.598755], [8.64334, 44.417841], [8.391587, 44.417841] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.391587, 44.598755], [8.64334, 44.598755], [8.64334, 44.417841], [8.391587, 44.598755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.391587, 44.598755], [8.64334, 44.77967], [8.64334, 44.598755], [8.391587, 44.598755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.391587, 44.598755], [8.391587, 44.77967], [8.64334, 44.77967], [8.391587, 44.598755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.391587, 44.77967], [8.391587, 44.960584], [8.64334, 44.77967], [8.391587, 44.77967] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.391587, 44.960584], [8.64334, 44.960584], [8.64334, 44.77967], [8.391587, 44.960584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.391587, 44.960584], [8.64334, 45.141499], [8.64334, 44.960584], [8.391587, 44.960584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.391587, 44.960584], [8.391587, 45.141499], [8.64334, 45.141499], [8.391587, 44.960584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.391587, 45.141499], [8.391587, 45.322413], [8.64334, 45.141499], [8.391587, 45.141499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.391587, 45.322413], [8.64334, 45.322413], [8.64334, 45.141499], [8.391587, 45.322413] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.391587, 45.322413], [8.64334, 45.503328], [8.64334, 45.322413], [8.391587, 45.322413] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.391587, 45.322413], [8.391587, 45.503328], [8.64334, 45.503328], [8.391587, 45.322413] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.391587, 45.503328], [8.391587, 45.684242], [8.64334, 45.503328], [8.391587, 45.503328] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.391587, 45.684242], [8.64334, 45.684242], [8.64334, 45.503328], [8.391587, 45.684242] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.391587, 45.684242], [8.64334, 45.865156], [8.64334, 45.684242], [8.391587, 45.684242] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.391587, 45.684242], [8.391587, 45.865156], [8.64334, 45.865156], [8.391587, 45.684242] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.391587, 45.865156], [8.391587, 46.046071], [8.64334, 45.865156], [8.391587, 45.865156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.391587, 46.046071], [8.64334, 46.046071], [8.64334, 45.865156], [8.391587, 46.046071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.391587, 46.046071], [8.64334, 46.226985], [8.64334, 46.046071], [8.391587, 46.046071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.391587, 46.046071], [8.391587, 46.226985], [8.64334, 46.226985], [8.391587, 46.046071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.391587, 46.226985], [8.391587, 46.4079], [8.64334, 46.226985], [8.391587, 46.226985] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.391587, 46.4079], [8.64334, 46.4079], [8.64334, 46.226985], [8.391587, 46.4079] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.391587, 46.4079], [8.64334, 46.588814], [8.64334, 46.4079], [8.391587, 46.4079] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.391587, 46.4079], [8.391587, 46.588814], [8.64334, 46.588814], [8.391587, 46.4079] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.64334, 44.417841], [8.64334, 44.598755], [8.895093, 44.598755], [8.64334, 44.417841] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.64334, 44.417841], [8.895093, 44.598755], [8.895093, 44.417841], [8.64334, 44.417841] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.64334, 44.598755], [8.64334, 44.77967], [8.895093, 44.598755], [8.64334, 44.598755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.64334, 44.77967], [8.895093, 44.77967], [8.895093, 44.598755], [8.64334, 44.77967] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.64334, 44.77967], [8.64334, 44.960584], [8.895093, 44.960584], [8.64334, 44.77967] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.64334, 44.77967], [8.895093, 44.960584], [8.895093, 44.77967], [8.64334, 44.77967] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.64334, 44.960584], [8.64334, 45.141499], [8.895093, 44.960584], [8.64334, 44.960584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.64334, 45.141499], [8.895093, 45.141499], [8.895093, 44.960584], [8.64334, 45.141499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.64334, 45.141499], [8.64334, 45.322413], [8.895093, 45.322413], [8.64334, 45.141499] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.64334, 45.322413], [8.64334, 45.503328], [8.895093, 45.322413], [8.64334, 45.322413] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.64334, 45.503328], [8.895093, 45.503328], [8.895093, 45.322413], [8.64334, 45.503328] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.64334, 45.503328], [8.64334, 45.684242], [8.895093, 45.684242], [8.64334, 45.503328] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.64334, 45.503328], [8.895093, 45.684242], [8.895093, 45.503328], [8.64334, 45.503328] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.64334, 45.684242], [8.64334, 45.865156], [8.895093, 45.684242], [8.64334, 45.684242] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.64334, 45.865156], [8.64334, 46.046071], [8.895093, 46.046071], [8.64334, 45.865156] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.64334, 46.046071], [8.64334, 46.226985], [8.895093, 46.046071], [8.64334, 46.046071] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.895093, 44.417841], [8.895093, 44.598755], [9.146846, 44.417841], [8.895093, 44.417841] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.895093, 44.598755], [9.146846, 44.598755], [9.146846, 44.417841], [8.895093, 44.598755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.895093, 44.598755], [9.146846, 44.77967], [9.146846, 44.598755], [8.895093, 44.598755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.895093, 44.598755], [8.895093, 44.77967], [9.146846, 44.77967], [8.895093, 44.598755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.895093, 44.77967], [8.895093, 44.960584], [9.146846, 44.77967], [8.895093, 44.77967] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.895093, 44.960584], [9.146846, 44.960584], [9.146846, 44.77967], [8.895093, 44.960584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.895093, 44.960584], [9.146846, 45.141499], [9.146846, 44.960584], [8.895093, 44.960584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [8.895093, 44.960584], [8.895093, 45.141499], [9.146846, 45.141499], [8.895093, 44.960584] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [9.146846, 44.417841], [9.146846, 44.598755], [9.398599, 44.598755], [9.146846, 44.417841] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [9.146846, 44.598755], [9.146846, 44.77967], [9.398599, 44.598755], [9.146846, 44.598755] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [9.146846, 44.77967], [9.398599, 44.77967], [9.398599, 44.598755], [9.146846, 44.77967] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [9.146846, 44.77967], [9.146846, 44.960584], [9.398599, 44.960584], [9.146846, 44.77967] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [9.146846, 44.77967], [9.398599, 44.960584], [9.398599, 44.77967], [9.146846, 44.77967] ] ] } }, { "type": "Feature", "bbox": [6.3775634765625, 44.05601169578525, 9.437255859375, 46.50595444552049], "properties": { "stroke": "#F00", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [6.3775634765625, 44.05601169578525], [9.437255859375, 44.05601169578525], [9.437255859375, 46.50595444552049], [6.3775634765625, 46.50595444552049], [6.3775634765625, 44.05601169578525] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "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] ] ] } } ] } ================================================ FILE: packages/turf-triangle-grid/test/out/properties.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.131519, 41.405334], [2.143504, 41.405334], [2.143504, 41.396341], [2.131519, 41.405334] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.131519, 41.405334], [2.143504, 41.414327], [2.143504, 41.405334], [2.131519, 41.405334] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.131519, 41.405334], [2.131519, 41.414327], [2.143504, 41.414327], [2.131519, 41.405334] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.143504, 41.396341], [2.15549, 41.396341], [2.15549, 41.387347], [2.143504, 41.396341] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.143504, 41.396341], [2.143504, 41.405334], [2.15549, 41.405334], [2.143504, 41.396341] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.143504, 41.396341], [2.15549, 41.405334], [2.15549, 41.396341], [2.143504, 41.396341] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.143504, 41.405334], [2.143504, 41.414327], [2.15549, 41.405334], [2.143504, 41.405334] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.143504, 41.414327], [2.15549, 41.414327], [2.15549, 41.405334], [2.143504, 41.414327] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.15549, 41.387347], [2.167475, 41.396341], [2.167475, 41.387347], [2.15549, 41.387347] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.15549, 41.387347], [2.15549, 41.396341], [2.167475, 41.396341], [2.15549, 41.387347] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.15549, 41.396341], [2.15549, 41.405334], [2.167475, 41.396341], [2.15549, 41.396341] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.15549, 41.405334], [2.167475, 41.405334], [2.167475, 41.396341], [2.15549, 41.405334] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.15549, 41.405334], [2.167475, 41.414327], [2.167475, 41.405334], [2.15549, 41.405334] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.15549, 41.405334], [2.15549, 41.414327], [2.167475, 41.414327], [2.15549, 41.405334] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.15549, 41.414327], [2.15549, 41.42332], [2.167475, 41.414327], [2.15549, 41.414327] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.15549, 41.42332], [2.167475, 41.42332], [2.167475, 41.414327], [2.15549, 41.42332] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.15549, 41.42332], [2.167475, 41.432314], [2.167475, 41.42332], [2.15549, 41.42332] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.167475, 41.378354], [2.167475, 41.387347], [2.17946, 41.387347], [2.167475, 41.378354] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.167475, 41.378354], [2.17946, 41.387347], [2.17946, 41.378354], [2.167475, 41.378354] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.167475, 41.387347], [2.167475, 41.396341], [2.17946, 41.387347], [2.167475, 41.387347] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.167475, 41.396341], [2.17946, 41.396341], [2.17946, 41.387347], [2.167475, 41.396341] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.167475, 41.396341], [2.167475, 41.405334], [2.17946, 41.405334], [2.167475, 41.396341] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.167475, 41.396341], [2.17946, 41.405334], [2.17946, 41.396341], [2.167475, 41.396341] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.167475, 41.405334], [2.167475, 41.414327], [2.17946, 41.405334], [2.167475, 41.405334] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.167475, 41.414327], [2.17946, 41.414327], [2.17946, 41.405334], [2.167475, 41.414327] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.167475, 41.414327], [2.167475, 41.42332], [2.17946, 41.42332], [2.167475, 41.414327] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.167475, 41.414327], [2.17946, 41.42332], [2.17946, 41.414327], [2.167475, 41.414327] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.167475, 41.42332], [2.167475, 41.432314], [2.17946, 41.42332], [2.167475, 41.42332] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.167475, 41.432314], [2.17946, 41.432314], [2.17946, 41.42332], [2.167475, 41.432314] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.167475, 41.432314], [2.167475, 41.441307], [2.17946, 41.441307], [2.167475, 41.432314] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.167475, 41.432314], [2.17946, 41.441307], [2.17946, 41.432314], [2.167475, 41.432314] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.167475, 41.441307], [2.167475, 41.4503], [2.17946, 41.441307], [2.167475, 41.441307] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.17946, 41.378354], [2.17946, 41.387347], [2.191445, 41.378354], [2.17946, 41.378354] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.17946, 41.387347], [2.191445, 41.387347], [2.191445, 41.378354], [2.17946, 41.387347] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.17946, 41.387347], [2.191445, 41.396341], [2.191445, 41.387347], [2.17946, 41.387347] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.17946, 41.387347], [2.17946, 41.396341], [2.191445, 41.396341], [2.17946, 41.387347] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.17946, 41.396341], [2.17946, 41.405334], [2.191445, 41.396341], [2.17946, 41.396341] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.17946, 41.405334], [2.191445, 41.405334], [2.191445, 41.396341], [2.17946, 41.405334] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.17946, 41.405334], [2.191445, 41.414327], [2.191445, 41.405334], [2.17946, 41.405334] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.17946, 41.405334], [2.17946, 41.414327], [2.191445, 41.414327], [2.17946, 41.405334] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.17946, 41.414327], [2.17946, 41.42332], [2.191445, 41.414327], [2.17946, 41.414327] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.17946, 41.42332], [2.191445, 41.42332], [2.191445, 41.414327], [2.17946, 41.42332] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.17946, 41.42332], [2.191445, 41.432314], [2.191445, 41.42332], [2.17946, 41.42332] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.17946, 41.42332], [2.17946, 41.432314], [2.191445, 41.432314], [2.17946, 41.42332] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.17946, 41.432314], [2.17946, 41.441307], [2.191445, 41.432314], [2.17946, 41.432314] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.191445, 41.378354], [2.191445, 41.387347], [2.20343, 41.387347], [2.191445, 41.378354] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.191445, 41.387347], [2.191445, 41.396341], [2.20343, 41.387347], [2.191445, 41.387347] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.191445, 41.396341], [2.20343, 41.396341], [2.20343, 41.387347], [2.191445, 41.396341] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.191445, 41.396341], [2.191445, 41.405334], [2.20343, 41.405334], [2.191445, 41.396341] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.191445, 41.396341], [2.20343, 41.405334], [2.20343, 41.396341], [2.191445, 41.396341] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.191445, 41.405334], [2.191445, 41.414327], [2.20343, 41.405334], [2.191445, 41.405334] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.191445, 41.414327], [2.20343, 41.414327], [2.20343, 41.405334], [2.191445, 41.414327] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.191445, 41.414327], [2.191445, 41.42332], [2.20343, 41.42332], [2.191445, 41.414327] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.191445, 41.414327], [2.20343, 41.42332], [2.20343, 41.414327], [2.191445, 41.414327] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.191445, 41.42332], [2.191445, 41.432314], [2.20343, 41.42332], [2.191445, 41.42332] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.191445, 41.432314], [2.20343, 41.432314], [2.20343, 41.42332], [2.191445, 41.432314] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.20343, 41.396341], [2.20343, 41.405334], [2.215416, 41.396341], [2.20343, 41.396341] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.20343, 41.405334], [2.215416, 41.405334], [2.215416, 41.396341], [2.20343, 41.405334] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.20343, 41.405334], [2.215416, 41.414327], [2.215416, 41.405334], [2.20343, 41.405334] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.20343, 41.405334], [2.20343, 41.414327], [2.215416, 41.414327], [2.20343, 41.405334] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.20343, 41.414327], [2.20343, 41.42332], [2.215416, 41.414327], [2.20343, 41.414327] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.20343, 41.42332], [2.215416, 41.42332], [2.215416, 41.414327], [2.20343, 41.42332] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.20343, 41.42332], [2.215416, 41.432314], [2.215416, 41.42332], [2.20343, 41.42332] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.20343, 41.42332], [2.20343, 41.432314], [2.215416, 41.432314], [2.20343, 41.42332] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.215416, 41.405334], [2.215416, 41.414327], [2.227401, 41.405334], [2.215416, 41.405334] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.215416, 41.414327], [2.227401, 41.414327], [2.227401, 41.405334], [2.215416, 41.414327] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.215416, 41.414327], [2.215416, 41.42332], [2.227401, 41.42332], [2.215416, 41.414327] ] ] } }, { "type": "Feature", "properties": { "marker-color": "#0ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.215416, 41.414327], [2.227401, 41.42332], [2.227401, 41.414327], [2.215416, 41.414327] ] ] } }, { "type": "Feature", "bbox": [ 2.131519317626953, 41.37835427979543, 2.2264480590820312, 41.44388449101261 ], "properties": { "stroke": "#F00", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.131519317626953, 41.37835427979543], [2.2264480590820312, 41.37835427979543], [2.2264480590820312, 41.44388449101261], [2.131519317626953, 41.44388449101261], [2.131519317626953, 41.37835427979543] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "stroke-width": 6, "fill-opacity": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.223186492919922, 41.416856461155575], [2.1716880798339844, 41.44182560856202], [2.1636199951171875, 41.41608406639095], [2.1334075927734375, 41.407200866420744], [2.1845626831054683, 41.37977115211044], [2.223186492919922, 41.416856461155575] ] ] } } ] } ================================================ FILE: packages/turf-triangle-grid/test/out/resolute.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.877686, 74.468491], [-95.877686, 74.649405], [-95.20202, 74.468491], [-95.877686, 74.468491] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.877686, 74.649405], [-95.20202, 74.649405], [-95.20202, 74.468491], [-95.877686, 74.649405] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.877686, 74.649405], [-95.20202, 74.83032], [-95.20202, 74.649405], [-95.877686, 74.649405] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.877686, 74.649405], [-95.877686, 74.83032], [-95.20202, 74.83032], [-95.877686, 74.649405] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.877686, 74.83032], [-95.877686, 75.011234], [-95.20202, 74.83032], [-95.877686, 74.83032] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.877686, 75.011234], [-95.20202, 75.011234], [-95.20202, 74.83032], [-95.877686, 75.011234] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.20202, 74.468491], [-95.20202, 74.649405], [-94.526355, 74.649405], [-95.20202, 74.468491] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.20202, 74.468491], [-94.526355, 74.649405], [-94.526355, 74.468491], [-95.20202, 74.468491] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.20202, 74.649405], [-95.20202, 74.83032], [-94.526355, 74.649405], [-95.20202, 74.649405] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.20202, 74.83032], [-94.526355, 74.83032], [-94.526355, 74.649405], [-95.20202, 74.83032] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.20202, 74.83032], [-95.20202, 75.011234], [-94.526355, 75.011234], [-95.20202, 74.83032] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-95.20202, 74.83032], [-94.526355, 75.011234], [-94.526355, 74.83032], [-95.20202, 74.83032] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.526355, 74.468491], [-94.526355, 74.649405], [-93.85069, 74.468491], [-94.526355, 74.468491] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.526355, 74.649405], [-93.85069, 74.649405], [-93.85069, 74.468491], [-94.526355, 74.649405] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.526355, 74.649405], [-93.85069, 74.83032], [-93.85069, 74.649405], [-94.526355, 74.649405] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.526355, 74.649405], [-94.526355, 74.83032], [-93.85069, 74.83032], [-94.526355, 74.649405] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.526355, 74.83032], [-94.526355, 75.011234], [-93.85069, 74.83032], [-94.526355, 74.83032] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-94.526355, 75.011234], [-93.85069, 75.011234], [-93.85069, 74.83032], [-94.526355, 75.011234] ] ] } }, { "type": "Feature", "bbox": [-95.877685546875, 74.46849062193377, -94.031982421875, 74.90226611990785], "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] ] ] } } ] } ================================================ FILE: packages/turf-triangle-grid/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { bboxPolygon as bboxPoly } from "@turf/bbox-polygon"; import { truncate } from "@turf/truncate"; import { triangleGrid } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; let fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, json: loadJsonFileSync(directories.in + filename), }; }); test("triangle-grid", (t) => { for (const { name, json } of fixtures) { const { bbox, cellSide } = json; const options = json; const result = truncate(triangleGrid(bbox, cellSide, options)); // Add styled GeoJSON to the result const poly = bboxPoly(bbox); poly.properties = { stroke: "#F00", "stroke-width": 6, "fill-opacity": 0, }; result.features.push(poly); if (options.mask) { options.mask.properties = { stroke: "#00F", "stroke-width": 6, "fill-opacity": 0, }; result.features.push(options.mask); } if (process.env.REGEN) writeJsonFileSync(directories.out + name + ".geojson", result); t.deepEqual( result, loadJsonFileSync(directories.out + name + ".geojson"), name ); } t.end(); }); ================================================ FILE: packages/turf-triangle-grid/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-triangle-grid/types.ts ================================================ import { BBox } from "geojson"; import { triangleGrid } from "./index.js"; // prettier-ignore const bbox: BBox = [ -96.6357421875, 31.12819929911196, -84.9462890625, 40.58058466412764, ]; const grid = triangleGrid(bbox, 50, { units: "miles", properties: { foo: "bar" }, }); grid.features[0].properties.foo; // grid.features[0].properties.bar // [ts] Property 'bar' does not exist on type '{ 'foo': string; }'. ================================================ FILE: packages/turf-truncate/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-truncate/README.md ================================================ # @turf/truncate ## truncate Takes a GeoJSON Feature or FeatureCollection and truncates the precision of the geometry. ### Parameters * `geojson` **[GeoJSON][1]** any GeoJSON Feature, FeatureCollection, Geometry or GeometryCollection. * `options` **[Object][2]** Optional parameters (optional, default `{}`) * `options.precision` **[number][3]** coordinate decimal precision (optional, default `6`) * `options.coordinates` **[number][3]** maximum number of coordinates (primarly used to remove z coordinates) (optional, default `3`) * `options.mutate` **[boolean][4]** allows GeoJSON input to be mutated (significant performance increase if true) (optional, default `false`) ### Examples ```javascript var point = turf.point([ 70.46923055566859, 58.11088890802906, 1508 ]); var options = {precision: 3, coordinates: 2}; var truncated = turf.truncate(point, options); //=truncated.geometry.coordinates => [70.469, 58.111] //addToMap var addToMap = [truncated]; ``` Returns **[GeoJSON][1]** layer with truncated geometry [1]: https://tools.ietf.org/html/rfc7946#section-3 [2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/truncate ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-truncate/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { truncate } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; let fixtures = fs.readdirSync(directory).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename), }; }); // fixtures = fixtures.filter(fixture => fixture.name === 'polygons'); /** * Single Process Benchmark * * geometry-collection: 0.563ms * linestring-geometry: 0.076ms * point-elevation: 0.046ms * point-geometry: 0.012ms * point: 0.022ms * points: 0.028ms * polygon: 0.030ms * polygons: 0.030ms */ for (const { name, geojson } of fixtures) { console.time(name); truncate(geojson, 6, 2, true); console.timeEnd(name); } /** * Benchmark Results * * geometry-collection x 3,720,722 ops/sec ±7.27% (73 runs sampled) * linestring-geometry x 3,752,722 ops/sec ±3.22% (81 runs sampled) * point-elevation x 3,972,732 ops/sec ±1.55% (85 runs sampled) * point-geometry x 4,279,585 ops/sec ±1.13% (84 runs sampled) * point x 4,239,752 ops/sec ±1.42% (88 runs sampled) * points x 4,235,613 ops/sec ±1.74% (88 runs sampled) * polygon x 2,854,454 ops/sec ±0.76% (84 runs sampled) * polygons x 1,565,315 ops/sec ±1.89% (85 runs sampled) */ const suite = new Benchmark.Suite("turf-truncate"); for (const { name, geojson } of fixtures) { suite.add(name, () => truncate(geojson, 6, 2, true)); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-truncate/index.ts ================================================ import { coordEach } from "@turf/meta"; import { AllGeoJSON, isObject } from "@turf/helpers"; /** * Takes a GeoJSON Feature or FeatureCollection and truncates the precision of the geometry. * * @function * @param {GeoJSON} geojson any GeoJSON Feature, FeatureCollection, Geometry or GeometryCollection. * @param {Object} [options={}] Optional parameters * @param {number} [options.precision=6] coordinate decimal precision * @param {number} [options.coordinates=3] maximum number of coordinates (primarly used to remove z coordinates) * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance increase if true) * @returns {GeoJSON} layer with truncated geometry * @example * var point = turf.point([ * 70.46923055566859, * 58.11088890802906, * 1508 * ]); * var options = {precision: 3, coordinates: 2}; * var truncated = turf.truncate(point, options); * //=truncated.geometry.coordinates => [70.469, 58.111] * * //addToMap * var addToMap = [truncated]; */ function truncate( geojson: T, options?: { precision?: number; coordinates?: number; mutate?: boolean; } ): T { // Optional parameters options = options ?? {}; if (!isObject(options)) throw new Error("options is invalid"); var precision = options.precision; var coordinates = options.coordinates; var mutate = options.mutate; // default params precision = precision === undefined || precision === null || isNaN(precision) ? 6 : precision; coordinates = coordinates === undefined || coordinates === null || isNaN(coordinates) ? 3 : coordinates; // validation if (!geojson) throw new Error(" is required"); if (typeof precision !== "number") throw new Error(" must be a number"); if (typeof coordinates !== "number") throw new Error(" must be a number"); // prevent input mutation if (mutate === false || mutate === undefined) geojson = JSON.parse(JSON.stringify(geojson)); var factor = Math.pow(10, precision); // Truncate Coordinates coordEach(geojson, function (coords) { truncateCoords(coords, factor, coordinates!); }); return geojson; } /** * Truncate Coordinates - Mutates coordinates in place * * @private * @param {Array} coords Geometry Coordinates * @param {number} factor rounding factor for coordinate decimal precision * @param {number} coordinates maximum number of coordinates (primarly used to remove z coordinates) * @returns {Array} mutated coordinates */ function truncateCoords(coords: number[], factor: number, coordinates: number) { // Remove extra coordinates (usually elevation coordinates and more) if (coords.length > coordinates) coords.splice(coordinates, coords.length); // Truncate coordinate decimals for (var i = 0; i < coords.length; i++) { coords[i] = Math.round(coords[i] * factor) / factor; } return coords; } export { truncate }; export default truncate; ================================================ FILE: packages/turf-truncate/package.json ================================================ { "name": "@turf/truncate", "version": "7.3.4", "description": "Truncates precision of GeoJSON coordinates.", "author": "Turf Authors", "contributors": [ "Denis Carriere <@DenisCarriere>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "geojson", "gis", "truncate" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-truncate/test/in/geometry-collection.geojson ================================================ { "type": "GeometryCollection", "geometries": [ { "type": "Point", "coordinates": [-75.69992065429688, 45.42509718349142] }, { "type": "Point", "coordinates": [-75.6917667388916, 45.42226585577467] } ] } ================================================ FILE: packages/turf-truncate/test/in/linestring-geometry.geojson ================================================ { "type": "LineString", "coordinates": [ [33.046875, 12.554563528593656], [31.9921875, 20.632784250388028], [43.2421875, 27.371767300523047] ] } ================================================ FILE: packages/turf-truncate/test/in/point-elevation.geojson ================================================ { "type": "Feature", "properties": { "precision": 4, "coordinates": 2 }, "geometry": { "type": "Point", "coordinates": [-75.69992065429688, 45.42509718349142, 2312.132] } } ================================================ FILE: packages/turf-truncate/test/in/point-geometry.geojson ================================================ { "type": "Point", "coordinates": [-75.69992065429688, 45.42509718349142] } ================================================ FILE: packages/turf-truncate/test/in/point.geojson ================================================ { "type": "Feature", "properties": { "precision": 3 }, "id": 12345, "bbox": [1, 2, 3, 4], "geometry": { "type": "Point", "coordinates": [-75.69992065429688, 45.42509718349142] } } ================================================ FILE: packages/turf-truncate/test/in/points.geojson ================================================ { "type": "FeatureCollection", "id": 12345, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.69992065429688, 45.42509718349142] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.6917667388916, 45.42226585577467] } } ] } ================================================ FILE: packages/turf-truncate/test/in/polygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.74506759643555, 45.383622119671905], [-75.74506759643555, 45.437128742131435], [-75.6547737121582, 45.437128742131435], [-75.6547737121582, 45.383622119671905], [-75.74506759643555, 45.383622119671905] ] ] } } ================================================ FILE: packages/turf-truncate/test/in/polygons.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.74506759643555, 45.383622119671905], [-75.74506759643555, 45.437128742131435], [-75.6547737121582, 45.437128742131435], [-75.6547737121582, 45.383622119671905], [-75.74506759643555, 45.383622119671905] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.76927185058594, 45.441826226418996], [-75.76927185058594, 45.48059563971866], [-75.68000793457031, 45.48059563971866], [-75.68000793457031, 45.441826226418996], [-75.76927185058594, 45.441826226418996] ] ] } } ] } ================================================ FILE: packages/turf-truncate/test/out/geometry-collection.geojson ================================================ { "type": "GeometryCollection", "geometries": [ { "type": "Point", "coordinates": [-75.699921, 45.425097] }, { "type": "Point", "coordinates": [-75.691767, 45.422266] } ] } ================================================ FILE: packages/turf-truncate/test/out/linestring-geometry.geojson ================================================ { "type": "LineString", "coordinates": [ [33.046875, 12.554564], [31.992188, 20.632784], [43.242188, 27.371767] ] } ================================================ FILE: packages/turf-truncate/test/out/point-elevation.geojson ================================================ { "type": "Feature", "properties": { "precision": 4, "coordinates": 2 }, "geometry": { "type": "Point", "coordinates": [-75.6999, 45.4251] } } ================================================ FILE: packages/turf-truncate/test/out/point-geometry.geojson ================================================ { "type": "Point", "coordinates": [-75.699921, 45.425097] } ================================================ FILE: packages/turf-truncate/test/out/point.geojson ================================================ { "type": "Feature", "properties": { "precision": 3 }, "id": 12345, "bbox": [1, 2, 3, 4], "geometry": { "type": "Point", "coordinates": [-75.7, 45.425] } } ================================================ FILE: packages/turf-truncate/test/out/points.geojson ================================================ { "type": "FeatureCollection", "id": 12345, "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.699921, 45.425097] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-75.691767, 45.422266] } } ] } ================================================ FILE: packages/turf-truncate/test/out/polygon.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.745068, 45.383622], [-75.745068, 45.437129], [-75.654774, 45.437129], [-75.654774, 45.383622], [-75.745068, 45.383622] ] ] } } ================================================ FILE: packages/turf-truncate/test/out/polygons.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.745068, 45.383622], [-75.745068, 45.437129], [-75.654774, 45.437129], [-75.654774, 45.383622], [-75.745068, 45.383622] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.769272, 45.441826], [-75.769272, 45.480596], [-75.680008, 45.480596], [-75.680008, 45.441826], [-75.769272, 45.441826] ] ] } } ] } ================================================ FILE: packages/turf-truncate/test.ts ================================================ import fs from "fs"; import test from "tape"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { point } from "@turf/helpers"; import { truncate } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; let fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); // fixtures = fixtures.filter(fixture => fixture.name === 'points'); test("turf-truncate", (t) => { for (const { filename, name, geojson } of fixtures) { const { precision, coordinates } = geojson.properties || {}; const results = truncate(geojson, { precision: precision, coordinates: coordinates, }); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, results); t.deepEqual(results, loadJsonFileSync(directories.out + filename), name); } t.end(); }); test("turf-truncate - precision & coordinates", (t) => { t.deepEqual( truncate(point([50.1234567, 40.1234567]), { precision: 3 }).geometry .coordinates, [50.123, 40.123], "precision 3" ); t.deepEqual( truncate(point([50.1234567, 40.1234567]), { precision: 0 }).geometry .coordinates, [50, 40], "precision 0" ); t.deepEqual( truncate(point([50, 40, 1100]), { precision: 6 }).geometry.coordinates, [50, 40, 1100], "coordinates default to 3" ); t.deepEqual( truncate(point([50, 40, 1100]), { precision: 6, coordinates: 2 }).geometry .coordinates, [50, 40], "coordinates 2" ); t.end(); }); test("turf-truncate - prevent input mutation", (t) => { const pt = point([120.123, 40.123, 3000]); const ptBefore = JSON.parse(JSON.stringify(pt)); truncate(pt, { precision: 0 }); t.deepEqual(ptBefore, pt, "does not mutate input"); truncate(pt, { precision: 0, coordinates: 2, mutate: true }); t.deepEqual(pt, point([120, 40]), "does mutate input"); t.end(); }); ================================================ FILE: packages/turf-truncate/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-truncate/types.ts ================================================ import { featureCollection, point, lineString, geometryCollection, } from "@turf/helpers"; import { truncate } from "./index.js"; const pt = point([120.1234567, 40.1234567]); const ptGeom = pt.geometry; const line = lineString([ [20, 80], [50, 40], ]); const lineGeom = line.geometry; const points = featureCollection([pt]); const lines = featureCollection([line]); const geomCollection = geometryCollection([ptGeom, lineGeom]); truncate(pt); truncate(ptGeom); truncate(line); truncate(lineGeom); truncate(lines); truncate(points); truncate(geomCollection); truncate(pt, { precision: 6 }); truncate(pt, { precision: 3, coordinates: 2 }); truncate(pt, { precision: 3, coordinates: 2, mutate: false }); ================================================ FILE: packages/turf-union/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-union/README.md ================================================ # @turf/union ## union Takes a collection of input polygons and returns a combined polygon. If the input polygons are not contiguous, this function returns a multi-polygon feature. ### Parameters * `features` **[FeatureCollection][1]<([Polygon][2] | [MultiPolygon][3])>** input polygon features * `options` **[Object][4]** Optional Parameters (optional, default `{}`) * `options.properties` **[GeoJsonProperties][5]** properties to assign to output feature (optional, default `{}`) ### Examples ```javascript const poly1 = turf.polygon( [ [ [-82.574787, 35.594087], [-82.574787, 35.615581], [-82.545261, 35.615581], [-82.545261, 35.594087], [-82.574787, 35.594087], ], ], { fill: "#0f0" } ); const poly2 = turf.polygon( [ [ [-82.560024, 35.585153], [-82.560024, 35.602602], [-82.52964, 35.602602], [-82.52964, 35.585153], [-82.560024, 35.585153], ], ], ); const union = turf.union(turf.featureCollection([poly1, poly2])); //addToMap const addToMap = { poly1, poly2, union }; poly1.properties.fill = "#0f0"; poly2.properties.fill = "#00f"; union.properties.stroke = "red"; union.properties["stroke-width"] = 4; union.properties.fill = "transparent"; ``` Returns **([Feature][5]<([Polygon][2] | [MultiPolygon][3])> | null)** a combined polygon or multi-polygon feature, or null if there were no input polygons to combine [1]: https://tools.ietf.org/html/rfc7946#section-3.3 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.7 [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [5]: https://tools.ietf.org/html/rfc7946#section-3.2 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/union ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-union/bench.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark from "benchmark"; import { union } from "./index.js"; import { featureCollection } from "@turf/helpers"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); const suite = new Benchmark.Suite("turf-union"); for (const { name, geojson } of fixtures) { suite.add(name, () => { union(featureCollection(geojson.features)); }); } suite.on("cycle", (e) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-union/index.ts ================================================ import * as polyclip from "polyclip-ts"; import { multiPolygon, polygon } from "@turf/helpers"; import { geomEach } from "@turf/meta"; import { FeatureCollection, Feature, Polygon, MultiPolygon, GeoJsonProperties, } from "geojson"; /** * Takes a collection of input polygons and returns a combined polygon. If the * input polygons are not contiguous, this function returns a multi-polygon * feature. * * @function * @param {FeatureCollection} features input polygon features * @param {Object} [options={}] Optional Parameters * @param {GeoJsonProperties} [options.properties={}] properties to assign to output feature * @returns {Feature<(Polygon|MultiPolygon)>|null} a combined polygon or multi-polygon feature, or null if there were no input polygons to combine * @example * * const poly1 = turf.polygon( * [ * [ * [-82.574787, 35.594087], * [-82.574787, 35.615581], * [-82.545261, 35.615581], * [-82.545261, 35.594087], * [-82.574787, 35.594087], * ], * ], * { fill: "#0f0" } * ); * * const poly2 = turf.polygon( * [ * [ * [-82.560024, 35.585153], * [-82.560024, 35.602602], * [-82.52964, 35.602602], * [-82.52964, 35.585153], * [-82.560024, 35.585153], * ], * ], * ); * * const union = turf.union(turf.featureCollection([poly1, poly2])); * * //addToMap * const addToMap = { poly1, poly2, union }; * * poly1.properties.fill = "#0f0"; * poly2.properties.fill = "#00f"; * union.properties.stroke = "red"; * union.properties["stroke-width"] = 4; * union.properties.fill = "transparent"; */ function union

( features: FeatureCollection, options: { properties?: P } = {} ): Feature | null { const geoms: polyclip.Geom[] = []; geomEach(features, (geom) => { geoms.push(geom.coordinates as polyclip.Geom); }); if (geoms.length < 2) { throw new Error("Must have at least 2 geometries"); } const unioned = polyclip.union(geoms[0], ...geoms.slice(1)); if (unioned.length === 0) return null; if (unioned.length === 1) return polygon(unioned[0], options.properties); else return multiPolygon(unioned, options.properties); } export { union }; export default union; ================================================ FILE: packages/turf-union/package.json ================================================ { "name": "@turf/union", "version": "7.3.4", "description": "Combines two or more polygons into a single polygon.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "gif" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "polyclip-ts": "^0.16.8", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-union/test/in/maximum-callstack-size-exceeded-2317.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-83.675399, 36.600791], [-83.675018, 36.600817], [-83.674722, 36.600814], [-83.673837, 36.600805], [-83.673542, 36.600803], [-83.670824, 36.600803], [-83.670145, 36.600804], [-83.670142, 36.600797], [-83.670134, 36.600777], [-83.670132, 36.600771], [-83.670046, 36.60077], [-83.669789, 36.600767], [-83.669704, 36.600766], [-83.669686, 36.600765], [-83.669564, 36.600765], [-83.669519, 36.600764], [-83.669385, 36.600763], [-83.669341, 36.600763], [-83.668306, 36.600753], [-83.668287, 36.600752], [-83.668232, 36.600749], [-83.668214, 36.600748], [-83.666969, 36.600683], [-83.663237, 36.600488], [-83.661993, 36.600424], [-83.661985, 36.600423], [-83.661847, 36.600421], [-83.661409, 36.600418], [-83.661264, 36.600417], [-83.661086, 36.600415], [-83.660551, 36.60041], [-83.660374, 36.600409], [-83.659427, 36.600403], [-83.659417, 36.600403], [-83.658543, 36.600376], [-83.65659, 36.60032], [-83.655645, 36.600294], [-83.655632, 36.600294], [-83.655406, 36.600288], [-83.649726, 36.600126], [-83.64559, 36.600009], [-83.644991, 36.59996], [-83.644378, 36.599909], [-83.642543, 36.599759], [-83.641931, 36.599709], [-83.6419, 36.599706], [-83.641809, 36.599699], [-83.641779, 36.599697], [-83.641761, 36.599695], [-83.641709, 36.599691], [-83.641692, 36.59969], [-83.640972, 36.59963], [-83.640793, 36.599616], [-83.63928, 36.599492], [-83.637834, 36.599375], [-83.634739, 36.599147], [-83.633226, 36.599036], [-83.632887, 36.599011], [-83.632529, 36.598985], [-83.631872, 36.598922], [-83.631535, 36.598891], [-83.631495, 36.598887], [-83.631378, 36.598875], [-83.631339, 36.598872], [-83.630895, 36.598829], [-83.629578, 36.598705], [-83.629565, 36.598704], [-83.629122, 36.598669], [-83.626262, 36.598445], [-83.625768, 36.598407], [-83.625547, 36.598402], [-83.625172, 36.598394], [-83.624916, 36.59839], [-83.624737, 36.598365], [-83.624056, 36.598269], [-83.623685, 36.598217], [-83.623652, 36.598212], [-83.623601, 36.598204], [-83.623461, 36.598185], [-83.623182, 36.598145], [-83.622888, 36.598104], [-83.622698, 36.598078], [-83.622072, 36.597991], [-83.622055, 36.597989], [-83.622044, 36.597987], [-83.621989, 36.597987], [-83.620898, 36.597979], [-83.617628, 36.597957], [-83.616538, 36.59795], [-83.60925, 36.597902], [-83.608832, 36.597901], [-83.60881, 36.597901], [-83.608751, 36.597899], [-83.608714, 36.597899], [-83.608656, 36.597897], [-83.607239, 36.597888], [-83.601408, 36.597828], [-83.599452, 36.597808], [-83.599089, 36.597804], [-83.598003, 36.597792], [-83.597667, 36.597789], [-83.597641, 36.597789], [-83.597383, 36.597786], [-83.597175, 36.597784], [-83.596609, 36.597778], [-83.596369, 36.597776], [-83.596351, 36.597776], [-83.596149, 36.597773], [-83.595542, 36.597767], [-83.595341, 36.597765], [-83.595317, 36.597764], [-83.595221, 36.597764], [-83.595197, 36.597763], [-83.595102, 36.597763], [-83.592193, 36.597732], [-83.591869, 36.597728], [-83.58333, 36.59764], [-83.583276, 36.597639], [-83.583147, 36.597638], [-83.574587, 36.59755], [-83.574532, 36.597549], [-83.574505, 36.597549], [-83.574369, 36.597556], [-83.574315, 36.597559], [-83.574288, 36.59756], [-83.574244, 36.597562], [-83.573846, 36.597557], [-83.572439, 36.597542], [-83.571971, 36.597537], [-83.571351, 36.59753], [-83.569494, 36.59751], [-83.568875, 36.597504], [-83.567807, 36.597496], [-83.567541, 36.597495], [-83.566414, 36.597483], [-83.563036, 36.597449], [-83.561954, 36.597439], [-83.56191, 36.597438], [-83.561824, 36.597438], [-83.561723, 36.597436], [-83.561678, 36.597436], [-83.561421, 36.597433], [-83.561321, 36.597432], [-83.556926, 36.597392], [-83.553058, 36.59738], [-83.552091, 36.597378], [-83.552018, 36.597377], [-83.551668, 36.597377], [-83.550303, 36.597373], [-83.546208, 36.597363], [-83.544843, 36.59736], [-83.544646, 36.59736], [-83.544438, 36.597359], [-83.544029, 36.597357], [-83.54218, 36.597352], [-83.541564, 36.597351], [-83.541444, 36.597351], [-83.541108, 36.59735], [-83.540103, 36.597347], [-83.539768, 36.597347], [-83.536848, 36.597339], [-83.536119, 36.597337], [-83.53594, 36.597337], [-83.535437, 36.597335], [-83.533929, 36.597331], [-83.533427, 36.59733], [-83.531307, 36.597324], [-83.52495, 36.597307], [-83.522831, 36.597302], [-83.522597, 36.597302], [-83.522156, 36.5973], [-83.520835, 36.597297], [-83.520395, 36.597296], [-83.517709, 36.597288], [-83.506965, 36.59726], [-83.506835, 36.597259], [-83.506446, 36.597258], [-83.506317, 36.597258], [-83.50621, 36.597257], [-83.505783, 36.597257], [-83.505751, 36.597256], [-83.505623, 36.597256], [-83.503111, 36.597249], [-83.499913, 36.597241], [-83.495575, 36.597248], [-83.493063, 36.597253], [-83.488829, 36.59726], [-83.488817, 36.59726], [-83.488566, 36.597261], [-83.488323, 36.597261], [-83.48318, 36.597271], [-83.482826, 36.597271], [-83.481765, 36.597273], [-83.481412, 36.597274], [-83.481149, 36.597274], [-83.480363, 36.597275], [-83.480102, 36.597276], [-83.472112, 36.597291], [-83.455512, 36.59732], [-83.447796, 36.597335], [-83.447579, 36.597335], [-83.446051, 36.597338], [-83.445335, 36.597339], [-83.445332, 36.597339], [-83.443175, 36.597342], [-83.442457, 36.597344], [-83.440579, 36.597347], [-83.426615, 36.597371], [-83.426569, 36.597371], [-83.425769, 36.597372], [-83.425648, 36.597373], [-83.42503, 36.597373], [-83.424907, 36.597374], [-83.415109, 36.597392], [-83.405142, 36.597392], [-83.385712, 36.597393], [-83.374902, 36.597393], [-83.372647, 36.597413], [-83.371896, 36.59742], [-83.371647, 36.597422], [-83.370903, 36.597429], [-83.370655, 36.597432], [-83.370324, 36.597435], [-83.356564, 36.597559], [-83.356532, 36.59756], [-83.356292, 36.597562], [-83.34692, 36.597647], [-83.34682, 36.597648], [-83.34679, 36.597648], [-83.346283, 36.597653], [-83.346208, 36.597653], [-83.346133, 36.597654], [-83.346033, 36.597655], [-83.34602, 36.597655], [-83.338354, 36.597724], [-83.334831, 36.597757], [-83.33468, 36.597759], [-83.330903, 36.597793], [-83.325051, 36.597835], [-83.324969, 36.597837], [-83.324963, 36.597837], [-83.324699, 36.597838], [-83.31119, 36.597938], [-83.311183, 36.597938], [-83.308539, 36.597958], [-83.308416, 36.597959], [-83.308292, 36.59796], [-83.308136, 36.597961], [-83.307957, 36.597962], [-83.305661, 36.597979], [-83.304185, 36.597989], [-83.29976, 36.598022], [-83.298308, 36.598033], [-83.298285, 36.598033], [-83.298012, 36.598034], [-83.297196, 36.598041], [-83.296924, 36.598043], [-83.295943, 36.598049], [-83.293001, 36.598071], [-83.292021, 36.598078], [-83.290598, 36.598088], [-83.28633, 36.598119], [-83.284908, 36.59813], [-83.284761, 36.59813], [-83.284322, 36.598134], [-83.284176, 36.598136], [-83.284007, 36.598136], [-83.283965, 36.598137], [-83.283873, 36.598137], [-83.283741, 36.598138], [-83.283697, 36.598139], [-83.282218, 36.598149], [-83.277782, 36.598183], [-83.276304, 36.598194], [-83.274892, 36.597794], [-83.274539, 36.597695], [-83.271933, 36.596957], [-83.264116, 36.594746], [-83.261511, 36.594009], [-83.261355, 36.593965], [-83.261317, 36.593954], [-83.261274, 36.593942], [-83.261258, 36.593938], [-83.261145, 36.593906], [-83.261103, 36.593894], [-83.261003, 36.593894], [-83.252633, 36.593932], [-83.252538, 36.593932], [-83.251675, 36.593936], [-83.250335, 36.593942], [-83.250204, 36.593938], [-83.250148, 36.593932], [-83.250082, 36.593921], [-83.249903, 36.593905], [-83.249698, 36.593889], [-83.248937, 36.593834], [-83.248545, 36.593837], [-83.248161, 36.593841], [-83.248053, 36.593841], [-83.247729, 36.593845], [-83.247622, 36.593846], [-83.246978, 36.593851], [-83.245046, 36.593868], [-83.244403, 36.593874], [-83.244201, 36.593875], [-83.243595, 36.593881], [-83.243394, 36.593883], [-83.242385, 36.593892], [-83.242234, 36.593894], [-83.241554, 36.593899], [-83.24137, 36.593933], [-83.239618, 36.593916], [-83.237299, 36.593937], [-83.237128, 36.593936], [-83.236446, 36.593936], [-83.228263, 36.593931], [-83.225448, 36.593929], [-83.225436, 36.59393], [-83.225361, 36.593929], [-83.222994, 36.593927], [-83.222594, 36.593927], [-83.22095, 36.593926], [-83.220891, 36.593926], [-83.214814, 36.593922], [-83.21445, 36.593921], [-83.212212, 36.593919], [-83.211586, 36.593919], [-83.211137, 36.593918], [-83.210517, 36.593918], [-83.192566, 36.593906], [-83.191466, 36.593905], [-83.188169, 36.593902], [-83.18707, 36.593902], [-83.184824, 36.5939], [-83.178088, 36.593895], [-83.1766, 36.593895], [-83.175843, 36.593897], [-83.175581, 36.593897], [-83.174798, 36.593901], [-83.174537, 36.593902], [-83.17227, 36.593911], [-83.165469, 36.593939], [-83.165022, 36.593941], [-83.163202, 36.593948], [-83.16039, 36.593958], [-83.156893, 36.593972], [-83.151955, 36.59399], [-83.149144, 36.594001], [-83.148946, 36.594001], [-83.148897, 36.594002], [-83.146362, 36.594011], [-83.144707, 36.594018], [-83.144671, 36.594019], [-83.144073, 36.594021], [-83.139566, 36.594039], [-83.139494, 36.594039], [-83.135111, 36.594056], [-83.124897, 36.594096], [-83.121963, 36.594089], [-83.117581, 36.594081], [-83.116461, 36.594078], [-83.113101, 36.59407], [-83.111981, 36.594068], [-83.110323, 36.594064], [-83.105352, 36.594054], [-83.103906, 36.594051], [-83.103695, 36.594051], [-83.103261, 36.59405], [-83.101961, 36.594047], [-83.101528, 36.594046], [-83.10149, 36.594046], [-83.076418, 36.593993], [-83.076279, 36.593993], [-83.075832, 36.593995], [-83.075433, 36.593995], [-83.071048, 36.593987], [-83.07092, 36.593987], [-83.070142, 36.593985], [-83.069483, 36.593983], [-83.067508, 36.593979], [-83.067146, 36.593979], [-83.06685, 36.593978], [-83.065517, 36.593975], [-83.061518, 36.593967], [-83.060185, 36.593965], [-83.056849, 36.593957], [-83.056016, 36.593956], [-83.055105, 36.593954], [-83.052374, 36.593948], [-83.051464, 36.593947], [-83.048752, 36.593941], [-83.040619, 36.593924], [-83.037908, 36.593919], [-83.036376, 36.593916], [-83.035998, 36.593915], [-83.03027, 36.593903], [-83.028361, 36.5939], [-83.028139, 36.59389], [-83.027475, 36.593863], [-83.027254, 36.593854], [-83.027061, 36.593863], [-83.026482, 36.593891], [-83.026312, 36.5939], [-83.02629, 36.5939], [-83.02249, 36.593892], [-83.02154, 36.593891], [-83.018305, 36.593891], [-83.017168, 36.593885], [-83.016076, 36.593881], [-83.013386, 36.593875], [-83.013173, 36.593875], [-83.012704, 36.593873], [-83.005331, 36.593858], [-83.005305, 36.593859], [-82.999892, 36.593792], [-82.998549, 36.593728], [-82.998057, 36.593727], [-82.994517, 36.593721], [-82.992286, 36.593722], [-82.991963, 36.593722], [-82.990947, 36.593723], [-82.989071, 36.593723], [-82.986081, 36.593733], [-82.985128, 36.593736], [-82.984994, 36.593736], [-82.984878, 36.593737], [-82.984804, 36.593737], [-82.98473, 36.593738], [-82.98071, 36.593752], [-82.975282, 36.593778], [-82.96839, 36.593797], [-82.966239, 36.593802], [-82.961779, 36.593789], [-82.961745, 36.593785], [-82.961707, 36.593785], [-82.961673, 36.593781], [-82.956798, 36.593777], [-82.954498, 36.593774], [-82.946743, 36.593758], [-82.939004, 36.593721], [-82.93293, 36.593692], [-82.930019, 36.593678], [-82.929774, 36.593677], [-82.929723, 36.593677], [-82.929678, 36.593684], [-82.929606, 36.593686], [-82.929428, 36.593685], [-82.928208, 36.593683], [-82.924549, 36.593677], [-82.92333, 36.593675], [-82.919738, 36.593668], [-82.914063, 36.593638], [-82.913694, 36.593637], [-82.910007, 36.593616], [-82.909676, 36.593617], [-82.909621, 36.593617], [-82.907058, 36.593603], [-82.905583, 36.593596], [-82.899372, 36.593549], [-82.89681, 36.593531], [-82.895536, 36.593521], [-82.891716, 36.593494], [-82.890443, 36.593485], [-82.890377, 36.593484], [-82.890182, 36.593482], [-82.890117, 36.593482], [-82.89008, 36.593481], [-82.889936, 36.593481], [-82.889879, 36.59348], [-82.889794, 36.59348], [-82.88971, 36.593479], [-82.889654, 36.593479], [-82.889547, 36.593478], [-82.88944, 36.593478], [-82.889322, 36.593476], [-82.889203, 36.593476], [-82.888928, 36.593475], [-82.888919, 36.593475], [-82.88795, 36.593468], [-82.885121, 36.593476], [-82.885044, 36.593476], [-82.88326, 36.593481], [-82.877908, 36.593497], [-82.876125, 36.593503], [-82.874903, 36.593504], [-82.858137, 36.593659], [-82.854737, 36.593686], [-82.852319, 36.593705], [-82.852274, 36.593705], [-82.848674, 36.593734], [-82.843876, 36.593754], [-82.843373, 36.593755], [-82.841865, 36.59376], [-82.841363, 36.593762], [-82.839177, 36.593771], [-82.834657, 36.59379], [-82.832622, 36.593779], [-82.830437, 36.593768], [-82.83001, 36.593765], [-82.82873, 36.593759], [-82.828304, 36.593757], [-82.826844, 36.593749], [-82.822466, 36.593728], [-82.821007, 36.593721], [-82.820739, 36.59372], [-82.819937, 36.593717], [-82.81967, 36.593716], [-82.819264, 36.593714], [-82.818047, 36.593708], [-82.817642, 36.593707], [-82.817395, 36.593705], [-82.816411, 36.593701], [-82.815801, 36.593698], [-82.815281, 36.593696], [-82.813972, 36.593688], [-82.81342, 36.593685], [-82.813364, 36.593693], [-82.813296, 36.593704], [-82.813065, 36.593705], [-82.812849, 36.593706], [-82.812165, 36.593709], [-82.811866, 36.593711], [-82.811503, 36.593712], [-82.810417, 36.593719], [-82.810055, 36.593721], [-82.808086, 36.593731], [-82.802181, 36.593765], [-82.800462, 36.593775], [-82.800213, 36.593774], [-82.800171, 36.593773], [-82.800046, 36.593771], [-82.800005, 36.593771], [-82.799984, 36.593759], [-82.799368, 36.593757], [-82.797448, 36.593754], [-82.796809, 36.593753], [-82.796786, 36.593753], [-82.796719, 36.593755], [-82.796697, 36.593756], [-82.795559, 36.59376], [-82.792624, 36.593771], [-82.792146, 36.59377], [-82.791009, 36.593768], [-82.790796, 36.593767], [-82.790156, 36.593766], [-82.789944, 36.593766], [-82.789342, 36.593764], [-82.787538, 36.593761], [-82.786937, 36.593761], [-82.786621, 36.59376], [-82.785674, 36.593757], [-82.785359, 36.593757], [-82.785335, 36.593751], [-82.785259, 36.593752], [-82.78496, 36.593757], [-82.784908, 36.593758], [-82.784861, 36.593758], [-82.783997, 36.593756], [-82.781406, 36.593751], [-82.780837, 36.59375], [-82.780543, 36.593746], [-82.780355, 36.593746], [-82.779791, 36.593749], [-82.779604, 36.59375], [-82.778201, 36.593749], [-82.772589, 36.593749], [-82.772584, 36.593748], [-82.772569, 36.593746], [-82.772564, 36.593746], [-82.771865, 36.593747], [-82.769768, 36.593751], [-82.76907, 36.593753], [-82.76816, 36.593753], [-82.765432, 36.593754], [-82.764523, 36.593755], [-82.762813, 36.593741], [-82.757685, 36.593701], [-82.755976, 36.593688], [-82.755396, 36.593683], [-82.753659, 36.59367], [-82.75308, 36.593666], [-82.75142, 36.593661], [-82.749845, 36.593652], [-82.74512, 36.593626], [-82.743545, 36.593618], [-82.742773, 36.593615], [-82.740457, 36.593607], [-82.739686, 36.593605], [-82.739372, 36.593604], [-82.73783, 36.593604], [-82.736964, 36.593606], [-82.736676, 36.593608], [-82.73585, 36.59361], [-82.733374, 36.593616], [-82.732549, 36.593619], [-82.731433, 36.593622], [-82.728087, 36.59363], [-82.726972, 36.593634], [-82.726025, 36.593636], [-82.723186, 36.593643], [-82.72224, 36.593646], [-82.721978, 36.593646], [-82.721193, 36.593648], [-82.720932, 36.593649], [-82.720729, 36.593649], [-82.720121, 36.59365], [-82.719919, 36.593651], [-82.719046, 36.593653], [-82.71643, 36.593661], [-82.715558, 36.593664], [-82.715144, 36.593664], [-82.713904, 36.593666], [-82.713491, 36.593668], [-82.713344, 36.593668], [-82.712906, 36.593669], [-82.712761, 36.59367], [-82.712041, 36.593672], [-82.70988, 36.593678], [-82.709161, 36.593681], [-82.708913, 36.593681], [-82.708169, 36.593683], [-82.707922, 36.593685], [-82.707853, 36.593684], [-82.707646, 36.593682], [-82.707577, 36.593682], [-82.706676, 36.593684], [-82.703973, 36.593692], [-82.703073, 36.593695], [-82.702368, 36.593696], [-82.700253, 36.593701], [-82.699549, 36.593704], [-82.699298, 36.593704], [-82.699236, 36.593705], [-82.695785, 36.593705], [-82.695057, 36.593687], [-82.694145, 36.593703], [-82.691807, 36.593742], [-82.688147, 36.593738], [-82.682284, 36.593715], [-82.681803, 36.593713], [-82.680878, 36.59371], [-82.680671, 36.593709], [-82.680363, 36.593707], [-82.679884, 36.593706], [-82.679831, 36.593705], [-82.675883, 36.593705], [-82.674911, 36.593709], [-82.671996, 36.59372], [-82.671025, 36.593725], [-82.669436, 36.593709], [-82.664671, 36.593662], [-82.663495, 36.593651], [-82.663286, 36.593657], [-82.663084, 36.593675], [-82.662458, 36.59373], [-82.662064, 36.593765], [-82.660576, 36.593775], [-82.659949, 36.59378], [-82.656482, 36.593805], [-82.654378, 36.593805], [-82.654055, 36.593806], [-82.65381, 36.593805], [-82.650861, 36.593806], [-82.649928, 36.593805], [-82.646482, 36.593806], [-82.644485, 36.593805], [-82.643182, 36.593806], [-82.636282, 36.593791], [-82.632704, 36.593806], [-82.632681, 36.593806], [-82.632264, 36.593805], [-82.630505, 36.593805], [-82.627345, 36.593806], [-82.624881, 36.593807], [-82.62363, 36.593826], [-82.622607, 36.593804], [-82.621249, 36.593857], [-82.620288, 36.593895], [-82.619556, 36.593949], [-82.61864, 36.593987], [-82.617873, 36.593992], [-82.614715, 36.594017], [-82.614438, 36.594019], [-82.609849, 36.594056], [-82.609639, 36.594033], [-82.60948, 36.594017], [-82.60938, 36.594006], [-82.60918, 36.594106], [-82.60888, 36.594106], [-82.608174, 36.594111], [-82.607583, 36.594116], [-82.600512, 36.594169], [-82.59688, 36.594206], [-82.593615, 36.59427], [-82.592959, 36.594283], [-82.589688, 36.594344], [-82.588111, 36.594374], [-82.588045, 36.594375], [-82.58718, 36.594406], [-82.586262, 36.594389], [-82.585956, 36.594383], [-82.585909, 36.594382], [-82.585579, 36.594406], [-82.582485, 36.594446], [-82.580187, 36.594475], [-82.578179, 36.594507], [-82.578124, 36.594507], [-82.57774, 36.594514], [-82.577719, 36.594514], [-82.576388, 36.594536], [-82.572389, 36.594602], [-82.572261, 36.594604], [-82.572164, 36.594606], [-82.572027, 36.594606], [-82.571879, 36.594607], [-82.571122, 36.594612], [-82.568864, 36.594673], [-82.566625, 36.594716], [-82.566466, 36.594719], [-82.565293, 36.594742], [-82.564284, 36.594762], [-82.563028, 36.594779], [-82.562206, 36.594804], [-82.562186, 36.594805], [-82.562079, 36.594807], [-82.561685, 36.594735], [-82.561428, 36.594688], [-82.561269, 36.594664], [-82.561186, 36.594705], [-82.56109, 36.594734], [-82.56098, 36.594748], [-82.560773, 36.594767], [-82.560436, 36.594798], [-82.560214, 36.594816], [-82.559815, 36.594836], [-82.559682, 36.59486], [-82.559587, 36.594835], [-82.559487, 36.594825], [-82.557911, 36.594819], [-82.557732, 36.594818], [-82.557313, 36.594817], [-82.55699, 36.594819], [-82.556625, 36.594817], [-82.55653, 36.594817], [-82.556341, 36.594798], [-82.555934, 36.594797], [-82.555277, 36.594809], [-82.554721, 36.594802], [-82.554437, 36.594817], [-82.554105, 36.594822], [-82.554054, 36.594812], [-82.554005, 36.594786], [-82.549177, 36.594955], [-82.545648, 36.595004], [-82.545603, 36.595005], [-82.545587, 36.595006], [-82.539636, 36.595104], [-82.536158, 36.595152], [-82.53442, 36.595179], [-82.527827, 36.595277], [-82.522487, 36.595301], [-82.518335, 36.595354], [-82.517275, 36.595398], [-82.517191, 36.595402], [-82.517074, 36.595407], [-82.516825, 36.595385], [-82.512918, 36.5954], [-82.509635, 36.595434], [-82.509257, 36.595438], [-82.505245, 36.595423], [-82.503663, 36.595447], [-82.503209, 36.595456], [-82.502433, 36.595466], [-82.501828, 36.595475], [-82.499876, 36.595535], [-82.497226, 36.595577], [-82.496553, 36.59558], [-82.496452, 36.595581], [-82.496352, 36.595581], [-82.49624, 36.595578], [-82.496155, 36.595582], [-82.495814, 36.595584], [-82.494121, 36.595591], [-82.493822, 36.595592], [-82.493807, 36.595592], [-82.492848, 36.595608], [-82.491747, 36.595635], [-82.491662, 36.595638], [-82.49165, 36.595638], [-82.489956, 36.595688], [-82.489572, 36.595708], [-82.489556, 36.595709], [-82.487242, 36.595828], [-82.486998, 36.595829], [-82.486934, 36.595829], [-82.484742, 36.595833], [-82.481528, 36.595764], [-82.478677, 36.595595], [-82.475449, 36.595242], [-82.471868, 36.594848], [-82.469337, 36.594647], [-82.46658, 36.594487], [-82.465921, 36.59449], [-82.465659, 36.594492], [-82.465585, 36.594492], [-82.465062, 36.594494], [-82.463202, 36.594501], [-82.459946, 36.594587], [-82.459731, 36.594593], [-82.457826, 36.594642], [-82.450767, 36.594771], [-82.450687, 36.594772], [-82.442861, 36.594885], [-82.44286, 36.594885], [-82.441877, 36.594899], [-82.441874, 36.594899], [-82.427958, 36.595014], [-82.423399, 36.595017], [-82.416561, 36.595022], [-82.416292, 36.595022], [-82.410254, 36.595026], [-82.4073, 36.595022], [-82.406062, 36.595019], [-82.406022, 36.595019], [-82.400384, 36.59501], [-82.399087, 36.595007], [-82.387403, 36.594989], [-82.387342, 36.594989], [-82.387248, 36.594987], [-82.387208, 36.595], [-82.386913, 36.595023], [-82.386756, 36.595036], [-82.383513, 36.595028], [-82.37487, 36.595008], [-82.368472, 36.595022], [-82.368461, 36.595022], [-82.356398, 36.595176], [-82.356254, 36.595178], [-82.355111, 36.595192], [-82.349711, 36.595248], [-82.33879, 36.595361], [-82.326486, 36.595481], [-82.326481, 36.595482], [-82.324545, 36.5955], [-82.312615, 36.595614], [-82.311115, 36.595616], [-82.309725, 36.595618], [-82.303919, 36.595666], [-82.303118, 36.595674], [-82.30306, 36.595674], [-82.293818, 36.595706], [-82.293843, 36.595706], [-82.294153, 36.595708], [-82.295683, 36.598299], [-82.299017, 36.603947], [-82.299367, 36.604528], [-82.299375, 36.604541], [-82.299549, 36.60483], [-82.299694, 36.605079], [-82.299698, 36.605085], [-82.300243, 36.606008], [-82.302225, 36.609448], [-82.302392, 36.609738], [-82.30243, 36.609804], [-82.302442, 36.609824], [-82.302531, 36.609979], [-82.302545, 36.610003], [-82.302571, 36.610048], [-82.302591, 36.610083], [-82.302597, 36.610093], [-82.302609, 36.610114], [-82.302615, 36.610124], [-82.302621, 36.610136], [-82.302629, 36.61015], [-82.302707, 36.610286], [-82.305037, 36.614329], [-82.305172, 36.614563], [-82.305177, 36.614571], [-82.306269, 36.616467], [-82.306511, 36.616887], [-82.306682, 36.617184], [-82.306688, 36.617194], [-82.306851, 36.617477], [-82.306863, 36.617498], [-82.307251, 36.618203], [-82.307387, 36.61845], [-82.307403, 36.618479], [-82.307408, 36.618487], [-82.307412, 36.618495], [-82.30744, 36.618546], [-82.307494, 36.618644], [-82.307684, 36.618989], [-82.307752, 36.619113], [-82.307762, 36.61913], [-82.307765, 36.619136], [-82.30778, 36.61916], [-82.307893, 36.619349], [-82.307924, 36.6194], [-82.307968, 36.619472], [-82.308, 36.619525], [-82.308004, 36.619532], [-82.308053, 36.61971], [-82.308062, 36.619741], [-82.308833, 36.622455], [-82.309254, 36.624794], [-82.309316, 36.625134], [-82.309562, 36.626202], [-82.309623, 36.626461], [-82.310178, 36.628744], [-82.310575, 36.630354], [-82.310736, 36.631012], [-82.310826, 36.631375], [-82.311003, 36.632093], [-82.311363, 36.63347], [-82.311395, 36.633592], [-82.311413, 36.63366], [-82.311437, 36.633751], [-82.311455, 36.63382], [-82.311456, 36.633825], [-82.311458, 36.633833], [-82.31146, 36.63384], [-82.311567, 36.634252], [-82.311947, 36.635688], [-82.311971, 36.63578], [-82.312035, 36.636023], [-82.312041, 36.636048], [-82.312043, 36.636055], [-82.312192, 36.636665], [-82.312902, 36.639561], [-82.313488, 36.642031], [-82.313644, 36.642686], [-82.313896, 36.643605], [-82.314568, 36.646055], [-82.315313, 36.649071], [-82.315374, 36.649313], [-82.315587, 36.650171], [-82.315608, 36.650253], [-82.315616, 36.650284], [-82.315619, 36.650296], [-82.315622, 36.650309], [-82.315627, 36.650326], [-82.315631, 36.650341], [-82.315716, 36.650674], [-82.315985, 36.651717], [-82.316358, 36.653161], [-82.317289, 36.656815], [-82.318303, 36.660919], [-82.319252, 36.664339], [-82.320191, 36.668047], [-82.320215, 36.668141], [-82.320264, 36.668326], [-82.320273, 36.66836], [-82.32028, 36.668388], [-82.320426, 36.668946], [-82.320431, 36.668964], [-82.320439, 36.668996], [-82.321252, 36.672217], [-82.323145, 36.679545], [-82.323235, 36.679891], [-82.32336, 36.680361], [-82.323501, 36.680851], [-82.324758, 36.685598], [-82.324764, 36.685619], [-82.324799, 36.685759], [-82.324802, 36.68577], [-82.324888, 36.686109], [-82.324996, 36.68651], [-82.32505, 36.686711], [-82.325072, 36.686791], [-82.325093, 36.686871], [-82.325118, 36.686965], [-82.325142, 36.68706], [-82.325242, 36.687446], [-82.32607, 36.690661], [-82.326079, 36.690697], [-82.32614, 36.690932], [-82.326182, 36.691095], [-82.326317, 36.691618], [-82.326503, 36.692342], [-82.326528, 36.692418], [-82.32653, 36.692424], [-82.326579, 36.69257], [-82.326756, 36.69309], [-82.326865, 36.693409], [-82.326877, 36.693444], [-82.326881, 36.693456], [-82.327025, 36.693879], [-82.327087, 36.694062], [-82.327103, 36.694093], [-82.327522, 36.695315], [-82.329017, 36.699677], [-82.330873, 36.705521], [-82.332014, 36.709114], [-82.332076, 36.709308], [-82.332093, 36.709362], [-82.331792, 36.709316], [-82.331434, 36.709503], [-82.331175, 36.709698], [-82.330936, 36.709957], [-82.330708, 36.710273], [-82.330411, 36.710573], [-82.330132, 36.7108], [-82.329407, 36.711409], [-82.329038, 36.711637], [-82.328422, 36.712213], [-82.328224, 36.712448], [-82.327926, 36.712772], [-82.327379, 36.713122], [-82.326832, 36.713553], [-82.326126, 36.714145], [-82.325411, 36.714786], [-82.324692, 36.715081], [-82.324133, 36.715213], [-82.323697, 36.715739], [-82.32315, 36.716162], [-82.322381, 36.716425], [-82.322317, 36.716477], [-82.322053, 36.716693], [-82.321937, 36.717178], [-82.32158, 36.717679], [-82.320783, 36.718087], [-82.320124, 36.718341], [-82.319556, 36.718618], [-82.318939, 36.719073], [-82.318303, 36.719617], [-82.317935, 36.719926], [-82.317629, 36.720435], [-82.316882, 36.720899], [-82.316192, 36.721096], [-82.315983, 36.721194], [-82.315735, 36.721526], [-82.315468, 36.721923], [-82.315191, 36.722247], [-82.314621, 36.722379], [-82.314012, 36.722568], [-82.313655, 36.722997], [-82.313208, 36.723411], [-82.312039, 36.723748], [-82.311561, 36.724082], [-82.311145, 36.72456], [-82.310818, 36.725053], [-82.310109, 36.725243], [-82.309317, 36.725776], [-82.309082, 36.725934], [-82.308786, 36.726451], [-82.308418, 36.726671], [-82.307658, 36.726877], [-82.30711, 36.727195], [-82.306891, 36.727236], [-82.306539, 36.7273], [-82.30606, 36.727516], [-82.305427, 36.727838], [-82.305422, 36.727841], [-82.305221, 36.727943], [-82.304918, 36.727908], [-82.304905, 36.727906], [-82.304891, 36.727905], [-82.304769, 36.727891], [-82.304284, 36.727985], [-82.304234, 36.727995], [-82.30415, 36.728011], [-82.303294, 36.728024], [-82.30279, 36.728244], [-82.302742, 36.728278], [-82.302654, 36.728339], [-82.301533, 36.729198], [-82.301511, 36.729214], [-82.301396, 36.729301], [-82.300825, 36.729973], [-82.300803, 36.729999], [-82.300548, 36.730373], [-82.300541, 36.730383], [-82.300537, 36.730389], [-82.300287, 36.730756], [-82.299878, 36.731], [-82.299671, 36.730996], [-82.299644, 36.730996], [-82.299605, 36.730995], [-82.299517, 36.730993], [-82.299433, 36.730991], [-82.299347, 36.730989], [-82.299308, 36.730988], [-82.298751, 36.730914], [-82.298371, 36.731062], [-82.29806, 36.731183], [-82.298043, 36.73119], [-82.297998, 36.731208], [-82.297989, 36.731211], [-82.297982, 36.731214], [-82.297794, 36.731286], [-82.297148, 36.731607], [-82.296873, 36.731877], [-82.296855, 36.731895], [-82.296689, 36.732058], [-82.296534, 36.73216], [-82.296471, 36.732202], [-82.296037, 36.73249], [-82.294971, 36.733104], [-82.294192, 36.733345], [-82.293741, 36.733188], [-82.29269, 36.733355], [-82.2917, 36.733514], [-82.290911, 36.733825], [-82.290243, 36.734216], [-82.289315, 36.734656], [-82.288519, 36.735249], [-82.287641, 36.735738], [-82.286992, 36.735935], [-82.286222, 36.736044], [-82.285504, 36.736403], [-82.285105, 36.736711], [-82.283938, 36.737282], [-82.283052, 36.737964], [-82.281634, 36.738423], [-82.281324, 36.738611], [-82.280747, 36.73896], [-82.279937, 36.739198], [-82.279199, 36.739581], [-82.27852, 36.739843], [-82.27738, 36.740003], [-82.276329, 36.740097], [-82.275946, 36.740203], [-82.27576, 36.740254], [-82.275142, 36.740741], [-82.27456, 36.741076], [-82.274437, 36.741147], [-82.273348, 36.741774], [-82.272608, 36.74194], [-82.271738, 36.742235], [-82.271068, 36.742328], [-82.26913, 36.743027], [-82.26905, 36.743056], [-82.267793, 36.743732], [-82.266557, 36.744497], [-82.265101, 36.745295], [-82.264414, 36.745783], [-82.264175, 36.745953], [-82.262826, 36.746379], [-82.261815, 36.746497], [-82.260768, 36.747083], [-82.25899, 36.747673], [-82.257271, 36.748287], [-82.25659, 36.748251], [-82.255941, 36.74844], [-82.255232, 36.748806], [-82.254542, 36.749084], [-82.254261, 36.749029], [-82.253307, 36.748841], [-82.252437, 36.748813], [-82.252352, 36.748806], [-82.251805, 36.74876], [-82.251236, 36.748981], [-82.250968, 36.749329], [-82.250751, 36.749757], [-82.250758, 36.750111], [-82.250589, 36.750564], [-82.250485, 36.750969], [-82.250409, 36.751229], [-82.25032, 36.751351], [-82.250162, 36.751498], [-82.249864, 36.751735], [-82.249864, 36.751364], [-82.249448, 36.751466], [-82.248911, 36.751561], [-82.248715, 36.751748], [-82.248486, 36.751832], [-82.248174, 36.752198], [-82.248059, 36.752449], [-82.247458, 36.752883], [-82.246985, 36.753218], [-82.246277, 36.753291], [-82.245677, 36.753258], [-82.245158, 36.753265], [-82.244408, 36.753193], [-82.243794, 36.753442], [-82.243485, 36.753462], [-82.242743, 36.753326], [-82.241764, 36.753306], [-82.241198, 36.753441], [-82.240297, 36.753895], [-82.239752, 36.754634], [-82.239332, 36.755163], [-82.238895, 36.755788], [-82.238536, 36.756388], [-82.237889, 36.757024], [-82.237374, 36.757263], [-82.236587, 36.757321], [-82.235759, 36.757387], [-82.235119, 36.757339], [-82.234481, 36.757371], [-82.233585, 36.757518], [-82.233185, 36.757483], [-82.232771, 36.75777], [-82.231997, 36.758117], [-82.231414, 36.758454], [-82.230742, 36.758832], [-82.230214, 36.758887], [-82.229043, 36.75982], [-82.22868, 36.760154], [-82.228264, 36.760369], [-82.227383, 36.760758], [-82.226641, 36.761137], [-82.225577, 36.761922], [-82.225164, 36.762314], [-82.22488, 36.762623], [-82.224544, 36.762804], [-82.223884, 36.762732], [-82.223245, 36.762739], [-82.222746, 36.762777], [-82.222246, 36.762727], [-82.221905, 36.762667], [-82.221411, 36.762938], [-82.221338, 36.762959], [-82.220497, 36.763199], [-82.219669, 36.763257], [-82.219126, 36.763577], [-82.21826, 36.764272], [-82.217293, 36.76438], [-82.216589, 36.764662], [-82.215992, 36.764774], [-82.215403, 36.764748], [-82.214847, 36.76494], [-82.214383, 36.765244], [-82.213822, 36.765685], [-82.213158, 36.765959], [-82.212636, 36.766383], [-82.212034, 36.766753], [-82.211428, 36.766929], [-82.210619, 36.766939], [-82.21033, 36.766982], [-82.21001, 36.767501], [-82.209705, 36.767738], [-82.209335, 36.767767], [-82.208746, 36.767814], [-82.207971, 36.768024], [-82.207117, 36.768252], [-82.205369, 36.768812], [-82.204776, 36.769133], [-82.204405, 36.769604], [-82.203923, 36.770028], [-82.203237, 36.770173], [-82.202273, 36.770442], [-82.201361, 36.770848], [-82.200622, 36.77084], [-82.19954, 36.770676], [-82.198801, 36.770668], [-82.197484, 36.770708], [-82.197304, 36.770835], [-82.197284, 36.770849], [-82.197265, 36.770863], [-82.197259, 36.770867], [-82.197232, 36.770886], [-82.197222, 36.770893], [-82.19701, 36.771043], [-82.19657, 36.771532], [-82.195559, 36.771986], [-82.195508, 36.77201], [-82.194896, 36.772308], [-82.194178, 36.77292], [-82.193627, 36.773394], [-82.193102, 36.773625], [-82.192277, 36.773836], [-82.191642, 36.774085], [-82.190679, 36.774402], [-82.189782, 36.774533], [-82.189113, 36.774509], [-82.188552, 36.774444], [-82.188173, 36.774465], [-82.187674, 36.774462], [-82.187109, 36.774203], [-82.186238, 36.774093], [-82.185325, 36.774433], [-82.184743, 36.774859], [-82.184144, 36.775445], [-82.183648, 36.77562], [-82.182631, 36.775728], [-82.182245, 36.775902], [-82.181591, 36.776223], [-82.180768, 36.776507], [-82.179864, 36.776807], [-82.17925, 36.77708], [-82.178103, 36.777737], [-82.177365, 36.77781], [-82.176467, 36.777861], [-82.175499, 36.77792], [-82.175033, 36.778127], [-82.174501, 36.778527], [-82.173792, 36.778544], [-82.173164, 36.778591], [-82.172679, 36.778886], [-82.172073, 36.77903], [-82.171133, 36.778993], [-82.170274, 36.77897], [-82.169795, 36.778992], [-82.169352, 36.778788], [-82.168713, 36.778835], [-82.167936, 36.778941], [-82.167203, 36.779263], [-82.166777, 36.77951], [-82.165447, 36.779976], [-82.164813, 36.780329], [-82.164088, 36.780539], [-82.163359, 36.780579], [-82.16258, 36.780596], [-82.161493, 36.780657], [-82.160615, 36.780739], [-82.160078, 36.780882], [-82.159644, 36.781161], [-82.159269, 36.781439], [-82.158483, 36.781625], [-82.157676, 36.781747], [-82.15694, 36.781908], [-82.156466, 36.782244], [-82.155809, 36.782348], [-82.155122, 36.782468], [-82.154597, 36.782748], [-82.154071, 36.782947], [-82.153405, 36.783124], [-82.152068, 36.783179], [-82.151614, 36.783531], [-82.150992, 36.783948], [-82.150317, 36.784149], [-82.149159, 36.784235], [-82.148358, 36.784662], [-82.147702, 36.784847], [-82.146951, 36.785314], [-82.146357, 36.785644], [-82.145682, 36.785885], [-82.144494, 36.785939], [-82.143799, 36.786188], [-82.143095, 36.786494], [-82.142198, 36.786657], [-82.140573, 36.787432], [-82.139776, 36.787521], [-82.138704, 36.787388], [-82.138032, 36.787235], [-82.136975, 36.787295], [-82.136121, 36.787603], [-82.135512, 36.788213], [-82.134836, 36.78843], [-82.134283, 36.788799], [-82.13384, 36.78915], [-82.13313, 36.789085], [-82.132411, 36.789109], [-82.131776, 36.789358], [-82.13097, 36.789552], [-82.130162, 36.789642], [-82.129853, 36.789648], [-82.129323, 36.789659], [-82.129267, 36.789658], [-82.128854, 36.789656], [-82.128197, 36.789816], [-82.127356, 36.790293], [-82.126777, 36.790863], [-82.126443, 36.791245], [-82.126381, 36.791656], [-82.126056, 36.791974], [-82.125482, 36.792238], [-82.125157, 36.792555], [-82.124859, 36.792707], [-82.124499, 36.792756], [-82.12409, 36.792803], [-82.123566, 36.793077], [-82.123059, 36.793214], [-82.122529, 36.793198], [-82.122235, 36.793073], [-82.121767, 36.793145], [-82.121264, 36.793499], [-82.120256, 36.794006], [-82.119569, 36.794146], [-82.119067, 36.794081], [-82.118261, 36.794222], [-82.117466, 36.794444], [-82.116147, 36.794932], [-82.115366, 36.795347], [-82.1147, 36.795502], [-82.11414, 36.795543], [-82.113915, 36.795724], [-82.113767, 36.796234], [-82.113378, 36.796707], [-82.112821, 36.796861], [-82.112041, 36.796841], [-82.110937, 36.796712], [-82.109031, 36.796508], [-82.107618, 36.796392], [-82.107231, 36.796519], [-82.106435, 36.797144], [-82.105574, 36.797536], [-82.104295, 36.79841], [-82.104059, 36.798591], [-82.103973, 36.798753], [-82.104078, 36.798953], [-82.104263, 36.79916], [-82.104443, 36.799577], [-82.104711, 36.799935], [-82.105344, 36.800442], [-82.106216, 36.800928], [-82.1067, 36.80109], [-82.10713, 36.801495], [-82.107484, 36.801683], [-82.1083, 36.801913], [-82.108829, 36.802259], [-82.109327, 36.803034], [-82.109758, 36.803866], [-82.110458, 36.805129], [-82.110954, 36.805363], [-82.111317, 36.805898], [-82.111714, 36.806602], [-82.11217, 36.807264], [-82.112299, 36.807653], [-82.112414, 36.808357], [-82.11253, 36.808891], [-82.112533, 36.808906], [-82.112575, 36.809099], [-82.112578, 36.809158], [-82.112602, 36.809637], [-82.112619, 36.810136], [-82.113133, 36.811197], [-82.113729, 36.81194], [-82.114227, 36.812841], [-82.114536, 36.813553], [-82.115034, 36.814117], [-82.115045, 36.814224], [-82.115046, 36.814229], [-82.115067, 36.814428], [-82.114969, 36.814792], [-82.114963, 36.814814], [-82.114962, 36.814819], [-82.11496, 36.814824], [-82.114958, 36.814832], [-82.11485, 36.81523], [-82.114847, 36.81552], [-82.114847, 36.815527], [-82.114846, 36.815616], [-82.114843, 36.81577], [-82.114843, 36.815777], [-82.114842, 36.815798], [-82.114841, 36.815803], [-82.114835, 36.815927], [-82.115351, 36.816618], [-82.115993, 36.817107], [-82.116594, 36.817705], [-82.116753, 36.818023], [-82.116679, 36.818154], [-82.11667, 36.81817], [-82.116667, 36.818176], [-82.116659, 36.81819], [-82.116623, 36.818252], [-82.11657, 36.818384], [-82.116487, 36.818592], [-82.116426, 36.819017], [-82.116476, 36.819371], [-82.116481, 36.819408], [-82.116484, 36.819432], [-82.116487, 36.819452], [-82.116491, 36.81948], [-82.116544, 36.81986], [-82.116473, 36.820119], [-82.115726, 36.820898], [-82.115721, 36.820904], [-82.115712, 36.820913], [-82.115027, 36.821586], [-82.114946, 36.821719], [-82.114941, 36.821727], [-82.114629, 36.822236], [-82.114631, 36.822241], [-82.114866, 36.82295], [-82.115082, 36.823292], [-82.115104, 36.823327], [-82.115114, 36.823342], [-82.115117, 36.823347], [-82.115396, 36.823792], [-82.115313, 36.824233], [-82.115198, 36.824424], [-82.115194, 36.824431], [-82.115185, 36.824446], [-82.115178, 36.824457], [-82.115057, 36.824659], [-82.114802, 36.825305], [-82.114735, 36.825737], [-82.114732, 36.825754], [-82.11473, 36.825767], [-82.114729, 36.825772], [-82.114729, 36.825777], [-82.114726, 36.825796], [-82.114684, 36.826064], [-82.114637, 36.826226], [-82.114634, 36.826238], [-82.114628, 36.826258], [-82.114625, 36.826267], [-82.114609, 36.826323], [-82.114572, 36.826452], [-82.114094, 36.826772], [-82.113861, 36.827069], [-82.113658, 36.827328], [-82.113652, 36.827333], [-82.113635, 36.827347], [-82.113148, 36.827742], [-82.111859, 36.828385], [-82.111529, 36.828573], [-82.111512, 36.828583], [-82.111491, 36.828595], [-82.111471, 36.828606], [-82.111044, 36.828849], [-82.111038, 36.828856], [-82.110907, 36.829011], [-82.110854, 36.829074], [-82.110808, 36.829128], [-82.110776, 36.829166], [-82.11077, 36.829173], [-82.110565, 36.829413], [-82.110537, 36.829797], [-82.110534, 36.829841], [-82.110512, 36.830135], [-82.110443, 36.830741], [-82.110155, 36.831156], [-82.109928, 36.831574], [-82.109909, 36.831609], [-82.109905, 36.831617], [-82.109884, 36.831656], [-82.109869, 36.831684], [-82.109854, 36.831711], [-82.109757, 36.831888], [-82.109604, 36.832138], [-82.109044, 36.833047], [-82.108363, 36.834283], [-82.107786, 36.835244], [-82.107016, 36.835732], [-82.106165, 36.836108], [-82.105687, 36.836228], [-82.104658, 36.836324], [-82.104007, 36.836705], [-82.103345, 36.837078], [-82.102833, 36.837448], [-82.102092, 36.837838], [-82.101392, 36.837849], [-82.101055, 36.837991], [-82.101069, 36.838612], [-82.100928, 36.839404], [-82.10032, 36.840365], [-82.099744, 36.840962], [-82.099194, 36.841438], [-82.098787, 36.842024], [-82.097794, 36.842765], [-82.097147, 36.842944], [-82.096169, 36.843475], [-82.095661, 36.844007], [-82.09552, 36.844396], [-82.095163, 36.844949], [-82.094377, 36.845171], [-82.093476, 36.845563], [-82.092677, 36.846067], [-82.091956, 36.846473], [-82.091271, 36.84675], [-82.090857, 36.847425], [-82.090354, 36.848174], [-82.089613, 36.848581], [-82.088929, 36.848889], [-82.088696, 36.848927], [-82.088112, 36.849022], [-82.087731, 36.849423], [-82.087222, 36.849915], [-82.086446, 36.850112], [-82.085964, 36.850498], [-82.085763, 36.850872], [-82.085191, 36.851259], [-82.084341, 36.851272], [-82.083822, 36.851377], [-82.083668, 36.851613], [-82.083359, 36.852117], [-82.082754, 36.85236], [-82.082309, 36.852165], [-82.081896, 36.852042], [-82.081324, 36.85197], [-82.080576, 36.852522], [-82.080217, 36.853003], [-82.079888, 36.853508], [-82.079199, 36.854002], [-82.078599, 36.854502], [-82.07794, 36.855012], [-82.077458, 36.855085], [-82.077242, 36.855119], [-82.076793, 36.85519], [-82.076093, 36.855225], [-82.075796, 36.855367], [-82.075564, 36.855741], [-82.074682, 36.856093], [-82.074135, 36.856009], [-82.073627, 36.855931], [-82.072584, 36.85589], [-82.071628, 36.856082], [-82.070943, 36.856366], [-82.070512, 36.856735], [-82.069888, 36.857051], [-82.069014, 36.856935], [-82.067811, 36.856864], [-82.066922, 36.856926], [-82.066314, 36.857064], [-82.066119, 36.8573], [-82.065563, 36.857889], [-82.064479, 36.858236], [-82.063264, 36.858504], [-82.062704, 36.858513], [-82.061684, 36.858577], [-82.061001, 36.858498], [-82.060341, 36.85854], [-82.059553, 36.859092], [-82.058873, 36.859561], [-82.058373, 36.859561], [-82.057876, 36.859334], [-82.057284, 36.859303], [-82.056121, 36.859658], [-82.05486, 36.860137], [-82.053312, 36.860716], [-82.052607, 36.860984], [-82.051821, 36.861197], [-82.051337, 36.861454], [-82.051162, 36.861683], [-82.050756, 36.861906], [-82.049786, 36.861969], [-82.048976, 36.861997], [-82.048403, 36.861909], [-82.047838, 36.862127], [-82.047464, 36.86243], [-82.046613, 36.862419], [-82.04586, 36.862341], [-82.044367, 36.862726], [-82.042672, 36.863476], [-82.042106, 36.863694], [-82.041971, 36.863882], [-82.041832, 36.864375], [-82.041628, 36.864653], [-82.041216, 36.86461], [-82.040339, 36.864776], [-82.039554, 36.865054], [-82.038702, 36.865453], [-82.037845, 36.865675], [-82.037263, 36.865603], [-82.036519, 36.865461], [-82.035712, 36.86565], [-82.03498, 36.866048], [-82.034644, 36.866246], [-82.034249, 36.866478], [-82.033493, 36.866698], [-82.032723, 36.866758], [-82.03206, 36.867066], [-82.031464, 36.867276], [-82.030922, 36.867227], [-82.030148, 36.86711], [-82.029249, 36.867195], [-82.028312, 36.867394], [-82.027398, 36.867722], [-82.026597, 36.867718], [-82.02581, 36.867906], [-82.024592, 36.868472], [-82.023905, 36.868684], [-82.022744, 36.868709], [-82.021018, 36.868992], [-82.019942, 36.869217], [-82.018437, 36.869545], [-82.016783, 36.86994], [-82.015806, 36.870551], [-82.015138, 36.870674], [-82.014241, 36.870896], [-82.013408, 36.871247], [-82.01205, 36.871412], [-82.00982, 36.872016], [-82.008812, 36.872135], [-82.007746, 36.872385], [-82.007136, 36.872853], [-82.006443, 36.873218], [-82.005373, 36.873297], [-82.0046, 36.87322], [-82.003603, 36.873387], [-82.002758, 36.873698], [-82.002336, 36.874083], [-82.001567, 36.874158], [-82.001046, 36.874133], [-82.000656, 36.874163], [-82.000232, 36.874476], [-81.999853, 36.874626], [-81.997567, 36.874771], [-81.996606, 36.874872], [-81.996482, 36.875117], [-81.996443, 36.875215], [-81.996262, 36.875273], [-81.996082, 36.875314], [-81.995861, 36.875348], [-81.99556, 36.875381], [-81.995259, 36.875399], [-81.994917, 36.875368], [-81.994605, 36.875321], [-81.994353, 36.87525], [-81.993941, 36.875228], [-81.993489, 36.875286], [-81.993104, 36.875315], [-81.992952, 36.875417], [-81.992752, 36.875517], [-81.992452, 36.876117], [-81.992252, 36.876417], [-81.992152, 36.876517], [-81.992052, 36.876517], [-81.991752, 36.876617], [-81.991252, 36.876617], [-81.991152, 36.876717], [-81.990752, 36.876917], [-81.990652, 36.877117], [-81.990552, 36.877117], [-81.990352, 36.877217], [-81.990252, 36.877117], [-81.989152, 36.877117], [-81.988752, 36.877017], [-81.988252, 36.877217], [-81.987952, 36.877417], [-81.987952, 36.877517], [-81.987852, 36.877517], [-81.987652, 36.877617], [-81.987052, 36.877617], [-81.986552, 36.877717], [-81.986252, 36.877917], [-81.985852, 36.878117], [-81.985052, 36.878117], [-81.984752, 36.878317], [-81.984252, 36.878517], [-81.983652, 36.878917], [-81.983252, 36.879017], [-81.983152, 36.879117], [-81.982752, 36.879117], [-81.982052, 36.879217], [-81.981352, 36.879217], [-81.981152, 36.879017], [-81.980852, 36.878817], [-81.980752, 36.878617], [-81.980652, 36.878517], [-81.980652, 36.878117], [-81.980839, 36.877227], [-81.980852, 36.877117], [-81.980752, 36.877017], [-81.980752, 36.876917], [-81.980652, 36.876817], [-81.980552, 36.876617], [-81.980552, 36.876417], [-81.980452, 36.876217], [-81.980352, 36.875917], [-81.980252, 36.875817], [-81.980152, 36.875517], [-81.980052, 36.875417], [-81.980052, 36.875317], [-81.979952, 36.875117], [-81.979323, 36.874682], [-81.978652, 36.874217], [-81.978352, 36.873917], [-81.978252, 36.873717], [-81.978252, 36.873317], [-81.978352, 36.873117], [-81.978452, 36.872817], [-81.978539, 36.872555], [-81.978552, 36.872517], [-81.978652, 36.872317], [-81.978552, 36.872017], [-81.977952, 36.871417], [-81.977352, 36.871117], [-81.976952, 36.870717], [-81.976652, 36.870217], [-81.976052, 36.869617], [-81.975993, 36.869607], [-81.975452, 36.869517], [-81.974752, 36.869617], [-81.974252, 36.869817], [-81.973652, 36.869917], [-81.972952, 36.870117], [-81.972452, 36.870317], [-81.971752, 36.870417], [-81.970852, 36.870617], [-81.967952, 36.870617], [-81.967452, 36.870517], [-81.967252, 36.870417], [-81.965052, 36.870117], [-81.964551, 36.870217], [-81.964151, 36.870217], [-81.963551, 36.869917], [-81.962651, 36.869317], [-81.962574, 36.869255], [-81.962158, 36.86892], [-81.961949, 36.868712], [-81.96145, 36.868513], [-81.961251, 36.868315], [-81.961153, 36.867917], [-81.960996, 36.867607], [-81.960957, 36.86753], [-81.960925, 36.867466], [-81.960899, 36.867412], [-81.960767, 36.867144], [-81.960551, 36.866614], [-81.960257, 36.866121], [-81.959956, 36.865715], [-81.959455, 36.865316], [-81.958954, 36.865216], [-81.958332, 36.865216], [-81.957756, 36.865213], [-81.95731, 36.865328], [-81.956567, 36.86551], [-81.955532, 36.865923], [-81.95532, 36.866013], [-81.954359, 36.866413], [-81.953662, 36.866513], [-81.953149, 36.866617], [-81.952762, 36.866521], [-81.952469, 36.866462], [-81.952249, 36.866417], [-81.951544, 36.866016], [-81.951332, 36.865854], [-81.951317, 36.865843], [-81.951152, 36.865716], [-81.950926, 36.865493], [-81.95085, 36.865418], [-81.950709, 36.865361], [-81.950356, 36.865219], [-81.949956, 36.864818], [-81.949454, 36.864518], [-81.949155, 36.864416], [-81.948247, 36.864416], [-81.947258, 36.864717], [-81.947094, 36.864781], [-81.947087, 36.864784], [-81.947057, 36.864796], [-81.947051, 36.864798], [-81.946999, 36.864818], [-81.946989, 36.864822], [-81.946945, 36.864839], [-81.946926, 36.864847], [-81.946909, 36.864854], [-81.946895, 36.864864], [-81.946751, 36.864918], [-81.946474, 36.865142], [-81.943651, 36.867418], [-81.941651, 36.867618], [-81.935175, 36.871061], [-81.933752, 36.871818], [-81.933617, 36.871836], [-81.933575, 36.871842], [-81.933528, 36.871848], [-81.933518, 36.871849], [-81.933487, 36.871853], [-81.933405, 36.871864], [-81.932115, 36.872037], [-81.92855, 36.872518], [-81.927994, 36.872769], [-81.926063, 36.873643], [-81.92595, 36.873694], [-81.925875, 36.873728], [-81.925846, 36.873741], [-81.925824, 36.873751], [-81.925816, 36.873755], [-81.925803, 36.873761], [-81.922801, 36.87512], [-81.920616, 36.876139], [-81.920052, 36.876421], [-81.918852, 36.876921], [-81.917952, 36.877321], [-81.917252, 36.877721], [-81.916252, 36.87812], [-81.915452, 36.87852], [-81.914151, 36.87902], [-81.911751, 36.88022], [-81.911651, 36.88032], [-81.910751, 36.88032], [-81.910251, 36.88042], [-81.909851, 36.88042], [-81.909751, 36.88052], [-81.909351, 36.88072], [-81.908251, 36.881219], [-81.907051, 36.881719], [-81.90615, 36.882119], [-81.90475, 36.882819], [-81.90425, 36.883019], [-81.90385, 36.883319], [-81.90285, 36.883819], [-81.902149, 36.883919], [-81.901349, 36.884119], [-81.900649, 36.884319], [-81.899549, 36.884618], [-81.898449, 36.885019], [-81.897649, 36.885319], [-81.896549, 36.885819], [-81.895849, 36.886019], [-81.89568, 36.886075], [-81.895205, 36.886234], [-81.894649, 36.886419], [-81.893549, 36.886719], [-81.892904, 36.886961], [-81.892749, 36.887019], [-81.891549, 36.887319], [-81.88962, 36.888032], [-81.888849, 36.888219], [-81.888749, 36.888319], [-81.888649, 36.888319], [-81.888349, 36.888519], [-81.887449, 36.888719], [-81.886349, 36.889119], [-81.885649, 36.889319], [-81.885249, 36.889419], [-81.885049, 36.889519], [-81.884949, 36.889519], [-81.884849, 36.889619], [-81.884749, 36.889619], [-81.884549, 36.889719], [-81.882979, 36.890919], [-81.882849, 36.891019], [-81.881849, 36.891819], [-81.881149, 36.892419], [-81.881094, 36.89246], [-81.879848, 36.893419], [-81.878648, 36.894219], [-81.877248, 36.895219], [-81.876548, 36.895819], [-81.875548, 36.896619], [-81.875348, 36.896819], [-81.875181, 36.896903], [-81.875148, 36.896919], [-81.875048, 36.897019], [-81.874948, 36.897019], [-81.874848, 36.896969], [-81.872666, 36.898533], [-81.871318, 36.899499], [-81.87021, 36.900294], [-81.866556, 36.902912], [-81.865778, 36.903471], [-81.865572, 36.903619], [-81.863487, 36.905116], [-81.861797, 36.906324], [-81.860548, 36.907219], [-81.859048, 36.908219], [-81.853502, 36.914117], [-81.85343, 36.914192], [-81.853415, 36.914208], [-81.85341, 36.914214], [-81.853402, 36.914222], [-81.853378, 36.914247], [-81.853231, 36.914401], [-81.853183, 36.91445], [-81.853176, 36.914457], [-81.852904, 36.914733], [-81.852718, 36.914936], [-81.849124, 36.918755], [-81.843346, 36.92492], [-81.83953, 36.927463], [-81.839462, 36.927508], [-81.839197, 36.927777], [-81.839194, 36.927784], [-81.839116, 36.927893], [-81.839084, 36.927914], [-81.838987, 36.928028], [-81.838847, 36.92812], [-81.838747, 36.92802], [-81.838247, 36.92822], [-81.837064, 36.928896], [-81.836846, 36.92902], [-81.836195, 36.928361], [-81.823788, 36.915802], [-81.823645, 36.915658], [-81.817635, 36.909575], [-81.81759, 36.909529], [-81.815329, 36.90724], [-81.812609, 36.904487], [-81.808215, 36.900037], [-81.807913, 36.899733], [-81.804797, 36.896581], [-81.803282, 36.89487], [-81.803099, 36.894663], [-81.802879, 36.894415], [-81.802874, 36.894411], [-81.801184, 36.892924], [-81.801009, 36.892747], [-81.800949, 36.892686], [-81.796293, 36.887974], [-81.796211, 36.887891], [-81.791327, 36.882945], [-81.790397, 36.882004], [-81.79027, 36.881876], [-81.788965, 36.880555], [-81.788781, 36.880369], [-81.788015, 36.879594], [-81.78796, 36.879539], [-81.787905, 36.879483], [-81.787841, 36.879417], [-81.787811, 36.879387], [-81.787776, 36.879351], [-81.787772, 36.879347], [-81.783581, 36.875105], [-81.781359, 36.872833], [-81.779138, 36.870561], [-81.778889, 36.870305], [-81.778449, 36.869856], [-81.778404, 36.86981], [-81.778123, 36.869523], [-81.776244, 36.8676], [-81.775092, 36.866422], [-81.772334, 36.863603], [-81.771996, 36.863257], [-81.769782, 36.860992], [-81.769741, 36.86095], [-81.769548, 36.860754], [-81.769356, 36.860558], [-81.768921, 36.860075], [-81.768485, 36.859592], [-81.768419, 36.859517], [-81.768033, 36.859069], [-81.762713, 36.853868], [-81.762151, 36.853317], [-81.761588, 36.852765], [-81.761003, 36.85218], [-81.757846, 36.849025], [-81.756854, 36.848], [-81.752467, 36.843478], [-81.752302, 36.843308], [-81.752185, 36.843188], [-81.752141, 36.84315], [-81.752117, 36.843125], [-81.751637, 36.842622], [-81.749846, 36.840773], [-81.749144, 36.840121], [-81.743114, 36.832796], [-81.742813, 36.832431], [-81.741453, 36.831212], [-81.740898, 36.830715], [-81.740748, 36.830572], [-81.739956, 36.829818], [-81.7399, 36.829765], [-81.739576, 36.829456], [-81.729791, 36.820133], [-81.727837, 36.818272], [-81.727764, 36.818055], [-81.72767, 36.817775], [-81.727626, 36.817747], [-81.727312, 36.817617], [-81.721906, 36.811895], [-81.718821, 36.808511], [-81.713544, 36.802721], [-81.712886, 36.80211], [-81.712752, 36.801985], [-81.711627, 36.80094], [-81.710368, 36.79977], [-81.710208, 36.799621], [-81.705248, 36.795013], [-81.705055, 36.794833], [-81.704861, 36.794653], [-81.704715, 36.794517], [-81.704569, 36.794382], [-81.703488, 36.793378], [-81.702428, 36.792393], [-81.699705, 36.789863], [-81.69969, 36.789849], [-81.699622, 36.789786], [-81.699444, 36.789621], [-81.699309, 36.789433], [-81.699096, 36.789135], [-81.698944, 36.788921], [-81.69881, 36.788623], [-81.698744, 36.788475], [-81.698678, 36.788328], [-81.698181, 36.787219], [-81.697683, 36.786109], [-81.697605, 36.785935], [-81.697526, 36.78576], [-81.697121, 36.784864], [-81.696717, 36.783968], [-81.696669, 36.783862], [-81.696624, 36.783763], [-81.696461, 36.7834], [-81.694844, 36.779821], [-81.690531, 36.772045], [-81.690501, 36.771992], [-81.687744, 36.767021], [-81.687154, 36.765838], [-81.687049, 36.765627], [-81.685319, 36.762169], [-81.685182, 36.761896], [-81.68506, 36.761652], [-81.684125, 36.759783], [-81.684099, 36.759731], [-81.683989, 36.759512], [-81.683044, 36.757621], [-81.682892, 36.757309], [-81.682856, 36.757235], [-81.679393, 36.750121], [-81.678268, 36.74798], [-81.678143, 36.747742], [-81.678059, 36.747582], [-81.678013, 36.747495], [-81.677967, 36.747407], [-81.675499, 36.742714], [-81.675258, 36.742256], [-81.673093, 36.738139], [-81.672586, 36.737173], [-81.672196, 36.736432], [-81.671388, 36.734895], [-81.670962, 36.734084], [-81.670492, 36.73319], [-81.669618, 36.731527], [-81.664165, 36.721157], [-81.662043, 36.717122], [-81.660577, 36.714307], [-81.660177, 36.713539], [-81.657159, 36.707746], [-81.656737, 36.706937], [-81.656426, 36.70634], [-81.655743, 36.705028], [-81.648832, 36.691761], [-81.648825, 36.691747], [-81.648745, 36.691593], [-81.648378, 36.690888], [-81.647042, 36.688323], [-81.646334, 36.686963], [-81.645951, 36.686228], [-81.645385, 36.685141], [-81.645368, 36.685109], [-81.645329, 36.685034], [-81.64523, 36.684844], [-81.64511, 36.684614], [-81.636772, 36.668605], [-81.636701, 36.668469], [-81.63657, 36.668217], [-81.635993, 36.66711], [-81.635741, 36.666624], [-81.635613, 36.666374], [-81.635537, 36.666225], [-81.634775, 36.664741], [-81.634372, 36.663955], [-81.634361, 36.663933], [-81.631571, 36.658495], [-81.630406, 36.656224], [-81.630179, 36.655781], [-81.629978, 36.65539], [-81.62484, 36.645374], [-81.623097, 36.641995], [-81.621321, 36.638554], [-81.621281, 36.638481], [-81.621213, 36.638345], [-81.620955, 36.637846], [-81.619139, 36.634325], [-81.615498, 36.635471], [-81.613739, 36.636025], [-81.612605, 36.636412], [-81.610143, 36.637251], [-81.609478, 36.637477], [-81.608697, 36.637742], [-81.608356, 36.63786], [-81.608242, 36.637899], [-81.605838, 36.638724], [-81.605739, 36.638625], [-81.605762, 36.63853], [-81.60584, 36.638228], [-81.605839, 36.638106], [-81.605839, 36.637624], [-81.60581, 36.637508], [-81.605809, 36.637503], [-81.605794, 36.637443], [-81.605788, 36.63742], [-81.60564, 36.636829], [-81.605565, 36.636565], [-81.605548, 36.636505], [-81.605541, 36.63648], [-81.605539, 36.636474], [-81.605531, 36.636446], [-81.605515, 36.636388], [-81.605503, 36.636344], [-81.605493, 36.636309], [-81.60549, 36.6363], [-81.605478, 36.636258], [-81.605447, 36.636151], [-81.605445, 36.636144], [-81.605439, 36.636122], [-81.605436, 36.636104], [-81.605397, 36.635881], [-81.605379, 36.635771], [-81.605373, 36.635735], [-81.605372, 36.635728], [-81.605371, 36.635719], [-81.605339, 36.635525], [-81.605338, 36.635511], [-81.605338, 36.635141], [-81.605339, 36.634732], [-81.605339, 36.634218], [-81.605344, 36.634184], [-81.605345, 36.634179], [-81.605346, 36.63417], [-81.605348, 36.634155], [-81.605351, 36.634131], [-81.605353, 36.634114], [-81.60536, 36.63406], [-81.605402, 36.633721], [-81.605407, 36.63368], [-81.605409, 36.633666], [-81.605411, 36.63365], [-81.605412, 36.633643], [-81.605412, 36.633637], [-81.605438, 36.633427], [-81.60564, 36.632823], [-81.605665, 36.63267], [-81.605671, 36.632632], [-81.605679, 36.632584], [-81.605738, 36.632225], [-81.605882, 36.63189], [-81.606039, 36.631522], [-81.606139, 36.631124], [-81.606238, 36.630825], [-81.606239, 36.630428], [-81.606339, 36.630225], [-81.606239, 36.629218], [-81.606239, 36.628725], [-81.606338, 36.628328], [-81.606369, 36.628177], [-81.606384, 36.628101], [-81.606445, 36.627802], [-81.606541, 36.627415], [-81.606743, 36.627119], [-81.607458, 36.626228], [-81.60747, 36.626212], [-81.607473, 36.626207], [-81.60748, 36.626198], [-81.607839, 36.625722], [-81.607937, 36.625322], [-81.608035, 36.625224], [-81.608039, 36.625119], [-81.60806, 36.625068], [-81.608062, 36.625063], [-81.608065, 36.625057], [-81.608118, 36.624927], [-81.608337, 36.624333], [-81.608429, 36.624149], [-81.608534, 36.623925], [-81.608635, 36.623627], [-81.608537, 36.623526], [-81.608461, 36.623213], [-81.60846, 36.623208], [-81.608459, 36.623202], [-81.608457, 36.623195], [-81.608442, 36.623134], [-81.608445, 36.622483], [-81.608445, 36.622116], [-81.608589, 36.621745], [-81.608677, 36.621529], [-81.608692, 36.621492], [-81.608699, 36.621475], [-81.608792, 36.621249], [-81.609006, 36.620719], [-81.609037, 36.62063], [-81.609042, 36.620615], [-81.609143, 36.620326], [-81.60935, 36.62001], [-81.609468, 36.619789], [-81.609614, 36.619561], [-81.609646, 36.619511], [-81.609652, 36.619502], [-81.609671, 36.619472], [-81.609953, 36.619002], [-81.610139, 36.618625], [-81.610222, 36.618376], [-81.610343, 36.618017], [-81.610338, 36.61788], [-81.610336, 36.617825], [-81.610371, 36.617759], [-81.61038, 36.617742], [-81.610445, 36.617617], [-81.610438, 36.617412], [-81.610435, 36.617324], [-81.610453, 36.617295], [-81.610524, 36.617178], [-81.610528, 36.617172], [-81.610588, 36.617074], [-81.610666, 36.61692], [-81.610724, 36.616919], [-81.611474, 36.616905], [-81.611663, 36.61689], [-81.61185, 36.616859], [-81.612134, 36.616798], [-81.612389, 36.616726], [-81.613271, 36.616432], [-81.614006, 36.6162], [-81.615773, 36.615623], [-81.616655, 36.615326], [-81.616776, 36.615279], [-81.617003, 36.615169], [-81.617119, 36.615099], [-81.617224, 36.615017], [-81.617266, 36.614978], [-81.617388, 36.614867], [-81.617548, 36.614744], [-81.617605, 36.614709], [-81.617682, 36.614685], [-81.617723, 36.614683], [-81.617827, 36.614622], [-81.617873, 36.614595], [-81.618073, 36.614598], [-81.618724, 36.614608], [-81.618725, 36.614613], [-81.618738, 36.614722], [-81.61875, 36.61482], [-81.618786, 36.614849], [-81.619191, 36.615175], [-81.619258, 36.615229], [-81.619632, 36.615317], [-81.619721, 36.615379], [-81.619922, 36.615519], [-81.620224, 36.615622], [-81.620823, 36.615923], [-81.62104, 36.616124], [-81.621138, 36.616124], [-81.621235, 36.615928], [-81.621421, 36.615147], [-81.621428, 36.61512], [-81.621584, 36.614903], [-81.62163, 36.614838], [-81.621634, 36.614833], [-81.621639, 36.614825], [-81.622036, 36.614625], [-81.622338, 36.614525], [-81.622738, 36.614225], [-81.622817, 36.614187], [-81.62294, 36.614124], [-81.623339, 36.613725], [-81.623738, 36.613524], [-81.623938, 36.613591], [-81.624038, 36.613625], [-81.624068, 36.613656], [-81.624139, 36.613725], [-81.624339, 36.613725], [-81.624438, 36.613626], [-81.624536, 36.613626], [-81.62466, 36.613523], [-81.624672, 36.613513], [-81.624681, 36.613506], [-81.624841, 36.613373], [-81.625033, 36.613402], [-81.625074, 36.613408], [-81.625087, 36.61341], [-81.625098, 36.613412], [-81.625118, 36.613415], [-81.625145, 36.613419], [-81.625257, 36.613436], [-81.626011, 36.613489], [-81.626404, 36.61351], [-81.626569, 36.613516], [-81.62677, 36.613524], [-81.626777, 36.613524], [-81.62681, 36.613526], [-81.62689, 36.613529], [-81.626897, 36.613529], [-81.62768, 36.61356], [-81.627948, 36.61352], [-81.628051, 36.613405], [-81.628006, 36.613309], [-81.628003, 36.613303], [-81.627935, 36.613158], [-81.627758, 36.612869], [-81.627621, 36.61234], [-81.627614, 36.612313], [-81.62756, 36.612106], [-81.62756, 36.612088], [-81.627559, 36.612067], [-81.627554, 36.611834], [-81.627785, 36.611836], [-81.631384, 36.611863], [-81.636984, 36.611905], [-81.637661, 36.611913], [-81.639376, 36.61193], [-81.641543, 36.611939], [-81.643511, 36.611963], [-81.644147, 36.612005], [-81.645076, 36.611978], [-81.645836, 36.611956], [-81.646903, 36.611925], [-81.64813, 36.610975], [-81.648584, 36.610623], [-81.649945, 36.609569], [-81.6504, 36.609218], [-81.651512, 36.60835], [-81.654849, 36.605747], [-81.655962, 36.60488], [-81.656943, 36.604114], [-81.659887, 36.601818], [-81.660869, 36.601053], [-81.662373, 36.599879], [-81.666887, 36.596359], [-81.668392, 36.595186], [-81.669202, 36.594553], [-81.671634, 36.592657], [-81.672445, 36.592025], [-81.673435, 36.591252], [-81.676405, 36.588935], [-81.677396, 36.588163], [-81.669264, 36.588031], [-81.667632, 36.588003], [-81.667577, 36.588002], [-81.667523, 36.588001], [-81.667472, 36.588], [-81.667455, 36.587999], [-81.667434, 36.587999], [-81.666018, 36.587965], [-81.665743, 36.587959], [-81.662822, 36.587914], [-81.661926, 36.587895], [-81.656493, 36.587783], [-81.650933, 36.5877], [-81.650874, 36.587794], [-81.650492, 36.587795], [-81.64977, 36.587781], [-81.645539, 36.587482], [-81.636485, 36.587482], [-81.636474, 36.587481], [-81.635405, 36.587481], [-81.627591, 36.587478], [-81.627513, 36.587479], [-81.627419, 36.587481], [-81.625024, 36.587456], [-81.62252, 36.58743], [-81.62136, 36.587447], [-81.618176, 36.587194], [-81.617889, 36.587171], [-81.61787, 36.587169], [-81.617846, 36.587166], [-81.617834, 36.587165], [-81.61755, 36.587144], [-81.617538, 36.587143], [-81.617443, 36.587136], [-81.617336, 36.587134], [-81.614821, 36.587098], [-81.609474, 36.587019], [-81.608749, 36.587006], [-81.608321, 36.586999], [-81.608185, 36.586997], [-81.608071, 36.586995], [-81.607904, 36.586993], [-81.607889, 36.586993], [-81.607769, 36.586991], [-81.606981, 36.586977], [-81.606573, 36.586968], [-81.606309, 36.586966], [-81.600104, 36.586858], [-81.596892, 36.586548], [-81.596728, 36.586532], [-81.596694, 36.586529], [-81.596589, 36.586519], [-81.595979, 36.58646], [-81.592408, 36.586114], [-81.588395, 36.585725], [-81.588385, 36.585724], [-81.588367, 36.585722], [-81.586426, 36.585621], [-81.586388, 36.585619], [-81.583342, 36.585458], [-81.583014, 36.585441], [-81.581149, 36.585342], [-81.577629, 36.585068], [-81.576275, 36.584963], [-81.576259, 36.584962], [-81.569233, 36.584395], [-81.565395, 36.584085], [-81.564502, 36.584013], [-81.564382, 36.584003], [-81.564372, 36.584002], [-81.564365, 36.584001], [-81.564348, 36.584], [-81.564191, 36.583987], [-81.564076, 36.583978], [-81.56369, 36.583947], [-81.563354, 36.58392], [-81.563301, 36.583916], [-81.559669, 36.583621], [-81.559086, 36.583582], [-81.558939, 36.583572], [-81.556274, 36.583396], [-81.554252, 36.583172], [-81.553362, 36.583113], [-81.551194, 36.582969], [-81.549178, 36.582835], [-81.548764, 36.582808], [-81.5431, 36.582316], [-81.543069, 36.582313], [-81.541191, 36.58215], [-81.541047, 36.582137], [-81.54003, 36.582029], [-81.537987, 36.581813], [-81.537965, 36.581811], [-81.537944, 36.581809], [-81.537754, 36.581789], [-81.537522, 36.581765], [-81.536174, 36.581623], [-81.535471, 36.581549], [-81.535215, 36.581522], [-81.534768, 36.581475], [-81.534497, 36.581437], [-81.534479, 36.581434], [-81.534442, 36.581429], [-81.532899, 36.581277], [-81.532663, 36.581252], [-81.524028, 36.580705], [-81.522868, 36.580631], [-81.522771, 36.580625], [-81.522718, 36.580622], [-81.522674, 36.580619], [-81.521885, 36.580569], [-81.520875, 36.580505], [-81.520855, 36.580504], [-81.520122, 36.580456], [-81.520102, 36.580456], [-81.518615, 36.580482], [-81.518596, 36.580482], [-81.518556, 36.580483], [-81.518489, 36.580484], [-81.518412, 36.580485], [-81.518194, 36.580489], [-81.518158, 36.58049], [-81.518119, 36.580491], [-81.518045, 36.580492], [-81.517943, 36.580494], [-81.517841, 36.580495], [-81.517803, 36.580495], [-81.51776, 36.580496], [-81.517599, 36.580498], [-81.507614, 36.580161], [-81.507505, 36.580157], [-81.507416, 36.580154], [-81.507351, 36.580151], [-81.507322, 36.58015], [-81.507299, 36.580149], [-81.506958, 36.580138], [-81.506892, 36.580136], [-81.506872, 36.580136], [-81.506845, 36.580135], [-81.506814, 36.580134], [-81.506778, 36.580132], [-81.506679, 36.580128], [-81.503021, 36.579986], [-81.500147, 36.579937], [-81.497554, 36.579957], [-81.497527, 36.579957], [-81.497415, 36.579964], [-81.497408, 36.579965], [-81.497366, 36.579965], [-81.496219, 36.579976], [-81.496074, 36.579977], [-81.494538, 36.579716], [-81.492673, 36.5794], [-81.491739, 36.579284], [-81.490117, 36.579117], [-81.489913, 36.579096], [-81.489902, 36.579095], [-81.489644, 36.579069], [-81.489523, 36.579077], [-81.489488, 36.579079], [-81.489203, 36.579097], [-81.487856, 36.579183], [-81.486225, 36.579289], [-81.486004, 36.579303], [-81.476714, 36.58025], [-81.476675, 36.580246], [-81.476497, 36.58023], [-81.476449, 36.580224], [-81.47644, 36.580223], [-81.476391, 36.580216], [-81.476365, 36.580213], [-81.476289, 36.580203], [-81.475078, 36.580103], [-81.470454, 36.579692], [-81.47035, 36.579683], [-81.466579, 36.579348], [-81.466163, 36.579311], [-81.466113, 36.579307], [-81.466101, 36.579306], [-81.46609, 36.579305], [-81.46558, 36.57926], [-81.463247, 36.579053], [-81.462939, 36.579019], [-81.462927, 36.579018], [-81.462844, 36.579009], [-81.462814, 36.579006], [-81.462785, 36.579003], [-81.462658, 36.578989], [-81.462565, 36.578979], [-81.462524, 36.578975], [-81.462514, 36.578974], [-81.462455, 36.578968], [-81.462317, 36.578953], [-81.46231, 36.578952], [-81.460333, 36.578741], [-81.458357, 36.578531], [-81.458332, 36.578528], [-81.458226, 36.578517], [-81.458039, 36.578497], [-81.457637, 36.578454], [-81.457557, 36.578446], [-81.455979, 36.578277], [-81.455811, 36.578259], [-81.455772, 36.578255], [-81.455758, 36.578253], [-81.455674, 36.578244], [-81.453709, 36.578034], [-81.451898, 36.577842], [-81.446049, 36.577171], [-81.445995, 36.577165], [-81.44589, 36.577153], [-81.445833, 36.577147], [-81.445775, 36.57714], [-81.445731, 36.577135], [-81.444823, 36.577031], [-81.444584, 36.577004], [-81.444224, 36.576962], [-81.443982, 36.576925], [-81.443931, 36.576918], [-81.443874, 36.576909], [-81.443785, 36.576895], [-81.443581, 36.576831], [-81.443051, 36.576793], [-81.442855, 36.576787], [-81.440492, 36.576713], [-81.437469, 36.576618], [-81.435197, 36.576543], [-81.434896, 36.576534], [-81.43435, 36.576518], [-81.43108, 36.576421], [-81.427766, 36.576328], [-81.42753, 36.576321], [-81.427517, 36.576321], [-81.427443, 36.576319], [-81.427311, 36.576315], [-81.424193, 36.576228], [-81.418522, 36.576041], [-81.417783, 36.576057], [-81.4164, 36.575994], [-81.414246, 36.575897], [-81.414237, 36.575897], [-81.412043, 36.575834], [-81.410173, 36.575781], [-81.410096, 36.575779], [-81.410006, 36.575776], [-81.409981, 36.575773], [-81.409935, 36.575768], [-81.409923, 36.57577], [-81.409904, 36.575773], [-81.407471, 36.575704], [-81.402892, 36.575574], [-81.402825, 36.575572], [-81.401964, 36.575547], [-81.40194, 36.575655], [-81.401178, 36.575613], [-81.400072, 36.575573], [-81.399007, 36.575527], [-81.398395, 36.575491], [-81.398284, 36.575495], [-81.39815, 36.575483], [-81.398125, 36.575481], [-81.398017, 36.575472], [-81.39764, 36.575461], [-81.397608, 36.57546], [-81.39757, 36.575421], [-81.397551, 36.575353], [-81.397429, 36.575351], [-81.397214, 36.575348], [-81.396418, 36.57534], [-81.396297, 36.575334], [-81.395501, 36.575297], [-81.395085, 36.575284], [-81.394885, 36.575274], [-81.39481, 36.575275], [-81.39477, 36.575276], [-81.394727, 36.575276], [-81.393714, 36.575227], [-81.393568, 36.57522], [-81.393463, 36.575267], [-81.393345, 36.57529], [-81.393177, 36.575264], [-81.393079, 36.575188], [-81.390899, 36.575086], [-81.389309, 36.57502], [-81.388912, 36.575018], [-81.3889, 36.575017], [-81.388892, 36.575017], [-81.388713, 36.575009], [-81.388549, 36.575002], [-81.386703, 36.574941], [-81.384916, 36.574927], [-81.383689, 36.574917], [-81.382528, 36.574894], [-81.379455, 36.574834], [-81.376383, 36.574774], [-81.374776, 36.574743], [-81.374785, 36.574237], [-81.374774, 36.573867], [-81.374652, 36.57333], [-81.374457, 36.573302], [-81.374328, 36.573269], [-81.374083, 36.573185], [-81.37396, 36.573138], [-81.373829, 36.573141], [-81.373714, 36.573157], [-81.373648, 36.573193], [-81.372323, 36.57411], [-81.368701, 36.574151], [-81.368737, 36.57424], [-81.36886, 36.57455], [-81.366752, 36.574084], [-81.366585, 36.574579], [-81.366074, 36.574605], [-81.364213, 36.574678], [-81.364036, 36.576016], [-81.36165, 36.57539], [-81.361414, 36.575331], [-81.361331, 36.575306], [-81.361306, 36.575298], [-81.361198, 36.575265], [-81.358915, 36.574671], [-81.358886, 36.574623], [-81.357714, 36.574637], [-81.354038, 36.57468], [-81.353911, 36.574682], [-81.353709, 36.574684], [-81.35361, 36.574685], [-81.353547, 36.574685], [-81.353172, 36.574688], [-81.348376, 36.574762], [-81.348252, 36.574761], [-81.345155, 36.574812], [-81.342619, 36.574834], [-81.340827, 36.574859], [-81.338239, 36.574814], [-81.337312, 36.574811], [-81.335395, 36.574865], [-81.33488, 36.574879], [-81.334754, 36.574882], [-81.334732, 36.574883], [-81.33469, 36.574885], [-81.334677, 36.574886], [-81.334644, 36.574887], [-81.334614, 36.574888], [-81.333742, 36.574928], [-81.333437, 36.574939], [-81.333061, 36.574952], [-81.330279, 36.575067], [-81.327377, 36.575194], [-81.324854, 36.57535], [-81.324428, 36.575369], [-81.324347, 36.575372], [-81.324328, 36.575373], [-81.32359, 36.575366], [-81.323307, 36.57536], [-81.322486, 36.575343], [-81.321192, 36.575325], [-81.3184, 36.575277], [-81.317065, 36.575258], [-81.316837, 36.575255], [-81.315339, 36.575157], [-81.313906, 36.575133], [-81.312175, 36.575123], [-81.309472, 36.575074], [-81.307944, 36.575055], [-81.307495, 36.57505], [-81.30561, 36.575039], [-81.301822, 36.575017], [-81.299741, 36.574986], [-81.297324, 36.574983], [-81.295665, 36.574971], [-81.294724, 36.574964], [-81.293656, 36.574947], [-81.292413, 36.574941], [-81.291898, 36.574935], [-81.291173, 36.574987], [-81.290702, 36.575013], [-81.289313, 36.575045], [-81.28728, 36.57508], [-81.286847, 36.575097], [-81.285697, 36.574916], [-81.284737, 36.574752], [-81.283589, 36.574682], [-81.282693, 36.574614], [-81.281483, 36.574592], [-81.278579, 36.574719], [-81.277837, 36.574826], [-81.277745, 36.574839], [-81.275667, 36.574218], [-81.273195, 36.57409], [-81.272055, 36.574016], [-81.271619, 36.574014], [-81.270583, 36.574008], [-81.270432, 36.574011], [-81.266084, 36.574004], [-81.262598, 36.573817], [-81.262302, 36.573794], [-81.260055, 36.573675], [-81.255354, 36.573418], [-81.252929, 36.573276], [-81.252735, 36.573276], [-81.250246, 36.573275], [-81.249874, 36.573257], [-81.249232, 36.573226], [-81.249015, 36.573216], [-81.243998, 36.573027], [-81.242215, 36.572969], [-81.241892, 36.572957], [-81.235404, 36.572733], [-81.226787, 36.572484], [-81.225948, 36.57246], [-81.216966, 36.5722], [-81.215932, 36.57217], [-81.213076, 36.572084], [-81.212089, 36.572064], [-81.210184, 36.572025], [-81.207231, 36.571987], [-81.206574, 36.571979], [-81.206511, 36.57199], [-81.206458, 36.571978], [-81.205567, 36.571968], [-81.204786, 36.571953], [-81.20432, 36.571945], [-81.203936, 36.571936], [-81.203764, 36.571933], [-81.203591, 36.571929], [-81.202387, 36.571907], [-81.202075, 36.5719], [-81.201431, 36.571888], [-81.201287, 36.571885], [-81.200983, 36.57188], [-81.197901, 36.571829], [-81.196926, 36.571813], [-81.193625, 36.571746], [-81.192833, 36.571725], [-81.190978, 36.571676], [-81.189889, 36.571647], [-81.186898, 36.571558], [-81.185057, 36.571491], [-81.184304, 36.571464], [-81.180363, 36.571314], [-81.180166, 36.571306], [-81.178996, 36.571285], [-81.176766, 36.571217], [-81.171224, 36.571049], [-81.170962, 36.571041], [-81.169624, 36.571004], [-81.169063, 36.570988], [-81.168471, 36.570975], [-81.164403, 36.570604], [-81.16408, 36.570573], [-81.16394, 36.570559], [-81.1638, 36.570544], [-81.163449, 36.570515], [-81.163432, 36.570514], [-81.163243, 36.570498], [-81.163009, 36.570477], [-81.162774, 36.570455], [-81.162039, 36.570388], [-81.160242, 36.570327], [-81.15752, 36.570215], [-81.156959, 36.570189], [-81.15365, 36.570058], [-81.153589, 36.570052], [-81.153566, 36.570052], [-81.153528, 36.570053], [-81.153487, 36.570051], [-81.153442, 36.570049], [-81.153427, 36.570049], [-81.153178, 36.570039], [-81.153166, 36.570039], [-81.153158, 36.570038], [-81.15314, 36.570038], [-81.152654, 36.570018], [-81.152418, 36.570008], [-81.151341, 36.569964], [-81.150795, 36.569943], [-81.150489, 36.569931], [-81.150182, 36.56992], [-81.149949, 36.569911], [-81.146588, 36.569785], [-81.146455, 36.56978], [-81.146385, 36.569777], [-81.14631, 36.569772], [-81.145362, 36.569739], [-81.144895, 36.569735], [-81.140857, 36.569602], [-81.139705, 36.569565], [-81.139637, 36.569562], [-81.139364, 36.56955], [-81.139015, 36.569541], [-81.138316, 36.569519], [-81.137616, 36.569497], [-81.13655, 36.569461], [-81.135616, 36.569429], [-81.13525, 36.569418], [-81.127854, 36.569187], [-81.122646, 36.569002], [-81.122215, 36.568987], [-81.119808, 36.568917], [-81.119451, 36.568887], [-81.114898, 36.568658], [-81.11244, 36.568538], [-81.111639, 36.568491], [-81.111004, 36.568454], [-81.110807, 36.568437], [-81.107781, 36.568229], [-81.107234, 36.568191], [-81.105109, 36.56803], [-81.104813, 36.568008], [-81.103679, 36.567922], [-81.103413, 36.567902], [-81.102932, 36.567869], [-81.102377, 36.567832], [-81.100055, 36.567676], [-81.098721, 36.567581], [-81.097562, 36.567496], [-81.097046, 36.567461], [-81.095175, 36.567454], [-81.09225, 36.567402], [-81.088991, 36.567355], [-81.085493, 36.567312], [-81.083209, 36.567276], [-81.080992, 36.567242], [-81.079408, 36.567223], [-81.078717, 36.567215], [-81.078268, 36.56721], [-81.077797, 36.567195], [-81.076144, 36.567157], [-81.074862, 36.567129], [-81.07358, 36.567102], [-81.069688, 36.567018], [-81.069177, 36.567007], [-81.062212, 36.566839], [-81.062182, 36.566839], [-81.05856, 36.566882], [-81.050908, 36.566972], [-81.048783, 36.566863], [-81.047926, 36.566828], [-81.046855, 36.566778], [-81.046166, 36.566743], [-81.044833, 36.566673], [-81.04444, 36.566643], [-81.043852, 36.566605], [-81.042646, 36.566527], [-81.039848, 36.566504], [-81.037614, 36.566373], [-81.037229, 36.56635], [-81.035939, 36.566273], [-81.035839, 36.566267], [-81.028977, 36.565858], [-81.028904, 36.565854], [-81.028831, 36.565849], [-81.028754, 36.565845], [-81.028677, 36.56584], [-81.027952, 36.565796], [-81.02789, 36.565793], [-81.027117, 36.565749], [-81.025961, 36.565677], [-81.024344, 36.565576], [-81.022916, 36.565486], [-81.021047, 36.565381], [-81.020999, 36.565384], [-81.020176, 36.565293], [-81.019974, 36.565265], [-81.019641, 36.565227], [-81.019479, 36.565209], [-81.019316, 36.56519], [-81.019151, 36.565171], [-81.018986, 36.565153], [-81.017046, 36.564933], [-81.01672, 36.564894], [-81.016297, 36.564848], [-81.01626, 36.564844], [-81.013904, 36.564577], [-81.01389, 36.564575], [-81.013796, 36.564564], [-81.012395, 36.564405], [-81.012301, 36.564394], [-81.012208, 36.564384], [-81.012164, 36.564379], [-81.011983, 36.564357], [-81.01173, 36.564329], [-81.011297, 36.56428], [-81.00956, 36.564083], [-81.00853, 36.563966], [-81.007685, 36.563954], [-81.007338, 36.563949], [-81.006917, 36.563944], [-81.003936, 36.563904], [-81.003794, 36.563902], [-80.998761, 36.563814], [-80.9957, 36.563741], [-80.994093, 36.563721], [-80.99261, 36.563708], [-80.990956, 36.56368], [-80.988838, 36.563644], [-80.985668, 36.563602], [-80.985355, 36.563594], [-80.984729, 36.563563], [-80.984703, 36.563562], [-80.984527, 36.563554], [-80.983749, 36.56352], [-80.97854, 36.563305], [-80.978239, 36.563293], [-80.976348, 36.563203], [-80.975425, 36.563169], [-80.973415, 36.563101], [-80.97179, 36.563044], [-80.967266, 36.56291], [-80.96459, 36.563214], [-80.961944, 36.563515], [-80.961512, 36.56358], [-80.957176, 36.563492], [-80.95338, 36.563425], [-80.953213, 36.56343], [-80.952971, 36.563418], [-80.952494, 36.563393], [-80.952017, 36.56337], [-80.950084, 36.563279], [-80.949865, 36.563269], [-80.949279, 36.563248], [-80.948615, 36.563231], [-80.947504, 36.563191], [-80.946505, 36.563239], [-80.946489, 36.56324], [-80.946351, 36.56319], [-80.94629, 36.563172], [-80.946173, 36.563142], [-80.946001, 36.563117], [-80.945796, 36.563102], [-80.944716, 36.563056], [-80.944473, 36.563039], [-80.944235, 36.563026], [-80.942037, 36.562999], [-80.940406, 36.563007], [-80.938972, 36.562984], [-80.935793, 36.562951], [-80.933016, 36.562938], [-80.931771, 36.562479], [-80.925468, 36.562343], [-80.915162, 36.562163], [-80.913156, 36.562126], [-80.912603, 36.562119], [-80.908511, 36.56205], [-80.906306, 36.562006], [-80.904095, 36.561939], [-80.903391, 36.561918], [-80.901735, 36.561842], [-80.901706, 36.561863], [-80.899383, 36.56175], [-80.898644, 36.561689], [-80.898456, 36.561681], [-80.892936, 36.561435], [-80.892198, 36.561403], [-80.889123, 36.561267], [-80.882199, 36.560961], [-80.877639, 36.560778], [-80.8748, 36.560662], [-80.873326, 36.560599], [-80.869842, 36.560447], [-80.861115, 36.560088], [-80.852683, 36.559732], [-80.842964, 36.559317], [-80.840337, 36.559206], [-80.837957, 36.55915], [-80.837774, 36.559145], [-80.837743, 36.559119], [-80.837664, 36.55909], [-80.837577, 36.559084], [-80.83749, 36.559103], [-80.83737, 36.559151], [-80.834887, 36.559264], [-80.834242, 36.559249], [-80.833123, 36.559309], [-80.830285, 36.55946], [-80.827241, 36.559576], [-80.823934, 36.559715], [-80.823916, 36.559716], [-80.823894, 36.559716], [-80.823276, 36.559732], [-80.823246, 36.559734], [-80.823022, 36.559748], [-80.820517, 36.559915], [-80.815778, 36.560173], [-80.813516, 36.560297], [-80.803911, 36.560823], [-80.801635, 36.560963], [-80.800453, 36.561037], [-80.799787, 36.56108], [-80.799641, 36.56107], [-80.799588, 36.561067], [-80.799522, 36.561062], [-80.799355, 36.561051], [-80.798525, 36.560978], [-80.797483, 36.560878], [-80.796674, 36.560815], [-80.794165, 36.560637], [-80.792744, 36.560554], [-80.792044, 36.560513], [-80.790493, 36.560502], [-80.790191, 36.560499], [-80.789975, 36.560498], [-80.789888, 36.560497], [-80.788295, 36.560484], [-80.786081, 36.560466], [-80.779378, 36.560423], [-80.777451, 36.560381], [-80.774162, 36.560312], [-80.773583, 36.560317], [-80.773095, 36.560337], [-80.772798, 36.560348], [-80.772211, 36.560368], [-80.771496, 36.560391], [-80.771263, 36.560402], [-80.7677, 36.560567], [-80.766807, 36.560607], [-80.761063, 36.560871], [-80.760717, 36.560887], [-80.758837, 36.560973], [-80.756874, 36.561067], [-80.756661, 36.561076], [-80.755972, 36.561104], [-80.754314, 36.561178], [-80.750924, 36.561334], [-80.750846, 36.561338], [-80.750498, 36.561356], [-80.750246, 36.561366], [-80.749803, 36.561387], [-80.749439, 36.561496], [-80.748571, 36.561534], [-80.748557, 36.561534], [-80.747157, 36.561557], [-80.746801, 36.561568], [-80.745425, 36.561632], [-80.745055, 36.56165], [-80.744736, 36.561664], [-80.744192, 36.56169], [-80.74379, 36.561708], [-80.741331, 36.56183], [-80.741016, 36.561843], [-80.730388, 36.562355], [-80.73006, 36.562357], [-80.724386, 36.562326], [-80.717286, 36.562292], [-80.717022, 36.562292], [-80.71417, 36.562287], [-80.712112, 36.56227], [-80.711508, 36.562275], [-80.70504, 36.562327], [-80.704756, 36.562322], [-80.704608, 36.562325], [-80.700274, 36.56217], [-80.696229, 36.561983], [-80.696017, 36.561975], [-80.692602, 36.561856], [-80.689674, 36.561609], [-80.688202, 36.561475], [-80.687573, 36.561419], [-80.68648, 36.561342], [-80.685493, 36.561273], [-80.683316, 36.561124], [-80.682535, 36.561068], [-80.679248, 36.560844], [-80.67734, 36.560706], [-80.676663, 36.560664], [-80.671858, 36.560369], [-80.667472, 36.560102], [-80.66371, 36.559868], [-80.662936, 36.55982], [-80.660216, 36.559651], [-80.659324, 36.559596], [-80.658474, 36.559543], [-80.653382, 36.559235], [-80.64728, 36.559041], [-80.64711, 36.55903], [-80.641339, 36.558845], [-80.638502, 36.558712], [-80.637653, 36.558694], [-80.637567, 36.558692], [-80.63603, 36.558656], [-80.632936, 36.558585], [-80.628872, 36.558499], [-80.62479, 36.558412], [-80.623922, 36.558372], [-80.61491, 36.557957], [-80.614769, 36.557951], [-80.612031, 36.55784], [-80.610454, 36.557767], [-80.607565, 36.557643], [-80.600549, 36.557338], [-80.600477, 36.557335], [-80.59789, 36.557232], [-80.597818, 36.557229], [-80.597222, 36.557206], [-80.592513, 36.557018], [-80.591366, 36.556973], [-80.587478, 36.556818], [-80.582801, 36.556631], [-80.581388, 36.556574], [-80.581338, 36.556572], [-80.577198, 36.556407], [-80.570992, 36.556159], [-80.5685, 36.556059], [-80.563831, 36.555873], [-80.560668, 36.555746], [-80.558915, 36.555677], [-80.548592, 36.555286], [-80.548552, 36.555284], [-80.548456, 36.55528], [-80.544755, 36.555131], [-80.540771, 36.55497], [-80.539404, 36.554913], [-80.534663, 36.554724], [-80.532438, 36.554634], [-80.52792, 36.554452], [-80.526379, 36.554389], [-80.522269, 36.554224], [-80.520035, 36.554134], [-80.518292, 36.554064], [-80.51181, 36.553805], [-80.511618, 36.553797], [-80.51094, 36.553769], [-80.510434, 36.553749], [-80.510066, 36.553734], [-80.509087, 36.553693], [-80.507066, 36.553613], [-80.507038, 36.553612], [-80.505565, 36.553554], [-80.505541, 36.553553], [-80.505138, 36.553537], [-80.499787, 36.553323], [-80.487761, 36.552956], [-80.483998, 36.552773], [-80.480473, 36.552601], [-80.480176, 36.55258], [-80.478525, 36.552502], [-80.470506, 36.55211], [-80.470173, 36.552094], [-80.466716, 36.551926], [-80.460945, 36.551648], [-80.451719, 36.551198], [-80.451389, 36.551183], [-80.451332, 36.551181], [-80.451276, 36.551178], [-80.448704, 36.551053], [-80.448456, 36.551041], [-80.443294, 36.550791], [-80.440103, 36.550637], [-80.434705, 36.550373], [-80.433506, 36.550331], [-80.433497, 36.550329], [-80.433155, 36.550262], [-80.432948, 36.550229], [-80.432715, 36.550199], [-80.432601, 36.550184], [-80.432218, 36.550148], [-80.432065, 36.550139], [-80.431957, 36.550133], [-80.431696, 36.550132], [-80.431599, 36.550137], [-80.431435, 36.550145], [-80.431305, 36.550179], [-80.431218, 36.550209], [-80.430397, 36.550177], [-80.430333, 36.550175], [-80.427762, 36.550053], [-80.427611, 36.550046], [-80.427448, 36.55005], [-80.426486, 36.549995], [-80.424113, 36.549885], [-80.424013, 36.54988], [-80.423914, 36.549876], [-80.421755, 36.549793], [-80.421677, 36.549773], [-80.421593, 36.549769], [-80.409743, 36.549208], [-80.408736, 36.54916], [-80.407814, 36.549117], [-80.407768, 36.549115], [-80.399204, 36.548679], [-80.39632, 36.548532], [-80.396284, 36.54853], [-80.39443, 36.54844], [-80.391074, 36.548284], [-80.387296, 36.548106], [-80.385669, 36.548028], [-80.383646, 36.547932], [-80.383234, 36.547912], [-80.382617, 36.547884], [-80.380444, 36.547782], [-80.379966, 36.547782], [-80.378032, 36.547739], [-80.374889, 36.547752], [-80.370189, 36.547484], [-80.370174, 36.547483], [-80.369187, 36.547435], [-80.369179, 36.547435], [-80.369171, 36.547434], [-80.369156, 36.547433], [-80.369149, 36.547433], [-80.369131, 36.547432], [-80.369109, 36.547431], [-80.367818, 36.547368], [-80.363976, 36.547181], [-80.363967, 36.547181], [-80.360301, 36.547013], [-80.356634, 36.546845], [-80.354117, 36.54673], [-80.351519, 36.546611], [-80.346075, 36.546368], [-80.344256, 36.546272], [-80.337051, 36.545923], [-80.336988, 36.54592], [-80.333965, 36.545781], [-80.333863, 36.545776], [-80.333624, 36.545765], [-80.333151, 36.545743], [-80.332998, 36.545736], [-80.33299, 36.545736], [-80.332975, 36.545735], [-80.332822, 36.545728], [-80.332025, 36.545691], [-80.328989, 36.54555], [-80.328843, 36.545543], [-80.328836, 36.545542], [-80.328829, 36.545542], [-80.328811, 36.545541], [-80.328763, 36.545539], [-80.3287, 36.545536], [-80.328635, 36.545533], [-80.328612, 36.545532], [-80.325021, 36.545363], [-80.310938, 36.54471], [-80.295431, 36.543985], [-80.295097, 36.543985], [-80.295084, 36.543984], [-80.294795, 36.543964], [-80.290921, 36.543979], [-80.290893, 36.543979], [-80.280072, 36.544022], [-80.278303, 36.544029], [-80.276533, 36.544036], [-80.276272, 36.544049], [-80.276042, 36.544049], [-80.275758, 36.544039], [-80.27211, 36.544055], [-80.27209, 36.544055], [-80.263249, 36.544071], [-80.260832, 36.544031], [-80.259016, 36.544017], [-80.258567, 36.544014], [-80.254722, 36.543989], [-80.250499, 36.544005], [-80.249682, 36.544014], [-80.247676, 36.543995], [-80.243735, 36.54396], [-80.243727, 36.54396], [-80.24329, 36.543957], [-80.243274, 36.543957], [-80.243125, 36.543956], [-80.243029, 36.543955], [-80.242777, 36.543953], [-80.241687, 36.543943], [-80.239417, 36.543924], [-80.236941, 36.543913], [-80.235213, 36.543905], [-80.231009, 36.543886], [-80.229637, 36.54388], [-80.228049, 36.543977], [-80.227562, 36.543881], [-80.225342, 36.543754], [-80.225331, 36.543754], [-80.218951, 36.543693], [-80.214738, 36.543661], [-80.199151, 36.543542], [-80.193292, 36.543488], [-80.19309, 36.543485], [-80.19159, 36.543464], [-80.183819, 36.543354], [-80.181569, 36.54333], [-80.179641, 36.543309], [-80.172936, 36.543278], [-80.17292, 36.543278], [-80.171632, 36.543244], [-80.171438, 36.543227], [-80.171198, 36.543203], [-80.170846, 36.543168], [-80.170686, 36.543145], [-80.17052, 36.54313], [-80.17032, 36.543125], [-80.170157, 36.543131], [-80.169932, 36.543151], [-80.169817, 36.543171], [-80.169751, 36.543183], [-80.169677, 36.543202], [-80.169523, 36.543198], [-80.169515, 36.543198], [-80.169499, 36.543197], [-80.16949, 36.543197], [-80.16941, 36.543195], [-80.169329, 36.543194], [-80.167898, 36.543176], [-80.167881, 36.543176], [-80.167576, 36.543172], [-80.167541, 36.543172], [-80.167534, 36.543171], [-80.167513, 36.543171], [-80.166373, 36.543156], [-80.166308, 36.543155], [-80.159643, 36.543074], [-80.158681, 36.543063], [-80.158395, 36.543059], [-80.157147, 36.543043], [-80.155149, 36.543019], [-80.15315, 36.542994], [-80.150248, 36.542966], [-80.150232, 36.542966], [-80.142571, 36.542882], [-80.142017, 36.542877], [-80.138823, 36.542807], [-80.1387, 36.542804], [-80.138676, 36.542804], [-80.136512, 36.542757], [-80.136485, 36.542756], [-80.13644, 36.542756], [-80.136426, 36.542755], [-80.136419, 36.542755], [-80.136312, 36.54275], [-80.129544, 36.542715], [-80.129469, 36.542715], [-80.126377, 36.542697], [-80.125791, 36.542694], [-80.125784, 36.542693], [-80.125706, 36.542693], [-80.122176, 36.542657], [-80.117072, 36.542639], [-80.113343, 36.542613], [-80.103816, 36.542596], [-80.101693, 36.542592], [-80.097225, 36.542584], [-80.097032, 36.542584], [-80.097025, 36.542583], [-80.096978, 36.542583], [-80.09675, 36.542582], [-80.096718, 36.542582], [-80.096132, 36.542577], [-80.095719, 36.542575], [-80.091156, 36.542567], [-80.083026, 36.542551], [-80.074897, 36.542534], [-80.064179, 36.542513], [-80.053463, 36.542492], [-80.052367, 36.542466], [-80.042439, 36.542479], [-80.037606, 36.542454], [-80.036044, 36.54249], [-80.027272, 36.542502], [-80.026159, 36.542504], [-80.026133, 36.542504], [-80.026127, 36.542502], [-80.013716, 36.542504], [-80.013333, 36.542504], [-80.008736, 36.542505], [-80.006702, 36.542505], [-80.004925, 36.542507], [-80.004427, 36.542508], [-80.004319, 36.542508], [-80.004173, 36.542485], [-80.002988, 36.542556], [-80.00298, 36.542559], [-80.002969, 36.542563], [-80.000477, 36.542378], [-80.00047, 36.542378], [-80.00045, 36.542376], [-80.000382, 36.542371], [-79.999328, 36.542298], [-79.992309, 36.542289], [-79.988157, 36.54234], [-79.986018, 36.542371], [-79.982852, 36.542417], [-79.982822, 36.542417], [-79.97949, 36.542422], [-79.975483, 36.542446], [-79.967755, 36.542507], [-79.967514, 36.542508], [-79.967356, 36.542501], [-79.966982, 36.542482], [-79.963326, 36.542667], [-79.963303, 36.542666], [-79.960085, 36.542511], [-79.960022, 36.542512], [-79.952489, 36.54261], [-79.951772, 36.542616], [-79.951464, 36.542619], [-79.949619, 36.542634], [-79.933344, 36.54263], [-79.931166, 36.542545], [-79.930947, 36.542553], [-79.930833, 36.542557], [-79.928532, 36.542643], [-79.928056, 36.542629], [-79.927412, 36.542612], [-79.925159, 36.542537], [-79.925062, 36.542534], [-79.920241, 36.542755], [-79.917718, 36.542502], [-79.912676, 36.542539], [-79.911189, 36.542707], [-79.911003, 36.542657], [-79.910984, 36.542652], [-79.910978, 36.54265], [-79.91073, 36.542586], [-79.909382, 36.542498], [-79.904896, 36.542535], [-79.891574, 36.542746], [-79.889683, 36.542801], [-79.887251, 36.542872], [-79.874654, 36.542703], [-79.869657, 36.542739], [-79.865604, 36.542603], [-79.865365, 36.542603], [-79.860732, 36.542607], [-79.856896, 36.54261], [-79.852199, 36.542586], [-79.845542, 36.542552], [-79.842898, 36.542622], [-79.841325, 36.542624], [-79.83709, 36.542628], [-79.836871, 36.54263], [-79.831071, 36.542686], [-79.829174, 36.542635], [-79.817199, 36.542464], [-79.807601, 36.542236], [-79.807581, 36.542238], [-79.80462, 36.542502], [-79.777107, 36.542287], [-79.775217, 36.542018], [-79.774293, 36.542272], [-79.772388, 36.542286], [-79.771502, 36.542295], [-79.765394, 36.542374], [-79.762724, 36.542272], [-79.759788, 36.542161], [-79.759672, 36.54216], [-79.75908, 36.542156], [-79.758945, 36.542155], [-79.758919, 36.542155], [-79.758758, 36.542154], [-79.758339, 36.542151], [-79.758177, 36.54215], [-79.758025, 36.542149], [-79.757983, 36.542149], [-79.757845, 36.542148], [-79.757792, 36.542148], [-79.757778, 36.542147], [-79.757745, 36.542147], [-79.757454, 36.542145], [-79.757116, 36.542143], [-79.756932, 36.542142], [-79.75213, 36.54211], [-79.74976, 36.542095], [-79.747903, 36.542087], [-79.745162, 36.542075], [-79.745118, 36.542075], [-79.741429, 36.542059], [-79.736272, 36.541983], [-79.735936, 36.541983], [-79.732776, 36.541986], [-79.732455, 36.541986], [-79.732448, 36.541987], [-79.731903, 36.541987], [-79.714858, 36.541945], [-79.692277, 36.541878], [-79.690801, 36.541912], [-79.690462, 36.541918], [-79.676883, 36.541817], [-79.675127, 36.541831], [-79.672534, 36.541817], [-79.667128, 36.541778], [-79.666993, 36.541799], [-79.66683, 36.541799], [-79.666404, 36.5418], [-79.666354, 36.5418], [-79.664526, 36.541803], [-79.66391, 36.5418], [-79.66221, 36.541798], [-79.660032, 36.542106], [-79.659914, 36.542123], [-79.646716, 36.541913], [-79.636656, 36.541638], [-79.633093, 36.5416], [-79.628987, 36.541554], [-79.627081, 36.541653], [-79.627049, 36.541655], [-79.627042, 36.541655], [-79.627034, 36.541656], [-79.626877, 36.541664], [-79.626803, 36.541668], [-79.626715, 36.541672], [-79.626639, 36.541676], [-79.626605, 36.541678], [-79.626489, 36.541684], [-79.625555, 36.541733], [-79.625531, 36.541734], [-79.625476, 36.541737], [-79.625456, 36.541738], [-79.625448, 36.541738], [-79.625438, 36.541739], [-79.625404, 36.541741], [-79.625377, 36.541742], [-79.625268, 36.541732], [-79.624845, 36.541702], [-79.62476, 36.541696], [-79.623613, 36.541659], [-79.621297, 36.541585], [-79.620048, 36.541654], [-79.615147, 36.541571], [-79.607433, 36.541503], [-79.605372, 36.541475], [-79.605211, 36.541494], [-79.605157, 36.541496], [-79.605042, 36.541501], [-79.60474, 36.541514], [-79.604483, 36.541525], [-79.599783, 36.541436], [-79.599514, 36.541435], [-79.598943, 36.541425], [-79.584832, 36.541205], [-79.581135, 36.541194], [-79.576249, 36.541175], [-79.575677, 36.541173], [-79.574839, 36.541169], [-79.574783, 36.541169], [-79.572545, 36.541142], [-79.572401, 36.54114], [-79.569763, 36.541073], [-79.563481, 36.541016], [-79.551352, 36.540968], [-79.546544, 36.540948], [-79.546457, 36.540948], [-79.54446, 36.540936], [-79.543086, 36.540938], [-79.542174, 36.540932], [-79.531422, 36.540864], [-79.526728, 36.540837], [-79.526206, 36.540834], [-79.526073, 36.540833], [-79.518379, 36.540786], [-79.517806, 36.540791], [-79.517385, 36.540784], [-79.515621, 36.540773], [-79.514462, 36.540766], [-79.51434, 36.540766], [-79.51097, 36.54079], [-79.508065, 36.540823], [-79.507891, 36.540825], [-79.500503, 36.540919], [-79.49975, 36.540929], [-79.497315, 36.540794], [-79.497251, 36.54079], [-79.496366, 36.540813], [-79.495819, 36.540792], [-79.495756, 36.540789], [-79.489711, 36.540819], [-79.48246, 36.540829], [-79.47845, 36.540844], [-79.478007, 36.540842], [-79.476897, 36.540837], [-79.47576, 36.540835], [-79.47235, 36.54083], [-79.472234, 36.54083], [-79.471214, 36.540829], [-79.468701, 36.540829], [-79.466336, 36.54083], [-79.465835, 36.54083], [-79.465631, 36.540829], [-79.465316, 36.540829], [-79.464976, 36.540835], [-79.464398, 36.540844], [-79.462968, 36.540843], [-79.460121, 36.540841], [-79.459628, 36.540846], [-79.458264, 36.540852], [-79.458015, 36.540857], [-79.456706, 36.540874], [-79.456456, 36.540885], [-79.451916, 36.54108], [-79.445964, 36.541202], [-79.44569, 36.541225], [-79.445679, 36.541225], [-79.445486, 36.541228], [-79.445186, 36.541233], [-79.443129, 36.54126], [-79.442895, 36.541265], [-79.440463, 36.541279], [-79.429848, 36.541345], [-79.428656, 36.541346], [-79.425461, 36.541349], [-79.412223, 36.541364], [-79.411942, 36.541364], [-79.410361, 36.541375], [-79.405945, 36.541404], [-79.405856, 36.541405], [-79.405617, 36.541407], [-79.405378, 36.541408], [-79.405377, 36.541408], [-79.400789, 36.541439], [-79.400767, 36.541439], [-79.400022, 36.541441], [-79.40002, 36.541441], [-79.397532, 36.541453], [-79.397139, 36.54145], [-79.390219, 36.541383], [-79.389316, 36.541375], [-79.388959, 36.541372], [-79.388159, 36.541362], [-79.386617, 36.541353], [-79.384745, 36.541341], [-79.374746, 36.541336], [-79.373247, 36.541429], [-79.373246, 36.541429], [-79.372928, 36.541449], [-79.366514, 36.541426], [-79.36444, 36.54142], [-79.362949, 36.541415], [-79.353156, 36.541389], [-79.347345, 36.541382], [-79.347205, 36.541382], [-79.343287, 36.541375], [-79.343004, 36.541374], [-79.342962, 36.541374], [-79.342825, 36.541373], [-79.342571, 36.541373], [-79.342569, 36.541372], [-79.337478, 36.541361], [-79.33443, 36.541355], [-79.326952, 36.541333], [-79.326604, 36.541333], [-79.322188, 36.541327], [-79.316802, 36.54131], [-79.311201, 36.541292], [-79.307081, 36.541283], [-79.29933, 36.541263], [-79.299323, 36.541262], [-79.298896, 36.541264], [-79.295251, 36.541255], [-79.294106, 36.541253], [-79.28639, 36.541235], [-79.283938, 36.541228], [-79.280223, 36.541217], [-79.279512, 36.541217], [-79.278586, 36.541216], [-79.278044, 36.541216], [-79.274296, 36.541206], [-79.273829, 36.541205], [-79.269296, 36.541193], [-79.269212, 36.541193], [-79.26814, 36.541191], [-79.267992, 36.541191], [-79.266158, 36.541186], [-79.26443, 36.541182], [-79.263085, 36.541179], [-79.263061, 36.541179], [-79.262057, 36.541175], [-79.261806, 36.541175], [-79.259547, 36.541168], [-79.252771, 36.541149], [-79.250513, 36.541143], [-79.250477, 36.541148], [-79.249833, 36.541146], [-79.244964, 36.541224], [-79.239127, 36.541318], [-79.237968, 36.541336], [-79.23481, 36.541386], [-79.228359, 36.54149], [-79.218641, 36.541646], [-79.217857, 36.541647], [-79.217625, 36.541647], [-79.216093, 36.541648], [-79.214326, 36.54165], [-79.214144, 36.541647], [-79.214039, 36.541648], [-79.213933, 36.541649], [-79.213775, 36.54165], [-79.213616, 36.541651], [-79.213008, 36.541651], [-79.212161, 36.541652], [-79.209557, 36.541602], [-79.208689, 36.541578], [-79.207158, 36.541648], [-79.207067, 36.541652], [-79.206979, 36.541656], [-79.20684, 36.541656], [-79.198353, 36.541664], [-79.196447, 36.541666], [-79.190878, 36.541671], [-79.190703, 36.541671], [-79.18907, 36.541675], [-79.187791, 36.541679], [-79.187467, 36.541679], [-79.185185, 36.541682], [-79.183774, 36.541683], [-79.180724, 36.541687], [-79.17964, 36.541688], [-79.17592, 36.541691], [-79.171665, 36.541697], [-79.16459, 36.541704], [-79.162957, 36.541706], [-79.161619, 36.541707], [-79.15537, 36.541716], [-79.154873, 36.541723], [-79.15462, 36.541716], [-79.148671, 36.541722], [-79.146789, 36.541725], [-79.14165, 36.541731], [-79.138424, 36.541744], [-79.138318, 36.541743], [-79.138095, 36.541745], [-79.137939, 36.541746], [-79.137485, 36.541737], [-79.136125, 36.541711], [-79.135672, 36.541703], [-79.133753, 36.54167], [-79.127999, 36.541572], [-79.126081, 36.54154], [-79.125956, 36.541558], [-79.125636, 36.541605], [-79.125581, 36.541612], [-79.125457, 36.541631], [-79.125049, 36.541599], [-79.124739, 36.541575], [-79.122326, 36.541612], [-79.117441, 36.541645], [-79.117287, 36.541646], [-79.104439, 36.541646], [-79.100165, 36.541694], [-79.098674, 36.541711], [-79.095056, 36.541752], [-79.091119, 36.541797], [-79.089463, 36.541816], [-79.08684, 36.541846], [-79.085282, 36.541865], [-79.079645, 36.54193], [-79.070099, 36.542041], [-79.069492, 36.542046], [-79.069299, 36.542046], [-79.066316, 36.542047], [-79.062121, 36.542046], [-79.055896, 36.542043], [-79.048238, 36.542044], [-79.044358, 36.542046], [-79.020638, 36.542046], [-79.017333, 36.542061], [-79.017333, 36.542062], [-79.014759, 36.542075], [-79.013926, 36.542077], [-79.013924, 36.542077], [-79.006392, 36.542097], [-79.00639, 36.542097], [-78.999736, 36.542114], [-78.994928, 36.542111], [-78.994598, 36.542112], [-78.993609, 36.542117], [-78.99328, 36.542119], [-78.992673, 36.542118], [-78.990245, 36.542118], [-78.983569, 36.542114], [-78.979197, 36.542111], [-78.973923, 36.542125], [-78.971817, 36.54213], [-78.971569, 36.542136], [-78.970827, 36.542154], [-78.97058, 36.542161], [-78.964608, 36.542145], [-78.964534, 36.542145], [-78.964402, 36.542144], [-78.964109, 36.542143], [-78.963428, 36.542141], [-78.963354, 36.542138], [-78.962111, 36.542083], [-78.961729, 36.542086], [-78.961653, 36.542086], [-78.961578, 36.542088], [-78.961432, 36.542088], [-78.954942, 36.54213], [-78.954675, 36.542129], [-78.949406, 36.54211], [-78.949331, 36.542109], [-78.94915, 36.542109], [-78.946198, 36.542099], [-78.942363, 36.542085], [-78.942259, 36.542086], [-78.942011, 36.542121], [-78.942007, 36.54212], [-78.941791, 36.542119], [-78.9416, 36.542116], [-78.941572, 36.542117], [-78.941516, 36.542111], [-78.941503, 36.542116], [-78.941503, 36.542117], [-78.941261, 36.542117], [-78.939691, 36.54211], [-78.939207, 36.542108], [-78.937394, 36.542101], [-78.933673, 36.542087], [-78.933481, 36.542085], [-78.930676, 36.542072], [-78.927944, 36.542063], [-78.92729, 36.54206], [-78.92533, 36.542054], [-78.924677, 36.542052], [-78.920214, 36.542036], [-78.917052, 36.542024], [-78.916354, 36.542022], [-78.916078, 36.54201], [-78.914283, 36.54202], [-78.914184, 36.541981], [-78.913149, 36.541984], [-78.91303, 36.541985], [-78.902773, 36.542002], [-78.901703, 36.542], [-78.901417, 36.541999], [-78.893589, 36.542027], [-78.888366, 36.542035], [-78.888126, 36.542035], [-78.880725, 36.542049], [-78.874759, 36.542034], [-78.871776, 36.542079], [-78.866187, 36.542081], [-78.856253, 36.542089], [-78.848272, 36.542095], [-78.847967, 36.542095], [-78.845652, 36.542097], [-78.83535, 36.54204], [-78.835247, 36.542039], [-78.834453, 36.542034], [-78.832071, 36.542021], [-78.83176, 36.54202], [-78.831278, 36.542003], [-78.83085, 36.541987], [-78.829566, 36.541941], [-78.829138, 36.541926], [-78.828627, 36.541928], [-78.827094, 36.541935], [-78.826584, 36.541938], [-78.826502, 36.541938], [-78.821312, 36.541964], [-78.82067, 36.541972], [-78.820628, 36.541973], [-78.818708, 36.541876], [-78.818578, 36.541877], [-78.81227, 36.541899], [-78.808823, 36.541912], [-78.808822, 36.541912], [-78.807651, 36.541916], [-78.801679, 36.541876], [-78.801272, 36.541865], [-78.796363, 36.54172], [-78.796303, 36.54172], [-78.794741, 36.54173], [-78.794054, 36.541734], [-78.787308, 36.541776], [-78.786695, 36.54178], [-78.78506, 36.541761], [-78.77899, 36.541693], [-78.7776, 36.541681], [-78.775871, 36.541669], [-78.77461, 36.541675], [-78.773556, 36.541681], [-78.772706, 36.541685], [-78.770156, 36.541698], [-78.769307, 36.541703], [-78.768868, 36.541705], [-78.76755, 36.541712], [-78.767112, 36.541715], [-78.767057, 36.541715], [-78.767044, 36.541716], [-78.766677, 36.541718], [-78.766282, 36.54176], [-78.765424, 36.541724], [-78.765149, 36.541739], [-78.764377, 36.541753], [-78.762492, 36.541787], [-78.762262, 36.541781], [-78.761935, 36.541776], [-78.760702, 36.541782], [-78.758389, 36.541856], [-78.758076, 36.541721], [-78.754522, 36.541766], [-78.753319, 36.541781], [-78.749713, 36.541828], [-78.749658, 36.541829], [-78.748512, 36.541882], [-78.747927, 36.541892], [-78.746172, 36.541921], [-78.745588, 36.541932], [-78.74329, 36.541971], [-78.743103, 36.541974], [-78.742739, 36.541982], [-78.742554, 36.541982], [-78.742338, 36.541983], [-78.742142, 36.54198], [-78.740359, 36.54195], [-78.739415, 36.541935], [-78.734125, 36.541954], [-78.732176, 36.541962], [-78.724347, 36.542031], [-78.724155, 36.542033], [-78.709783, 36.542047], [-78.704179, 36.542054], [-78.704067, 36.542054], [-78.703884, 36.541999], [-78.703792, 36.541972], [-78.695336, 36.54206], [-78.69497, 36.542064], [-78.694397, 36.54207], [-78.692949, 36.542069], [-78.691269, 36.542068], [-78.687731, 36.542067], [-78.685614, 36.542066], [-78.685438, 36.542072], [-78.683916, 36.542126], [-78.682891, 36.542047], [-78.682833, 36.542043], [-78.682098, 36.542075], [-78.681427, 36.542105], [-78.67834, 36.542127], [-78.675028, 36.542134], [-78.674573, 36.542119], [-78.672471, 36.542085], [-78.671268, 36.542067], [-78.671268, 36.542079], [-78.670978, 36.542092], [-78.670367, 36.542108], [-78.669305, 36.542119], [-78.668954, 36.542129], [-78.667912, 36.542138], [-78.66713, 36.542151], [-78.666618, 36.542152], [-78.665184, 36.542142], [-78.664832, 36.542128], [-78.664497, 36.54212], [-78.66414, 36.542098], [-78.663945, 36.54208], [-78.663609, 36.54205], [-78.663302, 36.542022], [-78.661833, 36.542022], [-78.660143, 36.54199], [-78.655751, 36.541893], [-78.65487, 36.541873], [-78.649654, 36.541758], [-78.637476, 36.541488], [-78.637255, 36.541483], [-78.637024, 36.541483], [-78.632383, 36.541484], [-78.626011, 36.541382], [-78.624727, 36.541361], [-78.620977, 36.5413], [-78.620775, 36.541299], [-78.618648, 36.541295], [-78.611326, 36.541278], [-78.609083, 36.541273], [-78.607201, 36.541269], [-78.605345, 36.541102], [-78.605307, 36.541098], [-78.596214, 36.541207], [-78.59605, 36.54121], [-78.595153, 36.541221], [-78.594388, 36.541221], [-78.592156, 36.541218], [-78.591313, 36.541225], [-78.585953, 36.541213], [-78.585118, 36.541211], [-78.584334, 36.541209], [-78.578412, 36.541192], [-78.578235, 36.541192], [-78.575406, 36.541184], [-78.575086, 36.541184], [-78.57492, 36.541183], [-78.574752, 36.541183], [-78.572859, 36.541179], [-78.565797, 36.541174], [-78.56508, 36.541173], [-78.564806, 36.541266], [-78.564643, 36.541265], [-78.552554, 36.541144], [-78.539868, 36.541108], [-78.53918, 36.541098], [-78.538966, 36.541095], [-78.537284, 36.541071], [-78.534928, 36.541038], [-78.533063, 36.541011], [-78.532533, 36.541015], [-78.529601, 36.541017], [-78.529205, 36.540994], [-78.52874, 36.540947], [-78.528709, 36.540947], [-78.524582, 36.541076], [-78.516673, 36.540974], [-78.516614, 36.540973], [-78.516492, 36.540972], [-78.515431, 36.54096], [-78.512766, 36.541051], [-78.511319, 36.540958], [-78.511282, 36.540961], [-78.509967, 36.541072], [-78.507198, 36.54115], [-78.504859, 36.541243], [-78.50344, 36.54131], [-78.501413, 36.541401], [-78.501254, 36.541408], [-78.499723, 36.541477], [-78.49599, 36.54155], [-78.493892, 36.541592], [-78.487707, 36.541769], [-78.485146, 36.541895], [-78.482345, 36.542036], [-78.480873, 36.542107], [-78.479669, 36.542125], [-78.477568, 36.542195], [-78.476752, 36.542201], [-78.474169, 36.542218], [-78.473915, 36.542222], [-78.473909, 36.542225], [-78.473771, 36.542226], [-78.471024, 36.542314], [-78.470794, 36.542323], [-78.469872, 36.542332], [-78.46906, 36.54234], [-78.468716, 36.542343], [-78.467497, 36.542356], [-78.464529, 36.542368], [-78.464403, 36.542372], [-78.463331, 36.542453], [-78.463213, 36.542457], [-78.46303, 36.542463], [-78.462159, 36.542465], [-78.461993, 36.542466], [-78.45969, 36.542472], [-78.456972, 36.542481], [-78.456337, 36.542484], [-78.455933, 36.542486], [-78.45264, 36.542528], [-78.449319, 36.542571], [-78.443888, 36.542642], [-78.441379, 36.542691], [-78.441326, 36.542636], [-78.441277, 36.542607], [-78.44122, 36.54259], [-78.441045, 36.542591], [-78.439789, 36.542647], [-78.439512, 36.542657], [-78.438886, 36.542636], [-78.438136, 36.542636], [-78.436828, 36.542651], [-78.436662, 36.542636], [-78.43663, 36.542641], [-78.436608, 36.542655], [-78.436532, 36.542747], [-78.435084, 36.54273], [-78.429267, 36.542782], [-78.428525, 36.542792], [-78.427807, 36.542802], [-78.426728, 36.542819], [-78.417229, 36.542911], [-78.41722, 36.542911], [-78.416374, 36.542919], [-78.410356, 36.542986], [-78.409828, 36.542981], [-78.407892, 36.543027], [-78.406668, 36.543057], [-78.406179, 36.543053], [-78.404069, 36.543038], [-78.403849, 36.543039], [-78.396345, 36.543104], [-78.395397, 36.543112], [-78.388284, 36.543172], [-78.38828, 36.543172], [-78.383694, 36.543211], [-78.383691, 36.543211], [-78.38304, 36.543217], [-78.381469, 36.543223], [-78.379701, 36.543273], [-78.379402, 36.543278], [-78.377073, 36.543266], [-78.375404, 36.543269], [-78.374721, 36.543342], [-78.369189, 36.543416], [-78.369101, 36.543415], [-78.369092, 36.543414], [-78.36786, 36.543393], [-78.367548, 36.543387], [-78.362927, 36.543433], [-78.362926, 36.543433], [-78.361182, 36.54345], [-78.3608, 36.543454], [-78.360402, 36.543458], [-78.358695, 36.543474], [-78.35857, 36.543475], [-78.345586, 36.543603], [-78.323914, 36.543816], [-78.317962, 36.543875], [-78.317223, 36.543882], [-78.313003, 36.543924], [-78.3103, 36.543951], [-78.298997, 36.544064], [-78.297079, 36.544089], [-78.296893, 36.544091], [-78.296811, 36.544092], [-78.29678, 36.544092], [-78.296695, 36.544093], [-78.296179, 36.5441], [-78.296125, 36.544101], [-78.296036, 36.544102], [-78.295942, 36.544102], [-78.292265, 36.544122], [-78.292245, 36.544122], [-78.288678, 36.54414], [-78.288628, 36.54414], [-78.2886, 36.544141], [-78.28853, 36.544141], [-78.287934, 36.544144], [-78.287901, 36.544144], [-78.286218, 36.544156], [-78.284677, 36.544166], [-78.284668, 36.544166], [-78.277288, 36.544224], [-78.273882, 36.544239], [-78.271554, 36.544258], [-78.27149, 36.544259], [-78.271451, 36.544259], [-78.271444, 36.54426], [-78.271216, 36.544266], [-78.270489, 36.544271], [-78.270332, 36.544273], [-78.264331, 36.544321], [-78.264308, 36.544321], [-78.259816, 36.544359], [-78.258546, 36.54437], [-78.258429, 36.544371], [-78.258302, 36.544372], [-78.257416, 36.544381], [-78.257402, 36.54438], [-78.257385, 36.54438], [-78.25728, 36.544381], [-78.25724, 36.544381], [-78.257232, 36.544382], [-78.257211, 36.544382], [-78.251136, 36.544447], [-78.249796, 36.544466], [-78.24693, 36.544357], [-78.246917, 36.544357], [-78.24669, 36.544348], [-78.246682, 36.544348], [-78.245464, 36.544418], [-78.235824, 36.544377], [-78.234685, 36.544372], [-78.225851, 36.544334], [-78.225664, 36.544333], [-78.2256, 36.544333], [-78.225364, 36.544332], [-78.225271, 36.544332], [-78.225236, 36.544331], [-78.225159, 36.544331], [-78.224779, 36.544329], [-78.223354, 36.544323], [-78.21769, 36.544299], [-78.211825, 36.544273], [-78.203374, 36.544237], [-78.201784, 36.54423], [-78.199189, 36.544219], [-78.199152, 36.544219], [-78.19834, 36.544215], [-78.197257, 36.544211], [-78.194101, 36.544198], [-78.188475, 36.544173], [-78.188376, 36.544173], [-78.187317, 36.544181], [-78.187273, 36.544181], [-78.187168, 36.544182], [-78.187107, 36.544183], [-78.187009, 36.544184], [-78.184866, 36.544202], [-78.184566, 36.5442], [-78.184077, 36.544196], [-78.179289, 36.544165], [-78.174204, 36.544156], [-78.170216, 36.544119], [-78.167386, 36.544092], [-78.165859, 36.544078], [-78.16106, 36.543996], [-78.161029, 36.543996], [-78.161013, 36.543995], [-78.160998, 36.543995], [-78.160826, 36.543992], [-78.160741, 36.543991], [-78.160268, 36.543983], [-78.1601, 36.54398], [-78.160077, 36.54398], [-78.159848, 36.543976], [-78.159751, 36.543974], [-78.159601, 36.543971], [-78.158469, 36.543954], [-78.158208, 36.543951], [-78.158182, 36.543951], [-78.157814, 36.543947], [-78.157536, 36.543944], [-78.142877, 36.543686], [-78.141532, 36.543708], [-78.14152, 36.543708], [-78.141467, 36.543709], [-78.138924, 36.543729], [-78.138222, 36.543735], [-78.1341, 36.543814], [-78.133396, 36.543851], [-78.133325, 36.543854], [-78.133163, 36.543834], [-78.132913, 36.543818], [-78.132629, 36.543844], [-78.131356, 36.543869], [-78.130933, 36.543877], [-78.129681, 36.543903], [-78.129544, 36.543906], [-78.128892, 36.543904], [-78.123307, 36.543827], [-78.122295, 36.543827], [-78.118533, 36.54383], [-78.106755, 36.543878], [-78.105338, 36.543883], [-78.096952, 36.543919], [-78.096726, 36.543919], [-78.090001, 36.543947], [-78.088197, 36.543955], [-78.087192, 36.543959], [-78.085644, 36.543965], [-78.085622, 36.543965], [-78.082642, 36.543977], [-78.082624, 36.543977], [-78.082196, 36.543979], [-78.082155, 36.543979], [-78.081566, 36.543982], [-78.078612, 36.543994], [-78.078588, 36.543994], [-78.07694, 36.544001], [-78.076198, 36.544004], [-78.075365, 36.544007], [-78.074565, 36.544008], [-78.074556, 36.544008], [-78.072499, 36.544019], [-78.072476, 36.544019], [-78.071031, 36.544024], [-78.071021, 36.544024], [-78.062663, 36.544072], [-78.062483, 36.544073], [-78.062411, 36.544073], [-78.062401, 36.544074], [-78.062326, 36.544074], [-78.05952, 36.54409], [-78.059472, 36.54409], [-78.059216, 36.544092], [-78.059201, 36.544092], [-78.057987, 36.544095], [-78.0578, 36.544096], [-78.056091, 36.544102], [-78.05516, 36.544107], [-78.05514, 36.544107], [-78.05399, 36.544133], [-78.053366, 36.544138], [-78.053351, 36.544138], [-78.05333, 36.544139], [-78.05319, 36.544139], [-78.046205, 36.544163], [-78.045376, 36.544166], [-78.043492, 36.544173], [-78.043036, 36.544178], [-78.043, 36.544178], [-78.04292, 36.544179], [-78.042787, 36.544181], [-78.041322, 36.544199], [-78.041314, 36.544199], [-78.039451, 36.544195], [-78.039422, 36.544195], [-78.039006, 36.544182], [-78.03894, 36.54418], [-78.035396, 36.544202], [-78.035011, 36.544201], [-78.034583, 36.544199], [-78.032859, 36.544204], [-78.03259, 36.544205], [-78.031827, 36.544207], [-78.031568, 36.544207], [-78.030645, 36.544209], [-78.029013, 36.544213], [-78.027341, 36.544222], [-78.02619, 36.544225], [-78.025157, 36.544228], [-78.024222, 36.544231], [-78.024215, 36.544231], [-78.022212, 36.544241], [-78.021935, 36.544242], [-78.02192, 36.544243], [-78.0218, 36.544243], [-78.021652, 36.544244], [-78.014775, 36.54428], [-78.013332, 36.544284], [-78.013233, 36.544284], [-78.01271, 36.544285], [-78.01204, 36.544286], [-78.011349, 36.544288], [-78.009144, 36.544294], [-78.009137, 36.544294], [-78.007898, 36.544298], [-78.007891, 36.544298], [-77.99972, 36.544402], [-77.999617, 36.544402], [-77.995134, 36.544414], [-77.984345, 36.544444], [-77.983319, 36.544447], [-77.982791, 36.544449], [-77.981049, 36.544472], [-77.975466, 36.544486], [-77.970971, 36.544499], [-77.969423, 36.544453], [-77.964256, 36.544468], [-77.964145, 36.544468], [-77.955778, 36.544497], [-77.942805, 36.544539], [-77.942782, 36.544539], [-77.931654, 36.544577], [-77.930648, 36.54458], [-77.930017, 36.544582], [-77.924077, 36.544602], [-77.922977, 36.544606], [-77.922289, 36.544608], [-77.920009, 36.544615], [-77.918579, 36.544596], [-77.916209, 36.544604], [-77.913975, 36.544612], [-77.913967, 36.544612], [-77.907005, 36.544641], [-77.906925, 36.544641], [-77.906841, 36.544642], [-77.906797, 36.544642], [-77.906342, 36.544644], [-77.906227, 36.544644], [-77.905724, 36.544646], [-77.900744, 36.544666], [-77.899773, 36.54467], [-77.897264, 36.544681], [-77.89331, 36.544697], [-77.89318, 36.544698], [-77.893054, 36.544699], [-77.891467, 36.544705], [-77.887254, 36.544722], [-77.886966, 36.544723], [-77.886775, 36.544725], [-77.882259, 36.544462], [-77.882169, 36.544479], [-77.882048, 36.544502], [-77.8795, 36.544539], [-77.878112, 36.54457], [-77.877581, 36.544577], [-77.875477, 36.544577], [-77.875324, 36.544574], [-77.875289, 36.544573], [-77.875247, 36.544571], [-77.874697, 36.544698], [-77.874417, 36.544732], [-77.873225, 36.544843], [-77.871877, 36.544854], [-77.871197, 36.544859], [-77.870861, 36.544862], [-77.870729, 36.544863], [-77.870342, 36.544866], [-77.868682, 36.544879], [-77.86849, 36.544881], [-77.867985, 36.544885], [-77.862939, 36.544927], [-77.862044, 36.54493], [-77.860908, 36.544934], [-77.859223, 36.544939], [-77.858597, 36.544941], [-77.858594, 36.544941], [-77.854464, 36.544955], [-77.852875, 36.54496], [-77.852314, 36.544962], [-77.851885, 36.544963], [-77.850889, 36.544967], [-77.850806, 36.544967], [-77.849573, 36.544971], [-77.847598, 36.544978], [-77.846915, 36.544982], [-77.833082, 36.545058], [-77.832994, 36.545058], [-77.832834, 36.545059], [-77.829181, 36.545079], [-77.828796, 36.545082], [-77.827828, 36.545088], [-77.827666, 36.545089], [-77.819562, 36.545134], [-77.818356, 36.545141], [-77.818321, 36.545141], [-77.815708, 36.545156], [-77.811175, 36.545181], [-77.809762, 36.545189], [-77.802336, 36.54523], [-77.795646, 36.545267], [-77.784783, 36.545328], [-77.784583, 36.545329], [-77.783021, 36.545338], [-77.780429, 36.545352], [-77.776246, 36.545376], [-77.772718, 36.545396], [-77.772253, 36.545399], [-77.767392, 36.545428], [-77.767119, 36.545429], [-77.759134, 36.545468], [-77.757167, 36.545485], [-77.756436, 36.545489], [-77.749907, 36.545525], [-77.749708, 36.545527], [-77.749301, 36.545514], [-77.745584, 36.545502], [-77.738773, 36.54548], [-77.737777, 36.54547], [-77.736457, 36.545466], [-77.736293, 36.545465], [-77.732291, 36.54545], [-77.722486, 36.545414], [-77.719707, 36.545404], [-77.712319, 36.545377], [-77.710252, 36.54537], [-77.705624, 36.545406], [-77.696915, 36.545387], [-77.695646, 36.545382], [-77.694428, 36.54538], [-77.694377, 36.54538], [-77.692321, 36.545376], [-77.689002, 36.545371], [-77.686204, 36.545363], [-77.684543, 36.545358], [-77.680422, 36.545343], [-77.677091, 36.54534], [-77.677008, 36.54534], [-77.676712, 36.545339], [-77.675345, 36.545336], [-77.672546, 36.545331], [-77.672537, 36.545331], [-77.672412, 36.545327], [-77.672376, 36.545326], [-77.663992, 36.545309], [-77.649291, 36.545275], [-77.649105, 36.545275], [-77.646759, 36.545269], [-77.645868, 36.545268], [-77.645837, 36.545271], [-77.645561, 36.545272], [-77.641696, 36.545251], [-77.640333, 36.545244], [-77.624755, 36.545218], [-77.619402, 36.545119], [-77.619335, 36.545118], [-77.619159, 36.545114], [-77.618157, 36.545104], [-77.614356, 36.54504], [-77.612264, 36.545064], [-77.60976, 36.54512], [-77.609468, 36.545126], [-77.6093, 36.54513], [-77.609221, 36.545132], [-77.608476, 36.545159], [-77.608277, 36.545162], [-77.607893, 36.545169], [-77.603687, 36.54527], [-77.601623, 36.54532], [-77.598416, 36.54532], [-77.597834, 36.545331], [-77.597476, 36.545328], [-77.59087, 36.545287], [-77.587087, 36.545264], [-77.576408, 36.545197], [-77.576374, 36.545197], [-77.576164, 36.545196], [-77.576077, 36.545196], [-77.57482, 36.545189], [-77.573604, 36.545182], [-77.570052, 36.545165], [-77.568841, 36.545164], [-77.568812, 36.545164], [-77.559172, 36.54515], [-77.556518, 36.545148], [-77.553664, 36.545144], [-77.548961, 36.545184], [-77.544099, 36.545189], [-77.536574, 36.545197], [-77.533045, 36.5452], [-77.530342, 36.545203], [-77.530029, 36.545202], [-77.528199, 36.545203], [-77.52759, 36.545202], [-77.517979, 36.545202], [-77.510638, 36.545224], [-77.50973, 36.54522], [-77.504233, 36.545207], [-77.499695, 36.545209], [-77.498711, 36.545036], [-77.498612, 36.545036], [-77.497643, 36.545037], [-77.49008, 36.545029], [-77.482435, 36.54502], [-77.479646, 36.544961], [-77.478443, 36.544956], [-77.474452, 36.54494], [-77.466049, 36.544908], [-77.463313, 36.544902], [-77.459414, 36.544903], [-77.458669, 36.544915], [-77.458236, 36.544921], [-77.45736, 36.544919], [-77.449214, 36.544846], [-77.448012, 36.544845], [-77.446592, 36.544846], [-77.431996, 36.544847], [-77.412507, 36.544792], [-77.412429, 36.544792], [-77.401109, 36.54477], [-77.400888, 36.544768], [-77.40084, 36.544767], [-77.400695, 36.544763], [-77.392126, 36.544735], [-77.374697, 36.544686], [-77.372746, 36.544646], [-77.372353, 36.54465], [-77.367295, 36.544695], [-77.341781, 36.544923], [-77.337356, 36.544971], [-77.33634, 36.544966], [-77.331457, 36.544941], [-77.329578, 36.544932], [-77.327177, 36.544917], [-77.325891, 36.544911], [-77.321931, 36.544911], [-77.3204, 36.544912], [-77.319897, 36.54491], [-77.318888, 36.544914], [-77.305368, 36.544847], [-77.300918, 36.544835], [-77.296877, 36.544822], [-77.294905, 36.544858], [-77.28989, 36.544845], [-77.283788, 36.544833], [-77.279382, 36.544825], [-77.26624, 36.54479], [-77.266196, 36.544792], [-77.253057, 36.544759], [-77.252982, 36.544759], [-77.251797, 36.544756], [-77.24974, 36.544752], [-77.24841, 36.544736], [-77.247877, 36.54473], [-77.24435, 36.544688], [-77.236204, 36.544696], [-77.228605, 36.544658], [-77.226184, 36.544659], [-77.22154, 36.544655], [-77.219835, 36.544654], [-77.214997, 36.544631], [-77.212786, 36.544621], [-77.210206, 36.54461], [-77.204972, 36.544608], [-77.20355, 36.54476], [-77.198605, 36.545289], [-77.191577, 36.546044], [-77.191497, 36.546049], [-77.190111, 36.546177], [-77.183985, 36.546561], [-77.182413, 36.546606], [-77.169662, 36.547322], [-77.169336, 36.547259], [-77.16883, 36.547162], [-77.164502, 36.546337], [-77.15941, 36.545368], [-77.152663, 36.544085], [-77.143984, 36.544055], [-77.138802, 36.544038], [-77.136269, 36.544029], [-77.128672, 36.544005], [-77.12614, 36.543997], [-77.125874, 36.543996], [-77.125079, 36.543993], [-77.124814, 36.543993], [-77.124789, 36.543994], [-77.124713, 36.543996], [-77.124689, 36.543998], [-77.124689, 36.544073], [-77.124454, 36.544081], [-77.123749, 36.544106], [-77.123515, 36.544115], [-77.123384, 36.544114], [-77.122862, 36.544114], [-77.12026, 36.544172], [-77.112458, 36.544348], [-77.109857, 36.544407], [-77.108492, 36.544437], [-77.104399, 36.54453], [-77.103035, 36.544561], [-77.10144, 36.544584], [-77.09891, 36.544621], [-77.096658, 36.544628], [-77.095064, 36.544633], [-77.09146, 36.544623], [-77.080651, 36.544594], [-77.077048, 36.544585], [-77.075489, 36.544584], [-77.070814, 36.544581], [-77.069256, 36.544581], [-77.060875, 36.544511], [-77.049736, 36.54442], [-77.035732, 36.544366], [-77.034646, 36.544362], [-77.027351, 36.544334], [-77.021916, 36.544314], [-77.01979, 36.544305], [-77.013414, 36.544281], [-77.011289, 36.544273], [-77.010468, 36.54427], [-77.008005, 36.544263], [-77.007184, 36.544261], [-77.00656, 36.544253], [-77.004688, 36.54423], [-77.00411, 36.544224], [-77.004065, 36.544223], [-77.001443, 36.544137], [-76.999687, 36.544081], [-76.993576, 36.544066], [-76.990954, 36.54406], [-76.98664, 36.544049], [-76.9737, 36.544017], [-76.969387, 36.544007], [-76.969031, 36.544005], [-76.967964, 36.543999], [-76.967609, 36.543998], [-76.966889, 36.543958], [-76.966173, 36.543983], [-76.964025, 36.544062], [-76.96331, 36.544088], [-76.958451, 36.544062], [-76.943875, 36.543985], [-76.939017, 36.54396], [-76.922735, 36.543886], [-76.922693, 36.543886], [-76.921426, 36.543879], [-76.921246, 36.543878], [-76.921233, 36.543877], [-76.920493, 36.543875], [-76.920113, 36.543872], [-76.91974, 36.543871], [-76.919466, 36.54387], [-76.919115, 36.54386], [-76.917242, 36.543808], [-76.916794, 36.543796], [-76.916618, 36.543802], [-76.916447, 36.543808], [-76.916003, 36.543825], [-76.916125, 36.5439], [-76.916173, 36.543931], [-76.9162, 36.543947], [-76.916375, 36.544091], [-76.916666, 36.544453], [-76.917167, 36.545241], [-76.917319, 36.546054], [-76.917201, 36.547053], [-76.917169, 36.547169], [-76.916974, 36.547867], [-76.916871, 36.548271], [-76.916776, 36.54864], [-76.916767, 36.549059], [-76.916869, 36.549421], [-76.917019, 36.550202], [-76.91699, 36.55075], [-76.916967, 36.550798], [-76.916762, 36.551217], [-76.916529, 36.551455], [-76.915899, 36.5521], [-76.915874, 36.5521], [-76.915564, 36.552096], [-76.915432, 36.552094], [-76.911849, 36.55205], [-76.904118, 36.551956], [-76.902138, 36.551931], [-76.898342, 36.551885], [-76.897935, 36.55188], [-76.897898, 36.55188], [-76.89412, 36.551835], [-76.891854, 36.551807], [-76.889018, 36.551773], [-76.886479, 36.551742], [-76.876674, 36.551625], [-76.876065, 36.551617], [-76.874683, 36.551601], [-76.870958, 36.551446], [-76.865839, 36.551368], [-76.862721, 36.551328], [-76.856008, 36.551242], [-76.85582, 36.55124], [-76.850744, 36.551176], [-76.844715, 36.551099], [-76.842432, 36.55107], [-76.839341, 36.551029], [-76.826139, 36.550871], [-76.823101, 36.550823], [-76.821965, 36.550806], [-76.820062, 36.550782], [-76.819736, 36.550778], [-76.816464, 36.550734], [-76.816296, 36.550732], [-76.80708, 36.550613], [-76.802633, 36.550557], [-76.802153, 36.550559], [-76.795955, 36.550565], [-76.795811, 36.550565], [-76.795073, 36.55057], [-76.790963, 36.550599], [-76.781337, 36.550666], [-76.781297, 36.550666], [-76.780969, 36.55073], [-76.780406, 36.550724], [-76.774077, 36.550655], [-76.773819, 36.550652], [-76.766589, 36.550573], [-76.759111, 36.550491], [-76.755293, 36.550449], [-76.755079, 36.550447], [-76.74968, 36.550388], [-76.738331, 36.550992], [-76.736727, 36.550987], [-76.735517, 36.550985], [-76.733995, 36.55098], [-76.732503, 36.550976], [-76.732292, 36.550975], [-76.727802, 36.550961], [-76.727707, 36.550961], [-76.725889, 36.550956], [-76.718281, 36.550933], [-76.715116, 36.550924], [-76.714816, 36.550923], [-76.698812, 36.550875], [-76.69683, 36.550869], [-76.695024, 36.550864], [-76.694754, 36.550863], [-76.694752, 36.550863], [-76.686784, 36.550854], [-76.683688, 36.550845], [-76.683552, 36.550845], [-76.683266, 36.550844], [-76.670854, 36.55081], [-76.670598, 36.550809], [-76.670443, 36.550809], [-76.66538, 36.550794], [-76.659828, 36.550779], [-76.65942, 36.550778], [-76.658194, 36.550775], [-76.658076, 36.550775], [-76.655561, 36.550768], [-76.655513, 36.550768], [-76.651293, 36.550753], [-76.649912, 36.55075], [-76.640606, 36.550724], [-76.634752, 36.550708], [-76.632866, 36.550703], [-76.632742, 36.550703], [-76.632499, 36.550702], [-76.624628, 36.550679], [-76.617418, 36.550779], [-76.617327, 36.550779], [-76.601998, 36.550752], [-76.600605, 36.550749], [-76.575527, 36.550751], [-76.575498, 36.550751], [-76.561485, 36.55043], [-76.561369, 36.550427], [-76.558074, 36.550351], [-76.558047, 36.550352], [-76.550276, 36.550413], [-76.541601, 36.550482], [-76.491499, 36.550648], [-76.467698, 36.550639], [-76.465277, 36.550638], [-76.446674, 36.550631], [-76.44654, 36.550631], [-76.42643, 36.550623], [-76.426274, 36.550623], [-76.408466, 36.550617], [-76.408282, 36.550617], [-76.379331, 36.550606], [-76.379093, 36.550606], [-76.377762, 36.550605], [-76.37729, 36.550605], [-76.376636, 36.550603], [-76.376438, 36.550603], [-76.376266, 36.550605], [-76.350837, 36.550595], [-76.313227, 36.550581], [-76.311565, 36.550577], [-76.309598, 36.550572], [-76.29297, 36.550558], [-76.288879, 36.550558], [-76.288608, 36.550559], [-76.287063, 36.550558], [-76.244381, 36.550558], [-76.233334, 36.550555], [-76.233222, 36.550555], [-76.231274, 36.550559], [-76.229811, 36.550559], [-76.215128, 36.550557], [-76.205046, 36.550557], [-76.202679, 36.550558], [-76.200475, 36.550559], [-76.193148, 36.55056], [-76.192693, 36.55056], [-76.192555, 36.550559], [-76.192547, 36.550558], [-76.19067, 36.550457], [-76.190622, 36.550454], [-76.164699, 36.550526], [-76.152157, 36.550559], [-76.149257, 36.550559], [-76.138649, 36.550656], [-76.138357, 36.550659], [-76.131156, 36.550559], [-76.122356, 36.550559], [-76.116666, 36.550595], [-76.114474, 36.550618], [-76.114467, 36.550619], [-76.114424, 36.550619], [-76.114315, 36.55062], [-76.114274, 36.55062], [-76.113984, 36.550623], [-76.111752, 36.550639], [-76.105705, 36.550611], [-76.105643, 36.550611], [-76.105636, 36.55061], [-76.105569, 36.55061], [-76.10488, 36.550606], [-76.10167, 36.550592], [-76.094446, 36.550556], [-76.090243, 36.550556], [-76.08201, 36.550555], [-76.075733, 36.550554], [-76.075719, 36.550554], [-76.071593, 36.550555], [-76.071585, 36.550555], [-76.059454, 36.550558], [-76.051538, 36.55056], [-76.050953, 36.55056], [-76.046483, 36.550588], [-76.037997, 36.55064], [-76.036615, 36.550649], [-76.034753, 36.55066], [-76.026752, 36.55056], [-76.013352, 36.55056], [-76.010854, 36.550535], [-76.010182, 36.550528], [-76.007602, 36.550499], [-76.007573, 36.550499], [-76.007429, 36.550498], [-76.007156, 36.550497], [-76.007101, 36.550497], [-76.006752, 36.550491], [-76.006686, 36.55049], [-76.006485, 36.550488], [-76.006329, 36.550486], [-76.005467, 36.550478], [-76.00515, 36.550475], [-76.004012, 36.550468], [-76.003967, 36.550467], [-76.003507, 36.55046], [-75.996951, 36.55046], [-75.983851, 36.55056], [-75.96341, 36.550463], [-75.96285, 36.55046], [-75.95765, 36.55056], [-75.95715, 36.55046], [-75.95695, 36.55046], [-75.95655, 36.55056], [-75.952849, 36.55056], [-75.92804, 36.550755], [-75.92798, 36.550754], [-75.922048, 36.550661], [-75.903447, 36.550661], [-75.901847, 36.550861], [-75.901064, 36.550851], [-75.894838, 36.55077], [-75.894147, 36.550761], [-75.893247, 36.550661], [-75.89201, 36.550756], [-75.891947, 36.550761], [-75.867046, 36.550761], [-75.854461, 36.550929], [-75.797499, 36.550923], [-75.800437, 36.562747], [-75.819827, 36.62516], [-75.82362, 36.632302], [-75.82976, 36.644639], [-75.83404, 36.654579], [-75.843993, 36.67978], [-75.849816, 36.690791], [-75.862121, 36.714058], [-75.862939, 36.716033], [-75.870467, 36.734214], [-75.874649, 36.744312], [-75.877285, 36.754014], [-75.878945, 36.760124], [-75.879182, 36.760997], [-75.887375, 36.791155], [-75.901041, 36.841458], [-75.905265, 36.857005], [-75.909332, 36.871977], [-75.914019, 36.889227], [-75.926852, 36.936464], [-75.926849, 36.936469], [-75.928309, 36.938186], [-75.909493, 36.990715], [-75.905751, 37.000151], [-75.889678, 37.054522], [-75.874653, 37.067568], [-75.869411, 37.073958], [-75.854549, 37.079356], [-75.835633, 37.095013], [-75.827527, 37.10527], [-75.824149, 37.110129], [-75.805909, 37.116068], [-75.797037, 37.125152], [-75.781589, 37.137123], [-75.766051, 37.154939], [-75.749645, 37.175104], [-75.744641, 37.182356], [-75.742833, 37.192914], [-75.740121, 37.196993], [-75.729273, 37.216908], [-75.728369, 37.235624], [-75.732286, 37.245701], [-75.727823, 37.250148], [-75.726987, 37.251477], [-75.721861, 37.259649], [-75.718846, 37.264449], [-75.718394, 37.265174], [-75.715379, 37.269979], [-75.715517, 37.275694], [-75.691848, 37.300166], [-75.678966, 37.312584], [-75.656592, 37.323921], [-75.644388, 37.342277], [-75.64032, 37.363873], [-75.643458, 37.372872], [-75.624647, 37.396959], [-75.618255, 37.402271], [-75.604028, 37.422032], [-75.603961, 37.432598], [-75.597443, 37.450996], [-75.596048, 37.453141], [-75.596046, 37.461195], [-75.595644, 37.465592], [-75.592501, 37.470906], [-75.589112, 37.477865], [-75.583238, 37.486511], [-75.579641, 37.494645], [-75.574653, 37.500143], [-75.555063, 37.526685], [-75.553462, 37.527304], [-75.552878, 37.528016], [-75.552247, 37.528426], [-75.551787, 37.528867], [-75.551075, 37.529547], [-75.550192, 37.530059], [-75.548769, 37.531519], [-75.547719, 37.532234], [-75.546922, 37.532914], [-75.545916, 37.533798], [-75.54491, 37.534681], [-75.544284, 37.535528], [-75.543404, 37.536344], [-75.542482, 37.537126], [-75.541936, 37.537568], [-75.54131, 37.538348], [-75.540808, 37.538958], [-75.540056, 37.539907], [-75.53943, 37.54072], [-75.538345, 37.542143], [-75.537843, 37.542686], [-75.537258, 37.543432], [-75.536633, 37.544447], [-75.535924, 37.545396], [-75.535298, 37.546209], [-75.534591, 37.547427], [-75.533968, 37.548611], [-75.533595, 37.549388], [-75.532971, 37.550471], [-75.532639, 37.551147], [-75.532226, 37.552127], [-75.531771, 37.553174], [-75.531147, 37.554257], [-75.530691, 37.555203], [-75.530319, 37.556014], [-75.529903, 37.556725], [-75.5297, 37.557669], [-75.529328, 37.55848], [-75.529039, 37.559257], [-75.528835, 37.56], [-75.528713, 37.560506], [-75.528425, 37.561316], [-75.528347, 37.561956], [-75.528189, 37.563135], [-75.528069, 37.563877], [-75.52795, 37.564619], [-75.527788, 37.565394], [-75.527586, 37.566373], [-75.52734, 37.567183], [-75.527224, 37.56816], [-75.527189, 37.568901], [-75.527027, 37.569643], [-75.526915, 37.571092], [-75.526924, 37.572035], [-75.526931, 37.572775], [-75.526854, 37.573483], [-75.526945, 37.574223], [-75.526952, 37.57493], [-75.526917, 37.575671], [-75.527097, 37.576713], [-75.527063, 37.577555], [-75.527282, 37.578328], [-75.527418, 37.579202], [-75.527469, 37.580111], [-75.527603, 37.580783], [-75.52778, 37.581623], [-75.527998, 37.582295], [-75.528058, 37.582763], [-75.528136, 37.583371], [-75.528447, 37.584884], [-75.528878, 37.585621], [-75.529143, 37.586797], [-75.52932, 37.587537], [-75.529751, 37.588375], [-75.530101, 37.589448], [-75.53075, 37.590925], [-75.531098, 37.591831], [-75.531742, 37.592768], [-75.532044, 37.593406], [-75.532475, 37.594176], [-75.532947, 37.594812], [-75.53325, 37.595449], [-75.533893, 37.59632], [-75.534282, 37.597057], [-75.534711, 37.59766], [-75.535054, 37.598061], [-75.535355, 37.598563], [-75.535742, 37.599133], [-75.536214, 37.599802], [-75.536684, 37.600303], [-75.537325, 37.600837], [-75.537501, 37.601509], [-75.538227, 37.602142], [-75.538734, 37.60266], [-75.538783, 37.60271], [-75.539254, 37.603312], [-75.539896, 37.603947], [-75.540668, 37.604917], [-75.541781, 37.606153], [-75.534649, 37.62514], [-75.533185, 37.629892], [-75.532055, 37.630706], [-75.530884, 37.631721], [-75.529632, 37.632939], [-75.528545, 37.633953], [-75.527713, 37.634933], [-75.526501, 37.636116], [-75.525377, 37.637467], [-75.524174, 37.639289], [-75.52243, 37.641886], [-75.520895, 37.644313], [-75.520235, 37.645661], [-75.519698, 37.646739], [-75.518998, 37.648289], [-75.518462, 37.649434], [-75.518137, 37.650611], [-75.517645, 37.651891], [-75.517197, 37.653338], [-75.516927, 37.654841], [-75.516916, 37.654888], [-75.516266, 37.657038], [-75.515979, 37.659341], [-75.515719, 37.660972], [-75.515616, 37.662988], [-75.515547, 37.664366], [-75.515439, 37.666113], [-75.515579, 37.667322], [-75.515638, 37.668799], [-75.515694, 37.67004], [-75.515964, 37.671546], [-75.51522, 37.673134], [-75.514309, 37.674681], [-75.513691, 37.676234], [-75.51299, 37.677544], [-75.512163, 37.679368], [-75.51088, 37.681863], [-75.509933, 37.683467], [-75.509228, 37.685167], [-75.50816, 37.68741], [-75.507748, 37.688662], [-75.50675, 37.689635], [-75.505497, 37.691405], [-75.504158, 37.693194], [-75.50325, 37.694326], [-75.502208, 37.695987], [-75.50146, 37.697376], [-75.500675, 37.69872], [-75.499647, 37.700739], [-75.499402, 37.701654], [-75.498735, 37.703041], [-75.49832, 37.703677], [-75.497903, 37.7048], [-75.497365, 37.70625], [-75.497118, 37.707053], [-75.496153, 37.708102], [-75.495566, 37.708949], [-75.49515, 37.709861], [-75.494691, 37.710604], [-75.494101, 37.711347], [-75.493603, 37.712156], [-75.493015, 37.712899], [-75.492555, 37.713609], [-75.492094, 37.714251], [-75.491594, 37.715264], [-75.490925, 37.716278], [-75.490341, 37.71746], [-75.489883, 37.718338], [-75.489425, 37.71935], [-75.48897, 37.720599], [-75.488596, 37.721476], [-75.48814, 37.722451], [-75.487851, 37.723467], [-75.487227, 37.724885], [-75.486468, 37.725428], [-75.485963, 37.725902], [-75.485203, 37.726377], [-75.484571, 37.72692], [-75.483813, 37.727563], [-75.483013, 37.728275], [-75.482382, 37.728918], [-75.481625, 37.729696], [-75.480995, 37.73044], [-75.480196, 37.73132], [-75.479061, 37.732505], [-75.478346, 37.733249], [-75.477928, 37.733992], [-75.477552, 37.734634], [-75.477049, 37.735378], [-75.476376, 37.736055], [-75.475956, 37.736562], [-75.475623, 37.737305], [-75.475204, 37.737879], [-75.474954, 37.738419], [-75.474409, 37.739197], [-75.474075, 37.739838], [-75.473407, 37.741054], [-75.473073, 37.74173], [-75.472867, 37.742371], [-75.472448, 37.74308], [-75.472198, 37.743586], [-75.471908, 37.744464], [-75.471617, 37.745104], [-75.471283, 37.745712], [-75.471118, 37.746218], [-75.470826, 37.746859], [-75.470495, 37.747737], [-75.470347, 37.748196], [-75.470288, 37.748378], [-75.470123, 37.748918], [-75.470114, 37.748929], [-75.470068, 37.750133], [-75.469072, 37.752834], [-75.467281, 37.756282], [-75.464768, 37.759671], [-75.46341, 37.763994], [-75.461669, 37.768259], [-75.460935, 37.771364], [-75.444906, 37.789525], [-75.417075, 37.821058], [-75.409287, 37.820927], [-75.40501, 37.81854], [-75.399288, 37.815733], [-75.39369, 37.813524], [-75.386953, 37.811732], [-75.380176, 37.810412], [-75.374645, 37.810328], [-75.366859, 37.809797], [-75.360127, 37.810194], [-75.34947, 37.81199], [-75.337981, 37.81524], [-75.327912, 37.820677], [-75.320966, 37.824987], [-75.312211, 37.83062], [-75.303134, 37.838177], [-75.296083, 37.845678], [-75.296006, 37.84576], [-75.291242, 37.852627], [-75.288071, 37.857632], [-75.285058, 37.86159], [-75.281624, 37.865853], [-75.278737, 37.869676], [-75.274983, 37.875132], [-75.270446, 37.88261], [-75.265918, 37.891134], [-75.263058, 37.897096], [-75.259193, 37.90434], [-75.256814, 37.907879], [-75.25306, 37.913744], [-75.249638, 37.918636], [-75.24176, 37.93154], [-75.238075, 37.935398], [-75.188005, 38.000129], [-75.17708, 38.013428], [-75.166437, 38.027842], [-75.168351, 38.027942], [-75.223764, 38.027358], [-75.240399, 38.027071], [-75.242125, 38.027042], [-75.24244, 38.027037], [-75.242463, 38.027036], [-75.242471, 38.027036], [-75.249611, 38.026723], [-75.250374, 38.026659], [-75.250406, 38.026656], [-75.250744, 38.02663], [-75.251113, 38.0266], [-75.252028, 38.026526], [-75.252104, 38.02652], [-75.252137, 38.026517], [-75.252144, 38.026516], [-75.252166, 38.026514], [-75.252181, 38.026513], [-75.252713, 38.026469], [-75.254405, 38.026334], [-75.254592, 38.026319], [-75.254712, 38.026309], [-75.255047, 38.026282], [-75.255236, 38.026267], [-75.255268, 38.026265], [-75.255278, 38.026264], [-75.255304, 38.026262], [-75.255913, 38.026214], [-75.256073, 38.0262], [-75.25608, 38.026199], [-75.256097, 38.026198], [-75.256879, 38.026098], [-75.260654, 38.02577], [-75.260663, 38.025769], [-75.26069, 38.025767], [-75.262024, 38.025664], [-75.262108, 38.025657], [-75.262484, 38.025624], [-75.262704, 38.025605], [-75.263327, 38.02555], [-75.263364, 38.025547], [-75.263409, 38.025543], [-75.263431, 38.025541], [-75.263446, 38.025539], [-75.263456, 38.025538], [-75.263506, 38.025534], [-75.263799, 38.025508], [-75.263848, 38.025504], [-75.267209, 38.025214], [-75.270619, 38.024921], [-75.270715, 38.024913], [-75.270952, 38.02489], [-75.271019, 38.024884], [-75.27269, 38.024742], [-75.274362, 38.0246], [-75.283357, 38.02378], [-75.321184, 38.020346], [-75.323159, 38.020163], [-75.325364, 38.019965], [-75.374643, 38.015467], [-75.375127, 38.015422], [-75.377092, 38.015244], [-75.377175, 38.015236], [-75.377217, 38.015232], [-75.377325, 38.015222], [-75.377855, 38.015173], [-75.378552, 38.015103], [-75.378563, 38.015102], [-75.378594, 38.015099], [-75.378712, 38.015087], [-75.379732, 38.014984], [-75.379832, 38.014974], [-75.380216, 38.014944], [-75.380564, 38.014916], [-75.380757, 38.014899], [-75.381038, 38.014874], [-75.38132, 38.014849], [-75.381576, 38.014827], [-75.381641, 38.014822], [-75.381662, 38.01482], [-75.381696, 38.014817], [-75.381716, 38.014815], [-75.381748, 38.014812], [-75.382014, 38.014788], [-75.382281, 38.014765], [-75.382334, 38.01476], [-75.382364, 38.014757], [-75.382616, 38.014736], [-75.382744, 38.014725], [-75.382871, 38.014714], [-75.383248, 38.014681], [-75.383626, 38.014648], [-75.386134, 38.014431], [-75.386205, 38.014425], [-75.38622, 38.014424], [-75.386292, 38.014418], [-75.386312, 38.014416], [-75.388498, 38.01422], [-75.389902, 38.014083], [-75.392503, 38.013839], [-75.393624, 38.013785], [-75.393838, 38.013751], [-75.394174, 38.013701], [-75.396059, 38.013533], [-75.396714, 38.013476], [-75.396981, 38.013446], [-75.397766, 38.013071], [-75.39788, 38.013109], [-75.397938, 38.013128], [-75.398014, 38.013149], [-75.398142, 38.013184], [-75.398152, 38.013187], [-75.398222, 38.013201], [-75.398316, 38.01322], [-75.398389, 38.013235], [-75.39846, 38.013261], [-75.3985, 38.013266], [-75.39863, 38.013263], [-75.398996, 38.013251], [-75.399399, 38.013228], [-75.399896, 38.013194], [-75.400369, 38.013163], [-75.400873, 38.013121], [-75.401391, 38.013083], [-75.401917, 38.013045], [-75.402443, 38.013003], [-75.402986, 38.012961], [-75.403528, 38.012919], [-75.404069, 38.012881], [-75.404619, 38.012839], [-75.405145, 38.01279], [-75.405656, 38.012748], [-75.406084, 38.012709], [-75.406609, 38.012675], [-75.410088, 38.012385], [-75.410852, 38.01232], [-75.411303, 38.01228], [-75.411497, 38.012263], [-75.415308, 38.011952], [-75.41649, 38.011855], [-75.419626, 38.011592], [-75.41989, 38.011569], [-75.419947, 38.011565], [-75.422059, 38.011398], [-75.422546, 38.011355], [-75.425457, 38.011103], [-75.42569, 38.011084], [-75.426332, 38.011031], [-75.426965, 38.010989], [-75.42753, 38.010947], [-75.42769, 38.010936], [-75.428018, 38.010897], [-75.428621, 38.010848], [-75.428734, 38.010844], [-75.428803, 38.010855], [-75.428873, 38.010878], [-75.428887, 38.010897], [-75.429078, 38.010897], [-75.429414, 38.010878], [-75.430055, 38.01084], [-75.430696, 38.010806], [-75.431932, 38.010699], [-75.43255, 38.010646], [-75.433739, 38.010543], [-75.434312, 38.010493], [-75.434869, 38.010447], [-75.435402, 38.010398], [-75.435655, 38.010382], [-75.435799, 38.010375], [-75.43596, 38.010375], [-75.436283, 38.0103], [-75.43667, 38.010214], [-75.438234, 38.010096], [-75.438304, 38.010094], [-75.438722, 38.010077], [-75.439329, 38.010032], [-75.440385, 38.009974], [-75.442026, 38.009883], [-75.448681, 38.009337], [-75.448846, 38.009323], [-75.448864, 38.009322], [-75.448982, 38.009312], [-75.449043, 38.009307], [-75.449052, 38.009307], [-75.449063, 38.009306], [-75.449086, 38.009304], [-75.449119, 38.009301], [-75.449365, 38.009281], [-75.44941, 38.009277], [-75.457642, 38.008614], [-75.45965, 38.008437], [-75.461328, 38.008284], [-75.462282, 38.008204], [-75.467339, 38.007754], [-75.468117, 38.007705], [-75.46982, 38.007586], [-75.474084, 38.007201], [-75.479571, 38.006724], [-75.482988, 38.006427], [-75.486229, 38.00611], [-75.488149, 38.005944], [-75.488663, 38.0059], [-75.490121, 38.00579], [-75.493057, 38.005549], [-75.495645, 38.005336], [-75.499506, 38.005034], [-75.499972, 38.004993], [-75.502762, 38.004748], [-75.502772, 38.004747], [-75.502785, 38.004746], [-75.504404, 38.004607], [-75.508595, 38.004237], [-75.508638, 38.004233], [-75.509403, 38.00417], [-75.510088, 38.004113], [-75.51014, 38.004109], [-75.510153, 38.004107], [-75.510166, 38.004106], [-75.510313, 38.004094], [-75.515494, 38.003662], [-75.517401, 38.003505], [-75.519403, 38.003341], [-75.522014, 38.003121], [-75.524042, 38.002951], [-75.530298, 38.002421], [-75.530321, 38.002419], [-75.530521, 38.002402], [-75.530698, 38.002385], [-75.530712, 38.002384], [-75.530727, 38.002383], [-75.530766, 38.002379], [-75.535869, 38.001801], [-75.538302, 38.001526], [-75.538915, 38.001457], [-75.539944, 38.001345], [-75.540001, 38.001344], [-75.540084, 38.001347], [-75.541741, 38.001372], [-75.541813, 38.00137], [-75.541939, 38.001366], [-75.541953, 38.001366], [-75.543231, 38.001274], [-75.545061, 38.001143], [-75.545133, 38.001136], [-75.548349, 38.000842], [-75.548399, 38.000838], [-75.552466, 38.000474], [-75.552473, 38.000473], [-75.552496, 38.000471], [-75.552762, 38.000447], [-75.556316, 38.000129], [-75.556881, 38.000097], [-75.556888, 38.000097], [-75.556903, 38.000096], [-75.556956, 38.000093], [-75.557024, 38.000089], [-75.557312, 38.000073], [-75.559549, 37.999945], [-75.563263, 37.999601], [-75.56327, 37.9996], [-75.563281, 37.999599], [-75.563313, 37.999596], [-75.563453, 37.999583], [-75.563522, 37.999577], [-75.563852, 37.999547], [-75.564053, 37.999528], [-75.564152, 37.999519], [-75.564171, 37.999517], [-75.564223, 37.999513], [-75.564274, 37.999508], [-75.565099, 37.999433], [-75.566362, 37.999316], [-75.566957, 37.999266], [-75.567705, 37.999194], [-75.567783, 37.999186], [-75.56793, 37.999172], [-75.568069, 37.999158], [-75.568188, 37.999146], [-75.568234, 37.999141], [-75.568308, 37.999134], [-75.568315, 37.999133], [-75.568339, 37.999131], [-75.568352, 37.99913], [-75.568365, 37.999128], [-75.568643, 37.999102], [-75.570361, 37.998971], [-75.57058, 37.998954], [-75.572015, 37.998858], [-75.575109, 37.998594], [-75.58133, 37.998011], [-75.581385, 37.998006], [-75.581663, 37.997983], [-75.581805, 37.997971], [-75.58198, 37.997957], [-75.582695, 37.997899], [-75.582709, 37.997898], [-75.586366, 37.997584], [-75.588387, 37.997413], [-75.594582, 37.996878], [-75.596132, 37.996753], [-75.597314, 37.996653], [-75.597621, 37.996625], [-75.598745, 37.996524], [-75.598753, 37.996523], [-75.598764, 37.996522], [-75.598772, 37.996522], [-75.598826, 37.996518], [-75.5989, 37.996512], [-75.598921, 37.99651], [-75.598979, 37.996505], [-75.599027, 37.996501], [-75.599036, 37.9965], [-75.599049, 37.996499], [-75.599226, 37.996486], [-75.599443, 37.996476], [-75.599491, 37.996474], [-75.599501, 37.996474], [-75.59954, 37.996472], [-75.599659, 37.996463], [-75.599684, 37.996461], [-75.599691, 37.99646], [-75.599705, 37.996459], [-75.599722, 37.996458], [-75.599737, 37.996457], [-75.599778, 37.996454], [-75.599882, 37.996446], [-75.599985, 37.996439], [-75.600038, 37.996435], [-75.600438, 37.996405], [-75.600452, 37.996404], [-75.600453, 37.996404], [-75.600508, 37.996401], [-75.600517, 37.996401], [-75.600532, 37.9964], [-75.600544, 37.996399], [-75.600608, 37.996395], [-75.600693, 37.996385], [-75.600768, 37.996376], [-75.600795, 37.996373], [-75.600808, 37.996371], [-75.600817, 37.99637], [-75.600842, 37.996367], [-75.600843, 37.996367], [-75.600903, 37.99636], [-75.600922, 37.996358], [-75.600937, 37.996356], [-75.600976, 37.996353], [-75.601223, 37.996326], [-75.601354, 37.996312], [-75.601448, 37.996302], [-75.601532, 37.996293], [-75.60159, 37.996287], [-75.601653, 37.99628], [-75.601665, 37.996279], [-75.601679, 37.996277], [-75.602069, 37.996234], [-75.602183, 37.996223], [-75.602226, 37.996219], [-75.602247, 37.996217], [-75.602264, 37.996216], [-75.602275, 37.996215], [-75.602899, 37.996156], [-75.604679, 37.995988], [-75.609758, 37.99551], [-75.609872, 37.995499], [-75.611603, 37.995406], [-75.611698, 37.995399], [-75.611708, 37.995398], [-75.611721, 37.995397], [-75.611803, 37.995391], [-75.612579, 37.995351], [-75.612651, 37.995348], [-75.612751, 37.995342], [-75.612825, 37.995337], [-75.612946, 37.99533], [-75.614066, 37.995263], [-75.614416, 37.995226], [-75.614507, 37.995217], [-75.614524, 37.995215], [-75.614628, 37.995204], [-75.615448, 37.995117], [-75.616292, 37.995035], [-75.616396, 37.995025], [-75.620653, 37.994593], [-75.621346, 37.994532], [-75.622483, 37.994391], [-75.623371, 37.994345], [-75.624305, 37.994221], [-75.624345, 37.994216], [-75.624451, 37.994203], [-75.624495, 37.993829], [-75.624498, 37.993804], [-75.624499, 37.993795], [-75.624501, 37.993774], [-75.624509, 37.993706], [-75.624558, 37.993289], [-75.624565, 37.99323], [-75.624567, 37.993212], [-75.624568, 37.993207], [-75.624571, 37.993183], [-75.624575, 37.993147], [-75.624591, 37.993013], [-75.624622, 37.992749], [-75.624636, 37.992628], [-75.62465, 37.992508], [-75.624724, 37.99208], [-75.624797, 37.991653], [-75.62483, 37.991458], [-75.625086, 37.990585], [-75.625613, 37.989806], [-75.626204, 37.989293], [-75.626657, 37.9889], [-75.627609, 37.988527], [-75.62935, 37.988362], [-75.63087, 37.987824], [-75.631277, 37.987549], [-75.631494, 37.987402], [-75.631565, 37.987354], [-75.631612, 37.987322], [-75.631649, 37.987297], [-75.631662, 37.987289], [-75.631669, 37.987284], [-75.631712, 37.987255], [-75.632534, 37.986699], [-75.633414, 37.985436], [-75.633834, 37.984525], [-75.633981, 37.983561], [-75.633714, 37.983063], [-75.632596, 37.98174], [-75.631435, 37.980505], [-75.630163, 37.979248], [-75.629956, 37.979044], [-75.629095, 37.978252], [-75.628855, 37.977803], [-75.628841, 37.976795], [-75.629534, 37.975971], [-75.630044, 37.975805], [-75.630298, 37.975722], [-75.630501, 37.975708], [-75.630993, 37.975673], [-75.631408, 37.97577], [-75.631433, 37.97578], [-75.63156, 37.975833], [-75.631671, 37.975881], [-75.63201, 37.976026], [-75.632777, 37.976591], [-75.633532, 37.977165], [-75.634211, 37.977678], [-75.634357, 37.977921], [-75.634475, 37.978119], [-75.634789, 37.978645], [-75.634953, 37.978817], [-75.634997, 37.978863], [-75.635007, 37.978874], [-75.635064, 37.978934], [-75.635092, 37.978964], [-75.635163, 37.979039], [-75.635264, 37.979146], [-75.635487, 37.979382], [-75.635658, 37.979491], [-75.635676, 37.979503], [-75.63569, 37.979512], [-75.635737, 37.979542], [-75.63628, 37.979641], [-75.636308, 37.979645], [-75.636679, 37.979693], [-75.637321, 37.979731], [-75.637734, 37.979576], [-75.638224, 37.979403], [-75.63852, 37.979216], [-75.639304, 37.978723], [-75.640136, 37.977951], [-75.640916, 37.977243], [-75.640921, 37.977236], [-75.641355, 37.976628], [-75.641818, 37.975982], [-75.642583, 37.974669], [-75.642608, 37.974626], [-75.642624, 37.974598], [-75.642636, 37.974578], [-75.642641, 37.97457], [-75.642654, 37.974548], [-75.642835, 37.974237], [-75.642993, 37.973733], [-75.64303, 37.973614], [-75.643119, 37.97333], [-75.643741, 37.971345], [-75.644257, 37.970528], [-75.644727, 37.969783], [-75.645844, 37.968691], [-75.646262, 37.968378], [-75.646351, 37.968311], [-75.646393, 37.96828], [-75.646398, 37.968276], [-75.646404, 37.968272], [-75.64667, 37.968073], [-75.647042, 37.967794], [-75.647418, 37.967473], [-75.64823, 37.966779], [-75.648199, 37.96665], [-75.648184, 37.966589], [-75.648165, 37.966512], [-75.648161, 37.966494], [-75.648147, 37.96538], [-75.64814, 37.964843], [-75.648138, 37.964706], [-75.648138, 37.964679], [-75.648137, 37.964626], [-75.648137, 37.964594], [-75.648136, 37.964582], [-75.648135, 37.964472], [-75.648105, 37.962229], [-75.64809, 37.961836], [-75.647932, 37.957676], [-75.647927, 37.957542], [-75.647924, 37.957474], [-75.647924, 37.957467], [-75.647922, 37.957429], [-75.647771, 37.953583], [-75.647766, 37.953205], [-75.647766, 37.953168], [-75.647765, 37.95313], [-75.647764, 37.953093], [-75.647763, 37.953055], [-75.6477, 37.950615], [-75.647608, 37.947033], [-75.647702, 37.946971], [-75.648216, 37.94687], [-75.652171, 37.946099], [-75.655066, 37.945517], [-75.655683, 37.945441], [-75.657029, 37.946043], [-75.658697, 37.94674], [-75.659789, 37.947195], [-75.661334, 37.947838], [-75.662956, 37.948421], [-75.665013, 37.949393], [-75.665225, 37.949484], [-75.665277, 37.949506], [-75.665288, 37.949511], [-75.6653, 37.949514], [-75.667807, 37.950099], [-75.669832, 37.950572], [-75.670451, 37.950715], [-75.673062, 37.951348], [-75.677391, 37.952329], [-75.6823, 37.95351], [-75.683449, 37.953777], [-75.686978, 37.954533], [-75.690353, 37.955241], [-75.691323, 37.955504], [-75.693164, 37.95539], [-75.695648, 37.955265], [-75.699002, 37.955046], [-75.701199, 37.95494], [-75.703797, 37.954801], [-75.704636, 37.954706], [-75.705871, 37.954401], [-75.709945, 37.953471], [-75.71444, 37.952421], [-75.717116, 37.951736], [-75.721839, 37.950578], [-75.727641, 37.949224], [-75.735386, 37.947378], [-75.739911, 37.946327], [-75.742295, 37.945829], [-75.742502, 37.945781], [-75.749654, 37.944134], [-75.761644, 37.941374], [-75.783965, 37.924918], [-75.801211, 37.912199], [-75.801242, 37.912182], [-75.813909, 37.912047], [-75.874656, 37.911405], [-75.882941, 37.911343], [-75.895913, 37.910505], [-75.902678, 37.910068], [-75.927355, 37.908473], [-75.952674, 37.906835], [-75.943695, 37.946141], [-75.983274, 37.952004], [-75.987982, 37.952701], [-75.99334, 37.953495], [-75.994742, 37.953468], [-75.994743, 37.953468], [-75.995211, 37.953459], [-75.996881, 37.953493], [-75.999284, 37.953471], [-75.999658, 37.95353], [-76.001011, 37.953546], [-76.001267, 37.953555], [-76.001445, 37.953561], [-76.001634, 37.953567], [-76.001837, 37.953573], [-76.002965, 37.953611], [-76.003511, 37.95361], [-76.00581, 37.953607], [-76.005874, 37.953607], [-76.00876, 37.953647], [-76.0116, 37.953628], [-76.011731, 37.953628], [-76.017564, 37.953625], [-76.020836, 37.953813], [-76.020804, 37.953648], [-76.020774, 37.953563], [-76.020776, 37.953498], [-76.020843, 37.953478], [-76.020988, 37.9535], [-76.021204, 37.953551], [-76.021433, 37.953569], [-76.021708, 37.953563], [-76.022113, 37.953575], [-76.022251, 37.953678], [-76.022313, 37.953818], [-76.024413, 37.953703], [-76.025353, 37.953728], [-76.026681, 37.95372], [-76.02721, 37.95373], [-76.028135, 37.95371], [-76.028634, 37.953743], [-76.029407, 37.953783], [-76.029982, 37.953735], [-76.030123, 37.953661], [-76.038026, 37.953983], [-76.039305, 37.953992], [-76.040462, 37.954], [-76.041469, 37.954018], [-76.041553, 37.953934], [-76.04168, 37.953966], [-76.041693, 37.954005], [-76.043285, 37.953869], [-76.045543, 37.953648], [-76.050257, 37.953589], [-76.050719, 37.953588], [-76.051966, 37.953586], [-76.052023, 37.953586], [-76.124663, 37.928716], [-76.233417, 37.887646], [-76.235741, 37.886856], [-76.23646, 37.886613], [-76.236208, 37.888097], [-76.236176, 37.888286], [-76.236143, 37.888476], [-76.236394, 37.888549], [-76.236491, 37.888577], [-76.236731, 37.888647], [-76.236778, 37.888667], [-76.236729, 37.888803], [-76.23673, 37.889179], [-76.236721, 37.889233], [-76.236718, 37.889253], [-76.236713, 37.889287], [-76.236711, 37.889302], [-76.236702, 37.889353], [-76.236691, 37.88942], [-76.236665, 37.88958], [-76.23666, 37.889613], [-76.236635, 37.88977], [-76.236619, 37.889873], [-76.236596, 37.890014], [-76.236574, 37.890154], [-76.237251, 37.889751], [-76.237312, 37.889715], [-76.237416, 37.889746], [-76.237618, 37.889799], [-76.238007, 37.889861], [-76.239399, 37.890182], [-76.240048, 37.890378], [-76.240291, 37.890452], [-76.240654, 37.890586], [-76.240779, 37.890634], [-76.242072, 37.891247], [-76.242268, 37.891327], [-76.242256, 37.89147], [-76.242281, 37.891602], [-76.242287, 37.891635], [-76.242484, 37.891808], [-76.24317, 37.892219], [-76.24328, 37.892248], [-76.243607, 37.892332], [-76.243845, 37.892393], [-76.244062, 37.892484], [-76.244371, 37.89275], [-76.244696, 37.892964], [-76.24496, 37.893139], [-76.245502, 37.893606], [-76.246674, 37.894429], [-76.246799, 37.894477], [-76.246891, 37.894564], [-76.247288, 37.894686], [-76.247618, 37.894908], [-76.247736, 37.894912], [-76.247908, 37.894877], [-76.248564, 37.895518], [-76.249627, 37.896696], [-76.24966, 37.896732], [-76.249659, 37.896946], [-76.249804, 37.897099], [-76.251175, 37.898582], [-76.251216, 37.898627], [-76.251925, 37.89957], [-76.252458, 37.900279], [-76.253351, 37.901033], [-76.253993, 37.901669], [-76.25427, 37.902474], [-76.254405, 37.902676], [-76.254596, 37.90286], [-76.254904, 37.90306], [-76.254937, 37.903075], [-76.255274, 37.903227], [-76.255302, 37.903253], [-76.255422, 37.903362], [-76.255551, 37.903523], [-76.255656, 37.903655], [-76.255762, 37.903787], [-76.255946, 37.904005], [-76.25633, 37.904392], [-76.256497, 37.90456], [-76.256632, 37.90474], [-76.257529, 37.905746], [-76.257628, 37.905828], [-76.258306, 37.906145], [-76.258566, 37.906367], [-76.25873, 37.906556], [-76.259545, 37.906866], [-76.260313, 37.907522], [-76.260673, 37.90783], [-76.260823, 37.907956], [-76.261814, 37.908794], [-76.262117, 37.908798], [-76.263174, 37.909394], [-76.263463, 37.909592], [-76.263783, 37.90981], [-76.263903, 37.909892], [-76.264442, 37.91015], [-76.264778, 37.910339], [-76.265249, 37.910652], [-76.265851, 37.911052], [-76.266193, 37.911241], [-76.266378, 37.911343], [-76.267028, 37.911701], [-76.267874, 37.912168], [-76.269035, 37.912727], [-76.269524, 37.912936], [-76.269635, 37.912957], [-76.271934, 37.913948], [-76.272131, 37.914138], [-76.272243, 37.914187], [-76.272347, 37.914191], [-76.272423, 37.914152], [-76.273148, 37.914402], [-76.273265, 37.914627], [-76.273295, 37.914654], [-76.27334, 37.914686], [-76.273727, 37.914834], [-76.273804, 37.914863], [-76.274008, 37.914941], [-76.274061, 37.914961], [-76.275498, 37.915509], [-76.276769, 37.916011], [-76.277165, 37.916106], [-76.278045, 37.916437], [-76.27856, 37.916558], [-76.279721, 37.917122], [-76.280716, 37.917721], [-76.281031, 37.917849], [-76.281254, 37.917907], [-76.28191, 37.918142], [-76.28441, 37.919137], [-76.285011, 37.919461], [-76.285092, 37.919505], [-76.285285, 37.919609], [-76.285369, 37.919654], [-76.286543, 37.920168], [-76.287544, 37.920696], [-76.288824, 37.92133], [-76.28922, 37.9215], [-76.2896, 37.921662], [-76.290014, 37.921811], [-76.290165, 37.921865], [-76.290434, 37.922075], [-76.290883, 37.922557], [-76.292024, 37.923136], [-76.292955, 37.92358], [-76.293634, 37.923756], [-76.294918, 37.924381], [-76.295101, 37.92447], [-76.295765, 37.924759], [-76.295945, 37.924848], [-76.296494, 37.925122], [-76.297159, 37.925453], [-76.29754, 37.925642], [-76.298661, 37.9262], [-76.299974, 37.926669], [-76.300114, 37.926766], [-76.300102, 37.926783], [-76.300085, 37.926808], [-76.300019, 37.926904], [-76.300138, 37.926958], [-76.300226, 37.926859], [-76.300247, 37.926835], [-76.300498, 37.926899], [-76.300579, 37.926954], [-76.300633, 37.926974], [-76.300707, 37.926946], [-76.300832, 37.926989], [-76.301405, 37.92725], [-76.301755, 37.92741], [-76.30224, 37.927631], [-76.302385, 37.927697], [-76.303036, 37.928041], [-76.303643, 37.928276], [-76.304435, 37.928729], [-76.306092, 37.929463], [-76.306949, 37.929885], [-76.307695, 37.930252], [-76.308954, 37.930871], [-76.30899, 37.930819], [-76.309027, 37.930837], [-76.309618, 37.93112], [-76.310402, 37.931506], [-76.310816, 37.93171], [-76.311086, 37.931844], [-76.311356, 37.931977], [-76.31178, 37.932188], [-76.312203, 37.932399], [-76.312597, 37.932594], [-76.312754, 37.932684], [-76.313265, 37.932974], [-76.313772, 37.933265], [-76.314499, 37.933682], [-76.314965, 37.933921], [-76.315261, 37.934058], [-76.315515, 37.934023], [-76.315804, 37.934173], [-76.315962, 37.934305], [-76.316071, 37.934396], [-76.316186, 37.93445], [-76.316897, 37.934782], [-76.317043, 37.934868], [-76.317436, 37.9351], [-76.317821, 37.935283], [-76.31796, 37.935298], [-76.317997, 37.935287], [-76.318236, 37.935218], [-76.318379, 37.935436], [-76.318423, 37.935475], [-76.318527, 37.935566], [-76.321391, 37.937072], [-76.321493, 37.937126], [-76.321852, 37.937315], [-76.322367, 37.937586], [-76.322883, 37.937858], [-76.323191, 37.938014], [-76.323499, 37.938169], [-76.324395, 37.938659], [-76.325118, 37.939009], [-76.3257, 37.939292], [-76.326033, 37.939454], [-76.326355, 37.939493], [-76.326485, 37.939509], [-76.327243, 37.939909], [-76.327585, 37.94009], [-76.328684, 37.940638], [-76.329411, 37.940954], [-76.329472, 37.94099], [-76.329614, 37.941073], [-76.330215, 37.941367], [-76.330643, 37.941577], [-76.331203, 37.941851], [-76.331369, 37.941947], [-76.331652, 37.94211], [-76.331918, 37.942244], [-76.332011, 37.942293], [-76.332506, 37.942556], [-76.332974, 37.942754], [-76.333374, 37.942964], [-76.333674, 37.943076], [-76.33436, 37.943403], [-76.336129, 37.944169], [-76.336402, 37.944309], [-76.336875, 37.944506], [-76.337954, 37.944956], [-76.338619, 37.945294], [-76.339709, 37.945727], [-76.340463, 37.945955], [-76.341616, 37.946447], [-76.344382, 37.94747], [-76.344779, 37.947595], [-76.346314, 37.948079], [-76.347174, 37.94835], [-76.347621, 37.948543], [-76.348025, 37.948691], [-76.34825, 37.948774], [-76.348711, 37.948943], [-76.349285, 37.949208], [-76.349781, 37.949436], [-76.349949, 37.949489], [-76.350032, 37.949477], [-76.350052, 37.949444], [-76.350225, 37.949403], [-76.350369, 37.949374], [-76.350432, 37.949362], [-76.350592, 37.949425], [-76.350752, 37.949489], [-76.351754, 37.949888], [-76.351921, 37.949955], [-76.353315, 37.950318], [-76.354303, 37.950538], [-76.355238, 37.950747], [-76.355455, 37.950832], [-76.355616, 37.950897], [-76.355749, 37.950947], [-76.355825, 37.950977], [-76.355959, 37.951038], [-76.355961, 37.951039], [-76.356452, 37.951232], [-76.357067, 37.951482], [-76.357078, 37.951487], [-76.357585, 37.951694], [-76.359327, 37.952281], [-76.36115, 37.952591], [-76.362711, 37.952859], [-76.362953, 37.952901], [-76.364208, 37.953116], [-76.365611, 37.953562], [-76.366019, 37.953511], [-76.36706, 37.953692], [-76.368231, 37.953975], [-76.368774, 37.954084], [-76.370688, 37.954386], [-76.371461, 37.954553], [-76.373187, 37.954846], [-76.37393, 37.954989], [-76.374673, 37.955131], [-76.37476, 37.955152], [-76.374944, 37.955185], [-76.375537, 37.955292], [-76.375722, 37.955325], [-76.376056, 37.955386], [-76.37639, 37.955446], [-76.37662, 37.955487], [-76.37685, 37.955529], [-76.37689, 37.955542], [-76.376946, 37.95556], [-76.377041, 37.955592], [-76.37787, 37.955864], [-76.378699, 37.956137], [-76.378736, 37.956149], [-76.378972, 37.956227], [-76.379619, 37.956413], [-76.379627, 37.956415], [-76.379821, 37.956471], [-76.380158, 37.956533], [-76.380404, 37.956578], [-76.380651, 37.956623], [-76.380705, 37.956632], [-76.380758, 37.956643], [-76.38091, 37.956671], [-76.381061, 37.956699], [-76.38114, 37.956731], [-76.381168, 37.956734], [-76.381408, 37.956763], [-76.381588, 37.956796], [-76.381767, 37.956829], [-76.382042, 37.95688], [-76.38273, 37.957007], [-76.383567, 37.957161], [-76.388021, 37.95814], [-76.388107, 37.958237], [-76.388239, 37.95824], [-76.388342, 37.95821], [-76.388726, 37.958294], [-76.389014, 37.958358], [-76.389772, 37.958564], [-76.389898, 37.958666], [-76.390177, 37.958712], [-76.390286, 37.958704], [-76.390679, 37.958811], [-76.391113, 37.958985], [-76.391738, 37.959275], [-76.392445, 37.959453], [-76.412936, 37.96634], [-76.415295, 37.968149], [-76.419372, 37.971277], [-76.42056, 37.972517], [-76.421677, 37.973674], [-76.422695, 37.974743], [-76.423848, 37.975651], [-76.425132, 37.976561], [-76.425462, 37.976879], [-76.426319, 37.977384], [-76.433902, 37.981855], [-76.43397, 37.981945], [-76.435581, 37.984091], [-76.435755, 37.984335], [-76.436913, 37.985959], [-76.43699, 37.986067], [-76.438069, 37.987119], [-76.439472, 37.988263], [-76.441264, 37.989259], [-76.442173, 37.989592], [-76.443664, 37.991165], [-76.446614, 37.994279], [-76.452282, 38.000151], [-76.46501, 38.013228], [-76.465313, 38.013267], [-76.466092, 38.013314], [-76.466476, 38.013394], [-76.467061, 38.013511], [-76.467248, 38.013692], [-76.467802, 38.014147], [-76.468055, 38.014449], [-76.468417, 38.014577], [-76.472002, 38.015222], [-76.47252, 38.015489], [-76.472775, 38.015752], [-76.473111, 38.016057], [-76.473399, 38.01624], [-76.47352, 38.01621], [-76.473881, 38.016121], [-76.47417, 38.015941], [-76.474299, 38.015765], [-76.474421, 38.015691], [-76.474541, 38.015614], [-76.474889, 38.0154], [-76.475091, 38.015412], [-76.475378, 38.015556], [-76.475402, 38.015568], [-76.475752, 38.0157], [-76.475996, 38.015671], [-76.476459, 38.015574], [-76.476698, 38.015524], [-76.476937, 38.015473], [-76.477677, 38.015436], [-76.477969, 38.015432], [-76.478433, 38.015352], [-76.478607, 38.015338], [-76.479814, 38.01524], [-76.480432, 38.015319], [-76.480896, 38.015285], [-76.481978, 38.015375], [-76.482504, 38.01551], [-76.482509, 38.015511], [-76.483441, 38.015749], [-76.483931, 38.015874], [-76.484421, 38.015998], [-76.484721, 38.015996], [-76.485474, 38.016261], [-76.487491, 38.017019], [-76.48857, 38.01725], [-76.48861, 38.017255], [-76.488756, 38.017269], [-76.489953, 38.017417], [-76.489978, 38.01742], [-76.490181, 38.017444], [-76.490395, 38.01747], [-76.491222, 38.01757], [-76.491349, 38.017595], [-76.491978, 38.017722], [-76.492545, 38.017872], [-76.492546, 38.017913], [-76.492807, 38.018091], [-76.493524, 38.018168], [-76.493531, 38.018169], [-76.493588, 38.018148], [-76.494624, 38.018423], [-76.495527, 38.018662], [-76.495592, 38.018679], [-76.495659, 38.018697], [-76.495778, 38.018728], [-76.495896, 38.01876], [-76.496126, 38.018821], [-76.496593, 38.018945], [-76.496816, 38.019072], [-76.497011, 38.019184], [-76.497039, 38.0192], [-76.497189, 38.019286], [-76.497499, 38.019422], [-76.497831, 38.019547], [-76.497951, 38.019592], [-76.498392, 38.019762], [-76.498549, 38.01988], [-76.498577, 38.019899], [-76.499149, 38.019996], [-76.499378, 38.020064], [-76.499508, 38.020077], [-76.499593, 38.020086], [-76.499678, 38.020094], [-76.500752, 38.020528], [-76.501076, 38.020728], [-76.501538, 38.020894], [-76.5017, 38.020952], [-76.502258, 38.021151], [-76.503062, 38.021377], [-76.504048, 38.021716], [-76.504501, 38.021815], [-76.505389, 38.0221], [-76.506748, 38.022649], [-76.507091, 38.02282], [-76.507855, 38.023134], [-76.508365, 38.02332], [-76.509537, 38.023887], [-76.510191, 38.024275], [-76.512021, 38.025114], [-76.513071, 38.025529], [-76.514064, 38.025867], [-76.514716, 38.026145], [-76.515355, 38.026457], [-76.515649, 38.0266], [-76.515936, 38.026733], [-76.516097, 38.026775], [-76.516556, 38.026802], [-76.516611, 38.026791], [-76.516526, 38.029187], [-76.51644, 38.031583], [-76.516406, 38.033157], [-76.516371, 38.034732], [-76.516828, 38.034745], [-76.51685, 38.034746], [-76.519388, 38.034818], [-76.519536, 38.034822], [-76.522444, 38.034901], [-76.524958, 38.034968], [-76.525496, 38.034982], [-76.529021, 38.034391], [-76.53708, 38.032456], [-76.538566, 38.032099], [-76.538929, 38.031959], [-76.539116, 38.031887], [-76.539302, 38.031815], [-76.540541, 38.031335], [-76.5427, 38.029654], [-76.542715, 38.029642], [-76.542728, 38.029632], [-76.543819, 38.028786], [-76.547481, 38.026765], [-76.548225, 38.026577], [-76.549956, 38.026139], [-76.550783, 38.02598], [-76.553052, 38.025543], [-76.553632, 38.025613], [-76.55365, 38.025619], [-76.555222, 38.026137], [-76.556356, 38.026518], [-76.557634, 38.02643], [-76.557692, 38.026427], [-76.558503, 38.026629], [-76.558648, 38.026724], [-76.559188, 38.027078], [-76.559541, 38.027151], [-76.55961, 38.027165], [-76.56013, 38.027272], [-76.560416, 38.027332], [-76.560567, 38.027319], [-76.561192, 38.02727], [-76.562467, 38.027168], [-76.563097, 38.026977], [-76.564207, 38.026642], [-76.565194, 38.026344], [-76.565251, 38.026327], [-76.566129, 38.026215], [-76.569407, 38.026718], [-76.569503, 38.026733], [-76.569604, 38.026749], [-76.570965, 38.02693], [-76.571901, 38.027054], [-76.57214, 38.027006], [-76.572205, 38.026993], [-76.572395, 38.026954], [-76.573045, 38.026824], [-76.573098, 38.02677], [-76.573449, 38.026417], [-76.573432, 38.026106], [-76.573427, 38.026017], [-76.573418, 38.025854], [-76.573384, 38.025443], [-76.573445, 38.025238], [-76.573514, 38.025009], [-76.573845, 38.024707], [-76.574067, 38.02455], [-76.574649, 38.024143], [-76.574642, 38.023371], [-76.574598, 38.023334], [-76.57434, 38.023118], [-76.573924, 38.023042], [-76.572997, 38.023072], [-76.572924, 38.023068], [-76.572735, 38.023061], [-76.57205, 38.023031], [-76.571818, 38.022916], [-76.571691, 38.022568], [-76.57229, 38.021655], [-76.572345, 38.021573], [-76.572582, 38.021211], [-76.57282, 38.020849], [-76.573064, 38.020312], [-76.573019, 38.019943], [-76.573014, 38.019918], [-76.572917, 38.019322], [-76.572774, 38.018773], [-76.572779, 38.018493], [-76.572693, 38.018368], [-76.572697, 38.018203], [-76.572778, 38.01812], [-76.572834, 38.018106], [-76.572855, 38.01802], [-76.572858, 38.018009], [-76.573221, 38.017659], [-76.57367, 38.017583], [-76.575003, 38.017653], [-76.575532, 38.017682], [-76.576095, 38.017543], [-76.576683, 38.017098], [-76.576833, 38.016907], [-76.577151, 38.016499], [-76.577396, 38.016423], [-76.577888, 38.016257], [-76.57868, 38.015798], [-76.578992, 38.015415], [-76.579584, 38.01472], [-76.579674, 38.01457], [-76.579825, 38.01432], [-76.58017, 38.014162], [-76.580462, 38.014029], [-76.580911, 38.013929], [-76.581201, 38.013682], [-76.581359, 38.013329], [-76.581204, 38.012893], [-76.581208, 38.012779], [-76.581225, 38.012225], [-76.581515, 38.011922], [-76.582063, 38.011461], [-76.5823, 38.011377], [-76.582332, 38.011366], [-76.582483, 38.011312], [-76.583078, 38.011069], [-76.583354, 38.010929], [-76.583375, 38.010919], [-76.583644, 38.010688], [-76.584481, 38.009948], [-76.584496, 38.009706], [-76.584273, 38.009004], [-76.58429, 38.008826], [-76.584299, 38.008726], [-76.584311, 38.008594], [-76.585108, 38.007797], [-76.586558, 38.006958], [-76.586938, 38.006716], [-76.587102, 38.006613], [-76.587265, 38.00651], [-76.587274, 38.006504], [-76.587597, 38.0063], [-76.587612, 38.006226], [-76.587653, 38.006035], [-76.587659, 38.005641], [-76.587806, 38.005401], [-76.588167, 38.005139], [-76.589735, 38.004502], [-76.590157, 38.004265], [-76.590485, 38.004036], [-76.590493, 38.004031], [-76.590919, 38.003733], [-76.591562, 38.003611], [-76.592436, 38.003764], [-76.5926, 38.003766], [-76.592812, 38.003734], [-76.593026, 38.003718], [-76.593033, 38.003717], [-76.593078, 38.003714], [-76.593835, 38.003457], [-76.593841, 38.003455], [-76.593936, 38.003423], [-76.594055, 38.003389], [-76.594063, 38.003386], [-76.594117, 38.003364], [-76.594125, 38.003361], [-76.594151, 38.00335], [-76.59423, 38.003323], [-76.594257, 38.003314], [-76.594342, 38.003285], [-76.594428, 38.003256], [-76.594554, 38.003274], [-76.594624, 38.003285], [-76.594821, 38.003315], [-76.594891, 38.003325], [-76.595019, 38.003273], [-76.594999, 38.003061], [-76.595007, 38.002925], [-76.595043, 38.002876], [-76.595064, 38.002848], [-76.595064, 38.002798], [-76.595146, 38.002734], [-76.595209, 38.002684], [-76.595393, 38.002657], [-76.595442, 38.002715], [-76.595676, 38.002824], [-76.595835, 38.002821], [-76.595874, 38.002844], [-76.596253, 38.00291], [-76.596375, 38.003066], [-76.5965, 38.00339], [-76.596746, 38.003642], [-76.596947, 38.003689], [-76.597162, 38.003551], [-76.597177, 38.003552], [-76.597184, 38.003553], [-76.597196, 38.003554], [-76.597261, 38.003561], [-76.597336, 38.003566], [-76.597386, 38.003573], [-76.597407, 38.003576], [-76.598072, 38.003187], [-76.598247, 38.00317], [-76.598304, 38.003164], [-76.59863, 38.003311], [-76.598709, 38.003347], [-76.598917, 38.003306], [-76.599003, 38.003289], [-76.599102, 38.003269], [-76.599183, 38.003253], [-76.599287, 38.003232], [-76.599287, 38.003118], [-76.600415, 38.002682], [-76.600948, 38.002631], [-76.601068, 38.002619], [-76.601089, 38.002617], [-76.601229, 38.002604], [-76.601369, 38.00259], [-76.601472, 38.002548], [-76.601576, 38.002505], [-76.601949, 38.002353], [-76.602277, 38.002187], [-76.60256, 38.002082], [-76.602636, 38.002054], [-76.602712, 38.002027], [-76.602757, 38.00201], [-76.602799, 38.001995], [-76.603066, 38.001897], [-76.60388, 38.001759], [-76.603924, 38.001752], [-76.604912, 38.001722], [-76.605477, 38.00167], [-76.605524, 38.001666], [-76.605565, 38.001654], [-76.606342, 38.001478], [-76.606799, 38.001507], [-76.607662, 38.001668], [-76.608374, 38.001731], [-76.60862, 38.001629], [-76.608836, 38.001519], [-76.60904, 38.001488], [-76.609293, 38.001596], [-76.609666, 38.0018], [-76.609861, 38.00187], [-76.610071, 38.001945], [-76.610344, 38.00204], [-76.610696, 38.002066], [-76.610948, 38.002085], [-76.611076, 38.002096], [-76.611605, 38.002125], [-76.612615, 38.00203], [-76.612647, 38.002027], [-76.612952, 38.001995], [-76.613125, 38.001979], [-76.613229, 38.001985], [-76.613562, 38.002004], [-76.613745, 38.002017], [-76.614127, 38.002039], [-76.614485, 38.00206], [-76.614662, 38.002159], [-76.614674, 38.0022], [-76.614678, 38.002214], [-76.614617, 38.002286], [-76.614626, 38.002287], [-76.614798, 38.002311], [-76.61495, 38.00227], [-76.615078, 38.002104], [-76.615089, 38.001988], [-76.615247, 38.00192], [-76.615441, 38.001901], [-76.615693, 38.001958], [-76.615873, 38.001933], [-76.616296, 38.001631], [-76.616454, 38.001557], [-76.616542, 38.001419], [-76.616444, 38.00108], [-76.616492, 38.00104], [-76.616561, 38.001034], [-76.616715, 38.001081], [-76.616874, 38.001063], [-76.617058, 38.000895], [-76.617641, 38.000585], [-76.617783, 38.000413], [-76.617728, 38.000139], [-76.617744, 38.000105], [-76.617894, 37.999785], [-76.61793, 37.999603], [-76.617975, 37.999372], [-76.617975, 37.999244], [-76.617976, 37.999111], [-76.617976, 37.999086], [-76.618061, 37.998848], [-76.618104, 37.998774], [-76.618128, 37.998733], [-76.618422, 37.99852], [-76.618785, 37.998323], [-76.619196, 37.998031], [-76.619283, 37.997926], [-76.619255, 37.997558], [-76.619307, 37.997123], [-76.619592, 37.996504], [-76.620113, 37.995535], [-76.620167, 37.995161], [-76.620372, 37.994713], [-76.620404, 37.994586], [-76.620687, 37.994198], [-76.621441, 37.993457], [-76.621814, 37.993023], [-76.621887, 37.992879], [-76.621965, 37.992631], [-76.622072, 37.992481], [-76.62251, 37.992173], [-76.622673, 37.992012], [-76.622746, 37.991868], [-76.622799, 37.991741], [-76.622829, 37.991537], [-76.622774, 37.991247], [-76.622595, 37.990667], [-76.622621, 37.989969], [-76.622694, 37.989803], [-76.623061, 37.989457], [-76.624057, 37.988691], [-76.624686, 37.987924], [-76.625436, 37.986991], [-76.62585, 37.986584], [-76.626089, 37.986405], [-76.62655, 37.985899], [-76.626782, 37.985714], [-76.627115, 37.985385], [-76.627786, 37.984645], [-76.627886, 37.984452], [-76.627962, 37.984165], [-76.627911, 37.983413], [-76.627774, 37.982844], [-76.62793, 37.982704], [-76.628038, 37.982549], [-76.628144, 37.982322], [-76.628182, 37.982184], [-76.628179, 37.982042], [-76.628273, 37.981557], [-76.628411, 37.981231], [-76.628653, 37.980848], [-76.628767, 37.980698], [-76.628821, 37.980645], [-76.629019, 37.980453], [-76.629072, 37.980354], [-76.629478, 37.979865], [-76.629606, 37.979692], [-76.62979, 37.979553], [-76.629926, 37.97943], [-76.630118, 37.979341], [-76.63027, 37.979271], [-76.6304, 37.979187], [-76.63052, 37.979141], [-76.630765, 37.97905], [-76.630788, 37.979045], [-76.630836, 37.978999], [-76.631, 37.97885], [-76.631179, 37.978688], [-76.631878, 37.977799], [-76.631935, 37.977097], [-76.63236, 37.972275], [-76.632422, 37.971567], [-76.632435, 37.971422], [-76.632832, 37.97037], [-76.633936, 37.969558], [-76.634185, 37.969319], [-76.634549, 37.968551], [-76.634513, 37.968088], [-76.634186, 37.967117], [-76.634194, 37.967024], [-76.634227, 37.96668], [-76.634232, 37.966638], [-76.634241, 37.966637], [-76.634273, 37.966635], [-76.634344, 37.966632], [-76.634795, 37.966614], [-76.635388, 37.966678], [-76.635623, 37.966677], [-76.635898, 37.966676], [-76.638268, 37.96557], [-76.639256, 37.965567], [-76.640182, 37.966231], [-76.640789, 37.966574], [-76.641541, 37.966665], [-76.64287, 37.966779], [-76.643796, 37.967237], [-76.645935, 37.967969], [-76.647959, 37.968266], [-76.648084, 37.968404], [-76.648335, 37.968678], [-76.648335, 37.969364], [-76.64822, 37.969776], [-76.648249, 37.970806], [-76.648539, 37.971538], [-76.648915, 37.971996], [-76.649869, 37.972614], [-76.65013, 37.973117], [-76.650246, 37.974079], [-76.650332, 37.974124], [-76.650477, 37.974994], [-76.650709, 37.975635], [-76.651635, 37.976916], [-76.651838, 37.977625], [-76.652127, 37.978015], [-76.653891, 37.979364], [-76.654759, 37.980234], [-76.655164, 37.980989], [-76.655309, 37.981446], [-76.655396, 37.981469], [-76.655425, 37.981675], [-76.655627, 37.981813], [-76.655888, 37.981929], [-76.656294, 37.982177], [-76.657094, 37.982305], [-76.661495, 37.98301], [-76.662626, 37.983701], [-76.662957, 37.983849], [-76.663193, 37.983938], [-76.66353, 37.983996], [-76.663853, 37.983988], [-76.663984, 37.983953], [-76.664043, 37.983915], [-76.66459, 37.983839], [-76.664708, 37.983823], [-76.665691, 37.984052], [-76.666386, 37.984418], [-76.666733, 37.984509], [-76.667803, 37.984417], [-76.670463, 37.984805], [-76.670897, 37.985011], [-76.671504, 37.98501], [-76.671618, 37.984919], [-76.67184, 37.98479], [-76.672394, 37.984591], [-76.672737, 37.984521], [-76.672792, 37.984525], [-76.672842, 37.984528], [-76.672897, 37.984532], [-76.673151, 37.98455], [-76.676073, 37.984549], [-76.678042, 37.98416], [-76.67885, 37.983842], [-76.67969, 37.983402], [-76.681101, 37.982877], [-76.681475, 37.982602], [-76.681566, 37.982371], [-76.681711, 37.981413], [-76.681846, 37.981136], [-76.681856, 37.981114], [-76.681926, 37.981065], [-76.681971, 37.981518], [-76.682116, 37.981881], [-76.68268, 37.982026], [-76.68313, 37.982727], [-76.683886, 37.982829], [-76.684748, 37.982924], [-76.686045, 37.983419], [-76.68725, 37.983258], [-76.688219, 37.983361], [-76.688273, 37.98373], [-76.688425, 37.98394], [-76.688585, 37.98409], [-76.689257, 37.984955], [-76.693458, 37.984809], [-76.69369, 37.984801], [-76.700571, 37.984553], [-76.717708, 37.993381], [-76.717847, 37.993452], [-76.717897, 37.993478], [-76.717923, 37.993492], [-76.717945, 37.993503], [-76.718004, 37.993537], [-76.722689, 37.996312], [-76.722931, 37.996424], [-76.723321, 37.996604], [-76.723647, 37.996746], [-76.728555, 37.998998], [-76.728724, 37.999076], [-76.728773, 37.999098], [-76.728991, 37.999198], [-76.729351, 37.999208], [-76.729609, 37.999216], [-76.73336, 37.999053], [-76.733546, 37.999045], [-76.743586, 37.998712], [-76.743619, 37.998711], [-76.743962, 37.998114], [-76.743989, 37.997199], [-76.744191, 37.99697], [-76.744538, 37.996763], [-76.745752, 37.996693], [-76.74607, 37.996624], [-76.748007, 37.995821], [-76.748873, 37.994905], [-76.749328, 37.995022], [-76.749683, 37.99511], [-76.750458, 37.99535], [-76.750684, 37.995517], [-76.75092, 37.995693], [-76.751094, 37.995831], [-76.751788, 37.995877], [-76.752134, 37.996015], [-76.752452, 37.996221], [-76.753088, 37.996519], [-76.754042, 37.996635], [-76.754592, 37.996887], [-76.755286, 37.997048], [-76.756182, 37.997346], [-76.757166, 37.997965], [-76.7576, 37.997966], [-76.757975, 37.997851], [-76.758351, 37.997989], [-76.758931, 37.998493], [-76.759539, 37.998745], [-76.760233, 37.99941], [-76.760609, 37.999547], [-76.761419, 37.999663], [-76.762025, 38.000146], [-76.762904, 38.000687], [-76.763003, 38.000748], [-76.763676, 38.001162], [-76.764487, 38.001873], [-76.764718, 38.001987], [-76.765413, 38.001644], [-76.765963, 38.001554], [-76.765966, 38.001577], [-76.766008, 38.001829], [-76.766016, 38.001919], [-76.765875, 38.00192], [-76.765614, 38.002171], [-76.76518, 38.002606], [-76.76486, 38.003704], [-76.764657, 38.004161], [-76.764454, 38.004298], [-76.761357, 38.005577], [-76.760923, 38.006057], [-76.760372, 38.006606], [-76.760256, 38.007064], [-76.759822, 38.007429], [-76.759791, 38.008413], [-76.760051, 38.008688], [-76.760051, 38.009077], [-76.759819, 38.009283], [-76.759587, 38.009786], [-76.758862, 38.010633], [-76.758833, 38.011044], [-76.758977, 38.011113], [-76.759381, 38.011823], [-76.759554, 38.012304], [-76.760217, 38.013632], [-76.760071, 38.014891], [-76.759693, 38.01576], [-76.759751, 38.015989], [-76.760097, 38.016424], [-76.759921, 38.017911], [-76.760181, 38.018369], [-76.76018, 38.019125], [-76.759919, 38.019353], [-76.759513, 38.020017], [-76.758789, 38.020336], [-76.758645, 38.020519], [-76.758546, 38.020907], [-76.75847, 38.021206], [-76.757948, 38.021869], [-76.757658, 38.02212], [-76.756992, 38.023035], [-76.756383, 38.023584], [-76.756267, 38.023904], [-76.756468, 38.024637], [-76.755976, 38.025139], [-76.755648, 38.025266], [-76.75561, 38.025622], [-76.755869, 38.026105], [-76.756326, 38.026414], [-76.75683, 38.026654], [-76.75709, 38.02706], [-76.757151, 38.027569], [-76.757273, 38.027982], [-76.757448, 38.02833], [-76.757112, 38.028824], [-76.756884, 38.029304], [-76.757046, 38.029962], [-76.757334, 38.030684], [-76.757876, 38.031206], [-76.758971, 38.03203], [-76.759003, 38.032054], [-76.759581, 38.032329], [-76.760507, 38.032513], [-76.761664, 38.032515], [-76.762387, 38.032904], [-76.763313, 38.033134], [-76.764354, 38.033272], [-76.765309, 38.033205], [-76.765917, 38.03348], [-76.766697, 38.034007], [-76.768143, 38.034557], [-76.768432, 38.034764], [-76.768315, 38.035633], [-76.768893, 38.036137], [-76.769412, 38.037374], [-76.770221, 38.038358], [-76.770713, 38.038771], [-76.770828, 38.03916], [-76.771724, 38.03955], [-76.773228, 38.040787], [-76.775049, 38.041773], [-76.775396, 38.042139], [-76.775668, 38.042285], [-76.776293, 38.04262], [-76.777074, 38.042804], [-76.777547, 38.042991], [-76.777628, 38.043039], [-76.778481, 38.043892], [-76.780216, 38.044168], [-76.780593, 38.04461], [-76.781163, 38.045356], [-76.781619, 38.045954], [-76.781758, 38.046081], [-76.782539, 38.046745], [-76.782741, 38.04702], [-76.782798, 38.047294], [-76.782914, 38.047569], [-76.783145, 38.047775], [-76.78381, 38.047959], [-76.784938, 38.048829], [-76.786124, 38.049128], [-76.786789, 38.049792], [-76.787802, 38.050022], [-76.78812, 38.050205], [-76.788901, 38.051007], [-76.789565, 38.051808], [-76.790839, 38.051877], [-76.790875, 38.051894], [-76.791721, 38.052287], [-76.792517, 38.052657], [-76.793702, 38.053619], [-76.793876, 38.053825], [-76.794454, 38.054397], [-76.794945, 38.055107], [-76.795061, 38.055451], [-76.795495, 38.055909], [-76.795986, 38.05687], [-76.796188, 38.057191], [-76.796824, 38.05774], [-76.797229, 38.058313], [-76.797576, 38.058565], [-76.80018, 38.059322], [-76.800788, 38.059459], [-76.801107, 38.059437], [-76.801917, 38.059643], [-76.803624, 38.060285], [-76.804116, 38.060285], [-76.804695, 38.060034], [-76.805911, 38.060034], [-76.806171, 38.059897], [-76.806982, 38.059692], [-76.807967, 38.058754], [-76.80843, 38.058571], [-76.809028, 38.058486], [-76.809067, 38.05848], [-76.81037, 38.05871], [-76.812714, 38.058619], [-76.812946, 38.058825], [-76.814248, 38.059009], [-76.81437, 38.058891], [-76.814364, 38.058952], [-76.814333, 38.059291], [-76.814463, 38.059748], [-76.81444, 38.060032], [-76.814424, 38.06029], [-76.814913, 38.06098], [-76.815417, 38.061748], [-76.815775, 38.062621], [-76.816073, 38.063229], [-76.816607, 38.063554], [-76.817499, 38.064036], [-76.818155, 38.064382], [-76.818796, 38.064466], [-76.819651, 38.064183], [-76.820238, 38.063953], [-76.820841, 38.063948], [-76.821497, 38.064348], [-76.821841, 38.064581], [-76.821864, 38.064596], [-76.822845, 38.065185], [-76.822924, 38.065232], [-76.822945, 38.065251], [-76.825372, 38.06747], [-76.825402, 38.067498], [-76.829274, 38.071021], [-76.829294, 38.07104], [-76.833141, 38.074534], [-76.833231, 38.074615], [-76.833312, 38.074688], [-76.833376, 38.074747], [-76.833966, 38.075285], [-76.834379, 38.075662], [-76.835859, 38.077011], [-76.839788, 38.080594], [-76.839822, 38.080625], [-76.842908, 38.083447], [-76.84305, 38.083576], [-76.849715, 38.089608], [-76.850632, 38.090414], [-76.851501, 38.091225], [-76.85155, 38.091221], [-76.851582, 38.091321], [-76.851666, 38.091588], [-76.851694, 38.091931], [-76.852071, 38.092412], [-76.852447, 38.092663], [-76.853403, 38.093144], [-76.854358, 38.093785], [-76.854445, 38.093945], [-76.854706, 38.094128], [-76.855372, 38.094334], [-76.855603, 38.094586], [-76.856095, 38.095822], [-76.856095, 38.096486], [-76.856327, 38.096943], [-76.85679, 38.097561], [-76.857051, 38.098362], [-76.857804, 38.098889], [-76.858006, 38.099186], [-76.858498, 38.09937], [-76.858759, 38.09969], [-76.859599, 38.09985], [-76.860439, 38.100514], [-76.861047, 38.100812], [-76.862263, 38.101681], [-76.862496, 38.102049], [-76.862582, 38.102185], [-76.863392, 38.102643], [-76.863624, 38.103169], [-76.863827, 38.103489], [-76.864348, 38.104267], [-76.864927, 38.106441], [-76.865391, 38.107059], [-76.865941, 38.107654], [-76.866144, 38.108364], [-76.866346, 38.108707], [-76.866433, 38.109234], [-76.866897, 38.110172], [-76.867013, 38.111522], [-76.866839, 38.112254], [-76.866607, 38.113032], [-76.866983, 38.113536], [-76.867997, 38.114474], [-76.868142, 38.115527], [-76.868113, 38.115824], [-76.8682, 38.11658], [-76.868663, 38.117289], [-76.869504, 38.117976], [-76.870373, 38.11793], [-76.871444, 38.118273], [-76.871821, 38.118662], [-76.871908, 38.118937], [-76.87214, 38.119829], [-76.872516, 38.120287], [-76.872574, 38.120401], [-76.87269, 38.120424], [-76.872835, 38.121202], [-76.872893, 38.122095], [-76.873762, 38.122827], [-76.874602, 38.123262], [-76.876399, 38.123903], [-76.87692, 38.124246], [-76.876891, 38.124452], [-76.877064, 38.124366], [-76.888492, 38.115987], [-76.88862, 38.115893], [-76.89028, 38.114684], [-76.89335, 38.112443], [-76.89478, 38.1114], [-76.894827, 38.111365], [-76.895436, 38.110922], [-76.899026, 38.108303], [-76.899045, 38.10829], [-76.901797, 38.106092], [-76.901888, 38.106019], [-76.903963, 38.105278], [-76.904734, 38.104936], [-76.905786, 38.104203], [-76.906221, 38.103507], [-76.90671, 38.10271], [-76.908281, 38.101139], [-76.909037, 38.100253], [-76.909273, 38.099663], [-76.90938, 38.099445], [-76.909647, 38.099333], [-76.909922, 38.099049], [-76.910593, 38.098407], [-76.911394, 38.097443], [-76.912103, 38.097188], [-76.913434, 38.097166], [-76.914506, 38.097371], [-76.914911, 38.097211], [-76.915201, 38.096913], [-76.916069, 38.095815], [-76.916792, 38.095082], [-76.918153, 38.094349], [-76.918964, 38.094212], [-76.919774, 38.093616], [-76.921222, 38.093387], [-76.921922, 38.093067], [-76.921974, 38.093043], [-76.922553, 38.092608], [-76.92345, 38.091532], [-76.924288, 38.089861], [-76.925649, 38.089494], [-76.92892, 38.088326], [-76.929673, 38.087799], [-76.93028, 38.087181], [-76.930859, 38.086746], [-76.931206, 38.086563], [-76.932364, 38.086585], [-76.932885, 38.086402], [-76.93358, 38.086127], [-76.934651, 38.085874], [-76.935317, 38.085485], [-76.935885, 38.085116], [-76.936445, 38.084752], [-76.936735, 38.08466], [-76.937922, 38.084911], [-76.937863, 38.083904], [-76.937979, 38.083721], [-76.938008, 38.08347], [-76.937805, 38.083241], [-76.937457, 38.082692], [-76.936878, 38.082532], [-76.935691, 38.082578], [-76.934938, 38.082464], [-76.934706, 38.082121], [-76.93459, 38.081847], [-76.935429, 38.08164], [-76.935458, 38.081343], [-76.935226, 38.081137], [-76.935168, 38.080885], [-76.935226, 38.080725], [-76.935251, 38.080656], [-76.935265, 38.080616], [-76.935333, 38.08059], [-76.935517, 38.080482], [-76.935923, 38.080235], [-76.936159, 38.079889], [-76.936563, 38.078468], [-76.936813, 38.077588], [-76.936886, 38.077335], [-76.936961, 38.077082], [-76.939266, 38.077619], [-76.94157, 38.078156], [-76.942681, 38.078413], [-76.942825, 38.07845], [-76.947912, 38.079645], [-76.95569, 38.081337], [-76.966374, 38.083662], [-76.977059, 38.085987], [-76.977414, 38.086064], [-76.977769, 38.086142], [-76.98402, 38.087502], [-76.989288, 38.091634], [-76.989618, 38.092343], [-76.989617, 38.092569], [-76.989877, 38.092902], [-76.990124, 38.093432], [-76.990613, 38.09429], [-76.990473, 38.096096], [-76.988095, 38.100344], [-76.987734, 38.10236], [-76.987875, 38.102998], [-76.988046, 38.103776], [-76.98899, 38.106066], [-76.989514, 38.106738], [-76.989589, 38.106834], [-76.993487, 38.108673], [-76.995319, 38.109561], [-76.999696, 38.110308], [-76.999795, 38.11024], [-77.002195, 38.11024], [-77.002595, 38.11014], [-77.002695, 38.11014], [-77.002995, 38.10994], [-77.003395, 38.10974], [-77.003795, 38.10924], [-77.004295, 38.10874], [-77.004795, 38.10834], [-77.005095, 38.10794], [-77.005495, 38.10734], [-77.005895, 38.10664], [-77.006495, 38.10574], [-77.007295, 38.10414], [-77.007795, 38.10324], [-77.008995, 38.10084], [-77.009295, 38.09994], [-77.009487, 38.099508], [-77.00949, 38.099502], [-77.009659, 38.099094], [-77.009908, 38.098563], [-77.009995, 38.09844], [-77.010103, 38.098296], [-77.010482, 38.097795], [-77.010862, 38.097258], [-77.011093, 38.096929], [-77.011295, 38.09664], [-77.011795, 38.09604], [-77.012112, 38.095786], [-77.012295, 38.09564], [-77.012459, 38.095421], [-77.012595, 38.09524], [-77.012992, 38.094937], [-77.013095, 38.09484], [-77.013489, 38.094525], [-77.013595, 38.09444], [-77.014195, 38.09384], [-77.014695, 38.09354], [-77.015557, 38.093315], [-77.015921, 38.093225], [-77.016596, 38.093041], [-77.017448, 38.092859], [-77.017996, 38.092741], [-77.018596, 38.092541], [-77.019496, 38.092441], [-77.020296, 38.092241], [-77.021596, 38.092041], [-77.022796, 38.091841], [-77.022885, 38.091831], [-77.022904, 38.091829], [-77.023696, 38.091741], [-77.024894, 38.091372], [-77.024912, 38.091366], [-77.024996, 38.091341], [-77.026796, 38.091041], [-77.028096, 38.090841], [-77.028996, 38.090741], [-77.030096, 38.090741], [-77.030996, 38.090941], [-77.031296, 38.091041], [-77.031677, 38.091269], [-77.031691, 38.091277], [-77.031796, 38.091341], [-77.032396, 38.091741], [-77.032996, 38.092241], [-77.033296, 38.092541], [-77.033496, 38.092841], [-77.033496, 38.09294], [-77.033596, 38.09304], [-77.033696, 38.09324], [-77.033696, 38.09354], [-77.033796, 38.09364], [-77.033796, 38.09384], [-77.033996, 38.09444], [-77.033996, 38.09484], [-77.034096, 38.09534], [-77.034096, 38.09594], [-77.034183, 38.096721], [-77.034185, 38.096735], [-77.034196, 38.09684], [-77.034096, 38.09754], [-77.034096, 38.09824], [-77.034013, 38.098988], [-77.034012, 38.099001], [-77.033996, 38.09914], [-77.033996, 38.10024], [-77.034196, 38.10084], [-77.034285, 38.101018], [-77.03429, 38.101029], [-77.034396, 38.10124], [-77.034696, 38.10154], [-77.035096, 38.10204], [-77.035496, 38.10244], [-77.036496, 38.10324], [-77.036996, 38.10354], [-77.037396, 38.10394], [-77.03758, 38.104032], [-77.037589, 38.104036], [-77.037796, 38.10414], [-77.038296, 38.10444], [-77.039196, 38.10494], [-77.039896, 38.10524], [-77.040596, 38.10564], [-77.041396, 38.10604], [-77.042196, 38.10654], [-77.042896, 38.10694], [-77.042961, 38.106977], [-77.04356, 38.107319], [-77.043703, 38.107401], [-77.044296, 38.10774], [-77.045097, 38.10814], [-77.045797, 38.10844], [-77.046497, 38.10864], [-77.047197, 38.10894], [-77.047882, 38.109168], [-77.047888, 38.10917], [-77.048097, 38.10924], [-77.049697, 38.10984], [-77.049745, 38.109878], [-77.04975, 38.109882], [-77.050197, 38.11024], [-77.050411, 38.110411], [-77.050697, 38.11064], [-77.051197, 38.11104], [-77.051597, 38.11174], [-77.051722, 38.112022], [-77.051997, 38.11264], [-77.052297, 38.11354], [-77.052297, 38.11404], [-77.052197, 38.11464], [-77.051697, 38.11614], [-77.051297, 38.11794], [-77.050997, 38.11894], [-77.050697, 38.11984], [-77.050597, 38.12084], [-77.050633, 38.120985], [-77.050797, 38.12164], [-77.051197, 38.12224], [-77.051497, 38.12304], [-77.051897, 38.12394], [-77.051997, 38.12484], [-77.051947, 38.12514], [-77.052489, 38.129838], [-77.052514, 38.130057], [-77.05254, 38.130276], [-77.052618, 38.130958], [-77.052697, 38.13164], [-77.052697, 38.13254], [-77.052797, 38.13304], [-77.052897, 38.13344], [-77.052797, 38.13384], [-77.052697, 38.134339], [-77.052497, 38.134939], [-77.052297, 38.135939], [-77.052297, 38.136539], [-77.052197, 38.137239], [-77.052197, 38.137739], [-77.052097, 38.138139], [-77.051997, 38.138639], [-77.051797, 38.139039], [-77.051797, 38.140539], [-77.051897, 38.141139], [-77.051897, 38.141839], [-77.052097, 38.143039], [-77.052097, 38.143739], [-77.052197, 38.144339], [-77.052497, 38.144839], [-77.052597, 38.145139], [-77.052697, 38.145639], [-77.052897, 38.146239], [-77.053097, 38.146939], [-77.053397, 38.147639], [-77.053786, 38.14832], [-77.053797, 38.148339], [-77.053997, 38.148839], [-77.054297, 38.149439], [-77.054697, 38.150039], [-77.054997, 38.150439], [-77.055197, 38.150939], [-77.055397, 38.151539], [-77.055597, 38.152539], [-77.055597, 38.153339], [-77.055997, 38.154139], [-77.056024, 38.154176], [-77.056297, 38.154539], [-77.056497, 38.154939], [-77.056597, 38.155439], [-77.056697, 38.156039], [-77.056797, 38.156539], [-77.056883, 38.156711], [-77.05692, 38.156764], [-77.057199, 38.157339], [-77.057497, 38.157639], [-77.057697, 38.158039], [-77.057897, 38.158539], [-77.058197, 38.158939], [-77.058297, 38.159239], [-77.058497, 38.159539], [-77.058897, 38.159739], [-77.059197, 38.160139], [-77.059997, 38.160739], [-77.060297, 38.161039], [-77.060697, 38.161239], [-77.060897, 38.161239], [-77.061297, 38.161439], [-77.061445, 38.161488], [-77.061597, 38.161539], [-77.061697, 38.161639], [-77.061684, 38.161651], [-77.061645, 38.16169], [-77.061633, 38.161703], [-77.06161, 38.161725], [-77.061597, 38.161739], [-77.061562, 38.161808], [-77.061548, 38.161837], [-77.061497, 38.161939], [-77.061492, 38.16204], [-77.061456, 38.16204], [-77.061472, 38.162172], [-77.061585, 38.162272], [-77.06161, 38.162389], [-77.061762, 38.162705], [-77.061836, 38.162903], [-77.061851, 38.162954], [-77.061839, 38.163343], [-77.061851, 38.163445], [-77.061863, 38.163524], [-77.061878, 38.163542], [-77.061919, 38.16359], [-77.061929, 38.163596], [-77.061995, 38.16364], [-77.062134, 38.163684], [-77.062225, 38.163783], [-77.062256, 38.16385], [-77.062273, 38.163887], [-77.062343, 38.163958], [-77.062447, 38.164019], [-77.062642, 38.164101], [-77.062698, 38.164161], [-77.062712, 38.1642], [-77.062698, 38.164233], [-77.062663, 38.164266], [-77.062579, 38.16431], [-77.062343, 38.164392], [-77.062315, 38.164452], [-77.062336, 38.164568], [-77.062329, 38.164585], [-77.062287, 38.164694], [-77.062364, 38.16476], [-77.062531, 38.164854], [-77.062579, 38.164881], [-77.062694, 38.164975], [-77.062781, 38.165046], [-77.062865, 38.165068], [-77.062927, 38.165051], [-77.063219, 38.164858], [-77.063261, 38.164831], [-77.063275, 38.164799], [-77.063257, 38.164681], [-77.063254, 38.164661], [-77.063282, 38.164595], [-77.063311, 38.164574], [-77.063359, 38.16454], [-77.063484, 38.164535], [-77.063682, 38.164556], [-77.063685, 38.164557], [-77.063805, 38.164595], [-77.063847, 38.164608], [-77.063929, 38.164634], [-77.063967, 38.16466], [-77.064004, 38.164685], [-77.064026, 38.1647], [-77.064068, 38.164755], [-77.06407, 38.164782], [-77.064075, 38.164831], [-77.064033, 38.164919], [-77.063908, 38.165057], [-77.063895, 38.16509], [-77.063873, 38.165155], [-77.063873, 38.165238], [-77.063943, 38.16532], [-77.06404, 38.165403], [-77.064228, 38.165485], [-77.064353, 38.16549], [-77.06452, 38.165468], [-77.064562, 38.16549], [-77.064625, 38.165556], [-77.064722, 38.165798], [-77.064715, 38.165864], [-77.064673, 38.165902], [-77.064562, 38.165968], [-77.064513, 38.166073], [-77.064541, 38.16616], [-77.064673, 38.166386], [-77.064722, 38.166517], [-77.064715, 38.166572], [-77.064708, 38.166644], [-77.06466, 38.166748], [-77.064548, 38.166869], [-77.064284, 38.167061], [-77.064221, 38.167122], [-77.064207, 38.167171], [-77.064381, 38.167528], [-77.064388, 38.167627], [-77.064374, 38.167671], [-77.064333, 38.167704], [-77.064249, 38.167731], [-77.06404, 38.167759], [-77.06395, 38.167814], [-77.063922, 38.167857], [-77.063839, 38.168127], [-77.063797, 38.16844], [-77.063825, 38.168555], [-77.063881, 38.168698], [-77.063873, 38.16889], [-77.063915, 38.169044], [-77.064207, 38.169576], [-77.064249, 38.16973], [-77.064284, 38.169966], [-77.06427, 38.170235], [-77.064277, 38.170411], [-77.064402, 38.170658], [-77.064409, 38.170697], [-77.064395, 38.170763], [-77.064298, 38.171021], [-77.064291, 38.17107], [-77.064305, 38.171191], [-77.064305, 38.171389], [-77.06427, 38.171564], [-77.064291, 38.171674], [-77.064249, 38.171812], [-77.064131, 38.172004], [-77.064128, 38.172007], [-77.063895, 38.172306], [-77.063547, 38.172597], [-77.063498, 38.17263], [-77.063428, 38.172646], [-77.063366, 38.172679], [-77.063317, 38.172723], [-77.063331, 38.172817], [-77.063359, 38.172888], [-77.063352, 38.172921], [-77.063282, 38.17302], [-77.063157, 38.17313], [-77.063088, 38.173163], [-77.06299, 38.173152], [-77.062914, 38.173163], [-77.062865, 38.173179], [-77.062795, 38.173234], [-77.062735, 38.173305], [-77.062642, 38.173415], [-77.062474, 38.173568], [-77.062378, 38.173657], [-77.062302, 38.173794], [-77.062302, 38.174074], [-77.062357, 38.174431], [-77.062315, 38.174525], [-77.062238, 38.174552], [-77.062148, 38.174585], [-77.062023, 38.17459], [-77.061879, 38.174548], [-77.061689, 38.174492], [-77.061555, 38.174474], [-77.061522, 38.17447], [-77.061063, 38.174536], [-77.06082, 38.17453], [-77.060604, 38.174514], [-77.060561, 38.174521], [-77.060472, 38.174536], [-77.060237, 38.174594], [-77.060187, 38.174607], [-77.059953, 38.174628], [-77.059887, 38.174635], [-77.059741, 38.174678], [-77.059393, 38.174882], [-77.059261, 38.174926], [-77.059165, 38.174923], [-77.059059, 38.17492], [-77.058883, 38.174886], [-77.058831, 38.174876], [-77.058802, 38.174871], [-77.058684, 38.174882], [-77.058677, 38.174885], [-77.05863, 38.174907], [-77.05861, 38.174916], [-77.058566, 38.174937], [-77.05855, 38.174945], [-77.058532, 38.174957], [-77.058507, 38.174971], [-77.058432, 38.175014], [-77.058408, 38.175029], [-77.058322, 38.175079], [-77.058155, 38.17514], [-77.058127, 38.175144], [-77.05803, 38.175162], [-77.057814, 38.175233], [-77.057696, 38.175316], [-77.057411, 38.17564], [-77.057401, 38.175648], [-77.057251, 38.175782], [-77.057195, 38.17587], [-77.057077, 38.17598], [-77.056986, 38.17603], [-77.056938, 38.176057], [-77.056722, 38.176123], [-77.056516, 38.176163], [-77.056304, 38.176205], [-77.056218, 38.176217], [-77.055957, 38.176256], [-77.055664, 38.176299], [-77.055414, 38.176299], [-77.055167, 38.176265], [-77.054725, 38.176205], [-77.054141, 38.176178], [-77.053619, 38.176101], [-77.052797, 38.176004], [-77.052777, 38.176002], [-77.052673, 38.17598], [-77.052464, 38.175991], [-77.05204, 38.176123], [-77.052026, 38.176127], [-77.051843, 38.176173], [-77.051741, 38.176199], [-77.051643, 38.176254], [-77.051483, 38.176419], [-77.05142, 38.176507], [-77.051412, 38.176513], [-77.051269, 38.176636], [-77.051247, 38.176655], [-77.051076, 38.176768], [-77.050718, 38.177007], [-77.050537, 38.17716], [-77.050519, 38.177189], [-77.050363, 38.177462], [-77.050293, 38.177688], [-77.050168, 38.177819], [-77.050217, 38.177924], [-77.050592, 38.178259], [-77.050857, 38.17861], [-77.050872, 38.178633], [-77.050899, 38.178676], [-77.050899, 38.178726], [-77.051114, 38.178852], [-77.05142, 38.178995], [-77.051671, 38.17916], [-77.051831, 38.179291], [-77.051879, 38.179407], [-77.051859, 38.179533], [-77.051685, 38.180148], [-77.051636, 38.180686], [-77.051587, 38.18078], [-77.051524, 38.180829], [-77.051434, 38.180868], [-77.051323, 38.180961], [-77.051232, 38.181126], [-77.051107, 38.181252], [-77.050912, 38.181367], [-77.050759, 38.181433], [-77.050383, 38.18173], [-77.050251, 38.181812], [-77.049974, 38.181944], [-77.049757, 38.182048], [-77.049632, 38.182098], [-77.049576, 38.182092], [-77.049334, 38.18218], [-77.049214, 38.182224], [-77.048964, 38.182301], [-77.048727, 38.182345], [-77.048484, 38.182452], [-77.048194, 38.184687], [-77.048182, 38.184762], [-77.048184, 38.185057], [-77.048293, 38.186615], [-77.048275, 38.187012], [-77.048221, 38.188204], [-77.048216, 38.188335], [-77.048195, 38.188601], [-77.048181, 38.188888], [-77.048142, 38.189748], [-77.048129, 38.190036], [-77.048051, 38.191606], [-77.047819, 38.196319], [-77.047742, 38.19789], [-77.047732, 38.19809], [-77.047703, 38.19869], [-77.047694, 38.198891], [-77.047681, 38.199161], [-77.047641, 38.199972], [-77.047629, 38.200243], [-77.047618, 38.200465], [-77.047584, 38.201133], [-77.047574, 38.201356], [-77.047572, 38.201403], [-77.04755, 38.201835], [-77.04748, 38.203274], [-77.047457, 38.203754], [-77.047456, 38.203762], [-77.047455, 38.203787], [-77.047455, 38.203796], [-77.047452, 38.203856], [-77.04745, 38.203904], [-77.047443, 38.204037], [-77.04744, 38.204098], [-77.047435, 38.204178], [-77.04743, 38.2043], [-77.047423, 38.204421], [-77.04742, 38.204503], [-77.047411, 38.204677], [-77.047386, 38.205201], [-77.047378, 38.205376], [-77.047373, 38.205473], [-77.047371, 38.205501], [-77.047352, 38.205876], [-77.047347, 38.206002], [-77.04734, 38.206124], [-77.047332, 38.206309], [-77.047322, 38.206493], [-77.047317, 38.206617], [-77.047315, 38.206654], [-77.047313, 38.20671], [-77.047309, 38.206765], [-77.047308, 38.206803], [-77.047071, 38.21173], [-77.046761, 38.218039], [-77.04676, 38.218061], [-77.046725, 38.218768], [-77.046622, 38.220889], [-77.046591, 38.221539], [-77.046588, 38.221596], [-77.046488, 38.223638], [-77.04619, 38.229767], [-77.046091, 38.23181], [-77.046087, 38.231879], [-77.046077, 38.232085], [-77.046074, 38.232155], [-77.046065, 38.232339], [-77.046053, 38.232582], [-77.04599, 38.233865], [-77.04597, 38.234293], [-77.045866, 38.236418], [-77.045555, 38.242794], [-77.045452, 38.24492], [-77.045425, 38.245463], [-77.045346, 38.247091], [-77.04532, 38.247635], [-77.045245, 38.248478], [-77.045098, 38.250137], [-77.045097, 38.250836], [-77.045074, 38.251011], [-77.044966, 38.251852], [-77.044929, 38.252125], [-77.044821, 38.252947], [-77.044797, 38.253136], [-77.044819, 38.253219], [-77.04483, 38.253262], [-77.044832, 38.253273], [-77.044872, 38.253436], [-77.044886, 38.253491], [-77.044898, 38.253537], [-77.044896, 38.253609], [-77.044891, 38.253968], [-77.04489, 38.254088], [-77.044883, 38.254502], [-77.044865, 38.255745], [-77.044862, 38.256013], [-77.044859, 38.25616], [-77.044859, 38.256186], [-77.044848, 38.256928], [-77.044814, 38.259233], [-77.044803, 38.260002], [-77.044803, 38.260155], [-77.044801, 38.260332], [-77.044801, 38.260415], [-77.044736, 38.260419], [-77.044614, 38.260429], [-77.044548, 38.260454], [-77.044488, 38.260478], [-77.044431, 38.2605], [-77.04426, 38.260567], [-77.044204, 38.26059], [-77.044146, 38.260613], [-77.044097, 38.260627], [-77.043897, 38.260689], [-77.043769, 38.260711], [-77.043658, 38.260731], [-77.043626, 38.260736], [-77.043585, 38.260744], [-77.043538, 38.26077], [-77.043511, 38.260787], [-77.043401, 38.26085], [-77.043119, 38.261015], [-77.043066, 38.26103], [-77.042944, 38.261066], [-77.042903, 38.261077], [-77.042835, 38.261097], [-77.042781, 38.261101], [-77.04274, 38.261105], [-77.04271, 38.261107], [-77.042621, 38.261115], [-77.042592, 38.261118], [-77.042555, 38.261109], [-77.042446, 38.261085], [-77.04241, 38.261077], [-77.042371, 38.261016], [-77.042315, 38.26093], [-77.042216, 38.260878], [-77.042153, 38.260845], [-77.042046, 38.260832], [-77.041985, 38.260826], [-77.041725, 38.260828], [-77.041618, 38.260829], [-77.041546, 38.260829], [-77.041505, 38.260826], [-77.041478, 38.260824], [-77.041396, 38.260818], [-77.041295, 38.260811], [-77.041155, 38.260771], [-77.041077, 38.260749], [-77.040731, 38.260837], [-77.04064, 38.260836], [-77.040132, 38.260831], [-77.039786, 38.260909], [-77.039509, 38.260985], [-77.039317, 38.260992], [-77.039258, 38.260995], [-77.039135, 38.260977], [-77.038874, 38.260941], [-77.03869, 38.260829], [-77.03862, 38.260779], [-77.038559, 38.260718], [-77.038504, 38.260586], [-77.038464, 38.260471], [-77.038445, 38.260349], [-77.038451, 38.260284], [-77.037998, 38.260009], [-77.037992, 38.259985], [-77.037919, 38.259947], [-77.037857, 38.25985], [-77.037766, 38.259831], [-77.037664, 38.259646], [-77.037426, 38.259451], [-77.037044, 38.259194], [-77.036716, 38.259013], [-77.036675, 38.258933], [-77.036627, 38.258906], [-77.036563, 38.258871], [-77.035583, 38.258599], [-77.035119, 38.258625], [-77.034931, 38.258634], [-77.034674, 38.258734], [-77.034421, 38.259156], [-77.034473, 38.25922], [-77.034486, 38.259237], [-77.034565, 38.259335], [-77.034602, 38.259395], [-77.03459, 38.259477], [-77.03446, 38.259567], [-77.034175, 38.25982], [-77.03393, 38.260049], [-77.033816, 38.260319], [-77.033795, 38.260395], [-77.033941, 38.260455], [-77.034243, 38.260528], [-77.034273, 38.260603], [-77.034541, 38.260731], [-77.034612, 38.260791], [-77.034756, 38.260914], [-77.034823, 38.261094], [-77.034813, 38.261226], [-77.034712, 38.261348], [-77.034657, 38.261348], [-77.034415, 38.261352], [-77.034238, 38.261354], [-77.034213, 38.261347], [-77.033796, 38.261243], [-77.03362, 38.261225], [-77.033419, 38.261205], [-77.033342, 38.261197], [-77.033286, 38.261192], [-77.033111, 38.261194], [-77.033034, 38.261196], [-77.032987, 38.261197], [-77.03297, 38.261198], [-77.032779, 38.261221], [-77.032716, 38.261229], [-77.032525, 38.261359], [-77.032577, 38.261419], [-77.032573, 38.261434], [-77.032517, 38.261414], [-77.032508, 38.261473], [-77.032489, 38.261601], [-77.032593, 38.261953], [-77.032626, 38.262031], [-77.032686, 38.262171], [-77.032701, 38.262207], [-77.032698, 38.262267], [-77.032691, 38.262448], [-77.032689, 38.262509], [-77.032628, 38.262586], [-77.032448, 38.262817], [-77.032388, 38.262895], [-77.032379, 38.262906], [-77.032368, 38.262921], [-77.032355, 38.262943], [-77.032349, 38.262957], [-77.032326, 38.263], [-77.032279, 38.263088], [-77.03221, 38.263218], [-77.032269, 38.263474], [-77.032289, 38.263562], [-77.03235, 38.263647], [-77.032469, 38.263813], [-77.032618, 38.263759], [-77.03285, 38.263774], [-77.033109, 38.263826], [-77.03341, 38.26387], [-77.033722, 38.264185], [-77.033646, 38.264435], [-77.033486, 38.264548], [-77.032974, 38.264913], [-77.032842, 38.264951], [-77.032781, 38.264993], [-77.032451, 38.265222], [-77.032025, 38.265244], [-77.031761, 38.265303], [-77.031392, 38.265417], [-77.031003, 38.265607], [-77.029593, 38.26609], [-77.029426, 38.266112], [-77.02936, 38.266149], [-77.029325, 38.266199], [-77.029222, 38.266348], [-77.029188, 38.266399], [-77.029095, 38.266492], [-77.029073, 38.266516], [-77.028997, 38.266836], [-77.028997, 38.267836], [-77.028797, 38.268136], [-77.028197, 38.268536], [-77.027777, 38.268619], [-77.027697, 38.268636], [-77.027079, 38.268527], [-77.026697, 38.268336], [-77.025697, 38.268536], [-77.025593, 38.268587], [-77.025297, 38.268736], [-77.025239, 38.268748], [-77.024855, 38.268824], [-77.024797, 38.268836], [-77.023997, 38.268836], [-77.023697, 38.268736], [-77.023397, 38.268736], [-77.023197, 38.268636], [-77.022897, 38.268636], [-77.022497, 38.268736], [-77.022319, 38.268824], [-77.022297, 38.268836], [-77.021797, 38.269336], [-77.021597, 38.269436], [-77.021518, 38.269488], [-77.021297, 38.269636], [-77.020997, 38.269636], [-77.020697, 38.269736], [-77.019897, 38.269736], [-77.019297, 38.269836], [-77.018597, 38.269836], [-77.018435, 38.269816], [-77.017797, 38.269736], [-77.017397, 38.269536], [-77.017097, 38.269436], [-77.016297, 38.269236], [-77.015897, 38.269336], [-77.014897, 38.269336], [-77.014551, 38.269422], [-77.014497, 38.269436], [-77.014197, 38.269636], [-77.013997, 38.269736], [-77.013941, 38.269903], [-77.013897, 38.270036], [-77.013997, 38.270236], [-77.013997, 38.270636], [-77.013897, 38.271036], [-77.013886, 38.271062], [-77.013698, 38.271533], [-77.013697, 38.271536], [-77.013597, 38.271736], [-77.013397, 38.271936], [-77.012897, 38.272036], [-77.012497, 38.272236], [-77.011597, 38.272236], [-77.011197, 38.272336], [-77.010597, 38.272536], [-77.010576, 38.272544], [-77.010097, 38.272736], [-77.009497, 38.272936], [-77.009197, 38.273136], [-77.008797, 38.273336], [-77.008297, 38.273836], [-77.007697, 38.274636], [-77.007525, 38.275151], [-77.007497, 38.275236], [-77.007397, 38.275736], [-77.007397, 38.276036], [-77.007497, 38.276436], [-77.007526, 38.276522], [-77.007597, 38.276736], [-77.007597, 38.277136], [-77.007397, 38.277336], [-77.007364, 38.277352], [-77.007197, 38.277436], [-77.006397, 38.277436], [-77.006097, 38.277536], [-77.005997, 38.277436], [-77.005697, 38.277436], [-77.005397, 38.277236], [-77.005097, 38.277136], [-77.004897, 38.277036], [-77.004297, 38.276436], [-77.004098, 38.276235], [-77.003966, 38.276137], [-77.003697, 38.275936], [-77.003551, 38.275888], [-77.003396, 38.275837], [-77.00325, 38.275836], [-77.003097, 38.275836], [-77.003029, 38.275822], [-77.002818, 38.27578], [-77.002675, 38.275752], [-77.002621, 38.275741], [-77.002597, 38.275736], [-77.002462, 38.275769], [-77.002409, 38.275783], [-77.002221, 38.275829], [-77.002197, 38.275836], [-77.001897, 38.275936], [-77.001671, 38.276011], [-77.001597, 38.276036], [-77.001486, 38.276064], [-77.00138, 38.27609], [-77.001197, 38.276136], [-77.00095, 38.276136], [-77.000695, 38.276232], [-77.000329, 38.276371], [-76.999956, 38.276573], [-76.99988, 38.276615], [-76.999697, 38.276644], [-76.997672, 38.278054], [-76.999697, 38.279349], [-76.999987, 38.279515], [-77.00086, 38.280015], [-77.001152, 38.280182], [-77.001269, 38.280345], [-77.001304, 38.280393], [-77.001499, 38.280714], [-77.001541, 38.280843], [-77.001537, 38.280876], [-77.001519, 38.281077], [-77.001533, 38.281438], [-77.001544, 38.281488], [-77.001605, 38.281751], [-77.00177, 38.281927], [-77.002415, 38.282262], [-77.002782, 38.282453], [-77.004528, 38.284919], [-77.005169, 38.285606], [-77.005415, 38.28587], [-77.006179, 38.286692], [-77.008711, 38.288969], [-77.009505, 38.290864], [-77.010666, 38.292775], [-77.012838, 38.294377], [-77.013879, 38.29539], [-77.014592, 38.296084], [-77.016451, 38.298845], [-77.016891, 38.299195], [-77.018296, 38.300311], [-77.018519, 38.300382], [-77.021027, 38.301188], [-77.02351, 38.301463], [-77.025355, 38.302817], [-77.025594, 38.303076], [-77.027007, 38.304613], [-77.027425, 38.304895], [-77.028133, 38.305325], [-77.028215, 38.305843], [-77.028508, 38.306699], [-77.028541, 38.307125], [-77.028504, 38.308098], [-77.028415, 38.308758], [-77.028335, 38.309301], [-77.028459, 38.309554], [-77.028708, 38.310397], [-77.028739, 38.310888], [-77.028767, 38.31139], [-77.028914, 38.311521], [-77.028975, 38.311541], [-77.02906, 38.31157], [-77.029185, 38.311558], [-77.029312, 38.311546], [-77.029489, 38.311531], [-77.029626, 38.311374], [-77.029711, 38.311278], [-77.029908, 38.311342], [-77.030418, 38.31151], [-77.030495, 38.311544], [-77.030685, 38.31163], [-77.03047, 38.311909], [-77.029826, 38.312748], [-77.029612, 38.313028], [-77.02859, 38.314361], [-77.027567, 38.315695], [-77.026973, 38.316469], [-77.02615, 38.317542], [-77.024734, 38.31939], [-77.024456, 38.319751], [-77.021691, 38.323359], [-77.019057, 38.326792], [-77.018647, 38.327328], [-77.016419, 38.330234], [-77.016094, 38.330662], [-77.015122, 38.331946], [-77.014798, 38.332375], [-77.014745, 38.332424], [-77.014586, 38.332575], [-77.014534, 38.332625], [-77.014529, 38.332642], [-77.014516, 38.332697], [-77.014512, 38.332715], [-77.014403, 38.33318], [-77.01468, 38.333509], [-77.014957, 38.33391], [-77.015061, 38.334175], [-77.015068, 38.33432], [-77.015072, 38.334392], [-77.015055, 38.335253], [-77.014801, 38.335704], [-77.014376, 38.336525], [-77.014337, 38.337047], [-77.01435, 38.337731], [-77.014852, 38.338188], [-77.015468, 38.338717], [-77.015717, 38.339033], [-77.016125, 38.339551], [-77.016383, 38.340009], [-77.016499, 38.340639], [-77.016539, 38.340853], [-77.016786, 38.341627], [-77.016809, 38.341696], [-77.01671, 38.342436], [-77.016693, 38.343353], [-77.016453, 38.344615], [-77.016417, 38.344677], [-77.015904, 38.345571], [-77.01579, 38.346832], [-77.015739, 38.347407], [-77.015531, 38.350622], [-77.01545, 38.351886], [-77.015137, 38.35282], [-77.014972, 38.353248], [-77.014844, 38.353584], [-77.01465, 38.354051], [-77.014694, 38.354469], [-77.014718, 38.355313], [-77.014771, 38.355916], [-77.014855, 38.356246], [-77.014838, 38.357138], [-77.014801, 38.357501], [-77.01469, 38.358594], [-77.014656, 38.358938], [-77.014645, 38.359041], [-77.014615, 38.359352], [-77.014605, 38.359456], [-77.014603, 38.359478], [-77.0146, 38.359546], [-77.0146, 38.359569], [-77.014559, 38.36027], [-77.014537, 38.360659], [-77.014602, 38.361397], [-77.014473, 38.362225], [-77.0145, 38.362364], [-77.014576, 38.362748], [-77.014598, 38.363059], [-77.01461, 38.36323], [-77.014787, 38.363856], [-77.014832, 38.36503], [-77.014949, 38.365809], [-77.014989, 38.365937], [-77.015094, 38.366275], [-77.015088, 38.367087], [-77.015172, 38.367674], [-77.015493, 38.368469], [-77.01572, 38.369007], [-77.015834, 38.369288], [-77.015913, 38.371032], [-77.01568, 38.371306], [-77.015538, 38.371547], [-77.015274, 38.372046], [-77.014582, 38.372747], [-77.013747, 38.373352], [-77.013494, 38.373492], [-77.013053, 38.373739], [-77.01189, 38.374345], [-77.011656, 38.374394], [-77.011466, 38.374433], [-77.011508, 38.374569], [-77.011995, 38.374771], [-77.012024, 38.374788], [-77.012112, 38.374841], [-77.012142, 38.374859], [-77.012134, 38.374913], [-77.012112, 38.375077], [-77.012105, 38.375132], [-77.012328, 38.375488], [-77.012335, 38.375494], [-77.013356, 38.376411], [-77.013835, 38.37696], [-77.013888, 38.377018], [-77.01464, 38.377842], [-77.015016, 38.378472], [-77.015698, 38.379111], [-77.017655, 38.38106], [-77.018021, 38.381609], [-77.0185, 38.381949], [-77.019358, 38.382339], [-77.019442, 38.382382], [-77.021103, 38.383224], [-77.021368, 38.383515], [-77.021654, 38.383725], [-77.021743, 38.383879], [-77.021766, 38.383919], [-77.021888, 38.384057], [-77.021959, 38.384162], [-77.022122, 38.384235], [-77.022286, 38.384308], [-77.022602, 38.384511], [-77.02305, 38.385047], [-77.024221, 38.38645], [-77.025188, 38.38746], [-77.025932, 38.388237], [-77.026473, 38.388634], [-77.026761, 38.38874], [-77.027351, 38.388959], [-77.028107, 38.389309], [-77.028984, 38.3899], [-77.029296, 38.390178], [-77.030027, 38.39083], [-77.031124, 38.391809], [-77.031544, 38.392053], [-77.032114, 38.392722], [-77.032277, 38.39287], [-77.033735, 38.394195], [-77.034551, 38.39489], [-77.036559, 38.396743], [-77.037477, 38.397527], [-77.039168, 38.398912], [-77.039344, 38.399057], [-77.040914, 38.400311], [-77.041507, 38.4007], [-77.041612, 38.400733], [-77.042016, 38.40086], [-77.042284, 38.400945], [-77.043272, 38.401004], [-77.043696, 38.40103], [-77.044679, 38.400736], [-77.045253, 38.4005], [-77.046001, 38.400193], [-77.047476, 38.399714], [-77.04846, 38.399436], [-77.049218, 38.399282], [-77.049822, 38.399159], [-77.049989, 38.399189], [-77.050629, 38.399307], [-77.051622, 38.399222], [-77.053422, 38.398821], [-77.056785, 38.396208], [-77.057181, 38.395751], [-77.058708, 38.393994], [-77.061231, 38.388869], [-77.068198, 38.380926], [-77.069179, 38.379771], [-77.070552, 38.378159], [-77.074002, 38.375132], [-77.074652, 38.374393], [-77.075467, 38.373852], [-77.076892, 38.372771], [-77.078176, 38.372012], [-77.078874, 38.371613], [-77.081376, 38.370186], [-77.084058, 38.369109], [-77.08424, 38.368747], [-77.08668, 38.367936], [-77.090091, 38.367283], [-77.091563, 38.367351], [-77.093536, 38.367305], [-77.093706, 38.367391], [-77.094438, 38.36776], [-77.095855, 38.368123], [-77.096823, 38.368372], [-77.098124, 38.368834], [-77.101723, 38.369537], [-77.103863, 38.369733], [-77.104061, 38.369737], [-77.104876, 38.369754], [-77.106318, 38.36975], [-77.107288, 38.369731], [-77.107994, 38.369672], [-77.108872, 38.369549], [-77.109669, 38.369426], [-77.110619, 38.369294], [-77.111069, 38.369236], [-77.111834, 38.369138], [-77.112457, 38.369039], [-77.113213, 38.368876], [-77.113383, 38.368845], [-77.113743, 38.368778], [-77.113772, 38.368771], [-77.114183, 38.36868], [-77.114907, 38.368525], [-77.115039, 38.368525], [-77.115326, 38.368475], [-77.116184, 38.368328], [-77.116685, 38.368319], [-77.117105, 38.368086], [-77.117255, 38.368003], [-77.117755, 38.367833], [-77.119205, 38.367595], [-77.120819, 38.367301], [-77.122559, 38.367162], [-77.123863, 38.367058], [-77.124405, 38.367008], [-77.124701, 38.366768], [-77.127097, 38.367232], [-77.128858, 38.36725], [-77.130149, 38.367406], [-77.133282, 38.367846], [-77.134275, 38.367923], [-77.137736, 38.368031], [-77.138226, 38.367924], [-77.138698, 38.367755], [-77.13918, 38.367583], [-77.13994, 38.366945], [-77.140325, 38.366623], [-77.143287, 38.363738], [-77.143827, 38.363236], [-77.144744, 38.362402], [-77.145514, 38.361705], [-77.145771, 38.361471], [-77.146217, 38.360841], [-77.148827, 38.357478], [-77.149263, 38.356864], [-77.151386, 38.354486], [-77.155193, 38.351054], [-77.15742, 38.349269], [-77.158369, 38.34851], [-77.158518, 38.348418], [-77.16159, 38.346515], [-77.162594, 38.346047], [-77.162614, 38.346037], [-77.162673, 38.34601], [-77.162694, 38.346001], [-77.163221, 38.345831], [-77.164222, 38.345646], [-77.164745, 38.345551], [-77.167485, 38.345298], [-77.168898, 38.345061], [-77.169017, 38.345042], [-77.169733, 38.344922], [-77.170449, 38.344803], [-77.176063, 38.342983], [-77.179341, 38.341922], [-77.182729, 38.342013], [-77.190497, 38.341045], [-77.193539, 38.341123], [-77.194166, 38.34114], [-77.194497, 38.341149], [-77.199435, 38.340897], [-77.199439, 38.340896], [-77.199459, 38.340896], [-77.199865, 38.340876], [-77.200041, 38.340901], [-77.201778, 38.341151], [-77.202357, 38.341235], [-77.202467, 38.341251], [-77.204157, 38.341139], [-77.204696, 38.341104], [-77.206839, 38.340212], [-77.207022, 38.340136], [-77.208066, 38.34018], [-77.209293, 38.340166], [-77.209374, 38.340144], [-77.210764, 38.339784], [-77.211122, 38.339691], [-77.214676, 38.338797], [-77.21595, 38.33829], [-77.217524, 38.337665], [-77.218573, 38.337248], [-77.221653, 38.336784], [-77.22172, 38.336774], [-77.226229, 38.33536], [-77.228759, 38.334567], [-77.230405, 38.33405], [-77.23131, 38.333767], [-77.233104, 38.333204], [-77.234743, 38.332689], [-77.2349, 38.332641], [-77.23506, 38.332591], [-77.23521, 38.332544], [-77.236435, 38.332307], [-77.240073, 38.331605], [-77.240114, 38.331604], [-77.241079, 38.331595], [-77.24125, 38.331593], [-77.241363, 38.331592], [-77.243031, 38.331574], [-77.247151, 38.331531], [-77.248035, 38.331566], [-77.249703, 38.331632], [-77.250473, 38.331702], [-77.258009, 38.332387], [-77.265297, 38.333172], [-77.266885, 38.333835], [-77.267217, 38.333974], [-77.267547, 38.334112], [-77.271409, 38.335923], [-77.276583, 38.337889], [-77.277053, 38.338478], [-77.277798, 38.338943], [-77.277994, 38.339066], [-77.283035, 38.342805], [-77.283798, 38.342863], [-77.284125, 38.343427], [-77.286204, 38.347032], [-77.286504, 38.347032], [-77.286704, 38.347132], [-77.286904, 38.347132], [-77.287204, 38.347332], [-77.287504, 38.347432], [-77.287804, 38.347632], [-77.288204, 38.348032], [-77.289204, 38.348532], [-77.289504, 38.348532], [-77.289565, 38.348552], [-77.289804, 38.348632], [-77.291304, 38.348632], [-77.292304, 38.348432], [-77.292804, 38.348232], [-77.293304, 38.348132], [-77.293504, 38.348032], [-77.293649, 38.347959], [-77.293704, 38.347932], [-77.293804, 38.347932], [-77.294204, 38.347732], [-77.294804, 38.347532], [-77.295304, 38.347332], [-77.296204, 38.347132], [-77.296417, 38.347047], [-77.296705, 38.346933], [-77.297105, 38.346833], [-77.297605, 38.346633], [-77.298005, 38.346533], [-77.298505, 38.346433], [-77.299205, 38.346433], [-77.299806, 38.346333], [-77.300905, 38.346333], [-77.301505, 38.346433], [-77.302105, 38.346433], [-77.302405, 38.346531], [-77.302601, 38.346532], [-77.302605, 38.346533], [-77.302805, 38.346633], [-77.303105, 38.346733], [-77.303151, 38.346742], [-77.303345, 38.346781], [-77.303605, 38.346833], [-77.304505, 38.346833], [-77.305005, 38.346933], [-77.305405, 38.346833], [-77.305605, 38.346833], [-77.305905, 38.346733], [-77.305908, 38.34673], [-77.306305, 38.346433], [-77.306505, 38.346233], [-77.306805, 38.346033], [-77.307206, 38.345833], [-77.307342, 38.34573], [-77.307606, 38.345533], [-77.308206, 38.345333], [-77.308606, 38.345234], [-77.309806, 38.344834], [-77.310206, 38.344734], [-77.310466, 38.344681], [-77.310706, 38.344634], [-77.311306, 38.344634], [-77.311906, 38.344534], [-77.312406, 38.344434], [-77.312706, 38.344434], [-77.312906, 38.344334], [-77.313106, 38.344334], [-77.313306, 38.344434], [-77.314306, 38.344634], [-77.314606, 38.344834], [-77.315006, 38.344934], [-77.315406, 38.345134], [-77.315706, 38.345234], [-77.316105, 38.345533], [-77.316305, 38.345733], [-77.316605, 38.345733], [-77.317005, 38.345833], [-77.317205, 38.345933], [-77.317405, 38.345933], [-77.317605, 38.346033], [-77.318105, 38.346033], [-77.318605, 38.345933], [-77.319605, 38.345933], [-77.320005, 38.345733], [-77.320505, 38.345533], [-77.320905, 38.345433], [-77.321105, 38.345333], [-77.321405, 38.345234], [-77.32144, 38.343817], [-77.321546, 38.339566], [-77.321582, 38.33815], [-77.321599, 38.33813], [-77.32165, 38.338074], [-77.321668, 38.338055], [-77.321751, 38.337965], [-77.321764, 38.337962], [-77.322164, 38.337881], [-77.322298, 38.337854], [-77.322451, 38.337823], [-77.322562, 38.337801], [-77.322881, 38.337641], [-77.323022, 38.337572], [-77.323111, 38.337515], [-77.323138, 38.337498], [-77.323413, 38.337422], [-77.323442, 38.337415], [-77.323518, 38.337412], [-77.32359, 38.337408], [-77.323808, 38.337399], [-77.323881, 38.337396], [-77.324051, 38.3374], [-77.324111, 38.337402], [-77.324339, 38.337343], [-77.324396, 38.337358], [-77.324549, 38.337321], [-77.324672, 38.337292], [-77.324713, 38.337275], [-77.324755, 38.337257], [-77.324775, 38.337241], [-77.324943, 38.337109], [-77.325, 38.337066], [-77.325171, 38.336964], [-77.325303, 38.336939], [-77.325568, 38.336939], [-77.325755, 38.336908], [-77.325831, 38.336885], [-77.326131, 38.336681], [-77.32631, 38.336595], [-77.326658, 38.336572], [-77.327006, 38.336522], [-77.327067, 38.336514], [-77.327522, 38.336393], [-77.327648, 38.33636], [-77.327806, 38.3363], [-77.327958, 38.336244], [-77.328184, 38.336102], [-77.328446, 38.335778], [-77.328489, 38.335744], [-77.328726, 38.33556], [-77.328779, 38.335519], [-77.329054, 38.335398], [-77.329062, 38.335395], [-77.329641, 38.335227], [-77.329799, 38.335152], [-77.330069, 38.335087], [-77.330138, 38.335059], [-77.330386, 38.334959], [-77.330467, 38.334886], [-77.33047, 38.334761], [-77.330474, 38.334661], [-77.330435, 38.334541], [-77.330435, 38.334392], [-77.330436, 38.334332], [-77.33045, 38.334269], [-77.330466, 38.334194], [-77.330544, 38.334017], [-77.330549, 38.333946], [-77.330559, 38.333836], [-77.330503, 38.333381], [-77.330456, 38.333211], [-77.33032, 38.33297], [-77.330248, 38.332842], [-77.330127, 38.332691], [-77.330045, 38.332588], [-77.329894, 38.332443], [-77.329647, 38.332151], [-77.329282, 38.33185], [-77.329036, 38.331575], [-77.328924, 38.331336], [-77.328816, 38.331025], [-77.328689, 38.330753], [-77.328647, 38.330539], [-77.328473, 38.330109], [-77.328196, 38.329499], [-77.328166, 38.329408], [-77.328117, 38.329263], [-77.32788, 38.328808], [-77.327804, 38.328612], [-77.327784, 38.328524], [-77.327771, 38.328468], [-77.327735, 38.328179], [-77.327758, 38.328036], [-77.327851, 38.327798], [-77.327961, 38.327516], [-77.327997, 38.327427], [-77.328026, 38.327239], [-77.328183, 38.326934], [-77.328267, 38.326713], [-77.328268, 38.326672], [-77.32828, 38.32637], [-77.328282, 38.326312], [-77.328236, 38.326197], [-77.328126, 38.326116], [-77.327915, 38.325962], [-77.327792, 38.325827], [-77.327723, 38.325631], [-77.32759, 38.32536], [-77.327537, 38.32525], [-77.327487, 38.325061], [-77.327481, 38.325037], [-77.327462, 38.324657], [-77.327462, 38.324653], [-77.327477, 38.324465], [-77.327576, 38.324063], [-77.327666, 38.32383], [-77.327642, 38.323512], [-77.327645, 38.323475], [-77.327668, 38.323259], [-77.327655, 38.323073], [-77.327636, 38.322796], [-77.327604, 38.322326], [-77.327635, 38.321967], [-77.327659, 38.321691], [-77.32766, 38.321677], [-77.327624, 38.321435], [-77.327606, 38.321315], [-77.327588, 38.320964], [-77.327518, 38.320746], [-77.327508, 38.320675], [-77.32749, 38.320532], [-77.327432, 38.320435], [-77.327451, 38.320385], [-77.327399, 38.320269], [-77.32718, 38.319776], [-77.327107, 38.319612], [-77.32709, 38.319573], [-77.327061, 38.319399], [-77.327053, 38.319346], [-77.327038, 38.31925], [-77.327041, 38.31913], [-77.327063, 38.319], [-77.327088, 38.318854], [-77.327329, 38.318322], [-77.327481, 38.318046], [-77.327547, 38.317928], [-77.327702, 38.317782], [-77.327903, 38.31775], [-77.327993, 38.31771], [-77.328061, 38.317654], [-77.328313, 38.317372], [-77.328458, 38.317212], [-77.328675, 38.317032], [-77.32884, 38.316941], [-77.329179, 38.316884], [-77.329309, 38.316788], [-77.329531, 38.316548], [-77.329703, 38.316473], [-77.329849, 38.316443], [-77.329986, 38.316391], [-77.330184, 38.316266], [-77.330236, 38.316219], [-77.330517, 38.315974], [-77.330797, 38.315787], [-77.330829, 38.315776], [-77.330854, 38.315774], [-77.330869, 38.315762], [-77.330925, 38.315742], [-77.331066, 38.315693], [-77.33115, 38.315673], [-77.331227, 38.315656], [-77.331335, 38.315631], [-77.331619, 38.315567], [-77.331657, 38.315552], [-77.331762, 38.315515], [-77.331778, 38.315509], [-77.332045, 38.315366], [-77.33218, 38.31527], [-77.332277, 38.315202], [-77.332771, 38.314753], [-77.333337, 38.314393], [-77.333468, 38.314311], [-77.333611, 38.314193], [-77.333685, 38.314068], [-77.333763, 38.313937], [-77.33393, 38.313795], [-77.334075, 38.313673], [-77.334121, 38.313578], [-77.334269, 38.313411], [-77.334419, 38.3131], [-77.334555, 38.312971], [-77.334589, 38.312917], [-77.334761, 38.312648], [-77.334782, 38.3126], [-77.334794, 38.312571], [-77.334832, 38.312488], [-77.334845, 38.31246], [-77.33483, 38.312304], [-77.334813, 38.312114], [-77.334751, 38.311843], [-77.33474, 38.311792], [-77.334688, 38.311702], [-77.334526, 38.311423], [-77.334503, 38.311359], [-77.334388, 38.31103], [-77.334232, 38.31072], [-77.334094, 38.310267], [-77.334083, 38.310228], [-77.334055, 38.30988], [-77.334052, 38.309856], [-77.334046, 38.309787], [-77.334045, 38.309764], [-77.334037, 38.309664], [-77.333953, 38.30944], [-77.333938, 38.309313], [-77.333926, 38.309198], [-77.333912, 38.309071], [-77.333904, 38.308996], [-77.33392, 38.30882], [-77.333896, 38.308733], [-77.333876, 38.308697], [-77.333815, 38.308586], [-77.333804, 38.308537], [-77.333782, 38.308433], [-77.333762, 38.308396], [-77.33374, 38.308353], [-77.333663, 38.308208], [-77.333626, 38.308139], [-77.333599, 38.307727], [-77.333598, 38.307711], [-77.333538, 38.307577], [-77.333872, 38.307125], [-77.333921, 38.307061], [-77.334659, 38.306344], [-77.334933, 38.305838], [-77.334933, 38.305837], [-77.335305, 38.305415], [-77.335504, 38.30457], [-77.335385, 38.304277], [-77.33542, 38.303947], [-77.33605, 38.302658], [-77.336193, 38.302368], [-77.336503, 38.302507], [-77.337082, 38.302781], [-77.337667, 38.303006], [-77.338225, 38.303165], [-77.338706, 38.303099], [-77.339012, 38.302968], [-77.33927, 38.302731], [-77.339346, 38.302374], [-77.339395, 38.301507], [-77.33945, 38.301024], [-77.339791, 38.300145], [-77.339659, 38.299667], [-77.339554, 38.299475], [-77.339429, 38.299321], [-77.339038, 38.299041], [-77.338906, 38.298888], [-77.338899, 38.29875], [-77.338906, 38.298673], [-77.338912, 38.298552], [-77.338913, 38.298542], [-77.339045, 38.298388], [-77.339031, 38.298344], [-77.339115, 38.297976], [-77.339267, 38.297403], [-77.339372, 38.297015], [-77.339393, 38.296795], [-77.33949, 38.296433], [-77.339817, 38.295439], [-77.339887, 38.295148], [-77.340151, 38.294496], [-77.340221, 38.294324], [-77.340409, 38.293934], [-77.340472, 38.293542], [-77.340485, 38.293462], [-77.340476, 38.293444], [-77.34043, 38.293347], [-77.340418, 38.293153], [-77.340416, 38.293116], [-77.340383, 38.293062], [-77.34036, 38.293023], [-77.34032, 38.292884], [-77.340318, 38.292875], [-77.340346, 38.292809], [-77.340004, 38.292461], [-77.339941, 38.292397], [-77.339881, 38.292319], [-77.33975, 38.292147], [-77.339656, 38.292024], [-77.339551, 38.291826], [-77.339586, 38.29159], [-77.339585, 38.29156], [-77.33958, 38.291345], [-77.339579, 38.291304], [-77.339574, 38.291286], [-77.339526, 38.291116], [-77.339511, 38.29106], [-77.339488, 38.29098], [-77.339379, 38.29072], [-77.339216, 38.290327], [-77.339153, 38.290069], [-77.339111, 38.289706], [-77.339116, 38.28967], [-77.33916, 38.28936], [-77.339132, 38.289317], [-77.339142, 38.289212], [-77.339176, 38.288899], [-77.339187, 38.288795], [-77.339153, 38.288745], [-77.33918, 38.288543], [-77.339278, 38.287823], [-77.33929, 38.287758], [-77.339343, 38.2875], [-77.339361, 38.287411], [-77.339389, 38.287093], [-77.339493, 38.286824], [-77.339626, 38.286483], [-77.339716, 38.286192], [-77.339804, 38.285867], [-77.339994, 38.285171], [-77.340073, 38.284816], [-77.340147, 38.28449], [-77.340273, 38.284149], [-77.340321, 38.284023], [-77.340419, 38.283891], [-77.340572, 38.28354], [-77.340593, 38.283435], [-77.340582, 38.28334], [-77.340565, 38.283188], [-77.340586, 38.283133], [-77.340655, 38.283084], [-77.340829, 38.283128], [-77.340906, 38.283128], [-77.340983, 38.283073], [-77.341031, 38.283012], [-77.341052, 38.282935], [-77.341052, 38.282826], [-77.341, 38.282679], [-77.340982, 38.282628], [-77.341038, 38.282535], [-77.341407, 38.282276], [-77.341547, 38.282112], [-77.341769, 38.281716], [-77.342298, 38.281156], [-77.342619, 38.280771], [-77.342786, 38.280618], [-77.342946, 38.280574], [-77.343161, 38.280429], [-77.343225, 38.280387], [-77.343406, 38.280228], [-77.343566, 38.280046], [-77.343691, 38.279755], [-77.34374, 38.279569], [-77.34374, 38.279459], [-77.343678, 38.279254], [-77.343655, 38.279177], [-77.343607, 38.279019], [-77.343595, 38.278919], [-77.343593, 38.278893], [-77.343468, 38.278635], [-77.343433, 38.278509], [-77.343454, 38.27835], [-77.343514, 38.278167], [-77.343586, 38.277954], [-77.343592, 38.277914], [-77.343606, 38.277808], [-77.343621, 38.277707], [-77.343676, 38.277499], [-77.34369, 38.277449], [-77.343713, 38.2774], [-77.343941, 38.276905], [-77.344108, 38.276625], [-77.344324, 38.276307], [-77.344386, 38.27624], [-77.344658, 38.27595], [-77.344985, 38.275713], [-77.345688, 38.275384], [-77.34603, 38.275126], [-77.346211, 38.274961], [-77.3466, 38.274554], [-77.346754, 38.27428], [-77.346809, 38.274109], [-77.346976, 38.273753], [-77.347011, 38.273511], [-77.347053, 38.273425], [-77.347317, 38.272896], [-77.347463, 38.272462], [-77.347463, 38.272385], [-77.347561, 38.272187], [-77.347484, 38.271479], [-77.347344, 38.271007], [-77.347315, 38.270967], [-77.347184, 38.270782], [-77.346933, 38.270529], [-77.346675, 38.27031], [-77.346584, 38.270255], [-77.34648, 38.270227], [-77.346299, 38.270118], [-77.346006, 38.269821], [-77.345616, 38.269558], [-77.345372, 38.269475], [-77.345191, 38.269432], [-77.344989, 38.269349], [-77.344404, 38.269256], [-77.344167, 38.269152], [-77.344158, 38.269145], [-77.343909, 38.26896], [-77.343707, 38.268746], [-77.343533, 38.268509], [-77.343366, 38.268197], [-77.343361, 38.268118], [-77.343359, 38.268076], [-77.343314, 38.267888], [-77.343297, 38.267812], [-77.343273, 38.267712], [-77.343268, 38.267691], [-77.343255, 38.267476], [-77.343247, 38.267334], [-77.343259, 38.267305], [-77.343285, 38.267243], [-77.343351, 38.267087], [-77.343353, 38.267055], [-77.34336, 38.266989], [-77.343365, 38.266928], [-77.343253, 38.266675], [-77.343225, 38.266561], [-77.343212, 38.266505], [-77.34319, 38.266176], [-77.343281, 38.265879], [-77.343406, 38.26561], [-77.343385, 38.26555], [-77.34342, 38.265445], [-77.343455, 38.265385], [-77.343545, 38.265303], [-77.343548, 38.265301], [-77.343754, 38.265198], [-77.343803, 38.265149], [-77.343888, 38.265018], [-77.343907, 38.264989], [-77.344054, 38.264837], [-77.344137, 38.264753], [-77.3442, 38.26466], [-77.344234, 38.264429], [-77.3442, 38.26432], [-77.34422, 38.264161], [-77.344241, 38.264001], [-77.344234, 38.263952], [-77.344212, 38.263925], [-77.344165, 38.263869], [-77.344137, 38.263748], [-77.344166, 38.263578], [-77.344171, 38.263556], [-77.344311, 38.263353], [-77.344673, 38.263051], [-77.344805, 38.262881], [-77.344867, 38.262744], [-77.345007, 38.262441], [-77.345016, 38.262407], [-77.345055, 38.262249], [-77.345139, 38.262178], [-77.345355, 38.262095], [-77.345417, 38.262035], [-77.345466, 38.261914], [-77.345466, 38.261859], [-77.345431, 38.261777], [-77.345445, 38.261711], [-77.34564, 38.261513], [-77.34573, 38.261398], [-77.345626, 38.261206], [-77.345528, 38.261107], [-77.345173, 38.260981], [-77.345034, 38.260887], [-77.344894, 38.260706], [-77.344769, 38.260596], [-77.34456, 38.26052], [-77.344268, 38.260509], [-77.344114, 38.26052], [-77.343355, 38.260646], [-77.343216, 38.260685], [-77.343139, 38.260729], [-77.343014, 38.260844], [-77.342944, 38.260866], [-77.342777, 38.26074], [-77.342513, 38.260894], [-77.342311, 38.260877], [-77.342185, 38.260921], [-77.342123, 38.260916], [-77.341949, 38.260762], [-77.341823, 38.260767], [-77.341628, 38.260839], [-77.341434, 38.260669], [-77.341429, 38.260666], [-77.341362, 38.260608], [-77.341202, 38.260557], [-77.341189, 38.260553], [-77.340939, 38.260542], [-77.340841, 38.260515], [-77.340771, 38.260466], [-77.340702, 38.260378], [-77.340674, 38.260273], [-77.340695, 38.260175], [-77.340715, 38.26014], [-77.340827, 38.259938], [-77.340834, 38.259768], [-77.340792, 38.259598], [-77.340687, 38.259488], [-77.340374, 38.259219], [-77.340269, 38.259159], [-77.340158, 38.259126], [-77.339859, 38.259071], [-77.339712, 38.259082], [-77.339532, 38.259125], [-77.339462, 38.259143], [-77.339037, 38.259296], [-77.338661, 38.259329], [-77.338424, 38.259302], [-77.338285, 38.259253], [-77.338187, 38.259203], [-77.337936, 38.259006], [-77.337902, 38.25889], [-77.337734, 38.258544], [-77.337665, 38.258457], [-77.337574, 38.258396], [-77.337511, 38.258303], [-77.337483, 38.25822], [-77.33749, 38.258111], [-77.337532, 38.258034], [-77.337539, 38.257924], [-77.337504, 38.257853], [-77.337434, 38.25777], [-77.337302, 38.257677], [-77.336717, 38.257408], [-77.336494, 38.257199], [-77.336362, 38.25693], [-77.336376, 38.256667], [-77.336306, 38.25659], [-77.336181, 38.256535], [-77.336062, 38.256425], [-77.335986, 38.256403], [-77.335895, 38.256359], [-77.335777, 38.256249], [-77.335568, 38.2562], [-77.335324, 38.256077], [-77.335317, 38.256074], [-77.335052, 38.256112], [-77.334899, 38.256145], [-77.334823, 38.256195], [-77.334676, 38.256211], [-77.334565, 38.256206], [-77.334029, 38.256052], [-77.333973, 38.256019], [-77.333847, 38.255992], [-77.333792, 38.255997], [-77.333736, 38.25597], [-77.333687, 38.255937], [-77.333652, 38.255767], [-77.333607, 38.255645], [-77.333597, 38.255618], [-77.333589, 38.255612], [-77.333501, 38.255539], [-77.333472, 38.255515], [-77.33343, 38.255481], [-77.333332, 38.255432], [-77.333318, 38.255344], [-77.333402, 38.255168], [-77.333395, 38.255091], [-77.333325, 38.254982], [-77.333311, 38.254899], [-77.333249, 38.254846], [-77.333241, 38.254839], [-77.333186, 38.254756], [-77.332879, 38.254548], [-77.332621, 38.254504], [-77.332524, 38.254465], [-77.331946, 38.254389], [-77.331834, 38.254339], [-77.331528, 38.254301], [-77.331382, 38.254257], [-77.330937, 38.254262], [-77.330915, 38.254263], [-77.330811, 38.254257], [-77.330692, 38.254219], [-77.330351, 38.254015], [-77.330213, 38.253915], [-77.330163, 38.253879], [-77.330079, 38.253818], [-77.330048, 38.253744], [-77.330038, 38.253719], [-77.330047, 38.253686], [-77.330078, 38.253575], [-77.330086, 38.253549], [-77.330051, 38.253483], [-77.329975, 38.253412], [-77.329844, 38.253362], [-77.329843, 38.253362], [-77.32973, 38.253371], [-77.329641, 38.253377], [-77.32955, 38.253384], [-77.329285, 38.253384], [-77.32923, 38.253368], [-77.328868, 38.253082], [-77.328805, 38.252983], [-77.328763, 38.252841], [-77.3287, 38.252808], [-77.328652, 38.252753], [-77.328582, 38.25272], [-77.328498, 38.252681], [-77.328338, 38.252555], [-77.328255, 38.252445], [-77.32779, 38.252123], [-77.327697, 38.251973], [-77.327672, 38.251739], [-77.327859, 38.251556], [-77.328044, 38.251317], [-77.328035, 38.251041], [-77.327848, 38.250673], [-77.32762, 38.250139], [-77.32768, 38.249471], [-77.327689, 38.249138], [-77.327665, 38.2491], [-77.327399, 38.248679], [-77.3272, 38.248266], [-77.327246, 38.248098], [-77.327349, 38.247736], [-77.32735, 38.247264], [-77.327351, 38.247164], [-77.327265, 38.246632], [-77.327016, 38.245898], [-77.326866, 38.245452], [-77.326822, 38.245395], [-77.326692, 38.245227], [-77.326677, 38.245207], [-77.326689, 38.245163], [-77.32669, 38.245159], [-77.326692, 38.245147], [-77.326694, 38.245144], [-77.326895, 38.244451], [-77.328246, 38.24483], [-77.329364, 38.245068], [-77.330687, 38.245317], [-77.332062, 38.245657], [-77.33274, 38.245848], [-77.333528, 38.24626], [-77.334765, 38.24733], [-77.335417, 38.247999], [-77.335491, 38.248403], [-77.335618, 38.248566], [-77.33599, 38.249046], [-77.336156, 38.249467], [-77.336648, 38.250136], [-77.33668, 38.250137], [-77.336986, 38.250505], [-77.337258, 38.250791], [-77.337528, 38.250966], [-77.337753, 38.251142], [-77.337997, 38.251333], [-77.338374, 38.251743], [-77.338862, 38.252101], [-77.340625, 38.252624], [-77.342003, 38.25275], [-77.343301, 38.252703], [-77.343433, 38.252699], [-77.345933, 38.252235], [-77.34803, 38.251355], [-77.349291, 38.250675], [-77.350006, 38.250136], [-77.35019, 38.249688], [-77.350534, 38.249272], [-77.351031, 38.248883], [-77.35163, 38.24847], [-77.352353, 38.248026], [-77.353198, 38.247528], [-77.35424, 38.246926], [-77.354726, 38.246585], [-77.355409, 38.24602], [-77.356093, 38.245439], [-77.356538, 38.245081], [-77.357988, 38.24388], [-77.359115, 38.243094], [-77.359845, 38.242755], [-77.360402, 38.242431], [-77.361262, 38.242319], [-77.362192, 38.242233], [-77.362885, 38.242265], [-77.363568, 38.242361], [-77.364372, 38.242491], [-77.36543, 38.24268], [-77.366058, 38.242945], [-77.366824, 38.243363], [-77.366932, 38.243422], [-77.367039, 38.24348], [-77.367455, 38.243774], [-77.367605, 38.24388], [-77.367755, 38.243987], [-77.368678, 38.244901], [-77.369005, 38.245282], [-77.369214, 38.245526], [-77.369422, 38.24577], [-77.369799, 38.24621], [-77.370303, 38.246584], [-77.37031, 38.246578], [-77.370367, 38.24653], [-77.370425, 38.246481], [-77.371337, 38.245757], [-77.371342, 38.245753], [-77.374672, 38.243107], [-77.374687, 38.243092], [-77.37488, 38.242903], [-77.374892, 38.242891], [-77.375316, 38.242474], [-77.375455, 38.242345], [-77.37708, 38.240838], [-77.377784, 38.240195], [-77.37933, 38.238782], [-77.379359, 38.238755], [-77.379376, 38.238736], [-77.379381, 38.238731], [-77.379475, 38.238631], [-77.379684, 38.238432], [-77.379696, 38.238421], [-77.384405, 38.233785], [-77.384868, 38.233307], [-77.40031, 38.21742], [-77.402354, 38.215317], [-77.403134, 38.214564], [-77.40632, 38.211492], [-77.408548, 38.209343], [-77.416743, 38.20144], [-77.418605, 38.199635], [-77.419067, 38.199146], [-77.424336, 38.19358], [-77.428491, 38.189191], [-77.433478, 38.18415], [-77.433499, 38.18413], [-77.437347, 38.18024], [-77.437543, 38.180042], [-77.440231, 38.177326], [-77.441131, 38.176529], [-77.442338, 38.175463], [-77.444516, 38.173537], [-77.445682, 38.172506], [-77.45275, 38.166256], [-77.455476, 38.163844], [-77.455772, 38.163582], [-77.456492, 38.162946], [-77.457031, 38.162468], [-77.457354, 38.162183], [-77.459003, 38.160725], [-77.46266, 38.157293], [-77.465581, 38.154554], [-77.465731, 38.154416], [-77.465972, 38.154212], [-77.466417, 38.153873], [-77.466484, 38.153791], [-77.466537, 38.153695], [-77.466935, 38.153334], [-77.467055, 38.153226], [-77.467126, 38.153162], [-77.467169, 38.153135], [-77.467404, 38.152911], [-77.468129, 38.152248], [-77.468587, 38.151817], [-77.468975, 38.151475], [-77.469415, 38.151073], [-77.471163, 38.149477], [-77.473063, 38.147742], [-77.479917, 38.14118], [-77.480016, 38.141085], [-77.480084, 38.141019], [-77.485041, 38.136273], [-77.492556, 38.129082], [-77.492605, 38.129045], [-77.494678, 38.126958], [-77.496621, 38.125136], [-77.504161, 38.118067], [-77.506042, 38.116303], [-77.510051, 38.112543], [-77.510114, 38.112484], [-77.510156, 38.112445], [-77.51079, 38.111851], [-77.512155, 38.110564], [-77.517618, 38.105428], [-77.518181, 38.104898], [-77.52142, 38.101852], [-77.523833, 38.09957], [-77.527605, 38.096004], [-77.530112, 38.093636], [-77.531372, 38.092442], [-77.536646, 38.087454], [-77.537913, 38.086257], [-77.539296, 38.084948], [-77.540585, 38.083728], [-77.541087, 38.083255], [-77.546339, 38.07851], [-77.547345, 38.077606], [-77.548738, 38.076343], [-77.550603, 38.074574], [-77.551613, 38.073617], [-77.554772, 38.070623], [-77.56033, 38.065355], [-77.563062, 38.062734], [-77.567383, 38.058592], [-77.567535, 38.058446], [-77.570661, 38.055449], [-77.572659, 38.053534], [-77.574496, 38.051688], [-77.579828, 38.046772], [-77.586015, 38.041068], [-77.588322, 38.039036], [-77.590779, 38.036874], [-77.591434, 38.036197], [-77.591822, 38.035796], [-77.59279, 38.034791], [-77.593121, 38.034455], [-77.59394, 38.03361], [-77.595106, 38.032577], [-77.59521, 38.032462], [-77.595362, 38.032319], [-77.595626, 38.032127], [-77.595682, 38.032105], [-77.596133, 38.031748], [-77.596181, 38.031709], [-77.597954, 38.02997], [-77.600198, 38.027771], [-77.603937, 38.024276], [-77.606126, 38.022229], [-77.610903, 38.017765], [-77.61222, 38.016511], [-77.612655, 38.016109], [-77.617635, 38.011751], [-77.620189, 38.009518], [-77.622844, 38.006841], [-77.62496, 38.004707], [-77.626221, 38.003437], [-77.629875, 38.000801], [-77.635521, 37.996137], [-77.639932, 37.992591], [-77.642038, 37.991055], [-77.642202, 37.990936], [-77.642154, 37.991165], [-77.642137, 37.991248], [-77.642148, 37.991816], [-77.64232, 37.992292], [-77.642528, 37.992478], [-77.6429, 37.992684], [-77.643366, 37.992862], [-77.64368, 37.992983], [-77.645028, 37.993326], [-77.647165, 37.993956], [-77.647529, 37.994011], [-77.648107, 37.994099], [-77.648298, 37.994112], [-77.649203, 37.994176], [-77.649478, 37.994161], [-77.651705, 37.993925], [-77.652338, 37.993837], [-77.652786, 37.993776], [-77.653672, 37.993603], [-77.65503, 37.993275], [-77.655833, 37.993017], [-77.656938, 37.992513], [-77.657918, 37.991872], [-77.658219, 37.9918], [-77.6593, 37.991931], [-77.659556, 37.992002], [-77.6597, 37.99209], [-77.660278, 37.993012], [-77.660471, 37.993734], [-77.660412, 37.994831], [-77.660646, 37.996124], [-77.660604, 37.997153], [-77.66075, 37.997449], [-77.660935, 37.997592], [-77.661263, 37.997717], [-77.661751, 37.997807], [-77.66234, 37.997772], [-77.66379, 37.99735], [-77.664781, 37.99691], [-77.665362, 37.996848], [-77.666365, 37.996827], [-77.666843, 37.996948], [-77.667162, 37.997087], [-77.667456, 37.997311], [-77.667813, 37.997721], [-77.667904, 37.997921], [-77.667987, 37.998387], [-77.66798, 37.998585], [-77.667923, 38.000128], [-77.668203, 38.000829], [-77.668376, 38.001119], [-77.668794, 38.001628], [-77.6709, 38.003777], [-77.671557, 38.004163], [-77.672847, 38.004731], [-77.674818, 38.005569], [-77.67662, 38.006417], [-77.676938, 38.006533], [-77.676959, 38.006541], [-77.677863, 38.00687], [-77.680594, 38.007595], [-77.682387, 38.007879], [-77.684067, 38.008291], [-77.684635, 38.008172], [-77.685193, 38.007936], [-77.685548, 38.007873], [-77.686418, 38.007908], [-77.687089, 38.007993], [-77.687118, 38.007997], [-77.687184, 38.008005], [-77.687296, 38.008019], [-77.68746, 38.00804], [-77.687667, 38.008057], [-77.688643, 38.008137], [-77.692062, 38.007951], [-77.692357, 38.007855], [-77.692618, 38.00771], [-77.69323, 38.007566], [-77.693895, 38.007188], [-77.694161, 38.007135], [-77.694548, 38.007126], [-77.694572, 38.007125], [-77.695551, 38.007308], [-77.696027, 38.007521], [-77.696981, 38.008475], [-77.697344, 38.008905], [-77.698206, 38.009955], [-77.698854, 38.011166], [-77.699323, 38.011831], [-77.699364, 38.012003], [-77.699668, 38.012312], [-77.7, 38.012556], [-77.700244, 38.01264], [-77.700405, 38.012703], [-77.700861, 38.012691], [-77.701341, 38.012752], [-77.701359, 38.012754], [-77.701583, 38.012783], [-77.70217, 38.012765], [-77.702636, 38.01275], [-77.703303, 38.012701], [-77.703664, 38.012735], [-77.703873, 38.012822], [-77.703882, 38.012826], [-77.704229, 38.01297], [-77.7053, 38.013519], [-77.705608, 38.013582], [-77.706686, 38.013424], [-77.708152, 38.013415], [-77.708606, 38.01337], [-77.709066, 38.013213], [-77.70987, 38.012744], [-77.710294, 38.012609], [-77.710521, 38.012583], [-77.710578, 38.012585], [-77.711023, 38.012606], [-77.711527, 38.012779], [-77.7117, 38.012755], [-77.711892, 38.012729], [-77.711882, 38.012977], [-77.712028, 38.013019], [-77.71247, 38.013835], [-77.712575, 38.014015], [-77.712732, 38.014306], [-77.712849, 38.014564], [-77.712854, 38.014574], [-77.712866, 38.014602], [-77.713259, 38.014849], [-77.713954, 38.015245], [-77.714714, 38.015446], [-77.715714, 38.015946], [-77.716575, 38.016277], [-77.717014, 38.016446], [-77.717914, 38.016546], [-77.718614, 38.016446], [-77.719314, 38.016646], [-77.719814, 38.017046], [-77.720014, 38.017346], [-77.720014, 38.018146], [-77.719814, 38.018646], [-77.719714, 38.018746], [-77.719214, 38.019746], [-77.719114, 38.020246], [-77.719314, 38.020646], [-77.719814, 38.020846], [-77.720414, 38.021246], [-77.720914, 38.021946], [-77.721214, 38.022446], [-77.721714, 38.022946], [-77.722214, 38.023246], [-77.723414, 38.023446], [-77.724314, 38.023346], [-77.725614, 38.023146], [-77.726314, 38.022946], [-77.727114, 38.022646], [-77.727514, 38.022346], [-77.728214, 38.021946], [-77.728541, 38.02175], [-77.729214, 38.021346], [-77.729714, 38.021046], [-77.730614, 38.020846], [-77.731314, 38.021246], [-77.731515, 38.021546], [-77.731515, 38.021846], [-77.731314, 38.022546], [-77.731114, 38.023846], [-77.731095, 38.024034], [-77.731014, 38.024846], [-77.730814, 38.025046], [-77.730514, 38.025246], [-77.730314, 38.025246], [-77.730114, 38.025346], [-77.729814, 38.025646], [-77.729514, 38.025746], [-77.728914, 38.025846], [-77.728514, 38.025946], [-77.728314, 38.026046], [-77.728114, 38.026446], [-77.728114, 38.027146], [-77.728214, 38.027546], [-77.728314, 38.027746], [-77.72953, 38.028557], [-77.729814, 38.028746], [-77.730214, 38.029246], [-77.73032, 38.029564], [-77.730515, 38.030145], [-77.730615, 38.030445], [-77.731015, 38.031045], [-77.731815, 38.031445], [-77.732315, 38.031645], [-77.733415, 38.031745], [-77.733815, 38.031845], [-77.734815, 38.031845], [-77.736315, 38.032045], [-77.737615, 38.032445], [-77.738215, 38.032645], [-77.738915, 38.032945], [-77.739515, 38.033046], [-77.739815, 38.032946], [-77.740215, 38.032646], [-77.740515, 38.032046], [-77.740715, 38.031246], [-77.740715, 38.029646], [-77.740915, 38.029246], [-77.741515, 38.028446], [-77.742315, 38.027446], [-77.743015, 38.026746], [-77.743515, 38.026346], [-77.743915, 38.025846], [-77.744215, 38.025546], [-77.744515, 38.025146], [-77.744515, 38.024646], [-77.744415, 38.024346], [-77.744615, 38.023946], [-77.744915, 38.023746], [-77.745415, 38.023646], [-77.746215, 38.023546], [-77.746915, 38.023646], [-77.747315, 38.023946], [-77.747715, 38.024346], [-77.747715, 38.025746], [-77.747615, 38.026346], [-77.747715, 38.026746], [-77.747815, 38.027246], [-77.748315, 38.028446], [-77.748515, 38.028746], [-77.748515, 38.029546], [-77.748415, 38.030146], [-77.748115, 38.031046], [-77.747815, 38.031746], [-77.747615, 38.032946], [-77.747715, 38.033346], [-77.748015, 38.033846], [-77.748315, 38.034246], [-77.748515, 38.034546], [-77.748815, 38.035146], [-77.748815, 38.036745], [-77.748615, 38.037145], [-77.748315, 38.037345], [-77.747915, 38.037645], [-77.746615, 38.038245], [-77.745515, 38.038445], [-77.744815, 38.038745], [-77.744015, 38.039045], [-77.743415, 38.039245], [-77.743115, 38.039245], [-77.742915, 38.038845], [-77.742915, 38.037945], [-77.742715, 38.037445], [-77.742315, 38.037145], [-77.741915, 38.037045], [-77.741315, 38.037245], [-77.740915, 38.037745], [-77.740915, 38.038245], [-77.741115, 38.038545], [-77.741315, 38.039045], [-77.741615, 38.039645], [-77.742215, 38.040245], [-77.742915, 38.040745], [-77.743815, 38.040945], [-77.744515, 38.040845], [-77.745215, 38.040845], [-77.745715, 38.040945], [-77.746715, 38.041445], [-77.747415, 38.041645], [-77.748015, 38.042045], [-77.748215, 38.042145], [-77.748415, 38.043145], [-77.748415, 38.043445], [-77.748115, 38.044445], [-77.747815, 38.044945], [-77.747515, 38.045545], [-77.747515, 38.045845], [-77.747615, 38.047045], [-77.747715, 38.047645], [-77.747815, 38.047945], [-77.747715, 38.048345], [-77.747615, 38.048645], [-77.747415, 38.048945], [-77.747215, 38.049145], [-77.746615, 38.049545], [-77.745915, 38.050045], [-77.745215, 38.050845], [-77.745215, 38.051145], [-77.745515, 38.051345], [-77.746215, 38.051445], [-77.746615, 38.051845], [-77.747315, 38.052245], [-77.747815, 38.052545], [-77.748615, 38.052845], [-77.749515, 38.052845], [-77.749715, 38.052695], [-77.749815, 38.052545], [-77.750215, 38.052545], [-77.750415, 38.052445], [-77.750615, 38.052445], [-77.750715, 38.052345], [-77.751115, 38.052145], [-77.751333, 38.052], [-77.751415, 38.051945], [-77.751515, 38.051745], [-77.751615, 38.051345], [-77.752315, 38.050945], [-77.752815, 38.050645], [-77.753615, 38.050345], [-77.754115, 38.049945], [-77.754915, 38.049445], [-77.755415, 38.048845], [-77.755715, 38.048645], [-77.755915, 38.048345], [-77.756115, 38.048245], [-77.756515, 38.048445], [-77.757015, 38.048645], [-77.757615, 38.048845], [-77.758215, 38.048945], [-77.758515, 38.048945], [-77.758816, 38.049045], [-77.759016, 38.049145], [-77.759116, 38.049145], [-77.759316, 38.049345], [-77.759616, 38.049445], [-77.759716, 38.049545], [-77.762516, 38.050545], [-77.762916, 38.050845], [-77.763316, 38.051245], [-77.763316, 38.052645], [-77.763516, 38.052845], [-77.763816, 38.053045], [-77.763916, 38.053145], [-77.764116, 38.053145], [-77.765116, 38.053445], [-77.766116, 38.053345], [-77.766493, 38.053062], [-77.766516, 38.053045], [-77.767316, 38.052645], [-77.767816, 38.051945], [-77.768116, 38.051745], [-77.768516, 38.051745], [-77.769016, 38.052045], [-77.769816, 38.052545], [-77.770716, 38.053145], [-77.771416, 38.053745], [-77.771716, 38.054245], [-77.771716, 38.054745], [-77.771416, 38.055245], [-77.771405, 38.055263], [-77.771116, 38.055745], [-77.770916, 38.056345], [-77.771016, 38.056745], [-77.771687, 38.057267], [-77.771916, 38.057445], [-77.77196, 38.057457], [-77.773416, 38.057845], [-77.774216, 38.057845], [-77.775816, 38.058245], [-77.776916, 38.058445], [-77.777816, 38.058445], [-77.778516, 38.058745], [-77.779216, 38.059445], [-77.780216, 38.060345], [-77.781116, 38.061545], [-77.781716, 38.062645], [-77.782616, 38.063245], [-77.783016, 38.063245], [-77.784216, 38.063145], [-77.784516, 38.063345], [-77.784616, 38.064245], [-77.784916, 38.065145], [-77.784616, 38.065645], [-77.784116, 38.065945], [-77.783405, 38.06623], [-77.783116, 38.066345], [-77.782616, 38.067145], [-77.782516, 38.067545], [-77.782616, 38.068545], [-77.782916, 38.069445], [-77.783916, 38.070445], [-77.784175, 38.070661], [-77.784516, 38.070945], [-77.784616, 38.071545], [-77.784516, 38.071845], [-77.784716, 38.072445], [-77.785116, 38.073245], [-77.785616, 38.073845], [-77.785816, 38.074545], [-77.785816, 38.074845], [-77.786316, 38.075445], [-77.786616, 38.076045], [-77.786616, 38.076345], [-77.787416, 38.076345], [-77.787916, 38.076145], [-77.788416, 38.076045], [-77.78925, 38.075952], [-77.789316, 38.075945], [-77.790016, 38.076145], [-77.790716, 38.076945], [-77.791616, 38.077445], [-77.793717, 38.078545], [-77.79404, 38.078583], [-77.794362, 38.078621], [-77.795417, 38.078745], [-77.796417, 38.078545], [-77.796717, 38.078545], [-77.797617, 38.078695], [-77.798192, 38.078745], [-77.798817, 38.078745], [-77.799517, 38.078545], [-77.800117, 38.078245], [-77.801317, 38.078245], [-77.802717, 38.078345], [-77.803817, 38.078545], [-77.804817, 38.078545], [-77.805517, 38.078445], [-77.806017, 38.078445], [-77.806517, 38.078545], [-77.807617, 38.078945], [-77.808517, 38.079145], [-77.808609, 38.079156], [-77.809317, 38.079245], [-77.810617, 38.079445], [-77.810917, 38.079545], [-77.811123, 38.0797], [-77.811317, 38.079845], [-77.81144, 38.079933], [-77.812017, 38.080346], [-77.812284, 38.080746], [-77.812418, 38.080946], [-77.812618, 38.081246], [-77.812718, 38.081947], [-77.812718, 38.082846], [-77.812684, 38.083117], [-77.812618, 38.083647], [-77.812419, 38.084347], [-77.812718, 38.085145], [-77.812895, 38.085304], [-77.812919, 38.085326], [-77.813519, 38.085848], [-77.814219, 38.086248], [-77.814437, 38.086385], [-77.815019, 38.086748], [-77.815219, 38.086848], [-77.815319, 38.086848], [-77.815819, 38.086548], [-77.815919, 38.086248], [-77.816119, 38.085948], [-77.816519, 38.085548], [-77.816919, 38.085448], [-77.817619, 38.085648], [-77.817819, 38.085848], [-77.818219, 38.086348], [-77.819719, 38.087848], [-77.820019, 38.088548], [-77.820299, 38.089201], [-77.820315, 38.08924], [-77.820319, 38.089248], [-77.820225, 38.089716], [-77.820219, 38.089748], [-77.820219, 38.090248], [-77.820119, 38.090748], [-77.819919, 38.091348], [-77.819519, 38.091848], [-77.819718, 38.092444], [-77.820619, 38.092847], [-77.821219, 38.093047], [-77.822019, 38.093347], [-77.823019, 38.093547], [-77.823418, 38.093547], [-77.823462, 38.093791], [-77.823619, 38.094647], [-77.823742, 38.094875], [-77.823988, 38.095333], [-77.824198, 38.095722], [-77.824235, 38.095791], [-77.824238, 38.095797], [-77.824241, 38.095802], [-77.824318, 38.095945], [-77.824384, 38.096002], [-77.824388, 38.096006], [-77.825019, 38.096547], [-77.826519, 38.097147], [-77.827119, 38.097247], [-77.828919, 38.097247], [-77.830019, 38.097547], [-77.830045, 38.097564], [-77.830318, 38.097746], [-77.830419, 38.098047], [-77.830618, 38.098944], [-77.830919, 38.099247], [-77.831033, 38.099309], [-77.832019, 38.099847], [-77.833219, 38.100447], [-77.833919, 38.100647], [-77.834986, 38.100799], [-77.835319, 38.100847], [-77.836219, 38.101147], [-77.836518, 38.101744], [-77.836282, 38.102162], [-77.836119, 38.102447], [-77.836214, 38.103114], [-77.836219, 38.103146], [-77.836238, 38.103194], [-77.836419, 38.103647], [-77.836119, 38.103847], [-77.836318, 38.104345], [-77.836319, 38.104447], [-77.837019, 38.104647], [-77.837218, 38.104647], [-77.837219, 38.104746], [-77.837418, 38.105045], [-77.837319, 38.105347], [-77.837418, 38.105744], [-77.837719, 38.106047], [-77.838219, 38.106247], [-77.838538, 38.105927], [-77.838568, 38.105925], [-77.839218, 38.105844], [-77.839719, 38.106046], [-77.840919, 38.105746], [-77.842119, 38.105146], [-77.842719, 38.105046], [-77.843419, 38.105046], [-77.844919, 38.104746], [-77.845519, 38.104346], [-77.845319, 38.103846], [-77.844919, 38.103346], [-77.844119, 38.102846], [-77.843219, 38.101946], [-77.842919, 38.101446], [-77.843019, 38.101046], [-77.843219, 38.100546], [-77.843319, 38.100346], [-77.843719, 38.099946], [-77.843819, 38.099946], [-77.844019, 38.099746], [-77.844819, 38.099046], [-77.845419, 38.098546], [-77.846219, 38.098346], [-77.847019, 38.098446], [-77.847419, 38.098746], [-77.847818, 38.099444], [-77.847819, 38.099793], [-77.847819, 38.100446], [-77.8479, 38.100689], [-77.848119, 38.101345], [-77.848418, 38.101844], [-77.849009, 38.101993], [-77.849219, 38.102046], [-77.849719, 38.102146], [-77.850619, 38.102746], [-77.851019, 38.102946], [-77.851518, 38.103445], [-77.851419, 38.104046], [-77.85122, 38.104345], [-77.851519, 38.104446], [-77.852619, 38.104546], [-77.853135, 38.104442], [-77.854119, 38.104245], [-77.854519, 38.103945], [-77.854819, 38.103245], [-77.854819, 38.102645], [-77.854694, 38.102582], [-77.854419, 38.102445], [-77.854219, 38.101745], [-77.854419, 38.100945], [-77.854719, 38.100945], [-77.855119, 38.100745], [-77.855919, 38.099945], [-77.856119, 38.099845], [-77.856419, 38.099945], [-77.857219, 38.100045], [-77.858119, 38.100345], [-77.858718, 38.100844], [-77.858776, 38.101136], [-77.858819, 38.101345], [-77.858519, 38.102545], [-77.858219, 38.103045], [-77.858419, 38.103245], [-77.858912, 38.103739], [-77.859118, 38.103945], [-77.859318, 38.104445], [-77.859418, 38.104745], [-77.859818, 38.105245], [-77.860035, 38.105326], [-77.860618, 38.105545], [-77.862318, 38.105545], [-77.863718, 38.105845], [-77.864408, 38.106104], [-77.864518, 38.106145], [-77.865111, 38.106194], [-77.865718, 38.106245], [-77.866618, 38.106245], [-77.867918, 38.105945], [-77.869119, 38.105645], [-77.869419, 38.105745], [-77.870119, 38.105945], [-77.871019, 38.106245], [-77.871538, 38.106467], [-77.871719, 38.106545], [-77.871913, 38.106517], [-77.872419, 38.106445], [-77.873119, 38.106344], [-77.873919, 38.106344], [-77.874219, 38.106444], [-77.874319, 38.106744], [-77.874719, 38.107194], [-77.875119, 38.107444], [-77.875319, 38.107444], [-77.875619, 38.107544], [-77.875819, 38.107544], [-77.876003, 38.107483], [-77.876008, 38.107481], [-77.876119, 38.107444], [-77.876319, 38.107444], [-77.876619, 38.107644], [-77.877019, 38.107844], [-77.877619, 38.108044], [-77.878119, 38.108244], [-77.878619, 38.108344], [-77.879019, 38.108444], [-77.879719, 38.108444], [-77.880419, 38.108544], [-77.880819, 38.108644], [-77.881319, 38.108744], [-77.881719, 38.108744], [-77.882119, 38.108844], [-77.882319, 38.108944], [-77.882619, 38.109144], [-77.882719, 38.109244], [-77.882719, 38.109644], [-77.882919, 38.109944], [-77.883119, 38.110144], [-77.883419, 38.110244], [-77.883767, 38.110383], [-77.883919, 38.110444], [-77.884119, 38.110544], [-77.884319, 38.110544], [-77.884619, 38.110444], [-77.885019, 38.110444], [-77.885319, 38.110644], [-77.885434, 38.110702], [-77.885441, 38.110705], [-77.885452, 38.110711], [-77.885518, 38.110744], [-77.885818, 38.111044], [-77.885918, 38.111244], [-77.88609, 38.111501], [-77.886118, 38.111544], [-77.886118, 38.111944], [-77.886318, 38.112244], [-77.886496, 38.112244], [-77.886531, 38.112243], [-77.886895, 38.112338], [-77.886918, 38.112344], [-77.887418, 38.112444], [-77.887718, 38.112544], [-77.888118, 38.112944], [-77.888418, 38.113144], [-77.889018, 38.113144], [-77.889318, 38.113044], [-77.890118, 38.112444], [-77.890418, 38.112244], [-77.890518, 38.112044], [-77.890518, 38.111444], [-77.891418, 38.111444], [-77.891918, 38.111544], [-77.892618, 38.111444], [-77.893018, 38.111344], [-77.893218, 38.111244], [-77.893418, 38.111044], [-77.893818, 38.111044], [-77.894218, 38.110944], [-77.894818, 38.110744], [-77.895018, 38.110544], [-77.895218, 38.110244], [-77.895318, 38.110144], [-77.895618, 38.110044], [-77.896118, 38.110044], [-77.896518, 38.110144], [-77.896818, 38.110444], [-77.896918, 38.110644], [-77.896918, 38.111044], [-77.896818, 38.111244], [-77.896818, 38.111444], [-77.896918, 38.111544], [-77.897218, 38.111644], [-77.897418, 38.111644], [-77.898018, 38.111444], [-77.898318, 38.111244], [-77.898318, 38.110744], [-77.898418, 38.110544], [-77.898318, 38.110244], [-77.898318, 38.110044], [-77.898418, 38.109744], [-77.898718, 38.109444], [-77.898918, 38.109344], [-77.899618, 38.109344], [-77.899919, 38.109444], [-77.900219, 38.109444], [-77.900519, 38.109144], [-77.900594, 38.108918], [-77.900619, 38.108844], [-77.900819, 38.108544], [-77.901119, 38.108344], [-77.901519, 38.108244], [-77.901819, 38.108144], [-77.902419, 38.108144], [-77.902719, 38.108344], [-77.903019, 38.108444], [-77.903219, 38.108844], [-77.903219, 38.109144], [-77.903316, 38.109436], [-77.903519, 38.109744], [-77.904119, 38.110144], [-77.904619, 38.110444], [-77.905019, 38.110644], [-77.905519, 38.110744], [-77.905919, 38.110844], [-77.906119, 38.110944], [-77.907119, 38.111144], [-77.907419, 38.111444], [-77.907519, 38.111644], [-77.907719, 38.111844], [-77.90802, 38.111944], [-77.90862, 38.111944], [-77.90872, 38.112044], [-77.90922, 38.111944], [-77.90942, 38.112044], [-77.90992, 38.112144], [-77.910062, 38.112179], [-77.91032, 38.112244], [-77.91072, 38.112244], [-77.91102, 38.112144], [-77.911094, 38.112095], [-77.91132, 38.111944], [-77.911659, 38.11174], [-77.91182, 38.111644], [-77.91202, 38.111644], [-77.91252, 38.111544], [-77.91272, 38.111744], [-77.91302, 38.112144], [-77.91302, 38.112644], [-77.91312, 38.113044], [-77.91322, 38.113544], [-77.91332, 38.113944], [-77.91332, 38.114044], [-77.913267, 38.114204], [-77.91322, 38.114344], [-77.91312, 38.114544], [-77.91322, 38.114744], [-77.91362, 38.115344], [-77.91372, 38.115644], [-77.91372, 38.115844], [-77.913702, 38.115881], [-77.91362, 38.116044], [-77.91372, 38.116244], [-77.91372, 38.116444], [-77.91392, 38.116644], [-77.91402, 38.116944], [-77.91402, 38.117044], [-77.91412, 38.117144], [-77.914333, 38.11725], [-77.91452, 38.117344], [-77.91492, 38.117544], [-77.91502, 38.117544], [-77.91592, 38.118144], [-77.91672, 38.118344], [-77.91692, 38.118344], [-77.91712, 38.118244], [-77.91742, 38.118144], [-77.91762, 38.118044], [-77.91792, 38.117844], [-77.91802, 38.117644], [-77.91822, 38.117444], [-77.91862, 38.117344], [-77.91902, 38.117344], [-77.91922, 38.117444], [-77.91962, 38.117244], [-77.91992, 38.117144], [-77.920146, 38.117069], [-77.92022, 38.117044], [-77.92032, 38.116944], [-77.92032, 38.116544], [-77.92042, 38.116344], [-77.92092, 38.116144], [-77.92122, 38.115944], [-77.92152, 38.115844], [-77.92172, 38.115544], [-77.92182, 38.115444], [-77.92192, 38.115244], [-77.92202, 38.115244], [-77.92232, 38.115144], [-77.92262, 38.115144], [-77.92272, 38.114944], [-77.92272, 38.114844], [-77.92312, 38.114744], [-77.92342, 38.114744], [-77.92372, 38.114544], [-77.923812, 38.114552], [-77.923903, 38.11456], [-77.923971, 38.114566], [-77.92427, 38.114466], [-77.924469, 38.114465], [-77.924568, 38.114664], [-77.924668, 38.114763], [-77.924668, 38.114863], [-77.924866, 38.115062], [-77.925165, 38.114961], [-77.925364, 38.11496], [-77.926061, 38.115056], [-77.926395, 38.114971], [-77.926441, 38.114958], [-77.926459, 38.114954], [-77.926942, 38.114861], [-77.926963, 38.114849], [-77.927079, 38.11479], [-77.927355, 38.11465], [-77.927554, 38.114549], [-77.928051, 38.114446], [-77.928449, 38.114444], [-77.928648, 38.114343], [-77.928748, 38.114242], [-77.928847, 38.114142], [-77.928947, 38.113941], [-77.929345, 38.113739], [-77.929743, 38.113737], [-77.930141, 38.113835], [-77.930439, 38.113934], [-77.930937, 38.114031], [-77.931634, 38.113927], [-77.931733, 38.113927], [-77.931932, 38.114026], [-77.932131, 38.114025], [-77.93243, 38.113923], [-77.932728, 38.113922], [-77.933524, 38.114118], [-77.934022, 38.114115], [-77.934221, 38.114114], [-77.93432, 38.114014], [-77.93452, 38.114113], [-77.934719, 38.114212], [-77.934868, 38.114331], [-77.935216, 38.114609], [-77.935614, 38.114907], [-77.935913, 38.115105], [-77.936012, 38.115205], [-77.936012, 38.115905], [-77.936111, 38.115904], [-77.936509, 38.115902], [-77.936509, 38.116002], [-77.936708, 38.116201], [-77.936907, 38.1165], [-77.936939, 38.116511], [-77.937206, 38.116598], [-77.937305, 38.116697], [-77.937603, 38.116796], [-77.937902, 38.116794], [-77.938001, 38.116894], [-77.938499, 38.117291], [-77.938897, 38.117488], [-77.939055, 38.117488], [-77.93912, 38.117487], [-77.939494, 38.117485], [-77.939593, 38.117584], [-77.939792, 38.117683], [-77.939891, 38.117982], [-77.939891, 38.118182], [-77.93999, 38.118381], [-77.940189, 38.11858], [-77.940488, 38.118778], [-77.940587, 38.118877], [-77.940886, 38.118876], [-77.940985, 38.118875], [-77.941365, 38.118779], [-77.941401, 38.118767], [-77.941682, 38.118672], [-77.941981, 38.118671], [-77.94218, 38.11867], [-77.942279, 38.118669], [-77.942578, 38.118767], [-77.942777, 38.118866], [-77.943075, 38.118965], [-77.943175, 38.118964], [-77.943453, 38.118963], [-77.943473, 38.118963], [-77.943672, 38.119062], [-77.943771, 38.119161], [-77.944169, 38.119459], [-77.944368, 38.119558], [-77.944567, 38.119457], [-77.944767, 38.119356], [-77.944866, 38.119355], [-77.945165, 38.119354], [-77.945463, 38.119252], [-77.945861, 38.11915], [-77.94606, 38.119249], [-77.946245, 38.119341], [-77.946263, 38.119352], [-77.946271, 38.119357], [-77.946458, 38.119547], [-77.946657, 38.119746], [-77.946757, 38.119845], [-77.947056, 38.120043], [-77.94715, 38.120024], [-77.947554, 38.119941], [-77.947952, 38.119739], [-77.948093, 38.119597], [-77.948251, 38.119438], [-77.948251, 38.118739], [-77.948152, 38.118439], [-77.948252, 38.118239], [-77.948451, 38.118038], [-77.94875, 38.117837], [-77.949148, 38.117835], [-77.949546, 38.117733], [-77.949679, 38.117709], [-77.950143, 38.11763], [-77.950342, 38.117729], [-77.95064, 38.117827], [-77.95074, 38.117827], [-77.951038, 38.118025], [-77.951138, 38.118025], [-77.951337, 38.118023], [-77.951436, 38.118023], [-77.951735, 38.118021], [-77.951834, 38.118121], [-77.951899, 38.118153], [-77.952232, 38.118319], [-77.952232, 38.118618], [-77.95263, 38.118616], [-77.95273, 38.118716], [-77.953028, 38.118614], [-77.953327, 38.118513], [-77.953362, 38.118477], [-77.953426, 38.118412], [-77.953426, 38.11822], [-77.953524, 38.118137], [-77.954378, 38.117753], [-77.954821, 38.117445], [-77.953573, 38.118567], [-77.952372, 38.119648], [-77.947546, 38.124067], [-77.946627, 38.124908], [-77.946398, 38.125119], [-77.944577, 38.126731], [-77.938751, 38.13189], [-77.938702, 38.131933], [-77.935031, 38.135185], [-77.93439, 38.135753], [-77.932596, 38.137347], [-77.930881, 38.138862], [-77.929499, 38.140084], [-77.929489, 38.140093], [-77.929483, 38.140098], [-77.929469, 38.14011], [-77.929436, 38.140139], [-77.929416, 38.140157], [-77.929208, 38.140341], [-77.928886, 38.140626], [-77.92689, 38.142391], [-77.926609, 38.142642], [-77.9266, 38.14265], [-77.926596, 38.142654], [-77.926587, 38.142662], [-77.925967, 38.143216], [-77.925407, 38.143718], [-77.924702, 38.144353], [-77.924242, 38.144759], [-77.921958, 38.146772], [-77.917833, 38.150414], [-77.916843, 38.151308], [-77.915042, 38.152928], [-77.908399, 38.158908], [-77.90698, 38.160181], [-77.904953, 38.162006], [-77.904562, 38.162356], [-77.902894, 38.163858], [-77.902363, 38.164333], [-77.899196, 38.167186], [-77.896021, 38.170045], [-77.89319, 38.17259], [-77.889731, 38.175683], [-77.889422, 38.175957], [-77.889071, 38.176269], [-77.884938, 38.179961], [-77.881313, 38.183198], [-77.876205, 38.187761], [-77.875736, 38.188181], [-77.874778, 38.189039], [-77.872181, 38.191563], [-77.872123, 38.19162], [-77.869763, 38.193937], [-77.866582, 38.19706], [-77.865098, 38.198517], [-77.858041, 38.205571], [-77.856035, 38.207575], [-77.853574, 38.210035], [-77.852286, 38.211323], [-77.846902, 38.216706], [-77.845973, 38.217633], [-77.845562, 38.218045], [-77.84173, 38.221874], [-77.840033, 38.223571], [-77.837005, 38.226593], [-77.836435, 38.227166], [-77.835743, 38.227854], [-77.834097, 38.229498], [-77.82987, 38.233045], [-77.827629, 38.234913], [-77.826809, 38.235597], [-77.826772, 38.235628], [-77.820078, 38.24121], [-77.819149, 38.241985], [-77.818526, 38.242504], [-77.817855, 38.243063], [-77.817417, 38.243429], [-77.815901, 38.244694], [-77.814042, 38.246244], [-77.812299, 38.247637], [-77.809368, 38.250137], [-77.807464, 38.25174], [-77.80602, 38.252954], [-77.801566, 38.256698], [-77.798571, 38.259213], [-77.798533, 38.259245], [-77.798321, 38.25943], [-77.7983, 38.259448], [-77.793984, 38.263186], [-77.789503, 38.266911], [-77.786394, 38.269445], [-77.785812, 38.269936], [-77.783527, 38.271873], [-77.7835, 38.271896], [-77.783264, 38.272098], [-77.780507, 38.274689], [-77.777867, 38.27717], [-77.773299, 38.281455], [-77.772244, 38.282446], [-77.769463, 38.285061], [-77.766253, 38.288078], [-77.761298, 38.292741], [-77.758601, 38.295265], [-77.757204, 38.296574], [-77.751336, 38.302092], [-77.751229, 38.302191], [-77.74972, 38.30361], [-77.749583, 38.303731], [-77.748419, 38.304817], [-77.748307, 38.304918], [-77.748167, 38.305044], [-77.746672, 38.306366], [-77.744695, 38.308092], [-77.744534, 38.308232], [-77.744524, 38.308241], [-77.744454, 38.308302], [-77.742004, 38.310441], [-77.742, 38.310445], [-77.740558, 38.311707], [-77.740035, 38.312164], [-77.739019, 38.313051], [-77.738362, 38.313621], [-77.736611, 38.315151], [-77.731793, 38.319358], [-77.730211, 38.320743], [-77.729265, 38.32157], [-77.729199, 38.321625], [-77.729172, 38.321703], [-77.729086, 38.321779], [-77.72749, 38.323201], [-77.727486, 38.323205], [-77.727481, 38.323209], [-77.727475, 38.323214], [-77.726691, 38.323913], [-77.72669, 38.323942], [-77.726689, 38.323973], [-77.726424, 38.3245], [-77.726344, 38.324804], [-77.726264, 38.32511], [-77.726243, 38.325215], [-77.726225, 38.325309], [-77.726188, 38.3255], [-77.726133, 38.325567], [-77.725993, 38.325736], [-77.725937, 38.325928], [-77.725932, 38.325962], [-77.725909, 38.32612], [-77.725693, 38.326434], [-77.72554, 38.326658], [-77.725401, 38.326905], [-77.72529, 38.327048], [-77.725227, 38.327257], [-77.725025, 38.327751], [-77.724865, 38.327971], [-77.724684, 38.328174], [-77.724475, 38.328531], [-77.724315, 38.328761], [-77.723883, 38.329305], [-77.723792, 38.329481], [-77.723284, 38.330233], [-77.723082, 38.330601], [-77.722977, 38.330756], [-77.722915, 38.330848], [-77.722678, 38.331062], [-77.722532, 38.331298], [-77.722128, 38.331743], [-77.721989, 38.331963], [-77.721877, 38.332089], [-77.721696, 38.332529], [-77.721648, 38.33283], [-77.721585, 38.333023], [-77.721488, 38.333215], [-77.721377, 38.33338], [-77.721341, 38.333434], [-77.721265, 38.333566], [-77.721195, 38.333934], [-77.721105, 38.334055], [-77.720944, 38.334137], [-77.720728, 38.33411], [-77.720533, 38.334126], [-77.720213, 38.334264], [-77.720108, 38.33428], [-77.719808, 38.334248], [-77.719439, 38.334522], [-77.71939, 38.334659], [-77.719892, 38.335148], [-77.719885, 38.335302], [-77.71984, 38.335404], [-77.719837, 38.335411], [-77.719739, 38.335516], [-77.7196, 38.335565], [-77.719286, 38.335582], [-77.718259, 38.335484], [-77.718248, 38.335483], [-77.71802, 38.335486], [-77.718007, 38.335486], [-77.717999, 38.335487], [-77.717949, 38.335487], [-77.717836, 38.335489], [-77.717279, 38.335549], [-77.717113, 38.335587], [-77.716993, 38.335615], [-77.716735, 38.335632], [-77.716561, 38.335594], [-77.716303, 38.335506], [-77.71608, 38.335495], [-77.71594, 38.335517], [-77.715655, 38.335605], [-77.715383, 38.33572], [-77.715278, 38.335748], [-77.715139, 38.335825], [-77.714818, 38.336077], [-77.714714, 38.33639], [-77.714679, 38.336582], [-77.7147, 38.336698], [-77.714861, 38.337005], [-77.715035, 38.337142], [-77.715121, 38.33721], [-77.71523, 38.337296], [-77.715425, 38.337378], [-77.715544, 38.337466], [-77.715921, 38.337845], [-77.716043, 38.33799], [-77.716111, 38.338072], [-77.716151, 38.338119], [-77.716367, 38.338295], [-77.71653, 38.338397], [-77.717057, 38.338728], [-77.717476, 38.33903], [-77.717803, 38.339217], [-77.718068, 38.339464], [-77.718208, 38.339656], [-77.718591, 38.339947], [-77.718675, 38.340122], [-77.718752, 38.340441], [-77.718815, 38.340572], [-77.718745, 38.341292], [-77.718648, 38.34161], [-77.718411, 38.341846], [-77.718091, 38.342022], [-77.717958, 38.342071], [-77.717428, 38.342198], [-77.717247, 38.342308], [-77.716982, 38.342884], [-77.71685, 38.343071], [-77.716767, 38.343269], [-77.716697, 38.343335], [-77.716691, 38.343337], [-77.71646, 38.343411], [-77.715979, 38.343494], [-77.715923, 38.343565], [-77.715903, 38.343645], [-77.715833, 38.343933], [-77.715756, 38.344016], [-77.715512, 38.344147], [-77.715303, 38.344175], [-77.715059, 38.344164], [-77.71492, 38.344137], [-77.714564, 38.344029], [-77.714376, 38.343972], [-77.714257, 38.343972], [-77.714123, 38.344027], [-77.714116, 38.344027], [-77.714097, 38.344038], [-77.713797, 38.344055], [-77.713546, 38.344274], [-77.713379, 38.344587], [-77.713219, 38.344686], [-77.713087, 38.34473], [-77.712884, 38.344906], [-77.712641, 38.345241], [-77.712452, 38.345455], [-77.712418, 38.345697], [-77.712383, 38.345801], [-77.712397, 38.346026], [-77.712453, 38.346152], [-77.71269, 38.346525], [-77.712948, 38.347085], [-77.713039, 38.347173], [-77.713171, 38.347371], [-77.713262, 38.347475], [-77.713422, 38.347596], [-77.713562, 38.347673], [-77.714085, 38.347898], [-77.714329, 38.347974], [-77.714399, 38.348046], [-77.714492, 38.348189], [-77.714531, 38.348249], [-77.714671, 38.348441], [-77.714706, 38.348611], [-77.714667, 38.348959], [-77.714664, 38.348985], [-77.714601, 38.349166], [-77.714253, 38.349567], [-77.714037, 38.349742], [-77.713786, 38.349836], [-77.713312, 38.35005], [-77.713264, 38.350084], [-77.713096, 38.350204], [-77.71311, 38.350286], [-77.713192, 38.350455], [-77.713256, 38.350588], [-77.713249, 38.350654], [-77.713189, 38.350725], [-77.713033, 38.350907], [-77.713006, 38.351082], [-77.713043, 38.351172], [-77.71311, 38.351335], [-77.713089, 38.351395], [-77.713034, 38.351439], [-77.712657, 38.351379], [-77.712357, 38.351242], [-77.711981, 38.351165], [-77.711723, 38.351028], [-77.7115, 38.350934], [-77.711199, 38.350873], [-77.711018, 38.350836], [-77.710851, 38.350951], [-77.710782, 38.351077], [-77.710768, 38.351549], [-77.710705, 38.351786], [-77.710726, 38.351895], [-77.710998, 38.352428], [-77.710999, 38.352449], [-77.711005, 38.352603], [-77.710949, 38.352642], [-77.710071, 38.352499], [-77.709325, 38.35245], [-77.708997, 38.352395], [-77.708267, 38.352245], [-77.70796, 38.352344], [-77.707708, 38.352597], [-77.707637, 38.352877], [-77.70783, 38.353233], [-77.70796, 38.353834], [-77.70828, 38.354246], [-77.708478, 38.354364], [-77.708689, 38.35449], [-77.709162, 38.35467], [-77.709591, 38.355116], [-77.709465, 38.355333], [-77.709086, 38.355531], [-77.70758, 38.355341], [-77.706536, 38.355002], [-77.705493, 38.354845], [-77.705213, 38.355021], [-77.705151, 38.355258], [-77.705134, 38.355366], [-77.705109, 38.355466], [-77.705082, 38.355531], [-77.704955, 38.355548], [-77.705064, 38.355624], [-77.705146, 38.355847], [-77.705584, 38.356349], [-77.705522, 38.356594], [-77.705324, 38.356819], [-77.705299, 38.357106], [-77.705661, 38.357161], [-77.70615, 38.357089], [-77.706686, 38.357206], [-77.706941, 38.357499], [-77.707016, 38.357764], [-77.7078, 38.358573], [-77.707765, 38.358713], [-77.707548, 38.358826], [-77.707077, 38.358828], [-77.706669, 38.358766], [-77.705987, 38.358482], [-77.705533, 38.358414], [-77.705271, 38.35852], [-77.704737, 38.358585], [-77.704529, 38.358663], [-77.70374, 38.358617], [-77.703578, 38.358701], [-77.703542, 38.358841], [-77.704154, 38.359588], [-77.704066, 38.359938], [-77.703466, 38.360357], [-77.703458, 38.360362], [-77.703451, 38.360367], [-77.703209, 38.360536], [-77.703197, 38.36058], [-77.703191, 38.360606], [-77.702, 38.360368], [-77.701894, 38.360347], [-77.701301, 38.360155], [-77.701244, 38.360137], [-77.701038, 38.36007], [-77.700328, 38.359586], [-77.697592, 38.357077], [-77.697111, 38.356731], [-77.696786, 38.356655], [-77.695785, 38.356473], [-77.695473, 38.356429], [-77.694619, 38.356501], [-77.694116, 38.356629], [-77.693231, 38.357125], [-77.692963, 38.357351], [-77.691846, 38.35816], [-77.690704, 38.35873], [-77.690672, 38.358721], [-77.688953, 38.359189], [-77.688274, 38.359269], [-77.688111, 38.359353], [-77.687495, 38.359369], [-77.687224, 38.35951], [-77.686444, 38.359429], [-77.685983, 38.359578], [-77.685899, 38.359622], [-77.685793, 38.359677], [-77.685681, 38.359651], [-77.685548, 38.359621], [-77.685168, 38.359819], [-77.684643, 38.359849], [-77.68341, 38.359699], [-77.683065, 38.359756], [-77.682282, 38.359744], [-77.681987, 38.359739], [-77.68177, 38.359852], [-77.681362, 38.359791], [-77.681018, 38.359848], [-77.680555, 38.359814], [-77.680293, 38.35992], [-77.679885, 38.359859], [-77.679541, 38.359916], [-77.679338, 38.360021], [-77.679107, 38.360141], [-77.678629, 38.360542], [-77.678288, 38.361145], [-77.678213, 38.362188], [-77.678037, 38.363071], [-77.678075, 38.363295], [-77.677764, 38.364339], [-77.67762, 38.364535], [-77.677647, 38.364612], [-77.677467, 38.364767], [-77.677144, 38.3653], [-77.676657, 38.365735], [-77.675863, 38.36627], [-77.67449, 38.367045], [-77.674192, 38.367291], [-77.673995, 38.367697], [-77.673796, 38.367827], [-77.673769, 38.367845], [-77.673688, 38.367978], [-77.673466, 38.368672], [-77.673088, 38.369233], [-77.67244, 38.369935], [-77.671799, 38.37033], [-77.671609, 38.370428], [-77.671446, 38.370513], [-77.671364, 38.370464], [-77.67093, 38.370508], [-77.670514, 38.370663], [-77.670332, 38.370636], [-77.670169, 38.37072], [-77.66988, 38.370749], [-77.668346, 38.370482], [-77.668066, 38.370658], [-77.667794, 38.370616], [-77.667713, 38.370659], [-77.667077, 38.370472], [-77.666507, 38.370677], [-77.66619, 38.370629], [-77.665719, 38.370813], [-77.665583, 38.370792], [-77.664716, 38.371243], [-77.663271, 38.372207], [-77.661906, 38.372855], [-77.66167, 38.372856], [-77.661245, 38.373047], [-77.661055, 38.373054], [-77.660513, 38.373336], [-77.660331, 38.373309], [-77.660006, 38.373478], [-77.659862, 38.373674], [-77.659482, 38.373871], [-77.65933, 38.374103], [-77.659113, 38.374228], [-77.658778, 38.37442], [-77.658633, 38.374434], [-77.657657, 38.374942], [-77.657633, 38.375008], [-77.657622, 38.375108], [-77.656935, 38.375404], [-77.656572, 38.37535], [-77.65612, 38.375554], [-77.655655, 38.375491], [-77.65561, 38.375485], [-77.655601, 38.375484], [-77.655587, 38.375482], [-77.655572, 38.37548], [-77.655229, 38.375434], [-77.654959, 38.375397], [-77.65485, 38.375453], [-77.654569, 38.375447], [-77.653608, 38.375339], [-77.653391, 38.375451], [-77.653028, 38.375397], [-77.652774, 38.375467], [-77.652013, 38.375781], [-77.651933, 38.375813], [-77.65159, 38.376004], [-77.650234, 38.376757], [-77.64933, 38.377166], [-77.649194, 38.377145], [-77.648236, 38.377582], [-77.6481, 38.377562], [-77.647948, 38.377641], [-77.647666, 38.377787], [-77.647257, 38.377725], [-77.646959, 38.377789], [-77.646687, 38.37793], [-77.646071, 38.377946], [-77.645746, 38.378115], [-77.645097, 38.378017], [-77.644748, 38.377965], [-77.644514, 38.377875], [-77.644275, 38.377784], [-77.642969, 38.377551], [-77.64285, 38.37746], [-77.642487, 38.377405], [-77.642325, 38.37749], [-77.642097, 38.377481], [-77.641998, 38.377477], [-77.641689, 38.377394], [-77.641667, 38.377378], [-77.641407, 38.377206], [-77.641364, 38.377199], [-77.641181, 38.377171], [-77.641084, 38.377065], [-77.64015, 38.376034], [-77.64005, 38.376055], [-77.639312, 38.375253], [-77.639185, 38.375197], [-77.639075, 38.375072], [-77.639092, 38.375009], [-77.639083, 38.374828], [-77.638517, 38.374088], [-77.638516, 38.373906], [-77.638086, 38.373187], [-77.638112, 38.373081], [-77.637145, 38.371881], [-77.637107, 38.371657], [-77.637196, 38.371307], [-77.637494, 38.371061], [-77.638253, 38.370666], [-77.638697, 38.370588], [-77.63906, 38.370643], [-77.639794, 38.370535], [-77.640119, 38.370366], [-77.641196, 38.37002], [-77.642443, 38.369372], [-77.642741, 38.369126], [-77.643571, 38.368144], [-77.643614, 38.368094], [-77.644, 38.367316], [-77.644214, 38.366658], [-77.644505, 38.365138], [-77.644522, 38.365068], [-77.644482, 38.364298], [-77.644588, 38.363878], [-77.644524, 38.363759], [-77.644586, 38.363514], [-77.644503, 38.363283], [-77.644509, 38.362702], [-77.644413, 38.362453], [-77.644169, 38.361815], [-77.643858, 38.361368], [-77.643731, 38.361312], [-77.643476, 38.361019], [-77.643158, 38.360971], [-77.642849, 38.360706], [-77.641995, 38.360359], [-77.641849, 38.360192], [-77.641532, 38.360144], [-77.641177, 38.359872], [-77.640541, 38.359594], [-77.640358, 38.359385], [-77.640086, 38.359343], [-77.63985, 38.359162], [-77.639504, 38.359037], [-77.638552, 38.358893], [-77.638262, 38.358922], [-77.6381, 38.359007], [-77.637991, 38.359063], [-77.637719, 38.359022], [-77.637321, 38.359107], [-77.637104, 38.35922], [-77.636696, 38.359158], [-77.636297, 38.359244], [-77.63608, 38.359356], [-77.635573, 38.359316], [-77.635193, 38.359513], [-77.634966, 38.359479], [-77.634089, 38.359783], [-77.63342, 38.360191], [-77.633096, 38.360542], [-77.632925, 38.360843], [-77.632817, 38.3609], [-77.632448, 38.361426], [-77.632152, 38.362035], [-77.631424, 38.363053], [-77.631137, 38.363627], [-77.630995, 38.36437], [-77.630887, 38.364426], [-77.630663, 38.364938], [-77.630383, 38.365305], [-77.630349, 38.36535], [-77.63024, 38.365492], [-77.630023, 38.365605], [-77.629825, 38.365829], [-77.629646, 38.366348], [-77.62943, 38.366642], [-77.629142, 38.366853], [-77.628974, 38.367066], [-77.628947, 38.367101], [-77.62892, 38.367135], [-77.62887, 38.367199], [-77.628814, 38.36727], [-77.628655, 38.367471], [-77.628575, 38.367786], [-77.628359, 38.36808], [-77.627248, 38.368749], [-77.626795, 38.368862], [-77.62656, 38.368863], [-77.625979, 38.368739], [-77.625795, 38.368642], [-77.625634, 38.368558], [-77.625397, 38.368433], [-77.625236, 38.368409], [-77.624989, 38.368371], [-77.624881, 38.368427], [-77.624731, 38.368404], [-77.624723, 38.368403], [-77.624695, 38.368399], [-77.624605, 38.368385], [-77.624518, 38.368372], [-77.624406, 38.368396], [-77.624233, 38.368433], [-77.623197, 38.368436], [-77.623079, 38.368473], [-77.622859, 38.36846], [-77.622779, 38.36844], [-77.622107, 38.368269], [-77.62192, 38.368221], [-77.621907, 38.368218], [-77.621884, 38.368213], [-77.621634, 38.368158], [-77.620704, 38.368061], [-77.620165, 38.368038], [-77.619973, 38.368031], [-77.619477, 38.36801], [-77.619197, 38.367948], [-77.618918, 38.367885], [-77.618811, 38.367861], [-77.618729, 38.367843], [-77.618748, 38.367912], [-77.618766, 38.367982], [-77.618835, 38.36825], [-77.618849, 38.368275], [-77.619123, 38.368704], [-77.619187, 38.368946], [-77.619296, 38.36942], [-77.619212, 38.369748], [-77.619112, 38.370446], [-77.619121, 38.371147], [-77.619497, 38.371877], [-77.61986, 38.372374], [-77.620145, 38.372724], [-77.620246, 38.37312], [-77.62028, 38.373329], [-77.620115, 38.373814], [-77.61978, 38.374406], [-77.619459, 38.374675], [-77.619261, 38.374842], [-77.619063, 38.375008], [-77.619012, 38.37505], [-77.618962, 38.375093], [-77.618912, 38.375135], [-77.619112, 38.375335], [-77.619012, 38.375535], [-77.618912, 38.375835], [-77.619012, 38.376135], [-77.619012, 38.376835], [-77.619212, 38.377635], [-77.619612, 38.378235], [-77.620212, 38.379035], [-77.620712, 38.379735], [-77.620912, 38.380035], [-77.621012, 38.380935], [-77.621112, 38.381635], [-77.620912, 38.382235], [-77.620812, 38.382635], [-77.620812, 38.383435], [-77.620712, 38.384035], [-77.620512, 38.384635], [-77.620512, 38.385635], [-77.620812, 38.386235], [-77.621012, 38.386735], [-77.621112, 38.387135], [-77.621112, 38.387535], [-77.621212, 38.388135], [-77.621412, 38.388735], [-77.621812, 38.389235], [-77.622312, 38.389835], [-77.623312, 38.390635], [-77.623912, 38.390835], [-77.624412, 38.391035], [-77.624712, 38.391297], [-77.628254, 38.391749], [-77.628983, 38.391842], [-77.629709, 38.391935], [-77.630312, 38.392135], [-77.630912, 38.392235], [-77.631512, 38.392435], [-77.632012, 38.392435], [-77.632412, 38.392535], [-77.632712, 38.392635], [-77.632912, 38.392735], [-77.633112, 38.392935], [-77.633198, 38.393106], [-77.633212, 38.393135], [-77.633253, 38.393251], [-77.633298, 38.393435], [-77.633324, 38.393618], [-77.633377, 38.393993], [-77.633378, 38.394], [-77.633389, 38.394081], [-77.633368, 38.394371], [-77.633278, 38.394797], [-77.633148, 38.395279], [-77.633012, 38.395735], [-77.632812, 38.396135], [-77.632612, 38.396335], [-77.632512, 38.396535], [-77.632312, 38.396735], [-77.63239, 38.396971], [-77.632397, 38.396992], [-77.632413, 38.397008], [-77.63243, 38.397026], [-77.632456, 38.397053], [-77.632607, 38.397144], [-77.632799, 38.397381], [-77.632826, 38.397414], [-77.632831, 38.39742], [-77.632836, 38.397427], [-77.632954, 38.397577], [-77.633256, 38.397891], [-77.633374, 38.397987], [-77.633474, 38.398023], [-77.633481, 38.398026], [-77.633494, 38.39803], [-77.633501, 38.398032], [-77.633519, 38.398038], [-77.633797, 38.398161], [-77.634049, 38.398251], [-77.634061, 38.398257], [-77.634078, 38.398261], [-77.634123, 38.398298], [-77.634129, 38.398303], [-77.634212, 38.398369], [-77.634218, 38.398374], [-77.634261, 38.398452], [-77.634279, 38.398496], [-77.634391, 38.398741], [-77.634499, 38.399128], [-77.634477, 38.399488], [-77.634431, 38.399714], [-77.634353, 38.400027], [-77.634343, 38.400241], [-77.634341, 38.400248], [-77.634312, 38.400335], [-77.634112, 38.401135], [-77.634012, 38.401635], [-77.634012, 38.402035], [-77.634112, 38.402435], [-77.634112, 38.402735], [-77.634066, 38.402908], [-77.634023, 38.403134], [-77.633868, 38.403526], [-77.633714, 38.403864], [-77.63347, 38.404293], [-77.633321, 38.404694], [-77.633207, 38.405003], [-77.633094, 38.405207], [-77.63309, 38.405214], [-77.632911, 38.405931], [-77.632738, 38.4064], [-77.632651, 38.406601], [-77.632608, 38.406768], [-77.632564, 38.406902], [-77.632554, 38.406917], [-77.632518, 38.406969], [-77.632512, 38.407003], [-77.632495, 38.407093], [-77.632459, 38.407281], [-77.632456, 38.407297], [-77.63244, 38.407378], [-77.632503, 38.407592], [-77.632507, 38.407605], [-77.632511, 38.407619], [-77.632514, 38.407627], [-77.632516, 38.407635], [-77.632525, 38.407665], [-77.632607, 38.40794], [-77.632643, 38.408064], [-77.632926, 38.408434], [-77.63313, 38.408811], [-77.633202, 38.408945], [-77.633212, 38.408963], [-77.633247, 38.409027], [-77.633341, 38.409136], [-77.633423, 38.40923], [-77.633521, 38.409342], [-77.633526, 38.409348], [-77.633575, 38.409404], [-77.63364, 38.409432], [-77.633891, 38.409542], [-77.633957, 38.409571], [-77.634021, 38.409581], [-77.634198, 38.409608], [-77.634256, 38.409617], [-77.634277, 38.40962], [-77.63429, 38.409622], [-77.634293, 38.409622], [-77.634364, 38.409633], [-77.634384, 38.409636], [-77.634411, 38.40964], [-77.634422, 38.409647], [-77.634451, 38.409664], [-77.634458, 38.409668], [-77.634476, 38.409679], [-77.634594, 38.409693], [-77.634837, 38.409721], [-77.634834, 38.40975], [-77.63483, 38.409789], [-77.634826, 38.409825], [-77.634822, 38.409864], [-77.634821, 38.409871], [-77.63482, 38.409883], [-77.634904, 38.409999], [-77.634943, 38.410053], [-77.634944, 38.410068], [-77.63495, 38.410129], [-77.634936, 38.4103], [-77.634914, 38.410481], [-77.63488, 38.410623], [-77.634818, 38.410794], [-77.634816, 38.410799], [-77.634782, 38.410892], [-77.634687, 38.411091], [-77.634656, 38.411156], [-77.634509, 38.411381], [-77.634342, 38.411606], [-77.633957, 38.411974], [-77.633839, 38.412182], [-77.633832, 38.412207], [-77.633828, 38.412221], [-77.633811, 38.412281], [-77.633825, 38.412336], [-77.633866, 38.412418], [-77.634027, 38.412693], [-77.634103, 38.412858], [-77.634152, 38.412995], [-77.634208, 38.413495], [-77.634214, 38.413742], [-77.634256, 38.413961], [-77.634312, 38.414175], [-77.634361, 38.414313], [-77.634416, 38.414395], [-77.634681, 38.414686], [-77.634918, 38.4149], [-77.635002, 38.414944], [-77.635107, 38.415016], [-77.635239, 38.415175], [-77.635252, 38.415249], [-77.635267, 38.415329], [-77.635253, 38.415395], [-77.635218, 38.415472], [-77.635085, 38.41562], [-77.635016, 38.41573], [-77.634932, 38.415922], [-77.634785, 38.416059], [-77.634701, 38.416114], [-77.634555, 38.41624], [-77.634359, 38.41647], [-77.63424, 38.416668], [-77.634219, 38.416767], [-77.634219, 38.416844], [-77.63424, 38.416954], [-77.634316, 38.417224], [-77.634364, 38.417392], [-77.6344, 38.417519], [-77.634525, 38.418057], [-77.634483, 38.418216], [-77.634407, 38.41842], [-77.634211, 38.419172], [-77.634155, 38.419314], [-77.634099, 38.419408], [-77.634061, 38.419451], [-77.634022, 38.419495], [-77.633875, 38.419616], [-77.633847, 38.419627], [-77.633722, 38.419644], [-77.633247, 38.419835], [-77.632828, 38.419967], [-77.632437, 38.420121], [-77.632193, 38.420175], [-77.631886, 38.420258], [-77.631559, 38.420352], [-77.631519, 38.420364], [-77.631258, 38.420439], [-77.631193, 38.42045], [-77.63113, 38.420461], [-77.631006, 38.420482], [-77.630888, 38.420521], [-77.630783, 38.420581], [-77.630553, 38.420762], [-77.630441, 38.420905], [-77.630418, 38.420941], [-77.63038, 38.421001], [-77.630371, 38.421015], [-77.630342, 38.421082], [-77.63021, 38.421386], [-77.630203, 38.421402], [-77.630034, 38.421787], [-77.629958, 38.421964], [-77.629804, 38.42227], [-77.629777, 38.422324], [-77.62977, 38.422337], [-77.629707, 38.422486], [-77.6297, 38.422535], [-77.629707, 38.42259], [-77.62979, 38.422755], [-77.630153, 38.423342], [-77.630257, 38.423469], [-77.630425, 38.423606], [-77.630488, 38.423672], [-77.630627, 38.423831], [-77.630766, 38.424034], [-77.630808, 38.424232], [-77.630792, 38.424347], [-77.630787, 38.42438], [-77.630703, 38.424671], [-77.630696, 38.424863], [-77.63071, 38.424935], [-77.630773, 38.4251], [-77.631044, 38.425649], [-77.631156, 38.425929], [-77.631163, 38.426006], [-77.631156, 38.426072], [-77.631114, 38.426137], [-77.630953, 38.426302], [-77.630925, 38.42634], [-77.630911, 38.426406], [-77.630939, 38.4265], [-77.63112, 38.426714], [-77.631148, 38.426791], [-77.631141, 38.426835], [-77.631009, 38.42695], [-77.630939, 38.427032], [-77.630925, 38.427076], [-77.630925, 38.427126], [-77.630973, 38.427362], [-77.631036, 38.427582], [-77.631037, 38.427587], [-77.63105, 38.427631], [-77.631175, 38.427872], [-77.631231, 38.427933], [-77.631427, 38.428076], [-77.631643, 38.428158], [-77.631706, 38.428191], [-77.631754, 38.42823], [-77.631789, 38.428317], [-77.631733, 38.428449], [-77.631384, 38.428828], [-77.630979, 38.429239], [-77.630867, 38.429333], [-77.630742, 38.42942], [-77.630497, 38.429656], [-77.630343, 38.429788], [-77.630225, 38.42987], [-77.629876, 38.430079], [-77.629771, 38.430117], [-77.62968, 38.430139], [-77.629561, 38.430139], [-77.629524, 38.430135], [-77.629449, 38.430127], [-77.62915, 38.430095], [-77.629115, 38.4301], [-77.629045, 38.430144], [-77.62902, 38.430182], [-77.628928, 38.430323], [-77.628877, 38.430402], [-77.628689, 38.430638], [-77.628605, 38.430775], [-77.628535, 38.431017], [-77.628521, 38.43127], [-77.628492, 38.431489], [-77.628464, 38.431643], [-77.628422, 38.43178], [-77.628371, 38.431843], [-77.62833, 38.431932], [-77.628281, 38.432118], [-77.628285, 38.432172], [-77.628289, 38.432218], [-77.6283, 38.432268], [-77.628359, 38.432274], [-77.628416, 38.432335], [-77.62843, 38.43235], [-77.6284, 38.432343], [-77.628312, 38.432321], [-77.628282, 38.432314], [-77.628311, 38.432755], [-77.628132, 38.433092], [-77.628093, 38.433356], [-77.628065, 38.433427], [-77.628072, 38.433487], [-77.628226, 38.433811], [-77.628302, 38.434113], [-77.628344, 38.434223], [-77.628407, 38.434344], [-77.628595, 38.434613], [-77.628909, 38.434959], [-77.628964, 38.435036], [-77.628978, 38.435097], [-77.628985, 38.435173], [-77.628845, 38.435728], [-77.628782, 38.436205], [-77.628775, 38.436304], [-77.628803, 38.436623], [-77.62876, 38.437089], [-77.628781, 38.437309], [-77.628907, 38.437567], [-77.628928, 38.437649], [-77.628934, 38.437831], [-77.628927, 38.438094], [-77.628892, 38.438451], [-77.628909, 38.438529], [-77.628927, 38.43861], [-77.628969, 38.438687], [-77.629045, 38.438792], [-77.629115, 38.438846], [-77.62931, 38.438973], [-77.629834, 38.439275], [-77.630266, 38.439517], [-77.630343, 38.439533], [-77.630469, 38.439605], [-77.631083, 38.439896], [-77.631181, 38.439956], [-77.63139, 38.440143], [-77.631599, 38.440363], [-77.631725, 38.440533], [-77.631892, 38.440896], [-77.632038, 38.441093], [-77.632157, 38.441203], [-77.63238, 38.441368], [-77.633204, 38.441857], [-77.633287, 38.441885], [-77.633371, 38.441956], [-77.633776, 38.442192], [-77.633846, 38.442253], [-77.633894, 38.442329], [-77.633901, 38.442384], [-77.633894, 38.44245], [-77.633854, 38.442561], [-77.633842, 38.442594], [-77.633817, 38.442665], [-77.633803, 38.442703], [-77.633793, 38.442755], [-77.633782, 38.442818], [-77.633803, 38.443003], [-77.633804, 38.443016], [-77.63381, 38.443065], [-77.633803, 38.443191], [-77.633761, 38.443384], [-77.633691, 38.443614], [-77.633649, 38.443707], [-77.633509, 38.443905], [-77.633488, 38.443982], [-77.633481, 38.444081], [-77.633516, 38.444245], [-77.633614, 38.44452], [-77.633638, 38.444576], [-77.633656, 38.444617], [-77.633676, 38.444663], [-77.633683, 38.444729], [-77.633781, 38.444877], [-77.633823, 38.44502], [-77.633823, 38.445047], [-77.633802, 38.445091], [-77.633725, 38.445212], [-77.633599, 38.445245], [-77.632824, 38.445277], [-77.63272, 38.445288], [-77.632559, 38.445327], [-77.632405, 38.445343], [-77.632231, 38.445343], [-77.63207, 38.445321], [-77.631966, 38.445299], [-77.6317, 38.445205], [-77.631589, 38.4452], [-77.631351, 38.445222], [-77.631198, 38.44526], [-77.631054, 38.445305], [-77.630883, 38.445359], [-77.630339, 38.445666], [-77.630185, 38.445781], [-77.629968, 38.445968], [-77.629843, 38.446171], [-77.629717, 38.446577], [-77.62971, 38.446698], [-77.629717, 38.446786], [-77.629793, 38.446961], [-77.629961, 38.447198], [-77.630086, 38.447439], [-77.630121, 38.447692], [-77.630118, 38.44774], [-77.630107, 38.447917], [-77.630065, 38.448219], [-77.630014, 38.448371], [-77.62999, 38.448445], [-77.629889, 38.448987], [-77.629854, 38.449081], [-77.629785, 38.449147], [-77.629666, 38.449212], [-77.629414, 38.449295], [-77.629226, 38.449377], [-77.629023, 38.449514], [-77.62887, 38.449585], [-77.628786, 38.449618], [-77.628402, 38.449689], [-77.628283, 38.449722], [-77.62815, 38.449805], [-77.628101, 38.449854], [-77.628074, 38.44992], [-77.628073, 38.449997], [-77.628118, 38.450154], [-77.628129, 38.450194], [-77.628172, 38.450299], [-77.628373, 38.450788], [-77.62861, 38.451249], [-77.628617, 38.451424], [-77.6286, 38.451488], [-77.628596, 38.451501], [-77.628573, 38.451562], [-77.628547, 38.451633], [-77.628428, 38.451847], [-77.628407, 38.451935], [-77.62841, 38.451979], [-77.628414, 38.452028], [-77.628435, 38.452083], [-77.628464, 38.452118], [-77.628558, 38.452231], [-77.628658, 38.452353], [-77.628694, 38.452396], [-77.628721, 38.452429], [-77.628812, 38.452517], [-77.62923, 38.452819], [-77.629426, 38.453039], [-77.629586, 38.453187], [-77.629698, 38.45327], [-77.629802, 38.453363], [-77.629914, 38.453495], [-77.630087, 38.453776], [-77.630137, 38.453857], [-77.630179, 38.454044], [-77.630202, 38.454075], [-77.630207, 38.454082], [-77.630266, 38.454139], [-77.630332, 38.454203], [-77.630479, 38.454407], [-77.630528, 38.454445], [-77.630821, 38.454566], [-77.630891, 38.454604], [-77.630995, 38.454709], [-77.631081, 38.454854], [-77.631085, 38.454861], [-77.631184, 38.455027], [-77.631253, 38.455175], [-77.63133, 38.455269], [-77.631526, 38.455423], [-77.631595, 38.455489], [-77.631686, 38.455604], [-77.631763, 38.455824], [-77.631797, 38.45612], [-77.63179, 38.456466], [-77.631699, 38.457169], [-77.631587, 38.457498], [-77.631405, 38.457866], [-77.631363, 38.457981], [-77.631265, 38.458327], [-77.631223, 38.458673], [-77.631167, 38.458903], [-77.631111, 38.459068], [-77.631146, 38.459249], [-77.631188, 38.459326], [-77.631278, 38.459463], [-77.631397, 38.459595], [-77.631435, 38.459626], [-77.631557, 38.459727], [-77.631739, 38.459897], [-77.631864, 38.460002], [-77.631971, 38.46007], [-77.632081, 38.460139], [-77.632167, 38.460185], [-77.632174, 38.460189], [-77.632234, 38.460221], [-77.632325, 38.460249], [-77.632472, 38.460266], [-77.632814, 38.460282], [-77.632926, 38.460304], [-77.633016, 38.46037], [-77.633117, 38.460538], [-77.633167, 38.460623], [-77.633177, 38.460639], [-77.633254, 38.4607], [-77.633456, 38.460815], [-77.633533, 38.460903], [-77.63357, 38.460959], [-77.633586, 38.460983], [-77.633609, 38.461018], [-77.633637, 38.461101], [-77.63363, 38.461127], [-77.633626, 38.461144], [-77.633616, 38.461183], [-77.633581, 38.461249], [-77.633532, 38.461309], [-77.633414, 38.461391], [-77.633267, 38.461468], [-77.632876, 38.461572], [-77.632282, 38.461693], [-77.63215, 38.461748], [-77.632003, 38.461836], [-77.631898, 38.461918], [-77.631849, 38.462011], [-77.631758, 38.462291], [-77.631751, 38.462357], [-77.631758, 38.462428], [-77.631786, 38.462478], [-77.63181, 38.462502], [-77.631815, 38.462508], [-77.631838, 38.462531], [-77.631866, 38.46256], [-77.632051, 38.462752], [-77.632198, 38.462868], [-77.632344, 38.462934], [-77.632498, 38.462989], [-77.6327, 38.463038], [-77.632999, 38.463082], [-77.633029, 38.463086], [-77.633224, 38.463115], [-77.633336, 38.463154], [-77.633468, 38.463225], [-77.633594, 38.463341], [-77.633685, 38.463439], [-77.633901, 38.463769], [-77.633985, 38.46395], [-77.634131, 38.464318], [-77.634152, 38.4644], [-77.634159, 38.464516], [-77.634047, 38.464785], [-77.633949, 38.465213], [-77.633942, 38.465356], [-77.633949, 38.465455], [-77.634025, 38.465877], [-77.634053, 38.466174], [-77.634018, 38.466278], [-77.633948, 38.46636], [-77.633843, 38.466563], [-77.633822, 38.466618], [-77.633822, 38.466701], [-77.6332, 38.467123], [-77.632949, 38.46731], [-77.632817, 38.467364], [-77.632757, 38.467388], [-77.632655, 38.46743], [-77.632599, 38.467463], [-77.632544, 38.467524], [-77.632488, 38.467606], [-77.63246, 38.467672], [-77.632453, 38.467831], [-77.632519, 38.46804], [-77.632521, 38.468046], [-77.632557, 38.468161], [-77.632606, 38.468259], [-77.632669, 38.468441], [-77.632697, 38.468605], [-77.632682, 38.468704], [-77.632571, 38.468984], [-77.632298, 38.469385], [-77.632053, 38.46967], [-77.631907, 38.469818], [-77.631725, 38.469967], [-77.631616, 38.470068], [-77.627698, 38.470252], [-77.627688, 38.470252], [-77.627297, 38.47027], [-77.627294, 38.470281], [-77.626641, 38.472963], [-77.626435, 38.47381], [-77.625878, 38.475483], [-77.623691, 38.475361], [-77.618802, 38.479386], [-77.615087, 38.482445], [-77.612817, 38.484314], [-77.612649, 38.484453], [-77.612638, 38.484462], [-77.611061, 38.485766], [-77.608424, 38.487947], [-77.602127, 38.493158], [-77.602096, 38.493184], [-77.601886, 38.493358], [-77.601548, 38.493637], [-77.601542, 38.493642], [-77.601536, 38.493648], [-77.601525, 38.493657], [-77.601508, 38.493671], [-77.601479, 38.493695], [-77.601446, 38.493722], [-77.60144, 38.493727], [-77.601435, 38.493731], [-77.601356, 38.493796], [-77.60129, 38.493851], [-77.600439, 38.494555], [-77.600274, 38.494692], [-77.600087, 38.494847], [-77.599821, 38.495067], [-77.59952, 38.495316], [-77.599335, 38.495469], [-77.599289, 38.495507], [-77.596093, 38.498169], [-77.594865, 38.499192], [-77.594701, 38.499329], [-77.594573, 38.499436], [-77.594508, 38.49949], [-77.59449, 38.499505], [-77.594482, 38.499511], [-77.594476, 38.499516], [-77.594393, 38.499585], [-77.592888, 38.500839], [-77.588935, 38.504135], [-77.588653, 38.50437], [-77.583061, 38.508929], [-77.583031, 38.508954], [-77.582759, 38.509176], [-77.582677, 38.509243], [-77.582656, 38.50926], [-77.582649, 38.509265], [-77.582638, 38.509274], [-77.582541, 38.509353], [-77.582436, 38.509439], [-77.581764, 38.509987], [-77.581674, 38.510061], [-77.581479, 38.51022], [-77.581015, 38.510599], [-77.580623, 38.510919], [-77.580593, 38.510943], [-77.580586, 38.510949], [-77.580574, 38.510959], [-77.580205, 38.51126], [-77.579715, 38.51166], [-77.579664, 38.511704], [-77.579149, 38.512062], [-77.579136, 38.512071], [-77.579052, 38.512132], [-77.579014, 38.512158], [-77.578867, 38.512258], [-77.578365, 38.512603], [-77.577723, 38.513089], [-77.577078, 38.513577], [-77.576968, 38.51366], [-77.576826, 38.513768], [-77.576821, 38.513772], [-77.576813, 38.513778], [-77.576763, 38.513816], [-77.576739, 38.513834], [-77.57278, 38.516841], [-77.572175, 38.517294], [-77.571167, 38.51805], [-77.571132, 38.518076], [-77.571046, 38.518141], [-77.571004, 38.518173], [-77.568351, 38.520185], [-77.56562, 38.522665], [-77.565523, 38.522753], [-77.562341, 38.525643], [-77.560869, 38.52706], [-77.560838, 38.52709], [-77.554598, 38.533107], [-77.549182, 38.538326], [-77.549171, 38.538336], [-77.549164, 38.538342], [-77.549104, 38.538395], [-77.549032, 38.538465], [-77.548771, 38.538721], [-77.548591, 38.538901], [-77.546491, 38.540997], [-77.543387, 38.544094], [-77.539108, 38.548364], [-77.536317, 38.55115], [-77.536133, 38.551313], [-77.533422, 38.553716], [-77.530916, 38.555937], [-77.530909, 38.555943], [-77.530085, 38.556609], [-77.529535, 38.557062], [-77.529191, 38.557345], [-77.529076, 38.557439], [-77.528939, 38.55755], [-77.527454, 38.558747], [-77.525242, 38.560531], [-77.517442, 38.566819], [-77.51681, 38.567329], [-77.515835, 38.568104], [-77.513914, 38.569624], [-77.50481, 38.577629], [-77.504675, 38.577749], [-77.503966, 38.578379], [-77.50391, 38.578429], [-77.497525, 38.582947], [-77.497464, 38.583043], [-77.497216, 38.583355], [-77.497039, 38.583502], [-77.49687, 38.583681], [-77.496863, 38.584082], [-77.496891, 38.58428], [-77.496886, 38.584543], [-77.496768, 38.58498], [-77.496733, 38.585173], [-77.496767, 38.585556], [-77.496655, 38.585746], [-77.496598, 38.585928], [-77.496648, 38.586169], [-77.496651, 38.586438], [-77.496585, 38.586565], [-77.496465, 38.586727], [-77.496289, 38.586907], [-77.495985, 38.587232], [-77.495412, 38.58765], [-77.495187, 38.587826], [-77.494957, 38.58805], [-77.494878, 38.588195], [-77.494809, 38.588416], [-77.494754, 38.588648], [-77.494646, 38.58876], [-77.494521, 38.588795], [-77.494353, 38.588794], [-77.493802, 38.588641], [-77.493641, 38.588644], [-77.493587, 38.5887], [-77.493589, 38.588766], [-77.493608, 38.588892], [-77.493599, 38.589035], [-77.493448, 38.589137], [-77.493221, 38.58923], [-77.493032, 38.589256], [-77.492718, 38.589284], [-77.492567, 38.589353], [-77.492444, 38.589427], [-77.492316, 38.589573], [-77.492163, 38.589807], [-77.491826, 38.590385], [-77.49174, 38.59075], [-77.491667, 38.590856], [-77.491571, 38.590907], [-77.491342, 38.59095], [-77.490393, 38.591047], [-77.490072, 38.591065], [-77.489515, 38.59116], [-77.488995, 38.591302], [-77.488721, 38.591462], [-77.488279, 38.591625], [-77.488043, 38.59168], [-77.487829, 38.591783], [-77.487533, 38.591905], [-77.487318, 38.591964], [-77.486822, 38.592013], [-77.486506, 38.591959], [-77.486153, 38.591874], [-77.485977, 38.591861], [-77.485639, 38.591994], [-77.485513, 38.591992], [-77.485359, 38.591978], [-77.485184, 38.591999], [-77.485012, 38.592068], [-77.4849, 38.592082], [-77.484765, 38.592024], [-77.484622, 38.591928], [-77.483894, 38.591526], [-77.483793, 38.591418], [-77.483684, 38.591316], [-77.483572, 38.591302], [-77.483405, 38.59135], [-77.483228, 38.591474], [-77.483058, 38.591626], [-77.482969, 38.591689], [-77.48283, 38.591703], [-77.482652, 38.591624], [-77.482568, 38.591631], [-77.482465, 38.591666], [-77.482377, 38.591756], [-77.482198, 38.591859], [-77.482045, 38.591868], [-77.48192, 38.591909], [-77.481797, 38.59201], [-77.481739, 38.592127], [-77.481709, 38.592287], [-77.481684, 38.592364], [-77.481594, 38.59241], [-77.48149, 38.59244], [-77.48128, 38.592433], [-77.480884, 38.592507], [-77.480806, 38.592471], [-77.48064, 38.592348], [-77.480487, 38.592164], [-77.480114, 38.591903], [-77.479951, 38.59184], [-77.479545, 38.591833], [-77.479252, 38.591861], [-77.478761, 38.591827], [-77.478515, 38.591789], [-77.478208, 38.591839], [-77.478048, 38.591842], [-77.477893, 38.591813], [-77.477725, 38.591827], [-77.477601, 38.59189], [-77.477427, 38.592103], [-77.477344, 38.592143], [-77.477288, 38.592144], [-77.477141, 38.592125], [-77.477109, 38.592136], [-77.477051, 38.592155], [-77.476919, 38.592185], [-77.476772, 38.592199], [-77.476659, 38.592152], [-77.476621, 38.592065], [-77.47652, 38.591996], [-77.476387, 38.591982], [-77.476115, 38.59201], [-77.475974, 38.591787], [-77.47588, 38.591685], [-77.47578, 38.591638], [-77.475667, 38.591618], [-77.475547, 38.591582], [-77.475409, 38.591437], [-77.475246, 38.591369], [-77.475041, 38.591307], [-77.474954, 38.59121], [-77.474852, 38.590916], [-77.474756, 38.590753], [-77.47459, 38.590597], [-77.474425, 38.590496], [-77.474057, 38.590367], [-77.47373, 38.59022], [-77.473569, 38.590234], [-77.473417, 38.590271], [-77.473222, 38.590297], [-77.473068, 38.5903], [-77.472948, 38.59027], [-77.47284, 38.5902], [-77.472379, 38.589798], [-77.472165, 38.589682], [-77.471769, 38.589575], [-77.471417, 38.589522], [-77.47131, 38.589442], [-77.47124, 38.589246], [-77.471212, 38.589054], [-77.471166, 38.588912], [-77.47107, 38.588788], [-77.470875, 38.5886], [-77.470854, 38.588391], [-77.470919, 38.587852], [-77.470965, 38.587746], [-77.4711, 38.587623], [-77.471146, 38.587523], [-77.471026, 38.587278], [-77.471008, 38.587174], [-77.47101, 38.587021], [-77.470929, 38.586907], [-77.470762, 38.586729], [-77.470584, 38.586656], [-77.470313, 38.586491], [-77.470226, 38.586405], [-77.470189, 38.586346], [-77.47015, 38.586248], [-77.470179, 38.586071], [-77.47018, 38.585879], [-77.470091, 38.585749], [-77.469955, 38.585648], [-77.469734, 38.585543], [-77.469444, 38.58545], [-77.468937, 38.585356], [-77.468816, 38.585287], [-77.468675, 38.585274], [-77.468404, 38.585307], [-77.468248, 38.585255], [-77.468176, 38.585202], [-77.46811, 38.585121], [-77.468127, 38.585], [-77.468275, 38.584821], [-77.468464, 38.584625], [-77.46857, 38.584447], [-77.468585, 38.58426], [-77.468509, 38.584085], [-77.468305, 38.583848], [-77.468141, 38.583769], [-77.467782, 38.5837], [-77.467502, 38.583513], [-77.467336, 38.583363], [-77.467197, 38.583168], [-77.467023, 38.582985], [-77.466824, 38.582693], [-77.466642, 38.582493], [-77.466495, 38.582288], [-77.466491, 38.582167], [-77.466538, 38.582117], [-77.466635, 38.582082], [-77.466823, 38.58205], [-77.466912, 38.581999], [-77.466916, 38.581906], [-77.466711, 38.581641], [-77.466472, 38.58142], [-77.466153, 38.581301], [-77.46592, 38.581245], [-77.465737, 38.581216], [-77.465617, 38.581164], [-77.46543, 38.581009], [-77.465382, 38.580642], [-77.465295, 38.580545], [-77.465159, 38.580465], [-77.465094, 38.5804], [-77.46502, 38.580276], [-77.464986, 38.580123], [-77.464975, 38.579986], [-77.464857, 38.579823], [-77.464591, 38.579604], [-77.464552, 38.579506], [-77.464566, 38.579291], [-77.464459, 38.579024], [-77.464377, 38.578889], [-77.464247, 38.578771], [-77.464119, 38.578713], [-77.463951, 38.578694], [-77.463722, 38.578765], [-77.463454, 38.578886], [-77.462961, 38.579204], [-77.462829, 38.57924], [-77.46271, 38.579231], [-77.462519, 38.579175], [-77.4624, 38.579172], [-77.462201, 38.579302], [-77.462077, 38.579355], [-77.46182, 38.579404], [-77.461583, 38.579425], [-77.461421, 38.579412], [-77.461323, 38.579184], [-77.461258, 38.579136], [-77.461019, 38.579097], [-77.460781, 38.579102], [-77.460546, 38.579183], [-77.460367, 38.57927], [-77.460174, 38.579351], [-77.460076, 38.579364], [-77.459908, 38.579362], [-77.459646, 38.579466], [-77.459471, 38.579453], [-77.459365, 38.579434], [-77.459202, 38.579371], [-77.459105, 38.579406], [-77.458955, 38.579503], [-77.458884, 38.579685], [-77.458821, 38.579901], [-77.458747, 38.579996], [-77.458631, 38.580059], [-77.458456, 38.580068], [-77.458226, 38.580095], [-77.458139, 38.580206], [-77.458036, 38.580263], [-77.457876, 38.5803], [-77.457729, 38.580286], [-77.457425, 38.580205], [-77.457251, 38.58023], [-77.45701, 38.580225], [-77.456992, 38.580225], [-77.456897, 38.58023], [-77.456817, 38.580234], [-77.45662, 38.580392], [-77.456488, 38.580411], [-77.456341, 38.580425], [-77.456189, 38.580467], [-77.456113, 38.580507], [-77.45606, 38.580585], [-77.455992, 38.58085], [-77.455868, 38.580929], [-77.455743, 38.580954], [-77.455645, 38.58094], [-77.455546, 38.580903], [-77.455449, 38.580933], [-77.455305, 38.581029], [-77.455165, 38.581038], [-77.45496, 38.580971], [-77.454819, 38.580941], [-77.454718, 38.580833], [-77.454572, 38.580666], [-77.454423, 38.580592], [-77.453426, 38.580508], [-77.45316, 38.580503], [-77.452919, 38.580607], [-77.452806, 38.580598], [-77.452687, 38.580579], [-77.452583, 38.580614], [-77.452473, 38.580677], [-77.452369, 38.580695], [-77.452278, 38.580686], [-77.452193, 38.580666], [-77.452138, 38.580684], [-77.452097, 38.580723], [-77.452093, 38.580811], [-77.452166, 38.580903], [-77.452154, 38.580969], [-77.452066, 38.581053], [-77.451817, 38.581141], [-77.451572, 38.581146], [-77.451204, 38.581], [-77.451056, 38.580981], [-77.450882, 38.581012], [-77.450758, 38.581053], [-77.450556, 38.58109], [-77.45038, 38.581061], [-77.449932, 38.580851], [-77.449785, 38.580843], [-77.449577, 38.580891], [-77.449069, 38.581193], [-77.448945, 38.581239], [-77.44884, 38.581247], [-77.448762, 38.581227], [-77.448711, 38.581151], [-77.448673, 38.581069], [-77.448719, 38.580986], [-77.448722, 38.580876], [-77.448685, 38.5808], [-77.448556, 38.580731], [-77.448422, 38.580696], [-77.448262, 38.580704], [-77.447924, 38.580635], [-77.447567, 38.580428], [-77.447414, 38.580261], [-77.447306, 38.580164], [-77.447192, 38.580112], [-77.447134, 38.580052], [-77.447088, 38.579949], [-77.447008, 38.579852], [-77.446929, 38.579782], [-77.44687, 38.579701], [-77.446818, 38.579603], [-77.446738, 38.579522], [-77.446643, 38.579404], [-77.44657, 38.579323], [-77.446533, 38.579252], [-77.446564, 38.579131], [-77.446687, 38.578826], [-77.446736, 38.578622], [-77.446745, 38.578484], [-77.446691, 38.578348], [-77.44658, 38.578158], [-77.446541, 38.578038], [-77.446543, 38.577895], [-77.446642, 38.577509], [-77.446615, 38.577328], [-77.446519, 38.577204], [-77.446218, 38.576979], [-77.445953, 38.576804], [-77.445781, 38.576675], [-77.445632, 38.576607], [-77.445552, 38.576526], [-77.445511, 38.576346], [-77.44545, 38.576193], [-77.445303, 38.575988], [-77.445108, 38.575827], [-77.444695, 38.575605], [-77.444255, 38.575411], [-77.444133, 38.575337], [-77.444032, 38.575251], [-77.44389, 38.575193], [-77.443742, 38.575164], [-77.443339, 38.575232], [-77.443122, 38.575237], [-77.442869, 38.575193], [-77.442697, 38.575081], [-77.442589, 38.574984], [-77.442487, 38.574866], [-77.442408, 38.574801], [-77.442309, 38.574771], [-77.442176, 38.574773], [-77.442029, 38.574765], [-77.441672, 38.574564], [-77.441551, 38.57449], [-77.441322, 38.574404], [-77.441253, 38.574378], [-77.441217, 38.574365], [-77.441179, 38.574358], [-77.441105, 38.574345], [-77.44097, 38.574277], [-77.440855, 38.574197], [-77.440754, 38.574105], [-77.440695, 38.574024], [-77.440627, 38.573883], [-77.440569, 38.573818], [-77.440383, 38.573674], [-77.440216, 38.573513], [-77.440024, 38.573407], [-77.439875, 38.573349], [-77.439671, 38.573326], [-77.439295, 38.573383], [-77.439143, 38.573431], [-77.439052, 38.573432], [-77.438979, 38.573352], [-77.438899, 38.573249], [-77.438819, 38.573179], [-77.43872, 38.573132], [-77.438594, 38.573129], [-77.438463, 38.573186], [-77.438271, 38.573295], [-77.438148, 38.573407], [-77.437996, 38.57346], [-77.437857, 38.573479], [-77.437702, 38.573444], [-77.437545, 38.573343], [-77.43745, 38.573246], [-77.437124, 38.573116], [-77.437003, 38.573041], [-77.436902, 38.57295], [-77.436727, 38.57275], [-77.436659, 38.572603], [-77.436619, 38.572445], [-77.436561, 38.57238], [-77.436447, 38.572328], [-77.436381, 38.572252], [-77.436312, 38.57205], [-77.435939, 38.571591], [-77.43587, 38.571395], [-77.435804, 38.571309], [-77.435733, 38.571068], [-77.435579, 38.570874], [-77.435512, 38.570743], [-77.43547, 38.570552], [-77.435338, 38.570373], [-77.435182, 38.570305], [-77.435077, 38.570302], [-77.434905, 38.570388], [-77.434714, 38.570546], [-77.434612, 38.570614], [-77.434438, 38.570639], [-77.434149, 38.570569], [-77.433914, 38.570447], [-77.43354, 38.570153], [-77.43344, 38.5701], [-77.43316, 38.5701], [-77.43306, 38.570036], [-77.432816, 38.569437], [-77.432524, 38.568861], [-77.43241, 38.568594], [-77.432316, 38.568091], [-77.43219, 38.567885], [-77.431999, 38.567614], [-77.431744, 38.567328], [-77.431569, 38.567107], [-77.431353, 38.566936], [-77.431223, 38.566812], [-77.43081, 38.56637], [-77.430608, 38.566215], [-77.430346, 38.566105], [-77.430077, 38.566028], [-77.429838, 38.565973], [-77.428817, 38.565796], [-77.428569, 38.565686], [-77.428304, 38.565521], [-77.427816, 38.565147], [-77.42756, 38.565032], [-77.427185, 38.564902], [-77.426804, 38.564806], [-77.426615, 38.564804], [-77.426381, 38.564908], [-77.426181, 38.565011], [-77.426002, 38.565075], [-77.425975, 38.565079], [-77.425859, 38.565097], [-77.425842, 38.5651], [-77.425644, 38.56506], [-77.425446, 38.564993], [-77.42521, 38.564817], [-77.425155, 38.56479], [-77.424882, 38.564653], [-77.424636, 38.564625], [-77.424378, 38.564631], [-77.423981, 38.564677], [-77.42372, 38.564639], [-77.423501, 38.564572], [-77.423415, 38.564497], [-77.423363, 38.564399], [-77.423495, 38.563979], [-77.423504, 38.563814], [-77.423426, 38.563568], [-77.423321, 38.563373], [-77.423227, 38.563292], [-77.423093, 38.563251], [-77.422892, 38.563294], [-77.422539, 38.563422], [-77.422201, 38.563566], [-77.421968, 38.563697], [-77.421794, 38.563734], [-77.421508, 38.563762], [-77.421172, 38.563763], [-77.421015, 38.563739], [-77.420948, 38.563729], [-77.420833, 38.563666], [-77.420844, 38.563561], [-77.421217, 38.563213], [-77.421372, 38.56304], [-77.421516, 38.562751], [-77.421626, 38.56248], [-77.421792, 38.562218], [-77.421906, 38.562062], [-77.422082, 38.561888], [-77.422147, 38.561733], [-77.422109, 38.56164], [-77.421996, 38.561615], [-77.421822, 38.561657], [-77.42146, 38.561709], [-77.421124, 38.56171], [-77.420878, 38.561671], [-77.420511, 38.561558], [-77.420247, 38.561421], [-77.419925, 38.561202], [-77.419759, 38.561041], [-77.419659, 38.560966], [-77.419589, 38.560358], [-77.4195, 38.560211], [-77.419363, 38.560093], [-77.419035, 38.559897], [-77.418948, 38.559794], [-77.418889, 38.55951], [-77.418811, 38.559264], [-77.418719, 38.559036], [-77.41866, 38.558932], [-77.418574, 38.558885], [-77.418462, 38.558882], [-77.418247, 38.558919], [-77.418135, 38.558916], [-77.417994, 38.558886], [-77.417892, 38.558778], [-77.417661, 38.558568], [-77.417595, 38.558471], [-77.417516, 38.558198], [-77.417005, 38.558176], [-77.416501, 38.55817], [-77.416262, 38.558147], [-77.416001, 38.558081], [-77.415823, 38.557975], [-77.415713, 38.557818], [-77.415631, 38.557468], [-77.41564, 38.557325], [-77.415587, 38.557211], [-77.4153, 38.556975], [-77.41507, 38.556595], [-77.415023, 38.556448], [-77.414865, 38.556325], [-77.414367, 38.556077], [-77.414037, 38.556029], [-77.413829, 38.556105], [-77.413426, 38.556184], [-77.413066, 38.55629], [-77.412516, 38.556565], [-77.412364, 38.556629], [-77.412182, 38.556638], [-77.412034, 38.556581], [-77.411911, 38.556479], [-77.411677, 38.556374], [-77.411386, 38.556259], [-77.410922, 38.555983], [-77.410365, 38.555632], [-77.41012, 38.555401], [-77.409833, 38.554978], [-77.40968, 38.554822], [-77.409542, 38.554649], [-77.409465, 38.554442], [-77.409491, 38.554184], [-77.409505, 38.55376], [-77.4095, 38.553618], [-77.409448, 38.553525], [-77.409342, 38.553495], [-77.409181, 38.553481], [-77.409036, 38.553528], [-77.408822, 38.553632], [-77.408658, 38.55375], [-77.408336, 38.553938], [-77.408074, 38.554059], [-77.407817, 38.554097], [-77.40762, 38.554085], [-77.407267, 38.553982], [-77.406898, 38.553831], [-77.406584, 38.553639], [-77.406298, 38.553431], [-77.405962, 38.55324], [-77.405498, 38.552937], [-77.404692, 38.552492], [-77.404336, 38.552279], [-77.403757, 38.551929], [-77.403431, 38.551798], [-77.403317, 38.551724], [-77.403158, 38.551578], [-77.402977, 38.55139], [-77.402765, 38.551125], [-77.402582, 38.550871], [-77.402344, 38.550661], [-77.402214, 38.550527], [-77.401935, 38.55034], [-77.401579, 38.550144], [-77.401414, 38.550038], [-77.401293, 38.54998], [-77.40097, 38.549932], [-77.400779, 38.54987], [-77.400572, 38.549742], [-77.400376, 38.549532], [-77.40027, 38.549292], [-77.400237, 38.549145], [-77.4003, 38.54894], [-77.400416, 38.548855], [-77.400514, 38.548698], [-77.400575, 38.5486], [-77.400589, 38.548577], [-77.40073, 38.548393], [-77.401062, 38.547878], [-77.401135, 38.547765], [-77.401355, 38.547425], [-77.40126, 38.547289], [-77.400844, 38.547402], [-77.399998, 38.547826], [-77.399282, 38.547956], [-77.397607, 38.547458], [-77.396006, 38.545999], [-77.395826, 38.545835], [-77.394785, 38.54439], [-77.394816, 38.543659], [-77.395778, 38.543337], [-77.396088, 38.54299], [-77.396045, 38.542733], [-77.395408, 38.541241], [-77.394866, 38.540505], [-77.394383, 38.540301], [-77.393057, 38.539984], [-77.392543, 38.539861], [-77.392569, 38.538937], [-77.392779, 38.538318], [-77.392645, 38.537859], [-77.392013, 38.537169], [-77.391813, 38.536874], [-77.391734, 38.536757], [-77.391645, 38.53665], [-77.391472, 38.536444], [-77.391386, 38.536397], [-77.391255, 38.536325], [-77.391066, 38.536222], [-77.39076, 38.536074], [-77.390363, 38.535912], [-77.38981, 38.53566], [-77.389098, 38.535295], [-77.388857, 38.535185], [-77.3887, 38.535089], [-77.388607, 38.53502], [-77.388561, 38.534911], [-77.388563, 38.534757], [-77.388626, 38.534536], [-77.388676, 38.534172], [-77.388675, 38.533931], [-77.388611, 38.533685], [-77.388515, 38.533527], [-77.388363, 38.53336], [-77.38824, 38.533253], [-77.388077, 38.533174], [-77.387895, 38.533156], [-77.387615, 38.533167], [-77.387225, 38.533213], [-77.386794, 38.533277], [-77.386378, 38.533328], [-77.386312, 38.533336], [-77.386129, 38.533358], [-77.386097, 38.533362], [-77.385887, 38.53335], [-77.385857, 38.533345], [-77.385676, 38.533316], [-77.385389, 38.533311], [-77.385095, 38.533284], [-77.384904, 38.533222], [-77.384614, 38.533113], [-77.384428, 38.532996], [-77.384347, 38.532865], [-77.384348, 38.532695], [-77.384417, 38.532463], [-77.38447, 38.532352], [-77.384758, 38.531995], [-77.385002, 38.531753], [-77.38521, 38.531486], [-77.385232, 38.531438], [-77.385282, 38.531325], [-77.385284, 38.531182], [-77.385239, 38.531084], [-77.385187, 38.531003], [-77.385072, 38.530906], [-77.384301, 38.530636], [-77.383981, 38.530535], [-77.383891, 38.530507], [-77.383171, 38.530308], [-77.382826, 38.530227], [-77.38276, 38.530202], [-77.382609, 38.530146], [-77.382536, 38.530118], [-77.382055, 38.529957], [-77.381624, 38.529839], [-77.381185, 38.529667], [-77.381063, 38.529571], [-77.381002, 38.529413], [-77.381045, 38.529242], [-77.381575, 38.528775], [-77.382011, 38.528439], [-77.38238, 38.528154], [-77.382537, 38.528052], [-77.382633, 38.527973], [-77.382684, 38.527824], [-77.382571, 38.527376], [-77.38248, 38.526955], [-77.382524, 38.526591], [-77.382421, 38.526423], [-77.382181, 38.526357], [-77.381936, 38.526356], [-77.381515, 38.52631], [-77.381275, 38.526238], [-77.381051, 38.526226], [-77.380696, 38.526283], [-77.380448, 38.526381], [-77.380316, 38.526422], [-77.380176, 38.52642], [-77.379648, 38.526309], [-77.379543, 38.526306], [-77.379378, 38.526381], [-77.379036, 38.526399], [-77.378768, 38.526338], [-77.378401, 38.52623], [-77.378163, 38.526241], [-77.377963, 38.5263], [-77.377935, 38.526317], [-77.377771, 38.526419], [-77.377614, 38.526543], [-77.377519, 38.526627], [-77.377409, 38.52669], [-77.377313, 38.52673], [-77.377194, 38.526738], [-77.377067, 38.526702], [-77.376923, 38.526573], [-77.376805, 38.526406], [-77.376692, 38.526348], [-77.376496, 38.52634], [-77.376184, 38.526435], [-77.375982, 38.52645], [-77.375869, 38.526408], [-77.37579, 38.52636], [-77.375726, 38.526323], [-77.375609, 38.526172], [-77.375513, 38.52602], [-77.375419, 38.525923], [-77.375249, 38.525844], [-77.374864, 38.525616], [-77.374701, 38.525559], [-77.374227, 38.525376], [-77.374142, 38.525141], [-77.374137, 38.525004], [-77.374094, 38.524763], [-77.373897, 38.524498], [-77.373593, 38.524197], [-77.373235, 38.523929], [-77.373115, 38.523668], [-77.373186, 38.523508], [-77.373323, 38.523422], [-77.373404, 38.523327], [-77.373526, 38.523215], [-77.373518, 38.523177], [-77.373528, 38.523098], [-77.373549, 38.522936], [-77.373551, 38.522918], [-77.37346, 38.522695], [-77.372833, 38.522323], [-77.372222, 38.522039], [-77.371898, 38.521759], [-77.371624, 38.521555], [-77.37149, 38.521455], [-77.37126, 38.521273], [-77.370905, 38.52089], [-77.370825, 38.520809], [-77.37071, 38.520696], [-77.370672, 38.520658], [-77.370623, 38.52061], [-77.370491, 38.520415], [-77.370313, 38.520122], [-77.370144, 38.519873], [-77.370015, 38.519765], [-77.369808, 38.519632], [-77.36947, 38.519557], [-77.369249, 38.519446], [-77.368833, 38.519344], [-77.368432, 38.519259], [-77.368242, 38.519219], [-77.368102, 38.519194], [-77.367487, 38.519223], [-77.367219, 38.51935], [-77.36694, 38.519388], [-77.366857, 38.519401], [-77.365968, 38.519375], [-77.365697, 38.51943], [-77.365669, 38.51943], [-77.36527, 38.519625], [-77.364976, 38.519834], [-77.364732, 38.520075], [-77.364564, 38.520255], [-77.36438, 38.520423], [-77.364274, 38.520585], [-77.364342, 38.520737], [-77.364205, 38.520844], [-77.363934, 38.520877], [-77.362956, 38.520913], [-77.362731, 38.520879], [-77.362416, 38.520847], [-77.362233, 38.520823], [-77.361987, 38.520779], [-77.361832, 38.520738], [-77.361514, 38.52064], [-77.361336, 38.520556], [-77.361158, 38.520439], [-77.361032, 38.520361], [-77.360879, 38.520268], [-77.360708, 38.520151], [-77.360577, 38.520011], [-77.360183, 38.519711], [-77.359997, 38.519578], [-77.359735, 38.519473], [-77.359312, 38.519355], [-77.359079, 38.519289], [-77.358704, 38.518961], [-77.358731, 38.518691], [-77.358687, 38.518418], [-77.358593, 38.518348], [-77.358452, 38.518291], [-77.358289, 38.518217], [-77.358019, 38.518085], [-77.357841, 38.518012], [-77.357678, 38.517933], [-77.357521, 38.517832], [-77.357345, 38.517802], [-77.357135, 38.517795], [-77.356898, 38.5178], [-77.356709, 38.517787], [-77.356567, 38.51773], [-77.3564, 38.517557], [-77.356319, 38.517411], [-77.356217, 38.517292], [-77.356052, 38.516944], [-77.355987, 38.516885], [-77.355838, 38.516827], [-77.355521, 38.516735], [-77.354918, 38.516697], [-77.354588, 38.516666], [-77.354239, 38.516684], [-77.353786, 38.51672], [-77.353425, 38.516804], [-77.353066, 38.516943], [-77.352817, 38.517003], [-77.352454, 38.517038], [-77.351945, 38.51707], [-77.351758, 38.517118], [-77.351285, 38.517188], [-77.350496, 38.517215], [-77.350195, 38.517204], [-77.349704, 38.517176], [-77.349407, 38.517072], [-77.348938, 38.516818], [-77.348593, 38.516544], [-77.348286, 38.516336], [-77.34802, 38.516127], [-77.347978, 38.516128], [-77.347726, 38.516111], [-77.347397, 38.516096], [-77.347074, 38.516064], [-77.346805, 38.51596], [-77.346568, 38.515767], [-77.346318, 38.51559], [-77.346073, 38.515584], [-77.346003, 38.515586], [-77.345781, 38.515623], [-77.345391, 38.515669], [-77.345251, 38.515672], [-77.345026, 38.515638], [-77.344068, 38.515399], [-77.343497, 38.515262], [-77.343229, 38.51518], [-77.341505, 38.514632], [-77.341294, 38.514587], [-77.340771, 38.514422], [-77.340322, 38.51437], [-77.340148, 38.514385], [-77.339707, 38.514371], [-77.339437, 38.514229], [-77.339226, 38.514211], [-77.339012, 38.514303], [-77.338754, 38.514517], [-77.338018, 38.514894], [-77.337408, 38.515044], [-77.336733, 38.515145], [-77.336601, 38.514955], [-77.336493, 38.51488], [-77.336458, 38.514865], [-77.336422, 38.51485], [-77.33638, 38.514833], [-77.33626, 38.514839], [-77.336213, 38.514842], [-77.336065, 38.514834], [-77.336053, 38.514832], [-77.335876, 38.51481], [-77.335728, 38.51478], [-77.335553, 38.514762], [-77.335222, 38.514692], [-77.335122, 38.514663], [-77.33506, 38.514645], [-77.334904, 38.514577], [-77.334814, 38.514392], [-77.334829, 38.514253], [-77.33483, 38.514244], [-77.334717, 38.513977], [-77.334662, 38.513866], [-77.334657, 38.513857], [-77.334543, 38.513793], [-77.334407, 38.513697], [-77.33436, 38.513653], [-77.334345, 38.513639], [-77.334299, 38.513595], [-77.332442, 38.510837], [-77.33157, 38.510315], [-77.331147, 38.510106], [-77.330892, 38.509981], [-77.330391, 38.509734], [-77.329853, 38.509374], [-77.32981, 38.509348], [-77.327057, 38.507667], [-77.325647, 38.505722], [-77.323879, 38.504895], [-77.323377, 38.504661], [-77.323159, 38.504559], [-77.320825, 38.50478], [-77.320261, 38.504559], [-77.319166, 38.503801], [-77.319142, 38.503788], [-77.319042, 38.503731], [-77.31892, 38.503629], [-77.318768, 38.503458], [-77.318704, 38.503415], [-77.318641, 38.503416], [-77.318066, 38.503067], [-77.317785, 38.502897], [-77.316733, 38.502326], [-77.316394, 38.50217], [-77.315056, 38.50166], [-77.314473, 38.501456], [-77.313247, 38.501029], [-77.313183, 38.500992], [-77.31297, 38.500919], [-77.312658, 38.500809], [-77.312123, 38.50071], [-77.311218, 38.500359], [-77.310872, 38.500225], [-77.310762, 38.500183], [-77.310539, 38.500122], [-77.310233, 38.50004], [-77.309732, 38.49987], [-77.309093, 38.499732], [-77.308454, 38.49968], [-77.30814, 38.499707], [-77.308016, 38.50013], [-77.307956, 38.500401], [-77.307916, 38.500949], [-77.307936, 38.501093], [-77.307834, 38.501117], [-77.307793, 38.501194], [-77.307793, 38.501311], [-77.307988, 38.501467], [-77.30893, 38.502098], [-77.309026, 38.502162], [-77.309481, 38.502468], [-77.309621, 38.502561], [-77.309693, 38.502591], [-77.309774, 38.502625], [-77.310071, 38.50275], [-77.310427, 38.503287], [-77.310916, 38.504252], [-77.310958, 38.504601], [-77.310814, 38.504952], [-77.31053, 38.505297], [-77.309904, 38.505628], [-77.309467, 38.505629], [-77.308449, 38.505629], [-77.307895, 38.505798], [-77.307466, 38.505952], [-77.306283, 38.506027], [-77.305281, 38.505835], [-77.304608, 38.505524], [-77.303607, 38.505098], [-77.302075, 38.504555], [-77.301647, 38.504476], [-77.300993, 38.504553], [-77.300531, 38.504708], [-77.300299, 38.504784], [-77.299776, 38.50505], [-77.299423, 38.505321], [-77.299011, 38.505894], [-77.298728, 38.506287], [-77.298482, 38.507138], [-77.298523, 38.508148], [-77.298727, 38.508535], [-77.299217, 38.509348], [-77.299399, 38.509849], [-77.299445, 38.510184], [-77.29924, 38.510461], [-77.298666, 38.510816], [-77.297767, 38.511472], [-77.296828, 38.511895], [-77.296399, 38.511972], [-77.296051, 38.511973], [-77.295888, 38.511818], [-77.295408, 38.509247], [-77.295046, 38.509792], [-77.294981, 38.50989], [-77.294948, 38.509939], [-77.294888, 38.51003], [-77.294885, 38.510035], [-77.294873, 38.510053], [-77.294832, 38.510115], [-77.294685, 38.510337], [-77.292888, 38.513043], [-77.291105, 38.515728], [-77.29109, 38.515751], [-77.290894, 38.515716], [-77.290722, 38.515724], [-77.28974, 38.518064], [-77.28862, 38.519159], [-77.288231, 38.519194], [-77.288165, 38.51927], [-77.28791, 38.519565], [-77.287887, 38.519592], [-77.287876, 38.519598], [-77.287496, 38.519814], [-77.287213, 38.520265], [-77.287123, 38.520409], [-77.285641, 38.51996], [-77.28569, 38.519767], [-77.285526, 38.519739], [-77.285311, 38.519703], [-77.285008, 38.520285], [-77.285367, 38.520383], [-77.285532, 38.520286], [-77.287474, 38.520913], [-77.287338, 38.521245], [-77.287296, 38.521471], [-77.287062, 38.521805], [-77.286676, 38.521961], [-77.286388, 38.522159], [-77.286133, 38.522274], [-77.286115, 38.522356], [-77.286061, 38.522649], [-77.285889, 38.523157], [-77.285793, 38.523439], [-77.284614, 38.524638], [-77.284421, 38.52474], [-77.284305, 38.524808], [-77.284204, 38.524844], [-77.284012, 38.524915], [-77.283766, 38.525001], [-77.283752, 38.525006], [-77.283412, 38.525106], [-77.283331, 38.525196], [-77.283217, 38.525363], [-77.283102, 38.525425], [-77.283039, 38.525459], [-77.282916, 38.525566], [-77.282811, 38.525788], [-77.282761, 38.525965], [-77.282756, 38.526261], [-77.282631, 38.527593], [-77.282717, 38.527699], [-77.281805, 38.529127], [-77.281501, 38.529688], [-77.281197, 38.530252], [-77.281074, 38.53048], [-77.281052, 38.530521], [-77.281048, 38.53053], [-77.280927, 38.530754], [-77.280919, 38.530768], [-77.280822, 38.530948], [-77.280466, 38.531608], [-77.279795, 38.532849], [-77.27979, 38.53286], [-77.279816, 38.532942], [-77.280131, 38.533915], [-77.279963, 38.533927], [-77.279929, 38.533929], [-77.279424, 38.533955], [-77.279413, 38.533956], [-77.279191, 38.533975], [-77.279001, 38.533991], [-77.279134, 38.534208], [-77.279192, 38.534268], [-77.279264, 38.534354], [-77.279309, 38.534458], [-77.279299, 38.534568], [-77.279206, 38.534723], [-77.279115, 38.53553], [-77.279114, 38.535543], [-77.279015, 38.53643], [-77.278976, 38.536518], [-77.278923, 38.536618], [-77.278582, 38.536883], [-77.278277, 38.537208], [-77.277937, 38.537494], [-77.277775, 38.53769], [-77.277648, 38.537874], [-77.277452, 38.538081], [-77.27729, 38.53826], [-77.276737, 38.539155], [-77.276676, 38.539211], [-77.276566, 38.539268], [-77.276463, 38.539314], [-77.276381, 38.539387], [-77.276341, 38.539453], [-77.276222, 38.540093], [-77.276158, 38.540314], [-77.276069, 38.540568], [-77.276038, 38.540712], [-77.276035, 38.540822], [-77.276003, 38.540932], [-77.275929, 38.541032], [-77.275833, 38.541754], [-77.275776, 38.542612], [-77.275725, 38.543189], [-77.275802, 38.543419], [-77.276071, 38.543979], [-77.276229, 38.544328], [-77.276399, 38.544841], [-77.276556, 38.546271], [-77.276493, 38.546492], [-77.276366, 38.546901], [-77.276362, 38.546921], [-77.276357, 38.546945], [-77.276336, 38.547045], [-77.276305, 38.54716], [-77.276183, 38.547306], [-77.276124, 38.547428], [-77.276008, 38.547523], [-77.275866, 38.547669], [-77.275763, 38.547737], [-77.275572, 38.547872], [-77.275356, 38.548135], [-77.275222, 38.548313], [-77.275015, 38.548416], [-77.274872, 38.548523], [-77.274465, 38.548937], [-77.274401, 38.549103], [-77.27422, 38.54981], [-77.274035, 38.55016], [-77.273898, 38.55025], [-77.273579, 38.550558], [-77.27295, 38.551252], [-77.272586, 38.551446], [-77.272381, 38.551598], [-77.272064, 38.551747], [-77.271686, 38.551974], [-77.271611, 38.55203], [-77.271482, 38.552148], [-77.270491, 38.552667], [-77.269904, 38.552926], [-77.269531, 38.553059], [-77.269351, 38.553112], [-77.269053, 38.553217], [-77.268577, 38.553407], [-77.268218, 38.553568], [-77.267827, 38.553806], [-77.26746, 38.553929], [-77.267039, 38.554107], [-77.266723, 38.5543], [-77.265685, 38.554864], [-77.265358, 38.555055], [-77.265334, 38.555069], [-77.264843, 38.555226], [-77.264579, 38.555297], [-77.264252, 38.555359], [-77.26403, 38.555407], [-77.263828, 38.555444], [-77.263591, 38.555465], [-77.263382, 38.555507], [-77.263334, 38.555526], [-77.263203, 38.555577], [-77.263113, 38.555622], [-77.263017, 38.555685], [-77.262928, 38.555768], [-77.262922, 38.555774], [-77.262813, 38.555864], [-77.262663, 38.555977], [-77.26241, 38.556087], [-77.2622, 38.556178], [-77.261975, 38.556342], [-77.261811, 38.556482], [-77.261636, 38.5567], [-77.261545, 38.556921], [-77.261487, 38.557296], [-77.261496, 38.558032], [-77.261592, 38.558849], [-77.261541, 38.559025], [-77.261441, 38.559164], [-77.261251, 38.559366], [-77.26075, 38.559672], [-77.260352, 38.559838], [-77.260322, 38.559851], [-77.259655, 38.560023], [-77.259644, 38.560026], [-77.259625, 38.560031], [-77.259612, 38.560034], [-77.259581, 38.560042], [-77.259571, 38.560045], [-77.259554, 38.560049], [-77.259546, 38.560051], [-77.259517, 38.560059], [-77.258837, 38.560225], [-77.257798, 38.560355], [-77.257611, 38.560369], [-77.257372, 38.560386], [-77.257046, 38.560458], [-77.256955, 38.56047], [-77.256906, 38.56046], [-77.256731, 38.560464], [-77.256523, 38.560501], [-77.256456, 38.560595], [-77.25646, 38.560738], [-77.256576, 38.560857], [-77.256847, 38.561016], [-77.256968, 38.56114], [-77.257032, 38.561205], [-77.255705, 38.563326], [-77.255056, 38.56525], [-77.254418, 38.567142], [-77.254408, 38.567173], [-77.254379, 38.567259], [-77.250609, 38.57844], [-77.246905, 38.589424], [-77.246598, 38.590971], [-77.246444, 38.592936], [-77.246364, 38.593449], [-77.244482, 38.594583], [-77.241323, 38.596485], [-77.238105, 38.598425], [-77.232443, 38.60166], [-77.228809, 38.603737], [-77.225505, 38.605625], [-77.216197, 38.610983], [-77.206906, 38.616333], [-77.205293, 38.617262], [-77.204307, 38.617829], [-77.203698, 38.61818], [-77.20359, 38.618104], [-77.203501, 38.618056], [-77.203345, 38.617955], [-77.20305, 38.61782], [-77.203011, 38.617817], [-77.202882, 38.617779], [-77.2028, 38.617767], [-77.202775, 38.617754], [-77.202769, 38.617736], [-77.202768, 38.617713], [-77.202755, 38.617685], [-77.202716, 38.617687], [-77.20268, 38.617716], [-77.20265, 38.617717], [-77.20262, 38.617709], [-77.20258, 38.617692], [-77.202516, 38.617692], [-77.202454, 38.617684], [-77.202307, 38.617679], [-77.202289, 38.617651], [-77.20221, 38.617653], [-77.201971, 38.617683], [-77.201908, 38.617696], [-77.201874, 38.617723], [-77.201778, 38.617746], [-77.201736, 38.617767], [-77.201698, 38.617801], [-77.201661, 38.61785], [-77.201635, 38.617902], [-77.201571, 38.618006], [-77.201549, 38.61811], [-77.201517, 38.618167], [-77.201481, 38.618213], [-77.201453, 38.618228], [-77.201352, 38.618234], [-77.201324, 38.618248], [-77.201199, 38.618359], [-77.20113, 38.618405], [-77.201074, 38.618454], [-77.201008, 38.618494], [-77.200937, 38.618517], [-77.200823, 38.618566], [-77.200706, 38.618579], [-77.200687, 38.61859], [-77.200649, 38.618624], [-77.200582, 38.618669], [-77.200538, 38.618708], [-77.200492, 38.618733], [-77.200359, 38.618823], [-77.200304, 38.618855], [-77.200266, 38.618893], [-77.200181, 38.618937], [-77.200121, 38.618953], [-77.19991, 38.618967], [-77.199802, 38.618968], [-77.199771, 38.618973], [-77.199781, 38.618998], [-77.199757, 38.619026], [-77.199673, 38.619055], [-77.199611, 38.619076], [-77.199506, 38.619126], [-77.199429, 38.619156], [-77.199348, 38.619174], [-77.199279, 38.61919], [-77.199169, 38.619206], [-77.199076, 38.61921], [-77.198975, 38.61922], [-77.198924, 38.619221], [-77.198783, 38.619268], [-77.19877, 38.619289], [-77.198709, 38.619306], [-77.198637, 38.619322], [-77.198567, 38.619337], [-77.198519, 38.619354], [-77.198377, 38.619366], [-77.198321, 38.619379], [-77.198227, 38.619393], [-77.198144, 38.619394], [-77.198058, 38.619395], [-77.198004, 38.619402], [-77.197941, 38.619404], [-77.197889, 38.619421], [-77.19785, 38.61944], [-77.197639, 38.61945], [-77.197467, 38.619451], [-77.197329, 38.619459], [-77.197269, 38.619458], [-77.197185, 38.619467], [-77.197067, 38.619503], [-77.197029, 38.619539], [-77.196983, 38.619548], [-77.196804, 38.619547], [-77.196704, 38.619547], [-77.196463, 38.619535], [-77.196368, 38.619529], [-77.196222, 38.619521], [-77.195997, 38.619508], [-77.195872, 38.619501], [-77.195829, 38.619504], [-77.195809, 38.619519], [-77.19576, 38.61953], [-77.195637, 38.619524], [-77.195512, 38.619517], [-77.195449, 38.619498], [-77.195337, 38.619493], [-77.195167, 38.619486], [-77.195097, 38.619495], [-77.195063, 38.619503], [-77.194953, 38.619502], [-77.194664, 38.619469], [-77.194476, 38.61946], [-77.19429, 38.619435], [-77.194162, 38.619433], [-77.194122, 38.619438], [-77.193992, 38.619438], [-77.193825, 38.619445], [-77.193583, 38.619441], [-77.193529, 38.619427], [-77.193376, 38.619414], [-77.193316, 38.619405], [-77.193251, 38.6194], [-77.192821, 38.619333], [-77.192654, 38.61932], [-77.192599, 38.619311], [-77.19257, 38.619307], [-77.192308, 38.619276], [-77.19165, 38.619176], [-77.191558, 38.619175], [-77.191489, 38.619183], [-77.191449, 38.619205], [-77.191421, 38.619235], [-77.191408, 38.619263], [-77.191361, 38.619323], [-77.191329, 38.619343], [-77.191288, 38.619352], [-77.191236, 38.619385], [-77.19104, 38.619466], [-77.190979, 38.619478], [-77.190871, 38.619519], [-77.190841, 38.619527], [-77.190772, 38.619537], [-77.190709, 38.619552], [-77.190449, 38.61958], [-77.190406, 38.619599], [-77.19035, 38.619648], [-77.190305, 38.619722], [-77.190238, 38.619832], [-77.190131, 38.619991], [-77.190112, 38.620022], [-77.190087, 38.620062], [-77.190048, 38.620126], [-77.189951, 38.620249], [-77.189913, 38.620314], [-77.189887, 38.620358], [-77.189823, 38.6204], [-77.189645, 38.620551], [-77.189561, 38.620581], [-77.189492, 38.620599], [-77.189306, 38.620668], [-77.188812, 38.620749], [-77.188747, 38.620753], [-77.188559, 38.620753], [-77.188499, 38.620758], [-77.188468, 38.620786], [-77.188243, 38.62081], [-77.188165, 38.620825], [-77.188133, 38.620841], [-77.188125, 38.620866], [-77.188086, 38.620895], [-77.187938, 38.620955], [-77.187681, 38.620989], [-77.187488, 38.621006], [-77.187431, 38.621007], [-77.187353, 38.621038], [-77.187319, 38.621057], [-77.187322, 38.621075], [-77.187289, 38.621093], [-77.187266, 38.621098], [-77.187229, 38.621099], [-77.187215, 38.621132], [-77.187041, 38.621162], [-77.186914, 38.621214], [-77.186889, 38.621233], [-77.186858, 38.621271], [-77.186798, 38.621316], [-77.186745, 38.621338], [-77.186732, 38.621354], [-77.186572, 38.621416], [-77.18634, 38.621457], [-77.185905, 38.621524], [-77.185761, 38.621536], [-77.185664, 38.621538], [-77.185643, 38.621547], [-77.18563, 38.621575], [-77.185607, 38.621587], [-77.185578, 38.62159], [-77.185555, 38.621587], [-77.185429, 38.621628], [-77.185289, 38.621687], [-77.185211, 38.621694], [-77.184439, 38.621654], [-77.184379, 38.621651], [-77.184044, 38.621656], [-77.183891, 38.621676], [-77.183804, 38.621692], [-77.183435, 38.621702], [-77.183052, 38.621738], [-77.182612, 38.6218], [-77.182567, 38.621819], [-77.182534, 38.621872], [-77.182514, 38.621884], [-77.182461, 38.621903], [-77.182398, 38.621953], [-77.18238, 38.62196], [-77.182364, 38.621966], [-77.182223, 38.621988], [-77.182103, 38.622006], [-77.182001, 38.622031], [-77.181828, 38.622098], [-77.18173, 38.62214], [-77.181606, 38.622187], [-77.181542, 38.622217], [-77.181481, 38.622251], [-77.181254, 38.622396], [-77.181164, 38.622449], [-77.181123, 38.622486], [-77.181002, 38.622613], [-77.18093, 38.622699], [-77.1809, 38.62274], [-77.180881, 38.622767], [-77.180848, 38.622798], [-77.180779, 38.622849], [-77.18072, 38.622883], [-77.180677, 38.622946], [-77.180624, 38.62298], [-77.180558, 38.623066], [-77.180536, 38.623082], [-77.180499, 38.623101], [-77.180455, 38.623152], [-77.180385, 38.623199], [-77.180274, 38.623254], [-77.180209, 38.62327], [-77.179873, 38.623282], [-77.179821, 38.6233], [-77.179779, 38.623344], [-77.179702, 38.623364], [-77.179661, 38.623385], [-77.179413, 38.623406], [-77.179158, 38.623446], [-77.179064, 38.623453], [-77.179006, 38.623471], [-77.178876, 38.623529], [-77.178784, 38.62355], [-77.178684, 38.623562], [-77.178391, 38.623555], [-77.178119, 38.623583], [-77.178091, 38.623596], [-77.178004, 38.623612], [-77.177713, 38.623692], [-77.177601, 38.623699], [-77.177579, 38.623707], [-77.177558, 38.623723], [-77.177102, 38.623861], [-77.17708, 38.623868], [-77.176796, 38.623954], [-77.176493, 38.624048], [-77.176299, 38.624087], [-77.175947, 38.62412], [-77.175722, 38.624117], [-77.175448, 38.624103], [-77.175221, 38.624092], [-77.175049, 38.624128], [-77.174963, 38.624166], [-77.174897, 38.624216], [-77.174854, 38.624248], [-77.174733, 38.624291], [-77.174629, 38.62429], [-77.17454, 38.624289], [-77.174325, 38.624276], [-77.17385, 38.624263], [-77.173702, 38.62427], [-77.173573, 38.624255], [-77.173372, 38.624248], [-77.173268, 38.624248], [-77.173151, 38.624255], [-77.168431, 38.624853], [-77.166367, 38.625114], [-77.162556, 38.626112], [-77.162525, 38.62612], [-77.162297, 38.62618], [-77.162154, 38.626217], [-77.160101, 38.626755], [-77.159929, 38.6268], [-77.149818, 38.629447], [-77.147559, 38.630038], [-77.147348, 38.630093], [-77.136358, 38.632967], [-77.136253, 38.632994], [-77.130279, 38.634556], [-77.129684, 38.634712], [-77.129721, 38.63479], [-77.129875, 38.635112], [-77.130092, 38.635454], [-77.130145, 38.635535], [-77.130193, 38.635594], [-77.130244, 38.635664], [-77.130296, 38.635735], [-77.1303, 38.635741], [-77.130371, 38.635828], [-77.130801, 38.636359], [-77.130923, 38.636537], [-77.131021, 38.636728], [-77.131094, 38.636892], [-77.131186, 38.637176], [-77.131257, 38.637491], [-77.131306, 38.637675], [-77.13134, 38.637799], [-77.13137, 38.637885], [-77.131405, 38.637959], [-77.131474, 38.638182], [-77.13148, 38.638205], [-77.131481, 38.638236], [-77.131458, 38.638407], [-77.13146, 38.63844], [-77.131466, 38.638462], [-77.131496, 38.638569], [-77.131505, 38.638627], [-77.131489, 38.638684], [-77.131531, 38.638786], [-77.131603, 38.638892], [-77.131672, 38.639015], [-77.13186, 38.639386], [-77.131898, 38.639446], [-77.131925, 38.639511], [-77.131951, 38.639638], [-77.131913, 38.639838], [-77.131887, 38.639872], [-77.131883, 38.639901], [-77.131901, 38.639932], [-77.131941, 38.63997], [-77.132016, 38.640015], [-77.132029, 38.640023], [-77.132154, 38.640099], [-77.132231, 38.640146], [-77.13229, 38.640183], [-77.13234, 38.640226], [-77.132369, 38.64026], [-77.132391, 38.640308], [-77.132419, 38.640368], [-77.132444, 38.640423], [-77.132484, 38.64047], [-77.132545, 38.640543], [-77.132599, 38.640613], [-77.132636, 38.640662], [-77.132686, 38.640743], [-77.132784, 38.640863], [-77.132829, 38.640918], [-77.132891, 38.641008], [-77.132894, 38.641013], [-77.132968, 38.64112], [-77.133058, 38.641279], [-77.133073, 38.641323], [-77.133084, 38.641383], [-77.133084, 38.641414], [-77.133081, 38.641433], [-77.133053, 38.641575], [-77.133038, 38.641722], [-77.133027, 38.641747], [-77.133043, 38.641856], [-77.133093, 38.641972], [-77.133183, 38.642105], [-77.133383, 38.642374], [-77.133447, 38.642474], [-77.133509, 38.642533], [-77.13353, 38.642634], [-77.133528, 38.642663], [-77.133523, 38.642685], [-77.13352, 38.642796], [-77.133499, 38.642881], [-77.133436, 38.643008], [-77.133398, 38.643044], [-77.133232, 38.643289], [-77.13323, 38.643323], [-77.133255, 38.64346], [-77.133249, 38.643542], [-77.133237, 38.643588], [-77.133207, 38.643661], [-77.13319, 38.643721], [-77.133186, 38.643757], [-77.133111, 38.64379], [-77.133108, 38.643808], [-77.133096, 38.64383], [-77.133061, 38.643846], [-77.133033, 38.643868], [-77.133, 38.643921], [-77.132962, 38.644084], [-77.132934, 38.644104], [-77.132921, 38.644156], [-77.132881, 38.644184], [-77.132847, 38.644174], [-77.132814, 38.644225], [-77.132806, 38.64432], [-77.132809, 38.644392], [-77.132812, 38.644479], [-77.132832, 38.644506], [-77.132889, 38.64453], [-77.132909, 38.64461], [-77.132934, 38.644723], [-77.13309, 38.644908], [-77.133399, 38.645257], [-77.13382, 38.645501], [-77.134252, 38.645722], [-77.134339, 38.645748], [-77.1345, 38.64582], [-77.134607, 38.64586], [-77.135, 38.646092], [-77.135112, 38.646149], [-77.135211, 38.64621], [-77.135281, 38.646245], [-77.135351, 38.646298], [-77.135419, 38.646343], [-77.135485, 38.646381], [-77.135535, 38.646445], [-77.135621, 38.646516], [-77.135682, 38.646552], [-77.135722, 38.646587], [-77.13579, 38.646666], [-77.13602, 38.646901], [-77.13608, 38.647011], [-77.136254, 38.647176], [-77.136275, 38.647209], [-77.136295, 38.647239], [-77.136308, 38.647288], [-77.136316, 38.647353], [-77.136346, 38.647466], [-77.136355, 38.647557], [-77.136318, 38.647672], [-77.136368, 38.647826], [-77.136354, 38.647885], [-77.136358, 38.647945], [-77.136352, 38.648011], [-77.136285, 38.648382], [-77.136246, 38.64851], [-77.136241, 38.648579], [-77.136243, 38.648637], [-77.136262, 38.648768], [-77.136266, 38.648822], [-77.136276, 38.648876], [-77.136268, 38.648989], [-77.136256, 38.649067], [-77.136252, 38.649172], [-77.136231, 38.649285], [-77.136258, 38.649405], [-77.136262, 38.649457], [-77.136273, 38.649585], [-77.136275, 38.649652], [-77.136277, 38.649729], [-77.136282, 38.649737], [-77.136295, 38.64976], [-77.136286, 38.649782], [-77.136278, 38.649803], [-77.136276, 38.649809], [-77.13628, 38.649816], [-77.136291, 38.649835], [-77.136318, 38.649917], [-77.136352, 38.650057], [-77.136355, 38.650074], [-77.136374, 38.650184], [-77.136385, 38.650203], [-77.136425, 38.650234], [-77.136423, 38.650244], [-77.1359, 38.652782], [-77.135349, 38.656194], [-77.134734, 38.660014], [-77.133857, 38.665469], [-77.133627, 38.666792], [-77.133448, 38.667825], [-77.133047, 38.670133], [-77.132466, 38.673989], [-77.132459, 38.674034], [-77.132441, 38.674151], [-77.132343, 38.6742], [-77.132228, 38.674285], [-77.132072, 38.674426], [-77.131945, 38.674549], [-77.131907, 38.674576], [-77.131828, 38.67465], [-77.131761, 38.674702], [-77.13171, 38.674754], [-77.131595, 38.674873], [-77.13153, 38.67492], [-77.131525, 38.674924], [-77.131481, 38.674955], [-77.131431, 38.675016], [-77.131279, 38.675201], [-77.131195, 38.675271], [-77.131165, 38.675302], [-77.131089, 38.675358], [-77.131037, 38.675389], [-77.130946, 38.675418], [-77.130718, 38.675549], [-77.13056, 38.675658], [-77.130446, 38.67576], [-77.130342, 38.675838], [-77.130264, 38.675888], [-77.130166, 38.675964], [-77.130075, 38.676067], [-77.13, 38.676185], [-77.129971, 38.676248], [-77.129904, 38.676365], [-77.129879, 38.676399], [-77.129835, 38.676459], [-77.129816, 38.676476], [-77.129731, 38.676551], [-77.129718, 38.676586], [-77.129681, 38.676626], [-77.129654, 38.676672], [-77.129577, 38.67677], [-77.129555, 38.676777], [-77.129516, 38.676797], [-77.129486, 38.676837], [-77.129407, 38.676875], [-77.129364, 38.676913], [-77.129241, 38.676994], [-77.129184, 38.677036], [-77.129139, 38.677076], [-77.129086, 38.677107], [-77.129082, 38.677111], [-77.129076, 38.677115], [-77.129067, 38.677125], [-77.128999, 38.677201], [-77.128951, 38.677231], [-77.128945, 38.677235], [-77.128916, 38.677264], [-77.128907, 38.677272], [-77.128745, 38.677392], [-77.128635, 38.677455], [-77.128616, 38.67747], [-77.128584, 38.677506], [-77.12858, 38.67751], [-77.128535, 38.677546], [-77.128494, 38.67758], [-77.12843, 38.677669], [-77.128409, 38.677717], [-77.128362, 38.677785], [-77.128302, 38.67783], [-77.12823, 38.677932], [-77.128161, 38.678002], [-77.12811, 38.678048], [-77.12808, 38.678075], [-77.128015, 38.678117], [-77.127941, 38.678165], [-77.12792, 38.678186], [-77.12785, 38.678228], [-77.127796, 38.67827], [-77.127743, 38.678305], [-77.127701, 38.67834], [-77.127662, 38.678358], [-77.127568, 38.678423], [-77.127519, 38.678466], [-77.127465, 38.678502], [-77.127384, 38.678572], [-77.12732, 38.67861], [-77.127313, 38.678637], [-77.127267, 38.678689], [-77.127263, 38.678768], [-77.127246, 38.678826], [-77.127182, 38.678963], [-77.127114, 38.679057], [-77.127063, 38.679171], [-77.127045, 38.679195], [-77.126969, 38.679237], [-77.126951, 38.679268], [-77.126915, 38.679264], [-77.126891, 38.679281], [-77.12691, 38.679323], [-77.126909, 38.679341], [-77.126901, 38.679362], [-77.126799, 38.679494], [-77.126698, 38.679593], [-77.126647, 38.679669], [-77.126596, 38.679717], [-77.126577, 38.679742], [-77.126478, 38.679833], [-77.126422, 38.679936], [-77.126289, 38.680149], [-77.126266, 38.680206], [-77.126228, 38.680261], [-77.126152, 38.680342], [-77.126115, 38.680396], [-77.126072, 38.680484], [-77.125953, 38.680649], [-77.125925, 38.68068], [-77.125806, 38.680812], [-77.125752, 38.680872], [-77.12562, 38.680986], [-77.125419, 38.681151], [-77.125328, 38.681211], [-77.125321, 38.681216], [-77.125295, 38.681234], [-77.125253, 38.681271], [-77.125224, 38.681297], [-77.125196, 38.681319], [-77.125191, 38.681323], [-77.12504, 38.681443], [-77.125005, 38.681491], [-77.124973, 38.68152], [-77.124937, 38.681576], [-77.124906, 38.681648], [-77.124721, 38.681978], [-77.124699, 38.682038], [-77.124558, 38.682433], [-77.124496, 38.682606], [-77.124444, 38.682653], [-77.124393, 38.682712], [-77.12426, 38.682934], [-77.124182, 38.683021], [-77.124112, 38.683121], [-77.124057, 38.683213], [-77.12398, 38.683273], [-77.12382, 38.68343], [-77.123791, 38.683497], [-77.123703, 38.683586], [-77.123594, 38.683683], [-77.12356, 38.68372], [-77.123526, 38.683795], [-77.123522, 38.683824], [-77.123531, 38.683845], [-77.123526, 38.683915], [-77.123484, 38.684009], [-77.123445, 38.684098], [-77.123437, 38.684132], [-77.12341, 38.684239], [-77.123377, 38.68432], [-77.123279, 38.684479], [-77.123172, 38.684601], [-77.123152, 38.684632], [-77.123041, 38.684767], [-77.122933, 38.684877], [-77.122892, 38.68493], [-77.122888, 38.684935], [-77.122634, 38.685264], [-77.122532, 38.685332], [-77.122085, 38.685628], [-77.116642, 38.689243], [-77.116605, 38.689268], [-77.108677, 38.694532], [-77.108627, 38.694569], [-77.108596, 38.694572], [-77.105676, 38.696426], [-77.104724, 38.697051], [-77.10431, 38.697322], [-77.104235, 38.697356], [-77.104162, 38.697399], [-77.104082, 38.697437], [-77.1041, 38.697476], [-77.104031, 38.697497], [-77.104008, 38.697526], [-77.103918, 38.697605], [-77.103866, 38.697679], [-77.103841, 38.697716], [-77.103839, 38.697734], [-77.103858, 38.697771], [-77.103863, 38.697794], [-77.103865, 38.697801], [-77.103853, 38.697817], [-77.103767, 38.697868], [-77.103713, 38.697878], [-77.103671, 38.697881], [-77.103647, 38.697883], [-77.103613, 38.697861], [-77.103563, 38.697863], [-77.103598, 38.697915], [-77.103603, 38.697923], [-77.103579, 38.697934], [-77.103573, 38.697926], [-77.103536, 38.69788], [-77.103391, 38.697922], [-77.103307, 38.697941], [-77.103228, 38.697965], [-77.102543, 38.698112], [-77.102473, 38.698133], [-77.102412, 38.698168], [-77.102381, 38.698196], [-77.102275, 38.698203], [-77.102248, 38.698183], [-77.102195, 38.69817], [-77.1021, 38.698182], [-77.102009, 38.698184], [-77.101936, 38.698178], [-77.101761, 38.698146], [-77.101588, 38.69812], [-77.101512, 38.6981], [-77.101431, 38.69807], [-77.101393, 38.698064], [-77.101325, 38.698066], [-77.101252, 38.698077], [-77.10113, 38.698074], [-77.101064, 38.698076], [-77.101022, 38.698081], [-77.100881, 38.698114], [-77.100854, 38.698126], [-77.100751, 38.698185], [-77.100646, 38.698239], [-77.100556, 38.698265], [-77.100448, 38.698315], [-77.100368, 38.698346], [-77.100311, 38.698362], [-77.099836, 38.698468], [-77.099741, 38.698507], [-77.099676, 38.698539], [-77.099574, 38.698576], [-77.099323, 38.698666], [-77.099213, 38.6987], [-77.099187, 38.698717], [-77.098957, 38.698792], [-77.098828, 38.698844], [-77.098548, 38.698942], [-77.098431, 38.698999], [-77.098405, 38.699019], [-77.098341, 38.699045], [-77.098324, 38.699052], [-77.098274, 38.699061], [-77.098045, 38.699222], [-77.098004, 38.699246], [-77.097806, 38.699335], [-77.097746, 38.699383], [-77.097674, 38.699472], [-77.097607, 38.699555], [-77.097438, 38.699694], [-77.097311, 38.699778], [-77.097242, 38.699818], [-77.097155, 38.69986], [-77.097027, 38.699978], [-77.09697, 38.700018], [-77.096777, 38.700126], [-77.096772, 38.700173], [-77.096748, 38.700199], [-77.096579, 38.700316], [-77.096529, 38.700334], [-77.096268, 38.700384], [-77.096252, 38.700397], [-77.096252, 38.700417], [-77.096272, 38.700438], [-77.096328, 38.700453], [-77.096332, 38.700473], [-77.09633, 38.700529], [-77.096261, 38.700489], [-77.096233, 38.70049], [-77.096101, 38.700524], [-77.095985, 38.700579], [-77.095971, 38.700564], [-77.095951, 38.700542], [-77.095852, 38.700584], [-77.095879, 38.700623], [-77.095872, 38.700648], [-77.095798, 38.700748], [-77.095767, 38.700816], [-77.095675, 38.700919], [-77.09548, 38.701103], [-77.095437, 38.701139], [-77.095249, 38.701297], [-77.095233, 38.70131], [-77.095183, 38.701352], [-77.09513, 38.701443], [-77.095072, 38.7015], [-77.094922, 38.701619], [-77.094703, 38.70177], [-77.094522, 38.701873], [-77.09446, 38.7019], [-77.094264, 38.701972], [-77.094242, 38.701959], [-77.094172, 38.701994], [-77.094027, 38.702083], [-77.093933, 38.702152], [-77.093864, 38.702101], [-77.093806, 38.702131], [-77.093726, 38.702171], [-77.093715, 38.702177], [-77.093707, 38.702184], [-77.093643, 38.702237], [-77.093583, 38.702287], [-77.093577, 38.702321], [-77.093559, 38.702414], [-77.093427, 38.702558], [-77.093386, 38.702664], [-77.093351, 38.702701], [-77.0933, 38.702727], [-77.09316, 38.702765], [-77.093102, 38.702787], [-77.093053, 38.702811], [-77.092891, 38.702905], [-77.092307, 38.703184], [-77.092242, 38.703208], [-77.092046, 38.703263], [-77.092003, 38.703275], [-77.091909, 38.703307], [-77.091513, 38.703381], [-77.091452, 38.703381], [-77.091428, 38.703394], [-77.091399, 38.70343], [-77.091169, 38.703547], [-77.091015, 38.703632], [-77.090978, 38.703656], [-77.090615, 38.703892], [-77.090452, 38.704027], [-77.090402, 38.704057], [-77.09036, 38.704076], [-77.090267, 38.704134], [-77.090154, 38.704232], [-77.090017, 38.704341], [-77.089952, 38.704405], [-77.089876, 38.704463], [-77.089811, 38.704503], [-77.089735, 38.704537], [-77.089671, 38.704555], [-77.089526, 38.704661], [-77.089413, 38.704743], [-77.089381, 38.704768], [-77.089261, 38.704861], [-77.089205, 38.704904], [-77.088963, 38.705092], [-77.088742, 38.705133], [-77.088692, 38.705159], [-77.088664, 38.705194], [-77.088314, 38.70519], [-77.08828, 38.705127], [-77.088138, 38.704868], [-77.088156, 38.704824], [-77.088119, 38.704763], [-77.087987, 38.704715], [-77.087948, 38.704826], [-77.087996, 38.70489], [-77.088045, 38.704895], [-77.088115, 38.70503], [-77.088195, 38.705183], [-77.088217, 38.705225], [-77.088038, 38.705384], [-77.087855, 38.705532], [-77.08773, 38.705614], [-77.087609, 38.705679], [-77.086893, 38.706022], [-77.086393, 38.706235], [-77.086082, 38.706368], [-77.085796, 38.706479], [-77.085755, 38.706493], [-77.084853, 38.706809], [-77.084809, 38.706813], [-77.084298, 38.706828], [-77.084142, 38.706842], [-77.08365, 38.707003], [-77.083399, 38.70707], [-77.083246, 38.707125], [-77.083225, 38.707142], [-77.08317, 38.70721], [-77.083179, 38.707228], [-77.08315, 38.707244], [-77.083118, 38.707256], [-77.083032, 38.707338], [-77.082999, 38.707363], [-77.082873, 38.707419], [-77.082736, 38.707457], [-77.082675, 38.70749], [-77.082605, 38.707514], [-77.082574, 38.707538], [-77.082487, 38.707571], [-77.082394, 38.707601], [-77.082347, 38.707607], [-77.082248, 38.707636], [-77.082148, 38.707688], [-77.082089, 38.707708], [-77.082048, 38.707729], [-77.082003, 38.707739], [-77.081965, 38.70776], [-77.081933, 38.707768], [-77.081845, 38.70782], [-77.081773, 38.707847], [-77.081679, 38.707907], [-77.08164, 38.707919], [-77.081616, 38.707934], [-77.081609, 38.707983], [-77.081558, 38.708025], [-77.081552, 38.708056], [-77.081467, 38.708108], [-77.081423, 38.708151], [-77.081331, 38.708215], [-77.081256, 38.708277], [-77.081172, 38.708331], [-77.081108, 38.708356], [-77.081048, 38.708393], [-77.080928, 38.708457], [-77.080911, 38.708478], [-77.080871, 38.708509], [-77.080779, 38.70856], [-77.080607, 38.708634], [-77.080414, 38.708748], [-77.080346, 38.708777], [-77.080268, 38.70883], [-77.080039, 38.708932], [-77.080006, 38.708955], [-77.07998, 38.708996], [-77.07995, 38.709018], [-77.07993, 38.709072], [-77.079947, 38.709105], [-77.079947, 38.709148], [-77.079956, 38.709177], [-77.079985, 38.709201], [-77.080029, 38.709305], [-77.080046, 38.709361], [-77.080082, 38.709399], [-77.080122, 38.709412], [-77.080166, 38.709566], [-77.080169, 38.709595], [-77.080164, 38.709623], [-77.080139, 38.709687], [-77.080133, 38.70972], [-77.080142, 38.709774], [-77.080192, 38.709871], [-77.080218, 38.709995], [-77.08025, 38.710037], [-77.08028, 38.710063], [-77.080318, 38.710083], [-77.080366, 38.710134], [-77.080408, 38.710159], [-77.080623, 38.710175], [-77.080683, 38.710199], [-77.080733, 38.710228], [-77.080779, 38.710265], [-77.080804, 38.710316], [-77.080832, 38.710391], [-77.080818, 38.710425], [-77.080812, 38.710461], [-77.080835, 38.710548], [-77.080819, 38.710672], [-77.080823, 38.710762], [-77.080819, 38.710801], [-77.080824, 38.710832], [-77.080807, 38.710915], [-77.080811, 38.710947], [-77.080794, 38.710987], [-77.080793, 38.711026], [-77.080803, 38.711056], [-77.080802, 38.711133], [-77.080798, 38.711151], [-77.080761, 38.711207], [-77.080726, 38.711285], [-77.080616, 38.711434], [-77.080576, 38.711474], [-77.080531, 38.711508], [-77.080509, 38.711534], [-77.080497, 38.711563], [-77.08044, 38.711621], [-77.080374, 38.711657], [-77.080271, 38.711763], [-77.080243, 38.711782], [-77.080185, 38.711802], [-77.080107, 38.711873], [-77.07999, 38.711936], [-77.079933, 38.711991], [-77.07987, 38.712088], [-77.079842, 38.712193], [-77.079822, 38.712217], [-77.079798, 38.712299], [-77.079775, 38.712407], [-77.079779, 38.712472], [-77.079803, 38.712496], [-77.079808, 38.712527], [-77.079802, 38.712564], [-77.079815, 38.712638], [-77.079816, 38.71268], [-77.079805, 38.712703], [-77.079777, 38.712723], [-77.079703, 38.712749], [-77.079639, 38.712802], [-77.079565, 38.712843], [-77.079494, 38.712895], [-77.07947, 38.712902], [-77.07935, 38.712969], [-77.079297, 38.713004], [-77.079234, 38.71306], [-77.079056, 38.713124], [-77.078957, 38.713165], [-77.078916, 38.713167], [-77.078858, 38.713206], [-77.078774, 38.713242], [-77.078688, 38.713267], [-77.078646, 38.713268], [-77.07859, 38.713283], [-77.078526, 38.713317], [-77.078482, 38.71333], [-77.078403, 38.713335], [-77.07838, 38.713335], [-77.078347, 38.713344], [-77.078342, 38.713362], [-77.078312, 38.713383], [-77.078271, 38.713399], [-77.0782, 38.713417], [-77.078064, 38.713435], [-77.077925, 38.713466], [-77.077828, 38.713465], [-77.077707, 38.713473], [-77.077476, 38.713471], [-77.077435, 38.713462], [-77.077415, 38.713448], [-77.077338, 38.713431], [-77.07727, 38.7134], [-77.077276, 38.713382], [-77.077315, 38.713383], [-77.077336, 38.713374], [-77.077382, 38.713378], [-77.077376, 38.713329], [-77.077364, 38.713303], [-77.077342, 38.713287], [-77.077221, 38.713225], [-77.077182, 38.713197], [-77.077166, 38.713176], [-77.077173, 38.713121], [-77.07711, 38.713099], [-77.077059, 38.713121], [-77.076959, 38.713115], [-77.076908, 38.71309], [-77.076878, 38.713085], [-77.07685, 38.713072], [-77.076779, 38.713082], [-77.076687, 38.71306], [-77.076654, 38.713048], [-77.076643, 38.713018], [-77.076614, 38.713], [-77.07658, 38.71299], [-77.076529, 38.712986], [-77.07637, 38.712992], [-77.076232, 38.712924], [-77.076186, 38.712913], [-77.076104, 38.712875], [-77.076056, 38.712877], [-77.075833, 38.712865], [-77.075767, 38.712839], [-77.075685, 38.71283], [-77.075656, 38.71284], [-77.075622, 38.712826], [-77.075529, 38.7128], [-77.075486, 38.712801], [-77.075457, 38.712797], [-77.075381, 38.712759], [-77.075345, 38.712746], [-77.075323, 38.712717], [-77.075298, 38.712699], [-77.075228, 38.712682], [-77.075194, 38.712663], [-77.075166, 38.71263], [-77.075134, 38.712611], [-77.075095, 38.712612], [-77.075046, 38.712662], [-77.07498, 38.7127], [-77.074836, 38.712713], [-77.074805, 38.712724], [-77.074742, 38.712732], [-77.074696, 38.712732], [-77.07467, 38.712716], [-77.074639, 38.712725], [-77.074604, 38.712747], [-77.074586, 38.712766], [-77.074509, 38.712805], [-77.074425, 38.71286], [-77.074341, 38.7129], [-77.074306, 38.71291], [-77.074188, 38.712832], [-77.074159, 38.712812], [-77.074143, 38.712796], [-77.074159, 38.712779], [-77.074168, 38.712746], [-77.074198, 38.71269], [-77.074211, 38.712619], [-77.074192, 38.712418], [-77.074164, 38.712331], [-77.07413, 38.712271], [-77.074115, 38.712216], [-77.074123, 38.712199], [-77.074169, 38.712145], [-77.074192, 38.712124], [-77.074224, 38.712109], [-77.074229, 38.712091], [-77.074225, 38.712043], [-77.074251, 38.712021], [-77.074257, 38.711993], [-77.074235, 38.711985], [-77.074208, 38.711995], [-77.074185, 38.711995], [-77.074157, 38.711974], [-77.074147, 38.711953], [-77.074148, 38.711932], [-77.074135, 38.71191], [-77.074094, 38.7119], [-77.074046, 38.711868], [-77.074022, 38.711844], [-77.073991, 38.711828], [-77.073919, 38.711767], [-77.073887, 38.711732], [-77.073874, 38.7117], [-77.073826, 38.711663], [-77.073824, 38.711645], [-77.073747, 38.711596], [-77.073692, 38.71157], [-77.073688, 38.711544], [-77.073623, 38.711444], [-77.07353, 38.71134], [-77.073503, 38.711322], [-77.073435, 38.711252], [-77.07341, 38.71122], [-77.073354, 38.711181], [-77.073338, 38.711151], [-77.073293, 38.711098], [-77.073274, 38.711069], [-77.073275, 38.711047], [-77.073262, 38.711026], [-77.07325, 38.710988], [-77.073231, 38.710918], [-77.07321, 38.710884], [-77.073159, 38.710819], [-77.073012, 38.71071], [-77.072861, 38.710632], [-77.072832, 38.710591], [-77.072805, 38.710576], [-77.072699, 38.710537], [-77.072651, 38.710501], [-77.072584, 38.710463], [-77.072518, 38.710427], [-77.072453, 38.710379], [-77.072407, 38.710351], [-77.072367, 38.710335], [-77.072331, 38.710306], [-77.072228, 38.710261], [-77.072109, 38.710215], [-77.072006, 38.710182], [-77.071896, 38.710129], [-77.071836, 38.710093], [-77.071633, 38.710034], [-77.071505, 38.71002], [-77.071435, 38.709989], [-77.071379, 38.709982], [-77.071323, 38.709981], [-77.071241, 38.709989], [-77.071198, 38.709981], [-77.071145, 38.709978], [-77.071091, 38.709981], [-77.071034, 38.709996], [-77.070961, 38.709995], [-77.070898, 38.710003], [-77.070851, 38.709993], [-77.070747, 38.710014], [-77.070682, 38.710005], [-77.070439, 38.710015], [-77.070282, 38.710034], [-77.070241, 38.710014], [-77.070183, 38.710033], [-77.070007, 38.710032], [-77.06982, 38.710051], [-77.069636, 38.710053], [-77.069595, 38.710061], [-77.069404, 38.710053], [-77.069239, 38.710074], [-77.06912, 38.71009], [-77.069082, 38.71009], [-77.068965, 38.710077], [-77.068887, 38.710061], [-77.068775, 38.710026], [-77.068732, 38.710018], [-77.068583, 38.71002], [-77.068541, 38.710015], [-77.068483, 38.71], [-77.068386, 38.710001], [-77.068316, 38.709991], [-77.068288, 38.709994], [-77.068158, 38.709985], [-77.067984, 38.709952], [-77.06777, 38.709976], [-77.067683, 38.709963], [-77.067328, 38.709967], [-77.067273, 38.70996], [-77.067246, 38.709951], [-77.067163, 38.709945], [-77.066988, 38.709957], [-77.066938, 38.709955], [-77.066807, 38.709934], [-77.066767, 38.709934], [-77.066745, 38.709941], [-77.066601, 38.709936], [-77.06651, 38.709943], [-77.066469, 38.709939], [-77.066235, 38.709945], [-77.06609, 38.709936], [-77.065954, 38.709936], [-77.065813, 38.709928], [-77.065767, 38.709935], [-77.06565, 38.709922], [-77.06554, 38.70992], [-77.065451, 38.70991], [-77.065288, 38.709909], [-77.065269, 38.709921], [-77.065151, 38.709925], [-77.064795, 38.709925], [-77.064076, 38.709899], [-77.063601, 38.709865], [-77.063539, 38.709856], [-77.063161, 38.709834], [-77.0631, 38.709821], [-77.063041, 38.709815], [-77.062836, 38.709822], [-77.062806, 38.709817], [-77.062707, 38.709819], [-77.062641, 38.709808], [-77.062427, 38.709819], [-77.062392, 38.709813], [-77.062331, 38.709811], [-77.062271, 38.709815], [-77.062225, 38.709825], [-77.062198, 38.709837], [-77.062164, 38.709854], [-77.062119, 38.709856], [-77.062099, 38.709865], [-77.062061, 38.709872], [-77.061963, 38.709861], [-77.061928, 38.709851], [-77.061899, 38.709831], [-77.06186, 38.709821], [-77.061794, 38.709818], [-77.061482, 38.709833], [-77.061414, 38.709852], [-77.06139, 38.709845], [-77.061326, 38.709842], [-77.061315, 38.709841], [-77.061206, 38.709858], [-77.061178, 38.709862], [-77.060851, 38.709881], [-77.059918, 38.709936], [-77.059685, 38.709946], [-77.059271, 38.709956], [-77.059214, 38.709974], [-77.0592, 38.709989], [-77.059172, 38.710071], [-77.059138, 38.710056], [-77.059125, 38.710009], [-77.059102, 38.710008], [-77.059068, 38.710027], [-77.058985, 38.710033], [-77.058902, 38.710031], [-77.058837, 38.710023], [-77.058773, 38.710027], [-77.058712, 38.710018], [-77.05853, 38.710026], [-77.058468, 38.710035], [-77.058406, 38.710025], [-77.058366, 38.710038], [-77.058314, 38.710007], [-77.058241, 38.71001], [-77.058203, 38.710001], [-77.058161, 38.709977], [-77.058123, 38.70994], [-77.058104, 38.709929], [-77.058067, 38.709923], [-77.057985, 38.709921], [-77.05795, 38.709904], [-77.057882, 38.70991], [-77.057796, 38.709906], [-77.05764, 38.709924], [-77.057527, 38.709951], [-77.057369, 38.710006], [-77.05722, 38.710037], [-77.05712, 38.710084], [-77.057058, 38.710106], [-77.056993, 38.710123], [-77.056952, 38.710126], [-77.056706, 38.710198], [-77.05661, 38.710205], [-77.05651, 38.710224], [-77.056382, 38.710191], [-77.0563, 38.710192], [-77.056109, 38.710159], [-77.05589, 38.71009], [-77.055814, 38.710074], [-77.055777, 38.710094], [-77.055726, 38.710099], [-77.055681, 38.710093], [-77.055658, 38.710098], [-77.055624, 38.710087], [-77.055523, 38.710074], [-77.055492, 38.710059], [-77.055401, 38.71005], [-77.055353, 38.710035], [-77.05528, 38.710001], [-77.055243, 38.710003], [-77.055205, 38.710015], [-77.055158, 38.710018], [-77.05511, 38.710013], [-77.055059, 38.709995], [-77.055016, 38.709993], [-77.054993, 38.709984], [-77.054842, 38.709954], [-77.054783, 38.709927], [-77.054722, 38.709929], [-77.054611, 38.709905], [-77.054554, 38.709904], [-77.054479, 38.709874], [-77.054376, 38.709875], [-77.054324, 38.709865], [-77.054203, 38.709866], [-77.054055, 38.709845], [-77.053958, 38.709836], [-77.053732, 38.709831], [-77.053681, 38.709833], [-77.053658, 38.709841], [-77.053635, 38.70984], [-77.053575, 38.709824], [-77.053547, 38.70981], [-77.053524, 38.709812], [-77.053506, 38.709824], [-77.053458, 38.709835], [-77.053361, 38.709842], [-77.053323, 38.709858], [-77.053144, 38.709899], [-77.05307, 38.70993], [-77.053019, 38.70994], [-77.052899, 38.71002], [-77.052846, 38.710063], [-77.052828, 38.710096], [-77.052783, 38.710134], [-77.052701, 38.710215], [-77.05267, 38.710264], [-77.05261, 38.710298], [-77.052578, 38.710343], [-77.052561, 38.710415], [-77.05255, 38.710434], [-77.052507, 38.71047], [-77.052474, 38.710514], [-77.052436, 38.710535], [-77.052436, 38.710584], [-77.052353, 38.710667], [-77.052334, 38.710694], [-77.052309, 38.710764], [-77.052291, 38.710792], [-77.052266, 38.710816], [-77.052098, 38.710936], [-77.052053, 38.710982], [-77.051973, 38.711035], [-77.051898, 38.711095], [-77.051775, 38.711156], [-77.051738, 38.711186], [-77.051654, 38.711235], [-77.051497, 38.711304], [-77.051319, 38.711396], [-77.051271, 38.711417], [-77.051141, 38.711455], [-77.051034, 38.71151], [-77.050921, 38.711549], [-77.050893, 38.711575], [-77.050885, 38.711592], [-77.050783, 38.711638], [-77.050683, 38.711698], [-77.050519, 38.711766], [-77.05043, 38.711809], [-77.050403, 38.711836], [-77.050339, 38.711857], [-77.05031, 38.711882], [-77.050263, 38.71189], [-77.050091, 38.712015], [-77.050047, 38.712029], [-77.050028, 38.712046], [-77.049899, 38.7121], [-77.049809, 38.712145], [-77.049783, 38.712152], [-77.049745, 38.712175], [-77.049699, 38.712191], [-77.049618, 38.712246], [-77.049492, 38.712309], [-77.049414, 38.712336], [-77.049326, 38.71238], [-77.049035, 38.712495], [-77.048892, 38.712567], [-77.048859, 38.71257], [-77.048823, 38.712607], [-77.048781, 38.712635], [-77.048735, 38.712658], [-77.04867, 38.712677], [-77.048621, 38.712698], [-77.04858, 38.712728], [-77.048456, 38.712764], [-77.048411, 38.712781], [-77.048383, 38.712798], [-77.048337, 38.712805], [-77.048317, 38.712815], [-77.048264, 38.712887], [-77.048235, 38.7129], [-77.048132, 38.712932], [-77.048093, 38.712981], [-77.048073, 38.712991], [-77.048018, 38.713068], [-77.047975, 38.713105], [-77.047885, 38.713165], [-77.047842, 38.713214], [-77.047813, 38.713268], [-77.047808, 38.713299], [-77.047784, 38.713323], [-77.047754, 38.713339], [-77.047683, 38.713412], [-77.047606, 38.713464], [-77.04756, 38.713489], [-77.047443, 38.713584], [-77.047354, 38.713664], [-77.047309, 38.713693], [-77.047235, 38.713759], [-77.047166, 38.71383], [-77.046973, 38.714], [-77.046921, 38.714037], [-77.046758, 38.714135], [-77.046681, 38.71417], [-77.046584, 38.714229], [-77.046417, 38.714309], [-77.046198, 38.714439], [-77.046182, 38.714454], [-77.046167, 38.714468], [-77.046145, 38.714503], [-77.046134, 38.714531], [-77.0461, 38.714576], [-77.046077, 38.714619], [-77.046067, 38.714679], [-77.046041, 38.714736], [-77.046038, 38.714813], [-77.045992, 38.714977], [-77.045952, 38.715025], [-77.045916, 38.715053], [-77.045905, 38.715095], [-77.045885, 38.715123], [-77.045877, 38.715162], [-77.045839, 38.715205], [-77.045803, 38.715263], [-77.045769, 38.715287], [-77.045728, 38.71535], [-77.045647, 38.715441], [-77.045631, 38.715474], [-77.045598, 38.715519], [-77.045561, 38.71556], [-77.045543, 38.715573], [-77.045474, 38.715586], [-77.045494, 38.715627], [-77.045472, 38.715715], [-77.045445, 38.715774], [-77.045361, 38.715882], [-77.0453, 38.715941], [-77.045282, 38.715981], [-77.045209, 38.716057], [-77.045136, 38.71615], [-77.045097, 38.716184], [-77.045092, 38.716205], [-77.045044, 38.716279], [-77.044958, 38.71638], [-77.044931, 38.716436], [-77.044887, 38.716485], [-77.044849, 38.716512], [-77.044819, 38.716546], [-77.044777, 38.716607], [-77.044701, 38.716693], [-77.044684, 38.716732], [-77.044638, 38.716787], [-77.044563, 38.71689], [-77.044513, 38.716941], [-77.044467, 38.717015], [-77.044385, 38.717093], [-77.044345, 38.717148], [-77.044309, 38.71718], [-77.04422, 38.717281], [-77.044175, 38.71735], [-77.044154, 38.717425], [-77.044095, 38.717467], [-77.044016, 38.717559], [-77.044012, 38.717563], [-77.044006, 38.71757], [-77.044003, 38.717574], [-77.043967, 38.717616], [-77.043894, 38.717663], [-77.043879, 38.717682], [-77.04386, 38.717719], [-77.04385, 38.717751], [-77.043801, 38.717807], [-77.0438, 38.717842], [-77.043785, 38.717894], [-77.043761, 38.717927], [-77.04373, 38.717955], [-77.043687, 38.717977], [-77.043679, 38.718003], [-77.043689, 38.71802], [-77.043697, 38.718076], [-77.043683, 38.718109], [-77.043644, 38.718115], [-77.043624, 38.718126], [-77.043612, 38.718155], [-77.043608, 38.718215], [-77.043597, 38.718234], [-77.043551, 38.718281], [-77.043459, 38.718337], [-77.043411, 38.718389], [-77.043386, 38.718443], [-77.043346, 38.718448], [-77.04334, 38.718476], [-77.043368, 38.718543], [-77.043326, 38.718587], [-77.0433, 38.71868], [-77.043253, 38.718724], [-77.043248, 38.718742], [-77.043291, 38.718773], [-77.043296, 38.718793], [-77.043291, 38.718871], [-77.043304, 38.718952], [-77.043303, 38.718989], [-77.043294, 38.719007], [-77.043256, 38.719019], [-77.043252, 38.719037], [-77.043292, 38.719038], [-77.043342, 38.719005], [-77.043396, 38.718997], [-77.043449, 38.718999], [-77.043475, 38.719006], [-77.04353, 38.719003], [-77.043572, 38.719016], [-77.04361, 38.71904], [-77.043627, 38.719065], [-77.043628, 38.719083], [-77.043647, 38.719107], [-77.043723, 38.719168], [-77.043724, 38.719198], [-77.043715, 38.719229], [-77.043695, 38.719238], [-77.043659, 38.719217], [-77.043595, 38.719204], [-77.043581, 38.719189], [-77.043569, 38.719149], [-77.04351, 38.719098], [-77.043442, 38.719102], [-77.043381, 38.719122], [-77.04336, 38.719137], [-77.043353, 38.719166], [-77.043314, 38.719181], [-77.043299, 38.719242], [-77.043265, 38.719283], [-77.043219, 38.719287], [-77.043189, 38.719329], [-77.043181, 38.719357], [-77.043189, 38.719388], [-77.04323, 38.719452], [-77.043232, 38.71947], [-77.043206, 38.719573], [-77.043192, 38.719731], [-77.04318, 38.719787], [-77.043084, 38.719991], [-77.043072, 38.720046], [-77.04304, 38.720104], [-77.043021, 38.720163], [-77.043018, 38.720203], [-77.042995, 38.720269], [-77.042992, 38.720288], [-77.042986, 38.720322], [-77.04297, 38.720348], [-77.042941, 38.720373], [-77.042885, 38.72059], [-77.042853, 38.720662], [-77.042838, 38.720812], [-77.042762, 38.720998], [-77.042712, 38.721032], [-77.04268, 38.721066], [-77.042666, 38.721244], [-77.042648, 38.721318], [-77.042625, 38.721371], [-77.04262, 38.721413], [-77.042625, 38.721455], [-77.042637, 38.721492], [-77.042638, 38.721531], [-77.042614, 38.721561], [-77.042575, 38.721662], [-77.042569, 38.721777], [-77.042556, 38.721813], [-77.042538, 38.721827], [-77.042536, 38.721851], [-77.042546, 38.721883], [-77.042526, 38.722027], [-77.042494, 38.722086], [-77.042478, 38.722143], [-77.042475, 38.722206], [-77.042442, 38.722281], [-77.042434, 38.722346], [-77.042436, 38.722472], [-77.042423, 38.72255], [-77.042395, 38.722639], [-77.042388, 38.722678], [-77.042399, 38.722778], [-77.04232, 38.723223], [-77.042298, 38.723449], [-77.04229, 38.723593], [-77.04227, 38.723735], [-77.042153, 38.724263], [-77.042067, 38.724506], [-77.042055, 38.7246], [-77.042023, 38.724685], [-77.041897, 38.724935], [-77.041828, 38.725045], [-77.041805, 38.725105], [-77.041748, 38.725317], [-77.041727, 38.725377], [-77.041702, 38.725435], [-77.041664, 38.725525], [-77.041636, 38.72557], [-77.041528, 38.725706], [-77.041497, 38.725746], [-77.041487, 38.725773], [-77.041481, 38.725829], [-77.041471, 38.725855], [-77.041489, 38.725918], [-77.041551, 38.72627], [-77.041625, 38.726504], [-77.041635, 38.726549], [-77.041672, 38.726907], [-77.041678, 38.727129], [-77.041665, 38.72722], [-77.041635, 38.727726], [-77.041632, 38.727887], [-77.041636, 38.728004], [-77.041658, 38.728219], [-77.041671, 38.728429], [-77.041686, 38.728544], [-77.04169, 38.728572], [-77.04169, 38.728575], [-77.041696, 38.728622], [-77.041712, 38.728818], [-77.041706, 38.729057], [-77.041688, 38.729335], [-77.041658, 38.729818], [-77.04166, 38.729837], [-77.04168, 38.730031], [-77.041682, 38.730202], [-77.041665, 38.730396], [-77.041712, 38.730645], [-77.041748, 38.730835], [-77.041752, 38.73086], [-77.041696, 38.731069], [-77.041665, 38.73137], [-77.041709, 38.731521], [-77.041744, 38.732269], [-77.041763, 38.732331], [-77.041767, 38.732466], [-77.041734, 38.732942], [-77.041692, 38.733116], [-77.04166, 38.733246], [-77.041616, 38.733515], [-77.041608, 38.73367], [-77.041625, 38.733819], [-77.04162, 38.733887], [-77.041623, 38.733971], [-77.04168, 38.734293], [-77.041683, 38.734433], [-77.041701, 38.734531], [-77.041736, 38.734635], [-77.041736, 38.73466], [-77.041716, 38.734682], [-77.041655, 38.734695], [-77.041698, 38.735254], [-77.041714, 38.735316], [-77.041766, 38.735436], [-77.041763, 38.735523], [-77.041752, 38.735551], [-77.041743, 38.7356], [-77.041744, 38.735728], [-77.041755, 38.735788], [-77.041772, 38.735821], [-77.041797, 38.735896], [-77.0418, 38.736068], [-77.041816, 38.736234], [-77.041818, 38.736309], [-77.041833, 38.736361], [-77.041842, 38.736421], [-77.041836, 38.736442], [-77.041766, 38.73653], [-77.041708, 38.736641], [-77.041639, 38.736713], [-77.041609, 38.736751], [-77.04159, 38.736795], [-77.041592, 38.736825], [-77.04164, 38.736946], [-77.041743, 38.737128], [-77.041754, 38.737147], [-77.041767, 38.737171], [-77.041829, 38.737259], [-77.041891, 38.737334], [-77.042157, 38.737601], [-77.042281, 38.737685], [-77.04231, 38.737709], [-77.042384, 38.737793], [-77.042568, 38.738061], [-77.042532, 38.738081], [-77.042652, 38.738214], [-77.042811, 38.738391], [-77.042837, 38.738384], [-77.042858, 38.738415], [-77.042958, 38.738515], [-77.043127, 38.738651], [-77.043233, 38.73872], [-77.043297, 38.73878], [-77.043301, 38.738786], [-77.043312, 38.738803], [-77.043313, 38.738804], [-77.043355, 38.738868], [-77.043422, 38.739012], [-77.043469, 38.739155], [-77.04348, 38.739249], [-77.043467, 38.73936], [-77.043454, 38.739409], [-77.043423, 38.739471], [-77.043356, 38.739546], [-77.043313, 38.739582], [-77.043243, 38.739669], [-77.043186, 38.739707], [-77.043135, 38.73975], [-77.043081, 38.739805], [-77.043035, 38.739852], [-77.042974, 38.739915], [-77.042822, 38.740053], [-77.042726, 38.74017], [-77.042334, 38.740878], [-77.042292, 38.741032], [-77.04227, 38.741163], [-77.042284, 38.741293], [-77.042174, 38.743514], [-77.042043, 38.74617], [-77.042024, 38.746729], [-77.041911, 38.750123], [-77.04185, 38.751814], [-77.04185, 38.751819], [-77.041587, 38.759106], [-77.041569, 38.759589], [-77.041562, 38.759793], [-77.041562, 38.759795], [-77.041516, 38.761046], [-77.04141, 38.764011], [-77.041366, 38.765682], [-77.041366, 38.768562], [-77.041364, 38.785423], [-77.040252, 38.785224], [-77.040097, 38.78992], [-77.040467, 38.790413], [-77.040048, 38.79044], [-77.03983, 38.790456], [-77.039633, 38.790475], [-77.039549, 38.790493], [-77.039472, 38.790747], [-77.039428, 38.790817], [-77.039447, 38.790886], [-77.03944, 38.791094], [-77.039364, 38.791175], [-77.039392, 38.791326], [-77.039394, 38.791333], [-77.039386, 38.791462], [-77.039373, 38.791529], [-77.039362, 38.791583], [-77.039368, 38.791598], [-77.039008, 38.791653], [-77.038976, 38.793187], [-77.038979, 38.793297], [-77.03899, 38.793681], [-77.038991, 38.793709], [-77.039011, 38.794418], [-77.039012, 38.794549], [-77.039017, 38.794742], [-77.039076, 38.796884], [-77.039076, 38.796911], [-77.039082, 38.797168], [-77.039086, 38.797296], [-77.039094, 38.797579], [-77.039096, 38.797597], [-77.0391, 38.797657], [-77.039116, 38.798177], [-77.03916, 38.799515], [-77.039166, 38.79975], [-77.039178, 38.800042], [-77.039186, 38.800308], [-77.039193, 38.800504], [-77.039132, 38.800825], [-77.038969, 38.801685], [-77.038968, 38.801685], [-77.038622, 38.803488], [-77.038415, 38.804563], [-77.03838, 38.804747], [-77.038318, 38.805052], [-77.038185, 38.80571], [-77.038002, 38.806589], [-77.037722, 38.808152], [-77.037644, 38.808582], [-77.03729, 38.810535], [-77.037308, 38.812245], [-77.03734, 38.813413], [-77.037358, 38.814195], [-77.03736, 38.814485], [-77.037358, 38.814543], [-77.037345, 38.814643], [-77.037364, 38.814712], [-77.037391, 38.814747], [-77.037419, 38.814794], [-77.037429, 38.81486], [-77.037439, 38.814947], [-77.037475, 38.815005], [-77.037525, 38.815052], [-77.037596, 38.815097], [-77.037675, 38.815151], [-77.037743, 38.815191], [-77.037828, 38.815256], [-77.037909, 38.815329], [-77.038028, 38.815444], [-77.038081, 38.815522], [-77.038148, 38.815621], [-77.038225, 38.81578], [-77.038276, 38.815881], [-77.038317, 38.815977], [-77.038353, 38.816037], [-77.03838, 38.816079], [-77.038414, 38.816098], [-77.038423, 38.816147], [-77.038428, 38.816207], [-77.038433, 38.816216], [-77.038434, 38.81622], [-77.038449, 38.816249], [-77.03846, 38.816301], [-77.038489, 38.816523], [-77.038508, 38.816629], [-77.038525, 38.816723], [-77.038542, 38.816819], [-77.038555, 38.816906], [-77.038561, 38.816986], [-77.038568, 38.817057], [-77.038542, 38.817072], [-77.038546, 38.817087], [-77.03857, 38.817097], [-77.038578, 38.817116], [-77.038609, 38.817191], [-77.038633, 38.817276], [-77.038662, 38.817348], [-77.038677, 38.817415], [-77.038693, 38.817465], [-77.038706, 38.817521], [-77.038713, 38.817568], [-77.038702, 38.817597], [-77.038704, 38.817604], [-77.038713, 38.817651], [-77.038745, 38.817643], [-77.038779, 38.817693], [-77.038754, 38.817713], [-77.038753, 38.817744], [-77.03878, 38.817816], [-77.038791, 38.817863], [-77.038828, 38.817883], [-77.038839, 38.81793], [-77.038814, 38.817954], [-77.038802, 38.817986], [-77.038811, 38.818009], [-77.038858, 38.818045], [-77.038846, 38.818122], [-77.038823, 38.818144], [-77.038822, 38.818145], [-77.038858, 38.818173], [-77.038869, 38.818216], [-77.038871, 38.818253], [-77.038875, 38.818329], [-77.038884, 38.818386], [-77.0389, 38.818436], [-77.038911, 38.818477], [-77.038929, 38.81852], [-77.038953, 38.818585], [-77.03897, 38.818633], [-77.038979, 38.818676], [-77.038987, 38.81869], [-77.038994, 38.818708], [-77.038993, 38.818734], [-77.038983, 38.818763], [-77.038972, 38.818787], [-77.039085, 38.818828], [-77.039063, 38.818873], [-77.039122, 38.818893], [-77.039103, 38.818947], [-77.03904, 38.818929], [-77.039032, 38.818937], [-77.039008, 38.818959], [-77.038987, 38.818984], [-77.038955, 38.819019], [-77.038927, 38.819044], [-77.038909, 38.81907], [-77.038888, 38.819097], [-77.038874, 38.819133], [-77.038864, 38.819175], [-77.038866, 38.819267], [-77.038869, 38.819337], [-77.038901, 38.819376], [-77.038907, 38.819406], [-77.038894, 38.819435], [-77.038922, 38.819481], [-77.038921, 38.819507], [-77.038925, 38.819512], [-77.038944, 38.819541], [-77.038962, 38.819544], [-77.038985, 38.819547], [-77.039027, 38.819534], [-77.039134, 38.819614], [-77.039218, 38.819677], [-77.039279, 38.819734], [-77.039342, 38.819797], [-77.039376, 38.819825], [-77.039431, 38.819853], [-77.039498, 38.819875], [-77.039557, 38.819883], [-77.039609, 38.819896], [-77.039667, 38.819899], [-77.039731, 38.819893], [-77.039815, 38.819982], [-77.039902, 38.820081], [-77.039907, 38.820143], [-77.039974, 38.820262], [-77.039937, 38.820469], [-77.039972, 38.820509], [-77.039997, 38.820534], [-77.04001, 38.820571], [-77.040015, 38.820597], [-77.040042, 38.820622], [-77.040046, 38.820661], [-77.040031, 38.820684], [-77.04, 38.820706], [-77.039984, 38.820736], [-77.03997, 38.820773], [-77.039957, 38.820816], [-77.039936, 38.820866], [-77.0399, 38.82091], [-77.039847, 38.820957], [-77.039804, 38.821014], [-77.039742, 38.821069], [-77.039675, 38.821099], [-77.039623, 38.821129], [-77.03957, 38.821148], [-77.039555, 38.82117], [-77.039549, 38.821216], [-77.039546, 38.821263], [-77.039544, 38.821284], [-77.039518, 38.821299], [-77.039518, 38.821322], [-77.03951, 38.821344], [-77.0395, 38.821368], [-77.039488, 38.821412], [-77.039461, 38.82144], [-77.039446, 38.821464], [-77.039461, 38.821565], [-77.039494, 38.821592], [-77.03949, 38.821612], [-77.039498, 38.821664], [-77.039556, 38.821707], [-77.039586, 38.821713], [-77.039636, 38.82174], [-77.03966, 38.821776], [-77.039713, 38.821825], [-77.039766, 38.821832], [-77.039819, 38.821852], [-77.039891, 38.82186], [-77.039938, 38.821889], [-77.040061, 38.821903], [-77.040106, 38.821924], [-77.040238, 38.821978], [-77.04039, 38.821999], [-77.040525, 38.821976], [-77.0406, 38.821998], [-77.040652, 38.822031], [-77.040688, 38.822045], [-77.04074, 38.822091], [-77.04076, 38.822098], [-77.040828, 38.822184], [-77.040869, 38.822244], [-77.040875, 38.822347], [-77.040916, 38.822424], [-77.040983, 38.822567], [-77.040984, 38.822598], [-77.040999, 38.822616], [-77.041006, 38.822673], [-77.041041, 38.822726], [-77.041088, 38.822893], [-77.04109, 38.822935], [-77.041109, 38.822948], [-77.041096, 38.823057], [-77.041101, 38.82309], [-77.041082, 38.823199], [-77.04107, 38.823237], [-77.041069, 38.823265], [-77.041046, 38.823302], [-77.041021, 38.823324], [-77.040984, 38.823345], [-77.040955, 38.82338], [-77.040902, 38.823388], [-77.040892, 38.823391], [-77.040797, 38.823454], [-77.040782, 38.823491], [-77.040688, 38.823562], [-77.040652, 38.823575], [-77.040631, 38.823597], [-77.04062, 38.823612], [-77.040595, 38.823623], [-77.040533, 38.823627], [-77.040519, 38.823644], [-77.04044, 38.823646], [-77.04042, 38.823662], [-77.040386, 38.82367], [-77.040344, 38.82369], [-77.040291, 38.82369], [-77.040265, 38.823715], [-77.040198, 38.823721], [-77.04017, 38.823731], [-77.040139, 38.823729], [-77.040111, 38.823744], [-77.040068, 38.823754], [-77.040051, 38.82376], [-77.040015, 38.82376], [-77.039973, 38.823752], [-77.039817, 38.823747], [-77.039797, 38.823759], [-77.039771, 38.823759], [-77.039751, 38.823774], [-77.03972, 38.823789], [-77.039698, 38.823798], [-77.039678, 38.823815], [-77.039675, 38.823837], [-77.039674, 38.823852], [-77.039683, 38.823865], [-77.039688, 38.823879], [-77.039671, 38.823896], [-77.03967, 38.823935], [-77.039644, 38.823961], [-77.039602, 38.823972], [-77.039602, 38.823991], [-77.039537, 38.824015], [-77.039511, 38.824034], [-77.039461, 38.824033], [-77.039413, 38.82405], [-77.039376, 38.82405], [-77.039337, 38.824067], [-77.039258, 38.82407], [-77.039219, 38.824094], [-77.039184, 38.824096], [-77.039129, 38.824099], [-77.039087, 38.824112], [-77.03907, 38.824132], [-77.039052, 38.824151], [-77.039032, 38.824177], [-77.039014, 38.824236], [-77.038979, 38.82428], [-77.038942, 38.824324], [-77.038902, 38.824366], [-77.038883, 38.824379], [-77.038873, 38.824416], [-77.038838, 38.82443], [-77.038803, 38.824452], [-77.038786, 38.824481], [-77.038791, 38.824514], [-77.038804, 38.824543], [-77.038812, 38.82456], [-77.03884, 38.824566], [-77.038829, 38.824596], [-77.038813, 38.82462], [-77.038793, 38.824651], [-77.038801, 38.824701], [-77.038766, 38.82475], [-77.038751, 38.824898], [-77.038762, 38.824982], [-77.038667, 38.825074], [-77.038628, 38.825427], [-77.038618, 38.825512], [-77.038657, 38.825576], [-77.038668, 38.82568], [-77.03863, 38.825776], [-77.03861, 38.82593], [-77.038541, 38.826044], [-77.03858, 38.826097], [-77.038564, 38.826201], [-77.038522, 38.826265], [-77.038508, 38.826357], [-77.038466, 38.82645], [-77.038451, 38.826534], [-77.038404, 38.826836], [-77.038339, 38.826931], [-77.038305, 38.827106], [-77.038336, 38.827135], [-77.038384, 38.82718], [-77.038369, 38.827274], [-77.038314, 38.827324], [-77.038304, 38.82736], [-77.038288, 38.827425], [-77.038274, 38.82749], [-77.038279, 38.827511], [-77.03828, 38.827516], [-77.038265, 38.827531], [-77.038238, 38.827555], [-77.038207, 38.827578], [-77.038198, 38.827599], [-77.038191, 38.827622], [-77.038181, 38.827644], [-77.038172, 38.827656], [-77.038153, 38.827671], [-77.038143, 38.827688], [-77.038137, 38.827701], [-77.038138, 38.827719], [-77.038143, 38.827737], [-77.038147, 38.82775], [-77.038144, 38.82776], [-77.038143, 38.827779], [-77.038144, 38.827791], [-77.038153, 38.827808], [-77.038158, 38.827821], [-77.038162, 38.827844], [-77.038164, 38.827869], [-77.038158, 38.827881], [-77.038154, 38.827902], [-77.038149, 38.827944], [-77.038133, 38.827958], [-77.038133, 38.82801], [-77.038127, 38.828031], [-77.038117, 38.82805], [-77.038096, 38.828065], [-77.038089, 38.828075], [-77.03808, 38.828083], [-77.038072, 38.828096], [-77.038065, 38.828113], [-77.038058, 38.828125], [-77.038058, 38.828134], [-77.03806, 38.828149], [-77.038067, 38.828163], [-77.038073, 38.828174], [-77.038074, 38.828186], [-77.038066, 38.828204], [-77.038058, 38.828217], [-77.038043, 38.828235], [-77.03803, 38.828253], [-77.038023, 38.828268], [-77.038021, 38.828297], [-77.038036, 38.828341], [-77.038045, 38.828356], [-77.038052, 38.828373], [-77.038051, 38.828388], [-77.038033, 38.8284], [-77.038009, 38.828426], [-77.03801, 38.828443], [-77.038019, 38.828463], [-77.038016, 38.828477], [-77.038008, 38.828484], [-77.037976, 38.828582], [-77.037971, 38.8286], [-77.037983, 38.828625], [-77.037985, 38.828644], [-77.037986, 38.828661], [-77.037977, 38.828682], [-77.037967, 38.828709], [-77.037956, 38.82873], [-77.037949, 38.82876], [-77.037949, 38.828781], [-77.037956, 38.828806], [-77.03795, 38.828829], [-77.037941, 38.82884], [-77.037934, 38.828851], [-77.037915, 38.828902], [-77.037888, 38.828954], [-77.037882, 38.828978], [-77.037867, 38.828983], [-77.037856, 38.828988], [-77.037845, 38.829003], [-77.037839, 38.829019], [-77.037838, 38.829036], [-77.037852, 38.829064], [-77.037851, 38.82909], [-77.037828, 38.829149], [-77.037808, 38.829172], [-77.037788, 38.829189], [-77.037775, 38.829205], [-77.037766, 38.829221], [-77.037764, 38.829237], [-77.037765, 38.829247], [-77.037771, 38.829256], [-77.03779, 38.829281], [-77.037807, 38.829304], [-77.037806, 38.829323], [-77.037794, 38.829334], [-77.037757, 38.82939], [-77.037763, 38.829426], [-77.037771, 38.829441], [-77.037767, 38.829458], [-77.037732, 38.829476], [-77.037701, 38.829508], [-77.037715, 38.82955], [-77.037718, 38.829604], [-77.037748, 38.82964], [-77.037745, 38.82975], [-77.037772, 38.82978], [-77.037778, 38.829819], [-77.037743, 38.829857], [-77.037739, 38.829872], [-77.03775, 38.82992], [-77.037741, 38.830012], [-77.037751, 38.830039], [-77.037757, 38.830146], [-77.037786, 38.830188], [-77.037801, 38.830203], [-77.037828, 38.830204], [-77.037827, 38.830225], [-77.037824, 38.83025], [-77.037817, 38.830299], [-77.03784, 38.830323], [-77.037847, 38.83035], [-77.037846, 38.83035], [-77.037828, 38.830411], [-77.03786, 38.830466], [-77.037883, 38.83049], [-77.037865, 38.830503], [-77.03787, 38.830547], [-77.037968, 38.830625], [-77.038024, 38.830677], [-77.038026, 38.830725], [-77.038007, 38.830748], [-77.038081, 38.830832], [-77.038141, 38.830899], [-77.038152, 38.830935], [-77.038204, 38.830998], [-77.038245, 38.831043], [-77.03826, 38.831055], [-77.038262, 38.831118], [-77.038287, 38.83118], [-77.038351, 38.83122], [-77.038419, 38.831248], [-77.038415, 38.831301], [-77.038481, 38.831388], [-77.0385, 38.831415], [-77.038537, 38.831437], [-77.038548, 38.831485], [-77.038566, 38.831521], [-77.038623, 38.831556], [-77.03863, 38.83156], [-77.038621, 38.831604], [-77.038648, 38.831617], [-77.038686, 38.831638], [-77.038711, 38.831707], [-77.03876, 38.83174], [-77.038798, 38.831741], [-77.038824, 38.831762], [-77.03882, 38.831783], [-77.038857, 38.831819], [-77.038861, 38.831837], [-77.038898, 38.831864], [-77.038901, 38.831894], [-77.038954, 38.831936], [-77.039006, 38.831964], [-77.039041, 38.832041], [-77.039118, 38.832108], [-77.039174, 38.832156], [-77.039231, 38.832202], [-77.039339, 38.832275], [-77.039559, 38.832397], [-77.039685, 38.832482], [-77.039715, 38.832524], [-77.039741, 38.832542], [-77.039775, 38.832557], [-77.039783, 38.83256], [-77.039858, 38.832579], [-77.03993, 38.832589], [-77.039961, 38.832598], [-77.040412, 38.832878], [-77.040469, 38.832884], [-77.040544, 38.832942], [-77.040604, 38.832978], [-77.040646, 38.832991], [-77.040708, 38.833039], [-77.04077, 38.83307], [-77.04083, 38.833121], [-77.040831, 38.833122], [-77.040913, 38.833164], [-77.041003, 38.833213], [-77.041714, 38.833642], [-77.041789, 38.833684], [-77.041891, 38.833718], [-77.042009, 38.833729], [-77.042038, 38.833726], [-77.04212, 38.833718], [-77.042196, 38.833701], [-77.042281, 38.833669], [-77.042377, 38.83362], [-77.042458, 38.833555], [-77.042528, 38.833485], [-77.042564, 38.833414], [-77.042581, 38.83334], [-77.042579, 38.833247], [-77.042554, 38.833172], [-77.04256, 38.833133], [-77.042532, 38.833089], [-77.042526, 38.833056], [-77.042537, 38.833037], [-77.042504, 38.832984], [-77.042497, 38.83296], [-77.042464, 38.832918], [-77.042437, 38.832845], [-77.042399, 38.8327], [-77.042347, 38.832672], [-77.042349, 38.83263], [-77.042335, 38.832603], [-77.042295, 38.832571], [-77.042297, 38.832514], [-77.042275, 38.832479], [-77.042245, 38.832418], [-77.042244, 38.832383], [-77.042217, 38.832325], [-77.042222, 38.832251], [-77.042196, 38.832227], [-77.042201, 38.832173], [-77.042153, 38.832095], [-77.042149, 38.831973], [-77.042089, 38.831853], [-77.042062, 38.831843], [-77.042037, 38.831796], [-77.042023, 38.831751], [-77.041997, 38.831682], [-77.042002, 38.831641], [-77.041991, 38.831614], [-77.041961, 38.831595], [-77.041981, 38.831575], [-77.041974, 38.831527], [-77.041986, 38.831492], [-77.042014, 38.831453], [-77.042044, 38.831439], [-77.04209, 38.831433], [-77.042117, 38.831419], [-77.042106, 38.831383], [-77.042111, 38.831341], [-77.042276, 38.831281], [-77.042391, 38.831232], [-77.042425, 38.831235], [-77.042463, 38.831256], [-77.042513, 38.831254], [-77.042551, 38.831225], [-77.042807, 38.831198], [-77.042887, 38.831214], [-77.042913, 38.831232], [-77.043, 38.831257], [-77.043049, 38.831299], [-77.043101, 38.831356], [-77.043131, 38.83136], [-77.04315, 38.831378], [-77.043186, 38.831431], [-77.043209, 38.831438], [-77.043276, 38.831517], [-77.04328, 38.83154], [-77.04332, 38.831624], [-77.043316, 38.831648], [-77.043342, 38.831687], [-77.04334, 38.831721], [-77.043359, 38.831741], [-77.043372, 38.831854], [-77.043414, 38.831876], [-77.043466, 38.831909], [-77.043477, 38.832093], [-77.043504, 38.832133], [-77.043508, 38.832198], [-77.043525, 38.832225], [-77.04355, 38.832315], [-77.043545, 38.832378], [-77.043574, 38.832435], [-77.043603, 38.832477], [-77.043601, 38.832576], [-77.043616, 38.832602], [-77.043613, 38.832654], [-77.043644, 38.832706], [-77.043666, 38.832763], [-77.043673, 38.832859], [-77.04369, 38.832901], [-77.043716, 38.832952], [-77.043738, 38.832973], [-77.043748, 38.833029], [-77.043793, 38.833084], [-77.043788, 38.833116], [-77.043757, 38.833151], [-77.04377, 38.833187], [-77.043844, 38.833203], [-77.043843, 38.833236], [-77.043797, 38.833259], [-77.043799, 38.833325], [-77.043776, 38.833369], [-77.043794, 38.83339], [-77.043836, 38.833418], [-77.043915, 38.833448], [-77.04393, 38.833478], [-77.043974, 38.833524], [-77.044058, 38.833534], [-77.044169, 38.833529], [-77.044195, 38.833538], [-77.044217, 38.833568], [-77.04424, 38.833592], [-77.044258, 38.833599], [-77.044307, 38.833629], [-77.044348, 38.833695], [-77.0444, 38.833755], [-77.044444, 38.833827], [-77.044458, 38.833893], [-77.044488, 38.833938], [-77.044546, 38.834064], [-77.044536, 38.834107], [-77.044579, 38.834148], [-77.044638, 38.834238], [-77.044637, 38.834262], [-77.044651, 38.834345], [-77.044669, 38.834372], [-77.044702, 38.834453], [-77.044728, 38.83448], [-77.044734, 38.834584], [-77.044786, 38.834651], [-77.04478, 38.834722], [-77.044821, 38.834767], [-77.044818, 38.834808], [-77.044861, 38.834887], [-77.044867, 38.834946], [-77.044885, 38.83499], [-77.044896, 38.835012], [-77.044898, 38.83505], [-77.044907, 38.835066], [-77.044903, 38.835088], [-77.04491, 38.835102], [-77.044915, 38.835194], [-77.044953, 38.83521], [-77.044966, 38.83527], [-77.044993, 38.835302], [-77.044995, 38.835389], [-77.04501, 38.835419], [-77.04502, 38.835478], [-77.04502, 38.83553], [-77.045026, 38.835547], [-77.045031, 38.835616], [-77.045047, 38.835634], [-77.04505, 38.835681], [-77.045048, 38.835783], [-77.045089, 38.835834], [-77.045105, 38.835869], [-77.045132, 38.83589], [-77.04522, 38.835936], [-77.045196, 38.835967], [-77.045111, 38.836032], [-77.045055, 38.836086], [-77.045057, 38.836126], [-77.045082, 38.836173], [-77.045126, 38.836184], [-77.045144, 38.83625], [-77.045153, 38.836323], [-77.045154, 38.836389], [-77.045149, 38.836454], [-77.045197, 38.836511], [-77.045208, 38.836535], [-77.045226, 38.836595], [-77.045214, 38.836634], [-77.045232, 38.836664], [-77.045243, 38.836696], [-77.04522, 38.836744], [-77.045251, 38.836854], [-77.045269, 38.836932], [-77.045263, 38.836976], [-77.045286, 38.837022], [-77.045283, 38.83705], [-77.04531, 38.837153], [-77.045332, 38.837189], [-77.045319, 38.837254], [-77.0453, 38.837272], [-77.045277, 38.837281], [-77.045268, 38.837319], [-77.045272, 38.837343], [-77.045331, 38.837427], [-77.045326, 38.837677], [-77.045329, 38.837725], [-77.045359, 38.837755], [-77.045396, 38.837779], [-77.045429, 38.837836], [-77.045433, 38.837851], [-77.045444, 38.837878], [-77.045447, 38.837902], [-77.045431, 38.837941], [-77.04543, 38.837976], [-77.045438, 38.837991], [-77.045436, 38.838051], [-77.045442, 38.838137], [-77.045426, 38.838164], [-77.045418, 38.838194], [-77.045422, 38.838215], [-77.045405, 38.838268], [-77.045359, 38.838303], [-77.045347, 38.83833], [-77.045323, 38.838365], [-77.045292, 38.838424], [-77.045275, 38.838484], [-77.045317, 38.838502], [-77.04533, 38.838538], [-77.045338, 38.838598], [-77.045375, 38.838658], [-77.045381, 38.8387], [-77.045411, 38.838754], [-77.045467, 38.838775], [-77.045516, 38.838803], [-77.045545, 38.838846], [-77.04559, 38.838872], [-77.045635, 38.838883], [-77.045681, 38.838863], [-77.045765, 38.83894], [-77.04592, 38.839004], [-77.045958, 38.839055], [-77.046016, 38.839092], [-77.04606, 38.839184], [-77.046064, 38.839214], [-77.046184, 38.839296], [-77.04621, 38.839323], [-77.046213, 38.839362], [-77.046198, 38.83938], [-77.046178, 38.839406], [-77.046204, 38.839445], [-77.046215, 38.839454], [-77.046253, 38.839467], [-77.04626, 38.839503], [-77.046309, 38.839545], [-77.046305, 38.839667], [-77.046347, 38.839697], [-77.046362, 38.839729], [-77.046396, 38.839761], [-77.04642, 38.839781], [-77.04641, 38.839823], [-77.046424, 38.839847], [-77.046485, 38.839872], [-77.046515, 38.839902], [-77.046503, 38.839929], [-77.046476, 38.839949], [-77.046479, 38.839973], [-77.046456, 38.839982], [-77.046443, 38.840053], [-77.046421, 38.840057], [-77.046414, 38.840082], [-77.046375, 38.840076], [-77.046336, 38.840081], [-77.046309, 38.840101], [-77.04625, 38.84009], [-77.046135, 38.840007], [-77.04607, 38.839981], [-77.045992, 38.839964], [-77.045965, 38.84001], [-77.045854, 38.840019], [-77.045846, 38.840055], [-77.045872, 38.840156], [-77.045981, 38.840333], [-77.046121, 38.840422], [-77.046193, 38.840437], [-77.046207, 38.84044], [-77.04627, 38.840453], [-77.046433, 38.840543], [-77.046738, 38.84064], [-77.047021, 38.840667], [-77.047455, 38.840667], [-77.047491, 38.840663], [-77.047629, 38.840835], [-77.047753, 38.84097], [-77.048023, 38.841264], [-77.048027, 38.841267], [-77.048011, 38.841274], [-77.047971, 38.841275], [-77.047936, 38.841278], [-77.047893, 38.841282], [-77.047861, 38.841285], [-77.047819, 38.841289], [-77.047786, 38.841293], [-77.047761, 38.841297], [-77.04773, 38.8413], [-77.047707, 38.841304], [-77.047683, 38.84131], [-77.047641, 38.841315], [-77.047607, 38.841317], [-77.047567, 38.841316], [-77.047527, 38.841314], [-77.047485, 38.841316], [-77.047443, 38.841316], [-77.047407, 38.841318], [-77.047366, 38.841319], [-77.047332, 38.84132], [-77.047291, 38.841322], [-77.047257, 38.841322], [-77.047213, 38.841324], [-77.047176, 38.841328], [-77.047131, 38.841328], [-77.047093, 38.841327], [-77.047053, 38.841324], [-77.047013, 38.841322], [-77.046973, 38.841319], [-77.046948, 38.841318], [-77.04691, 38.841315], [-77.046868, 38.841313], [-77.046831, 38.841311], [-77.046799, 38.841307], [-77.04676, 38.841303], [-77.04673, 38.841298], [-77.046693, 38.841293], [-77.046658, 38.841287], [-77.046629, 38.841277], [-77.046594, 38.841271], [-77.046558, 38.841269], [-77.046526, 38.841263], [-77.04649, 38.841255], [-77.046425, 38.841242], [-77.04639, 38.841232], [-77.046361, 38.841224], [-77.046329, 38.841216], [-77.046295, 38.841206], [-77.046268, 38.841196], [-77.04624, 38.841188], [-77.04621, 38.84118], [-77.046183, 38.841173], [-77.046148, 38.841191], [-77.046143, 38.841163], [-77.046114, 38.841155], [-77.046083, 38.841146], [-77.046053, 38.841137], [-77.046022, 38.841126], [-77.04599, 38.841114], [-77.045962, 38.841103], [-77.045928, 38.841091], [-77.045896, 38.841081], [-77.045865, 38.84107], [-77.045831, 38.841059], [-77.0458, 38.841045], [-77.04577, 38.841029], [-77.045737, 38.841012], [-77.045711, 38.840997], [-77.045687, 38.840989], [-77.045663, 38.841002], [-77.045643, 38.840992], [-77.045651, 38.84097], [-77.04562, 38.840957], [-77.045596, 38.840943], [-77.04557, 38.840928], [-77.045541, 38.840909], [-77.045514, 38.840892], [-77.045487, 38.840876], [-77.045457, 38.840855], [-77.045429, 38.840836], [-77.045401, 38.840818], [-77.045376, 38.840797], [-77.045348, 38.840776], [-77.045294, 38.84074], [-77.045267, 38.840717], [-77.045242, 38.840698], [-77.045213, 38.840682], [-77.045189, 38.840661], [-77.045164, 38.840639], [-77.045137, 38.840617], [-77.045111, 38.840592], [-77.045091, 38.840569], [-77.04507, 38.840547], [-77.045022, 38.840503], [-77.045001, 38.840482], [-77.044985, 38.84046], [-77.044968, 38.840439], [-77.044949, 38.840418], [-77.044931, 38.840396], [-77.04491, 38.840376], [-77.044891, 38.840358], [-77.044879, 38.840337], [-77.044866, 38.840318], [-77.044853, 38.840298], [-77.044837, 38.840277], [-77.044814, 38.840259], [-77.044791, 38.840242], [-77.044769, 38.840229], [-77.044741, 38.840222], [-77.04471, 38.840219], [-77.044681, 38.840218], [-77.044646, 38.840217], [-77.044615, 38.840215], [-77.044583, 38.84021], [-77.044552, 38.840205], [-77.044525, 38.8402], [-77.044496, 38.840194], [-77.044457, 38.84019], [-77.04442, 38.840182], [-77.044376, 38.840178], [-77.044338, 38.840177], [-77.044297, 38.840182], [-77.044256, 38.840186], [-77.044223, 38.840193], [-77.044186, 38.840202], [-77.044154, 38.840213], [-77.044121, 38.840223], [-77.04409, 38.84023], [-77.04406, 38.840234], [-77.044029, 38.840233], [-77.044003, 38.840224], [-77.043976, 38.840212], [-77.043941, 38.840205], [-77.043906, 38.840206], [-77.04388, 38.840216], [-77.043849, 38.840231], [-77.043821, 38.840242], [-77.043795, 38.840253], [-77.04377, 38.840268], [-77.043746, 38.840285], [-77.04372, 38.840303], [-77.043692, 38.840319], [-77.04367, 38.840334], [-77.043634, 38.84037], [-77.043614, 38.840391], [-77.043596, 38.84041], [-77.04358, 38.840431], [-77.04356, 38.84045], [-77.043523, 38.840487], [-77.043503, 38.840504], [-77.043477, 38.840519], [-77.043453, 38.840534], [-77.043434, 38.840551], [-77.043408, 38.840566], [-77.043385, 38.840558], [-77.043388, 38.84053], [-77.043401, 38.840514], [-77.043403, 38.840492], [-77.0434, 38.840473], [-77.043388, 38.84045], [-77.04337, 38.840416], [-77.04336, 38.840398], [-77.043347, 38.840381], [-77.043338, 38.840362], [-77.043334, 38.84034], [-77.043326, 38.840319], [-77.043294, 38.840289], [-77.043287, 38.840269], [-77.043283, 38.840244], [-77.043283, 38.840222], [-77.043289, 38.840204], [-77.043295, 38.840167], [-77.043287, 38.840148], [-77.043273, 38.840131], [-77.04326, 38.840111], [-77.043246, 38.840094], [-77.043235, 38.840074], [-77.043229, 38.840049], [-77.043223, 38.840029], [-77.043211, 38.840013], [-77.043195, 38.839996], [-77.043177, 38.839976], [-77.043156, 38.839957], [-77.043137, 38.83994], [-77.043124, 38.839923], [-77.04312, 38.839904], [-77.043117, 38.839881], [-77.043108, 38.83986], [-77.043095, 38.83984], [-77.043081, 38.839819], [-77.043067, 38.839803], [-77.043011, 38.839771], [-77.042989, 38.839763], [-77.042962, 38.839753], [-77.042934, 38.839742], [-77.04291, 38.839736], [-77.042882, 38.839728], [-77.042858, 38.839721], [-77.042833, 38.839713], [-77.042806, 38.839703], [-77.042778, 38.839695], [-77.042748, 38.839689], [-77.042714, 38.839685], [-77.042686, 38.839679], [-77.042663, 38.839673], [-77.042636, 38.839668], [-77.04261, 38.839664], [-77.042583, 38.839662], [-77.042558, 38.839658], [-77.042529, 38.839654], [-77.042499, 38.83965], [-77.042473, 38.839647], [-77.042441, 38.839645], [-77.042411, 38.83964], [-77.042382, 38.839636], [-77.04235, 38.839633], [-77.042321, 38.839629], [-77.042298, 38.839625], [-77.042269, 38.839618], [-77.042238, 38.839615], [-77.042213, 38.839611], [-77.042184, 38.839607], [-77.042154, 38.8396], [-77.042127, 38.839595], [-77.042104, 38.83959], [-77.042077, 38.839585], [-77.042049, 38.83958], [-77.042022, 38.839575], [-77.041993, 38.83957], [-77.041965, 38.839566], [-77.041939, 38.839562], [-77.041914, 38.839557], [-77.041886, 38.83955], [-77.041862, 38.839546], [-77.041838, 38.83954], [-77.041812, 38.83953], [-77.041786, 38.839524], [-77.04176, 38.839522], [-77.041736, 38.83952], [-77.041681, 38.83952], [-77.041655, 38.839521], [-77.041625, 38.839522], [-77.041596, 38.839521], [-77.041572, 38.839523], [-77.041545, 38.839524], [-77.041516, 38.839526], [-77.041491, 38.839528], [-77.041457, 38.839528], [-77.04143, 38.83953], [-77.041404, 38.839531], [-77.04138, 38.839533], [-77.041351, 38.839537], [-77.041326, 38.839539], [-77.041301, 38.839542], [-77.041276, 38.839544], [-77.041252, 38.839547], [-77.041227, 38.839549], [-77.041203, 38.839553], [-77.041178, 38.839559], [-77.041154, 38.839568], [-77.041134, 38.839578], [-77.041111, 38.839596], [-77.041094, 38.839616], [-77.041054, 38.839622], [-77.040943, 38.839585], [-77.040919, 38.839566], [-77.040898, 38.839546], [-77.040873, 38.839531], [-77.040795, 38.839504], [-77.040771, 38.839494], [-77.040739, 38.839487], [-77.040708, 38.839476], [-77.040685, 38.839464], [-77.040637, 38.839443], [-77.04061, 38.839429], [-77.040584, 38.839419], [-77.040558, 38.839411], [-77.040536, 38.8394], [-77.040508, 38.839388], [-77.040479, 38.839381], [-77.040456, 38.839374], [-77.040396, 38.839349], [-77.040382, 38.839331], [-77.040321, 38.839327], [-77.040296, 38.839329], [-77.0402, 38.839319], [-77.040177, 38.839314], [-77.040152, 38.83931], [-77.040129, 38.839301], [-77.039977, 38.839285], [-77.039953, 38.839286], [-77.039887, 38.839291], [-77.039827, 38.839287], [-77.039792, 38.839289], [-77.039762, 38.839288], [-77.039709, 38.839283], [-77.03967, 38.839284], [-77.039619, 38.839288], [-77.039593, 38.839292], [-77.039516, 38.839295], [-77.039467, 38.839295], [-77.03941, 38.839293], [-77.039354, 38.839289], [-77.039267, 38.839278], [-77.039201, 38.839274], [-77.039177, 38.839275], [-77.039127, 38.83927], [-77.039094, 38.839269], [-77.039031, 38.839263], [-77.038998, 38.839261], [-77.038968, 38.839258], [-77.038937, 38.839256], [-77.038905, 38.839256], [-77.038665, 38.839273], [-77.038636, 38.839267], [-77.038603, 38.839264], [-77.038551, 38.83927], [-77.03846, 38.839279], [-77.038385, 38.839285], [-77.038358, 38.839288], [-77.038272, 38.839294], [-77.038208, 38.839304], [-77.038181, 38.839299], [-77.038157, 38.839286], [-77.038113, 38.839282], [-77.038059, 38.839288], [-77.03803, 38.839293], [-77.037973, 38.8393], [-77.037918, 38.839309], [-77.037829, 38.839318], [-77.037783, 38.839321], [-77.037722, 38.839328], [-77.037632, 38.839336], [-77.03757, 38.83934], [-77.03754, 38.839341], [-77.037487, 38.839345], [-77.037436, 38.839353], [-77.03742, 38.839367], [-77.037401, 38.839382], [-77.037317, 38.839376], [-77.037285, 38.839375], [-77.037219, 38.839376], [-77.037045, 38.839388], [-77.03697, 38.839394], [-77.036806, 38.839413], [-77.036781, 38.839421], [-77.036757, 38.839432], [-77.036735, 38.839448], [-77.036698, 38.839482], [-77.036658, 38.839513], [-77.036634, 38.839537], [-77.036635, 38.83956], [-77.036618, 38.839579], [-77.036585, 38.839581], [-77.036551, 38.839572], [-77.036512, 38.839566], [-77.036481, 38.83956], [-77.036434, 38.839556], [-77.036353, 38.839556], [-77.036322, 38.839554], [-77.036265, 38.839556], [-77.036205, 38.839563], [-77.036176, 38.839568], [-77.036119, 38.839586], [-77.036091, 38.839594], [-77.036061, 38.839605], [-77.036037, 38.839617], [-77.036013, 38.839632], [-77.035985, 38.839646], [-77.03596, 38.839661], [-77.035933, 38.839675], [-77.035904, 38.839687], [-77.035877, 38.839695], [-77.03582, 38.83971], [-77.035794, 38.839718], [-77.035768, 38.839724], [-77.035742, 38.839734], [-77.03572, 38.839747], [-77.035675, 38.83976], [-77.035652, 38.839762], [-77.035614, 38.839756], [-77.035573, 38.839751], [-77.035527, 38.839756], [-77.035503, 38.839762], [-77.035479, 38.83977], [-77.035431, 38.839791], [-77.035376, 38.839809], [-77.035301, 38.839846], [-77.035278, 38.839856], [-77.035227, 38.839874], [-77.035203, 38.839881], [-77.035151, 38.839891], [-77.035125, 38.839901], [-77.035039, 38.839944], [-77.035008, 38.839956], [-77.034974, 38.839966], [-77.034873, 38.839989], [-77.034842, 38.839998], [-77.03481, 38.840009], [-77.03478, 38.840018], [-77.034695, 38.840035], [-77.03467, 38.840042], [-77.034646, 38.840052], [-77.034626, 38.840068], [-77.034595, 38.840109], [-77.034582, 38.840128], [-77.034572, 38.840149], [-77.034556, 38.840191], [-77.034553, 38.840212], [-77.034551, 38.840257], [-77.034551, 38.840277], [-77.034555, 38.840322], [-77.034552, 38.840366], [-77.034545, 38.840409], [-77.034543, 38.84046], [-77.034543, 38.840481], [-77.034552, 38.840581], [-77.034554, 38.84063], [-77.03456, 38.840724], [-77.034557, 38.840765], [-77.034552, 38.840787], [-77.034545, 38.840807], [-77.034533, 38.840823], [-77.034518, 38.840839], [-77.034502, 38.840852], [-77.034427, 38.840881], [-77.034387, 38.840892], [-77.034354, 38.840896], [-77.034289, 38.840885], [-77.034258, 38.840883], [-77.034232, 38.84089], [-77.034214, 38.840877], [-77.034212, 38.840904], [-77.034201, 38.840926], [-77.034195, 38.840945], [-77.034196, 38.840965], [-77.03421, 38.840991], [-77.034254, 38.841043], [-77.034268, 38.841074], [-77.034277, 38.8411], [-77.034281, 38.841129], [-77.034277, 38.841155], [-77.034268, 38.841177], [-77.034253, 38.841196], [-77.034235, 38.841212], [-77.034214, 38.84122], [-77.034187, 38.841237], [-77.034173, 38.841261], [-77.03416, 38.841325], [-77.034145, 38.841408], [-77.034142, 38.841437], [-77.034135, 38.841489], [-77.034131, 38.841557], [-77.034132, 38.841576], [-77.034138, 38.841596], [-77.034109, 38.84161], [-77.034078, 38.841621], [-77.03405, 38.841638], [-77.034032, 38.841661], [-77.034019, 38.841698], [-77.034014, 38.841718], [-77.034012, 38.84174], [-77.034014, 38.841765], [-77.034016, 38.841787], [-77.034018, 38.84181], [-77.034018, 38.841836], [-77.034015, 38.841858], [-77.034011, 38.841882], [-77.034006, 38.841908], [-77.033999, 38.841929], [-77.033995, 38.841953], [-77.033992, 38.841979], [-77.033989, 38.842003], [-77.033985, 38.842053], [-77.033984, 38.842076], [-77.033982, 38.842102], [-77.03398, 38.842125], [-77.033977, 38.842149], [-77.033975, 38.842175], [-77.033972, 38.842198], [-77.033966, 38.842246], [-77.033963, 38.842268], [-77.033961, 38.84229], [-77.03396, 38.842313], [-77.033956, 38.842357], [-77.033956, 38.84238], [-77.033957, 38.842402], [-77.033957, 38.842445], [-77.033955, 38.842466], [-77.033949, 38.842508], [-77.033947, 38.842527], [-77.033945, 38.842556], [-77.033946, 38.842581], [-77.033948, 38.8426], [-77.033948, 38.842622], [-77.033945, 38.842654], [-77.033936, 38.842685], [-77.033927, 38.842719], [-77.033922, 38.842753], [-77.033915, 38.842785], [-77.033904, 38.842818], [-77.033889, 38.84285], [-77.033872, 38.842882], [-77.033856, 38.842918], [-77.033849, 38.842936], [-77.033833, 38.842972], [-77.033823, 38.842989], [-77.03381, 38.843004], [-77.033796, 38.84302], [-77.033784, 38.843036], [-77.033751, 38.843084], [-77.033742, 38.843103], [-77.033731, 38.843122], [-77.03372, 38.843142], [-77.03371, 38.843162], [-77.033694, 38.843202], [-77.033685, 38.843223], [-77.033678, 38.843243], [-77.033672, 38.843264], [-77.033664, 38.843286], [-77.033654, 38.843308], [-77.033645, 38.843328], [-77.033637, 38.843349], [-77.033625, 38.84337], [-77.033613, 38.843392], [-77.033602, 38.843414], [-77.033591, 38.843437], [-77.033577, 38.84346], [-77.033543, 38.843502], [-77.033528, 38.843524], [-77.033515, 38.843545], [-77.033507, 38.843566], [-77.0335, 38.843588], [-77.033497, 38.843609], [-77.033492, 38.84363], [-77.033483, 38.843652], [-77.033472, 38.843675], [-77.033458, 38.843696], [-77.033445, 38.843717], [-77.033435, 38.843738], [-77.033424, 38.843759], [-77.033413, 38.843781], [-77.033403, 38.843804], [-77.033392, 38.843827], [-77.033372, 38.843875], [-77.033364, 38.843897], [-77.033357, 38.84392], [-77.033348, 38.843943], [-77.033338, 38.843967], [-77.033328, 38.84399], [-77.033317, 38.844012], [-77.033308, 38.844034], [-77.033298, 38.844056], [-77.033292, 38.844079], [-77.033286, 38.844101], [-77.033278, 38.844123], [-77.033269, 38.844147], [-77.03326, 38.844169], [-77.03325, 38.844192], [-77.033238, 38.844216], [-77.033224, 38.844239], [-77.033209, 38.844262], [-77.033195, 38.844284], [-77.033184, 38.844305], [-77.033175, 38.844326], [-77.033169, 38.844347], [-77.033162, 38.844369], [-77.033158, 38.844391], [-77.033161, 38.844409], [-77.033132, 38.84449], [-77.033105, 38.844503], [-77.033081, 38.844524], [-77.033068, 38.844557], [-77.033066, 38.844578], [-77.033065, 38.844598], [-77.033064, 38.84462], [-77.033059, 38.844642], [-77.033053, 38.844664], [-77.033044, 38.844685], [-77.033035, 38.844707], [-77.033029, 38.84473], [-77.033023, 38.844752], [-77.033019, 38.844774], [-77.033015, 38.844799], [-77.033009, 38.844849], [-77.033004, 38.844874], [-77.032998, 38.844898], [-77.032992, 38.844925], [-77.032987, 38.84495], [-77.032981, 38.844975], [-77.032975, 38.845002], [-77.032968, 38.845028], [-77.03296, 38.845054], [-77.032956, 38.84508], [-77.032952, 38.845103], [-77.032946, 38.845153], [-77.032941, 38.845178], [-77.032936, 38.845205], [-77.03293, 38.845231], [-77.032921, 38.845256], [-77.032912, 38.845282], [-77.032905, 38.845304], [-77.032896, 38.845327], [-77.032888, 38.845352], [-77.032882, 38.845377], [-77.032877, 38.845403], [-77.032873, 38.845429], [-77.032869, 38.845454], [-77.032865, 38.845481], [-77.032859, 38.845507], [-77.032855, 38.845526], [-77.032851, 38.845555], [-77.032848, 38.845574], [-77.032843, 38.845594], [-77.032836, 38.845614], [-77.03283, 38.845635], [-77.032826, 38.845656], [-77.032824, 38.845681], [-77.032821, 38.845705], [-77.032816, 38.845729], [-77.032811, 38.845752], [-77.032808, 38.845773], [-77.032806, 38.845792], [-77.03281, 38.84582], [-77.032798, 38.845864], [-77.032781, 38.845891], [-77.032775, 38.845925], [-77.032773, 38.845944], [-77.032763, 38.845984], [-77.032757, 38.846003], [-77.03275, 38.846024], [-77.032734, 38.846066], [-77.032728, 38.846087], [-77.032724, 38.846109], [-77.032719, 38.84613], [-77.032711, 38.846168], [-77.032706, 38.846187], [-77.0327, 38.846205], [-77.032695, 38.846223], [-77.032689, 38.846241], [-77.032684, 38.84626], [-77.032679, 38.84628], [-77.032671, 38.846322], [-77.032667, 38.846342], [-77.032663, 38.846363], [-77.032658, 38.846388], [-77.03265, 38.846417], [-77.032644, 38.846438], [-77.032636, 38.84648], [-77.032629, 38.846502], [-77.032622, 38.846526], [-77.032617, 38.846551], [-77.032611, 38.846576], [-77.032607, 38.846603], [-77.032601, 38.846628], [-77.032594, 38.846656], [-77.032587, 38.846681], [-77.032579, 38.846709], [-77.032572, 38.846735], [-77.032563, 38.846758], [-77.032553, 38.846784], [-77.032545, 38.846809], [-77.032538, 38.846835], [-77.032532, 38.846863], [-77.032529, 38.84689], [-77.032527, 38.846917], [-77.032525, 38.846943], [-77.032522, 38.84697], [-77.032519, 38.846996], [-77.032515, 38.84702], [-77.03251, 38.847045], [-77.032502, 38.847071], [-77.032495, 38.847097], [-77.032488, 38.847122], [-77.032482, 38.847149], [-77.032478, 38.847176], [-77.032477, 38.847202], [-77.032475, 38.847226], [-77.032467, 38.847274], [-77.032462, 38.847296], [-77.032457, 38.847317], [-77.032452, 38.847337], [-77.032449, 38.847358], [-77.032445, 38.847378], [-77.032442, 38.8474], [-77.032438, 38.84742], [-77.032427, 38.847451], [-77.032416, 38.847474], [-77.032418, 38.847497], [-77.032415, 38.847524], [-77.032408, 38.847549], [-77.032396, 38.84757], [-77.032392, 38.847601], [-77.032392, 38.847622], [-77.032391, 38.847644], [-77.032388, 38.847668], [-77.032384, 38.847718], [-77.032383, 38.847744], [-77.03238, 38.847769], [-77.032376, 38.847821], [-77.032375, 38.847847], [-77.032373, 38.847873], [-77.032269, 38.848024], [-77.032303, 38.848144], [-77.032297, 38.848196], [-77.032296, 38.848214], [-77.032298, 38.848233], [-77.0323, 38.848254], [-77.032301, 38.848275], [-77.032302, 38.848295], [-77.032305, 38.848314], [-77.032306, 38.848334], [-77.032308, 38.848357], [-77.032309, 38.848379], [-77.03231, 38.848409], [-77.032311, 38.848427], [-77.032311, 38.848445], [-77.03231, 38.848464], [-77.03231, 38.848505], [-77.032305, 38.848533], [-77.032304, 38.848602], [-77.032299, 38.848702], [-77.032294, 38.848797], [-77.032294, 38.848816], [-77.032293, 38.848839], [-77.032292, 38.848864], [-77.03229, 38.84889], [-77.032289, 38.848919], [-77.032288, 38.848949], [-77.032288, 38.84898], [-77.032286, 38.849012], [-77.032283, 38.849044], [-77.032281, 38.849077], [-77.03228, 38.849111], [-77.03228, 38.849146], [-77.032279, 38.849182], [-77.032275, 38.849249], [-77.032276, 38.849277], [-77.032275, 38.849301], [-77.032273, 38.849328], [-77.032271, 38.849353], [-77.032271, 38.849432], [-77.032272, 38.849457], [-77.032271, 38.849475], [-77.032269, 38.849515], [-77.032267, 38.849534], [-77.032266, 38.849556], [-77.032265, 38.84958], [-77.032261, 38.84963], [-77.032257, 38.849656], [-77.032251, 38.849684], [-77.032247, 38.849713], [-77.032244, 38.849742], [-77.03224, 38.849771], [-77.032235, 38.849801], [-77.03223, 38.849826], [-77.032223, 38.849849], [-77.032214, 38.84987], [-77.032202, 38.849888], [-77.032188, 38.850082], [-77.032198, 38.850104], [-77.032145, 38.850295], [-77.032149, 38.850321], [-77.032153, 38.850348], [-77.032156, 38.850374], [-77.03216, 38.850402], [-77.032165, 38.85043], [-77.032169, 38.850459], [-77.032173, 38.850489], [-77.032178, 38.850517], [-77.032183, 38.850548], [-77.032188, 38.850578], [-77.032204, 38.850702], [-77.032213, 38.850795], [-77.032215, 38.850825], [-77.032216, 38.850855], [-77.032218, 38.850876], [-77.032222, 38.850908], [-77.032224, 38.850934], [-77.032225, 38.850962], [-77.032224, 38.850992], [-77.032222, 38.851023], [-77.03222, 38.851055], [-77.03222, 38.851086], [-77.032219, 38.851116], [-77.032218, 38.851147], [-77.032218, 38.851178], [-77.032222, 38.851238], [-77.03222, 38.851268], [-77.032216, 38.8513], [-77.032211, 38.851333], [-77.032206, 38.851364], [-77.032202, 38.851396], [-77.0322, 38.851427], [-77.0322, 38.851458], [-77.032201, 38.85149], [-77.032204, 38.851521], [-77.032208, 38.851583], [-77.03221, 38.851616], [-77.032211, 38.851648], [-77.032213, 38.85168], [-77.032216, 38.85171], [-77.032221, 38.851739], [-77.032225, 38.85177], [-77.032231, 38.851802], [-77.032237, 38.851828], [-77.032243, 38.851853], [-77.03225, 38.851878], [-77.032254, 38.851903], [-77.032259, 38.851931], [-77.032264, 38.851961], [-77.032271, 38.851993], [-77.032275, 38.852026], [-77.03228, 38.852059], [-77.032283, 38.852092], [-77.032285, 38.852122], [-77.032285, 38.852153], [-77.032281, 38.85218], [-77.032275, 38.852206], [-77.032269, 38.85223], [-77.032264, 38.852253], [-77.032265, 38.852278], [-77.032267, 38.852302], [-77.032271, 38.852326], [-77.032281, 38.852351], [-77.032295, 38.852374], [-77.032309, 38.852399], [-77.032321, 38.852424], [-77.032329, 38.852452], [-77.032338, 38.852481], [-77.032347, 38.852511], [-77.032357, 38.852541], [-77.032368, 38.85257], [-77.032377, 38.852602], [-77.032386, 38.852633], [-77.032395, 38.852665], [-77.032405, 38.852697], [-77.032414, 38.852727], [-77.032422, 38.852759], [-77.032431, 38.85279], [-77.032441, 38.852822], [-77.032451, 38.852853], [-77.032459, 38.852886], [-77.032465, 38.852917], [-77.032479, 38.852983], [-77.032485, 38.853017], [-77.032495, 38.853085], [-77.032505, 38.853151], [-77.032512, 38.853183], [-77.032519, 38.853217], [-77.032525, 38.85325], [-77.03253, 38.853282], [-77.032536, 38.853314], [-77.032541, 38.853348], [-77.032546, 38.85338], [-77.032552, 38.85341], [-77.032562, 38.853468], [-77.032567, 38.853496], [-77.032572, 38.853525], [-77.032578, 38.853553], [-77.032587, 38.85358], [-77.032596, 38.853606], [-77.032604, 38.853635], [-77.032618, 38.853695], [-77.032624, 38.853725], [-77.032631, 38.853754], [-77.032637, 38.853781], [-77.032643, 38.853809], [-77.032648, 38.853835], [-77.032654, 38.853859], [-77.032657, 38.853879], [-77.03266, 38.853901], [-77.032665, 38.853934], [-77.032668, 38.853955], [-77.03267, 38.85398], [-77.032666, 38.854006], [-77.032661, 38.854031], [-77.032657, 38.854054], [-77.032656, 38.854079], [-77.032661, 38.854104], [-77.032669, 38.854131], [-77.032677, 38.854157], [-77.032683, 38.854185], [-77.032688, 38.854213], [-77.032694, 38.854241], [-77.032699, 38.854269], [-77.032706, 38.854294], [-77.032724, 38.854346], [-77.032734, 38.854372], [-77.032745, 38.854399], [-77.032754, 38.854427], [-77.032761, 38.854451], [-77.032767, 38.85447], [-77.032773, 38.85449], [-77.032777, 38.854508], [-77.032791, 38.854554], [-77.032805, 38.854606], [-77.032811, 38.854633], [-77.032818, 38.854659], [-77.032824, 38.854685], [-77.03283, 38.854709], [-77.032835, 38.854733], [-77.032843, 38.854783], [-77.032845, 38.854807], [-77.032843, 38.854831], [-77.032838, 38.854856], [-77.032835, 38.854883], [-77.032834, 38.854909], [-77.032836, 38.854936], [-77.032838, 38.85499], [-77.032841, 38.855014], [-77.032845, 38.855035], [-77.032851, 38.855053], [-77.032865, 38.855085], [-77.032879, 38.855108], [-77.032894, 38.85514], [-77.032937, 38.855233], [-77.03295, 38.855256], [-77.032969, 38.855284], [-77.03298, 38.8553], [-77.03299, 38.855319], [-77.033002, 38.85534], [-77.033013, 38.855359], [-77.033033, 38.855395], [-77.033043, 38.855414], [-77.033053, 38.855435], [-77.033066, 38.855455], [-77.033081, 38.855473], [-77.033093, 38.855493], [-77.033102, 38.855516], [-77.033112, 38.855537], [-77.033122, 38.855557], [-77.033133, 38.855578], [-77.033144, 38.855601], [-77.033155, 38.855622], [-77.033167, 38.855643], [-77.033181, 38.855664], [-77.033194, 38.855688], [-77.033205, 38.85571], [-77.033217, 38.85573], [-77.033231, 38.855752], [-77.033244, 38.855776], [-77.033259, 38.855797], [-77.033276, 38.855815], [-77.033291, 38.855833], [-77.033303, 38.855855], [-77.033313, 38.855877], [-77.033323, 38.855897], [-77.033335, 38.855917], [-77.033365, 38.855961], [-77.033377, 38.855981], [-77.033388, 38.856002], [-77.0334, 38.856025], [-77.033411, 38.856048], [-77.033421, 38.856067], [-77.033431, 38.856087], [-77.033442, 38.85611], [-77.033452, 38.856133], [-77.033462, 38.856153], [-77.033473, 38.856173], [-77.033486, 38.856196], [-77.033501, 38.856219], [-77.033513, 38.85624], [-77.033525, 38.85626], [-77.033536, 38.856284], [-77.033547, 38.856307], [-77.033558, 38.856328], [-77.033566, 38.856348], [-77.033575, 38.856371], [-77.033585, 38.856393], [-77.033605, 38.856433], [-77.033615, 38.856455], [-77.033628, 38.856477], [-77.033642, 38.856496], [-77.033659, 38.856516], [-77.033673, 38.856538], [-77.033685, 38.856561], [-77.033697, 38.85658], [-77.03371, 38.856599], [-77.033722, 38.856619], [-77.033734, 38.856643], [-77.033744, 38.856664], [-77.033755, 38.856683], [-77.033767, 38.856706], [-77.033782, 38.856729], [-77.033795, 38.85675], [-77.033805, 38.85677], [-77.033814, 38.856794], [-77.033824, 38.856818], [-77.033842, 38.856856], [-77.033853, 38.856877], [-77.033865, 38.856898], [-77.033876, 38.856919], [-77.033887, 38.856938], [-77.033899, 38.856957], [-77.033911, 38.856979], [-77.033921, 38.857001], [-77.033931, 38.857022], [-77.033943, 38.857043], [-77.033969, 38.857087], [-77.033981, 38.857108], [-77.033994, 38.857128], [-77.034006, 38.85715], [-77.034017, 38.85717], [-77.034025, 38.85719], [-77.034034, 38.857209], [-77.034043, 38.857231], [-77.034052, 38.857254], [-77.034062, 38.857275], [-77.034072, 38.857295], [-77.034082, 38.857317], [-77.034089, 38.85734], [-77.034093, 38.857361], [-77.034097, 38.857381], [-77.034103, 38.857404], [-77.034112, 38.857428], [-77.034119, 38.857446], [-77.034124, 38.857465], [-77.034128, 38.857487], [-77.034132, 38.857511], [-77.034137, 38.857533], [-77.034141, 38.857552], [-77.034146, 38.857572], [-77.03415, 38.857592], [-77.034155, 38.857611], [-77.034157, 38.857632], [-77.034161, 38.85766], [-77.034172, 38.857688], [-77.034199, 38.857715], [-77.034219, 38.857744], [-77.03423, 38.857762], [-77.034242, 38.857778], [-77.034267, 38.857808], [-77.034281, 38.857823], [-77.034297, 38.857839], [-77.034315, 38.857855], [-77.03433, 38.857871], [-77.034359, 38.857897], [-77.034374, 38.857911], [-77.034389, 38.857928], [-77.034405, 38.857944], [-77.034419, 38.857959], [-77.034432, 38.857974], [-77.034444, 38.85799], [-77.034455, 38.858008], [-77.034464, 38.858027], [-77.034482, 38.858057], [-77.034491, 38.858074], [-77.034504, 38.858091], [-77.034516, 38.858112], [-77.034526, 38.858131], [-77.034546, 38.858161], [-77.034557, 38.858179], [-77.03457, 38.858198], [-77.034588, 38.858229], [-77.0346, 38.858266], [-77.034607, 38.858287], [-77.034616, 38.858304], [-77.034635, 38.858335], [-77.034644, 38.858354], [-77.034653, 38.858372], [-77.034661, 38.858389], [-77.03468, 38.858422], [-77.03469, 38.858441], [-77.0347, 38.858463], [-77.034709, 38.85848], [-77.034727, 38.858512], [-77.034737, 38.858531], [-77.034746, 38.858551], [-77.034755, 38.858568], [-77.034774, 38.858601], [-77.034782, 38.858622], [-77.03479, 38.858641], [-77.034798, 38.858658], [-77.034819, 38.858692], [-77.034828, 38.858711], [-77.034836, 38.85873], [-77.034851, 38.858762], [-77.03486, 38.85878], [-77.034869, 38.858801], [-77.034878, 38.858818], [-77.034895, 38.858847], [-77.034903, 38.858864], [-77.03491, 38.858884], [-77.034918, 38.858903], [-77.034935, 38.858933], [-77.034951, 38.858969], [-77.03496, 38.858987], [-77.034977, 38.859017], [-77.034986, 38.859034], [-77.034994, 38.859052], [-77.035001, 38.85907], [-77.035013, 38.859102], [-77.035019, 38.85912], [-77.035025, 38.859139], [-77.035032, 38.859157], [-77.035044, 38.859186], [-77.03505, 38.859223], [-77.035051, 38.859243], [-77.035054, 38.859274], [-77.035057, 38.859307], [-77.03506, 38.859325], [-77.035067, 38.859356], [-77.035086, 38.859384], [-77.035102, 38.859399], [-77.035118, 38.859416], [-77.035132, 38.859432], [-77.035156, 38.85946], [-77.035168, 38.859476], [-77.035182, 38.859492], [-77.035206, 38.85952], [-77.035228, 38.85955], [-77.035239, 38.859568], [-77.035252, 38.859584], [-77.035275, 38.859611], [-77.035298, 38.859643], [-77.03531, 38.859662], [-77.035321, 38.859678], [-77.035334, 38.859693], [-77.035361, 38.859723], [-77.035376, 38.859741], [-77.035389, 38.859757], [-77.035414, 38.859781], [-77.035442, 38.859802], [-77.035477, 38.859824], [-77.035515, 38.859842], [-77.03555, 38.859861], [-77.035583, 38.859881], [-77.035616, 38.859903], [-77.035647, 38.859925], [-77.035679, 38.859946], [-77.035695, 38.85996], [-77.035714, 38.859973], [-77.035731, 38.859987], [-77.035746, 38.860001], [-77.035762, 38.860014], [-77.035793, 38.860039], [-77.035809, 38.860054], [-77.035839, 38.860082], [-77.035869, 38.860106], [-77.035897, 38.860135], [-77.035912, 38.860151], [-77.035927, 38.860166], [-77.035946, 38.860182], [-77.035965, 38.860202], [-77.035986, 38.860223], [-77.036012, 38.860245], [-77.036037, 38.860271], [-77.036063, 38.860295], [-77.036089, 38.860316], [-77.036116, 38.860338], [-77.036147, 38.860362], [-77.036177, 38.860385], [-77.036207, 38.860404], [-77.036263, 38.86045], [-77.036293, 38.860473], [-77.036323, 38.860497], [-77.03634, 38.86051], [-77.03637, 38.860533], [-77.036402, 38.860556], [-77.036433, 38.86058], [-77.036467, 38.860602], [-77.036498, 38.860623], [-77.036527, 38.860645], [-77.036558, 38.860667], [-77.03659, 38.860691], [-77.036619, 38.860714], [-77.036649, 38.860735], [-77.036665, 38.860749], [-77.036693, 38.860776], [-77.036723, 38.860801], [-77.036751, 38.860827], [-77.036776, 38.860855], [-77.036797, 38.860884], [-77.036817, 38.860913], [-77.036831, 38.860943], [-77.036842, 38.860968], [-77.036845, 38.860994], [-77.036846, 38.861017], [-77.036832, 38.861033], [-77.036808, 38.861047], [-77.036787, 38.86106], [-77.036781, 38.861082], [-77.036787, 38.861105], [-77.036807, 38.861119], [-77.036835, 38.86113], [-77.036866, 38.861143], [-77.0369, 38.861151], [-77.036939, 38.861157], [-77.036976, 38.861163], [-77.037015, 38.861166], [-77.037059, 38.861167], [-77.0371, 38.861167], [-77.037141, 38.861165], [-77.037183, 38.861163], [-77.037223, 38.861163], [-77.037261, 38.86116], [-77.037303, 38.861156], [-77.037338, 38.861154], [-77.037374, 38.861155], [-77.037405, 38.86116], [-77.037432, 38.861168], [-77.037462, 38.861177], [-77.037488, 38.861189], [-77.037515, 38.861209], [-77.037545, 38.861231], [-77.037566, 38.861249], [-77.037587, 38.861273], [-77.037606, 38.861302], [-77.037622, 38.861326], [-77.037633, 38.861345], [-77.037635, 38.861369], [-77.037635, 38.861392], [-77.037637, 38.861418], [-77.03764, 38.861443], [-77.037649, 38.861471], [-77.037661, 38.861498], [-77.037673, 38.861532], [-77.037685, 38.861563], [-77.037697, 38.861588], [-77.0377, 38.861608], [-77.03769, 38.861625], [-77.037681, 38.861648], [-77.037691, 38.861671], [-77.037717, 38.861678], [-77.037734, 38.861699], [-77.037744, 38.86173], [-77.03775, 38.861749], [-77.037756, 38.861767], [-77.037768, 38.861802], [-77.037774, 38.86182], [-77.037779, 38.861839], [-77.037784, 38.861857], [-77.037794, 38.86189], [-77.037805, 38.861924], [-77.037813, 38.861956], [-77.03782, 38.861989], [-77.037825, 38.862008], [-77.037828, 38.862026], [-77.037834, 38.862057], [-77.037842, 38.862091], [-77.03785, 38.862124], [-77.037856, 38.862156], [-77.03786, 38.862174], [-77.037863, 38.862192], [-77.037868, 38.862225], [-77.037872, 38.86226], [-77.037875, 38.862279], [-77.037878, 38.862297], [-77.03788, 38.862315], [-77.037885, 38.86235], [-77.037887, 38.862368], [-77.037891, 38.8624], [-77.037895, 38.862435], [-77.037898, 38.862455], [-77.037901, 38.862473], [-77.037905, 38.862505], [-77.037908, 38.862523], [-77.03791, 38.862543], [-77.037917, 38.862576], [-77.037922, 38.862611], [-77.03793, 38.862645], [-77.037937, 38.862675], [-77.037946, 38.86271], [-77.037954, 38.862742], [-77.037962, 38.862771], [-77.037966, 38.862806], [-77.037966, 38.862836], [-77.037969, 38.862865], [-77.037973, 38.862898], [-77.037978, 38.862928], [-77.037984, 38.862957], [-77.037993, 38.862988], [-77.037998, 38.863015], [-77.038002, 38.863043], [-77.038006, 38.863078], [-77.038005, 38.863106], [-77.038002, 38.863135], [-77.038, 38.863167], [-77.038003, 38.863195], [-77.03801, 38.863222], [-77.038023, 38.863247], [-77.038042, 38.863265], [-77.038062, 38.863283], [-77.038084, 38.863301], [-77.038111, 38.86331], [-77.038133, 38.863318], [-77.038149, 38.863337], [-77.038166, 38.86335], [-77.038185, 38.863362], [-77.038209, 38.86337], [-77.038238, 38.863376], [-77.038273, 38.86338], [-77.038309, 38.863383], [-77.038344, 38.863383], [-77.038382, 38.863379], [-77.038422, 38.863376], [-77.03846, 38.863372], [-77.038491, 38.863367], [-77.038522, 38.863363], [-77.038557, 38.863359], [-77.038586, 38.863357], [-77.038615, 38.863363], [-77.038641, 38.863364], [-77.038674, 38.863361], [-77.038703, 38.863358], [-77.038738, 38.863353], [-77.038768, 38.863347], [-77.038806, 38.863346], [-77.038849, 38.863346], [-77.038873, 38.863345], [-77.038918, 38.863345], [-77.038956, 38.863346], [-77.038986, 38.863343], [-77.039031, 38.863341], [-77.039078, 38.863339], [-77.039108, 38.863339], [-77.03914, 38.863337], [-77.039168, 38.863337], [-77.039193, 38.863336], [-77.039225, 38.863334], [-77.03926, 38.863332], [-77.039287, 38.863331], [-77.039313, 38.863328], [-77.039379, 38.863324], [-77.039405, 38.863322], [-77.039431, 38.863321], [-77.039464, 38.863319], [-77.039492, 38.863317], [-77.039532, 38.863313], [-77.039574, 38.863301], [-77.039596, 38.863295], [-77.039633, 38.863282], [-77.039669, 38.863271], [-77.039706, 38.86326], [-77.03974, 38.863249], [-77.039769, 38.863237], [-77.039794, 38.863227], [-77.039807, 38.863208], [-77.039811, 38.863177], [-77.039811, 38.86311], [-77.03981, 38.863092], [-77.039811, 38.863065], [-77.03981, 38.863042], [-77.039812, 38.863005], [-77.039814, 38.862984], [-77.039814, 38.862964], [-77.039815, 38.862944], [-77.039816, 38.862923], [-77.039817, 38.8629], [-77.039818, 38.86288], [-77.039818, 38.862828], [-77.039821, 38.862803], [-77.039823, 38.862785], [-77.03983, 38.862755], [-77.039844, 38.862724], [-77.03986, 38.862698], [-77.039884, 38.86267], [-77.039912, 38.862643], [-77.039936, 38.862616], [-77.039964, 38.862593], [-77.039981, 38.86258], [-77.039997, 38.862567], [-77.040029, 38.862543], [-77.040062, 38.862521], [-77.040095, 38.862504], [-77.04012, 38.862484], [-77.040142, 38.862464], [-77.040169, 38.862445], [-77.040202, 38.862428], [-77.040233, 38.862414], [-77.040261, 38.862405], [-77.04029, 38.862396], [-77.040314, 38.862386], [-77.040337, 38.862383], [-77.040372, 38.862383], [-77.040404, 38.862393], [-77.040443, 38.862409], [-77.04048, 38.862429], [-77.0405, 38.862439], [-77.04054, 38.862456], [-77.040561, 38.862466], [-77.040583, 38.862475], [-77.040604, 38.862484], [-77.040626, 38.862494], [-77.040647, 38.862504], [-77.040667, 38.862515], [-77.040688, 38.862525], [-77.040725, 38.862545], [-77.040745, 38.862555], [-77.040766, 38.862567], [-77.040788, 38.862579], [-77.040808, 38.862592], [-77.040842, 38.862614], [-77.040878, 38.862633], [-77.040912, 38.862657], [-77.040927, 38.862671], [-77.040954, 38.862695], [-77.040979, 38.862716], [-77.041008, 38.86274], [-77.041038, 38.862761], [-77.04106, 38.862779], [-77.04108, 38.862796], [-77.04111, 38.862819], [-77.04114, 38.862838], [-77.041166, 38.862852], [-77.041196, 38.862862], [-77.041222, 38.862869], [-77.041247, 38.86288], [-77.041267, 38.862897], [-77.041284, 38.862914], [-77.041305, 38.862938], [-77.041326, 38.86296], [-77.041342, 38.862974], [-77.041427, 38.863036], [-77.041455, 38.863059], [-77.041471, 38.863074], [-77.041489, 38.863087], [-77.041523, 38.863113], [-77.041539, 38.863126], [-77.041569, 38.863152], [-77.0416, 38.863174], [-77.041633, 38.863195], [-77.041667, 38.863215], [-77.041686, 38.863226], [-77.041727, 38.863244], [-77.041768, 38.863258], [-77.041803, 38.863274], [-77.041842, 38.86329], [-77.041881, 38.8633], [-77.041922, 38.86331], [-77.041962, 38.86332], [-77.041997, 38.863331], [-77.042065, 38.863365], [-77.0421, 38.863378], [-77.042133, 38.863388], [-77.042164, 38.863402], [-77.042197, 38.863416], [-77.042233, 38.863425], [-77.04227, 38.863436], [-77.042308, 38.863447], [-77.042348, 38.863454], [-77.042393, 38.86346], [-77.042433, 38.863465], [-77.04247, 38.863468], [-77.042502, 38.863465], [-77.042524, 38.863454], [-77.042545, 38.863441], [-77.042566, 38.863426], [-77.04258, 38.863407], [-77.04259, 38.863386], [-77.042597, 38.863366], [-77.042607, 38.863348], [-77.04266, 38.863315], [-77.042765, 38.86338], [-77.042738, 38.863433], [-77.042721, 38.863446], [-77.042703, 38.863473], [-77.042677, 38.863493], [-77.04265, 38.863512], [-77.042635, 38.863532], [-77.042636, 38.863555], [-77.042652, 38.863568], [-77.042454, 38.863953], [-77.042531, 38.863709], [-77.042507, 38.863692], [-77.042477, 38.863691], [-77.042436, 38.863694], [-77.042397, 38.863697], [-77.042366, 38.863706], [-77.042338, 38.863719], [-77.042308, 38.863728], [-77.042276, 38.863732], [-77.042242, 38.863735], [-77.042219, 38.863749], [-77.042186, 38.863762], [-77.042138, 38.863769], [-77.042114, 38.863768], [-77.042071, 38.863761], [-77.042032, 38.863753], [-77.041995, 38.863744], [-77.041964, 38.863734], [-77.041935, 38.86372], [-77.041902, 38.863708], [-77.041865, 38.863706], [-77.04183, 38.863695], [-77.041804, 38.86369], [-77.041777, 38.863685], [-77.041749, 38.863682], [-77.041721, 38.86368], [-77.041695, 38.863677], [-77.041671, 38.863675], [-77.041629, 38.863677], [-77.04159, 38.863681], [-77.04155, 38.863686], [-77.041509, 38.863683], [-77.041464, 38.863683], [-77.041422, 38.863688], [-77.041387, 38.863695], [-77.041353, 38.863697], [-77.041321, 38.86369], [-77.041298, 38.863699], [-77.041289, 38.863716], [-77.041227, 38.863744], [-77.041198, 38.863743], [-77.041167, 38.863744], [-77.041137, 38.863743], [-77.041101, 38.863743], [-77.041069, 38.863744], [-77.040996, 38.863744], [-77.040976, 38.863683], [-77.040934, 38.863658], [-77.040898, 38.863663], [-77.040865, 38.863672], [-77.04083, 38.86367], [-77.040789, 38.863668], [-77.040763, 38.863672], [-77.040735, 38.863676], [-77.040706, 38.86368], [-77.040677, 38.863685], [-77.040619, 38.863691], [-77.040591, 38.863694], [-77.040535, 38.863698], [-77.040479, 38.8637], [-77.040449, 38.863702], [-77.040418, 38.863704], [-77.040388, 38.863709], [-77.040359, 38.863713], [-77.040333, 38.863717], [-77.040238, 38.863734], [-77.040216, 38.86374], [-77.04018, 38.863758], [-77.040139, 38.86377], [-77.040114, 38.863774], [-77.040088, 38.863779], [-77.040064, 38.863783], [-77.04004, 38.863788], [-77.039972, 38.863801], [-77.039931, 38.86381], [-77.039891, 38.863818], [-77.039854, 38.863827], [-77.039814, 38.863837], [-77.039775, 38.863849], [-77.039745, 38.863858], [-77.039688, 38.863877], [-77.039646, 38.86388], [-77.039621, 38.863879], [-77.039575, 38.86388], [-77.039551, 38.863882], [-77.039507, 38.86389], [-77.039467, 38.863898], [-77.039423, 38.863897], [-77.039396, 38.863895], [-77.039372, 38.863896], [-77.039347, 38.863898], [-77.039322, 38.863901], [-77.039296, 38.863903], [-77.039272, 38.863905], [-77.039249, 38.863907], [-77.039221, 38.86391], [-77.039195, 38.863912], [-77.039166, 38.863914], [-77.039091, 38.86392], [-77.039067, 38.863919], [-77.039042, 38.86392], [-77.038971, 38.863924], [-77.038928, 38.863927], [-77.038886, 38.863932], [-77.038841, 38.863943], [-77.038772, 38.863952], [-77.038748, 38.863955], [-77.038722, 38.863959], [-77.0387, 38.863965], [-77.038678, 38.863972], [-77.038656, 38.863978], [-77.038618, 38.863993], [-77.038583, 38.864008], [-77.038541, 38.864008], [-77.038499, 38.864002], [-77.038457, 38.864005], [-77.038414, 38.864015], [-77.03837, 38.86402], [-77.038323, 38.864021], [-77.038276, 38.864029], [-77.038254, 38.864036], [-77.038212, 38.864055], [-77.038132, 38.864095], [-77.038112, 38.864107], [-77.038096, 38.86412], [-77.038073, 38.864146], [-77.038045, 38.864171], [-77.038011, 38.864199], [-77.037993, 38.864213], [-77.037964, 38.864243], [-77.037949, 38.864259], [-77.037937, 38.864275], [-77.037926, 38.864292], [-77.037908, 38.86433], [-77.037899, 38.864347], [-77.037892, 38.864365], [-77.037886, 38.864383], [-77.037881, 38.864403], [-77.037874, 38.864421], [-77.037862, 38.864455], [-77.037847, 38.864488], [-77.037834, 38.86452], [-77.037823, 38.864552], [-77.037814, 38.864569], [-77.037805, 38.864587], [-77.037798, 38.864605], [-77.03779, 38.864622], [-77.037778, 38.864652], [-77.037765, 38.864695], [-77.037757, 38.864726], [-77.037748, 38.864757], [-77.037741, 38.864789], [-77.037737, 38.864836], [-77.037736, 38.864858], [-77.037736, 38.86488], [-77.037735, 38.864903], [-77.037737, 38.864927], [-77.03774, 38.864952], [-77.037744, 38.864973], [-77.03774, 38.865031], [-77.037736, 38.865053], [-77.037736, 38.865074], [-77.037737, 38.865095], [-77.037737, 38.865114], [-77.037739, 38.865155], [-77.037742, 38.865192], [-77.037746, 38.865229], [-77.03775, 38.865265], [-77.03776, 38.865339], [-77.037766, 38.865376], [-77.03777, 38.865404], [-77.037774, 38.865431], [-77.037779, 38.865458], [-77.037785, 38.865512], [-77.037787, 38.865546], [-77.037787, 38.865575], [-77.037788, 38.865604], [-77.037799, 38.865659], [-77.037813, 38.865684], [-77.037832, 38.865716], [-77.037839, 38.865745], [-77.03784, 38.865775], [-77.037839, 38.865805], [-77.037839, 38.865836], [-77.037843, 38.865866], [-77.037849, 38.865899], [-77.037857, 38.865937], [-77.037861, 38.865957], [-77.037864, 38.865976], [-77.037868, 38.865995], [-77.037875, 38.866038], [-77.037879, 38.86609], [-77.037881, 38.866142], [-77.037886, 38.866186], [-77.037892, 38.866223], [-77.0379, 38.86626], [-77.037927, 38.866371], [-77.037934, 38.866408], [-77.037945, 38.866456], [-77.037955, 38.866488], [-77.037966, 38.866521], [-77.037977, 38.866553], [-77.037987, 38.866585], [-77.037993, 38.866618], [-77.038, 38.866672], [-77.038009, 38.866701], [-77.038019, 38.866729], [-77.038031, 38.866757], [-77.038043, 38.866784], [-77.038054, 38.866812], [-77.038069, 38.866847], [-77.038085, 38.866881], [-77.038102, 38.866915], [-77.038117, 38.866949], [-77.038129, 38.866983], [-77.038137, 38.867018], [-77.038142, 38.867051], [-77.038149, 38.867075], [-77.038157, 38.867099], [-77.038177, 38.867147], [-77.038187, 38.86717], [-77.038204, 38.867207], [-77.03823, 38.867255], [-77.038241, 38.86728], [-77.038251, 38.867304], [-77.038258, 38.86733], [-77.038264, 38.867359], [-77.038269, 38.867382], [-77.038276, 38.867405], [-77.038284, 38.867427], [-77.038293, 38.86745], [-77.038339, 38.867535], [-77.038351, 38.867559], [-77.038364, 38.867583], [-77.038387, 38.867633], [-77.038413, 38.867684], [-77.038434, 38.867718], [-77.038457, 38.867752], [-77.038479, 38.867785], [-77.038498, 38.86782], [-77.038512, 38.867856], [-77.038529, 38.867904], [-77.038545, 38.867937], [-77.038563, 38.867969], [-77.03858, 38.868002], [-77.038593, 38.868035], [-77.038601, 38.868069], [-77.038608, 38.868107], [-77.038618, 38.868132], [-77.038631, 38.868156], [-77.038644, 38.868181], [-77.038654, 38.868205], [-77.038661, 38.868231], [-77.03867, 38.868271], [-77.038686, 38.868296], [-77.038722, 38.868346], [-77.038737, 38.868372], [-77.038744, 38.868399], [-77.038752, 38.868438], [-77.038767, 38.868469], [-77.038787, 38.868499], [-77.03881, 38.868529], [-77.038832, 38.868559], [-77.038852, 38.86859], [-77.038875, 38.868628], [-77.038899, 38.868667], [-77.038922, 38.868705], [-77.038945, 38.868744], [-77.038966, 38.868783], [-77.038986, 38.868823], [-77.03901, 38.868876], [-77.039027, 38.868912], [-77.039046, 38.868948], [-77.039064, 38.868983], [-77.039083, 38.869019], [-77.039102, 38.869054], [-77.039116, 38.869079], [-77.039132, 38.869104], [-77.039147, 38.869129], [-77.039161, 38.869154], [-77.039174, 38.86918], [-77.039185, 38.869206], [-77.039197, 38.869239], [-77.03923, 38.869305], [-77.039242, 38.869327], [-77.039253, 38.869348], [-77.039316, 38.86947], [-77.039332, 38.869496], [-77.039378, 38.869579], [-77.039393, 38.869603], [-77.039409, 38.869625], [-77.039425, 38.869646], [-77.039438, 38.869668], [-77.039442, 38.869687], [-77.039466, 38.86974], [-77.039483, 38.869762], [-77.039498, 38.869784], [-77.03951, 38.869805], [-77.03952, 38.869824], [-77.039529, 38.869844], [-77.03954, 38.869865], [-77.039552, 38.869886], [-77.039564, 38.869908], [-77.039576, 38.869928], [-77.039589, 38.869945], [-77.039605, 38.869962], [-77.039622, 38.869981], [-77.039638, 38.870001], [-77.039654, 38.870023], [-77.039667, 38.870044], [-77.039679, 38.870062], [-77.039692, 38.87008], [-77.039705, 38.870097], [-77.039717, 38.870115], [-77.03973, 38.870135], [-77.039746, 38.870155], [-77.039761, 38.870176], [-77.039776, 38.870198], [-77.039841, 38.870323], [-77.039855, 38.870342], [-77.039867, 38.870364], [-77.03988, 38.870392], [-77.039891, 38.870419], [-77.039903, 38.870445], [-77.03992, 38.870469], [-77.039935, 38.870496], [-77.039952, 38.870524], [-77.039973, 38.870548], [-77.039993, 38.870569], [-77.040012, 38.870589], [-77.040032, 38.87061], [-77.040053, 38.870635], [-77.04007, 38.870662], [-77.040083, 38.870684], [-77.040098, 38.870709], [-77.040107, 38.870729], [-77.040122, 38.870752], [-77.040137, 38.870778], [-77.040173, 38.870832], [-77.04019, 38.87086], [-77.040209, 38.870888], [-77.040229, 38.870916], [-77.040253, 38.870937], [-77.040276, 38.870956], [-77.040298, 38.870975], [-77.040322, 38.870992], [-77.040346, 38.871012], [-77.040366, 38.871036], [-77.040381, 38.871064], [-77.040398, 38.87109], [-77.040414, 38.871115], [-77.040431, 38.871141], [-77.040447, 38.87117], [-77.040468, 38.871198], [-77.040489, 38.871223], [-77.040509, 38.871248], [-77.040533, 38.871271], [-77.040562, 38.871293], [-77.040589, 38.871315], [-77.040609, 38.871339], [-77.040645, 38.871395], [-77.040665, 38.871422], [-77.040686, 38.871449], [-77.040708, 38.871472], [-77.040731, 38.871495], [-77.040754, 38.871519], [-77.04078, 38.871542], [-77.040807, 38.871564], [-77.040837, 38.871585], [-77.040868, 38.871607], [-77.040895, 38.87163], [-77.040916, 38.871654], [-77.040936, 38.871678], [-77.040961, 38.871699], [-77.04098, 38.871715], [-77.041013, 38.871753], [-77.041042, 38.871787], [-77.041065, 38.871816], [-77.041105, 38.87186], [-77.041183, 38.871952], [-77.041256, 38.87204], [-77.041292, 38.872081], [-77.041332, 38.872127], [-77.041408, 38.872217], [-77.041431, 38.872243], [-77.041444, 38.872258], [-77.041476, 38.872295], [-77.041527, 38.872354], [-77.041565, 38.872399], [-77.041639, 38.872485], [-77.041673, 38.872538], [-77.041674, 38.872541], [-77.041712, 38.87258], [-77.041764, 38.872617], [-77.041821, 38.872652], [-77.041879, 38.872686], [-77.041931, 38.872723], [-77.041983, 38.872757], [-77.042041, 38.872791], [-77.042098, 38.872825], [-77.042149, 38.872859], [-77.042169, 38.87288], [-77.042188, 38.872899], [-77.042207, 38.872946], [-77.042214, 38.872965], [-77.042284, 38.873059], [-77.042337, 38.873126], [-77.042393, 38.873182], [-77.042489, 38.873261], [-77.042577, 38.873337], [-77.042657, 38.873416], [-77.042692, 38.873452], [-77.04273, 38.873489], [-77.042765, 38.873525], [-77.042802, 38.873562], [-77.042836, 38.873601], [-77.042866, 38.873638], [-77.042917, 38.873692], [-77.042967, 38.873748], [-77.043016, 38.873802], [-77.043067, 38.873852], [-77.043119, 38.873905], [-77.04317, 38.873955], [-77.043276, 38.874061], [-77.043336, 38.874118], [-77.043396, 38.874167], [-77.043504, 38.874245], [-77.043869, 38.874285], [-77.043937, 38.87433], [-77.043992, 38.87437], [-77.044052, 38.874414], [-77.04411, 38.874459], [-77.04417, 38.874503], [-77.044229, 38.874547], [-77.044289, 38.874591], [-77.04435, 38.874634], [-77.044405, 38.874673], [-77.044462, 38.874713], [-77.044517, 38.874752], [-77.044573, 38.874791], [-77.044631, 38.874829], [-77.044687, 38.874869], [-77.044724, 38.874896], [-77.044763, 38.874922], [-77.044837, 38.874974], [-77.044874, 38.875002], [-77.044912, 38.875028], [-77.044961, 38.875067], [-77.045009, 38.875106], [-77.045058, 38.875144], [-77.045106, 38.875184], [-77.045154, 38.875223], [-77.045203, 38.875261], [-77.045237, 38.875285], [-77.045272, 38.875309], [-77.045307, 38.875332], [-77.045341, 38.875356], [-77.045376, 38.87538], [-77.045406, 38.875408], [-77.045422, 38.875423], [-77.045441, 38.875439], [-77.045476, 38.875462], [-77.045513, 38.875482], [-77.045554, 38.875504], [-77.045577, 38.875513], [-77.045601, 38.875523], [-77.045625, 38.875532], [-77.045646, 38.875545], [-77.045665, 38.875558], [-77.045693, 38.875578], [-77.045736, 38.87559], [-77.045761, 38.875594], [-77.045784, 38.875598], [-77.045809, 38.875604], [-77.045839, 38.875615], [-77.045871, 38.875621], [-77.045903, 38.875624], [-77.045971, 38.875624], [-77.046007, 38.875625], [-77.046044, 38.875625], [-77.046084, 38.875622], [-77.046125, 38.875618], [-77.046165, 38.875613], [-77.046203, 38.875608], [-77.046241, 38.875602], [-77.046278, 38.875595], [-77.046301, 38.875588], [-77.046332, 38.875575], [-77.046358, 38.875564], [-77.046383, 38.875555], [-77.046405, 38.875547], [-77.046436, 38.875535], [-77.04646, 38.875522], [-77.046483, 38.875509], [-77.046505, 38.875498], [-77.046538, 38.875483], [-77.046596, 38.875455], [-77.046628, 38.87544], [-77.046664, 38.875423], [-77.046699, 38.875406], [-77.046745, 38.875385], [-77.046773, 38.875373], [-77.046803, 38.87536], [-77.046831, 38.875347], [-77.046919, 38.875292], [-77.047002, 38.875239], [-77.047059, 38.875184], [-77.047075, 38.875165], [-77.047107, 38.875142], [-77.047137, 38.875117], [-77.04715, 38.875101], [-77.047161, 38.875081], [-77.047173, 38.875061], [-77.047199, 38.875027], [-77.04721, 38.875007], [-77.047216, 38.874988], [-77.047221, 38.874966], [-77.047226, 38.87493], [-77.047226, 38.874907], [-77.047225, 38.874884], [-77.047221, 38.874865], [-77.047215, 38.874844], [-77.0472, 38.874807], [-77.047191, 38.874786], [-77.047183, 38.874766], [-77.047174, 38.874744], [-77.047165, 38.874727], [-77.047159, 38.874708], [-77.047153, 38.874691], [-77.047145, 38.874669], [-77.047135, 38.87465], [-77.047122, 38.874626], [-77.047078, 38.874565], [-77.047064, 38.87455], [-77.047051, 38.874535], [-77.047029, 38.874518], [-77.046991, 38.874493], [-77.046974, 38.87448], [-77.046955, 38.874468], [-77.046937, 38.874453], [-77.046919, 38.874436], [-77.046905, 38.874419], [-77.04689, 38.874402], [-77.046876, 38.874386], [-77.046848, 38.874356], [-77.046831, 38.874337], [-77.046813, 38.874319], [-77.046796, 38.874303], [-77.046779, 38.874286], [-77.046762, 38.87427], [-77.046744, 38.874252], [-77.046728, 38.874235], [-77.046712, 38.87422], [-77.046693, 38.874203], [-77.046676, 38.874188], [-77.046643, 38.874149], [-77.046613, 38.874113], [-77.046596, 38.874096], [-77.046581, 38.87408], [-77.046567, 38.874065], [-77.046551, 38.87405], [-77.046481, 38.874035], [-77.046457, 38.874031], [-77.046433, 38.874024], [-77.046412, 38.874012], [-77.046402, 38.873994], [-77.046396, 38.873974], [-77.046394, 38.873953], [-77.046393, 38.873932], [-77.046391, 38.873911], [-77.046389, 38.873886], [-77.046388, 38.873865], [-77.046385, 38.873827], [-77.046383, 38.873804], [-77.046382, 38.873739], [-77.046385, 38.87372], [-77.046387, 38.873702], [-77.046389, 38.87368], [-77.046392, 38.873661], [-77.046402, 38.873623], [-77.04641, 38.873601], [-77.046419, 38.873579], [-77.046427, 38.873558], [-77.046434, 38.873539], [-77.046442, 38.873517], [-77.04645, 38.8735], [-77.046459, 38.873479], [-77.046486, 38.873417], [-77.046494, 38.873398], [-77.046505, 38.873377], [-77.046513, 38.873358], [-77.046519, 38.873339], [-77.046525, 38.873316], [-77.04653, 38.873296], [-77.046533, 38.873277], [-77.046537, 38.873258], [-77.046542, 38.87324], [-77.046546, 38.873221], [-77.046548, 38.873203], [-77.046549, 38.873185], [-77.046549, 38.873164], [-77.046546, 38.873096], [-77.046542, 38.873054], [-77.046534, 38.873018], [-77.046527, 38.872994], [-77.046519, 38.872971], [-77.046512, 38.872953], [-77.046504, 38.872935], [-77.046494, 38.872917], [-77.046484, 38.8729], [-77.046472, 38.872879], [-77.046459, 38.872859], [-77.046448, 38.872842], [-77.046438, 38.872824], [-77.046428, 38.872803], [-77.04642, 38.872784], [-77.046411, 38.872764], [-77.046403, 38.872743], [-77.046395, 38.872726], [-77.046372, 38.872689], [-77.046361, 38.872673], [-77.046348, 38.872654], [-77.046336, 38.872633], [-77.046324, 38.872614], [-77.046312, 38.872593], [-77.046301, 38.872572], [-77.04629, 38.872554], [-77.046279, 38.872535], [-77.046268, 38.872518], [-77.046258, 38.8725], [-77.046249, 38.872481], [-77.046242, 38.872463], [-77.046251, 38.872368], [-77.046264, 38.872349], [-77.046278, 38.872329], [-77.046302, 38.872297], [-77.046316, 38.872279], [-77.046331, 38.87226], [-77.046344, 38.872244], [-77.04636, 38.872225], [-77.046373, 38.872209], [-77.046403, 38.872175], [-77.046419, 38.87216], [-77.046438, 38.872145], [-77.046459, 38.872129], [-77.046478, 38.872111], [-77.046492, 38.872096], [-77.046504, 38.872081], [-77.046519, 38.872065], [-77.046537, 38.872049], [-77.046554, 38.872035], [-77.046575, 38.87202], [-77.046594, 38.872007], [-77.046618, 38.871993], [-77.046657, 38.871963], [-77.046718, 38.871918], [-77.046754, 38.871894], [-77.046809, 38.871862], [-77.04683, 38.871853], [-77.046854, 38.871845], [-77.04688, 38.871838], [-77.046906, 38.871832], [-77.046928, 38.871827], [-77.04695, 38.87182], [-77.046975, 38.871813], [-77.047001, 38.871806], [-77.047028, 38.871801], [-77.047052, 38.871799], [-77.047078, 38.871797], [-77.047106, 38.871793], [-77.047133, 38.871788], [-77.047157, 38.871782], [-77.047183, 38.871777], [-77.047213, 38.871771], [-77.047244, 38.871765], [-77.047272, 38.87176], [-77.047362, 38.871744], [-77.047391, 38.871741], [-77.047418, 38.871738], [-77.047449, 38.871734], [-77.047482, 38.871727], [-77.04751, 38.871721], [-77.047537, 38.871714], [-77.047566, 38.871707], [-77.047597, 38.8717], [-77.047624, 38.871695], [-77.047651, 38.871689], [-77.047683, 38.871683], [-77.047716, 38.871679], [-77.047772, 38.871672], [-77.047805, 38.871668], [-77.047834, 38.871663], [-77.047859, 38.871659], [-77.047885, 38.871654], [-77.047921, 38.871647], [-77.047963, 38.871637], [-77.047986, 38.87163], [-77.048076, 38.8716], [-77.048119, 38.871591], [-77.048144, 38.871587], [-77.048166, 38.871584], [-77.048217, 38.871575], [-77.048285, 38.871561], [-77.048324, 38.871553], [-77.048364, 38.871543], [-77.048424, 38.871527], [-77.048464, 38.871514], [-77.048501, 38.871499], [-77.048537, 38.871489], [-77.048567, 38.871485], [-77.048636, 38.871467], [-77.048672, 38.871457], [-77.048705, 38.871449], [-77.048734, 38.871441], [-77.048759, 38.871434], [-77.04879, 38.871424], [-77.048816, 38.871413], [-77.048837, 38.871401], [-77.048917, 38.871362], [-77.048935, 38.871348], [-77.048977, 38.871367], [-77.049031, 38.871354], [-77.049055, 38.871348], [-77.049084, 38.871343], [-77.049122, 38.871333], [-77.049156, 38.871322], [-77.049185, 38.87132], [-77.049215, 38.871319], [-77.049249, 38.871318], [-77.049283, 38.871322], [-77.049345, 38.871332], [-77.049389, 38.871339], [-77.049435, 38.87135], [-77.049461, 38.871357], [-77.049486, 38.871363], [-77.049509, 38.871372], [-77.049531, 38.87138], [-77.049554, 38.871389], [-77.049579, 38.871399], [-77.049601, 38.871408], [-77.049643, 38.871428], [-77.049666, 38.871436], [-77.049693, 38.871445], [-77.04974, 38.871465], [-77.049763, 38.871475], [-77.049787, 38.871485], [-77.049813, 38.871494], [-77.049835, 38.871504], [-77.049856, 38.871514], [-77.049877, 38.871525], [-77.049897, 38.871535], [-77.04992, 38.871545], [-77.049943, 38.871554], [-77.049965, 38.871563], [-77.049986, 38.871573], [-77.050024, 38.871595], [-77.050046, 38.871607], [-77.050067, 38.871617], [-77.050089, 38.871627], [-77.05011, 38.871637], [-77.050132, 38.871646], [-77.050157, 38.871655], [-77.050234, 38.871703], [-77.050256, 38.871715], [-77.050277, 38.871727], [-77.050315, 38.87176], [-77.050331, 38.871775], [-77.050359, 38.871801], [-77.050375, 38.871815], [-77.050406, 38.871842], [-77.050451, 38.871887], [-77.050463, 38.871904], [-77.050481, 38.871922], [-77.050501, 38.871941], [-77.050538, 38.871974], [-77.050554, 38.87199], [-77.05057, 38.872009], [-77.050586, 38.87203], [-77.050604, 38.872051], [-77.050619, 38.872068], [-77.050706, 38.872183], [-77.050786, 38.87235], [-77.050805, 38.872387], [-77.051037, 38.872736], [-77.051222, 38.873026], [-77.051411, 38.873325], [-77.051424, 38.873362], [-77.051451, 38.87337], [-77.051492, 38.873448], [-77.051506, 38.873472], [-77.051521, 38.873502], [-77.051531, 38.87353], [-77.051568, 38.873589], [-77.051604, 38.873674], [-77.051628, 38.873747], [-77.051638, 38.87379], [-77.051645, 38.87381], [-77.051661, 38.873852], [-77.051669, 38.873875], [-77.051677, 38.873895], [-77.051684, 38.873914], [-77.051687, 38.873933], [-77.051688, 38.873952], [-77.051688, 38.87397], [-77.051691, 38.874003], [-77.051691, 38.874027], [-77.05169, 38.874049], [-77.051691, 38.87407], [-77.051693, 38.874091], [-77.051696, 38.874117], [-77.051696, 38.87414], [-77.051695, 38.874162], [-77.051694, 38.874186], [-77.051694, 38.874213], [-77.051693, 38.874237], [-77.051694, 38.87426], [-77.051696, 38.874285], [-77.051697, 38.874313], [-77.051695, 38.874359], [-77.051693, 38.874386], [-77.051694, 38.874411], [-77.051701, 38.87448], [-77.051702, 38.874504], [-77.051706, 38.874548], [-77.051708, 38.874575], [-77.05171, 38.874598], [-77.05171, 38.874619], [-77.051709, 38.874642], [-77.051707, 38.874668], [-77.051704, 38.874691], [-77.051702, 38.874712], [-77.051699, 38.874736], [-77.051695, 38.874763], [-77.051692, 38.874787], [-77.051688, 38.87481], [-77.051685, 38.874837], [-77.051681, 38.874865], [-77.051677, 38.874889], [-77.051674, 38.874915], [-77.051671, 38.874944], [-77.051668, 38.874969], [-77.051664, 38.874993], [-77.051659, 38.875019], [-77.051654, 38.875046], [-77.05165, 38.875067], [-77.051647, 38.875087], [-77.051645, 38.875109], [-77.051641, 38.87513], [-77.051634, 38.875149], [-77.051627, 38.875167], [-77.051615, 38.875215], [-77.051612, 38.875233], [-77.051608, 38.875269], [-77.051604, 38.875288], [-77.051557, 38.875303], [-77.051555, 38.875321], [-77.051554, 38.875339], [-77.051552, 38.875358], [-77.05155, 38.875378], [-77.051548, 38.875396], [-77.051545, 38.87543], [-77.051543, 38.875451], [-77.051541, 38.875476], [-77.051538, 38.875505], [-77.051535, 38.875535], [-77.051531, 38.875579], [-77.051567, 38.875625], [-77.051543, 38.875668], [-77.051533, 38.875699], [-77.051526, 38.875733], [-77.051519, 38.875768], [-77.051514, 38.8758], [-77.051508, 38.875826], [-77.051501, 38.875851], [-77.051496, 38.875875], [-77.051491, 38.875896], [-77.051485, 38.875914], [-77.051476, 38.87594], [-77.051469, 38.875969], [-77.051459, 38.875996], [-77.051445, 38.876022], [-77.051432, 38.876047], [-77.051427, 38.876071], [-77.051425, 38.876094], [-77.051422, 38.876115], [-77.051422, 38.876137], [-77.051423, 38.876161], [-77.051427, 38.876187], [-77.051431, 38.876216], [-77.051436, 38.876245], [-77.05144, 38.876273], [-77.051444, 38.876299], [-77.051448, 38.876324], [-77.051454, 38.876348], [-77.051465, 38.876371], [-77.051474, 38.876394], [-77.051481, 38.876416], [-77.05149, 38.876439], [-77.051499, 38.876464], [-77.051507, 38.876492], [-77.051515, 38.876521], [-77.051523, 38.876548], [-77.051533, 38.876572], [-77.051545, 38.876595], [-77.051561, 38.876617], [-77.051578, 38.87664], [-77.051594, 38.876663], [-77.051607, 38.876686], [-77.051621, 38.876708], [-77.05164, 38.87673], [-77.051656, 38.876754], [-77.051668, 38.876775], [-77.05168, 38.876797], [-77.051693, 38.87682], [-77.051706, 38.87684], [-77.05172, 38.876856], [-77.051733, 38.876877], [-77.05175, 38.876904], [-77.051768, 38.876927], [-77.051791, 38.876947], [-77.051815, 38.876964], [-77.051841, 38.87698], [-77.051864, 38.876998], [-77.051906, 38.877034], [-77.051927, 38.877056], [-77.051949, 38.877078], [-77.05197, 38.877098], [-77.051988, 38.87712], [-77.052005, 38.877147], [-77.052029, 38.877176], [-77.052056, 38.877203], [-77.052082, 38.87723], [-77.052105, 38.877259], [-77.052125, 38.877292], [-77.052148, 38.877324], [-77.052172, 38.877354], [-77.052196, 38.877381], [-77.05222, 38.877406], [-77.052242, 38.877432], [-77.052265, 38.877459], [-77.052286, 38.877485], [-77.052309, 38.877512], [-77.052363, 38.877564], [-77.052388, 38.877593], [-77.052411, 38.87762], [-77.052431, 38.877648], [-77.05245, 38.877674], [-77.05247, 38.877701], [-77.052492, 38.877724], [-77.052516, 38.877746], [-77.052536, 38.877769], [-77.052554, 38.877794], [-77.052572, 38.87782], [-77.052592, 38.877846], [-77.052612, 38.87787], [-77.052634, 38.877895], [-77.052656, 38.877918], [-77.052677, 38.877941], [-77.052698, 38.877965], [-77.052719, 38.877988], [-77.052743, 38.878014], [-77.052772, 38.87804], [-77.052804, 38.878064], [-77.052835, 38.878089], [-77.052864, 38.878116], [-77.052892, 38.878144], [-77.05292, 38.878171], [-77.052947, 38.878197], [-77.052973, 38.878223], [-77.052999, 38.878248], [-77.053026, 38.878272], [-77.053056, 38.878297], [-77.053091, 38.878321], [-77.053121, 38.878346], [-77.053147, 38.878371], [-77.053174, 38.878396], [-77.053196, 38.87842], [-77.053216, 38.878443], [-77.053175, 38.878525], [-77.053245, 38.878554], [-77.053302, 38.87858], [-77.053337, 38.878606], [-77.05335, 38.878623], [-77.053364, 38.878641], [-77.053378, 38.878664], [-77.053394, 38.878692], [-77.053411, 38.87872], [-77.053429, 38.878746], [-77.053463, 38.878798], [-77.053478, 38.878821], [-77.053493, 38.878845], [-77.053507, 38.878868], [-77.053518, 38.878892], [-77.053524, 38.878917], [-77.053531, 38.878942], [-77.053538, 38.878963], [-77.053541, 38.878992], [-77.053542, 38.879014], [-77.053578, 38.879017], [-77.053609, 38.878996], [-77.053619, 38.878979], [-77.05363, 38.878962], [-77.053638, 38.878934], [-77.053638, 38.878875], [-77.053637, 38.878856], [-77.053654, 38.878836], [-77.053691, 38.878834], [-77.05371, 38.878845], [-77.053732, 38.878863], [-77.053753, 38.878884], [-77.053768, 38.878909], [-77.053778, 38.878933], [-77.05378, 38.878953], [-77.053776, 38.878972], [-77.05376, 38.879004], [-77.053739, 38.879029], [-77.053715, 38.87903], [-77.053696, 38.879047], [-77.053682, 38.879073], [-77.053665, 38.879097], [-77.05366, 38.879115], [-77.053664, 38.879134], [-77.05368, 38.879152], [-77.053702, 38.879185], [-77.05371, 38.879202], [-77.053718, 38.879229], [-77.053731, 38.879244], [-77.053751, 38.879266], [-77.053766, 38.879285], [-77.053791, 38.879317], [-77.053826, 38.879355], [-77.053864, 38.879405], [-77.053901, 38.879456], [-77.053915, 38.879471], [-77.053939, 38.879499], [-77.053964, 38.879531], [-77.053993, 38.879561], [-77.054025, 38.879593], [-77.054053, 38.879624], [-77.054082, 38.879656], [-77.054114, 38.879689], [-77.054143, 38.87972], [-77.054175, 38.87975], [-77.054205, 38.879777], [-77.054242, 38.879805], [-77.054281, 38.879833], [-77.054318, 38.879865], [-77.054357, 38.879892], [-77.054395, 38.879921], [-77.054455, 38.87996], [-77.054504, 38.879993], [-77.054527, 38.880008], [-77.054573, 38.880039], [-77.054609, 38.880061], [-77.054674, 38.880094], [-77.054715, 38.88012], [-77.054759, 38.880142], [-77.054802, 38.880163], [-77.054844, 38.880182], [-77.054888, 38.880198], [-77.054936, 38.88021], [-77.054981, 38.880223], [-77.055025, 38.880235], [-77.055072, 38.880249], [-77.055123, 38.880261], [-77.05515, 38.880267], [-77.055214, 38.880282], [-77.055255, 38.880292], [-77.05529, 38.880297], [-77.055314, 38.880301], [-77.055341, 38.880293], [-77.055331, 38.880273], [-77.055314, 38.880251], [-77.055285, 38.880223], [-77.055332, 38.88023], [-77.055359, 38.88024], [-77.055384, 38.880253], [-77.055411, 38.880267], [-77.05547, 38.880257], [-77.055502, 38.880283], [-77.05552, 38.880299], [-77.055583, 38.88035], [-77.055652, 38.88034], [-77.05571, 38.880332], [-77.055733, 38.880329], [-77.055776, 38.880367], [-77.055818, 38.880375], [-77.055863, 38.880381], [-77.05591, 38.880386], [-77.055939, 38.88039], [-77.056001, 38.880396], [-77.056032, 38.880397], [-77.056076, 38.880399], [-77.056129, 38.880402], [-77.056179, 38.880404], [-77.056228, 38.880406], [-77.056282, 38.880407], [-77.056334, 38.880406], [-77.056406, 38.880433], [-77.056459, 38.880397], [-77.056497, 38.880371], [-77.056554, 38.88039], [-77.056602, 38.880385], [-77.056658, 38.880379], [-77.056709, 38.880376], [-77.056771, 38.88037], [-77.056805, 38.880366], [-77.056828, 38.880363], [-77.056876, 38.880358], [-77.056954, 38.88035], [-77.057049, 38.880335], [-77.057154, 38.880322], [-77.057221, 38.880313], [-77.05731, 38.880301], [-77.057411, 38.880288], [-77.057473, 38.88028], [-77.057517, 38.880273], [-77.057587, 38.880267], [-77.057636, 38.880264], [-77.057668, 38.880262], [-77.057733, 38.880261], [-77.05779, 38.88026], [-77.057844, 38.880261], [-77.057909, 38.880265], [-77.057933, 38.88027], [-77.057997, 38.880286], [-77.058064, 38.880307], [-77.058145, 38.880332], [-77.058202, 38.880352], [-77.058263, 38.880372], [-77.058317, 38.880388], [-77.058352, 38.880397], [-77.058409, 38.880411], [-77.058519, 38.880438], [-77.058599, 38.88046], [-77.058641, 38.880472], [-77.058683, 38.880486], [-77.058711, 38.880501], [-77.058733, 38.880522], [-77.05876, 38.880547], [-77.058783, 38.88057], [-77.058801, 38.880587], [-77.058843, 38.880628], [-77.058863, 38.880649], [-77.058893, 38.880677], [-77.058913, 38.880697], [-77.058936, 38.880719], [-77.059015, 38.880798], [-77.059047, 38.880828], [-77.05908, 38.88086], [-77.05911, 38.880891], [-77.059143, 38.880922], [-77.059202, 38.880993], [-77.059238, 38.881068], [-77.059248, 38.881087], [-77.059262, 38.881109], [-77.059277, 38.881133], [-77.059291, 38.881155], [-77.059307, 38.881181], [-77.059324, 38.881208], [-77.059341, 38.881236], [-77.059361, 38.881271], [-77.059427, 38.881358], [-77.059448, 38.881387], [-77.059485, 38.881446], [-77.059514, 38.881495], [-77.059531, 38.881524], [-77.059554, 38.881562], [-77.059574, 38.881595], [-77.059606, 38.881629], [-77.059642, 38.881666], [-77.05967, 38.881704], [-77.059685, 38.881727], [-77.059701, 38.881751], [-77.059714, 38.881777], [-77.059723, 38.8818], [-77.059732, 38.881822], [-77.059742, 38.881841], [-77.059763, 38.881873], [-77.059783, 38.881893], [-77.059799, 38.881915], [-77.05982, 38.881948], [-77.059833, 38.881972], [-77.059859, 38.882018], [-77.059877, 38.882049], [-77.05989, 38.882076], [-77.059898, 38.8821], [-77.059913, 38.882123], [-77.059935, 38.88215], [-77.059949, 38.882174], [-77.059962, 38.882198], [-77.059976, 38.882219], [-77.05999, 38.882244], [-77.060011, 38.882286], [-77.060019, 38.882306], [-77.060026, 38.882332], [-77.060034, 38.882355], [-77.06005, 38.882394], [-77.060066, 38.882425], [-77.060081, 38.882456], [-77.060097, 38.882484], [-77.060115, 38.882513], [-77.060132, 38.88254], [-77.060149, 38.88257], [-77.060169, 38.882605], [-77.060188, 38.882635], [-77.060206, 38.882669], [-77.06024, 38.882726], [-77.060258, 38.882756], [-77.060276, 38.882784], [-77.060287, 38.882805], [-77.060307, 38.882842], [-77.060342, 38.882912], [-77.060356, 38.882937], [-77.060368, 38.88296], [-77.060401, 38.883007], [-77.060417, 38.883032], [-77.060428, 38.883052], [-77.060456, 38.8831], [-77.060471, 38.883131], [-77.060488, 38.883165], [-77.060501, 38.883192], [-77.060515, 38.883229], [-77.060525, 38.883247], [-77.060537, 38.88327], [-77.060554, 38.883297], [-77.060587, 38.883337], [-77.060609, 38.883366], [-77.060636, 38.883401], [-77.060657, 38.883431], [-77.060675, 38.883465], [-77.060692, 38.883504], [-77.060709, 38.883541], [-77.060728, 38.883576], [-77.060749, 38.883615], [-77.060766, 38.883653], [-77.060774, 38.88367], [-77.06079, 38.883705], [-77.060803, 38.883733], [-77.06081, 38.883751], [-77.060835, 38.883805], [-77.060849, 38.88383], [-77.060862, 38.883849], [-77.060878, 38.883868], [-77.060892, 38.883885], [-77.060911, 38.8839], [-77.060936, 38.88391], [-77.060964, 38.883918], [-77.060991, 38.883924], [-77.060904, 38.883926], [-77.060877, 38.883931], [-77.060873, 38.883949], [-77.060875, 38.883977], [-77.060899, 38.883989], [-77.060907, 38.884011], [-77.060943, 38.884029], [-77.060977, 38.88404], [-77.060987, 38.88406], [-77.060999, 38.88408], [-77.061029, 38.884117], [-77.06105, 38.884148], [-77.061067, 38.884172], [-77.061096, 38.884209], [-77.061119, 38.884239], [-77.061146, 38.884272], [-77.061168, 38.8843], [-77.061189, 38.884325], [-77.061221, 38.884359], [-77.061246, 38.884387], [-77.061274, 38.884427], [-77.061313, 38.884488], [-77.061345, 38.884536], [-77.061363, 38.884571], [-77.061376, 38.884608], [-77.061392, 38.884642], [-77.061409, 38.884674], [-77.061427, 38.884706], [-77.061446, 38.88474], [-77.061467, 38.88477], [-77.061484, 38.884786], [-77.06151, 38.884812], [-77.061536, 38.884832], [-77.06156, 38.884849], [-77.06158, 38.884868], [-77.0616, 38.884891], [-77.061622, 38.884926], [-77.061648, 38.884971], [-77.061734, 38.885085], [-77.061807, 38.885186], [-77.061816, 38.885203], [-77.061845, 38.885245], [-77.061865, 38.885274], [-77.061876, 38.88529], [-77.061895, 38.885321], [-77.061906, 38.885337], [-77.061919, 38.885358], [-77.061941, 38.885389], [-77.061959, 38.88542], [-77.061993, 38.885469], [-77.062009, 38.885495], [-77.062026, 38.88552], [-77.062047, 38.885553], [-77.062066, 38.885582], [-77.062097, 38.885627], [-77.062119, 38.885663], [-77.06214, 38.885694], [-77.062156, 38.88572], [-77.062177, 38.885751], [-77.062197, 38.885782], [-77.062213, 38.88581], [-77.062232, 38.885834], [-77.062257, 38.885877], [-77.062274, 38.885902], [-77.062295, 38.885933], [-77.06231, 38.885958], [-77.062329, 38.885988], [-77.062344, 38.886011], [-77.062356, 38.886034], [-77.062377, 38.886065], [-77.062395, 38.886093], [-77.06241, 38.886118], [-77.062436, 38.886157], [-77.062453, 38.886184], [-77.062467, 38.886212], [-77.06248, 38.886229], [-77.062503, 38.886272], [-77.062524, 38.886306], [-77.062542, 38.886336], [-77.062558, 38.886364], [-77.062568, 38.886379], [-77.062594, 38.88642], [-77.062615, 38.886453], [-77.062633, 38.88648], [-77.062648, 38.886501], [-77.062663, 38.886525], [-77.06269, 38.886563], [-77.06271, 38.886595], [-77.062742, 38.88664], [-77.062757, 38.886662], [-77.062776, 38.886692], [-77.062786, 38.886712], [-77.062799, 38.886733], [-77.062809, 38.88675], [-77.062831, 38.886786], [-77.062852, 38.886814], [-77.062863, 38.886831], [-77.062889, 38.886869], [-77.062904, 38.886891], [-77.062919, 38.886919], [-77.062934, 38.88694], [-77.062948, 38.886962], [-77.062959, 38.88698], [-77.062972, 38.886997], [-77.062985, 38.887013], [-77.063, 38.887035], [-77.063012, 38.887052], [-77.063024, 38.887072], [-77.063044, 38.887099], [-77.063067, 38.887133], [-77.063078, 38.887152], [-77.063099, 38.88718], [-77.063116, 38.887203], [-77.063129, 38.887224], [-77.063145, 38.887244], [-77.063157, 38.887262], [-77.063166, 38.887276], [-77.063174, 38.887292], [-77.06319, 38.887315], [-77.06321, 38.887344], [-77.063228, 38.887371], [-77.063239, 38.887388], [-77.063257, 38.887416], [-77.063295, 38.887476], [-77.063304, 38.887494], [-77.06331, 38.887507], [-77.063333, 38.887546], [-77.063356, 38.887579], [-77.063367, 38.887593], [-77.063381, 38.887613], [-77.063397, 38.887637], [-77.063415, 38.887665], [-77.063425, 38.88768], [-77.063435, 38.887697], [-77.063449, 38.887718], [-77.063459, 38.887728], [-77.063461, 38.887733], [-77.063467, 38.887741], [-77.063467, 38.887739], [-77.063469, 38.887741], [-77.063471, 38.887742], [-77.063488, 38.88777], [-77.063499, 38.887789], [-77.063511, 38.887807], [-77.063533, 38.887843], [-77.063549, 38.887866], [-77.06356, 38.887884], [-77.063572, 38.887899], [-77.063577, 38.887911], [-77.063592, 38.88793], [-77.063599, 38.887944], [-77.06361, 38.887959], [-77.063627, 38.887983], [-77.063633, 38.887994], [-77.063643, 38.888011], [-77.06366, 38.888034], [-77.063688, 38.888076], [-77.063698, 38.888097], [-77.063706, 38.888107], [-77.063715, 38.888123], [-77.063736, 38.888152], [-77.063744, 38.888166], [-77.063762, 38.888193], [-77.063773, 38.888211], [-77.063787, 38.888233], [-77.063803, 38.888256], [-77.06382, 38.888283], [-77.063839, 38.888311], [-77.063858, 38.888342], [-77.063886, 38.888386], [-77.063899, 38.888404], [-77.063913, 38.888424], [-77.063931, 38.888452], [-77.063952, 38.888485], [-77.063966, 38.888506], [-77.063985, 38.888535], [-77.064011, 38.888576], [-77.064027, 38.888601], [-77.064041, 38.888623], [-77.064059, 38.88865], [-77.064074, 38.888673], [-77.064087, 38.888693], [-77.064096, 38.888707], [-77.064109, 38.888727], [-77.064135, 38.888769], [-77.064183, 38.888841], [-77.064253, 38.888964], [-77.064313, 38.889112], [-77.064327, 38.889154], [-77.064356, 38.889263], [-77.064367, 38.889295], [-77.064379, 38.889333], [-77.064386, 38.889368], [-77.064395, 38.889416], [-77.064404, 38.88945], [-77.064411, 38.889481], [-77.064416, 38.88951], [-77.06442, 38.889543], [-77.064417, 38.889579], [-77.064411, 38.889606], [-77.064391, 38.889651], [-77.06438, 38.889667], [-77.064365, 38.889685], [-77.064341, 38.88972], [-77.06432, 38.889749], [-77.064298, 38.889769], [-77.064271, 38.889789], [-77.064242, 38.889809], [-77.064225, 38.889822], [-77.064188, 38.889867], [-77.064133, 38.889918], [-77.064091, 38.889954], [-77.064061, 38.889976], [-77.064028, 38.889997], [-77.064005, 38.890008], [-77.063948, 38.890037], [-77.063906, 38.890054], [-77.063847, 38.890086], [-77.063825, 38.890106], [-77.063807, 38.890127], [-77.06379, 38.890151], [-77.06378, 38.890173], [-77.063775, 38.890198], [-77.063787, 38.890263], [-77.063801, 38.890298], [-77.063818, 38.890324], [-77.063847, 38.890351], [-77.063879, 38.890367], [-77.06391, 38.890391], [-77.063929, 38.890422], [-77.063942, 38.890459], [-77.063954, 38.890496], [-77.063976, 38.890537], [-77.063997, 38.890571], [-77.064025, 38.89061], [-77.064044, 38.890639], [-77.064067, 38.890679], [-77.064078, 38.890766], [-77.06406, 38.890827], [-77.064019, 38.890888], [-77.064, 38.890911], [-77.063992, 38.890952], [-77.064012, 38.890998], [-77.064039, 38.89102], [-77.064068, 38.891034], [-77.064105, 38.891051], [-77.064142, 38.891081], [-77.064161, 38.891101], [-77.064185, 38.891129], [-77.064204, 38.891163], [-77.064225, 38.8912], [-77.064248, 38.891243], [-77.064277, 38.891305], [-77.064291, 38.891343], [-77.064304, 38.891379], [-77.064326, 38.891415], [-77.064345, 38.891421], [-77.064394, 38.891421], [-77.064419, 38.891422], [-77.064437, 38.891431], [-77.064456, 38.891457], [-77.064465, 38.891478], [-77.064474, 38.891496], [-77.064491, 38.891517], [-77.064532, 38.891555], [-77.06454, 38.891565], [-77.06455, 38.891585], [-77.064557, 38.891598], [-77.06457, 38.891623], [-77.064591, 38.891652], [-77.064603, 38.891669], [-77.064645, 38.891723], [-77.064698, 38.89186], [-77.064705, 38.891892], [-77.064702, 38.891903], [-77.064694, 38.891931], [-77.064691, 38.891946], [-77.064692, 38.891962], [-77.064693, 38.891977], [-77.064694, 38.891986], [-77.064695, 38.892023], [-77.064694, 38.892043], [-77.064696, 38.892059], [-77.064701, 38.892084], [-77.064707, 38.892108], [-77.06471, 38.892122], [-77.064714, 38.892148], [-77.064729, 38.892235], [-77.064747, 38.892264], [-77.064749, 38.892293], [-77.064735, 38.892329], [-77.064704, 38.892364], [-77.064698, 38.892384], [-77.064722, 38.892487], [-77.064758, 38.892592], [-77.064775, 38.892615], [-77.064796, 38.892631], [-77.064817, 38.892652], [-77.064829, 38.892673], [-77.06484, 38.892697], [-77.064844, 38.89272], [-77.064837, 38.892757], [-77.064841, 38.892788], [-77.064857, 38.892837], [-77.064863, 38.892859], [-77.064872, 38.892884], [-77.064911, 38.893003], [-77.064954, 38.893115], [-77.065002, 38.893261], [-77.065017, 38.893303], [-77.065033, 38.893339], [-77.065051, 38.893382], [-77.06507, 38.893419], [-77.065088, 38.893455], [-77.065104, 38.89349], [-77.065114, 38.893513], [-77.065126, 38.89354], [-77.065135, 38.893565], [-77.065159, 38.893613], [-77.065181, 38.893645], [-77.065201, 38.893675], [-77.065231, 38.893737], [-77.065249, 38.893761], [-77.06527, 38.893783], [-77.065286, 38.8938], [-77.065308, 38.893817], [-77.065335, 38.893852], [-77.065344, 38.893876], [-77.065362, 38.89391], [-77.065382, 38.893941], [-77.065399, 38.893973], [-77.065468, 38.894061], [-77.065518, 38.894146], [-77.06557, 38.894234], [-77.065616, 38.894308], [-77.065702, 38.894467], [-77.065793, 38.894547], [-77.065817, 38.894562], [-77.065856, 38.894568], [-77.065891, 38.89456], [-77.065917, 38.894545], [-77.066007, 38.894538], [-77.065991, 38.894609], [-77.065954, 38.894636], [-77.065935, 38.89465], [-77.06591, 38.894671], [-77.065889, 38.894698], [-77.06588, 38.894726], [-77.065907, 38.894841], [-77.06595, 38.894895], [-77.066027, 38.894996], [-77.066108, 38.895112], [-77.066175, 38.895229], [-77.066198, 38.895269], [-77.066215, 38.895299], [-77.066233, 38.89533], [-77.066263, 38.895384], [-77.066278, 38.89541], [-77.066292, 38.895438], [-77.06631, 38.895476], [-77.06632, 38.8955], [-77.066332, 38.895525], [-77.066343, 38.895548], [-77.066349, 38.895568], [-77.066357, 38.895585], [-77.06637, 38.895639], [-77.066376, 38.895658], [-77.066384, 38.895681], [-77.066404, 38.895728], [-77.066434, 38.895779], [-77.066445, 38.895805], [-77.066459, 38.895837], [-77.066467, 38.895858], [-77.066482, 38.895887], [-77.066506, 38.895909], [-77.066533, 38.895949], [-77.066546, 38.895976], [-77.066555, 38.895993], [-77.066611, 38.896081], [-77.06663, 38.896113], [-77.066646, 38.896144], [-77.066667, 38.896186], [-77.066689, 38.896221], [-77.066717, 38.896277], [-77.06674, 38.896322], [-77.066759, 38.896359], [-77.066785, 38.896413], [-77.066805, 38.896452], [-77.066824, 38.896485], [-77.066837, 38.896505], [-77.066862, 38.896542], [-77.066895, 38.896594], [-77.066914, 38.896626], [-77.066925, 38.896644], [-77.066936, 38.896663], [-77.066948, 38.896682], [-77.06697, 38.89673], [-77.06698, 38.896753], [-77.067002, 38.896797], [-77.067014, 38.89682], [-77.067027, 38.896845], [-77.067041, 38.896867], [-77.067054, 38.89689], [-77.067084, 38.896936], [-77.067097, 38.896959], [-77.06711, 38.896983], [-77.067124, 38.897008], [-77.06714, 38.897031], [-77.067155, 38.897054], [-77.067167, 38.897078], [-77.067177, 38.897099], [-77.067185, 38.897117], [-77.067197, 38.89714], [-77.067208, 38.897157], [-77.067226, 38.897169], [-77.06722, 38.897235], [-77.067252, 38.897302], [-77.067258, 38.897321], [-77.067263, 38.89734], [-77.067269, 38.89736], [-77.067274, 38.897379], [-77.067278, 38.897399], [-77.067284, 38.897418], [-77.067289, 38.897438], [-77.067294, 38.89746], [-77.067299, 38.897481], [-77.067303, 38.8975], [-77.067307, 38.897534], [-77.067309, 38.897554], [-77.067315, 38.897592], [-77.067316, 38.897611], [-77.067319, 38.897643], [-77.067323, 38.897672], [-77.067325, 38.897726], [-77.067331, 38.897757], [-77.067339, 38.89779], [-77.067348, 38.897826], [-77.067352, 38.897845], [-77.067357, 38.897863], [-77.067371, 38.897896], [-77.067391, 38.897923], [-77.067409, 38.897947], [-77.067423, 38.897971], [-77.067432, 38.897991], [-77.067446, 38.898007], [-77.06746, 38.89803], [-77.067463, 38.898058], [-77.067466, 38.898089], [-77.067471, 38.898107], [-77.067498, 38.898108], [-77.067509, 38.898091], [-77.067527, 38.898077], [-77.067552, 38.898065], [-77.067575, 38.898056], [-77.067597, 38.898102], [-77.067532, 38.898128], [-77.067495, 38.898142], [-77.067478, 38.89816], [-77.067472, 38.89819], [-77.067467, 38.898222], [-77.067472, 38.89824], [-77.067478, 38.898258], [-77.067484, 38.898278], [-77.067488, 38.898296], [-77.067499, 38.89833], [-77.067514, 38.898365], [-77.067522, 38.898384], [-77.067531, 38.898403], [-77.067541, 38.898421], [-77.06755, 38.898438], [-77.067562, 38.89847], [-77.067572, 38.898501], [-77.067582, 38.89853], [-77.06759, 38.898564], [-77.067594, 38.898582], [-77.067599, 38.898613], [-77.067603, 38.898648], [-77.067608, 38.898682], [-77.067611, 38.8987], [-77.067614, 38.898731], [-77.067615, 38.898763], [-77.067616, 38.898782], [-77.067618, 38.898801], [-77.067621, 38.898835], [-77.067621, 38.898854], [-77.067623, 38.898883], [-77.067624, 38.898916], [-77.067618, 38.898951], [-77.067609, 38.89897], [-77.067599, 38.898989], [-77.06759, 38.899006], [-77.067573, 38.899036], [-77.067555, 38.899064], [-77.06754, 38.899087], [-77.067538, 38.899136], [-77.067574, 38.899237], [-77.067586, 38.899255], [-77.067608, 38.899291], [-77.067621, 38.899311], [-77.067633, 38.899332], [-77.067644, 38.899353], [-77.067655, 38.899373], [-77.067666, 38.899394], [-77.067677, 38.899414], [-77.067686, 38.899432], [-77.067693, 38.89945], [-77.067701, 38.899469], [-77.067712, 38.899488], [-77.067722, 38.899507], [-77.067744, 38.899543], [-77.067828, 38.899615], [-77.06785, 38.899627], [-77.067873, 38.899638], [-77.067896, 38.899648], [-77.067948, 38.899668], [-77.067974, 38.899676], [-77.067997, 38.899684], [-77.068019, 38.899692], [-77.068055, 38.899715], [-77.068072, 38.89973], [-77.068086, 38.899746], [-77.068099, 38.899761], [-77.068117, 38.899784], [-77.068134, 38.899804], [-77.068151, 38.899823], [-77.068161, 38.899841], [-77.068163, 38.899862], [-77.068164, 38.899882], [-77.068163, 38.899901], [-77.068166, 38.899929], [-77.06821, 38.899958], [-77.068247, 38.899973], [-77.068266, 38.899985], [-77.068286, 38.899997], [-77.068306, 38.90001], [-77.068326, 38.900025], [-77.068343, 38.90004], [-77.068356, 38.900057], [-77.06837, 38.900074], [-77.068384, 38.90009], [-77.068401, 38.900106], [-77.068417, 38.900122], [-77.068434, 38.900138], [-77.068452, 38.900154], [-77.068471, 38.90017], [-77.068493, 38.900186], [-77.068517, 38.900202], [-77.068539, 38.900218], [-77.068561, 38.900233], [-77.068621, 38.900281], [-77.068643, 38.900296], [-77.068694, 38.90033], [-77.068721, 38.900347], [-77.068746, 38.900362], [-77.068772, 38.900378], [-77.068796, 38.900395], [-77.068822, 38.900412], [-77.068849, 38.900429], [-77.068877, 38.900444], [-77.068901, 38.900459], [-77.068923, 38.900473], [-77.068946, 38.900483], [-77.068968, 38.900492], [-77.069011, 38.900506], [-77.069034, 38.900511], [-77.069058, 38.900515], [-77.069102, 38.900522], [-77.069125, 38.900528], [-77.069162, 38.900542], [-77.069195, 38.900558], [-77.069271, 38.90059], [-77.069347, 38.900602], [-77.069378, 38.900606], [-77.069409, 38.900611], [-77.069443, 38.900621], [-77.069467, 38.900631], [-77.069493, 38.900643], [-77.06952, 38.900656], [-77.069549, 38.900669], [-77.069582, 38.900682], [-77.069614, 38.900695], [-77.069647, 38.900709], [-77.069679, 38.900724], [-77.069706, 38.900738], [-77.069732, 38.90075], [-77.06976, 38.900763], [-77.069788, 38.900777], [-77.069842, 38.900807], [-77.06987, 38.90082], [-77.069897, 38.900832], [-77.069921, 38.900844], [-77.069955, 38.900859], [-77.069983, 38.900871], [-77.070011, 38.900882], [-77.070038, 38.900892], [-77.070066, 38.900903], [-77.070093, 38.900916], [-77.07012, 38.900928], [-77.070144, 38.90094], [-77.070166, 38.90095], [-77.070189, 38.900959], [-77.070212, 38.900967], [-77.070235, 38.900976], [-77.070259, 38.900985], [-77.070285, 38.900993], [-77.070308, 38.901001], [-77.070328, 38.901017], [-77.070362, 38.901042], [-77.070471, 38.901112], [-77.070585, 38.901186], [-77.070659, 38.901203], [-77.070689, 38.901202], [-77.07072, 38.901201], [-77.070746, 38.9012], [-77.07077, 38.901194], [-77.070818, 38.901174], [-77.070842, 38.901167], [-77.070882, 38.901163], [-77.070926, 38.901158], [-77.070949, 38.901154], [-77.070997, 38.901152], [-77.071023, 38.901152], [-77.071048, 38.901151], [-77.071075, 38.90115], [-77.071101, 38.901149], [-77.071125, 38.901148], [-77.07115, 38.901147], [-77.071175, 38.901147], [-77.071204, 38.901146], [-77.071311, 38.901149], [-77.071343, 38.901148], [-77.071377, 38.901147], [-77.071413, 38.901146], [-77.071447, 38.901145], [-77.071476, 38.901145], [-77.071503, 38.901143], [-77.071531, 38.90114], [-77.071618, 38.901128], [-77.071644, 38.901124], [-77.071667, 38.901118], [-77.071689, 38.901112], [-77.071712, 38.901106], [-77.071738, 38.901101], [-77.071768, 38.901095], [-77.071798, 38.901091], [-77.071828, 38.901088], [-77.071857, 38.901087], [-77.071888, 38.901086], [-77.071921, 38.901084], [-77.071953, 38.901083], [-77.071984, 38.901082], [-77.072013, 38.901081], [-77.072073, 38.901079], [-77.072104, 38.901078], [-77.072134, 38.901078], [-77.072162, 38.901077], [-77.072187, 38.901077], [-77.072211, 38.901076], [-77.072237, 38.901076], [-77.072264, 38.901077], [-77.072294, 38.901077], [-77.072324, 38.901076], [-77.072353, 38.901076], [-77.072411, 38.901074], [-77.072441, 38.901073], [-77.07247, 38.901073], [-77.072495, 38.901072], [-77.072519, 38.901071], [-77.072543, 38.901071], [-77.072568, 38.90107], [-77.072594, 38.90107], [-77.072622, 38.901069], [-77.07265, 38.901069], [-77.072674, 38.901068], [-77.072713, 38.901069], [-77.072752, 38.901072], [-77.072777, 38.901074], [-77.072805, 38.901076], [-77.072851, 38.90108], [-77.072896, 38.901087], [-77.072922, 38.901091], [-77.072953, 38.901095], [-77.072987, 38.901099], [-77.073022, 38.901102], [-77.073053, 38.901104], [-77.073085, 38.901107], [-77.073118, 38.90111], [-77.073155, 38.901112], [-77.073188, 38.901115], [-77.073217, 38.901118], [-77.073245, 38.90112], [-77.073272, 38.901122], [-77.073299, 38.901125], [-77.073324, 38.901126], [-77.073349, 38.901128], [-77.073375, 38.901131], [-77.073402, 38.901136], [-77.07343, 38.901143], [-77.073461, 38.901151], [-77.073494, 38.901159], [-77.07353, 38.901167], [-77.073563, 38.901176], [-77.073593, 38.901184], [-77.073622, 38.901192], [-77.073652, 38.901198], [-77.073679, 38.901204], [-77.073704, 38.901211], [-77.073728, 38.901217], [-77.073804, 38.901241], [-77.07385, 38.901253], [-77.073878, 38.901259], [-77.073905, 38.901266], [-77.073928, 38.901273], [-77.073953, 38.901281], [-77.073977, 38.90129], [-77.074002, 38.9013], [-77.074027, 38.901309], [-77.074053, 38.901317], [-77.074079, 38.901324], [-77.074131, 38.901334], [-77.074158, 38.90134], [-77.074188, 38.901347], [-77.074258, 38.901361], [-77.074291, 38.901369], [-77.074322, 38.901379], [-77.074355, 38.901388], [-77.074392, 38.901396], [-77.074428, 38.901404], [-77.074459, 38.901412], [-77.074489, 38.90142], [-77.074521, 38.901427], [-77.074557, 38.901433], [-77.074593, 38.901438], [-77.074626, 38.901443], [-77.074657, 38.901448], [-77.07469, 38.901453], [-77.074729, 38.901459], [-77.074768, 38.901466], [-77.074802, 38.901472], [-77.075036, 38.90153], [-77.075177, 38.901569], [-77.075222, 38.901581], [-77.075256, 38.901587], [-77.075291, 38.901594], [-77.075324, 38.901602], [-77.075354, 38.90161], [-77.075418, 38.901626], [-77.075449, 38.901634], [-77.075479, 38.901644], [-77.075508, 38.901655], [-77.075539, 38.901666], [-77.075569, 38.901676], [-77.075598, 38.901686], [-77.075627, 38.901695], [-77.075656, 38.901703], [-77.075683, 38.90171], [-77.075739, 38.901724], [-77.075764, 38.901734], [-77.075787, 38.901746], [-77.075811, 38.901758], [-77.075859, 38.90178], [-77.075881, 38.90179], [-77.075902, 38.901798], [-77.075942, 38.901809], [-77.075979, 38.901817], [-77.076006, 38.901819], [-77.076031, 38.901815], [-77.07607, 38.901818], [-77.076116, 38.901826], [-77.076145, 38.901837], [-77.076222, 38.901861], [-77.076253, 38.90187], [-77.076285, 38.901878], [-77.076316, 38.901886], [-77.076346, 38.901892], [-77.076374, 38.901898], [-77.076406, 38.901909], [-77.07644, 38.901921], [-77.076468, 38.901933], [-77.076494, 38.901945], [-77.076521, 38.901955], [-77.076548, 38.901962], [-77.076577, 38.901967], [-77.07661, 38.901967], [-77.076646, 38.901969], [-77.076682, 38.901973], [-77.076717, 38.901978], [-77.07675, 38.901986], [-77.076783, 38.901997], [-77.076809, 38.902011], [-77.076832, 38.902028], [-77.076859, 38.902044], [-77.076889, 38.902057], [-77.076922, 38.902072], [-77.076961, 38.902088], [-77.076997, 38.902103], [-77.077034, 38.902114], [-77.07707, 38.902123], [-77.077108, 38.90213], [-77.077152, 38.902138], [-77.077192, 38.902147], [-77.077232, 38.902153], [-77.077276, 38.902158], [-77.077324, 38.902163], [-77.077369, 38.902165], [-77.077411, 38.902168], [-77.077451, 38.902172], [-77.07749, 38.902177], [-77.077524, 38.902181], [-77.077552, 38.90219], [-77.077569, 38.902206], [-77.07758, 38.902226], [-77.077613, 38.902256], [-77.07764, 38.902265], [-77.077666, 38.902267], [-77.077693, 38.902263], [-77.077721, 38.902257], [-77.077752, 38.902253], [-77.077785, 38.902252], [-77.077824, 38.902254], [-77.077864, 38.902258], [-77.077901, 38.902262], [-77.077935, 38.902264], [-77.077969, 38.902268], [-77.078003, 38.902276], [-77.078035, 38.902285], [-77.078064, 38.902295], [-77.078118, 38.902317], [-77.078141, 38.902331], [-77.078162, 38.902344], [-77.078181, 38.902356], [-77.07825, 38.902376], [-77.078275, 38.902378], [-77.078301, 38.902377], [-77.07833, 38.902374], [-77.078358, 38.902369], [-77.078381, 38.902362], [-77.078431, 38.902352], [-77.078455, 38.902346], [-77.078486, 38.902341], [-77.078526, 38.902339], [-77.078567, 38.902336], [-77.078607, 38.902334], [-77.078644, 38.902328], [-77.078686, 38.902324], [-77.078726, 38.902321], [-77.07876, 38.902318], [-77.078796, 38.902313], [-77.078834, 38.902308], [-77.078876, 38.902307], [-77.078914, 38.902309], [-77.07895, 38.902313], [-77.078982, 38.902317], [-77.079019, 38.902326], [-77.079054, 38.902336], [-77.079082, 38.902346], [-77.079105, 38.902354], [-77.079138, 38.902371], [-77.079158, 38.902398], [-77.079165, 38.902427], [-77.079175, 38.902446], [-77.079217, 38.902462], [-77.079254, 38.902467], [-77.079284, 38.902448], [-77.079315, 38.902426], [-77.079363, 38.90241], [-77.079387, 38.902406], [-77.079466, 38.902406], [-77.079492, 38.902405], [-77.079524, 38.902405], [-77.079558, 38.902404], [-77.079588, 38.902398], [-77.07962, 38.902388], [-77.07965, 38.902378], [-77.079684, 38.902368], [-77.07977, 38.90235], [-77.079807, 38.902344], [-77.079844, 38.902337], [-77.079884, 38.902331], [-77.079926, 38.902326], [-77.079966, 38.902323], [-77.080004, 38.902318], [-77.080039, 38.902313], [-77.080075, 38.902308], [-77.080108, 38.902306], [-77.080168, 38.902305], [-77.080196, 38.902309], [-77.080227, 38.902316], [-77.080259, 38.902323], [-77.080292, 38.902329], [-77.080328, 38.902331], [-77.080363, 38.902332], [-77.080404, 38.902331], [-77.08045, 38.902332], [-77.080496, 38.902334], [-77.080537, 38.902336], [-77.080622, 38.902336], [-77.08069, 38.90233], [-77.080758, 38.90233], [-77.080783, 38.902333], [-77.080863, 38.902333], [-77.080892, 38.902332], [-77.080923, 38.90233], [-77.080955, 38.90233], [-77.080986, 38.902329], [-77.08101, 38.902327], [-77.081036, 38.902327], [-77.081084, 38.902325], [-77.081109, 38.902325], [-77.081135, 38.902326], [-77.08116, 38.902325], [-77.081194, 38.902327], [-77.081241, 38.902327], [-77.081274, 38.902326], [-77.081312, 38.902325], [-77.081343, 38.902324], [-77.081365, 38.902323], [-77.081433, 38.902323], [-77.081467, 38.902322], [-77.081501, 38.902319], [-77.081528, 38.902321], [-77.08154, 38.902319], [-77.081617, 38.902319], [-77.081647, 38.902318], [-77.08168, 38.902316], [-77.081758, 38.902316], [-77.081788, 38.902315], [-77.081816, 38.902313], [-77.081878, 38.902313], [-77.081916, 38.902312], [-77.08196, 38.902311], [-77.081988, 38.902311], [-77.082015, 38.90231], [-77.082053, 38.902309], [-77.082083, 38.902309], [-77.082114, 38.902308], [-77.082143, 38.902307], [-77.082169, 38.902307], [-77.082227, 38.902305], [-77.082261, 38.902305], [-77.082297, 38.902304], [-77.082317, 38.902304], [-77.082336, 38.902302], [-77.082407, 38.902302], [-77.082445, 38.902301], [-77.08248, 38.902299], [-77.08253, 38.902299], [-77.082559, 38.902298], [-77.082592, 38.902298], [-77.082645, 38.902288], [-77.082658, 38.902282], [-77.082764, 38.902317], [-77.082778, 38.902322], [-77.0828, 38.90233], [-77.082824, 38.902343], [-77.082857, 38.902361], [-77.08289, 38.902374], [-77.082925, 38.902386], [-77.082963, 38.9024], [-77.082998, 38.902409], [-77.083034, 38.902423], [-77.083069, 38.902437], [-77.083091, 38.902444], [-77.083111, 38.902448], [-77.083149, 38.902456], [-77.083182, 38.902457], [-77.083217, 38.902469], [-77.083249, 38.902479], [-77.083289, 38.902493], [-77.083311, 38.9025], [-77.083349, 38.902512], [-77.083383, 38.902524], [-77.083403, 38.90253], [-77.08344, 38.902541], [-77.083474, 38.902554], [-77.083505, 38.902564], [-77.083541, 38.902575], [-77.083565, 38.902583], [-77.083594, 38.902592], [-77.083629, 38.902605], [-77.083668, 38.902617], [-77.083705, 38.90263], [-77.083747, 38.902644], [-77.083781, 38.902654], [-77.083811, 38.902665], [-77.083842, 38.902675], [-77.083868, 38.902683], [-77.083886, 38.90269], [-77.083912, 38.902699], [-77.083944, 38.902708], [-77.083977, 38.90272], [-77.084, 38.902727], [-77.084019, 38.902733], [-77.084051, 38.902744], [-77.084084, 38.902755], [-77.084113, 38.902765], [-77.084137, 38.902772], [-77.084158, 38.90278], [-77.084178, 38.902786], [-77.084191, 38.902791], [-77.084212, 38.902797], [-77.084242, 38.902808], [-77.084275, 38.902819], [-77.084301, 38.902827], [-77.084324, 38.902834], [-77.084351, 38.902843], [-77.084383, 38.902854], [-77.084411, 38.902863], [-77.084441, 38.902873], [-77.084466, 38.902882], [-77.08451, 38.902896], [-77.084532, 38.902902], [-77.084555, 38.90291], [-77.084577, 38.902918], [-77.084601, 38.902925], [-77.084623, 38.902932], [-77.084659, 38.902945], [-77.084687, 38.902955], [-77.084715, 38.902963], [-77.084737, 38.90297], [-77.084763, 38.90298], [-77.084805, 38.902994], [-77.084822, 38.902999], [-77.084841, 38.903006], [-77.08487, 38.903014], [-77.084894, 38.903023], [-77.084916, 38.90303], [-77.08494, 38.903038], [-77.084974, 38.90305], [-77.084996, 38.903056], [-77.085019, 38.903064], [-77.085047, 38.903074], [-77.085068, 38.903081], [-77.085096, 38.90309], [-77.085125, 38.903099], [-77.08516, 38.903111], [-77.085199, 38.903124], [-77.085236, 38.903136], [-77.085255, 38.903141], [-77.085289, 38.903154], [-77.08532, 38.903163], [-77.085343, 38.903172], [-77.085368, 38.90318], [-77.085396, 38.903189], [-77.085418, 38.903195], [-77.085452, 38.903208], [-77.085491, 38.90322], [-77.085525, 38.903232], [-77.085564, 38.903245], [-77.085587, 38.903251], [-77.085612, 38.903259], [-77.085649, 38.903273], [-77.085687, 38.903285], [-77.085726, 38.903298], [-77.085758, 38.903309], [-77.085792, 38.903319], [-77.085824, 38.903329], [-77.085858, 38.903341], [-77.085874, 38.903346], [-77.085916, 38.903361], [-77.085972, 38.903379], [-77.086004, 38.90339], [-77.086029, 38.903397], [-77.086059, 38.903408], [-77.086094, 38.90342], [-77.086139, 38.903435], [-77.086161, 38.903442], [-77.086201, 38.903455], [-77.086235, 38.903465], [-77.086271, 38.903478], [-77.086306, 38.90349], [-77.086333, 38.903499], [-77.086351, 38.903504], [-77.086385, 38.903515], [-77.086409, 38.903523], [-77.08643, 38.903531], [-77.086459, 38.90354], [-77.086482, 38.903548], [-77.086519, 38.90356], [-77.086542, 38.903568], [-77.086561, 38.903574], [-77.086592, 38.903583], [-77.086625, 38.903594], [-77.086648, 38.903602], [-77.086672, 38.903611], [-77.086691, 38.903616], [-77.086721, 38.903626], [-77.086728, 38.903628], [-77.086752, 38.903636], [-77.086775, 38.903644], [-77.0868, 38.903652], [-77.086839, 38.903665], [-77.086859, 38.903672], [-77.086887, 38.903681], [-77.086908, 38.903688], [-77.086958, 38.903704], [-77.087, 38.903718], [-77.087031, 38.903728], [-77.087053, 38.903736], [-77.087073, 38.903742], [-77.087101, 38.903752], [-77.087157, 38.90377], [-77.087192, 38.903782], [-77.087229, 38.903794], [-77.087268, 38.903807], [-77.087308, 38.90382], [-77.087346, 38.903832], [-77.08738, 38.903844], [-77.087449, 38.903867], [-77.087466, 38.903872], [-77.087478, 38.903876], [-77.08749, 38.903881], [-77.087501, 38.903884], [-77.087529, 38.903893], [-77.087563, 38.903905], [-77.087589, 38.903914], [-77.087624, 38.903925], [-77.087647, 38.903933], [-77.087681, 38.903944], [-77.087718, 38.903957], [-77.087748, 38.903967], [-77.087777, 38.903976], [-77.087815, 38.903988], [-77.087872, 38.904007], [-77.087906, 38.904019], [-77.087946, 38.904032], [-77.087966, 38.904038], [-77.088002, 38.90405], [-77.088041, 38.904064], [-77.088058, 38.904069], [-77.088096, 38.904081], [-77.088134, 38.904094], [-77.088171, 38.904106], [-77.088205, 38.904117], [-77.088241, 38.904129], [-77.088261, 38.904136], [-77.088287, 38.904145], [-77.088308, 38.904151], [-77.088344, 38.904164], [-77.088367, 38.904171], [-77.088383, 38.904176], [-77.088401, 38.904182], [-77.088435, 38.904193], [-77.088469, 38.904205], [-77.088495, 38.904213], [-77.088542, 38.904229], [-77.088582, 38.904243], [-77.088616, 38.904254], [-77.088655, 38.904266], [-77.088674, 38.904272], [-77.088702, 38.904282], [-77.088737, 38.904294], [-77.088775, 38.904306], [-77.08881, 38.904317], [-77.088841, 38.904328], [-77.088867, 38.904337], [-77.088885, 38.904342], [-77.088913, 38.904351], [-77.089015, 38.904385], [-77.089055, 38.904399], [-77.089091, 38.90441], [-77.089125, 38.904421], [-77.089148, 38.904429], [-77.089167, 38.904435], [-77.089207, 38.904449], [-77.089243, 38.90446], [-77.089278, 38.904472], [-77.089319, 38.904486], [-77.089342, 38.904493], [-77.089364, 38.9045], [-77.089406, 38.904514], [-77.089437, 38.904525], [-77.08948, 38.904539], [-77.089499, 38.904545], [-77.089524, 38.904553], [-77.089584, 38.904573], [-77.089609, 38.904582], [-77.089684, 38.904607], [-77.089707, 38.904614], [-77.089728, 38.904621], [-77.089753, 38.904629], [-77.089775, 38.904637], [-77.089798, 38.904645], [-77.089822, 38.904652], [-77.089845, 38.904659], [-77.089863, 38.904666], [-77.089899, 38.904677], [-77.089933, 38.904689], [-77.089966, 38.9047], [-77.089993, 38.904708], [-77.090034, 38.904722], [-77.090066, 38.904733], [-77.090085, 38.904739], [-77.090129, 38.904753], [-77.090147, 38.904759], [-77.090172, 38.904767], [-77.090274, 38.904801], [-77.090314, 38.904815], [-77.090338, 38.904823], [-77.090364, 38.904831], [-77.090394, 38.904841], [-77.090414, 38.904848], [-77.090465, 38.904865], [-77.090483, 38.90487], [-77.090504, 38.904877], [-77.090532, 38.904886], [-77.090554, 38.904894], [-77.090565, 38.904897], [-77.090585, 38.904904], [-77.09061, 38.904913], [-77.090627, 38.904918], [-77.090647, 38.904925], [-77.09067, 38.904932], [-77.090692, 38.904939], [-77.090713, 38.904947], [-77.09074, 38.904956], [-77.090766, 38.904964], [-77.090794, 38.904973], [-77.090826, 38.904984], [-77.090852, 38.904993], [-77.090904, 38.905009], [-77.090937, 38.905021], [-77.090961, 38.905028], [-77.090983, 38.905035], [-77.090994, 38.905039], [-77.090996, 38.90504], [-77.091049, 38.905057], [-77.091091, 38.905071], [-77.091113, 38.905079], [-77.091146, 38.90509], [-77.091164, 38.905095], [-77.091185, 38.905102], [-77.09121, 38.905112], [-77.091244, 38.905122], [-77.09127, 38.90513], [-77.091303, 38.905141], [-77.091329, 38.90515], [-77.091354, 38.905158], [-77.091377, 38.905166], [-77.09141, 38.905177], [-77.091433, 38.905184], [-77.091464, 38.905195], [-77.091494, 38.905204], [-77.091542, 38.90522], [-77.091559, 38.905226], [-77.091591, 38.905237], [-77.091624, 38.905247], [-77.091661, 38.90526], [-77.091694, 38.905271], [-77.091736, 38.905284], [-77.091772, 38.905296], [-77.091807, 38.905308], [-77.091841, 38.905319], [-77.091878, 38.905332], [-77.091918, 38.905344], [-77.091942, 38.905353], [-77.091978, 38.905364], [-77.092062, 38.905392], [-77.092091, 38.905402], [-77.092114, 38.905409], [-77.092153, 38.905423], [-77.092172, 38.905429], [-77.092193, 38.905436], [-77.092216, 38.905443], [-77.092238, 38.90545], [-77.092278, 38.905464], [-77.0923, 38.905471], [-77.092319, 38.905477], [-77.092341, 38.905484], [-77.092383, 38.905498], [-77.092403, 38.905505], [-77.092425, 38.905512], [-77.092443, 38.905519], [-77.092464, 38.905526], [-77.092488, 38.905533], [-77.092511, 38.905541], [-77.092531, 38.905547], [-77.092555, 38.905555], [-77.092578, 38.905563], [-77.0926, 38.905571], [-77.092645, 38.905586], [-77.092667, 38.905592], [-77.092691, 38.9056], [-77.092708, 38.905606], [-77.092736, 38.905615], [-77.092758, 38.905623], [-77.092781, 38.90563], [-77.092806, 38.905639], [-77.092831, 38.905647], [-77.092853, 38.905654], [-77.092876, 38.905662], [-77.092893, 38.905668], [-77.092925, 38.905678], [-77.092947, 38.905686], [-77.092971, 38.905693], [-77.092997, 38.905702], [-77.093042, 38.905717], [-77.093064, 38.905724], [-77.093089, 38.905733], [-77.093106, 38.905738], [-77.09313, 38.905746], [-77.093156, 38.905755], [-77.093179, 38.905762], [-77.093218, 38.905775], [-77.093251, 38.905796], [-77.093314, 38.905819], [-77.093344, 38.905837], [-77.093365, 38.905847], [-77.093383, 38.905857], [-77.09342, 38.905876], [-77.093451, 38.905893], [-77.093479, 38.905907], [-77.093512, 38.905927], [-77.093544, 38.905943], [-77.093582, 38.905975], [-77.093584, 38.905978], [-77.093586, 38.905976], [-77.093597, 38.905986], [-77.093625, 38.906011], [-77.093673, 38.90605], [-77.093701, 38.90607], [-77.093717, 38.906082], [-77.093738, 38.906097], [-77.093771, 38.90612], [-77.093807, 38.906146], [-77.093828, 38.90616], [-77.09385, 38.906176], [-77.093867, 38.906188], [-77.093887, 38.9062], [-77.093906, 38.906214], [-77.093929, 38.906228], [-77.093949, 38.906241], [-77.093968, 38.906253], [-77.093993, 38.906266], [-77.094013, 38.906279], [-77.094034, 38.90629], [-77.094052, 38.906301], [-77.094072, 38.906315], [-77.094092, 38.906328], [-77.094126, 38.906354], [-77.094142, 38.906365], [-77.094158, 38.906377], [-77.094193, 38.906402], [-77.094213, 38.906416], [-77.094229, 38.906428], [-77.094249, 38.906442], [-77.094264, 38.906453], [-77.094288, 38.90647], [-77.094306, 38.906484], [-77.094327, 38.906498], [-77.094345, 38.906511], [-77.094366, 38.906526], [-77.094385, 38.90654], [-77.094405, 38.906554], [-77.094423, 38.906567], [-77.094445, 38.906583], [-77.094464, 38.906597], [-77.094484, 38.906611], [-77.094505, 38.906626], [-77.094523, 38.906639], [-77.094553, 38.906661], [-77.094592, 38.906689], [-77.094624, 38.906712], [-77.094648, 38.906729], [-77.094674, 38.906748], [-77.094722, 38.906782], [-77.094745, 38.906799], [-77.094773, 38.906819], [-77.094805, 38.906842], [-77.094832, 38.906861], [-77.094858, 38.906881], [-77.094886, 38.9069], [-77.094952, 38.906948], [-77.09498, 38.906968], [-77.095013, 38.906992], [-77.095031, 38.907005], [-77.095075, 38.907037], [-77.095104, 38.907058], [-77.095132, 38.907078], [-77.095158, 38.907097], [-77.095173, 38.907109], [-77.095198, 38.907126], [-77.095221, 38.907143], [-77.095241, 38.907158], [-77.09526, 38.907171], [-77.095274, 38.907182], [-77.095299, 38.907199], [-77.095322, 38.907216], [-77.095347, 38.907233], [-77.095367, 38.907248], [-77.095392, 38.907266], [-77.095414, 38.907281], [-77.095432, 38.907294], [-77.095449, 38.907308], [-77.095466, 38.90732], [-77.095493, 38.907338], [-77.095521, 38.907358], [-77.095544, 38.907375], [-77.095567, 38.907393], [-77.095589, 38.90741], [-77.095623, 38.907432], [-77.095651, 38.907454], [-77.095678, 38.907471], [-77.095696, 38.907486], [-77.095719, 38.907503], [-77.095747, 38.907523], [-77.095769, 38.907539], [-77.095798, 38.907559], [-77.095822, 38.907576], [-77.095847, 38.907593], [-77.095868, 38.907609], [-77.095888, 38.907624], [-77.095914, 38.907642], [-77.095958, 38.907674], [-77.095982, 38.907691], [-77.096, 38.907705], [-77.096017, 38.907717], [-77.096039, 38.907732], [-77.096062, 38.907749], [-77.09609, 38.90777], [-77.096123, 38.907793], [-77.096147, 38.90781], [-77.096173, 38.907829], [-77.096205, 38.907852], [-77.096235, 38.907874], [-77.096291, 38.907914], [-77.09631, 38.907928], [-77.096332, 38.907944], [-77.096355, 38.90796], [-77.096377, 38.907977], [-77.096399, 38.907992], [-77.096416, 38.908004], [-77.096434, 38.908018], [-77.096455, 38.908032], [-77.096478, 38.908049], [-77.096496, 38.908063], [-77.096522, 38.908081], [-77.096545, 38.908097], [-77.096567, 38.908113], [-77.096603, 38.908139], [-77.096622, 38.908153], [-77.096646, 38.90817], [-77.096664, 38.908184], [-77.096685, 38.908198], [-77.096709, 38.908217], [-77.096731, 38.908231], [-77.096751, 38.908246], [-77.096775, 38.908263], [-77.096796, 38.908278], [-77.096814, 38.908291], [-77.096833, 38.908305], [-77.096856, 38.908322], [-77.096876, 38.908336], [-77.096901, 38.908354], [-77.096918, 38.908367], [-77.096939, 38.908381], [-77.096961, 38.908397], [-77.096972, 38.908406], [-77.096993, 38.90842], [-77.097008, 38.908431], [-77.097029, 38.908446], [-77.097047, 38.908461], [-77.097063, 38.908471], [-77.097087, 38.908488], [-77.097132, 38.908521], [-77.097164, 38.908544], [-77.097191, 38.908564], [-77.097205, 38.908575], [-77.097225, 38.908589], [-77.097252, 38.908608], [-77.097276, 38.908625], [-77.097301, 38.908644], [-77.097343, 38.908673], [-77.097357, 38.908685], [-77.097378, 38.908699], [-77.097398, 38.908713], [-77.097413, 38.908724], [-77.097451, 38.908752], [-77.097472, 38.908767], [-77.09749, 38.90878], [-77.097507, 38.908792], [-77.097526, 38.908806], [-77.097546, 38.90882], [-77.097559, 38.908831], [-77.097581, 38.908845], [-77.097599, 38.908859], [-77.097619, 38.908873], [-77.097638, 38.908887], [-77.09766, 38.908902], [-77.097682, 38.908918], [-77.097702, 38.908933], [-77.097723, 38.908949], [-77.097748, 38.908966], [-77.097771, 38.908983], [-77.097795, 38.909], [-77.097824, 38.909021], [-77.097845, 38.909037], [-77.097869, 38.909054], [-77.097894, 38.909072], [-77.097914, 38.909087], [-77.097939, 38.909104], [-77.097962, 38.909121], [-77.097986, 38.909138], [-77.098004, 38.909152], [-77.098027, 38.909169], [-77.098052, 38.909186], [-77.098076, 38.909203], [-77.0981, 38.909221], [-77.098142, 38.909251], [-77.098164, 38.909267], [-77.098188, 38.909284], [-77.098211, 38.909301], [-77.098237, 38.90932], [-77.098257, 38.909335], [-77.09828, 38.909351], [-77.098305, 38.909369], [-77.098327, 38.909385], [-77.098351, 38.909402], [-77.098374, 38.909419], [-77.098398, 38.909436], [-77.098421, 38.909453], [-77.098445, 38.90947], [-77.098464, 38.909484], [-77.098482, 38.909497], [-77.098507, 38.909514], [-77.09853, 38.909531], [-77.098554, 38.909548], [-77.09858, 38.909567], [-77.098603, 38.909584], [-77.098659, 38.909624], [-77.098682, 38.909641], [-77.098732, 38.909677], [-77.098759, 38.909697], [-77.098786, 38.909715], [-77.098811, 38.909734], [-77.098836, 38.909752], [-77.098859, 38.909768], [-77.098887, 38.909788], [-77.098941, 38.909828], [-77.098965, 38.909845], [-77.098978, 38.909854], [-77.098994, 38.909866], [-77.099011, 38.909878], [-77.099028, 38.909891], [-77.099045, 38.909903], [-77.099065, 38.909918], [-77.099083, 38.90993], [-77.099125, 38.90996], [-77.099163, 38.909988], [-77.099185, 38.910004], [-77.099204, 38.910018], [-77.099242, 38.910044], [-77.099264, 38.91006], [-77.099283, 38.910075], [-77.099304, 38.910089], [-77.099323, 38.910103], [-77.099345, 38.91012], [-77.099367, 38.910134], [-77.099393, 38.910154], [-77.099413, 38.910168], [-77.099432, 38.910181], [-77.099459, 38.910201], [-77.099483, 38.91022], [-77.099511, 38.910238], [-77.099599, 38.910302], [-77.099619, 38.910317], [-77.099641, 38.910332], [-77.099663, 38.910348], [-77.099682, 38.910362], [-77.099707, 38.91038], [-77.099736, 38.910401], [-77.099764, 38.910421], [-77.099783, 38.910435], [-77.099819, 38.910461], [-77.099833, 38.910472], [-77.099861, 38.910491], [-77.099888, 38.910511], [-77.099911, 38.910528], [-77.09993, 38.910541], [-77.099958, 38.910562], [-77.099974, 38.910573], [-77.099992, 38.910586], [-77.100002, 38.910593], [-77.100017, 38.910604], [-77.10005, 38.91063], [-77.100066, 38.91064], [-77.100079, 38.910649], [-77.100102, 38.910666], [-77.100125, 38.910682], [-77.100154, 38.910703], [-77.100201, 38.910738], [-77.100204, 38.910737], [-77.100218, 38.910747], [-77.100254, 38.910773], [-77.100268, 38.910784], [-77.100286, 38.910797], [-77.100312, 38.910815], [-77.100319, 38.91082], [-77.100341, 38.910836], [-77.100362, 38.910851], [-77.100384, 38.910867], [-77.100404, 38.910882], [-77.100462, 38.910925], [-77.100464, 38.910925], [-77.10049, 38.910944], [-77.100512, 38.91096], [-77.100529, 38.910971], [-77.100559, 38.910993], [-77.100588, 38.911014], [-77.10059, 38.911015], [-77.100615, 38.911033], [-77.100637, 38.911049], [-77.100643, 38.911053], [-77.100714, 38.91111], [-77.100715, 38.911121], [-77.100725, 38.911129], [-77.100749, 38.911146], [-77.100777, 38.911161], [-77.100813, 38.91117], [-77.100838, 38.911188], [-77.100861, 38.911217], [-77.100899, 38.911233], [-77.100924, 38.911241], [-77.100949, 38.911252], [-77.100973, 38.911265], [-77.100995, 38.911279], [-77.101017, 38.911291], [-77.101039, 38.911304], [-77.10106, 38.911316], [-77.101092, 38.911336], [-77.101109, 38.911356], [-77.101107, 38.911376], [-77.101143, 38.91138], [-77.101165, 38.911393], [-77.101189, 38.911409], [-77.101216, 38.911407], [-77.10125, 38.911424], [-77.101275, 38.911442], [-77.101308, 38.911452], [-77.101336, 38.911463], [-77.101346, 38.91149], [-77.101365, 38.911514], [-77.101386, 38.911538], [-77.101409, 38.911548], [-77.101434, 38.911557], [-77.101446, 38.911573], [-77.101462, 38.911589], [-77.101477, 38.911575], [-77.101498, 38.911562], [-77.101525, 38.911557], [-77.101555, 38.91157], [-77.101576, 38.911583], [-77.101596, 38.911597], [-77.101614, 38.911611], [-77.101632, 38.911626], [-77.101659, 38.911648], [-77.10168, 38.911663], [-77.101714, 38.911687], [-77.101732, 38.9117], [-77.101748, 38.911713], [-77.101768, 38.911734], [-77.101776, 38.911755], [-77.101789, 38.911772], [-77.101818, 38.911775], [-77.101848, 38.911793], [-77.101881, 38.911813], [-77.101899, 38.911826], [-77.10192, 38.911843], [-77.101941, 38.911856], [-77.101965, 38.911878], [-77.101984, 38.911902], [-77.102006, 38.911914], [-77.102034, 38.911924], [-77.102052, 38.91194], [-77.10207, 38.911957], [-77.102087, 38.911973], [-77.102102, 38.912002], [-77.102114, 38.912029], [-77.102144, 38.912044], [-77.102159, 38.91206], [-77.102188, 38.912063], [-77.102208, 38.912085], [-77.102228, 38.912108], [-77.102247, 38.912132], [-77.102269, 38.912157], [-77.102292, 38.912181], [-77.102313, 38.912203], [-77.102333, 38.912225], [-77.102351, 38.912248], [-77.102369, 38.91227], [-77.102385, 38.912292], [-77.102399, 38.912312], [-77.102413, 38.91233], [-77.102431, 38.912343], [-77.102467, 38.912351], [-77.102491, 38.912351], [-77.102519, 38.912355], [-77.102545, 38.912362], [-77.102569, 38.912374], [-77.102589, 38.91239], [-77.102611, 38.912411], [-77.102634, 38.912434], [-77.102654, 38.912455], [-77.102672, 38.912476], [-77.102686, 38.912494], [-77.102693, 38.912513], [-77.102694, 38.912531], [-77.102691, 38.912563], [-77.102718, 38.912586], [-77.102757, 38.912607], [-77.102781, 38.912615], [-77.102805, 38.912624], [-77.102835, 38.912631], [-77.102867, 38.91264], [-77.102893, 38.912649], [-77.10292, 38.912661], [-77.10295, 38.912676], [-77.102981, 38.912697], [-77.103007, 38.912716], [-77.103032, 38.912738], [-77.103055, 38.91276], [-77.103075, 38.912787], [-77.103091, 38.912813], [-77.103106, 38.91284], [-77.103125, 38.912869], [-77.103147, 38.912898], [-77.103169, 38.912925], [-77.103189, 38.912954], [-77.103209, 38.912982], [-77.103226, 38.913009], [-77.103245, 38.913038], [-77.103265, 38.913066], [-77.103284, 38.913093], [-77.103304, 38.913121], [-77.103322, 38.91315], [-77.103342, 38.913177], [-77.103362, 38.913205], [-77.103383, 38.913235], [-77.1034, 38.913261], [-77.103417, 38.913289], [-77.10343, 38.913316], [-77.103434, 38.91333], [-77.103438, 38.91334], [-77.103441, 38.913364], [-77.103442, 38.913392], [-77.103449, 38.913418], [-77.103461, 38.91344], [-77.103472, 38.913463], [-77.103476, 38.913489], [-77.103476, 38.913538], [-77.103475, 38.913569], [-77.103473, 38.9136], [-77.103471, 38.913629], [-77.103469, 38.913661], [-77.103469, 38.913691], [-77.103473, 38.913786], [-77.103476, 38.913813], [-77.103482, 38.913832], [-77.103489, 38.913851], [-77.103499, 38.913885], [-77.103504, 38.91392], [-77.103505, 38.913949], [-77.103506, 38.913968], [-77.103506, 38.914004], [-77.103505, 38.914026], [-77.103503, 38.914045], [-77.103503, 38.914064], [-77.1035, 38.914084], [-77.103499, 38.914108], [-77.103499, 38.914129], [-77.103496, 38.914148], [-77.103493, 38.914166], [-77.103492, 38.914187], [-77.103494, 38.914209], [-77.103496, 38.914229], [-77.103499, 38.914249], [-77.103503, 38.914269], [-77.103507, 38.914292], [-77.10351, 38.914312], [-77.103514, 38.914331], [-77.103522, 38.914351], [-77.103531, 38.914373], [-77.10354, 38.914393], [-77.103549, 38.914412], [-77.103563, 38.914452], [-77.103582, 38.91449], [-77.10359, 38.914507], [-77.103595, 38.914526], [-77.103598, 38.914547], [-77.103599, 38.914566], [-77.103603, 38.914601], [-77.103607, 38.91462], [-77.103612, 38.914642], [-77.103614, 38.914661], [-77.103616, 38.914681], [-77.103619, 38.914701], [-77.103624, 38.914724], [-77.103632, 38.914745], [-77.10364, 38.914765], [-77.103649, 38.914786], [-77.103656, 38.914808], [-77.103665, 38.914829], [-77.103677, 38.914849], [-77.103688, 38.91487], [-77.103697, 38.914893], [-77.103706, 38.914915], [-77.103718, 38.914935], [-77.10373, 38.914954], [-77.103741, 38.914972], [-77.10375, 38.914994], [-77.103757, 38.915014], [-77.103766, 38.915035], [-77.103776, 38.915056], [-77.103787, 38.915079], [-77.103796, 38.915099], [-77.103806, 38.915118], [-77.103819, 38.915138], [-77.103833, 38.915158], [-77.103847, 38.915179], [-77.103861, 38.915198], [-77.103874, 38.915216], [-77.10389, 38.915232], [-77.103906, 38.915252], [-77.10392, 38.915272], [-77.103939, 38.91531], [-77.103973, 38.915374], [-77.103985, 38.91541], [-77.10399, 38.915432], [-77.103993, 38.915452], [-77.103997, 38.915471], [-77.103999, 38.91549], [-77.104002, 38.91551], [-77.104003, 38.91553], [-77.104005, 38.91555], [-77.104008, 38.915569], [-77.104009, 38.915589], [-77.104012, 38.915611], [-77.104018, 38.915631], [-77.104023, 38.91565], [-77.104029, 38.915668], [-77.104037, 38.915685], [-77.104046, 38.915704], [-77.104062, 38.915738], [-77.104073, 38.915773], [-77.10408, 38.915794], [-77.104088, 38.915813], [-77.104096, 38.915833], [-77.104105, 38.915852], [-77.104113, 38.915873], [-77.10412, 38.915893], [-77.104127, 38.915912], [-77.104136, 38.915931], [-77.104146, 38.91595], [-77.104159, 38.915969], [-77.104173, 38.915987], [-77.104187, 38.916003], [-77.104198, 38.91602], [-77.104209, 38.916039], [-77.104218, 38.916057], [-77.104235, 38.916086], [-77.104244, 38.91611], [-77.10425, 38.916144], [-77.104263, 38.916161], [-77.10428, 38.916177], [-77.104299, 38.916191], [-77.104316, 38.916205], [-77.104332, 38.91622], [-77.104346, 38.916236], [-77.104359, 38.916251], [-77.104373, 38.916268], [-77.104384, 38.916284], [-77.104397, 38.916301], [-77.104411, 38.916318], [-77.104427, 38.916332], [-77.104444, 38.916347], [-77.104461, 38.916363], [-77.104474, 38.916379], [-77.10449, 38.916396], [-77.104508, 38.916413], [-77.104528, 38.916431], [-77.104547, 38.916447], [-77.104565, 38.916463], [-77.10458, 38.916478], [-77.104592, 38.916495], [-77.104621, 38.916525], [-77.104653, 38.916555], [-77.104675, 38.916584], [-77.10469, 38.916602], [-77.104703, 38.916626], [-77.104722, 38.91665], [-77.104745, 38.916675], [-77.10477, 38.9167], [-77.104792, 38.916727], [-77.104816, 38.916751], [-77.104828, 38.916774], [-77.104846, 38.916799], [-77.104888, 38.916857], [-77.104911, 38.916885], [-77.104932, 38.916915], [-77.104972, 38.916963], [-77.104998, 38.91699], [-77.105013, 38.917007], [-77.105026, 38.917023], [-77.105045, 38.917052], [-77.105062, 38.917079], [-77.105075, 38.917095], [-77.105095, 38.917118], [-77.105103, 38.917144], [-77.105101, 38.917171], [-77.105115, 38.917196], [-77.105146, 38.917208], [-77.105168, 38.917232], [-77.10517, 38.917256], [-77.105159, 38.917279], [-77.105146, 38.917298], [-77.105163, 38.917313], [-77.105169, 38.917339], [-77.105194, 38.917354], [-77.105222, 38.917355], [-77.105243, 38.917344], [-77.105268, 38.917346], [-77.105296, 38.917349], [-77.105316, 38.917366], [-77.105337, 38.91738], [-77.105352, 38.917397], [-77.105355, 38.917421], [-77.105359, 38.917455], [-77.105373, 38.917471], [-77.105395, 38.917461], [-77.105419, 38.917461], [-77.105441, 38.917472], [-77.105448, 38.917492], [-77.105452, 38.917514], [-77.10547, 38.917534], [-77.105493, 38.917553], [-77.105512, 38.917571], [-77.105519, 38.917592], [-77.105531, 38.917613], [-77.105556, 38.917627], [-77.105589, 38.917638], [-77.105593, 38.917664], [-77.105588, 38.917685], [-77.105609, 38.917703], [-77.1056, 38.917722], [-77.105598, 38.91774], [-77.105598, 38.917759], [-77.105615, 38.917773], [-77.10562, 38.917806], [-77.105626, 38.917825], [-77.105622, 38.917843], [-77.105624, 38.917863], [-77.105634, 38.917885], [-77.105638, 38.917904], [-77.10566, 38.917918], [-77.105688, 38.917926], [-77.105672, 38.917947], [-77.105685, 38.917964], [-77.105671, 38.917987], [-77.105675, 38.918005], [-77.105711, 38.918014], [-77.105714, 38.918036], [-77.105706, 38.918053], [-77.105718, 38.918072], [-77.105732, 38.918095], [-77.105746, 38.91812], [-77.105728, 38.918142], [-77.105739, 38.918158], [-77.105726, 38.918178], [-77.105725, 38.918202], [-77.105738, 38.918225], [-77.105747, 38.91825], [-77.10573, 38.918262], [-77.10573, 38.918285], [-77.105736, 38.91831], [-77.105754, 38.918325], [-77.10577, 38.91831], [-77.105786, 38.918324], [-77.105815, 38.918337], [-77.105825, 38.918354], [-77.105836, 38.918372], [-77.105839, 38.918396], [-77.10584, 38.918417], [-77.105841, 38.918439], [-77.10586, 38.918456], [-77.105866, 38.91848], [-77.105872, 38.9185], [-77.10588, 38.918521], [-77.105903, 38.918533], [-77.105928, 38.91854], [-77.105945, 38.918553], [-77.105943, 38.918573], [-77.105946, 38.918592], [-77.105963, 38.91861], [-77.105988, 38.918613], [-77.106011, 38.918611], [-77.106025, 38.91863], [-77.106041, 38.918648], [-77.106045, 38.918672], [-77.106063, 38.918687], [-77.106079, 38.918707], [-77.106101, 38.91873], [-77.106123, 38.918755], [-77.106142, 38.918788], [-77.106152, 38.918807], [-77.106162, 38.918824], [-77.106169, 38.918841], [-77.106177, 38.918859], [-77.106191, 38.918894], [-77.106196, 38.918912], [-77.106201, 38.918931], [-77.10622, 38.918963], [-77.106227, 38.918983], [-77.106234, 38.919015], [-77.10622, 38.919042], [-77.106212, 38.919072], [-77.106229, 38.919094], [-77.106247, 38.919109], [-77.106265, 38.919127], [-77.106277, 38.919148], [-77.106268, 38.919172], [-77.106277, 38.919193], [-77.106302, 38.919195], [-77.106333, 38.919212], [-77.106342, 38.919236], [-77.106343, 38.919266], [-77.106348, 38.919284], [-77.10637, 38.919301], [-77.106399, 38.919312], [-77.106421, 38.919326], [-77.106445, 38.919333], [-77.106468, 38.919355], [-77.106477, 38.919377], [-77.106471, 38.919399], [-77.10648, 38.919426], [-77.106499, 38.91945], [-77.106521, 38.919472], [-77.106545, 38.919485], [-77.106573, 38.919497], [-77.106579, 38.919519], [-77.106574, 38.919545], [-77.106586, 38.919562], [-77.10661, 38.919548], [-77.106637, 38.919553], [-77.106661, 38.919564], [-77.10667, 38.919592], [-77.106678, 38.919609], [-77.106694, 38.919641], [-77.106708, 38.919668], [-77.106729, 38.919695], [-77.106751, 38.919723], [-77.106774, 38.919748], [-77.106798, 38.919773], [-77.106821, 38.919799], [-77.106837, 38.919821], [-77.106853, 38.919847], [-77.10687, 38.91987], [-77.10688, 38.919897], [-77.106874, 38.919916], [-77.106828, 38.919946], [-77.106811, 38.919965], [-77.106802, 38.919989], [-77.106796, 38.920013], [-77.106803, 38.920034], [-77.10683, 38.920041], [-77.106854, 38.920039], [-77.106875, 38.920024], [-77.106897, 38.92001], [-77.10692, 38.919997], [-77.106951, 38.919984], [-77.106977, 38.919991], [-77.106993, 38.92001], [-77.107003, 38.920038], [-77.107012, 38.920065], [-77.107021, 38.920091], [-77.107035, 38.920114], [-77.107046, 38.920132], [-77.107063, 38.920154], [-77.107088, 38.920171], [-77.107091, 38.920173], [-77.107113, 38.920183], [-77.107132, 38.920194], [-77.107165, 38.920183], [-77.107222, 38.920235], [-77.10726, 38.920265], [-77.107247, 38.920284], [-77.107263, 38.920305], [-77.107286, 38.920319], [-77.107312, 38.920336], [-77.107341, 38.920349], [-77.107368, 38.920363], [-77.107393, 38.92038], [-77.10742, 38.920396], [-77.107449, 38.920419], [-77.107478, 38.920441], [-77.1075, 38.920467], [-77.107519, 38.920496], [-77.107537, 38.920523], [-77.107555, 38.920551], [-77.107567, 38.92058], [-77.107582, 38.92061], [-77.107605, 38.920641], [-77.107628, 38.920669], [-77.107648, 38.920695], [-77.107656, 38.920725], [-77.10767, 38.920747], [-77.107681, 38.920766], [-77.107671, 38.920789], [-77.107694, 38.920791], [-77.107719, 38.920782], [-77.107738, 38.920799], [-77.107741, 38.920824], [-77.107758, 38.920843], [-77.10778, 38.920864], [-77.107804, 38.920874], [-77.107829, 38.920882], [-77.107842, 38.9209], [-77.107872, 38.920907], [-77.107899, 38.92092], [-77.107921, 38.920933], [-77.107941, 38.920949], [-77.107973, 38.920957], [-77.107995, 38.920966], [-77.108017, 38.920986], [-77.108048, 38.921007], [-77.108062, 38.921022], [-77.108085, 38.921047], [-77.108114, 38.921067], [-77.108136, 38.921087], [-77.108148, 38.921109], [-77.108172, 38.921126], [-77.108188, 38.921148], [-77.108201, 38.921178], [-77.108207, 38.921211], [-77.10821, 38.921241], [-77.108206, 38.921263], [-77.10821, 38.921285], [-77.108237, 38.921287], [-77.108255, 38.9213], [-77.10828, 38.921325], [-77.108293, 38.921344], [-77.108325, 38.921347], [-77.108355, 38.921357], [-77.108375, 38.921377], [-77.108389, 38.921396], [-77.108411, 38.921417], [-77.10843, 38.921438], [-77.10843, 38.921466], [-77.108445, 38.921486], [-77.108461, 38.921498], [-77.108478, 38.921526], [-77.108492, 38.921546], [-77.108487, 38.921568], [-77.108489, 38.921589], [-77.108515, 38.921602], [-77.108531, 38.921625], [-77.108515, 38.921644], [-77.108533, 38.921656], [-77.108555, 38.921649], [-77.108573, 38.921634], [-77.108594, 38.921618], [-77.108617, 38.921636], [-77.108634, 38.921654], [-77.108654, 38.921671], [-77.108671, 38.921687], [-77.108683, 38.921709], [-77.108705, 38.921725], [-77.108729, 38.921728], [-77.108757, 38.921732], [-77.10876, 38.921752], [-77.108757, 38.921775], [-77.108748, 38.921798], [-77.108748, 38.921821], [-77.108769, 38.921836], [-77.108792, 38.921842], [-77.108819, 38.921831], [-77.10885, 38.921836], [-77.108847, 38.921856], [-77.108848, 38.921879], [-77.108878, 38.921878], [-77.108904, 38.921867], [-77.108929, 38.921873], [-77.108957, 38.921864], [-77.108976, 38.921848], [-77.109001, 38.921864], [-77.109008, 38.921886], [-77.109024, 38.921901], [-77.109046, 38.921913], [-77.10907, 38.921922], [-77.109095, 38.921933], [-77.109116, 38.921948], [-77.109131, 38.921966], [-77.10914, 38.921989], [-77.109143, 38.922009], [-77.10916, 38.922024], [-77.10918, 38.922047], [-77.109194, 38.922062], [-77.109216, 38.922076], [-77.10924, 38.922083], [-77.109262, 38.922093], [-77.109286, 38.922105], [-77.109321, 38.922117], [-77.109346, 38.922137], [-77.109383, 38.922174], [-77.10939, 38.922197], [-77.10938, 38.922216], [-77.109369, 38.922234], [-77.109369, 38.922255], [-77.10939, 38.922247], [-77.109404, 38.922231], [-77.109428, 38.922236], [-77.109456, 38.922248], [-77.109491, 38.922257], [-77.109517, 38.922272], [-77.109547, 38.922293], [-77.10958, 38.922312], [-77.109614, 38.922331], [-77.109655, 38.922344], [-77.10969, 38.922364], [-77.109714, 38.922389], [-77.109721, 38.922411], [-77.109737, 38.922425], [-77.109775, 38.922434], [-77.109812, 38.922453], [-77.109844, 38.922466], [-77.10987, 38.922486], [-77.109891, 38.922514], [-77.109899, 38.922531], [-77.109907, 38.922563], [-77.109913, 38.922592], [-77.109924, 38.92262], [-77.109941, 38.92264], [-77.109968, 38.922653], [-77.109998, 38.922666], [-77.11002, 38.922682], [-77.110023, 38.922706], [-77.110039, 38.922722], [-77.110067, 38.922721], [-77.110098, 38.922724], [-77.110124, 38.92274], [-77.110136, 38.922763], [-77.110157, 38.922774], [-77.110188, 38.922786], [-77.11021, 38.922803], [-77.110234, 38.922816], [-77.110257, 38.922813], [-77.110283, 38.922821], [-77.110301, 38.922838], [-77.110318, 38.922862], [-77.110342, 38.922876], [-77.110359, 38.922901], [-77.110374, 38.922925], [-77.110386, 38.922943], [-77.110388, 38.922964], [-77.110407, 38.922981], [-77.110431, 38.922969], [-77.110456, 38.922987], [-77.11048, 38.923001], [-77.110511, 38.923012], [-77.110544, 38.923023], [-77.11057, 38.923039], [-77.110585, 38.923072], [-77.110605, 38.923104], [-77.110631, 38.923134], [-77.110646, 38.923161], [-77.110648, 38.923182], [-77.110676, 38.923196], [-77.110694, 38.923217], [-77.110717, 38.923226], [-77.110746, 38.923242], [-77.110778, 38.923259], [-77.110807, 38.923278], [-77.110837, 38.923296], [-77.110863, 38.92332], [-77.110885, 38.923348], [-77.110904, 38.923374], [-77.110906, 38.923401], [-77.110896, 38.923423], [-77.110911, 38.92344], [-77.110942, 38.923434], [-77.110967, 38.923434], [-77.110975, 38.923455], [-77.111001, 38.923468], [-77.111031, 38.923477], [-77.111064, 38.923486], [-77.11109, 38.923491], [-77.111113, 38.923501], [-77.111136, 38.923509], [-77.111165, 38.923518], [-77.111177, 38.923543], [-77.111186, 38.923564], [-77.111216, 38.923575], [-77.111227, 38.923592], [-77.111254, 38.923593], [-77.111275, 38.923607], [-77.11127, 38.923632], [-77.11128, 38.923657], [-77.111298, 38.923677], [-77.111322, 38.923674], [-77.111346, 38.923688], [-77.11136, 38.923715], [-77.111383, 38.923746], [-77.111395, 38.923763], [-77.111404, 38.923794], [-77.111407, 38.92382], [-77.111419, 38.923846], [-77.111452, 38.923843], [-77.111475, 38.923856], [-77.1115, 38.923861], [-77.111527, 38.92387], [-77.111555, 38.923879], [-77.111557, 38.923904], [-77.111588, 38.923912], [-77.111614, 38.923927], [-77.111633, 38.923943], [-77.111662, 38.923948], [-77.111681, 38.92396], [-77.111694, 38.92398], [-77.111721, 38.923992], [-77.111746, 38.924003], [-77.111774, 38.924012], [-77.1118, 38.924022], [-77.111827, 38.924032], [-77.111837, 38.92405], [-77.111829, 38.924073], [-77.111838, 38.924103], [-77.111866, 38.924109], [-77.111897, 38.924101], [-77.111918, 38.924119], [-77.111947, 38.924125], [-77.111964, 38.924139], [-77.11198, 38.92416], [-77.111976, 38.924193], [-77.111973, 38.924211], [-77.111989, 38.924224], [-77.11201, 38.924232], [-77.112013, 38.924252], [-77.112021, 38.924271], [-77.112054, 38.924266], [-77.112089, 38.924265], [-77.112094, 38.924284], [-77.112113, 38.924296], [-77.112137, 38.924295], [-77.112169, 38.924299], [-77.112176, 38.924322], [-77.112183, 38.924346], [-77.112196, 38.924363], [-77.112222, 38.924377], [-77.112233, 38.924407], [-77.112254, 38.92443], [-77.112275, 38.924448], [-77.112297, 38.924459], [-77.112325, 38.92445], [-77.11236, 38.924445], [-77.112398, 38.924452], [-77.112426, 38.924467], [-77.112434, 38.924491], [-77.112439, 38.924514], [-77.112463, 38.924525], [-77.112484, 38.924541], [-77.11251, 38.924553], [-77.112527, 38.924577], [-77.11254, 38.924599], [-77.112565, 38.924615], [-77.112588, 38.924635], [-77.112614, 38.924651], [-77.11264, 38.924655], [-77.112661, 38.924665], [-77.11268, 38.924696], [-77.112704, 38.924728], [-77.112717, 38.924745], [-77.112729, 38.924761], [-77.112753, 38.924799], [-77.112769, 38.924816], [-77.112785, 38.924832], [-77.1128, 38.92486], [-77.112798, 38.924881], [-77.112772, 38.924885], [-77.112747, 38.924889], [-77.112742, 38.924911], [-77.112751, 38.924928], [-77.112758, 38.924947], [-77.112786, 38.92495], [-77.112808, 38.924958], [-77.112831, 38.924969], [-77.112848, 38.924993], [-77.112861, 38.925015], [-77.112842, 38.925033], [-77.112856, 38.925053], [-77.112881, 38.925053], [-77.112896, 38.925076], [-77.112911, 38.925093], [-77.112922, 38.92507], [-77.11295, 38.925067], [-77.112969, 38.92509], [-77.112993, 38.925119], [-77.113016, 38.925134], [-77.113034, 38.925155], [-77.11303, 38.925178], [-77.113032, 38.9252], [-77.113065, 38.925204], [-77.113087, 38.925216], [-77.113094, 38.925235], [-77.1131, 38.925249], [-77.113102, 38.925248], [-77.113106, 38.925257], [-77.113122, 38.925273], [-77.113149, 38.925262], [-77.113166, 38.925281], [-77.113176, 38.925297], [-77.113189, 38.925321], [-77.113218, 38.925324], [-77.113233, 38.925338], [-77.113248, 38.925358], [-77.11327, 38.925368], [-77.113295, 38.925373], [-77.11333, 38.925371], [-77.113353, 38.925376], [-77.11337, 38.925392], [-77.113382, 38.925411], [-77.113408, 38.925426], [-77.113408, 38.92548], [-77.113427, 38.925495], [-77.113428, 38.925515], [-77.113436, 38.925537], [-77.11345, 38.925562], [-77.113472, 38.925584], [-77.113489, 38.925606], [-77.113508, 38.925627], [-77.11352, 38.925645], [-77.113532, 38.925664], [-77.113548, 38.925679], [-77.113554, 38.925707], [-77.113555, 38.92574], [-77.113568, 38.925762], [-77.113593, 38.925758], [-77.113619, 38.925749], [-77.113634, 38.925774], [-77.113655, 38.92579], [-77.113663, 38.925814], [-77.113666, 38.925834], [-77.113684, 38.925854], [-77.113699, 38.925873], [-77.113717, 38.92586], [-77.113741, 38.925854], [-77.11376, 38.925877], [-77.11376, 38.925902], [-77.113759, 38.925923], [-77.113758, 38.925949], [-77.11376, 38.925976], [-77.113782, 38.925994], [-77.113806, 38.926008], [-77.113832, 38.926013], [-77.113863, 38.926024], [-77.113881, 38.926039], [-77.113901, 38.926062], [-77.113926, 38.92608], [-77.113943, 38.9261], [-77.113955, 38.92612], [-77.113956, 38.926141], [-77.11398, 38.926138], [-77.114005, 38.926147], [-77.114023, 38.926169], [-77.114024, 38.926196], [-77.114025, 38.926218], [-77.114022, 38.926239], [-77.114024, 38.926266], [-77.11404, 38.926287], [-77.114071, 38.926287], [-77.114086, 38.926301], [-77.114103, 38.926318], [-77.114119, 38.926339], [-77.114127, 38.926367], [-77.114133, 38.926394], [-77.114138, 38.926422], [-77.114154, 38.926445], [-77.114172, 38.926468], [-77.114182, 38.926493], [-77.114197, 38.926512], [-77.114215, 38.926531], [-77.114231, 38.926549], [-77.114251, 38.926571], [-77.114252, 38.926593], [-77.114253, 38.926616], [-77.114279, 38.926625], [-77.114298, 38.926613], [-77.114321, 38.92663], [-77.11435, 38.926641], [-77.114372, 38.926657], [-77.11439, 38.926673], [-77.114406, 38.926697], [-77.114408, 38.926722], [-77.114423, 38.926744], [-77.114436, 38.92677], [-77.114451, 38.926793], [-77.114464, 38.926816], [-77.114483, 38.926833], [-77.114493, 38.926859], [-77.114517, 38.926876], [-77.114528, 38.926895], [-77.114524, 38.926919], [-77.11453, 38.926943], [-77.114552, 38.926956], [-77.114589, 38.926968], [-77.114624, 38.926985], [-77.114641, 38.927013], [-77.114644, 38.927041], [-77.11467, 38.927063], [-77.114702, 38.927065], [-77.114737, 38.927075], [-77.114764, 38.927097], [-77.114784, 38.927126], [-77.114787, 38.927158], [-77.114789, 38.927177], [-77.11478, 38.927197], [-77.114762, 38.92721], [-77.114776, 38.92723], [-77.114798, 38.927222], [-77.114824, 38.92722], [-77.114803, 38.927245], [-77.114816, 38.92726], [-77.11483, 38.927284], [-77.114843, 38.927306], [-77.114864, 38.927327], [-77.114887, 38.927329], [-77.114905, 38.927347], [-77.114901, 38.927366], [-77.114905, 38.927384], [-77.114931, 38.927396], [-77.114955, 38.927386], [-77.114946, 38.927367], [-77.114943, 38.927349], [-77.114971, 38.927364], [-77.114997, 38.927372], [-77.115057, 38.92738], [-77.115086, 38.927398], [-77.115122, 38.927409], [-77.11515, 38.927417], [-77.115179, 38.927442], [-77.115204, 38.927468], [-77.11522, 38.927495], [-77.115238, 38.927518], [-77.115261, 38.927538], [-77.115279, 38.927565], [-77.115288, 38.927591], [-77.115308, 38.927608], [-77.115329, 38.92763], [-77.115332, 38.927654], [-77.115337, 38.927675], [-77.115367, 38.927664], [-77.11539, 38.927649], [-77.115415, 38.927658], [-77.115443, 38.927676], [-77.11545, 38.927701], [-77.115471, 38.927721], [-77.115496, 38.927722], [-77.11552, 38.927718], [-77.115532, 38.927734], [-77.115522, 38.927762], [-77.115517, 38.927795], [-77.11552, 38.927826], [-77.11555, 38.927835], [-77.115576, 38.927851], [-77.115608, 38.927864], [-77.115621, 38.927883], [-77.115646, 38.927907], [-77.115676, 38.927926], [-77.115701, 38.927945], [-77.115716, 38.927967], [-77.115737, 38.927987], [-77.115746, 38.928017], [-77.115767, 38.928027], [-77.115799, 38.928029], [-77.115823, 38.928048], [-77.115832, 38.928071], [-77.115815, 38.928093], [-77.11583, 38.928113], [-77.115862, 38.928102], [-77.115884, 38.92811], [-77.115903, 38.928127], [-77.115909, 38.928154], [-77.115928, 38.928168], [-77.115959, 38.928173], [-77.115972, 38.928194], [-77.115982, 38.92822], [-77.115992, 38.928245], [-77.116005, 38.92827], [-77.116024, 38.928294], [-77.116041, 38.928319], [-77.116048, 38.928338], [-77.116046, 38.928356], [-77.116031, 38.928372], [-77.116015, 38.928385], [-77.116017, 38.928403], [-77.116029, 38.92842], [-77.116054, 38.928409], [-77.116083, 38.92841], [-77.116107, 38.928419], [-77.116121, 38.928439], [-77.116134, 38.92846], [-77.116137, 38.928481], [-77.116158, 38.928491], [-77.116182, 38.928507], [-77.116195, 38.928528], [-77.116209, 38.928553], [-77.116214, 38.92858], [-77.116214, 38.928599], [-77.116189, 38.928658], [-77.116194, 38.928684], [-77.116208, 38.928707], [-77.116228, 38.92873], [-77.116244, 38.928757], [-77.116251, 38.928783], [-77.116263, 38.928809], [-77.116285, 38.928825], [-77.116312, 38.928839], [-77.116333, 38.928858], [-77.11634, 38.928877], [-77.116324, 38.928899], [-77.116317, 38.928923], [-77.116324, 38.928952], [-77.11633, 38.929004], [-77.116353, 38.929108], [-77.116367, 38.929126], [-77.116376, 38.929146], [-77.11639, 38.929172], [-77.116409, 38.929194], [-77.116423, 38.929219], [-77.116437, 38.929248], [-77.116442, 38.929277], [-77.116439, 38.92931], [-77.116444, 38.929339], [-77.116455, 38.929366], [-77.116446, 38.929397], [-77.116441, 38.929425], [-77.116436, 38.929447], [-77.116411, 38.92946], [-77.11641, 38.929486], [-77.116417, 38.92951], [-77.116438, 38.929579], [-77.116468, 38.929639], [-77.116515, 38.929707], [-77.116526, 38.929722], [-77.116544, 38.929747], [-77.11656, 38.929771], [-77.116573, 38.929789], [-77.116589, 38.929812], [-77.1166, 38.929828], [-77.11661, 38.929843], [-77.116623, 38.92986], [-77.116639, 38.929885], [-77.116656, 38.929909], [-77.116672, 38.929932], [-77.116691, 38.929958], [-77.116708, 38.929982], [-77.11673, 38.930014], [-77.116746, 38.930039], [-77.116758, 38.930054], [-77.11677, 38.930071], [-77.116785, 38.930093], [-77.116796, 38.93011], [-77.116804, 38.93012], [-77.11682, 38.930143], [-77.116832, 38.93016], [-77.116843, 38.930175], [-77.116874, 38.930222], [-77.116886, 38.930239], [-77.116919, 38.930287], [-77.116933, 38.930304], [-77.116944, 38.93032], [-77.116956, 38.930338], [-77.116971, 38.930361], [-77.116982, 38.930377], [-77.116999, 38.9304], [-77.117012, 38.930417], [-77.117023, 38.930434], [-77.11704, 38.930458], [-77.117046, 38.930467], [-77.117057, 38.930482], [-77.117077, 38.930513], [-77.117089, 38.93053], [-77.117106, 38.930555], [-77.117124, 38.930577], [-77.117136, 38.930596], [-77.117146, 38.930611], [-77.117153, 38.93062], [-77.117166, 38.930641], [-77.11718, 38.930661], [-77.117191, 38.930677], [-77.117209, 38.9307], [-77.117226, 38.930725], [-77.117239, 38.930745], [-77.117247, 38.930757], [-77.117254, 38.930765], [-77.117271, 38.930788], [-77.117291, 38.930819], [-77.11731, 38.930845], [-77.117326, 38.93087], [-77.117338, 38.930884], [-77.11735, 38.930901], [-77.117361, 38.930918], [-77.11737, 38.930932], [-77.117383, 38.93095], [-77.1174, 38.930974], [-77.117421, 38.931005], [-77.117438, 38.93103], [-77.117451, 38.931047], [-77.117462, 38.931063], [-77.117482, 38.931094], [-77.117496, 38.931112], [-77.117509, 38.931133], [-77.117524, 38.931151], [-77.117541, 38.931176], [-77.117562, 38.931208], [-77.11758, 38.931232], [-77.117592, 38.931249], [-77.117597, 38.931257], [-77.117608, 38.931272], [-77.117625, 38.931297], [-77.117645, 38.931326], [-77.117665, 38.931354], [-77.117686, 38.931385], [-77.117704, 38.93141], [-77.11772, 38.931435], [-77.117732, 38.93145], [-77.117747, 38.931474], [-77.11776, 38.931489], [-77.117774, 38.931512], [-77.117786, 38.93153], [-77.117804, 38.931554], [-77.117817, 38.931572], [-77.117834, 38.931596], [-77.117856, 38.931627], [-77.117877, 38.93166], [-77.11789, 38.931677], [-77.117905, 38.9317], [-77.11792, 38.931722], [-77.117935, 38.931741], [-77.117951, 38.931765], [-77.117963, 38.931781], [-77.117974, 38.931796], [-77.117988, 38.931818], [-77.118, 38.931835], [-77.118011, 38.931852], [-77.118029, 38.931878], [-77.118047, 38.931902], [-77.118059, 38.931919], [-77.118076, 38.931942], [-77.118096, 38.931973], [-77.118113, 38.931998], [-77.118132, 38.932024], [-77.118149, 38.932048], [-77.11816, 38.932063], [-77.118175, 38.932087], [-77.118183, 38.932097], [-77.118199, 38.93212], [-77.118216, 38.932144], [-77.118232, 38.932169], [-77.118244, 38.932184], [-77.11826, 38.932209], [-77.118277, 38.932234], [-77.118295, 38.932257], [-77.118306, 38.932273], [-77.118323, 38.932297], [-77.118338, 38.932321], [-77.118351, 38.932338], [-77.118373, 38.93237], [-77.118385, 38.932386], [-77.118396, 38.932401], [-77.11841, 38.932424], [-77.118424, 38.932442], [-77.118436, 38.93246], [-77.118453, 38.932484], [-77.118468, 38.932507], [-77.118479, 38.932522], [-77.118492, 38.932539], [-77.118506, 38.932561], [-77.118524, 38.932588], [-77.118537, 38.932604], [-77.118553, 38.932629], [-77.118564, 38.932645], [-77.118577, 38.932662], [-77.118588, 38.932677], [-77.118598, 38.932693], [-77.118613, 38.932715], [-77.118631, 38.932741], [-77.118647, 38.932764], [-77.118655, 38.932774], [-77.118675, 38.932803], [-77.118689, 38.932822], [-77.118706, 38.932847], [-77.118723, 38.932871], [-77.118739, 38.932895], [-77.118748, 38.932908], [-77.11876, 38.932926], [-77.118783, 38.932958], [-77.118802, 38.932984], [-77.118819, 38.933009], [-77.118836, 38.933033], [-77.118852, 38.933056], [-77.118864, 38.933073], [-77.118877, 38.933093], [-77.118892, 38.933113], [-77.118912, 38.933143], [-77.118926, 38.933161], [-77.11894, 38.933183], [-77.118953, 38.933202], [-77.118965, 38.933217], [-77.118985, 38.933248], [-77.119004, 38.933273], [-77.119016, 38.93329], [-77.119031, 38.933314], [-77.119049, 38.933338], [-77.119072, 38.933371], [-77.119083, 38.933386], [-77.119094, 38.933403], [-77.119106, 38.93342], [-77.119121, 38.933442], [-77.119139, 38.933468], [-77.119156, 38.933492], [-77.119164, 38.933504], [-77.119183, 38.933532], [-77.1192, 38.933555], [-77.119213, 38.933574], [-77.11923, 38.933597], [-77.119246, 38.933621], [-77.119263, 38.933645], [-77.119282, 38.933673], [-77.119296, 38.933693], [-77.119312, 38.933715], [-77.119328, 38.933739], [-77.119342, 38.933759], [-77.119361, 38.933786], [-77.11937, 38.933799], [-77.119384, 38.933819], [-77.119395, 38.933835], [-77.119414, 38.933862], [-77.119432, 38.933887], [-77.119466, 38.933937], [-77.119488, 38.933968], [-77.11951, 38.934], [-77.119528, 38.934025], [-77.119545, 38.93405], [-77.119562, 38.934074], [-77.119582, 38.934103], [-77.119595, 38.934122], [-77.119629, 38.93417], [-77.119648, 38.934195], [-77.119674, 38.934226], [-77.119692, 38.934244], [-77.119761, 38.934351], [-77.120029, 38.934597], [-77.120273, 38.934753], [-77.120289, 38.934845], [-77.120338, 38.934886], [-77.120398, 38.934902], [-77.120497, 38.934979], [-77.12052, 38.935004], [-77.120636, 38.935174], [-77.120657, 38.935194], [-77.120704, 38.935225], [-77.120765, 38.935256], [-77.120809, 38.935262], [-77.120862, 38.935244], [-77.120875, 38.935252], [-77.12091, 38.935274], [-77.120939, 38.9353], [-77.121011, 38.935366], [-77.121039, 38.935399], [-77.121111, 38.935466], [-77.121124, 38.935486], [-77.121146, 38.935544], [-77.121202, 38.935621], [-77.121264, 38.935683], [-77.121352, 38.93576], [-77.121434, 38.935862], [-77.121475, 38.935887], [-77.121502, 38.935909], [-77.121622, 38.936047], [-77.121651, 38.936067], [-77.121759, 38.936126], [-77.121785, 38.936164], [-77.121825, 38.936199], [-77.121881, 38.93622], [-77.121927, 38.936246], [-77.121963, 38.936259], [-77.121989, 38.936276], [-77.122052, 38.936329], [-77.122108, 38.936397], [-77.122165, 38.936432], [-77.122228, 38.93645], [-77.122305, 38.936534], [-77.122489, 38.936686], [-77.122579, 38.936807], [-77.122743, 38.936934], [-77.122753, 38.936956], [-77.122754, 38.936987], [-77.122782, 38.937004], [-77.12282, 38.936996], [-77.122871, 38.936996], [-77.122903, 38.937], [-77.122943, 38.937013], [-77.122991, 38.937042], [-77.123017, 38.937076], [-77.123047, 38.937139], [-77.123079, 38.937159], [-77.123134, 38.937164], [-77.123171, 38.937185], [-77.123249, 38.937267], [-77.123316, 38.937324], [-77.123375, 38.937336], [-77.123422, 38.937358], [-77.12352, 38.937429], [-77.123603, 38.937512], [-77.123648, 38.937547], [-77.123683, 38.937591], [-77.123724, 38.937629], [-77.123786, 38.937666], [-77.123848, 38.937719], [-77.123881, 38.937739], [-77.123912, 38.937772], [-77.123965, 38.937843], [-77.124031, 38.937951], [-77.124074, 38.938004], [-77.124132, 38.938087], [-77.12427, 38.938229], [-77.124302, 38.938267], [-77.124321, 38.938283], [-77.124417, 38.938364], [-77.1245, 38.938456], [-77.124564, 38.9385], [-77.124633, 38.938556], [-77.124675, 38.938575], [-77.1247, 38.938592], [-77.124865, 38.938688], [-77.124967, 38.938759], [-77.125009, 38.938794], [-77.125063, 38.938825], [-77.125107, 38.938859], [-77.125119, 38.93889], [-77.125132, 38.938908], [-77.125222, 38.938928], [-77.1253, 38.939008], [-77.125297, 38.939032], [-77.1253, 38.939052], [-77.12536, 38.939069], [-77.125411, 38.939107], [-77.125453, 38.93916], [-77.125522, 38.939223], [-77.125624, 38.939287], [-77.125701, 38.93935], [-77.12578, 38.939389], [-77.125877, 38.939445], [-77.125891, 38.939475], [-77.125924, 38.939506], [-77.125984, 38.939543], [-77.126021, 38.939566], [-77.126056, 38.939583], [-77.126165, 38.939665], [-77.126194, 38.939675], [-77.126223, 38.939677], [-77.126275, 38.9397], [-77.126383, 38.939774], [-77.126406, 38.939832], [-77.126454, 38.939871], [-77.126598, 38.939949], [-77.126687, 38.940007], [-77.12674, 38.940036], [-77.126762, 38.940063], [-77.126784, 38.94008], [-77.126859, 38.940083], [-77.126899, 38.940106], [-77.126935, 38.940142], [-77.127042, 38.940225], [-77.127149, 38.940267], [-77.127182, 38.940286], [-77.127218, 38.940319], [-77.127264, 38.940353], [-77.127285, 38.940361], [-77.127322, 38.940388], [-77.127387, 38.940445], [-77.127465, 38.940488], [-77.127539, 38.9405], [-77.127651, 38.940541], [-77.127676, 38.940557], [-77.127737, 38.940611], [-77.127782, 38.940641], [-77.127819, 38.940655], [-77.12784, 38.94067], [-77.127885, 38.940685], [-77.127924, 38.940693], [-77.127976, 38.940733], [-77.128052, 38.940783], [-77.128138, 38.940832], [-77.128202, 38.940882], [-77.128284, 38.940972], [-77.128296, 38.940992], [-77.1283, 38.941025], [-77.128314, 38.941043], [-77.12838, 38.941081], [-77.128408, 38.941104], [-77.128424, 38.941138], [-77.128426, 38.941165], [-77.128439, 38.941206], [-77.128458, 38.941235], [-77.128478, 38.94125], [-77.128505, 38.941263], [-77.128613, 38.941358], [-77.128656, 38.941406], [-77.128711, 38.941504], [-77.128746, 38.941531], [-77.128765, 38.94158], [-77.12882, 38.941694], [-77.128842, 38.941774], [-77.128856, 38.941789], [-77.12889, 38.941809], [-77.128904, 38.941826], [-77.128951, 38.941906], [-77.128969, 38.941928], [-77.129014, 38.942004], [-77.129052, 38.942103], [-77.129074, 38.942145], [-77.129124, 38.942221], [-77.129141, 38.942262], [-77.129171, 38.942452], [-77.129242, 38.942613], [-77.129253, 38.942672], [-77.129268, 38.942709], [-77.129291, 38.942744], [-77.129317, 38.942768], [-77.129339, 38.9428], [-77.129355, 38.942835], [-77.129357, 38.942863], [-77.129343, 38.942891], [-77.129333, 38.942935], [-77.129335, 38.942977], [-77.129385, 38.943041], [-77.129415, 38.943068], [-77.129451, 38.943083], [-77.12947, 38.943099], [-77.129486, 38.94313], [-77.129533, 38.943178], [-77.129555, 38.943215], [-77.129584, 38.94334], [-77.12959, 38.943408], [-77.129631, 38.943519], [-77.129678, 38.943595], [-77.129706, 38.943615], [-77.129714, 38.943644], [-77.129722, 38.943771], [-77.129752, 38.94382], [-77.129802, 38.943947], [-77.129927, 38.944144], [-77.129938, 38.944177], [-77.129974, 38.94424], [-77.130009, 38.944282], [-77.130151, 38.944421], [-77.130186, 38.94448], [-77.130247, 38.944564], [-77.130289, 38.944617], [-77.130296, 38.944646], [-77.130311, 38.944664], [-77.130331, 38.944678], [-77.130359, 38.944692], [-77.13037, 38.944697], [-77.130388, 38.944738], [-77.130417, 38.944784], [-77.130461, 38.944837], [-77.130515, 38.944929], [-77.130558, 38.945062], [-77.1306, 38.945158], [-77.130626, 38.945218], [-77.13069, 38.945364], [-77.130748, 38.945575], [-77.130867, 38.945915], [-77.130882, 38.94593], [-77.13099, 38.946146], [-77.131054, 38.946248], [-77.131102, 38.946368], [-77.131118, 38.946396], [-77.131159, 38.946439], [-77.131192, 38.946508], [-77.131205, 38.946551], [-77.131196, 38.946573], [-77.13119, 38.946606], [-77.131237, 38.946617], [-77.131273, 38.946669], [-77.13129, 38.9467], [-77.131308, 38.946732], [-77.131317, 38.946762], [-77.131332, 38.946782], [-77.131357, 38.946794], [-77.131379, 38.94681], [-77.131413, 38.946874], [-77.131481, 38.946978], [-77.131528, 38.947109], [-77.13155, 38.94713], [-77.131641, 38.947311], [-77.131634, 38.947334], [-77.131645, 38.947375], [-77.131653, 38.947405], [-77.131696, 38.947434], [-77.131707, 38.947452], [-77.131699, 38.947471], [-77.131717, 38.947494], [-77.131738, 38.947521], [-77.131716, 38.947529], [-77.131712, 38.947532], [-77.131689, 38.947548], [-77.13168, 38.947565], [-77.131697, 38.947592], [-77.131721, 38.947593], [-77.131789, 38.947584], [-77.131923, 38.947546], [-77.131935, 38.947522], [-77.13194, 38.947499], [-77.131969, 38.947498], [-77.131985, 38.947511], [-77.131996, 38.947554], [-77.13205, 38.947621], [-77.132039, 38.947641], [-77.132022, 38.94766], [-77.132017, 38.947678], [-77.132028, 38.947694], [-77.132017, 38.947711], [-77.131996, 38.947731], [-77.132022, 38.947764], [-77.132092, 38.947883], [-77.13225, 38.948143], [-77.1323, 38.948248], [-77.132322, 38.948285], [-77.132352, 38.948324], [-77.132472, 38.948458], [-77.13249, 38.948487], [-77.132504, 38.948532], [-77.13253, 38.948584], [-77.132562, 38.948667], [-77.132618, 38.948764], [-77.132661, 38.948825], [-77.132674, 38.948857], [-77.132712, 38.948918], [-77.132769, 38.948981], [-77.13284, 38.949111], [-77.132917, 38.949212], [-77.132918, 38.949234], [-77.132937, 38.949245], [-77.132929, 38.949278], [-77.132999, 38.949393], [-77.133021, 38.94944], [-77.13305, 38.949501], [-77.133086, 38.949566], [-77.133156, 38.949692], [-77.133185, 38.949766], [-77.133329, 38.950001], [-77.133359, 38.950022], [-77.133377, 38.950075], [-77.13352, 38.950349], [-77.133559, 38.950447], [-77.133651, 38.950632], [-77.133693, 38.950693], [-77.133773, 38.950841], [-77.133784, 38.950932], [-77.133794, 38.950957], [-77.133849, 38.951002], [-77.133883, 38.951047], [-77.133908, 38.951097], [-77.13391, 38.95114], [-77.134004, 38.951331], [-77.134007, 38.951349], [-77.134044, 38.95141], [-77.134062, 38.951482], [-77.134074, 38.951507], [-77.134166, 38.951642], [-77.134191, 38.951722], [-77.134209, 38.951764], [-77.13426, 38.951813], [-77.134312, 38.951896], [-77.134351, 38.951992], [-77.134395, 38.952055], [-77.13448, 38.95216], [-77.134488, 38.95217], [-77.134598, 38.952391], [-77.134658, 38.952476], [-77.134783, 38.952669], [-77.134882, 38.952858], [-77.134907, 38.95289], [-77.134923, 38.952923], [-77.134923, 38.952945], [-77.134952, 38.953013], [-77.134987, 38.953071], [-77.1351, 38.95322], [-77.135255, 38.953521], [-77.135326, 38.953609], [-77.135445, 38.953708], [-77.13547, 38.953738], [-77.135488, 38.953788], [-77.135543, 38.953857], [-77.135578, 38.953888], [-77.135629, 38.953922], [-77.13565, 38.953939], [-77.135649, 38.953957], [-77.135668, 38.953968], [-77.1357, 38.954018], [-77.135714, 38.954039], [-77.135736, 38.954065], [-77.135745, 38.954094], [-77.135773, 38.95412], [-77.135834, 38.954163], [-77.135881, 38.954211], [-77.135948, 38.954308], [-77.136002, 38.954373], [-77.136086, 38.954457], [-77.13612, 38.954483], [-77.136145, 38.954509], [-77.136188, 38.954543], [-77.136206, 38.954577], [-77.136234, 38.954603], [-77.136268, 38.954627], [-77.136377, 38.954749], [-77.136438, 38.954791], [-77.136492, 38.954815], [-77.136576, 38.954872], [-77.136678, 38.95496], [-77.136775, 38.95502], [-77.13682, 38.955054], [-77.136942, 38.955184], [-77.13699, 38.955209], [-77.137032, 38.955237], [-77.137089, 38.955309], [-77.137111, 38.955327], [-77.137208, 38.955386], [-77.137265, 38.95541], [-77.137394, 38.95552], [-77.137572, 38.955621], [-77.137662, 38.955658], [-77.137709, 38.955687], [-77.137754, 38.955709], [-77.137881, 38.95576], [-77.137921, 38.955759], [-77.137944, 38.955765], [-77.13797, 38.95578], [-77.138008, 38.95581], [-77.138013, 38.955828], [-77.13803, 38.956025], [-77.138075, 38.956085], [-77.13812, 38.956103], [-77.13816, 38.956108], [-77.138187, 38.956127], [-77.138327, 38.956283], [-77.138377, 38.956345], [-77.138753, 38.956733], [-77.138904, 38.956904], [-77.139181, 38.957173], [-77.139234, 38.957215], [-77.139279, 38.957258], [-77.139393, 38.957348], [-77.139468, 38.957424], [-77.139561, 38.957486], [-77.139646, 38.957549], [-77.139749, 38.957604], [-77.139773, 38.9576], [-77.139857, 38.957555], [-77.139865, 38.957572], [-77.139852, 38.957588], [-77.139806, 38.957619], [-77.13981, 38.957649], [-77.139838, 38.957676], [-77.139916, 38.957719], [-77.13995, 38.957742], [-77.140089, 38.95782], [-77.140117, 38.95784], [-77.140141, 38.957865], [-77.1402, 38.957897], [-77.140271, 38.957945], [-77.140311, 38.957966], [-77.140499, 38.958087], [-77.140609, 38.958172], [-77.140696, 38.958233], [-77.140836, 38.958364], [-77.140898, 38.958412], [-77.140931, 38.958452], [-77.140953, 38.958478], [-77.140997, 38.958522], [-77.141047, 38.958588], [-77.141111, 38.958734], [-77.141156, 38.958789], [-77.14128, 38.958894], [-77.141447, 38.959084], [-77.141533, 38.959171], [-77.141674, 38.959348], [-77.141765, 38.959496], [-77.141838, 38.959577], [-77.141863, 38.959663], [-77.141897, 38.95971], [-77.141929, 38.95973], [-77.141978, 38.959796], [-77.142004, 38.959822], [-77.142077, 38.959854], [-77.142107, 38.959878], [-77.142177, 38.959973], [-77.142229, 38.960025], [-77.142309, 38.960115], [-77.142328, 38.960144], [-77.142371, 38.960188], [-77.142405, 38.960271], [-77.142437, 38.960297], [-77.14245, 38.96031], [-77.14247, 38.960332], [-77.142506, 38.960403], [-77.142519, 38.960468], [-77.142549, 38.960529], [-77.142632, 38.960618], [-77.142692, 38.960664], [-77.142839, 38.960844], [-77.142904, 38.960908], [-77.143008, 38.960974], [-77.143115, 38.961097], [-77.143228, 38.961209], [-77.143412, 38.961436], [-77.143559, 38.961583], [-77.143668, 38.961718], [-77.143872, 38.961884], [-77.143937, 38.961942], [-77.144098, 38.962073], [-77.144199, 38.962171], [-77.144297, 38.962298], [-77.144322, 38.962322], [-77.144429, 38.962396], [-77.144469, 38.962419], [-77.144509, 38.962449], [-77.144586, 38.962541], [-77.144684, 38.962649], [-77.144723, 38.962716], [-77.144805, 38.962816], [-77.144916, 38.96293], [-77.14492, 38.962934], [-77.14501, 38.963035], [-77.145083, 38.963154], [-77.145353, 38.963317], [-77.145534, 38.963412], [-77.145618, 38.963447], [-77.145685, 38.963459], [-77.145727, 38.963495], [-77.145802, 38.963498], [-77.145849, 38.963512], [-77.145973, 38.963532], [-77.146025, 38.963552], [-77.146071, 38.96358], [-77.146111, 38.963613], [-77.146142, 38.963654], [-77.146195, 38.963704], [-77.146215, 38.963732], [-77.146263, 38.963763], [-77.146455, 38.963903], [-77.146546, 38.963986], [-77.146636, 38.964054], [-77.146806, 38.964208], [-77.146949, 38.964274], [-77.147102, 38.964386], [-77.147199, 38.964447], [-77.147305, 38.964494], [-77.147432, 38.964534], [-77.147547, 38.964584], [-77.147648, 38.964611], [-77.147649, 38.964612], [-77.147755, 38.964623], [-77.147979, 38.96468], [-77.148056, 38.964715], [-77.148174, 38.964751], [-77.148268, 38.964773], [-77.148348, 38.964791], [-77.148381, 38.964802], [-77.148411, 38.964817], [-77.148482, 38.964863], [-77.148548, 38.964923], [-77.148593, 38.964956], [-77.148677, 38.965006], [-77.148775, 38.965044], [-77.148955, 38.96508], [-77.149071, 38.965113], [-77.149242, 38.965183], [-77.149333, 38.965209], [-77.14939, 38.965213], [-77.149521, 38.965249], [-77.149656, 38.965268], [-77.14969, 38.965278], [-77.149721, 38.965293], [-77.149759, 38.965329], [-77.149801, 38.965367], [-77.149849, 38.965384], [-77.149963, 38.965404], [-77.149975, 38.965405], [-77.150028, 38.965411], [-77.150091, 38.965423], [-77.150327, 38.965526], [-77.150383, 38.965544], [-77.150411, 38.965548], [-77.150499, 38.96555], [-77.150554, 38.965559], [-77.150598, 38.965591], [-77.150648, 38.965603], [-77.150682, 38.965623], [-77.150694, 38.96563], [-77.150879, 38.96567], [-77.150939, 38.965673], [-77.151121, 38.965667], [-77.15131, 38.965648], [-77.151371, 38.965652], [-77.151441, 38.965676], [-77.15167, 38.965715], [-77.1518, 38.965717], [-77.152007, 38.965751], [-77.152068, 38.965754], [-77.152367, 38.965748], [-77.152501, 38.96574], [-77.152562, 38.965731], [-77.152744, 38.965691], [-77.152873, 38.965721], [-77.153086, 38.965723], [-77.153201, 38.965719], [-77.153243, 38.965725], [-77.153365, 38.96576], [-77.153413, 38.965763], [-77.153569, 38.965761], [-77.153691, 38.965765], [-77.153745, 38.965781], [-77.154064, 38.965771], [-77.154323, 38.965782], [-77.154375, 38.965795], [-77.154463, 38.9658], [-77.154774, 38.965842], [-77.154904, 38.965844], [-77.154952, 38.965837], [-77.154996, 38.96584], [-77.155432, 38.965949], [-77.155547, 38.965971], [-77.15561, 38.965973], [-77.155624, 38.965975], [-77.155626, 38.965975], [-77.155694, 38.965985], [-77.155921, 38.96599], [-77.156037, 38.965996], [-77.156114, 38.965989], [-77.156132, 38.966017], [-77.156153, 38.966025], [-77.156252, 38.965985], [-77.156281, 38.96598], [-77.156416, 38.965972], [-77.156442, 38.965974], [-77.156501, 38.965979], [-77.156562, 38.965978], [-77.156624, 38.965969], [-77.156672, 38.965954], [-77.156779, 38.96591], [-77.156882, 38.965851], [-77.156904, 38.96583], [-77.156895, 38.965874], [-77.156878, 38.965902], [-77.156849, 38.965926], [-77.15672, 38.965984], [-77.156696, 38.96601], [-77.156734, 38.966018], [-77.156773, 38.966016], [-77.156826, 38.966007], [-77.156868, 38.966006], [-77.15691, 38.96601], [-77.156954, 38.966025], [-77.157024, 38.966026], [-77.157079, 38.966041], [-77.15712, 38.966041], [-77.157142, 38.966049], [-77.157157, 38.966067], [-77.157277, 38.966062], [-77.157326, 38.966013], [-77.157356, 38.96597], [-77.157363, 38.965944], [-77.157353, 38.965907], [-77.157336, 38.965878], [-77.157297, 38.965854], [-77.157275, 38.965825], [-77.157269, 38.965784], [-77.157299, 38.965804], [-77.157362, 38.965825], [-77.157363, 38.965853], [-77.157385, 38.96586], [-77.157571, 38.96586], [-77.157651, 38.965858], [-77.157701, 38.965856], [-77.157836, 38.965851], [-77.157907, 38.965838], [-77.158029, 38.965824], [-77.1581, 38.965801], [-77.158163, 38.965795], [-77.158223, 38.965799], [-77.158278, 38.965816], [-77.158312, 38.965833], [-77.158566, 38.965833], [-77.15865, 38.965845], [-77.158872, 38.965861], [-77.158957, 38.965883], [-77.15901, 38.965892], [-77.159134, 38.965914], [-77.159265, 38.965956], [-77.159318, 38.965971], [-77.159378, 38.965979], [-77.159542, 38.965988], [-77.159686, 38.966029], [-77.159817, 38.966057], [-77.159901, 38.966079], [-77.16002, 38.966137], [-77.160086, 38.966153], [-77.160166, 38.966167], [-77.160215, 38.966176], [-77.160424, 38.966214], [-77.16049, 38.966199], [-77.160599, 38.966182], [-77.160645, 38.966186], [-77.16069, 38.966199], [-77.16091, 38.966288], [-77.161026, 38.966328], [-77.161075, 38.96635], [-77.161132, 38.966379], [-77.161209, 38.966435], [-77.161351, 38.966517], [-77.161502, 38.966569], [-77.161571, 38.966579], [-77.161621, 38.966593], [-77.161655, 38.966617], [-77.161733, 38.966714], [-77.161782, 38.966741], [-77.16183, 38.966735], [-77.161876, 38.966724], [-77.161933, 38.966728], [-77.161979, 38.966755], [-77.162166, 38.966828], [-77.162253, 38.966871], [-77.162313, 38.966916], [-77.162346, 38.966951], [-77.162414, 38.967005], [-77.16251, 38.967053], [-77.162588, 38.967121], [-77.162749, 38.96723], [-77.162791, 38.96725], [-77.163003, 38.967305], [-77.163053, 38.967333], [-77.163099, 38.967371], [-77.16315, 38.967384], [-77.163194, 38.967367], [-77.163224, 38.967326], [-77.163224, 38.967287], [-77.163242, 38.967188], [-77.163257, 38.967161], [-77.163279, 38.967141], [-77.163308, 38.967127], [-77.163327, 38.967181], [-77.163364, 38.967206], [-77.163377, 38.967248], [-77.163341, 38.967297], [-77.163334, 38.967332], [-77.163353, 38.96735], [-77.163405, 38.967364], [-77.163517, 38.967383], [-77.163552, 38.967409], [-77.163618, 38.967417], [-77.163709, 38.967444], [-77.163762, 38.967467], [-77.163852, 38.967518], [-77.16389, 38.967548], [-77.163994, 38.967604], [-77.164078, 38.967638], [-77.164146, 38.967654], [-77.164269, 38.967703], [-77.164352, 38.967724], [-77.164399, 38.967729], [-77.16455, 38.96773], [-77.164697, 38.967756], [-77.164841, 38.967757], [-77.164994, 38.967769], [-77.165163, 38.967767], [-77.165215, 38.967767], [-77.165364, 38.967766], [-77.165463, 38.967747], [-77.165513, 38.967754], [-77.165551, 38.967772], [-77.165581, 38.967759], [-77.165651, 38.967711], [-77.165697, 38.967701], [-77.165864, 38.967678], [-77.165925, 38.967661], [-77.165957, 38.967656], [-77.166043, 38.96763], [-77.16618, 38.967624], [-77.166269, 38.967604], [-77.166367, 38.967609], [-77.166425, 38.967604], [-77.166479, 38.967594], [-77.166529, 38.967578], [-77.166576, 38.967558], [-77.166626, 38.967531], [-77.166705, 38.967489], [-77.166795, 38.967473], [-77.166834, 38.967458], [-77.166956, 38.967396], [-77.166986, 38.967398], [-77.167046, 38.967405], [-77.167135, 38.967389], [-77.167279, 38.967347], [-77.167446, 38.967326], [-77.16757, 38.967322], [-77.167633, 38.967306], [-77.167694, 38.967278], [-77.167766, 38.96723], [-77.167832, 38.967199], [-77.167902, 38.967176], [-77.168171, 38.967125], [-77.168244, 38.967102], [-77.168302, 38.967095], [-77.168394, 38.967072], [-77.168447, 38.967047], [-77.168485, 38.967019], [-77.168502, 38.967], [-77.168532, 38.966937], [-77.168545, 38.966885], [-77.16855, 38.966805], [-77.168559, 38.966778], [-77.168661, 38.966675], [-77.168777, 38.966586], [-77.16878, 38.966571], [-77.168787, 38.966543], [-77.168846, 38.966489], [-77.16888, 38.966446], [-77.168952, 38.966415], [-77.168971, 38.966387], [-77.169005, 38.966354], [-77.169029, 38.966342], [-77.169107, 38.966322], [-77.169114, 38.966318], [-77.169127, 38.966312], [-77.169142, 38.966283], [-77.169198, 38.966316], [-77.169228, 38.966326], [-77.169259, 38.96633], [-77.169804, 38.966323], [-77.169851, 38.966331], [-77.169983, 38.966371], [-77.170043, 38.966402], [-77.170178, 38.966452], [-77.170223, 38.966462], [-77.170267, 38.966463], [-77.170401, 38.966447], [-77.170533, 38.966448], [-77.17061, 38.966456], [-77.170683, 38.966477], [-77.170807, 38.966498], [-77.171012, 38.966498], [-77.171125, 38.966534], [-77.171294, 38.966616], [-77.171321, 38.966638], [-77.171346, 38.966668], [-77.171422, 38.966779], [-77.171447, 38.966797], [-77.171539, 38.966847], [-77.171586, 38.966924], [-77.17161, 38.966945], [-77.17174, 38.967007], [-77.171783, 38.96704], [-77.17184, 38.967075], [-77.171889, 38.967119], [-77.171938, 38.967162], [-77.171947, 38.967184], [-77.171994, 38.967255], [-77.172193, 38.967408], [-77.172286, 38.96746], [-77.172323, 38.967473], [-77.172444, 38.967502], [-77.17256, 38.967502], [-77.172592, 38.967505], [-77.172763, 38.967542], [-77.172813, 38.967568], [-77.172865, 38.967618], [-77.172906, 38.967641], [-77.172966, 38.967659], [-77.173028, 38.967668], [-77.173205, 38.96767], [-77.173266, 38.967683], [-77.173323, 38.967706], [-77.173429, 38.967767], [-77.173514, 38.967786], [-77.173573, 38.967819], [-77.173605, 38.967823], [-77.173718, 38.967825], [-77.173787, 38.967836], [-77.173923, 38.967848], [-77.174029, 38.967876], [-77.174102, 38.967882], [-77.174183, 38.967919], [-77.174286, 38.967923], [-77.174406, 38.96796], [-77.174464, 38.96799], [-77.174562, 38.968014], [-77.17458, 38.968026], [-77.174809, 38.96806], [-77.174909, 38.968049], [-77.174966, 38.96805], [-77.175007, 38.968063], [-77.175037, 38.968095], [-77.175057, 38.968132], [-77.175094, 38.968172], [-77.175119, 38.96818], [-77.175145, 38.968183], [-77.175185, 38.968168], [-77.175264, 38.968126], [-77.175301, 38.968122], [-77.175434, 38.968123], [-77.175513, 38.96811], [-77.175571, 38.968108], [-77.17563, 38.968112], [-77.175704, 38.968136], [-77.175757, 38.968141], [-77.175811, 38.968139], [-77.175868, 38.968123], [-77.175981, 38.968116], [-77.176055, 38.968088], [-77.176103, 38.968082], [-77.176173, 38.968086], [-77.176249, 38.968081], [-77.176273, 38.968089], [-77.176288, 38.968118], [-77.176311, 38.968115], [-77.176331, 38.968084], [-77.176406, 38.968089], [-77.176422, 38.968106], [-77.176451, 38.968091], [-77.176474, 38.968086], [-77.176576, 38.968077], [-77.176651, 38.968054], [-77.176683, 38.968054], [-77.176748, 38.968041], [-77.176812, 38.968034], [-77.176832, 38.968043], [-77.176883, 38.968079], [-77.176909, 38.96808], [-77.176995, 38.968057], [-77.177056, 38.968047], [-77.177287, 38.968046], [-77.177331, 38.968058], [-77.177564, 38.968058], [-77.177624, 38.968052], [-77.177652, 38.968043], [-77.177743, 38.967995], [-77.177793, 38.967995], [-77.177879, 38.968013], [-77.177986, 38.968035], [-77.178106, 38.968041], [-77.178219, 38.968047], [-77.17833, 38.968065], [-77.178419, 38.968086], [-77.178451, 38.968107], [-77.178468, 38.968137], [-77.178467, 38.968155], [-77.178479, 38.968172], [-77.178502, 38.968178], [-77.17853, 38.968149], [-77.178592, 38.968154], [-77.178688, 38.968139], [-77.178761, 38.968134], [-77.178805, 38.968137], [-77.178849, 38.968147], [-77.178889, 38.968171], [-77.178912, 38.968173], [-77.178944, 38.968153], [-77.178971, 38.96815], [-77.178997, 38.968147], [-77.179032, 38.968151], [-77.179128, 38.968186], [-77.179252, 38.968213], [-77.17933, 38.968249], [-77.179429, 38.968274], [-77.179549, 38.968299], [-77.179656, 38.968315], [-77.17979, 38.968334], [-77.179892, 38.968346], [-77.17991, 38.968348], [-77.180042, 38.968347], [-77.180067, 38.968336], [-77.18009, 38.968331], [-77.180169, 38.968374], [-77.18023, 38.968397], [-77.180331, 38.968425], [-77.180361, 38.968428], [-77.180516, 38.968424], [-77.180575, 38.968415], [-77.180732, 38.968439], [-77.180786, 38.968463], [-77.180943, 38.968554], [-77.180975, 38.968585], [-77.181026, 38.968619], [-77.181053, 38.968647], [-77.181102, 38.9687], [-77.181148, 38.968739], [-77.181202, 38.968773], [-77.181256, 38.968787], [-77.181308, 38.968786], [-77.181366, 38.968784], [-77.181449, 38.968796], [-77.181519, 38.968785], [-77.181584, 38.96877], [-77.181817, 38.968735], [-77.181871, 38.968745], [-77.18195, 38.968748], [-77.182023, 38.968758], [-77.182201, 38.968764], [-77.18229, 38.968754], [-77.182334, 38.968735], [-77.182386, 38.968732], [-77.182458, 38.968759], [-77.182491, 38.968763], [-77.182521, 38.96876], [-77.182543, 38.968753], [-77.182579, 38.968729], [-77.182614, 38.968724], [-77.182649, 38.968727], [-77.182673, 38.968733], [-77.182698, 38.96871], [-77.182725, 38.968721], [-77.182753, 38.968738], [-77.182797, 38.968711], [-77.182795, 38.968692], [-77.182818, 38.968686], [-77.182893, 38.968698], [-77.182901, 38.968674], [-77.18294, 38.968674], [-77.182962, 38.968668], [-77.183007, 38.968631], [-77.183058, 38.968632], [-77.183165, 38.968655], [-77.183189, 38.968633], [-77.183178, 38.968603], [-77.1832, 38.968579], [-77.183206, 38.968546], [-77.183228, 38.968511], [-77.183262, 38.96848], [-77.183319, 38.968468], [-77.183354, 38.968442], [-77.183392, 38.968449], [-77.183425, 38.968465], [-77.183439, 38.968447], [-77.18342, 38.968425], [-77.183407, 38.968403], [-77.183436, 38.968384], [-77.183458, 38.968344], [-77.183501, 38.968309], [-77.183571, 38.968237], [-77.183611, 38.968177], [-77.183656, 38.968145], [-77.183683, 38.968135], [-77.183794, 38.968116], [-77.183946, 38.967973], [-77.18408, 38.967908], [-77.184172, 38.967858], [-77.184205, 38.967851], [-77.184239, 38.967856], [-77.184263, 38.967891], [-77.184277, 38.967912], [-77.184318, 38.967916], [-77.184358, 38.967908], [-77.184399, 38.9679], [-77.184401, 38.9679], [-77.184448, 38.967895], [-77.184477, 38.967879], [-77.184509, 38.967874], [-77.184542, 38.967852], [-77.18455, 38.967832], [-77.184578, 38.967825], [-77.184599, 38.967838], [-77.184607, 38.967858], [-77.184605, 38.9679], [-77.18462, 38.967914], [-77.184631, 38.967894], [-77.184678, 38.967847], [-77.184718, 38.967821], [-77.184738, 38.96778], [-77.184779, 38.967792], [-77.184828, 38.967812], [-77.184909, 38.967831], [-77.185081, 38.967874], [-77.185111, 38.967874], [-77.185143, 38.967865], [-77.185175, 38.967853], [-77.185216, 38.967851], [-77.185251, 38.967854], [-77.185295, 38.967857], [-77.185324, 38.967852], [-77.18553, 38.967845], [-77.185596, 38.967834], [-77.185774, 38.967772], [-77.185836, 38.967765], [-77.185933, 38.967768], [-77.186013, 38.967756], [-77.186072, 38.967766], [-77.186111, 38.967796], [-77.186147, 38.967797], [-77.186198, 38.967764], [-77.186258, 38.967771], [-77.186385, 38.967773], [-77.186427, 38.967787], [-77.186494, 38.967782], [-77.186586, 38.967762], [-77.186647, 38.967731], [-77.186791, 38.967738], [-77.186835, 38.967728], [-77.187064, 38.967728], [-77.187131, 38.967732], [-77.187201, 38.967743], [-77.187257, 38.967757], [-77.187392, 38.9678], [-77.187432, 38.967801], [-77.187464, 38.967781], [-77.187499, 38.967772], [-77.187551, 38.967768], [-77.187604, 38.96777], [-77.187821, 38.967799], [-77.187864, 38.967826], [-77.187901, 38.967828], [-77.187923, 38.967822], [-77.187951, 38.967791], [-77.187983, 38.967768], [-77.188094, 38.967771], [-77.188158, 38.967768], [-77.188205, 38.967758], [-77.188333, 38.967709], [-77.188512, 38.967613], [-77.188572, 38.967577], [-77.188627, 38.967529], [-77.188656, 38.967512], [-77.188728, 38.967491], [-77.188768, 38.967487], [-77.188914, 38.967488], [-77.188972, 38.967484], [-77.189049, 38.967503], [-77.189235, 38.967523], [-77.189332, 38.967544], [-77.189342, 38.967546], [-77.189383, 38.967554], [-77.189435, 38.967565], [-77.189589, 38.967568], [-77.189677, 38.967578], [-77.189694, 38.967583], [-77.189813, 38.967617], [-77.189921, 38.967648], [-77.18999, 38.967674], [-77.190249, 38.967793], [-77.190423, 38.967849], [-77.190501, 38.967867], [-77.190653, 38.967915], [-77.190901, 38.967972], [-77.191001, 38.96801], [-77.191096, 38.968047], [-77.191136, 38.968057], [-77.191222, 38.968067], [-77.191389, 38.968081], [-77.191531, 38.968092], [-77.191708, 38.968099], [-77.191748, 38.968104], [-77.19186, 38.968127], [-77.192033, 38.968151], [-77.192227, 38.968152], [-77.192283, 38.968148], [-77.192361, 38.968153], [-77.192433, 38.968167], [-77.192665, 38.968164], [-77.192754, 38.968156], [-77.192988, 38.968153], [-77.19316, 38.968137], [-77.193616, 38.968093], [-77.193672, 38.968094], [-77.193822, 38.968123], [-77.193928, 38.968154], [-77.194038, 38.9682], [-77.19407, 38.968224], [-77.194096, 38.968236], [-77.194136, 38.968216], [-77.194149, 38.968168], [-77.194177, 38.968111], [-77.1942, 38.968105], [-77.194239, 38.968189], [-77.194256, 38.968204], [-77.194333, 38.968206], [-77.194359, 38.9682], [-77.194348, 38.968161], [-77.194364, 38.968075], [-77.194364, 38.968042], [-77.194381, 38.968019], [-77.194414, 38.96799], [-77.194443, 38.967923], [-77.194471, 38.967895], [-77.194488, 38.967866], [-77.194518, 38.96786], [-77.194533, 38.967839], [-77.194605, 38.967778], [-77.194666, 38.967723], [-77.194681, 38.967699], [-77.194714, 38.96768], [-77.194838, 38.967657], [-77.194883, 38.967633], [-77.194906, 38.967627], [-77.19495, 38.967604], [-77.194985, 38.96757], [-77.195016, 38.967553], [-77.195074, 38.967549], [-77.195104, 38.967562], [-77.195127, 38.967571], [-77.195165, 38.967573], [-77.195197, 38.967544], [-77.195209, 38.967519], [-77.195243, 38.967499], [-77.195275, 38.96748], [-77.195327, 38.96746], [-77.195368, 38.967437], [-77.195428, 38.967428], [-77.195484, 38.967433], [-77.195535, 38.967437], [-77.195576, 38.967444], [-77.195631, 38.967448], [-77.195669, 38.967461], [-77.195707, 38.967481], [-77.195728, 38.967506], [-77.195729, 38.967524], [-77.195715, 38.967547], [-77.19573, 38.967563], [-77.195773, 38.96755], [-77.195841, 38.967559], [-77.195858, 38.967516], [-77.195845, 38.967475], [-77.195821, 38.96746], [-77.195804, 38.967435], [-77.195807, 38.967412], [-77.195883, 38.96737], [-77.195884, 38.967334], [-77.195898, 38.967302], [-77.195919, 38.967275], [-77.196035, 38.967171], [-77.196078, 38.967151], [-77.196116, 38.967125], [-77.196138, 38.967094], [-77.19618, 38.967068], [-77.19623, 38.967048], [-77.196295, 38.967032], [-77.196335, 38.967017], [-77.196485, 38.966985], [-77.196561, 38.966965], [-77.196664, 38.966951], [-77.196737, 38.966952], [-77.196803, 38.966953], [-77.196847, 38.966948], [-77.196951, 38.966921], [-77.197045, 38.966881], [-77.197247, 38.966819], [-77.197318, 38.966811], [-77.197419, 38.966793], [-77.197471, 38.966776], [-77.197614, 38.96675], [-77.197697, 38.966743], [-77.197776, 38.966748], [-77.19781, 38.966756], [-77.1979, 38.966786], [-77.198105, 38.966825], [-77.198191, 38.966858], [-77.198273, 38.966878], [-77.19851, 38.966966], [-77.198652, 38.967002], [-77.198763, 38.967016], [-77.199003, 38.967078], [-77.199198, 38.967088], [-77.199322, 38.967073], [-77.199376, 38.967091], [-77.199752, 38.967145], [-77.199862, 38.967177], [-77.19993, 38.967192], [-77.200043, 38.967202], [-77.200285, 38.967242], [-77.200694, 38.967269], [-77.200819, 38.9673], [-77.200886, 38.967311], [-77.201016, 38.967347], [-77.201328, 38.967415], [-77.20158, 38.967493], [-77.201671, 38.967525], [-77.201732, 38.967549], [-77.201905, 38.967634], [-77.202035, 38.967683], [-77.202163, 38.967727], [-77.202213, 38.967739], [-77.202308, 38.967748], [-77.202352, 38.967744], [-77.2024, 38.967734], [-77.202629, 38.967684], [-77.202681, 38.967685], [-77.202691, 38.967709], [-77.202677, 38.967735], [-77.20261, 38.967801], [-77.202591, 38.967828], [-77.202579, 38.967855], [-77.202598, 38.967894], [-77.202631, 38.967923], [-77.20287, 38.968064], [-77.202925, 38.968085], [-77.203154, 38.968131], [-77.203384, 38.968169], [-77.203499, 38.96818], [-77.203612, 38.968197], [-77.203688, 38.968223], [-77.203931, 38.968328], [-77.204174, 38.968404], [-77.204225, 38.968416], [-77.204288, 38.968421], [-77.204296, 38.968422], [-77.204522, 38.968423], [-77.204572, 38.968431], [-77.20471, 38.968494], [-77.204755, 38.968523], [-77.204804, 38.968606], [-77.204876, 38.968695], [-77.204903, 38.968727], [-77.204946, 38.968761], [-77.204978, 38.968778], [-77.205011, 38.968795], [-77.205115, 38.968823], [-77.205204, 38.96884], [-77.205336, 38.96885], [-77.205465, 38.968868], [-77.2055, 38.968886], [-77.205662, 38.969017], [-77.205722, 38.969075], [-77.205942, 38.969212], [-77.205975, 38.969237], [-77.206057, 38.969321], [-77.206121, 38.969422], [-77.206172, 38.969526], [-77.206195, 38.969597], [-77.206217, 38.969626], [-77.206251, 38.969652], [-77.206346, 38.969711], [-77.206465, 38.969759], [-77.2068, 38.969826], [-77.206884, 38.96986], [-77.206959, 38.969907], [-77.206999, 38.969942], [-77.207043, 38.96997], [-77.207147, 38.969985], [-77.207253, 38.969995], [-77.207334, 38.970009], [-77.207434, 38.970046], [-77.207671, 38.970109], [-77.207804, 38.97016], [-77.207855, 38.970174], [-77.207941, 38.97019], [-77.208035, 38.970194], [-77.20808, 38.970195], [-77.208124, 38.970222], [-77.20814, 38.970255], [-77.208172, 38.97026], [-77.208203, 38.970218], [-77.20825, 38.970195], [-77.208494, 38.970199], [-77.208526, 38.970212], [-77.208552, 38.970236], [-77.208576, 38.970287], [-77.208618, 38.970307], [-77.208684, 38.970287], [-77.208768, 38.970274], [-77.208849, 38.970254], [-77.208954, 38.97021], [-77.209005, 38.970204], [-77.209057, 38.970211], [-77.209147, 38.970238], [-77.209197, 38.97026], [-77.209243, 38.970268], [-77.20929, 38.970267], [-77.209341, 38.970257], [-77.209391, 38.970242], [-77.209525, 38.970191], [-77.209568, 38.970165], [-77.209614, 38.970144], [-77.209655, 38.970142], [-77.209785, 38.97015], [-77.209934, 38.970121], [-77.210058, 38.970089], [-77.210198, 38.970088], [-77.210258, 38.970062], [-77.210406, 38.969921], [-77.210534, 38.969791], [-77.210599, 38.969711], [-77.210636, 38.969675], [-77.210682, 38.969645], [-77.211018, 38.969518], [-77.211097, 38.969495], [-77.211212, 38.96941], [-77.211246, 38.969413], [-77.211288, 38.96939], [-77.211329, 38.969376], [-77.211371, 38.969361], [-77.211431, 38.969352], [-77.211522, 38.969352], [-77.211582, 38.969363], [-77.211665, 38.969392], [-77.211722, 38.969426], [-77.211773, 38.969414], [-77.211824, 38.969409], [-77.211873, 38.969412], [-77.211922, 38.96942], [-77.212038, 38.969451], [-77.21221, 38.969481], [-77.212492, 38.96949], [-77.212576, 38.969512], [-77.212752, 38.969588], [-77.212762, 38.969614], [-77.212872, 38.969719], [-77.213096, 38.969804], [-77.213102, 38.969803], [-77.213281, 38.969782], [-77.213382, 38.969777], [-77.213518, 38.969783], [-77.21365, 38.969804], [-77.213896, 38.969892], [-77.214004, 38.969957], [-77.214095, 38.970029], [-77.214419, 38.970367], [-77.214496, 38.97042], [-77.21458, 38.970467], [-77.2147, 38.970519], [-77.214862, 38.970564], [-77.214996, 38.970584], [-77.215134, 38.970589], [-77.215305, 38.97058], [-77.215476, 38.970585], [-77.215645, 38.97061], [-77.215776, 38.970644], [-77.2159, 38.970689], [-77.216577, 38.970967], [-77.216697, 38.971021], [-77.216826, 38.971062], [-77.216961, 38.971087], [-77.217099, 38.971097], [-77.217342, 38.971093], [-77.217514, 38.971106], [-77.217674, 38.971134], [-77.217795, 38.971166], [-77.218606, 38.971499], [-77.218766, 38.971549], [-77.218932, 38.971582], [-77.219102, 38.971598], [-77.219274, 38.971597], [-77.21941, 38.971584], [-77.219544, 38.97156], [-77.22, 38.97144], [-77.220356, 38.971368], [-77.220517, 38.971343], [-77.220682, 38.971329], [-77.220751, 38.971327], [-77.220834, 38.971326], [-77.221003, 38.971333], [-77.221112, 38.971346], [-77.221168, 38.971352], [-77.221346, 38.971385], [-77.221477, 38.971421], [-77.221494, 38.971426], [-77.222029, 38.971599], [-77.222095, 38.97162], [-77.223347, 38.971985], [-77.223568, 38.972055], [-77.223751, 38.972128], [-77.223775, 38.97214], [-77.223898, 38.972199], [-77.223955, 38.972227], [-77.22412, 38.972324], [-77.224313, 38.972473], [-77.224898, 38.97287], [-77.225246, 38.973107], [-77.225453, 38.973255], [-77.225724, 38.97347], [-77.225953, 38.973672], [-77.226187, 38.973899], [-77.226385, 38.974113], [-77.226581, 38.974368], [-77.226776, 38.974655], [-77.226935, 38.974926], [-77.227052, 38.975151], [-77.22717, 38.975407], [-77.227243, 38.975617], [-77.227369, 38.976119], [-77.227472, 38.97643], [-77.227585, 38.976711], [-77.228028, 38.977571], [-77.228498, 38.978337], [-77.228591, 38.978507], [-77.228688, 38.978646], [-77.228783, 38.978754], [-77.229143, 38.979091], [-77.229579, 38.979524], [-77.229619, 38.979551], [-77.229898, 38.979701], [-77.229952, 38.979717], [-77.230035, 38.979727], [-77.230223, 38.97976], [-77.230357, 38.979764], [-77.230393, 38.979758], [-77.230479, 38.979734], [-77.230534, 38.979707], [-77.230604, 38.979653], [-77.230671, 38.979574], [-77.23069, 38.979544], [-77.230826, 38.979401], [-77.230887, 38.979327], [-77.230942, 38.979291], [-77.231028, 38.979278], [-77.231054, 38.979279], [-77.231338, 38.979263], [-77.231437, 38.979263], [-77.231594, 38.979321], [-77.231729, 38.979326], [-77.231812, 38.979318], [-77.231919, 38.979312], [-77.231971, 38.979328], [-77.23208, 38.979352], [-77.232135, 38.979353], [-77.232282, 38.979319], [-77.23233, 38.979296], [-77.23236, 38.979272], [-77.232459, 38.979174], [-77.232511, 38.979098], [-77.23253, 38.979059], [-77.232576, 38.978985], [-77.232732, 38.978802], [-77.232776, 38.978725], [-77.232842, 38.978485], [-77.232861, 38.978354], [-77.232875, 38.978299], [-77.232907, 38.978246], [-77.23301, 38.978144], [-77.233111, 38.97811], [-77.233213, 38.978061], [-77.233426, 38.977862], [-77.233461, 38.977814], [-77.233507, 38.97773], [-77.233545, 38.977614], [-77.233556, 38.977563], [-77.23357, 38.977409], [-77.233582, 38.977372], [-77.233599, 38.977354], [-77.233628, 38.977341], [-77.233753, 38.977304], [-77.233822, 38.977268], [-77.233846, 38.977241], [-77.233915, 38.977142], [-77.233963, 38.977044], [-77.233969, 38.977018], [-77.234105, 38.976809], [-77.234187, 38.976703], [-77.234195, 38.976683], [-77.234398, 38.9764], [-77.234541, 38.976238], [-77.234637, 38.976153], [-77.234697, 38.97612], [-77.234734, 38.9761], [-77.234845, 38.97603], [-77.234877, 38.975984], [-77.235198, 38.976088], [-77.235307, 38.976229], [-77.235371, 38.976312], [-77.235438, 38.976435], [-77.235448, 38.976464], [-77.235497, 38.976565], [-77.235504, 38.976591], [-77.235534, 38.976701], [-77.235564, 38.976727], [-77.235696, 38.976824], [-77.235756, 38.976842], [-77.235838, 38.976838], [-77.235861, 38.97684], [-77.235946, 38.976832], [-77.23609, 38.976846], [-77.236124, 38.976861], [-77.236162, 38.976887], [-77.236211, 38.97693], [-77.236724, 38.97747], [-77.236803, 38.977553], [-77.236876, 38.97763], [-77.237031, 38.977793], [-77.237067, 38.977847], [-77.237133, 38.977931], [-77.237165, 38.977962], [-77.237212, 38.978021], [-77.237277, 38.978078], [-77.237393, 38.97819], [-77.237639, 38.978389], [-77.237662, 38.978425], [-77.237726, 38.978548], [-77.237799, 38.978649], [-77.237855, 38.978705], [-77.238077, 38.978861], [-77.238124, 38.978926], [-77.238199, 38.978995], [-77.238249, 38.97906], [-77.238314, 38.979156], [-77.238452, 38.979331], [-77.238484, 38.979361], [-77.238629, 38.97946], [-77.238652, 38.979471], [-77.23872, 38.979526], [-77.238753, 38.979559], [-77.238932, 38.979716], [-77.239403, 38.980069], [-77.239499, 38.980116], [-77.239546, 38.980131], [-77.239656, 38.980201], [-77.239834, 38.980379], [-77.239885, 38.980441], [-77.239901, 38.980481], [-77.239902, 38.980517], [-77.239874, 38.980569], [-77.239868, 38.9806], [-77.239871, 38.980624], [-77.239904, 38.980717], [-77.239952, 38.980762], [-77.240039, 38.980804], [-77.24013, 38.98086], [-77.240346, 38.980983], [-77.240455, 38.981057], [-77.240568, 38.981127], [-77.240723, 38.981185], [-77.240857, 38.981206], [-77.241083, 38.981214], [-77.241112, 38.981228], [-77.241153, 38.981258], [-77.241334, 38.981415], [-77.241382, 38.981435], [-77.241432, 38.98147], [-77.241467, 38.981528], [-77.241552, 38.981623], [-77.241725, 38.981709], [-77.242006, 38.981771], [-77.242239, 38.981862], [-77.242305, 38.981896], [-77.242392, 38.981927], [-77.242595, 38.981999], [-77.242785, 38.982056], [-77.243007, 38.982109], [-77.243106, 38.982124], [-77.243425, 38.98215], [-77.243565, 38.982161], [-77.243667, 38.982189], [-77.243706, 38.982209], [-77.243743, 38.982234], [-77.243831, 38.982314], [-77.243879, 38.982342], [-77.243918, 38.982358], [-77.243967, 38.982366], [-77.244058, 38.982333], [-77.244081, 38.982216], [-77.244046, 38.982137], [-77.24407, 38.982122], [-77.244098, 38.982133], [-77.24418, 38.982185], [-77.244254, 38.982293], [-77.244434, 38.982449], [-77.244623, 38.982543], [-77.244913, 38.982622], [-77.244994, 38.982666], [-77.245032, 38.982692], [-77.245058, 38.982746], [-77.245069, 38.98279], [-77.245077, 38.982915], [-77.245069, 38.982996], [-77.245082, 38.983133], [-77.245095, 38.983261], [-77.245199, 38.983543], [-77.245248, 38.983621], [-77.24528, 38.983682], [-77.245319, 38.983736], [-77.245332, 38.983794], [-77.245325, 38.983827], [-77.245319, 38.983856], [-77.24531, 38.983935], [-77.245324, 38.984025], [-77.245348, 38.984073], [-77.245407, 38.984243], [-77.24548, 38.984404], [-77.245517, 38.9845], [-77.245613, 38.984699], [-77.24567, 38.984844], [-77.245725, 38.984958], [-77.245751, 38.985038], [-77.24591, 38.985368], [-77.245939, 38.985409], [-77.24599, 38.98552], [-77.246017, 38.985568], [-77.246026, 38.985583], [-77.246174, 38.985757], [-77.246198, 38.985805], [-77.246214, 38.985884], [-77.246283, 38.986155], [-77.246307, 38.986229], [-77.246787, 38.98739], [-77.246982, 38.987861], [-77.246988, 38.987893], [-77.247015, 38.987957], [-77.247085, 38.988052], [-77.247122, 38.988246], [-77.247149, 38.988335], [-77.247191, 38.988409], [-77.247234, 38.988469], [-77.247288, 38.988556], [-77.24736, 38.988715], [-77.247385, 38.988793], [-77.247416, 38.988986], [-77.247471, 38.989144], [-77.2475, 38.989192], [-77.247609, 38.989319], [-77.247691, 38.989442], [-77.247713, 38.989492], [-77.247755, 38.989658], [-77.247842, 38.9899], [-77.247867, 38.989999], [-77.247954, 38.99016], [-77.247986, 38.990241], [-77.24802, 38.99031], [-77.248071, 38.990448], [-77.248119, 38.990579], [-77.248159, 38.990714], [-77.248212, 38.990847], [-77.248226, 38.990924], [-77.248225, 38.991081], [-77.248231, 38.991197], [-77.248545, 38.992474], [-77.248577, 38.992555], [-77.248616, 38.992632], [-77.248656, 38.992698], [-77.248759, 38.992837], [-77.248897, 38.992999], [-77.249188, 38.993428], [-77.249217, 38.993483], [-77.249333, 38.993666], [-77.249387, 38.993733], [-77.249457, 38.993798], [-77.249528, 38.993857], [-77.249642, 38.993921], [-77.249761, 38.993952], [-77.249873, 38.99399], [-77.249919, 38.994014], [-77.249955, 38.994054], [-77.249966, 38.994092], [-77.24996, 38.994131], [-77.249927, 38.994182], [-77.249887, 38.994256], [-77.249862, 38.994335], [-77.249855, 38.994416], [-77.249864, 38.994509], [-77.249887, 38.994565], [-77.249927, 38.994614], [-77.249982, 38.994653], [-77.250341, 38.994825], [-77.250404, 38.994848], [-77.250473, 38.994859], [-77.250602, 38.994853], [-77.250662, 38.994856], [-77.25154, 38.994993], [-77.25159, 38.995005], [-77.251629, 38.995031], [-77.251667, 38.995088], [-77.251706, 38.995126], [-77.251755, 38.995155], [-77.252345, 38.995372], [-77.252482, 38.995423], [-77.252582, 38.995441], [-77.252684, 38.995441], [-77.252742, 38.995432], [-77.252796, 38.995423], [-77.252843, 38.995424], [-77.252901, 38.995438], [-77.252942, 38.995459], [-77.252967, 38.995492], [-77.252974, 38.995529], [-77.252915, 38.995722], [-77.25291, 38.995799], [-77.252925, 38.995876], [-77.253006, 38.996062], [-77.253052, 38.996168], [-77.253065, 38.996199], [-77.253137, 38.996336], [-77.25314, 38.996342], [-77.253157, 38.996374], [-77.253252, 38.996518], [-77.253302, 38.996574], [-77.25335, 38.996628], [-77.253439, 38.996704], [-77.253498, 38.996771], [-77.253518, 38.996813], [-77.253525, 38.996857], [-77.253517, 38.996901], [-77.253482, 38.996976], [-77.253476, 38.997005], [-77.253466, 38.99705], [-77.253469, 38.9971], [-77.253483, 38.997149], [-77.253519, 38.997221], [-77.253546, 38.997301], [-77.253583, 38.997645], [-77.253601, 38.997746], [-77.253635, 38.997836], [-77.253669, 38.99788], [-77.253714, 38.997917], [-77.253777, 38.997948], [-77.253828, 38.997973], [-77.253936, 38.998026], [-77.25399, 38.99806], [-77.254011, 38.998074], [-77.254036, 38.99809], [-77.254064, 38.998112], [-77.254121, 38.998165], [-77.254185, 38.998236], [-77.254224, 38.998304], [-77.254239, 38.998378], [-77.25427, 38.998581], [-77.254311, 38.998638], [-77.254411, 38.998723], [-77.254485, 38.998804], [-77.254529, 38.998872], [-77.254727, 38.999356], [-77.254743, 38.999406], [-77.254746, 38.999439], [-77.254748, 38.999457], [-77.254736, 38.999503], [-77.254729, 38.999531], [-77.254707, 38.999576], [-77.254654, 38.999658], [-77.254636, 38.999686], [-77.254622, 38.999737], [-77.254625, 38.999789], [-77.254733, 39.000082], [-77.254752, 39.000133], [-77.254835, 39.000357], [-77.25484, 39.000371], [-77.254956, 39.000733], [-77.255027, 39.000886], [-77.255086, 39.000953], [-77.255174, 39.001037], [-77.255269, 39.001112], [-77.255388, 39.001201], [-77.255419, 39.001228], [-77.255476, 39.001282], [-77.255509, 39.001313], [-77.255604, 39.001428], [-77.255678, 39.001543], [-77.255682, 39.00155], [-77.255725, 39.001652], [-77.255753, 39.001757], [-77.255767, 39.001891], [-77.255761, 39.001999], [-77.255739, 39.002105], [-77.255703, 39.002209], [-77.255635, 39.002536], [-77.255581, 39.002713], [-77.255507, 39.003048], [-77.255483, 39.003232], [-77.255478, 39.003467], [-77.255454, 39.003677], [-77.255428, 39.00381], [-77.255385, 39.003941], [-77.255276, 39.00416], [-77.255236, 39.004283], [-77.255237, 39.004357], [-77.255337, 39.004661], [-77.255342, 39.004687], [-77.255345, 39.004795], [-77.255326, 39.004884], [-77.255287, 39.004981], [-77.255244, 39.005049], [-77.255061, 39.005402], [-77.254979, 39.005592], [-77.254973, 39.005619], [-77.254925, 39.00575], [-77.254871, 39.005851], [-77.254785, 39.00597], [-77.254547, 39.006162], [-77.254482, 39.006221], [-77.254434, 39.006287], [-77.254404, 39.00636], [-77.254363, 39.006667], [-77.254357, 39.006716], [-77.254335, 39.006906], [-77.254277, 39.007113], [-77.254267, 39.007138], [-77.254226, 39.007237], [-77.254116, 39.007414], [-77.254073, 39.007496], [-77.253841, 39.007882], [-77.253341, 39.008924], [-77.253311, 39.009038], [-77.253261, 39.009166], [-77.253192, 39.009267], [-77.253106, 39.009344], [-77.253091, 39.009357], [-77.252981, 39.009488], [-77.25261, 39.009972], [-77.252496, 39.010103], [-77.252441, 39.010176], [-77.252331, 39.010324], [-77.252262, 39.010399], [-77.252051, 39.010627], [-77.251875, 39.010869], [-77.251837, 39.010945], [-77.251789, 39.010964], [-77.251768, 39.010989], [-77.251757, 39.011018], [-77.251773, 39.011067], [-77.251671, 39.011247], [-77.251631, 39.011328], [-77.251582, 39.01141], [-77.251436, 39.011622], [-77.251266, 39.011812], [-77.251181, 39.011897], [-77.250916, 39.012118], [-77.250672, 39.012298], [-77.250416, 39.012472], [-77.250304, 39.012541], [-77.250285, 39.012553], [-77.250067, 39.012699], [-77.249906, 39.012748], [-77.249096, 39.013181], [-77.248483, 39.01354], [-77.248311, 39.013681], [-77.248135, 39.013778], [-77.24803, 39.013849], [-77.24791, 39.013892], [-77.24783, 39.014001], [-77.247243, 39.014475], [-77.247152, 39.014561], [-77.246947, 39.014778], [-77.24687, 39.014874], [-77.246743, 39.015084], [-77.246684, 39.015199], [-77.246583, 39.015476], [-77.246555, 39.015595], [-77.246549, 39.015697], [-77.246552, 39.015762], [-77.246526, 39.015982], [-77.246435, 39.016173], [-77.246287, 39.016456], [-77.246232, 39.016536], [-77.24617, 39.016604], [-77.245933, 39.016827], [-77.24586, 39.016883], [-77.24568, 39.017053], [-77.245643, 39.017098], [-77.245572, 39.017201], [-77.245516, 39.017306], [-77.245465, 39.017422], [-77.245451, 39.017442], [-77.245429, 39.017473], [-77.245382, 39.017539], [-77.24531, 39.017785], [-77.245301, 39.017996], [-77.245328, 39.018196], [-77.24533, 39.018205], [-77.245349, 39.018272], [-77.245324, 39.018368], [-77.245302, 39.018505], [-77.245282, 39.018514], [-77.24525, 39.018514], [-77.245227, 39.018544], [-77.245211, 39.018593], [-77.245101, 39.018823], [-77.245069, 39.018861], [-77.245076, 39.018917], [-77.245067, 39.018946], [-77.245025, 39.019079], [-77.245025, 39.019107], [-77.244974, 39.019438], [-77.244933, 39.019524], [-77.244923, 39.019575], [-77.244929, 39.019615], [-77.24494, 39.019646], [-77.244954, 39.019665], [-77.244965, 39.019694], [-77.244966, 39.019714], [-77.244952, 39.019741], [-77.244932, 39.019767], [-77.244926, 39.019795], [-77.24491, 39.020003], [-77.24487, 39.020162], [-77.244849, 39.020244], [-77.244844, 39.020335], [-77.244843, 39.020347], [-77.244854, 39.020457], [-77.244864, 39.02051], [-77.244882, 39.020604], [-77.244886, 39.020749], [-77.244914, 39.021082], [-77.244921, 39.021166], [-77.244918, 39.02123], [-77.244916, 39.021281], [-77.244941, 39.021524], [-77.244981, 39.021664], [-77.244992, 39.021734], [-77.245019, 39.021804], [-77.245058, 39.021975], [-77.245074, 39.022046], [-77.245083, 39.022069], [-77.2451, 39.022113], [-77.245095, 39.022154], [-77.245113, 39.022198], [-77.245138, 39.022242], [-77.245154, 39.022288], [-77.24518, 39.02234], [-77.245178, 39.022364], [-77.245209, 39.022422], [-77.245221, 39.022467], [-77.245259, 39.022495], [-77.24528, 39.022532], [-77.245283, 39.022587], [-77.245336, 39.022678], [-77.245372, 39.022784], [-77.245456, 39.022965], [-77.245456, 39.02301], [-77.245491, 39.023029], [-77.245536, 39.023079], [-77.245661, 39.023305], [-77.245667, 39.023366], [-77.245712, 39.023433], [-77.245706, 39.023481], [-77.245717, 39.023537], [-77.245768, 39.023537], [-77.245784, 39.023579], [-77.24581, 39.023626], [-77.245857, 39.023645], [-77.245886, 39.023682], [-77.24591, 39.023705], [-77.245928, 39.023773], [-77.246031, 39.023918], [-77.246064, 39.023981], [-77.246115, 39.02405], [-77.246136, 39.024126], [-77.24614, 39.024184], [-77.246161, 39.024222], [-77.246189, 39.024275], [-77.246211, 39.024316], [-77.246243, 39.024408], [-77.246319, 39.024689], [-77.246385, 39.02476], [-77.246455, 39.0248], [-77.246493, 39.024867], [-77.24657, 39.024968], [-77.246665, 39.025064], [-77.246757, 39.025144], [-77.246876, 39.02526], [-77.24693, 39.025304], [-77.247015, 39.025401], [-77.247136, 39.025512], [-77.247202, 39.025593], [-77.247286, 39.025659], [-77.247355, 39.025734], [-77.247431, 39.025804], [-77.247522, 39.025877], [-77.2477, 39.026046], [-77.247747, 39.026087], [-77.247795, 39.026137], [-77.24791, 39.026211], [-77.247981, 39.026245], [-77.248093, 39.026314], [-77.248156, 39.026364], [-77.248207, 39.026393], [-77.248295, 39.026475], [-77.248323, 39.026498], [-77.248356, 39.026525], [-77.248421, 39.026562], [-77.248621, 39.026649], [-77.248688, 39.026687], [-77.248896, 39.026783], [-77.248934, 39.026794], [-77.248946, 39.026797], [-77.249003, 39.02682], [-77.249093, 39.026883], [-77.249168, 39.026858], [-77.249259, 39.026878], [-77.249332, 39.026889], [-77.249396, 39.026912], [-77.249449, 39.026936], [-77.249499, 39.02695], [-77.249546, 39.026957], [-77.249594, 39.026953], [-77.249637, 39.026938], [-77.249667, 39.026932], [-77.24971, 39.026887], [-77.249772, 39.026908], [-77.249876, 39.026928], [-77.249895, 39.026935], [-77.249955, 39.026958], [-77.250026, 39.026973], [-77.250109, 39.026998], [-77.250199, 39.027051], [-77.250324, 39.027113], [-77.250373, 39.02713], [-77.250492, 39.027204], [-77.250511, 39.027234], [-77.25051, 39.027336], [-77.250504, 39.027363], [-77.250519, 39.027384], [-77.250548, 39.027411], [-77.250587, 39.027426], [-77.250618, 39.027425], [-77.250694, 39.027429], [-77.250742, 39.027442], [-77.250793, 39.027467], [-77.250833, 39.027494], [-77.250916, 39.027583], [-77.251095, 39.027726], [-77.251242, 39.027821], [-77.251369, 39.027895], [-77.251419, 39.027934], [-77.251595, 39.028048], [-77.251682, 39.028121], [-77.25175, 39.028161], [-77.251904, 39.028198], [-77.252185, 39.028315], [-77.252343, 39.028409], [-77.252421, 39.028449], [-77.252617, 39.028536], [-77.252764, 39.028609], [-77.252876, 39.028673], [-77.252991, 39.028749], [-77.253138, 39.028862], [-77.253271, 39.028985], [-77.253314, 39.02902], [-77.253383, 39.029041], [-77.253408, 39.029036], [-77.253454, 39.029036], [-77.253506, 39.029053], [-77.253604, 39.029133], [-77.25367, 39.029174], [-77.253734, 39.029207], [-77.253808, 39.029254], [-77.253951, 39.029323], [-77.254088, 39.029403], [-77.254159, 39.029452], [-77.254289, 39.029521], [-77.25438, 39.029575], [-77.254471, 39.02962], [-77.254527, 39.029638], [-77.254634, 39.029698], [-77.254748, 39.029741], [-77.254952, 39.029781], [-77.254997, 39.029784], [-77.255066, 39.029795], [-77.255228, 39.029846], [-77.255438, 39.029919], [-77.25551, 39.029938], [-77.255571, 39.029969], [-77.255638, 39.029965], [-77.255652, 39.029967], [-77.255699, 39.029974], [-77.255791, 39.030002], [-77.255867, 39.030019], [-77.255924, 39.030036], [-77.256155, 39.030132], [-77.256191, 39.03013], [-77.256246, 39.030117], [-77.256294, 39.030096], [-77.256333, 39.030064], [-77.256366, 39.030047], [-77.256463, 39.030047], [-77.256548, 39.030051], [-77.256829, 39.030089], [-77.256928, 39.030108], [-77.257089, 39.030127], [-77.257189, 39.030171], [-77.257284, 39.030197], [-77.257356, 39.03021], [-77.257551, 39.030216], [-77.257672, 39.030243], [-77.257723, 39.030258], [-77.257783, 39.030265], [-77.257849, 39.030266], [-77.257931, 39.030279], [-77.258017, 39.030303], [-77.258092, 39.030319], [-77.258173, 39.030324], [-77.258216, 39.030327], [-77.258263, 39.030326], [-77.258363, 39.03037], [-77.258385, 39.030379], [-77.258495, 39.030401], [-77.258565, 39.030405], [-77.258654, 39.030422], [-77.258749, 39.030433], [-77.258848, 39.030465], [-77.258952, 39.030487], [-77.259006, 39.030502], [-77.259051, 39.030515], [-77.259288, 39.030618], [-77.259334, 39.030647], [-77.259438, 39.030683], [-77.259506, 39.030693], [-77.259559, 39.030711], [-77.259631, 39.030742], [-77.259707, 39.030761], [-77.25985, 39.03079], [-77.259927, 39.030822], [-77.259951, 39.030832], [-77.260045, 39.030855], [-77.260218, 39.030859], [-77.260446, 39.030887], [-77.260789, 39.03099], [-77.260833, 39.031007], [-77.260824, 39.031037], [-77.260766, 39.031069], [-77.260711, 39.031048], [-77.260646, 39.031031], [-77.260478, 39.031002], [-77.260389, 39.030978], [-77.260298, 39.030977], [-77.260205, 39.030989], [-77.26011, 39.030993], [-77.260047, 39.030987], [-77.259984, 39.030964], [-77.259943, 39.03091], [-77.259876, 39.03087], [-77.259837, 39.030866], [-77.259672, 39.030803], [-77.259596, 39.03077], [-77.259547, 39.030768], [-77.259504, 39.030793], [-77.259478, 39.030835], [-77.259473, 39.030884], [-77.259482, 39.030917], [-77.259529, 39.030968], [-77.259656, 39.031005], [-77.25973, 39.031032], [-77.259893, 39.031081], [-77.259968, 39.031098], [-77.260072, 39.031129], [-77.260131, 39.031154], [-77.260237, 39.03119], [-77.260296, 39.031199], [-77.260339, 39.031197], [-77.260382, 39.031171], [-77.260438, 39.031145], [-77.260514, 39.031137], [-77.260569, 39.03114], [-77.260802, 39.031214], [-77.26085, 39.031223], [-77.261148, 39.031239], [-77.261251, 39.031256], [-77.261434, 39.031262], [-77.261574, 39.031287], [-77.261635, 39.031318], [-77.261685, 39.031337], [-77.261731, 39.031343], [-77.261775, 39.031354], [-77.261972, 39.031382], [-77.262133, 39.031396], [-77.262351, 39.031396], [-77.262401, 39.031392], [-77.262469, 39.031397], [-77.262563, 39.031416], [-77.262576, 39.03144], [-77.262612, 39.031462], [-77.262657, 39.03146], [-77.262699, 39.031437], [-77.262788, 39.031473], [-77.262939, 39.031476], [-77.262989, 39.031485], [-77.263022, 39.031491], [-77.263093, 39.031493], [-77.26314, 39.031503], [-77.263221, 39.031534], [-77.263345, 39.031557], [-77.263412, 39.03156], [-77.26345, 39.031567], [-77.26356, 39.031609], [-77.263665, 39.031635], [-77.263774, 39.031651], [-77.26388, 39.031652], [-77.264006, 39.031695], [-77.264139, 39.031728], [-77.264203, 39.031726], [-77.264303, 39.031744], [-77.264444, 39.031786], [-77.264486, 39.031791], [-77.26452, 39.031786], [-77.264634, 39.031793], [-77.264836, 39.031797], [-77.2649, 39.031807], [-77.265088, 39.03182], [-77.26516, 39.031819], [-77.265316, 39.031835], [-77.265396, 39.031837], [-77.265508, 39.031848], [-77.265626, 39.03186], [-77.26575, 39.031884], [-77.265832, 39.031906], [-77.265881, 39.031924], [-77.265917, 39.031943], [-77.265939, 39.03195], [-77.265965, 39.031945], [-77.265988, 39.031947], [-77.266043, 39.031961], [-77.266189, 39.032008], [-77.266235, 39.031997], [-77.26631, 39.032011], [-77.266336, 39.032023], [-77.266344, 39.032027], [-77.26637, 39.032048], [-77.26642, 39.032058], [-77.266461, 39.03206], [-77.266579, 39.032079], [-77.266648, 39.032086], [-77.266888, 39.032123], [-77.266981, 39.032132], [-77.267163, 39.032158], [-77.26733, 39.032159], [-77.267399, 39.03217], [-77.267517, 39.032172], [-77.267578, 39.032169], [-77.267723, 39.032181], [-77.267821, 39.032193], [-77.267913, 39.032209], [-77.267997, 39.032217], [-77.268078, 39.032234], [-77.268225, 39.032276], [-77.268228, 39.032277], [-77.268244, 39.032282], [-77.26837, 39.032318], [-77.268382, 39.032321], [-77.268468, 39.032346], [-77.268525, 39.032347], [-77.268571, 39.032357], [-77.268622, 39.03238], [-77.268673, 39.032396], [-77.268958, 39.032469], [-77.269006, 39.032489], [-77.269073, 39.032536], [-77.269111, 39.032551], [-77.269152, 39.032557], [-77.269188, 39.032571], [-77.269236, 39.032584], [-77.269275, 39.032604], [-77.269368, 39.03262], [-77.269474, 39.032661], [-77.269571, 39.032716], [-77.269621, 39.032736], [-77.269686, 39.03274], [-77.269739, 39.032755], [-77.269785, 39.032775], [-77.269975, 39.032805], [-77.270025, 39.032825], [-77.270084, 39.032856], [-77.270137, 39.032874], [-77.270194, 39.032887], [-77.270253, 39.032912], [-77.270345, 39.032958], [-77.27038, 39.032959], [-77.270413, 39.032945], [-77.270473, 39.032951], [-77.270514, 39.032975], [-77.270537, 39.03298], [-77.270609, 39.032994], [-77.270657, 39.033013], [-77.270752, 39.033059], [-77.270829, 39.033084], [-77.270879, 39.033105], [-77.271011, 39.033144], [-77.271048, 39.033163], [-77.271133, 39.033176], [-77.271213, 39.0332], [-77.271239, 39.03321], [-77.27141, 39.033276], [-77.271499, 39.033299], [-77.271506, 39.033301], [-77.271539, 39.03331], [-77.271592, 39.033338], [-77.271619, 39.033359], [-77.271648, 39.033373], [-77.271689, 39.033376], [-77.271783, 39.033396], [-77.271846, 39.033426], [-77.271937, 39.033488], [-77.271973, 39.033501], [-77.272062, 39.033498], [-77.272125, 39.033514], [-77.272176, 39.033535], [-77.272242, 39.033554], [-77.272312, 39.03358], [-77.272336, 39.033589], [-77.272451, 39.033619], [-77.272529, 39.033648], [-77.272609, 39.033671], [-77.272676, 39.033695], [-77.272715, 39.033715], [-77.272834, 39.033762], [-77.272868, 39.033787], [-77.27291, 39.033811], [-77.272947, 39.033815], [-77.272974, 39.033828], [-77.273033, 39.033845], [-77.273172, 39.033871], [-77.273193, 39.03388], [-77.273226, 39.033872], [-77.27325, 39.033857], [-77.27339, 39.033818], [-77.273432, 39.033813], [-77.273499, 39.033815], [-77.273622, 39.033832], [-77.27367, 39.033843], [-77.273736, 39.033849], [-77.273796, 39.033861], [-77.273852, 39.033866], [-77.273995, 39.033899], [-77.274094, 39.033928], [-77.274098, 39.033929], [-77.2741, 39.03393], [-77.274115, 39.033934], [-77.27416, 39.033955], [-77.274201, 39.033963], [-77.274236, 39.033982], [-77.274295, 39.034002], [-77.274337, 39.034026], [-77.274353, 39.034047], [-77.274496, 39.034106], [-77.274761, 39.034193], [-77.2748, 39.034216], [-77.274842, 39.034235], [-77.274898, 39.034254], [-77.275039, 39.034292], [-77.275088, 39.034316], [-77.275141, 39.03435], [-77.27516, 39.034362], [-77.2752, 39.03438], [-77.275302, 39.034456], [-77.27536, 39.034485], [-77.275404, 39.034494], [-77.27547, 39.034528], [-77.275507, 39.034558], [-77.275655, 39.034628], [-77.275862, 39.03474], [-77.275957, 39.034803], [-77.276042, 39.034836], [-77.276154, 39.034892], [-77.276305, 39.034991], [-77.276527, 39.035108], [-77.276568, 39.035137], [-77.276613, 39.035179], [-77.27671, 39.035283], [-77.276803, 39.035334], [-77.276892, 39.035362], [-77.276956, 39.035393], [-77.277021, 39.035434], [-77.277476, 39.035764], [-77.277497, 39.035773], [-77.277541, 39.035792], [-77.277639, 39.035841], [-77.277758, 39.035917], [-77.277797, 39.035953], [-77.277928, 39.036051], [-77.277977, 39.036093], [-77.278095, 39.03618], [-77.278166, 39.036261], [-77.278213, 39.036306], [-77.278372, 39.036421], [-77.278427, 39.036453], [-77.278519, 39.036519], [-77.278654, 39.036635], [-77.278666, 39.036645], [-77.278745, 39.036714], [-77.279059, 39.036905], [-77.279106, 39.03696], [-77.279129, 39.037012], [-77.27917, 39.037073], [-77.279217, 39.037123], [-77.279306, 39.037153], [-77.279361, 39.03719], [-77.279472, 39.03725], [-77.279541, 39.037294], [-77.279627, 39.037371], [-77.279861, 39.037523], [-77.280018, 39.037617], [-77.280106, 39.037679], [-77.28029, 39.037793], [-77.280397, 39.037869], [-77.280412, 39.037882], [-77.280507, 39.037963], [-77.280666, 39.038053], [-77.280872, 39.038201], [-77.281006, 39.038282], [-77.281063, 39.038302], [-77.281128, 39.038331], [-77.281179, 39.03836], [-77.281318, 39.038455], [-77.281405, 39.038503], [-77.281459, 39.038542], [-77.281547, 39.038628], [-77.281596, 39.038658], [-77.281659, 39.03875], [-77.281722, 39.038803], [-77.281745, 39.038815], [-77.28184, 39.038924], [-77.28188, 39.03895], [-77.281924, 39.038967], [-77.281949, 39.039009], [-77.282139, 39.039159], [-77.282189, 39.039176], [-77.282279, 39.039177], [-77.282406, 39.039186], [-77.28248, 39.039218], [-77.282502, 39.039228], [-77.282515, 39.039239], [-77.282557, 39.039275], [-77.282613, 39.039311], [-77.282663, 39.039328], [-77.282688, 39.039338], [-77.282766, 39.039368], [-77.2828, 39.039386], [-77.282848, 39.039412], [-77.283007, 39.039455], [-77.283054, 39.039483], [-77.2831, 39.03951], [-77.28321, 39.039546], [-77.283248, 39.039571], [-77.283265, 39.039582], [-77.283298, 39.03962], [-77.283454, 39.039698], [-77.283604, 39.039794], [-77.283754, 39.039917], [-77.283842, 39.039964], [-77.283919, 39.040013], [-77.283997, 39.040052], [-77.284125, 39.040149], [-77.284167, 39.040192], [-77.28427, 39.040252], [-77.28442, 39.040324], [-77.284477, 39.040364], [-77.284552, 39.040431], [-77.284603, 39.040451], [-77.284734, 39.040517], [-77.284846, 39.040574], [-77.285129, 39.040746], [-77.285177, 39.040788], [-77.285225, 39.040841], [-77.285339, 39.040906], [-77.285417, 39.040923], [-77.285502, 39.040971], [-77.285861, 39.041206], [-77.285923, 39.041254], [-77.286075, 39.041356], [-77.286223, 39.041501], [-77.286285, 39.041577], [-77.286413, 39.04167], [-77.286543, 39.041784], [-77.286576, 39.041836], [-77.286587, 39.04189], [-77.286597, 39.041939], [-77.286653, 39.042023], [-77.286683, 39.042052], [-77.286715, 39.042082], [-77.286782, 39.042116], [-77.286839, 39.042126], [-77.286891, 39.042126], [-77.287134, 39.042293], [-77.287188, 39.042325], [-77.287236, 39.042369], [-77.287277, 39.042414], [-77.287306, 39.042456], [-77.287344, 39.042495], [-77.287397, 39.042532], [-77.287532, 39.042644], [-77.287586, 39.042744], [-77.287627, 39.042771], [-77.287666, 39.042819], [-77.287694, 39.042874], [-77.287696, 39.042906], [-77.287715, 39.042938], [-77.287754, 39.042956], [-77.2879, 39.043112], [-77.287996, 39.043179], [-77.288032, 39.043213], [-77.288089, 39.043247], [-77.288127, 39.043282], [-77.288171, 39.043283], [-77.288227, 39.043312], [-77.288279, 39.043353], [-77.28842, 39.043481], [-77.288468, 39.043515], [-77.288518, 39.043541], [-77.28861, 39.043611], [-77.288766, 39.043741], [-77.2888, 39.043777], [-77.288815, 39.043813], [-77.288834, 39.043838], [-77.288872, 39.04387], [-77.288911, 39.04389], [-77.288979, 39.043906], [-77.28903, 39.043934], [-77.289057, 39.043968], [-77.289074, 39.044001], [-77.28911, 39.044049], [-77.289156, 39.044082], [-77.289198, 39.044096], [-77.289237, 39.044101], [-77.28929, 39.044096], [-77.289332, 39.044104], [-77.289456, 39.044182], [-77.289594, 39.044319], [-77.289645, 39.044341], [-77.289658, 39.04435], [-77.289675, 39.044361], [-77.289741, 39.044396], [-77.289854, 39.044479], [-77.289861, 39.044489], [-77.289872, 39.044506], [-77.290036, 39.044676], [-77.290076, 39.044704], [-77.290175, 39.044799], [-77.29039, 39.044948], [-77.290766, 39.045165], [-77.290842, 39.045205], [-77.290975, 39.045292], [-77.291158, 39.045391], [-77.291371, 39.045524], [-77.291604, 39.045651], [-77.291911, 39.045857], [-77.292058, 39.045923], [-77.292119, 39.045946], [-77.292193, 39.045986], [-77.292275, 39.046039], [-77.292357, 39.046081], [-77.29256, 39.046195], [-77.292771, 39.046291], [-77.29288, 39.046351], [-77.292944, 39.046386], [-77.292964, 39.046397], [-77.292987, 39.04641], [-77.292991, 39.046412], [-77.293068, 39.046477], [-77.293165, 39.046522], [-77.293279, 39.046565], [-77.2937, 39.04676], [-77.293791, 39.046814], [-77.293848, 39.046842], [-77.293864, 39.04685], [-77.294078, 39.046954], [-77.294218, 39.047013], [-77.294301, 39.047045], [-77.294376, 39.047073], [-77.294474, 39.047118], [-77.29461, 39.047167], [-77.294669, 39.047197], [-77.294727, 39.047227], [-77.294848, 39.047269], [-77.295143, 39.047389], [-77.295182, 39.047424], [-77.295221, 39.047429], [-77.295276, 39.047414], [-77.295313, 39.047424], [-77.295368, 39.04745], [-77.295437, 39.047467], [-77.295519, 39.047474], [-77.295655, 39.047528], [-77.29589, 39.047605], [-77.29599, 39.047634], [-77.296105, 39.047673], [-77.296199, 39.0477], [-77.296289, 39.047718], [-77.296359, 39.047747], [-77.296436, 39.047785], [-77.296529, 39.047824], [-77.296617, 39.047841], [-77.296701, 39.047878], [-77.296793, 39.047909], [-77.296929, 39.047947], [-77.297078, 39.047988], [-77.297157, 39.04802], [-77.297162, 39.048022], [-77.297218, 39.048039], [-77.297289, 39.048027], [-77.297311, 39.048038], [-77.297339, 39.048066], [-77.297499, 39.048125], [-77.297593, 39.048151], [-77.29778, 39.048211], [-77.297992, 39.048268], [-77.298099, 39.048313], [-77.298172, 39.048338], [-77.298377, 39.048426], [-77.298444, 39.048443], [-77.29856, 39.048485], [-77.298607, 39.048486], [-77.298733, 39.048464], [-77.298766, 39.048449], [-77.298799, 39.048427], [-77.298819, 39.048408], [-77.298841, 39.048398], [-77.298861, 39.048407], [-77.298873, 39.048431], [-77.298845, 39.048464], [-77.2988, 39.048494], [-77.298712, 39.048521], [-77.29867, 39.048564], [-77.298645, 39.048599], [-77.298646, 39.048617], [-77.298664, 39.048638], [-77.2989, 39.048723], [-77.298955, 39.048757], [-77.299057, 39.048757], [-77.299143, 39.048791], [-77.299249, 39.048847], [-77.299346, 39.048878], [-77.29943, 39.04891], [-77.29949, 39.04892], [-77.299669, 39.048922], [-77.29972, 39.048919], [-77.299771, 39.048923], [-77.299774, 39.048924], [-77.299845, 39.048952], [-77.299989, 39.049038], [-77.300062, 39.049073], [-77.300291, 39.049155], [-77.300376, 39.049192], [-77.300669, 39.049378], [-77.300754, 39.049411], [-77.300833, 39.049429], [-77.301121, 39.049545], [-77.301382, 39.049676], [-77.301502, 39.049732], [-77.301584, 39.049785], [-77.30163, 39.0498], [-77.301658, 39.049817], [-77.301711, 39.049901], [-77.301797, 39.04995], [-77.301879, 39.049979], [-77.302014, 39.050013], [-77.302085, 39.050025], [-77.302148, 39.050049], [-77.302189, 39.050074], [-77.302266, 39.050095], [-77.302296, 39.050108], [-77.302409, 39.050156], [-77.302604, 39.050257], [-77.302715, 39.050321], [-77.302907, 39.05044], [-77.303017, 39.050493], [-77.303131, 39.050554], [-77.303218, 39.05061], [-77.303368, 39.05069], [-77.303425, 39.050734], [-77.303478, 39.050758], [-77.303483, 39.050761], [-77.30354, 39.050796], [-77.303703, 39.050873], [-77.303871, 39.050942], [-77.30391, 39.050962], [-77.303943, 39.050986], [-77.304087, 39.051063], [-77.304217, 39.051132], [-77.304339, 39.051201], [-77.304358, 39.051206], [-77.304413, 39.05122], [-77.30455, 39.051291], [-77.304589, 39.051318], [-77.304618, 39.05135], [-77.304664, 39.051378], [-77.304715, 39.051386], [-77.304764, 39.0514], [-77.304875, 39.051449], [-77.3049, 39.05146], [-77.305129, 39.051532], [-77.305365, 39.051624], [-77.30542, 39.051655], [-77.305456, 39.051667], [-77.305502, 39.051689], [-77.30559, 39.051722], [-77.305671, 39.051759], [-77.305719, 39.051771], [-77.305728, 39.051776], [-77.305754, 39.051789], [-77.305801, 39.0518], [-77.305911, 39.051835], [-77.305964, 39.051838], [-77.306016, 39.05185], [-77.306048, 39.05187], [-77.306051, 39.051872], [-77.306105, 39.051887], [-77.30616, 39.051888], [-77.306258, 39.051915], [-77.306299, 39.051932], [-77.306541, 39.051991], [-77.306661, 39.052024], [-77.306757, 39.052023], [-77.306812, 39.052037], [-77.306971, 39.052094], [-77.307021, 39.052098], [-77.307167, 39.052123], [-77.307266, 39.05212], [-77.30733, 39.05213], [-77.307424, 39.052139], [-77.307462, 39.052148], [-77.307656, 39.052174], [-77.307704, 39.052175], [-77.307746, 39.052189], [-77.307846, 39.05221], [-77.3079, 39.052212], [-77.308037, 39.052206], [-77.308101, 39.052215], [-77.308153, 39.052216], [-77.308199, 39.052209], [-77.308261, 39.052208], [-77.308339, 39.052219], [-77.308389, 39.05223], [-77.308507, 39.052243], [-77.308627, 39.05224], [-77.308863, 39.052253], [-77.308953, 39.05222], [-77.309005, 39.052214], [-77.309052, 39.052199], [-77.309172, 39.052187], [-77.309254, 39.052172], [-77.309393, 39.052155], [-77.309607, 39.05211], [-77.309806, 39.052085], [-77.309858, 39.052066], [-77.309956, 39.052047], [-77.310035, 39.052027], [-77.310088, 39.052008], [-77.310254, 39.051979], [-77.310335, 39.051955], [-77.310433, 39.051932], [-77.310501, 39.051921], [-77.310542, 39.051904], [-77.31061, 39.05189], [-77.310893, 39.05187], [-77.310949, 39.051861], [-77.310989, 39.051845], [-77.311159, 39.051821], [-77.31116, 39.051821], [-77.311294, 39.051816], [-77.311341, 39.051808], [-77.311499, 39.051807], [-77.311536, 39.051816], [-77.311586, 39.051808], [-77.311695, 39.051808], [-77.311894, 39.051796], [-77.31195, 39.05178], [-77.31202, 39.051785], [-77.312051, 39.051779], [-77.312139, 39.051786], [-77.312175, 39.051776], [-77.312205, 39.051781], [-77.312281, 39.051789], [-77.312368, 39.051768], [-77.312407, 39.051779], [-77.312482, 39.051776], [-77.312528, 39.051783], [-77.312572, 39.05178], [-77.312683, 39.051784], [-77.312811, 39.051764], [-77.312839, 39.051779], [-77.312933, 39.051806], [-77.313006, 39.051817], [-77.313115, 39.05184], [-77.313235, 39.051852], [-77.313362, 39.051875], [-77.31343, 39.051894], [-77.313481, 39.051913], [-77.313609, 39.051941], [-77.313729, 39.051949], [-77.313806, 39.051963], [-77.313878, 39.051982], [-77.313978, 39.052017], [-77.314063, 39.052039], [-77.314121, 39.05206], [-77.314178, 39.052071], [-77.314222, 39.052072], [-77.314388, 39.052128], [-77.314468, 39.052129], [-77.314509, 39.052123], [-77.314549, 39.05213], [-77.314661, 39.05216], [-77.314735, 39.052191], [-77.314847, 39.0522], [-77.314836, 39.052169], [-77.314845, 39.052151], [-77.314893, 39.052133], [-77.314937, 39.052137], [-77.315001, 39.052183], [-77.315132, 39.052184], [-77.315176, 39.052193], [-77.315292, 39.052226], [-77.315343, 39.052247], [-77.315411, 39.052262], [-77.315476, 39.05227], [-77.315519, 39.052289], [-77.315601, 39.052315], [-77.315645, 39.052314], [-77.315775, 39.052371], [-77.315834, 39.052382], [-77.315963, 39.052429], [-77.316088, 39.052481], [-77.316196, 39.05252], [-77.316338, 39.052541], [-77.316493, 39.052571], [-77.316538, 39.052574], [-77.316615, 39.052614], [-77.316696, 39.05265], [-77.316718, 39.052643], [-77.316757, 39.052649], [-77.316813, 39.052667], [-77.316947, 39.052698], [-77.317006, 39.052725], [-77.31705, 39.052751], [-77.317155, 39.052787], [-77.317205, 39.052814], [-77.317336, 39.052896], [-77.31742, 39.052938], [-77.317425, 39.052969], [-77.317461, 39.053], [-77.317542, 39.053087], [-77.317572, 39.053125], [-77.317595, 39.053145], [-77.317665, 39.053243], [-77.317767, 39.053321], [-77.317832, 39.053389], [-77.317866, 39.053393], [-77.317907, 39.053405], [-77.317967, 39.053452], [-77.318003, 39.053462], [-77.318077, 39.053495], [-77.318144, 39.053532], [-77.318305, 39.053591], [-77.318359, 39.053584], [-77.318423, 39.053593], [-77.318529, 39.053597], [-77.318588, 39.053582], [-77.318697, 39.05354], [-77.31879, 39.053487], [-77.318824, 39.05346], [-77.318892, 39.053417], [-77.318914, 39.053398], [-77.318941, 39.053388], [-77.31899, 39.053381], [-77.319017, 39.05337], [-77.319105, 39.05335], [-77.319155, 39.053347], [-77.319209, 39.053349], [-77.319385, 39.053341], [-77.319535, 39.053344], [-77.319732, 39.053392], [-77.319831, 39.053427], [-77.319868, 39.053452], [-77.319964, 39.053495], [-77.320173, 39.053566], [-77.320293, 39.05364], [-77.320336, 39.053649], [-77.320384, 39.05367], [-77.320457, 39.053723], [-77.320479, 39.053749], [-77.320564, 39.053804], [-77.3206, 39.05382], [-77.320666, 39.05386], [-77.320682, 39.053882], [-77.320736, 39.053924], [-77.320819, 39.053957], [-77.320966, 39.054069], [-77.321085, 39.054147], [-77.321119, 39.054175], [-77.321175, 39.054222], [-77.321269, 39.054331], [-77.321312, 39.054361], [-77.321358, 39.054412], [-77.321405, 39.054443], [-77.321462, 39.054461], [-77.321539, 39.054496], [-77.321746, 39.054602], [-77.321762, 39.054623], [-77.32176, 39.054655], [-77.321772, 39.054681], [-77.321785, 39.05469], [-77.321806, 39.054705], [-77.321895, 39.054766], [-77.321983, 39.054803], [-77.322089, 39.054866], [-77.322119, 39.054895], [-77.322162, 39.054949], [-77.322237, 39.054991], [-77.322313, 39.055042], [-77.322418, 39.055139], [-77.32247, 39.05515], [-77.322508, 39.055164], [-77.322524, 39.055194], [-77.322621, 39.055274], [-77.322666, 39.055289], [-77.322799, 39.055376], [-77.32284, 39.055392], [-77.322889, 39.055401], [-77.322929, 39.055419], [-77.32298, 39.055435], [-77.323016, 39.055454], [-77.323134, 39.055454], [-77.323239, 39.05546], [-77.323357, 39.055505], [-77.323392, 39.055518], [-77.323423, 39.055513], [-77.323472, 39.055515], [-77.323652, 39.05554], [-77.323719, 39.055559], [-77.323822, 39.055577], [-77.323868, 39.055589], [-77.323905, 39.055592], [-77.323951, 39.055605], [-77.32405, 39.055647], [-77.324082, 39.055672], [-77.324107, 39.055689], [-77.32415, 39.055706], [-77.32419, 39.055717], [-77.324207, 39.055738], [-77.324226, 39.055749], [-77.324252, 39.055738], [-77.324348, 39.055809], [-77.324442, 39.055848], [-77.324493, 39.055863], [-77.324538, 39.055882], [-77.324589, 39.055911], [-77.324627, 39.055926], [-77.324738, 39.055992], [-77.324776, 39.056019], [-77.324824, 39.056044], [-77.324925, 39.056116], [-77.325016, 39.056173], [-77.32505, 39.056202], [-77.325103, 39.056261], [-77.325144, 39.056294], [-77.325216, 39.056333], [-77.325246, 39.056359], [-77.32531, 39.056393], [-77.325352, 39.056423], [-77.325378, 39.056448], [-77.325414, 39.056471], [-77.325431, 39.056499], [-77.325452, 39.056523], [-77.325486, 39.056543], [-77.325637, 39.056653], [-77.32568, 39.056694], [-77.32572, 39.056711], [-77.325762, 39.056723], [-77.325808, 39.056743], [-77.32598, 39.05684], [-77.326025, 39.056857], [-77.326145, 39.056925], [-77.326185, 39.05698], [-77.326226, 39.056999], [-77.326244, 39.057012], [-77.326267, 39.057016], [-77.326317, 39.057042], [-77.326347, 39.057076], [-77.326371, 39.05712], [-77.326414, 39.057155], [-77.326437, 39.057164], [-77.32654, 39.057204], [-77.326634, 39.057235], [-77.326635, 39.057236], [-77.326639, 39.057236], [-77.326649, 39.057239], [-77.326687, 39.057266], [-77.32673, 39.057305], [-77.326774, 39.057335], [-77.326823, 39.05736], [-77.326882, 39.057384], [-77.327477, 39.057539], [-77.327505, 39.05754], [-77.327507, 39.05754], [-77.327515, 39.057541], [-77.327519, 39.057541], [-77.327558, 39.057535], [-77.327588, 39.057503], [-77.327619, 39.05748], [-77.327693, 39.057442], [-77.32773, 39.057431], [-77.327801, 39.057422], [-77.327882, 39.057425], [-77.327936, 39.057439], [-77.328043, 39.057485], [-77.328175, 39.057569], [-77.32832, 39.057686], [-77.328407, 39.05775], [-77.328457, 39.057782], [-77.328509, 39.057822], [-77.328647, 39.057906], [-77.328892, 39.058027], [-77.328994, 39.058084], [-77.32907, 39.058121], [-77.329162, 39.058159], [-77.329259, 39.058188], [-77.329339, 39.058205], [-77.329503, 39.058229], [-77.329592, 39.058246], [-77.329678, 39.058253], [-77.329837, 39.058281], [-77.329884, 39.058307], [-77.329917, 39.058335], [-77.33002, 39.058393], [-77.330081, 39.058414], [-77.330132, 39.058419], [-77.330176, 39.058416], [-77.330322, 39.05842], [-77.330389, 39.058429], [-77.330606, 39.058479], [-77.330761, 39.058505], [-77.330928, 39.05854], [-77.331003, 39.058545], [-77.331135, 39.058574], [-77.33134, 39.058638], [-77.331355, 39.058641], [-77.331449, 39.05866], [-77.331543, 39.058687], [-77.331645, 39.058736], [-77.331784, 39.058795], [-77.331787, 39.058796], [-77.331861, 39.058828], [-77.332352, 39.059071], [-77.332686, 39.059226], [-77.332775, 39.059257], [-77.332874, 39.059285], [-77.333055, 39.05931], [-77.333128, 39.059314], [-77.333231, 39.059314], [-77.333318, 39.059324], [-77.333404, 39.059339], [-77.333483, 39.059365], [-77.333496, 39.059371], [-77.333553, 39.059398], [-77.333605, 39.059434], [-77.333642, 39.059471], [-77.333658, 39.059486], [-77.33369, 39.059518], [-77.33371, 39.059529], [-77.333793, 39.05962], [-77.333794, 39.059651], [-77.333839, 39.059699], [-77.333863, 39.059725], [-77.333905, 39.059788], [-77.333958, 39.059882], [-77.333965, 39.059925], [-77.333963, 39.059983], [-77.333953, 39.060026], [-77.333882, 39.06015], [-77.333876, 39.060234], [-77.333882, 39.060624], [-77.333888, 39.06068], [-77.333898, 39.060772], [-77.3339, 39.060903], [-77.333908, 39.060972], [-77.333924, 39.061018], [-77.333931, 39.061041], [-77.333965, 39.061089], [-77.334017, 39.061164], [-77.334065, 39.061214], [-77.334193, 39.061311], [-77.334246, 39.061338], [-77.334414, 39.061393], [-77.334584, 39.061439], [-77.334608, 39.061444], [-77.334652, 39.061453], [-77.33474, 39.061488], [-77.334742, 39.061489], [-77.334904, 39.061553], [-77.335158, 39.061629], [-77.335281, 39.061675], [-77.335347, 39.061692], [-77.335666, 39.061805], [-77.33588, 39.061859], [-77.335992, 39.061894], [-77.336274, 39.061971], [-77.336495, 39.062048], [-77.336752, 39.062132], [-77.33681, 39.062156], [-77.336875, 39.062189], [-77.337006, 39.062239], [-77.337139, 39.062273], [-77.337252, 39.062284], [-77.33735, 39.062301], [-77.337507, 39.062316], [-77.337602, 39.062311], [-77.337737, 39.062328], [-77.337743, 39.062328], [-77.337795, 39.06233], [-77.337862, 39.06234], [-77.337922, 39.062357], [-77.337945, 39.062367], [-77.337946, 39.062368], [-77.337992, 39.062388], [-77.338112, 39.062432], [-77.338195, 39.062468], [-77.338303, 39.062502], [-77.338368, 39.062515], [-77.338509, 39.062524], [-77.338628, 39.062538], [-77.338632, 39.062539], [-77.338635, 39.062539], [-77.338638, 39.06254], [-77.338695, 39.062553], [-77.338793, 39.062582], [-77.338803, 39.062585], [-77.338805, 39.062586], [-77.338825, 39.062592], [-77.338967, 39.062626], [-77.339035, 39.062648], [-77.339039, 39.062649], [-77.339042, 39.06265], [-77.339044, 39.062651], [-77.339123, 39.062677], [-77.339165, 39.062694], [-77.339459, 39.062769], [-77.33961, 39.062796], [-77.339726, 39.062804], [-77.33977, 39.062818], [-77.339821, 39.062827], [-77.339935, 39.062859], [-77.339986, 39.062882], [-77.340042, 39.062898], [-77.340146, 39.062917], [-77.340359, 39.062924], [-77.340434, 39.062935], [-77.340615, 39.062947], [-77.340779, 39.062958], [-77.341008, 39.062962], [-77.341152, 39.06296], [-77.341342, 39.062966], [-77.341344, 39.062966], [-77.341485, 39.062971], [-77.341489, 39.062971], [-77.341671, 39.062973], [-77.341728, 39.06297], [-77.34192, 39.062941], [-77.341986, 39.062938], [-77.34199, 39.062938], [-77.34211, 39.062934], [-77.34246, 39.062972], [-77.342644, 39.062975], [-77.342811, 39.063025], [-77.343153, 39.063036], [-77.343351, 39.063012], [-77.343596, 39.062924], [-77.344412, 39.062868], [-77.344801, 39.06282], [-77.345433, 39.062804], [-77.345798, 39.062762], [-77.346323, 39.062725], [-77.347138, 39.062629], [-77.348626, 39.062509], [-77.349035, 39.062488], [-77.349346, 39.062451], [-77.349844, 39.062403], [-77.35025, 39.062392], [-77.350677, 39.062374], [-77.351233, 39.062355], [-77.351711, 39.062318], [-77.352414, 39.062326], [-77.353066, 39.062392], [-77.353448, 39.062408], [-77.354718, 39.062467], [-77.355397, 39.062507], [-77.356121, 39.062547], [-77.357247, 39.062632], [-77.357615, 39.062632], [-77.358155, 39.062656], [-77.358824, 39.062653], [-77.359301, 39.06261], [-77.360042, 39.062597], [-77.360465, 39.062589], [-77.360813, 39.062578], [-77.361342, 39.062544], [-77.361919, 39.062528], [-77.362291, 39.062568], [-77.363028, 39.062488], [-77.363492, 39.062379], [-77.364138, 39.062294], [-77.364434, 39.062286], [-77.364632, 39.062289], [-77.364909, 39.06227], [-77.3651, 39.062228], [-77.365264, 39.062236], [-77.365533, 39.062238], [-77.365687, 39.06222], [-77.365796, 39.062145], [-77.365902, 39.062105], [-77.366349, 39.062033], [-77.366728, 39.06201], [-77.367247, 39.061906], [-77.367557, 39.06194], [-77.367902, 39.061877], [-77.36796, 39.06181], [-77.367954, 39.061768], [-77.367957, 39.061765], [-77.367956, 39.061759], [-77.367951, 39.061723], [-77.368155, 39.061598], [-77.368161, 39.061641], [-77.368269, 39.061576], [-77.368303, 39.061605], [-77.368325, 39.061624], [-77.368426, 39.061634], [-77.368489, 39.06164], [-77.369847, 39.061613], [-77.370168, 39.061587], [-77.371274, 39.061672], [-77.371779, 39.061778], [-77.372469, 39.061847], [-77.372919, 39.061805], [-77.373772, 39.061762], [-77.37418, 39.061746], [-77.374402, 39.06176], [-77.375039, 39.061857], [-77.375316, 39.061946], [-77.375428, 39.061976], [-77.375918, 39.062057], [-77.376224, 39.06212], [-77.376282, 39.062129], [-77.376308, 39.062142], [-77.376436, 39.062167], [-77.376608, 39.062187], [-77.376953, 39.062247], [-77.377069, 39.062261], [-77.377255, 39.062298], [-77.377497, 39.062331], [-77.377566, 39.062344], [-77.377662, 39.062354], [-77.37784, 39.062395], [-77.377992, 39.062421], [-77.378045, 39.062422], [-77.378096, 39.062408], [-77.378242, 39.062434], [-77.378369, 39.062456], [-77.378435, 39.062453], [-77.378544, 39.062529], [-77.378899, 39.062571], [-77.380008, 39.062635], [-77.38052, 39.062622], [-77.380765, 39.062625], [-77.381096, 39.062593], [-77.381294, 39.062571], [-77.382015, 39.062524], [-77.38237, 39.062486], [-77.382687, 39.06242], [-77.38309, 39.062276], [-77.383813, 39.062165], [-77.384369, 39.062124], [-77.384769, 39.062153], [-77.385796, 39.06214], [-77.38682, 39.062249], [-77.387475, 39.062352], [-77.388107, 39.062467], [-77.389161, 39.062637], [-77.390455, 39.062842], [-77.391755, 39.063113], [-77.392547, 39.06327], [-77.393178, 39.063429], [-77.393789, 39.063618], [-77.394188, 39.063767], [-77.394741, 39.063878], [-77.395386, 39.064056], [-77.395892, 39.064163], [-77.396905, 39.064399], [-77.397554, 39.064532], [-77.398356, 39.064665], [-77.39897, 39.064705], [-77.399731, 39.064686], [-77.400458, 39.064634], [-77.400543, 39.064628], [-77.401127, 39.064546], [-77.401598, 39.064458], [-77.401646, 39.064411], [-77.401647, 39.06441], [-77.401695, 39.064417], [-77.401708, 39.064419], [-77.40171, 39.064419], [-77.401711, 39.06442], [-77.401713, 39.06442], [-77.401905, 39.06445], [-77.40192, 39.064463], [-77.40195, 39.06449], [-77.402362, 39.064511], [-77.402789, 39.0645], [-77.404472, 39.06449], [-77.405018, 39.064514], [-77.405448, 39.064532], [-77.406004, 39.064607], [-77.406196, 39.064633], [-77.406224, 39.064637], [-77.40626, 39.064642], [-77.406263, 39.064642], [-77.406271, 39.064643], [-77.406276, 39.064644], [-77.406283, 39.064645], [-77.406912, 39.064729], [-77.406914, 39.06473], [-77.406916, 39.06473], [-77.406925, 39.064731], [-77.407424, 39.064798], [-77.408919, 39.06508], [-77.409379, 39.065175], [-77.410042, 39.065316], [-77.410693, 39.065468], [-77.410932, 39.065526], [-77.41184, 39.065712], [-77.412461, 39.065853], [-77.413564, 39.06605], [-77.41428, 39.066207], [-77.41468, 39.066279], [-77.415403, 39.066364], [-77.415632, 39.066401], [-77.41584, 39.06642], [-77.416127, 39.066462], [-77.416687, 39.066478], [-77.416939, 39.066457], [-77.417465, 39.066462], [-77.417864, 39.066478], [-77.418089, 39.066443], [-77.418468, 39.066475], [-77.418813, 39.066486], [-77.419079, 39.066465], [-77.419642, 39.066396], [-77.420007, 39.066377], [-77.420461, 39.066406], [-77.42069, 39.066433], [-77.420691, 39.066432], [-77.420695, 39.066427], [-77.420722, 39.066396], [-77.420736, 39.066337], [-77.420796, 39.066446], [-77.420799, 39.066451], [-77.421304, 39.066571], [-77.42198, 39.066693], [-77.422284, 39.066776], [-77.423229, 39.06702], [-77.424717, 39.067363], [-77.425359, 39.067475], [-77.42611, 39.06761], [-77.426687, 39.067682], [-77.426966, 39.067783], [-77.427202, 39.06782], [-77.427663, 39.067913], [-77.428065, 39.068038], [-77.428499, 39.068238], [-77.428953, 39.06852], [-77.429014, 39.068549], [-77.429243, 39.068658], [-77.429567, 39.068785], [-77.430762, 39.069274], [-77.431458, 39.069413], [-77.431936, 39.069552], [-77.431945, 39.069555], [-77.431947, 39.069555], [-77.431955, 39.069557], [-77.432171, 39.06962], [-77.432258, 39.06963], [-77.43226, 39.06963], [-77.432262, 39.069631], [-77.432274, 39.069632], [-77.432499, 39.069657], [-77.432919, 39.069782], [-77.433267, 39.069878], [-77.433536, 39.069926], [-77.434171, 39.070077], [-77.43484, 39.07021], [-77.435185, 39.070274], [-77.436495, 39.070508], [-77.437342, 39.070657], [-77.438031, 39.070726], [-77.438755, 39.070848], [-77.439427, 39.070936], [-77.439473, 39.070945], [-77.439905, 39.071026], [-77.44014, 39.071079], [-77.44084, 39.071207], [-77.4417, 39.071321], [-77.442451, 39.071335], [-77.443007, 39.071335], [-77.443509, 39.071276], [-77.443627, 39.071228], [-77.443738, 39.071263], [-77.443879, 39.071264], [-77.444031, 39.071265], [-77.444321, 39.071284], [-77.444406, 39.07129], [-77.444553, 39.0713], [-77.444772, 39.071287], [-77.44512, 39.071228], [-77.44542, 39.071242], [-77.44568, 39.071305], [-77.445837, 39.071341], [-77.445839, 39.071341], [-77.445842, 39.071342], [-77.445946, 39.071366], [-77.446045, 39.071465], [-77.446113, 39.071494], [-77.446338, 39.071587], [-77.446632, 39.071656], [-77.446942, 39.071704], [-77.447584, 39.071877], [-77.448263, 39.072012], [-77.448854, 39.072169], [-77.44943, 39.072278], [-77.449618, 39.07231], [-77.449871, 39.072281], [-77.450035, 39.072287], [-77.450092, 39.072289], [-77.450263, 39.072323], [-77.450591, 39.072326], [-77.450949, 39.072326], [-77.451864, 39.072334], [-77.452546, 39.072406], [-77.453557, 39.072592], [-77.454731, 39.072815], [-77.455594, 39.073041], [-77.456164, 39.073166], [-77.456963, 39.073403], [-77.456973, 39.073407], [-77.457009, 39.07342], [-77.457202, 39.073493], [-77.45751, 39.073599], [-77.45772, 39.073671], [-77.459017, 39.074189], [-77.459546, 39.074405], [-77.460007, 39.074588], [-77.460284, 39.074721], [-77.460604, 39.074851], [-77.460973, 39.075064], [-77.460984, 39.075072], [-77.461475, 39.075434], [-77.46199, 39.075851], [-77.462225, 39.076069], [-77.462502, 39.076412], [-77.462609, 39.076599], [-77.462618, 39.076616], [-77.462881, 39.07723], [-77.463065, 39.077762], [-77.463161, 39.078052], [-77.463273, 39.078219], [-77.463382, 39.078405], [-77.463475, 39.078573], [-77.46384, 39.079049], [-77.463884, 39.079195], [-77.464045, 39.079434], [-77.464107, 39.079458], [-77.464133, 39.079562], [-77.464157, 39.079615], [-77.464162, 39.079626], [-77.464263, 39.079836], [-77.464901, 39.080729], [-77.465246, 39.081149], [-77.465567, 39.081545], [-77.465877, 39.081922], [-77.466089, 39.082212], [-77.46628, 39.082433], [-77.4664, 39.082552], [-77.466686, 39.082861], [-77.466898, 39.0831], [-77.467184, 39.08344], [-77.467451, 39.083746], [-77.467662, 39.084009], [-77.467823, 39.084184], [-77.468062, 39.084416], [-77.468242, 39.08466], [-77.468331, 39.084801], [-77.468635, 39.085109], [-77.468686, 39.085175], [-77.468826, 39.085354], [-77.468959, 39.08563], [-77.469099, 39.086], [-77.469137, 39.086306], [-77.469099, 39.086649], [-77.46899, 39.08696], [-77.468393, 39.088095], [-77.468304, 39.088344], [-77.468331, 39.088549], [-77.468458, 39.08899], [-77.468662, 39.089397], [-77.468911, 39.089687], [-77.469188, 39.089852], [-77.469618, 39.090104], [-77.469935, 39.090351], [-77.47013, 39.090516], [-77.470335, 39.090777], [-77.470447, 39.090992], [-77.470792, 39.091266], [-77.471427, 39.091797], [-77.471536, 39.091901], [-77.471727, 39.092079], [-77.472208, 39.092566], [-77.472423, 39.092786], [-77.472833, 39.09319], [-77.473065, 39.093499], [-77.473492, 39.094052], [-77.473911, 39.094785], [-77.474358, 39.095609], [-77.474621, 39.096202], [-77.474812, 39.096588], [-77.474963, 39.096928], [-77.475143, 39.0973], [-77.475335, 39.097728], [-77.475461, 39.098028], [-77.475587, 39.098286], [-77.475676, 39.098523], [-77.475816, 39.09877], [-77.475891, 39.098921], [-77.476024, 39.099179], [-77.476072, 39.099318], [-77.476198, 39.099573], [-77.476475, 39.100006], [-77.476713, 39.10028], [-77.476801, 39.100302], [-77.47703, 39.100797], [-77.477044, 39.100827], [-77.477379, 39.101279], [-77.477464, 39.101423], [-77.477498, 39.101469], [-77.477771, 39.101848], [-77.47813, 39.102343], [-77.478219, 39.102523], [-77.47841, 39.102752], [-77.478952, 39.103418], [-77.479217, 39.103693], [-77.479695, 39.104146], [-77.479846, 39.104291], [-77.479986, 39.104455], [-77.480033, 39.104509], [-77.48004, 39.104517], [-77.480041, 39.104518], [-77.480128, 39.104617], [-77.480129, 39.104618], [-77.48014, 39.104631], [-77.480324, 39.104892], [-77.480608, 39.105221], [-77.48085, 39.105516], [-77.481017, 39.105697], [-77.481111, 39.105761], [-77.481172, 39.105805], [-77.481367, 39.105893], [-77.481425, 39.105944], [-77.481655, 39.106133], [-77.482051, 39.10647], [-77.482055, 39.106474], [-77.482065, 39.106482], [-77.482077, 39.106492], [-77.482283, 39.106667], [-77.482451, 39.106824], [-77.48249, 39.106871], [-77.482857, 39.107226], [-77.483095, 39.107448], [-77.483096, 39.107449], [-77.483242, 39.107547], [-77.483406, 39.107686], [-77.483573, 39.107885], [-77.483778, 39.10801], [-77.484007, 39.108193], [-77.484212, 39.108332], [-77.484457, 39.108552], [-77.48516, 39.109124], [-77.485403, 39.109318], [-77.485782, 39.109504], [-77.486474, 39.109833], [-77.486481, 39.109836], [-77.486483, 39.109837], [-77.486485, 39.109837], [-77.486647, 39.109901], [-77.486651, 39.109903], [-77.486672, 39.109911], [-77.487317, 39.110291], [-77.487829, 39.110554], [-77.488207, 39.110626], [-77.488266, 39.110653], [-77.488524, 39.110771], [-77.488818, 39.110914], [-77.488973, 39.110983], [-77.489025, 39.111011], [-77.489179, 39.111066], [-77.489225, 39.111089], [-77.489298, 39.111137], [-77.48957, 39.111251], [-77.489626, 39.11127], [-77.489633, 39.111272], [-77.489678, 39.111292], [-77.489837, 39.111382], [-77.48993, 39.111444], [-77.489961, 39.11146], [-77.490002, 39.111465], [-77.490014, 39.111467], [-77.490053, 39.111468], [-77.490097, 39.111456], [-77.490185, 39.111448], [-77.49021, 39.111455], [-77.490227, 39.111468], [-77.490262, 39.111525], [-77.490291, 39.111557], [-77.490367, 39.111596], [-77.490379, 39.111602], [-77.490424, 39.111615], [-77.490443, 39.111618], [-77.49046, 39.111621], [-77.490487, 39.111635], [-77.490489, 39.111636], [-77.490587, 39.111688], [-77.490662, 39.111741], [-77.490703, 39.111759], [-77.49078, 39.111776], [-77.490944, 39.111784], [-77.490984, 39.111794], [-77.491056, 39.111823], [-77.491087, 39.111829], [-77.491123, 39.111836], [-77.491291, 39.111883], [-77.491338, 39.111904], [-77.491365, 39.111916], [-77.491403, 39.111945], [-77.491521, 39.111964], [-77.491633, 39.111999], [-77.491801, 39.112062], [-77.491801, 39.112055], [-77.491802, 39.112014], [-77.491886, 39.112044], [-77.492261, 39.112192], [-77.492544, 39.112311], [-77.492653, 39.112346], [-77.492727, 39.112363], [-77.49292, 39.112431], [-77.493159, 39.112504], [-77.493534, 39.1126], [-77.49385, 39.112691], [-77.494004, 39.112743], [-77.494097, 39.11278], [-77.494304, 39.112842], [-77.494712, 39.112955], [-77.494844, 39.112996], [-77.495289, 39.11315], [-77.495433, 39.113192], [-77.495761, 39.113262], [-77.495785, 39.11326], [-77.495838, 39.113224], [-77.495863, 39.113267], [-77.495945, 39.113322], [-77.495981, 39.113341], [-77.496086, 39.11338], [-77.496274, 39.113426], [-77.49646, 39.113479], [-77.496585, 39.113508], [-77.496847, 39.113556], [-77.497111, 39.11361], [-77.497392, 39.11365], [-77.497476, 39.113657], [-77.497498, 39.113664], [-77.497507, 39.113684], [-77.497511, 39.113709], [-77.497522, 39.113736], [-77.497532, 39.113743], [-77.497553, 39.113758], [-77.497576, 39.113767], [-77.497646, 39.113769], [-77.49779, 39.113743], [-77.497793, 39.113743], [-77.497795, 39.113742], [-77.497892, 39.113724], [-77.498012, 39.11371], [-77.498128, 39.113707], [-77.49813, 39.113707], [-77.498221, 39.113705], [-77.498418, 39.113694], [-77.498454, 39.113687], [-77.498484, 39.113673], [-77.498508, 39.113662], [-77.498517, 39.113672], [-77.498527, 39.113682], [-77.498556, 39.113692], [-77.49868, 39.113699], [-77.498778, 39.113709], [-77.498971, 39.113747], [-77.499144, 39.113763], [-77.49943, 39.11382], [-77.499895, 39.113942], [-77.500052, 39.113969], [-77.500141, 39.114001], [-77.500332, 39.114083], [-77.500416, 39.114106], [-77.500594, 39.114138], [-77.500719, 39.114161], [-77.500753, 39.114146], [-77.500781, 39.114182], [-77.500831, 39.114201], [-77.500911, 39.114225], [-77.500977, 39.114252], [-77.501127, 39.114299], [-77.501398, 39.114398], [-77.501679, 39.114487], [-77.501906, 39.114558], [-77.502083, 39.114645], [-77.502098, 39.114651], [-77.502159, 39.114676], [-77.502569, 39.114768], [-77.502779, 39.114825], [-77.502809, 39.114835], [-77.503162, 39.114954], [-77.503375, 39.115015], [-77.503464, 39.115036], [-77.503594, 39.115084], [-77.503693, 39.115116], [-77.503894, 39.115167], [-77.504088, 39.115228], [-77.504215, 39.115274], [-77.504217, 39.115275], [-77.504647, 39.115431], [-77.504682, 39.115435], [-77.504757, 39.115464], [-77.504789, 39.115471], [-77.504813, 39.115482], [-77.504888, 39.115504], [-77.504895, 39.115506], [-77.5049, 39.115508], [-77.504912, 39.115512], [-77.505105, 39.115556], [-77.505149, 39.11557], [-77.505152, 39.115571], [-77.505179, 39.115579], [-77.505207, 39.115579], [-77.505229, 39.115587], [-77.505231, 39.115588], [-77.505238, 39.11559], [-77.505255, 39.115593], [-77.505259, 39.115594], [-77.505264, 39.115595], [-77.505267, 39.115595], [-77.505281, 39.115597], [-77.505289, 39.1156], [-77.505312, 39.115609], [-77.505338, 39.115611], [-77.505346, 39.115611], [-77.505354, 39.115614], [-77.505417, 39.115638], [-77.505556, 39.115672], [-77.505596, 39.11569], [-77.505697, 39.115717], [-77.505946, 39.115796], [-77.505984, 39.115801], [-77.506105, 39.115837], [-77.506134, 39.11584], [-77.506176, 39.115855], [-77.506199, 39.115857], [-77.506237, 39.115867], [-77.506265, 39.115867], [-77.506288, 39.115876], [-77.50633, 39.115878], [-77.50642, 39.1159], [-77.506503, 39.115913], [-77.506526, 39.115911], [-77.506554, 39.115915], [-77.506577, 39.115925], [-77.506654, 39.115935], [-77.506686, 39.115944], [-77.506717, 39.115947], [-77.5068, 39.115971], [-77.506842, 39.115983], [-77.506909, 39.115996], [-77.506937, 39.115998], [-77.507008, 39.116034], [-77.507016, 39.116038], [-77.507075, 39.116061], [-77.5071, 39.116076], [-77.507154, 39.116096], [-77.507233, 39.116136], [-77.507259, 39.116142], [-77.507287, 39.116155], [-77.507317, 39.116161], [-77.507417, 39.116206], [-77.507496, 39.116233], [-77.507531, 39.116241], [-77.507603, 39.116273], [-77.507682, 39.116299], [-77.507775, 39.116339], [-77.507794, 39.116347], [-77.507827, 39.116365], [-77.50785, 39.116373], [-77.507895, 39.1164], [-77.507913, 39.11642], [-77.507961, 39.116455], [-77.507986, 39.116473], [-77.508058, 39.116523], [-77.50812, 39.116554], [-77.508147, 39.116576], [-77.508274, 39.116642], [-77.508343, 39.116668], [-77.508371, 39.116674], [-77.508453, 39.116702], [-77.508474, 39.116706], [-77.508569, 39.116725], [-77.508699, 39.11676], [-77.508731, 39.116778], [-77.508864, 39.116828], [-77.50889, 39.116841], [-77.508896, 39.116843], [-77.508898, 39.116844], [-77.5089, 39.116844], [-77.509011, 39.116877], [-77.509039, 39.116878], [-77.509073, 39.11689], [-77.509101, 39.116892], [-77.509125, 39.116906], [-77.509145, 39.116913], [-77.50926, 39.116952], [-77.509309, 39.116981], [-77.509369, 39.117002], [-77.509397, 39.117017], [-77.509523, 39.117069], [-77.50956, 39.117092], [-77.509609, 39.117112], [-77.509702, 39.117141], [-77.509742, 39.117159], [-77.509772, 39.117163], [-77.509805, 39.117181], [-77.509832, 39.117186], [-77.509881, 39.117208], [-77.509905, 39.117213], [-77.509968, 39.117235], [-77.510002, 39.11724], [-77.510065, 39.117258], [-77.510233, 39.117323], [-77.510307, 39.117345], [-77.510356, 39.117365], [-77.510393, 39.117374], [-77.510419, 39.11739], [-77.510488, 39.117418], [-77.51057, 39.117439], [-77.510605, 39.117458], [-77.510689, 39.117482], [-77.51079, 39.117524], [-77.510792, 39.117525], [-77.510854, 39.117551], [-77.510882, 39.117559], [-77.510929, 39.117581], [-77.511091, 39.117627], [-77.511143, 39.117654], [-77.511171, 39.117661], [-77.511399, 39.117761], [-77.511541, 39.117819], [-77.511564, 39.117824], [-77.511697, 39.117875], [-77.511857, 39.11792], [-77.511889, 39.117926], [-77.512004, 39.117962], [-77.512045, 39.117969], [-77.512069, 39.117982], [-77.512091, 39.118], [-77.512209, 39.118052], [-77.512325, 39.118081], [-77.512364, 39.118084], [-77.512397, 39.118092], [-77.512422, 39.118104], [-77.512577, 39.118133], [-77.512624, 39.118135], [-77.512701, 39.118146], [-77.512777, 39.118152], [-77.512884, 39.118181], [-77.512925, 39.118181], [-77.512955, 39.118175], [-77.512978, 39.118166], [-77.51305, 39.118171], [-77.51319, 39.118151], [-77.513225, 39.118143], [-77.513404, 39.11813], [-77.513433, 39.118128], [-77.513479, 39.118128], [-77.513597, 39.118141], [-77.513699, 39.118147], [-77.513852, 39.118144], [-77.513991, 39.118161], [-77.514027, 39.118169], [-77.514114, 39.118188], [-77.514287, 39.118208], [-77.514464, 39.118249], [-77.51462, 39.118296], [-77.514708, 39.118312], [-77.514743, 39.118325], [-77.515017, 39.118391], [-77.515168, 39.118433], [-77.515228, 39.118457], [-77.515265, 39.118464], [-77.515305, 39.118483], [-77.515351, 39.118496], [-77.515461, 39.118538], [-77.515674, 39.118596], [-77.515725, 39.118611], [-77.515729, 39.118612], [-77.51589, 39.11866], [-77.516372, 39.118844], [-77.516408, 39.118863], [-77.516409, 39.118864], [-77.516411, 39.118865], [-77.516414, 39.118866], [-77.516438, 39.118878], [-77.516566, 39.118926], [-77.516579, 39.118931], [-77.516591, 39.118935], [-77.516633, 39.118958], [-77.516841, 39.119023], [-77.517025, 39.119104], [-77.517172, 39.119174], [-77.517281, 39.119238], [-77.517361, 39.119276], [-77.517467, 39.119335], [-77.517477, 39.119341], [-77.517527, 39.119376], [-77.517582, 39.119404], [-77.517716, 39.119492], [-77.517765, 39.119518], [-77.517788, 39.119522], [-77.517932, 39.119583], [-77.517989, 39.119613], [-77.518039, 39.119626], [-77.518244, 39.119719], [-77.518349, 39.119747], [-77.518449, 39.11979], [-77.518489, 39.119812], [-77.518524, 39.119841], [-77.518611, 39.119893], [-77.518628, 39.119898], [-77.518639, 39.119901], [-77.518664, 39.11992], [-77.518665, 39.119921], [-77.518686, 39.119937], [-77.518696, 39.11994], [-77.518709, 39.119944], [-77.518825, 39.120004], [-77.518912, 39.12007], [-77.519041, 39.120139], [-77.519071, 39.120162], [-77.519092, 39.120171], [-77.519193, 39.120243], [-77.519266, 39.120295], [-77.519291, 39.120313], [-77.51935, 39.120348], [-77.519408, 39.120378], [-77.51941, 39.120379], [-77.519413, 39.12038], [-77.519445, 39.120397], [-77.519456, 39.120407], [-77.519457, 39.120408], [-77.51957, 39.120516], [-77.51968, 39.120604], [-77.519701, 39.120613], [-77.519747, 39.120643], [-77.519773, 39.120665], [-77.519797, 39.120679], [-77.519799, 39.120681], [-77.519853, 39.120716], [-77.519923, 39.120769], [-77.519945, 39.120791], [-77.520021, 39.120828], [-77.520094, 39.120877], [-77.520204, 39.120973], [-77.52031, 39.121076], [-77.520372, 39.121146], [-77.520374, 39.121148], [-77.520555, 39.121326], [-77.520595, 39.121377], [-77.52067, 39.121443], [-77.52078, 39.121588], [-77.520813, 39.121621], [-77.520903, 39.121739], [-77.520997, 39.121843], [-77.521086, 39.121926], [-77.521195, 39.122063], [-77.521261, 39.122162], [-77.521321, 39.122231], [-77.521356, 39.12226], [-77.521428, 39.122339], [-77.521574, 39.12256], [-77.521592, 39.12258], [-77.5216, 39.122595], [-77.521603, 39.122601], [-77.521605, 39.122606], [-77.521607, 39.122609], [-77.521684, 39.122757], [-77.521688, 39.122763], [-77.521728, 39.122832], [-77.52173, 39.122836], [-77.521758, 39.122884], [-77.521827, 39.122981], [-77.521869, 39.123046], [-77.521904, 39.123081], [-77.52193, 39.123096], [-77.521981, 39.123145], [-77.521982, 39.123146], [-77.522118, 39.123275], [-77.522251, 39.123447], [-77.522344, 39.123649], [-77.522349, 39.12368], [-77.522511, 39.124011], [-77.522514, 39.124019], [-77.522515, 39.124021], [-77.522552, 39.124106], [-77.522611, 39.124213], [-77.522662, 39.124318], [-77.522667, 39.124329], [-77.522692, 39.124372], [-77.522729, 39.124435], [-77.522763, 39.124503], [-77.522764, 39.124504], [-77.522783, 39.124542], [-77.522833, 39.124622], [-77.52285, 39.124661], [-77.522876, 39.124702], [-77.522879, 39.12472], [-77.522932, 39.124813], [-77.522975, 39.124878], [-77.522989, 39.124916], [-77.523075, 39.125079], [-77.523171, 39.125243], [-77.523223, 39.125321], [-77.523264, 39.125395], [-77.523348, 39.125581], [-77.523406, 39.125649], [-77.523419, 39.125679], [-77.523438, 39.125706], [-77.523467, 39.125767], [-77.52362, 39.125967], [-77.523659, 39.126026], [-77.523701, 39.126081], [-77.523769, 39.126169], [-77.523783, 39.126192], [-77.523796, 39.126215], [-77.523839, 39.126297], [-77.523844, 39.126307], [-77.523889, 39.126377], [-77.523901, 39.126406], [-77.523934, 39.126464], [-77.523987, 39.126558], [-77.524037, 39.12667], [-77.524138, 39.126848], [-77.524167, 39.126909], [-77.524242, 39.127017], [-77.524316, 39.127104], [-77.52443, 39.127311], [-77.524466, 39.127355], [-77.524537, 39.12746], [-77.524602, 39.127594], [-77.524617, 39.127639], [-77.524666, 39.127728], [-77.524701, 39.127842], [-77.524736, 39.12799], [-77.524776, 39.128127], [-77.52481, 39.128192], [-77.524829, 39.128254], [-77.524843, 39.128272], [-77.524869, 39.128329], [-77.524874, 39.128361], [-77.524889, 39.1284], [-77.524891, 39.12842], [-77.524926, 39.128516], [-77.524939, 39.128579], [-77.524967, 39.128643], [-77.524971, 39.128705], [-77.525, 39.128792], [-77.525001, 39.12881], [-77.525048, 39.128926], [-77.525069, 39.129014], [-77.525083, 39.129043], [-77.525091, 39.129079], [-77.525112, 39.129088], [-77.525131, 39.129152], [-77.525146, 39.129182], [-77.525177, 39.129274], [-77.5252, 39.129398], [-77.525214, 39.129446], [-77.525214, 39.129448], [-77.525215, 39.129449], [-77.525218, 39.129461], [-77.525238, 39.129567], [-77.525239, 39.129583], [-77.525239, 39.129599], [-77.525264, 39.129733], [-77.525266, 39.129846], [-77.525255, 39.129898], [-77.525257, 39.129969], [-77.525267, 39.129996], [-77.525275, 39.130063], [-77.525287, 39.130103], [-77.52529, 39.13013], [-77.525309, 39.130198], [-77.52531, 39.130235], [-77.52533, 39.130347], [-77.525329, 39.130375], [-77.525342, 39.130456], [-77.525351, 39.130587], [-77.525359, 39.130641], [-77.525358, 39.130722], [-77.525377, 39.130856], [-77.525386, 39.130881], [-77.525411, 39.131004], [-77.525474, 39.131136], [-77.525505, 39.131248], [-77.525506, 39.131267], [-77.525506, 39.13128], [-77.525508, 39.131318], [-77.525529, 39.131392], [-77.525547, 39.131495], [-77.525562, 39.13153], [-77.525602, 39.131705], [-77.525636, 39.131813], [-77.525647, 39.131879], [-77.525687, 39.132036], [-77.525692, 39.132054], [-77.52572, 39.132108], [-77.5258, 39.132317], [-77.525815, 39.132342], [-77.525885, 39.132503], [-77.525904, 39.132538], [-77.525962, 39.132709], [-77.525984, 39.132774], [-77.525985, 39.132796], [-77.526027, 39.132981], [-77.526064, 39.133121], [-77.526072, 39.133169], [-77.526086, 39.133204], [-77.526112, 39.133302], [-77.526194, 39.133507], [-77.526199, 39.133531], [-77.52629, 39.133697], [-77.526307, 39.133746], [-77.526328, 39.133789], [-77.526329, 39.133791], [-77.52633, 39.133794], [-77.526342, 39.133816], [-77.526346, 39.133833], [-77.526346, 39.133835], [-77.526402, 39.134077], [-77.526411, 39.134132], [-77.526427, 39.134167], [-77.52644, 39.134216], [-77.526441, 39.134217], [-77.526441, 39.134219], [-77.526444, 39.134229], [-77.526465, 39.134285], [-77.526546, 39.134503], [-77.526581, 39.134612], [-77.526619, 39.134694], [-77.526632, 39.134732], [-77.526663, 39.134789], [-77.52667, 39.134821], [-77.526713, 39.134895], [-77.526779, 39.135097], [-77.526804, 39.135204], [-77.526843, 39.135325], [-77.526844, 39.135327], [-77.526865, 39.135392], [-77.526921, 39.135521], [-77.526948, 39.135613], [-77.526951, 39.135634], [-77.526961, 39.135696], [-77.526972, 39.135786], [-77.526972, 39.135791], [-77.526983, 39.135893], [-77.527003, 39.135979], [-77.527011, 39.136035], [-77.527013, 39.13605], [-77.527023, 39.136079], [-77.527024, 39.136107], [-77.527081, 39.136333], [-77.527116, 39.136527], [-77.527112, 39.136625], [-77.527122, 39.136705], [-77.527122, 39.136717], [-77.527142, 39.136778], [-77.527174, 39.137167], [-77.527175, 39.137323], [-77.527175, 39.137352], [-77.527184, 39.137422], [-77.527182, 39.137446], [-77.527197, 39.137547], [-77.527201, 39.137629], [-77.527195, 39.13766], [-77.5272, 39.137852], [-77.527217, 39.137887], [-77.52725, 39.137906], [-77.527236, 39.137929], [-77.527195, 39.137942], [-77.527201, 39.138042], [-77.527197, 39.138076], [-77.5272, 39.138104], [-77.527196, 39.13814], [-77.52723, 39.138339], [-77.527228, 39.138371], [-77.52726, 39.138619], [-77.527268, 39.138794], [-77.527267, 39.138883], [-77.527272, 39.138929], [-77.527272, 39.138997], [-77.527284, 39.139151], [-77.52728, 39.139335], [-77.527272, 39.139408], [-77.527273, 39.139447], [-77.527266, 39.139473], [-77.527272, 39.139505], [-77.52727, 39.139535], [-77.527275, 39.139561], [-77.527271, 39.139617], [-77.527273, 39.13975], [-77.527267, 39.139806], [-77.527257, 39.139843], [-77.527262, 39.139888], [-77.52726, 39.140038], [-77.527245, 39.140091], [-77.527237, 39.140156], [-77.527247, 39.140224], [-77.52723, 39.140417], [-77.527231, 39.140478], [-77.527223, 39.140552], [-77.527224, 39.140703], [-77.527231, 39.140759], [-77.527228, 39.140824], [-77.527234, 39.140904], [-77.527243, 39.14093], [-77.527243, 39.140997], [-77.527252, 39.141118], [-77.527252, 39.141247], [-77.527275, 39.141513], [-77.527302, 39.141729], [-77.52732, 39.141984], [-77.527319, 39.142016], [-77.527328, 39.142046], [-77.527326, 39.142077], [-77.527334, 39.142107], [-77.527331, 39.142192], [-77.527356, 39.142415], [-77.527399, 39.142611], [-77.527408, 39.142632], [-77.527409, 39.142656], [-77.527437, 39.142732], [-77.527494, 39.142934], [-77.527521, 39.14312], [-77.52753, 39.143155], [-77.527542, 39.143279], [-77.52758, 39.143474], [-77.527581, 39.143513], [-77.527598, 39.143579], [-77.527619, 39.143731], [-77.527616, 39.143791], [-77.527635, 39.143962], [-77.527642, 39.144336], [-77.527647, 39.144398], [-77.527637, 39.144552], [-77.527635, 39.144582], [-77.527642, 39.144616], [-77.527658, 39.14464], [-77.527664, 39.14465], [-77.527668, 39.144651], [-77.527687, 39.144658], [-77.527661, 39.144733], [-77.527647, 39.144738], [-77.527639, 39.14474], [-77.527624, 39.144745], [-77.527588, 39.144785], [-77.527584, 39.144827], [-77.527566, 39.144862], [-77.527542, 39.144965], [-77.52754, 39.145116], [-77.527531, 39.145228], [-77.527541, 39.145426], [-77.527555, 39.145556], [-77.527546, 39.145686], [-77.527526, 39.145762], [-77.527516, 39.145843], [-77.527517, 39.145919], [-77.527505, 39.145982], [-77.527512, 39.146029], [-77.527505, 39.146223], [-77.527491, 39.146396], [-77.527466, 39.146548], [-77.527436, 39.14668], [-77.527432, 39.146719], [-77.527421, 39.146762], [-77.52737, 39.146865], [-77.527362, 39.146893], [-77.527332, 39.146945], [-77.527324, 39.146969], [-77.527271, 39.147028], [-77.527251, 39.147057], [-77.527229, 39.147075], [-77.527183, 39.147139], [-77.527174, 39.14716], [-77.52707, 39.147269], [-77.526999, 39.147317], [-77.526942, 39.147366], [-77.526685, 39.147529], [-77.526609, 39.147568], [-77.526588, 39.147588], [-77.526552, 39.147613], [-77.526485, 39.147645], [-77.526302, 39.14772], [-77.526188, 39.147777], [-77.526162, 39.147799], [-77.526094, 39.147828], [-77.526075, 39.147845], [-77.525919, 39.147912], [-77.525865, 39.147944], [-77.525683, 39.148024], [-77.525533, 39.14811], [-77.525364, 39.148226], [-77.525275, 39.148313], [-77.525214, 39.148357], [-77.525109, 39.148457], [-77.525024, 39.14858], [-77.524995, 39.148634], [-77.524936, 39.148723], [-77.524911, 39.148778], [-77.524869, 39.148851], [-77.524853, 39.148903], [-77.524782, 39.149044], [-77.524776, 39.149066], [-77.524742, 39.149139], [-77.524678, 39.149322], [-77.524643, 39.14939], [-77.524597, 39.149543], [-77.524482, 39.149836], [-77.524478, 39.149869], [-77.524449, 39.149942], [-77.524438, 39.149977], [-77.524405, 39.150036], [-77.524367, 39.15014], [-77.524345, 39.150176], [-77.524336, 39.150221], [-77.524271, 39.150393], [-77.524256, 39.150527], [-77.524209, 39.150675], [-77.524202, 39.150714], [-77.524128, 39.150965], [-77.524126, 39.150995], [-77.524111, 39.151034], [-77.524123, 39.15105], [-77.524084, 39.151188], [-77.524069, 39.151261], [-77.524069, 39.151282], [-77.524047, 39.151362], [-77.524001, 39.15146], [-77.523946, 39.151651], [-77.523926, 39.151807], [-77.523908, 39.151835], [-77.523887, 39.151933], [-77.523828, 39.152106], [-77.523821, 39.152148], [-77.523789, 39.15225], [-77.523784, 39.152283], [-77.523773, 39.152312], [-77.523734, 39.152533], [-77.523734, 39.152587], [-77.523716, 39.152712], [-77.523606, 39.153019], [-77.523572, 39.153195], [-77.523548, 39.15329], [-77.523526, 39.153351], [-77.523459, 39.153497], [-77.523414, 39.153639], [-77.523395, 39.153776], [-77.523372, 39.153867], [-77.523372, 39.153887], [-77.523293, 39.15412], [-77.523228, 39.154347], [-77.523198, 39.154482], [-77.523184, 39.154525], [-77.523183, 39.154551], [-77.523075, 39.154891], [-77.523065, 39.154951], [-77.523028, 39.15506], [-77.523025, 39.155069], [-77.523015, 39.155105], [-77.522993, 39.155188], [-77.522933, 39.15533], [-77.522888, 39.155486], [-77.522872, 39.155528], [-77.522855, 39.155617], [-77.522848, 39.155692], [-77.522837, 39.155723], [-77.52283, 39.155781], [-77.522806, 39.155835], [-77.522668, 39.15626], [-77.522655, 39.156316], [-77.522644, 39.156332], [-77.52262, 39.156398], [-77.522594, 39.156489], [-77.522558, 39.156665], [-77.522531, 39.156733], [-77.522485, 39.156902], [-77.522462, 39.157011], [-77.522445, 39.157057], [-77.522421, 39.157156], [-77.522374, 39.157266], [-77.522298, 39.15752], [-77.52225, 39.157711], [-77.522145, 39.15798], [-77.522118, 39.158068], [-77.522087, 39.158237], [-77.522049, 39.15833], [-77.522022, 39.158458], [-77.522022, 39.158493], [-77.522037, 39.158528], [-77.522061, 39.158544], [-77.522072, 39.158551], [-77.522097, 39.158561], [-77.522103, 39.158589], [-77.522038, 39.158619], [-77.521993, 39.158639], [-77.521961, 39.158667], [-77.521926, 39.158769], [-77.521925, 39.15885], [-77.521914, 39.158875], [-77.521916, 39.158912], [-77.521886, 39.15901], [-77.521816, 39.159208], [-77.521807, 39.159249], [-77.521793, 39.15928], [-77.521769, 39.159443], [-77.521765, 39.159612], [-77.52177, 39.159874], [-77.521766, 39.159918], [-77.521771, 39.159959], [-77.521767, 39.160007], [-77.521771, 39.160045], [-77.521764, 39.160083], [-77.521757, 39.160201], [-77.521749, 39.160232], [-77.521745, 39.160301], [-77.521706, 39.160481], [-77.521617, 39.1608], [-77.521587, 39.160869], [-77.521581, 39.160917], [-77.521552, 39.161034], [-77.521517, 39.161206], [-77.521448, 39.161416], [-77.521431, 39.161448], [-77.5214, 39.161541], [-77.521398, 39.161569], [-77.521374, 39.161662], [-77.521343, 39.161742], [-77.521315, 39.161799], [-77.5213, 39.161881], [-77.521255, 39.161978], [-77.521231, 39.162007], [-77.521213, 39.162038], [-77.521206, 39.162062], [-77.521175, 39.162112], [-77.521058, 39.162422], [-77.520989, 39.162584], [-77.520868, 39.162776], [-77.520725, 39.163064], [-77.520609, 39.163383], [-77.520518, 39.163526], [-77.520456, 39.163661], [-77.520421, 39.163725], [-77.520381, 39.163851], [-77.520356, 39.163882], [-77.520317, 39.163958], [-77.520307, 39.163979], [-77.520292, 39.164019], [-77.520208, 39.164213], [-77.519913, 39.164689], [-77.519808, 39.164882], [-77.519791, 39.16494], [-77.519751, 39.164998], [-77.519556, 39.165379], [-77.519502, 39.165458], [-77.519481, 39.165532], [-77.519393, 39.165702], [-77.519338, 39.165846], [-77.519258, 39.165986], [-77.519192, 39.166083], [-77.519152, 39.166161], [-77.519006, 39.166535], [-77.518918, 39.166723], [-77.518887, 39.166799], [-77.518872, 39.166869], [-77.518873, 39.166941], [-77.518881, 39.167012], [-77.518869, 39.167073], [-77.518795, 39.167203], [-77.518692, 39.167439], [-77.51866, 39.167578], [-77.518606, 39.167748], [-77.518572, 39.167787], [-77.518543, 39.167839], [-77.518451, 39.167974], [-77.518294, 39.168279], [-77.518218, 39.168403], [-77.518144, 39.1685], [-77.518105, 39.168559], [-77.518003, 39.168764], [-77.517888, 39.168948], [-77.517803, 39.169114], [-77.517653, 39.169367], [-77.517624, 39.169425], [-77.517575, 39.169498], [-77.517534, 39.169549], [-77.51741, 39.169731], [-77.517219, 39.169997], [-77.517138, 39.170132], [-77.517109, 39.170173], [-77.517067, 39.170256], [-77.517033, 39.170305], [-77.516927, 39.170429], [-77.516904, 39.170466], [-77.516896, 39.170478], [-77.516837, 39.170574], [-77.516796, 39.170648], [-77.516695, 39.170798], [-77.51651, 39.171039], [-77.516479, 39.171093], [-77.516344, 39.171286], [-77.516256, 39.171394], [-77.516219, 39.17146], [-77.516202, 39.171501], [-77.516162, 39.171549], [-77.516114, 39.17163], [-77.516067, 39.171682], [-77.515858, 39.171992], [-77.515817, 39.172032], [-77.515548, 39.172384], [-77.515436, 39.172553], [-77.515292, 39.172753], [-77.515267, 39.172795], [-77.515051, 39.173077], [-77.514757, 39.173476], [-77.514573, 39.173753], [-77.514487, 39.173874], [-77.514403, 39.17403], [-77.514138, 39.174455], [-77.513998, 39.174669], [-77.513956, 39.17475], [-77.513902, 39.174833], [-77.513792, 39.174983], [-77.513756, 39.175056], [-77.513646, 39.17523], [-77.513503, 39.175401], [-77.513226, 39.175774], [-77.513159, 39.175858], [-77.51312, 39.175918], [-77.513119, 39.17592], [-77.513118, 39.175921], [-77.513104, 39.175942], [-77.513066, 39.175992], [-77.513062, 39.175998], [-77.512933, 39.176171], [-77.512827, 39.176284], [-77.512784, 39.176336], [-77.512748, 39.176388], [-77.512539, 39.176604], [-77.512356, 39.176808], [-77.51216, 39.177062], [-77.512133, 39.177105], [-77.511967, 39.177299], [-77.511854, 39.177412], [-77.511802, 39.177451], [-77.51168, 39.177609], [-77.511632, 39.177737], [-77.511614, 39.177774], [-77.511578, 39.177813], [-77.511546, 39.177857], [-77.511526, 39.177875], [-77.511496, 39.17792], [-77.511467, 39.177975], [-77.511422, 39.178022], [-77.511338, 39.178086], [-77.511217, 39.1782], [-77.511156, 39.178267], [-77.511131, 39.178308], [-77.511107, 39.178377], [-77.511087, 39.178419], [-77.511, 39.178534], [-77.510942, 39.178588], [-77.510852, 39.178707], [-77.510821, 39.178741], [-77.510791, 39.178785], [-77.510742, 39.178833], [-77.510569, 39.178969], [-77.510532, 39.179007], [-77.510472, 39.179094], [-77.510308, 39.179282], [-77.510131, 39.179443], [-77.510081, 39.179469], [-77.510028, 39.179491], [-77.509951, 39.179537], [-77.509915, 39.179572], [-77.509845, 39.179657], [-77.509708, 39.179773], [-77.509656, 39.179812], [-77.509616, 39.17983], [-77.509508, 39.179859], [-77.509228, 39.180034], [-77.509125, 39.180109], [-77.50897, 39.180238], [-77.508898, 39.180291], [-77.508845, 39.180321], [-77.50879, 39.180343], [-77.508676, 39.180436], [-77.508622, 39.180485], [-77.508567, 39.180528], [-77.508528, 39.180566], [-77.508494, 39.180588], [-77.50842, 39.18066], [-77.50826, 39.180786], [-77.50821, 39.180837], [-77.508165, 39.180909], [-77.508141, 39.180959], [-77.508107, 39.181014], [-77.508, 39.18109], [-77.507909, 39.181144], [-77.507858, 39.181184], [-77.507776, 39.181235], [-77.507731, 39.181268], [-77.50756, 39.181375], [-77.50754, 39.181393], [-77.507533, 39.18141], [-77.507386, 39.18145], [-77.507338, 39.181413], [-77.50729, 39.181398], [-77.507236, 39.181392], [-77.507183, 39.181396], [-77.507117, 39.181413], [-77.507073, 39.181435], [-77.507009, 39.181458], [-77.506934, 39.181494], [-77.506851, 39.181522], [-77.506818, 39.181539], [-77.506625, 39.181637], [-77.506579, 39.181665], [-77.506372, 39.181743], [-77.506294, 39.181777], [-77.50613, 39.181863], [-77.505977, 39.181937], [-77.505731, 39.182039], [-77.505639, 39.18207], [-77.505515, 39.182103], [-77.504921, 39.182295], [-77.504654, 39.182357], [-77.504555, 39.182387], [-77.504351, 39.182432], [-77.504272, 39.182441], [-77.504059, 39.182495], [-77.503944, 39.182514], [-77.503834, 39.182542], [-77.503748, 39.182564], [-77.503656, 39.182582], [-77.50356, 39.182607], [-77.503263, 39.182643], [-77.503122, 39.182655], [-77.503066, 39.18266], [-77.503009, 39.182667], [-77.503007, 39.182667], [-77.502675, 39.182711], [-77.502601, 39.182714], [-77.502317, 39.182748], [-77.50209, 39.182787], [-77.501878, 39.182815], [-77.501813, 39.182816], [-77.501811, 39.182816], [-77.501659, 39.182846], [-77.50147, 39.182892], [-77.501423, 39.1829], [-77.50141, 39.1829], [-77.50122, 39.182936], [-77.501121, 39.182947], [-77.501024, 39.182958], [-77.500942, 39.18297], [-77.500939, 39.18297], [-77.500937, 39.182971], [-77.500905, 39.182976], [-77.500903, 39.182976], [-77.500823, 39.182992], [-77.500637, 39.183044], [-77.500516, 39.183093], [-77.500337, 39.183148], [-77.500202, 39.183204], [-77.499915, 39.183287], [-77.499815, 39.183316], [-77.499812, 39.183317], [-77.499779, 39.183327], [-77.499772, 39.183329], [-77.49977, 39.183329], [-77.499644, 39.183365], [-77.499628, 39.183369], [-77.499278, 39.183467], [-77.499166, 39.183492], [-77.4989, 39.183574], [-77.498897, 39.183575], [-77.498626, 39.183644], [-77.498297, 39.183704], [-77.498255, 39.183707], [-77.498168, 39.183722], [-77.498089, 39.183731], [-77.497908, 39.183762], [-77.497785, 39.183775], [-77.497749, 39.183782], [-77.497702, 39.183785], [-77.49761, 39.183807], [-77.497447, 39.18383], [-77.497136, 39.18385], [-77.497002, 39.183864], [-77.496979, 39.183872], [-77.496802, 39.183904], [-77.49656, 39.183964], [-77.496386, 39.184014], [-77.496356, 39.184029], [-77.496332, 39.184036], [-77.496276, 39.184052], [-77.496128, 39.184082], [-77.495866, 39.184149], [-77.495804, 39.184159], [-77.495802, 39.184159], [-77.495777, 39.184163], [-77.495551, 39.184222], [-77.495471, 39.184249], [-77.495207, 39.184303], [-77.495041, 39.184345], [-77.494533, 39.184456], [-77.49442, 39.184487], [-77.494257, 39.184517], [-77.493885, 39.184602], [-77.493722, 39.184636], [-77.49372, 39.184636], [-77.493379, 39.184705], [-77.493243, 39.184744], [-77.493151, 39.18477], [-77.493032, 39.184793], [-77.492815, 39.184846], [-77.492719, 39.184879], [-77.492494, 39.184932], [-77.492349, 39.184975], [-77.492305, 39.184981], [-77.492188, 39.185018], [-77.492083, 39.185042], [-77.492053, 39.185051], [-77.491901, 39.185098], [-77.491823, 39.185117], [-77.491653, 39.185158], [-77.491432, 39.185207], [-77.4914, 39.185219], [-77.491127, 39.185287], [-77.49106, 39.185299], [-77.490938, 39.185321], [-77.490809, 39.185364], [-77.490793, 39.185371], [-77.490743, 39.185394], [-77.490616, 39.185414], [-77.490239, 39.185463], [-77.490114, 39.185494], [-77.490057, 39.185503], [-77.48994, 39.18553], [-77.489739, 39.185562], [-77.489603, 39.185547], [-77.489478, 39.18555], [-77.489257, 39.185607], [-77.489212, 39.185614], [-77.489168, 39.185612], [-77.488949, 39.185626], [-77.488841, 39.185645], [-77.488709, 39.185679], [-77.488638, 39.185687], [-77.488553, 39.18569], [-77.488499, 39.185686], [-77.488444, 39.185687], [-77.488285, 39.185703], [-77.488198, 39.185716], [-77.488159, 39.185733], [-77.488025, 39.185759], [-77.487938, 39.185761], [-77.487838, 39.185767], [-77.487474, 39.185811], [-77.48732, 39.185819], [-77.487163, 39.185841], [-77.48703, 39.185855], [-77.48673, 39.185903], [-77.486548, 39.185901], [-77.486331, 39.185921], [-77.486207, 39.185949], [-77.48605, 39.185975], [-77.486011, 39.185988], [-77.485954, 39.185997], [-77.485904, 39.186012], [-77.485797, 39.186033], [-77.485405, 39.186158], [-77.485368, 39.186175], [-77.485238, 39.186209], [-77.485081, 39.186264], [-77.484933, 39.186327], [-77.484629, 39.18649], [-77.484512, 39.186533], [-77.484466, 39.186545], [-77.484433, 39.186559], [-77.484342, 39.18658], [-77.484159, 39.186676], [-77.48412, 39.186689], [-77.484014, 39.186742], [-77.483946, 39.186787], [-77.483813, 39.186851], [-77.483619, 39.186959], [-77.483486, 39.187016], [-77.483411, 39.187042], [-77.483324, 39.18709], [-77.4832, 39.187144], [-77.48315, 39.187161], [-77.48311, 39.18718], [-77.482982, 39.187218], [-77.482895, 39.187254], [-77.482803, 39.187301], [-77.482765, 39.187329], [-77.482715, 39.187357], [-77.482639, 39.18739], [-77.482595, 39.187421], [-77.482403, 39.187515], [-77.48224, 39.187562], [-77.482206, 39.187575], [-77.482176, 39.18758], [-77.482089, 39.187608], [-77.482041, 39.187633], [-77.481846, 39.187711], [-77.481756, 39.187743], [-77.481658, 39.187768], [-77.481618, 39.187772], [-77.481485, 39.187809], [-77.481204, 39.187917], [-77.481101, 39.187984], [-77.481056, 39.188025], [-77.481039, 39.188048], [-77.481014, 39.18807], [-77.480859, 39.188141], [-77.480727, 39.188224], [-77.480643, 39.188287], [-77.480622, 39.188327], [-77.480646, 39.188362], [-77.480687, 39.188375], [-77.48072, 39.188374], [-77.480867, 39.188342], [-77.480889, 39.188334], [-77.480948, 39.188311], [-77.480963, 39.188315], [-77.480991, 39.188321], [-77.480978, 39.188439], [-77.480947, 39.188414], [-77.480901, 39.188398], [-77.480831, 39.188403], [-77.480786, 39.188413], [-77.480724, 39.188427], [-77.480691, 39.188431], [-77.480664, 39.188427], [-77.480629, 39.18841], [-77.480615, 39.188395], [-77.48058, 39.188386], [-77.480547, 39.188391], [-77.480483, 39.188425], [-77.480406, 39.188491], [-77.480179, 39.18867], [-77.480099, 39.188722], [-77.48006, 39.188743], [-77.479906, 39.188793], [-77.479845, 39.18883], [-77.479778, 39.188882], [-77.47974, 39.188901], [-77.479159, 39.189329], [-77.478959, 39.189483], [-77.478674, 39.189679], [-77.478513, 39.189833], [-77.478472, 39.189878], [-77.478281, 39.190056], [-77.477948, 39.190387], [-77.477768, 39.19054], [-77.4777, 39.190608], [-77.477609, 39.190752], [-77.47757, 39.190806], [-77.477535, 39.190876], [-77.477445, 39.191012], [-77.477424, 39.191033], [-77.477324, 39.191095], [-77.477285, 39.191125], [-77.477247, 39.191144], [-77.477151, 39.191228], [-77.477097, 39.191295], [-77.477067, 39.191323], [-77.477004, 39.191407], [-77.476918, 39.1915], [-77.476833, 39.191611], [-77.476713, 39.191755], [-77.476666, 39.191828], [-77.476532, 39.192069], [-77.476455, 39.192233], [-77.476399, 39.192382], [-77.476342, 39.192485], [-77.476242, 39.192743], [-77.4762, 39.192826], [-77.476139, 39.192909], [-77.476105, 39.192948], [-77.476072, 39.193004], [-77.476054, 39.193056], [-77.476025, 39.193112], [-77.475999, 39.193186], [-77.475965, 39.193246], [-77.475952, 39.193292], [-77.475851, 39.193508], [-77.475819, 39.193557], [-77.475742, 39.193626], [-77.475701, 39.193681], [-77.475684, 39.193716], [-77.475648, 39.193885], [-77.475619, 39.193961], [-77.475579, 39.194046], [-77.475548, 39.194143], [-77.475425, 39.194456], [-77.47539, 39.194566], [-77.475398, 39.194588], [-77.475329, 39.194743], [-77.475332, 39.194768], [-77.475324, 39.194906], [-77.475324, 39.194908], [-77.475322, 39.194934], [-77.475314, 39.194937], [-77.47525, 39.194958], [-77.475227, 39.194975], [-77.475202, 39.195013], [-77.475185, 39.195102], [-77.47518, 39.195193], [-77.475154, 39.19528], [-77.475121, 39.195344], [-77.475115, 39.19538], [-77.47509, 39.195441], [-77.47505, 39.195657], [-77.475047, 39.195705], [-77.475, 39.195891], [-77.474975, 39.196069], [-77.474917, 39.196326], [-77.474912, 39.196366], [-77.474918, 39.196467], [-77.474919, 39.196658], [-77.474909, 39.196733], [-77.474917, 39.196821], [-77.474911, 39.197079], [-77.47493, 39.197337], [-77.474929, 39.197399], [-77.474961, 39.197511], [-77.474985, 39.197576], [-77.474993, 39.19761], [-77.475024, 39.197666], [-77.475085, 39.197733], [-77.475126, 39.197821], [-77.475175, 39.198007], [-77.475226, 39.198105], [-77.475238, 39.19814], [-77.475333, 39.198298], [-77.475402, 39.198509], [-77.475408, 39.198565], [-77.475497, 39.198801], [-77.475503, 39.198848], [-77.475547, 39.199008], [-77.475574, 39.199206], [-77.475612, 39.199362], [-77.475655, 39.199466], [-77.475703, 39.199693], [-77.475709, 39.199746], [-77.475712, 39.199882], [-77.475719, 39.19992], [-77.475753, 39.199995], [-77.475805, 39.200085], [-77.47583, 39.2002], [-77.475829, 39.200376], [-77.475835, 39.200464], [-77.475895, 39.20059], [-77.475908, 39.20064], [-77.475913, 39.200681], [-77.475907, 39.200802], [-77.475924, 39.200889], [-77.475921, 39.201093], [-77.475927, 39.201124], [-77.475925, 39.201159], [-77.47596, 39.20132], [-77.475959, 39.201513], [-77.475968, 39.201531], [-77.475968, 39.201617], [-77.475979, 39.201735], [-77.475989, 39.201771], [-77.475997, 39.201835], [-77.475983, 39.201952], [-77.475969, 39.202005], [-77.475953, 39.202062], [-77.47594, 39.202095], [-77.475926, 39.20211], [-77.475912, 39.202205], [-77.475918, 39.202297], [-77.475921, 39.202342], [-77.475913, 39.202409], [-77.475902, 39.202435], [-77.475873, 39.202481], [-77.47584, 39.202533], [-77.475822, 39.20258], [-77.475812, 39.202727], [-77.475812, 39.202729], [-77.475811, 39.202749], [-77.475788, 39.202861], [-77.47576, 39.202942], [-77.475759, 39.202945], [-77.475758, 39.202947], [-77.475751, 39.202967], [-77.475703, 39.203104], [-77.475672, 39.203173], [-77.475665, 39.203205], [-77.475601, 39.203361], [-77.475539, 39.203458], [-77.475429, 39.203587], [-77.475392, 39.20363], [-77.47526, 39.20384], [-77.475188, 39.203967], [-77.475132, 39.204029], [-77.475107, 39.204084], [-77.475113, 39.204185], [-77.475103, 39.204252], [-77.475095, 39.204278], [-77.475086, 39.204308], [-77.475041, 39.204369], [-77.475039, 39.204371], [-77.475014, 39.204415], [-77.475005, 39.204444], [-77.474968, 39.20452], [-77.474948, 39.204561], [-77.474914, 39.204621], [-77.474822, 39.204749], [-77.474808, 39.204779], [-77.47479, 39.204802], [-77.474759, 39.204875], [-77.474742, 39.204933], [-77.474691, 39.205039], [-77.474648, 39.205099], [-77.474617, 39.205125], [-77.474594, 39.205162], [-77.474654, 39.205173], [-77.474683, 39.205201], [-77.474695, 39.205228], [-77.4747, 39.205252], [-77.474694, 39.205287], [-77.474658, 39.205336], [-77.474576, 39.205399], [-77.474521, 39.205435], [-77.474491, 39.205471], [-77.474478, 39.205502], [-77.474473, 39.205565], [-77.474495, 39.205665], [-77.474503, 39.205747], [-77.47452, 39.205768], [-77.474557, 39.205781], [-77.474599, 39.205785], [-77.474662, 39.205812], [-77.474706, 39.205814], [-77.474791, 39.205799], [-77.474835, 39.205785], [-77.474916, 39.205716], [-77.47495, 39.205679], [-77.475002, 39.205587], [-77.475043, 39.205494], [-77.475075, 39.205469], [-77.475101, 39.20546], [-77.475129, 39.205468], [-77.475159, 39.205497], [-77.475146, 39.205546], [-77.475145, 39.205608], [-77.475125, 39.205665], [-77.475053, 39.205746], [-77.475039, 39.205769], [-77.475043, 39.205831], [-77.475053, 39.20587], [-77.475052, 39.205924], [-77.475027, 39.205994], [-77.475005, 39.206114], [-77.474967, 39.206181], [-77.474945, 39.206262], [-77.474891, 39.206349], [-77.474763, 39.206498], [-77.474756, 39.206516], [-77.474761, 39.206553], [-77.474603, 39.206636], [-77.474553, 39.206662], [-77.474551, 39.206663], [-77.474533, 39.206679], [-77.474529, 39.206688], [-77.474475, 39.206806], [-77.474434, 39.206947], [-77.47438, 39.207135], [-77.474327, 39.207292], [-77.47431, 39.207375], [-77.474277, 39.207458], [-77.474201, 39.207603], [-77.47419, 39.207635], [-77.474178, 39.207716], [-77.474158, 39.207771], [-77.474066, 39.207868], [-77.474027, 39.207922], [-77.474016, 39.207954], [-77.473929, 39.208116], [-77.473879, 39.208232], [-77.473807, 39.208358], [-77.473681, 39.208508], [-77.473669, 39.208527], [-77.473657, 39.208572], [-77.47363, 39.208627], [-77.473531, 39.208768], [-77.47342, 39.208904], [-77.473326, 39.209008], [-77.473287, 39.209062], [-77.473219, 39.209134], [-77.473129, 39.209204], [-77.472995, 39.209376], [-77.472937, 39.20943], [-77.472903, 39.209455], [-77.472868, 39.209488], [-77.472837, 39.209505], [-77.472807, 39.209528], [-77.472768, 39.209547], [-77.472645, 39.209626], [-77.472638, 39.209632], [-77.472563, 39.209691], [-77.472499, 39.209741], [-77.472443, 39.209799], [-77.472343, 39.209931], [-77.472287, 39.209976], [-77.472113, 39.210062], [-77.472049, 39.210107], [-77.471963, 39.210187], [-77.471909, 39.210265], [-77.471836, 39.210335], [-77.471762, 39.210388], [-77.471736, 39.210413], [-77.471714, 39.210425], [-77.471657, 39.210472], [-77.471496, 39.210641], [-77.471417, 39.210724], [-77.471398, 39.210743], [-77.471321, 39.210816], [-77.471223, 39.210926], [-77.471039, 39.211133], [-77.471014, 39.211156], [-77.470941, 39.211198], [-77.470837, 39.21128], [-77.470803, 39.211307], [-77.470791, 39.211316], [-77.470702, 39.211395], [-77.470533, 39.211584], [-77.470474, 39.211626], [-77.470383, 39.211722], [-77.470367, 39.211746], [-77.470248, 39.211881], [-77.470162, 39.211971], [-77.470136, 39.211991], [-77.470068, 39.212044], [-77.46988, 39.212225], [-77.469551, 39.212474], [-77.469471, 39.212528], [-77.469312, 39.212664], [-77.469182, 39.212764], [-77.469074, 39.212812], [-77.469036, 39.212835], [-77.468972, 39.212861], [-77.468874, 39.212922], [-77.468817, 39.212967], [-77.468625, 39.2131], [-77.468455, 39.213226], [-77.468421, 39.213255], [-77.468363, 39.213284], [-77.468302, 39.213324], [-77.468239, 39.213378], [-77.468128, 39.213448], [-77.468115, 39.213456], [-77.467983, 39.213538], [-77.467755, 39.213661], [-77.467684, 39.213694], [-77.467359, 39.213869], [-77.467284, 39.213899], [-77.467259, 39.213913], [-77.467163, 39.213988], [-77.467037, 39.214069], [-77.466985, 39.214114], [-77.466888, 39.214179], [-77.466801, 39.214253], [-77.46679, 39.214262], [-77.466749, 39.214312], [-77.46674, 39.214323], [-77.466723, 39.214367], [-77.466726, 39.214452], [-77.466659, 39.2144], [-77.466635, 39.21439], [-77.466573, 39.214364], [-77.46655, 39.214368], [-77.466352, 39.214515], [-77.466326, 39.214547], [-77.466208, 39.214634], [-77.465999, 39.214766], [-77.465818, 39.214875], [-77.465782, 39.214891], [-77.465615, 39.215007], [-77.465545, 39.215067], [-77.465461, 39.215147], [-77.46539, 39.215193], [-77.465306, 39.21524], [-77.465083, 39.215396], [-77.465019, 39.215454], [-77.464942, 39.215511], [-77.464611, 39.215676], [-77.464411, 39.21578], [-77.464375, 39.215812], [-77.46404, 39.216022], [-77.463983, 39.216046], [-77.463748, 39.21619], [-77.463711, 39.216217], [-77.46362, 39.216266], [-77.463426, 39.216385], [-77.463324, 39.216463], [-77.463137, 39.216579], [-77.462956, 39.216677], [-77.462831, 39.216739], [-77.462441, 39.216996], [-77.4624, 39.217019], [-77.462366, 39.217045], [-77.462268, 39.2171], [-77.462112, 39.2172], [-77.461829, 39.217362], [-77.461795, 39.217395], [-77.46167, 39.217487], [-77.461623, 39.217544], [-77.461607, 39.217585], [-77.461606, 39.217589], [-77.461603, 39.217597], [-77.461597, 39.217595], [-77.461557, 39.217579], [-77.461515, 39.217576], [-77.461453, 39.217596], [-77.461314, 39.217668], [-77.4612, 39.217754], [-77.461164, 39.217791], [-77.461061, 39.217874], [-77.461023, 39.217899], [-77.460995, 39.217925], [-77.460926, 39.217974], [-77.460797, 39.218101], [-77.460617, 39.218244], [-77.4605, 39.218365], [-77.460362, 39.218469], [-77.460059, 39.218729], [-77.459974, 39.218809], [-77.459898, 39.21887], [-77.459861, 39.218895], [-77.459711, 39.219067], [-77.459709, 39.21907], [-77.459708, 39.219071], [-77.459707, 39.219073], [-77.459695, 39.219087], [-77.45954, 39.219285], [-77.459485, 39.219366], [-77.459422, 39.219447], [-77.459399, 39.21947], [-77.459103, 39.219881], [-77.459052, 39.219969], [-77.459034, 39.220008], [-77.45903, 39.220052], [-77.459052, 39.220093], [-77.458918, 39.22013], [-77.4589, 39.220142], [-77.458889, 39.220163], [-77.45884, 39.220227], [-77.45881, 39.220278], [-77.458663, 39.220512], [-77.458663, 39.22054], [-77.458642, 39.220562], [-77.458501, 39.220825], [-77.458165, 39.221586], [-77.458141, 39.221643], [-77.457951, 39.222198], [-77.457951, 39.222269], [-77.457888, 39.22244], [-77.457874, 39.222637], [-77.457803, 39.222939], [-77.457803, 39.223049], [-77.45769, 39.223538], [-77.457634, 39.224317], [-77.457641, 39.224603], [-77.457712, 39.224987], [-77.45791, 39.225454], [-77.458106, 39.225814], [-77.458221, 39.226025], [-77.45875, 39.226853], [-77.458902, 39.227042], [-77.459174, 39.22738], [-77.459499, 39.227732], [-77.460651, 39.22874], [-77.460728, 39.228807], [-77.462083, 39.229603], [-77.462107, 39.229604], [-77.462655, 39.229905], [-77.463276, 39.23019], [-77.46387, 39.230481], [-77.464279, 39.23069], [-77.464442, 39.230761], [-77.464837, 39.230958], [-77.465253, 39.231189], [-77.466835, 39.232012], [-77.466857, 39.232006], [-77.467082, 39.232155], [-77.467113, 39.23217], [-77.467605, 39.232407], [-77.468007, 39.232626], [-77.468699, 39.233098], [-77.46919, 39.233449], [-77.469342, 39.233557], [-77.46938, 39.233585], [-77.469584, 39.23373], [-77.469744, 39.233845], [-77.470271, 39.23402], [-77.470422, 39.23407], [-77.470514, 39.234064], [-77.470542, 39.234108], [-77.470768, 39.234163], [-77.471107, 39.234311], [-77.471594, 39.23469], [-77.471606, 39.234702], [-77.471863, 39.234948], [-77.474081, 39.236649], [-77.474627, 39.237114], [-77.474893, 39.23734], [-77.475295, 39.237603], [-77.475415, 39.237642], [-77.475725, 39.237768], [-77.475832, 39.237812], [-77.476206, 39.238081], [-77.476235, 39.238086], [-77.476352, 39.238173], [-77.476559, 39.238328], [-77.476588, 39.238328], [-77.476811, 39.238485], [-77.476814, 39.238503], [-77.476849, 39.238509], [-77.477252, 39.238887], [-77.47728, 39.238887], [-77.47808, 39.239587], [-77.47834, 39.239815], [-77.478679, 39.24004], [-77.479015, 39.240259], [-77.480026, 39.240918], [-77.480042, 39.240929], [-77.480334, 39.241178], [-77.480753, 39.241535], [-77.481137, 39.241861], [-77.481243, 39.242026], [-77.481321, 39.242119], [-77.481384, 39.242235], [-77.481638, 39.242608], [-77.481674, 39.242674], [-77.481766, 39.242822], [-77.481914, 39.243019], [-77.481999, 39.243173], [-77.482073, 39.243279], [-77.482429, 39.243789], [-77.482451, 39.243821], [-77.482663, 39.24404], [-77.483094, 39.244282], [-77.483596, 39.244655], [-77.483907, 39.244916], [-77.48402, 39.245011], [-77.484308, 39.24539], [-77.484323, 39.24541], [-77.484387, 39.245494], [-77.484454, 39.24566], [-77.484472, 39.245703], [-77.484536, 39.245824], [-77.484733, 39.24606], [-77.484775, 39.246087], [-77.484926, 39.246187], [-77.484979, 39.246221], [-77.485191, 39.246361], [-77.485707, 39.2467], [-77.486217, 39.247036], [-77.486648, 39.247289], [-77.487057, 39.24748], [-77.487331, 39.247582], [-77.487396, 39.247607], [-77.487488, 39.247607], [-77.487509, 39.247585], [-77.487531, 39.247513], [-77.48741, 39.24725], [-77.487446, 39.2472], [-77.487573, 39.247206], [-77.487742, 39.247374], [-77.487756, 39.247387], [-77.487771, 39.247442], [-77.488293, 39.247798], [-77.488612, 39.248003], [-77.488621, 39.248009], [-77.48893, 39.248207], [-77.489048, 39.248283], [-77.489404, 39.248512], [-77.489523, 39.248589], [-77.4896, 39.248638], [-77.489803, 39.248745], [-77.49013, 39.248917], [-77.49054, 39.24912], [-77.490669, 39.249164], [-77.490973, 39.249268], [-77.492284, 39.249718], [-77.493224, 39.250008], [-77.4939, 39.2503], [-77.494515, 39.250486], [-77.494797, 39.250607], [-77.495475, 39.250782], [-77.496214, 39.251053], [-77.496238, 39.251062], [-77.496577, 39.251139], [-77.497269, 39.251336], [-77.497562, 39.251364], [-77.498575, 39.251618], [-77.499634, 39.251722], [-77.500148, 39.251727], [-77.501049, 39.251824], [-77.501556, 39.251891], [-77.502528, 39.25205], [-77.50384, 39.252271], [-77.504213, 39.252319], [-77.504573, 39.252302], [-77.505014, 39.252286], [-77.505572, 39.252262], [-77.506789, 39.252491], [-77.507992, 39.252707], [-77.508473, 39.252815], [-77.508761, 39.252859], [-77.509079, 39.252843], [-77.509648, 39.252987], [-77.510058, 39.253085], [-77.510451, 39.253211], [-77.51067, 39.253264], [-77.510936, 39.253406], [-77.511067, 39.253467], [-77.511141, 39.253514], [-77.511241, 39.253588], [-77.511424, 39.253697], [-77.511803, 39.253915], [-77.512274, 39.254197], [-77.512965, 39.254542], [-77.513502, 39.254794], [-77.514882, 39.255424], [-77.515405, 39.255788], [-77.515909, 39.255976], [-77.51636, 39.256145], [-77.516377, 39.256151], [-77.516438, 39.256173], [-77.516458, 39.25618], [-77.516464, 39.256182], [-77.516467, 39.256184], [-77.516469, 39.256185], [-77.516493, 39.256195], [-77.516737, 39.256285], [-77.51753, 39.256581], [-77.518035, 39.256771], [-77.51845, 39.256921], [-77.518711, 39.257015], [-77.519008, 39.257127], [-77.519026, 39.257134], [-77.519027, 39.257135], [-77.519291, 39.257246], [-77.519505, 39.257358], [-77.519555, 39.257384], [-77.519708, 39.257463], [-77.519759, 39.25749], [-77.519786, 39.257504], [-77.519868, 39.257547], [-77.519896, 39.257562], [-77.520059, 39.257647], [-77.52009, 39.25768], [-77.520406, 39.258019], [-77.520517, 39.258218], [-77.520624, 39.258409], [-77.520626, 39.258421], [-77.520719, 39.25844], [-77.521, 39.258499], [-77.521094, 39.258519], [-77.521134, 39.258545], [-77.521346, 39.258633], [-77.523591, 39.259507], [-77.524283, 39.259732], [-77.524708, 39.259851], [-77.524967, 39.259924], [-77.52525, 39.259985], [-77.525617, 39.260029], [-77.525659, 39.260007], [-77.525659, 39.259985], [-77.525476, 39.259886], [-77.525052, 39.259727], [-77.523817, 39.259375], [-77.521783, 39.258677], [-77.52167, 39.2586], [-77.52167, 39.258523], [-77.521727, 39.258479], [-77.521783, 39.258479], [-77.522984, 39.258946], [-77.524367, 39.259408], [-77.525518, 39.259809], [-77.525984, 39.25993], [-77.527255, 39.260359], [-77.527317, 39.260365], [-77.528371, 39.260474], [-77.528569, 39.260518], [-77.528696, 39.260507], [-77.528748, 39.260521], [-77.52879, 39.260527], [-77.528982, 39.260562], [-77.529173, 39.260624], [-77.529352, 39.260655], [-77.52963, 39.260739], [-77.529734, 39.260755], [-77.529813, 39.260772], [-77.529957, 39.260819], [-77.530026, 39.260832], [-77.530084, 39.260854], [-77.530148, 39.260885], [-77.530187, 39.260898], [-77.530296, 39.260922], [-77.530382, 39.260955], [-77.53044, 39.260975], [-77.530794, 39.261062], [-77.53084, 39.261079], [-77.530868, 39.261081], [-77.530973, 39.26111], [-77.531092, 39.261169], [-77.531214, 39.261218], [-77.531258, 39.261241], [-77.531396, 39.261288], [-77.531466, 39.261326], [-77.531739, 39.261442], [-77.531857, 39.261469], [-77.531901, 39.261493], [-77.532004, 39.261575], [-77.532103, 39.261627], [-77.532153, 39.261662], [-77.532351, 39.261747], [-77.532548, 39.261911], [-77.532611, 39.261958], [-77.532726, 39.262022], [-77.532864, 39.262089], [-77.533101, 39.262186], [-77.533236, 39.262255], [-77.533391, 39.262343], [-77.533587, 39.262428], [-77.533632, 39.262441], [-77.533657, 39.262439], [-77.533671, 39.262397], [-77.533685, 39.262375], [-77.533731, 39.262381], [-77.533772, 39.262397], [-77.533839, 39.262412], [-77.533883, 39.262418], [-77.533914, 39.262419], [-77.534373, 39.262527], [-77.534591, 39.262578], [-77.534789, 39.262644], [-77.535315, 39.262852], [-77.535429, 39.262897], [-77.535548, 39.262944], [-77.535608, 39.262968], [-77.535624, 39.262974], [-77.535792, 39.26304], [-77.536363, 39.263303], [-77.536434, 39.263336], [-77.536971, 39.263595], [-77.537395, 39.263825], [-77.537734, 39.264056], [-77.537861, 39.2641], [-77.538443, 39.264537], [-77.53868, 39.264715], [-77.538863, 39.264781], [-77.539175, 39.264847], [-77.539208, 39.264864], [-77.539311, 39.264917], [-77.539345, 39.264935], [-77.539432, 39.264925], [-77.53965, 39.264782], [-77.539724, 39.264735], [-77.539825, 39.26477], [-77.540129, 39.264876], [-77.540182, 39.264895], [-77.540227, 39.264921], [-77.540842, 39.265277], [-77.543088, 39.266924], [-77.543504, 39.2673], [-77.543869, 39.268024], [-77.544007, 39.268574], [-77.544101, 39.269443], [-77.544181, 39.269647], [-77.54463, 39.270168], [-77.545211, 39.27097], [-77.545503, 39.2713], [-77.5456, 39.271337], [-77.545658, 39.271397], [-77.545759, 39.271491], [-77.546327, 39.272118], [-77.546473, 39.272236], [-77.54709, 39.272738], [-77.547528, 39.273135], [-77.54798, 39.273486], [-77.54834, 39.273816], [-77.548819, 39.274388], [-77.549003, 39.274552], [-77.549412, 39.274854], [-77.549441, 39.274854], [-77.549526, 39.27492], [-77.550048, 39.275196], [-77.550677, 39.275613], [-77.550704, 39.275628], [-77.550834, 39.275696], [-77.550953, 39.275946], [-77.551063, 39.276178], [-77.551064, 39.276192], [-77.55107, 39.276247], [-77.551072, 39.276262], [-77.5511, 39.276328], [-77.551383, 39.276624], [-77.551559, 39.27685], [-77.551983, 39.277393], [-77.552092, 39.277577], [-77.552548, 39.278343], [-77.552965, 39.279166], [-77.553219, 39.279539], [-77.553247, 39.279605], [-77.553284, 39.279975], [-77.553304, 39.280165], [-77.553622, 39.280714], [-77.553678, 39.280769], [-77.553876, 39.28112], [-77.554158, 39.281439], [-77.554441, 39.281637], [-77.554794, 39.281812], [-77.555062, 39.281906], [-77.555642, 39.282048], [-77.555687, 39.28205], [-77.556037, 39.28207], [-77.556327, 39.282202], [-77.556624, 39.2824], [-77.557217, 39.28274], [-77.557683, 39.283119], [-77.558093, 39.283558], [-77.55875, 39.284118], [-77.559597, 39.284975], [-77.560551, 39.285749], [-77.560692, 39.285968], [-77.560862, 39.286353], [-77.561078, 39.286909], [-77.561349, 39.287604], [-77.561406, 39.287846], [-77.561589, 39.28801], [-77.56166, 39.288285], [-77.561702, 39.288592], [-77.561747, 39.289252], [-77.561751, 39.289313], [-77.561764, 39.289499], [-77.561766, 39.289526], [-77.561794, 39.289548], [-77.56178, 39.289602], [-77.561853, 39.289848], [-77.56195, 39.290173], [-77.562006, 39.290668], [-77.562009, 39.290768], [-77.562013, 39.290854], [-77.561979, 39.291078], [-77.561972, 39.29112], [-77.561948, 39.291249], [-77.561932, 39.291319], [-77.561928, 39.291389], [-77.561873, 39.291683], [-77.561856, 39.291782], [-77.561856, 39.291798], [-77.561857, 39.291847], [-77.561858, 39.291864], [-77.56183, 39.291886], [-77.561744, 39.292244], [-77.561667, 39.292567], [-77.561696, 39.292874], [-77.561809, 39.293072], [-77.562027, 39.293338], [-77.562035, 39.293347], [-77.562338, 39.293597], [-77.562364, 39.293618], [-77.562472, 39.293706], [-77.562515, 39.293742], [-77.562591, 39.293866], [-77.562642, 39.29395], [-77.562748, 39.294225], [-77.562772, 39.294437], [-77.562777, 39.294477], [-77.562782, 39.294639], [-77.562805, 39.295466], [-77.562788, 39.29558], [-77.562642, 39.296575], [-77.562409, 39.29764], [-77.562315, 39.298366], [-77.562296, 39.298518], [-77.562254, 39.29871], [-77.562094, 39.299282], [-77.562091, 39.29929], [-77.562084, 39.299314], [-77.562082, 39.299323], [-77.562063, 39.299391], [-77.56171, 39.300313], [-77.561682, 39.3005], [-77.561705, 39.300885], [-77.561717, 39.301071], [-77.56183, 39.301477], [-77.562028, 39.302059], [-77.562261, 39.302531], [-77.562614, 39.303047], [-77.562826, 39.3033], [-77.56325, 39.303777], [-77.564332, 39.304732], [-77.564426, 39.304797], [-77.564982, 39.305182], [-77.565604, 39.305556], [-77.565932, 39.30572], [-77.565963, 39.305736], [-77.5666, 39.306055], [-77.567095, 39.306242], [-77.567844, 39.30645], [-77.568338, 39.306489], [-77.568734, 39.306445], [-77.568755, 39.306455], [-77.569336, 39.306354], [-77.569638, 39.306302], [-77.571235, 39.306121], [-77.571942, 39.306022], [-77.572373, 39.305928], [-77.573602, 39.305588], [-77.57421, 39.305473], [-77.574592, 39.30544], [-77.575637, 39.305406], [-77.577305, 39.305225], [-77.578648, 39.305175], [-77.579227, 39.305088], [-77.579789, 39.304938], [-77.580301, 39.304802], [-77.581396, 39.304335], [-77.581933, 39.304181], [-77.582004, 39.304148], [-77.582512, 39.30378], [-77.58299, 39.303524], [-77.583106, 39.303462], [-77.583459, 39.303341], [-77.583784, 39.303319], [-77.584392, 39.303022], [-77.584997, 39.302881], [-77.58555, 39.302753], [-77.585854, 39.302665], [-77.586334, 39.302489], [-77.587521, 39.301968], [-77.588171, 39.301759], [-77.588779, 39.301599], [-77.589175, 39.301533], [-77.589641, 39.301489], [-77.590771, 39.30144], [-77.59115, 39.30138], [-77.591478, 39.30133], [-77.592424, 39.301242], [-77.592622, 39.301209], [-77.59323, 39.301203], [-77.593269, 39.301207], [-77.593979, 39.30128], [-77.595081, 39.30151], [-77.595732, 39.301647], [-77.596212, 39.30168], [-77.597244, 39.301652], [-77.597597, 39.301685], [-77.598515, 39.301827], [-77.599194, 39.301893], [-77.599802, 39.302052], [-77.600544, 39.302152], [-77.600607, 39.302161], [-77.601243, 39.302359], [-77.601865, 39.302518], [-77.602289, 39.302561], [-77.602332, 39.302563], [-77.602344, 39.302563], [-77.602383, 39.302565], [-77.602396, 39.302566], [-77.602631, 39.302575], [-77.602798, 39.302583], [-77.603325, 39.302702], [-77.603556, 39.302755], [-77.603575, 39.302759], [-77.603612, 39.302774], [-77.603778, 39.302844], [-77.603834, 39.302868], [-77.60387, 39.302883], [-77.603978, 39.302929], [-77.604017, 39.302938], [-77.60405, 39.302945], [-77.604151, 39.302969], [-77.604185, 39.302977], [-77.604402, 39.303027], [-77.604436, 39.30304], [-77.60484, 39.303203], [-77.605151, 39.303334], [-77.605156, 39.303336], [-77.605385, 39.303459], [-77.605485, 39.303511], [-77.60551, 39.303525], [-77.605646, 39.303598], [-77.605929, 39.303718], [-77.606178, 39.303754], [-77.606268, 39.303768], [-77.606762, 39.303745], [-77.60696, 39.30369], [-77.607172, 39.30357], [-77.607327, 39.303427], [-77.607341, 39.303218], [-77.607384, 39.303185], [-77.607666, 39.303163], [-77.607864, 39.303185], [-77.607949, 39.303141], [-77.607941, 39.303087], [-77.607921, 39.302932], [-77.607942, 39.3029], [-77.608069, 39.302894], [-77.608288, 39.303037], [-77.608359, 39.303015], [-77.6084, 39.302978], [-77.608507, 39.302883], [-77.608535, 39.302575], [-77.60862, 39.302487], [-77.608733, 39.302454], [-77.609256, 39.302476], [-77.609736, 39.302586], [-77.61009, 39.302619], [-77.610358, 39.302624], [-77.610669, 39.302602], [-77.610697, 39.302635], [-77.610612, 39.302679], [-77.610485, 39.302712], [-77.61032, 39.302726], [-77.610061, 39.30275], [-77.610019, 39.302783], [-77.610033, 39.302871], [-77.61038, 39.303107], [-77.610719, 39.303261], [-77.611115, 39.303315], [-77.611298, 39.303414], [-77.611397, 39.303414], [-77.611963, 39.303381], [-77.612259, 39.303326], [-77.612457, 39.303199], [-77.61257, 39.303035], [-77.61269, 39.302936], [-77.612817, 39.302881], [-77.613213, 39.302826], [-77.613693, 39.302705], [-77.61399, 39.302694], [-77.614541, 39.302765], [-77.614908, 39.302743], [-77.615064, 39.302721], [-77.615643, 39.302567], [-77.615912, 39.302556], [-77.616392, 39.302643], [-77.616618, 39.302703], [-77.61683, 39.302791], [-77.617099, 39.302945], [-77.617233, 39.302988], [-77.617954, 39.303131], [-77.61811, 39.303186], [-77.618376, 39.303313], [-77.618845, 39.303537], [-77.619651, 39.30386], [-77.620242, 39.304035], [-77.620428, 39.30409], [-77.620577, 39.304127], [-77.621284, 39.304302], [-77.621641, 39.304391], [-77.621644, 39.304392], [-77.622287, 39.304754], [-77.622527, 39.304841], [-77.622635, 39.304866], [-77.622994, 39.304951], [-77.623347, 39.305027], [-77.624442, 39.305087], [-77.624633, 39.305142], [-77.624718, 39.305131], [-77.624823, 39.305146], [-77.625353, 39.305366], [-77.62548, 39.305399], [-77.626618, 39.305811], [-77.627324, 39.305932], [-77.627833, 39.305976], [-77.628271, 39.306097], [-77.628539, 39.306218], [-77.628638, 39.306295], [-77.628737, 39.306449], [-77.629062, 39.306679], [-77.629486, 39.306828], [-77.630093, 39.307125], [-77.630249, 39.307223], [-77.630425, 39.307368], [-77.630771, 39.30765], [-77.63087, 39.307694], [-77.630927, 39.307727], [-77.63111, 39.307726], [-77.631383, 39.307774], [-77.63142, 39.307781], [-77.631943, 39.307929], [-77.632282, 39.30794], [-77.63272, 39.307897], [-77.632819, 39.307853], [-77.633018, 39.307721], [-77.633244, 39.307655], [-77.633485, 39.307613], [-77.633859, 39.307632], [-77.633923, 39.307635], [-77.634163, 39.307679], [-77.634262, 39.307767], [-77.63429, 39.307898], [-77.634331, 39.307948], [-77.634458, 39.308025], [-77.634543, 39.308047], [-77.6346, 39.308047], [-77.634798, 39.307992], [-77.635152, 39.307806], [-77.635308, 39.307784], [-77.635661, 39.307796], [-77.636749, 39.307983], [-77.637579, 39.308044], [-77.638148, 39.308085], [-77.63836, 39.3081], [-77.639321, 39.308221], [-77.639521, 39.308254], [-77.639688, 39.308281], [-77.639699, 39.308283], [-77.64023, 39.308404], [-77.640407, 39.308445], [-77.640748, 39.308523], [-77.641076, 39.308577], [-77.641603, 39.308666], [-77.641829, 39.308721], [-77.642225, 39.308771], [-77.642719, 39.308793], [-77.643106, 39.308782], [-77.643518, 39.308771], [-77.643783, 39.308713], [-77.643786, 39.308728], [-77.643795, 39.308768], [-77.643796, 39.308776], [-77.6438, 39.308793], [-77.643829, 39.308789], [-77.643918, 39.308778], [-77.643948, 39.308775], [-77.643975, 39.308771], [-77.644058, 39.308761], [-77.644086, 39.308758], [-77.64411, 39.308774], [-77.644184, 39.308822], [-77.644209, 39.308838], [-77.64423, 39.308847], [-77.644259, 39.308858], [-77.644348, 39.308892], [-77.644465, 39.308937], [-77.644627, 39.309041], [-77.644768, 39.309085], [-77.644866, 39.309095], [-77.645362, 39.309151], [-77.645616, 39.309217], [-77.645715, 39.309261], [-77.646152, 39.309367], [-77.64621, 39.309382], [-77.646569, 39.309508], [-77.646921, 39.309632], [-77.647114, 39.3097], [-77.647496, 39.309904], [-77.647919, 39.31009], [-77.647942, 39.310095], [-77.648305, 39.310187], [-77.648357, 39.3102], [-77.648668, 39.310244], [-77.649364, 39.3104], [-77.649403, 39.310409], [-77.650195, 39.310612], [-77.650901, 39.310854], [-77.652308, 39.311696], [-77.653236, 39.312252], [-77.653352, 39.312321], [-77.653526, 39.312412], [-77.65396, 39.312639], [-77.65439, 39.312905], [-77.65444, 39.312936], [-77.654681, 39.313066], [-77.655521, 39.313518], [-77.656313, 39.313831], [-77.656496, 39.313897], [-77.656693, 39.313951], [-77.658645, 39.314496], [-77.6588, 39.314562], [-77.659365, 39.314726], [-77.659662, 39.314847], [-77.660015, 39.314957], [-77.661103, 39.31538], [-77.662015, 39.315666], [-77.662891, 39.315907], [-77.662992, 39.315946], [-77.663852, 39.316275], [-77.66446, 39.316572], [-77.665027, 39.316792], [-77.665082, 39.316813], [-77.666462, 39.3176], [-77.666537, 39.317643], [-77.667251, 39.318126], [-77.667604, 39.3184], [-77.668367, 39.319081], [-77.668749, 39.319476], [-77.669194, 39.319883], [-77.669505, 39.320234], [-77.669802, 39.320525], [-77.670111, 39.320905], [-77.670339, 39.321184], [-77.670395, 39.321283], [-77.671003, 39.3217], [-77.671399, 39.321887], [-77.671561, 39.321963], [-77.67159, 39.321963], [-77.671943, 39.322183], [-77.672568, 39.322452], [-77.672798, 39.322551], [-77.673356, 39.322814], [-77.674275, 39.323473], [-77.674741, 39.323923], [-77.675066, 39.324154], [-77.675108, 39.324185], [-77.675187, 39.324242], [-77.675469, 39.324368], [-77.675872, 39.324457], [-77.676063, 39.3245], [-77.67619, 39.324511], [-77.676445, 39.324533], [-77.676466, 39.324523], [-77.676812, 39.324566], [-77.677031, 39.324549], [-77.677166, 39.324542], [-77.677353, 39.324531], [-77.677448, 39.324526], [-77.677731, 39.324511], [-77.677917, 39.324486], [-77.678103, 39.324462], [-77.678225, 39.324445], [-77.678268, 39.32444], [-77.678589, 39.324367], [-77.678607, 39.324363], [-77.678712, 39.32435], [-77.678812, 39.324337], [-77.678911, 39.324324], [-77.679173, 39.324286], [-77.679391, 39.324242], [-77.679943, 39.324132], [-77.681145, 39.323995], [-77.681173, 39.323973], [-77.681426, 39.323937], [-77.681724, 39.323896], [-77.682078, 39.323737], [-77.68224, 39.323627], [-77.683081, 39.322903], [-77.683435, 39.322716], [-77.683866, 39.322408], [-77.684064, 39.322233], [-77.684233, 39.322046], [-77.684572, 39.321761], [-77.684896, 39.321436], [-77.685039, 39.321294], [-77.686177, 39.320405], [-77.686502, 39.320207], [-77.688042, 39.319642], [-77.688438, 39.319521], [-77.68865, 39.319477], [-77.689032, 39.319433], [-77.689512, 39.319406], [-77.690064, 39.319351], [-77.690198, 39.319318], [-77.690537, 39.319197], [-77.690989, 39.318966], [-77.692007, 39.31862], [-77.692544, 39.318511], [-77.69301, 39.318445], [-77.693675, 39.318423], [-77.694268, 39.318461], [-77.694622, 39.318505], [-77.695151, 39.318514], [-77.695244, 39.318516], [-77.695696, 39.318472], [-77.696078, 39.318461], [-77.696742, 39.318554], [-77.697378, 39.318752], [-77.698, 39.318905], [-77.698283, 39.318938], [-77.698745, 39.318964], [-77.698876, 39.318971], [-77.699329, 39.319075], [-77.699409, 39.319103], [-77.699922, 39.319284], [-77.701366, 39.319686], [-77.701378, 39.31969], [-77.702015, 39.319896], [-77.702141, 39.319937], [-77.703251, 39.320233], [-77.703788, 39.320397], [-77.704566, 39.320655], [-77.704834, 39.320776], [-77.706262, 39.321303], [-77.706898, 39.3215], [-77.70728, 39.321637], [-77.707676, 39.321736], [-77.708086, 39.321758], [-77.708298, 39.321736], [-77.709095, 39.321526], [-77.709346, 39.321463], [-77.709431, 39.321453], [-77.709677, 39.321478], [-77.709871, 39.321493], [-77.710223, 39.321426], [-77.710406, 39.321359], [-77.710574, 39.321359], [-77.710828, 39.3214], [-77.710958, 39.32141], [-77.71111, 39.321422], [-77.711238, 39.321444], [-77.711379, 39.321521], [-77.711478, 39.321543], [-77.711591, 39.321543], [-77.711704, 39.321521], [-77.711944, 39.321433], [-77.712215, 39.321398], [-77.712241, 39.321395], [-77.71226, 39.321394], [-77.712396, 39.32139], [-77.712442, 39.321389], [-77.712908, 39.321375], [-77.713032, 39.321372], [-77.713471, 39.321306], [-77.71364, 39.321263], [-77.713725, 39.321219], [-77.714022, 39.321262], [-77.714078, 39.321295], [-77.714272, 39.321335], [-77.71429, 39.321339], [-77.714738, 39.321306], [-77.714799, 39.321301], [-77.714997, 39.321257], [-77.715266, 39.321235], [-77.715548, 39.321191], [-77.715591, 39.321158], [-77.715573, 39.320973], [-77.715569, 39.320927], [-77.715612, 39.320872], [-77.715796, 39.320828], [-77.716333, 39.32085], [-77.716884, 39.320811], [-77.717294, 39.320855], [-77.717414, 39.320894], [-77.717859, 39.32102], [-77.718439, 39.321096], [-77.718623, 39.321152], [-77.718764, 39.321195], [-77.718901, 39.321222], [-77.718985, 39.321239], [-77.719209, 39.321283], [-77.719521, 39.321322], [-77.719553, 39.321277], [-77.71971, 39.321096], [-77.719905, 39.320912], [-77.720148, 39.320233], [-77.720356, 39.319674], [-77.720596, 39.319282], [-77.720785, 39.318985], [-77.72164, 39.318502], [-77.72239, 39.31815], [-77.722763, 39.318203], [-77.723138, 39.318072], [-77.723368, 39.317956], [-77.723662, 39.317756], [-77.724166, 39.31763], [-77.724992, 39.317556], [-77.725638, 39.317646], [-77.725908, 39.317683], [-77.72656, 39.317401], [-77.727363, 39.317043], [-77.727958, 39.3166], [-77.72826, 39.31638], [-77.728747, 39.316301], [-77.728977, 39.316066], [-77.729568, 39.315862], [-77.730699, 39.315611], [-77.731099, 39.315263], [-77.731344, 39.314924], [-77.732169, 39.314124], [-77.73269, 39.313775], [-77.734221, 39.313062], [-77.734769, 39.312694], [-77.734897, 39.312578], [-77.73512, 39.312204], [-77.735413, 39.311977], [-77.73552, 39.311879], [-77.73628, 39.310608], [-77.736669, 39.310028], [-77.736932, 39.309635], [-77.737634, 39.308998], [-77.73802, 39.308496], [-77.738106, 39.308412], [-77.738412, 39.308199], [-77.73908, 39.307155], [-77.739524, 39.30639], [-77.739976, 39.305523], [-77.740624, 39.304676], [-77.740996, 39.303685], [-77.741212, 39.303202], [-77.741368, 39.302853], [-77.741861, 39.301876], [-77.742151, 39.301373], [-77.742824, 39.300557], [-77.743224, 39.300111], [-77.743832, 39.29919], [-77.744635, 39.298425], [-77.746593, 39.296011], [-77.747082, 39.295449], [-77.747589, 39.294842], [-77.747888, 39.294427], [-77.748297, 39.293704], [-77.748962, 39.291976], [-77.749717, 39.290506], [-77.750269, 39.289292], [-77.750418, 39.288886], [-77.750681, 39.288143], [-77.751259, 39.286841], [-77.751841, 39.284911], [-77.752728, 39.283381], [-77.753096, 39.281807], [-77.753071, 39.281275], [-77.753359, 39.280339], [-77.753244, 39.279428], [-77.753292, 39.278918], [-77.753285, 39.278808], [-77.753254, 39.278409], [-77.753178, 39.278291], [-77.753062, 39.277979], [-77.752987, 39.277776], [-77.753064, 39.277499], [-77.753107, 39.277348], [-77.753188, 39.277216], [-77.753456, 39.276849], [-77.753581, 39.27668], [-77.754051, 39.276038], [-77.754767, 39.275701], [-77.754808, 39.275656], [-77.755198, 39.275225], [-77.755414, 39.275052], [-77.755629, 39.274879], [-77.755835, 39.274713], [-77.756027, 39.274577], [-77.75689, 39.274069], [-77.757074, 39.273804], [-77.757203, 39.273618], [-77.757412, 39.273266], [-77.757659, 39.272855], [-77.757969, 39.27226], [-77.758045, 39.271827], [-77.758045, 39.271685], [-77.758026, 39.271444], [-77.758048, 39.271396], [-77.758067, 39.271238], [-77.758081, 39.271135], [-77.758129, 39.2708], [-77.758162, 39.270569], [-77.758194, 39.27034], [-77.758198, 39.270311], [-77.758255, 39.270135], [-77.758394, 39.269709], [-77.758463, 39.269496], [-77.758617, 39.269021], [-77.758756, 39.268592], [-77.758826, 39.268376], [-77.758896, 39.268161], [-77.758903, 39.268139], [-77.7588, 39.268004], [-77.758755, 39.267922], [-77.758565, 39.267645], [-77.758557, 39.267028], [-77.758378, 39.266682], [-77.758127, 39.266194], [-77.758108, 39.266158], [-77.758184, 39.265869], [-77.758382, 39.265094], [-77.758467, 39.264961], [-77.758654, 39.264666], [-77.759073, 39.264263], [-77.759591, 39.263767], [-77.759624, 39.26375], [-77.759948, 39.263591], [-77.760905, 39.263769], [-77.761095, 39.263804], [-77.761144, 39.263738], [-77.761219, 39.263729], [-77.76177, 39.263039], [-77.761828, 39.262822], [-77.761928, 39.262597], [-77.762172, 39.26205], [-77.762179, 39.262028], [-77.762311, 39.261611], [-77.762369, 39.261379], [-77.762458, 39.261283], [-77.762583, 39.261219], [-77.762843, 39.261002], [-77.762909, 39.260947], [-77.763114, 39.26044], [-77.763115, 39.260362], [-77.763117, 39.260138], [-77.762963, 39.259839], [-77.762872, 39.259667], [-77.762873, 39.259583], [-77.762763, 39.259236], [-77.762761, 39.259196], [-77.762906, 39.258424], [-77.76293, 39.258281], [-77.763436, 39.258078], [-77.763667, 39.257986], [-77.763733, 39.257959], [-77.763875, 39.257956], [-77.764347, 39.257946], [-77.765158, 39.257929], [-77.765217, 39.257928], [-77.765684, 39.257786], [-77.765829, 39.257775], [-77.766399, 39.257729], [-77.767282, 39.257816], [-77.767626, 39.257786], [-77.767882, 39.25765], [-77.767999, 39.257588], [-77.768326, 39.257259], [-77.768376, 39.257197], [-77.768756, 39.256447], [-77.768961, 39.256466], [-77.768986, 39.256468], [-77.769325, 39.256499], [-77.76986, 39.256415], [-77.770104, 39.256377], [-77.770263, 39.255992], [-77.770283, 39.255985], [-77.770367, 39.255752], [-77.770671, 39.25527], [-77.770666, 39.255047], [-77.770663, 39.254018], [-77.770835, 39.253748], [-77.770881, 39.253678], [-77.77084, 39.253621], [-77.770596, 39.25328], [-77.770596, 39.252235], [-77.770625, 39.251669], [-77.770668, 39.25082], [-77.770676, 39.250772], [-77.770878, 39.249768], [-77.770939, 39.249454], [-77.769801, 39.249459], [-77.768544, 39.249551], [-77.767278, 39.249759], [-77.767229, 39.249017], [-77.767382, 39.24866], [-77.767814, 39.24809], [-77.768233, 39.246707], [-77.768052, 39.245549], [-77.76878, 39.24494], [-77.768923, 39.24463], [-77.769279, 39.243908], [-77.76993, 39.242944], [-77.769859, 39.242176], [-77.770187, 39.241188], [-77.770219, 39.241069], [-77.770235, 39.240884], [-77.770246, 39.24056], [-77.770262, 39.240086], [-77.770423, 39.239328], [-77.770469, 39.239112], [-77.770978, 39.238242], [-77.771119, 39.238055], [-77.771126, 39.238025], [-77.770984, 39.237482], [-77.771367, 39.236501], [-77.772406, 39.235816], [-77.773229, 39.235055], [-77.773261, 39.235025], [-77.773662, 39.2345], [-77.773682, 39.234474], [-77.773682, 39.234443], [-77.773691, 39.233937], [-77.773695, 39.233739], [-77.77392, 39.233644], [-77.774163, 39.233543], [-77.774782, 39.233025], [-77.774943, 39.23273], [-77.775211, 39.232476], [-77.775774, 39.232197], [-77.77587, 39.232149], [-77.776677, 39.231324], [-77.777118, 39.23054], [-77.777129, 39.230509], [-77.777405, 39.229747], [-77.777418, 39.22971], [-77.777587, 39.229748], [-77.777708, 39.229773], [-77.777996, 39.229839], [-77.778895, 39.229927], [-77.779245, 39.229758], [-77.779337, 39.229713], [-77.779863, 39.229331], [-77.780629, 39.228914], [-77.780801, 39.228729], [-77.781383, 39.228017], [-77.78161, 39.227617], [-77.781665, 39.227506], [-77.781641, 39.2272], [-77.781321, 39.226869], [-77.781257, 39.226808], [-77.781299, 39.226754], [-77.781765, 39.22616], [-77.782357, 39.225406], [-77.783018, 39.224881], [-77.783537, 39.224197], [-77.783642, 39.224089], [-77.784169, 39.223533], [-77.78437, 39.22325], [-77.784388, 39.223225], [-77.784702, 39.222784], [-77.78586, 39.222061], [-77.786324, 39.221815], [-77.78647, 39.221512], [-77.786505, 39.22148], [-77.786495, 39.221443], [-77.786448, 39.22141], [-77.786231, 39.221268], [-77.786252, 39.221162], [-77.786286, 39.220994], [-77.786163, 39.220478], [-77.786105, 39.220326], [-77.785979, 39.21999], [-77.785962, 39.219881], [-77.785929, 39.219674], [-77.786131, 39.219503], [-77.786219, 39.219443], [-77.786273, 39.219348], [-77.786494, 39.218957], [-77.786785, 39.218604], [-77.787477, 39.217485], [-77.787715, 39.217023], [-77.787918, 39.216771], [-77.788105, 39.216469], [-77.788312, 39.216176], [-77.788472, 39.215794], [-77.788596, 39.215487], [-77.788843, 39.214873], [-77.788982, 39.214788], [-77.789561, 39.214348], [-77.790494, 39.213553], [-77.791535, 39.212534], [-77.791973, 39.212261], [-77.792665, 39.211396], [-77.793115, 39.210303], [-77.792988, 39.210229], [-77.792805, 39.209697], [-77.792785, 39.209637], [-77.792634, 39.209006], [-77.792921, 39.208638], [-77.792996, 39.208541], [-77.793392, 39.208184], [-77.793603, 39.207631], [-77.793958, 39.207098], [-77.794291, 39.206573], [-77.794665, 39.205996], [-77.794827, 39.205729], [-77.79496, 39.205511], [-77.795305, 39.204795], [-77.79573, 39.204145], [-77.796182, 39.203477], [-77.79668, 39.202521], [-77.796773, 39.202342], [-77.796816, 39.202258], [-77.797027, 39.202067], [-77.797595, 39.201553], [-77.798159, 39.200711], [-77.798377, 39.19924], [-77.798382, 39.199181], [-77.798447, 39.198878], [-77.798494, 39.198317], [-77.798634, 39.197884], [-77.798645, 39.197489], [-77.798249, 39.196536], [-77.79825, 39.196523], [-77.798261, 39.196146], [-77.798273, 39.195756], [-77.798551, 39.194881], [-77.798309, 39.194609], [-77.797839, 39.194079], [-77.798028, 39.193445], [-77.79804, 39.193368], [-77.798146, 39.192659], [-77.798166, 39.192526], [-77.798508, 39.192271], [-77.798886, 39.191989], [-77.799145, 39.191798], [-77.799436, 39.19116], [-77.799641, 39.19052], [-77.799778, 39.190189], [-77.799897, 39.189901], [-77.800212, 39.188829], [-77.800214, 39.188821], [-77.800287, 39.188573], [-77.800292, 39.188558], [-77.800546, 39.188244], [-77.800728, 39.188018], [-77.801117, 39.187794], [-77.801108, 39.187404], [-77.801103, 39.18716], [-77.801098, 39.18691], [-77.80128, 39.186376], [-77.801306, 39.186303], [-77.801342, 39.185991], [-77.801345, 39.185968], [-77.801409, 39.185413], [-77.801716, 39.185044], [-77.801801, 39.184942], [-77.801932, 39.184784], [-77.801996, 39.184656], [-77.802111, 39.184424], [-77.80232, 39.184112], [-77.802334, 39.184075], [-77.802651, 39.183579], [-77.802765, 39.183259], [-77.802814, 39.183097], [-77.802931, 39.182712], [-77.803063, 39.1824], [-77.803104, 39.182301], [-77.803097, 39.182233], [-77.803091, 39.182171], [-77.803072, 39.181986], [-77.80346, 39.18089], [-77.803639, 39.180657], [-77.804113, 39.180313], [-77.80473, 39.179334], [-77.804907, 39.179059], [-77.804665, 39.17891], [-77.804093, 39.17856], [-77.804253, 39.178121], [-77.804453, 39.177833], [-77.804472, 39.177721], [-77.804895, 39.177102], [-77.804973, 39.176988], [-77.804616, 39.176644], [-77.80451, 39.176204], [-77.805054, 39.175441], [-77.805146, 39.175003], [-77.805342, 39.174074], [-77.805877, 39.173125], [-77.806051, 39.171745], [-77.806589, 39.171101], [-77.80822, 39.17007], [-77.808587, 39.16975], [-77.80904, 39.16935], [-77.809294, 39.168926], [-77.809736, 39.168187], [-77.809817, 39.168051], [-77.810122, 39.167682], [-77.810174, 39.167619], [-77.810858, 39.167275], [-77.811062, 39.167236], [-77.811212, 39.167208], [-77.811442, 39.167053], [-77.811497, 39.166875], [-77.81144, 39.166592], [-77.811673, 39.166075], [-77.811872, 39.165844], [-77.812356, 39.165284], [-77.812465, 39.165027], [-77.812652, 39.16456], [-77.812615, 39.164232], [-77.813372, 39.164335], [-77.813628, 39.164426], [-77.81392, 39.164006], [-77.814276, 39.163135], [-77.814332, 39.162998], [-77.814466, 39.162782], [-77.814715, 39.162388], [-77.815075, 39.161685], [-77.815494, 39.160774], [-77.81603, 39.159694], [-77.816058, 39.159551], [-77.816147, 39.159366], [-77.816308, 39.158694], [-77.816785, 39.157851], [-77.817236, 39.157153], [-77.817358, 39.157122], [-77.817605, 39.157059], [-77.81777, 39.156741], [-77.818357, 39.156049], [-77.818261, 39.155851], [-77.818383, 39.155744], [-77.818661, 39.155514], [-77.818617, 39.155242], [-77.818575, 39.155105], [-77.81899, 39.154514], [-77.81965, 39.153943], [-77.819851, 39.153546], [-77.820482, 39.153127], [-77.820525, 39.153099], [-77.821372, 39.152359], [-77.82155, 39.152041], [-77.821627, 39.151876], [-77.821754, 39.150462], [-77.821774, 39.149987], [-77.821795, 39.149601], [-77.82228, 39.149223], [-77.822827, 39.148021], [-77.823017, 39.147701], [-77.823142, 39.147508], [-77.822464, 39.147146], [-77.822565, 39.14689], [-77.822609, 39.146464], [-77.822957, 39.145942], [-77.823264, 39.145727], [-77.823375, 39.145603], [-77.823195, 39.145097], [-77.823157, 39.144445], [-77.822584, 39.144], [-77.822072, 39.142718], [-77.821947, 39.141717], [-77.82192, 39.141136], [-77.822103, 39.140113], [-77.822203, 39.140009], [-77.822714, 39.139478], [-77.823372, 39.138999], [-77.823592, 39.138848], [-77.823746, 39.138692], [-77.823948, 39.138512], [-77.824377, 39.138003], [-77.824507, 39.13721], [-77.824513, 39.1372], [-77.824528, 39.137116], [-77.824734, 39.136727], [-77.824694, 39.136636], [-77.82449, 39.136157], [-77.825161, 39.135383], [-77.825657, 39.135676], [-77.825774, 39.135746], [-77.826233, 39.135694], [-77.826851, 39.135505], [-77.827162, 39.135268], [-77.827191, 39.135243], [-77.827547, 39.134686], [-77.827682, 39.134409], [-77.827853, 39.134062], [-77.82791, 39.133593], [-77.827986, 39.132986], [-77.828098, 39.132782], [-77.828265, 39.13248], [-77.828267, 39.13248], [-77.828301, 39.132434], [-77.828456, 39.13254], [-77.828666, 39.132684], [-77.828678, 39.132692], [-77.828793, 39.132771], [-77.828808, 39.132781], [-77.830003, 39.133549], [-77.830016, 39.133558], [-77.833634, 39.135886], [-77.833638, 39.135889], [-77.834845, 39.136666], [-77.835225, 39.13691], [-77.836362, 39.137641], [-77.836363, 39.137642], [-77.836741, 39.137886], [-77.838498, 39.139016], [-77.839102, 39.139405], [-77.843771, 39.142409], [-77.845529, 39.14354], [-77.846131, 39.143927], [-77.846182, 39.14396], [-77.847939, 39.14509], [-77.848542, 39.145478], [-77.84909, 39.145831], [-77.850056, 39.146452], [-77.854597, 39.149373], [-77.85611, 39.150346], [-77.856929, 39.150875], [-77.859386, 39.15246], [-77.859387, 39.152461], [-77.860205, 39.152989], [-77.86034, 39.153076], [-77.860343, 39.153078], [-77.860743, 39.153336], [-77.860757, 39.153345], [-77.860877, 39.153422], [-77.860896, 39.153435], [-77.860906, 39.153441], [-77.860916, 39.153446], [-77.860921, 39.15345], [-77.860925, 39.153452], [-77.860934, 39.153458], [-77.860938, 39.153461], [-77.860943, 39.153464], [-77.861019, 39.153513], [-77.861244, 39.15366], [-77.861319, 39.153708], [-77.86437, 39.155664], [-77.873524, 39.161532], [-77.874699, 39.162285], [-77.876559, 39.163512], [-77.877425, 39.164072], [-77.879696, 39.165539], [-77.880026, 39.165752], [-77.880893, 39.166312], [-77.880991, 39.166376], [-77.881429, 39.166659], [-77.883041, 39.167699], [-77.883548, 39.168027], [-77.883578, 39.168047], [-77.883993, 39.168315], [-77.885241, 39.169121], [-77.88551, 39.169295], [-77.885657, 39.16939], [-77.885722, 39.169432], [-77.88592, 39.169559], [-77.885986, 39.169602], [-77.887256, 39.170423], [-77.889104, 39.171617], [-77.891068, 39.172885], [-77.89231, 39.173688], [-77.892339, 39.173707], [-77.892387, 39.173738], [-77.892516, 39.173822], [-77.892534, 39.173834], [-77.892584, 39.173866], [-77.897053, 39.176759], [-77.897137, 39.176814], [-77.91046, 39.185441], [-77.910792, 39.185656], [-77.914929, 39.188335], [-77.914993, 39.188376], [-77.915007, 39.188385], [-77.915026, 39.188397], [-77.915242, 39.188538], [-77.915321, 39.188589], [-77.915344, 39.188604], [-77.916142, 39.189111], [-77.91617, 39.189129], [-77.918605, 39.190678], [-77.918647, 39.190705], [-77.919426, 39.191201], [-77.919472, 39.19123], [-77.92038, 39.191819], [-77.920405, 39.191835], [-77.923101, 39.193585], [-77.923342, 39.193741], [-77.924008, 39.194173], [-77.924322, 39.194376], [-77.924837, 39.19471], [-77.925087, 39.194872], [-77.92732, 39.196321], [-77.927382, 39.196361], [-77.928147, 39.196858], [-77.929704, 39.197868], [-77.934375, 39.200899], [-77.935931, 39.201909], [-77.935958, 39.201927], [-77.936037, 39.20198], [-77.936064, 39.201998], [-77.937026, 39.202622], [-77.937055, 39.202641], [-77.939913, 39.204493], [-77.940028, 39.204568], [-77.940876, 39.205118], [-77.941018, 39.20521], [-77.941213, 39.205337], [-77.941328, 39.205411], [-77.942227, 39.205994], [-77.942257, 39.206014], [-77.942565, 39.206214], [-77.942804, 39.20637], [-77.942806, 39.206371], [-77.943525, 39.206837], [-77.943764, 39.206992], [-77.943982, 39.207133], [-77.944636, 39.207558], [-77.944855, 39.2077], [-77.94651, 39.208774], [-77.946979, 39.209078], [-77.953351, 39.213212], [-77.954747, 39.214118], [-77.955381, 39.21453], [-77.955476, 39.214591], [-77.955873, 39.214849], [-77.957067, 39.215623], [-77.957465, 39.215882], [-77.957493, 39.2159], [-77.957935, 39.216185], [-77.959348, 39.217095], [-77.959427, 39.217146], [-77.959819, 39.217399], [-77.961315, 39.218363], [-77.965227, 39.220884], [-77.965803, 39.221255], [-77.96716, 39.22213], [-77.9673, 39.22222], [-77.968721, 39.223136], [-77.971242, 39.224761], [-77.972984, 39.225884], [-77.974391, 39.226791], [-77.974406, 39.226801], [-77.975542, 39.227533], [-77.975827, 39.227717], [-77.975851, 39.227733], [-77.9766, 39.228215], [-77.97892, 39.22971], [-77.979694, 39.230209], [-77.981268, 39.231224], [-77.983487, 39.232654], [-77.985993, 39.234269], [-77.987568, 39.235284], [-77.987596, 39.235302], [-77.987679, 39.235356], [-77.987706, 39.235373], [-77.987883, 39.235487], [-77.988417, 39.235831], [-77.988421, 39.235834], [-77.988595, 39.235946], [-77.988917, 39.236153], [-77.989883, 39.236776], [-77.990206, 39.236984], [-77.990418, 39.237121], [-77.990564, 39.237215], [-77.991057, 39.237532], [-77.991271, 39.23767], [-77.992961, 39.238767], [-77.992967, 39.238771], [-77.995327, 39.240302], [-77.998031, 39.242057], [-77.998033, 39.242058], [-77.999722, 39.243154], [-78.001105, 39.244001], [-78.005252, 39.24654], [-78.006634, 39.247386], [-78.006696, 39.247422], [-78.006803, 39.247484], [-78.006826, 39.247498], [-78.006878, 39.247532], [-78.006938, 39.24757], [-78.007294, 39.247808], [-78.007458, 39.247918], [-78.00923, 39.2491], [-78.009643, 39.249376], [-78.010611, 39.250024], [-78.014384, 39.252438], [-78.016171, 39.253573], [-78.016275, 39.253639], [-78.017432, 39.254375], [-78.018484, 39.255063], [-78.018858, 39.255307], [-78.019977, 39.256038], [-78.019978, 39.256039], [-78.02035, 39.256283], [-78.022217, 39.257502], [-78.022742, 39.257845], [-78.027796, 39.261191], [-78.029654, 39.262422], [-78.029846, 39.262549], [-78.03042, 39.26293], [-78.030611, 39.263056], [-78.03105, 39.263323], [-78.031073, 39.263337], [-78.032368, 39.264123], [-78.03246, 39.264179], [-78.032806, 39.264389], [-78.032843, 39.264411], [-78.032925, 39.264457], [-78.032929, 39.264459], [-78.032943, 39.264467], [-78.032948, 39.26447], [-78.032974, 39.264485], [-78.032997, 39.264498], [-78.033011, 39.264506], [-78.033051, 39.264528], [-78.033076, 39.264542], [-78.033143, 39.26459], [-78.033145, 39.264591], [-78.033193, 39.26462], [-78.033317, 39.264667], [-78.036261, 39.266521], [-78.036321, 39.266559], [-78.038647, 39.268013], [-78.038664, 39.268024], [-78.0394, 39.268485], [-78.040396, 39.269106], [-78.040523, 39.269185], [-78.040715, 39.269304], [-78.040905, 39.269423], [-78.041033, 39.269503], [-78.043081, 39.270779], [-78.049225, 39.27461], [-78.050902, 39.275656], [-78.051274, 39.275888], [-78.0514, 39.275966], [-78.054771, 39.278069], [-78.057616, 39.279874], [-78.059256, 39.28094], [-78.061052, 39.282107], [-78.06763, 39.28638], [-78.067733, 39.286447], [-78.067877, 39.28654], [-78.067884, 39.286544], [-78.069086, 39.287325], [-78.069514, 39.287603], [-78.074421, 39.290791], [-78.078997, 39.293764], [-78.079782, 39.294261], [-78.079953, 39.294369], [-78.079956, 39.294371], [-78.080238, 39.294549], [-78.081085, 39.295084], [-78.081317, 39.295231], [-78.081368, 39.295263], [-78.081613, 39.295418], [-78.082498, 39.295978], [-78.093595, 39.303101], [-78.094082, 39.303402], [-78.10015, 39.307155], [-78.100165, 39.307164], [-78.100266, 39.307226], [-78.103352, 39.309135], [-78.10428, 39.309709], [-78.1077, 39.31182], [-78.10828, 39.312178], [-78.108309, 39.312195], [-78.108749, 39.312468], [-78.113043, 39.315388], [-78.117235, 39.318235], [-78.123758, 39.322655], [-78.123809, 39.322683], [-78.123811, 39.322685], [-78.124726, 39.323216], [-78.135, 39.329918], [-78.135926, 39.330524], [-78.135939, 39.330526], [-78.136371, 39.330805], [-78.137667, 39.331644], [-78.138099, 39.331924], [-78.13848, 39.332171], [-78.13884, 39.332404], [-78.139624, 39.332912], [-78.140006, 39.333159], [-78.140923, 39.333753], [-78.14135, 39.333991], [-78.143173, 39.335008], [-78.143785, 39.33535], [-78.146082, 39.336632], [-78.148123, 39.337771], [-78.150697, 39.339336], [-78.154172, 39.341284], [-78.156104, 39.342368], [-78.156965, 39.342792], [-78.157018, 39.342818], [-78.158196, 39.343399], [-78.158714, 39.343775], [-78.159246, 39.344162], [-78.161374, 39.345714], [-78.162602, 39.346609], [-78.164446, 39.347953], [-78.166289, 39.349296], [-78.167518, 39.350192], [-78.168248, 39.350723], [-78.168281, 39.350747], [-78.168814, 39.351136], [-78.17057, 39.352415], [-78.171334, 39.352972], [-78.171343, 39.352979], [-78.171373, 39.353], [-78.171383, 39.353008], [-78.171398, 39.353018], [-78.171458, 39.353062], [-78.171573, 39.353146], [-78.171921, 39.353399], [-78.172037, 39.353484], [-78.176464, 39.356437], [-78.181312, 39.359876], [-78.184157, 39.361809], [-78.184165, 39.361815], [-78.186504, 39.363406], [-78.187373, 39.363997], [-78.188461, 39.364659], [-78.192675, 39.367226], [-78.194411, 39.368302], [-78.196388, 39.369527], [-78.196688, 39.369713], [-78.197542, 39.370243], [-78.197589, 39.370272], [-78.197598, 39.370278], [-78.197888, 39.370462], [-78.201859, 39.372978], [-78.205404, 39.375106], [-78.206415, 39.375778], [-78.206447, 39.375801], [-78.208286, 39.377073], [-78.213804, 39.38089], [-78.215644, 39.382163], [-78.216498, 39.382753], [-78.219061, 39.384526], [-78.219762, 39.385011], [-78.219915, 39.385118], [-78.219972, 39.385157], [-78.220144, 39.385275], [-78.220202, 39.385315], [-78.220214, 39.385323], [-78.220217, 39.385326], [-78.228769, 39.391241], [-78.233361, 39.394418], [-78.236217, 39.396394], [-78.237945, 39.397589], [-78.239456, 39.398633], [-78.244818, 39.402342], [-78.244968, 39.402446], [-78.244981, 39.402454], [-78.245366, 39.402721], [-78.24548, 39.402785], [-78.24973, 39.405161], [-78.25852, 39.411333], [-78.26268, 39.414255], [-78.262788, 39.414331], [-78.262818, 39.414348], [-78.271916, 39.419557], [-78.271922, 39.419561], [-78.27423, 39.420882], [-78.274347, 39.420948], [-78.274367, 39.42096], [-78.286943, 39.428156], [-78.287983, 39.428763], [-78.289236, 39.429541], [-78.289313, 39.429588], [-78.292623, 39.431645], [-78.299964, 39.436206], [-78.300161, 39.436329], [-78.300168, 39.436333], [-78.303299, 39.438252], [-78.303624, 39.438452], [-78.306111, 39.439976], [-78.307207, 39.440649], [-78.307215, 39.440654], [-78.307451, 39.440799], [-78.307453, 39.4408], [-78.30855, 39.441494], [-78.312969, 39.444302], [-78.312973, 39.444304], [-78.315385, 39.445839], [-78.319451, 39.448427], [-78.322212, 39.450184], [-78.322445, 39.450333], [-78.330313, 39.45534], [-78.337183, 39.459714], [-78.338225, 39.460377], [-78.339533, 39.46122], [-78.339883, 39.461445], [-78.34084, 39.462063], [-78.343697, 39.463905], [-78.344395, 39.464356], [-78.344554, 39.46445], [-78.344575, 39.464462], [-78.345455, 39.464979], [-78.345599, 39.465069], [-78.347039, 39.465987], [-78.34709, 39.46602], [-78.347428, 39.465365], [-78.347698, 39.464976], [-78.347925, 39.464458], [-78.348306, 39.463907], [-78.348918, 39.463072], [-78.349268, 39.462521], [-78.349479, 39.462213], [-78.34968, 39.461954], [-78.349801, 39.461815], [-78.349571, 39.461697], [-78.349097, 39.461767], [-78.34733, 39.460716], [-78.34637, 39.460227], [-78.345455, 39.459915], [-78.345146, 39.459492], [-78.345084, 39.458495], [-78.345531, 39.456991], [-78.345606, 39.45674], [-78.345846, 39.455937], [-78.345587, 39.454886], [-78.345826, 39.453507], [-78.346643, 39.4516], [-78.346965, 39.450687], [-78.347049, 39.450244], [-78.347122, 39.449595], [-78.347127, 39.449546], [-78.347287, 39.448099], [-78.347289, 39.448085], [-78.347336, 39.447667], [-78.346744, 39.446705], [-78.346741, 39.4467], [-78.346704, 39.446644], [-78.346226, 39.445949], [-78.346064, 39.445621], [-78.346363, 39.44409], [-78.346549, 39.442624], [-78.347776, 39.440591], [-78.350124, 39.438845], [-78.351081, 39.438215], [-78.35236, 39.437646], [-78.353067, 39.437226], [-78.353104, 39.437203], [-78.35323, 39.4368], [-78.35288, 39.436353], [-78.352529, 39.435962], [-78.351305, 39.4346], [-78.350391, 39.433331], [-78.349439, 39.432407], [-78.349063, 39.432042], [-78.347945, 39.430887], [-78.347841, 39.429859], [-78.347704, 39.428726], [-78.347397, 39.428367], [-78.347039, 39.428041], [-78.346721, 39.427626], [-78.347026, 39.426931], [-78.34759, 39.426265], [-78.347902, 39.425377], [-78.348357, 39.424439], [-78.349338, 39.423503], [-78.350114, 39.42257], [-78.350597, 39.421527], [-78.351239, 39.420603], [-78.352347, 39.41981], [-78.353384, 39.419091], [-78.355186, 39.417929], [-78.356547, 39.417343], [-78.356941, 39.416937], [-78.357027, 39.416646], [-78.356771, 39.416247], [-78.35663, 39.41591], [-78.356455, 39.415438], [-78.357203, 39.414689], [-78.358375, 39.41351], [-78.359355, 39.412542], [-78.359517, 39.411905], [-78.359854, 39.410735], [-78.359921, 39.409036], [-78.358797, 39.405639], [-78.357952, 39.4042], [-78.357199, 39.403733], [-78.356251, 39.403309], [-78.355791, 39.402517], [-78.35434, 39.401246], [-78.35295, 39.40036], [-78.352293, 39.399818], [-78.35205, 39.399618], [-78.35106, 39.398803], [-78.350596, 39.398326], [-78.349887, 39.397947], [-78.349439, 39.39726], [-78.349301, 39.396578], [-78.349616, 39.393887], [-78.350017, 39.392869], [-78.350773, 39.392025], [-78.351214, 39.391408], [-78.350927, 39.390993], [-78.350033, 39.390665], [-78.347884, 39.390511], [-78.346678, 39.390564], [-78.345879, 39.390299], [-78.345221, 39.389454], [-78.344678, 39.389114], [-78.343414, 39.388846], [-78.343217, 39.388815], [-78.344308, 39.387187], [-78.345596, 39.385162], [-78.346878, 39.383314], [-78.348002, 39.381371], [-78.350111, 39.379152], [-78.351101, 39.377669], [-78.351672, 39.376375], [-78.3521, 39.375106], [-78.353083, 39.374], [-78.354555, 39.372057], [-78.35484, 39.371624], [-78.355365, 39.370993], [-78.356296, 39.370235], [-78.356656, 39.369506], [-78.357715, 39.368395], [-78.35837, 39.368142], [-78.35879, 39.367622], [-78.360548, 39.365214], [-78.36165, 39.363911], [-78.362635, 39.362896], [-78.364048, 39.361538], [-78.365676, 39.360407], [-78.366472, 39.359625], [-78.36687, 39.359298], [-78.365539, 39.358895], [-78.364538, 39.358557], [-78.36433, 39.358483], [-78.362545, 39.357884], [-78.362431, 39.357846], [-78.362407, 39.357842], [-78.361441, 39.357689], [-78.361052, 39.357631], [-78.361021, 39.357626], [-78.360537, 39.357545], [-78.36, 39.357458], [-78.359928, 39.357446], [-78.359425, 39.357362], [-78.359419, 39.357361], [-78.358967, 39.357276], [-78.357962, 39.357051], [-78.357868, 39.357027], [-78.357524, 39.356941], [-78.356971, 39.356791], [-78.356873, 39.356764], [-78.355914, 39.356492], [-78.35562, 39.356412], [-78.35528, 39.356307], [-78.354863, 39.35619], [-78.354415, 39.356057], [-78.353549, 39.35581], [-78.353057, 39.355665], [-78.352944, 39.355633], [-78.351823, 39.355322], [-78.351394, 39.35521], [-78.350912, 39.3551], [-78.350807, 39.355076], [-78.350629, 39.355035], [-78.349906, 39.354884], [-78.349898, 39.354883], [-78.349473, 39.354805], [-78.349053, 39.35474], [-78.34893, 39.354721], [-78.34872, 39.354694], [-78.348043, 39.354605], [-78.346974, 39.354481], [-78.346229, 39.354383], [-78.344769, 39.354207], [-78.343785, 39.354094], [-78.342439, 39.35393], [-78.342313, 39.353915], [-78.341805, 39.353856], [-78.341797, 39.353855], [-78.341465, 39.353812], [-78.341356, 39.353797], [-78.341012, 39.353748], [-78.340673, 39.353689], [-78.340418, 39.353636], [-78.340629, 39.353174], [-78.340875, 39.352532], [-78.340713, 39.352241], [-78.340022, 39.352019], [-78.339526, 39.351936], [-78.339154, 39.351957], [-78.339053, 39.351731], [-78.33953, 39.35081], [-78.339163, 39.350308], [-78.338961, 39.349897], [-78.339287, 39.348613], [-78.340195, 39.347155], [-78.340665, 39.346484], [-78.341037, 39.345955], [-78.341311, 39.345563], [-78.341549, 39.345548], [-78.341731, 39.345895], [-78.341886, 39.34613], [-78.342189, 39.34659], [-78.342517, 39.346777], [-78.343117, 39.346838], [-78.343285, 39.346803], [-78.343688, 39.346721], [-78.344542, 39.346285], [-78.345159, 39.345742], [-78.346167, 39.344828], [-78.34678, 39.344274], [-78.347412, 39.34341], [-78.347637, 39.342728], [-78.34693, 39.342176], [-78.346116, 39.341808], [-78.345644, 39.341532], [-78.345577, 39.341236], [-78.345549, 39.341117], [-78.345463, 39.341032], [-78.346304, 39.339116], [-78.346936, 39.33818], [-78.347743, 39.337357], [-78.348246, 39.336841], [-78.348329, 39.336758], [-78.348758, 39.336129], [-78.348961, 39.33583], [-78.349515, 39.335343], [-78.350175, 39.33468], [-78.35015, 39.334157], [-78.350515, 39.333098], [-78.351535, 39.331714], [-78.351711, 39.331471], [-78.35172, 39.331458], [-78.352324, 39.330626], [-78.352742, 39.330235], [-78.353089, 39.329754], [-78.353481, 39.329033], [-78.353853, 39.328216], [-78.353918, 39.327927], [-78.354989, 39.327532], [-78.355435, 39.327414], [-78.355472, 39.327381], [-78.355717, 39.327183], [-78.355712, 39.327152], [-78.355667, 39.326881], [-78.35556, 39.326426], [-78.355565, 39.326249], [-78.355566, 39.326212], [-78.355579, 39.325734], [-78.355808, 39.325195], [-78.35643, 39.32373], [-78.356912, 39.322992], [-78.357115, 39.322681], [-78.357181, 39.322556], [-78.357803, 39.321391], [-78.358396, 39.320197], [-78.358943, 39.319492], [-78.359075, 39.319364], [-78.3592, 39.319243], [-78.359249, 39.319195], [-78.359288, 39.319157], [-78.359304, 39.319137], [-78.359407, 39.31901], [-78.359865, 39.318446], [-78.359914, 39.318303], [-78.359983, 39.318101], [-78.360038, 39.317779], [-78.360252, 39.317555], [-78.360574, 39.317605], [-78.361925, 39.31825], [-78.361959, 39.318275], [-78.362867, 39.318965], [-78.363424, 39.319089], [-78.364077, 39.318828], [-78.36418, 39.318674], [-78.364351, 39.318451], [-78.36439, 39.318398], [-78.364657, 39.317988], [-78.364743, 39.317715], [-78.364687, 39.31732], [-78.364402, 39.316973], [-78.364064, 39.316689], [-78.363874, 39.316261], [-78.363965, 39.315635], [-78.364206, 39.315226], [-78.364353, 39.315132], [-78.365082, 39.314663], [-78.365457, 39.314422], [-78.365845, 39.313991], [-78.366231, 39.312795], [-78.366571, 39.312128], [-78.366718, 39.311841], [-78.366874, 39.310909], [-78.367245, 39.310156], [-78.367894, 39.309493], [-78.369608, 39.308805], [-78.370544, 39.308409], [-78.371607, 39.3077], [-78.374731, 39.305144], [-78.375948, 39.303839], [-78.376719, 39.302934], [-78.377884, 39.30187], [-78.37848, 39.300996], [-78.378971, 39.30021], [-78.379991, 39.299267], [-78.380874, 39.298539], [-78.380905, 39.29852], [-78.380987, 39.298467], [-78.382199, 39.297733], [-78.383798, 39.296583], [-78.385055, 39.295672], [-78.385887, 39.294896], [-78.386398, 39.294263], [-78.386908, 39.293767], [-78.387241, 39.293438], [-78.387249, 39.293359], [-78.387257, 39.293314], [-78.387279, 39.293093], [-78.38721, 39.292554], [-78.387152, 39.292014], [-78.387197, 39.291452], [-78.387606, 39.290722], [-78.388085, 39.290137], [-78.388376, 39.289691], [-78.388503, 39.289496], [-78.388661, 39.289062], [-78.388726, 39.288815], [-78.388788, 39.28858], [-78.389102, 39.288123], [-78.389612, 39.287482], [-78.389987, 39.28705], [-78.390322, 39.286645], [-78.390571, 39.286345], [-78.390936, 39.285912], [-78.391321, 39.285488], [-78.391757, 39.285168], [-78.392061, 39.285047], [-78.392109, 39.285028], [-78.39226, 39.284968], [-78.392262, 39.284967], [-78.392305, 39.284922], [-78.392409, 39.284796], [-78.392536, 39.284641], [-78.392839, 39.284047], [-78.392891, 39.283923], [-78.392961, 39.283758], [-78.393102, 39.283421], [-78.393374, 39.282996], [-78.393706, 39.282796], [-78.394555, 39.282446], [-78.395166, 39.282329], [-78.395214, 39.282324], [-78.395811, 39.282266], [-78.395951, 39.282252], [-78.396562, 39.282086], [-78.397029, 39.281758], [-78.397133, 39.281563], [-78.397364, 39.281132], [-78.397542, 39.280836], [-78.397688, 39.280643], [-78.397772, 39.280614], [-78.397899, 39.28057], [-78.397916, 39.280567], [-78.39806, 39.280645], [-78.398336, 39.281097], [-78.398685, 39.28134], [-78.399231, 39.281527], [-78.399894, 39.281353], [-78.400549, 39.28093], [-78.401558, 39.279945], [-78.402889, 39.278632], [-78.40316, 39.278296], [-78.403244, 39.278055], [-78.402999, 39.277595], [-78.402705, 39.277464], [-78.402278, 39.277246], [-78.402051, 39.277117], [-78.401897, 39.277003], [-78.401816, 39.276762], [-78.402181, 39.276273], [-78.402786, 39.275479], [-78.403712, 39.274687], [-78.404929, 39.273462], [-78.406563, 39.271644], [-78.407468, 39.270764], [-78.407831, 39.270508], [-78.407826, 39.270462], [-78.407812, 39.270328], [-78.407802, 39.27022], [-78.40824, 39.269553], [-78.408893, 39.269194], [-78.409288, 39.268834], [-78.409715, 39.268417], [-78.409978, 39.267719], [-78.410341, 39.267423], [-78.41115, 39.267], [-78.411504, 39.266503], [-78.412191, 39.265774], [-78.412886, 39.265295], [-78.414207, 39.263918], [-78.414564, 39.263132], [-78.415031, 39.262512], [-78.415811, 39.261971], [-78.416456, 39.261377], [-78.41648, 39.261358], [-78.416498, 39.261344], [-78.417016, 39.260875], [-78.417299, 39.260481], [-78.417798, 39.259785], [-78.418166, 39.258894], [-78.418416, 39.258509], [-78.418977, 39.258029], [-78.419425, 39.257484], [-78.419169, 39.257032], [-78.418677, 39.256459], [-78.418658, 39.256381], [-78.418587, 39.256073], [-78.418092, 39.255982], [-78.417597, 39.255907], [-78.416753, 39.255509], [-78.416123, 39.255418], [-78.41563, 39.255601], [-78.41559, 39.255616], [-78.41544, 39.255673], [-78.414634, 39.255741], [-78.413151, 39.254922], [-78.412504, 39.254485], [-78.412176, 39.254025], [-78.411661, 39.253927], [-78.410785, 39.253617], [-78.410035, 39.253002], [-78.409593, 39.252759], [-78.409119, 39.252572], [-78.407663, 39.251126], [-78.407231, 39.250786], [-78.40682, 39.250583], [-78.406399, 39.25011], [-78.40571, 39.249064], [-78.40496, 39.248434], [-78.404323, 39.247901], [-78.403923, 39.247651], [-78.403462, 39.246845], [-78.403011, 39.246425], [-78.402438, 39.246024], [-78.401716, 39.245601], [-78.401222, 39.245399], [-78.400555, 39.244761], [-78.399856, 39.244285], [-78.399846, 39.244262], [-78.399788, 39.244137], [-78.399672, 39.243882], [-78.400819, 39.243113], [-78.40211, 39.24244], [-78.40335, 39.241751], [-78.404217, 39.241222], [-78.404623, 39.240258], [-78.404516, 39.239539], [-78.404509, 39.239488], [-78.404503, 39.239445], [-78.404556, 39.239083], [-78.404615, 39.238881], [-78.404644, 39.238785], [-78.404671, 39.238697], [-78.404868, 39.238359], [-78.404983, 39.238014], [-78.404985, 39.237619], [-78.404811, 39.2372], [-78.404515, 39.236661], [-78.404348, 39.236103], [-78.404332, 39.236049], [-78.404228, 39.23584], [-78.404251, 39.235718], [-78.404242, 39.235413], [-78.404572, 39.235156], [-78.405079, 39.234642], [-78.405258, 39.234317], [-78.40533, 39.234186], [-78.405764, 39.233437], [-78.405909, 39.23317], [-78.406034, 39.232939], [-78.406076, 39.232714], [-78.406118, 39.232513], [-78.405728, 39.232318], [-78.405462, 39.231706], [-78.405588, 39.231184], [-78.405602, 39.231171], [-78.40594, 39.230855], [-78.406704, 39.230438], [-78.406982, 39.230399], [-78.407117, 39.230343], [-78.407354, 39.230158], [-78.407769, 39.229395], [-78.408246, 39.228631], [-78.408681, 39.228182], [-78.409106, 39.227475], [-78.409871, 39.226897], [-78.41046, 39.226513], [-78.410594, 39.226336], [-78.410575, 39.226022], [-78.410648, 39.225877], [-78.411485, 39.225067], [-78.412117, 39.224345], [-78.413049, 39.22314], [-78.414424, 39.221832], [-78.415282, 39.221126], [-78.415644, 39.220717], [-78.41579, 39.220186], [-78.416683, 39.219049], [-78.417243, 39.218337], [-78.417893, 39.217512], [-78.420551, 39.214806], [-78.420934, 39.214642], [-78.420943, 39.214638], [-78.42109, 39.214489], [-78.421326, 39.214245], [-78.422164, 39.213281], [-78.423021, 39.212583], [-78.423765, 39.21211], [-78.423971, 39.212057], [-78.424462, 39.211811], [-78.424487, 39.211789], [-78.424532, 39.211749], [-78.424609, 39.211681], [-78.425385, 39.210993], [-78.425981, 39.21045], [-78.426476, 39.210008], [-78.426607, 39.209892], [-78.426745, 39.209769], [-78.427451, 39.209154], [-78.427813, 39.208833], [-78.427879, 39.208772], [-78.427898, 39.208684], [-78.428044, 39.208], [-78.428737, 39.207382], [-78.429479, 39.207111], [-78.429862, 39.207008], [-78.429899, 39.206998], [-78.430366, 39.206871], [-78.430821, 39.206397], [-78.431173, 39.205915], [-78.431171, 39.205808], [-78.431712, 39.205307], [-78.432191, 39.204836], [-78.432207, 39.204805], [-78.432798, 39.203658], [-78.433296, 39.202629], [-78.43403, 39.202084], [-78.435683, 39.200534], [-78.436509, 39.200013], [-78.437057, 39.199774], [-78.437103, 39.199751], [-78.437176, 39.199715], [-78.437195, 39.199695], [-78.437226, 39.199662], [-78.437609, 39.199255], [-78.437721, 39.199137], [-78.438239, 39.198594], [-78.438698, 39.198101], [-78.438237, 39.197643], [-78.438221, 39.197626], [-78.438001, 39.197391], [-78.437632, 39.196998], [-78.436665, 39.196666], [-78.435213, 39.196687], [-78.434245, 39.196685], [-78.433782, 39.196668], [-78.433052, 39.196272], [-78.432882, 39.19616], [-78.43282, 39.196133], [-78.43267, 39.196067], [-78.432483, 39.195985], [-78.432364, 39.195933], [-78.431833, 39.196097], [-78.431813, 39.196103], [-78.431663, 39.196149], [-78.431271, 39.196293], [-78.430849, 39.196235], [-78.43043, 39.195381], [-78.430094, 39.194375], [-78.429623, 39.193585], [-78.429172, 39.193037], [-78.428679, 39.192641], [-78.4271, 39.193636], [-78.42644, 39.194093], [-78.426027, 39.194148], [-78.424908, 39.193309], [-78.424334, 39.192663], [-78.424295, 39.192164], [-78.425867, 39.190285], [-78.427201, 39.1888], [-78.427424, 39.188593], [-78.428462, 39.187628], [-78.42862, 39.187361], [-78.4287, 39.187225], [-78.428686, 39.187217], [-78.428392, 39.187055], [-78.428115, 39.186725], [-78.428021, 39.186467], [-78.42799, 39.186382], [-78.42786, 39.186113], [-78.427708, 39.185983], [-78.427604, 39.185893], [-78.427388, 39.185782], [-78.427151, 39.185733], [-78.426935, 39.185571], [-78.426783, 39.184975], [-78.426929, 39.184485], [-78.427044, 39.184187], [-78.426901, 39.183737], [-78.426635, 39.183269], [-78.426513, 39.183011], [-78.426318, 39.18277], [-78.426092, 39.182713], [-78.425732, 39.182712], [-78.425723, 39.182712], [-78.425453, 39.182711], [-78.424948, 39.182863], [-78.424403, 39.182741], [-78.424314, 39.182689], [-78.423992, 39.182499], [-78.423644, 39.182039], [-78.423619, 39.181845], [-78.423614, 39.181809], [-78.423574, 39.181509], [-78.423328, 39.181355], [-78.422948, 39.181057], [-78.422856, 39.180969], [-78.422106, 39.180254], [-78.421724, 39.179889], [-78.421645, 39.179814], [-78.42102, 39.179153], [-78.42064, 39.178935], [-78.419993, 39.178426], [-78.419541, 39.178071], [-78.419152, 39.17774], [-78.419152, 39.177587], [-78.418947, 39.177362], [-78.418535, 39.177377], [-78.416907, 39.177622], [-78.415918, 39.177724], [-78.414847, 39.177843], [-78.414421, 39.176329], [-78.414192, 39.175909], [-78.413889, 39.175354], [-78.413728, 39.174428], [-78.413134, 39.173646], [-78.411975, 39.172742], [-78.410743, 39.171991], [-78.409991, 39.172005], [-78.409209, 39.171818], [-78.408109, 39.171469], [-78.406969, 39.170911], [-78.406283, 39.170096], [-78.405772, 39.169234], [-78.405249, 39.168637], [-78.40449, 39.16812], [-78.40391, 39.167746], [-78.4037, 39.167459], [-78.403999, 39.167363], [-78.404845, 39.166866], [-78.405734, 39.165959], [-78.406767, 39.164899], [-78.407232, 39.164386], [-78.40779, 39.164057], [-78.408625, 39.163536], [-78.40909, 39.163143], [-78.409359, 39.162838], [-78.409701, 39.162179], [-78.410672, 39.161393], [-78.41159, 39.160767], [-78.412323, 39.160206], [-78.412602, 39.160046], [-78.412954, 39.159451], [-78.413172, 39.158937], [-78.413946, 39.158423], [-78.416852, 39.157626], [-78.417533, 39.157338], [-78.417915, 39.157001], [-78.41838, 39.156664], [-78.419977, 39.156048], [-78.420421, 39.1558], [-78.421668, 39.155296], [-78.424564, 39.154104], [-78.427297, 39.152734], [-78.428753, 39.151321], [-78.430078, 39.149208], [-78.431432, 39.147537], [-78.432146, 39.146686], [-78.432281, 39.146324], [-78.432664, 39.145754], [-78.433396, 39.145313], [-78.434098, 39.144703], [-78.43446, 39.144188], [-78.434566, 39.143368], [-78.434814, 39.143055], [-78.436661, 39.141699], [-78.436873, 39.139881], [-78.437218, 39.13841], [-78.437735, 39.136838], [-78.437769, 39.136737], [-78.437774, 39.135434], [-78.438189, 39.134421], [-78.438925, 39.133006], [-78.439432, 39.132154], [-78.44039, 39.131617], [-78.441134, 39.130718], [-78.441951, 39.129585], [-78.443055, 39.128614], [-78.444263, 39.127618], [-78.445542, 39.126647], [-78.446563, 39.125772], [-78.447182, 39.125113], [-78.448299, 39.124059], [-78.449823, 39.122921], [-78.451008, 39.12181], [-78.452224, 39.120723], [-78.453805, 39.120012], [-78.45479, 39.118451], [-78.456127, 39.117169], [-78.457333, 39.116171], [-78.457954, 39.115289], [-78.459314, 39.114281], [-78.459872, 39.113359], [-78.460748, 39.113354], [-78.463816, 39.113294], [-78.465564, 39.112977], [-78.466665, 39.112866], [-78.468048, 39.112043], [-78.469533, 39.111212], [-78.470152, 39.110246], [-78.470264, 39.110071], [-78.47137, 39.109323], [-78.471622, 39.109163], [-78.473212, 39.108151], [-78.473757, 39.107966], [-78.474588, 39.107683], [-78.475106, 39.107548], [-78.475379, 39.107477], [-78.476061, 39.107762], [-78.476585, 39.108637], [-78.477323, 39.109406], [-78.477542, 39.109496], [-78.477799, 39.109599], [-78.477835, 39.109613], [-78.478429, 39.109851], [-78.4796, 39.109513], [-78.482544, 39.108213], [-78.484286, 39.10738], [-78.486795, 39.105857], [-78.489763, 39.103864], [-78.493737, 39.101598], [-78.494812, 39.101147], [-78.495163, 39.101], [-78.495174, 39.10098], [-78.495622, 39.100133], [-78.495987, 39.098988], [-78.497358, 39.098045], [-78.498715, 39.096803], [-78.499734, 39.095941], [-78.500666, 39.095295], [-78.500866, 39.095156], [-78.501731, 39.094557], [-78.503281, 39.092981], [-78.504387, 39.091406], [-78.505198, 39.090808], [-78.507036, 39.089424], [-78.508135, 39.088638], [-78.50915, 39.08737], [-78.509374, 39.086765], [-78.510123, 39.086174], [-78.510325, 39.085558], [-78.510488, 39.08541], [-78.510527, 39.085375], [-78.510706, 39.085213], [-78.512106, 39.084886], [-78.5134, 39.084028], [-78.514478, 39.083033], [-78.515556, 39.082312], [-78.516482, 39.08181], [-78.516427, 39.081036], [-78.515958, 39.080054], [-78.516318, 39.079618], [-78.516345, 39.078828], [-78.516792, 39.077577], [-78.517449, 39.076914], [-78.518115, 39.07613], [-78.520035, 39.074738], [-78.520856, 39.074115], [-78.521564, 39.07346], [-78.522247, 39.071862], [-78.522717, 39.07107], [-78.524276, 39.069719], [-78.526546, 39.068229], [-78.529128, 39.067567], [-78.531698, 39.066527], [-78.532233, 39.066058], [-78.532919, 39.065459], [-78.534583, 39.064414], [-78.535111, 39.062913], [-78.53656, 39.062207], [-78.537536, 39.061704], [-78.540219, 39.060639], [-78.541406, 39.059127], [-78.542872, 39.057631], [-78.544093, 39.05666], [-78.545682, 39.05506], [-78.547737, 39.054077], [-78.54831, 39.053293], [-78.5495, 39.052507], [-78.5503, 39.051763], [-78.550758, 39.050794], [-78.55167, 39.049824], [-78.552744, 39.048498], [-78.554266, 39.048066], [-78.554786, 39.046943], [-78.555965, 39.045932], [-78.556751, 39.044535], [-78.558452, 39.042989], [-78.56, 39.041581], [-78.561612, 39.04085], [-78.562646, 39.039694], [-78.564607, 39.038566], [-78.565361, 39.03708], [-78.56804, 39.035451], [-78.568929, 39.03419], [-78.570581, 39.032967], [-78.571904, 39.032003], [-78.571065, 39.030958], [-78.569049, 39.029483], [-78.567972, 39.028503], [-78.566564, 39.027026], [-78.56584, 39.026311], [-78.565076, 39.025943], [-78.5641, 39.026285], [-78.563297, 39.026336], [-78.562522, 39.025743], [-78.562088, 39.02539], [-78.560448, 39.024719], [-78.559643, 39.024464], [-78.558951, 39.024015], [-78.558317, 39.02272], [-78.558169, 39.022043], [-78.557383, 39.021401], [-78.554225, 39.01968], [-78.55246, 39.018784], [-78.55047, 39.018073], [-78.552324, 39.016382], [-78.554922, 39.015132], [-78.556388, 39.01408], [-78.55765, 39.013197], [-78.559403, 39.011885], [-78.561714, 39.009015], [-78.562631, 39.007206], [-78.568334, 39.003454], [-78.569032, 39.002959], [-78.569666, 39.002248], [-78.570465, 39.00156], [-78.571651, 39.000116], [-78.572421, 38.999453], [-78.573391, 38.998485], [-78.575041, 38.996542], [-78.57792, 38.993011], [-78.580468, 38.990575], [-78.581984, 38.988406], [-78.582931, 38.985424], [-78.585975, 38.982867], [-78.587656, 38.980722], [-78.587324, 38.979755], [-78.588707, 38.978587], [-78.588932, 38.976966], [-78.59083, 38.975547], [-78.591914, 38.97395], [-78.593264, 38.971926], [-78.596018, 38.9702], [-78.598897, 38.969554], [-78.599183, 38.969239], [-78.600144, 38.968183], [-78.601402, 38.966538], [-78.601658, 38.964611], [-78.607721, 38.969203], [-78.608372, 38.969751], [-78.609652, 38.969903], [-78.610128, 38.970408], [-78.6102, 38.970484], [-78.610305, 38.971943], [-78.610379, 38.973587], [-78.610577, 38.975111], [-78.611187, 38.976142], [-78.612591, 38.976295], [-78.614315, 38.975858], [-78.617361, 38.974615], [-78.618679, 38.97409], [-78.618752, 38.975074], [-78.619342, 38.976122], [-78.619502, 38.97649], [-78.619985, 38.977346], [-78.620121, 38.978878], [-78.620194, 38.979837], [-78.619917, 38.981296], [-78.620456, 38.982609], [-78.621148, 38.982512], [-78.621787, 38.982391], [-78.62347, 38.982599], [-78.624739, 38.982653], [-78.625675, 38.982583], [-78.627801, 38.981798], [-78.629556, 38.980874], [-78.630849, 38.979594], [-78.63171, 38.97835], [-78.631843, 38.97816], [-78.632455, 38.976991], [-78.632474, 38.974747], [-78.633903, 38.972725], [-78.635374, 38.97042], [-78.636854, 38.968519], [-78.638426, 38.966827], [-78.640136, 38.967017], [-78.641998, 38.967692], [-78.644675, 38.968061], [-78.646592, 38.968146], [-78.648268, 38.966052], [-78.648261, 38.965164], [-78.649338, 38.963608], [-78.651002, 38.961998], [-78.652355, 38.960685], [-78.65247, 38.960387], [-78.653053, 38.958548], [-78.653966, 38.956565], [-78.655046, 38.953774], [-78.657466, 38.950906], [-78.658141, 38.949156], [-78.659053, 38.947383], [-78.660373, 38.946974], [-78.662086, 38.94571], [-78.664277, 38.943237], [-78.665889, 38.941587], [-78.666597, 38.939208], [-78.66826, 38.937403], [-78.669844, 38.935042], [-78.670682, 38.933808], [-78.672498, 38.932553], [-78.674275, 38.9307], [-78.676256, 38.929235], [-78.677452, 38.927916], [-78.67763, 38.927721], [-78.679384, 38.926578], [-78.679977, 38.925885], [-78.680459, 38.925321], [-78.680953, 38.925241], [-78.68162, 38.925848], [-78.684907, 38.925129], [-78.685968, 38.925002], [-78.687275, 38.925069], [-78.688269, 38.924788], [-78.688398, 38.924678], [-78.689037, 38.924136], [-78.689116, 38.924068], [-78.689551, 38.92372], [-78.689599, 38.923682], [-78.689611, 38.923673], [-78.689617, 38.923668], [-78.689628, 38.923659], [-78.691453, 38.922203], [-78.691898, 38.921421], [-78.692717, 38.919598], [-78.694491, 38.918456], [-78.695558, 38.917618], [-78.696138, 38.917177], [-78.696405, 38.916781], [-78.696487, 38.916563], [-78.696734, 38.916264], [-78.697115, 38.915933], [-78.697383, 38.91561], [-78.697495, 38.915303], [-78.697453, 38.915061], [-78.697421, 38.914827], [-78.697327, 38.914569], [-78.697327, 38.91448], [-78.69744, 38.914367], [-78.697626, 38.914286], [-78.69776, 38.91431], [-78.697874, 38.914374], [-78.698144, 38.914544], [-78.698485, 38.914697], [-78.698827, 38.914817], [-78.699302, 38.914938], [-78.699685, 38.915067], [-78.700192, 38.915098], [-78.70076, 38.915122], [-78.701226, 38.915258], [-78.701619, 38.915411], [-78.701888, 38.915572], [-78.70224, 38.915629], [-78.702715, 38.915604], [-78.703211, 38.915547], [-78.703758, 38.915449], [-78.704326, 38.915239], [-78.704584, 38.915045], [-78.704903, 38.91477], [-78.705253, 38.914487], [-78.705437, 38.914289], [-78.707478, 38.912733], [-78.708944, 38.911072], [-78.712625, 38.908673], [-78.714972, 38.906436], [-78.714981, 38.906427], [-78.715107, 38.906311], [-78.71543, 38.905816], [-78.715646, 38.905501], [-78.715872, 38.90521], [-78.716171, 38.904838], [-78.716397, 38.904652], [-78.716634, 38.904483], [-78.717181, 38.904304], [-78.717553, 38.90428], [-78.717947, 38.904303], [-78.71833, 38.904416], [-78.71865, 38.904569], [-78.71891, 38.904819], [-78.719294, 38.905238], [-78.719574, 38.905601], [-78.719813, 38.905915], [-78.719917, 38.906084], [-78.719925, 38.906405], [-78.719923, 38.906411], [-78.719917, 38.90643], [-78.719863, 38.906609], [-78.719858, 38.906861], [-78.719858, 38.906925], [-78.719856, 38.907077], [-78.71985, 38.907532], [-78.71985, 38.907553], [-78.719898, 38.908004], [-78.719899, 38.908013], [-78.7199, 38.908018], [-78.719904, 38.90806], [-78.720175, 38.908457], [-78.720261, 38.908534], [-78.72029, 38.90856], [-78.72039, 38.908649], [-78.720444, 38.908682], [-78.72046, 38.908692], [-78.720491, 38.908711], [-78.7205, 38.908716], [-78.720508, 38.908721], [-78.720536, 38.908738], [-78.720703, 38.908997], [-78.72083, 38.909449], [-78.720893, 38.909797], [-78.720895, 38.909808], [-78.720896, 38.909814], [-78.720903, 38.909853], [-78.720904, 38.909858], [-78.720908, 38.909898], [-78.720908, 38.909905], [-78.720909, 38.909915], [-78.720911, 38.909934], [-78.720934, 38.910168], [-78.720802, 38.910448], [-78.720493, 38.910869], [-78.720474, 38.911264], [-78.720474, 38.911269], [-78.720475, 38.911274], [-78.720573, 38.91213], [-78.720574, 38.912142], [-78.720575, 38.912149], [-78.720576, 38.912154], [-78.720577, 38.912163], [-78.720578, 38.912175], [-78.720579, 38.912185], [-78.720649, 38.912308], [-78.720664, 38.912333], [-78.720667, 38.912339], [-78.72067, 38.912344], [-78.72068, 38.912361], [-78.720686, 38.912371], [-78.720757, 38.912527], [-78.720801, 38.912778], [-78.720802, 38.913093], [-78.720802, 38.913227], [-78.720835, 38.913641], [-78.720774, 38.913982], [-78.720734, 38.914174], [-78.720683, 38.914297], [-78.72057, 38.914361], [-78.720469, 38.914387], [-78.720457, 38.91439], [-78.720447, 38.914392], [-78.720423, 38.914397], [-78.719847, 38.914822], [-78.719351, 38.915757], [-78.71981, 38.916433], [-78.719826, 38.916456], [-78.720152, 38.916936], [-78.719454, 38.920268], [-78.719338, 38.920665], [-78.719312, 38.920737], [-78.719291, 38.920797], [-78.719291, 38.920894], [-78.719351, 38.920981], [-78.719374, 38.921015], [-78.719509, 38.921208], [-78.719594, 38.921725], [-78.719667, 38.922023], [-78.719758, 38.922143], [-78.719809, 38.922647], [-78.719853, 38.923002], [-78.719862, 38.923073], [-78.719866, 38.923103], [-78.719879, 38.923209], [-78.720076, 38.923499], [-78.720098, 38.923871], [-78.719987, 38.924452], [-78.719843, 38.924767], [-78.719576, 38.925171], [-78.719713, 38.925703], [-78.719623, 38.926518], [-78.719388, 38.927366], [-78.719185, 38.928125], [-78.718991, 38.928827], [-78.718693, 38.929384], [-78.718355, 38.930232], [-78.718162, 38.930999], [-78.717908, 38.932218], [-78.717512, 38.934066], [-78.71726, 38.935366], [-78.717079, 38.936036], [-78.717394, 38.935673], [-78.718486, 38.934274], [-78.719187, 38.933886], [-78.719789, 38.933324], [-78.721055, 38.932226], [-78.721874, 38.931689], [-78.722445, 38.931416], [-78.723587, 38.93112], [-78.724097, 38.931105], [-78.724537, 38.931001], [-78.724924, 38.930974], [-78.725713, 38.930981], [-78.726225, 38.93094], [-78.726705, 38.930747], [-78.727289, 38.930624], [-78.729159, 38.93001], [-78.729878, 38.929837], [-78.730718, 38.929667], [-78.731483, 38.929545], [-78.732151, 38.929384], [-78.732587, 38.929169], [-78.733224, 38.928883], [-78.734183, 38.928513], [-78.735089, 38.928159], [-78.735846, 38.927951], [-78.736537, 38.927651], [-78.736974, 38.927528], [-78.737414, 38.927489], [-78.737882, 38.927446], [-78.738271, 38.927406], [-78.738574, 38.927405], [-78.738637, 38.927385], [-78.738683, 38.92737], [-78.738766, 38.927343], [-78.738923, 38.927293], [-78.73915, 38.927142], [-78.740254, 38.926222], [-78.741129, 38.925397], [-78.742118, 38.924524], [-78.742776, 38.923708], [-78.743135, 38.923136], [-78.743383, 38.922966], [-78.743671, 38.922594], [-78.744206, 38.92202], [-78.744658, 38.921503], [-78.744946, 38.92114], [-78.744966, 38.921083], [-78.744894, 38.920973], [-78.744699, 38.920821], [-78.744548, 38.920666], [-78.744457, 38.920454], [-78.744436, 38.920236], [-78.744507, 38.920067], [-78.744662, 38.919946], [-78.744992, 38.919784], [-78.745312, 38.919614], [-78.745611, 38.919468], [-78.746013, 38.919225], [-78.746581, 38.918829], [-78.747044, 38.918489], [-78.747507, 38.918021], [-78.748115, 38.917519], [-78.748805, 38.917074], [-78.749228, 38.916799], [-78.749745, 38.916455], [-78.75052, 38.916036], [-78.751159, 38.914698], [-78.750893, 38.913078], [-78.75036, 38.911683], [-78.752088, 38.910877], [-78.753693, 38.909572], [-78.754661, 38.907589], [-78.754519, 38.905736], [-78.756237, 38.904092], [-78.757281, 38.903211], [-78.757595, 38.902947], [-78.758429, 38.901255], [-78.759088, 38.900537], [-78.760353, 38.900054], [-78.761771, 38.899643], [-78.764312, 38.898167], [-78.767428, 38.897128], [-78.769361, 38.897072], [-78.770728, 38.896112], [-78.772796, 38.89375], [-78.776302, 38.89304], [-78.779201, 38.892306], [-78.784198, 38.88863], [-78.786028, 38.887195], [-78.788034, 38.885131], [-78.789309, 38.882511], [-78.790081, 38.880084], [-78.791068, 38.879036], [-78.791613, 38.877601], [-78.79299, 38.876908], [-78.794224, 38.87644], [-78.795139, 38.876004], [-78.796333, 38.875119], [-78.796216, 38.874614], [-78.79666, 38.873654], [-78.797404, 38.872634], [-78.798086, 38.871598], [-78.798819, 38.87061], [-78.799695, 38.869222], [-78.800484, 38.868018], [-78.801242, 38.866797], [-78.801713, 38.866007], [-78.801848, 38.865723], [-78.802275, 38.864832], [-78.802521, 38.864441], [-78.802871, 38.863979], [-78.803158, 38.863589], [-78.803559, 38.863128], [-78.80392, 38.862594], [-78.804422, 38.861796], [-78.804774, 38.861254], [-78.804891, 38.86062], [-78.805059, 38.860035], [-78.805049, 38.859746], [-78.805048, 38.85972], [-78.805046, 38.859664], [-78.8051, 38.859134], [-78.805162, 38.858628], [-78.805367, 38.858236], [-78.805757, 38.857839], [-78.806028, 38.857215], [-78.806228, 38.857009], [-78.806611, 38.856926], [-78.80726, 38.856959], [-78.807572, 38.856794], [-78.808183, 38.856183], [-78.808697, 38.855329], [-78.808945, 38.854818], [-78.809102, 38.854216], [-78.809429, 38.853416], [-78.80949, 38.852548], [-78.809562, 38.852066], [-78.809702, 38.851794], [-78.810184, 38.850996], [-78.810731, 38.850023], [-78.810946, 38.849624], [-78.811135, 38.848966], [-78.811226, 38.848597], [-78.811516, 38.84807], [-78.811909, 38.847496], [-78.812238, 38.847066], [-78.812774, 38.846132], [-78.813259, 38.845141], [-78.813994, 38.843558], [-78.81453, 38.842632], [-78.814903, 38.842041], [-78.815119, 38.841602], [-78.815487, 38.840794], [-78.815725, 38.840242], [-78.815857, 38.839898], [-78.815999, 38.839522], [-78.816518, 38.838869], [-78.817091, 38.838064], [-78.817666, 38.837195], [-78.817967, 38.83666], [-78.818397, 38.835797], [-78.818849, 38.834942], [-78.81916, 38.834367], [-78.819609, 38.8336], [-78.820187, 38.833053], [-78.820445, 38.832558], [-78.820749, 38.831886], [-78.82117, 38.83099], [-78.821785, 38.83017], [-78.822186, 38.829709], [-78.822875, 38.828793], [-78.823431, 38.827851], [-78.823891, 38.827093], [-78.824256, 38.826414], [-78.824731, 38.825873], [-78.825477, 38.825159], [-78.826141, 38.824444], [-78.826664, 38.82367], [-78.827029, 38.822983], [-78.82723, 38.822262], [-78.827243, 38.822005], [-78.827265, 38.821618], [-78.827647, 38.821068], [-78.82817, 38.820239], [-78.828457, 38.819816], [-78.828739, 38.819168], [-78.829059, 38.818633], [-78.829442, 38.818083], [-78.829963, 38.817318], [-78.8306, 38.816441], [-78.831322, 38.815389], [-78.831662, 38.814903], [-78.83227, 38.814396], [-78.833002, 38.813859], [-78.833693, 38.813345], [-78.834346, 38.81263], [-78.834884, 38.812042], [-78.835194, 38.811507], [-78.835426, 38.810786], [-78.835439, 38.810182], [-78.835496, 38.809933], [-78.836728, 38.809121], [-78.83759, 38.808304], [-78.838312, 38.807564], [-78.838769, 38.807097], [-78.839711, 38.805879], [-78.840467, 38.804706], [-78.840714, 38.804226], [-78.841042, 38.803812], [-78.841562, 38.803111], [-78.842352, 38.802237], [-78.843057, 38.801506], [-78.843848, 38.800649], [-78.844701, 38.799727], [-78.845665, 38.798476], [-78.846314, 38.797455], [-78.846426, 38.797038], [-78.846575, 38.796356], [-78.846633, 38.796043], [-78.846781, 38.7959], [-78.847241, 38.795585], [-78.84819, 38.794986], [-78.848625, 38.794388], [-78.849257, 38.793696], [-78.849817, 38.79302], [-78.850246, 38.792189], [-78.850365, 38.791941], [-78.85045, 38.791314], [-78.850569, 38.791083], [-78.850852, 38.790813], [-78.851421, 38.790185], [-78.852082, 38.789115], [-78.852794, 38.788063], [-78.85325, 38.786958], [-78.853379, 38.786686], [-78.853441, 38.786617], [-78.853559, 38.786488], [-78.85399, 38.786043], [-78.854915, 38.784639], [-78.855194, 38.784095], [-78.855209, 38.783895], [-78.855206, 38.783581], [-78.855333, 38.783405], [-78.855543, 38.783207], [-78.856268, 38.782492], [-78.857239, 38.781363], [-78.85891, 38.779196], [-78.859813, 38.777864], [-78.860033, 38.777224], [-78.860153, 38.776903], [-78.860417, 38.776561], [-78.861485, 38.775231], [-78.861588, 38.774734], [-78.861585, 38.774371], [-78.861671, 38.774212], [-78.861818, 38.774061], [-78.862133, 38.773775], [-78.862723, 38.773139], [-78.863687, 38.771808], [-78.863894, 38.771256], [-78.864081, 38.770687], [-78.86416, 38.77039], [-78.864769, 38.769312], [-78.865022, 38.768551], [-78.865224, 38.767765], [-78.865426, 38.767438], [-78.865656, 38.767288], [-78.865908, 38.767042], [-78.866617, 38.766077], [-78.867388, 38.765154], [-78.868159, 38.764223], [-78.8687, 38.763482], [-78.868974, 38.763147], [-78.869279, 38.762999], [-78.87475, 38.766819], [-78.877449, 38.768704], [-78.887735, 38.775879], [-78.891405, 38.778455], [-78.893339, 38.779805], [-78.893342, 38.779807], [-78.894722, 38.78076], [-78.896001, 38.781664], [-78.896014, 38.781673], [-78.897409, 38.782651], [-78.901276, 38.785352], [-78.92227, 38.800017], [-78.924418, 38.801517], [-78.931568, 38.80651], [-78.939745, 38.812204], [-78.939843, 38.81228], [-78.93994, 38.812357], [-78.94001, 38.812406], [-78.940079, 38.812454], [-78.940149, 38.812503], [-78.941203, 38.813239], [-78.941436, 38.813394], [-78.941737, 38.813595], [-78.941969, 38.813763], [-78.942908, 38.814409], [-78.945518, 38.816245], [-78.945654, 38.81634], [-78.946121, 38.816666], [-78.946312, 38.8168], [-78.948294, 38.818173], [-78.949963, 38.81935], [-78.95047, 38.819707], [-78.950822, 38.819953], [-78.956272, 38.823763], [-78.977283, 38.838418], [-78.987232, 38.845398], [-78.989245, 38.846826], [-78.991272, 38.848279], [-78.993764, 38.850029], [-78.994, 38.85011], [-78.994437, 38.849808], [-78.994823, 38.849529], [-78.99484, 38.849517], [-78.994863, 38.8495], [-78.995017, 38.849399], [-78.995322, 38.849186], [-78.995546, 38.848926], [-78.995798, 38.84865], [-78.996113, 38.848381], [-78.996453, 38.848145], [-78.997185, 38.847902], [-78.997522, 38.84773], [-78.998174, 38.847361], [-78.998804, 38.846871], [-78.999343, 38.846438], [-78.999755, 38.84617], [-79.000155, 38.84562], [-79.000255, 38.84542], [-79.000255, 38.84502], [-79.000155, 38.84472], [-78.999855, 38.84412], [-78.999755, 38.84372], [-78.999755, 38.84347], [-78.999485, 38.843076], [-78.999368, 38.842827], [-78.999365, 38.842797], [-78.999319, 38.842312], [-78.999093, 38.841637], [-78.998866, 38.84097], [-78.998911, 38.840518], [-78.999017, 38.840082], [-78.999318, 38.839514], [-78.999755, 38.83917], [-79.000255, 38.83852], [-79.000955, 38.83772], [-79.001755, 38.83712], [-79.002355, 38.83652], [-79.002517, 38.836116], [-79.002679, 38.835711], [-79.003202, 38.834362], [-79.003755, 38.83302], [-79.003766, 38.832999], [-79.003855, 38.83282], [-79.003943, 38.832319], [-79.004355, 38.83152], [-79.004491, 38.831301], [-79.004855, 38.83072], [-79.005155, 38.82992], [-79.005455, 38.82892], [-79.005655, 38.82822], [-79.005855, 38.82732], [-79.006155, 38.82672], [-79.006355, 38.82612], [-79.006335, 38.825939], [-79.006255, 38.82512], [-79.00614, 38.824519], [-79.006555, 38.82372], [-79.006949, 38.823323], [-79.007355, 38.82292], [-79.007955, 38.82232], [-79.008755, 38.82202], [-79.009352, 38.821914], [-79.009748, 38.82162], [-79.010155, 38.821319], [-79.010655, 38.821119], [-79.011455, 38.820819], [-79.011955, 38.82042], [-79.012655, 38.82012], [-79.013559, 38.820017], [-79.013588, 38.820022], [-79.013618, 38.820026], [-79.014155, 38.82012], [-79.014659, 38.820326], [-79.014731, 38.820324], [-79.014778, 38.820322], [-79.015355, 38.82032], [-79.015634, 38.820206], [-79.016255, 38.82012], [-79.016553, 38.820062], [-79.016598, 38.820053], [-79.016759, 38.820015], [-79.017259, 38.819716], [-79.017548, 38.819332], [-79.017906, 38.819148], [-79.018154, 38.819021], [-79.018555, 38.81882], [-79.019053, 38.818322], [-79.019232, 38.818166], [-79.019233, 38.818165], [-79.019537, 38.817915], [-79.019756, 38.817021], [-79.020056, 38.81662], [-79.020156, 38.81612], [-79.019857, 38.815422], [-79.019656, 38.814721], [-79.019635, 38.814423], [-79.019628, 38.814352], [-79.019609, 38.814161], [-79.019602, 38.814001], [-79.0196, 38.813938], [-79.019598, 38.813903], [-79.019548, 38.813326], [-79.019655, 38.812326], [-79.019656, 38.812319], [-79.019845, 38.811719], [-79.020256, 38.81142], [-79.020753, 38.811234], [-79.020765, 38.811222], [-79.02078, 38.811206], [-79.020806, 38.811178], [-79.020856, 38.81112], [-79.021556, 38.81092], [-79.022056, 38.81072], [-79.023056, 38.81022], [-79.023656, 38.80982], [-79.024056, 38.80922], [-79.024113, 38.808624], [-79.024124, 38.808567], [-79.024135, 38.808509], [-79.024156, 38.80832], [-79.024256, 38.80772], [-79.024256, 38.80742], [-79.024056, 38.80692], [-79.023656, 38.80652], [-79.023456, 38.80612], [-79.023556, 38.80562], [-79.023956, 38.80522], [-79.024356, 38.80452], [-79.024456, 38.80372], [-79.024256, 38.80342], [-79.023456, 38.80262], [-79.022956, 38.800121], [-79.022956, 38.799321], [-79.023056, 38.798921], [-79.023044, 38.798619], [-79.023756, 38.797921], [-79.024256, 38.797221], [-79.024856, 38.796121], [-79.025256, 38.795321], [-79.025556, 38.794621], [-79.026156, 38.793421], [-79.026756, 38.792721], [-79.027256, 38.792121], [-79.028156, 38.791521], [-79.029256, 38.791021], [-79.030257, 38.791014], [-79.031256, 38.791021], [-79.033156, 38.791021], [-79.034356, 38.791221], [-79.035756, 38.791421], [-79.036856, 38.791721], [-79.037556, 38.791821], [-79.038856, 38.791921], [-79.039656, 38.791821], [-79.040556, 38.791721], [-79.041156, 38.791721], [-79.041656, 38.791921], [-79.042256, 38.791921], [-79.043056, 38.791821], [-79.043656, 38.791621], [-79.044457, 38.791615], [-79.045056, 38.791821], [-79.045761, 38.792116], [-79.045954, 38.792121], [-79.046557, 38.792121], [-79.047352, 38.791818], [-79.048057, 38.791321], [-79.048957, 38.790721], [-79.049557, 38.790121], [-79.050257, 38.789621], [-79.051157, 38.788921], [-79.051857, 38.788221], [-79.051972, 38.78812], [-79.052555, 38.787613], [-79.052846, 38.787441], [-79.052873, 38.787426], [-79.053252, 38.787218], [-79.053757, 38.786821], [-79.054057, 38.786521], [-79.054305, 38.786272], [-79.054357, 38.786221], [-79.054657, 38.786021], [-79.054957, 38.785721], [-79.055257, 38.785121], [-79.055457, 38.784321], [-79.055645, 38.783619], [-79.055657, 38.783021], [-79.055357, 38.782221], [-79.055057, 38.781821], [-79.054557, 38.781121], [-79.054357, 38.780621], [-79.053957, 38.780221], [-79.053257, 38.779721], [-79.052457, 38.779221], [-79.052438, 38.779197], [-79.052057, 38.778721], [-79.051657, 38.778021], [-79.051657, 38.777221], [-79.052057, 38.775521], [-79.052057, 38.775321], [-79.051957, 38.775121], [-79.051448, 38.774417], [-79.051272, 38.773909], [-79.051271, 38.77361], [-79.051315, 38.773359], [-79.051357, 38.773121], [-79.051557, 38.772621], [-79.052157, 38.772421], [-79.053257, 38.772321], [-79.053757, 38.772321], [-79.054457, 38.772021], [-79.055099, 38.77162], [-79.055257, 38.771521], [-79.055657, 38.770921], [-79.055757, 38.770321], [-79.055757, 38.769521], [-79.05578, 38.768926], [-79.055957, 38.768321], [-79.056557, 38.767321], [-79.056757, 38.766521], [-79.056857, 38.765821], [-79.056857, 38.765221], [-79.056957, 38.764721], [-79.057057, 38.764021], [-79.057157, 38.763421], [-79.057157, 38.763121], [-79.057257, 38.762821], [-79.057257, 38.762321], [-79.057357, 38.761921], [-79.057257, 38.761721], [-79.057257, 38.761521], [-79.057256, 38.761421], [-79.057257, 38.761121], [-79.057257, 38.760721], [-79.057557, 38.760221], [-79.057857, 38.759921], [-79.058257, 38.759721], [-79.058957, 38.759121], [-79.059057, 38.758921], [-79.059557, 38.758321], [-79.059857, 38.757921], [-79.060257, 38.757521], [-79.060957, 38.756721], [-79.062057, 38.756021], [-79.062957, 38.755521], [-79.063657, 38.755121], [-79.064257, 38.754821], [-79.064857, 38.754421], [-79.065657, 38.754021], [-79.066457, 38.753221], [-79.066957, 38.752521], [-79.067357, 38.752221], [-79.067457, 38.752121], [-79.067576, 38.752051], [-79.067957, 38.751821], [-79.067993, 38.751802], [-79.068022, 38.751788], [-79.068357, 38.751621], [-79.068657, 38.751421], [-79.068857, 38.751321], [-79.069057, 38.751121], [-79.069147, 38.751018], [-79.069206, 38.750121], [-79.069457, 38.749821], [-79.069457, 38.749721], [-79.069557, 38.749621], [-79.069657, 38.749421], [-79.069757, 38.749321], [-79.070157, 38.749121], [-79.070457, 38.749121], [-79.070757, 38.748921], [-79.071157, 38.748721], [-79.071457, 38.748621], [-79.071757, 38.748321], [-79.072058, 38.748121], [-79.072358, 38.747821], [-79.072558, 38.747521], [-79.072658, 38.747121], [-79.072658, 38.745122], [-79.072758, 38.744622], [-79.072946, 38.744223], [-79.073058, 38.743822], [-79.073258, 38.743422], [-79.073346, 38.743245], [-79.073458, 38.743022], [-79.073658, 38.742522], [-79.073858, 38.742122], [-79.074158, 38.741722], [-79.074358, 38.741522], [-79.074758, 38.741222], [-79.075258, 38.740722], [-79.075458, 38.740422], [-79.075658, 38.740022], [-79.075958, 38.739822], [-79.076558, 38.739222], [-79.076958, 38.739022], [-79.077258, 38.738822], [-79.077758, 38.738522], [-79.078158, 38.738222], [-79.078758, 38.737622], [-79.079058, 38.737222], [-79.079158, 38.736922], [-79.079158, 38.736889], [-79.079258, 38.736522], [-79.079458, 38.736122], [-79.079458, 38.735622], [-79.079558, 38.735122], [-79.079758, 38.734322], [-79.079858, 38.734022], [-79.080058, 38.733622], [-79.080158, 38.733222], [-79.080258, 38.732722], [-79.080358, 38.732522], [-79.081058, 38.731822], [-79.081358, 38.731422], [-79.081558, 38.731022], [-79.081658, 38.730622], [-79.081858, 38.730122], [-79.081958, 38.729722], [-79.082158, 38.729422], [-79.082858, 38.728722], [-79.082925, 38.728388], [-79.083058, 38.728122], [-79.083158, 38.727722], [-79.083358, 38.727422], [-79.083658, 38.727122], [-79.08391, 38.726871], [-79.083958, 38.726822], [-79.084258, 38.726522], [-79.08437, 38.726228], [-79.084568, 38.725908], [-79.084658, 38.725622], [-79.084958, 38.725422], [-79.085258, 38.725022], [-79.085458, 38.724622], [-79.085488, 38.724439], [-79.085558, 38.724122], [-79.085586, 38.724017], [-79.085671, 38.723825], [-79.085858, 38.723622], [-79.086069, 38.723226], [-79.086258, 38.722922], [-79.086363, 38.722524], [-79.086384, 38.722418], [-79.086458, 38.722122], [-79.086458, 38.721722], [-79.086758, 38.720822], [-79.086958, 38.720422], [-79.087258, 38.720122], [-79.087244, 38.719935], [-79.087258, 38.719622], [-79.087258, 38.719122], [-79.087058, 38.718622], [-79.086861, 38.718129], [-79.086658, 38.717722], [-79.086458, 38.717423], [-79.086458, 38.717023], [-79.086558, 38.716823], [-79.086558, 38.716023], [-79.086758, 38.715523], [-79.086958, 38.714923], [-79.087558, 38.713723], [-79.087858, 38.713223], [-79.088058, 38.712823], [-79.088158, 38.712523], [-79.088261, 38.712213], [-79.088358, 38.711923], [-79.088458, 38.711623], [-79.088446, 38.711323], [-79.088658, 38.711123], [-79.088758, 38.710823], [-79.088958, 38.710623], [-79.089059, 38.710325], [-79.089058, 38.710023], [-79.089258, 38.709423], [-79.089358, 38.709223], [-79.089558, 38.709023], [-79.089658, 38.708723], [-79.089958, 38.708323], [-79.090165, 38.707927], [-79.090166, 38.707892], [-79.090258, 38.707523], [-79.090358, 38.707123], [-79.090553, 38.70683], [-79.090569, 38.706812], [-79.090758, 38.706623], [-79.090858, 38.706423], [-79.091069, 38.706027], [-79.091064, 38.705997], [-79.091158, 38.705623], [-79.091258, 38.705223], [-79.091345, 38.704962], [-79.091558, 38.704523], [-79.091758, 38.703923], [-79.092158, 38.703323], [-79.09235, 38.702921], [-79.092558, 38.702623], [-79.092758, 38.702323], [-79.092958, 38.70201], [-79.092958, 38.701723], [-79.09285, 38.701425], [-79.092758, 38.701123], [-79.092658, 38.700823], [-79.092558, 38.700423], [-79.092558, 38.700157], [-79.092531, 38.70003], [-79.092471, 38.699787], [-79.092465, 38.69972], [-79.09245, 38.69965], [-79.092359, 38.699426], [-79.092274, 38.699216], [-79.092058, 38.698923], [-79.091758, 38.698723], [-79.091679, 38.698605], [-79.091558, 38.698423], [-79.091358, 38.698023], [-79.091358, 38.697623], [-79.091458, 38.697123], [-79.091458, 38.696623], [-79.091358, 38.696123], [-79.091358, 38.694523], [-79.091258, 38.694123], [-79.091147, 38.693721], [-79.091058, 38.693323], [-79.091012, 38.69314], [-79.090958, 38.692923], [-79.090758, 38.692523], [-79.090449, 38.692127], [-79.090058, 38.691723], [-79.089658, 38.691323], [-79.089258, 38.691023], [-79.088858, 38.690823], [-79.088547, 38.690527], [-79.088317, 38.690363], [-79.088252, 38.690327], [-79.088058, 38.690123], [-79.087658, 38.689923], [-79.087258, 38.689823], [-79.086858, 38.689724], [-79.086458, 38.689524], [-79.086158, 38.689224], [-79.085758, 38.688924], [-79.08555, 38.688832], [-79.085358, 38.688624], [-79.085158, 38.688324], [-79.085058, 38.688024], [-79.084958, 38.687624], [-79.084867, 38.687333], [-79.084458, 38.686924], [-79.084303, 38.686515], [-79.084458, 38.686024], [-79.084458, 38.685124], [-79.084545, 38.684816], [-79.084658, 38.684524], [-79.084958, 38.684124], [-79.085358, 38.683724], [-79.085525, 38.683389], [-79.085558, 38.683324], [-79.085649, 38.682922], [-79.085858, 38.682724], [-79.086158, 38.682324], [-79.086258, 38.682124], [-79.086358, 38.681824], [-79.086406, 38.681633], [-79.086458, 38.681424], [-79.086345, 38.680924], [-79.086458, 38.680424], [-79.086558, 38.679924], [-79.086658, 38.679524], [-79.086658, 38.679124], [-79.086758, 38.678724], [-79.086858, 38.678224], [-79.087058, 38.677424], [-79.087058, 38.677024], [-79.087158, 38.676624], [-79.087358, 38.676024], [-79.087558, 38.675724], [-79.087658, 38.675324], [-79.087758, 38.675024], [-79.087758, 38.674724], [-79.087858, 38.674424], [-79.087858, 38.673824], [-79.088058, 38.673424], [-79.088258, 38.672924], [-79.088558, 38.672624], [-79.088758, 38.672324], [-79.088858, 38.672124], [-79.089158, 38.671724], [-79.089358, 38.671424], [-79.089458, 38.671124], [-79.089558, 38.671024], [-79.089758, 38.670924], [-79.089958, 38.670624], [-79.090258, 38.670424], [-79.090458, 38.670124], [-79.090658, 38.669724], [-79.091058, 38.669324], [-79.091181, 38.66916], [-79.091261, 38.669044], [-79.091358, 38.668924], [-79.091658, 38.668724], [-79.092058, 38.668424], [-79.092171, 38.668254], [-79.092249, 38.668122], [-79.092363, 38.667676], [-79.092658, 38.666424], [-79.092658, 38.665724], [-79.09274, 38.665324], [-79.092858, 38.664924], [-79.09295, 38.66444], [-79.092958, 38.664417], [-79.092958, 38.664024], [-79.092858, 38.663524], [-79.092858, 38.663224], [-79.092758, 38.662824], [-79.092758, 38.662424], [-79.092858, 38.662224], [-79.092858, 38.661425], [-79.092842, 38.661362], [-79.092758, 38.661025], [-79.092758, 38.660825], [-79.092658, 38.660425], [-79.092758, 38.660125], [-79.092758, 38.659825], [-79.092958, 38.659525], [-79.093358, 38.659325], [-79.093658, 38.659225], [-79.094058, 38.659125], [-79.094458, 38.658925], [-79.094758, 38.658925], [-79.095258, 38.659025], [-79.096558, 38.659025], [-79.097058, 38.658825], [-79.097558, 38.658725], [-79.097959, 38.658625], [-79.098359, 38.658325], [-79.098659, 38.658225], [-79.098859, 38.658125], [-79.099159, 38.658125], [-79.099759, 38.657925], [-79.100159, 38.657725], [-79.100659, 38.657525], [-79.101659, 38.657325], [-79.102159, 38.657325], [-79.102759, 38.657225], [-79.103359, 38.657225], [-79.103955, 38.657015], [-79.104659, 38.656825], [-79.105159, 38.656625], [-79.105659, 38.656325], [-79.106059, 38.656225], [-79.106359, 38.656225], [-79.106759, 38.656325], [-79.107059, 38.656425], [-79.107459, 38.656725], [-79.107759, 38.657025], [-79.108159, 38.657325], [-79.108577, 38.657608], [-79.108859, 38.657725], [-79.109259, 38.657925], [-79.109459, 38.658225], [-79.109659, 38.658425], [-79.109674, 38.658444], [-79.109959, 38.658825], [-79.110459, 38.659225], [-79.110959, 38.659525], [-79.111559, 38.659725], [-79.112062, 38.659813], [-79.112459, 38.659825], [-79.113259, 38.659825], [-79.113659, 38.659625], [-79.114059, 38.659525], [-79.11421, 38.659423], [-79.11434, 38.659335], [-79.114392, 38.659309], [-79.114759, 38.659125], [-79.115559, 38.658925], [-79.115958, 38.658817], [-79.116359, 38.658925], [-79.116659, 38.659025], [-79.117159, 38.659125], [-79.117172, 38.65913], [-79.117201, 38.659142], [-79.117304, 38.659183], [-79.117659, 38.659325], [-79.118259, 38.659525], [-79.118859, 38.659825], [-79.119359, 38.660025], [-79.119759, 38.660125], [-79.120259, 38.660224], [-79.120456, 38.660216], [-79.120759, 38.660124], [-79.120959, 38.660025], [-79.121259, 38.659925], [-79.121459, 38.659825], [-79.121773, 38.659816], [-79.122059, 38.659825], [-79.122259, 38.659825], [-79.122359, 38.659725], [-79.122659, 38.659525], [-79.123059, 38.659125], [-79.12326, 38.658925], [-79.12336, 38.658625], [-79.12356, 38.658225], [-79.12366, 38.657925], [-79.12356, 38.657725], [-79.12356, 38.657525], [-79.12346, 38.657425], [-79.12346, 38.657225], [-79.123458, 38.657081], [-79.123457, 38.657025], [-79.123457, 38.656925], [-79.123559, 38.656725], [-79.123659, 38.656625], [-79.123759, 38.656425], [-79.124359, 38.655825], [-79.124759, 38.655625], [-79.125058, 38.655526], [-79.125859, 38.655225], [-79.126359, 38.655116], [-79.126958, 38.655326], [-79.12796, 38.655425], [-79.12886, 38.655525], [-79.129458, 38.655326], [-79.129759, 38.655026], [-79.130059, 38.654626], [-79.130104, 38.654523], [-79.130115, 38.654499], [-79.13036, 38.654026], [-79.13046, 38.653925], [-79.130759, 38.653726], [-79.131059, 38.653226], [-79.131225, 38.652447], [-79.131228, 38.652433], [-79.13126, 38.652225], [-79.13126, 38.651925], [-79.13116, 38.651325], [-79.13112, 38.651205], [-79.131069, 38.651084], [-79.131046, 38.651028], [-79.131087, 38.65093], [-79.131125, 38.650794], [-79.131164, 38.650658], [-79.131253, 38.650323], [-79.13186, 38.649825], [-79.13256, 38.649125], [-79.132744, 38.648427], [-79.132726, 38.648177], [-79.13276, 38.648125], [-79.13266, 38.647525], [-79.13286, 38.647225], [-79.133253, 38.646819], [-79.13346, 38.646625], [-79.133544, 38.646347], [-79.13356, 38.646025], [-79.13356, 38.645325], [-79.13366, 38.645225], [-79.134256, 38.644817], [-79.135007, 38.644545], [-79.135061, 38.644523], [-79.135563, 38.644091], [-79.135578, 38.644072], [-79.135646, 38.643962], [-79.135651, 38.643725], [-79.135654, 38.643609], [-79.135677, 38.643375], [-79.135747, 38.643121], [-79.13616, 38.642625], [-79.136377, 38.642408], [-79.136739, 38.641722], [-79.137014, 38.640662], [-79.137059, 38.640563], [-79.137064, 38.640544], [-79.13716, 38.640325], [-79.137351, 38.640024], [-79.137356, 38.639658], [-79.137356, 38.639631], [-79.13736, 38.639125], [-79.13726, 38.638525], [-79.13756, 38.638025], [-79.138257, 38.637721], [-79.13896, 38.637525], [-79.139495, 38.637296], [-79.13966, 38.637225], [-79.14016, 38.636825], [-79.14056, 38.636125], [-79.14126, 38.635625], [-79.14186, 38.634925], [-79.14226, 38.634825], [-79.14266, 38.634425], [-79.14276, 38.634025], [-79.14286, 38.633525], [-79.14326, 38.632825], [-79.143654, 38.632324], [-79.14366, 38.631725], [-79.14366, 38.631225], [-79.14378, 38.630946], [-79.143953, 38.630519], [-79.14436, 38.630326], [-79.144457, 38.630225], [-79.14466, 38.630026], [-79.14486, 38.629226], [-79.14596, 38.626826], [-79.14606, 38.626726], [-79.14636, 38.626526], [-79.146452, 38.626262], [-79.146509, 38.626177], [-79.146655, 38.626023], [-79.146744, 38.625827], [-79.146802, 38.625775], [-79.146977, 38.625649], [-79.147008, 38.62553], [-79.147038, 38.62541], [-79.14706, 38.625326], [-79.14726, 38.625126], [-79.147377, 38.625126], [-79.147439, 38.625127], [-79.147444, 38.625077], [-79.147446, 38.62507], [-79.14746, 38.625026], [-79.14756, 38.625026], [-79.147869, 38.624831], [-79.148061, 38.624726], [-79.148081, 38.62467], [-79.148085, 38.624661], [-79.148095, 38.624654], [-79.148239, 38.624551], [-79.148291, 38.62451], [-79.148387, 38.624433], [-79.148436, 38.624384], [-79.148555, 38.624263], [-79.148602, 38.624211], [-79.148752, 38.624043], [-79.148787, 38.623999], [-79.148819, 38.623967], [-79.14909, 38.623665], [-79.149136, 38.623575], [-79.149139, 38.623569], [-79.14916, 38.623526], [-79.149173, 38.623501], [-79.14926, 38.623326], [-79.14946, 38.623026], [-79.149644, 38.622842], [-79.14967, 38.622832], [-79.14966, 38.622811], [-79.14966, 38.622726], [-79.14976, 38.622426], [-79.14986, 38.622326], [-79.14996, 38.622126], [-79.15006, 38.622126], [-79.15016, 38.621926], [-79.15096, 38.621126], [-79.15106, 38.620826], [-79.15126, 38.620626], [-79.15146, 38.620226], [-79.15166, 38.619426], [-79.15176, 38.619226], [-79.151762, 38.618973], [-79.15176, 38.618926], [-79.15186, 38.618726], [-79.15206, 38.618126], [-79.15226, 38.617826], [-79.15236, 38.617526], [-79.15246, 38.617126], [-79.15256, 38.617026], [-79.15246, 38.616826], [-79.15256, 38.616526], [-79.15266, 38.616526], [-79.15276, 38.616326], [-79.15286, 38.616226], [-79.15306, 38.615926], [-79.15326, 38.615726], [-79.15336, 38.615526], [-79.15346, 38.615426], [-79.153473, 38.615399], [-79.15356, 38.615226], [-79.153568, 38.615211], [-79.15366, 38.615026], [-79.15386, 38.614726], [-79.15396, 38.614526], [-79.15406, 38.614126], [-79.15416, 38.613926], [-79.154155, 38.613623], [-79.15426, 38.613526], [-79.15436, 38.613126], [-79.15446, 38.612826], [-79.15486, 38.612226], [-79.15496, 38.611926], [-79.15516, 38.611726], [-79.15526, 38.611426], [-79.155358, 38.611233], [-79.15546, 38.610926], [-79.15546, 38.610763], [-79.155562, 38.610492], [-79.15556, 38.610126], [-79.15556, 38.609226], [-79.15546, 38.609126], [-79.15536, 38.608926], [-79.15536, 38.608826], [-79.15516, 38.608726], [-79.15486, 38.608126], [-79.15466, 38.607926], [-79.15466, 38.607726], [-79.154597, 38.607674], [-79.154594, 38.607662], [-79.154588, 38.607636], [-79.154565, 38.607542], [-79.154558, 38.607522], [-79.15456, 38.607226], [-79.15456, 38.607026], [-79.15446, 38.607026], [-79.15446, 38.606726], [-79.15436, 38.606526], [-79.15446, 38.606326], [-79.154545, 38.606154], [-79.154561, 38.606123], [-79.154659, 38.605927], [-79.154713, 38.60589], [-79.15476, 38.605826], [-79.15516, 38.605426], [-79.15536, 38.605326], [-79.15556, 38.605126], [-79.15586, 38.604926], [-79.15666, 38.604126], [-79.15686, 38.603726], [-79.15736, 38.603226], [-79.15766, 38.602826], [-79.15786, 38.602626], [-79.15816, 38.602526], [-79.15836, 38.602226], [-79.15856, 38.602126], [-79.15876, 38.601926], [-79.15876, 38.601826], [-79.15886, 38.601626], [-79.15896, 38.601527], [-79.159161, 38.601227], [-79.159261, 38.600927], [-79.159261, 38.600627], [-79.159361, 38.600327], [-79.159261, 38.600027], [-79.159261, 38.599827], [-79.159161, 38.599627], [-79.15906, 38.599427], [-79.15886, 38.599227], [-79.15876, 38.598927], [-79.15866, 38.598827], [-79.15866, 38.597627], [-79.15876, 38.597427], [-79.15876, 38.597227], [-79.15886, 38.596927], [-79.15896, 38.596727], [-79.15896, 38.596527], [-79.15916, 38.596127], [-79.159361, 38.595927], [-79.159461, 38.595927], [-79.159461, 38.595727], [-79.159761, 38.595427], [-79.159761, 38.595127], [-79.159661, 38.594927], [-79.159561, 38.594827], [-79.159361, 38.594727], [-79.15916, 38.594627], [-79.15896, 38.594527], [-79.15879, 38.594443], [-79.158759, 38.594427], [-79.158737, 38.594404], [-79.158711, 38.594377], [-79.15866, 38.594327], [-79.15846, 38.594227], [-79.15836, 38.594127], [-79.15826, 38.593927], [-79.15826, 38.593527], [-79.15816, 38.593527], [-79.15826, 38.593427], [-79.15826, 38.593127], [-79.15836, 38.593027], [-79.15856, 38.592727], [-79.15866, 38.592327], [-79.15906, 38.591927], [-79.15906, 38.591727], [-79.15926, 38.591527], [-79.159361, 38.591327], [-79.159561, 38.591127], [-79.159661, 38.590827], [-79.159761, 38.590627], [-79.159861, 38.590227], [-79.160061, 38.590027], [-79.160261, 38.589927], [-79.160361, 38.589727], [-79.160661, 38.589527], [-79.160861, 38.589227], [-79.161361, 38.588727], [-79.161461, 38.588427], [-79.161661, 38.588227], [-79.161961, 38.587327], [-79.162005, 38.587194], [-79.162061, 38.587027], [-79.162261, 38.586427], [-79.162352, 38.586223], [-79.162361, 38.585927], [-79.162428, 38.585794], [-79.162461, 38.585727], [-79.16245, 38.585662], [-79.162661, 38.585327], [-79.162761, 38.585027], [-79.162961, 38.584827], [-79.163053, 38.584422], [-79.163161, 38.584227], [-79.163261, 38.583927], [-79.163288, 38.583873], [-79.163324, 38.5838], [-79.163361, 38.583727], [-79.163361, 38.583427], [-79.163461, 38.583127], [-79.163461, 38.582927], [-79.163445, 38.582825], [-79.163661, 38.582627], [-79.164261, 38.582027], [-79.16446, 38.581728], [-79.16466, 38.581628], [-79.16476, 38.581428], [-79.16506, 38.581228], [-79.16536, 38.580928], [-79.16546, 38.580928], [-79.16576, 38.580728], [-79.16606, 38.580628], [-79.166265, 38.580532], [-79.166295, 38.580515], [-79.166372, 38.580472], [-79.16666, 38.580328], [-79.167059, 38.580111], [-79.16726, 38.580028], [-79.167561, 38.579827], [-79.167861, 38.579527], [-79.168061, 38.579227], [-79.168061, 38.578927], [-79.168104, 38.57883], [-79.168061, 38.578582], [-79.168061, 38.578127], [-79.168153, 38.577747], [-79.168155, 38.57769], [-79.168158, 38.577613], [-79.168161, 38.577527], [-79.168361, 38.577127], [-79.168561, 38.576827], [-79.168661, 38.576627], [-79.168948, 38.576352], [-79.169159, 38.576127], [-79.169361, 38.576027], [-79.169461, 38.575827], [-79.16954, 38.575708], [-79.169661, 38.575527], [-79.169861, 38.575227], [-79.170061, 38.575027], [-79.1702, 38.574912], [-79.170266, 38.574828], [-79.170288, 38.574783], [-79.170461, 38.574527], [-79.170661, 38.574227], [-79.170861, 38.574127], [-79.171161, 38.573227], [-79.171261, 38.573027], [-79.171393, 38.572762], [-79.171661, 38.572228], [-79.171553, 38.572027], [-79.171661, 38.571928], [-79.171661, 38.571628], [-79.171561, 38.571328], [-79.171514, 38.571233], [-79.171492, 38.571188], [-79.171362, 38.570928], [-79.171148, 38.570731], [-79.171062, 38.570428], [-79.170862, 38.570128], [-79.170861, 38.569928], [-79.170761, 38.569628], [-79.170661, 38.569228], [-79.170661, 38.568728], [-79.170861, 38.568328], [-79.170957, 38.568124], [-79.171161, 38.568028], [-79.171561, 38.567828], [-79.17174, 38.567768], [-79.171861, 38.567728], [-79.172051, 38.567621], [-79.172361, 38.567528], [-79.172761, 38.567328], [-79.173361, 38.567128], [-79.173761, 38.566828], [-79.174115, 38.566651], [-79.174156, 38.566621], [-79.174514, 38.566542], [-79.174541, 38.566515], [-79.174764, 38.566393], [-79.174846, 38.566345], [-79.174884, 38.566322], [-79.175258, 38.566223], [-79.175561, 38.566128], [-79.175861, 38.566028], [-79.176258, 38.565923], [-79.176461, 38.565728], [-79.176661, 38.565528], [-79.176761, 38.565128], [-79.176961, 38.564728], [-79.177161, 38.563928], [-79.177161, 38.563628], [-79.177261, 38.563328], [-79.177661, 38.562728], [-79.177756, 38.562525], [-79.177961, 38.562328], [-79.178361, 38.562128], [-79.179161, 38.561528], [-79.179661, 38.561028], [-79.179961, 38.560828], [-79.180361, 38.560428], [-79.180561, 38.560128], [-79.180861, 38.559928], [-79.180961, 38.559628], [-79.181161, 38.559328], [-79.181261, 38.559128], [-79.181661, 38.558528], [-79.181652, 38.558401], [-79.181661, 38.558328], [-79.181761, 38.558128], [-79.181761, 38.557828], [-79.181861, 38.557528], [-79.181852, 38.557458], [-79.181861, 38.557128], [-79.182061, 38.556328], [-79.1821, 38.556242], [-79.182261, 38.556028], [-79.182261, 38.555728], [-79.182308, 38.555734], [-79.182461, 38.555428], [-79.182561, 38.555128], [-79.182961, 38.554528], [-79.182961, 38.554428], [-79.183061, 38.554128], [-79.183161, 38.554028], [-79.183261, 38.553828], [-79.183461, 38.553228], [-79.183561, 38.553028], [-79.183561, 38.552728], [-79.183661, 38.552328], [-79.183761, 38.552128], [-79.183861, 38.551828], [-79.184061, 38.551528], [-79.184261, 38.551328], [-79.184461, 38.551228], [-79.184761, 38.551128], [-79.185061, 38.550828], [-79.185361, 38.550628], [-79.185561, 38.550528], [-79.186161, 38.550128], [-79.186161, 38.550028], [-79.186361, 38.549928], [-79.186961, 38.549328], [-79.186993, 38.549246], [-79.187261, 38.548928], [-79.187461, 38.548628], [-79.187861, 38.548228], [-79.188461, 38.547828], [-79.188661, 38.547628], [-79.188961, 38.547428], [-79.189161, 38.547128], [-79.189361, 38.546728], [-79.189561, 38.546528], [-79.189661, 38.546328], [-79.189788, 38.546138], [-79.189861, 38.546028], [-79.189961, 38.545828], [-79.189961, 38.545728], [-79.190061, 38.545428], [-79.191061, 38.544428], [-79.192061, 38.543828], [-79.192461, 38.543428], [-79.192807, 38.543052], [-79.193361, 38.542529], [-79.193461, 38.542429], [-79.193561, 38.542029], [-79.193661, 38.541729], [-79.193962, 38.541429], [-79.194062, 38.541029], [-79.194207, 38.540811], [-79.194262, 38.540729], [-79.194362, 38.540529], [-79.195062, 38.539829], [-79.195169, 38.539618], [-79.195362, 38.539329], [-79.195362, 38.539129], [-79.195462, 38.538929], [-79.195562, 38.538629], [-79.195662, 38.538229], [-79.195662, 38.538029], [-79.195762, 38.537829], [-79.195962, 38.537529], [-79.196162, 38.537329], [-79.196162, 38.537229], [-79.196362, 38.537129], [-79.196962, 38.536729], [-79.197762, 38.535929], [-79.198062, 38.535729], [-79.198462, 38.535529], [-79.198762, 38.535229], [-79.198962, 38.535129], [-79.199062, 38.535029], [-79.199062, 38.534329], [-79.198962, 38.534129], [-79.198962, 38.532829], [-79.198862, 38.532729], [-79.198862, 38.532129], [-79.198962, 38.531929], [-79.199262, 38.531729], [-79.199962, 38.531029], [-79.20014, 38.530763], [-79.200162, 38.530729], [-79.200462, 38.530129], [-79.200662, 38.529929], [-79.200862, 38.529429], [-79.201067, 38.529013], [-79.201162, 38.528729], [-79.201262, 38.528429], [-79.201362, 38.528029], [-79.201462, 38.527829], [-79.202062, 38.527229], [-79.202262, 38.527129], [-79.202562, 38.526829], [-79.203062, 38.526429], [-79.203962, 38.525829], [-79.204262, 38.525729], [-79.204362, 38.525629], [-79.204662, 38.525529], [-79.204862, 38.525429], [-79.205162, 38.525229], [-79.20535, 38.525021], [-79.205662, 38.524829], [-79.205862, 38.524529], [-79.206062, 38.523929], [-79.206062, 38.523629], [-79.206162, 38.523529], [-79.206263, 38.523127], [-79.206462, 38.522729], [-79.206462, 38.522329], [-79.206362, 38.522129], [-79.206362, 38.520529], [-79.206562, 38.519729], [-79.206562, 38.519529], [-79.206662, 38.519229], [-79.206662, 38.519129], [-79.206762, 38.518829], [-79.206862, 38.518429], [-79.207062, 38.518029], [-79.207162, 38.517629], [-79.207359, 38.517437], [-79.207462, 38.517129], [-79.207762, 38.516729], [-79.207862, 38.516429], [-79.208062, 38.516229], [-79.208062, 38.515929], [-79.208262, 38.515729], [-79.208662, 38.514929], [-79.208862, 38.514629], [-79.208962, 38.514329], [-79.208962, 38.514129], [-79.209062, 38.513929], [-79.209162, 38.513629], [-79.209062, 38.513429], [-79.209062, 38.513229], [-79.209162, 38.51283], [-79.209662, 38.51203], [-79.209762, 38.51193], [-79.209762, 38.51113], [-79.209731, 38.511036], [-79.209662, 38.51083], [-79.209762, 38.51053], [-79.209762, 38.51033], [-79.209962, 38.51003], [-79.209962, 38.50993], [-79.210162, 38.50953], [-79.210362, 38.50923], [-79.210462, 38.50893], [-79.210662, 38.50853], [-79.210762, 38.50823], [-79.210962, 38.50803], [-79.210962, 38.50743], [-79.210462, 38.50693], [-79.210462, 38.50683], [-79.210362, 38.50683], [-79.210362, 38.50673], [-79.210262, 38.50673], [-79.210262, 38.50663], [-79.210062, 38.50643], [-79.209862, 38.50633], [-79.209762, 38.50613], [-79.209662, 38.50603], [-79.209362, 38.50583], [-79.208962, 38.50543], [-79.208362, 38.50503], [-79.207462, 38.50413], [-79.207362, 38.50393], [-79.207262, 38.50383], [-79.207162, 38.50383], [-79.207062, 38.50363], [-79.206962, 38.50353], [-79.206962, 38.50323], [-79.207162, 38.50303], [-79.207162, 38.50293], [-79.207262, 38.50283], [-79.207462, 38.50253], [-79.207562, 38.50243], [-79.207562, 38.50213], [-79.207662, 38.50203], [-79.207662, 38.50173], [-79.207762, 38.50163], [-79.207762, 38.50073], [-79.207851, 38.500652], [-79.207762, 38.50053], [-79.207887, 38.500436], [-79.207876, 38.50013], [-79.207998, 38.50013], [-79.208086, 38.499757], [-79.208149, 38.499486], [-79.20834, 38.498794], [-79.208417, 38.498336], [-79.208394, 38.497976], [-79.208469, 38.497321], [-79.208493, 38.496999], [-79.208567, 38.496782], [-79.208723, 38.496509], [-79.209461, 38.495813], [-79.209583, 38.495698], [-79.209706, 38.495582], [-79.209729, 38.495301], [-79.209767, 38.49504], [-79.210011, 38.494291], [-79.210029, 38.494239], [-79.210101, 38.49407], [-79.210174, 38.493901], [-79.210594, 38.492921], [-79.212413, 38.491834], [-79.213795, 38.491008], [-79.214431, 38.490819], [-79.21475, 38.490684], [-79.214947, 38.490451], [-79.215013, 38.48996], [-79.215215, 38.489269], [-79.215362, 38.488899], [-79.215693, 38.488603], [-79.21628, 38.488425], [-79.216647, 38.488319], [-79.217816, 38.488013], [-79.218628, 38.487695], [-79.21907, 38.487449], [-79.220147, 38.486223], [-79.221409, 38.484845], [-79.221483, 38.484701], [-79.221313, 38.483889], [-79.221026, 38.482507], [-79.221012, 38.482094], [-79.221012, 38.482072], [-79.221011, 38.482026], [-79.221008, 38.48173], [-79.221002, 38.481492], [-79.220902, 38.480726], [-79.220964, 38.480598], [-79.222171, 38.479647], [-79.223738, 38.478481], [-79.224344, 38.477852], [-79.224586, 38.477596], [-79.224701, 38.477482], [-79.225058, 38.477113], [-79.225073, 38.477098], [-79.225106, 38.477064], [-79.225154, 38.477014], [-79.225474, 38.476658], [-79.225672, 38.476479], [-79.225918, 38.476368], [-79.226798, 38.476186], [-79.226814, 38.476183], [-79.227135, 38.476118], [-79.227405, 38.476063], [-79.227692, 38.476008], [-79.228794, 38.475153], [-79.229319, 38.474826], [-79.229812, 38.474668], [-79.230477, 38.474592], [-79.230785, 38.474497], [-79.231573, 38.474077], [-79.231588, 38.47407], [-79.231644, 38.474046], [-79.231658, 38.474041], [-79.231805, 38.473988], [-79.231859, 38.473964], [-79.232094, 38.473859], [-79.23273, 38.473554], [-79.232844, 38.473504], [-79.233136, 38.473388], [-79.233437, 38.473285], [-79.233744, 38.473197], [-79.234019, 38.47311], [-79.234198, 38.473061], [-79.234369, 38.473014], [-79.234408, 38.473005], [-79.234471, 38.472991], [-79.234501, 38.472977], [-79.234544, 38.472957], [-79.234552, 38.472953], [-79.234566, 38.472947], [-79.234584, 38.472939], [-79.23571, 38.472418], [-79.235952, 38.472264], [-79.23624, 38.471878], [-79.23689, 38.471471], [-79.236903, 38.471463], [-79.238328, 38.471062], [-79.239117, 38.470753], [-79.239128, 38.470749], [-79.23963, 38.470338], [-79.23976, 38.47021], [-79.239779, 38.470191], [-79.239862, 38.470109], [-79.239884, 38.470087], [-79.239887, 38.470045], [-79.23992, 38.469933], [-79.239997, 38.469769], [-79.240079, 38.469571], [-79.24018, 38.469248], [-79.240297, 38.468925], [-79.24042, 38.468641], [-79.240461, 38.468518], [-79.240487, 38.468392], [-79.240499, 38.468224], [-79.240518, 38.468114], [-79.240554, 38.468007], [-79.240621, 38.467885], [-79.240941, 38.467472], [-79.241174, 38.467146], [-79.241428, 38.466814], [-79.241625, 38.466521], [-79.241802, 38.46622], [-79.241891, 38.466036], [-79.24196, 38.465845], [-79.242007, 38.46565], [-79.242037, 38.465317], [-79.242052, 38.465158], [-79.242059, 38.465145], [-79.242068, 38.465128], [-79.24204, 38.465059], [-79.24205, 38.464985], [-79.242079, 38.464912], [-79.242191, 38.464631], [-79.242017, 38.464314], [-79.241876, 38.462769], [-79.241842, 38.46263], [-79.241834, 38.462594], [-79.241753, 38.462273], [-79.241668, 38.461934], [-79.241665, 38.461922], [-79.241638, 38.461568], [-79.241694, 38.46124], [-79.24174, 38.460968], [-79.24177, 38.4608], [-79.241948, 38.459799], [-79.24195, 38.459762], [-79.242004, 38.458714], [-79.241996, 38.458009], [-79.241856, 38.457109], [-79.241889, 38.456747], [-79.242077, 38.456378], [-79.242164, 38.456012], [-79.242298, 38.455527], [-79.242231, 38.454905], [-79.242391, 38.454494], [-79.242671, 38.454189], [-79.242952, 38.454031], [-79.244126, 38.453936], [-79.244327, 38.453915], [-79.245675, 38.453388], [-79.246489, 38.453283], [-79.247477, 38.453314], [-79.247904, 38.453409], [-79.248318, 38.453649], [-79.248746, 38.45401], [-79.248752, 38.454015], [-79.2491, 38.454309], [-79.249226, 38.454389], [-79.249733, 38.454505], [-79.250067, 38.454642], [-79.25036, 38.454663], [-79.250801, 38.4546], [-79.251255, 38.454653], [-79.252431, 38.455333], [-79.252977, 38.455759], [-79.253177, 38.455843], [-79.253524, 38.455906], [-79.254298, 38.456012], [-79.254485, 38.455938], [-79.255767, 38.454284], [-79.25586, 38.453999], [-79.255994, 38.453032], [-79.256087, 38.452903], [-79.256407, 38.452261], [-79.256488, 38.45205], [-79.256821, 38.45088], [-79.256981, 38.450575], [-79.257369, 38.450164], [-79.257862, 38.449774], [-79.258463, 38.449437], [-79.260159, 38.448826], [-79.260559, 38.448584], [-79.261106, 38.448078], [-79.261949, 38.446592], [-79.262073, 38.446325], [-79.262575, 38.445851], [-79.26269, 38.445634], [-79.262835, 38.44523], [-79.262906, 38.44466], [-79.263497, 38.443805], [-79.263571, 38.443695], [-79.264226, 38.443442], [-79.265044, 38.442698], [-79.265157, 38.44247], [-79.265272, 38.442235], [-79.265318, 38.441889], [-79.265324, 38.441843], [-79.265469, 38.441555], [-79.26558, 38.441336], [-79.265664, 38.441199], [-79.265771, 38.440987], [-79.265873, 38.440714], [-79.26595, 38.440488], [-79.265983, 38.440393], [-79.266057, 38.440176], [-79.266202, 38.43977], [-79.266332, 38.439448], [-79.266366, 38.439388], [-79.266398, 38.439333], [-79.266496, 38.439195], [-79.266608, 38.439064], [-79.266657, 38.439017], [-79.266669, 38.439005], [-79.26685, 38.438834], [-79.266994, 38.438686], [-79.267128, 38.438531], [-79.267161, 38.438493], [-79.267322, 38.438282], [-79.267355, 38.438274], [-79.267466, 38.438249], [-79.267478, 38.438246], [-79.267485, 38.438245], [-79.267493, 38.438243], [-79.267502, 38.438241], [-79.267624, 38.438213], [-79.267849, 38.438161], [-79.268037, 38.438052], [-79.268427, 38.437714], [-79.269183, 38.437387], [-79.269228, 38.437389], [-79.269324, 38.437394], [-79.269364, 38.437396], [-79.269372, 38.437397], [-79.269393, 38.437398], [-79.269448, 38.437401], [-79.271537, 38.437507], [-79.272041, 38.437388], [-79.274521, 38.436366], [-79.274912, 38.436019], [-79.275025, 38.435463], [-79.275202, 38.435115], [-79.275345, 38.435], [-79.277461, 38.434534], [-79.277762, 38.43441], [-79.278001, 38.434181], [-79.278181, 38.433941], [-79.278605, 38.433281], [-79.278837, 38.433018], [-79.279117, 38.432845], [-79.281158, 38.432188], [-79.281963, 38.432179], [-79.282241, 38.432099], [-79.28253, 38.431921], [-79.282757, 38.431702], [-79.282854, 38.431467], [-79.282693, 38.431094], [-79.282707, 38.430972], [-79.282727, 38.430672], [-79.282728, 38.430333], [-79.282728, 38.430328], [-79.282729, 38.430184], [-79.282729, 38.430172], [-79.282717, 38.4301], [-79.28271, 38.430057], [-79.282674, 38.429944], [-79.282568, 38.429727], [-79.282427, 38.429396], [-79.282312, 38.429072], [-79.282299, 38.429038], [-79.282228, 38.428854], [-79.282131, 38.428639], [-79.282059, 38.428507], [-79.281919, 38.428285], [-79.281764, 38.428069], [-79.281461, 38.427695], [-79.28128, 38.427494], [-79.281084, 38.427303], [-79.28103, 38.427235], [-79.280969, 38.427147], [-79.280907, 38.427058], [-79.280799, 38.426876], [-79.280527, 38.426305], [-79.280376, 38.425956], [-79.280343, 38.425846], [-79.280305, 38.425668], [-79.280303, 38.425659], [-79.280285, 38.4255], [-79.280269, 38.425488], [-79.280014, 38.425294], [-79.279695, 38.424219], [-79.279686, 38.423741], [-79.279875, 38.423282], [-79.280055, 38.421338], [-79.280153, 38.420757], [-79.280316, 38.420369], [-79.282943, 38.418108], [-79.283222, 38.418037], [-79.283508, 38.418057], [-79.285627, 38.419258], [-79.286042, 38.419675], [-79.286305, 38.419939], [-79.28691, 38.420574], [-79.288453, 38.420974], [-79.290376, 38.42105], [-79.290575, 38.421057], [-79.290609, 38.421054], [-79.290698, 38.421046], [-79.290784, 38.421024], [-79.290862, 38.420988], [-79.29093, 38.420941], [-79.290937, 38.420934], [-79.290959, 38.420911], [-79.290971, 38.420899], [-79.291031, 38.420838], [-79.291317, 38.420528], [-79.291361, 38.42048], [-79.291497, 38.420319], [-79.291507, 38.420307], [-79.291673, 38.42011], [-79.291758, 38.420015], [-79.291764, 38.420009], [-79.291894, 38.419864], [-79.292009, 38.419744], [-79.292901, 38.419573], [-79.293065, 38.419464], [-79.293203, 38.419325], [-79.293417, 38.419017], [-79.293668, 38.41869], [-79.29392, 38.41857], [-79.295547, 38.418273], [-79.295625, 38.418258], [-79.295728, 38.41833], [-79.29582, 38.418358], [-79.295918, 38.418372], [-79.296016, 38.418371], [-79.296114, 38.418357], [-79.296239, 38.418285], [-79.296324, 38.418228], [-79.296329, 38.418224], [-79.296349, 38.418211], [-79.296356, 38.418206], [-79.296493, 38.418098], [-79.296616, 38.417981], [-79.296668, 38.417922], [-79.297243, 38.417266], [-79.297272, 38.417223], [-79.29739, 38.417046], [-79.29752, 38.416821], [-79.297588, 38.416688], [-79.29759, 38.416683], [-79.297613, 38.416637], [-79.297639, 38.416577], [-79.297692, 38.416454], [-79.297728, 38.416429], [-79.298415, 38.415947], [-79.298736, 38.41585], [-79.298904, 38.415701], [-79.299237, 38.41536], [-79.299653, 38.415127], [-79.300088, 38.414899], [-79.300691, 38.414821], [-79.301068, 38.414879], [-79.302515, 38.415368], [-79.303835, 38.415464], [-79.304584, 38.415519], [-79.304841, 38.41546], [-79.305233, 38.41537], [-79.305554, 38.415297], [-79.305709, 38.415248], [-79.306232, 38.415083], [-79.306395, 38.414942], [-79.306672, 38.414497], [-79.307214, 38.413873], [-79.307894, 38.413302], [-79.308733, 38.412853], [-79.308923, 38.412754], [-79.309516, 38.412685], [-79.309719, 38.41269], [-79.310287, 38.412739], [-79.310541, 38.412684], [-79.310765, 38.412636], [-79.311051, 38.412479], [-79.311136, 38.412412], [-79.311355, 38.41224], [-79.31168, 38.412037], [-79.312214, 38.411901], [-79.312279, 38.411884], [-79.312652, 38.411979], [-79.316529, 38.412984], [-79.316723, 38.413035], [-79.318441, 38.413484], [-79.323594, 38.414829], [-79.32531, 38.415277], [-79.325346, 38.415287], [-79.325453, 38.415316], [-79.325488, 38.415325], [-79.325974, 38.41546], [-79.32743, 38.415863], [-79.327915, 38.415997], [-79.328183, 38.416071], [-79.328986, 38.416294], [-79.329253, 38.416368], [-79.3302, 38.416619], [-79.333039, 38.417372], [-79.333985, 38.417623], [-79.334421, 38.417739], [-79.335729, 38.418086], [-79.336164, 38.418201], [-79.336466, 38.418281], [-79.336526, 38.418297], [-79.33737, 38.418521], [-79.33761, 38.418585], [-79.337671, 38.418601], [-79.337911, 38.418665], [-79.338628, 38.418855], [-79.338671, 38.418866], [-79.338867, 38.418918], [-79.343488, 38.420143], [-79.35735, 38.423816], [-79.361971, 38.42504], [-79.363342, 38.425403], [-79.367451, 38.426492], [-79.368821, 38.426855], [-79.369084, 38.426925], [-79.369485, 38.427032], [-79.369873, 38.427135], [-79.370135, 38.427205], [-79.371596, 38.42762], [-79.374159, 38.428349], [-79.374756, 38.42852], [-79.375976, 38.428861], [-79.377437, 38.429269], [-79.378193, 38.429481], [-79.38046, 38.430115], [-79.381215, 38.430326], [-79.383092, 38.430852], [-79.384501, 38.431246], [-79.388722, 38.432424], [-79.390598, 38.432948], [-79.392126, 38.433377], [-79.394448, 38.434029], [-79.396559, 38.434617], [-79.396708, 38.434659], [-79.398223, 38.435082], [-79.398235, 38.435085], [-79.400136, 38.435617], [-79.403063, 38.436437], [-79.405835, 38.437215], [-79.407735, 38.437748], [-79.407769, 38.437757], [-79.407988, 38.437818], [-79.408027, 38.437829], [-79.408148, 38.437862], [-79.408536, 38.437969], [-79.408904, 38.438072], [-79.409196, 38.438154], [-79.409227, 38.438162], [-79.4095, 38.438238], [-79.409912, 38.438354], [-79.41041, 38.438493], [-79.410713, 38.438578], [-79.413144, 38.439259], [-79.420435, 38.4413], [-79.422866, 38.44198], [-79.422931, 38.441998], [-79.424815, 38.442527], [-79.425391, 38.442691], [-79.425718, 38.442784], [-79.427117, 38.44318], [-79.427692, 38.443343], [-79.427938, 38.443413], [-79.428676, 38.443622], [-79.428921, 38.443691], [-79.428942, 38.443697], [-79.429174, 38.443763], [-79.429811, 38.443944], [-79.429933, 38.443978], [-79.430185, 38.444049], [-79.430453, 38.444126], [-79.430734, 38.444207], [-79.431258, 38.444359], [-79.431526, 38.444436], [-79.431579, 38.444452], [-79.431738, 38.444501], [-79.431791, 38.444517], [-79.431806, 38.444521], [-79.43185, 38.444534], [-79.431864, 38.444538], [-79.432059, 38.444591], [-79.43264, 38.444751], [-79.432834, 38.444804], [-79.435612, 38.445592], [-79.437035, 38.445995], [-79.443947, 38.447955], [-79.446724, 38.448743], [-79.446762, 38.448754], [-79.446874, 38.448786], [-79.446911, 38.448796], [-79.446973, 38.448814], [-79.44762, 38.448998], [-79.447677, 38.449014], [-79.449974, 38.449665], [-79.45074, 38.449882], [-79.451114, 38.449988], [-79.451657, 38.450142], [-79.452234, 38.450306], [-79.452607, 38.450412], [-79.457287, 38.451741], [-79.471327, 38.455727], [-79.476006, 38.457055], [-79.476085, 38.457078], [-79.476321, 38.457145], [-79.476399, 38.457167], [-79.476641, 38.457236], [-79.478361, 38.46025], [-79.479204, 38.461727], [-79.483893, 38.469944], [-79.485737, 38.473175], [-79.486067, 38.473752], [-79.487055, 38.475483], [-79.487384, 38.47606], [-79.487755, 38.476709], [-79.488865, 38.478656], [-79.489235, 38.479304], [-79.490705, 38.481879], [-79.495113, 38.4896], [-79.496502, 38.492033], [-79.496579, 38.492176], [-79.496588, 38.492192], [-79.496615, 38.492238], [-79.496624, 38.492254], [-79.496636, 38.492275], [-79.496652, 38.492304], [-79.496659, 38.492316], [-79.496915, 38.492763], [-79.49768, 38.4941], [-79.497935, 38.494545], [-79.498041, 38.494731], [-79.498229, 38.49506], [-79.498359, 38.495288], [-79.498465, 38.495473], [-79.498544, 38.49561], [-79.49868, 38.495844], [-79.498726, 38.495924], [-79.49951, 38.497277], [-79.499771, 38.497728], [-79.499771, 38.497587], [-79.499779, 38.497598], [-79.499805, 38.497633], [-79.499813, 38.497644], [-79.499826, 38.497663], [-79.499865, 38.497719], [-79.499877, 38.497737], [-79.499969, 38.497869], [-79.500243, 38.498263], [-79.500334, 38.498394], [-79.500359, 38.498429], [-79.500433, 38.498534], [-79.500457, 38.498568], [-79.500574, 38.498743], [-79.500925, 38.499269], [-79.501041, 38.499444], [-79.501063, 38.499485], [-79.501128, 38.499608], [-79.50115, 38.499649], [-79.501171, 38.499688], [-79.501233, 38.499805], [-79.501237, 38.499812], [-79.501248, 38.499834], [-79.501254, 38.499845], [-79.501559, 38.500396], [-79.502475, 38.502051], [-79.502781, 38.502604], [-79.503001, 38.503001], [-79.503471, 38.50385], [-79.503651, 38.504198], [-79.503859, 38.504603], [-79.503935, 38.504731], [-79.503947, 38.504752], [-79.504165, 38.505115], [-79.504233, 38.505229], [-79.504242, 38.505243], [-79.504521, 38.505689], [-79.505022, 38.506488], [-79.505337, 38.50704], [-79.505599, 38.507498], [-79.506181, 38.508468], [-79.506508, 38.509012], [-79.507929, 38.511378], [-79.508512, 38.512348], [-79.508698, 38.512657], [-79.509257, 38.513587], [-79.509443, 38.513897], [-79.509625, 38.5142], [-79.510173, 38.515113], [-79.510356, 38.515417], [-79.51042, 38.515525], [-79.510437, 38.515552], [-79.510596, 38.515816], [-79.511247, 38.516901], [-79.511293, 38.516978], [-79.511309, 38.517004], [-79.512344, 38.518727], [-79.515261, 38.523584], [-79.515448, 38.523896], [-79.516484, 38.52562], [-79.51653, 38.525696], [-79.516669, 38.525928], [-79.516715, 38.526005], [-79.516885, 38.526289], [-79.517398, 38.527142], [-79.517569, 38.527427], [-79.517857, 38.527906], [-79.518298, 38.52864], [-79.518722, 38.529347], [-79.51901, 38.529827], [-79.519412, 38.530496], [-79.520618, 38.532504], [-79.52102, 38.533173], [-79.52111, 38.533323], [-79.521381, 38.533775], [-79.521472, 38.533926], [-79.521472, 38.534126], [-79.521672, 38.534226], [-79.521702, 38.534257], [-79.521762, 38.534317], [-79.521791, 38.534331], [-79.521822, 38.534329], [-79.521872, 38.534326], [-79.521912, 38.534345], [-79.52194, 38.534359], [-79.522005, 38.534392], [-79.522072, 38.534426], [-79.522195, 38.534507], [-79.522257, 38.534548], [-79.522372, 38.534626], [-79.522672, 38.534726], [-79.523072, 38.534926], [-79.523572, 38.535026], [-79.523872, 38.535326], [-79.524072, 38.535626], [-79.524572, 38.536126], [-79.524974, 38.536322], [-79.525372, 38.536426], [-79.525872, 38.536726], [-79.526372, 38.536926], [-79.526464, 38.536987], [-79.526672, 38.537126], [-79.526772, 38.537526], [-79.526872, 38.538025], [-79.527073, 38.538325], [-79.528273, 38.539125], [-79.528273, 38.539825], [-79.528373, 38.540225], [-79.528573, 38.540525], [-79.528573, 38.540625], [-79.528673, 38.540625], [-79.530173, 38.541825], [-79.530273, 38.541925], [-79.530573, 38.541925], [-79.531073, 38.542025], [-79.531473, 38.542125], [-79.531773, 38.542325], [-79.531973, 38.542425], [-79.531873, 38.542825], [-79.531973, 38.543025], [-79.531973, 38.543125], [-79.533173, 38.544725], [-79.533573, 38.544925], [-79.533773, 38.545225], [-79.533373, 38.546025], [-79.533373, 38.546225], [-79.533673, 38.546625], [-79.534473, 38.547425], [-79.534631, 38.547543], [-79.534873, 38.547725], [-79.535673, 38.548325], [-79.535873, 38.548725], [-79.536073, 38.549025], [-79.536273, 38.549425], [-79.536273, 38.549825], [-79.536473, 38.550325], [-79.536873, 38.550925], [-79.537373, 38.551225], [-79.537525, 38.551347], [-79.537873, 38.551625], [-79.538273, 38.551825], [-79.538673, 38.551925], [-79.539173, 38.552025], [-79.539773, 38.552125], [-79.540773, 38.552125], [-79.541173, 38.552325], [-79.541573, 38.552625], [-79.542573, 38.553225], [-79.543173, 38.553525], [-79.543673, 38.553725], [-79.544173, 38.554025], [-79.544573, 38.554125], [-79.545073, 38.554325], [-79.545673, 38.554525], [-79.545973, 38.554925], [-79.546273, 38.555125], [-79.547073, 38.555525], [-79.547134, 38.555537], [-79.547574, 38.555625], [-79.548174, 38.555925], [-79.548674, 38.556125], [-79.548974, 38.556425], [-79.549374, 38.556725], [-79.549474, 38.556725], [-79.554674, 38.559925], [-79.554974, 38.560025], [-79.555474, 38.560225], [-79.555974, 38.560225], [-79.556774, 38.560325], [-79.557374, 38.560425], [-79.558074, 38.560725], [-79.558774, 38.560925], [-79.560174, 38.560925], [-79.560974, 38.560825], [-79.561674, 38.560825], [-79.562174, 38.560925], [-79.562474, 38.560925], [-79.562674, 38.561025], [-79.565574, 38.562325], [-79.566274, 38.562525], [-79.567074, 38.562725], [-79.567974, 38.562825], [-79.568265, 38.562854], [-79.568974, 38.562925], [-79.570574, 38.562925], [-79.571574, 38.563125], [-79.571774, 38.563125], [-79.571962, 38.563194], [-79.572527, 38.563402], [-79.572715, 38.563471], [-79.572804, 38.563504], [-79.573072, 38.563601], [-79.573162, 38.563634], [-79.575935, 38.564657], [-79.584256, 38.567724], [-79.58703, 38.568747], [-79.589188, 38.569543], [-79.595664, 38.571932], [-79.597823, 38.572729], [-79.597841, 38.572734], [-79.59788, 38.572745], [-79.597898, 38.572752], [-79.597916, 38.57276], [-79.597929, 38.572765], [-79.597955, 38.572776], [-79.59797, 38.572783], [-79.597984, 38.572789], [-79.598219, 38.572874], [-79.598926, 38.573132], [-79.599163, 38.573218], [-79.606664, 38.575973], [-79.615338, 38.579158], [-79.624777, 38.582624], [-79.629169, 38.584232], [-79.636673, 38.586981], [-79.636767, 38.587015], [-79.637049, 38.587118], [-79.637143, 38.587153], [-79.638292, 38.587574], [-79.641741, 38.588836], [-79.642892, 38.589257], [-79.643856, 38.589611], [-79.64675, 38.590672], [-79.647715, 38.591026], [-79.647987, 38.591125], [-79.648805, 38.591424], [-79.649078, 38.591523], [-79.649178, 38.591423], [-79.649178, 38.591023], [-79.649378, 38.590723], [-79.649878, 38.590323], [-79.650478, 38.589123], [-79.650578, 38.588523], [-79.65063, 38.58839], [-79.650778, 38.588023], [-79.651178, 38.587223], [-79.651878, 38.586523], [-79.653078, 38.585523], [-79.653578, 38.585123], [-79.653978, 38.584723], [-79.654478, 38.584024], [-79.655178, 38.583124], [-79.655478, 38.582424], [-79.655878, 38.581424], [-79.655878, 38.581024], [-79.655778, 38.580424], [-79.655478, 38.579924], [-79.655407, 38.579502], [-79.655378, 38.579324], [-79.655478, 38.578724], [-79.655578, 38.578324], [-79.655778, 38.577724], [-79.655878, 38.576924], [-79.656116, 38.576203], [-79.656262, 38.576019], [-79.65636, 38.575958], [-79.656578, 38.575824], [-79.656658, 38.575783], [-79.656761, 38.575732], [-79.656931, 38.575647], [-79.656978, 38.575624], [-79.657345, 38.575256], [-79.657378, 38.575224], [-79.657494, 38.575137], [-79.657593, 38.575062], [-79.657778, 38.574924], [-79.657841, 38.574797], [-79.657897, 38.574686], [-79.657978, 38.574524], [-79.657978, 38.574224], [-79.657938, 38.574106], [-79.657878, 38.573924], [-79.657878, 38.573524], [-79.657978, 38.573324], [-79.658178, 38.573024], [-79.658783, 38.572822], [-79.659358, 38.572631], [-79.659478, 38.572624], [-79.659778, 38.572624], [-79.660378, 38.572524], [-79.660436, 38.57248], [-79.660778, 38.572224], [-79.661173, 38.571925], [-79.661578, 38.571524], [-79.662278, 38.570924], [-79.662678, 38.570624], [-79.662878, 38.570424], [-79.662852, 38.570321], [-79.662778, 38.570024], [-79.662678, 38.569624], [-79.662588, 38.569252], [-79.662451, 38.568778], [-79.662378, 38.568524], [-79.662278, 38.568024], [-79.661978, 38.567624], [-79.661813, 38.5675], [-79.661578, 38.567324], [-79.661478, 38.567324], [-79.661389, 38.567282], [-79.661332, 38.567253], [-79.661164, 38.567167], [-79.661078, 38.567124], [-79.660578, 38.566724], [-79.660589, 38.566667], [-79.660677, 38.566226], [-79.660678, 38.565624], [-79.660678, 38.565224], [-79.660578, 38.564824], [-79.660478, 38.564524], [-79.660467, 38.564518], [-79.660078, 38.564324], [-79.659902, 38.564086], [-79.659478, 38.563524], [-79.659415, 38.563336], [-79.659378, 38.563224], [-79.659278, 38.563024], [-79.659178, 38.562724], [-79.659278, 38.562424], [-79.659578, 38.562224], [-79.660278, 38.561524], [-79.66063, 38.561382], [-79.660778, 38.561324], [-79.661278, 38.561024], [-79.661428, 38.560968], [-79.662078, 38.560724], [-79.662376, 38.560604], [-79.662578, 38.560524], [-79.663178, 38.560524], [-79.663478, 38.560624], [-79.663878, 38.560724], [-79.664478, 38.560824], [-79.664878, 38.560924], [-79.665078, 38.560924], [-79.665178, 38.560724], [-79.665196, 38.560668], [-79.665278, 38.560424], [-79.665278, 38.560124], [-79.665378, 38.559824], [-79.665442, 38.559697], [-79.665478, 38.559645], [-79.66549, 38.559629], [-79.665532, 38.559467], [-79.665549, 38.559407], [-79.665563, 38.559365], [-79.665578, 38.559324], [-79.665639, 38.559262], [-79.665671, 38.559231], [-79.665703, 38.559198], [-79.665778, 38.559124], [-79.665778, 38.559024], [-79.665855, 38.558714], [-79.665878, 38.558624], [-79.665978, 38.558224], [-79.665978, 38.557824], [-79.665957, 38.557722], [-79.665892, 38.557392], [-79.665878, 38.557325], [-79.665978, 38.556924], [-79.666278, 38.556524], [-79.666878, 38.555924], [-79.667178, 38.555024], [-79.667178, 38.554924], [-79.667078, 38.554424], [-79.667078, 38.553924], [-79.667079, 38.553793], [-79.667081, 38.553604], [-79.667089, 38.55356], [-79.667278, 38.552624], [-79.667678, 38.552124], [-79.667978, 38.551824], [-79.668378, 38.551524], [-79.668678, 38.551324], [-79.669078, 38.551124], [-79.669378, 38.551024], [-79.669578, 38.550824], [-79.669778, 38.550324], [-79.669778, 38.550124], [-79.669678, 38.550024], [-79.669478, 38.549724], [-79.669278, 38.549524], [-79.669078, 38.549124], [-79.668878, 38.548524], [-79.668878, 38.548024], [-79.669078, 38.547524], [-79.669378, 38.547124], [-79.669578, 38.546824], [-79.669678, 38.546524], [-79.669578, 38.546224], [-79.669378, 38.545924], [-79.669178, 38.545724], [-79.669178, 38.545324], [-79.669378, 38.544924], [-79.669678, 38.544524], [-79.669678, 38.543424], [-79.670078, 38.542824], [-79.670378, 38.542524], [-79.670578, 38.542224], [-79.670678, 38.541824], [-79.670778, 38.541524], [-79.670778, 38.541324], [-79.670878, 38.541024], [-79.670678, 38.540724], [-79.670678, 38.540324], [-79.670378, 38.540224], [-79.669878, 38.540224], [-79.669377, 38.540125], [-79.669202, 38.540096], [-79.668907, 38.540054], [-79.668777, 38.540024], [-79.668376, 38.539824], [-79.667977, 38.539625], [-79.667776, 38.539425], [-79.667377, 38.539124], [-79.667076, 38.538825], [-79.666876, 38.538624], [-79.666876, 38.538325], [-79.667076, 38.538024], [-79.667377, 38.537824], [-79.667576, 38.537524], [-79.667834, 38.537329], [-79.667777, 38.537184], [-79.667776, 38.537107], [-79.667776, 38.536924], [-79.667876, 38.536524], [-79.667876, 38.536324], [-79.668076, 38.535624], [-79.668076, 38.535524], [-79.668476, 38.534724], [-79.668776, 38.534224], [-79.669276, 38.533824], [-79.669576, 38.533624], [-79.669776, 38.533325], [-79.670076, 38.532825], [-79.670276, 38.532325], [-79.670317, 38.53224], [-79.670437, 38.532017], [-79.670579, 38.531825], [-79.670658, 38.531765], [-79.670676, 38.531751], [-79.670977, 38.531525], [-79.671277, 38.531125], [-79.671777, 38.530725], [-79.671796, 38.530696], [-79.671977, 38.530425], [-79.672277, 38.530125], [-79.672577, 38.529625], [-79.672777, 38.529325], [-79.672977, 38.528725], [-79.672777, 38.528625], [-79.672577, 38.528625], [-79.671977, 38.528225], [-79.671777, 38.528025], [-79.671777, 38.527825], [-79.671677, 38.527725], [-79.671575, 38.527522], [-79.671203, 38.527374], [-79.671077, 38.527325], [-79.670977, 38.527225], [-79.670477, 38.527125], [-79.670077, 38.527125], [-79.669781, 38.526927], [-79.669759, 38.526905], [-79.669477, 38.526625], [-79.669179, 38.526229], [-79.668977, 38.525725], [-79.668777, 38.525325], [-79.668377, 38.525025], [-79.668191, 38.524972], [-79.667677, 38.524825], [-79.667177, 38.524625], [-79.666777, 38.524325], [-79.666577, 38.523925], [-79.666177, 38.523425], [-79.665977, 38.523025], [-79.665677, 38.522525], [-79.665377, 38.522125], [-79.665177, 38.521625], [-79.664977, 38.521325], [-79.664677, 38.521025], [-79.664577, 38.520725], [-79.664377, 38.520425], [-79.664277, 38.520125], [-79.663577, 38.519425], [-79.663277, 38.519025], [-79.662977, 38.518725], [-79.662777, 38.518325], [-79.662777, 38.517725], [-79.662677, 38.517425], [-79.662677, 38.517125], [-79.662745, 38.516918], [-79.662777, 38.516825], [-79.662477, 38.516125], [-79.662377, 38.515925], [-79.662254, 38.51574], [-79.662177, 38.515625], [-79.662077, 38.515525], [-79.662177, 38.515225], [-79.662377, 38.514925], [-79.662777, 38.514625], [-79.663077, 38.514425], [-79.663477, 38.514125], [-79.663977, 38.514025], [-79.664177, 38.514025], [-79.664985, 38.513946], [-79.66506, 38.513937], [-79.665177, 38.513925], [-79.665677, 38.513825], [-79.6663, 38.513557], [-79.666377, 38.513525], [-79.666577, 38.513424], [-79.666977, 38.513225], [-79.667404, 38.513011], [-79.667577, 38.512925], [-79.667977, 38.512625], [-79.668219, 38.51248], [-79.668477, 38.512325], [-79.668777, 38.512025], [-79.668777, 38.511807], [-79.668868, 38.511728], [-79.668882, 38.511549], [-79.668962, 38.511446], [-79.668977, 38.511425], [-79.669077, 38.511025], [-79.669131, 38.510981], [-79.669131, 38.51096], [-79.669132, 38.510926], [-79.669131, 38.510885], [-79.669282, 38.510502], [-79.669489, 38.50997], [-79.669694, 38.509543], [-79.669741, 38.509306], [-79.669795, 38.509035], [-79.669893, 38.508545], [-79.669978, 38.508288], [-79.669991, 38.508252], [-79.670091, 38.507959], [-79.67019, 38.507763], [-79.670489, 38.507667], [-79.670986, 38.507978], [-79.671584, 38.508289], [-79.671983, 38.508597], [-79.672272, 38.508993], [-79.672281, 38.509005], [-79.672579, 38.509517], [-79.672926, 38.509787], [-79.672977, 38.509825], [-79.673477, 38.510125], [-79.674077, 38.510425], [-79.674577, 38.510525], [-79.675377, 38.510525], [-79.675477, 38.510425], [-79.675577, 38.510425], [-79.675977, 38.510325], [-79.676477, 38.510325], [-79.677177, 38.510225], [-79.678177, 38.510225], [-79.678977, 38.510325], [-79.679377, 38.510425], [-79.680077, 38.510625], [-79.680377, 38.510625], [-79.680477, 38.510525], [-79.680577, 38.510125], [-79.680877, 38.509625], [-79.681077, 38.509325], [-79.681112, 38.509243], [-79.681377, 38.508625], [-79.681577, 38.508225], [-79.681677, 38.507725], [-79.681677, 38.507325], [-79.681377, 38.506025], [-79.681377, 38.505925], [-79.681077, 38.505325], [-79.681177, 38.504925], [-79.681577, 38.504525], [-79.681609, 38.504512], [-79.682077, 38.504325], [-79.682677, 38.504125], [-79.682977, 38.503925], [-79.683077, 38.503625], [-79.682977, 38.503425], [-79.682677, 38.503125], [-79.682477, 38.502525], [-79.682577, 38.502025], [-79.682603, 38.501972], [-79.682777, 38.501625], [-79.682977, 38.501325], [-79.683177, 38.501125], [-79.683477, 38.500925], [-79.683577, 38.500925], [-79.683777, 38.500825], [-79.683777, 38.500625], [-79.684202, 38.500125], [-79.685625, 38.498777], [-79.686995, 38.497477], [-79.688348, 38.496191], [-79.689234, 38.496421], [-79.689586, 38.496495], [-79.690406, 38.496667], [-79.690794, 38.496714], [-79.691304, 38.496776], [-79.692276, 38.496482], [-79.6927, 38.495768], [-79.693023, 38.494925], [-79.693628, 38.494542], [-79.694509, 38.49424], [-79.694736, 38.493919], [-79.694986, 38.493261], [-79.695075, 38.492289], [-79.695602, 38.491663], [-79.695779, 38.491306], [-79.69611, 38.490644], [-79.696047, 38.489421], [-79.695995, 38.488245], [-79.695995, 38.488238], [-79.696038, 38.488183], [-79.696096, 38.488111], [-79.696221, 38.488053], [-79.696292, 38.488022], [-79.696318, 38.48801], [-79.696364, 38.48799], [-79.697128, 38.48771], [-79.697235, 38.487672], [-79.697575, 38.487231], [-79.697371, 38.485831], [-79.697186, 38.485267], [-79.696962, 38.484582], [-79.696892, 38.484426], [-79.696677, 38.483948], [-79.696032, 38.482515], [-79.695878, 38.482172], [-79.695804, 38.482045], [-79.695708, 38.481879], [-79.695465, 38.481462], [-79.695377, 38.481447], [-79.695189, 38.481415], [-79.694642, 38.481322], [-79.694058, 38.481223], [-79.693507, 38.481252], [-79.693427, 38.481019], [-79.693418, 38.480745], [-79.6934, 38.480191], [-79.693427, 38.480033], [-79.693477, 38.479748], [-79.693586, 38.479592], [-79.693601, 38.479571], [-79.693688, 38.479469], [-79.693941, 38.479179], [-79.693986, 38.479014], [-79.694057, 38.478761], [-79.694183, 38.478319], [-79.694367, 38.478191], [-79.695054, 38.477978], [-79.695585, 38.477815], [-79.695603, 38.477809], [-79.695658, 38.477793], [-79.695677, 38.477788], [-79.695825, 38.477733], [-79.695963, 38.477665], [-79.696038, 38.477605], [-79.69613, 38.477518], [-79.696231, 38.477403], [-79.696314, 38.477316], [-79.696366, 38.477273], [-79.69641, 38.477237], [-79.696452, 38.477199], [-79.69649, 38.477144], [-79.696512, 38.477083], [-79.696544, 38.477031], [-79.69661, 38.476948], [-79.69669, 38.476873], [-79.696886, 38.47673], [-79.697158, 38.476515], [-79.697439, 38.476265], [-79.697632, 38.476108], [-79.698302, 38.475629], [-79.698356, 38.475591], [-79.698437, 38.475538], [-79.698629, 38.475391], [-79.698704, 38.475317], [-79.698821, 38.475176], [-79.698902, 38.475076], [-79.698991, 38.474996], [-79.699476, 38.474535], [-79.699625, 38.473975], [-79.69944, 38.472888], [-79.699324, 38.472732], [-79.698773, 38.471992], [-79.698891, 38.471236], [-79.699123, 38.470296], [-79.698933, 38.469877], [-79.698368, 38.469734], [-79.696893, 38.469627], [-79.695591, 38.469066], [-79.694913, 38.46829], [-79.694909, 38.468283], [-79.694037, 38.466702], [-79.69377, 38.466324], [-79.693641, 38.46608], [-79.693092, 38.465042], [-79.691923, 38.464432], [-79.691139, 38.463792], [-79.691089, 38.463751], [-79.69086, 38.463049], [-79.690659, 38.461914], [-79.688876, 38.458701], [-79.688537, 38.457869], [-79.688369, 38.456878], [-79.688166, 38.454327], [-79.688246, 38.453915], [-79.688441, 38.452923], [-79.688108, 38.450452], [-79.688249, 38.450278], [-79.688402, 38.450092], [-79.688674, 38.449759], [-79.688816, 38.449587], [-79.689438, 38.448913], [-79.689678, 38.448655], [-79.690698, 38.447684], [-79.691336, 38.446927], [-79.691427, 38.44682], [-79.691482, 38.446291], [-79.691391, 38.446064], [-79.691383, 38.446044], [-79.69137, 38.44601], [-79.691361, 38.445985], [-79.691355, 38.445966], [-79.691215, 38.445616], [-79.691082, 38.445284], [-79.690624, 38.444661], [-79.690402, 38.444358], [-79.690201, 38.444023], [-79.6897, 38.443184], [-79.689634, 38.443003], [-79.689503, 38.442636], [-79.689467, 38.442597], [-79.689411, 38.442537], [-79.689367, 38.442477], [-79.689345, 38.442446], [-79.689296, 38.442348], [-79.689264, 38.442246], [-79.68925, 38.442147], [-79.68925, 38.442142], [-79.689253, 38.442072], [-79.689254, 38.442037], [-79.689292, 38.441874], [-79.689326, 38.441779], [-79.689347, 38.441726], [-79.689418, 38.441582], [-79.689537, 38.441387], [-79.689621, 38.441283], [-79.689741, 38.441169], [-79.689856, 38.441085], [-79.689872, 38.441072], [-79.690025, 38.44096], [-79.690113, 38.440889], [-79.690341, 38.440705], [-79.690376, 38.440678], [-79.690466, 38.44062], [-79.690682, 38.440468], [-79.690884, 38.440305], [-79.690943, 38.440243], [-79.691017, 38.44015], [-79.691031, 38.440133], [-79.691104, 38.440017], [-79.691161, 38.439896], [-79.691167, 38.43987], [-79.691188, 38.439795], [-79.691195, 38.439771], [-79.691626, 38.439364], [-79.691746, 38.437072], [-79.691659, 38.436444], [-79.691429, 38.435855], [-79.69105, 38.434784], [-79.690933, 38.434003], [-79.690385, 38.433653], [-79.690219, 38.433381], [-79.689911, 38.432872], [-79.68967, 38.43147], [-79.690455, 38.430785], [-79.691001, 38.430504], [-79.69146, 38.430264], [-79.691725, 38.430147], [-79.691871, 38.430083], [-79.692148, 38.429962], [-79.69258, 38.429505], [-79.692817, 38.429229], [-79.693125, 38.428872], [-79.693849, 38.428228], [-79.693854, 38.428224], [-79.694265, 38.427888], [-79.694828, 38.427665], [-79.696035, 38.427155], [-79.696834, 38.426765], [-79.69656, 38.426546], [-79.696097, 38.42612], [-79.69577, 38.425819], [-79.695434, 38.424882], [-79.695391, 38.424763], [-79.695276, 38.423693], [-79.695471, 38.423603], [-79.69629, 38.423231], [-79.698426, 38.422556], [-79.699416, 38.422043], [-79.699737, 38.421878], [-79.700112, 38.42089], [-79.700504, 38.420305], [-79.701822, 38.419956], [-79.702785, 38.419365], [-79.704063, 38.417585], [-79.704576, 38.417201], [-79.705559, 38.416664], [-79.705631, 38.416626], [-79.706637, 38.415738], [-79.707174, 38.414847], [-79.708072, 38.413379], [-79.708435, 38.41264], [-79.709143, 38.412072], [-79.709292, 38.411244], [-79.708822, 38.409971], [-79.708968, 38.409561], [-79.709625, 38.408921], [-79.709926, 38.408246], [-79.710919, 38.407663], [-79.712328, 38.407404], [-79.712397, 38.406358], [-79.712907, 38.405042], [-79.713563, 38.404594], [-79.714372, 38.404115], [-79.714878, 38.403264], [-79.716435, 38.40229], [-79.717368, 38.40157], [-79.717594, 38.401169], [-79.717636, 38.401096], [-79.717549, 38.400492], [-79.718828, 38.398446], [-79.719397, 38.397164], [-79.71972, 38.396439], [-79.720971, 38.395081], [-79.721138, 38.3949], [-79.720995, 38.393516], [-79.722124, 38.391059], [-79.722656, 38.389525], [-79.723825, 38.388596], [-79.725646, 38.387614], [-79.726353, 38.387078], [-79.726841, 38.385978], [-79.727134, 38.384829], [-79.727051, 38.384509], [-79.726926, 38.384024], [-79.727278, 38.383325], [-79.728296, 38.382066], [-79.729515, 38.381202], [-79.729898, 38.380359], [-79.729934, 38.3797], [-79.730274, 38.37917], [-79.730824, 38.377757], [-79.730971, 38.375762], [-79.73123, 38.375128], [-79.731432, 38.374749], [-79.731664, 38.374151], [-79.731734, 38.373723], [-79.731701, 38.373384], [-79.731494, 38.373005], [-79.730497, 38.372225], [-79.729964, 38.372106], [-79.729052, 38.372036], [-79.727679, 38.371709], [-79.727206, 38.371445], [-79.726793, 38.37084], [-79.726784, 38.36904], [-79.726751, 38.368677], [-79.726585, 38.368249], [-79.725975, 38.366959], [-79.725778, 38.366548], [-79.725807, 38.366136], [-79.725905, 38.365409], [-79.725832, 38.365054], [-79.7256, 38.363836], [-79.725976, 38.363237], [-79.726668, 38.362476], [-79.727056, 38.362241], [-79.72858, 38.362034], [-79.729347, 38.361838], [-79.730603, 38.361132], [-79.731215, 38.360711], [-79.732062, 38.360176], [-79.732324, 38.359488], [-79.732353, 38.359093], [-79.732433, 38.358745], [-79.733615, 38.357748], [-79.734603, 38.356736], [-79.734753, 38.356162], [-79.734904, 38.355556], [-79.735119, 38.355393], [-79.735312, 38.355248], [-79.736466, 38.354849], [-79.737101, 38.354968], [-79.737982, 38.354973], [-79.740618, 38.354109], [-79.741577, 38.35342], [-79.74218, 38.353256], [-79.742774, 38.353375], [-79.743585, 38.353776], [-79.744108, 38.353976], [-79.744835, 38.354031], [-79.745256, 38.354166], [-79.745953, 38.354366], [-79.74755, 38.354336], [-79.748022, 38.354634], [-79.748272, 38.355077], [-79.748642, 38.355423], [-79.749001, 38.355559], [-79.749206, 38.355599], [-79.749778, 38.355604], [-79.750671, 38.355915], [-79.75106, 38.355948], [-79.753096, 38.356045], [-79.753365, 38.356091], [-79.753618, 38.356136], [-79.755187, 38.35695], [-79.755563, 38.35738], [-79.757629, 38.357574], [-79.761505, 38.356864], [-79.762714, 38.356749], [-79.764178, 38.356642], [-79.764435, 38.356522], [-79.764965, 38.355636], [-79.766131, 38.354455], [-79.7671, 38.353636], [-79.767266, 38.353403], [-79.767217, 38.353185], [-79.766219, 38.352486], [-79.765956, 38.352098], [-79.765919, 38.351694], [-79.765983, 38.351299], [-79.766406, 38.350881], [-79.766424, 38.350866], [-79.767241, 38.350255], [-79.768232, 38.349211], [-79.769488, 38.348337], [-79.770001, 38.348162], [-79.770279, 38.347969], [-79.770352, 38.347808], [-79.769414, 38.346852], [-79.769103, 38.346536], [-79.76889, 38.346481], [-79.768491, 38.34638], [-79.768113, 38.346241], [-79.7678, 38.345715], [-79.767761, 38.345497], [-79.767727, 38.345161], [-79.767695, 38.344827], [-79.767636, 38.344506], [-79.767615, 38.3444], [-79.767597, 38.34431], [-79.767654, 38.344088], [-79.76766, 38.344069], [-79.767712, 38.344], [-79.767765, 38.343925], [-79.767867, 38.343787], [-79.767944, 38.343719], [-79.768014, 38.34366], [-79.768454, 38.343272], [-79.769238, 38.342582], [-79.769722, 38.342054], [-79.769909, 38.341851], [-79.770005, 38.341556], [-79.77056, 38.339876], [-79.770684, 38.339683], [-79.770814, 38.339602], [-79.77088, 38.339563], [-79.771579, 38.339154], [-79.771961, 38.338809], [-79.772178, 38.338487], [-79.772474, 38.337302], [-79.773093, 38.335537], [-79.774215, 38.334646], [-79.774303, 38.334534], [-79.774464, 38.334333], [-79.776199, 38.333573], [-79.77662, 38.333381], [-79.777155, 38.333028], [-79.778556, 38.331945], [-79.779275, 38.331617], [-79.780259, 38.331403], [-79.780453, 38.331415], [-79.780956, 38.331446], [-79.782979, 38.331818], [-79.783684, 38.331917], [-79.784371, 38.331791], [-79.785809, 38.331103], [-79.785975, 38.330886], [-79.786749, 38.328718], [-79.786987, 38.328445], [-79.787983, 38.328037], [-79.788229, 38.327998], [-79.789915, 38.328303], [-79.790048, 38.328247], [-79.790299, 38.327627], [-79.790526, 38.327378], [-79.791092, 38.327001], [-79.791514, 38.326631], [-79.792039, 38.326218], [-79.794294, 38.324447], [-79.796165, 38.323742], [-79.796223, 38.323721], [-79.796553, 38.323488], [-79.796687, 38.323311], [-79.796869, 38.322471], [-79.797048, 38.32165], [-79.797832, 38.32083], [-79.797998, 38.320556], [-79.798168, 38.319758], [-79.798162, 38.319169], [-79.798286, 38.318967], [-79.798702, 38.318401], [-79.79962, 38.317157], [-79.800042, 38.316828], [-79.800432, 38.316684], [-79.801661, 38.31656], [-79.801917, 38.316504], [-79.802328, 38.316272], [-79.803128, 38.315198], [-79.803269, 38.315009], [-79.804096, 38.31393], [-79.80549, 38.312306], [-79.805892, 38.311888], [-79.808415, 38.309759], [-79.808714, 38.309437], [-79.809452, 38.307915], [-79.810074, 38.306892], [-79.810157, 38.306715], [-79.810118, 38.305078], [-79.810118, 38.305045], [-79.809937, 38.304689], [-79.807545, 38.301702], [-79.805927, 38.300302], [-79.804182, 38.298792], [-79.804029, 38.29863], [-79.803349, 38.29669], [-79.803253, 38.294862], [-79.803197, 38.293774], [-79.802945, 38.292756], [-79.802781, 38.292081], [-79.802578, 38.291894], [-79.802302, 38.291837], [-79.800173, 38.29199], [-79.798225, 38.292049], [-79.797851, 38.292061], [-79.797698, 38.292012], [-79.795451, 38.290236], [-79.794837, 38.288886], [-79.794627, 38.288264], [-79.794546, 38.288086], [-79.792844, 38.286118], [-79.792336, 38.285592], [-79.792002, 38.285195], [-79.791658, 38.284661], [-79.790974, 38.283238], [-79.789975, 38.281483], [-79.789794, 38.281175], [-79.789735, 38.280901], [-79.789707, 38.280529], [-79.789893, 38.280199], [-79.790095, 38.27943], [-79.790284, 38.278716], [-79.790308, 38.278264], [-79.790229, 38.277876], [-79.790008, 38.277359], [-79.787896, 38.275422], [-79.787696, 38.275331], [-79.787598, 38.275311], [-79.787253, 38.275241], [-79.786904, 38.275081], [-79.786846, 38.275054], [-79.786612, 38.274892], [-79.78647, 38.274657], [-79.786544, 38.274407], [-79.786926, 38.273997], [-79.787433, 38.273431], [-79.787547, 38.273305], [-79.787803, 38.272801], [-79.788194, 38.272037], [-79.788272, 38.271888], [-79.788429, 38.271397], [-79.788818, 38.270043], [-79.788864, 38.269564], [-79.788948, 38.268711], [-79.78916, 38.268474], [-79.789228, 38.2684], [-79.78989, 38.267862], [-79.790137, 38.267662], [-79.790381, 38.267644], [-79.790701, 38.267589], [-79.791906, 38.267384], [-79.792235, 38.267224], [-79.792335, 38.267152], [-79.792799, 38.266821], [-79.793026, 38.266694], [-79.793432, 38.266587], [-79.794788, 38.266233], [-79.795199, 38.266009], [-79.795345, 38.265918], [-79.795924, 38.26556], [-79.797173, 38.266162], [-79.797623, 38.266172], [-79.797972, 38.266133], [-79.798301, 38.265965], [-79.799517, 38.264275], [-79.801276, 38.261481], [-79.802205, 38.260825], [-79.80486, 38.260075], [-79.805078, 38.260014], [-79.806339, 38.259201], [-79.806516, 38.25921], [-79.809317, 38.259988], [-79.810689, 38.260371], [-79.811424, 38.260394], [-79.811992, 38.260406], [-79.81215, 38.26026], [-79.812223, 38.260193], [-79.812787, 38.259654], [-79.813646, 38.258861], [-79.814204, 38.258183], [-79.814618, 38.257454], [-79.814623, 38.25728], [-79.814623, 38.257268], [-79.81464, 38.256669], [-79.815712, 38.255075], [-79.815721, 38.253658], [-79.815152, 38.252362], [-79.814867, 38.251577], [-79.815013, 38.251376], [-79.815735, 38.250709], [-79.816316, 38.250131], [-79.816771, 38.24984], [-79.817148, 38.249517], [-79.817525, 38.249327], [-79.818211, 38.249062], [-79.818869, 38.248721], [-79.819074, 38.248645], [-79.819214, 38.248549], [-79.819314, 38.248459], [-79.819496, 38.248337], [-79.819628, 38.24824], [-79.819859, 38.248158], [-79.820046, 38.248122], [-79.820445, 38.248104], [-79.821013, 38.248287], [-79.821985, 38.248821], [-79.822471, 38.249116], [-79.822897, 38.249376], [-79.82353, 38.24974], [-79.824363, 38.25013], [-79.824966, 38.250391], [-79.825286, 38.250496], [-79.825606, 38.250444], [-79.826118, 38.250314], [-79.826445, 38.25013], [-79.8265, 38.2501], [-79.826889, 38.249887], [-79.827353, 38.249831], [-79.828071, 38.249836], [-79.828308, 38.249831], [-79.828501, 38.24975], [-79.828938, 38.249568], [-79.829254, 38.249512], [-79.829619, 38.249531], [-79.830716, 38.249721], [-79.830889, 38.249697], [-79.831194, 38.249488], [-79.831448, 38.249117], [-79.83152, 38.249012], [-79.832031, 38.248564], [-79.832593, 38.247992], [-79.832972, 38.247565], [-79.833064, 38.247283], [-79.833146, 38.247025], [-79.833208, 38.246662], [-79.833281, 38.246274], [-79.833475, 38.245896], [-79.83367, 38.245533], [-79.833925, 38.245243], [-79.834032, 38.244964], [-79.834038, 38.244251], [-79.834035, 38.243549], [-79.83417, 38.242919], [-79.834563, 38.242344], [-79.835116, 38.241905], [-79.836105, 38.241536], [-79.837484, 38.241288], [-79.838293, 38.24124], [-79.83967, 38.241322], [-79.840753, 38.241458], [-79.84152, 38.241554], [-79.84296, 38.241602], [-79.84366, 38.241513], [-79.843985, 38.241467], [-79.844312, 38.241329], [-79.844631, 38.241271], [-79.844959, 38.241205], [-79.845215, 38.241082], [-79.845791, 38.240661], [-79.846258, 38.240284], [-79.846457, 38.239997], [-79.846536, 38.239586], [-79.84674, 38.239224], [-79.847158, 38.23832], [-79.847758, 38.237437], [-79.848376, 38.236411], [-79.84893, 38.23555], [-79.849288, 38.235139], [-79.849557, 38.234796], [-79.849666, 38.234596], [-79.849838, 38.234165], [-79.850102, 38.233569], [-79.850329, 38.233332], [-79.851065, 38.23306], [-79.851719, 38.232873], [-79.852773, 38.232457], [-79.853425, 38.232163], [-79.854751, 38.231894], [-79.855933, 38.231552], [-79.856709, 38.2312], [-79.856975, 38.231075], [-79.857428, 38.230612], [-79.857869, 38.230014], [-79.858519, 38.229239], [-79.85988, 38.227859], [-79.860277, 38.227378], [-79.860459, 38.227105], [-79.86052, 38.226855], [-79.860436, 38.226633], [-79.860389, 38.2265], [-79.860412, 38.226143], [-79.86054, 38.225688], [-79.860893, 38.225251], [-79.86177, 38.224627], [-79.862501, 38.224203], [-79.863183, 38.22401], [-79.863459, 38.223976], [-79.863626, 38.223953], [-79.863935, 38.223784], [-79.864305, 38.223511], [-79.866811, 38.221194], [-79.867146, 38.220841], [-79.867409, 38.220439], [-79.867673, 38.2199], [-79.867794, 38.219643], [-79.867999, 38.21945], [-79.86852, 38.219185], [-79.868979, 38.218976], [-79.86948, 38.218726], [-79.869899, 38.218566], [-79.870276, 38.218373], [-79.873211, 38.215917], [-79.87364, 38.215587], [-79.873782, 38.215514], [-79.873937, 38.215393], [-79.873944, 38.215289], [-79.873947, 38.215224], [-79.874074, 38.214629], [-79.874358, 38.213615], [-79.874597, 38.212984], [-79.874785, 38.212955], [-79.875714, 38.212319], [-79.877224, 38.211652], [-79.877917, 38.211326], [-79.878183, 38.211289], [-79.878301, 38.211272], [-79.87842, 38.211254], [-79.878481, 38.211214], [-79.878611, 38.211128], [-79.87909, 38.211024], [-79.879253, 38.210928], [-79.879315, 38.210791], [-79.879582, 38.210316], [-79.87989, 38.209817], [-79.880054, 38.209584], [-79.880238, 38.209439], [-79.880345, 38.209442], [-79.880457, 38.209444], [-79.880568, 38.209446], [-79.880655, 38.209396], [-79.880742, 38.209345], [-79.880849, 38.209279], [-79.88138, 38.209112], [-79.881583, 38.208958], [-79.881706, 38.208805], [-79.881993, 38.208265], [-79.882062, 38.208126], [-79.882213, 38.207916], [-79.882528, 38.20746], [-79.882827, 38.207106], [-79.882958, 38.206947], [-79.883111, 38.206891], [-79.883325, 38.206851], [-79.883872, 38.207585], [-79.884236, 38.207876], [-79.884553, 38.207965], [-79.885021, 38.207974], [-79.885653, 38.207943], [-79.886152, 38.207961], [-79.886416, 38.207961], [-79.887588, 38.207633], [-79.888048, 38.207368], [-79.88834, 38.207183], [-79.888547, 38.207047], [-79.889202, 38.206468], [-79.89027, 38.205899], [-79.890325, 38.205867], [-79.89051, 38.205697], [-79.890685, 38.20544], [-79.890758, 38.205053], [-79.890993, 38.204844], [-79.891594, 38.20466], [-79.891727, 38.204515], [-79.89184, 38.20433], [-79.891885, 38.203556], [-79.892004, 38.20338], [-79.891959, 38.203245], [-79.891935, 38.203097], [-79.891939, 38.202962], [-79.891965, 38.202859], [-79.892012, 38.202747], [-79.892164, 38.202535], [-79.892429, 38.202206], [-79.892564, 38.201865], [-79.892648, 38.201455], [-79.892691, 38.200746], [-79.892775, 38.200182], [-79.892919, 38.199876], [-79.893186, 38.199562], [-79.89343, 38.199458], [-79.893657, 38.199424], [-79.893681, 38.199423], [-79.894144, 38.199354], [-79.894266, 38.199274], [-79.894328, 38.199153], [-79.894375, 38.198798], [-79.894379, 38.198755], [-79.89435, 38.198646], [-79.894463, 38.198509], [-79.894619, 38.198477], [-79.894741, 38.198454], [-79.894983, 38.198405], [-79.895167, 38.198252], [-79.895802, 38.197545], [-79.896599, 38.196748], [-79.896886, 38.196467], [-79.897135, 38.196257], [-79.897187, 38.196177], [-79.897255, 38.196089], [-79.897398, 38.195855], [-79.897471, 38.195622], [-79.897411, 38.195356], [-79.89732, 38.195138], [-79.897057, 38.194701], [-79.897007, 38.194525], [-79.897019, 38.194219], [-79.897133, 38.193744], [-79.897338, 38.193389], [-79.897583, 38.193261], [-79.897828, 38.193141], [-79.898429, 38.193053], [-79.898674, 38.192941], [-79.898969, 38.192812], [-79.899643, 38.192467], [-79.900266, 38.192106], [-79.900531, 38.191921], [-79.900736, 38.191744], [-79.900961, 38.191503], [-79.901288, 38.191173], [-79.901553, 38.191037], [-79.901788, 38.190932], [-79.902623, 38.190837], [-79.902929, 38.190757], [-79.903245, 38.190637], [-79.903623, 38.19042], [-79.905103, 38.189464], [-79.905328, 38.189376], [-79.905685, 38.18924], [-79.906093, 38.189007], [-79.90641, 38.188741], [-79.906951, 38.188219], [-79.907176, 38.188066], [-79.90739, 38.187978], [-79.907624, 38.187954], [-79.908336, 38.188116], [-79.909497, 38.188223], [-79.909793, 38.188199], [-79.910037, 38.188191], [-79.910503, 38.18806], [-79.910964, 38.187928], [-79.911423, 38.187776], [-79.911739, 38.187655], [-79.912085, 38.187624], [-79.912411, 38.187721], [-79.913081, 38.188157], [-79.913935, 38.188489], [-79.914199, 38.18849], [-79.914413, 38.188426], [-79.914618, 38.188241], [-79.914874, 38.187911], [-79.915242, 38.187541], [-79.916152, 38.186559], [-79.916286, 38.186386], [-79.916306, 38.186344], [-79.916347, 38.186286], [-79.916388, 38.186012], [-79.916349, 38.185754], [-79.916188, 38.185286], [-79.916148, 38.18498], [-79.916186, 38.184232], [-79.9163, 38.18412], [-79.916447, 38.183993], [-79.916643, 38.183844], [-79.916678, 38.183821], [-79.917803, 38.183613], [-79.918323, 38.183485], [-79.919057, 38.183196], [-79.919812, 38.182746], [-79.920078, 38.182537], [-79.92017, 38.182368], [-79.920324, 38.182111], [-79.920621, 38.18166], [-79.920816, 38.181386], [-79.921041, 38.181113], [-79.921113, 38.18096], [-79.921185, 38.180783], [-79.921199, 38.180386], [-79.921029, 38.179962], [-79.92066, 38.179734], [-79.9201, 38.179572], [-79.919796, 38.179418], [-79.919507, 38.179313], [-79.919339, 38.179095], [-79.919105, 38.178917], [-79.91876, 38.17882], [-79.918159, 38.178722], [-79.91764, 38.178658], [-79.917437, 38.178632], [-79.917142, 38.178487], [-79.916625, 38.178002], [-79.916565, 38.177704], [-79.916457, 38.176825], [-79.916529, 38.176592], [-79.916714, 38.176189], [-79.916797, 38.175923], [-79.916768, 38.175512], [-79.91685, 38.175319], [-79.916994, 38.175078], [-79.917834, 38.174095], [-79.917894, 38.174029], [-79.918068, 38.173822], [-79.918242, 38.173492], [-79.918296, 38.173395], [-79.918447, 38.173106], [-79.918632, 38.172679], [-79.918797, 38.17226], [-79.918951, 38.171898], [-79.918992, 38.171737], [-79.919014, 38.171471], [-79.918924, 38.171052], [-79.918884, 38.170786], [-79.918916, 38.170447], [-79.918886, 38.170318], [-79.918826, 38.170125], [-79.918694, 38.169988], [-79.918257, 38.16981], [-79.918105, 38.169624], [-79.918045, 38.169447], [-79.918107, 38.169132], [-79.918169, 38.168883], [-79.918201, 38.168754], [-79.91816, 38.168609], [-79.917928, 38.168407], [-79.917602, 38.168366], [-79.917032, 38.168397], [-79.916681, 38.168409], [-79.916075, 38.168436], [-79.915068, 38.168096], [-79.914927, 38.167919], [-79.914867, 38.167732], [-79.914887, 38.167532], [-79.915021, 38.167347], [-79.915194, 38.16721], [-79.915245, 38.167106], [-79.915307, 38.16692], [-79.915247, 38.166654], [-79.915309, 38.166477], [-79.915442, 38.166284], [-79.915688, 38.166051], [-79.91582, 38.165898], [-79.916056, 38.165536], [-79.916231, 38.164996], [-79.916172, 38.164545], [-79.915981, 38.164085], [-79.915942, 38.163666], [-79.916014, 38.163376], [-79.916117, 38.163207], [-79.916209, 38.163102], [-79.916382, 38.16303], [-79.916657, 38.163014], [-79.917196, 38.163048], [-79.917908, 38.163097], [-79.918478, 38.163155], [-79.918722, 38.163155], [-79.919049, 38.163035], [-79.919395, 38.162858], [-79.919518, 38.162657], [-79.91955, 38.162431], [-79.91949, 38.162189], [-79.919258, 38.161544], [-79.919097, 38.161109], [-79.9191, 38.160537], [-79.919081, 38.16011], [-79.919297, 38.15957], [-79.919522, 38.15924], [-79.919809, 38.158805], [-79.91985, 38.158709], [-79.91979, 38.158515], [-79.919577, 38.15837], [-79.919231, 38.158337], [-79.918783, 38.158288], [-79.918671, 38.158231], [-79.91857, 38.15807], [-79.91847, 38.157586], [-79.918513, 38.157167], [-79.918769, 38.15666], [-79.919016, 38.156169], [-79.919047, 38.156032], [-79.919007, 38.155871], [-79.918774, 38.155532], [-79.918602, 38.155274], [-79.918583, 38.155056], [-79.918665, 38.154798], [-79.918788, 38.154613], [-79.919207, 38.154098], [-79.919412, 38.153792], [-79.919555, 38.153648], [-79.919708, 38.153527], [-79.919933, 38.153439], [-79.920513, 38.15323], [-79.920881, 38.152917], [-79.921351, 38.152377], [-79.921617, 38.152168], [-79.922004, 38.152032], [-79.922493, 38.151848], [-79.922728, 38.151663], [-79.922841, 38.151486], [-79.922944, 38.151131], [-79.923036, 38.150962], [-79.923128, 38.150882], [-79.923413, 38.150794], [-79.924941, 38.150619], [-79.925254, 38.150473], [-79.925515, 38.150245], [-79.925737, 38.149976], [-79.925992, 38.149767], [-79.926146, 38.149565], [-79.926228, 38.149412], [-79.926198, 38.149235], [-79.926199, 38.148889], [-79.92623, 38.148744], [-79.926302, 38.148566], [-79.926272, 38.148413], [-79.926194, 38.147704], [-79.926225, 38.147543], [-79.926358, 38.147325], [-79.926685, 38.147068], [-79.926797, 38.146972], [-79.92691, 38.146786], [-79.927074, 38.146497], [-79.927269, 38.146038], [-79.927494, 38.145716], [-79.927688, 38.145579], [-79.927923, 38.14541], [-79.928422, 38.145177], [-79.928686, 38.144936], [-79.928704, 38.144568], [-79.92875, 38.144444], [-79.928673, 38.143357], [-79.928696, 38.142696], [-79.928771, 38.141914], [-79.928846, 38.140915], [-79.928889, 38.140254], [-79.928951, 38.13999], [-79.928997, 38.139874], [-79.929034, 38.139779], [-79.92931, 38.139441], [-79.929882, 38.138725], [-79.930525, 38.138162], [-79.931066, 38.137832], [-79.931525, 38.137575], [-79.931903, 38.137342], [-79.932098, 38.137085], [-79.932282, 38.136811], [-79.932579, 38.136344], [-79.932752, 38.136167], [-79.933754, 38.135516], [-79.933835, 38.135389], [-79.933977, 38.135307], [-79.934057, 38.13522], [-79.934155, 38.135141], [-79.934266, 38.135073], [-79.934319, 38.135052], [-79.934471, 38.135014], [-79.934628, 38.13499], [-79.935353, 38.134954], [-79.935385, 38.13495], [-79.935632, 38.134909], [-79.936194, 38.134868], [-79.936309, 38.134848], [-79.936837, 38.134785], [-79.937067, 38.134779], [-79.937297, 38.134788], [-79.937644, 38.134824], [-79.937903, 38.134867], [-79.938157, 38.134924], [-79.938239, 38.134946], [-79.9394, 38.135115], [-79.939939, 38.135002], [-79.940232, 38.134832], [-79.94067, 38.134529], [-79.940827, 38.13443], [-79.940917, 38.134391], [-79.941015, 38.134365], [-79.941138, 38.134353], [-79.941593, 38.134362], [-79.941995, 38.134387], [-79.942586, 38.134342], [-79.942674, 38.134336], [-79.94275, 38.134341], [-79.942852, 38.134258], [-79.942975, 38.13409], [-79.942945, 38.13392], [-79.942905, 38.133718], [-79.942946, 38.133541], [-79.943058, 38.133396], [-79.943212, 38.133291], [-79.943548, 38.133227], [-79.94367, 38.133155], [-79.943772, 38.133066], [-79.943905, 38.13297], [-79.944323, 38.132616], [-79.944476, 38.132519], [-79.944721, 38.13248], [-79.945087, 38.132464], [-79.945219, 38.132392], [-79.945261, 38.132247], [-79.945241, 38.132134], [-79.94519, 38.131997], [-79.945039, 38.131787], [-79.944846, 38.131593], [-79.944745, 38.131408], [-79.944624, 38.131182], [-79.944513, 38.130827], [-79.944332, 38.1304], [-79.944292, 38.130174], [-79.944354, 38.129949], [-79.944416, 38.129739], [-79.944406, 38.129473], [-79.944336, 38.129183], [-79.944256, 38.128965], [-79.944104, 38.128651], [-79.943871, 38.128336], [-79.943527, 38.127965], [-79.942817, 38.127303], [-79.942665, 38.127158], [-79.942524, 38.126883], [-79.942331, 38.12669], [-79.941987, 38.126375], [-79.941794, 38.126125], [-79.941298, 38.125487], [-79.941177, 38.125278], [-79.941178, 38.125131], [-79.94112, 38.124784], [-79.941236, 38.124584], [-79.941628, 38.124435], [-79.941967, 38.124304], [-79.943084, 38.123663], [-79.943212, 38.123398], [-79.943245, 38.123174], [-79.943247, 38.123155], [-79.943249, 38.123143], [-79.942475, 38.122508], [-79.942137, 38.122092], [-79.941674, 38.121723], [-79.940998, 38.121335], [-79.94067, 38.120881], [-79.940728, 38.120498], [-79.94092, 38.120086], [-79.941012, 38.119673], [-79.940855, 38.119331], [-79.940719, 38.119029], [-79.94077, 38.118535], [-79.941027, 38.118018], [-79.941453, 38.117666], [-79.941467, 38.117377], [-79.941266, 38.11719], [-79.940954, 38.116888], [-79.940355, 38.115914], [-79.94006, 38.115211], [-79.939595, 38.11437], [-79.939551, 38.113965], [-79.939707, 38.113572], [-79.939469, 38.11322], [-79.939091, 38.112674], [-79.938949, 38.111636], [-79.938415, 38.110997], [-79.938051, 38.110774], [-79.937687, 38.110821], [-79.937174, 38.11105], [-79.936863, 38.11122], [-79.936521, 38.111208], [-79.936157, 38.111143], [-79.935667, 38.111161], [-79.935214, 38.110938], [-79.934724, 38.110563], [-79.93468, 38.110099], [-79.934353, 38.10973], [-79.933172, 38.109589], [-79.932719, 38.109654], [-79.932474, 38.109736], [-79.932044, 38.109665], [-79.931576, 38.109366], [-79.930893, 38.109266], [-79.930454, 38.10929], [-79.92969, 38.109202], [-79.928888, 38.108885], [-79.926333, 38.107155], [-79.926296, 38.106826], [-79.9264, 38.106551], [-79.926794, 38.106181], [-79.927046, 38.105806], [-79.927618, 38.104879], [-79.927878, 38.104462], [-79.928011, 38.104345], [-79.928687, 38.103846], [-79.928828, 38.103653], [-79.929296, 38.103013], [-79.929499, 38.102892], [-79.929742, 38.102756], [-79.93008, 38.102514], [-79.930484, 38.102246], [-79.930931, 38.101682], [-79.931047, 38.101381], [-79.93107, 38.10137], [-79.931189, 38.101321], [-79.931406, 38.101192], [-79.931592, 38.101063], [-79.932168, 38.100663], [-79.932395, 38.100494], [-79.932483, 38.100422], [-79.933155, 38.099786], [-79.933921, 38.099123], [-79.934007, 38.098538], [-79.934259, 38.097684], [-79.934614, 38.097325], [-79.934907, 38.096997], [-79.935109, 38.096555], [-79.935472, 38.096261], [-79.936353, 38.095602], [-79.937848, 38.09495], [-79.93828, 38.094753], [-79.939877, 38.093092], [-79.941357, 38.092085], [-79.941903, 38.091842], [-79.942368, 38.091597], [-79.942659, 38.091301], [-79.942913, 38.090885], [-79.943321, 38.090373], [-79.943574, 38.090021], [-79.944027, 38.089817], [-79.94434, 38.089522], [-79.945167, 38.088532], [-79.945704, 38.087944], [-79.946609, 38.086958], [-79.947012, 38.086229], [-79.947134, 38.085294], [-79.947292, 38.085053], [-79.947601, 38.08492], [-79.947981, 38.084804], [-79.948312, 38.084614], [-79.949116, 38.084245], [-79.949931, 38.083819], [-79.951114, 38.082914], [-79.951267, 38.082737], [-79.951308, 38.082689], [-79.951349, 38.08264], [-79.951459, 38.082507], [-79.952131, 38.082177], [-79.953514, 38.081487], [-79.953713, 38.081243], [-79.954373, 38.080408], [-79.954534, 38.080109], [-79.954533, 38.079987], [-79.954537, 38.079923], [-79.954542, 38.07986], [-79.954539, 38.079752], [-79.954403, 38.079419], [-79.954217, 38.079021], [-79.95413, 38.07877], [-79.954197, 38.078528], [-79.954509, 38.078218], [-79.955553, 38.077625], [-79.955647, 38.077505], [-79.955671, 38.077328], [-79.955639, 38.076916], [-79.955715, 38.076683], [-79.955748, 38.076562], [-79.955752, 38.076376], [-79.955768, 38.076118], [-79.955919, 38.075732], [-79.956107, 38.075492], [-79.956273, 38.075398], [-79.956419, 38.075214], [-79.956506, 38.074973], [-79.95739, 38.073183], [-79.957518, 38.072926], [-79.957616, 38.072637], [-79.957685, 38.072283], [-79.957761, 38.072057], [-79.957875, 38.071938], [-79.958206, 38.071732], [-79.958608, 38.07156], [-79.959169, 38.071294], [-79.959354, 38.071174], [-79.959372, 38.070771], [-79.959135, 38.070405], [-79.959151, 38.070107], [-79.960097, 38.068682], [-79.96095, 38.068139], [-79.96116, 38.068], [-79.96165, 38.067422], [-79.961583, 38.066597], [-79.96158, 38.066528], [-79.961575, 38.066463], [-79.961807, 38.066118], [-79.961808, 38.065882], [-79.96082, 38.06521], [-79.96031, 38.064871], [-79.95991, 38.064541], [-79.959692, 38.064522], [-79.959499, 38.064304], [-79.959567, 38.063934], [-79.959847, 38.063704], [-79.959863, 38.063429], [-79.95998, 38.063133], [-79.960057, 38.062875], [-79.960165, 38.062554], [-79.960438, 38.062162], [-79.960688, 38.061867], [-79.960927, 38.061644], [-79.96116, 38.061211], [-79.961237, 38.061053], [-79.961266, 38.060995], [-79.961497, 38.060667], [-79.961566, 38.060589], [-79.961904, 38.060196], [-79.962167, 38.059748], [-79.962254, 38.059499], [-79.962333, 38.059072], [-79.962324, 38.0585], [-79.962381, 38.058194], [-79.962478, 38.057913], [-79.962677, 38.057673], [-79.963131, 38.057388], [-79.963556, 38.057039], [-79.963788, 38.05663], [-79.963987, 38.055294], [-79.964288, 38.054523], [-79.964582, 38.054051], [-79.965319, 38.053415], [-79.965627, 38.052765], [-79.965906, 38.052043], [-79.965926, 38.051551], [-79.965953, 38.051221], [-79.966083, 38.050827], [-79.96671, 38.050028], [-79.967138, 38.049501], [-79.967844, 38.048865], [-79.968076, 38.048472], [-79.968142, 38.048199], [-79.968148, 38.047909], [-79.968192, 38.047716], [-79.968587, 38.047333], [-79.969197, 38.046897], [-79.96951, 38.046538], [-79.969794, 38.046082], [-79.970106, 38.045731], [-79.970833, 38.045046], [-79.971147, 38.044655], [-79.971234, 38.044333], [-79.971396, 38.043884], [-79.972282, 38.042943], [-79.972618, 38.042423], [-79.972694, 38.042166], [-79.972856, 38.041716], [-79.972995, 38.041363], [-79.973372, 38.040851], [-79.973675, 38.04046], [-79.973898, 38.040011], [-79.973972, 38.039326], [-79.97378, 38.038751], [-79.973238, 38.037744], [-79.972168, 38.036109], [-79.971969, 38.035881], [-79.971677, 38.035668], [-79.971528, 38.035456], [-79.971604, 38.035239], [-79.972108, 38.034979], [-79.973143, 38.034718], [-79.97386, 38.034574], [-79.974088, 38.034399], [-79.974176, 38.034077], [-79.974137, 38.033964], [-79.973823, 38.033355], [-79.973623, 38.03307], [-79.973704, 38.032563], [-79.973873, 38.032315], [-79.974283, 38.032199], [-79.974942, 38.031861], [-79.97541, 38.031398], [-79.975425, 38.031116], [-79.97535, 38.030809], [-79.975265, 38.030421], [-79.975272, 38.030082], [-79.975603, 38.029836], [-79.976158, 38.029601], [-79.976735, 38.029285], [-79.976893, 38.029013], [-79.976958, 38.028812], [-79.977337, 38.02872], [-79.97778, 38.02896], [-79.978042, 38.02914], [-79.97843, 38.029089], [-79.978977, 38.02874], [-79.979464, 38.028351], [-79.980012, 38.027947], [-79.980293, 38.027603], [-79.980446, 38.027089], [-79.980568, 38.026558], [-79.980781, 38.026117], [-79.981124, 38.025718], [-79.981469, 38.025271], [-79.981888, 38.024695], [-79.982091, 38.02423], [-79.982444, 38.023879], [-79.98285, 38.023448], [-79.98331, 38.022801], [-79.983598, 38.022167], [-79.983821, 38.021678], [-79.983881, 38.021195], [-79.983992, 38.020744], [-79.984376, 38.020394], [-79.985087, 38.019943], [-79.985622, 38.019167], [-79.985788, 38.018475], [-79.985795, 38.018096], [-79.985012, 38.016941], [-79.984845, 38.016617], [-79.984995, 38.016255], [-79.985457, 38.016051], [-79.985889, 38.015887], [-79.986142, 38.015431], [-79.986163, 38.014842], [-79.986049, 38.014413], [-79.986145, 38.014189], [-79.986954, 38.013989], [-79.988392, 38.013926], [-79.989539, 38.013617], [-79.990117, 38.013253], [-79.990791, 38.012108], [-79.99126, 38.011549], [-79.99146, 38.011213], [-79.991921, 38.010533], [-79.992726, 38.010027], [-79.993706, 38.009353], [-79.99432, 38.008723], [-79.994988, 38.00786], [-79.995491, 38.007132], [-79.995768, 38.006498], [-79.995904, 38.005798], [-79.995851, 38.005362], [-79.995694, 38.005054], [-79.995395, 38.004703], [-79.995125, 38.004385], [-79.994907, 38.004084], [-79.995127, 38.00378], [-79.995401, 38.003316], [-79.995602, 38.002891], [-79.996137, 38.001003], [-79.996399, 38.000611], [-79.99672, 38.000365], [-79.99714, 38.000131], [-79.998217, 38.000033], [-79.99845, 37.999944], [-79.998582, 37.999968], [-79.998755, 37.999847], [-79.998856, 37.999718], [-79.998886, 37.999573], [-79.998886, 37.999484], [-79.998835, 37.999266], [-79.998825, 37.999089], [-79.998824, 37.998944], [-79.998794, 37.998767], [-79.998814, 37.998694], [-79.998813, 37.99842], [-79.998783, 37.99826], [-79.998772, 37.998163], [-79.99866, 37.997922], [-79.998559, 37.997736], [-79.99866, 37.997615], [-79.998832, 37.997519], [-79.998923, 37.997438], [-79.999004, 37.997357], [-79.999146, 37.99726], [-79.999166, 37.997139], [-79.999197, 37.997083], [-79.999278, 37.996946], [-79.999308, 37.996768], [-79.999389, 37.996559], [-79.999378, 37.996414], [-79.999418, 37.996228], [-79.999388, 37.996115], [-79.999388, 37.996011], [-79.999387, 37.995849], [-79.999357, 37.995777], [-79.999336, 37.995608], [-79.999316, 37.995471], [-79.999265, 37.995302], [-79.999244, 37.995197], [-79.999275, 37.995092], [-79.999386, 37.994915], [-79.999487, 37.994898], [-79.999609, 37.994906], [-79.999784, 37.994788], [-80.000984, 37.994719], [-80.001646, 37.994375], [-80.001995, 37.993844], [-80.002284, 37.993168], [-80.00251, 37.992774], [-80.003273, 37.992543], [-80.003985, 37.992328], [-80.004547, 37.991959], [-80.005219, 37.991736], [-80.006226, 37.991586], [-80.006735, 37.99141], [-80.007296, 37.990945], [-80.007654, 37.990616], [-80.007958, 37.990649], [-80.008485, 37.990804], [-80.008891, 37.990837], [-80.009126, 37.990677], [-80.00969, 37.989776], [-80.010262, 37.989343], [-80.010985, 37.989071], [-80.011686, 37.988921], [-80.012196, 37.98864], [-80.012605, 37.988207], [-80.012894, 37.98745], [-80.012558, 37.986006], [-80.012773, 37.985669], [-80.013133, 37.985057], [-80.013148, 37.98426], [-80.014338, 37.983925], [-80.015938, 37.983092], [-80.016144, 37.982521], [-80.016714, 37.982345], [-80.017172, 37.98217], [-80.017419, 37.981671], [-80.01795, 37.981278], [-80.018701, 37.98124], [-80.020165, 37.980987], [-80.020634, 37.980755], [-80.020891, 37.980304], [-80.021067, 37.979636], [-80.021648, 37.979372], [-80.021995, 37.979075], [-80.022131, 37.978382], [-80.022144, 37.978028], [-80.022755, 37.977635], [-80.023062, 37.977297], [-80.023703, 37.977082], [-80.024171, 37.976914], [-80.024622, 37.976255], [-80.025576, 37.976403], [-80.025983, 37.976259], [-80.026209, 37.975809], [-80.026325, 37.975059], [-80.026711, 37.974996], [-80.027057, 37.974868], [-80.027181, 37.974546], [-80.027254, 37.974273], [-80.027823, 37.974186], [-80.028778, 37.9741], [-80.029186, 37.974061], [-80.029492, 37.973796], [-80.029841, 37.973185], [-80.030271, 37.972654], [-80.030944, 37.972181], [-80.031496, 37.971554], [-80.032159, 37.97096], [-80.032689, 37.970647], [-80.03472, 37.968937], [-80.035555, 37.968489], [-80.035983, 37.968256], [-80.036239, 37.967927], [-80.036599, 37.967162], [-80.036755, 37.966446], [-80.036911, 37.965914], [-80.039613, 37.965697], [-80.040426, 37.965627], [-80.040439, 37.965071], [-80.040443, 37.96445], [-80.040894, 37.963751], [-80.041311, 37.963607], [-80.04188, 37.96348], [-80.043216, 37.962412], [-80.043716, 37.962035], [-80.044074, 37.961617], [-80.044374, 37.960699], [-80.044479, 37.960087], [-80.045525, 37.959905], [-80.046246, 37.959971], [-80.046875, 37.960062], [-80.047099, 37.959885], [-80.047326, 37.959233], [-80.047637, 37.958267], [-80.048413, 37.957488], [-80.049663, 37.957202], [-80.050324, 37.957091], [-80.051046, 37.956859], [-80.051506, 37.956264], [-80.052189, 37.955751], [-80.052821, 37.955349], [-80.053617, 37.954635], [-80.054452, 37.954371], [-80.054666, 37.954211], [-80.055147, 37.953559], [-80.055638, 37.952803], [-80.056059, 37.951966], [-80.056378, 37.951914], [-80.056842, 37.95184], [-80.058399, 37.951055], [-80.059611, 37.950309], [-80.060943, 37.94999], [-80.061779, 37.949275], [-80.06239, 37.949068], [-80.062929, 37.948755], [-80.063685, 37.947975], [-80.063606, 37.947637], [-80.064753, 37.947568], [-80.065911, 37.947466], [-80.066572, 37.947178], [-80.06699, 37.946833], [-80.068354, 37.946144], [-80.06919, 37.945574], [-80.069434, 37.94547], [-80.069578, 37.945099], [-80.070052, 37.943892], [-80.071068, 37.943661], [-80.071973, 37.943398], [-80.072583, 37.943069], [-80.073449, 37.942532], [-80.074517, 37.942228], [-80.074564, 37.942074], [-80.074621, 37.94191], [-80.074626, 37.941871], [-80.074713, 37.941564], [-80.07494, 37.940803], [-80.075444, 37.939636], [-80.076108, 37.938953], [-80.077126, 37.938246], [-80.0796, 37.936988], [-80.080826, 37.935533], [-80.082303, 37.934554], [-80.083982, 37.933696], [-80.084389, 37.933552], [-80.084572, 37.933407], [-80.084584, 37.933109], [-80.0853, 37.931999], [-80.085798, 37.931896], [-80.086347, 37.931639], [-80.0868, 37.930424], [-80.086957, 37.929554], [-80.087978, 37.928509], [-80.088935, 37.927818], [-80.090145, 37.927306], [-80.091061, 37.926913], [-80.091634, 37.925956], [-80.092063, 37.925417], [-80.091812, 37.924965], [-80.091713, 37.924425], [-80.092022, 37.923523], [-80.092939, 37.922736], [-80.094315, 37.921667], [-80.094968, 37.921016], [-80.095167, 37.919832], [-80.095708, 37.919165], [-80.096239, 37.918401], [-80.096566, 37.918119], [-80.097358, 37.917993], [-80.099334, 37.918376], [-80.100316, 37.918871], [-80.101513, 37.919019], [-80.102669, 37.918998], [-80.102934, 37.918918], [-80.10313, 37.918241], [-80.103779, 37.916285], [-80.10565, 37.915733], [-80.106822, 37.914705], [-80.107149, 37.914246], [-80.107244, 37.913521], [-80.107156, 37.912747], [-80.107208, 37.912449], [-80.107483, 37.912297], [-80.107909, 37.912233], [-80.108753, 37.912018], [-80.109017, 37.911962], [-80.109201, 37.911721], [-80.109659, 37.911271], [-80.110594, 37.910967], [-80.111469, 37.910534], [-80.112009, 37.910116], [-80.112397, 37.909561], [-80.112805, 37.909111], [-80.113053, 37.908185], [-80.11336, 37.907557], [-80.113717, 37.907259], [-80.114195, 37.907099], [-80.115067, 37.907021], [-80.116165, 37.906652], [-80.116887, 37.906299], [-80.117033, 37.905477], [-80.117242, 37.904285], [-80.117496, 37.904189], [-80.117496, 37.904117], [-80.117618, 37.904077], [-80.11774, 37.904061], [-80.118187, 37.903973], [-80.118491, 37.903926], [-80.118786, 37.903805], [-80.11897, 37.903621], [-80.119146, 37.902783], [-80.119109, 37.902025], [-80.118868, 37.901557], [-80.118474, 37.901234], [-80.117624, 37.900798], [-80.117483, 37.900588], [-80.117335, 37.899612], [-80.117483, 37.898508], [-80.11775, 37.897727], [-80.118066, 37.897502], [-80.118483, 37.897213], [-80.11891, 37.897053], [-80.119579, 37.897087], [-80.119894, 37.896983], [-80.120616, 37.896742], [-80.121254, 37.896969], [-80.121618, 37.897131], [-80.122499, 37.897464], [-80.123024, 37.898053], [-80.123623, 37.89795], [-80.123948, 37.897733], [-80.124789, 37.896934], [-80.125577, 37.89647], [-80.125924, 37.896125], [-80.126436, 37.895361], [-80.127049, 37.894815], [-80.127964, 37.894448], [-80.129558, 37.894141], [-80.129771, 37.894166], [-80.130219, 37.893837], [-80.130495, 37.893499], [-80.130467, 37.893201], [-80.130094, 37.892958], [-80.129984, 37.89278], [-80.130239, 37.892507], [-80.130689, 37.892017], [-80.131043, 37.890704], [-80.131484, 37.890013], [-80.131934, 37.889507], [-80.132584, 37.889268], [-80.133349, 37.88865], [-80.133758, 37.888289], [-80.134579, 37.888292], [-80.135056, 37.888246], [-80.135271, 37.887948], [-80.135427, 37.887393], [-80.136608, 37.88672], [-80.137329, 37.886514], [-80.13799, 37.886291], [-80.138245, 37.886098], [-80.139349, 37.884861], [-80.140214, 37.884268], [-80.140612, 37.883939], [-80.141269, 37.882837], [-80.141341, 37.882717], [-80.141525, 37.882443], [-80.141728, 37.882428], [-80.14195, 37.882623], [-80.142775, 37.883384], [-80.142722, 37.883682], [-80.142952, 37.884126], [-80.143246, 37.884224], [-80.143853, 37.884307], [-80.144167, 37.88434], [-80.144471, 37.884342], [-80.144531, 37.884328], [-80.144583, 37.884315], [-80.145263, 37.884159], [-80.145608, 37.884136], [-80.145981, 37.884366], [-80.146133, 37.88446], [-80.146711, 37.885101], [-80.147172, 37.885628], [-80.147304, 37.885911], [-80.147319, 37.885943], [-80.14742, 37.885933], [-80.147561, 37.886006], [-80.147652, 37.886007], [-80.148458, 37.886744], [-80.14874, 37.886962], [-80.148954, 37.886899], [-80.149089, 37.886456], [-80.14905, 37.886182], [-80.149154, 37.8859], [-80.149379, 37.885602], [-80.149694, 37.885426], [-80.149909, 37.885145], [-80.149921, 37.884879], [-80.149883, 37.884516], [-80.149851, 37.883371], [-80.150399, 37.883172], [-80.151578, 37.882838], [-80.152665, 37.882487], [-80.153095, 37.882318], [-80.153234, 37.882264], [-80.153835, 37.881831], [-80.155324, 37.880555], [-80.156497, 37.879431], [-80.157528, 37.878435], [-80.158294, 37.877713], [-80.158809, 37.877373], [-80.162205, 37.875129], [-80.162655, 37.873621], [-80.163784, 37.872986], [-80.165376, 37.870874], [-80.165575, 37.870438], [-80.16557, 37.869907], [-80.165364, 37.869465], [-80.165076, 37.869032], [-80.165538, 37.868522], [-80.167449, 37.868107], [-80.167995, 37.867967], [-80.168579, 37.867625], [-80.16896, 37.867123], [-80.169527, 37.865992], [-80.169775, 37.865403], [-80.170347, 37.864698], [-80.170879, 37.864147], [-80.171156, 37.863397], [-80.171233, 37.863018], [-80.171614, 37.862556], [-80.172036, 37.862151], [-80.172045, 37.860863], [-80.172079, 37.860073], [-80.171934, 37.859696], [-80.1718, 37.859447], [-80.171656, 37.85919], [-80.171644, 37.858973], [-80.172046, 37.8586], [-80.172557, 37.858033], [-80.173019, 37.857523], [-80.173448, 37.856852], [-80.174023, 37.85659], [-80.175184, 37.856099], [-80.175717, 37.85575], [-80.176199, 37.855272], [-80.176538, 37.854609], [-80.176715, 37.854036], [-80.176751, 37.853496], [-80.176727, 37.853046], [-80.176744, 37.852764], [-80.177919, 37.852772], [-80.178516, 37.852648], [-80.179031, 37.85254], [-80.179577, 37.852472], [-80.180196, 37.852588], [-80.180674, 37.85277], [-80.180999, 37.852897], [-80.181414, 37.85291], [-80.181818, 37.852731], [-80.182128, 37.852254], [-80.182758, 37.851372], [-80.183065, 37.850653], [-80.183067, 37.850577], [-80.183114, 37.849276], [-80.18305, 37.848898], [-80.183047, 37.848632], [-80.18328, 37.848319], [-80.183368, 37.848203], [-80.183597, 37.847847], [-80.183641, 37.847511], [-80.183654, 37.84742], [-80.183558, 37.846817], [-80.183091, 37.84562], [-80.182764, 37.845188], [-80.182202, 37.844644], [-80.181629, 37.844035], [-80.181213, 37.842758], [-80.180747, 37.841601], [-80.180388, 37.841121], [-80.179786, 37.840529], [-80.179468, 37.840088], [-80.179394, 37.839758], [-80.180038, 37.839239], [-80.180832, 37.838691], [-80.181004, 37.838572], [-80.181771, 37.83835], [-80.183351, 37.838315], [-80.185242, 37.838117], [-80.186383, 37.837748], [-80.187085, 37.837034], [-80.187788, 37.836378], [-80.188575, 37.836074], [-80.189441, 37.835481], [-80.189912, 37.834962], [-80.190134, 37.834848], [-80.191219, 37.834897], [-80.191633, 37.834904], [-80.192262, 37.834915], [-80.192707, 37.834871], [-80.192969, 37.834757], [-80.193128, 37.834434], [-80.193215, 37.833966], [-80.19363, 37.83286], [-80.194653, 37.831766], [-80.195546, 37.830851], [-80.197524, 37.829098], [-80.199636, 37.827514], [-80.201173, 37.826151], [-80.201467, 37.825817], [-80.202856, 37.824247], [-80.203593, 37.822913], [-80.204826, 37.820562], [-80.205844, 37.818928], [-80.206121, 37.81821], [-80.20607, 37.8178], [-80.206011, 37.817317], [-80.206107, 37.81676], [-80.206485, 37.815977], [-80.207692, 37.815123], [-80.209411, 37.813823], [-80.210968, 37.812605], [-80.212439, 37.811878], [-80.213666, 37.81119], [-80.215284, 37.81036], [-80.216232, 37.809827], [-80.216868, 37.809544], [-80.216942, 37.809512], [-80.217926, 37.809819], [-80.218271, 37.809833], [-80.218614, 37.80979], [-80.219143, 37.809014], [-80.221045, 37.806609], [-80.222794, 37.804254], [-80.224315, 37.802464], [-80.225084, 37.801347], [-80.225365, 37.801104], [-80.225372, 37.800798], [-80.225288, 37.800436], [-80.225286, 37.800275], [-80.226071, 37.799762], [-80.227095, 37.798893], [-80.227693, 37.797899], [-80.22798, 37.797204], [-80.228027, 37.797126], [-80.228498, 37.796347], [-80.229231, 37.794667], [-80.229503, 37.793514], [-80.229638, 37.792852], [-80.229492, 37.792338], [-80.229054, 37.792084], [-80.227968, 37.791721], [-80.227283, 37.790993], [-80.226985, 37.790495], [-80.226333, 37.790073], [-80.226058, 37.789842], [-80.225932, 37.789375], [-80.226099, 37.788811], [-80.226186, 37.788432], [-80.225848, 37.78812], [-80.225086, 37.787747], [-80.224451, 37.787502], [-80.224343, 37.787461], [-80.224271, 37.787439], [-80.223421, 37.787186], [-80.223043, 37.78673], [-80.222917, 37.78628], [-80.223197, 37.785924], [-80.22361, 37.785792], [-80.224155, 37.785635], [-80.224475, 37.785222], [-80.22454, 37.784602], [-80.224338, 37.783589], [-80.22407, 37.782995], [-80.223488, 37.782451], [-80.222684, 37.781966], [-80.222085, 37.781776], [-80.221479, 37.781918], [-80.221017, 37.782235], [-80.220586, 37.782673], [-80.220095, 37.783167], [-80.21958, 37.783316], [-80.219085, 37.783375], [-80.218619, 37.783298], [-80.217979, 37.783021], [-80.217255, 37.782398], [-80.216626, 37.782209], [-80.216271, 37.782139], [-80.215895, 37.781996], [-80.21573, 37.781603], [-80.215938, 37.781199], [-80.216102, 37.780344], [-80.216289, 37.779795], [-80.216367, 37.779408], [-80.216172, 37.779168], [-80.215645, 37.77901], [-80.215521, 37.778786], [-80.215639, 37.778423], [-80.215638, 37.778262], [-80.215634, 37.777891], [-80.215661, 37.777488], [-80.215941, 37.777197], [-80.216303, 37.776872], [-80.216501, 37.776452], [-80.216608, 37.775968], [-80.216819, 37.77587], [-80.216902, 37.776063], [-80.217179, 37.776512], [-80.217637, 37.776782], [-80.21847, 37.777067], [-80.219483, 37.777205], [-80.220387, 37.777625], [-80.221181, 37.778127], [-80.22183, 37.7783], [-80.222365, 37.778215], [-80.222567, 37.777916], [-80.222678, 37.777766], [-80.223034, 37.777285], [-80.223629, 37.777063], [-80.224185, 37.777035], [-80.224195, 37.777033], [-80.22466, 37.776943], [-80.225166, 37.776924], [-80.22545, 37.777083], [-80.225799, 37.777612], [-80.226301, 37.778212], [-80.22671, 37.778701], [-80.227056, 37.778867], [-80.227501, 37.778896], [-80.227648, 37.778877], [-80.228148, 37.778827], [-80.229048, 37.77862], [-80.229795, 37.778518], [-80.230461, 37.778312], [-80.230712, 37.778119], [-80.230863, 37.778003], [-80.230862, 37.777976], [-80.230852, 37.777621], [-80.230848, 37.777464], [-80.230865, 37.777251], [-80.230872, 37.777156], [-80.230884, 37.777005], [-80.231462, 37.776707], [-80.231518, 37.776678], [-80.231533, 37.776643], [-80.231756, 37.776137], [-80.231798, 37.776053], [-80.231858, 37.775937], [-80.232014, 37.775628], [-80.232547, 37.775353], [-80.232678, 37.775285], [-80.233304, 37.775095], [-80.233715, 37.774746], [-80.234016, 37.774487], [-80.234461, 37.774467], [-80.235069, 37.774576], [-80.235452, 37.774444], [-80.235558, 37.773856], [-80.235895, 37.773137], [-80.236328, 37.772981], [-80.238562, 37.772715], [-80.239514, 37.772829], [-80.240271, 37.772711], [-80.240866, 37.772449], [-80.241244, 37.771802], [-80.241245, 37.771714], [-80.241248, 37.771441], [-80.241251, 37.771174], [-80.241255, 37.77086], [-80.241393, 37.76945], [-80.241394, 37.768928], [-80.241394, 37.768548], [-80.24144, 37.768065], [-80.241994, 37.767755], [-80.242831, 37.767499], [-80.243771, 37.767444], [-80.244264, 37.767191], [-80.244566, 37.767012], [-80.244921, 37.767098], [-80.245318, 37.767337], [-80.245887, 37.767614], [-80.246526, 37.767851], [-80.246872, 37.768042], [-80.246905, 37.768316], [-80.24709, 37.768572], [-80.247495, 37.768618], [-80.24798, 37.768518], [-80.248392, 37.768257], [-80.248499, 37.767862], [-80.248827, 37.767263], [-80.249399, 37.766776], [-80.249793, 37.766579], [-80.250404, 37.765826], [-80.251331, 37.763973], [-80.251659, 37.763254], [-80.251322, 37.762965], [-80.250895, 37.76279], [-80.250476, 37.762446], [-80.250311, 37.762156], [-80.250473, 37.761064], [-80.250531, 37.7609], [-80.250668, 37.76053], [-80.250831, 37.760088], [-80.250916, 37.759402], [-80.250739, 37.758871], [-80.250177, 37.758374], [-80.249793, 37.758053], [-80.249606, 37.757957], [-80.249442, 37.757781], [-80.249349, 37.757508], [-80.249438, 37.757282], [-80.249638, 37.757144], [-80.249793, 37.757118], [-80.250456, 37.756687], [-80.250578, 37.756376], [-80.250655, 37.756185], [-80.250793, 37.755757], [-80.250882, 37.755523], [-80.251177, 37.755594], [-80.251625, 37.755873], [-80.252111, 37.755863], [-80.252761, 37.755996], [-80.2533, 37.75613], [-80.253903, 37.75618], [-80.253939, 37.756183], [-80.2549, 37.755984], [-80.255763, 37.756221], [-80.256413, 37.756379], [-80.257082, 37.756294], [-80.257414, 37.756091], [-80.2576, 37.755291], [-80.257605, 37.754743], [-80.257741, 37.75404], [-80.258019, 37.753426], [-80.258451, 37.75302], [-80.259055, 37.752524], [-80.259093, 37.752234], [-80.258936, 37.751622], [-80.258941, 37.751089], [-80.259454, 37.750618], [-80.260099, 37.750129], [-80.260293, 37.749898], [-80.260251, 37.74977], [-80.259927, 37.749733], [-80.259505, 37.749477], [-80.259301, 37.748923], [-80.259065, 37.748283], [-80.259304, 37.747402], [-80.259034, 37.746244], [-80.259318, 37.744968], [-80.259696, 37.744545], [-80.260418, 37.743491], [-80.261311, 37.742298], [-80.262151, 37.741653], [-80.261834, 37.740818], [-80.261701, 37.740046], [-80.262062, 37.7398], [-80.262259, 37.739468], [-80.262374, 37.739032], [-80.262712, 37.73865], [-80.262768, 37.738343], [-80.261979, 37.737682], [-80.261303, 37.737173], [-80.261185, 37.73669], [-80.261315, 37.735343], [-80.260997, 37.734411], [-80.260316, 37.733524], [-80.259671, 37.733038], [-80.257584, 37.732156], [-80.255024, 37.731423], [-80.253538, 37.730648], [-80.252027, 37.729832], [-80.251901, 37.729552], [-80.252027, 37.728551], [-80.25223, 37.727268], [-80.25308, 37.725906], [-80.254148, 37.724993], [-80.254964, 37.724139], [-80.256764, 37.722163], [-80.258146, 37.720619], [-80.259079, 37.720094], [-80.26036, 37.719888], [-80.261491, 37.719773], [-80.262637, 37.719294], [-80.263939, 37.719144], [-80.264409, 37.718793], [-80.264987, 37.718256], [-80.265438, 37.717325], [-80.266915, 37.716005], [-80.267173, 37.715696], [-80.267101, 37.714923], [-80.267454, 37.714235], [-80.267882, 37.713779], [-80.268152, 37.71289], [-80.268992, 37.712399], [-80.269612, 37.711917], [-80.270439, 37.71178], [-80.271993, 37.711539], [-80.272343, 37.711286], [-80.272958, 37.710547], [-80.274228, 37.708923], [-80.27501, 37.707851], [-80.276097, 37.706222], [-80.27658, 37.705556], [-80.28057, 37.702637], [-80.281146, 37.702032], [-80.281342, 37.701826], [-80.281472, 37.70169], [-80.281948, 37.701191], [-80.282332, 37.700788], [-80.283285, 37.699788], [-80.285304, 37.697998], [-80.285791, 37.697583], [-80.28583, 37.697558], [-80.286546, 37.69698], [-80.28711, 37.696411], [-80.287471, 37.696172], [-80.287747, 37.696071], [-80.288004, 37.695972], [-80.29411, 37.693859], [-80.29479, 37.693701], [-80.295353, 37.693415], [-80.295919, 37.692845], [-80.296146, 37.692371], [-80.296141, 37.69179], [-80.296127, 37.691778], [-80.296103, 37.691757], [-80.296092, 37.691748], [-80.296081, 37.691738], [-80.29608, 37.691737], [-80.293873, 37.687184], [-80.293732, 37.686955], [-80.293267, 37.6862], [-80.293124, 37.685859], [-80.293121, 37.685853], [-80.293058, 37.685703], [-80.292335, 37.683979], [-80.292328, 37.683962], [-80.292313, 37.683928], [-80.292257, 37.683895], [-80.292213, 37.683852], [-80.292184, 37.683802], [-80.292173, 37.683756], [-80.292162, 37.683708], [-80.292159, 37.683612], [-80.29217, 37.683542], [-80.292156, 37.683511], [-80.290017, 37.678833], [-80.289904, 37.678602], [-80.286927, 37.672499], [-80.282955, 37.664354], [-80.279375, 37.657084], [-80.278679, 37.656202], [-80.278115, 37.655728], [-80.277401, 37.655128], [-80.277373, 37.655105], [-80.273892, 37.652084], [-80.273635, 37.651861], [-80.273354, 37.651617], [-80.273342, 37.651606], [-80.273292, 37.651563], [-80.272373, 37.650765], [-80.270326, 37.648989], [-80.270332, 37.648914], [-80.269872, 37.648466], [-80.269123, 37.647737], [-80.269089, 37.647704], [-80.269085, 37.6477], [-80.26908, 37.647696], [-80.269073, 37.647689], [-80.269036, 37.647653], [-80.268982, 37.6476], [-80.26886, 37.647481], [-80.268801, 37.647423], [-80.267999, 37.646642], [-80.267705, 37.646356], [-80.267507, 37.646163], [-80.267231, 37.646018], [-80.267206, 37.646012], [-80.266219, 37.645803], [-80.266209, 37.645801], [-80.2662, 37.645799], [-80.264835, 37.645509], [-80.264792, 37.645522], [-80.264544, 37.645454], [-80.26355, 37.645182], [-80.263524, 37.645175], [-80.263469, 37.64516], [-80.263388, 37.645138], [-80.263347, 37.645127], [-80.263333, 37.645104], [-80.254953, 37.64249], [-80.254544, 37.642363], [-80.254507, 37.642379], [-80.246322, 37.639963], [-80.240794, 37.638331], [-80.239973, 37.637961], [-80.239332, 37.637696], [-80.239323, 37.637692], [-80.239306, 37.637682], [-80.239298, 37.637677], [-80.239272, 37.637662], [-80.238862, 37.637423], [-80.238792, 37.637382], [-80.237192, 37.636446], [-80.237031, 37.636355], [-80.234183, 37.634958], [-80.233435, 37.634552], [-80.231332, 37.63341], [-80.22793, 37.631556], [-80.225263, 37.63013], [-80.22511, 37.630048], [-80.222944, 37.628847], [-80.221728, 37.628181], [-80.221167, 37.627873], [-80.221079, 37.627825], [-80.220987, 37.627774], [-80.221441, 37.627357], [-80.222037, 37.626697], [-80.222498, 37.625837], [-80.222578, 37.625132], [-80.223389, 37.623192], [-80.224284, 37.621975], [-80.22602, 37.620066], [-80.22881, 37.617512], [-80.230623, 37.61611], [-80.231941, 37.614809], [-80.233133, 37.613897], [-80.234967, 37.612543], [-80.236019, 37.611752], [-80.236504, 37.610966], [-80.236947, 37.610035], [-80.238136, 37.608977], [-80.238956, 37.608245], [-80.239348, 37.608064], [-80.239816, 37.607456], [-80.240275, 37.606968], [-80.240928, 37.606696], [-80.241291, 37.60654], [-80.242248, 37.60629], [-80.243423, 37.605644], [-80.243952, 37.605075], [-80.244394, 37.604845], [-80.245007, 37.604598], [-80.245931, 37.604115], [-80.246713, 37.603584], [-80.24808, 37.60296], [-80.248742, 37.602519], [-80.249283, 37.602103], [-80.249783, 37.602124], [-80.250561, 37.601524], [-80.251456, 37.600972], [-80.252802, 37.599975], [-80.253758, 37.599454], [-80.255014, 37.598417], [-80.25633, 37.597428], [-80.257768, 37.596503], [-80.258561, 37.595871], [-80.258922, 37.595506], [-80.260382, 37.594871], [-80.262113, 37.594049], [-80.263563, 37.593381], [-80.265187, 37.593083], [-80.266255, 37.592771], [-80.26691, 37.592462], [-80.268449, 37.591673], [-80.270345, 37.591156], [-80.272377, 37.590002], [-80.274624, 37.589233], [-80.275195, 37.588682], [-80.276162, 37.58825], [-80.277037, 37.587827], [-80.27778, 37.587203], [-80.278684, 37.586474], [-80.279195, 37.58598], [-80.279496, 37.585696], [-80.279737, 37.585542], [-80.280039, 37.585444], [-80.280625, 37.585408], [-80.281767, 37.585499], [-80.282443, 37.585488], [-80.282978, 37.585332], [-80.283401, 37.585185], [-80.283753, 37.584997], [-80.284114, 37.584641], [-80.284676, 37.584284], [-80.285975, 37.583721], [-80.286769, 37.58325], [-80.287855, 37.582608], [-80.288769, 37.581967], [-80.289654, 37.581447], [-80.290761, 37.580893], [-80.292058, 37.580226], [-80.293115, 37.579785], [-80.293869, 37.579298], [-80.294885, 37.578777], [-80.295651, 37.57858], [-80.296609, 37.578365], [-80.297565, 37.577925], [-80.29971, 37.577189], [-80.300676, 37.576749], [-80.301392, 37.576632], [-80.302558, 37.575925], [-80.304117, 37.575128], [-80.30617, 37.574223], [-80.306995, 37.573791], [-80.308845, 37.572855], [-80.310232, 37.572026], [-80.310846, 37.571765], [-80.311995, 37.571509], [-80.313476, 37.571074], [-80.314604, 37.570681], [-80.3155, 37.570322], [-80.316784, 37.56926], [-80.31801, 37.568584], [-80.319188, 37.568086], [-80.321694, 37.567122], [-80.323465, 37.566291], [-80.328507, 37.564322], [-80.328246, 37.564029], [-80.32728, 37.562945], [-80.326313, 37.56186], [-80.323833, 37.559077], [-80.321352, 37.556293], [-80.320041, 37.554841], [-80.316727, 37.551102], [-80.314528, 37.548644], [-80.313367, 37.547334], [-80.312373, 37.546232], [-80.312289, 37.546229], [-80.312204, 37.546227], [-80.312415, 37.54611], [-80.312501, 37.546038], [-80.312506, 37.546034], [-80.312724, 37.545852], [-80.312753, 37.545828], [-80.312767, 37.545761], [-80.312813, 37.545547], [-80.312836, 37.54553], [-80.312978, 37.545423], [-80.312981, 37.545413], [-80.313001, 37.545318], [-80.313392, 37.545007], [-80.314029, 37.544589], [-80.314174, 37.544568], [-80.314186, 37.54454], [-80.314263, 37.544179], [-80.314473, 37.544062], [-80.31533, 37.543956], [-80.31551, 37.54398], [-80.316975, 37.543627], [-80.317569, 37.543715], [-80.317667, 37.543862], [-80.318155, 37.543962], [-80.318598, 37.543839], [-80.319072, 37.543574], [-80.319275, 37.543273], [-80.319325, 37.543041], [-80.319342, 37.542958], [-80.319485, 37.542724], [-80.319913, 37.542454], [-80.320466, 37.542419], [-80.320477, 37.542418], [-80.320608, 37.542365], [-80.320688, 37.542325], [-80.320766, 37.542301], [-80.320839, 37.542271], [-80.320879, 37.542254], [-80.320889, 37.542247], [-80.320911, 37.542223], [-80.320919, 37.542215], [-80.320922, 37.542211], [-80.321002, 37.542125], [-80.3211, 37.541667], [-80.321228, 37.541503], [-80.321491, 37.541356], [-80.324004, 37.541285], [-80.324691, 37.541121], [-80.325059, 37.540916], [-80.325383, 37.540921], [-80.326164, 37.540734], [-80.326568, 37.54057], [-80.326765, 37.540522], [-80.327494, 37.540147], [-80.32777, 37.539833], [-80.327799, 37.539794], [-80.327834, 37.539759], [-80.327922, 37.539659], [-80.328109, 37.539213], [-80.328395, 37.538961], [-80.32847, 37.538609], [-80.328372, 37.538198], [-80.32838, 37.537643], [-80.32868, 37.537406], [-80.329987, 37.536708], [-80.330371, 37.536274], [-80.330314, 37.53625], [-80.326562, 37.534668], [-80.325369, 37.534167], [-80.323002, 37.533172], [-80.319429, 37.53166], [-80.312981, 37.52893], [-80.30935, 37.527387], [-80.29167, 37.536523], [-80.291628, 37.536503], [-80.282394, 37.533526], [-80.282571, 37.533257], [-80.282895, 37.53279], [-80.28378, 37.531506], [-80.284663, 37.530223], [-80.285809, 37.528561], [-80.289297, 37.523501], [-80.290515, 37.521734], [-80.291734, 37.519967], [-80.292829, 37.518378], [-80.293925, 37.516789], [-80.294727, 37.515625], [-80.29553, 37.51446], [-80.299792, 37.508278], [-80.309836, 37.503834], [-80.309531, 37.503333], [-80.309336, 37.50289], [-80.313338, 37.501571], [-80.314809, 37.50095], [-80.315649, 37.500599], [-80.316763, 37.500133], [-80.32063, 37.498887], [-80.322252, 37.498192], [-80.324313, 37.497016], [-80.327103, 37.495384], [-80.329262, 37.494643], [-80.332037, 37.493752], [-80.334243, 37.493334], [-80.336945, 37.492959], [-80.338866, 37.492878], [-80.340455, 37.492699], [-80.341523, 37.492543], [-80.342438, 37.49241], [-80.343783, 37.492158], [-80.346366, 37.491435], [-80.348675, 37.490783], [-80.351826, 37.489736], [-80.354827, 37.488563], [-80.357153, 37.487915], [-80.360339, 37.487004], [-80.362494, 37.486506], [-80.364531, 37.485535], [-80.365788, 37.484938], [-80.36684, 37.484886], [-80.363174, 37.480008], [-80.365327, 37.479003], [-80.367412, 37.477878], [-80.369454, 37.476604], [-80.370572, 37.475482], [-80.371954, 37.474076], [-80.374756, 37.472931], [-80.378285, 37.471396], [-80.382511, 37.470383], [-80.39062, 37.466615], [-80.391698, 37.466121], [-80.391719, 37.466111], [-80.395099, 37.464542], [-80.395146, 37.46452], [-80.399462, 37.462512], [-80.399849, 37.462332], [-80.402748, 37.460368], [-80.402761, 37.460358], [-80.402783, 37.460341], [-80.40516, 37.459253], [-80.406041, 37.45885], [-80.406358, 37.458705], [-80.406521, 37.458631], [-80.406667, 37.458564], [-80.407337, 37.458257], [-80.40761, 37.458132], [-80.413151, 37.455599], [-80.414262, 37.455091], [-80.418297, 37.453247], [-80.418751, 37.453039], [-80.418855, 37.452992], [-80.418883, 37.452979], [-80.419525, 37.452685], [-80.421147, 37.451943], [-80.421749, 37.451668], [-80.424063, 37.45061], [-80.424152, 37.450569], [-80.424292, 37.450505], [-80.425632, 37.449892], [-80.430041, 37.44691], [-80.443012, 37.438138], [-80.451358, 37.43405], [-80.457307, 37.432277], [-80.464819, 37.426152], [-80.472828, 37.423778], [-80.475604, 37.422956], [-80.475799, 37.423078], [-80.491611, 37.432943], [-80.491617, 37.432947], [-80.494863, 37.435079], [-80.497282, 37.444787], [-80.497154, 37.445174], [-80.497136, 37.445228], [-80.497128, 37.445254], [-80.497125, 37.445263], [-80.496808, 37.446222], [-80.496803, 37.446236], [-80.494587, 37.452918], [-80.492984, 37.457756], [-80.499787, 37.466924], [-80.501711, 37.46931], [-80.503966, 37.472105], [-80.506068, 37.474815], [-80.511394, 37.481679], [-80.513412, 37.479453], [-80.51416, 37.478897], [-80.515142, 37.478573], [-80.516369, 37.478481], [-80.517602, 37.478777], [-80.518645, 37.479311], [-80.51966, 37.479205], [-80.520756, 37.478254], [-80.52161, 37.477547], [-80.522341, 37.477192], [-80.523484, 37.476912], [-80.523791, 37.476905], [-80.525406, 37.476869], [-80.528352, 37.477375], [-80.530761, 37.477311], [-80.532375, 37.477131], [-80.533452, 37.476413], [-80.533825, 37.475622], [-80.534413, 37.474739], [-80.535112, 37.474416], [-80.536892, 37.474015], [-80.537942, 37.474159], [-80.539296, 37.474458], [-80.539789, 37.474534], [-80.544159, 37.47475], [-80.544839, 37.474702], [-80.547454, 37.473688], [-80.548808, 37.473704], [-80.550942, 37.473714], [-80.552039, 37.47357], [-80.553165, 37.472885], [-80.554464, 37.47218], [-80.555141, 37.47163], [-80.557972, 37.471066], [-80.558985, 37.470718], [-80.561445, 37.469782], [-80.563795, 37.468237], [-80.564032, 37.468097], [-80.565176, 37.467281], [-80.565194, 37.467268], [-80.565717, 37.466943], [-80.5663, 37.466582], [-80.568186, 37.465584], [-80.570566, 37.464613], [-80.571286, 37.464319], [-80.571368, 37.464254], [-80.5725, 37.463688], [-80.572639, 37.463475], [-80.572735, 37.46333], [-80.573361, 37.463062], [-80.576258, 37.462055], [-80.576511, 37.461762], [-80.577426, 37.461031], [-80.578028, 37.460593], [-80.579437, 37.459923], [-80.580776, 37.459485], [-80.581466, 37.459145], [-80.581864, 37.458726], [-80.582349, 37.457889], [-80.582571, 37.457046], [-80.582887, 37.456665], [-80.583893, 37.456527], [-80.584689, 37.456586], [-80.585337, 37.456843], [-80.585859, 37.456661], [-80.586639, 37.456057], [-80.587635, 37.455313], [-80.58966, 37.453799], [-80.590243, 37.453303], [-80.590564, 37.452786], [-80.591096, 37.452046], [-80.59138, 37.451447], [-80.592417, 37.450695], [-80.594151, 37.449668], [-80.594773, 37.449513], [-80.595381, 37.449454], [-80.596189, 37.448915], [-80.596885, 37.448374], [-80.598134, 37.447627], [-80.598968, 37.447194], [-80.600207, 37.44618], [-80.601469, 37.44595], [-80.602673, 37.445332], [-80.604334, 37.444934], [-80.606591, 37.443984], [-80.608257, 37.443141], [-80.609562, 37.442258], [-80.610112, 37.44185], [-80.611903, 37.441205], [-80.613859, 37.440159], [-80.615267, 37.439779], [-80.616805, 37.43945], [-80.620904, 37.436942], [-80.621378, 37.436678], [-80.62212, 37.435976], [-80.622293, 37.435067], [-80.622372, 37.434228], [-80.622667, 37.433314], [-80.624792, 37.43297], [-80.625292, 37.432882], [-80.625952, 37.43316], [-80.626368, 37.433335], [-80.627276, 37.433056], [-80.628623, 37.432057], [-80.629049, 37.432167], [-80.630133, 37.432314], [-80.630701, 37.432488], [-80.631858, 37.43224], [-80.632368, 37.432132], [-80.633194, 37.431749], [-80.634393, 37.431234], [-80.635561, 37.430534], [-80.635904, 37.430427], [-80.636488, 37.43017], [-80.636851, 37.43001], [-80.637382, 37.429379], [-80.637557, 37.428563], [-80.637359, 37.427944], [-80.63695, 37.427478], [-80.641901, 37.424515], [-80.645896, 37.422154], [-80.647935, 37.421691], [-80.64921, 37.421579], [-80.649675, 37.421503], [-80.650191, 37.421508], [-80.652429, 37.420641], [-80.653143, 37.420169], [-80.653592, 37.419521], [-80.65669, 37.417592], [-80.658385, 37.417058], [-80.65929, 37.416521], [-80.659613, 37.416382], [-80.6605, 37.416103], [-80.661193, 37.415575], [-80.662173, 37.415359], [-80.664115, 37.414227], [-80.664974, 37.414222], [-80.66578, 37.413846], [-80.666484, 37.413366], [-80.67, 37.41187], [-80.67158, 37.410965], [-80.672054, 37.410866], [-80.672971, 37.410425], [-80.674252, 37.41003], [-80.674925, 37.409543], [-80.675306, 37.409097], [-80.678097, 37.407943], [-80.679252, 37.407161], [-80.684579, 37.404637], [-80.68511, 37.404102], [-80.685726, 37.403977], [-80.686312, 37.403941], [-80.687267, 37.403379], [-80.687833, 37.403287], [-80.68982, 37.402711], [-80.690986, 37.402018], [-80.691712, 37.401756], [-80.693348, 37.400488], [-80.69374, 37.400155], [-80.694182, 37.399918], [-80.696014, 37.399907], [-80.697477, 37.399608], [-80.69837, 37.398884], [-80.699438, 37.398402], [-80.700711, 37.397282], [-80.70099, 37.39682], [-80.70112, 37.396715], [-80.701251, 37.396609], [-80.702582, 37.396246], [-80.703115, 37.395944], [-80.705206, 37.394625], [-80.706013, 37.394402], [-80.70716, 37.393855], [-80.708402, 37.393645], [-80.709116, 37.393197], [-80.710504, 37.39252], [-80.712512, 37.392047], [-80.713548, 37.391507], [-80.71386, 37.391345], [-80.714175, 37.391416], [-80.715482, 37.390714], [-80.715963, 37.39026], [-80.71603, 37.389957], [-80.716303, 37.388855], [-80.716301, 37.388701], [-80.716523, 37.388652], [-80.717698, 37.388829], [-80.719527, 37.389592], [-80.720687, 37.389326], [-80.723104, 37.388335], [-80.723599, 37.388268], [-80.723928, 37.387766], [-80.724188, 37.386498], [-80.724288, 37.386336], [-80.725705, 37.385529], [-80.726049, 37.385567], [-80.727046, 37.386085], [-80.72732, 37.386228], [-80.727807, 37.386386], [-80.731592, 37.384717], [-80.732124, 37.384278], [-80.733169, 37.383699], [-80.734168, 37.383442], [-80.734804, 37.383341], [-80.736765, 37.383312], [-80.737432, 37.383308], [-80.737634, 37.38321], [-80.738043, 37.382554], [-80.738394, 37.38227], [-80.738655, 37.382179], [-80.740976, 37.38172], [-80.742866, 37.380595], [-80.742976, 37.38049], [-80.743203, 37.37998], [-80.743394, 37.379858], [-80.744202, 37.379732], [-80.744323, 37.379723], [-80.744414, 37.37973], [-80.744465, 37.379754], [-80.745419, 37.380087], [-80.74553, 37.380118], [-80.745907, 37.380076], [-80.74757, 37.379895], [-80.748106, 37.379908], [-80.748523, 37.380066], [-80.748725, 37.380057], [-80.749798, 37.37935], [-80.75033, 37.378986], [-80.750615, 37.378665], [-80.75088, 37.378392], [-80.751033, 37.378216], [-80.751428, 37.377984], [-80.751782, 37.377897], [-80.752206, 37.377834], [-80.753659, 37.377833], [-80.754145, 37.377577], [-80.754458, 37.377506], [-80.754923, 37.377428], [-80.755257, 37.377357], [-80.755591, 37.377189], [-80.756766, 37.376622], [-80.757121, 37.376406], [-80.757559, 37.375901], [-80.757802, 37.375773], [-80.758207, 37.375597], [-80.758955, 37.375544], [-80.759646, 37.375128], [-80.759788, 37.37493], [-80.759889, 37.374889], [-80.760223, 37.374895], [-80.761941, 37.374673], [-80.762597, 37.374474], [-80.762838, 37.374311], [-80.763442, 37.373968], [-80.764027, 37.373729], [-80.765167, 37.373382], [-80.765631, 37.373266], [-80.765935, 37.373264], [-80.766796, 37.37333], [-80.766947, 37.373337], [-80.768481, 37.37285], [-80.770085, 37.37237], [-80.771674, 37.375128], [-80.775481, 37.381648], [-80.775593, 37.381841], [-80.776652, 37.383686], [-80.776659, 37.383768], [-80.776694, 37.383966], [-80.776762, 37.384119], [-80.776911, 37.384492], [-80.77701, 37.384847], [-80.777309, 37.385197], [-80.777953, 37.385532], [-80.778376, 37.385712], [-80.778807, 37.385957], [-80.779311, 37.386203], [-80.779594, 37.3864], [-80.779645, 37.386436], [-80.779752, 37.386512], [-80.780103, 37.386845], [-80.780464, 37.387202], [-80.780663, 37.387493], [-80.780792, 37.387801], [-80.780953, 37.388019], [-80.781101, 37.388311], [-80.781472, 37.388612], [-80.781744, 37.388694], [-80.781955, 37.388739], [-80.782037, 37.388753], [-80.782071, 37.388794], [-80.782117, 37.388842], [-80.782288, 37.389025], [-80.782355, 37.389136], [-80.782476, 37.389328], [-80.7826, 37.389501], [-80.782785, 37.389755], [-80.782852, 37.389841], [-80.782931, 37.389963], [-80.783128, 37.39026], [-80.783144, 37.390292], [-80.783385, 37.390656], [-80.783431, 37.39085], [-80.783463, 37.390987], [-80.783479, 37.391414], [-80.783497, 37.391728], [-80.783465, 37.392014], [-80.783446, 37.392189], [-80.783444, 37.392205], [-80.783443, 37.39222], [-80.783339, 37.39259], [-80.783334, 37.392686], [-80.783331, 37.392735], [-80.783327, 37.392796], [-80.78334, 37.392815], [-80.783346, 37.392824], [-80.78345, 37.392944], [-80.783507, 37.39301], [-80.783518, 37.393039], [-80.783526, 37.39306], [-80.783546, 37.393115], [-80.783655, 37.393406], [-80.783874, 37.39381], [-80.784153, 37.394214], [-80.784191, 37.394594], [-80.784351, 37.394621], [-80.784753, 37.394621], [-80.785128, 37.394659], [-80.78538, 37.394694], [-80.786532, 37.394804], [-80.786985, 37.394819], [-80.78791, 37.39485], [-80.788449, 37.395031], [-80.788487, 37.395044], [-80.789195, 37.395289], [-80.789595, 37.395426], [-80.789761, 37.395483], [-80.789829, 37.395506], [-80.790038, 37.395578], [-80.790112, 37.395604], [-80.790202, 37.395635], [-80.79032, 37.395675], [-80.791296, 37.395675], [-80.792731, 37.395332], [-80.793219, 37.395401], [-80.794055, 37.395287], [-80.794093, 37.395282], [-80.794568, 37.395218], [-80.795429, 37.395195], [-80.795602, 37.395259], [-80.795862, 37.395356], [-80.796944, 37.395573], [-80.797006, 37.395585], [-80.79719, 37.395653], [-80.797259, 37.395678], [-80.797693, 37.395837], [-80.798879, 37.395823], [-80.79892, 37.395746], [-80.799017, 37.395751], [-80.799292, 37.39574], [-80.799451, 37.395751], [-80.799549, 37.395774], [-80.799568, 37.395779], [-80.799685, 37.395817], [-80.80016, 37.395878], [-80.800369, 37.395927], [-80.800511, 37.39596], [-80.800628, 37.396015], [-80.800739, 37.396081], [-80.800821, 37.396141], [-80.800863, 37.39618], [-80.801021, 37.396345], [-80.80109, 37.396433], [-80.801159, 37.396543], [-80.801186, 37.396636], [-80.801193, 37.396696], [-80.801179, 37.396795], [-80.801152, 37.396872], [-80.801145, 37.396955], [-80.801152, 37.397043], [-80.801179, 37.397103], [-80.801214, 37.397147], [-80.801248, 37.39718], [-80.801269, 37.397191], [-80.801292, 37.397229], [-80.801296, 37.397235], [-80.801356, 37.397293], [-80.80138, 37.397316], [-80.801462, 37.397396], [-80.801524, 37.397455], [-80.801586, 37.397526], [-80.80162, 37.397581], [-80.801675, 37.397702], [-80.801723, 37.397807], [-80.801765, 37.397867], [-80.801861, 37.397933], [-80.802013, 37.398026], [-80.80213, 37.398087], [-80.802212, 37.398136], [-80.802502, 37.398268], [-80.802811, 37.398367], [-80.802977, 37.398411], [-80.80317, 37.398438], [-80.803528, 37.398466], [-80.803672, 37.39845], [-80.803845, 37.398417], [-80.803941, 37.398389], [-80.804072, 37.398367], [-80.804182, 37.398334], [-80.80423, 37.398312], [-80.804285, 37.398268], [-80.804368, 37.39818], [-80.80443, 37.398103], [-80.804499, 37.397961], [-80.804588, 37.397829], [-80.804623, 37.397807], [-80.804657, 37.397796], [-80.804726, 37.39779], [-80.80525, 37.397834], [-80.805491, 37.397873], [-80.805635, 37.397917], [-80.805746, 37.397961], [-80.805808, 37.397999], [-80.805932, 37.398092], [-80.806166, 37.398224], [-80.806269, 37.398301], [-80.806352, 37.398411], [-80.806365, 37.398461], [-80.806379, 37.398549], [-80.806263, 37.399164], [-80.806262, 37.39917], [-80.806255, 37.399181], [-80.806241, 37.399362], [-80.806255, 37.399451], [-80.806262, 37.399499], [-80.806358, 37.39984], [-80.8064, 37.400021], [-80.806434, 37.400142], [-80.806482, 37.40034], [-80.806537, 37.400532], [-80.806634, 37.400774], [-80.806703, 37.400884], [-80.80673, 37.400911], [-80.806937, 37.401225], [-80.806992, 37.401357], [-80.807027, 37.401499], [-80.807043, 37.401623], [-80.807047, 37.401653], [-80.80702, 37.401922], [-80.806992, 37.402071], [-80.806978, 37.402247], [-80.806937, 37.402461], [-80.806911, 37.402531], [-80.806854, 37.402681], [-80.806772, 37.403049], [-80.806751, 37.403126], [-80.806641, 37.403324], [-80.806579, 37.403406], [-80.806434, 37.403544], [-80.806393, 37.403593], [-80.806193, 37.403774], [-80.806159, 37.40384], [-80.806145, 37.403967], [-80.806152, 37.404033], [-80.806165, 37.404071], [-80.806227, 37.404153], [-80.806303, 37.40423], [-80.806393, 37.404307], [-80.806462, 37.404346], [-80.806537, 37.404379], [-80.806689, 37.404428], [-80.80684, 37.404467], [-80.806896, 37.404489], [-80.807095, 37.404582], [-80.807267, 37.404692], [-80.807515, 37.404934], [-80.807646, 37.405027], [-80.80766, 37.405055], [-80.807701, 37.405071], [-80.807832, 37.405192], [-80.808135, 37.405544], [-80.808232, 37.405698], [-80.808266, 37.405774], [-80.808301, 37.405901], [-80.808349, 37.406], [-80.808418, 37.406236], [-80.808466, 37.406362], [-80.808528, 37.406461], [-80.80859, 37.406544], [-80.808686, 37.406626], [-80.808803, 37.406692], [-80.809024, 37.406791], [-80.809148, 37.406841], [-80.809368, 37.406906], [-80.809844, 37.407027], [-80.810064, 37.407093], [-80.810133, 37.407121], [-80.810325, 37.407175], [-80.810484, 37.40722], [-80.810774, 37.407286], [-80.811035, 37.407335], [-80.811097, 37.407352], [-80.811159, 37.40739], [-80.811207, 37.407429], [-80.811331, 37.407577], [-80.811414, 37.407632], [-80.811538, 37.407736], [-80.81169, 37.407824], [-80.811772, 37.407846], [-80.811883, 37.407857], [-80.812013, 37.407846], [-80.8121, 37.407825], [-80.817065, 37.411162], [-80.817361, 37.41134], [-80.820202, 37.413275], [-80.820231, 37.413295], [-80.823839, 37.41572], [-80.823936, 37.415785], [-80.82396, 37.415801], [-80.825369, 37.41675], [-80.826115, 37.417252], [-80.828316, 37.418674], [-80.828827, 37.419039], [-80.830854, 37.420514], [-80.831469, 37.42095], [-80.832566, 37.421634], [-80.83262, 37.421667], [-80.832943, 37.421865], [-80.834113, 37.422581], [-80.835654, 37.423532], [-80.835868, 37.423664], [-80.83614, 37.423831], [-80.836411, 37.423999], [-80.836449, 37.424362], [-80.836617, 37.42475], [-80.836927, 37.425178], [-80.837238, 37.425413], [-80.837467, 37.425543], [-80.837681, 37.425665], [-80.837824, 37.425696], [-80.838426, 37.425821], [-80.838926, 37.425866], [-80.83908, 37.42588], [-80.83955, 37.426012], [-80.839747, 37.426068], [-80.840463, 37.426151], [-80.841028, 37.42613], [-80.841675, 37.425978], [-80.842162, 37.425625], [-80.843037, 37.42479], [-80.843383, 37.424365], [-80.84379, 37.423923], [-80.844216, 37.423562], [-80.844328, 37.423523], [-80.844702, 37.423394], [-80.845389, 37.423358], [-80.845682, 37.423342], [-80.846002, 37.423371], [-80.846328, 37.423402], [-80.84685, 37.423694], [-80.847201, 37.424041], [-80.847373, 37.424139], [-80.848447, 37.424779], [-80.848848, 37.425144], [-80.849305, 37.425463], [-80.84937, 37.425508], [-80.849689, 37.425665], [-80.849772, 37.425711], [-80.850445, 37.425983], [-80.850659, 37.426069], [-80.85123, 37.426286], [-80.85146, 37.426368], [-80.851666, 37.426452], [-80.852229, 37.426664], [-80.853166, 37.426909], [-80.853539, 37.426932], [-80.853741, 37.426944], [-80.85423, 37.426878], [-80.854429, 37.42685], [-80.855145, 37.426877], [-80.855385, 37.426878], [-80.855821, 37.426879], [-80.856281, 37.426942], [-80.856707, 37.427012], [-80.85672, 37.427014], [-80.856757, 37.427022], [-80.857015, 37.427077], [-80.857362, 37.427213], [-80.857486, 37.427305], [-80.857718, 37.42748], [-80.858173, 37.427929], [-80.858177, 37.427933], [-80.858404, 37.428248], [-80.858415, 37.428263], [-80.858469, 37.428314], [-80.858561, 37.428433], [-80.858683, 37.428915], [-80.858763, 37.428975], [-80.858842, 37.429035], [-80.858883, 37.429066], [-80.85946, 37.429498], [-80.859521, 37.429464], [-80.85953, 37.429459], [-80.859668, 37.429376], [-80.860033, 37.429107], [-80.860081, 37.42909], [-80.860109, 37.429035], [-80.860363, 37.428799], [-80.860535, 37.428618], [-80.860604, 37.42853], [-80.860708, 37.428425], [-80.860776, 37.428337], [-80.860845, 37.428233], [-80.861065, 37.427821], [-80.861172, 37.427581], [-80.861231, 37.427447], [-80.861437, 37.427073], [-80.86152, 37.426941], [-80.861692, 37.426688], [-80.861898, 37.426419], [-80.862063, 37.426188], [-80.862084, 37.42615], [-80.862105, 37.426133], [-80.862153, 37.426062], [-80.862208, 37.425996], [-80.862483, 37.425589], [-80.862531, 37.425501], [-80.8626, 37.425402], [-80.862814, 37.425127], [-80.862889, 37.425039], [-80.86291, 37.425023], [-80.863027, 37.424897], [-80.863096, 37.424814], [-80.863172, 37.424732], [-80.863275, 37.424633], [-80.863309, 37.424583], [-80.863337, 37.424528], [-80.86344, 37.424391], [-80.863523, 37.424253], [-80.863578, 37.424138], [-80.863647, 37.423957], [-80.863715, 37.423704], [-80.86408, 37.42277], [-80.86419, 37.422522], [-80.864252, 37.422368], [-80.8643, 37.422176], [-80.864389, 37.421907], [-80.864492, 37.421615], [-80.864527, 37.421544], [-80.864547, 37.421456], [-80.864582, 37.421374], [-80.864671, 37.421236], [-80.864891, 37.420961], [-80.864933, 37.420879], [-80.865022, 37.420763], [-80.865036, 37.420709], [-80.86507, 37.420675], [-80.865146, 37.420549], [-80.86518, 37.420461], [-80.865277, 37.42012], [-80.865318, 37.419895], [-80.865421, 37.419186], [-80.865421, 37.419131], [-80.865455, 37.418868], [-80.865441, 37.418813], [-80.865564, 37.417538], [-80.865571, 37.417384], [-80.86555, 37.41717], [-80.865509, 37.416906], [-80.865419, 37.416593], [-80.865308, 37.416241], [-80.865281, 37.41611], [-80.865246, 37.415944], [-80.865184, 37.415779], [-80.865136, 37.41567], [-80.865094, 37.415554], [-80.865046, 37.415378], [-80.865011, 37.415148], [-80.86497, 37.414939], [-80.864873, 37.414582], [-80.864859, 37.41445], [-80.864832, 37.414367], [-80.864797, 37.414236], [-80.864742, 37.414104], [-80.864659, 37.413862], [-80.864604, 37.413769], [-80.864576, 37.413692], [-80.864452, 37.413411], [-80.864328, 37.413186], [-80.864162, 37.412917], [-80.86408, 37.412796], [-80.863962, 37.412703], [-80.86388, 37.412626], [-80.863645, 37.412368], [-80.863631, 37.41234], [-80.863542, 37.412225], [-80.86348, 37.412154], [-80.863335, 37.411934], [-80.863301, 37.411895], [-80.863266, 37.411835], [-80.863045, 37.41156], [-80.863006, 37.411521], [-80.863179, 37.411297], [-80.863298, 37.411143], [-80.863418, 37.41099], [-80.864493, 37.409606], [-80.867249, 37.4059], [-80.868146, 37.404685], [-80.869522, 37.402816], [-80.87226, 37.399131], [-80.872269, 37.399119], [-80.874808, 37.395473], [-80.875355, 37.394601], [-80.87547, 37.394444], [-80.880809, 37.387231], [-80.882608, 37.384807], [-80.882705, 37.384677], [-80.882711, 37.384669], [-80.882777, 37.38458], [-80.882813, 37.384531], [-80.88302, 37.384252], [-80.883029, 37.38424], [-80.88325, 37.38394], [-80.88224, 37.382804], [-80.882204, 37.382764], [-80.881912, 37.382436], [-80.880523, 37.38093], [-80.88048, 37.380883], [-80.880086, 37.380455], [-80.880045, 37.380411], [-80.879919, 37.380274], [-80.879914, 37.380269], [-80.878963, 37.379239], [-80.878072, 37.378276], [-80.878012, 37.378211], [-80.877849, 37.378031], [-80.87775, 37.377927], [-80.877679, 37.377851], [-80.876961, 37.377226], [-80.876273, 37.376628], [-80.876251, 37.376609], [-80.876242, 37.376597], [-80.875247, 37.37519], [-80.874812, 37.374666], [-80.873648, 37.373453], [-80.873287, 37.37308], [-80.87259, 37.372354], [-80.872422, 37.372167], [-80.872368, 37.372107], [-80.872362, 37.372101], [-80.872325, 37.372059], [-80.872272, 37.372001], [-80.87218, 37.371901], [-80.872169, 37.371889], [-80.872164, 37.371884], [-80.872037, 37.371746], [-80.869327, 37.368766], [-80.868488, 37.367843], [-80.868406, 37.367751], [-80.868398, 37.367742], [-80.868379, 37.367721], [-80.868291, 37.367625], [-80.868286, 37.36762], [-80.868274, 37.367607], [-80.86786, 37.367152], [-80.867236, 37.366467], [-80.867212, 37.366441], [-80.866904, 37.3661], [-80.86675, 37.365932], [-80.866696, 37.365873], [-80.866642, 37.365815], [-80.866609, 37.365778], [-80.866602, 37.36577], [-80.866598, 37.365765], [-80.866576, 37.36574], [-80.866006, 37.365114], [-80.865957, 37.36506], [-80.865948, 37.365051], [-80.865929, 37.36503], [-80.865913, 37.365012], [-80.865872, 37.364967], [-80.865688, 37.364765], [-80.86561, 37.364679], [-80.865553, 37.364616], [-80.865422, 37.364472], [-80.865303, 37.364341], [-80.858813, 37.357206], [-80.855682, 37.353762], [-80.849454, 37.346916], [-80.85064, 37.346438], [-80.850916, 37.34633], [-80.851181, 37.346238], [-80.85159, 37.346085], [-80.851948, 37.34593], [-80.853378, 37.345416], [-80.853657, 37.345211], [-80.854056, 37.345057], [-80.854281, 37.344948], [-80.854547, 37.34484], [-80.854843, 37.344749], [-80.855574, 37.344286], [-80.855729, 37.344152], [-80.855924, 37.344075], [-80.856177, 37.344056], [-80.856695, 37.343944], [-80.857021, 37.343862], [-80.857359, 37.343731], [-80.857604, 37.343614], [-80.858062, 37.34351], [-80.859052, 37.342826], [-80.859433, 37.342599], [-80.859782, 37.34242], [-80.86013, 37.342257], [-80.860448, 37.342109], [-80.860806, 37.341938], [-80.862557, 37.341519], [-80.862985, 37.34139], [-80.863955, 37.341029], [-80.865324, 37.34053], [-80.865865, 37.340338], [-80.866051, 37.340213], [-80.866728, 37.339894], [-80.867045, 37.339763], [-80.868382, 37.33894], [-80.868989, 37.33858], [-80.86914, 37.338464], [-80.869516, 37.338178], [-80.869766, 37.337932], [-80.870718, 37.336802], [-80.870916, 37.336588], [-80.87164, 37.336028], [-80.87192, 37.335767], [-80.872916, 37.335212], [-80.873072, 37.335061], [-80.873383, 37.334793], [-80.873642, 37.334563], [-80.874346, 37.333987], [-80.874804, 37.333434], [-80.876537, 37.331943], [-80.880106, 37.32891], [-80.882955, 37.32716], [-80.885293, 37.325702], [-80.885751, 37.324965], [-80.886917, 37.324647], [-80.8906, 37.321454], [-80.891206, 37.321372], [-80.898053, 37.316786], [-80.899163, 37.315685], [-80.900011, 37.315662], [-80.900538, 37.315007], [-80.901569, 37.314865], [-80.905095, 37.312936], [-80.907954, 37.311612], [-80.910392, 37.311243], [-80.911061, 37.310501], [-80.912156, 37.310182], [-80.913565, 37.308762], [-80.914852, 37.308502], [-80.915947, 37.307642], [-80.918028, 37.306891], [-80.919262, 37.30617], [-80.927043, 37.30369], [-80.928134, 37.303573], [-80.931121, 37.302879], [-80.934007, 37.301676], [-80.936967, 37.300361], [-80.938138, 37.300285], [-80.938411, 37.299731], [-80.939349, 37.299677], [-80.939827, 37.298916], [-80.94133, 37.29889], [-80.942403, 37.298119], [-80.943159, 37.298119], [-80.943417, 37.297824], [-80.942987, 37.297634], [-80.942976, 37.297133], [-80.944176, 37.296582], [-80.944328, 37.296638], [-80.945491, 37.29691], [-80.947899, 37.295879], [-80.951021, 37.294977], [-80.956118, 37.29416], [-80.957598, 37.29374], [-80.964882, 37.292905], [-80.966559, 37.292165], [-80.968371, 37.292297], [-80.969961, 37.291894], [-80.971878, 37.292374], [-80.973892, 37.291451], [-80.97406, 37.291512], [-80.974404, 37.291637], [-80.975424, 37.292007], [-80.977011, 37.291814], [-80.977817, 37.292355], [-80.980149, 37.29275], [-80.981325, 37.293472], [-80.981326, 37.294561], [-80.982176, 37.29603], [-80.980902, 37.297348], [-80.980749, 37.298548], [-80.979109, 37.300588], [-80.979659, 37.301384], [-80.979592, 37.302286], [-80.980757, 37.301968], [-80.981866, 37.30089], [-80.98318, 37.301235], [-80.985269, 37.300571], [-80.985768, 37.301407], [-80.987322, 37.301366], [-80.988049, 37.300745], [-80.988772, 37.300938], [-80.993686, 37.299633], [-80.994439, 37.299802], [-80.996016, 37.299552], [-80.997199, 37.298814], [-80.998514, 37.298578], [-80.999086, 37.298148], [-80.99981, 37.297936], [-81.000579, 37.297875], [-81.001778, 37.297553], [-81.002645, 37.297424], [-81.003975, 37.297191], [-81.005375, 37.296926], [-81.006081, 37.2967], [-81.006806, 37.296523], [-81.007673, 37.296435], [-81.00846, 37.29608], [-81.009467, 37.295928], [-81.010213, 37.295783], [-81.01121, 37.295686], [-81.01255, 37.295525], [-81.013225, 37.295437], [-81.013467, 37.295381], [-81.014192, 37.295276], [-81.015381, 37.295228], [-81.016772, 37.294833], [-81.01795, 37.294697], [-81.019159, 37.29452], [-81.020368, 37.294302], [-81.021023, 37.29419], [-81.02194, 37.29415], [-81.02332, 37.293795], [-81.024459, 37.293489], [-81.025255, 37.293336], [-81.026645, 37.292893], [-81.028026, 37.292587], [-81.029195, 37.2922], [-81.030676, 37.291862], [-81.032207, 37.291661], [-81.033607, 37.291258], [-81.034655, 37.290758], [-81.034927, 37.290637], [-81.035522, 37.290508], [-81.036136, 37.290259], [-81.037194, 37.290258], [-81.037839, 37.290379], [-81.038463, 37.290322], [-81.038927, 37.290056], [-81.040417, 37.289847], [-81.041586, 37.289629], [-81.042503, 37.289387], [-81.043107, 37.289404], [-81.044125, 37.289396], [-81.045666, 37.289113], [-81.046724, 37.289057], [-81.048447, 37.289121], [-81.049303, 37.289025], [-81.049938, 37.288799], [-81.050452, 37.288743], [-81.051086, 37.288743], [-81.051912, 37.288573], [-81.052889, 37.288614], [-81.053746, 37.288428], [-81.054662, 37.288218], [-81.055367, 37.288033], [-81.055599, 37.287848], [-81.056224, 37.287823], [-81.057281, 37.287686], [-81.058107, 37.287501], [-81.058641, 37.287372], [-81.059538, 37.287275], [-81.060797, 37.287073], [-81.062247, 37.286904], [-81.063768, 37.286831], [-81.064554, 37.286831], [-81.065128, 37.286654], [-81.066358, 37.286444], [-81.067537, 37.286347], [-81.067939, 37.286202], [-81.068655, 37.286226], [-81.070548, 37.285959], [-81.071999, 37.285693], [-81.073127, 37.285322], [-81.074507, 37.285185], [-81.075292, 37.285032], [-81.075897, 37.284894], [-81.076531, 37.284967], [-81.077841, 37.284991], [-81.079543, 37.284813], [-81.080671, 37.284603], [-81.082373, 37.284562], [-81.084015, 37.284408], [-81.085688, 37.284086], [-81.087743, 37.283787], [-81.090452, 37.28331], [-81.09297, 37.282842], [-81.094823, 37.282647], [-81.096928, 37.281873], [-81.098801, 37.281679], [-81.100101, 37.281404], [-81.102205, 37.281016], [-81.10415, 37.280612], [-81.104986, 37.280273], [-81.10559, 37.280007], [-81.107594, 37.279716], [-81.109326, 37.27911], [-81.110192, 37.278795], [-81.112599, 37.278504], [-81.113203, 37.278262], [-81.114009, 37.278132], [-81.115066, 37.277745], [-81.115831, 37.277406], [-81.116304, 37.277333], [-81.116767, 37.277002], [-81.117936, 37.276752], [-81.119315, 37.27634], [-81.120503, 37.276081], [-81.121994, 37.275669], [-81.123245, 37.275408], [-81.123352, 37.275386], [-81.123443, 37.275368], [-81.123483, 37.27536], [-81.123491, 37.275359], [-81.1235, 37.275357], [-81.123542, 37.275349], [-81.123571, 37.275343], [-81.123641, 37.275329], [-81.12372, 37.275314], [-81.123741, 37.27531], [-81.124229, 37.275216], [-81.124816, 37.27503], [-81.126828, 37.2742], [-81.127744, 37.273963], [-81.128043, 37.273887], [-81.129102, 37.273619], [-81.130148, 37.27322], [-81.131376, 37.273005], [-81.132019, 37.272809], [-81.133609, 37.272424], [-81.134514, 37.272058], [-81.135931, 37.271496], [-81.137147, 37.27087], [-81.138384, 37.270454], [-81.139551, 37.270232], [-81.140706, 37.269695], [-81.141432, 37.269588], [-81.142407, 37.269172], [-81.143233, 37.269113], [-81.144178, 37.268843], [-81.145195, 37.26867], [-81.145607, 37.268442], [-81.14635, 37.268165], [-81.14769, 37.26807], [-81.149611, 37.267522], [-81.150707, 37.267244], [-81.151694, 37.267111], [-81.152679, 37.266744], [-81.154037, 37.266352], [-81.155686, 37.265974], [-81.157347, 37.265645], [-81.158967, 37.265389], [-81.16114, 37.264759], [-81.162778, 37.264115], [-81.164116, 37.263666], [-81.165614, 37.263289], [-81.167032, 37.262888], [-81.168248, 37.262415], [-81.169655, 37.261837], [-81.170449, 37.261495], [-81.171645, 37.261095], [-81.173444, 37.260305], [-81.174608, 37.259679], [-81.175842, 37.259104], [-81.176899, 37.258613], [-81.178154, 37.257986], [-81.1794, 37.25732], [-81.180294, 37.256969], [-81.180635, 37.256661], [-81.181006, 37.256345], [-81.181307, 37.256207], [-81.181616, 37.256078], [-81.181739, 37.256027], [-81.182271, 37.25563], [-81.182939, 37.25474], [-81.183282, 37.254495], [-81.183485, 37.254461], [-81.183523, 37.254455], [-81.183566, 37.254448], [-81.183624, 37.254438], [-81.184066, 37.254372], [-81.18431, 37.25433], [-81.184528, 37.254193], [-81.18479, 37.254014], [-81.185572, 37.253623], [-81.186245, 37.253266], [-81.186786, 37.252867], [-81.187087, 37.25281], [-81.187421, 37.252736], [-81.187588, 37.252658], [-81.187732, 37.25259], [-81.187822, 37.252525], [-81.187846, 37.252508], [-81.187852, 37.252503], [-81.187911, 37.25246], [-81.188102, 37.252201], [-81.18991, 37.251403], [-81.190002, 37.251363], [-81.190693, 37.251061], [-81.190944, 37.250834], [-81.191265, 37.250639], [-81.191657, 37.2505], [-81.191969, 37.250483], [-81.19211, 37.250434], [-81.19223, 37.250361], [-81.19245, 37.250124], [-81.193053, 37.24967], [-81.19416, 37.249041], [-81.196171, 37.247942], [-81.197756, 37.247115], [-81.198995, 37.24643], [-81.199577, 37.245886], [-81.200462, 37.245295], [-81.203001, 37.243886], [-81.204777, 37.24302], [-81.206368, 37.24237], [-81.207767, 37.241815], [-81.208566, 37.241603], [-81.209965, 37.24096], [-81.211605, 37.240488], [-81.212649, 37.240043], [-81.21433, 37.239459], [-81.215691, 37.238807], [-81.217302, 37.238181], [-81.218557, 37.237754], [-81.218774, 37.237659], [-81.220159, 37.237056], [-81.222838, 37.235744], [-81.225107, 37.234881], [-81.225981, 37.234298], [-81.227546, 37.233333], [-81.228966, 37.232682], [-81.230539, 37.23187], [-81.232672, 37.230659], [-81.23451, 37.229615], [-81.235864, 37.228559], [-81.237603, 37.227313], [-81.239167, 37.226396], [-81.24067, 37.225535], [-81.242232, 37.224788], [-81.243439, 37.224199], [-81.244652, 37.223925], [-81.245561, 37.223714], [-81.24638, 37.223462], [-81.24675, 37.223348], [-81.246774, 37.22334], [-81.246781, 37.223338], [-81.246824, 37.223325], [-81.24715, 37.223225], [-81.248201, 37.22299], [-81.249048, 37.222705], [-81.249234, 37.222642], [-81.249825, 37.222653], [-81.250032, 37.222553], [-81.250038, 37.22255], [-81.250055, 37.222541], [-81.250297, 37.222423], [-81.250898, 37.222143], [-81.251398, 37.221798], [-81.251837, 37.221519], [-81.252196, 37.221376], [-81.252202, 37.221374], [-81.252659, 37.221193], [-81.253875, 37.220877], [-81.255127, 37.220675], [-81.256482, 37.220457], [-81.258263, 37.220105], [-81.258859, 37.219963], [-81.259732, 37.219702], [-81.260188, 37.219543], [-81.260726, 37.219311], [-81.261284, 37.219105], [-81.261619, 37.218954], [-81.261895, 37.218736], [-81.262214, 37.218439], [-81.262541, 37.218182], [-81.263069, 37.217967], [-81.263713, 37.217996], [-81.26461, 37.21801], [-81.265405, 37.218135], [-81.266009, 37.218139], [-81.267291, 37.218001], [-81.268694, 37.217913], [-81.270023, 37.217945], [-81.271458, 37.217817], [-81.272548, 37.217655], [-81.274302, 37.217163], [-81.275699, 37.216769], [-81.276722, 37.216484], [-81.277651, 37.216368], [-81.278105, 37.216428], [-81.278223, 37.216416], [-81.278251, 37.216447], [-81.278318, 37.216497], [-81.278393, 37.216534], [-81.278459, 37.216555], [-81.278546, 37.21657], [-81.278635, 37.216571], [-81.279082, 37.216524], [-81.279185, 37.2166], [-81.279238, 37.216594], [-81.284254, 37.215993], [-81.284261, 37.215992], [-81.284328, 37.215984], [-81.284339, 37.215983], [-81.284768, 37.215909], [-81.283725, 37.213774], [-81.283719, 37.213762], [-81.282447, 37.211097], [-81.281555, 37.209273], [-81.281057, 37.208256], [-81.27941, 37.204885], [-81.278791, 37.20371], [-81.278775, 37.203678], [-81.278736, 37.203599], [-81.276981, 37.199997], [-81.275441, 37.196837], [-81.274803, 37.195528], [-81.274788, 37.195497], [-81.274702, 37.195319], [-81.272915, 37.191653], [-81.272902, 37.191626], [-81.271853, 37.189474], [-81.271813, 37.189393], [-81.271795, 37.189356], [-81.271779, 37.189323], [-81.270095, 37.185869], [-81.270066, 37.185807], [-81.269959, 37.185575], [-81.267158, 37.179834], [-81.263874, 37.173104], [-81.265834, 37.172616], [-81.267085, 37.172371], [-81.268533, 37.171845], [-81.269221, 37.171627], [-81.271965, 37.17118], [-81.272835, 37.170882], [-81.27408, 37.170411], [-81.275867, 37.170018], [-81.281173, 37.168508], [-81.28485, 37.167578], [-81.28767, 37.166735], [-81.289125, 37.166323], [-81.291975, 37.165513], [-81.295661, 37.164615], [-81.296096, 37.164514], [-81.297738, 37.163781], [-81.300841, 37.163417], [-81.305245, 37.162317], [-81.310573, 37.160595], [-81.313749, 37.159513], [-81.31686, 37.158075], [-81.321509, 37.155555], [-81.324139, 37.154016], [-81.325137, 37.153235], [-81.325698, 37.152788], [-81.326188, 37.152317], [-81.326473, 37.152126], [-81.327184, 37.151705], [-81.327764, 37.151267], [-81.328081, 37.150972], [-81.328181, 37.150896], [-81.328336, 37.150781], [-81.329084, 37.150538], [-81.329933, 37.150232], [-81.330835, 37.149845], [-81.333097, 37.149214], [-81.332835, 37.148677], [-81.332462, 37.147821], [-81.332313, 37.147522], [-81.332272, 37.147439], [-81.332238, 37.14737], [-81.32812, 37.139014], [-81.327171, 37.139279], [-81.32599, 37.139566], [-81.325366, 37.139616], [-81.324441, 37.139582], [-81.323136, 37.139504], [-81.321802, 37.139321], [-81.32059, 37.139067], [-81.319908, 37.138972], [-81.318861, 37.139042], [-81.317591, 37.139239], [-81.316917, 37.13928], [-81.316193, 37.139273], [-81.315085, 37.138833], [-81.314397, 37.138407], [-81.313801, 37.137981], [-81.312864, 37.136954], [-81.312034, 37.136113], [-81.311492, 37.13547], [-81.310395, 37.135547], [-81.309268, 37.135592], [-81.308223, 37.135598], [-81.306424, 37.135547], [-81.304545, 37.135495], [-81.303944, 37.135392], [-81.303447, 37.135056], [-81.302863, 37.134533], [-81.30156, 37.133712], [-81.299532, 37.132988], [-81.296664, 37.131989], [-81.295397, 37.131411], [-81.29447, 37.131006], [-81.293488, 37.130818], [-81.292011, 37.13077], [-81.290634, 37.130763], [-81.288851, 37.130898], [-81.286406, 37.131042], [-81.284909, 37.131002], [-81.284005, 37.130968], [-81.282854, 37.130698], [-81.280864, 37.13012], [-81.278812, 37.129597], [-81.277331, 37.129226], [-81.275652, 37.128659], [-81.274673, 37.128334], [-81.27365, 37.128226], [-81.272676, 37.128159], [-81.271578, 37.128261], [-81.270574, 37.128242], [-81.269753, 37.128031], [-81.268805, 37.127626], [-81.268019, 37.127205], [-81.267401, 37.126916], [-81.267062, 37.126735], [-81.266565, 37.126357], [-81.266523, 37.126325], [-81.266397, 37.126227], [-81.26602, 37.125981], [-81.265691, 37.125767], [-81.265402, 37.125611], [-81.265233, 37.125512], [-81.265104, 37.125422], [-81.265046, 37.125276], [-81.265008, 37.125124], [-81.264945, 37.124827], [-81.264683, 37.124618], [-81.26427, 37.124385], [-81.263998, 37.124264], [-81.263948, 37.123985], [-81.263916, 37.123804], [-81.263893, 37.123053], [-81.263929, 37.121914], [-81.263846, 37.121043], [-81.263409, 37.119921], [-81.263125, 37.119131], [-81.262821, 37.118388], [-81.262375, 37.117509], [-81.262161, 37.116735], [-81.261717, 37.116187], [-81.261424, 37.115848], [-81.261312, 37.115469], [-81.2614, 37.114774], [-81.262403, 37.111654], [-81.262401, 37.111105], [-81.26246, 37.110596], [-81.263018, 37.10948], [-81.263376, 37.108381], [-81.263464, 37.107606], [-81.263401, 37.107008], [-81.263329, 37.106467], [-81.263739, 37.105788], [-81.264429, 37.104914], [-81.266361, 37.102825], [-81.266991, 37.102161], [-81.267382, 37.10174], [-81.267562, 37.101578], [-81.267508, 37.100513], [-81.267596, 37.100012], [-81.267896, 37.099542], [-81.268051, 37.099388], [-81.268707, 37.098741], [-81.269017, 37.098417], [-81.269127, 37.098239], [-81.269126, 37.097972], [-81.269074, 37.09773], [-81.269313, 37.097035], [-81.269382, 37.096776], [-81.26941, 37.096122], [-81.269579, 37.095645], [-81.269668, 37.095266], [-81.269686, 37.094878], [-81.269974, 37.093948], [-81.270262, 37.093011], [-81.270502, 37.092647], [-81.270893, 37.092379], [-81.271464, 37.092111], [-81.272769, 37.091793], [-81.273632, 37.091548], [-81.274434, 37.091166], [-81.275035, 37.090696], [-81.275506, 37.090283], [-81.277579, 37.088485], [-81.277949, 37.088241], [-81.278581, 37.088038], [-81.279345, 37.087922], [-81.280389, 37.087758], [-81.281371, 37.08715], [-81.282142, 37.08655], [-81.282733, 37.086055], [-81.283696, 37.085576], [-81.284951, 37.085435], [-81.285483, 37.085313], [-81.285794, 37.085053], [-81.286054, 37.084794], [-81.286485, 37.084583], [-81.28763, 37.084418], [-81.287921, 37.084321], [-81.288231, 37.084126], [-81.288852, 37.083599], [-81.289303, 37.083339], [-81.289534, 37.083298], [-81.289865, 37.083306], [-81.290187, 37.083442], [-81.29054, 37.083619], [-81.290952, 37.083682], [-81.291214, 37.083891], [-81.291425, 37.084012], [-81.291676, 37.083833], [-81.291825, 37.083615], [-81.291985, 37.083259], [-81.292295, 37.082927], [-81.293058, 37.082755], [-81.293599, 37.082633], [-81.293989, 37.081977], [-81.29465, 37.081507], [-81.297247, 37.080498], [-81.298521, 37.080098], [-81.300208, 37.079884], [-81.30088, 37.07955], [-81.301701, 37.078942], [-81.302563, 37.078544], [-81.303658, 37.078371], [-81.30421, 37.078337], [-81.304471, 37.078175], [-81.304862, 37.07794], [-81.305494, 37.077752], [-81.306236, 37.077548], [-81.306657, 37.077232], [-81.306949, 37.077054], [-81.306969, 37.07704], [-81.307027, 37.077], [-81.307066, 37.076973], [-81.307127, 37.076721], [-81.307628, 37.07651], [-81.30837, 37.076306], [-81.309364, 37.076149], [-81.309866, 37.075994], [-81.312708, 37.07366], [-81.313138, 37.073247], [-81.314101, 37.072816], [-81.31433, 37.0725], [-81.31466, 37.072176], [-81.316154, 37.071606], [-81.317488, 37.071166], [-81.31812, 37.071027], [-81.320437, 37.070196], [-81.322383, 37.069414], [-81.324217, 37.068609], [-81.325239, 37.068], [-81.326271, 37.067399], [-81.326732, 37.067276], [-81.327665, 37.067136], [-81.328911, 37.067068], [-81.330095, 37.066886], [-81.331239, 37.066608], [-81.332623, 37.06624], [-81.333265, 37.066028], [-81.333956, 37.065727], [-81.334408, 37.065588], [-81.33513, 37.065465], [-81.336534, 37.064919], [-81.337967, 37.064341], [-81.339099, 37.063675], [-81.340473, 37.063307], [-81.341688, 37.0631], [-81.342791, 37.06266], [-81.343823, 37.0621], [-81.345097, 37.061894], [-81.346392, 37.0618], [-81.347296, 37.061797], [-81.348008, 37.061609], [-81.349291, 37.061169], [-81.350194, 37.060964], [-81.350986, 37.060654], [-81.351688, 37.060426], [-81.353102, 37.060082], [-81.354868, 37.059624], [-81.356261, 37.059166], [-81.357503, 37.058548], [-81.358496, 37.058238], [-81.359289, 37.058163], [-81.359832, 37.058161], [-81.361177, 37.057938], [-81.362602, 37.057723], [-81.363154, 37.057754], [-81.363615, 37.057607], [-81.364197, 37.057419], [-81.364608, 37.057353], [-81.36487, 37.057408], [-81.365967, 37.057833], [-81.366449, 37.057944], [-81.366961, 37.05791], [-81.367874, 37.057753], [-81.368647, 37.057645], [-81.369198, 37.057361], [-81.370049, 37.056881], [-81.371332, 37.056505], [-81.372186, 37.056518], [-81.372899, 37.056532], [-81.373652, 37.056545], [-81.374194, 37.056479], [-81.374222, 37.055986], [-81.374319, 37.055299], [-81.374488, 37.055105], [-81.37483, 37.054997], [-81.374904, 37.054973], [-81.375036, 37.0549], [-81.375167, 37.054779], [-81.375248, 37.054625], [-81.375389, 37.054415], [-81.375702, 37.054149], [-81.376167, 37.053938], [-81.377044, 37.053583], [-81.377417, 37.053543], [-81.37777, 37.053551], [-81.378183, 37.053874], [-81.378486, 37.054149], [-81.378737, 37.054546], [-81.378787, 37.054626], [-81.378968, 37.055054], [-81.379109, 37.055119], [-81.379643, 37.055289], [-81.380509, 37.055628], [-81.380811, 37.055725], [-81.381114, 37.055604], [-81.381366, 37.055458], [-81.38173, 37.055305], [-81.382345, 37.055054], [-81.382778, 37.055063], [-81.383252, 37.055127], [-81.383776, 37.055232], [-81.384078, 37.055362], [-81.384431, 37.055475], [-81.384582, 37.05541], [-81.384905, 37.055257], [-81.385157, 37.055119], [-81.385571, 37.055047], [-81.385873, 37.055063], [-81.386347, 37.055232], [-81.386951, 37.055531], [-81.387626, 37.05579], [-81.38809, 37.055879], [-81.388644, 37.05579], [-81.389149, 37.05554], [-81.389714, 37.055305], [-81.390187, 37.055289], [-81.3905, 37.05533], [-81.390802, 37.055459], [-81.391064, 37.055653], [-81.391437, 37.055839], [-81.392152, 37.055992], [-81.392948, 37.056202], [-81.393744, 37.056526], [-81.39456, 37.056784], [-81.395306, 37.057043], [-81.396223, 37.057196], [-81.397352, 37.057261], [-81.398017, 37.057423], [-81.398692, 37.057584], [-81.399155, 37.057778], [-81.399458, 37.05756], [-81.399691, 37.057463], [-81.399832, 37.057374], [-81.400711, 37.056606], [-81.401165, 37.056226], [-81.40175, 37.056032], [-81.402668, 37.055773], [-81.403908, 37.055385], [-81.404998, 37.054957], [-81.405422, 37.054731], [-81.40639, 37.054302], [-81.408216, 37.053655], [-81.409113, 37.053372], [-81.409718, 37.053283], [-81.410949, 37.05279], [-81.411968, 37.052249], [-81.413027, 37.051602], [-81.413754, 37.051214], [-81.415488, 37.050551], [-81.41679, 37.050098], [-81.417087, 37.049967], [-81.417618, 37.049734], [-81.418455, 37.049225], [-81.41898, 37.048901], [-81.419433, 37.048715], [-81.419917, 37.048562], [-81.420573, 37.048376], [-81.421017, 37.048222], [-81.42143, 37.047842], [-81.421733, 37.047527], [-81.421955, 37.047341], [-81.42249, 37.04705], [-81.423095, 37.046831], [-81.423619, 37.046694], [-81.424063, 37.046451], [-81.424527, 37.046136], [-81.425022, 37.045659], [-81.425335, 37.045352], [-81.425738, 37.04515], [-81.426757, 37.044713], [-81.427664, 37.044414], [-81.42831, 37.044179], [-81.428481, 37.04409], [-81.428723, 37.043945], [-81.428965, 37.043872], [-81.429278, 37.043783], [-81.42953, 37.04375], [-81.429731, 37.043807], [-81.429993, 37.043871], [-81.430497, 37.043847], [-81.431001, 37.04379], [-81.431354, 37.043701], [-81.431657, 37.04354], [-81.432373, 37.043232], [-81.43321, 37.042909], [-81.434391, 37.042487], [-81.435641, 37.04201], [-81.436055, 37.041783], [-81.436257, 37.041419], [-81.4366, 37.041161], [-81.436892, 37.041088], [-81.437567, 37.040983], [-81.438293, 37.041031], [-81.438968, 37.041039], [-81.439422, 37.040949], [-81.439795, 37.04082], [-81.440178, 37.040577], [-81.440541, 37.040343], [-81.441751, 37.040011], [-81.442477, 37.03997], [-81.443142, 37.04001], [-81.443606, 37.040123], [-81.444049, 37.040252], [-81.444543, 37.040333], [-81.444926, 37.040406], [-81.44548, 37.040616], [-81.446145, 37.040672], [-81.446682, 37.040659], [-81.44684, 37.040655], [-81.447788, 37.040542], [-81.448645, 37.040339], [-81.449232, 37.040211], [-81.449239, 37.040208], [-81.450147, 37.039878], [-81.451135, 37.039514], [-81.451973, 37.039271], [-81.453132, 37.039036], [-81.453888, 37.038761], [-81.454665, 37.038647], [-81.455037, 37.038736], [-81.45538, 37.038825], [-81.455813, 37.039002], [-81.456438, 37.039212], [-81.456982, 37.039276], [-81.457315, 37.039268], [-81.457547, 37.039211], [-81.457789, 37.039082], [-81.460582, 37.037577], [-81.461318, 37.037181], [-81.46156, 37.036978], [-81.461719, 37.036762], [-81.461736, 37.03673], [-81.461913, 37.036388], [-81.462024, 37.036105], [-81.462216, 37.035548], [-81.45954, 37.032975], [-81.459334, 37.032777], [-81.457398, 37.030916], [-81.457355, 37.030874], [-81.457258, 37.030779], [-81.457209, 37.030694], [-81.45706, 37.030535], [-81.456572, 37.030012], [-81.456536, 37.029975], [-81.452865, 37.026205], [-81.449741, 37.022997], [-81.448954, 37.022181], [-81.448936, 37.022162], [-81.448002, 37.021194], [-81.447851, 37.021044], [-81.447835, 37.021022], [-81.447816, 37.021002], [-81.441363, 37.014315], [-81.441316, 37.014287], [-81.440794, 37.013743], [-81.437185, 37.010098], [-81.437483, 37.010094], [-81.437795, 37.010126], [-81.438208, 37.01011], [-81.43851, 37.010013], [-81.438804, 37.009859], [-81.439066, 37.00977], [-81.439348, 37.009778], [-81.43969, 37.009794], [-81.439952, 37.009737], [-81.440194, 37.0096], [-81.440537, 37.009252], [-81.440951, 37.008985], [-81.441414, 37.008832], [-81.441868, 37.008654], [-81.442493, 37.00816], [-81.443058, 37.007691], [-81.444237, 37.007028], [-81.445064, 37.006559], [-81.44581, 37.006017], [-81.446606, 37.005564], [-81.44703, 37.005354], [-81.447503, 37.005119], [-81.448713, 37.004392], [-81.449015, 37.004109], [-81.449358, 37.003704], [-81.449852, 37.003276], [-81.450417, 37.002944], [-81.451062, 37.002814], [-81.451626, 37.00279], [-81.451968, 37.002765], [-81.45221, 37.002725], [-81.452372, 37.002555], [-81.452533, 37.002385], [-81.453017, 37.001827], [-81.453351, 37.001375], [-81.453805, 37.001003], [-81.454228, 37.000833], [-81.45456, 37.000711], [-81.454822, 37.000582], [-81.455004, 37.00038], [-81.455336, 37.000122], [-81.455636, 37.000022], [-81.456036, 36.999922], [-81.456536, 37.000022], [-81.456736, 37.000022], [-81.457136, 36.999822], [-81.457336, 36.999622], [-81.457436, 36.999322], [-81.457736, 36.999022], [-81.458136, 36.998722], [-81.458636, 36.998422], [-81.459136, 36.998022], [-81.460136, 36.997022], [-81.460417, 36.996742], [-81.460563, 36.996595], [-81.460936, 36.996222], [-81.461336, 36.995922], [-81.461736, 36.995322], [-81.462336, 36.994922], [-81.462736, 36.994822], [-81.463336, 36.994522], [-81.463536, 36.994522], [-81.463836, 36.994422], [-81.464036, 36.994322], [-81.464136, 36.994122], [-81.46424, 36.993886], [-81.464269, 36.993821], [-81.464436, 36.993622], [-81.464836, 36.993522], [-81.465236, 36.993522], [-81.466036, 36.993222], [-81.466136, 36.993122], [-81.466436, 36.993122], [-81.466836, 36.993022], [-81.467136, 36.992922], [-81.467436, 36.992622], [-81.467536, 36.992422], [-81.467736, 36.992122], [-81.468036, 36.991822], [-81.468236, 36.991722], [-81.468736, 36.991322], [-81.469236, 36.991122], [-81.469836, 36.990922], [-81.470337, 36.990922], [-81.470837, 36.990822], [-81.470937, 36.990722], [-81.470937, 36.990622], [-81.471037, 36.990522], [-81.471137, 36.990322], [-81.471237, 36.990222], [-81.472037, 36.990222], [-81.472537, 36.990122], [-81.473237, 36.990022], [-81.473837, 36.989722], [-81.474437, 36.989322], [-81.474937, 36.988922], [-81.475337, 36.988622], [-81.475737, 36.988422], [-81.476037, 36.988322], [-81.476137, 36.988222], [-81.476258, 36.988222], [-81.476337, 36.988122], [-81.476426, 36.988092], [-81.476484, 36.988073], [-81.476637, 36.988022], [-81.477137, 36.988022], [-81.477537, 36.987822], [-81.477637, 36.987822], [-81.477637, 36.987722], [-81.477837, 36.987622], [-81.478137, 36.987422], [-81.478637, 36.987122], [-81.478937, 36.986922], [-81.479137, 36.986922], [-81.479337, 36.986722], [-81.479837, 36.986622], [-81.480237, 36.986522], [-81.480537, 36.986422], [-81.481137, 36.986622], [-81.481537, 36.986722], [-81.481937, 36.987022], [-81.482337, 36.987422], [-81.482424, 36.987531], [-81.482583, 36.98773], [-81.482737, 36.987922], [-81.483037, 36.988422], [-81.483237, 36.988822], [-81.483337, 36.989322], [-81.483337, 36.989622], [-81.483237, 36.990022], [-81.483037, 36.990422], [-81.483037, 36.990522], [-81.482937, 36.990522], [-81.482937, 36.990622], [-81.482837, 36.990722], [-81.482337, 36.991122], [-81.481037, 36.992422], [-81.480137, 36.993022], [-81.479437, 36.993422], [-81.478637, 36.993822], [-81.478137, 36.994022], [-81.477737, 36.994122], [-81.477337, 36.994322], [-81.476937, 36.994422], [-81.476737, 36.994522], [-81.476437, 36.994922], [-81.476037, 36.995422], [-81.475737, 36.995722], [-81.475137, 36.996122], [-81.474937, 36.996222], [-81.474537, 36.996622], [-81.474337, 36.997022], [-81.474137, 36.997222], [-81.473837, 36.997322], [-81.473637, 36.997422], [-81.473337, 36.997522], [-81.473237, 36.997622], [-81.472937, 36.997822], [-81.472637, 36.998122], [-81.472637, 36.998622], [-81.472837, 36.998822], [-81.473037, 36.998822], [-81.473537, 36.999322], [-81.473937, 36.999522], [-81.474237, 36.999822], [-81.474136, 37.000122], [-81.474447, 37.000594], [-81.474749, 37.000788], [-81.475242, 37.001256], [-81.476027, 37.002104], [-81.475796, 37.002234], [-81.475221, 37.002687], [-81.474405, 37.003116], [-81.473145, 37.003593], [-81.472863, 37.003715], [-81.472813, 37.003957], [-81.473034, 37.004701], [-81.473386, 37.005606], [-81.473869, 37.006527], [-81.473983, 37.006683], [-81.474573, 37.007488], [-81.475227, 37.008304], [-81.4756, 37.008869], [-81.47559, 37.009087], [-81.475418, 37.009257], [-81.474985, 37.009484], [-81.474349, 37.009775], [-81.473855, 37.009953], [-81.47324, 37.010172], [-81.472626, 37.010439], [-81.472162, 37.010924], [-81.471254, 37.011927], [-81.470186, 37.013067], [-81.469419, 37.013852], [-81.469016, 37.014418], [-81.468844, 37.015048], [-81.468813, 37.015606], [-81.468924, 37.01622], [-81.469105, 37.016608], [-81.469487, 37.01685], [-81.4698, 37.01689], [-81.470142, 37.016963], [-81.470575, 37.017092], [-81.47125, 37.017309], [-81.472358, 37.017721], [-81.473436, 37.018294], [-81.47401, 37.018423], [-81.474363, 37.018431], [-81.474907, 37.018236], [-81.475603, 37.017904], [-81.476429, 37.017581], [-81.477276, 37.017127], [-81.478092, 37.016723], [-81.478809, 37.016383], [-81.479545, 37.016132], [-81.480109, 37.01601], [-81.480613, 37.015937], [-81.481802, 37.015726], [-81.482689, 37.015539], [-81.483797, 37.015215], [-81.484029, 37.015247], [-81.48423, 37.015336], [-81.484553, 37.015506], [-81.484855, 37.015602], [-81.485207, 37.015748], [-81.48561, 37.015788], [-81.486588, 37.015989], [-81.488089, 37.016198], [-81.488502, 37.016125], [-81.488673, 37.015971], [-81.488925, 37.015543], [-81.489177, 37.015308], [-81.489651, 37.014823], [-81.490125, 37.014507], [-81.49076, 37.014208], [-81.491253, 37.014062], [-81.491626, 37.014021], [-81.492009, 37.014053], [-81.492402, 37.014077], [-81.492916, 37.01423], [-81.493258, 37.01444], [-81.493641, 37.014609], [-81.494004, 37.01469], [-81.4948, 37.015012], [-81.495203, 37.015206], [-81.495656, 37.01523], [-81.495857, 37.015108], [-81.496887, 37.014057], [-81.497287, 37.013289], [-81.497779, 37.012892], [-81.498435, 37.012136], [-81.498741, 37.011398], [-81.498891, 37.011036], [-81.499813, 37.010502], [-81.499838, 37.010487], [-81.50002, 37.010296], [-81.50022, 37.0102], [-81.500682, 37.009998], [-81.500853, 37.009862], [-81.501094, 37.009588], [-81.501355, 37.009322], [-81.501726, 37.009088], [-81.502248, 37.008903], [-81.50289, 37.008775], [-81.503281, 37.008775], [-81.503732, 37.008945], [-81.504243, 37.009139], [-81.504328, 37.00918], [-81.504354, 37.009193], [-81.504668, 37.009344], [-81.504985, 37.00947], [-81.505306, 37.009503], [-81.505777, 37.009535], [-81.506208, 37.009471], [-81.506599, 37.009359], [-81.506921, 37.00919], [-81.507202, 37.009029], [-81.507352, 37.008851], [-81.507493, 37.008634], [-81.507539, 37.008248], [-81.507559, 37.007999], [-81.507574, 37.0079], [-81.507635, 37.007662], [-81.507737, 37.007438], [-81.507793, 37.007339], [-81.507846, 37.00721], [-81.507934, 37.006854], [-81.507952, 37.006823], [-81.508013, 37.006769], [-81.508043, 37.006727], [-81.508213, 37.006239], [-81.508262, 37.006136], [-81.508477, 37.005807], [-81.508623, 37.005415], [-81.50864, 37.005353], [-81.508694, 37.005204], [-81.508764, 37.00506], [-81.508896, 37.004881], [-81.509301, 37.004393], [-81.509431, 37.004266], [-81.509613, 37.004136], [-81.509767, 37.004041], [-81.510056, 37.003774], [-81.510102, 37.00372], [-81.510221, 37.003564], [-81.510283, 37.003503], [-81.510374, 37.003444], [-81.510448, 37.00341], [-81.510561, 37.003374], [-81.51159, 37.003183], [-81.512021, 37.002942], [-81.512043, 37.002928], [-81.512341, 37.002748], [-81.512529, 37.002621], [-81.512541, 37.002614], [-81.512675, 37.002542], [-81.51283, 37.002476], [-81.513072, 37.00238], [-81.513123, 37.002364], [-81.513202, 37.002338], [-81.513987, 37.002083], [-81.514669, 37.001811], [-81.514899, 37.001719], [-81.516183, 37.001577], [-81.516523, 37.001539], [-81.517093, 37.001152], [-81.51715, 37.000856], [-81.519262, 37.000925], [-81.520434, 37.000644], [-81.520702, 37.000839], [-81.520912, 37.000928], [-81.521173, 37.000912], [-81.521444, 37.00084], [-81.521845, 37.000719], [-81.522457, 37.00055], [-81.523279, 37.000414], [-81.524101, 37.000326], [-81.524853, 37.000326], [-81.525606, 37.00027], [-81.526348, 37.00019], [-81.526776, 37.000122], [-81.527552, 36.999257], [-81.528578, 36.999107], [-81.529927, 36.998667], [-81.530818, 36.998415], [-81.531174, 36.998316], [-81.53163, 36.997624], [-81.532106, 36.997005], [-81.53264, 36.996676], [-81.533425, 36.996323], [-81.533767, 36.996251], [-81.534939, 36.996022], [-81.536539, 36.995822], [-81.543139, 36.995422], [-81.548039, 36.994322], [-81.550139, 36.994222], [-81.554039, 36.992922], [-81.557439, 36.991822], [-81.561239, 36.990522], [-81.569339, 36.989422], [-81.573439, 36.989322], [-81.576939, 36.989522], [-81.579939, 36.987022], [-81.582039, 36.985022], [-81.583639, 36.985022], [-81.586778, 36.983277], [-81.592639, 36.980022], [-81.596639, 36.977022], [-81.599739, 36.973422], [-81.601139, 36.973422], [-81.60384, 36.972322], [-81.60554, 36.971022], [-81.60874, 36.969022], [-81.61044, 36.968022], [-81.61224, 36.967622], [-81.62484, 36.960122], [-81.62504, 36.959822], [-81.62534, 36.959422], [-81.62584, 36.959122], [-81.62654, 36.958322], [-81.62714, 36.957622], [-81.62754, 36.957122], [-81.62834, 36.956921], [-81.62894, 36.956521], [-81.62944, 36.956221], [-81.629836, 36.956068], [-81.63074, 36.955721], [-81.63174, 36.955121], [-81.63254, 36.954421], [-81.63324, 36.953721], [-81.63374, 36.953321], [-81.63434, 36.953121], [-81.63504, 36.952921], [-81.63594, 36.952621], [-81.63714, 36.951721], [-81.63844, 36.950721], [-81.63954, 36.949721], [-81.64024, 36.949021], [-81.64094, 36.948521], [-81.64134, 36.948221], [-81.64184, 36.948121], [-81.64274, 36.947921], [-81.64334, 36.947521], [-81.64414, 36.947221], [-81.64504, 36.947021], [-81.64614, 36.946621], [-81.64744, 36.945921], [-81.64854, 36.945121], [-81.649741, 36.944721], [-81.650941, 36.944221], [-81.653141, 36.943021], [-81.654141, 36.942521], [-81.655141, 36.942221], [-81.656141, 36.941721], [-81.657041, 36.941121], [-81.658241, 36.940721], [-81.659541, 36.940621], [-81.660941, 36.940421], [-81.662041, 36.940121], [-81.663241, 36.940021], [-81.664141, 36.939921], [-81.664741, 36.939621], [-81.665141, 36.939621], [-81.665841, 36.939521], [-81.666041, 36.939421], [-81.666141, 36.939321], [-81.666241, 36.939321], [-81.666241, 36.939221], [-81.666441, 36.938921], [-81.667441, 36.938621], [-81.667741, 36.938521], [-81.673441, 36.935121], [-81.673641, 36.934821], [-81.676961, 36.934186], [-81.677922, 36.934004], [-81.678001, 36.933989], [-81.678096, 36.933971], [-81.678652, 36.933864], [-81.683041, 36.933021], [-81.685593, 36.937322], [-81.685781, 36.93764], [-81.685969, 36.937957], [-81.687407, 36.940381], [-81.695441, 36.953921], [-81.696041, 36.95494], [-81.697579, 36.957548], [-81.698791, 36.959605], [-81.69883, 36.95967], [-81.700682, 36.962812], [-81.703077, 36.966875], [-81.703219, 36.967115], [-81.703537, 36.967654], [-81.708941, 36.976821], [-81.709075, 36.976865], [-81.709241, 36.976921], [-81.710241, 36.976121], [-81.710741, 36.975821], [-81.712241, 36.975821], [-81.712541, 36.975621], [-81.713441, 36.975221], [-81.714641, 36.975121], [-81.715541, 36.974721], [-81.716041, 36.974021], [-81.716441, 36.973521], [-81.717241, 36.973021], [-81.717641, 36.972921], [-81.718641, 36.973021], [-81.719341, 36.973221], [-81.720341, 36.972921], [-81.721041, 36.973021], [-81.721741, 36.972821], [-81.723041, 36.972221], [-81.723541, 36.971621], [-81.724541, 36.971221], [-81.725141, 36.971221], [-81.725841, 36.971021], [-81.726741, 36.970521], [-81.727641, 36.970121], [-81.728641, 36.969921], [-81.729641, 36.969921], [-81.730341, 36.970021], [-81.730941, 36.970121], [-81.731741, 36.970221], [-81.732241, 36.969921], [-81.733041, 36.969321], [-81.733441, 36.968921], [-81.734041, 36.968521], [-81.734541, 36.967921], [-81.735541, 36.967721], [-81.736641, 36.967921], [-81.737041, 36.968021], [-81.738141, 36.967721], [-81.738841, 36.967321], [-81.739641, 36.967221], [-81.740341, 36.967021], [-81.740941, 36.966421], [-81.741541, 36.966021], [-81.742241, 36.965721], [-81.742541, 36.965821], [-81.742641, 36.965821], [-81.744741, 36.966121], [-81.745541, 36.965421], [-81.746041, 36.965121], [-81.746541, 36.965221], [-81.746941, 36.965221], [-81.747541, 36.964821], [-81.747941, 36.964421], [-81.748541, 36.963721], [-81.748941, 36.963421], [-81.749741, 36.963621], [-81.749841, 36.963671], [-81.750041, 36.963621], [-81.750942, 36.963521], [-81.751542, 36.963321], [-81.752142, 36.963221], [-81.752642, 36.963121], [-81.753142, 36.962921], [-81.753442, 36.962721], [-81.753742, 36.962621], [-81.754342, 36.962521], [-81.754942, 36.962521], [-81.755642, 36.962621], [-81.756342, 36.962621], [-81.756742, 36.962521], [-81.757442, 36.962321], [-81.757942, 36.962121], [-81.758142, 36.962021], [-81.758442, 36.961721], [-81.758542, 36.961521], [-81.758842, 36.961321], [-81.759242, 36.961021], [-81.760242, 36.960621], [-81.761642, 36.960621], [-81.762042, 36.960721], [-81.762242, 36.960721], [-81.762642, 36.960921], [-81.762742, 36.960921], [-81.763142, 36.960821], [-81.763442, 36.960721], [-81.764142, 36.960621], [-81.764442, 36.960621], [-81.765042, 36.960721], [-81.765642, 36.960621], [-81.766442, 36.960521], [-81.767242, 36.960521], [-81.767442, 36.960721], [-81.767642, 36.960721], [-81.767942, 36.960821], [-81.768742, 36.960621], [-81.769042, 36.960721], [-81.769342, 36.960721], [-81.769942, 36.961021], [-81.770242, 36.961221], [-81.770442, 36.961221], [-81.770742, 36.961321], [-81.771042, 36.961321], [-81.771242, 36.961221], [-81.771542, 36.961021], [-81.771842, 36.960721], [-81.772042, 36.960721], [-81.772342, 36.960621], [-81.773842, 36.960621], [-81.774042, 36.960521], [-81.774343, 36.960321], [-81.774743, 36.960221], [-81.775243, 36.960021], [-81.776443, 36.959621], [-81.776843, 36.959521], [-81.777343, 36.959221], [-81.777643, 36.959121], [-81.778043, 36.959021], [-81.778543, 36.958821], [-81.778743, 36.958821], [-81.779043, 36.958721], [-81.779643, 36.958721], [-81.779843, 36.958621], [-81.780542, 36.958621], [-81.782764, 36.964013], [-81.784868, 36.969115], [-81.785567, 36.970813], [-81.78564, 36.970991], [-81.785652, 36.97102], [-81.785666, 36.971054], [-81.785668, 36.97106], [-81.785703, 36.971145], [-81.785827, 36.971446], [-81.786027, 36.971931], [-81.786166, 36.97227], [-81.787926, 36.976538], [-81.794528, 36.992559], [-81.79489, 36.993432], [-81.796398, 36.997096], [-81.7964, 36.997101], [-81.796404, 36.997112], [-81.79644, 36.997199], [-81.796462, 36.997252], [-81.796765, 36.997988], [-81.796919, 36.998359], [-81.797008, 36.998573], [-81.797014, 36.998587], [-81.797106, 36.998811], [-81.797651, 37.000132], [-81.797673, 37.000184], [-81.797768, 37.000408], [-81.798326, 37.001731], [-81.798996, 37.003317], [-81.799079, 37.003513], [-81.799191, 37.003778], [-81.799197, 37.003792], [-81.79921, 37.003824], [-81.799238, 37.00389], [-81.79932, 37.004084], [-81.799382, 37.004231], [-81.799414, 37.004308], [-81.799419, 37.004319], [-81.799538, 37.0046], [-81.799548, 37.004623], [-81.799554, 37.004637], [-81.799562, 37.004657], [-81.799575, 37.004689], [-81.799591, 37.00473], [-81.799813, 37.005294], [-81.799817, 37.005305], [-81.799831, 37.005341], [-81.799853, 37.005396], [-81.799891, 37.005492], [-81.799895, 37.005502], [-81.799941, 37.005618], [-81.800023, 37.005826], [-81.800085, 37.005983], [-81.80013, 37.006097], [-81.800163, 37.006181], [-81.800193, 37.006257], [-81.800208, 37.006294], [-81.800221, 37.006326], [-81.800277, 37.006468], [-81.800297, 37.006519], [-81.800299, 37.006524], [-81.800303, 37.006535], [-81.800316, 37.006568], [-81.80038, 37.00673], [-81.800429, 37.006854], [-81.800495, 37.007022], [-81.801206, 37.008829], [-81.805167, 37.017734], [-81.805169, 37.017739], [-81.805399, 37.018255], [-81.805408, 37.018275], [-81.805446, 37.018361], [-81.805459, 37.018392], [-81.805464, 37.018404], [-81.805466, 37.018409], [-81.805485, 37.018457], [-81.805503, 37.018494], [-81.80557, 37.018633], [-81.805658, 37.018798], [-81.806157, 37.019733], [-81.807917, 37.023031], [-81.80792, 37.023037], [-81.807993, 37.023175], [-81.811718, 37.030212], [-81.811721, 37.030218], [-81.812088, 37.030893], [-81.81211, 37.030933], [-81.812188, 37.031081], [-81.812309, 37.031306], [-81.812401, 37.031477], [-81.812409, 37.031491], [-81.812813, 37.032243], [-81.813326, 37.033197], [-81.813488, 37.033498], [-81.813773, 37.034028], [-81.813854, 37.034178], [-81.813921, 37.034303], [-81.813924, 37.034309], [-81.813937, 37.034334], [-81.813969, 37.034393], [-81.813995, 37.034441], [-81.813998, 37.034446], [-81.814001, 37.034452], [-81.814081, 37.034598], [-81.814088, 37.034611], [-81.814127, 37.034687], [-81.814182, 37.034789], [-81.814252, 37.034919], [-81.814265, 37.034943], [-81.814285, 37.034981], [-81.814334, 37.035072], [-81.814894, 37.036114], [-81.814951, 37.03622], [-81.814959, 37.036233], [-81.815058, 37.036391], [-81.815063, 37.0364], [-81.815742, 37.037688], [-81.815816, 37.037829], [-81.815819, 37.037835], [-81.81585, 37.037893], [-81.815881, 37.03795], [-81.815922, 37.038027], [-81.815962, 37.038105], [-81.816812, 37.039731], [-81.818342, 37.042654], [-81.818394, 37.042757], [-81.818398, 37.042762], [-81.818459, 37.04284], [-81.818476, 37.042862], [-81.820634, 37.045577], [-81.820738, 37.045709], [-81.827268, 37.05393], [-81.837004, 37.062351], [-81.840779, 37.065631], [-81.840797, 37.065646], [-81.840974, 37.065788], [-81.84453, 37.068829], [-81.850112, 37.073594], [-81.850137, 37.073616], [-81.851359, 37.07466], [-81.852714, 37.075816], [-81.85287, 37.075949], [-81.853109, 37.076153], [-81.853234, 37.07626], [-81.853262, 37.076284], [-81.853366, 37.076374], [-81.853394, 37.076398], [-81.853463, 37.076457], [-81.853505, 37.076491], [-81.853525, 37.076507], [-81.855089, 37.077762], [-81.856677, 37.079128], [-81.856709, 37.079158], [-81.856726, 37.079174], [-81.856734, 37.079181], [-81.856843, 37.079277], [-81.857355, 37.079736], [-81.859387, 37.081561], [-81.85948, 37.081645], [-81.859519, 37.08168], [-81.860937, 37.082954], [-81.86098, 37.082993], [-81.861186, 37.083179], [-81.861409, 37.083378], [-81.861414, 37.083382], [-81.861718, 37.083634], [-81.861751, 37.083657], [-81.862356, 37.084268], [-81.862433, 37.084323], [-81.862708, 37.084598], [-81.862747, 37.084646], [-81.862762, 37.084658], [-81.863187, 37.08501], [-81.863354, 37.085152], [-81.863439, 37.085224], [-81.863475, 37.085253], [-81.863503, 37.085276], [-81.863778, 37.085498], [-81.863931, 37.085603], [-81.863941, 37.085639], [-81.863982, 37.085868], [-81.863986, 37.08591], [-81.864009, 37.086183], [-81.864011, 37.086209], [-81.864021, 37.086265], [-81.864058, 37.086509], [-81.864065, 37.086566], [-81.864096, 37.086822], [-81.864109, 37.086924], [-81.864131, 37.087017], [-81.864174, 37.087147], [-81.864253, 37.087332], [-81.864357, 37.08749], [-81.864422, 37.087569], [-81.864565, 37.087709], [-81.864737, 37.087866], [-81.864919, 37.088051], [-81.86497, 37.088092], [-81.865136, 37.088204], [-81.865263, 37.088276], [-81.865457, 37.088371], [-81.865808, 37.088613], [-81.865936, 37.088692], [-81.866194, 37.088883], [-81.86622, 37.088914], [-81.866471, 37.089132], [-81.866618, 37.089272], [-81.866842, 37.089505], [-81.866972, 37.089649], [-81.867076, 37.089751], [-81.867205, 37.089867], [-81.867473, 37.090059], [-81.867637, 37.090202], [-81.867697, 37.09027], [-81.867888, 37.090586], [-81.86807, 37.090787], [-81.86826, 37.090938], [-81.868381, 37.091044], [-81.868699, 37.091262], [-81.869044, 37.091508], [-81.869503, 37.091866], [-81.869571, 37.091924], [-81.869744, 37.092102], [-81.869828, 37.09221], [-81.869891, 37.092276], [-81.870089, 37.092458], [-81.870206, 37.09254], [-81.870417, 37.092652], [-81.870494, 37.092686], [-81.871329, 37.092971], [-81.871492, 37.093042], [-81.871566, 37.093085], [-81.872087, 37.09339], [-81.872233, 37.093485], [-81.872457, 37.093652], [-81.87257, 37.093758], [-81.872693, 37.093904], [-81.872726, 37.093957], [-81.872751, 37.093984], [-81.872795, 37.094059], [-81.872821, 37.094087], [-81.872847, 37.094135], [-81.872873, 37.094162], [-81.873029, 37.094409], [-81.873107, 37.094498], [-81.873142, 37.094552], [-81.873196, 37.094616], [-81.873237, 37.094683], [-81.873263, 37.09471], [-81.873523, 37.095114], [-81.87361, 37.095203], [-81.873696, 37.095278], [-81.874395, 37.095828], [-81.874568, 37.096002], [-81.874611, 37.096036], [-81.874723, 37.096111], [-81.874783, 37.096132], [-81.874847, 37.096181], [-81.875047, 37.096398], [-81.875202, 37.096593], [-81.87522, 37.096634], [-81.875278, 37.096734], [-81.875285, 37.096748], [-81.875303, 37.096786], [-81.875513, 37.097233], [-81.875542, 37.097327], [-81.875593, 37.097681], [-81.875622, 37.09778], [-81.875656, 37.097828], [-81.875717, 37.097965], [-81.875743, 37.097993], [-81.875819, 37.09812], [-81.87589, 37.098212], [-81.875908, 37.098246], [-81.87628, 37.098699], [-81.876297, 37.098733], [-81.876721, 37.09923], [-81.876798, 37.099295], [-81.876872, 37.099305], [-81.87706, 37.099311], [-81.877511, 37.099306], [-81.877863, 37.099352], [-81.878012, 37.099405], [-81.878134, 37.099475], [-81.878191, 37.099516], [-81.878329, 37.099639], [-81.878363, 37.099677], [-81.878459, 37.099838], [-81.878493, 37.099914], [-81.878713, 37.100731], [-81.878796, 37.100988], [-81.878831, 37.101074], [-81.878992, 37.101348], [-81.879074, 37.101433], [-81.879147, 37.101498], [-81.879276, 37.101577], [-81.880318, 37.102064], [-81.880404, 37.102119], [-81.880491, 37.102188], [-81.880728, 37.102465], [-81.881259, 37.102913], [-81.881346, 37.10305], [-81.881372, 37.103078], [-81.881407, 37.103139], [-81.881433, 37.103167], [-81.881476, 37.103242], [-81.881562, 37.103345], [-81.881606, 37.103379], [-81.881718, 37.103434], [-81.881838, 37.103474], [-81.881887, 37.103501], [-81.88195, 37.103536], [-81.88195, 37.103591], [-81.881947, 37.103608], [-81.881909, 37.103852], [-81.881901, 37.103955], [-81.881902, 37.104093], [-81.881926, 37.104232], [-81.881955, 37.104312], [-81.881989, 37.104353], [-81.882033, 37.104429], [-81.882119, 37.104518], [-81.882223, 37.1046], [-81.882295, 37.10464], [-81.882317, 37.10465], [-81.882509, 37.1047], [-81.882678, 37.104729], [-81.882868, 37.104755], [-81.8834, 37.104815], [-81.883512, 37.104842], [-81.883581, 37.104869], [-81.883701, 37.104938], [-81.883796, 37.105013], [-81.883891, 37.105109], [-81.883926, 37.105171], [-81.883961, 37.105208], [-81.88413, 37.105493], [-81.884199, 37.105633], [-81.884222, 37.105753], [-81.884224, 37.105789], [-81.884215, 37.105817], [-81.884227, 37.105838], [-81.884238, 37.105862], [-81.884229, 37.105885], [-81.884248, 37.10625], [-81.88429, 37.106447], [-81.884336, 37.106531], [-81.884399, 37.106608], [-81.884597, 37.106776], [-81.884884, 37.106984], [-81.885011, 37.107056], [-81.885106, 37.107097], [-81.88551, 37.107157], [-81.885639, 37.107195], [-81.885785, 37.107252], [-81.885888, 37.107314], [-81.886121, 37.107505], [-81.886173, 37.10756], [-81.886217, 37.107636], [-81.886234, 37.107704], [-81.886226, 37.107775], [-81.886225, 37.10778], [-81.886214, 37.10788], [-81.88621, 37.108], [-81.886228, 37.108082], [-81.886254, 37.10813], [-81.886327, 37.108185], [-81.886409, 37.108198], [-81.886478, 37.108184], [-81.886512, 37.108164], [-81.88658, 37.108143], [-81.886636, 37.108136], [-81.886709, 37.108156], [-81.886752, 37.10819], [-81.886796, 37.108238], [-81.886839, 37.108317], [-81.886904, 37.108468], [-81.886908, 37.108503], [-81.886915, 37.108564], [-81.886922, 37.108626], [-81.886906, 37.108784], [-81.886911, 37.108829], [-81.886955, 37.108952], [-81.886998, 37.109021], [-81.88705, 37.109082], [-81.887231, 37.109226], [-81.887335, 37.109322], [-81.887441, 37.109447], [-81.887482, 37.109514], [-81.887508, 37.109541], [-81.887542, 37.109603], [-81.887586, 37.109651], [-81.887629, 37.109733], [-81.887739, 37.10986], [-81.887811, 37.109932], [-81.888182, 37.110226], [-81.888242, 37.11026], [-81.888502, 37.110362], [-81.888758, 37.110443], [-81.888801, 37.110464], [-81.888905, 37.110546], [-81.888976, 37.11063], [-81.889017, 37.110696], [-81.88907, 37.110742], [-81.889075, 37.110747], [-81.889104, 37.110772], [-81.889192, 37.110813], [-81.889276, 37.110833], [-81.889465, 37.110833], [-81.889619, 37.110832], [-81.889692, 37.110852], [-81.889757, 37.1109], [-81.8898, 37.110958], [-81.889826, 37.111018], [-81.889851, 37.111097], [-81.889901, 37.111329], [-81.890002, 37.111593], [-81.890049, 37.111668], [-81.890132, 37.111854], [-81.890315, 37.112203], [-81.890442, 37.112359], [-81.890703, 37.112573], [-81.890946, 37.11297], [-81.890972, 37.112998], [-81.891089, 37.113183], [-81.891128, 37.113231], [-81.891054, 37.113376], [-81.891052, 37.113378], [-81.891035, 37.1134], [-81.890939, 37.113485], [-81.890774, 37.113631], [-81.890651, 37.113775], [-81.890588, 37.11393], [-81.890552, 37.114401], [-81.890571, 37.114448], [-81.89057, 37.114501], [-81.89057, 37.114525], [-81.890553, 37.114594], [-81.890528, 37.114656], [-81.890375, 37.114885], [-81.890312, 37.115093], [-81.890279, 37.115306], [-81.890301, 37.115467], [-81.890329, 37.115838], [-81.890373, 37.116058], [-81.890482, 37.116298], [-81.890565, 37.116456], [-81.89072, 37.116606], [-81.89079, 37.116785], [-81.890774, 37.116991], [-81.890837, 37.117098], [-81.890848, 37.117116], [-81.890904, 37.11721], [-81.890939, 37.117306], [-81.891, 37.117409], [-81.891009, 37.11745], [-81.89105, 37.117529], [-81.891057, 37.117553], [-81.891053, 37.117574], [-81.891084, 37.117614], [-81.8911, 37.117636], [-81.89127, 37.118013], [-81.891366, 37.118181], [-81.891514, 37.1185], [-81.891574, 37.118579], [-81.8916, 37.118664], [-81.891909, 37.119185], [-81.892092, 37.119642], [-81.892119, 37.119862], [-81.892107, 37.120023], [-81.89213, 37.120212], [-81.89222, 37.120596], [-81.892257, 37.120703], [-81.892386, 37.120987], [-81.892527, 37.121224], [-81.892596, 37.121313], [-81.892613, 37.121347], [-81.892666, 37.121519], [-81.892618, 37.122814], [-81.892581, 37.122983], [-81.892551, 37.123069], [-81.892539, 37.123127], [-81.892501, 37.123227], [-81.892492, 37.123801], [-81.892519, 37.124048], [-81.892576, 37.124295], [-81.892668, 37.124494], [-81.892767, 37.124652], [-81.89285, 37.124837], [-81.892919, 37.12494], [-81.893023, 37.125119], [-81.89305, 37.125162], [-81.893572, 37.126009], [-81.894875, 37.127411], [-81.895513, 37.128471], [-81.895808, 37.1289], [-81.895938, 37.129202], [-81.896226, 37.129543], [-81.89648, 37.1299], [-81.896562, 37.130296], [-81.896582, 37.130516], [-81.896733, 37.130878], [-81.896932, 37.13145], [-81.897597, 37.132879], [-81.897837, 37.133439], [-81.898111, 37.133852], [-81.898989, 37.134802], [-81.899442, 37.13516], [-81.899846, 37.135462], [-81.900114, 37.135968], [-81.900155, 37.136385], [-81.900152, 37.136521], [-81.900151, 37.136571], [-81.900148, 37.136693], [-81.90012, 37.136726], [-81.899976, 37.137231], [-81.900072, 37.13744], [-81.900394, 37.137786], [-81.900703, 37.138314], [-81.900902, 37.138611], [-81.901451, 37.139067], [-81.901567, 37.139188], [-81.901512, 37.139243], [-81.901512, 37.139331], [-81.901553, 37.139479], [-81.901793, 37.140172], [-81.90169, 37.14043], [-81.90167, 37.140479], [-81.9017, 37.140589], [-81.901525, 37.141012], [-81.90151, 37.141036], [-81.901257, 37.141441], [-81.901256, 37.141515], [-81.901254, 37.141737], [-81.901254, 37.141752], [-81.901251, 37.141761], [-81.901248, 37.141772], [-81.901238, 37.141809], [-81.901229, 37.141843], [-81.901193, 37.141976], [-81.901172, 37.142315], [-81.901173, 37.142367], [-81.901104, 37.142441], [-81.901094, 37.142451], [-81.901091, 37.142553], [-81.900952, 37.14276], [-81.900926, 37.142799], [-81.900902, 37.142861], [-81.900894, 37.142881], [-81.90085, 37.142995], [-81.900727, 37.143223], [-81.900631, 37.143514], [-81.9007, 37.143817], [-81.900706, 37.143844], [-81.900707, 37.14385], [-81.900708, 37.143855], [-81.900711, 37.143869], [-81.900715, 37.143885], [-81.90072, 37.143901], [-81.900731, 37.143934], [-81.900744, 37.143974], [-81.900792, 37.144122], [-81.900805, 37.14432], [-81.900805, 37.144325], [-81.900806, 37.144339], [-81.900822, 37.144582], [-81.900745, 37.144762], [-81.900687, 37.144897], [-81.900641, 37.145005], [-81.900626, 37.145041], [-81.900623, 37.145048], [-81.900606, 37.145088], [-81.900518, 37.145294], [-81.900089, 37.145762], [-81.900011, 37.145828], [-81.899881, 37.14594], [-81.89976, 37.14613], [-81.899533, 37.146291], [-81.899219, 37.146511], [-81.898944, 37.14666], [-81.898924, 37.146662], [-81.898912, 37.146664], [-81.898725, 37.146783], [-81.898565, 37.146977], [-81.898423, 37.147274], [-81.898353, 37.147493], [-81.898358, 37.147517], [-81.898451, 37.14797], [-81.898623, 37.148226], [-81.898604, 37.148274], [-81.898585, 37.14838], [-81.898583, 37.148391], [-81.898582, 37.148412], [-81.898579, 37.148509], [-81.898584, 37.148554], [-81.898593, 37.148627], [-81.898613, 37.148696], [-81.898617, 37.149441], [-81.898617, 37.149484], [-81.898622, 37.149534], [-81.898559, 37.150008], [-81.898567, 37.150138], [-81.898578, 37.150306], [-81.898584, 37.150548], [-81.89854, 37.150781], [-81.898486, 37.150965], [-81.898413, 37.151118], [-81.898217, 37.151389], [-81.89793, 37.151708], [-81.897724, 37.15198], [-81.897581, 37.152107], [-81.897468, 37.15225], [-81.897166, 37.152239], [-81.896797, 37.152097], [-81.896558, 37.151973], [-81.896389, 37.151907], [-81.895999, 37.151757], [-81.895699, 37.151721], [-81.895227, 37.151683], [-81.894867, 37.151574], [-81.894569, 37.151442], [-81.894363, 37.151351], [-81.893873, 37.151134], [-81.893785, 37.151053], [-81.893773, 37.151042], [-81.893769, 37.151038], [-81.893737, 37.151008], [-81.893684, 37.150959], [-81.893099, 37.150416], [-81.892622, 37.150161], [-81.892214, 37.149946], [-81.891844, 37.149797], [-81.891504, 37.149744], [-81.891083, 37.149699], [-81.890772, 37.149655], [-81.890514, 37.14949], [-81.890325, 37.149359], [-81.889935, 37.149233], [-81.889635, 37.149197], [-81.889209, 37.149369], [-81.888607, 37.149886], [-81.888294, 37.150286], [-81.888198, 37.150408], [-81.888107, 37.150412], [-81.888033, 37.150416], [-81.886608, 37.15049], [-81.885664, 37.150856], [-81.885658, 37.150862], [-81.885595, 37.150921], [-81.885524, 37.150947], [-81.882253, 37.152122], [-81.881745, 37.15209], [-81.881467, 37.15211], [-81.881188, 37.152158], [-81.880111, 37.152347], [-81.880094, 37.152345], [-81.880086, 37.152342], [-81.879908, 37.152214], [-81.879696, 37.152061], [-81.879687, 37.152055], [-81.879272, 37.151757], [-81.879257, 37.151746], [-81.879049, 37.151605], [-81.878991, 37.151532], [-81.878924, 37.151434], [-81.878429, 37.151673], [-81.878087, 37.151916], [-81.878081, 37.15192], [-81.878069, 37.151929], [-81.878056, 37.151939], [-81.877899, 37.152057], [-81.877892, 37.152062], [-81.877853, 37.152091], [-81.877669, 37.152217], [-81.877587, 37.152244], [-81.877556, 37.152254], [-81.877549, 37.152256], [-81.877477, 37.152279], [-81.876914, 37.152297], [-81.876729, 37.152311], [-81.876715, 37.152312], [-81.876708, 37.152313], [-81.876562, 37.152324], [-81.87623, 37.15232], [-81.876013, 37.15231], [-81.875848, 37.15234], [-81.875753, 37.152374], [-81.875728, 37.152383], [-81.875696, 37.152394], [-81.875642, 37.152452], [-81.875627, 37.152468], [-81.875619, 37.152476], [-81.875553, 37.152546], [-81.875508, 37.152596], [-81.875496, 37.15261], [-81.875477, 37.152631], [-81.875349, 37.152823], [-81.875327, 37.152855], [-81.875201, 37.153044], [-81.875198, 37.153049], [-81.875152, 37.153118], [-81.875143, 37.153132], [-81.87499, 37.153363], [-81.874985, 37.15337], [-81.874981, 37.153377], [-81.874965, 37.153401], [-81.874942, 37.153435], [-81.874933, 37.153448], [-81.874901, 37.153496], [-81.874846, 37.153578], [-81.874666, 37.153865], [-81.874474, 37.153968], [-81.874292, 37.154031], [-81.874061, 37.154036], [-81.873829, 37.154058], [-81.873649, 37.154032], [-81.873458, 37.15403], [-81.873336, 37.154125], [-81.873213, 37.154302], [-81.8731, 37.154438], [-81.872927, 37.15459], [-81.872875, 37.154678], [-81.872733, 37.154798], [-81.87262, 37.154893], [-81.872589, 37.154906], [-81.872347, 37.155004], [-81.871668, 37.155046], [-81.871608, 37.155081], [-81.871561, 37.155127], [-81.871446, 37.155322], [-81.871442, 37.155328], [-81.87136, 37.155468], [-81.871331, 37.155504], [-81.871279, 37.155575], [-81.871185, 37.155703], [-81.871138, 37.155729], [-81.87067, 37.155989], [-81.870372, 37.156155], [-81.870209, 37.156205], [-81.870007, 37.156267], [-81.869892, 37.156429], [-81.869731, 37.156653], [-81.869396, 37.156858], [-81.868234, 37.157169], [-81.868078, 37.157282], [-81.867881, 37.157424], [-81.867807, 37.157528], [-81.86769, 37.157691], [-81.867255, 37.157714], [-81.867186, 37.157735], [-81.867127, 37.157767], [-81.867087, 37.157801], [-81.867073, 37.157817], [-81.867063, 37.157829], [-81.866925, 37.158046], [-81.866891, 37.158081], [-81.8668, 37.158147], [-81.866752, 37.158202], [-81.866717, 37.158276], [-81.866687, 37.15837], [-81.866659, 37.158425], [-81.866639, 37.158463], [-81.866574, 37.158549], [-81.866428, 37.15866], [-81.866213, 37.158806], [-81.866451, 37.158961], [-81.866703, 37.159125], [-81.86746, 37.159637], [-81.867507, 37.159649], [-81.867675, 37.159752], [-81.867865, 37.159837], [-81.868341, 37.160049], [-81.868466, 37.160087], [-81.868597, 37.16011], [-81.868731, 37.160118], [-81.868937, 37.160106], [-81.869028, 37.160113], [-81.869116, 37.160134], [-81.869181, 37.160162], [-81.869234, 37.160213], [-81.869277, 37.160286], [-81.86936, 37.16055], [-81.869406, 37.160633], [-81.86948, 37.160723], [-81.869542, 37.160778], [-81.86963, 37.160836], [-81.869707, 37.160874], [-81.869811, 37.160911], [-81.869876, 37.160927], [-81.870201, 37.160974], [-81.870281, 37.160998], [-81.87034, 37.161026], [-81.870404, 37.161071], [-81.870456, 37.161125], [-81.870486, 37.161174], [-81.87051, 37.16124], [-81.870542, 37.161455], [-81.87056, 37.1615], [-81.870572, 37.161529], [-81.870619, 37.161597], [-81.870681, 37.161656], [-81.870725, 37.161687], [-81.87089, 37.161777], [-81.870867, 37.161807], [-81.870803, 37.161891], [-81.870767, 37.161938], [-81.870574, 37.162193], [-81.87072, 37.162509], [-81.870889, 37.162647], [-81.87109, 37.162618], [-81.871318, 37.162585], [-81.871377, 37.162576], [-81.871394, 37.16273], [-81.871397, 37.162737], [-81.871414, 37.162778], [-81.871428, 37.162797], [-81.871591, 37.162939], [-81.871749, 37.163055], [-81.871824, 37.163115], [-81.871843, 37.163174], [-81.871853, 37.163204], [-81.871859, 37.163223], [-81.872093, 37.163954], [-81.872149, 37.16413], [-81.872183, 37.164236], [-81.872266, 37.164496], [-81.872302, 37.164569], [-81.872343, 37.164651], [-81.872311, 37.164791], [-81.872185, 37.165193], [-81.871906, 37.165635], [-81.871729, 37.166012], [-81.871605, 37.166221], [-81.871482, 37.166373], [-81.87133, 37.166493], [-81.871198, 37.16658], [-81.871042, 37.166613], [-81.870919, 37.166638], [-81.870848, 37.166653], [-81.870719, 37.166635], [-81.870669, 37.166643], [-81.870617, 37.16667], [-81.8706, 37.166697], [-81.870596, 37.166734], [-81.870619, 37.166794], [-81.870615, 37.166844], [-81.870614, 37.166851], [-81.870591, 37.166896], [-81.870452, 37.167045], [-81.870293, 37.167181], [-81.870037, 37.167401], [-81.869844, 37.167566], [-81.869716, 37.167668], [-81.86936, 37.167781], [-81.868997, 37.167818], [-81.868676, 37.167823], [-81.868435, 37.167813], [-81.868245, 37.167771], [-81.868095, 37.167721], [-81.867964, 37.167728], [-81.867783, 37.167726], [-81.867651, 37.167781], [-81.86761, 37.167861], [-81.867608, 37.168015], [-81.867626, 37.168128], [-81.867633, 37.168281], [-81.867561, 37.16841], [-81.867409, 37.168521], [-81.867207, 37.168584], [-81.867015, 37.168638], [-81.866843, 37.168709], [-81.8665, 37.168779], [-81.866239, 37.168776], [-81.866009, 37.168693], [-81.865761, 37.168489], [-81.865454, 37.168212], [-81.865393, 37.168174], [-81.865377, 37.168164], [-81.86537, 37.16816], [-81.865255, 37.168089], [-81.865118, 37.168058], [-81.865109, 37.168056], [-81.864893, 37.168086], [-81.864806, 37.168135], [-81.864792, 37.168143], [-81.86464, 37.168229], [-81.864168, 37.168511], [-81.864133, 37.168522], [-81.864084, 37.168559], [-81.864005, 37.168663], [-81.863829, 37.16906], [-81.86382, 37.169061], [-81.86349, 37.169097], [-81.863198, 37.169127], [-81.862916, 37.169148], [-81.862634, 37.169137], [-81.862354, 37.169167], [-81.862057, 37.169406], [-81.861863, 37.169582], [-81.86157, 37.169686], [-81.861247, 37.169802], [-81.860884, 37.169822], [-81.860375, 37.17015], [-81.860261, 37.170258], [-81.860133, 37.17038], [-81.85983, 37.170619], [-81.859736, 37.170707], [-81.859686, 37.170753], [-81.859625, 37.170809], [-81.859613, 37.170831], [-81.859498, 37.171041], [-81.859396, 37.171243], [-81.859359, 37.171432], [-81.859341, 37.171526], [-81.859329, 37.171541], [-81.859262, 37.171623], [-81.859237, 37.171821], [-81.859184, 37.171966], [-81.859113, 37.172038], [-81.85909, 37.172191], [-81.859066, 37.172401], [-81.85881, 37.172689], [-81.858494, 37.172953], [-81.858239, 37.173201], [-81.858054, 37.173449], [-81.85797, 37.173674], [-81.857855, 37.173947], [-81.857701, 37.174123], [-81.857507, 37.174307], [-81.857314, 37.174451], [-81.856887, 37.174546], [-81.856568, 37.17452], [-81.856473, 37.174508], [-81.856465, 37.174507], [-81.856452, 37.174505], [-81.856329, 37.17449], [-81.856025, 37.174592], [-81.855761, 37.174743], [-81.855367, 37.174869], [-81.854944, 37.174897], [-81.854602, 37.174942], [-81.854398, 37.174999], [-81.854391, 37.175001], [-81.854238, 37.175043], [-81.854101, 37.174995], [-81.854095, 37.174993], [-81.853859, 37.174911], [-81.853508, 37.174867], [-81.852955, 37.174862], [-81.852726, 37.174738], [-81.85252, 37.174422], [-81.852202, 37.174162], [-81.851582, 37.17401], [-81.851043, 37.173771], [-81.850501, 37.173726], [-81.850121, 37.173601], [-81.849853, 37.173372], [-81.849604, 37.173241], [-81.849213, 37.173173], [-81.848923, 37.173137], [-81.848703, 37.173063], [-81.848544, 37.172908], [-81.848405, 37.172834], [-81.848204, 37.172832], [-81.847941, 37.17295], [-81.847657, 37.173093], [-81.847496, 37.173095], [-81.847454, 37.173095], [-81.847247, 37.173206], [-81.847125, 37.173213], [-81.845621, 37.17329], [-81.84557, 37.173293], [-81.845558, 37.173293], [-81.845551, 37.173294], [-81.845473, 37.173298], [-81.84538, 37.173322], [-81.845364, 37.173326], [-81.84535, 37.17333], [-81.845332, 37.173335], [-81.845318, 37.173339], [-81.8453, 37.173344], [-81.845271, 37.173352], [-81.84525, 37.173358], [-81.845099, 37.173399], [-81.844947, 37.17347], [-81.844584, 37.17358], [-81.844343, 37.173545], [-81.844001, 37.17355], [-81.843828, 37.17389], [-81.843806, 37.173903], [-81.843775, 37.173922], [-81.843714, 37.173972], [-81.843641, 37.174044], [-81.843519, 37.174192], [-81.843459, 37.174288], [-81.843446, 37.174308], [-81.843323, 37.174578], [-81.843223, 37.174756], [-81.843011, 37.175071], [-81.842744, 37.175241], [-81.842599, 37.175333], [-81.842246, 37.175557], [-81.842165, 37.175613], [-81.842106, 37.175655], [-81.84206, 37.175714], [-81.842035, 37.175765], [-81.841964, 37.175956], [-81.841932, 37.176025], [-81.841928, 37.176032], [-81.841875, 37.176127], [-81.84179, 37.176288], [-81.841566, 37.176511], [-81.841558, 37.176512], [-81.841537, 37.176517], [-81.841255, 37.176573], [-81.840922, 37.17652], [-81.840651, 37.176477], [-81.840604, 37.17647], [-81.840331, 37.176589], [-81.840152, 37.176667], [-81.839677, 37.176697], [-81.839639, 37.176735], [-81.839617, 37.17678], [-81.839612, 37.176831], [-81.839617, 37.176858], [-81.839639, 37.176977], [-81.839648, 37.177086], [-81.839638, 37.17715], [-81.839617, 37.177204], [-81.839486, 37.17738], [-81.839482, 37.177385], [-81.839352, 37.177559], [-81.839342, 37.177569], [-81.83917, 37.17774], [-81.839008, 37.177902], [-81.83866, 37.178083], [-81.838436, 37.1782], [-81.837406, 37.177994], [-81.836433, 37.177559], [-81.835993, 37.177549], [-81.83597, 37.177665], [-81.835939, 37.177881], [-81.835937, 37.177898], [-81.835901, 37.178022], [-81.835878, 37.178084], [-81.835782, 37.178405], [-81.835747, 37.178521], [-81.835461, 37.17875], [-81.834836, 37.178841], [-81.834488, 37.179002], [-81.833686, 37.179999], [-81.833659, 37.180032], [-81.833572, 37.180064], [-81.833475, 37.1801], [-81.833287, 37.18017], [-81.833149, 37.180161], [-81.832995, 37.180152], [-81.832915, 37.180147], [-81.832299, 37.179869], [-81.83223, 37.179833], [-81.831712, 37.179952], [-81.831376, 37.180068], [-81.831226, 37.180198], [-81.83096, 37.180395], [-81.830685, 37.180566], [-81.830414, 37.180649], [-81.830331, 37.180625], [-81.830173, 37.18061], [-81.829996, 37.180514], [-81.829966, 37.180519], [-81.829423, 37.180606], [-81.829194, 37.180537], [-81.828336, 37.180789], [-81.827535, 37.180743], [-81.826648, 37.1804], [-81.825418, 37.180254], [-81.825103, 37.180217], [-81.82453, 37.179896], [-81.823586, 37.179645], [-81.822842, 37.179027], [-81.822241, 37.178821], [-81.821661, 37.178804], [-81.821441, 37.178797], [-81.821441, 37.178865], [-81.821427, 37.178877], [-81.821313, 37.178974], [-81.821254, 37.179025], [-81.821245, 37.179032], [-81.821217, 37.179056], [-81.82061, 37.179326], [-81.820345, 37.179404], [-81.820335, 37.179409], [-81.82028, 37.179433], [-81.820274, 37.179436], [-81.820258, 37.179443], [-81.819812, 37.179641], [-81.819506, 37.179771], [-81.819499, 37.179774], [-81.819271, 37.179941], [-81.819157, 37.180128], [-81.819145, 37.180148], [-81.819075, 37.180263], [-81.818932, 37.180382], [-81.818534, 37.180506], [-81.818401, 37.18053], [-81.818368, 37.180536], [-81.81836, 37.180537], [-81.818349, 37.180539], [-81.81829, 37.18055], [-81.818198, 37.180567], [-81.818063, 37.180592], [-81.817867, 37.180657], [-81.817738, 37.180722], [-81.817728, 37.180727], [-81.817609, 37.18094], [-81.816973, 37.181211], [-81.816867, 37.181278], [-81.816822, 37.181311], [-81.816804, 37.181324], [-81.816799, 37.181328], [-81.816768, 37.181351], [-81.816675, 37.181433], [-81.816608, 37.181508], [-81.816566, 37.181555], [-81.816484, 37.181639], [-81.816451, 37.181683], [-81.816268, 37.181958], [-81.816097, 37.18218], [-81.815988, 37.182294], [-81.815872, 37.182405], [-81.815623, 37.182571], [-81.815592, 37.182591], [-81.815434, 37.182696], [-81.814602, 37.182891], [-81.814496, 37.182916], [-81.814385, 37.182942], [-81.81435, 37.18295], [-81.81415, 37.183098], [-81.814042, 37.183195], [-81.814019, 37.183215], [-81.813977, 37.183261], [-81.813929, 37.183327], [-81.813716, 37.183675], [-81.8134, 37.184148], [-81.813336, 37.184237], [-81.813295, 37.184284], [-81.813233, 37.184316], [-81.812893, 37.184491], [-81.812864, 37.184504], [-81.812778, 37.184541], [-81.812704, 37.184589], [-81.812623, 37.184661], [-81.812544, 37.184753], [-81.812424, 37.184928], [-81.812396, 37.184969], [-81.81237, 37.185015], [-81.812349, 37.185054], [-81.812333, 37.185083], [-81.812293, 37.185116], [-81.812004, 37.185349], [-81.811862, 37.18538], [-81.811712, 37.185346], [-81.811494, 37.185166], [-81.811372, 37.185094], [-81.811315, 37.18506], [-81.811025, 37.184843], [-81.810826, 37.184744], [-81.81007, 37.184935], [-81.809941, 37.184989], [-81.809907, 37.185015], [-81.809791, 37.185055], [-81.809693, 37.185269], [-81.808735, 37.18537], [-81.807648, 37.185393], [-81.806586, 37.184792], [-81.806526, 37.184758], [-81.806475, 37.184729], [-81.806397, 37.184623], [-81.806353, 37.184524], [-81.806257, 37.184309], [-81.806189, 37.184157], [-81.80576, 37.18379], [-81.805747, 37.183795], [-81.805393, 37.183927], [-81.80504, 37.184029], [-81.804696, 37.18413], [-81.804342, 37.184312], [-81.804139, 37.184415], [-81.803956, 37.184526], [-81.803783, 37.184654], [-81.80368, 37.184822], [-81.803647, 37.184983], [-81.803642, 37.185282], [-81.803638, 37.185507], [-81.803566, 37.185628], [-81.803282, 37.185762], [-81.802656, 37.185933], [-81.802233, 37.185953], [-81.801862, 37.185941], [-81.801512, 37.185817], [-81.801232, 37.185645], [-81.801013, 37.185513], [-81.800766, 37.185309], [-81.800436, 37.185153], [-81.799994, 37.18514], [-81.799692, 37.185202], [-81.799568, 37.185378], [-81.799434, 37.185586], [-81.799128, 37.185874], [-81.798785, 37.185927], [-81.798562, 37.185965], [-81.79822, 37.186026], [-81.797848, 37.186038], [-81.797566, 37.186084], [-81.797414, 37.186155], [-81.797197, 37.186508], [-81.796804, 37.187166], [-81.796384, 37.187621], [-81.796005, 37.188069], [-81.795535, 37.188517], [-81.79515, 37.188658], [-81.794867, 37.188776], [-81.794795, 37.188864], [-81.794752, 37.189041], [-81.794679, 37.189202], [-81.794465, 37.189353], [-81.79405, 37.189526], [-81.793986, 37.189554], [-81.793916, 37.18955], [-81.793597, 37.189673], [-81.792337, 37.190108], [-81.791947, 37.190109], [-81.791726, 37.190109], [-81.791468, 37.189985], [-81.791469, 37.189959], [-81.79147, 37.189885], [-81.791475, 37.189613], [-81.79144, 37.189322], [-81.791321, 37.189224], [-81.791091, 37.189182], [-81.790809, 37.189163], [-81.790537, 37.189208], [-81.790335, 37.189263], [-81.790193, 37.189342], [-81.790091, 37.189454], [-81.789884, 37.189783], [-81.789702, 37.189878], [-81.789428, 37.18998], [-81.78914, 37.190065], [-81.789044, 37.190094], [-81.788903, 37.190136], [-81.788589, 37.190286], [-81.788314, 37.190485], [-81.78813, 37.190669], [-81.787936, 37.19078], [-81.787684, 37.190842], [-81.787442, 37.19088], [-81.787289, 37.190983], [-81.787225, 37.191224], [-81.787188, 37.191619], [-81.787107, 37.191675], [-81.78702, 37.19172], [-81.786953, 37.191755], [-81.786863, 37.191802], [-81.78669, 37.191929], [-81.786344, 37.192216], [-81.786138, 37.192456], [-81.785986, 37.192543], [-81.785692, 37.192686], [-81.785116, 37.192898], [-81.784851, 37.193088], [-81.784798, 37.193142], [-81.784714, 37.193226], [-81.784679, 37.193262], [-81.78443, 37.193583], [-81.784411, 37.193633], [-81.784409, 37.193638], [-81.784404, 37.193652], [-81.784351, 37.193789], [-81.784349, 37.193794], [-81.784346, 37.193801], [-81.784341, 37.193814], [-81.784332, 37.193838], [-81.784328, 37.193849], [-81.784263, 37.194019], [-81.78423, 37.194106], [-81.784224, 37.194149], [-81.784216, 37.194209], [-81.784128, 37.194846], [-81.784136, 37.194971], [-81.78398, 37.195291], [-81.783896, 37.19549], [-81.783749, 37.19579], [-81.783678, 37.195958], [-81.783669, 37.195994], [-81.783654, 37.196122], [-81.783663, 37.196214], [-81.783686, 37.19629], [-81.783732, 37.196387], [-81.783927, 37.196669], [-81.783966, 37.196737], [-81.784114, 37.196911], [-81.784143, 37.196945], [-81.784148, 37.196953], [-81.784327, 37.197255], [-81.784365, 37.197475], [-81.784402, 37.197685], [-81.784311, 37.197879], [-81.784285, 37.197933], [-81.784053, 37.198109], [-81.783788, 37.198283], [-81.783524, 37.198434], [-81.783503, 37.198444], [-81.783247, 37.198568], [-81.78323, 37.198576], [-81.782947, 37.198678], [-81.782514, 37.198714], [-81.781972, 37.198588], [-81.781712, 37.198512], [-81.781463, 37.198413], [-81.781352, 37.198404], [-81.781231, 37.198435], [-81.780965, 37.198682], [-81.780621, 37.198855], [-81.780257, 37.199024], [-81.780246, 37.199029], [-81.779983, 37.199097], [-81.779822, 37.199138], [-81.779684, 37.199173], [-81.779519, 37.199215], [-81.779406, 37.199225], [-81.779116, 37.199251], [-81.778923, 37.199184], [-81.778885, 37.199183], [-81.778853, 37.199182], [-81.778552, 37.199174], [-81.778504, 37.199173], [-81.778252, 37.199186], [-81.7781, 37.199306], [-81.778048, 37.199343], [-81.77793, 37.199429], [-81.777835, 37.199497], [-81.77758, 37.199696], [-81.777372, 37.200081], [-81.777177, 37.200361], [-81.776978, 37.200502], [-81.77677, 37.200648], [-81.77675, 37.200663], [-81.776454, 37.200886], [-81.776185, 37.201287], [-81.775925, 37.201753], [-81.775675, 37.202283], [-81.77547, 37.202495], [-81.775138, 37.202839], [-81.775068, 37.202911], [-81.774822, 37.202894], [-81.774732, 37.202888], [-81.774608, 37.202868], [-81.774532, 37.202874], [-81.774485, 37.202889], [-81.774442, 37.202912], [-81.774386, 37.202966], [-81.774365, 37.203002], [-81.774355, 37.203068], [-81.774365, 37.203138], [-81.774391, 37.203206], [-81.774435, 37.203269], [-81.774414, 37.203293], [-81.774303, 37.203423], [-81.773998, 37.203846], [-81.773956, 37.203894], [-81.773877, 37.203984], [-81.773693, 37.204038], [-81.773509, 37.204051], [-81.773363, 37.203994], [-81.773241, 37.20385], [-81.773142, 37.203731], [-81.773118, 37.203702], [-81.772948, 37.203703], [-81.77212, 37.203497], [-81.771313, 37.203048], [-81.77109, 37.202924], [-81.770262, 37.202718], [-81.769632, 37.202717], [-81.768631, 37.202877], [-81.768273, 37.202896], [-81.768202, 37.2029], [-81.768132, 37.202864], [-81.767573, 37.202579], [-81.766145, 37.201274], [-81.765949, 37.201172], [-81.765942, 37.201168], [-81.765573, 37.200976], [-81.764714, 37.200792], [-81.764027, 37.200769], [-81.763878, 37.200833], [-81.763295, 37.201083], [-81.761957, 37.201884], [-81.761737, 37.202072], [-81.761637, 37.20218], [-81.761552, 37.202297], [-81.761486, 37.202416], [-81.761446, 37.202514], [-81.761411, 37.20264], [-81.761393, 37.202768], [-81.761375, 37.203032], [-81.761378, 37.203245], [-81.761389, 37.203425], [-81.761386, 37.203481], [-81.761386, 37.203486], [-81.761383, 37.203553], [-81.761373, 37.203598], [-81.761114, 37.204028], [-81.760968, 37.204266], [-81.760905, 37.204367], [-81.760901, 37.204371], [-81.760888, 37.204395], [-81.760828, 37.204444], [-81.760067, 37.205061], [-81.759, 37.205614], [-81.75896, 37.205634], [-81.757813, 37.205987], [-81.757682, 37.206131], [-81.757631, 37.206204], [-81.757587, 37.206289], [-81.75739, 37.206666], [-81.75735, 37.206738], [-81.75714, 37.207122], [-81.757035, 37.20734], [-81.756929, 37.207612], [-81.756922, 37.207632], [-81.757012, 37.207726], [-81.757289, 37.208015], [-81.757417, 37.20817], [-81.757456, 37.208259], [-81.757442, 37.20846], [-81.757479, 37.208622], [-81.757585, 37.208808], [-81.757685, 37.20889], [-81.757733, 37.209068], [-81.75772, 37.209229], [-81.757686, 37.209471], [-81.757642, 37.209688], [-81.757668, 37.209914], [-81.757642, 37.209985], [-81.757606, 37.21008], [-81.757604, 37.210086], [-81.757588, 37.210131], [-81.757608, 37.210179], [-81.757626, 37.210273], [-81.757631, 37.210299], [-81.757622, 37.210345], [-81.757577, 37.210472], [-81.757282, 37.210859], [-81.756876, 37.211291], [-81.7567, 37.211478], [-81.756612, 37.211571], [-81.756555, 37.211602], [-81.756532, 37.21161], [-81.756494, 37.211711], [-81.756472, 37.211768], [-81.756301, 37.212214], [-81.756204, 37.212587], [-81.756063, 37.213014], [-81.755754, 37.21343], [-81.755636, 37.214387], [-81.755486, 37.214777], [-81.755526, 37.214824], [-81.755539, 37.21484], [-81.755603, 37.214917], [-81.755607, 37.214923], [-81.755629, 37.214961], [-81.755648, 37.214994], [-81.755693, 37.215134], [-81.75572, 37.21524], [-81.755731, 37.215285], [-81.755745, 37.21535], [-81.75575, 37.215366], [-81.755851, 37.215671], [-81.755989, 37.216025], [-81.75602, 37.216114], [-81.755834, 37.216375], [-81.755831, 37.21666], [-81.755831, 37.216674], [-81.755877, 37.217236], [-81.75587, 37.217647], [-81.755849, 37.217701], [-81.755765, 37.217918], [-81.755561, 37.218125], [-81.755504, 37.218193], [-81.755499, 37.218199], [-81.755495, 37.218204], [-81.755387, 37.218334], [-81.755382, 37.218357], [-81.755377, 37.218378], [-81.755376, 37.218383], [-81.755372, 37.218397], [-81.755343, 37.218524], [-81.755354, 37.219035], [-81.755354, 37.21908], [-81.755356, 37.219236], [-81.755357, 37.21943], [-81.755304, 37.219566], [-81.754707, 37.219899], [-81.754359, 37.220256], [-81.754185, 37.220465], [-81.754132, 37.220496], [-81.754106, 37.220511], [-81.754099, 37.220515], [-81.753978, 37.220585], [-81.753824, 37.220584], [-81.753468, 37.2206], [-81.753384, 37.220604], [-81.753375, 37.220606], [-81.753183, 37.220666], [-81.752989, 37.220825], [-81.752787, 37.220847], [-81.752628, 37.220813], [-81.752489, 37.220691], [-81.75223, 37.220567], [-81.75198, 37.220485], [-81.751698, 37.22053], [-81.751476, 37.220593], [-81.751163, 37.22071], [-81.7509, 37.220788], [-81.750497, 37.220816], [-81.750195, 37.220821], [-81.74984, 37.220993], [-81.749535, 37.221218], [-81.749303, 37.221451], [-81.749291, 37.221465], [-81.749035, 37.22177], [-81.748881, 37.222067], [-81.748727, 37.222265], [-81.748533, 37.222427], [-81.748252, 37.22258], [-81.748208, 37.222648], [-81.748138, 37.222778], [-81.748098, 37.222905], [-81.74763, 37.22327], [-81.747657, 37.223475], [-81.747338, 37.223574], [-81.747198, 37.223617], [-81.746477, 37.22384], [-81.745439, 37.223922], [-81.744719, 37.223983], [-81.744566, 37.223981], [-81.744544, 37.223989], [-81.744534, 37.223992], [-81.744523, 37.223996], [-81.744367, 37.224051], [-81.744324, 37.224066], [-81.74424, 37.224148], [-81.744035, 37.224349], [-81.74403, 37.224354], [-81.743714, 37.224689], [-81.743319, 37.224991], [-81.742971, 37.225114], [-81.742432, 37.225348], [-81.742386, 37.225368], [-81.742368, 37.225376], [-81.742353, 37.225382], [-81.742217, 37.225441], [-81.742089, 37.225497], [-81.741749, 37.225678], [-81.74171, 37.225699], [-81.741537, 37.225791], [-81.741507, 37.225807], [-81.741312, 37.225915], [-81.741229, 37.226095], [-81.741211, 37.226305], [-81.74121, 37.226315], [-81.741209, 37.22633], [-81.741207, 37.226353], [-81.741205, 37.226372], [-81.741173, 37.226744], [-81.740995, 37.226956], [-81.740672, 37.227209], [-81.740677, 37.227385], [-81.740677, 37.227397], [-81.740678, 37.227422], [-81.74068, 37.227476], [-81.74068, 37.227483], [-81.740723, 37.227948], [-81.740724, 37.227953], [-81.740676, 37.228386], [-81.740637, 37.228749], [-81.740634, 37.228777], [-81.740633, 37.228787], [-81.740632, 37.228792], [-81.740463, 37.229121], [-81.740359, 37.229371], [-81.740357, 37.229377], [-81.740353, 37.229387], [-81.740341, 37.229415], [-81.74033, 37.229459], [-81.740329, 37.229465], [-81.740328, 37.22947], [-81.740325, 37.229482], [-81.740323, 37.229489], [-81.740319, 37.229505], [-81.740279, 37.229671], [-81.740329, 37.229703], [-81.740376, 37.229748], [-81.740396, 37.229767], [-81.740412, 37.229783], [-81.740417, 37.229786], [-81.740589, 37.229899], [-81.740824, 37.230053], [-81.741356, 37.230384], [-81.741575, 37.23052], [-81.742314, 37.231034], [-81.742455, 37.23117], [-81.742409, 37.231326], [-81.742416, 37.231358], [-81.742427, 37.231406], [-81.742431, 37.231424], [-81.742475, 37.231542], [-81.742535, 37.231656], [-81.742668, 37.231842], [-81.742679, 37.231878], [-81.742699, 37.231916], [-81.742774, 37.232058], [-81.742683, 37.232706], [-81.742568, 37.232934], [-81.742545, 37.233001], [-81.742522, 37.233066], [-81.742434, 37.233146], [-81.74239, 37.23321], [-81.742364, 37.23328], [-81.742358, 37.23335], [-81.742368, 37.233455], [-81.742396, 37.233558], [-81.742447, 37.233668], [-81.742473, 37.233763], [-81.74248, 37.233873], [-81.742475, 37.233938], [-81.742466, 37.23404], [-81.742444, 37.234165], [-81.742443, 37.234172], [-81.742432, 37.234207], [-81.742339, 37.234466], [-81.742269, 37.234565], [-81.74224, 37.234606], [-81.742234, 37.234615], [-81.742158, 37.234612], [-81.741833, 37.234802], [-81.741498, 37.235001], [-81.74107, 37.2354], [-81.740683, 37.235727], [-81.740578, 37.236], [-81.740593, 37.236387], [-81.7407, 37.23671], [-81.740737, 37.237041], [-81.740673, 37.23729], [-81.740539, 37.237491], [-81.740244, 37.237698], [-81.740127, 37.237759], [-81.740287, 37.23827], [-81.740456, 37.238514], [-81.740604, 37.238708], [-81.740802, 37.239033], [-81.74093, 37.239227], [-81.740956, 37.239371], [-81.740957, 37.239379], [-81.740977, 37.239486], [-81.74097, 37.239729], [-81.74095, 37.239779], [-81.740901, 37.23992], [-81.740788, 37.240097], [-81.740695, 37.240297], [-81.740631, 37.240514], [-81.740699, 37.240724], [-81.740815, 37.24108], [-81.740982, 37.241428], [-81.74109, 37.241655], [-81.741368, 37.241907], [-81.742071, 37.242026], [-81.742864, 37.242179], [-81.743427, 37.242272], [-81.743808, 37.242372], [-81.744007, 37.242535], [-81.744235, 37.242828], [-81.744342, 37.243143], [-81.74438, 37.243337], [-81.744387, 37.243554], [-81.744343, 37.243796], [-81.744294, 37.244187], [-81.744219, 37.24428], [-81.744122, 37.244422], [-81.744038, 37.244658], [-81.744023, 37.244743], [-81.743962, 37.245293], [-81.743953, 37.245324], [-81.743921, 37.245446], [-81.743902, 37.245492], [-81.743869, 37.245569], [-81.743834, 37.245633], [-81.743806, 37.245677], [-81.743803, 37.245682], [-81.743799, 37.245687], [-81.743795, 37.245693], [-81.74379, 37.2457], [-81.743753, 37.245755], [-81.743567, 37.245959], [-81.743578, 37.24749], [-81.743662, 37.247569], [-81.743674, 37.247584], [-81.743703, 37.247623], [-81.743693, 37.247708], [-81.74362, 37.247932], [-81.743408, 37.248434], [-81.743325, 37.248673], [-81.743277, 37.248841], [-81.743248, 37.248996], [-81.743234, 37.249172], [-81.74323, 37.249392], [-81.743213, 37.249524], [-81.743182, 37.249664], [-81.743146, 37.249757], [-81.743142, 37.249768], [-81.743128, 37.249791], [-81.743083, 37.249867], [-81.743008, 37.249957], [-81.742967, 37.249995], [-81.742958, 37.250004], [-81.742903, 37.250056], [-81.742773, 37.250153], [-81.742756, 37.250165], [-81.742681, 37.250221], [-81.742647, 37.250242], [-81.742596, 37.250273], [-81.742519, 37.250368], [-81.742242, 37.250853], [-81.742133, 37.25099], [-81.742041, 37.251135], [-81.741993, 37.251225], [-81.741958, 37.251344], [-81.741913, 37.251543], [-81.741888, 37.251704], [-81.741883, 37.251721], [-81.741812, 37.25197], [-81.741775, 37.252078], [-81.741701, 37.252295], [-81.741625, 37.252517], [-81.741538, 37.25273], [-81.741461, 37.252872], [-81.741366, 37.253008], [-81.741337, 37.253042], [-81.741256, 37.253135], [-81.741207, 37.253183], [-81.741116, 37.253348], [-81.741043, 37.253518], [-81.741019, 37.253585], [-81.741016, 37.253593], [-81.740946, 37.253792], [-81.740905, 37.253966], [-81.740881, 37.254142], [-81.740879, 37.254231], [-81.740901, 37.254324], [-81.740944, 37.254416], [-81.74095, 37.25443], [-81.740965, 37.254451], [-81.741009, 37.254511], [-81.741067, 37.254571], [-81.741177, 37.254654], [-81.741315, 37.254739], [-81.741403, 37.254784], [-81.741596, 37.254857], [-81.741651, 37.254867], [-81.741687, 37.254874], [-81.74175, 37.254885], [-81.74215, 37.254923], [-81.742325, 37.254952], [-81.742495, 37.254993], [-81.74258, 37.255025], [-81.742705, 37.25509], [-81.742819, 37.255166], [-81.742922, 37.255253], [-81.743012, 37.25535], [-81.74311, 37.255477], [-81.743228, 37.255594], [-81.743307, 37.255655], [-81.743341, 37.255681], [-81.743465, 37.255756], [-81.743566, 37.255808], [-81.743647, 37.255864], [-81.743738, 37.255942], [-81.743816, 37.25603], [-81.743878, 37.256126], [-81.743925, 37.256228], [-81.743956, 37.256334], [-81.743931, 37.25647], [-81.743915, 37.256517], [-81.743892, 37.256582], [-81.743837, 37.256689], [-81.743716, 37.25686], [-81.743666, 37.256959], [-81.743638, 37.257045], [-81.743632, 37.257063], [-81.743626, 37.257112], [-81.74363, 37.257252], [-81.743637, 37.257304], [-81.743646, 37.257363], [-81.743683, 37.2575], [-81.743753, 37.257671], [-81.743787, 37.257719], [-81.743841, 37.257771], [-81.743908, 37.257814], [-81.743984, 37.257845], [-81.744049, 37.25786], [-81.744413, 37.257855], [-81.744538, 37.257874], [-81.744658, 37.257909], [-81.744782, 37.257956], [-81.744879, 37.257978], [-81.74498, 37.257987], [-81.745081, 37.257982], [-81.74518, 37.257962], [-81.745235, 37.257948], [-81.745279, 37.257937], [-81.745358, 37.257933], [-81.745437, 37.257942], [-81.745512, 37.257965], [-81.745578, 37.257999], [-81.745615, 37.258033], [-81.745664, 37.258101], [-81.745701, 37.258192], [-81.745711, 37.25827], [-81.745711, 37.258426], [-81.745689, 37.258613], [-81.74563, 37.25876], [-81.745603, 37.258862], [-81.745579, 37.259026], [-81.745567, 37.259234], [-81.74557, 37.259728], [-81.74558, 37.259885], [-81.745581, 37.259909], [-81.745584, 37.26008], [-81.745569, 37.260251], [-81.745548, 37.260364], [-81.745499, 37.260497], [-81.745486, 37.260521], [-81.74544, 37.260602], [-81.745366, 37.260701], [-81.745305, 37.260771], [-81.745268, 37.260845], [-81.745256, 37.260911], [-81.745261, 37.260978], [-81.745283, 37.261044], [-81.745476, 37.261352], [-81.745648, 37.261656], [-81.745761, 37.261816], [-81.745827, 37.26189], [-81.74584, 37.261904], [-81.745912, 37.261958], [-81.745993, 37.262001], [-81.746082, 37.262031], [-81.746165, 37.262046], [-81.746362, 37.262072], [-81.746413, 37.262092], [-81.74643, 37.262104], [-81.746466, 37.262139], [-81.746486, 37.262181], [-81.746491, 37.262216], [-81.746481, 37.262299], [-81.746453, 37.262379], [-81.74637, 37.262513], [-81.746295, 37.262661], [-81.74621, 37.262894], [-81.746136, 37.263149], [-81.746113, 37.263212], [-81.746043, 37.263405], [-81.746027, 37.263501], [-81.746028, 37.263598], [-81.746053, 37.263657], [-81.746094, 37.263709], [-81.746149, 37.263752], [-81.746215, 37.263784], [-81.746288, 37.263802], [-81.746349, 37.263807], [-81.746482, 37.263794], [-81.74666, 37.263776], [-81.747035, 37.263723], [-81.747244, 37.263687], [-81.747331, 37.263687], [-81.747416, 37.263701], [-81.747495, 37.263729], [-81.747565, 37.26377], [-81.747682, 37.263849], [-81.747757, 37.263918], [-81.747783, 37.263948], [-81.747838, 37.264028], [-81.747864, 37.264079], [-81.747926, 37.264224], [-81.747942, 37.264263], [-81.748309, 37.264168], [-81.748832, 37.264046], [-81.749214, 37.264037], [-81.749465, 37.264061], [-81.749836, 37.264088], [-81.750111, 37.264193], [-81.750291, 37.26454], [-81.750542, 37.264799], [-81.750652, 37.264912], [-81.750773, 37.265009], [-81.751065, 37.26497], [-81.751159, 37.265039], [-81.751242, 37.265049], [-81.751298, 37.265065], [-81.751322, 37.265076], [-81.751411, 37.265115], [-81.751515, 37.265178], [-81.751542, 37.2652], [-81.751606, 37.265252], [-81.751822, 37.265457], [-81.751889, 37.265528], [-81.752127, 37.265575], [-81.752342, 37.265618], [-81.752573, 37.265764], [-81.752642, 37.266103], [-81.752813, 37.266264], [-81.752916, 37.266621], [-81.752945, 37.266723], [-81.752973, 37.266733], [-81.753611, 37.266979], [-81.753715, 37.267035], [-81.753733, 37.267048], [-81.75381, 37.267102], [-81.754022, 37.267273], [-81.754109, 37.267327], [-81.754275, 37.26741], [-81.75438, 37.267452], [-81.754451, 37.267481], [-81.754597, 37.26753], [-81.754712, 37.267556], [-81.754822, 37.267595], [-81.754942, 37.267659], [-81.755023, 37.267718], [-81.755029, 37.267722], [-81.755387, 37.267577], [-81.755559, 37.267513], [-81.755821, 37.267458], [-81.756042, 37.267547], [-81.756323, 37.267781], [-81.756625, 37.268], [-81.756896, 37.268234], [-81.757248, 37.268421], [-81.75758, 37.268559], [-81.75765, 37.268841], [-81.757528, 37.269155], [-81.757486, 37.269486], [-81.757535, 37.270017], [-81.757562, 37.270311], [-81.75757, 37.270335], [-81.757608, 37.270466], [-81.757642, 37.270585], [-81.757713, 37.270871], [-81.757714, 37.270877], [-81.757744, 37.271077], [-81.757749, 37.271128], [-81.757754, 37.271171], [-81.757758, 37.271193], [-81.757843, 37.271325], [-81.757892, 37.271591], [-81.757807, 37.271781], [-81.757808, 37.27182], [-81.757803, 37.271924], [-81.757795, 37.272082], [-81.757735, 37.272738], [-81.757721, 37.2731], [-81.75768, 37.273552], [-81.757678, 37.273704], [-81.75767, 37.273757], [-81.757634, 37.27401], [-81.757491, 37.274187], [-81.757228, 37.274605], [-81.756964, 37.275169], [-81.756952, 37.275693], [-81.756991, 37.27608], [-81.757141, 37.276154], [-81.757247, 37.276164], [-81.757286, 37.276168], [-81.757313, 37.27617], [-81.757877, 37.276139], [-81.758411, 37.276237], [-81.758743, 37.276262], [-81.758913, 37.276105], [-81.758924, 37.276095], [-81.759279, 37.27561], [-81.759563, 37.275264], [-81.759805, 37.275176], [-81.760184, 37.275253], [-81.760194, 37.27525], [-81.760223, 37.275248], [-81.76029, 37.275242], [-81.760366, 37.275245], [-81.76046, 37.275261], [-81.760548, 37.275292], [-81.760826, 37.275391], [-81.761038, 37.275475], [-81.761137, 37.275514], [-81.761467, 37.275624], [-81.761654, 37.275677], [-81.76173, 37.27571], [-81.761752, 37.275719], [-81.762, 37.275827], [-81.762292, 37.275828], [-81.762675, 37.275675], [-81.762711, 37.275577], [-81.762816, 37.275524], [-81.762995, 37.275416], [-81.763175, 37.275325], [-81.763379, 37.275258], [-81.763548, 37.275226], [-81.763688, 37.275219], [-81.763825, 37.275231], [-81.76384, 37.275225], [-81.76444, 37.274987], [-81.765199, 37.275106], [-81.765282, 37.275119], [-81.765401, 37.275043], [-81.765663, 37.274855], [-81.76572, 37.274814], [-81.765726, 37.27481], [-81.765765, 37.274781], [-81.766259, 37.274469], [-81.766627, 37.274288], [-81.766775, 37.274222], [-81.766894, 37.274169], [-81.767106, 37.274109], [-81.76713, 37.274102], [-81.767273, 37.274091], [-81.767388, 37.27409], [-81.767508, 37.274105], [-81.767661, 37.274141], [-81.76778, 37.274182], [-81.7678, 37.274189], [-81.767851, 37.274218], [-81.767899, 37.274194], [-81.768403, 37.27394], [-81.768625, 37.27378], [-81.768706, 37.27357], [-81.768868, 37.273313], [-81.769221, 37.273257], [-81.769583, 37.273314], [-81.769725, 37.273404], [-81.769803, 37.273477], [-81.769846, 37.273517], [-81.769864, 37.273535], [-81.769983, 37.2737], [-81.772723, 37.274321], [-81.77283, 37.274224], [-81.772836, 37.27422], [-81.772956, 37.274128], [-81.773248, 37.273919], [-81.773601, 37.274001], [-81.773872, 37.274195], [-81.773865, 37.274396], [-81.773863, 37.274423], [-81.773854, 37.274513], [-81.773911, 37.274731], [-81.774208, 37.274834], [-81.774626, 37.274718], [-81.774651, 37.274734], [-81.775181, 37.274835], [-81.775392, 37.275021], [-81.775704, 37.27507], [-81.776076, 37.275281], [-81.776297, 37.275467], [-81.776841, 37.275476], [-81.777214, 37.275558], [-81.777241, 37.275639], [-81.777279, 37.27575], [-81.777286, 37.275771], [-81.777323, 37.27588], [-81.777493, 37.276292], [-81.777734, 37.276591], [-81.77816, 37.276809], [-81.778181, 37.276821], [-81.778843, 37.277128], [-81.779153, 37.277272], [-81.779307, 37.277371], [-81.779354, 37.277401], [-81.779363, 37.277423], [-81.779415, 37.277548], [-81.779464, 37.277667], [-81.779392, 37.278175], [-81.779367, 37.278315], [-81.779279, 37.27882], [-81.779267, 37.279352], [-81.779331, 37.279761], [-81.779366, 37.279989], [-81.779637, 37.280304], [-81.779972, 37.280466], [-81.780068, 37.280513], [-81.780422, 37.280685], [-81.780996, 37.280775], [-81.781162, 37.28078], [-81.781338, 37.280785], [-81.78155, 37.280728], [-81.781791, 37.281003], [-81.781817, 37.281585], [-81.782128, 37.281949], [-81.782162, 37.281989], [-81.782452, 37.282327], [-81.783126, 37.282587], [-81.783549, 37.282588], [-81.783702, 37.282545], [-81.78375, 37.282531], [-81.783822, 37.282511], [-81.783837, 37.282507], [-81.783862, 37.2825], [-81.783961, 37.282445], [-81.784346, 37.282235], [-81.784649, 37.282268], [-81.785021, 37.282333], [-81.78516, 37.282641], [-81.785181, 37.282688], [-81.785291, 37.283011], [-81.785462, 37.283237], [-81.786036, 37.283263], [-81.786076, 37.283256], [-81.786146, 37.283244], [-81.786248, 37.283227], [-81.786505, 37.283179], [-81.786611, 37.283167], [-81.786622, 37.283173], [-81.786902, 37.283321], [-81.786902, 37.283539], [-81.786907, 37.283656], [-81.786909, 37.283704], [-81.786911, 37.28374], [-81.786921, 37.283958], [-81.787223, 37.284056], [-81.787726, 37.284105], [-81.787795, 37.284154], [-81.787907, 37.284235], [-81.788412, 37.284357], [-81.788774, 37.28435], [-81.789036, 37.284415], [-81.789298, 37.284423], [-81.78952, 37.284238], [-81.789974, 37.284143], [-81.790206, 37.284095], [-81.790236, 37.284022], [-81.790238, 37.284016], [-81.790251, 37.283971], [-81.790318, 37.283748], [-81.790324, 37.283671], [-81.790328, 37.283613], [-81.790338, 37.28349], [-81.790673, 37.28312], [-81.791006, 37.282911], [-81.791349, 37.282799], [-81.791462, 37.282681], [-81.791751, 37.282381], [-81.791814, 37.282011], [-81.791837, 37.281863], [-81.791866, 37.281672], [-81.792127, 37.281519], [-81.792702, 37.281311], [-81.793126, 37.281175], [-81.793267, 37.281256], [-81.793414, 37.281341], [-81.79355, 37.281626], [-81.793636, 37.281807], [-81.793669, 37.281877], [-81.793693, 37.281969], [-81.79372, 37.282072], [-81.793643, 37.282195], [-81.793404, 37.282578], [-81.793201, 37.283191], [-81.793119, 37.283545], [-81.793299, 37.284303], [-81.793378, 37.284634], [-81.793599, 37.284845], [-81.794019, 37.284803], [-81.794083, 37.284797], [-81.794456, 37.284717], [-81.794778, 37.284605], [-81.794785, 37.284608], [-81.79483, 37.284624], [-81.794903, 37.28465], [-81.795322, 37.2848], [-81.795543, 37.285002], [-81.796198, 37.285133], [-81.797316, 37.285208], [-81.798122, 37.285258], [-81.7983, 37.285174], [-81.798485, 37.285089], [-81.798658, 37.28488], [-81.798686, 37.284853], [-81.798899, 37.284639], [-81.799131, 37.284712], [-81.799473, 37.284882], [-81.799504, 37.284997], [-81.799508, 37.285011], [-81.799535, 37.285109], [-81.799633, 37.285334], [-81.799965, 37.285496], [-81.800347, 37.285642], [-81.80068, 37.285683], [-81.801164, 37.285474], [-81.801201, 37.285377], [-81.801207, 37.285362], [-81.801222, 37.285322], [-81.801346, 37.285144], [-81.801648, 37.285129], [-81.80195, 37.285194], [-81.802167, 37.28536], [-81.802223, 37.285404], [-81.802351, 37.285534], [-81.802494, 37.285679], [-81.802997, 37.285857], [-81.803279, 37.285923], [-81.803984, 37.285923], [-81.804729, 37.285933], [-81.805385, 37.285628], [-81.805418, 37.285484], [-81.805421, 37.285471], [-81.805498, 37.28512], [-81.805635, 37.284772], [-81.805791, 37.284581], [-81.806275, 37.284364], [-81.806699, 37.283994], [-81.806882, 37.283641], [-81.806974, 37.283391], [-81.807236, 37.283182], [-81.807639, 37.283199], [-81.807911, 37.283288], [-81.808204, 37.283103], [-81.808547, 37.282983], [-81.809173, 37.283009], [-81.809186, 37.283004], [-81.809474, 37.282902], [-81.809598, 37.282869], [-81.809756, 37.282839], [-81.809879, 37.282839], [-81.809976, 37.282851], [-81.81012, 37.282884], [-81.810192, 37.282901], [-81.81034, 37.282921], [-81.810489, 37.282927], [-81.810685, 37.282921], [-81.810849, 37.282902], [-81.811041, 37.28286], [-81.811073, 37.282847], [-81.81108, 37.282844], [-81.811207, 37.282793], [-81.811364, 37.282713], [-81.811391, 37.282697], [-81.811516, 37.282632], [-81.81166, 37.282548], [-81.811797, 37.282465], [-81.811911, 37.282395], [-81.812246, 37.282237], [-81.812305, 37.282219], [-81.812521, 37.282151], [-81.812589, 37.28213], [-81.812736, 37.282084], [-81.812871, 37.282001], [-81.812906, 37.281979], [-81.812896, 37.281936], [-81.812894, 37.281928], [-81.81289, 37.281911], [-81.812887, 37.2819], [-81.812862, 37.281791], [-81.812812, 37.281517], [-81.812974, 37.281243], [-81.813226, 37.281098], [-81.813771, 37.280954], [-81.814259, 37.280972], [-81.814312, 37.280982], [-81.814435, 37.281004], [-81.814779, 37.280755], [-81.815192, 37.280699], [-81.815655, 37.280733], [-81.815938, 37.280587], [-81.816069, 37.280306], [-81.816283, 37.280016], [-81.816706, 37.279872], [-81.817412, 37.279809], [-81.817804, 37.279931], [-81.818096, 37.279923], [-81.81815, 37.279978], [-81.818167, 37.279996], [-81.818257, 37.280077], [-81.818439, 37.280013], [-81.81862, 37.27986], [-81.819014, 37.27957], [-81.819629, 37.279418], [-81.820193, 37.27946], [-81.820506, 37.279415], [-81.820619, 37.27941], [-81.820926, 37.279397], [-81.82112, 37.279389], [-81.821463, 37.279398], [-81.821724, 37.279644], [-81.821921, 37.27974], [-81.821952, 37.279755], [-81.822016, 37.279786], [-81.822267, 37.279867], [-81.822761, 37.279901], [-81.823173, 37.279799], [-81.823226, 37.279786], [-81.82326, 37.279765], [-81.82327, 37.279759], [-81.823547, 37.279628], [-81.823759, 37.279637], [-81.824021, 37.279694], [-81.824394, 37.27963], [-81.824657, 37.279596], [-81.824969, 37.279556], [-81.825069, 37.279543], [-81.825102, 37.27949], [-81.82514, 37.27943], [-81.825594, 37.279108], [-81.825755, 37.2791], [-81.825855, 37.279318], [-81.826065, 37.280165], [-81.826346, 37.280722], [-81.826527, 37.280739], [-81.826759, 37.280699], [-81.827403, 37.280797], [-81.827776, 37.28079], [-81.827997, 37.280976], [-81.828269, 37.28125], [-81.82851, 37.281477], [-81.828862, 37.281485], [-81.829014, 37.281357], [-81.829377, 37.281212], [-81.829401, 37.281214], [-81.829689, 37.281237], [-81.829981, 37.281302], [-81.830345, 37.281158], [-81.830547, 37.281038], [-81.830829, 37.280973], [-81.831131, 37.280958], [-81.831574, 37.281112], [-81.831738, 37.281307], [-81.831826, 37.281411], [-81.831844, 37.281509], [-81.831845, 37.281517], [-81.831852, 37.28156], [-81.831875, 37.281685], [-81.831936, 37.281725], [-81.832141, 37.281708], [-81.83276, 37.281651], [-81.833248, 37.281622], [-81.83394, 37.281529], [-81.834474, 37.281769], [-81.834624, 37.282078], [-81.834544, 37.282667], [-81.834391, 37.283094], [-81.833865, 37.283399], [-81.833811, 37.283646], [-81.833804, 37.283682], [-81.833789, 37.283709], [-81.833768, 37.283736], [-81.833757, 37.28375], [-81.833744, 37.283767], [-81.833511, 37.284067], [-81.833409, 37.284544], [-81.833413, 37.284557], [-81.833562, 37.285019], [-81.833701, 37.285108], [-81.833902, 37.285237], [-81.834436, 37.285424], [-81.834822, 37.285469], [-81.83506, 37.285496], [-81.835289, 37.285417], [-81.835297, 37.285414], [-81.835313, 37.285409], [-81.835331, 37.285403], [-81.83538, 37.285386], [-81.835463, 37.285357], [-81.835493, 37.285347], [-81.835524, 37.285336], [-81.836007, 37.285337], [-81.836403, 37.285628], [-81.836783, 37.285771], [-81.836833, 37.28579], [-81.836924, 37.285823], [-81.837276, 37.286033], [-81.837598, 37.28609], [-81.838112, 37.28618], [-81.838302, 37.286256], [-81.838469, 37.286324], [-81.838494, 37.286334], [-81.838525, 37.286336], [-81.838766, 37.28635], [-81.839028, 37.286174], [-81.839402, 37.285973], [-81.839694, 37.285997], [-81.839966, 37.286079], [-81.840369, 37.286095], [-81.840893, 37.285855], [-81.841206, 37.285678], [-81.841246, 37.285655], [-81.841276, 37.285638], [-81.841369, 37.285509], [-81.841499, 37.285332], [-81.841842, 37.28526], [-81.841976, 37.285242], [-81.842083, 37.285228], [-81.842243, 37.285309], [-81.842268, 37.285396], [-81.842272, 37.28541], [-81.84235, 37.285431], [-81.842368, 37.285439], [-81.842589, 37.285535], [-81.842641, 37.285554], [-81.842651, 37.285558], [-81.842791, 37.285607], [-81.842899, 37.285625], [-81.842996, 37.285628], [-81.843009, 37.285629], [-81.843119, 37.285618], [-81.843174, 37.285606], [-81.843203, 37.285599], [-81.843293, 37.285565], [-81.843324, 37.285555], [-81.843695, 37.285433], [-81.844169, 37.285369], [-81.844563, 37.285265], [-81.845017, 37.285096], [-81.845157, 37.285201], [-81.845464, 37.285249], [-81.84551, 37.285315], [-81.845973, 37.285356], [-81.846284, 37.28535], [-81.846505, 37.285237], [-81.846528, 37.285162], [-81.846534, 37.285144], [-81.846637, 37.284802], [-81.846811, 37.284656], [-81.847234, 37.28477], [-81.847395, 37.284838], [-81.847425, 37.284851], [-81.847498, 37.284882], [-81.847566, 37.284964], [-81.847858, 37.284948], [-81.84812, 37.284909], [-81.84818, 37.284989], [-81.848321, 37.285191], [-81.848542, 37.285401], [-81.848774, 37.285442], [-81.848938, 37.285374], [-81.849151, 37.285339], [-81.849211, 37.285329], [-81.849246, 37.285323], [-81.849349, 37.285299], [-81.849356, 37.285297], [-81.849671, 37.285202], [-81.849953, 37.285234], [-81.850124, 37.285452], [-81.850244, 37.285783], [-81.850082, 37.286097], [-81.84987, 37.286411], [-81.849799, 37.286887], [-81.849842, 37.287153], [-81.849848, 37.287193], [-81.849861, 37.287276], [-81.849969, 37.287436], [-81.85015, 37.287557], [-81.851026, 37.287583], [-81.851299, 37.287535], [-81.85155, 37.287559], [-81.852155, 37.28773], [-81.852316, 37.287779], [-81.852416, 37.287803], [-81.852658, 37.287763], [-81.852809, 37.287704], [-81.853322, 37.287628], [-81.853445, 37.287633], [-81.853557, 37.287713], [-81.853634, 37.288174], [-81.853781, 37.289048], [-81.853928, 37.289711], [-81.854069, 37.290044], [-81.854081, 37.290397], [-81.854028, 37.290778], [-81.854063, 37.291215], [-81.854299, 37.291888], [-81.854312, 37.291926], [-81.854264, 37.292147], [-81.854191, 37.292353], [-81.854149, 37.292472], [-81.853996, 37.292865], [-81.853949, 37.293032], [-81.853923, 37.293196], [-81.853911, 37.293274], [-81.853849, 37.293576], [-81.853705, 37.294068], [-81.853689, 37.294154], [-81.853642, 37.294205], [-81.853201, 37.294675], [-81.853042, 37.295257], [-81.852683, 37.295964], [-81.852377, 37.29631], [-81.852286, 37.296582], [-81.852318, 37.296671], [-81.852319, 37.296694], [-81.852454, 37.297363], [-81.852477, 37.297446], [-81.852481, 37.297571], [-81.852487, 37.297712], [-81.852506, 37.297809], [-81.852707, 37.298011], [-81.852848, 37.298116], [-81.853149, 37.298204], [-81.85333, 37.298277], [-81.853533, 37.298279], [-81.853698, 37.298168], [-81.853784, 37.298069], [-81.853806, 37.298045], [-81.853877, 37.297969], [-81.854121, 37.297886], [-81.854447, 37.297876], [-81.854621, 37.29792], [-81.854845, 37.298038], [-81.854867, 37.29826], [-81.85493, 37.298597], [-81.854944, 37.298905], [-81.855006, 37.299094], [-81.855051, 37.299465], [-81.854994, 37.29977], [-81.854914, 37.299861], [-81.854527, 37.300008], [-81.854514, 37.300018], [-81.854473, 37.300049], [-81.854298, 37.300157], [-81.854216, 37.30022], [-81.854147, 37.300292], [-81.854132, 37.300315], [-81.854114, 37.300343], [-81.854092, 37.300405], [-81.85375, 37.300774], [-81.853757, 37.301236], [-81.853812, 37.301528], [-81.85398, 37.301927], [-81.853991, 37.3023], [-81.853978, 37.302544], [-81.854126, 37.302698], [-81.854291, 37.30289], [-81.854322, 37.302925], [-81.85435, 37.302957], [-81.854531, 37.303441], [-81.85457, 37.303812], [-81.854529, 37.304102], [-81.854448, 37.304464], [-81.854347, 37.304819], [-81.854303, 37.304927], [-81.854298, 37.304939], [-81.854205, 37.305166], [-81.854157, 37.305233], [-81.854083, 37.305431], [-81.854143, 37.305633], [-81.854264, 37.305883], [-81.854384, 37.306182], [-81.854404, 37.306303], [-81.854464, 37.306577], [-81.854756, 37.306747], [-81.854973, 37.306754], [-81.855015, 37.306756], [-81.855528, 37.306776], [-81.855602, 37.306779], [-81.856036, 37.306749], [-81.856408, 37.306591], [-81.856489, 37.306553], [-81.856566, 37.306517], [-81.857206, 37.306219], [-81.858033, 37.305737], [-81.858377, 37.305514], [-81.858413, 37.305491], [-81.858931, 37.305158], [-81.859284, 37.304873], [-81.859316, 37.304847], [-81.859436, 37.304747], [-81.859628, 37.304772], [-81.859849, 37.304958], [-81.86003, 37.305208], [-81.860252, 37.305402], [-81.860705, 37.30554], [-81.861249, 37.305597], [-81.862035, 37.305655], [-81.862259, 37.305874], [-81.862588, 37.306478], [-81.864018, 37.307319], [-81.864036, 37.307381], [-81.864049, 37.307426], [-81.864058, 37.307456], [-81.864072, 37.307586], [-81.864087, 37.307714], [-81.864167, 37.307851], [-81.864349, 37.307941], [-81.8645, 37.308215], [-81.864764, 37.308411], [-81.864945, 37.308505], [-81.865092, 37.308582], [-81.865153, 37.308614], [-81.865251, 37.308692], [-81.865303, 37.308718], [-81.865317, 37.308745], [-81.865379, 37.308865], [-81.865556, 37.309209], [-81.865687, 37.309491], [-81.865525, 37.309813], [-81.865433, 37.310127], [-81.865282, 37.310401], [-81.864999, 37.310788], [-81.864514, 37.311287], [-81.864009, 37.311867], [-81.863716, 37.312237], [-81.863212, 37.312438], [-81.862798, 37.312687], [-81.862324, 37.31292], [-81.861931, 37.313016], [-81.861608, 37.313096], [-81.861487, 37.313306], [-81.861234, 37.313523], [-81.86077, 37.313732], [-81.860164, 37.313827], [-81.859932, 37.313972], [-81.859821, 37.314149], [-81.859871, 37.314319], [-81.859961, 37.314593], [-81.860051, 37.314932], [-81.860151, 37.315351], [-81.860271, 37.315722], [-81.860493, 37.315949], [-81.860839, 37.316117], [-81.860884, 37.316139], [-81.861098, 37.31624], [-81.86139, 37.316168], [-81.861673, 37.316144], [-81.861935, 37.316169], [-81.862106, 37.316314], [-81.862226, 37.316645], [-81.862387, 37.316992], [-81.862648, 37.317371], [-81.86291, 37.317549], [-81.863393, 37.317953], [-81.863745, 37.318276], [-81.864047, 37.31847], [-81.864174, 37.318527], [-81.864951, 37.318876], [-81.864984, 37.318891], [-81.865205, 37.319045], [-81.865507, 37.319343], [-81.865587, 37.319521], [-81.865607, 37.319698], [-81.865718, 37.319795], [-81.86602, 37.319787], [-81.866234, 37.319811], [-81.866292, 37.319755], [-81.866485, 37.319763], [-81.866533, 37.319763], [-81.866675, 37.319764], [-81.866867, 37.319788], [-81.867058, 37.319877], [-81.867098, 37.320039], [-81.867037, 37.320216], [-81.867039, 37.320235], [-81.867043, 37.320274], [-81.867059, 37.320423], [-81.867077, 37.320579], [-81.867198, 37.320724], [-81.867429, 37.320845], [-81.867974, 37.320814], [-81.868821, 37.32059], [-81.869143, 37.320582], [-81.869728, 37.320502], [-81.870183, 37.320674], [-81.870289, 37.320782], [-81.870324, 37.320818], [-81.870363, 37.320858], [-81.870443, 37.321068], [-81.870694, 37.321423], [-81.870925, 37.32173], [-81.871046, 37.322004], [-81.871267, 37.322303], [-81.871539, 37.322295], [-81.871943, 37.32224], [-81.872255, 37.322208], [-81.872456, 37.322369], [-81.872728, 37.32266], [-81.87297, 37.322975], [-81.872949, 37.32308], [-81.872666, 37.323321], [-81.872474, 37.323651], [-81.872423, 37.324119], [-81.872432, 37.324149], [-81.872434, 37.324155], [-81.872448, 37.324204], [-81.872461, 37.324248], [-81.87249, 37.324347], [-81.872514, 37.324431], [-81.872543, 37.32453], [-81.873016, 37.325008], [-81.873217, 37.325073], [-81.87336, 37.325119], [-81.873371, 37.325138], [-81.873567, 37.325474], [-81.873664, 37.325642], [-81.8737, 37.325727], [-81.873716, 37.325815], [-81.873714, 37.325919], [-81.873721, 37.326001], [-81.873748, 37.326088], [-81.873769, 37.326129], [-81.873843, 37.326201], [-81.873977, 37.326356], [-81.874036, 37.326465], [-81.874101, 37.326612], [-81.874119, 37.326652], [-81.874141, 37.326812], [-81.874138, 37.327073], [-81.874124, 37.327198], [-81.874092, 37.327322], [-81.87406, 37.327393], [-81.874005, 37.327485], [-81.873992, 37.327534], [-81.873996, 37.327585], [-81.874017, 37.327633], [-81.874063, 37.327681], [-81.874308, 37.32782], [-81.874736, 37.328078], [-81.874868, 37.328158], [-81.874922, 37.328181], [-81.874995, 37.328197], [-81.875071, 37.3282], [-81.875146, 37.328188], [-81.875194, 37.328169], [-81.875282, 37.32811], [-81.875357, 37.32804], [-81.875528, 37.327826], [-81.875541, 37.32781], [-81.875699, 37.327611], [-81.875738, 37.327582], [-81.875763, 37.327569], [-81.875812, 37.327544], [-81.875894, 37.327519], [-81.875943, 37.327513], [-81.875981, 37.327508], [-81.876117, 37.32751], [-81.87624, 37.327527], [-81.876336, 37.327551], [-81.876739, 37.327702], [-81.876812, 37.327729], [-81.876909, 37.327782], [-81.877054, 37.327862], [-81.877155, 37.32795], [-81.87721, 37.328016], [-81.877266, 37.328105], [-81.877437, 37.328512], [-81.877508, 37.328636], [-81.877597, 37.328753], [-81.877649, 37.328803], [-81.877712, 37.328841], [-81.877774, 37.328863], [-81.877831, 37.328875], [-81.87791, 37.328877], [-81.877941, 37.328872], [-81.878018, 37.328858], [-81.878184, 37.328834], [-81.878252, 37.328826], [-81.878327, 37.328835], [-81.878349, 37.328837], [-81.878112, 37.330246], [-81.877989, 37.33048], [-81.877929, 37.330595], [-81.877744, 37.330816], [-81.87765, 37.330911], [-81.877527, 37.331036], [-81.87738, 37.331216], [-81.877325, 37.331426], [-81.877471, 37.331625], [-81.877675, 37.331742], [-81.877849, 37.331796], [-81.878142, 37.331698], [-81.878228, 37.331669], [-81.878407, 37.331586], [-81.878598, 37.331591], [-81.87869, 37.331662], [-81.878717, 37.33176], [-81.878721, 37.331912], [-81.878956, 37.332007], [-81.879004, 37.332037], [-81.879093, 37.332107], [-81.8791, 37.332113], [-81.879172, 37.332192], [-81.879306, 37.332461], [-81.879321, 37.332479], [-81.879358, 37.3325], [-81.879401, 37.332507], [-81.879437, 37.332503], [-81.879476, 37.332486], [-81.879504, 37.332458], [-81.879513, 37.332424], [-81.879513, 37.332354], [-81.879487, 37.332261], [-81.87948, 37.332196], [-81.87949, 37.332131], [-81.879518, 37.33207], [-81.879523, 37.332064], [-81.879562, 37.332015], [-81.879623, 37.33197], [-81.87966, 37.331928], [-81.879713, 37.331789], [-81.879724, 37.331767], [-81.879739, 37.331735], [-81.879825, 37.331594], [-81.879835, 37.331578], [-81.879932, 37.331454], [-81.880037, 37.331345], [-81.88018, 37.331226], [-81.880292, 37.331179], [-81.880411, 37.331144], [-81.880986, 37.331041], [-81.881209, 37.33078], [-81.881565, 37.330516], [-81.88189, 37.330262], [-81.88218, 37.33016], [-81.882482, 37.330172], [-81.882704, 37.330192], [-81.882835, 37.33019], [-81.882965, 37.33018], [-81.883154, 37.330072], [-81.883304, 37.330054], [-81.883596, 37.330065], [-81.883841, 37.330198], [-81.884064, 37.330258], [-81.884328, 37.330351], [-81.884492, 37.330461], [-81.884796, 37.33052], [-81.884836, 37.330541], [-81.884889, 37.330514], [-81.885038, 37.33045], [-81.885049, 37.330446], [-81.885167, 37.330404], [-81.885369, 37.330366], [-81.885575, 37.33034], [-81.885794, 37.330328], [-81.885983, 37.330328], [-81.886219, 37.330341], [-81.886279, 37.330355], [-81.886373, 37.330377], [-81.886522, 37.330426], [-81.886546, 37.330437], [-81.886558, 37.330442], [-81.886663, 37.330488], [-81.886915, 37.33066], [-81.886975, 37.3307], [-81.887054, 37.330754], [-81.887131, 37.3308], [-81.887266, 37.330867], [-81.88741, 37.330922], [-81.887662, 37.330991], [-81.887782, 37.331036], [-81.88779, 37.33104], [-81.887813, 37.331052], [-81.887872, 37.331081], [-81.887975, 37.331148], [-81.888249, 37.331375], [-81.888439, 37.331521], [-81.888542, 37.331579], [-81.888655, 37.331626], [-81.888747, 37.331652], [-81.888775, 37.33166], [-81.889018, 37.33168], [-81.889312, 37.331684], [-81.889459, 37.331697], [-81.889603, 37.331724], [-81.889692, 37.331754], [-81.889713, 37.331754], [-81.890012, 37.331835], [-81.890221, 37.331876], [-81.890352, 37.331885], [-81.890482, 37.33188], [-81.890611, 37.331861], [-81.890691, 37.331837], [-81.890785, 37.331796], [-81.8909, 37.331729], [-81.89102, 37.331672], [-81.891046, 37.331663], [-81.89115, 37.331628], [-81.891206, 37.331614], [-81.891213, 37.331608], [-81.891589, 37.331306], [-81.891935, 37.331083], [-81.892155, 37.330875], [-81.892405, 37.330559], [-81.892524, 37.330387], [-81.892671, 37.330232], [-81.89288, 37.330137], [-81.892919, 37.330119], [-81.893033, 37.329997], [-81.893286, 37.329905], [-81.893341, 37.329892], [-81.893442, 37.329868], [-81.893585, 37.329852], [-81.893704, 37.329922], [-81.893726, 37.329967], [-81.893784, 37.329982], [-81.893888, 37.330023], [-81.893992, 37.330097], [-81.894065, 37.330165], [-81.894173, 37.330291], [-81.894316, 37.330438], [-81.894331, 37.330454], [-81.894504, 37.330608], [-81.894729, 37.330785], [-81.89484, 37.330894], [-81.894935, 37.331013], [-81.894993, 37.33111], [-81.895016, 37.331162], [-81.895048, 37.331235], [-81.895055, 37.331261], [-81.895089, 37.331389], [-81.895096, 37.331476], [-81.895008, 37.331533], [-81.894949, 37.331587], [-81.894794, 37.331781], [-81.894781, 37.33181], [-81.894774, 37.331862], [-81.894781, 37.331903], [-81.894806, 37.33195], [-81.894847, 37.331991], [-81.894891, 37.332016], [-81.894961, 37.332041], [-81.895021, 37.332051], [-81.895098, 37.332052], [-81.895173, 37.332038], [-81.89539, 37.331957], [-81.895421, 37.331968], [-81.895478, 37.331975], [-81.895499, 37.331978], [-81.89556, 37.331985], [-81.8957, 37.331987], [-81.895709, 37.331986], [-81.895926, 37.331965], [-81.896005, 37.331966], [-81.896104, 37.331975], [-81.896498, 37.331977], [-81.896793, 37.332101], [-81.896874, 37.332155], [-81.897335, 37.332463], [-81.897342, 37.332476], [-81.897367, 37.332523], [-81.897386, 37.332558], [-81.897442, 37.332661], [-81.897747, 37.333221], [-81.89794, 37.333677], [-81.897302, 37.333897], [-81.896817, 37.334203], [-81.896683, 37.334392], [-81.896632, 37.334464], [-81.896603, 37.334907], [-81.896631, 37.33531], [-81.896636, 37.33539], [-81.896825, 37.336095], [-81.897011, 37.33668], [-81.897062, 37.336765], [-81.897152, 37.336921], [-81.897195, 37.337002], [-81.8972, 37.33701], [-81.898467, 37.33929], [-81.898916, 37.339556], [-81.899168, 37.339566], [-81.899303, 37.339547], [-81.899357, 37.339539], [-81.899559, 37.339511], [-81.899681, 37.339581], [-81.899725, 37.33971], [-81.89979, 37.33996], [-81.899768, 37.340268], [-81.899668, 37.340715], [-81.899664, 37.340733], [-81.899657, 37.34084], [-81.899661, 37.340886], [-81.899663, 37.340903], [-81.899498, 37.341108], [-81.899448, 37.341186], [-81.899426, 37.34142], [-81.899605, 37.341614], [-81.899951, 37.34191], [-81.900499, 37.342079], [-81.901061, 37.342038], [-81.901814, 37.341986], [-81.902183, 37.341893], [-81.902234, 37.34188], [-81.902323, 37.341858], [-81.902536, 37.341783], [-81.902667, 37.341797], [-81.902894, 37.341987], [-81.902979, 37.342171], [-81.902993, 37.34232], [-81.903008, 37.342331], [-81.903149, 37.342435], [-81.903303, 37.342565], [-81.903405, 37.34267], [-81.903516, 37.342813], [-81.903588, 37.342888], [-81.903613, 37.342915], [-81.903717, 37.343002], [-81.903779, 37.34304], [-81.903793, 37.343046], [-81.903822, 37.343098], [-81.903899, 37.343233], [-81.90401, 37.343248], [-81.90417, 37.343213], [-81.904285, 37.343155], [-81.904309, 37.343143], [-81.90443, 37.343082], [-81.904685, 37.342891], [-81.905013, 37.342717], [-81.905949, 37.342782], [-81.906272, 37.342771], [-81.906369, 37.342751], [-81.906403, 37.342744], [-81.906531, 37.342645], [-81.906852, 37.3426], [-81.907165, 37.342643], [-81.907269, 37.342779], [-81.907281, 37.342852], [-81.907288, 37.342891], [-81.907422, 37.342976], [-81.907462, 37.343002], [-81.907569, 37.343088], [-81.907653, 37.343179], [-81.907749, 37.343305], [-81.907823, 37.343427], [-81.907907, 37.343541], [-81.908029, 37.34367], [-81.908151, 37.343801], [-81.908421, 37.343849], [-81.908535, 37.34387], [-81.908667, 37.343932], [-81.908712, 37.344148], [-81.908636, 37.344326], [-81.90845, 37.34457], [-81.908329, 37.344641], [-81.90829, 37.344664], [-81.908124, 37.344761], [-81.907946, 37.344885], [-81.90785, 37.345039], [-81.907915, 37.345231], [-81.908211, 37.345388], [-81.908848, 37.345275], [-81.908904, 37.345266], [-81.908972, 37.345255], [-81.909173, 37.345244], [-81.909537, 37.345303], [-81.909652, 37.345462], [-81.90964, 37.345539], [-81.909617, 37.345666], [-81.909561, 37.345984], [-81.909472, 37.346286], [-81.909538, 37.346904], [-81.909607, 37.347808], [-81.909608, 37.347823], [-81.909628, 37.348078], [-81.909749, 37.348463], [-81.909977, 37.348749], [-81.910224, 37.348962], [-81.910375, 37.348952], [-81.91089, 37.348766], [-81.910941, 37.348747], [-81.911005, 37.348725], [-81.911138, 37.348732], [-81.911406, 37.348754], [-81.911784, 37.349172], [-81.911873, 37.349275], [-81.911955, 37.349346], [-81.912061, 37.349352], [-81.912333, 37.349316], [-81.912579, 37.349284], [-81.91263, 37.349277], [-81.912795, 37.349256], [-81.913266, 37.349176], [-81.913458, 37.349213], [-81.913731, 37.349281], [-81.91426, 37.349551], [-81.914413, 37.34956], [-81.914615, 37.349597], [-81.914857, 37.349601], [-81.915047, 37.349581], [-81.915135, 37.349475], [-81.915144, 37.349411], [-81.915152, 37.349354], [-81.915349, 37.349158], [-81.915571, 37.349194], [-81.915846, 37.349327], [-81.916129, 37.349386], [-81.916493, 37.349421], [-81.916682, 37.349353], [-81.916782, 37.349288], [-81.916821, 37.349262], [-81.91693, 37.349196], [-81.91718, 37.349127], [-81.917451, 37.349123], [-81.917488, 37.34913], [-81.917654, 37.34916], [-81.917798, 37.349294], [-81.917831, 37.349423], [-81.918037, 37.349572], [-81.917762, 37.350369], [-81.917711, 37.350463], [-81.917586, 37.35065], [-81.917573, 37.35067], [-81.917537, 37.350723], [-81.917544, 37.351005], [-81.917728, 37.351123], [-81.91786, 37.351153], [-81.917946, 37.351227], [-81.918199, 37.351445], [-81.91825, 37.351847], [-81.91824, 37.352242], [-81.91845, 37.352568], [-81.9186, 37.352944], [-81.918878, 37.353165], [-81.919413, 37.353245], [-81.919897, 37.353286], [-81.920283, 37.353409], [-81.920441, 37.353672], [-81.920647, 37.35428], [-81.920654, 37.354399], [-81.920657, 37.354453], [-81.920681, 37.354851], [-81.920711, 37.355359], [-81.920741, 37.355408], [-81.920828, 37.355553], [-81.920901, 37.355652], [-81.920926, 37.355685], [-81.92095, 37.355715], [-81.920985, 37.355758], [-81.921022, 37.355801], [-81.921061, 37.355845], [-81.921152, 37.356011], [-81.921234, 37.356156], [-81.921574, 37.356428], [-81.921625, 37.356704], [-81.921766, 37.35708], [-81.922256, 37.357338], [-81.923242, 37.357725], [-81.9235, 37.357962], [-81.923636, 37.358177], [-81.92382, 37.358279], [-81.92409, 37.358211], [-81.924364, 37.357925], [-81.924509, 37.357542], [-81.92453, 37.357418], [-81.924536, 37.357383], [-81.924541, 37.35735], [-81.925034, 37.356948], [-81.925306, 37.356976], [-81.926273, 37.357943], [-81.926311, 37.358078], [-81.926412, 37.358355], [-81.926484, 37.358522], [-81.926574, 37.358683], [-81.926595, 37.358714], [-81.926645, 37.358817], [-81.926749, 37.359033], [-81.927099, 37.359757], [-81.927486, 37.359936], [-81.928146, 37.360167], [-81.928466, 37.360468], [-81.928501, 37.360652], [-81.928467, 37.360878], [-81.928199, 37.361414], [-81.927835, 37.36216], [-81.927587, 37.362767], [-81.927576, 37.362794], [-81.927551, 37.362857], [-81.927372, 37.36331], [-81.927322, 37.364132], [-81.927187, 37.364335], [-81.926949, 37.364492], [-81.926701, 37.364625], [-81.926664, 37.3647], [-81.92655, 37.364922], [-81.926448, 37.365065], [-81.926224, 37.365196], [-81.926187, 37.365218], [-81.926083, 37.365278], [-81.926006, 37.365384], [-81.926024, 37.365441], [-81.926049, 37.36552], [-81.926193, 37.365639], [-81.92668, 37.365768], [-81.927026, 37.365816], [-81.927195, 37.365814], [-81.92732, 37.365806], [-81.927403, 37.3658], [-81.927774, 37.365774], [-81.928333, 37.365855], [-81.928678, 37.36597], [-81.928838, 37.366043], [-81.928862, 37.366055], [-81.928866, 37.366241], [-81.928921, 37.366393], [-81.929083, 37.366422], [-81.929333, 37.366386], [-81.929659, 37.36641], [-81.929811, 37.366456], [-81.929911, 37.366601], [-81.92993, 37.366629], [-81.929977, 37.36662], [-81.929989, 37.366625], [-81.930025, 37.366641], [-81.930078, 37.366723], [-81.930084, 37.366741], [-81.930198, 37.366735], [-81.930311, 37.36673], [-81.930434, 37.366791], [-81.930568, 37.367027], [-81.930879, 37.3674], [-81.931219, 37.367676], [-81.931562, 37.368089], [-81.931956, 37.368558], [-81.93256, 37.368951], [-81.932979, 37.369186], [-81.933386, 37.369348], [-81.933334, 37.369655], [-81.933239, 37.369898], [-81.933198, 37.370261], [-81.933239, 37.370671], [-81.933178, 37.371018], [-81.933089, 37.371502], [-81.932944, 37.372092], [-81.93306, 37.3723], [-81.933377, 37.372512], [-81.933783, 37.37265], [-81.933899, 37.372754], [-81.934031, 37.372872], [-81.933978, 37.37317], [-81.933797, 37.373584], [-81.933415, 37.37396], [-81.932767, 37.374236], [-81.932166, 37.374342], [-81.931769, 37.374558], [-81.93121, 37.375118], [-81.931143, 37.375231], [-81.931064, 37.375473], [-81.931147, 37.375764], [-81.931451, 37.376013], [-81.931467, 37.376073], [-81.931575, 37.376488], [-81.93176, 37.377004], [-81.931819, 37.377051], [-81.932074, 37.377253], [-81.932102, 37.377259], [-81.932549, 37.377356], [-81.932924, 37.377685], [-81.933147, 37.377846], [-81.933884, 37.377803], [-81.93463, 37.377848], [-81.934965, 37.378137], [-81.935189, 37.378467], [-81.93537, 37.378453], [-81.935411, 37.37845], [-81.935876, 37.378561], [-81.93607, 37.378851], [-81.936379, 37.379738], [-81.936538, 37.380168], [-81.936748, 37.380737], [-81.936246, 37.381183], [-81.936087, 37.381514], [-81.93597, 37.382096], [-81.935874, 37.382863], [-81.935714, 37.383154], [-81.935001, 37.38365], [-81.934116, 37.384024], [-81.933252, 37.38469], [-81.93261, 37.385185], [-81.931815, 37.385486], [-81.931753, 37.385918], [-81.931728, 37.386092], [-81.931509, 37.386601], [-81.931735, 37.387198], [-81.93205, 37.38756], [-81.932112, 37.387575], [-81.932546, 37.387679], [-81.933062, 37.387983], [-81.933267, 37.388443], [-81.933462, 37.388918], [-81.933695, 37.389095], [-81.933605, 37.389224], [-81.933749, 37.389731], [-81.933853, 37.390095], [-81.933887, 37.390659], [-81.933175, 37.39142], [-81.933095, 37.3915], [-81.932837, 37.391756], [-81.932784, 37.391809], [-81.932725, 37.392043], [-81.932272, 37.39211], [-81.931656, 37.392097], [-81.930892, 37.392455], [-81.929906, 37.392887], [-81.929515, 37.393308], [-81.928992, 37.393536], [-81.928782, 37.393852], [-81.928966, 37.394206], [-81.929392, 37.394632], [-81.929323, 37.394882], [-81.929052, 37.395264], [-81.928973, 37.395375], [-81.928975, 37.395666], [-81.929279, 37.395907], [-81.929857, 37.396292], [-81.92993, 37.396703], [-81.929976, 37.396862], [-81.930054, 37.397131], [-81.929744, 37.397503], [-81.929141, 37.397957], [-81.928284, 37.398066], [-81.92814, 37.398291], [-81.928025, 37.39847], [-81.927931, 37.398585], [-81.927754, 37.398802], [-81.927948, 37.399181], [-81.928283, 37.399406], [-81.92871, 37.399815], [-81.928862, 37.39996], [-81.928856, 37.400167], [-81.928845, 37.400541], [-81.929057, 37.400605], [-81.929976, 37.400714], [-81.930215, 37.401022], [-81.930333, 37.401173], [-81.93079, 37.401663], [-81.930741, 37.401898], [-81.930353, 37.402731], [-81.930292, 37.402986], [-81.930159, 37.40354], [-81.930097, 37.403797], [-81.930234, 37.404636], [-81.930205, 37.40474], [-81.930046, 37.405298], [-81.929641, 37.4054], [-81.929492, 37.405438], [-81.928918, 37.405561], [-81.928794, 37.405649], [-81.928596, 37.405788], [-81.928509, 37.406337], [-81.928177, 37.40646], [-81.928048, 37.40652], [-81.927342, 37.406851], [-81.925768, 37.406881], [-81.925013, 37.407344], [-81.924955, 37.407342], [-81.924286, 37.407323], [-81.924483, 37.407584], [-81.92451, 37.40762], [-81.924603, 37.407991], [-81.924676, 37.40837], [-81.924588, 37.408483], [-81.924346, 37.408791], [-81.924449, 37.409122], [-81.924418, 37.40929], [-81.92439, 37.409437], [-81.924556, 37.409993], [-81.924153, 37.410221], [-81.923438, 37.410453], [-81.923398, 37.410466], [-81.923168, 37.410822], [-81.92296, 37.411396], [-81.923152, 37.411419], [-81.923485, 37.411386], [-81.92404, 37.411512], [-81.924728, 37.411744], [-81.925233, 37.411814], [-81.925942, 37.412143], [-81.926349, 37.412738], [-81.926805, 37.412922], [-81.927494, 37.413258], [-81.927821, 37.41379], [-81.928158, 37.414507], [-81.929047, 37.414608], [-81.929551, 37.414469], [-81.930036, 37.414556], [-81.93015, 37.414599], [-81.930223, 37.414678], [-81.930395, 37.41475], [-81.930455, 37.414798], [-81.930631, 37.414832], [-81.930758, 37.414829], [-81.931, 37.414811], [-81.931172, 37.414835], [-81.931219, 37.41489], [-81.932472, 37.415224], [-81.932802, 37.415582], [-81.932909, 37.415698], [-81.933644, 37.416882], [-81.933969, 37.417139], [-81.934293, 37.417412], [-81.934448, 37.417936], [-81.934555, 37.418888], [-81.934977, 37.420024], [-81.935239, 37.420103], [-81.935996, 37.42002], [-81.936954, 37.419927], [-81.937581, 37.420054], [-81.937884, 37.420093], [-81.93781, 37.421191], [-81.938062, 37.421529], [-81.938157, 37.421657], [-81.938916, 37.422009], [-81.938888, 37.422373], [-81.938912, 37.422954], [-81.938573, 37.423585], [-81.938294, 37.424054], [-81.938495, 37.424276], [-81.938578, 37.424367], [-81.939046, 37.424955], [-81.93912, 37.425455], [-81.939286, 37.426084], [-81.939543, 37.426777], [-81.940158, 37.428195], [-81.940306, 37.428428], [-81.940423, 37.428613], [-81.940557, 37.429065], [-81.940287, 37.429332], [-81.939937, 37.429874], [-81.939465, 37.430191], [-81.938831, 37.430581], [-81.938481, 37.431115], [-81.938334, 37.431697], [-81.937842, 37.432118], [-81.936913, 37.432146], [-81.936317, 37.432036], [-81.935651, 37.432006], [-81.935601, 37.432216], [-81.935826, 37.432514], [-81.935979, 37.43286], [-81.936614, 37.433187], [-81.936648, 37.433205], [-81.936713, 37.433314], [-81.936923, 37.433664], [-81.937178, 37.434002], [-81.937111, 37.434623], [-81.936843, 37.435286], [-81.936847, 37.435827], [-81.936778, 37.436053], [-81.936752, 37.436117], [-81.93655, 37.436174], [-81.935471, 37.436324], [-81.93532, 37.436397], [-81.935211, 37.436616], [-81.935213, 37.43693], [-81.93522, 37.436949], [-81.93548, 37.437687], [-81.935544, 37.438005], [-81.935625, 37.438404], [-81.935879, 37.438564], [-81.93596, 37.438725], [-81.936265, 37.43903], [-81.936802, 37.439342], [-81.936954, 37.43943], [-81.937793, 37.439669], [-81.938015, 37.439651], [-81.938086, 37.439812], [-81.938122, 37.439856], [-81.93832, 37.440102], [-81.938544, 37.440351], [-81.938847, 37.44047], [-81.939321, 37.440395], [-81.939569, 37.440324], [-81.939634, 37.440305], [-81.939689, 37.440318], [-81.939997, 37.440392], [-81.940644, 37.440494], [-81.941179, 37.440492], [-81.941642, 37.440417], [-81.941963, 37.440117], [-81.942094, 37.439963], [-81.942082, 37.439817], [-81.942072, 37.439697], [-81.942121, 37.439479], [-81.942243, 37.439648], [-81.942343, 37.439714], [-81.942537, 37.43984], [-81.94286, 37.439936], [-81.942996, 37.439932], [-81.943214, 37.439926], [-81.943617, 37.439956], [-81.943679, 37.439965], [-81.943941, 37.440003], [-81.944293, 37.439929], [-81.944606, 37.439879], [-81.945144, 37.439986], [-81.945202, 37.439998], [-81.945769, 37.440221], [-81.945831, 37.440495], [-81.945847, 37.44068], [-81.945896, 37.441252], [-81.945899, 37.441712], [-81.945981, 37.441825], [-81.946274, 37.441888], [-81.946799, 37.442022], [-81.947418, 37.442471], [-81.947805, 37.443074], [-81.947919, 37.443461], [-81.947901, 37.443864], [-81.947983, 37.444106], [-81.948379, 37.444523], [-81.948855, 37.44465], [-81.94916, 37.445028], [-81.949166, 37.445218], [-81.949172, 37.445391], [-81.949128, 37.445582], [-81.949371, 37.445694], [-81.949937, 37.445813], [-81.950817, 37.445963], [-81.951958, 37.445974], [-81.952898, 37.446196], [-81.95406, 37.446328], [-81.954114, 37.446372], [-81.954252, 37.446484], [-81.954284, 37.44651], [-81.954446, 37.446642], [-81.955095, 37.447034], [-81.955695, 37.447605], [-81.955988, 37.447716], [-81.95687, 37.44827], [-81.957429, 37.4488], [-81.957431, 37.449058], [-81.957583, 37.44913], [-81.957794, 37.448936], [-81.958184, 37.448482], [-81.958676, 37.448052], [-81.959424, 37.447944], [-81.960162, 37.448143], [-81.960597, 37.448222], [-81.960828, 37.448059], [-81.961133, 37.44782], [-81.961147, 37.447809], [-81.96121, 37.447759], [-81.961824, 37.447603], [-81.962032, 37.447652], [-81.96233, 37.447722], [-81.962947, 37.447881], [-81.963026, 37.447859], [-81.96336, 37.447766], [-81.964146, 37.447488], [-81.964276, 37.447522], [-81.964331, 37.447536], [-81.964404, 37.447555], [-81.964571, 37.447599], [-81.964843, 37.447477], [-81.96556, 37.446944], [-81.965586, 37.446925], [-81.966322, 37.446728], [-81.967019, 37.446838], [-81.967977, 37.4466], [-81.968524, 37.44684], [-81.969051, 37.447136], [-81.969658, 37.447408], [-81.970387, 37.447695], [-81.970474, 37.448574], [-81.970255, 37.448995], [-81.970058, 37.449374], [-81.97004, 37.449409], [-81.970016, 37.449456], [-81.969646, 37.44995], [-81.969346, 37.450331], [-81.969097, 37.45084], [-81.968799, 37.451503], [-81.969082, 37.451631], [-81.969467, 37.451799], [-81.969903, 37.452104], [-81.970268, 37.452256], [-81.970653, 37.45244], [-81.971169, 37.452647], [-81.971435, 37.452828], [-81.971758, 37.453048], [-81.972415, 37.453215], [-81.972669, 37.453407], [-81.972813, 37.45377], [-81.972967, 37.454116], [-81.973303, 37.454438], [-81.973558, 37.45488], [-81.973489, 37.455139], [-81.973339, 37.455333], [-81.973181, 37.455439], [-81.973163, 37.455451], [-81.973153, 37.455458], [-81.972997, 37.455561], [-81.97313, 37.455697], [-81.973282, 37.455858], [-81.973385, 37.456076], [-81.973406, 37.456197], [-81.973698, 37.456074], [-81.974364, 37.456039], [-81.974492, 37.456056], [-81.97478, 37.456095], [-81.974829, 37.456102], [-81.974835, 37.456117], [-81.974844, 37.456141], [-81.974932, 37.456367], [-81.975015, 37.456633], [-81.975308, 37.456713], [-81.975652, 37.456784], [-81.97618, 37.457193], [-81.976655, 37.457207], [-81.977503, 37.457187], [-81.978089, 37.457322], [-81.978654, 37.457223], [-81.979187, 37.457111], [-81.9794, 37.457066], [-81.980017, 37.457217], [-81.980258, 37.456981], [-81.980671, 37.45677], [-81.98141, 37.456147], [-81.981614, 37.455975], [-81.982412, 37.455613], [-81.982439, 37.4556], [-81.983094, 37.455234], [-81.984554, 37.45459], [-81.984895, 37.454322], [-81.985531, 37.454335], [-81.986209, 37.454526], [-81.98701, 37.454885], [-81.987538, 37.455343], [-81.987642, 37.455786], [-81.987735, 37.456093], [-81.98793, 37.456431], [-81.987817, 37.457468], [-81.987816, 37.45748], [-81.987633, 37.458668], [-81.987857, 37.458893], [-81.988223, 37.459222], [-81.988457, 37.459536], [-81.988905, 37.460042], [-81.989526, 37.460677], [-81.99, 37.460602], [-81.990839, 37.460776], [-81.991577, 37.460893], [-81.992274, 37.460923], [-81.992237, 37.461326], [-81.992433, 37.461866], [-81.992761, 37.462502], [-81.993427, 37.463879], [-81.993574, 37.464637], [-81.993322, 37.466059], [-81.993409, 37.466946], [-81.993141, 37.467529], [-81.993014, 37.468175], [-81.992976, 37.468457], [-81.993373, 37.468851], [-81.994021, 37.469154], [-81.994111, 37.469198], [-81.994152, 37.469218], [-81.994873, 37.46957], [-81.995653, 37.46984], [-81.99582, 37.470663], [-81.996079, 37.471533], [-81.996022, 37.47205], [-81.995711, 37.472229], [-81.995257, 37.472312], [-81.995308, 37.472473], [-81.995478, 37.472696], [-81.995507, 37.472735], [-81.995553, 37.472795], [-81.995537, 37.473311], [-81.995628, 37.47365], [-81.995682, 37.473851], [-81.995959, 37.474447], [-81.995942, 37.474646], [-81.995933, 37.474758], [-81.995913, 37.474996], [-81.995837, 37.475659], [-81.99595, 37.475835], [-81.99596, 37.47585], [-81.996164, 37.476166], [-81.996582, 37.476712], [-81.996503, 37.476931], [-81.996237, 37.477066], [-81.996222, 37.477073], [-81.9961, 37.477134], [-81.995859, 37.477413], [-81.99578, 37.477507], [-81.995601, 37.477887], [-81.994927, 37.478229], [-81.994563, 37.478473], [-81.993981, 37.478863], [-81.992978, 37.479804], [-81.993061, 37.480199], [-81.993155, 37.48057], [-81.992975, 37.480853], [-81.992746, 37.481225], [-81.992537, 37.481686], [-81.992528, 37.481832], [-81.992771, 37.482115], [-81.992803, 37.482153], [-81.992836, 37.482556], [-81.99292, 37.482976], [-81.992628, 37.48313], [-81.992401, 37.483181], [-81.99171, 37.483336], [-81.991517, 37.48358], [-81.99139, 37.483741], [-81.991231, 37.484138], [-81.9909, 37.484438], [-81.990265, 37.484618], [-81.989853, 37.484886], [-81.989659, 37.484918], [-81.989137, 37.485003], [-81.988047, 37.485177], [-81.987549, 37.485179], [-81.987138, 37.485181], [-81.986667, 37.485409], [-81.986584, 37.48545], [-81.985808, 37.485661], [-81.985707, 37.485688], [-81.984806, 37.485474], [-81.98454, 37.485246], [-81.984328, 37.485064], [-81.983863, 37.484978], [-81.983066, 37.485159], [-81.982278, 37.485114], [-81.98135, 37.48532], [-81.980331, 37.485454], [-81.979763, 37.485117], [-81.979173, 37.484611], [-81.978122, 37.484584], [-81.977597, 37.48461], [-81.977447, 37.484853], [-81.977407, 37.484918], [-81.977346, 37.48494], [-81.976833, 37.485122], [-81.976472, 37.485472], [-81.976444, 37.485826], [-81.976495, 37.486089], [-81.976518, 37.486205], [-81.976397, 37.486303], [-81.976206, 37.486456], [-81.976027, 37.486788], [-81.975948, 37.48724], [-81.975759, 37.487701], [-81.975175, 37.487873], [-81.973882, 37.487912], [-81.973236, 37.488004], [-81.972853, 37.488167], [-81.972522, 37.488499], [-81.972199, 37.488557], [-81.971664, 37.488568], [-81.971076, 37.488513], [-81.970663, 37.488475], [-81.970604, 37.488621], [-81.970707, 37.488959], [-81.970832, 37.489443], [-81.970734, 37.489911], [-81.9702, 37.490107], [-81.969515, 37.490377], [-81.968718, 37.490501], [-81.967707, 37.490506], [-81.967489, 37.490599], [-81.967133, 37.49075], [-81.966754, 37.491389], [-81.966633, 37.491562], [-81.966584, 37.491632], [-81.966636, 37.491898], [-81.96668, 37.492214], [-81.9667, 37.492358], [-81.966645, 37.492409], [-81.966348, 37.492682], [-81.965967, 37.493023], [-81.965327, 37.493334], [-81.96499, 37.493495], [-81.963929, 37.4935], [-81.963514, 37.493365], [-81.962547, 37.49305], [-81.961114, 37.492584], [-81.960346, 37.492555], [-81.960313, 37.492543], [-81.959587, 37.492292], [-81.959357, 37.492189], [-81.958411, 37.491764], [-81.958055, 37.491689], [-81.957217, 37.491511], [-81.955915, 37.491581], [-81.954369, 37.491684], [-81.953842, 37.491509], [-81.953268, 37.49177], [-81.952685, 37.492281], [-81.95276, 37.492886], [-81.952694, 37.493507], [-81.952739, 37.494169], [-81.953092, 37.494259], [-81.953174, 37.49428], [-81.953571, 37.494698], [-81.954171, 37.495309], [-81.954368, 37.496091], [-81.954273, 37.496979], [-81.954277, 37.497536], [-81.954078, 37.497994], [-81.953999, 37.498175], [-81.954032, 37.49861], [-81.953853, 37.499095], [-81.953896, 37.499434], [-81.954081, 37.499829], [-81.95389, 37.500117], [-81.953151, 37.501321], [-81.952645, 37.501685], [-81.951835, 37.502057], [-81.950549, 37.50226], [-81.949192, 37.502383], [-81.948321, 37.50227], [-81.94745, 37.502133], [-81.946335, 37.5019], [-81.945961, 37.501908], [-81.945353, 37.502272], [-81.944715, 37.502604], [-81.943916, 37.502936], [-81.943825, 37.503291], [-81.943897, 37.505683], [-81.944161, 37.506337], [-81.944192, 37.506983], [-81.943251, 37.508293], [-81.943049, 37.508616], [-81.942644, 37.508851], [-81.941439, 37.509312], [-81.941155, 37.50949], [-81.940801, 37.509442], [-81.940193, 37.509216], [-81.939453, 37.509508], [-81.938147, 37.510114], [-81.936547, 37.510479], [-81.935058, 37.510512], [-81.933428, 37.511248], [-81.932283, 37.511968], [-81.931918, 37.512211], [-81.92773, 37.512121], [-81.927685, 37.51212], [-81.92764, 37.512152], [-81.927399, 37.512372], [-81.927216, 37.512554], [-81.927054, 37.512718], [-81.926681, 37.513064], [-81.92644, 37.513328], [-81.926247, 37.513581], [-81.926171, 37.513778], [-81.926143, 37.513987], [-81.926162, 37.514066], [-81.926198, 37.514218], [-81.926254, 37.514377], [-81.926357, 37.51457], [-81.926416, 37.514647], [-81.926467, 37.514712], [-81.926729, 37.51496], [-81.926943, 37.515086], [-81.927053, 37.515163], [-81.927198, 37.515339], [-81.927302, 37.515377], [-81.927516, 37.515432], [-81.927771, 37.515526], [-81.928074, 37.515614], [-81.928281, 37.515685], [-81.928542, 37.515802], [-81.928943, 37.515982], [-81.929185, 37.516108], [-81.929343, 37.51618], [-81.929509, 37.516235], [-81.92964, 37.516251], [-81.929957, 37.516262], [-81.930137, 37.516306], [-81.930247, 37.51635], [-81.930461, 37.51646], [-81.930502, 37.516487], [-81.930585, 37.51657], [-81.93075, 37.51663], [-81.930957, 37.516746], [-81.931068, 37.516839], [-81.931364, 37.51713], [-81.931647, 37.51746], [-81.931806, 37.517619], [-81.932082, 37.518026], [-81.932185, 37.518147], [-81.932351, 37.518421], [-81.932792, 37.518993], [-81.93304, 37.519251], [-81.933206, 37.519377], [-81.933268, 37.51941], [-81.933358, 37.519443], [-81.933523, 37.519482], [-81.933744, 37.519498], [-81.934061, 37.519476], [-81.934179, 37.519454], [-81.934468, 37.519372], [-81.934492, 37.519362], [-81.93473, 37.519268], [-81.934792, 37.519229], [-81.934834, 37.519191], [-81.935006, 37.519009], [-81.935324, 37.518603], [-81.935496, 37.518306], [-81.935558, 37.518169], [-81.935606, 37.518009], [-81.935867, 37.517397], [-81.935896, 37.517328], [-81.935986, 37.517048], [-81.936013, 37.516889], [-81.936041, 37.516466], [-81.93603, 37.516295], [-81.936013, 37.515999], [-81.936103, 37.515427], [-81.93642, 37.514949], [-81.93642, 37.514894], [-81.936503, 37.514724], [-81.936669, 37.51446], [-81.937014, 37.514158], [-81.937393, 37.513845], [-81.937736, 37.513607], [-81.937765, 37.513587], [-81.938255, 37.513372], [-81.938739, 37.513102], [-81.938903, 37.51301], [-81.939007, 37.512965], [-81.939088, 37.512931], [-81.939168, 37.512897], [-81.939469, 37.512768], [-81.939993, 37.512598], [-81.940204, 37.512572], [-81.940642, 37.512521], [-81.940938, 37.512521], [-81.941352, 37.512477], [-81.941462, 37.512477], [-81.941911, 37.512504], [-81.942449, 37.512592], [-81.942621, 37.51263], [-81.943421, 37.512878], [-81.94378, 37.513026], [-81.944263, 37.513284], [-81.944659, 37.513578], [-81.944752, 37.513647], [-81.944821, 37.513746], [-81.944821, 37.513927], [-81.944801, 37.514114], [-81.944677, 37.514229], [-81.944635, 37.514306], [-81.944649, 37.514367], [-81.944718, 37.514487], [-81.944752, 37.514564], [-81.944877, 37.514773], [-81.944954, 37.514932], [-81.945015, 37.515059], [-81.945035, 37.515075], [-81.945056, 37.51518], [-81.945056, 37.515295], [-81.945084, 37.515377], [-81.945187, 37.515603], [-81.945318, 37.515822], [-81.945415, 37.516075], [-81.945449, 37.516229], [-81.945453, 37.516357], [-81.945456, 37.51641], [-81.945442, 37.51652], [-81.945374, 37.51673], [-81.945325, 37.516883], [-81.945208, 37.517141], [-81.945029, 37.517388], [-81.944953, 37.517503], [-81.944691, 37.517899], [-81.944553, 37.518081], [-81.944529, 37.518121], [-81.944153, 37.518767], [-81.944091, 37.518971], [-81.943989, 37.519107], [-81.943884, 37.519245], [-81.943774, 37.519421], [-81.943677, 37.519553], [-81.943587, 37.519647], [-81.943511, 37.519795], [-81.943463, 37.52002], [-81.943498, 37.520273], [-81.943505, 37.520553], [-81.943498, 37.520641], [-81.943512, 37.520767], [-81.943622, 37.52113], [-81.943725, 37.52135], [-81.943919, 37.521657], [-81.944174, 37.521949], [-81.944236, 37.522004], [-81.94436, 37.52208], [-81.944652, 37.522284], [-81.944698, 37.522317], [-81.94505, 37.52258], [-81.945312, 37.522745], [-81.945719, 37.523042], [-81.945996, 37.523218], [-81.946099, 37.523284], [-81.94625, 37.52341], [-81.94663, 37.523696], [-81.946726, 37.5238], [-81.947037, 37.524239], [-81.947172, 37.524454], [-81.947196, 37.524492], [-81.947299, 37.524635], [-81.947485, 37.524965], [-81.947617, 37.525448], [-81.947603, 37.525712], [-81.947617, 37.525915], [-81.947596, 37.526064], [-81.947596, 37.526657], [-81.947582, 37.526805], [-81.947465, 37.526998], [-81.947424, 37.527091], [-81.947403, 37.527168], [-81.947389, 37.5273], [-81.947348, 37.527459], [-81.947127, 37.527833], [-81.946982, 37.528036], [-81.946817, 37.528239], [-81.946672, 37.528399], [-81.946389, 37.528679], [-81.946042, 37.528985], [-81.94601, 37.529014], [-81.945768, 37.529206], [-81.945685, 37.52925], [-81.945437, 37.529338], [-81.945278, 37.529432], [-81.94494, 37.529586], [-81.944588, 37.529783], [-81.944541, 37.52982], [-81.944457, 37.529888], [-81.944414, 37.52991], [-81.944285, 37.529981], [-81.944175, 37.530053], [-81.944027, 37.530173], [-81.943926, 37.530256], [-81.943911, 37.530277], [-81.943816, 37.530404], [-81.943781, 37.530514], [-81.943733, 37.530734], [-81.94374, 37.530888], [-81.943761, 37.530976], [-81.943806, 37.531091], [-81.943809, 37.531097], [-81.943857, 37.531168], [-81.943968, 37.531289], [-81.944078, 37.531366], [-81.944257, 37.531448], [-81.944444, 37.531487], [-81.944982, 37.531558], [-81.945168, 37.531563], [-81.945348, 37.53158], [-81.945493, 37.531613], [-81.945762, 37.53186], [-81.945913, 37.531943], [-81.945982, 37.53197], [-81.946136, 37.531978], [-81.946189, 37.531981], [-81.946258, 37.53197], [-81.946479, 37.53191], [-81.946624, 37.531838], [-81.946686, 37.531794], [-81.946755, 37.531728], [-81.9469, 37.531635], [-81.94691, 37.53163], [-81.946986, 37.531595], [-81.947045, 37.531569], [-81.947094, 37.53153], [-81.947107, 37.531514], [-81.947072, 37.531475], [-81.947021, 37.53146], [-81.94694, 37.531438], [-81.946914, 37.531431], [-81.946893, 37.531404], [-81.946902, 37.531387], [-81.947203, 37.531316], [-81.947562, 37.531206], [-81.947779, 37.531146], [-81.947962, 37.531096], [-81.948128, 37.531036], [-81.9483, 37.530986], [-81.948583, 37.530865], [-81.948624, 37.53086], [-81.948659, 37.530871], [-81.948666, 37.53092], [-81.948659, 37.530981], [-81.948714, 37.530981], [-81.948873, 37.530893], [-81.949142, 37.530712], [-81.949356, 37.530607], [-81.949466, 37.530541], [-81.949777, 37.530321], [-81.949901, 37.530211], [-81.950025, 37.530124], [-81.950149, 37.530019], [-81.950272, 37.529944], [-81.950908, 37.529563], [-81.951046, 37.52947], [-81.951094, 37.529431], [-81.951108, 37.529415], [-81.951163, 37.529354], [-81.951171, 37.52934], [-81.951232, 37.529239], [-81.951301, 37.529162], [-81.95136, 37.52912], [-81.951441, 37.529064], [-81.951598, 37.528953], [-81.951742, 37.528882], [-81.952005, 37.528843], [-81.952115, 37.52881], [-81.952281, 37.528739], [-81.952584, 37.528535], [-81.952722, 37.528415], [-81.952783, 37.528382], [-81.952846, 37.528349], [-81.952915, 37.528321], [-81.953025, 37.528294], [-81.953398, 37.528217], [-81.953764, 37.528167], [-81.954184, 37.528151], [-81.954847, 37.528205], [-81.955357, 37.528288], [-81.955599, 37.528315], [-81.955799, 37.528354], [-81.955971, 37.528398], [-81.956254, 37.528485], [-81.956413, 37.528546], [-81.956509, 37.528601], [-81.956647, 37.528694], [-81.956758, 37.528787], [-81.957065, 37.529144], [-81.957075, 37.529156], [-81.957393, 37.529612], [-81.957476, 37.529798], [-81.957552, 37.530035], [-81.957558, 37.530095], [-81.957565, 37.530359], [-81.957579, 37.53048], [-81.957576, 37.530542], [-81.957572, 37.530606], [-81.957586, 37.530716], [-81.957593, 37.530941], [-81.957559, 37.531348], [-81.957393, 37.532375], [-81.957387, 37.532551], [-81.957394, 37.532661], [-81.957336, 37.533115], [-81.957332, 37.53315], [-81.957263, 37.533469], [-81.957166, 37.533688], [-81.95709, 37.533809], [-81.956814, 37.534172], [-81.956649, 37.534425], [-81.956677, 37.5346], [-81.956822, 37.53487], [-81.956987, 37.53504], [-81.957084, 37.535166], [-81.957215, 37.535309], [-81.957291, 37.53538], [-81.957381, 37.535446], [-81.957532, 37.535512], [-81.957622, 37.535523], [-81.957732, 37.535529], [-81.958057, 37.535512], [-81.958312, 37.535545], [-81.95854, 37.535545], [-81.95874, 37.535572], [-81.958843, 37.535578], [-81.958933, 37.535578], [-81.959285, 37.535545], [-81.959664, 37.535468], [-81.960354, 37.535276], [-81.960775, 37.535089], [-81.961009, 37.534962], [-81.961347, 37.534797], [-81.96181, 37.534616], [-81.962151, 37.534498], [-81.962355, 37.534429], [-81.962582, 37.534308], [-81.962741, 37.534242], [-81.963045, 37.53416], [-81.963486, 37.534022], [-81.964203, 37.53372], [-81.964321, 37.533659], [-81.964567, 37.533572], [-81.964679, 37.533527], [-81.964828, 37.533485], [-81.964893, 37.533467], [-81.964983, 37.53345], [-81.965328, 37.533335], [-81.965622, 37.53325], [-81.965888, 37.533175], [-81.9661, 37.53311], [-81.966314, 37.53306], [-81.966611, 37.532977], [-81.966804, 37.532939], [-81.966949, 37.532923], [-81.967087, 37.532928], [-81.967177, 37.532944], [-81.967349, 37.532993], [-81.967466, 37.533027], [-81.967618, 37.53306], [-81.967722, 37.533104], [-81.967908, 37.533224], [-81.968205, 37.533461], [-81.96844, 37.533691], [-81.968543, 37.533812], [-81.96864, 37.533906], [-81.968833, 37.534175], [-81.96893, 37.534372], [-81.968992, 37.534548], [-81.969006, 37.534636], [-81.96902, 37.535087], [-81.968978, 37.535559], [-81.968958, 37.53568], [-81.96893, 37.535708], [-81.968896, 37.535768], [-81.968882, 37.535823], [-81.968696, 37.536257], [-81.968522, 37.536592], [-81.968489, 37.536658], [-81.96842, 37.536812], [-81.96833, 37.536949], [-81.96831, 37.537043], [-81.968337, 37.53718], [-81.968331, 37.537252], [-81.968275, 37.537378], [-81.968241, 37.53751], [-81.968158, 37.53773], [-81.968119, 37.537816], [-81.968016, 37.538042], [-81.979919, 37.529665], [-81.980096, 37.529542], [-81.985175, 37.526007], [-81.988927, 37.523389], [-81.996059, 37.518423], [-82.002675, 37.513796], [-82.002748, 37.513746], [-82.008864, 37.50946], [-82.009015, 37.509353], [-82.018232, 37.502889], [-82.018307, 37.502836], [-82.02079, 37.501096], [-82.022371, 37.499985], [-82.02375, 37.499043], [-82.027692, 37.496343], [-82.031326, 37.493857], [-82.035261, 37.491164], [-82.042408, 37.486274], [-82.043166, 37.485755], [-82.050306, 37.48087], [-82.050659, 37.480628], [-82.050721, 37.480585], [-82.051073, 37.480344], [-82.062024, 37.471645], [-82.062055, 37.471627], [-82.062441, 37.471353], [-82.062896, 37.471034], [-82.062936, 37.471007], [-82.062979, 37.470976], [-82.063199, 37.470823], [-82.075044, 37.462521], [-82.079471, 37.459419], [-82.079651, 37.459292], [-82.079866, 37.459143], [-82.087333, 37.453909], [-82.087392, 37.453868], [-82.092264, 37.450453], [-82.095156, 37.448392], [-82.096005, 37.447788], [-82.096746, 37.447262], [-82.10104, 37.444202], [-82.110064, 37.437853], [-82.110123, 37.437812], [-82.110262, 37.437715], [-82.111545, 37.436816], [-82.111872, 37.43659], [-82.112119, 37.436417], [-82.117034, 37.432984], [-82.117098, 37.432939], [-82.118777, 37.431767], [-82.123409, 37.428446], [-82.123973, 37.428056], [-82.124049, 37.427999], [-82.136748, 37.419182], [-82.138149, 37.418209], [-82.141568, 37.415834], [-82.142987, 37.414849], [-82.144445, 37.413859], [-82.144495, 37.413826], [-82.144805, 37.413615], [-82.14978, 37.410235], [-82.150076, 37.410035], [-82.155342, 37.406461], [-82.160024, 37.403295], [-82.163859, 37.400667], [-82.166556, 37.398807], [-82.173417, 37.394078], [-82.178978, 37.390302], [-82.184016, 37.386873], [-82.184909, 37.386268], [-82.189043, 37.383451], [-82.189857, 37.382898], [-82.193687, 37.380287], [-82.19643, 37.378399], [-82.20258, 37.37417], [-82.203026, 37.373862], [-82.20311, 37.373805], [-82.204146, 37.373092], [-82.2115, 37.368033], [-82.212214, 37.367541], [-82.215094, 37.365503], [-82.215163, 37.365455], [-82.216574, 37.364455], [-82.216929, 37.364203], [-82.217195, 37.364015], [-82.217294, 37.363944], [-82.217449, 37.363837], [-82.217629, 37.363708], [-82.217824, 37.363572], [-82.218713, 37.362939], [-82.223917, 37.359249], [-82.224947, 37.358528], [-82.225235, 37.358322], [-82.226291, 37.357576], [-82.226629, 37.357334], [-82.227567, 37.356666], [-82.231715, 37.353729], [-82.233632, 37.352383], [-82.234007, 37.352122], [-82.234113, 37.352048], [-82.240977, 37.347236], [-82.24144, 37.346913], [-82.241915, 37.346578], [-82.242122, 37.346435], [-82.246197, 37.343572], [-82.247064, 37.342967], [-82.254517, 37.337748], [-82.259933, 37.33395], [-82.263768, 37.331228], [-82.265686, 37.329868], [-82.268335, 37.328007], [-82.274741, 37.323541], [-82.275688, 37.322884], [-82.275873, 37.322756], [-82.277501, 37.321637], [-82.278902, 37.320673], [-82.279442, 37.3203], [-82.280872, 37.319318], [-82.282213, 37.318395], [-82.283111, 37.317767], [-82.286158, 37.315635], [-82.286394, 37.315469], [-82.286449, 37.31543], [-82.286796, 37.315188], [-82.287674, 37.314574], [-82.288878, 37.313731], [-82.289008, 37.313641], [-82.289106, 37.313573], [-82.289287, 37.313443], [-82.292194, 37.311411], [-82.301019, 37.305236], [-82.308456, 37.30007], [-82.309294, 37.29949], [-82.314356, 37.295973], [-82.314624, 37.295789], [-82.314845, 37.295631], [-82.315615, 37.295095], [-82.315759, 37.295005], [-82.315883, 37.294926], [-82.316012, 37.294837], [-82.316128, 37.294727], [-82.316252, 37.294529], [-82.316285, 37.294381], [-82.316277, 37.294249], [-82.316324, 37.294084], [-82.316427, 37.293907], [-82.316475, 37.293831], [-82.316604, 37.293757], [-82.316769, 37.29368], [-82.316907, 37.293647], [-82.317085, 37.293589], [-82.317167, 37.293561], [-82.317216, 37.293542], [-82.317294, 37.29349], [-82.317346, 37.293267], [-82.317385, 37.293052], [-82.317377, 37.292925], [-82.317383, 37.292782], [-82.317334, 37.292667], [-82.317292, 37.292557], [-82.317265, 37.292448], [-82.317285, 37.292337], [-82.317311, 37.292178], [-82.317351, 37.292062], [-82.31742, 37.291842], [-82.317431, 37.291709], [-82.317462, 37.291553], [-82.317465, 37.29138], [-82.317471, 37.291335], [-82.317485, 37.291214], [-82.317506, 37.291123], [-82.317514, 37.290961], [-82.31754, 37.290878], [-82.317625, 37.290632], [-82.317694, 37.29045], [-82.317761, 37.290333], [-82.317843, 37.290163], [-82.317953, 37.290015], [-82.318013, 37.2899], [-82.318124, 37.289844], [-82.31826, 37.289795], [-82.318391, 37.289694], [-82.318513, 37.289611], [-82.318684, 37.289413], [-82.318787, 37.289237], [-82.318861, 37.289037], [-82.318889, 37.28889], [-82.318889, 37.288724], [-82.318901, 37.288618], [-82.318871, 37.288412], [-82.318905, 37.288197], [-82.318911, 37.288132], [-82.318965, 37.287972], [-82.319033, 37.287813], [-82.319142, 37.287608], [-82.319189, 37.287485], [-82.31934, 37.2873], [-82.319442, 37.287144], [-82.319552, 37.287023], [-82.319654, 37.286907], [-82.319722, 37.286835], [-82.319804, 37.286749], [-82.319941, 37.286642], [-82.320141, 37.286494], [-82.32032, 37.286384], [-82.320483, 37.286267], [-82.320619, 37.286185], [-82.320847, 37.286068], [-82.321052, 37.285986], [-82.321292, 37.285892], [-82.321485, 37.285802], [-82.321601, 37.285753], [-82.321827, 37.285651], [-82.321944, 37.285609], [-82.32217, 37.285497], [-82.3223, 37.285387], [-82.322465, 37.285283], [-82.322629, 37.285127], [-82.322794, 37.285012], [-82.322924, 37.284907], [-82.323027, 37.284812], [-82.323129, 37.284762], [-82.323261, 37.284697], [-82.32374, 37.284293], [-82.323811, 37.284179], [-82.32386, 37.284086], [-82.323897, 37.283919], [-82.323975, 37.283816], [-82.324118, 37.283565], [-82.324234, 37.283435], [-82.324352, 37.283262], [-82.324475, 37.28312], [-82.324575, 37.283036], [-82.324722, 37.282988], [-82.324921, 37.282931], [-82.324967, 37.282937], [-82.325168, 37.282974], [-82.325375, 37.282995], [-82.325513, 37.283022], [-82.32576, 37.283004], [-82.325905, 37.282988], [-82.325964, 37.282987], [-82.326111, 37.282961], [-82.326246, 37.282938], [-82.326457, 37.282948], [-82.32669, 37.282935], [-82.326819, 37.282935], [-82.327087, 37.282899], [-82.327207, 37.282897], [-82.327352, 37.282907], [-82.327569, 37.282896], [-82.327851, 37.282855], [-82.328085, 37.282826], [-82.328291, 37.282782], [-82.32852, 37.282746], [-82.328881, 37.282643], [-82.329039, 37.282613], [-82.329198, 37.282582], [-82.329568, 37.28254], [-82.329836, 37.282519], [-82.330064, 37.282447], [-82.33031, 37.282385], [-82.330689, 37.28229], [-82.330984, 37.2822], [-82.3311, 37.282175], [-82.331321, 37.282161], [-82.331527, 37.282133], [-82.331692, 37.281989], [-82.331821, 37.281902], [-82.331945, 37.281819], [-82.332019, 37.28168], [-82.332094, 37.281548], [-82.332225, 37.281461], [-82.332334, 37.281409], [-82.33254, 37.281419], [-82.332746, 37.281351], [-82.333069, 37.281348], [-82.333342, 37.281334], [-82.333537, 37.281301], [-82.33365, 37.281274], [-82.333833, 37.281191], [-82.334018, 37.281135], [-82.334206, 37.281111], [-82.334451, 37.281162], [-82.334537, 37.281181], [-82.335006, 37.281375], [-82.335521, 37.281584], [-82.335732, 37.281597], [-82.335811, 37.281598], [-82.335905, 37.281572], [-82.336035, 37.281546], [-82.336214, 37.281467], [-82.336543, 37.281246], [-82.336589, 37.281131], [-82.336638, 37.281009], [-82.336594, 37.28087], [-82.336452, 37.28036], [-82.336423, 37.280257], [-82.336396, 37.280013], [-82.336411, 37.279832], [-82.336467, 37.279746], [-82.336616, 37.279654], [-82.33675, 37.279609], [-82.336931, 37.279586], [-82.33731, 37.279588], [-82.337723, 37.279609], [-82.338005, 37.279683], [-82.338357, 37.279782], [-82.338721, 37.279907], [-82.33901, 37.280013], [-82.339272, 37.280116], [-82.339427, 37.280176], [-82.339653, 37.280306], [-82.339751, 37.280432], [-82.339806, 37.280542], [-82.339855, 37.280641], [-82.339886, 37.280782], [-82.339877, 37.280878], [-82.339932, 37.280988], [-82.340098, 37.281074], [-82.340284, 37.28114], [-82.340415, 37.281172], [-82.340619, 37.281187], [-82.340794, 37.281123], [-82.340978, 37.281056], [-82.341224, 37.280974], [-82.341491, 37.28089], [-82.341614, 37.280867], [-82.341753, 37.280844], [-82.34182, 37.28083], [-82.341953, 37.280829], [-82.342169, 37.280876], [-82.34234, 37.280986], [-82.342485, 37.28115], [-82.342582, 37.28121], [-82.342678, 37.281258], [-82.342796, 37.281237], [-82.342919, 37.281147], [-82.343393, 37.280922], [-82.343614, 37.280859], [-82.343805, 37.280684], [-82.343816, 37.280545], [-82.343837, 37.280433], [-82.34382, 37.280304], [-82.343814, 37.280144], [-82.343771, 37.279924], [-82.343771, 37.279832], [-82.343767, 37.279633], [-82.343772, 37.27951], [-82.343808, 37.27936], [-82.343774, 37.279287], [-82.343732, 37.279154], [-82.343594, 37.278985], [-82.34344, 37.278769], [-82.343385, 37.278661], [-82.343322, 37.278562], [-82.343253, 37.278462], [-82.343129, 37.278347], [-82.342991, 37.278249], [-82.342935, 37.278123], [-82.342878, 37.278009], [-82.342793, 37.277684], [-82.342796, 37.277594], [-82.3428, 37.277497], [-82.342804, 37.277379], [-82.342848, 37.277235], [-82.342942, 37.276996], [-82.342934, 37.276892], [-82.342895, 37.276819], [-82.342823, 37.276683], [-82.342786, 37.276513], [-82.342767, 37.276381], [-82.342682, 37.276193], [-82.342585, 37.276074], [-82.342495, 37.275969], [-82.342418, 37.275804], [-82.342377, 37.275684], [-82.342313, 37.275514], [-82.342251, 37.275408], [-82.342244, 37.275293], [-82.34228, 37.275067], [-82.342251, 37.274908], [-82.342033, 37.274598], [-82.341995, 37.274346], [-82.341989, 37.274139], [-82.342093, 37.273959], [-82.342446, 37.273619], [-82.342694, 37.273447], [-82.343112, 37.273227], [-82.343341, 37.27316], [-82.343861, 37.273103], [-82.344253, 37.273136], [-82.344756, 37.273109], [-82.345078, 37.272944], [-82.345258, 37.272845], [-82.345468, 37.272734], [-82.34568, 37.272686], [-82.345879, 37.272658], [-82.346306, 37.272634], [-82.346533, 37.272611], [-82.346847, 37.27259], [-82.347075, 37.272588], [-82.347247, 37.272532], [-82.347364, 37.272486], [-82.347673, 37.272458], [-82.347853, 37.272406], [-82.348058, 37.272347], [-82.348328, 37.27225], [-82.348517, 37.272154], [-82.348682, 37.272055], [-82.348866, 37.271927], [-82.348976, 37.271793], [-82.34912, 37.271684], [-82.349236, 37.271525], [-82.349256, 37.27142], [-82.349228, 37.271266], [-82.349179, 37.271171], [-82.349081, 37.271061], [-82.348991, 37.270887], [-82.348873, 37.270695], [-82.348853, 37.27064], [-82.348818, 37.27047], [-82.348824, 37.270333], [-82.348884, 37.270145], [-82.348945, 37.270056], [-82.34902, 37.269985], [-82.349088, 37.269929], [-82.349171, 37.269897], [-82.349274, 37.269863], [-82.349294, 37.269798], [-82.349253, 37.269749], [-82.349108, 37.269665], [-82.348907, 37.269574], [-82.348845, 37.269492], [-82.348803, 37.26936], [-82.348789, 37.269244], [-82.348817, 37.26906], [-82.348889, 37.268946], [-82.348964, 37.268781], [-82.348981, 37.268725], [-82.348998, 37.268665], [-82.348991, 37.268561], [-82.348929, 37.268446], [-82.348811, 37.268358], [-82.348679, 37.268299], [-82.34859, 37.268255], [-82.348582, 37.268162], [-82.348645, 37.268045], [-82.348761, 37.267951], [-82.348898, 37.26788], [-82.349103, 37.267803], [-82.349268, 37.267757], [-82.349501, 37.267694], [-82.349749, 37.267619], [-82.349996, 37.267479], [-82.350216, 37.267369], [-82.350455, 37.267252], [-82.350634, 37.267149], [-82.350873, 37.267025], [-82.351023, 37.266971], [-82.351196, 37.266926], [-82.351346, 37.266875], [-82.351477, 37.266781], [-82.351592, 37.266677], [-82.351772, 37.266549], [-82.35197, 37.26646], [-82.352162, 37.266405], [-82.352361, 37.266366], [-82.353421, 37.266092], [-82.354475, 37.265791], [-82.354839, 37.265493], [-82.355287, 37.265263], [-82.355334, 37.26524], [-82.355429, 37.2652], [-82.35554, 37.265154], [-82.355751, 37.265128], [-82.355964, 37.265105], [-82.356232, 37.26507], [-82.356602, 37.26502], [-82.356815, 37.264981], [-82.357022, 37.264975], [-82.357169, 37.264989], [-82.357476, 37.264977], [-82.357683, 37.264941], [-82.357984, 37.264883], [-82.358224, 37.264815], [-82.358746, 37.264759], [-82.35878, 37.264758], [-82.359159, 37.26475], [-82.359443, 37.264751], [-82.359771, 37.264735], [-82.359998, 37.264721], [-82.360334, 37.264704], [-82.360522, 37.264692], [-82.36102, 37.264652], [-82.361194, 37.264641], [-82.361384, 37.264642], [-82.361678, 37.264625], [-82.362277, 37.264587], [-82.362458, 37.264558], [-82.362711, 37.264476], [-82.363014, 37.264398], [-82.363229, 37.264327], [-82.363496, 37.264266], [-82.363711, 37.264228], [-82.363915, 37.264212], [-82.36404, 37.264193], [-82.364299, 37.264189], [-82.364513, 37.264182], [-82.364645, 37.26416], [-82.364745, 37.264144], [-82.364979, 37.264071], [-82.365123, 37.26396], [-82.365271, 37.263804], [-82.36539, 37.263678], [-82.365473, 37.263607], [-82.365596, 37.263535], [-82.365815, 37.263413], [-82.36596, 37.263331], [-82.366138, 37.26323], [-82.366348, 37.263098], [-82.366568, 37.262965], [-82.366719, 37.2629], [-82.366891, 37.262848], [-82.367089, 37.262808], [-82.367254, 37.262803], [-82.367618, 37.262739], [-82.367805, 37.262685], [-82.367952, 37.262616], [-82.368154, 37.26253], [-82.368305, 37.262464], [-82.368468, 37.26238], [-82.368537, 37.262381], [-82.368992, 37.262362], [-82.369294, 37.26237], [-82.369507, 37.262383], [-82.369724, 37.262371], [-82.369933, 37.26237], [-82.370127, 37.262357], [-82.370278, 37.262323], [-82.37047, 37.262258], [-82.370587, 37.262224], [-82.37075, 37.262145], [-82.370908, 37.262064], [-82.371005, 37.261937], [-82.371096, 37.26186], [-82.371256, 37.261711], [-82.371495, 37.261592], [-82.37189, 37.261609], [-82.372102, 37.261525], [-82.372178, 37.261476], [-82.372402, 37.261393], [-82.372692, 37.261285], [-82.372851, 37.261226], [-82.373061, 37.26118], [-82.373253, 37.261093], [-82.373465, 37.261], [-82.373593, 37.260917], [-82.373877, 37.260737], [-82.374392, 37.260503], [-82.374749, 37.260363], [-82.374872, 37.260343], [-82.374962, 37.260316], [-82.376057, 37.260029], [-82.376601, 37.259864], [-82.376814, 37.259832], [-82.376944, 37.259826], [-82.377075, 37.259858], [-82.377171, 37.259913], [-82.377336, 37.259989], [-82.37746, 37.260017], [-82.377578, 37.260035], [-82.37773, 37.260028], [-82.3779, 37.260034], [-82.37819, 37.260028], [-82.378369, 37.260023], [-82.378514, 37.260013], [-82.378735, 37.259968], [-82.378961, 37.259902], [-82.379251, 37.25988], [-82.379485, 37.259878], [-82.379542, 37.259871], [-82.379655, 37.259863], [-82.379767, 37.25988], [-82.380015, 37.259912], [-82.380167, 37.259918], [-82.381093, 37.260042], [-82.381671, 37.259995], [-82.381972, 37.259957], [-82.3825, 37.259923], [-82.38263, 37.259945], [-82.382803, 37.25996], [-82.383106, 37.260026], [-82.383518, 37.260035], [-82.383673, 37.259981], [-82.383789, 37.259857], [-82.38392, 37.259738], [-82.384112, 37.25968], [-82.384302, 37.259645], [-82.38439, 37.259625], [-82.384479, 37.259609], [-82.384599, 37.259548], [-82.384717, 37.259517], [-82.384847, 37.259502], [-82.384881, 37.259508], [-82.385012, 37.259545], [-82.385077, 37.259551], [-82.385141, 37.259572], [-82.385456, 37.25967], [-82.385633, 37.259652], [-82.385788, 37.259604], [-82.386771, 37.258875], [-82.387406, 37.258872], [-82.388258, 37.259027], [-82.388456, 37.259039], [-82.388524, 37.25904], [-82.388673, 37.258987], [-82.388886, 37.258795], [-82.38916, 37.258547], [-82.389585, 37.258266], [-82.389835, 37.258143], [-82.389888, 37.258131], [-82.390153, 37.258075], [-82.390441, 37.258095], [-82.390591, 37.258107], [-82.390785, 37.258133], [-82.391147, 37.258107], [-82.391329, 37.258071], [-82.3914, 37.258049], [-82.391528, 37.258038], [-82.391621, 37.258035], [-82.391875, 37.257977], [-82.391961, 37.257974], [-82.392268, 37.257979], [-82.392468, 37.257937], [-82.392625, 37.257837], [-82.392694, 37.257764], [-82.392864, 37.257491], [-82.392971, 37.25741], [-82.393064, 37.257344], [-82.393213, 37.257273], [-82.393494, 37.257205], [-82.393578, 37.257226], [-82.393832, 37.257265], [-82.39417, 37.257315], [-82.394433, 37.257322], [-82.39464, 37.25727], [-82.394847, 37.257165], [-82.395042, 37.25709], [-82.395303, 37.25697], [-82.395437, 37.256932], [-82.395873, 37.256912], [-82.396043, 37.25687], [-82.396163, 37.256805], [-82.396294, 37.256727], [-82.396376, 37.256712], [-82.396612, 37.256644], [-82.396815, 37.256533], [-82.396955, 37.256327], [-82.39728, 37.256098], [-82.397416, 37.256016], [-82.397633, 37.255969], [-82.398185, 37.255663], [-82.398221, 37.255586], [-82.398268, 37.255497], [-82.398412, 37.255463], [-82.398627, 37.255394], [-82.398895, 37.255434], [-82.399148, 37.255455], [-82.399343, 37.255483], [-82.39957, 37.255508], [-82.399726, 37.255498], [-82.399871, 37.255466], [-82.400013, 37.255444], [-82.400147, 37.255456], [-82.400196, 37.255478], [-82.400319, 37.255494], [-82.400492, 37.255509], [-82.400605, 37.255521], [-82.400746, 37.255515], [-82.400822, 37.255471], [-82.400907, 37.255451], [-82.401007, 37.255403], [-82.401118, 37.255343], [-82.401313, 37.25526], [-82.401482, 37.255195], [-82.401651, 37.255147], [-82.402071, 37.255026], [-82.402652, 37.254916], [-82.402819, 37.254788], [-82.403444, 37.254808], [-82.403654, 37.254831], [-82.403859, 37.254837], [-82.404278, 37.254579], [-82.40449, 37.254513], [-82.404839, 37.254402], [-82.405066, 37.254366], [-82.40517, 37.254388], [-82.405369, 37.254398], [-82.4055, 37.254416], [-82.405672, 37.254351], [-82.405758, 37.254231], [-82.4063, 37.253862], [-82.40688, 37.253624], [-82.407206, 37.2536], [-82.407372, 37.253611], [-82.407549, 37.253575], [-82.407677, 37.25349], [-82.407748, 37.253445], [-82.40779, 37.253418], [-82.407866, 37.253387], [-82.408032, 37.253319], [-82.40817, 37.253262], [-82.408567, 37.253191], [-82.40993, 37.253118], [-82.410331, 37.253111], [-82.410447, 37.253121], [-82.410788, 37.253143], [-82.410991, 37.253191], [-82.411271, 37.253276], [-82.411535, 37.253404], [-82.411738, 37.253437], [-82.411972, 37.253389], [-82.412145, 37.25329], [-82.412361, 37.253075], [-82.412504, 37.252939], [-82.412692, 37.252782], [-82.412736, 37.252762], [-82.412934, 37.252715], [-82.413529, 37.25247], [-82.414094, 37.252254], [-82.414688, 37.252056], [-82.415239, 37.25194], [-82.415797, 37.251928], [-82.41664, 37.251836], [-82.417236, 37.251738], [-82.417553, 37.251643], [-82.417806, 37.251551], [-82.418206, 37.251256], [-82.418618, 37.250798], [-82.418784, 37.250754], [-82.419338, 37.250624], [-82.420414, 37.250348], [-82.420993, 37.250163], [-82.422401, 37.249551], [-82.422869, 37.249219], [-82.423267, 37.249047], [-82.423872, 37.248911], [-82.425405, 37.248711], [-82.426307, 37.248721], [-82.426505, 37.248607], [-82.427802, 37.247773], [-82.428375, 37.247594], [-82.429437, 37.24714], [-82.430335, 37.246862], [-82.433196, 37.246416], [-82.43368, 37.246547], [-82.433988, 37.246624], [-82.434596, 37.246806], [-82.434756, 37.246818], [-82.43496, 37.246781], [-82.435707, 37.246502], [-82.435996, 37.246531], [-82.436105, 37.246589], [-82.436195, 37.246658], [-82.436417, 37.246802], [-82.436553, 37.246915], [-82.436649, 37.247004], [-82.436857, 37.247152], [-82.437033, 37.247222], [-82.437334, 37.247213], [-82.437698, 37.247133], [-82.437888, 37.247079], [-82.438319, 37.247015], [-82.438532, 37.247018], [-82.438717, 37.247037], [-82.438896, 37.247051], [-82.439178, 37.247088], [-82.439363, 37.247109], [-82.439498, 37.247119], [-82.43965, 37.247102], [-82.439771, 37.247069], [-82.439897, 37.247012], [-82.439964, 37.246937], [-82.44004, 37.246802], [-82.440068, 37.246614], [-82.440087, 37.246434], [-82.440152, 37.24634], [-82.440246, 37.246267], [-82.440344, 37.24623], [-82.440563, 37.246144], [-82.440881, 37.246019], [-82.441203, 37.245888], [-82.441471, 37.245776], [-82.441719, 37.245656], [-82.442003, 37.245452], [-82.442332, 37.245235], [-82.442527, 37.245103], [-82.442645, 37.244966], [-82.442715, 37.244736], [-82.442733, 37.244487], [-82.44274, 37.244329], [-82.442762, 37.244218], [-82.442816, 37.243979], [-82.442939, 37.243718], [-82.443077, 37.243548], [-82.443175, 37.243435], [-82.443342, 37.243309], [-82.44355, 37.24324], [-82.443804, 37.243202], [-82.44394, 37.243203], [-82.44419, 37.243217], [-82.44447, 37.243264], [-82.44467, 37.243292], [-82.444792, 37.243337], [-82.444921, 37.243406], [-82.445057, 37.243517], [-82.445137, 37.243616], [-82.445216, 37.243723], [-82.445303, 37.243857], [-82.445373, 37.243956], [-82.44545, 37.244029], [-82.445597, 37.244139], [-82.445666, 37.244166], [-82.445731, 37.244165], [-82.445915, 37.244126], [-82.446029, 37.244085], [-82.446192, 37.244049], [-82.446517, 37.243938], [-82.4467, 37.243879], [-82.446756, 37.243877], [-82.44693, 37.243873], [-82.447056, 37.243906], [-82.447127, 37.243963], [-82.447161, 37.24401], [-82.447189, 37.244089], [-82.447256, 37.244155], [-82.447432, 37.244193], [-82.447714, 37.244191], [-82.447884, 37.244154], [-82.448003, 37.244106], [-82.448204, 37.243989], [-82.44831, 37.243876], [-82.448435, 37.243822], [-82.448539, 37.243797], [-82.448641, 37.243792], [-82.448786, 37.243795], [-82.448939, 37.243799], [-82.449077, 37.243754], [-82.449646, 37.243517], [-82.450208, 37.243278], [-82.450488, 37.243146], [-82.450648, 37.243054], [-82.450796, 37.242936], [-82.450901, 37.242838], [-82.451082, 37.242769], [-82.451302, 37.242704], [-82.451442, 37.242675], [-82.451655, 37.242629], [-82.45185, 37.242567], [-82.452072, 37.242449], [-82.452253, 37.242276], [-82.452361, 37.2421], [-82.452401, 37.241978], [-82.452388, 37.241835], [-82.452358, 37.24169], [-82.452376, 37.241569], [-82.452414, 37.241437], [-82.452506, 37.241302], [-82.452658, 37.241146], [-82.452789, 37.241013], [-82.452921, 37.240939], [-82.453121, 37.240887], [-82.453323, 37.240829], [-82.453584, 37.240796], [-82.453745, 37.240726], [-82.453863, 37.240663], [-82.453995, 37.240602], [-82.454223, 37.24053], [-82.454631, 37.240512], [-82.454707, 37.240501], [-82.454824, 37.240467], [-82.455031, 37.240399], [-82.455194, 37.240311], [-82.45529, 37.240226], [-82.455361, 37.240123], [-82.455385, 37.24001], [-82.455378, 37.239716], [-82.455437, 37.239599], [-82.455541, 37.239491], [-82.455738, 37.239408], [-82.455963, 37.239333], [-82.456207, 37.23926], [-82.456336, 37.239215], [-82.456514, 37.23913], [-82.456655, 37.239045], [-82.456756, 37.23895], [-82.456894, 37.238744], [-82.457061, 37.238406], [-82.457117, 37.238347], [-82.457216, 37.238277], [-82.457365, 37.238221], [-82.457422, 37.238214], [-82.457683, 37.238179], [-82.457818, 37.238126], [-82.458045, 37.238081], [-82.458246, 37.23808], [-82.458475, 37.238104], [-82.458636, 37.238126], [-82.458784, 37.238166], [-82.458931, 37.238207], [-82.459086, 37.238242], [-82.459181, 37.238275], [-82.459232, 37.238291], [-82.459473, 37.238393], [-82.459674, 37.238483], [-82.459959, 37.238634], [-82.460231, 37.23866], [-82.460492, 37.238594], [-82.461205, 37.238371], [-82.461356, 37.238372], [-82.461823, 37.238455], [-82.462085, 37.238493], [-82.462461, 37.23853], [-82.462662, 37.238488], [-82.462861, 37.238387], [-82.463028, 37.23822], [-82.46317, 37.237901], [-82.463241, 37.237724], [-82.463496, 37.237428], [-82.463796, 37.23705], [-82.464013, 37.236772], [-82.464168, 37.236575], [-82.464321, 37.236365], [-82.464513, 37.236084], [-82.464662, 37.235887], [-82.464812, 37.235771], [-82.465057, 37.235693], [-82.465403, 37.235682], [-82.465766, 37.235713], [-82.466617, 37.235828], [-82.467136, 37.235994], [-82.467454, 37.236143], [-82.467601, 37.236193], [-82.467776, 37.236209], [-82.46798, 37.236188], [-82.468267, 37.236134], [-82.46844, 37.236001], [-82.468658, 37.235694], [-82.468801, 37.235416], [-82.468905, 37.235241], [-82.469098, 37.235132], [-82.469305, 37.235086], [-82.469552, 37.235064], [-82.469675, 37.235085], [-82.469931, 37.235238], [-82.470149, 37.235357], [-82.470198, 37.235402], [-82.470334, 37.235448], [-82.470453, 37.235475], [-82.470588, 37.235448], [-82.470753, 37.235375], [-82.470912, 37.235325], [-82.471061, 37.235333], [-82.47124, 37.235403], [-82.471411, 37.23554], [-82.47154, 37.23564], [-82.471783, 37.235708], [-82.472013, 37.235714], [-82.472477, 37.235685], [-82.47283, 37.235592], [-82.473387, 37.235391], [-82.473816, 37.235175], [-82.474005, 37.235056], [-82.474241, 37.234919], [-82.474483, 37.234813], [-82.474766, 37.234707], [-82.475058, 37.234639], [-82.4753, 37.234561], [-82.475527, 37.23456], [-82.475843, 37.234528], [-82.476107, 37.234454], [-82.476329, 37.234411], [-82.476635, 37.234322], [-82.477028, 37.234186], [-82.4773, 37.234093], [-82.477514, 37.234036], [-82.47768, 37.233981], [-82.477964, 37.233885], [-82.478077, 37.233819], [-82.478362, 37.233629], [-82.478543, 37.233577], [-82.478709, 37.233514], [-82.478918, 37.233461], [-82.479211, 37.233348], [-82.479485, 37.233256], [-82.479667, 37.233181], [-82.479798, 37.233145], [-82.479978, 37.233065], [-82.480035, 37.233024], [-82.480231, 37.232865], [-82.480566, 37.232601], [-82.480687, 37.232525], [-82.480825, 37.232438], [-82.481079, 37.232334], [-82.481214, 37.232295], [-82.481535, 37.23221], [-82.481892, 37.232134], [-82.482109, 37.232081], [-82.482337, 37.23202], [-82.482763, 37.231876], [-82.483065, 37.231791], [-82.483387, 37.231748], [-82.483617, 37.231783], [-82.483778, 37.231802], [-82.484013, 37.231823], [-82.484273, 37.231757], [-82.484553, 37.231643], [-82.484698, 37.231604], [-82.484855, 37.231538], [-82.485157, 37.231385], [-82.485388, 37.231294], [-82.485574, 37.231214], [-82.485802, 37.23118], [-82.486009, 37.231176], [-82.486174, 37.231163], [-82.486305, 37.231165], [-82.486443, 37.231112], [-82.486698, 37.230935], [-82.486836, 37.230841], [-82.486926, 37.230784], [-82.487142, 37.230639], [-82.487297, 37.230525], [-82.487366, 37.23046], [-82.487378, 37.230389], [-82.48734, 37.230288], [-82.48729, 37.230214], [-82.487245, 37.230141], [-82.487093, 37.230067], [-82.486942, 37.230021], [-82.486807, 37.229982], [-82.486671, 37.229905], [-82.486642, 37.229857], [-82.486585, 37.229793], [-82.486581, 37.229649], [-82.486672, 37.229554], [-82.486862, 37.22943], [-82.486966, 37.229355], [-82.487072, 37.229263], [-82.487142, 37.229038], [-82.487178, 37.228832], [-82.487243, 37.228497], [-82.487249, 37.228123], [-82.487257, 37.227774], [-82.487328, 37.227683], [-82.487441, 37.227575], [-82.4878, 37.227273], [-82.488297, 37.226947], [-82.488523, 37.226877], [-82.488757, 37.226879], [-82.488975, 37.226881], [-82.489325, 37.226885], [-82.489467, 37.22687], [-82.489598, 37.226776], [-82.489697, 37.226678], [-82.48984, 37.226522], [-82.489931, 37.22639], [-82.490375, 37.225941], [-82.490538, 37.225767], [-82.490578, 37.225718], [-82.490665, 37.22561], [-82.490751, 37.225485], [-82.490878, 37.225328], [-82.491004, 37.225208], [-82.491117, 37.225123], [-82.491269, 37.225025], [-82.49145, 37.224978], [-82.491619, 37.224921], [-82.492378, 37.224982], [-82.492598, 37.225017], [-82.493016, 37.225128], [-82.493471, 37.225244], [-82.49389, 37.225264], [-82.49421, 37.225218], [-82.494395, 37.225221], [-82.494658, 37.22522], [-82.494787, 37.225245], [-82.494978, 37.22529], [-82.495169, 37.225353], [-82.495235, 37.225453], [-82.495343, 37.225577], [-82.495441, 37.225788], [-82.495756, 37.226653], [-82.495874, 37.226999], [-82.495917, 37.22724], [-82.49607, 37.227399], [-82.496313, 37.227501], [-82.496654, 37.22752], [-82.496895, 37.227426], [-82.497, 37.227347], [-82.497135, 37.227255], [-82.49735, 37.227168], [-82.49768, 37.227129], [-82.497985, 37.227058], [-82.498413, 37.226993], [-82.498634, 37.22697], [-82.498751, 37.226965], [-82.498917, 37.22689], [-82.499057, 37.226783], [-82.499226, 37.226632], [-82.499311, 37.226534], [-82.499542, 37.226356], [-82.499717, 37.226248], [-82.499806, 37.226206], [-82.499883, 37.226169], [-82.500232, 37.226017], [-82.500518, 37.225956], [-82.501185, 37.225592], [-82.501584, 37.225458], [-82.502102, 37.225404], [-82.50247, 37.225211], [-82.502836, 37.22502], [-82.503199, 37.224916], [-82.503813, 37.224857], [-82.504118, 37.224699], [-82.504147, 37.224608], [-82.504358, 37.22442], [-82.504892, 37.224114], [-82.505955, 37.223805], [-82.506258, 37.223565], [-82.506688, 37.22336], [-82.5077, 37.223013], [-82.508061, 37.22276], [-82.508471, 37.222581], [-82.508512, 37.22243], [-82.508488, 37.222183], [-82.508423, 37.22192], [-82.50832, 37.221503], [-82.508271, 37.221049], [-82.508373, 37.220731], [-82.508556, 37.220576], [-82.508993, 37.220379], [-82.509202, 37.220188], [-82.509309, 37.21994], [-82.509294, 37.219541], [-82.509338, 37.219347], [-82.509628, 37.219135], [-82.510076, 37.218708], [-82.510654, 37.2183], [-82.511206, 37.218078], [-82.512272, 37.21786], [-82.512607, 37.217618], [-82.512903, 37.217271], [-82.512982, 37.217223], [-82.513294, 37.217048], [-82.513483, 37.216937], [-82.513528, 37.216914], [-82.513748, 37.21683], [-82.513946, 37.216779], [-82.514124, 37.216756], [-82.514152, 37.216751], [-82.514359, 37.216718], [-82.514561, 37.21671], [-82.514873, 37.216686], [-82.514967, 37.216685], [-82.515093, 37.216647], [-82.515202, 37.21659], [-82.515302, 37.216452], [-82.515324, 37.216424], [-82.515439, 37.216259], [-82.515492, 37.216157], [-82.515588, 37.21601], [-82.515676, 37.215884], [-82.515829, 37.215763], [-82.516012, 37.215615], [-82.516281, 37.215345], [-82.516446, 37.215203], [-82.516575, 37.215064], [-82.516716, 37.214865], [-82.516789, 37.214766], [-82.516859, 37.21466], [-82.517085, 37.214446], [-82.517212, 37.214325], [-82.517472, 37.214199], [-82.517678, 37.214156], [-82.517935, 37.214127], [-82.51831, 37.213936], [-82.518539, 37.213787], [-82.518656, 37.213702], [-82.518888, 37.213555], [-82.519134, 37.213382], [-82.519291, 37.213293], [-82.51945, 37.213228], [-82.519682, 37.213115], [-82.519935, 37.213025], [-82.520153, 37.212945], [-82.520269, 37.212813], [-82.520337, 37.212671], [-82.520437, 37.212461], [-82.520593, 37.212255], [-82.520757, 37.212117], [-82.521011, 37.212023], [-82.521161, 37.212004], [-82.52138, 37.212057], [-82.521551, 37.212125], [-82.521725, 37.212199], [-82.521876, 37.212263], [-82.522252, 37.212435], [-82.522425, 37.21253], [-82.522624, 37.212618], [-82.522782, 37.212743], [-82.522915, 37.212879], [-82.523026, 37.213007], [-82.523137, 37.213229], [-82.523237, 37.213422], [-82.523294, 37.213643], [-82.52333, 37.213818], [-82.523318, 37.213939], [-82.523298, 37.214109], [-82.523318, 37.21416], [-82.523376, 37.214374], [-82.523452, 37.214451], [-82.523585, 37.214559], [-82.523687, 37.214575], [-82.523894, 37.214591], [-82.524107, 37.214629], [-82.524259, 37.214704], [-82.524382, 37.214823], [-82.524473, 37.214906], [-82.524557, 37.214966], [-82.52466, 37.215006], [-82.524798, 37.214992], [-82.524962, 37.214916], [-82.525161, 37.21482], [-82.525429, 37.21469], [-82.525561, 37.21465], [-82.52582, 37.21463], [-82.525938, 37.214612], [-82.526088, 37.214598], [-82.52633, 37.214508], [-82.52662, 37.214397], [-82.526783, 37.214327], [-82.526981, 37.214276], [-82.527242, 37.214213], [-82.527475, 37.21415], [-82.527941, 37.214022], [-82.528216, 37.21396], [-82.528506, 37.21389], [-82.528716, 37.213814], [-82.528862, 37.213737], [-82.529092, 37.213502], [-82.529216, 37.213443], [-82.529322, 37.213393], [-82.529377, 37.213376], [-82.52957, 37.213367], [-82.52981, 37.213344], [-82.530022, 37.213328], [-82.530594, 37.213043], [-82.531393, 37.212605], [-82.532021, 37.212117], [-82.532046, 37.211846], [-82.5319, 37.211534], [-82.531926, 37.211405], [-82.532232, 37.211038], [-82.532228, 37.210824], [-82.532083, 37.210546], [-82.532147, 37.210177], [-82.532061, 37.209863], [-82.531649, 37.209097], [-82.53111, 37.208586], [-82.530795, 37.208354], [-82.530796, 37.208293], [-82.53085, 37.208236], [-82.531862, 37.207599], [-82.532297, 37.207233], [-82.532526, 37.206933], [-82.53263, 37.206743], [-82.532944, 37.206563], [-82.53313, 37.206541], [-82.533381, 37.206508], [-82.533517, 37.206497], [-82.534154, 37.206496], [-82.534363, 37.206518], [-82.534711, 37.206547], [-82.534992, 37.206594], [-82.535192, 37.206628], [-82.535269, 37.206656], [-82.535399, 37.206762], [-82.535493, 37.206838], [-82.535585, 37.206835], [-82.53577, 37.206839], [-82.53604, 37.206836], [-82.536171, 37.206821], [-82.536392, 37.206804], [-82.53672, 37.206803], [-82.536824, 37.206892], [-82.536892, 37.20703], [-82.536928, 37.207074], [-82.536981, 37.207121], [-82.537127, 37.207201], [-82.537234, 37.207178], [-82.537283, 37.207052], [-82.537338, 37.206975], [-82.537361, 37.206927], [-82.537491, 37.206733], [-82.537567, 37.206643], [-82.537753, 37.20654], [-82.53801, 37.206451], [-82.538281, 37.206421], [-82.538391, 37.206438], [-82.538642, 37.206522], [-82.53879, 37.206591], [-82.538874, 37.206646], [-82.538949, 37.206693], [-82.539019, 37.206741], [-82.539142, 37.206804], [-82.539293, 37.206894], [-82.539372, 37.206925], [-82.539516, 37.206938], [-82.539605, 37.206937], [-82.539796, 37.206863], [-82.540008, 37.20679], [-82.540221, 37.206723], [-82.54044, 37.206655], [-82.540673, 37.206587], [-82.540851, 37.206572], [-82.541064, 37.206575], [-82.541188, 37.206553], [-82.541432, 37.206512], [-82.541486, 37.20646], [-82.541507, 37.206416], [-82.541606, 37.20626], [-82.541821, 37.20595], [-82.542029, 37.205699], [-82.542214, 37.205544], [-82.5424, 37.205472], [-82.542633, 37.205427], [-82.542893, 37.205376], [-82.543086, 37.205336], [-82.543243, 37.205301], [-82.543438, 37.205178], [-82.543441, 37.205028], [-82.543432, 37.204959], [-82.543465, 37.204855], [-82.543512, 37.204771], [-82.543641, 37.204639], [-82.543771, 37.204529], [-82.543893, 37.204369], [-82.544111, 37.204211], [-82.544378, 37.204052], [-82.54448, 37.203984], [-82.544624, 37.203879], [-82.544746, 37.203784], [-82.544916, 37.203559], [-82.545017, 37.203448], [-82.545282, 37.203264], [-82.545515, 37.203126], [-82.545617, 37.203089], [-82.5457, 37.203059], [-82.545878, 37.203034], [-82.546036, 37.20304], [-82.546195, 37.203093], [-82.546313, 37.203193], [-82.546838, 37.203491], [-82.547038, 37.203551], [-82.547097, 37.203558], [-82.547309, 37.203545], [-82.547486, 37.203464], [-82.547716, 37.203353], [-82.548094, 37.203163], [-82.548223, 37.203092], [-82.548415, 37.202986], [-82.54872, 37.202815], [-82.548976, 37.202705], [-82.549101, 37.202755], [-82.549146, 37.202894], [-82.549174, 37.202953], [-82.549182, 37.202972], [-82.549259, 37.203141], [-82.549364, 37.203289], [-82.549482, 37.203427], [-82.549566, 37.203567], [-82.549664, 37.203683], [-82.549664, 37.203805], [-82.549666, 37.203913], [-82.549646, 37.204128], [-82.549662, 37.204316], [-82.54976, 37.204448], [-82.549919, 37.204544], [-82.550078, 37.204566], [-82.550227, 37.20456], [-82.55038, 37.204532], [-82.550593, 37.20449], [-82.550716, 37.20443], [-82.550858, 37.204356], [-82.550907, 37.204329], [-82.55105, 37.204251], [-82.551267, 37.20411], [-82.551754, 37.203728], [-82.552264, 37.203491], [-82.552452, 37.203385], [-82.552643, 37.203273], [-82.552777, 37.203195], [-82.552872, 37.203135], [-82.552975, 37.203096], [-82.553071, 37.203096], [-82.553208, 37.20311], [-82.553299, 37.203115], [-82.553394, 37.203103], [-82.553545, 37.203063], [-82.553661, 37.202998], [-82.553714, 37.202955], [-82.553848, 37.202861], [-82.553782, 37.202454], [-82.553318, 37.199254], [-82.553309, 37.19919], [-82.552577, 37.18992], [-82.552558, 37.189767], [-82.552554, 37.189729], [-82.551871, 37.182759], [-82.55177, 37.181738], [-82.551701, 37.181011], [-82.551668, 37.180667], [-82.551653, 37.180516], [-82.551652, 37.180509], [-82.551413, 37.177891], [-82.551385, 37.177583], [-82.551073, 37.174167], [-82.550729, 37.17039], [-82.550631, 37.169314], [-82.550624, 37.169247], [-82.55062, 37.169207], [-82.550611, 37.169146], [-82.55039, 37.166185], [-82.550191, 37.163522], [-82.549904, 37.159711], [-82.549809, 37.158441], [-82.549807, 37.158418], [-82.549473, 37.155728], [-82.549473, 37.155723], [-82.549395, 37.154884], [-82.548927, 37.150282], [-82.54882, 37.149222], [-82.548664, 37.147687], [-82.548237, 37.144551], [-82.548233, 37.144299], [-82.548231, 37.144206], [-82.548189, 37.141345], [-82.548188, 37.141307], [-82.547965, 37.139079], [-82.547964, 37.139067], [-82.547782, 37.137245], [-82.547688, 37.136309], [-82.547635, 37.135739], [-82.547458, 37.13387], [-82.547458, 37.133862], [-82.547398, 37.133217], [-82.547379, 37.133142], [-82.547202, 37.132487], [-82.54716, 37.13234], [-82.547155, 37.132321], [-82.54694, 37.131628], [-82.546936, 37.131597], [-82.546721, 37.129836], [-82.546642, 37.129194], [-82.54637, 37.126445], [-82.546243, 37.125109], [-82.546224, 37.124989], [-82.545454, 37.124995], [-82.5442, 37.124998], [-82.544059, 37.125005], [-82.543915, 37.124999], [-82.543515, 37.124451], [-82.541897, 37.122236], [-82.540486, 37.120304], [-82.540432, 37.120231], [-82.540371, 37.120148], [-82.540318, 37.120074], [-82.540227, 37.119957], [-82.54012, 37.119817], [-82.540086, 37.119773], [-82.540048, 37.119724], [-82.539895, 37.119526], [-82.539741, 37.119326], [-82.539075, 37.118462], [-82.537401, 37.116291], [-82.53673, 37.11542], [-82.535178, 37.113407], [-82.534064, 37.111962], [-82.533363, 37.111052], [-82.533357, 37.111044], [-82.533034, 37.110625], [-82.532679, 37.110165], [-82.532673, 37.110158], [-82.532029, 37.109322], [-82.531713, 37.108911], [-82.530848, 37.107789], [-82.530325, 37.107111], [-82.530222, 37.106978], [-82.528975, 37.105345], [-82.527587, 37.103529], [-82.527575, 37.103513], [-82.526216, 37.101715], [-82.524653, 37.099647], [-82.523788, 37.098503], [-82.523763, 37.098471], [-82.522946, 37.097439], [-82.52213, 37.096409], [-82.521541, 37.095648], [-82.520317, 37.094063], [-82.519595, 37.09313], [-82.518332, 37.091495], [-82.516824, 37.089543], [-82.51622, 37.088761], [-82.516209, 37.088747], [-82.515007, 37.087192], [-82.514564, 37.086618], [-82.514024, 37.085916], [-82.513573, 37.085329], [-82.513439, 37.085155], [-82.513345, 37.085032], [-82.513227, 37.08488], [-82.513069, 37.084687], [-82.51243, 37.083911], [-82.512123, 37.083515], [-82.511771, 37.08306], [-82.511398, 37.082577], [-82.511075, 37.082157], [-82.510704, 37.081675], [-82.510311, 37.081164], [-82.509927, 37.080666], [-82.509537, 37.080159], [-82.509087, 37.079575], [-82.508682, 37.079049], [-82.508267, 37.078509], [-82.507902, 37.078035], [-82.507503, 37.077516], [-82.507067, 37.076951], [-82.506666, 37.07643], [-82.506234, 37.075869], [-82.505844, 37.075361], [-82.505453, 37.074854], [-82.505094, 37.074388], [-82.504744, 37.073933], [-82.504373, 37.07345], [-82.503998, 37.072963], [-82.50361, 37.072459], [-82.502749, 37.07134], [-82.501418, 37.069611], [-82.500273, 37.068123], [-82.499899, 37.067637], [-82.499879, 37.067611], [-82.499279, 37.066841], [-82.498023, 37.06523], [-82.49765, 37.064751], [-82.49743, 37.064472], [-82.496697, 37.063545], [-82.4966, 37.063423], [-82.496861, 37.063319], [-82.497065, 37.063238], [-82.497277, 37.063167], [-82.497366, 37.063112], [-82.497496, 37.062953], [-82.497592, 37.062793], [-82.497852, 37.062524], [-82.498216, 37.062265], [-82.498394, 37.062023], [-82.4984, 37.06193], [-82.498297, 37.061771], [-82.498078, 37.061612], [-82.497865, 37.061496], [-82.497701, 37.061436], [-82.497605, 37.061299], [-82.497323, 37.061228], [-82.496974, 37.061288], [-82.496686, 37.061255], [-82.496323, 37.061288], [-82.495911, 37.061338], [-82.495761, 37.061322], [-82.495637, 37.061283], [-82.495424, 37.061031], [-82.495246, 37.060844], [-82.494931, 37.060548], [-82.494498, 37.05996], [-82.494421, 37.059833], [-82.494354, 37.059724], [-82.494272, 37.059553], [-82.493997, 37.059262], [-82.493949, 37.059152], [-82.493928, 37.058834], [-82.493866, 37.058548], [-82.493859, 37.058345], [-82.493777, 37.058175], [-82.493749, 37.057999], [-82.493619, 37.057812], [-82.493598, 37.057762], [-82.49355, 37.057647], [-82.493372, 37.057378], [-82.493235, 37.057241], [-82.493207, 37.057164], [-82.493207, 37.057065], [-82.493275, 37.056928], [-82.493282, 37.056834], [-82.493269, 37.056741], [-82.49285, 37.056225], [-82.492788, 37.055994], [-82.492774, 37.055846], [-82.492774, 37.0555], [-82.492801, 37.055274], [-82.492861, 37.055068], [-82.492952, 37.054752], [-82.492986, 37.054456], [-82.493054, 37.054368], [-82.493205, 37.054263], [-82.493411, 37.054181], [-82.493637, 37.054027], [-82.493993, 37.053691], [-82.494301, 37.053422], [-82.494315, 37.053378], [-82.494315, 37.053307], [-82.494267, 37.053175], [-82.494191, 37.052873], [-82.494143, 37.052455], [-82.494136, 37.052043], [-82.494149, 37.051829], [-82.494164, 37.051747], [-82.494217, 37.05145], [-82.494272, 37.051351], [-82.494608, 37.050917], [-82.494628, 37.050779], [-82.494545, 37.050269], [-82.494559, 37.050043], [-82.49499, 37.049307], [-82.494997, 37.049164], [-82.494976, 37.049093], [-82.494921, 37.049054], [-82.494784, 37.049043], [-82.494599, 37.049065], [-82.494428, 37.049137], [-82.494305, 37.049175], [-82.494222, 37.04917], [-82.494169, 37.049141], [-82.49414, 37.049126], [-82.494044, 37.049027], [-82.494023, 37.048813], [-82.494058, 37.04867], [-82.494153, 37.04856], [-82.494188, 37.04845], [-82.494201, 37.048351], [-82.494174, 37.04823], [-82.494043, 37.048066], [-82.493934, 37.047873], [-82.493892, 37.047659], [-82.493775, 37.047302], [-82.49359, 37.046912], [-82.493254, 37.046561], [-82.493103, 37.046396], [-82.493041, 37.04627], [-82.493034, 37.046149], [-82.493041, 37.046], [-82.493069, 37.045858], [-82.493075, 37.04572], [-82.493027, 37.045605], [-82.492616, 37.04538], [-82.492862, 37.045248], [-82.492903, 37.045017], [-82.492574, 37.044858], [-82.492444, 37.044649], [-82.49217, 37.044391], [-82.492169, 37.044232], [-82.49206, 37.044149], [-82.491943, 37.044078], [-82.491806, 37.043919], [-82.491765, 37.043836], [-82.491761, 37.04367], [-82.491758, 37.043529], [-82.491675, 37.04343], [-82.491579, 37.043347], [-82.491264, 37.043282], [-82.49101, 37.043271], [-82.490558, 37.043057], [-82.49038, 37.043002], [-82.490284, 37.042832], [-82.489817, 37.042398], [-82.489659, 37.042283], [-82.489509, 37.04225], [-82.489303, 37.042255], [-82.489077, 37.042283], [-82.488871, 37.042321], [-82.488714, 37.042431], [-82.488618, 37.042459], [-82.488453, 37.04247], [-82.488118, 37.042388], [-82.488028, 37.042322], [-82.487699, 37.042141], [-82.487507, 37.042064], [-82.487213, 37.04191], [-82.487123, 37.041828], [-82.486884, 37.041828], [-82.486733, 37.041762], [-82.486582, 37.041652], [-82.48652, 37.041636], [-82.48641, 37.04163], [-82.486301, 37.041636], [-82.486246, 37.041603], [-82.486171, 37.04152], [-82.486006, 37.041405], [-82.485889, 37.041345], [-82.48578, 37.041312], [-82.48567, 37.041257], [-82.485622, 37.041208], [-82.485622, 37.041125], [-82.48556, 37.040944], [-82.485642, 37.040878], [-82.485718, 37.040834], [-82.485731, 37.040631], [-82.485683, 37.040565], [-82.485574, 37.040477], [-82.485471, 37.040422], [-82.485409, 37.040378], [-82.485368, 37.040307], [-82.485265, 37.040241], [-82.485224, 37.04023], [-82.485128, 37.04023], [-82.485078, 37.040233], [-82.484868, 37.040131], [-82.484731, 37.040179], [-82.484688, 37.040195], [-82.484378, 37.040302], [-82.484162, 37.040376], [-82.484085, 37.040283], [-82.484028, 37.040214], [-82.482233, 37.038052], [-82.482089, 37.037878], [-82.482058, 37.037841], [-82.481414, 37.037065], [-82.480949, 37.036526], [-82.480076, 37.036134], [-82.478984, 37.035611], [-82.477947, 37.034958], [-82.477565, 37.034609], [-82.477511, 37.033128], [-82.477292, 37.032518], [-82.477453, 37.031678], [-82.477978, 37.028938], [-82.478002, 37.028815], [-82.478329, 37.027421], [-82.478329, 37.027029], [-82.478153, 37.026868], [-82.477947, 37.02668], [-82.477729, 37.02607], [-82.477784, 37.025286], [-82.478384, 37.024676], [-82.478606, 37.024541], [-82.478924, 37.024471], [-82.479302, 37.024457], [-82.479292, 37.024447], [-82.479087, 37.024248], [-82.478759, 37.023929], [-82.477499, 37.022703], [-82.477479, 37.022684], [-82.477421, 37.022683], [-82.476963, 37.022869], [-82.476821, 37.022927], [-82.476149, 37.022987], [-82.47495, 37.022338], [-82.474456, 37.022041], [-82.473864, 37.022068], [-82.473594, 37.022166], [-82.473065, 37.02258], [-82.472483, 37.022646], [-82.4719, 37.022439], [-82.471633, 37.022349], [-82.471427, 37.022279], [-82.471096, 37.02216], [-82.470684, 37.022178], [-82.469651, 37.022238], [-82.469068, 37.022119], [-82.468385, 37.021969], [-82.467451, 37.022146], [-82.467423, 37.022151], [-82.467079, 37.021949], [-82.466952, 37.021875], [-82.463414, 37.019854], [-82.463301, 37.01979], [-82.460591, 37.018237], [-82.460546, 37.018211], [-82.45206, 37.013353], [-82.4517, 37.013147], [-82.450697, 37.012573], [-82.450638, 37.012539], [-82.44912, 37.011671], [-82.448822, 37.0115], [-82.443852, 37.008654], [-82.443625, 37.008524], [-82.442205, 37.00771], [-82.442, 37.007593], [-82.438485, 37.005581], [-82.438331, 37.005493], [-82.437658, 37.005117], [-82.437513, 37.005036], [-82.435962, 37.004149], [-82.435936, 37.004134], [-82.435461, 37.003862], [-82.435039, 37.003621], [-82.434906, 37.003545], [-82.431847, 37.001794], [-82.429864, 37.000654], [-82.428916, 37.00011], [-82.426219, 36.998547], [-82.423359, 36.996889], [-82.422577, 36.996436], [-82.422464, 36.996371], [-82.416023, 36.992636], [-82.412582, 36.990644], [-82.411653, 36.990106], [-82.408756, 36.988429], [-82.406283, 36.986997], [-82.406138, 36.986913], [-82.405994, 36.986829], [-82.404714, 36.986088], [-82.404503, 36.985966], [-82.40432, 36.98586], [-82.404288, 36.985842], [-82.404078, 36.985794], [-82.403617, 36.985794], [-82.403455, 36.985857], [-82.402897, 36.986076], [-82.402758, 36.986122], [-82.402287, 36.986277], [-82.402077, 36.986357], [-82.401786, 36.986469], [-82.400966, 36.985802], [-82.400742, 36.985627], [-82.400673, 36.985614], [-82.39931, 36.9847], [-82.399268, 36.984656], [-82.399143, 36.984588], [-82.398687, 36.984342], [-82.397336, 36.983876], [-82.396576, 36.983498], [-82.396235, 36.983185], [-82.396195, 36.982814], [-82.396055, 36.982372], [-82.395695, 36.982202], [-82.395065, 36.982119], [-82.395024, 36.982114], [-82.394481, 36.982194], [-82.39424, 36.982229], [-82.393549, 36.982406], [-82.393356, 36.982463], [-82.393247, 36.982496], [-82.392906, 36.982448], [-82.392709, 36.982279], [-82.392635, 36.982215], [-82.392578, 36.982192], [-82.392137, 36.982022], [-82.391268, 36.981685], [-82.390795, 36.981484], [-82.390684, 36.981433], [-82.390667, 36.981425], [-82.390461, 36.981228], [-82.390115, 36.980788], [-82.389939, 36.980629], [-82.389866, 36.980566], [-82.389323, 36.980335], [-82.389059, 36.98024], [-82.388952, 36.980201], [-82.388888, 36.979965], [-82.388867, 36.979936], [-82.388769, 36.979804], [-82.388307, 36.979732], [-82.388261, 36.979725], [-82.388188, 36.979735], [-82.388082, 36.97975], [-82.387858, 36.979781], [-82.387468, 36.980002], [-82.387425, 36.980027], [-82.387037, 36.98022], [-82.386955, 36.980334], [-82.386614, 36.980632], [-82.385035, 36.980661], [-82.38491, 36.98066], [-82.384599, 36.980646], [-82.384295, 36.980633], [-82.384093, 36.980585], [-82.383585, 36.980464], [-82.383356, 36.980413], [-82.383349, 36.980411], [-82.383345, 36.98041], [-82.382776, 36.980384], [-82.382766, 36.980384], [-82.382545, 36.980389], [-82.382495, 36.980411], [-82.382307, 36.980507], [-82.382033, 36.980581], [-82.381966, 36.980565], [-82.381958, 36.980563], [-82.381833, 36.980532], [-82.381115, 36.980357], [-82.380244, 36.980293], [-82.379493, 36.980543], [-82.378862, 36.980786], [-82.378672, 36.980601], [-82.378861, 36.980038], [-82.379006, 36.979622], [-82.379021, 36.979579], [-82.379682, 36.979256], [-82.379849, 36.979106], [-82.379919, 36.979043], [-82.37993, 36.979033], [-82.379989, 36.978859], [-82.380082, 36.97858], [-82.380282, 36.97829], [-82.380362, 36.978231], [-82.380586, 36.97758], [-82.380539, 36.977476], [-82.380531, 36.977302], [-82.380527, 36.977228], [-82.380527, 36.977223], [-82.380507, 36.976809], [-82.380314, 36.976148], [-82.380197, 36.975739], [-82.380191, 36.975515], [-82.379859, 36.975381], [-82.379835, 36.975371], [-82.379377, 36.975186], [-82.379323, 36.974983], [-82.379309, 36.97493], [-82.379019, 36.974882], [-82.378877, 36.974864], [-82.378781, 36.974851], [-82.378605, 36.974827], [-82.378527, 36.974815], [-82.378448, 36.974803], [-82.37837, 36.97479], [-82.378291, 36.974777], [-82.378214, 36.974763], [-82.378136, 36.974749], [-82.378058, 36.974734], [-82.377927, 36.974709], [-82.377444, 36.974984], [-82.376831, 36.97492], [-82.375726, 36.975018], [-82.375205, 36.975195], [-82.374874, 36.975501], [-82.374683, 36.97564], [-82.374421, 36.975618], [-82.374415, 36.975567], [-82.374404, 36.975531], [-82.374387, 36.975478], [-82.374326, 36.975288], [-82.374003, 36.975171], [-82.373542, 36.97528], [-82.373254, 36.975461], [-82.373225, 36.97549], [-82.373106, 36.975608], [-82.372687, 36.976029], [-82.372611, 36.976105], [-82.37226, 36.975908], [-82.371432, 36.975443], [-82.371389, 36.975418], [-82.371356, 36.9754], [-82.371402, 36.975365], [-82.371466, 36.975317], [-82.371435, 36.97523], [-82.370891, 36.973715], [-82.37072, 36.973555], [-82.370593, 36.973512], [-82.36915, 36.973029], [-82.367808, 36.971931], [-82.367812, 36.971565], [-82.367813, 36.971451], [-82.367776, 36.970983], [-82.367621, 36.970679], [-82.367238, 36.970586], [-82.366785, 36.970526], [-82.366599, 36.970469], [-82.366145, 36.970329], [-82.366104, 36.970316], [-82.365956, 36.970164], [-82.365381, 36.969574], [-82.365268, 36.968885], [-82.365259, 36.968832], [-82.36525, 36.968777], [-82.365427, 36.968555], [-82.365625, 36.968304], [-82.365638, 36.96829], [-82.365662, 36.968264], [-82.365686, 36.968228], [-82.365737, 36.968152], [-82.365741, 36.968146], [-82.365772, 36.9681], [-82.365738, 36.967826], [-82.365552, 36.9674], [-82.365416, 36.967098], [-82.365107, 36.966412], [-82.365078, 36.966235], [-82.36504, 36.966002], [-82.364926, 36.965728], [-82.364702, 36.965481], [-82.364278, 36.965308], [-82.364228, 36.96528], [-82.364179, 36.965252], [-82.363701, 36.964983], [-82.363669, 36.964838], [-82.363917, 36.96465], [-82.364003, 36.964629], [-82.364267, 36.964565], [-82.364559, 36.964643], [-82.364836, 36.964652], [-82.365007, 36.964377], [-82.365178, 36.963897], [-82.36512, 36.962843], [-82.365319, 36.962408], [-82.365397, 36.962353], [-82.365376, 36.96234], [-82.36533, 36.962313], [-82.365293, 36.962292], [-82.365247, 36.962265], [-82.365206, 36.96224], [-82.365159, 36.962214], [-82.365109, 36.962183], [-82.365091, 36.962172], [-82.365015, 36.962131], [-82.364889, 36.962063], [-82.364478, 36.961835], [-82.364436, 36.961804], [-82.364, 36.961462], [-82.363953, 36.961133], [-82.363425, 36.960709], [-82.363052, 36.960495], [-82.36305, 36.960359], [-82.363248, 36.96026], [-82.363436, 36.959976], [-82.363634, 36.959989], [-82.363855, 36.960111], [-82.36397, 36.960117], [-82.363606, 36.959845], [-82.362606, 36.958976], [-82.362491, 36.958747], [-82.362194, 36.958245], [-82.36232, 36.95797], [-82.362397, 36.957711], [-82.362474, 36.957524], [-82.362623, 36.957434], [-82.3627, 36.957159], [-82.362756, 36.956892], [-82.362883, 36.956681], [-82.363042, 36.956583], [-82.363084, 36.956576], [-82.363118, 36.95657], [-82.363113, 36.956538], [-82.36309, 36.956388], [-82.362756, 36.9561], [-82.362746, 36.956091], [-82.362233, 36.955862], [-82.361771, 36.955844], [-82.36174, 36.955861], [-82.361657, 36.955904], [-82.361566, 36.95595], [-82.361473, 36.955995], [-82.361381, 36.956039], [-82.361288, 36.956083], [-82.360946, 36.956266], [-82.360901, 36.956288], [-82.360853, 36.956306], [-82.360803, 36.956319], [-82.360767, 36.956326], [-82.360732, 36.956331], [-82.36062, 36.956342], [-82.360506, 36.956344], [-82.360393, 36.956337], [-82.360281, 36.956317], [-82.360199, 36.956298], [-82.35978, 36.95629], [-82.359114, 36.956278], [-82.35906, 36.956277], [-82.358625, 36.956426], [-82.358555, 36.956466], [-82.358504, 36.956507], [-82.358468, 36.956563], [-82.358459, 36.956587], [-82.358327, 36.956538], [-82.358186, 36.956601], [-82.358063, 36.956842], [-82.357875, 36.957405], [-82.3577, 36.957776], [-82.357691, 36.957776], [-82.357606, 36.95777], [-82.357483, 36.957744], [-82.3574, 36.957719], [-82.357185, 36.957719], [-82.356757, 36.957527], [-82.35666, 36.957345], [-82.356589, 36.95723], [-82.356372, 36.956821], [-82.355823, 36.956342], [-82.355544, 36.956506], [-82.355341, 36.956659], [-82.355217, 36.956752], [-82.354685, 36.956765], [-82.354175, 36.956875], [-82.354014, 36.957047], [-82.353977, 36.957087], [-82.353993, 36.957161], [-82.353134, 36.957354], [-82.352981, 36.957457], [-82.353055, 36.957831], [-82.352845, 36.957921], [-82.352559, 36.957874], [-82.352529, 36.957869], [-82.352258, 36.957565], [-82.351895, 36.957368], [-82.351393, 36.957366], [-82.351129, 36.957464], [-82.351107, 36.957472], [-82.350918, 36.957728], [-82.350751, 36.957982], [-82.350552, 36.958163], [-82.350184, 36.958161], [-82.350141, 36.958161], [-82.349024, 36.958114], [-82.348594, 36.958207], [-82.348156, 36.958413], [-82.347537, 36.958645], [-82.34714, 36.958948], [-82.346764, 36.959339], [-82.346619, 36.959711], [-82.341069, 36.963051], [-82.341044, 36.963066], [-82.339815, 36.963806], [-82.338993, 36.964301], [-82.338672, 36.964494], [-82.338302, 36.964717], [-82.336095, 36.966045], [-82.336075, 36.966057], [-82.334634, 36.966925], [-82.332464, 36.968231], [-82.332457, 36.968235], [-82.328013, 36.970912], [-82.327399, 36.96957], [-82.327164, 36.969055], [-82.3271, 36.968913], [-82.324203, 36.962442], [-82.32406, 36.962145], [-82.323489, 36.960875], [-82.321992, 36.957543], [-82.320909, 36.955138], [-82.320856, 36.955021], [-82.318725, 36.950289], [-82.318687, 36.950203], [-82.318302, 36.949332], [-82.317769, 36.948146], [-82.315111, 36.942231], [-82.314915, 36.941794], [-82.314785, 36.941484], [-82.312252, 36.935855], [-82.312184, 36.935698], [-82.310192, 36.931275], [-82.309041, 36.928744], [-82.308547, 36.927614], [-82.308461, 36.927417], [-82.305637, 36.921161], [-82.305195, 36.920182], [-82.305154, 36.920091], [-82.3038, 36.917164], [-82.303662, 36.916868], [-82.303281, 36.916047], [-82.302221, 36.913585], [-82.302176, 36.913481], [-82.301702, 36.91238], [-82.301485, 36.911924], [-82.301391, 36.911727], [-82.30115, 36.9112], [-82.300364, 36.909552], [-82.299778, 36.908172], [-82.299726, 36.908036], [-82.299231, 36.906899], [-82.299008, 36.906382], [-82.298827, 36.905961], [-82.298789, 36.905872], [-82.298754, 36.90579], [-82.298598, 36.905426], [-82.300881, 36.90486], [-82.300887, 36.904859], [-82.301416, 36.904728], [-82.301824, 36.904678], [-82.30184, 36.904676], [-82.301933, 36.904664], [-82.30194, 36.904663], [-82.302222, 36.904628], [-82.302332, 36.904615], [-82.303257, 36.904679], [-82.303968, 36.904691], [-82.304123, 36.904694], [-82.304229, 36.904703], [-82.304334, 36.904708], [-82.304549, 36.904715], [-82.30492, 36.904612], [-82.305243, 36.904568], [-82.305512, 36.904358], [-82.305747, 36.904254], [-82.305973, 36.904027], [-82.306076, 36.903911], [-82.306859, 36.903321], [-82.308033, 36.902547], [-82.308796, 36.902234], [-82.308935, 36.902177], [-82.30901, 36.902157], [-82.309028, 36.902152], [-82.309121, 36.902127], [-82.309168, 36.902114], [-82.309293, 36.902083], [-82.309326, 36.902075], [-82.309789, 36.902016], [-82.311402, 36.901907], [-82.3126, 36.901896], [-82.31355, 36.901927], [-82.314586, 36.902083], [-82.314951, 36.902138], [-82.315107, 36.902161], [-82.315388, 36.902225], [-82.315977, 36.90237], [-82.315986, 36.902372], [-82.316315, 36.902506], [-82.316985, 36.902916], [-82.317076, 36.903342], [-82.317048, 36.903826], [-82.316968, 36.904024], [-82.316873, 36.904215], [-82.316864, 36.904234], [-82.316791, 36.904382], [-82.316489, 36.904999], [-82.316391, 36.9052], [-82.316365, 36.90525], [-82.316332, 36.905314], [-82.316131, 36.90574], [-82.31599, 36.906534], [-82.316, 36.907171], [-82.316351, 36.907805], [-82.316965, 36.907927], [-82.317797, 36.907855], [-82.318258, 36.907626], [-82.318414, 36.907552], [-82.318469, 36.907526], [-82.318793, 36.907369], [-82.319485, 36.906661], [-82.319588, 36.906487], [-82.320065, 36.905679], [-82.320542, 36.90487], [-82.320562, 36.904836], [-82.320574, 36.904781], [-82.32062, 36.904579], [-82.320665, 36.904376], [-82.320722, 36.904124], [-82.320685, 36.903828], [-82.320642, 36.90348], [-82.320188, 36.902646], [-82.319462, 36.901685], [-82.319186, 36.901322], [-82.319172, 36.901303], [-82.319089, 36.901195], [-82.319006, 36.901086], [-82.318993, 36.901068], [-82.318983, 36.901055], [-82.31883, 36.900854], [-82.318732, 36.900725], [-82.318633, 36.900595], [-82.318439, 36.900401], [-82.318251, 36.900239], [-82.318229, 36.90022], [-82.318221, 36.900207], [-82.318208, 36.900186], [-82.318154, 36.900098], [-82.318099, 36.900009], [-82.318032, 36.899901], [-82.317978, 36.899813], [-82.317813, 36.899453], [-82.317755, 36.899347], [-82.317652, 36.899246], [-82.317547, 36.899143], [-82.317426, 36.899052], [-82.317343, 36.898951], [-82.316693, 36.898195], [-82.316436, 36.897553], [-82.316404, 36.897472], [-82.316371, 36.897392], [-82.316349, 36.897336], [-82.316357, 36.897244], [-82.316409, 36.896674], [-82.316834, 36.895834], [-82.316897, 36.895709], [-82.31753, 36.894864], [-82.317585, 36.894791], [-82.317618, 36.894655], [-82.317841, 36.89374], [-82.317786, 36.892137], [-82.31777, 36.89166], [-82.317738, 36.889491], [-82.318153, 36.887814], [-82.318164, 36.887769], [-82.318197, 36.887751], [-82.318831, 36.887408], [-82.320023, 36.887324], [-82.320528, 36.887593], [-82.320966, 36.88804], [-82.321664, 36.889155], [-82.321899, 36.89012], [-82.322041, 36.890869], [-82.322482, 36.891582], [-82.32322, 36.892207], [-82.323508, 36.892451], [-82.323637, 36.89263], [-82.324257, 36.893493], [-82.324669, 36.894465], [-82.324754, 36.894665], [-82.324957, 36.895319], [-82.325039, 36.895582], [-82.325274, 36.896715], [-82.325298, 36.89683], [-82.325377, 36.897442], [-82.325423, 36.897804], [-82.325447, 36.898102], [-82.325643, 36.898488], [-82.325826, 36.898634], [-82.326323, 36.899029], [-82.327193, 36.899481], [-82.327862, 36.899675], [-82.327873, 36.899678], [-82.327898, 36.899684], [-82.327964, 36.899669], [-82.328648, 36.899523], [-82.329263, 36.899049], [-82.329525, 36.898624], [-82.329596, 36.898506], [-82.329597, 36.898465], [-82.329604, 36.897643], [-82.329187, 36.895953], [-82.328944, 36.89487], [-82.328832, 36.894368], [-82.32877, 36.894156], [-82.328409, 36.892928], [-82.328335, 36.89228], [-82.328411, 36.891678], [-82.328814, 36.891126], [-82.329422, 36.890797], [-82.330199, 36.890483], [-82.330729, 36.890372], [-82.331232, 36.890392], [-82.331402, 36.890398], [-82.332005, 36.890521], [-82.33282, 36.890682], [-82.333502, 36.890789], [-82.333885, 36.890849], [-82.334175, 36.890651], [-82.334402, 36.890497], [-82.334836, 36.890017], [-82.335068, 36.88945], [-82.335188, 36.888788], [-82.335344, 36.887786], [-82.335577, 36.887451], [-82.335599, 36.887448], [-82.335888, 36.887297], [-82.336478, 36.887162], [-82.336931, 36.887319], [-82.337418, 36.887669], [-82.337956, 36.888124], [-82.338427, 36.888724], [-82.338979, 36.889436], [-82.339341, 36.890167], [-82.339656, 36.891099], [-82.339769, 36.891961], [-82.339564, 36.892987], [-82.339463, 36.894295], [-82.339641, 36.894801], [-82.339926, 36.895062], [-82.340129, 36.895248], [-82.340552, 36.895562], [-82.34164, 36.89637], [-82.341813, 36.896408], [-82.342063, 36.896463], [-82.342574, 36.896465], [-82.342614, 36.896465], [-82.343261, 36.896128], [-82.343806, 36.895696], [-82.344671, 36.895195], [-82.345368, 36.894833], [-82.346625, 36.894377], [-82.346725, 36.89433], [-82.347288, 36.894067], [-82.34785, 36.893804], [-82.34814, 36.893669], [-82.349148, 36.893124], [-82.349981, 36.892739], [-82.350756, 36.892417], [-82.350798, 36.8924], [-82.35155, 36.892385], [-82.351647, 36.892424], [-82.352004, 36.892566], [-82.352611, 36.892931], [-82.353711, 36.894025], [-82.354615, 36.894742], [-82.355344, 36.895186], [-82.356003, 36.895247], [-82.35676, 36.895317], [-82.357545, 36.895134], [-82.357739, 36.895089], [-82.357907, 36.895019], [-82.358646, 36.894701], [-82.358754, 36.894632], [-82.35949, 36.894177], [-82.359607, 36.89381], [-82.359672, 36.893594], [-82.359671, 36.893425], [-82.359669, 36.892739], [-82.359422, 36.892331], [-82.35889, 36.891626], [-82.358031, 36.891207], [-82.357232, 36.890756], [-82.356891, 36.890081], [-82.35683, 36.889915], [-82.356787, 36.889795], [-82.356743, 36.889675], [-82.356692, 36.889535], [-82.356795, 36.889042], [-82.357258, 36.888497], [-82.357984, 36.888143], [-82.358565, 36.888073], [-82.358709, 36.888095], [-82.359184, 36.888173], [-82.359659, 36.888252], [-82.359771, 36.88827], [-82.359857, 36.888309], [-82.36067, 36.888673], [-82.361238, 36.889086], [-82.362197, 36.890133], [-82.363146, 36.891221], [-82.363754, 36.891741], [-82.36404, 36.891986], [-82.364874, 36.892703], [-82.365353, 36.893182], [-82.365526, 36.893252], [-82.365782, 36.893355], [-82.366039, 36.893458], [-82.367063, 36.893442], [-82.367433, 36.893436], [-82.368576, 36.8934], [-82.369699, 36.893389], [-82.369822, 36.893368], [-82.370299, 36.893286], [-82.370897, 36.89307], [-82.371413, 36.892702], [-82.371879, 36.892326], [-82.372564, 36.891876], [-82.372766, 36.891789], [-82.373122, 36.891636], [-82.373277, 36.891573], [-82.373919, 36.891314], [-82.374872, 36.890979], [-82.375912, 36.890541], [-82.376162, 36.890396], [-82.37622, 36.890349], [-82.376481, 36.890138], [-82.376482, 36.890138], [-82.376744, 36.889927], [-82.377012, 36.889711], [-82.377762, 36.889429], [-82.378516, 36.889211], [-82.378682, 36.889163], [-82.379722, 36.8888], [-82.380349, 36.888464], [-82.380882, 36.888131], [-82.382021, 36.887413], [-82.382747, 36.887032], [-82.383068, 36.886863], [-82.383388, 36.886695], [-82.383602, 36.886583], [-82.383979, 36.886497], [-82.384692, 36.886333], [-82.385418, 36.886164], [-82.386292, 36.885961], [-82.387632, 36.885847], [-82.387835, 36.885848], [-82.388723, 36.885854], [-82.389273, 36.885749], [-82.389743, 36.885628], [-82.390102, 36.885282], [-82.390211, 36.884959], [-82.39026, 36.884595], [-82.390311, 36.884373], [-82.390333, 36.884279], [-82.3904, 36.883994], [-82.390466, 36.883708], [-82.390468, 36.883697], [-82.390491, 36.883591], [-82.390778, 36.883072], [-82.390848, 36.882945], [-82.390919, 36.882818], [-82.39099, 36.882689], [-82.391829, 36.881908], [-82.392049, 36.881786], [-82.392909, 36.881311], [-82.394389, 36.880842], [-82.394859, 36.880672], [-82.395901, 36.880288], [-82.396238, 36.880164], [-82.398068, 36.879695], [-82.399048, 36.879485], [-82.400138, 36.879009], [-82.400839, 36.878671], [-82.401618, 36.878292], [-82.402248, 36.877945], [-82.402804, 36.877806], [-82.402958, 36.877767], [-82.404048, 36.87742], [-82.40445, 36.877291], [-82.405027, 36.877105], [-82.405749, 36.87682], [-82.406083, 36.876688], [-82.406436, 36.876483], [-82.406536, 36.876425], [-82.40663, 36.876367], [-82.406637, 36.876363], [-82.406659, 36.876436], [-82.406709, 36.876604], [-82.40696, 36.876943], [-82.407078, 36.877102], [-82.407196, 36.877262], [-82.407248, 36.877333], [-82.407376, 36.877505], [-82.407445, 36.877782], [-82.407445, 36.878528], [-82.407375, 36.878618], [-82.407143, 36.878727], [-82.40603, 36.878806], [-82.405646, 36.878918], [-82.405246, 36.878974], [-82.404787, 36.8791], [-82.404601, 36.879212], [-82.404562, 36.879229], [-82.404512, 36.879266], [-82.403971, 36.879593], [-82.40371, 36.879922], [-82.403515, 36.880469], [-82.40325, 36.88088], [-82.402944, 36.881231], [-82.402693, 36.881435], [-82.402297, 36.881899], [-82.402066, 36.88217], [-82.401979, 36.882407], [-82.402003, 36.882583], [-82.402478, 36.883054], [-82.402822, 36.883594], [-82.402814, 36.883737], [-82.402602, 36.884088], [-82.402543, 36.884441], [-82.402605, 36.884647], [-82.403291, 36.885341], [-82.403694, 36.885613], [-82.405239, 36.885377], [-82.406452, 36.884988], [-82.406762, 36.884939], [-82.407166, 36.884908], [-82.408064, 36.884955], [-82.408549, 36.885033], [-82.408966, 36.885166], [-82.409053, 36.885222], [-82.409293, 36.885216], [-82.411184, 36.885168], [-82.421111, 36.884916], [-82.421203, 36.884914], [-82.4229, 36.884882], [-82.433363, 36.884682], [-82.43355, 36.88468], [-82.43383, 36.884677], [-82.433901, 36.884674], [-82.433925, 36.884673], [-82.434905, 36.884653], [-82.435039, 36.88465], [-82.439317, 36.884563], [-82.439402, 36.884561], [-82.44014, 36.884545], [-82.44045, 36.884536], [-82.440489, 36.884535], [-82.440623, 36.884531], [-82.44067, 36.88453], [-82.440838, 36.884525], [-82.440882, 36.884524], [-82.44092, 36.884522], [-82.440929, 36.884522], [-82.441168, 36.884515], [-82.441553, 36.884504], [-82.445962, 36.884422], [-82.448605, 36.884371], [-82.450617, 36.884332], [-82.46214, 36.884085], [-82.463306, 36.88406], [-82.464919, 36.884026], [-82.472471, 36.883869], [-82.480345, 36.88372], [-82.481206, 36.883704], [-82.492096, 36.883495], [-82.500028, 36.883342], [-82.502601, 36.883276], [-82.505727, 36.883197], [-82.50594, 36.883194], [-82.512954, 36.883088], [-82.513032, 36.883086], [-82.517301, 36.882999], [-82.52068, 36.882936], [-82.521701, 36.882914], [-82.52513, 36.882839], [-82.528146, 36.882778], [-82.5327, 36.882668], [-82.537581, 36.882584], [-82.538855, 36.882566], [-82.539161, 36.882551], [-82.541657, 36.8825], [-82.541716, 36.882499], [-82.541776, 36.882498], [-82.541805, 36.882497], [-82.546667, 36.882364], [-82.547286, 36.88236], [-82.553667, 36.882224], [-82.554556, 36.882205], [-82.561421, 36.882063], [-82.561564, 36.88206], [-82.564575, 36.881997], [-82.564733, 36.881994], [-82.56631, 36.881961], [-82.566593, 36.881955], [-82.566622, 36.881954], [-82.567023, 36.881946], [-82.567032, 36.881946], [-82.567139, 36.881944], [-82.567154, 36.881944], [-82.567161, 36.881943], [-82.567171, 36.881943], [-82.56722, 36.881942], [-82.567423, 36.881938], [-82.569182, 36.881901], [-82.573455, 36.881811], [-82.580065, 36.88164], [-82.587168, 36.881481], [-82.587185, 36.881481], [-82.5906, 36.881404], [-82.590963, 36.881396], [-82.591888, 36.88138], [-82.592328, 36.881372], [-82.592899, 36.881362], [-82.593022, 36.88136], [-82.593031, 36.88136], [-82.59316, 36.881358], [-82.593506, 36.881352], [-82.594948, 36.881352], [-82.61616, 36.880905], [-82.616701, 36.880893], [-82.616768, 36.880892], [-82.616836, 36.880891], [-82.616864, 36.88089], [-82.617093, 36.880885], [-82.617279, 36.880881], [-82.623381, 36.879958], [-82.623573, 36.879928], [-82.627075, 36.879476], [-82.634495, 36.878506], [-82.634502, 36.878505], [-82.634612, 36.878491], [-82.634687, 36.878424], [-82.634784, 36.878317], [-82.634989, 36.87804], [-82.635126, 36.877886], [-82.635304, 36.877675], [-82.635473, 36.87746], [-82.635666, 36.877161], [-82.635832, 36.876927], [-82.635916, 36.876836], [-82.636067, 36.876691], [-82.636231, 36.876555], [-82.636296, 36.876517], [-82.636413, 36.876465], [-82.636539, 36.876427], [-82.636716, 36.876404], [-82.63689, 36.876365], [-82.637093, 36.876302], [-82.637255, 36.876236], [-82.637409, 36.876158], [-82.638047, 36.875748], [-82.638432, 36.875472], [-82.638548, 36.875377], [-82.638623, 36.875297], [-82.638868, 36.874309], [-82.638902, 36.874174], [-82.638942, 36.874014], [-82.639254, 36.873356], [-82.639257, 36.873349], [-82.639583, 36.873244], [-82.639895, 36.872931], [-82.640029, 36.872689], [-82.639927, 36.872532], [-82.639891, 36.872478], [-82.639887, 36.872469], [-82.640328, 36.871999], [-82.640341, 36.871999], [-82.640366, 36.871998], [-82.640413, 36.871996], [-82.640471, 36.871994], [-82.640482, 36.871994], [-82.640791, 36.871904], [-82.641188, 36.871756], [-82.641605, 36.871528], [-82.641802, 36.871318], [-82.64175, 36.871108], [-82.641744, 36.871085], [-82.641744, 36.871079], [-82.641888, 36.870875], [-82.641998, 36.8702], [-82.641868, 36.870026], [-82.641904, 36.869611], [-82.642156, 36.869279], [-82.642546, 36.869146], [-82.642565, 36.869139], [-82.642574, 36.86913], [-82.642669, 36.869078], [-82.642758, 36.869048], [-82.642871, 36.86903], [-82.643233, 36.869035], [-82.643273, 36.869031], [-82.643352, 36.869016], [-82.643445, 36.868986], [-82.643546, 36.868934], [-82.643671, 36.868854], [-82.643815, 36.868745], [-82.643916, 36.868675], [-82.644177, 36.86851], [-82.645027, 36.868036], [-82.645136, 36.86797], [-82.645214, 36.86791], [-82.645301, 36.867826], [-82.645597, 36.867444], [-82.64568, 36.867336], [-82.64572, 36.867266], [-82.645773, 36.867175], [-82.645959, 36.866932], [-82.646276, 36.866752], [-82.646653, 36.866508], [-82.646888, 36.8662], [-82.647055, 36.865925], [-82.647228, 36.865805], [-82.64723, 36.86579], [-82.647245, 36.865679], [-82.647958, 36.863481], [-82.648122, 36.863345], [-82.64878, 36.8628], [-82.648827, 36.862731], [-82.648832, 36.862724], [-82.64896, 36.862713], [-82.649229, 36.862647], [-82.649487, 36.862499], [-82.649704, 36.862345], [-82.649912, 36.86219], [-82.65022, 36.862107], [-82.650518, 36.861959], [-82.650655, 36.861773], [-82.650572, 36.861508], [-82.650459, 36.861284], [-82.650396, 36.861003], [-82.650411, 36.860689], [-82.650466, 36.860294], [-82.650292, 36.859974], [-82.650087, 36.859802], [-82.649817, 36.859496], [-82.649722, 36.859134], [-82.649837, 36.858731], [-82.650051, 36.858351], [-82.650507, 36.858381], [-82.650621, 36.858394], [-82.650765, 36.858416], [-82.650871, 36.858432], [-82.6511, 36.858374], [-82.651338, 36.858275], [-82.651642, 36.857846], [-82.65189, 36.85761], [-82.652297, 36.857422], [-82.65265, 36.856952], [-82.652756, 36.856613], [-82.652601, 36.856244], [-82.652187, 36.855862], [-82.652074, 36.855678], [-82.6521, 36.855356], [-82.652056, 36.855058], [-82.651773, 36.854812], [-82.651462, 36.854758], [-82.651391, 36.854725], [-82.651385, 36.854723], [-82.651379, 36.85472], [-82.651343, 36.854703], [-82.6513, 36.854683], [-82.651236, 36.854654], [-82.651151, 36.854614], [-82.650712, 36.854376], [-82.650562, 36.854182], [-82.65062, 36.853886], [-82.650742, 36.853583], [-82.65101, 36.853429], [-82.651042, 36.85341], [-82.65129, 36.85332], [-82.651659, 36.853418], [-82.651751, 36.853452], [-82.651765, 36.853454], [-82.6519, 36.85347], [-82.651958, 36.853477], [-82.651983, 36.85348], [-82.651997, 36.853482], [-82.65202, 36.853485], [-82.652123, 36.853497], [-82.652332, 36.853463], [-82.652479, 36.853309], [-82.652638, 36.853146], [-82.652829, 36.853096], [-82.653249, 36.853189], [-82.653722, 36.853378], [-82.65386, 36.853296], [-82.653977, 36.853046], [-82.654043, 36.85278], [-82.654188, 36.852424], [-82.654222, 36.851973], [-82.654299, 36.851715], [-82.654419, 36.851632], [-82.654546, 36.851544], [-82.654755, 36.851486], [-82.654883, 36.851332], [-82.654844, 36.851137], [-82.654434, 36.850524], [-82.654384, 36.850353], [-82.654525, 36.849961], [-82.654586, 36.849757], [-82.654706, 36.849544], [-82.654897, 36.849419], [-82.655389, 36.848795], [-82.655619, 36.848497], [-82.65582, 36.84796], [-82.655803, 36.847942], [-82.655764, 36.847901], [-82.655726, 36.847861], [-82.655684, 36.847833], [-82.655656, 36.847803], [-82.655713, 36.847299], [-82.656045, 36.847049], [-82.656098, 36.847008], [-82.656141, 36.846976], [-82.656281, 36.84679], [-82.656519, 36.846715], [-82.656757, 36.846536], [-82.656873, 36.846237], [-82.656849, 36.845972], [-82.656795, 36.845618], [-82.65678, 36.845305], [-82.656798, 36.845287], [-82.656968, 36.845118], [-82.657342, 36.844769], [-82.657571, 36.844606], [-82.65787, 36.844643], [-82.658352, 36.844564], [-82.658725, 36.844378], [-82.65879, 36.84386], [-82.658791, 36.84385], [-82.658842, 36.843388], [-82.659108, 36.843326], [-82.659245, 36.843307], [-82.660302, 36.843287], [-82.660401, 36.843279], [-82.660538, 36.843253], [-82.660597, 36.843231], [-82.660663, 36.843192], [-82.660804, 36.843054], [-82.661443, 36.842125], [-82.661449, 36.842116], [-82.661788, 36.84177], [-82.662705, 36.840911], [-82.662762, 36.840876], [-82.662988, 36.840738], [-82.663265, 36.840631], [-82.663408, 36.840562], [-82.663602, 36.840445], [-82.663761, 36.840338], [-82.664647, 36.839861], [-82.66465, 36.839859], [-82.66467, 36.839892], [-82.664722, 36.839983], [-82.664764, 36.840055], [-82.66502, 36.840119], [-82.665074, 36.840096], [-82.665534, 36.839897], [-82.665975, 36.839728], [-82.666158, 36.839605], [-82.666516, 36.839358], [-82.666577, 36.839314], [-82.666656, 36.839103], [-82.66673, 36.838904], [-82.666766, 36.838807], [-82.668263, 36.838206], [-82.668384, 36.838266], [-82.668987, 36.838404], [-82.669245, 36.838448], [-82.669517, 36.838491], [-82.669982, 36.838684], [-82.670055, 36.83875], [-82.670075, 36.838769], [-82.670143, 36.838834], [-82.670632, 36.838813], [-82.671211, 36.838832], [-82.67136, 36.838787], [-82.671386, 36.838779], [-82.671414, 36.838771], [-82.67142, 36.838769], [-82.671427, 36.838767], [-82.671433, 36.838765], [-82.671457, 36.838758], [-82.671495, 36.838746], [-82.671529, 36.838735], [-82.671536, 36.838733], [-82.671552, 36.838729], [-82.671559, 36.838727], [-82.671577, 36.838721], [-82.67162, 36.838707], [-82.671983, 36.83835], [-82.671992, 36.838317], [-82.67207, 36.838045], [-82.672093, 36.838031], [-82.672693, 36.837683], [-82.672782, 36.837706], [-82.672856, 36.837726], [-82.673134, 36.8378], [-82.673373, 36.83775], [-82.673789, 36.837513], [-82.673965, 36.837221], [-82.673915, 36.8371], [-82.673909, 36.837085], [-82.673886, 36.837028], [-82.673876, 36.837005], [-82.67387, 36.836991], [-82.67394, 36.836934], [-82.674285, 36.836657], [-82.674311, 36.836634], [-82.67505, 36.835988], [-82.675334, 36.83574], [-82.676303, 36.834893], [-82.677532, 36.833819], [-82.677779, 36.83344], [-82.678095, 36.832956], [-82.67813, 36.832903], [-82.678386, 36.832652], [-82.678754, 36.832567], [-82.679262, 36.832466], [-82.68, 36.83241], [-82.680785, 36.832186], [-82.681132, 36.831998], [-82.681338, 36.831722], [-82.681634, 36.83143], [-82.682089, 36.831184], [-82.682254, 36.830829], [-82.68241, 36.830513], [-82.682784, 36.830132], [-82.683199, 36.829838], [-82.683505, 36.82957], [-82.683918, 36.829091], [-82.684412, 36.828717], [-82.684553, 36.828291], [-82.684651, 36.828257], [-82.684907, 36.828051], [-82.685534, 36.826998], [-82.68673, 36.825921], [-82.687494, 36.825328], [-82.68746, 36.825268], [-82.687408, 36.825115], [-82.687404, 36.824818], [-82.68751, 36.824495], [-82.687679, 36.824389], [-82.687812, 36.823952], [-82.688229, 36.823423], [-82.688323, 36.823305], [-82.6887, 36.82318], [-82.689097, 36.823064], [-82.689285, 36.822909], [-82.689681, 36.822664], [-82.689838, 36.82251], [-82.689945, 36.82226], [-82.689919, 36.821915], [-82.68986, 36.821898], [-82.689936, 36.8216], [-82.690243, 36.821412], [-82.690606, 36.820942], [-82.690871, 36.820602], [-82.691048, 36.820415], [-82.691346, 36.820324], [-82.691675, 36.820296], [-82.691972, 36.820149], [-82.692078, 36.819882], [-82.692297, 36.819776], [-82.692635, 36.819684], [-82.693084, 36.819672], [-82.693601, 36.819546], [-82.69391, 36.819495], [-82.694277, 36.819371], [-82.694604, 36.819207], [-82.69494, 36.81897], [-82.695276, 36.818701], [-82.695452, 36.818434], [-82.695778, 36.818214], [-82.695947, 36.818116], [-82.696246, 36.818081], [-82.696854, 36.818019], [-82.697469, 36.817796], [-82.697933, 36.817389], [-82.698167, 36.817025], [-82.698375, 36.816894], [-82.698635, 36.816892], [-82.699415, 36.817029], [-82.700317, 36.817294], [-82.700747, 36.817362], [-82.700996, 36.81732], [-82.701283, 36.817132], [-82.70171, 36.816959], [-82.702099, 36.816971], [-82.702642, 36.817256], [-82.702907, 36.817447], [-82.703116, 36.817597], [-82.703229, 36.817869], [-82.703213, 36.818143], [-82.70314, 36.818618], [-82.703194, 36.818956], [-82.70337, 36.819381], [-82.703563, 36.819604], [-82.703535, 36.819773], [-82.70345, 36.820104], [-82.703547, 36.820674], [-82.703812, 36.821017], [-82.704304, 36.821254], [-82.704827, 36.821515], [-82.705102, 36.821946], [-82.705304, 36.822081], [-82.705735, 36.822262], [-82.706068, 36.822508], [-82.706523, 36.822898], [-82.706682, 36.823049], [-82.706775, 36.823137], [-82.707145, 36.823158], [-82.707784, 36.8232], [-82.708535, 36.823329], [-82.709474, 36.823369], [-82.70987, 36.823156], [-82.710215, 36.822863], [-82.710475, 36.822884], [-82.710887, 36.82309], [-82.711266, 36.823086], [-82.711714, 36.822961], [-82.71259, 36.822775], [-82.713426, 36.822647], [-82.714714, 36.822691], [-82.715664, 36.82281], [-82.716568, 36.823196], [-82.717392, 36.82359], [-82.717805, 36.823859], [-82.718284, 36.823839], [-82.718665, 36.823948], [-82.718876, 36.824066], [-82.719114, 36.824], [-82.719293, 36.823942], [-82.719705, 36.824106], [-82.720559, 36.824549], [-82.721356, 36.82504], [-82.722038, 36.825307], [-82.722309, 36.825417], [-82.722634, 36.825767], [-82.723078, 36.826101], [-82.723312, 36.826453], [-82.723512, 36.827143], [-82.723569, 36.827689], [-82.723405, 36.828069], [-82.723239, 36.828344], [-82.723084, 36.828659], [-82.723172, 36.829077], [-82.723201, 36.829213], [-82.723186, 36.829551], [-82.72303, 36.829826], [-82.722677, 36.830232], [-82.722411, 36.830492], [-82.722365, 36.830766], [-82.72244, 36.831127], [-82.722495, 36.831497], [-82.722418, 36.831723], [-82.72238, 36.831828], [-82.722472, 36.832037], [-82.722534, 36.832181], [-82.722989, 36.832368], [-82.723217, 36.832463], [-82.723877, 36.832611], [-82.724489, 36.832749], [-82.724855, 36.832536], [-82.725299, 36.83221], [-82.725932, 36.831875], [-82.726296, 36.831461], [-82.726767, 36.830821], [-82.727235, 36.830188], [-82.727627, 36.829694], [-82.72786, 36.829521], [-82.727984, 36.829425], [-82.72846, 36.829226], [-82.728789, 36.829192], [-82.72911, 36.829317], [-82.729432, 36.829499], [-82.729745, 36.829592], [-82.730083, 36.82958], [-82.730383, 36.829611], [-82.730645, 36.829793], [-82.730875, 36.829871], [-82.731196, 36.829892], [-82.731602, 36.829752], [-82.731798, 36.829685], [-82.73185, 36.829667], [-82.731871, 36.82966], [-82.731881, 36.829656], [-82.731971, 36.829626], [-82.732309, 36.829648], [-82.732511, 36.829775], [-82.733225, 36.830097], [-82.733626, 36.830165], [-82.733753, 36.830044], [-82.733822, 36.829984], [-82.73384, 36.829968], [-82.733865, 36.829946], [-82.733961, 36.829864], [-82.73427, 36.829813], [-82.734867, 36.829702], [-82.735134, 36.829633], [-82.735513, 36.829535], [-82.73579, 36.829377], [-82.735958, 36.829282], [-82.736252, 36.828804], [-82.736466, 36.828319], [-82.736578, 36.827827], [-82.736689, 36.827457], [-82.736722, 36.827361], [-82.737137, 36.827162], [-82.737548, 36.827303], [-82.738023, 36.82737], [-82.738031, 36.827371], [-82.738201, 36.827369], [-82.738369, 36.827368], [-82.738384, 36.827378], [-82.738512, 36.827511], [-82.738539, 36.827531], [-82.738974, 36.82786], [-82.739486, 36.828104], [-82.739626, 36.828272], [-82.73976, 36.828431], [-82.740035, 36.828782], [-82.740242, 36.828866], [-82.740336, 36.829071], [-82.740649, 36.829657], [-82.740716, 36.829775], [-82.740748, 36.829832], [-82.740723, 36.830191], [-82.740869, 36.830616], [-82.741332, 36.830885], [-82.741762, 36.830906], [-82.74225, 36.83078], [-82.742404, 36.830392], [-82.742674, 36.830175], [-82.743281, 36.829708], [-82.743967, 36.829524], [-82.744574, 36.829406], [-82.745083, 36.829433], [-82.745843, 36.829868], [-82.745891, 36.829895], [-82.746304, 36.830257], [-82.747255, 36.831173], [-82.747308, 36.831382], [-82.747375, 36.831872], [-82.747623, 36.832416], [-82.748039, 36.832839], [-82.748397, 36.832771], [-82.748653, 36.832511], [-82.749106, 36.832104], [-82.749141, 36.831709], [-82.7496, 36.831029], [-82.749886, 36.830742], [-82.750259, 36.83045], [-82.750539, 36.830128], [-82.75074, 36.829895], [-82.751016, 36.829722], [-82.7511, 36.829669], [-82.75163, 36.829525], [-82.752061, 36.828929], [-82.752391, 36.828446], [-82.752651, 36.827963], [-82.752822, 36.827721], [-82.753762, 36.827263], [-82.754523, 36.826916], [-82.755074, 36.826457], [-82.755524, 36.826256], [-82.755824, 36.826095], [-82.755904, 36.825886], [-82.756074, 36.82541], [-82.756285, 36.824685], [-82.756725, 36.824041], [-82.757335, 36.823365], [-82.758026, 36.822753], [-82.758606, 36.822181], [-82.758957, 36.82165], [-82.759297, 36.820885], [-82.759627, 36.820442], [-82.760197, 36.820023], [-82.760768, 36.819508], [-82.761068, 36.819025], [-82.761098, 36.818477], [-82.76212, 36.817632], [-82.76229, 36.816947], [-82.76242, 36.81652], [-82.76268, 36.816287], [-82.76317, 36.816037], [-82.763871, 36.815796], [-82.764241, 36.815571], [-82.764311, 36.815329], [-82.764361, 36.81491], [-82.764511, 36.814451], [-82.764921, 36.81396], [-82.764941, 36.813735], [-82.764991, 36.813299], [-82.765301, 36.8128], [-82.765812, 36.812067], [-82.766412, 36.811359], [-82.766982, 36.81098], [-82.767793, 36.810755], [-82.768683, 36.810756], [-82.769464, 36.810571], [-82.769514, 36.810418], [-82.769764, 36.809758], [-82.770294, 36.809549], [-82.770755, 36.809436], [-82.771035, 36.809227], [-82.771075, 36.808856], [-82.771335, 36.808502], [-82.771415, 36.808244], [-82.771314, 36.807825], [-82.771344, 36.807527], [-82.771575, 36.807326], [-82.772765, 36.806996], [-82.773075, 36.806626], [-82.773395, 36.805917], [-82.773655, 36.804967], [-82.773845, 36.804116], [-82.77394, 36.803678], [-82.773725, 36.803256], [-82.773358, 36.802957], [-82.773144, 36.802772], [-82.772561, 36.802547], [-82.771985, 36.802574], [-82.77141, 36.802541], [-82.770851, 36.802316], [-82.770738, 36.802227], [-82.769725, 36.801435], [-82.769498, 36.801257], [-82.769058, 36.800848], [-82.7686, 36.800325], [-82.768442, 36.799906], [-82.768653, 36.7994], [-82.768944, 36.799061], [-82.769025, 36.798973], [-82.76951, 36.798985], [-82.769641, 36.799044], [-82.770359, 36.799371], [-82.77071, 36.799557], [-82.771232, 36.799849], [-82.771312, 36.799887], [-82.772234, 36.800639], [-82.772361, 36.800733], [-82.772372, 36.800741], [-82.77241, 36.800769], [-82.772474, 36.800816], [-82.772583, 36.800896], [-82.772593, 36.800903], [-82.772611, 36.800916], [-82.772799, 36.801052], [-82.77285, 36.801089], [-82.785824, 36.810609], [-82.785978, 36.810722], [-82.786036, 36.810764], [-82.786049, 36.810774], [-82.786091, 36.810805], [-82.786114, 36.810822], [-82.786259, 36.810928], [-82.786311, 36.810966], [-82.786322, 36.810974], [-82.786329, 36.810979], [-82.786621, 36.811231], [-82.78682, 36.811405], [-82.787056, 36.811568], [-82.787072, 36.811579], [-82.787309, 36.811742], [-82.787475, 36.811862], [-82.78751, 36.811887], [-82.789039, 36.812968], [-82.790498, 36.814058], [-82.790505, 36.814063], [-82.790817, 36.814295], [-82.790824, 36.8143], [-82.791506, 36.814803], [-82.791544, 36.814817], [-82.791598, 36.814845], [-82.791757, 36.814942], [-82.792392, 36.815404], [-82.792588, 36.815591], [-82.792608, 36.81561], [-82.792725, 36.815706], [-82.792855, 36.815796], [-82.79286, 36.815799], [-82.793044, 36.815926], [-82.793575, 36.816333], [-82.793963, 36.816589], [-82.794058, 36.816662], [-82.79444, 36.816982], [-82.794461, 36.816995], [-82.794733, 36.817215], [-82.79498, 36.817415], [-82.794981, 36.817416], [-82.795206, 36.817582], [-82.79523, 36.8176], [-82.79536, 36.817696], [-82.798342, 36.819896], [-82.799439, 36.820768], [-82.8003, 36.821452], [-82.801913, 36.822632], [-82.805161, 36.825007], [-82.805225, 36.825054], [-82.805232, 36.825059], [-82.805244, 36.825067], [-82.805249, 36.825071], [-82.805443, 36.825213], [-82.805485, 36.825244], [-82.807298, 36.82657], [-82.809234, 36.827991], [-82.812414, 36.830321], [-82.812586, 36.830447], [-82.818029, 36.834436], [-82.818519, 36.834805], [-82.819311, 36.835401], [-82.819473, 36.835522], [-82.820776, 36.836503], [-82.821282, 36.836884], [-82.821308, 36.836904], [-82.821549, 36.837093], [-82.821561, 36.837102], [-82.821587, 36.837122], [-82.821601, 36.837133], [-82.821607, 36.837138], [-82.821799, 36.837289], [-82.822025, 36.83746], [-82.82203, 36.837464], [-82.822036, 36.837468], [-82.822065, 36.83749], [-82.822695, 36.837968], [-82.823285, 36.83843], [-82.8233, 36.838442], [-82.823362, 36.838491], [-82.823431, 36.838544], [-82.823497, 36.838598], [-82.823613, 36.83869], [-82.823839, 36.838869], [-82.82493, 36.839737], [-82.825066, 36.839842], [-82.835471, 36.848095], [-82.835543, 36.848152], [-82.838437, 36.848869], [-82.839068, 36.848869], [-82.839708, 36.848724], [-82.840569, 36.848257], [-82.841309, 36.847854], [-82.84201, 36.847629], [-82.84264, 36.847484], [-82.843181, 36.84746], [-82.843511, 36.847443], [-82.844071, 36.847194], [-82.844751, 36.846967], [-82.844892, 36.84692], [-82.846274, 36.847089], [-82.846915, 36.847395], [-82.846961, 36.847432], [-82.846979, 36.847447], [-82.847048, 36.847503], [-82.847134, 36.847572], [-82.847273, 36.847685], [-82.847977, 36.848257], [-82.848228, 36.848838], [-82.84868, 36.849812], [-82.849011, 36.850457], [-82.849162, 36.850699], [-82.849443, 36.850924], [-82.849513, 36.851287], [-82.849234, 36.851585], [-82.849163, 36.851666], [-82.848583, 36.852141], [-82.848503, 36.852511], [-82.848524, 36.852729], [-82.849127, 36.854316], [-82.849238, 36.855098], [-82.848278, 36.856008], [-82.847227, 36.856161], [-82.844245, 36.857982], [-82.844386, 36.858256], [-82.844736, 36.858412], [-82.845127, 36.858586], [-82.845298, 36.859207], [-82.845429, 36.859674], [-82.845749, 36.859803], [-82.84611, 36.859795], [-82.84623, 36.859867], [-82.846291, 36.860423], [-82.846412, 36.861213], [-82.847384, 36.861583], [-82.849367, 36.862067], [-82.849918, 36.862123], [-82.850369, 36.862212], [-82.850489, 36.862711], [-82.85076, 36.863259], [-82.851392, 36.863735], [-82.851903, 36.864291], [-82.852525, 36.864718], [-82.852663, 36.865764], [-82.852788, 36.8667], [-82.85237, 36.867111], [-82.852333, 36.867148], [-82.852005, 36.867472], [-82.851787, 36.867687], [-82.851746, 36.867728], [-82.85174, 36.867733], [-82.851734, 36.867739], [-82.851367, 36.868101], [-82.851355, 36.868241], [-82.851355, 36.868246], [-82.851354, 36.868257], [-82.85135, 36.868302], [-82.851348, 36.86832], [-82.851388, 36.868915], [-82.851357, 36.869077], [-82.851351, 36.869108], [-82.85135, 36.869113], [-82.851348, 36.869122], [-82.851324, 36.869252], [-82.851321, 36.869269], [-82.85132, 36.869276], [-82.851318, 36.869283], [-82.851317, 36.86929], [-82.851199, 36.869985], [-82.85118, 36.8701], [-82.851411, 36.870365], [-82.851627, 36.870464], [-82.851653, 36.870476], [-82.851992, 36.870631], [-82.852183, 36.870721], [-82.852687, 36.87096], [-82.852724, 36.870978], [-82.853075, 36.871397], [-82.853425, 36.871598], [-82.853806, 36.871598], [-82.854256, 36.87134], [-82.854497, 36.871509], [-82.855139, 36.87209], [-82.855229, 36.872444], [-82.85553, 36.872798], [-82.855851, 36.872984], [-82.856265, 36.873062], [-82.85641, 36.873089], [-82.856778, 36.873656], [-82.856884, 36.873713], [-82.856949, 36.873748], [-82.856982, 36.873738], [-82.857746, 36.873496], [-82.857974, 36.873518], [-82.858145, 36.873656], [-82.858317, 36.874136], [-82.858402, 36.874182], [-82.858515, 36.874322], [-82.859599, 36.875101], [-82.859397, 36.875101], [-82.859509, 36.875176], [-82.859588, 36.875229], [-82.859613, 36.875277], [-82.859781, 36.875278], [-82.860035, 36.875263], [-82.860307, 36.875313], [-82.860566, 36.875494], [-82.860574, 36.8755], [-82.860821, 36.875647], [-82.861066, 36.875793], [-82.861249, 36.875871], [-82.861259, 36.875875], [-82.861471, 36.875991], [-82.861616, 36.87607], [-82.861647, 36.876087], [-82.861657, 36.876117], [-82.861765, 36.876453], [-82.862033, 36.876689], [-82.8622, 36.87699], [-82.862286, 36.877275], [-82.862513, 36.877479], [-82.862779, 36.877666], [-82.86305, 36.877955], [-82.863151, 36.878063], [-82.863408, 36.878352], [-82.86341, 36.878408], [-82.863435, 36.878449], [-82.863442, 36.87846], [-82.863473, 36.878511], [-82.863494, 36.878546], [-82.863498, 36.878552], [-82.863515, 36.87858], [-82.86352, 36.878588], [-82.863522, 36.878593], [-82.863526, 36.878599], [-82.863555, 36.878648], [-82.863726, 36.878898], [-82.863776, 36.879391], [-82.863926, 36.879974], [-82.864162, 36.88015], [-82.864226, 36.880198], [-82.864332, 36.880361], [-82.864366, 36.880411], [-82.864386, 36.880475], [-82.864432, 36.880608], [-82.864569, 36.881005], [-82.86458, 36.881038], [-82.864822, 36.881343], [-82.865241, 36.881693], [-82.865378, 36.881856], [-82.865383, 36.881861], [-82.865387, 36.881866], [-82.865468, 36.881962], [-82.865651, 36.882179], [-82.865901, 36.882814], [-82.865935, 36.882886], [-82.866019, 36.883059], [-82.866351, 36.88336], [-82.866369, 36.883376], [-82.86672, 36.883861], [-82.866989, 36.88449], [-82.867336, 36.884895], [-82.867354, 36.884916], [-82.867498, 36.885086], [-82.868354, 36.885752], [-82.868845, 36.88616], [-82.86911, 36.88639], [-82.869739, 36.886936], [-82.870106, 36.887244], [-82.87012, 36.887256], [-82.870125, 36.88726], [-82.87015, 36.887281], [-82.870544, 36.887595], [-82.870562, 36.887609], [-82.870573, 36.88785], [-82.870736, 36.888614], [-82.87128, 36.889255], [-82.871995, 36.889872], [-82.872003, 36.889879], [-82.872519, 36.890196], [-82.872524, 36.890199], [-82.872863, 36.890533], [-82.873337, 36.890902], [-82.873788, 36.891133], [-82.874469, 36.891282], [-82.874895, 36.891457], [-82.875556, 36.891788], [-82.876345, 36.892125], [-82.876825, 36.892247], [-82.877405, 36.892392], [-82.877903, 36.892866], [-82.878068, 36.892988], [-82.878527, 36.893353], [-82.878459, 36.893074], [-82.878312, 36.892769], [-82.877865, 36.891963], [-82.877896, 36.891568], [-82.878359, 36.890003], [-82.878687, 36.889539], [-82.879084, 36.889262], [-82.879748, 36.889033], [-82.880285, 36.888939], [-82.881031, 36.888981], [-82.881804, 36.888981], [-82.883443, 36.888702], [-82.884465, 36.888505], [-82.884847, 36.8883], [-82.885261, 36.887979], [-82.885713, 36.887713], [-82.887028, 36.887168], [-82.887575, 36.886861], [-82.887989, 36.886508], [-82.888591, 36.885516], [-82.889347, 36.884668], [-82.890278, 36.884072], [-82.891188, 36.883698], [-82.891603, 36.883635], [-82.892128, 36.883541], [-82.892758, 36.88343], [-82.893611, 36.883484], [-82.893976, 36.883333], [-82.894589, 36.882739], [-82.895155, 36.882238], [-82.895414, 36.882151], [-82.895869, 36.882088], [-82.896409, 36.881919], [-82.896826, 36.881843], [-82.897277, 36.881911], [-82.897811, 36.881891], [-82.898226, 36.881849], [-82.898837, 36.88194], [-82.899336, 36.881816], [-82.899821, 36.881699], [-82.900248, 36.881658], [-82.90053, 36.881622], [-82.900872, 36.881405], [-82.901452, 36.880949], [-82.901806, 36.880777], [-82.90248, 36.880579], [-82.903979, 36.880147], [-82.904893, 36.879947], [-82.906089, 36.879764], [-82.906655, 36.879618], [-82.907389, 36.879305], [-82.907911, 36.878913], [-82.908011, 36.878754], [-82.907999, 36.8784], [-82.908058, 36.877608], [-82.907946, 36.87709], [-82.907396, 36.875876], [-82.907369, 36.875595], [-82.907505, 36.875158], [-82.907827, 36.874771], [-82.908179, 36.874695], [-82.909032, 36.874696], [-82.909408, 36.874632], [-82.910089, 36.874284], [-82.91028, 36.874171], [-82.910969, 36.874262], [-82.911661, 36.87432], [-82.911755, 36.874327], [-82.911945, 36.874335], [-82.912386, 36.874352], [-82.912607, 36.874361], [-82.91395, 36.87413], [-82.914504, 36.873951], [-82.914983, 36.873975], [-82.916199, 36.873922], [-82.917101, 36.873721], [-82.917615, 36.873509], [-82.918023, 36.873669], [-82.91842, 36.873755], [-82.918993, 36.873759], [-82.919888, 36.87374], [-82.920465, 36.873627], [-82.920805, 36.873443], [-82.920966, 36.873457], [-82.921148, 36.873549], [-82.922081, 36.873905], [-82.922467, 36.873905], [-82.922751, 36.873816], [-82.923244, 36.873529], [-82.923811, 36.873307], [-82.92411, 36.873043], [-82.92456, 36.872808], [-82.924874, 36.872623], [-82.925424, 36.871907], [-82.925865, 36.871545], [-82.926105, 36.871219], [-82.926283, 36.871127], [-82.926548, 36.871167], [-82.92695, 36.871122], [-82.927275, 36.870972], [-82.928311, 36.870419], [-82.928566, 36.870428], [-82.928975, 36.8705], [-82.929899, 36.870719], [-82.930232, 36.870728], [-82.930966, 36.870591], [-82.931708, 36.870364], [-82.931898, 36.870306], [-82.932163, 36.870313], [-82.93297, 36.870484], [-82.93349, 36.870475], [-82.9343, 36.870239], [-82.934778, 36.869983], [-82.935066, 36.869766], [-82.935272, 36.869622], [-82.936381, 36.869265], [-82.936626, 36.869132], [-82.936712, 36.868964], [-82.936787, 36.86875], [-82.936732, 36.868491], [-82.936717, 36.868212], [-82.936846, 36.867991], [-82.937025, 36.867835], [-82.937295, 36.867788], [-82.937502, 36.86761], [-82.937682, 36.867326], [-82.939127, 36.867301], [-82.940236, 36.867287], [-82.941331, 36.867218], [-82.941695, 36.867132], [-82.942144, 36.866917], [-82.942269, 36.866771], [-82.942459, 36.866358], [-82.94257, 36.866276], [-82.94269, 36.866268], [-82.943097, 36.866418], [-82.943825, 36.866565], [-82.944543, 36.866596], [-82.945167, 36.86651], [-82.945613, 36.866383], [-82.946212, 36.866045], [-82.946404, 36.865932], [-82.946722, 36.865982], [-82.948689, 36.866463], [-82.948836, 36.866468], [-82.949158, 36.8664], [-82.949721, 36.866039], [-82.949975, 36.866014], [-82.951393, 36.866213], [-82.95158, 36.866197], [-82.951758, 36.866115], [-82.952766, 36.865251], [-82.952975, 36.86501], [-82.953194, 36.864554], [-82.953334, 36.86443], [-82.953606, 36.864286], [-82.953942, 36.86421], [-82.954394, 36.864243], [-82.954691, 36.864165], [-82.955745, 36.863463], [-82.95626, 36.863262], [-82.956717, 36.86321], [-82.957488, 36.863241], [-82.958049, 36.863203], [-82.958495, 36.863075], [-82.959386, 36.862799], [-82.959644, 36.862697], [-82.960714, 36.862618], [-82.961439, 36.862487], [-82.961968, 36.862276], [-82.962463, 36.861892], [-82.962622, 36.861595], [-82.96276, 36.86147], [-82.963191, 36.861374], [-82.963768, 36.861272], [-82.963972, 36.861171], [-82.96449, 36.860571], [-82.964859, 36.860336], [-82.965913, 36.860009], [-82.966367, 36.859666], [-82.966656, 36.859417], [-82.967021, 36.859319], [-82.967434, 36.85934], [-82.968024, 36.859216], [-82.968515, 36.85894], [-82.968837, 36.858607], [-82.969104, 36.858237], [-82.969247, 36.858026], [-82.969571, 36.857906], [-82.969655, 36.857886], [-82.970796, 36.857648], [-82.971142, 36.857637], [-82.971554, 36.857669], [-82.971981, 36.857823], [-82.972439, 36.858373], [-82.973304, 36.859082], [-82.973805, 36.8592], [-82.97459, 36.859243], [-82.975142, 36.859451], [-82.975684, 36.859573], [-82.976171, 36.859544], [-82.976569, 36.859465], [-82.977501, 36.85949], [-82.977923, 36.859588], [-82.978212, 36.859735], [-82.978581, 36.85982], [-82.979116, 36.859779], [-82.979506, 36.859705], [-82.980321, 36.859338], [-82.98113, 36.859093], [-82.981778, 36.858905], [-82.982151, 36.858904], [-82.982614, 36.859012], [-82.98292, 36.858989], [-82.983467, 36.85867], [-82.983792, 36.858528], [-82.984059, 36.858534], [-82.984599, 36.85871], [-82.985458, 36.858872], [-82.986005, 36.858886], [-82.986261, 36.858818], [-82.986682, 36.858614], [-82.986856, 36.858629], [-82.987013, 36.858677], [-82.987245, 36.858876], [-82.987556, 36.859107], [-82.988085, 36.859217], [-82.989, 36.859163], [-82.989606, 36.859005], [-82.990204, 36.858742], [-82.990684, 36.858422], [-82.991061, 36.858313], [-82.991384, 36.858259], [-82.991842, 36.857808], [-82.992004, 36.857771], [-82.99223, 36.857756], [-82.992853, 36.857878], [-82.99325, 36.857922], [-82.993628, 36.857823], [-82.994302, 36.857481], [-82.994811, 36.857408], [-82.995761, 36.857326], [-82.996289, 36.857136], [-82.996699, 36.856869], [-82.997594, 36.856858], [-82.998389, 36.856633], [-82.998591, 36.856574], [-82.998689, 36.856458], [-82.999488, 36.855514], [-82.999984, 36.855088], [-83.000349, 36.854978], [-83.000825, 36.854744], [-83.001105, 36.854398], [-83.001792, 36.85357], [-83.002024, 36.853424], [-83.002908, 36.852997], [-83.003061, 36.852797], [-83.003349, 36.852354], [-83.003815, 36.851637], [-83.004048, 36.850828], [-83.004259, 36.850522], [-83.004684, 36.850266], [-83.004918, 36.850075], [-83.005112, 36.849879], [-83.005731, 36.84906], [-83.006378, 36.847886], [-83.006581, 36.84765], [-83.007467, 36.84749], [-83.00862, 36.847327], [-83.009246, 36.847415], [-83.010238, 36.847541], [-83.010868, 36.847792], [-83.0111, 36.847815], [-83.011574, 36.847644], [-83.012287, 36.847128], [-83.012441, 36.846937], [-83.012775, 36.846937], [-83.013034, 36.847146], [-83.013547, 36.84733], [-83.013909, 36.847577], [-83.01523, 36.848564], [-83.015764, 36.848868], [-83.016321, 36.848957], [-83.016737, 36.849038], [-83.017612, 36.849374], [-83.018198, 36.849516], [-83.019003, 36.849707], [-83.019937, 36.850042], [-83.021015, 36.8501], [-83.021499, 36.849995], [-83.021917, 36.849887], [-83.022083, 36.849942], [-83.022336, 36.85007], [-83.023252, 36.850867], [-83.023738, 36.851152], [-83.024151, 36.851393], [-83.024632, 36.851684], [-83.024835, 36.851947], [-83.02523, 36.852729], [-83.025696, 36.853406], [-83.025856, 36.853774], [-83.025974, 36.85485], [-83.026082, 36.855111], [-83.026314, 36.855429], [-83.026611, 36.855563], [-83.027052, 36.855564], [-83.028324, 36.855393], [-83.029072, 36.855348], [-83.029672, 36.855407], [-83.030205, 36.855377], [-83.031745, 36.854847], [-83.032814, 36.854457], [-83.033755, 36.854297], [-83.035708, 36.854124], [-83.036093, 36.854175], [-83.036366, 36.854333], [-83.036581, 36.854628], [-83.036894, 36.854819], [-83.037528, 36.854964], [-83.038724, 36.855058], [-83.03998, 36.855003], [-83.041032, 36.85502], [-83.041381, 36.854964], [-83.042003, 36.854724], [-83.042821, 36.854283], [-83.042913, 36.8542], [-83.043125, 36.854011], [-83.043668, 36.853468], [-83.044709, 36.852756], [-83.045294, 36.852448], [-83.046956, 36.851868], [-83.047804, 36.851687], [-83.048228, 36.85174], [-83.048834, 36.851937], [-83.04967, 36.852033], [-83.050901, 36.852017], [-83.051517, 36.852], [-83.05226, 36.852117], [-83.05355, 36.85218], [-83.054239, 36.852273], [-83.054577, 36.85253], [-83.055923, 36.852885], [-83.056701, 36.853076], [-83.057298, 36.853224], [-83.057957, 36.853388], [-83.058807, 36.853461], [-83.060753, 36.853955], [-83.062543, 36.852521], [-83.063045, 36.851977], [-83.06336, 36.851727], [-83.063698, 36.85165], [-83.064247, 36.85159], [-83.064802, 36.851689], [-83.065369, 36.851863], [-83.066249, 36.851865], [-83.066858, 36.851956], [-83.067406, 36.852229], [-83.0679, 36.852582], [-83.068496, 36.853048], [-83.068992, 36.853305], [-83.069533, 36.85345], [-83.070465, 36.853482], [-83.070782, 36.853545], [-83.071704, 36.854202], [-83.072267, 36.854472], [-83.072623, 36.854568], [-83.07284, 36.854464], [-83.075684, 36.850935], [-83.075853, 36.850701], [-83.075768, 36.850487], [-83.075474, 36.850157], [-83.075127, 36.849495], [-83.075113, 36.849161], [-83.075108, 36.848636], [-83.074983, 36.848053], [-83.074692, 36.847307], [-83.074224, 36.84635], [-83.074071, 36.8458], [-83.074144, 36.844945], [-83.074162, 36.844161], [-83.074295, 36.843148], [-83.074445, 36.842722], [-83.074797, 36.84227], [-83.074917, 36.841918], [-83.075008, 36.840934], [-83.075176, 36.840735], [-83.075257, 36.840706], [-83.076145, 36.840846], [-83.076913, 36.840973], [-83.077569, 36.840871], [-83.078117, 36.840852], [-83.078819, 36.840623], [-83.080269, 36.84036], [-83.080971, 36.84012], [-83.081997, 36.839438], [-83.083264, 36.839083], [-83.084074, 36.839013], [-83.084771, 36.838936], [-83.085011, 36.838909], [-83.085872, 36.838725], [-83.086383, 36.83852], [-83.086635, 36.838417], [-83.087463, 36.838231], [-83.087885, 36.838015], [-83.088284, 36.837693], [-83.088462, 36.837214], [-83.089017, 36.836483], [-83.089485, 36.835777], [-83.089845, 36.835422], [-83.090215, 36.835195], [-83.090505, 36.834912], [-83.090904, 36.834601], [-83.092051, 36.834211], [-83.092637, 36.833872], [-83.093109, 36.833734], [-83.094455, 36.833414], [-83.09629, 36.832983], [-83.096858, 36.832792], [-83.097404, 36.832452], [-83.098083, 36.832159], [-83.098688, 36.832012], [-83.099028, 36.831818], [-83.099908, 36.831154], [-83.100268, 36.830767], [-83.10074, 36.829951], [-83.10194, 36.828245], [-83.102009, 36.828039], [-83.102089, 36.827799], [-83.102084, 36.827252], [-83.10176, 36.826665], [-83.101313, 36.826161], [-83.10045, 36.825379], [-83.099488, 36.824752], [-83.099009, 36.824376], [-83.098611, 36.823992], [-83.098512, 36.823806], [-83.098546, 36.823616], [-83.098851, 36.823146], [-83.099228, 36.822339], [-83.099216, 36.821964], [-83.099111, 36.821596], [-83.099195, 36.820817], [-83.099265, 36.819702], [-83.099113, 36.819109], [-83.099062, 36.818723], [-83.099027, 36.81826], [-83.099115, 36.817373], [-83.099088, 36.816696], [-83.098958, 36.816253], [-83.099011, 36.815924], [-83.099146, 36.815529], [-83.099006, 36.81498], [-83.098664, 36.814187], [-83.098484, 36.813524], [-83.09856, 36.813246], [-83.099072, 36.812788], [-83.099756, 36.812344], [-83.100679, 36.811874], [-83.101096, 36.811787], [-83.101954, 36.811637], [-83.102346, 36.811509], [-83.102568, 36.811277], [-83.102809, 36.810742], [-83.103343, 36.809651], [-83.103461, 36.809022], [-83.103396, 36.808624], [-83.103395, 36.808313], [-83.103431, 36.807736], [-83.103315, 36.807304], [-83.10341, 36.806931], [-83.103459, 36.806319], [-83.103619, 36.805615], [-83.103812, 36.805117], [-83.104121, 36.804341], [-83.104335, 36.804004], [-83.104868, 36.803643], [-83.105419, 36.803183], [-83.10559, 36.802887], [-83.10606, 36.802461], [-83.106428, 36.802255], [-83.1069, 36.802085], [-83.108161, 36.80187], [-83.108744, 36.801625], [-83.109751, 36.801073], [-83.110653, 36.800494], [-83.111066, 36.800109], [-83.111532, 36.799433], [-83.11237, 36.798447], [-83.112947, 36.797999], [-83.113156, 36.797758], [-83.113687, 36.797119], [-83.114029, 36.796859], [-83.114582, 36.796346], [-83.114797, 36.795965], [-83.114994, 36.795305], [-83.115166, 36.794856], [-83.115362, 36.794603], [-83.115981, 36.794103], [-83.116242, 36.793864], [-83.116475, 36.793563], [-83.116593, 36.793412], [-83.117046, 36.792372], [-83.117269, 36.792098], [-83.117802, 36.791613], [-83.117986, 36.791349], [-83.118146, 36.790635], [-83.118261, 36.790423], [-83.118934, 36.789695], [-83.118983, 36.789658], [-83.119211, 36.789567], [-83.120712, 36.788994], [-83.120949, 36.788732], [-83.121092, 36.78829], [-83.121332, 36.787985], [-83.12144, 36.787924], [-83.121759, 36.78792], [-83.122225, 36.787942], [-83.122348, 36.787849], [-83.122576, 36.787458], [-83.122834, 36.786983], [-83.123165, 36.7867], [-83.123436, 36.786568], [-83.123704, 36.78651], [-83.123997, 36.78654], [-83.124235, 36.786589], [-83.124585, 36.786479], [-83.124989, 36.786393], [-83.125388, 36.786381], [-83.125797, 36.786486], [-83.126061, 36.786558], [-83.126891, 36.786272], [-83.127295, 36.786155], [-83.12757, 36.785947], [-83.127718, 36.785919], [-83.128127, 36.785993], [-83.128303, 36.785933], [-83.128699, 36.785665], [-83.12889, 36.785583], [-83.129131, 36.785503], [-83.129343, 36.785551], [-83.129523, 36.785727], [-83.129838, 36.785852], [-83.130131, 36.785828], [-83.130686, 36.785596], [-83.131223, 36.785513], [-83.131786, 36.785398], [-83.132219, 36.785225], [-83.133235, 36.784592], [-83.133255, 36.784464], [-83.133228, 36.783765], [-83.133248, 36.78322], [-83.133047, 36.782583], [-83.132756, 36.782157], [-83.132257, 36.781618], [-83.131976, 36.781125], [-83.131537, 36.780106], [-83.131246, 36.77966], [-83.13119, 36.779433], [-83.131271, 36.779016], [-83.131184, 36.778842], [-83.130851, 36.778503], [-83.130626, 36.778153], [-83.130081, 36.777588], [-83.129599, 36.776944], [-83.129419, 36.776445], [-83.129139, 36.776084], [-83.128991, 36.775791], [-83.129106, 36.775569], [-83.129295, 36.775499], [-83.129431, 36.775395], [-83.129806, 36.775029], [-83.130046, 36.774659], [-83.130009, 36.774063], [-83.130123, 36.773873], [-83.130432, 36.773784], [-83.130763, 36.773835], [-83.131458, 36.773799], [-83.131705, 36.773603], [-83.131921, 36.773157], [-83.132118, 36.772884], [-83.132839, 36.772139], [-83.133084, 36.771686], [-83.132969, 36.771553], [-83.132689, 36.771535], [-83.132169, 36.771565], [-83.131756, 36.771554], [-83.131495, 36.771409], [-83.131131, 36.771176], [-83.130629, 36.771076], [-83.13013, 36.770893], [-83.129832, 36.770672], [-83.12957, 36.770193], [-83.129546, 36.769827], [-83.129776, 36.769384], [-83.129885, 36.768946], [-83.130082, 36.768682], [-83.130341, 36.768508], [-83.130634, 36.768547], [-83.130979, 36.768534], [-83.131092, 36.768386], [-83.13126, 36.768155], [-83.13138, 36.767804], [-83.131263, 36.767114], [-83.131196, 36.766716], [-83.131146, 36.766286], [-83.13126, 36.766097], [-83.131406, 36.766068], [-83.131901, 36.766027], [-83.132231, 36.765912], [-83.132366, 36.765716], [-83.132466, 36.765204], [-83.132616, 36.764715], [-83.132549, 36.764402], [-83.132328, 36.764257], [-83.13159, 36.764222], [-83.131208, 36.764117], [-83.130886, 36.763861], [-83.13038, 36.763485], [-83.129763, 36.763243], [-83.129557, 36.76309], [-83.129064, 36.762734], [-83.128152, 36.762561], [-83.127256, 36.762292], [-83.126693, 36.762033], [-83.12639, 36.76196], [-83.12594, 36.761896], [-83.125667, 36.761749], [-83.125577, 36.76163], [-83.125638, 36.761458], [-83.125699, 36.761405], [-83.125976, 36.761163], [-83.126566, 36.761027], [-83.12685, 36.760905], [-83.126977, 36.760747], [-83.126988, 36.760448], [-83.127137, 36.760043], [-83.127401, 36.759761], [-83.127603, 36.75968], [-83.127884, 36.759664], [-83.128373, 36.759752], [-83.128573, 36.759725], [-83.128642, 36.759662], [-83.128621, 36.759533], [-83.128462, 36.759154], [-83.128428, 36.758671], [-83.128544, 36.758427], [-83.128809, 36.758102], [-83.128899, 36.757846], [-83.128822, 36.757393], [-83.12846, 36.756753], [-83.128363, 36.756504], [-83.128387, 36.756257], [-83.128642, 36.755866], [-83.12873, 36.755645], [-83.128714, 36.755022], [-83.128634, 36.754313], [-83.128736, 36.753746], [-83.128927, 36.753259], [-83.129022, 36.752895], [-83.128901, 36.75254], [-83.128657, 36.752351], [-83.128422, 36.752172], [-83.128024, 36.75181], [-83.12784, 36.751388], [-83.127814, 36.751065], [-83.127989, 36.750652], [-83.128208, 36.750485], [-83.128401, 36.75035], [-83.128945, 36.750343], [-83.129627, 36.750284], [-83.129975, 36.750239], [-83.12977, 36.750009], [-83.129737, 36.749826], [-83.129902, 36.74968], [-83.130134, 36.749546], [-83.130873, 36.749737], [-83.131656, 36.749809], [-83.131969, 36.749977], [-83.132165, 36.750047], [-83.13268, 36.749813], [-83.133687, 36.749612], [-83.134319, 36.749457], [-83.134429, 36.749364], [-83.133957, 36.748794], [-83.133944, 36.74846], [-83.13407, 36.748294], [-83.134142, 36.748134], [-83.133981, 36.74784], [-83.134037, 36.747091], [-83.133814, 36.746625], [-83.133631, 36.746525], [-83.133276, 36.746429], [-83.133027, 36.746316], [-83.132996, 36.746101], [-83.133067, 36.745973], [-83.133238, 36.745656], [-83.133402, 36.745574], [-83.133634, 36.745419], [-83.133698, 36.745153], [-83.133865, 36.744954], [-83.133908, 36.744516], [-83.133963, 36.74411], [-83.134637, 36.743526], [-83.134737, 36.743203], [-83.134851, 36.742832], [-83.135124, 36.742636], [-83.136497, 36.742949], [-83.13712, 36.743061], [-83.137546, 36.743028], [-83.138247, 36.74269], [-83.138399, 36.742641], [-83.138784, 36.742662], [-83.13993, 36.742648], [-83.14037, 36.742604], [-83.141019, 36.742364], [-83.141479, 36.742192], [-83.142002, 36.742067], [-83.142426, 36.741808], [-83.143823, 36.741811], [-83.144415, 36.741643], [-83.145212, 36.741696], [-83.147261, 36.742046], [-83.148029, 36.74215], [-83.148522, 36.742164], [-83.149126, 36.742017], [-83.149446, 36.742002], [-83.149844, 36.742044], [-83.150426, 36.742144], [-83.151011, 36.742149], [-83.151477, 36.74216], [-83.151867, 36.742427], [-83.152228, 36.742693], [-83.152494, 36.742711], [-83.152925, 36.742571], [-83.153064, 36.742423], [-83.153162, 36.741956], [-83.153279, 36.741689], [-83.153441, 36.74164], [-83.153777, 36.741552], [-83.154826, 36.741611], [-83.156011, 36.741606], [-83.156503, 36.741629], [-83.156763, 36.741764], [-83.157311, 36.741372], [-83.157744, 36.741198], [-83.158411, 36.74115], [-83.158821, 36.740905], [-83.159302, 36.740807], [-83.159814, 36.740648], [-83.160185, 36.740347], [-83.160652, 36.739972], [-83.161249, 36.739687], [-83.161853, 36.73954], [-83.162467, 36.739513], [-83.163128, 36.739305], [-83.16391, 36.739377], [-83.164974, 36.739425], [-83.165983, 36.739448], [-83.166385, 36.739385], [-83.166732, 36.739372], [-83.166987, 36.739303], [-83.167132, 36.739337], [-83.16676, 36.739683], [-83.166607, 36.739861], [-83.166898, 36.740232], [-83.167274, 36.740522], [-83.168028, 36.740648], [-83.168631, 36.740522], [-83.169927, 36.74006], [-83.17138, 36.739998], [-83.171822, 36.739945], [-83.172006, 36.740014], [-83.172441, 36.740112], [-83.172757, 36.739849], [-83.173159, 36.739774], [-83.173502, 36.739493], [-83.174441, 36.739323], [-83.174832, 36.739182], [-83.174939, 36.739185], [-83.17525, 36.739387], [-83.175631, 36.739523], [-83.176318, 36.7397], [-83.176801, 36.739585], [-83.177356, 36.739331], [-83.177608, 36.739348], [-83.178039, 36.739218], [-83.1785, 36.73939], [-83.17871, 36.739428], [-83.17911, 36.739394], [-83.179481, 36.7395], [-83.17972, 36.739495], [-83.18022, 36.739303], [-83.180496, 36.739364], [-83.180986, 36.73944], [-83.181417, 36.739333], [-83.181803, 36.739309], [-83.182375, 36.739323], [-83.183653, 36.739677], [-83.184186, 36.739647], [-83.184741, 36.739401], [-83.185049, 36.739366], [-83.185767, 36.739396], [-83.186351, 36.739431], [-83.187407, 36.739306], [-83.188827, 36.739438], [-83.1892, 36.739414], [-83.190463, 36.739488], [-83.191109, 36.739265], [-83.191351, 36.739199], [-83.191564, 36.739215], [-83.192168, 36.739421], [-83.192475, 36.73944], [-83.193212, 36.739285], [-83.193307, 36.739277], [-83.193831, 36.739461], [-83.194256, 36.739526], [-83.194843, 36.739455], [-83.195249, 36.739272], [-83.195642, 36.738755], [-83.195835, 36.738694], [-83.196248, 36.738565], [-83.196967, 36.738552], [-83.19759, 36.7383], [-83.198507, 36.737966], [-83.199752, 36.737396], [-83.200006, 36.73735], [-83.200722, 36.737087], [-83.201298, 36.737015], [-83.201606, 36.736937], [-83.20222, 36.736909], [-83.203017, 36.73695], [-83.203683, 36.736591], [-83.204318, 36.736327], [-83.204893, 36.736233], [-83.205223, 36.735962], [-83.206179, 36.735655], [-83.206922, 36.735746], [-83.207086, 36.735623], [-83.207387, 36.735405], [-83.207876, 36.735137], [-83.208443, 36.734914], [-83.208858, 36.73485], [-83.209272, 36.734828], [-83.209554, 36.73477], [-83.210514, 36.734343], [-83.210783, 36.734275], [-83.211684, 36.734359], [-83.21229, 36.733849], [-83.213126, 36.73357], [-83.214208, 36.733456], [-83.2148, 36.733277], [-83.215316, 36.733354], [-83.216246, 36.733408], [-83.216822, 36.733316], [-83.217363, 36.733081], [-83.217609, 36.732916], [-83.217699, 36.732619], [-83.217948, 36.732388], [-83.218871, 36.731895], [-83.219576, 36.73157], [-83.220665, 36.731274], [-83.221733, 36.730828], [-83.223029, 36.730687], [-83.223365, 36.730598], [-83.223723, 36.730265], [-83.224004, 36.730229], [-83.22454, 36.730122], [-83.225246, 36.730129], [-83.225614, 36.730256], [-83.225879, 36.730295], [-83.226603, 36.730109], [-83.227014, 36.72984], [-83.227393, 36.729677], [-83.227766, 36.729644], [-83.228101, 36.729575], [-83.228483, 36.729328], [-83.228883, 36.728952], [-83.229098, 36.728902], [-83.229751, 36.728875], [-83.23021, 36.728682], [-83.231242, 36.728493], [-83.232253, 36.728506], [-83.232442, 36.728425], [-83.232771, 36.728187], [-83.233208, 36.727875], [-83.233677, 36.727779], [-83.234545, 36.727682], [-83.235679, 36.727259], [-83.236183, 36.726971], [-83.237225, 36.726846], [-83.238057, 36.726672], [-83.238658, 36.726621], [-83.239815, 36.726649], [-83.240068, 36.726635], [-83.240473, 36.726472], [-83.240673, 36.726455], [-83.240877, 36.726331], [-83.241224, 36.725966], [-83.241521, 36.725843], [-83.24216, 36.725827], [-83.242442, 36.725779], [-83.243752, 36.725983], [-83.244153, 36.725939], [-83.245055, 36.726012], [-83.245484, 36.725947], [-83.246136, 36.725589], [-83.246865, 36.725264], [-83.247462, 36.725181], [-83.247924, 36.725074], [-83.248223, 36.724899], [-83.248667, 36.724437], [-83.24894, 36.724241], [-83.24981, 36.7241], [-83.250988, 36.723727], [-83.251508, 36.723739], [-83.252282, 36.723659], [-83.252733, 36.723681], [-83.253301, 36.723791], [-83.253609, 36.723767], [-83.253961, 36.723593], [-83.254362, 36.723184], [-83.255239, 36.722476], [-83.255973, 36.722064], [-83.256158, 36.722079], [-83.256995, 36.722152], [-83.257853, 36.72197], [-83.258364, 36.722009], [-83.258783, 36.722168], [-83.259274, 36.722222], [-83.259677, 36.722136], [-83.260528, 36.721791], [-83.261296, 36.721508], [-83.262476, 36.721291], [-83.263627, 36.720938], [-83.263867, 36.72092], [-83.264368, 36.72104], [-83.264583, 36.72097], [-83.264831, 36.720772], [-83.265266, 36.720493], [-83.266671, 36.719916], [-83.267807, 36.719427], [-83.270041, 36.71872], [-83.271274, 36.718479], [-83.272576, 36.718178], [-83.273656, 36.718117], [-83.27477, 36.717877], [-83.275635, 36.71751], [-83.276171, 36.717405], [-83.277637, 36.716604], [-83.278033, 36.716511], [-83.279601, 36.716204], [-83.280343, 36.715943], [-83.281247, 36.715954], [-83.281997, 36.715833], [-83.28326, 36.715861], [-83.284583, 36.715689], [-83.284894, 36.715579], [-83.285306, 36.715234], [-83.286098, 36.715006], [-83.286527, 36.714587], [-83.286789, 36.714336], [-83.287042, 36.714288], [-83.287766, 36.714155], [-83.287878, 36.714019], [-83.2883, 36.713717], [-83.289455, 36.713467], [-83.290468, 36.713392], [-83.29075, 36.713314], [-83.291361, 36.713006], [-83.291561, 36.712989], [-83.2934, 36.712905], [-83.29392, 36.712905], [-83.294843, 36.713099], [-83.295905, 36.713553], [-83.296635, 36.713611], [-83.296837, 36.71353], [-83.297049, 36.713203], [-83.298412, 36.712656], [-83.299533, 36.712222], [-83.299868, 36.712154], [-83.301311, 36.711953], [-83.302356, 36.711771], [-83.302654, 36.71163], [-83.302931, 36.711303], [-83.303137, 36.711158], [-83.303657, 36.711127], [-83.30454, 36.710997], [-83.305032, 36.710976], [-83.305704, 36.711197], [-83.30634, 36.711244], [-83.307195, 36.711145], [-83.308121, 36.710941], [-83.308496, 36.710885], [-83.309715, 36.710646], [-83.310443, 36.710397], [-83.311391, 36.709892], [-83.311948, 36.709625], [-83.312642, 36.709138], [-83.313659, 36.708615], [-83.314628, 36.708294], [-83.315821, 36.708085], [-83.316541, 36.708017], [-83.317266, 36.707862], [-83.317864, 36.707845], [-83.318338, 36.707652], [-83.319212, 36.707424], [-83.321015, 36.706618], [-83.321277, 36.706551], [-83.321719, 36.706475], [-83.322676, 36.706498], [-83.323133, 36.70639], [-83.324361, 36.705935], [-83.325074, 36.705653], [-83.327971, 36.704878], [-83.328741, 36.70453], [-83.329508, 36.704281], [-83.330228, 36.704242], [-83.331094, 36.70397], [-83.332272, 36.703781], [-83.332599, 36.703586], [-83.333205, 36.703374], [-83.334971, 36.702739], [-83.335506, 36.702632], [-83.336164, 36.702664], [-83.337491, 36.702394], [-83.338156, 36.702045], [-83.33857, 36.702001], [-83.339422, 36.701967], [-83.340039, 36.701841], [-83.340848, 36.701506], [-83.342016, 36.701035], [-83.342808, 36.70087], [-83.3442, 36.700582], [-83.345903, 36.700423], [-83.346699, 36.700494], [-83.34709, 36.700331], [-83.347639, 36.700206], [-83.347967, 36.699977], [-83.348986, 36.699001], [-83.350052, 36.697847], [-83.350392, 36.69761], [-83.351567, 36.697121], [-83.353386, 36.696631], [-83.3539, 36.696417], [-83.354746, 36.695815], [-83.355386, 36.695578], [-83.358285, 36.693693], [-83.358771, 36.693513], [-83.35955, 36.693273], [-83.359911, 36.693248], [-83.360373, 36.693354], [-83.360774, 36.693675], [-83.361319, 36.694064], [-83.361682, 36.694349], [-83.363274, 36.69445], [-83.363837, 36.694314], [-83.364977, 36.694103], [-83.365709, 36.693713], [-83.366469, 36.693248], [-83.367636, 36.692587], [-83.368785, 36.692066], [-83.369924, 36.691439], [-83.370433, 36.69099], [-83.371096, 36.690693], [-83.371709, 36.690653], [-83.372211, 36.690364], [-83.372671, 36.690493], [-83.373293, 36.690228], [-83.374051, 36.690094], [-83.374546, 36.690141], [-83.37515, 36.690377], [-83.37527, 36.690735], [-83.376556, 36.690143], [-83.37698, 36.689787], [-83.377752, 36.689752], [-83.378823, 36.689208], [-83.378956, 36.688813], [-83.379111, 36.68855], [-83.379326, 36.688447], [-83.379754, 36.688403], [-83.380694, 36.688541], [-83.380859, 36.688407], [-83.380983, 36.687884], [-83.381242, 36.687333], [-83.381496, 36.687295], [-83.382012, 36.687361], [-83.382373, 36.687326], [-83.382756, 36.687408], [-83.383248, 36.687387], [-83.383441, 36.68721], [-83.38382, 36.686598], [-83.384089, 36.686581], [-83.384773, 36.686789], [-83.384986, 36.686784], [-83.385494, 36.68669], [-83.386465, 36.686689], [-83.386813, 36.686621], [-83.387455, 36.686175], [-83.388321, 36.685735], [-83.389962, 36.685037], [-83.389879, 36.684746], [-83.389503, 36.684446], [-83.389129, 36.684117], [-83.389121, 36.683935], [-83.389357, 36.68366], [-83.392654, 36.682111], [-83.392709, 36.682097], [-83.392985, 36.681855], [-83.392967, 36.681609], [-83.392938, 36.681275], [-83.393079, 36.681011], [-83.393391, 36.680847], [-83.39425, 36.680641], [-83.394902, 36.680269], [-83.395518, 36.679759], [-83.395874, 36.679433], [-83.395911, 36.679135], [-83.395762, 36.67882], [-83.395218, 36.678058], [-83.395243, 36.677716], [-83.395559, 36.677411], [-83.396487, 36.676912], [-83.397441, 36.676677], [-83.399601, 36.675706], [-83.400705, 36.675291], [-83.402113, 36.67498], [-83.402693, 36.674757], [-83.403457, 36.674217], [-83.404294, 36.673839], [-83.404844, 36.673711], [-83.40558, 36.673578], [-83.406118, 36.673376], [-83.407163, 36.673176], [-83.407634, 36.673002], [-83.408804, 36.672268], [-83.409273, 36.672171], [-83.409705, 36.671966], [-83.41061, 36.671536], [-83.411468, 36.671372], [-83.411926, 36.671179], [-83.412282, 36.670877], [-83.412712, 36.670737], [-83.413167, 36.670649], [-83.413573, 36.670477], [-83.414333, 36.670441], [-83.414833, 36.670215], [-83.415756, 36.670022], [-83.417382, 36.669532], [-83.4182, 36.668971], [-83.418686, 36.668736], [-83.419116, 36.668628], [-83.420736, 36.668289], [-83.421551, 36.668178], [-83.422232, 36.668068], [-83.424717, 36.667347], [-83.425827, 36.667189], [-83.426712, 36.66714], [-83.427882, 36.667188], [-83.428416, 36.667103], [-83.428993, 36.666987], [-83.430027, 36.667074], [-83.430547, 36.667011], [-83.431755, 36.666694], [-83.432771, 36.666558], [-83.433278, 36.666472], [-83.435288, 36.666407], [-83.436358, 36.666228], [-83.437102, 36.666266], [-83.437641, 36.666417], [-83.43832, 36.666411], [-83.439513, 36.666545], [-83.440092, 36.666729], [-83.440724, 36.66692], [-83.441548, 36.667001], [-83.441963, 36.666982], [-83.442486, 36.667107], [-83.443549, 36.667186], [-83.444222, 36.667004], [-83.445171, 36.666526], [-83.44631, 36.666052], [-83.447045, 36.665575], [-83.447838, 36.665323], [-83.448675, 36.665321], [-83.449831, 36.665379], [-83.450548, 36.665404], [-83.450972, 36.66532], [-83.451383, 36.665152], [-83.451965, 36.665189], [-83.452313, 36.665143], [-83.452916, 36.664986], [-83.453694, 36.6648], [-83.454491, 36.664828], [-83.455366, 36.664879], [-83.456307, 36.664986], [-83.45694, 36.665149], [-83.45725, 36.665446], [-83.457789, 36.665606], [-83.458348, 36.665598], [-83.458642, 36.66552], [-83.459033, 36.665389], [-83.459674, 36.665341], [-83.460084, 36.665262], [-83.460487, 36.665056], [-83.460724, 36.664941], [-83.46102, 36.664867], [-83.461502, 36.664771], [-83.462026, 36.6648], [-83.463112, 36.664958], [-83.46352, 36.664953], [-83.464975, 36.664753], [-83.466016, 36.664783], [-83.466615, 36.664716], [-83.466959, 36.664771], [-83.467283, 36.664907], [-83.467993, 36.665027], [-83.469038, 36.664993], [-83.469642, 36.665031], [-83.470477, 36.66493], [-83.471001, 36.665044], [-83.471778, 36.665277], [-83.473266, 36.665573], [-83.474015, 36.665453], [-83.474459, 36.665518], [-83.475244, 36.665769], [-83.476591, 36.665854], [-83.477797, 36.665975], [-83.478479, 36.66611], [-83.479613, 36.666617], [-83.479883, 36.666542], [-83.48013, 36.666308], [-83.480681, 36.666119], [-83.481332, 36.665981], [-83.481832, 36.666113], [-83.482684, 36.666194], [-83.483356, 36.666577], [-83.484073, 36.666785], [-83.484813, 36.667061], [-83.485504, 36.66718], [-83.486467, 36.667168], [-83.486926, 36.667378], [-83.48838, 36.667703], [-83.488981, 36.667826], [-83.490551, 36.668397], [-83.491161, 36.668539], [-83.491867, 36.669099], [-83.492809, 36.670194], [-83.493194, 36.670219], [-83.494252, 36.670065], [-83.49463, 36.670049], [-83.495787, 36.670187], [-83.496743, 36.670071], [-83.497157, 36.670153], [-83.497962, 36.670418], [-83.498589, 36.6704], [-83.499223, 36.670446], [-83.499578, 36.67022], [-83.49991, 36.670061], [-83.500178, 36.669769], [-83.500454, 36.669536], [-83.500834, 36.669439], [-83.501568, 36.669472], [-83.503033, 36.66956], [-83.503709, 36.669551], [-83.504247, 36.669449], [-83.505363, 36.669034], [-83.505754, 36.668953], [-83.506964, 36.668973], [-83.507771, 36.668837], [-83.508425, 36.668933], [-83.509263, 36.668781], [-83.509809, 36.66904], [-83.510525, 36.669007], [-83.510762, 36.669053], [-83.512112, 36.669635], [-83.512441, 36.669608], [-83.513064, 36.66939], [-83.513403, 36.669022], [-83.513523, 36.668712], [-83.513822, 36.66839], [-83.514014, 36.668236], [-83.514661, 36.668201], [-83.515258, 36.667853], [-83.515588, 36.667782], [-83.515805, 36.667818], [-83.516129, 36.667928], [-83.516858, 36.668425], [-83.517092, 36.668508], [-83.517292, 36.668505], [-83.517453, 36.668422], [-83.517741, 36.66814], [-83.517933, 36.66799], [-83.518726, 36.668049], [-83.519026, 36.667975], [-83.51953, 36.667728], [-83.520076, 36.667429], [-83.520546, 36.667334], [-83.521077, 36.667179], [-83.521744, 36.66684], [-83.522132, 36.666694], [-83.522813, 36.666583], [-83.523214, 36.666455], [-83.523668, 36.666234], [-83.523998, 36.666176], [-83.524632, 36.66619], [-83.52502, 36.666165], [-83.525762, 36.665982], [-83.526428, 36.6659], [-83.526829, 36.66593], [-83.527311, 36.666084], [-83.527636, 36.666138], [-83.528057, 36.666036], [-83.528824, 36.665634], [-83.529145, 36.665563], [-83.529441, 36.665592], [-83.529725, 36.665726], [-83.530034, 36.666006], [-83.53015, 36.666056], [-83.530343, 36.66594], [-83.530573, 36.665584], [-83.530837, 36.665445], [-83.531766, 36.665218], [-83.5322, 36.665003], [-83.532408, 36.664696], [-83.532321, 36.664326], [-83.532016, 36.663943], [-83.531837, 36.663668], [-83.531835, 36.663091], [-83.53194, 36.662597], [-83.532061, 36.662255], [-83.53231, 36.661972], [-83.532836, 36.661632], [-83.533318, 36.66149], [-83.533817, 36.661396], [-83.534459, 36.661178], [-83.535285, 36.660797], [-83.535861, 36.660629], [-83.536212, 36.660525], [-83.536396, 36.660377], [-83.536453, 36.66016], [-83.536453, 36.659818], [-83.536483, 36.659561], [-83.536722, 36.65919], [-83.537058, 36.658941], [-83.53738, 36.658797], [-83.537849, 36.658743], [-83.538118, 36.658668], [-83.538582, 36.658494], [-83.53912, 36.658417], [-83.539699, 36.658317], [-83.540091, 36.658126], [-83.540358, 36.657859], [-83.540723, 36.657331], [-83.540997, 36.657145], [-83.541429, 36.656986], [-83.541651, 36.656855], [-83.541746, 36.65669], [-83.54205, 36.656502], [-83.542841, 36.65628], [-83.543255, 36.656039], [-83.543861, 36.655462], [-83.544262, 36.655303], [-83.544639, 36.655309], [-83.545059, 36.655216], [-83.545373, 36.655044], [-83.545825, 36.654582], [-83.546199, 36.654359], [-83.546821, 36.65414], [-83.548121, 36.653822], [-83.549068, 36.653723], [-83.549642, 36.653742], [-83.550089, 36.653728], [-83.550577, 36.653675], [-83.551657, 36.654035], [-83.552184, 36.654046], [-83.552532, 36.653948], [-83.552865, 36.653811], [-83.553572, 36.653441], [-83.554095, 36.653221], [-83.554798, 36.652963], [-83.555049, 36.652897], [-83.555968, 36.653004], [-83.556466, 36.65291], [-83.556879, 36.652745], [-83.557778, 36.652259], [-83.558347, 36.652151], [-83.559242, 36.652089], [-83.560098, 36.651995], [-83.560632, 36.651752], [-83.560969, 36.651617], [-83.56145, 36.651491], [-83.561918, 36.651431], [-83.56243, 36.651256], [-83.562725, 36.651023], [-83.562903, 36.650763], [-83.562892, 36.65049], [-83.562651, 36.649909], [-83.562637, 36.649742], [-83.562767, 36.649577], [-83.562833, 36.649519], [-83.56345, 36.64919], [-83.564232, 36.648614], [-83.56457, 36.648293], [-83.564724, 36.64816], [-83.56541, 36.647789], [-83.566055, 36.647173], [-83.566225, 36.647119], [-83.566524, 36.647101], [-83.567073, 36.646993], [-83.567297, 36.646846], [-83.567702, 36.646279], [-83.567857, 36.646058], [-83.568189, 36.645921], [-83.568958, 36.645761], [-83.569179, 36.645668], [-83.570063, 36.645041], [-83.570596, 36.644819], [-83.571649, 36.64448], [-83.572117, 36.644435], [-83.572675, 36.644358], [-83.573032, 36.644326], [-83.574021, 36.644433], [-83.574338, 36.644441], [-83.57462, 36.644343], [-83.574753, 36.644225], [-83.574829, 36.64402], [-83.575018, 36.643678], [-83.575337, 36.643325], [-83.576661, 36.642539], [-83.576867, 36.64231], [-83.576928, 36.641992], [-83.577065, 36.64173], [-83.57732, 36.641503], [-83.577611, 36.641397], [-83.577958, 36.641452], [-83.578471, 36.641847], [-83.578841, 36.641727], [-83.579428, 36.641708], [-83.580299, 36.641764], [-83.580619, 36.641661], [-83.581667, 36.641475], [-83.582548, 36.641541], [-83.582659, 36.64147], [-83.582926, 36.641211], [-83.583128, 36.641111], [-83.583324, 36.641164], [-83.58368, 36.641556], [-83.584242, 36.6416], [-83.584578, 36.641662], [-83.584916, 36.641933], [-83.585656, 36.643013], [-83.58596, 36.643763], [-83.586175, 36.643857], [-83.586453, 36.64387], [-83.58709, 36.643647], [-83.587423, 36.643447], [-83.587441, 36.643215], [-83.587299, 36.643004], [-83.587059, 36.642742], [-83.587064, 36.642567], [-83.5873, 36.642308], [-83.587602, 36.642193], [-83.588505, 36.642189], [-83.588936, 36.642021], [-83.589549, 36.64153], [-83.58986, 36.641385], [-83.590942, 36.641392], [-83.591182, 36.641315], [-83.591762, 36.640904], [-83.592179, 36.640693], [-83.592917, 36.640547], [-83.593708, 36.64066], [-83.594301, 36.640753], [-83.594929, 36.64035], [-83.595753, 36.640047], [-83.597872, 36.638875], [-83.598517, 36.638624], [-83.599278, 36.638399], [-83.599854, 36.638051], [-83.600436, 36.637856], [-83.601687, 36.637678], [-83.601996, 36.637587], [-83.602681, 36.637299], [-83.603072, 36.637154], [-83.60347, 36.637123], [-83.603707, 36.637184], [-83.603881, 36.637299], [-83.604062, 36.637878], [-83.604106, 36.637993], [-83.604647, 36.637866], [-83.605905, 36.637908], [-83.607131, 36.637414], [-83.607932, 36.637165], [-83.60898, 36.637003], [-83.609491, 36.636831], [-83.61008, 36.636442], [-83.610558, 36.635741], [-83.611072, 36.635159], [-83.611254, 36.635043], [-83.611586, 36.634905], [-83.611934, 36.634864], [-83.612584, 36.635038], [-83.61303, 36.635055], [-83.613677, 36.634956], [-83.6139, 36.634857], [-83.614088, 36.634524], [-83.614295, 36.634258], [-83.61463, 36.634048], [-83.614996, 36.633752], [-83.615165, 36.633372], [-83.615171, 36.632939], [-83.615152, 36.632569], [-83.615246, 36.632397], [-83.615381, 36.632272], [-83.615921, 36.632107], [-83.616364, 36.631908], [-83.616638, 36.631688], [-83.616867, 36.631373], [-83.617103, 36.630787], [-83.617437, 36.630305], [-83.617666, 36.629918], [-83.618046, 36.628917], [-83.618265, 36.628594], [-83.618569, 36.628359], [-83.619278, 36.627871], [-83.619833, 36.627609], [-83.620514, 36.627383], [-83.620847, 36.627239], [-83.621393, 36.626914], [-83.621824, 36.626746], [-83.621956, 36.626644], [-83.622676, 36.626023], [-83.622956, 36.62594], [-83.623437, 36.625808], [-83.624021, 36.625516], [-83.624579, 36.62543], [-83.624887, 36.62538], [-83.625239, 36.625237], [-83.626315, 36.62509], [-83.626757, 36.624947], [-83.627303, 36.624926], [-83.627903, 36.624779], [-83.628334, 36.624611], [-83.628611, 36.624337], [-83.629384, 36.624278], [-83.630396, 36.623937], [-83.63188, 36.623504], [-83.634152, 36.622944], [-83.634718, 36.622897], [-83.634936, 36.622894], [-83.63507, 36.622954], [-83.635347, 36.623113], [-83.635576, 36.623157], [-83.635832, 36.623248], [-83.636508, 36.6237], [-83.637008, 36.624021], [-83.637247, 36.624086], [-83.637895, 36.624066], [-83.638446, 36.624101], [-83.638861, 36.624201], [-83.640731, 36.62477], [-83.641075, 36.624768], [-83.641422, 36.624684], [-83.641813, 36.624523], [-83.642467, 36.624006], [-83.642762, 36.623869], [-83.642961, 36.623873], [-83.643188, 36.623945], [-83.64388, 36.624514], [-83.644055, 36.62462], [-83.644307, 36.624549], [-83.644603, 36.624386], [-83.645128, 36.624313], [-83.645382, 36.624191], [-83.645555, 36.623984], [-83.645675, 36.623474], [-83.645852, 36.623191], [-83.646203, 36.622937], [-83.646467, 36.622868], [-83.646694, 36.622906], [-83.647398, 36.623106], [-83.647707, 36.62309], [-83.64809, 36.622846], [-83.648321, 36.622454], [-83.648364, 36.622061], [-83.648188, 36.621342], [-83.648242, 36.620996], [-83.648653, 36.620328], [-83.648724, 36.620084], [-83.64858, 36.619704], [-83.64854, 36.619315], [-83.648647, 36.618888], [-83.649215, 36.617706], [-83.649288, 36.617395], [-83.649231, 36.616872], [-83.649317, 36.616781], [-83.64973, 36.616907], [-83.650311, 36.617004], [-83.65097, 36.616958], [-83.651361, 36.616806], [-83.651662, 36.616551], [-83.651851, 36.616167], [-83.652076, 36.615625], [-83.652686, 36.615132], [-83.652923, 36.614877], [-83.653192, 36.61435], [-83.6542, 36.613437], [-83.654573, 36.613184], [-83.654922, 36.613023], [-83.65513, 36.613002], [-83.656997, 36.61309], [-83.657113, 36.613035], [-83.657405, 36.612693], [-83.657749, 36.612027], [-83.65791, 36.611872], [-83.658229, 36.611692], [-83.658464, 36.611487], [-83.658663, 36.611145], [-83.659016, 36.610876], [-83.659278, 36.610527], [-83.659439, 36.610379], [-83.659873, 36.610143], [-83.660741, 36.609428], [-83.660985, 36.609291], [-83.661544, 36.609059], [-83.662045, 36.608749], [-83.662537, 36.608312], [-83.662971, 36.607783], [-83.663163, 36.607307], [-83.663359, 36.607075], [-83.663552, 36.606935], [-83.664014, 36.606801], [-83.66455, 36.606703], [-83.664889, 36.606499], [-83.665733, 36.605876], [-83.66597, 36.605776], [-83.666148, 36.605764], [-83.668808, 36.605931], [-83.668956, 36.605849], [-83.669433, 36.60532], [-83.669782, 36.605151], [-83.67037, 36.604994], [-83.671011, 36.604873], [-83.672024, 36.604817], [-83.672964, 36.604769], [-83.673208, 36.604648], [-83.673306, 36.604531], [-83.673342, 36.604395], [-83.6734, 36.604171], [-83.673699, 36.60394], [-83.673903, 36.603854], [-83.67444, 36.603628], [-83.674723, 36.603246], [-83.67501, 36.602033], [-83.675202, 36.601566], [-83.675297, 36.601161], [-83.675399, 36.600791] ], [ [-81.37943, 36.952424], [-81.379131, 36.952724], [-81.37908, 36.952878], [-81.378931, 36.953324], [-81.378631, 36.953724], [-81.378431, 36.953924], [-81.378331, 36.954124], [-81.378231, 36.954224], [-81.377931, 36.954624], [-81.377731, 36.955124], [-81.377531, 36.955524], [-81.377331, 36.956024], [-81.376931, 36.956824], [-81.376631, 36.957324], [-81.376031, 36.957924], [-81.375631, 36.958424], [-81.375431, 36.958624], [-81.375231, 36.958924], [-81.375031, 36.959424], [-81.375031, 36.959724], [-81.374531, 36.960224], [-81.374531, 36.960524], [-81.374431, 36.960724], [-81.374231, 36.961024], [-81.374131, 36.961324], [-81.373931, 36.961424], [-81.373631, 36.961624], [-81.373431, 36.961724], [-81.373231, 36.962224], [-81.373131, 36.962424], [-81.373231, 36.962524], [-81.373131, 36.962924], [-81.372931, 36.963324], [-81.371831, 36.964424], [-81.371331, 36.965024], [-81.370931, 36.965424], [-81.370531, 36.965724], [-81.369931, 36.966024], [-81.369331, 36.966224], [-81.368831, 36.966424], [-81.368531, 36.966724], [-81.367831, 36.967124], [-81.367231, 36.967224], [-81.366731, 36.967024], [-81.366431, 36.966724], [-81.365931, 36.966524], [-81.365131, 36.966524], [-81.364831, 36.966424], [-81.364431, 36.966424], [-81.364031, 36.966324], [-81.363731, 36.966124], [-81.363131, 36.965524], [-81.363031, 36.965324], [-81.362831, 36.965224], [-81.362731, 36.965124], [-81.36083, 36.965124], [-81.36043, 36.964924], [-81.35993, 36.965024], [-81.35943, 36.965224], [-81.359014, 36.965307], [-81.35893, 36.965324], [-81.35863, 36.965324], [-81.358586, 36.965309], [-81.35833, 36.965224], [-81.35773, 36.965224], [-81.35703, 36.965124], [-81.35663, 36.965024], [-81.35623, 36.964824], [-81.35583, 36.964524], [-81.35493, 36.964524], [-81.35453, 36.964624], [-81.35413, 36.964924], [-81.35353, 36.965224], [-81.35253, 36.965424], [-81.35213, 36.965524], [-81.35183, 36.965524], [-81.35063, 36.965824], [-81.35023, 36.966124], [-81.34993, 36.966324], [-81.34973, 36.966424], [-81.34913, 36.966924], [-81.34853, 36.967224], [-81.34803, 36.967524], [-81.34783, 36.967724], [-81.34783, 36.968124], [-81.34763, 36.968524], [-81.34713, 36.968924], [-81.34653, 36.969224], [-81.34613, 36.969524], [-81.345882, 36.969854], [-81.34583, 36.969924], [-81.34563, 36.970124], [-81.34543, 36.970424], [-81.34513, 36.970824], [-81.344829, 36.970924], [-81.344429, 36.971124], [-81.344429, 36.971324], [-81.344129, 36.971524], [-81.343931, 36.971643], [-81.343629, 36.971824], [-81.343529, 36.971924], [-81.343329, 36.972224], [-81.343029, 36.972624], [-81.342629, 36.973024], [-81.342129, 36.973624], [-81.341629, 36.974024], [-81.341129, 36.974524], [-81.340621, 36.974714], [-81.340329, 36.974824], [-81.339729, 36.974924], [-81.339129, 36.974924], [-81.338629, 36.975224], [-81.338329, 36.975424], [-81.338229, 36.975824], [-81.338129, 36.976124], [-81.338129, 36.977424], [-81.337529, 36.977524], [-81.337229, 36.977724], [-81.335829, 36.979124], [-81.335229, 36.979624], [-81.334729, 36.980124], [-81.334229, 36.980724], [-81.333629, 36.981324], [-81.333129, 36.981924], [-81.331829, 36.983224], [-81.331629, 36.983624], [-81.331329, 36.984024], [-81.331029, 36.984224], [-81.330829, 36.984324], [-81.330529, 36.984724], [-81.330329, 36.985124], [-81.330029, 36.985524], [-81.329729, 36.985524], [-81.329529, 36.985424], [-81.329129, 36.985624], [-81.328629, 36.985924], [-81.328429, 36.986224], [-81.328129, 36.986724], [-81.327737, 36.987124], [-81.326928, 36.987224], [-81.326628, 36.987424], [-81.326428, 36.987724], [-81.326328, 36.988024], [-81.326157, 36.988281], [-81.326128, 36.988324], [-81.326091, 36.988352], [-81.325728, 36.988624], [-81.325228, 36.988924], [-81.324728, 36.989324], [-81.324428, 36.989724], [-81.324241, 36.989911], [-81.323628, 36.990224], [-81.323028, 36.990424], [-81.322528, 36.990724], [-81.322328, 36.991024], [-81.321628, 36.991724], [-81.321528, 36.991924], [-81.321028, 36.992424], [-81.320628, 36.992524], [-81.320428, 36.992724], [-81.320028, 36.993024], [-81.319428, 36.993424], [-81.319128, 36.993724], [-81.319128, 36.993824], [-81.319028, 36.994324], [-81.319028, 36.994524], [-81.319036, 36.994654], [-81.319028, 36.994724], [-81.318928, 36.994724], [-81.318528, 36.994824], [-81.318428, 36.994924], [-81.318428, 36.995224], [-81.318293, 36.995403], [-81.318128, 36.995624], [-81.317628, 36.996124], [-81.317128, 36.996424], [-81.316828, 36.996524], [-81.316428, 36.996824], [-81.316228, 36.997224], [-81.315928, 36.997624], [-81.315828, 36.997924], [-81.315728, 36.998124], [-81.315528, 36.998324], [-81.315428, 36.998524], [-81.315228, 36.998524], [-81.314828, 36.998724], [-81.314328, 36.998824], [-81.313628, 36.999224], [-81.313328, 36.999424], [-81.313028, 36.999724], [-81.312627, 37.000124], [-81.311457, 37.000901], [-81.310257, 37.001696], [-81.309525, 37.002159], [-81.308914, 37.002427], [-81.308243, 37.002736], [-81.307993, 37.002858], [-81.307433, 37.003449], [-81.306893, 37.003855], [-81.305893, 37.004689], [-81.305153, 37.005265], [-81.303492, 37.006522], [-81.302181, 37.007277], [-81.301662, 37.007852], [-81.300431, 37.008857], [-81.299161, 37.00991], [-81.298371, 37.010478], [-81.297592, 37.011385], [-81.296612, 37.012357], [-81.2952, 37.013063], [-81.294089, 37.013753], [-81.292276, 37.014994], [-81.291447, 37.01578], [-81.290345, 37.016364], [-81.289073, 37.017159], [-81.287922, 37.017938], [-81.287122, 37.018554], [-81.286461, 37.019], [-81.285318, 37.019334], [-81.283744, 37.01967], [-81.283073, 37.020076], [-81.282261, 37.020369], [-81.281047, 37.02055], [-81.278739, 37.020766], [-81.277948, 37.021075], [-81.276716, 37.021838], [-81.275142, 37.022504], [-81.273789, 37.023178], [-81.272417, 37.02399], [-81.271104, 37.024534], [-81.270162, 37.024892], [-81.268811, 37.025833], [-81.267609, 37.026668], [-81.266538, 37.027406], [-81.265827, 37.027997], [-81.265138, 37.028758], [-81.264257, 37.029592], [-81.263697, 37.03007], [-81.263127, 37.030564], [-81.262295, 37.031132], [-81.261183, 37.031628], [-81.25988, 37.032181], [-81.257482, 37.032712], [-81.256458, 37.032933], [-81.254964, 37.033373], [-81.253529, 37.033603], [-81.252325, 37.033816], [-81.251011, 37.033997], [-81.249824, 37.034339], [-81.249322, 37.034527], [-81.248569, 37.034663], [-81.247907, 37.034823], [-81.247033, 37.035152], [-81.24621, 37.035424], [-81.245135, 37.035841], [-81.243689, 37.036427], [-81.242514, 37.036852], [-81.24168, 37.037334], [-81.240876, 37.037824], [-81.23977, 37.038387], [-81.238565, 37.038844], [-81.238113, 37.03902], [-81.237399, 37.039478], [-81.236123, 37.04033], [-81.234876, 37.041158], [-81.234062, 37.041777], [-81.233066, 37.04242], [-81.232292, 37.04304], [-81.231874, 37.043334], [-81.231448, 37.043635], [-81.230664, 37.044028], [-81.22998, 37.044422], [-81.229317, 37.044848], [-81.228714, 37.045266], [-81.228261, 37.04566], [-81.228239, 37.045678], [-81.227903, 37.045948], [-81.226636, 37.046717], [-81.22544, 37.047439], [-81.224616, 37.047847], [-81.223555, 37.047943], [-81.222181, 37.047955], [-81.221569, 37.047952], [-81.220768, 37.047805], [-81.220046, 37.047649], [-81.219325, 37.047454], [-81.218788, 37.047327], [-81.218463, 37.047251], [-81.217681, 37.047201], [-81.217199, 37.047208], [-81.216999, 37.047167], [-81.215927, 37.046713], [-81.214123, 37.046217], [-81.212819, 37.046076], [-81.211867, 37.0458], [-81.210854, 37.045612], [-81.210202, 37.045514], [-81.20937, 37.045318], [-81.208198, 37.044703], [-81.207086, 37.044111], [-81.206155, 37.043593], [-81.205624, 37.043414], [-81.205062, 37.043413], [-81.204571, 37.043259], [-81.20379, 37.04295], [-81.202527, 37.042455], [-81.201236, 37.041831], [-81.200184, 37.041313], [-81.198922, 37.040769], [-81.197761, 37.040121], [-81.196709, 37.039651], [-81.195658, 37.039124], [-81.194627, 37.038492], [-81.192945, 37.037561], [-81.191822, 37.037042], [-81.191392, 37.036686], [-81.191133, 37.036266], [-81.190873, 37.035854], [-81.190664, 37.035442], [-81.190255, 37.034917], [-81.189696, 37.034077], [-81.189238, 37.033173], [-81.18871, 37.032212], [-81.18842, 37.031937], [-81.1879, 37.031629], [-81.18744, 37.031104], [-81.186361, 37.030036], [-81.185231, 37.029001], [-81.184451, 37.028491], [-81.18293, 37.027487], [-81.181199, 37.026362], [-81.180258, 37.026053], [-81.179737, 37.025858], [-81.179587, 37.025769], [-81.179367, 37.025526], [-81.179067, 37.025268], [-81.178857, 37.025106], [-81.178216, 37.024983], [-81.176782, 37.024874], [-81.175658, 37.024759], [-81.174465, 37.024667], [-81.173482, 37.02468], [-81.172509, 37.024662], [-81.172028, 37.024596], [-81.171546, 37.024603], [-81.170754, 37.024673], [-81.169781, 37.024791], [-81.169149, 37.024773], [-81.167454, 37.024664], [-81.16606, 37.02466], [-81.164876, 37.024851], [-81.16337, 37.025137], [-81.161784, 37.025536], [-81.160397, 37.025919], [-81.158288, 37.026703], [-81.154319, 37.028321], [-81.151385, 37.029579], [-81.147968, 37.031327], [-81.147626, 37.031526], [-81.145726, 37.032635], [-81.143091, 37.033982], [-81.141513, 37.034671], [-81.140238, 37.034885], [-81.138731, 37.035542], [-81.135979, 37.036372], [-81.13418, 37.037085], [-81.132491, 37.037822], [-81.131997, 37.038045], [-81.131342, 37.038342], [-81.13123, 37.03826], [-81.131039, 37.038102], [-81.129615, 37.036926], [-81.126973, 37.03476], [-81.126731, 37.034561], [-81.126305, 37.034198], [-81.124816, 37.032938], [-81.122805, 37.030921], [-81.122587, 37.030708], [-81.122542, 37.030664], [-81.118201, 37.026415], [-81.116144, 37.024402], [-81.114322, 37.022619], [-81.113446, 37.022987], [-81.112105, 37.023536], [-81.110037, 37.024187], [-81.108061, 37.024797], [-81.107107, 37.025108], [-81.106953, 37.025154], [-81.106898, 37.02517], [-81.106812, 37.025197], [-81.106412, 37.025316], [-81.105531, 37.025584], [-81.104475, 37.025948], [-81.103273, 37.026179], [-81.101355, 37.026246], [-81.100285, 37.026375], [-81.100119, 37.026393], [-81.099826, 37.026441], [-81.099723, 37.026458], [-81.099699, 37.026462], [-81.098967, 37.026554], [-81.097656, 37.026994], [-81.096422, 37.027575], [-81.095356, 37.027997], [-81.094164, 37.028328], [-81.093837, 37.028499], [-81.09333, 37.02902], [-81.092624, 37.029527], [-81.09202, 37.029795], [-81.091006, 37.030094], [-81.089644, 37.030579], [-81.088123, 37.030987], [-81.086667, 37.031207], [-81.086206, 37.031376], [-81.08591, 37.031643], [-81.084941, 37.032391], [-81.083642, 37.03306], [-81.082157, 37.033605], [-81.080335, 37.034126], [-81.078956, 37.034464], [-81.077255, 37.034792], [-81.075778, 37.035123], [-81.07473, 37.035151], [-81.072672, 37.035333], [-81.072065, 37.035299], [-81.07173, 37.035304], [-81.071168, 37.035552], [-81.0708, 37.035651], [-81.070033, 37.035736], [-81.068471, 37.035957], [-81.066398, 37.036365], [-81.064554, 37.036798], [-81.064312, 37.036851], [-81.063617, 37.03741], [-81.06311, 37.037567], [-81.062177, 37.037697], [-81.061161, 37.037769], [-81.060508, 37.038017], [-81.059815, 37.038387], [-81.058981, 37.038739], [-81.057978, 37.039036], [-81.057125, 37.039252], [-81.056231, 37.039451], [-81.055399, 37.039418], [-81.054768, 37.039441], [-81.054506, 37.039561], [-81.054305, 37.039754], [-81.053852, 37.040172], [-81.053481, 37.04026], [-81.052769, 37.040226], [-81.052308, 37.040282], [-81.051596, 37.040264], [-81.050994, 37.040328], [-81.050482, 37.040464], [-81.049981, 37.040519], [-81.048787, 37.040589], [-81.048124, 37.040636], [-81.047823, 37.040789], [-81.04741, 37.041086], [-81.047099, 37.04119], [-81.044963, 37.041395], [-81.044691, 37.041484], [-81.04441, 37.041652], [-81.043808, 37.04178], [-81.043276, 37.041803], [-81.042835, 37.041955], [-81.042372, 37.042164], [-81.042041, 37.042324], [-81.04153, 37.042315], [-81.040958, 37.042378], [-81.040586, 37.042515], [-81.038035, 37.043581], [-81.037, 37.044183], [-81.036587, 37.044561], [-81.036184, 37.044955], [-81.035501, 37.04526], [-81.034828, 37.045581], [-81.034004, 37.046095], [-81.0333, 37.046512], [-81.033029, 37.046721], [-81.032517, 37.046865], [-81.032004, 37.046904], [-81.031592, 37.047032], [-81.031, 37.0472], [-81.030358, 37.047151], [-81.027409, 37.047491], [-81.026807, 37.047497], [-81.026506, 37.047497], [-81.026025, 37.047576], [-81.025613, 37.047753], [-81.02516, 37.047977], [-81.024518, 37.048177], [-81.02223, 37.048575], [-81.019079, 37.048955], [-81.016078, 37.049392], [-81.013299, 37.049595], [-81.012416, 37.049698], [-81.011894, 37.049761], [-81.011463, 37.049897], [-81.011171, 37.049985], [-81.009446, 37.050086], [-81.00755, 37.050218], [-81.005403, 37.050568], [-81.003909, 37.050733], [-81.003627, 37.050765], [-81.002874, 37.050836], [-81.001951, 37.051051], [-81.000967, 37.051202], [-81.000526, 37.051225], [-81.000235, 37.051249], [-80.999808, 37.051321], [-80.999611, 37.051341], [-80.998949, 37.051388], [-80.998277, 37.05148], [-80.997577, 37.051573], [-80.997017, 37.051619], [-80.995728, 37.051648], [-80.995696, 37.051654], [-80.99106, 37.051704], [-80.986351, 37.052472], [-80.983601, 37.05298], [-80.981403, 37.053559], [-80.980727, 37.053035], [-80.979668, 37.053112], [-80.974834, 37.054596], [-80.972966, 37.054824], [-80.971956, 37.056063], [-80.971463, 37.056086], [-80.970932, 37.05636], [-80.970431, 37.056632], [-80.969707, 37.057025], [-80.967863, 37.057568], [-80.967189, 37.057556], [-80.966192, 37.057661], [-80.965571, 37.057962], [-80.964744, 37.058364], [-80.963857, 37.058777], [-80.962582, 37.059079], [-80.96138, 37.059109], [-80.96048, 37.059133], [-80.960189, 37.059595], [-80.960038, 37.059698], [-80.957928, 37.060996], [-80.956416, 37.061018], [-80.955415, 37.06124], [-80.953929, 37.061717], [-80.952687, 37.062114], [-80.952332, 37.062229], [-80.949058, 37.063281], [-80.943137, 37.065414], [-80.938532, 37.066639], [-80.937, 37.066897], [-80.935713, 37.066464], [-80.934556, 37.066693], [-80.933859, 37.067043], [-80.933087, 37.067433], [-80.929772, 37.06849], [-80.926995, 37.069255], [-80.924577, 37.070307], [-80.922619, 37.071494], [-80.92125, 37.071945], [-80.919677, 37.07199], [-80.916716, 37.072954], [-80.915782, 37.072757], [-80.913966, 37.073412], [-80.912677, 37.073356], [-80.91215, 37.072109], [-80.911077, 37.069568], [-80.911075, 37.069563], [-80.911072, 37.069556], [-80.910993, 37.069368], [-80.910572, 37.068372], [-80.910046, 37.067127], [-80.910022, 37.067062], [-80.909952, 37.066871], [-80.909928, 37.066807], [-80.909739, 37.066287], [-80.909174, 37.064727], [-80.908986, 37.064207], [-80.908165, 37.06228], [-80.905704, 37.056501], [-80.904884, 37.054575], [-80.904879, 37.054563], [-80.904694, 37.054129], [-80.904139, 37.052825], [-80.903954, 37.052392], [-80.903947, 37.052376], [-80.90379, 37.052007], [-80.903319, 37.050901], [-80.903162, 37.050533], [-80.90221, 37.048304], [-80.900237, 37.043683], [-80.900187, 37.043566], [-80.900167, 37.04352], [-80.90015, 37.043479], [-80.90014, 37.043455], [-80.900132, 37.043437], [-80.90005, 37.043245], [-80.899355, 37.041618], [-80.898467, 37.039539], [-80.898387, 37.039398], [-80.898321, 37.039276], [-80.898125, 37.038909], [-80.89806, 37.038787], [-80.897953, 37.038575], [-80.897854, 37.03838], [-80.897837, 37.038346], [-80.897835, 37.038341], [-80.897632, 37.037938], [-80.897525, 37.037726], [-80.897491, 37.037638], [-80.897191, 37.036882], [-80.896744, 37.035757], [-80.896731, 37.035725], [-80.896685, 37.03561], [-80.896666, 37.035562], [-80.896661, 37.035548], [-80.896601, 37.035397], [-80.896185, 37.03435], [-80.89585, 37.033507], [-80.895836, 37.033475], [-80.895834, 37.03347], [-80.894789, 37.031011], [-80.894747, 37.030913], [-80.894733, 37.03088], [-80.894725, 37.03086], [-80.894708, 37.03082], [-80.894679, 37.030752], [-80.894518, 37.030373], [-80.893258, 37.027408], [-80.888027, 37.022769], [-80.887137, 37.02198], [-80.887002, 37.02186], [-80.88689, 37.021761], [-80.886805, 37.021686], [-80.88548, 37.020511], [-80.885247, 37.020303], [-80.885236, 37.020293], [-80.884841, 37.019941], [-80.884832, 37.019933], [-80.884804, 37.019908], [-80.884795, 37.0199], [-80.88387, 37.01908], [-80.883199, 37.018485], [-80.883194, 37.018481], [-80.883156, 37.018447], [-80.881095, 37.01662], [-80.880171, 37.015801], [-80.880168, 37.015799], [-80.879895, 37.015557], [-80.879077, 37.014831], [-80.878805, 37.014589], [-80.878494, 37.014313], [-80.877563, 37.013485], [-80.877376, 37.013319], [-80.877247, 37.013217], [-80.876645, 37.012734], [-80.876537, 37.012647], [-80.876323, 37.012475], [-80.876124, 37.012316], [-80.876102, 37.012298], [-80.876083, 37.012283], [-80.875862, 37.012105], [-80.87585, 37.012095], [-80.875636, 37.011923], [-80.87551, 37.011822], [-80.87548, 37.011798], [-80.875444, 37.011769], [-80.875403, 37.011736], [-80.875265, 37.011625], [-80.87515, 37.011533], [-80.875068, 37.011467], [-80.874998, 37.01141], [-80.874912, 37.011341], [-80.874851, 37.011292], [-80.874838, 37.011282], [-80.874816, 37.011265], [-80.874787, 37.011241], [-80.874706, 37.011226], [-80.87455, 37.011203], [-80.874538, 37.011201], [-80.87453, 37.0112], [-80.874523, 37.011199], [-80.87451, 37.011197], [-80.874491, 37.011194], [-80.87436, 37.011174], [-80.874225, 37.011087], [-80.874129, 37.011025], [-80.874104, 37.011009], [-80.874091, 37.011], [-80.874054, 37.010977], [-80.874049, 37.010974], [-80.874035, 37.010965], [-80.87398, 37.01093], [-80.873814, 37.010824], [-80.873758, 37.010788], [-80.873696, 37.010748], [-80.873444, 37.010588], [-80.87194, 37.009627], [-80.867427, 37.006745], [-80.865922, 37.005784], [-80.864638, 37.004964], [-80.864587, 37.004931], [-80.864558, 37.004913], [-80.864545, 37.004905], [-80.864507, 37.004881], [-80.864454, 37.004847], [-80.864174, 37.004668], [-80.863175, 37.00403], [-80.862579, 37.003649], [-80.858601, 37.000126], [-80.858562, 37.00009], [-80.858551, 37.00008], [-80.858544, 37.000074], [-80.858535, 37.000066], [-80.857627, 36.999244], [-80.855816, 36.997603], [-80.8534, 36.995413], [-80.852658, 36.994743], [-80.850429, 36.992732], [-80.849686, 36.992061], [-80.84883, 36.99129], [-80.846261, 36.988973], [-80.845405, 36.988201], [-80.843401, 36.986392], [-80.837388, 36.980965], [-80.835383, 36.979156], [-80.83536, 36.979136], [-80.83529, 36.979075], [-80.835266, 36.979054], [-80.835243, 36.979033], [-80.835172, 36.97897], [-80.835147, 36.978949], [-80.835009, 36.978824], [-80.834967, 36.978786], [-80.834949, 36.978768], [-80.834646, 36.978468], [-80.834558, 36.97838], [-80.834375, 36.978199], [-80.834184, 36.978009], [-80.834152, 36.977977], [-80.834054, 36.977881], [-80.834048, 36.977876], [-80.833988, 36.977816], [-80.833953, 36.97778], [-80.833748, 36.977573], [-80.83368, 36.977504], [-80.831737, 36.975582], [-80.825906, 36.969817], [-80.823962, 36.967895], [-80.823959, 36.967892], [-80.82307, 36.967013], [-80.820402, 36.964375], [-80.819512, 36.963495], [-80.817966, 36.961966], [-80.813327, 36.957379], [-80.81178, 36.95585], [-80.810513, 36.954558], [-80.80936, 36.953382], [-80.809356, 36.953378], [-80.809471, 36.953289], [-80.809478, 36.953284], [-80.810039, 36.952852], [-80.812118, 36.95257], [-80.811827, 36.951806], [-80.811183, 36.950114], [-80.810709, 36.948838], [-80.809494, 36.945568], [-80.809457, 36.944973], [-80.809375, 36.943644], [-80.809373, 36.943614], [-80.809247, 36.941373], [-80.809198, 36.940493], [-80.803841, 36.942857], [-80.801786, 36.943764], [-80.801721, 36.943793], [-80.801826, 36.94395], [-80.802237, 36.944561], [-80.802412, 36.944819], [-80.803186, 36.945966], [-80.803098, 36.946134], [-80.803068, 36.946191], [-80.803032, 36.94626], [-80.803021, 36.946282], [-80.803012, 36.946299], [-80.802823, 36.946662], [-80.799853, 36.943797], [-80.798727, 36.942711], [-80.79872, 36.942704], [-80.798666, 36.942648], [-80.798503, 36.942477], [-80.798448, 36.94242], [-80.797844, 36.941788], [-80.79603, 36.939892], [-80.795425, 36.939259], [-80.79541, 36.939243], [-80.795362, 36.939193], [-80.795346, 36.939177], [-80.795305, 36.939134], [-80.795181, 36.939004], [-80.79514, 36.938961], [-80.795124, 36.938944], [-80.795106, 36.938925], [-80.79479, 36.938587], [-80.793741, 36.937465], [-80.793391, 36.93709], [-80.793359, 36.937056], [-80.793315, 36.937008], [-80.793262, 36.936952], [-80.793229, 36.936917], [-80.793192, 36.936877], [-80.79308, 36.936756], [-80.793072, 36.936748], [-80.793042, 36.936716], [-80.792869, 36.936547], [-80.792519, 36.936205], [-80.792353, 36.936042], [-80.792181, 36.935874], [-80.791868, 36.935567], [-80.790931, 36.934647], [-80.790618, 36.93434], [-80.790586, 36.934304], [-80.790558, 36.934273], [-80.790376, 36.934073], [-80.790315, 36.934006], [-80.790239, 36.93392], [-80.790115, 36.933781], [-80.790006, 36.933665], [-80.789927, 36.93358], [-80.789882, 36.93353], [-80.789781, 36.933419], [-80.789628, 36.933251], [-80.789476, 36.933084], [-80.789374, 36.932972], [-80.78924, 36.93282], [-80.788839, 36.932365], [-80.788753, 36.932268], [-80.788719, 36.932229], [-80.788705, 36.932213], [-80.787628, 36.931029], [-80.784397, 36.927476], [-80.783324, 36.926297], [-80.78332, 36.926292], [-80.782845, 36.92578], [-80.781422, 36.924244], [-80.780947, 36.923732], [-80.780848, 36.923625], [-80.780669, 36.923432], [-80.780604, 36.923362], [-80.780585, 36.923341], [-80.78055, 36.923304], [-80.78045, 36.923196], [-80.7798, 36.922495], [-80.779219, 36.921868], [-80.779163, 36.921808], [-80.778883, 36.921506], [-80.778865, 36.921486], [-80.778852, 36.921472], [-80.778814, 36.921431], [-80.778626, 36.921228], [-80.777851, 36.920392], [-80.777202, 36.919692], [-80.776558, 36.918993], [-80.774625, 36.916896], [-80.774051, 36.916274], [-80.773994, 36.916212], [-80.773981, 36.916198], [-80.77347, 36.915581], [-80.772117, 36.913948], [-80.772111, 36.913941], [-80.772104, 36.913932], [-80.772071, 36.913892], [-80.772031, 36.913844], [-80.771939, 36.913733], [-80.771429, 36.913118], [-80.771366, 36.913042], [-80.771179, 36.912816], [-80.771149, 36.91278], [-80.771115, 36.912743], [-80.771101, 36.912727], [-80.77106, 36.912681], [-80.771047, 36.912666], [-80.771036, 36.912654], [-80.771004, 36.912619], [-80.770994, 36.912608], [-80.770863, 36.912462], [-80.770859, 36.912457], [-80.770681, 36.912258], [-80.769744, 36.911209], [-80.769432, 36.91086], [-80.769428, 36.910845], [-80.769197, 36.91053], [-80.769107, 36.910431], [-80.768318, 36.909565], [-80.764858, 36.905769], [-80.76377, 36.904576], [-80.763705, 36.904505], [-80.763127, 36.903862], [-80.762781, 36.903478], [-80.762378, 36.90303], [-80.761394, 36.901936], [-80.760817, 36.901294], [-80.760505, 36.900947], [-80.760377, 36.900805], [-80.760161, 36.900565], [-80.75957, 36.899908], [-80.759259, 36.899562], [-80.759046, 36.899325], [-80.758973, 36.899244], [-80.758969, 36.89924], [-80.758951, 36.89922], [-80.758927, 36.899193], [-80.758406, 36.898615], [-80.758193, 36.898379], [-80.757196, 36.897271], [-80.754205, 36.893946], [-80.753209, 36.892838], [-80.753027, 36.892635], [-80.752479, 36.892026], [-80.752297, 36.891824], [-80.752271, 36.891795], [-80.750942, 36.890322], [-80.749829, 36.889088], [-80.746844, 36.885843], [-80.746432, 36.885394], [-80.746427, 36.885389], [-80.746391, 36.88535], [-80.74638, 36.885338], [-80.746376, 36.885333], [-80.746321, 36.885273], [-80.746293, 36.885243], [-80.746168, 36.885107], [-80.746152, 36.88509], [-80.746038, 36.884966], [-80.745989, 36.884913], [-80.745474, 36.884353], [-80.745368, 36.884238], [-80.745122, 36.883971], [-80.74509, 36.883936], [-80.745082, 36.883928], [-80.745046, 36.883889], [-80.74503, 36.883872], [-80.744989, 36.883827], [-80.744985, 36.883822], [-80.744939, 36.883772], [-80.744913, 36.883743], [-80.744833, 36.883656], [-80.744806, 36.883627], [-80.744793, 36.883613], [-80.744759, 36.883577], [-80.744687, 36.883499], [-80.744614, 36.883421], [-80.744565, 36.883368], [-80.744118, 36.88289], [-80.742775, 36.881454], [-80.742327, 36.880975], [-80.741959, 36.880582], [-80.741493, 36.880084], [-80.741484, 36.880075], [-80.741478, 36.880068], [-80.741474, 36.880064], [-80.741341, 36.879921], [-80.740855, 36.879402], [-80.740486, 36.879008], [-80.741889, 36.87859], [-80.744222, 36.877895], [-80.744238, 36.87789], [-80.746157, 36.877318], [-80.747212, 36.876942], [-80.74981, 36.876016], [-80.753074, 36.875125], [-80.753921, 36.874869], [-80.756231, 36.874177], [-80.757334, 36.873865], [-80.757804, 36.873734], [-80.760401, 36.873007], [-80.760451, 36.872993], [-80.761528, 36.872692], [-80.763468, 36.87215], [-80.763535, 36.872131], [-80.763885, 36.872033], [-80.76972, 36.870402], [-80.770145, 36.870282], [-80.771542, 36.869891], [-80.774163, 36.869159], [-80.774273, 36.869128], [-80.774348, 36.869107], [-80.782349, 36.866869], [-80.784506, 36.866266], [-80.790156, 36.864686], [-80.792699, 36.863975], [-80.79295, 36.863905], [-80.793995, 36.863613], [-80.794343, 36.863516], [-80.794779, 36.863394], [-80.796024, 36.862507], [-80.79644, 36.86221], [-80.797771, 36.861283], [-80.799871, 36.860975], [-80.801673, 36.859678], [-80.802794, 36.858897], [-80.804185, 36.858622], [-80.806746, 36.857034], [-80.809477, 36.855447], [-80.810397, 36.854858], [-80.811608, 36.854447], [-80.812178, 36.853802], [-80.812738, 36.853239], [-80.813736, 36.853132], [-80.813919, 36.853108], [-80.814851, 36.853209], [-80.815568, 36.85272], [-80.816314, 36.852626], [-80.816514, 36.852601], [-80.816884, 36.852554], [-80.819747, 36.852191], [-80.82082, 36.852055], [-80.82123, 36.852291], [-80.822231, 36.852866], [-80.822294, 36.852864], [-80.824202, 36.852807], [-80.824562, 36.852195], [-80.825972, 36.851759], [-80.826475, 36.851783], [-80.827102, 36.851814], [-80.828213, 36.851781], [-80.829053, 36.851377], [-80.830053, 36.85144], [-80.831033, 36.85115], [-80.831713, 36.850666], [-80.832593, 36.850456], [-80.833223, 36.8499], [-80.833482, 36.849781], [-80.834079, 36.849507], [-80.836494, 36.849549], [-80.837294, 36.849474], [-80.838214, 36.849392], [-80.838664, 36.849486], [-80.840345, 36.849243], [-80.840895, 36.848784], [-80.841995, 36.84839], [-80.843366, 36.848132], [-80.843596, 36.847845], [-80.843894, 36.847318], [-80.845005, 36.847002], [-80.846217, 36.84655], [-80.849095, 36.846942], [-80.849685, 36.847109], [-80.849966, 36.84763], [-80.850745, 36.848255], [-80.851747, 36.848907], [-80.852534, 36.849076], [-80.856258, 36.848247], [-80.856425, 36.848203], [-80.859586, 36.847499], [-80.859898, 36.84743], [-80.859986, 36.84741], [-80.860196, 36.847363], [-80.860437, 36.847307], [-80.870696, 36.845018], [-80.872822, 36.844543], [-80.874075, 36.844251], [-80.874773, 36.844089], [-80.876329, 36.843811], [-80.876445, 36.84379], [-80.878002, 36.843469], [-80.878011, 36.843467], [-80.878457, 36.843375], [-80.879015, 36.843259], [-80.879793, 36.843099], [-80.880064, 36.843043], [-80.882098, 36.842624], [-80.882691, 36.84249], [-80.882924, 36.842436], [-80.883589, 36.84228], [-80.884115, 36.842158], [-80.884187, 36.842141], [-80.884318, 36.842111], [-80.884386, 36.842095], [-80.885911, 36.841739], [-80.886234, 36.841666], [-80.887035, 36.841485], [-80.89286, 36.84017], [-80.893399, 36.840049], [-80.895378, 36.839599], [-80.895455, 36.839581], [-80.901197, 36.838274], [-80.907159, 36.836917], [-80.907333, 36.836878], [-80.90748, 36.836845], [-80.907506, 36.836839], [-80.911049, 36.836044], [-80.911883, 36.835857], [-80.919045, 36.834252], [-80.919615, 36.834125], [-80.919667, 36.834113], [-80.91972, 36.834101], [-80.920894, 36.833837], [-80.925107, 36.832897], [-80.926925, 36.83251], [-80.932295, 36.831364], [-80.937863, 36.830176], [-80.944032, 36.82886], [-80.947352, 36.828152], [-80.947855, 36.828043], [-80.94811, 36.827989], [-80.948365, 36.827936], [-80.94841, 36.827928], [-80.948486, 36.827912], [-80.94891, 36.827814], [-80.951229, 36.827324], [-80.951637, 36.827234], [-80.951783, 36.827202], [-80.95371, 36.826796], [-80.957972, 36.825921], [-80.958716, 36.825745], [-80.960235, 36.82537], [-80.960942, 36.825191], [-80.961307, 36.825098], [-80.962861, 36.824708], [-80.963856, 36.824459], [-80.963996, 36.824428], [-80.972877, 36.822445], [-80.97309, 36.822397], [-80.990982, 36.818435], [-80.999807, 36.81648], [-81.015825, 36.8128], [-81.015971, 36.812766], [-81.016042, 36.81275], [-81.022272, 36.81132], [-81.024409, 36.810829], [-81.025609, 36.812329], [-81.025609, 36.812429], [-81.025709, 36.812629], [-81.026609, 36.813529], [-81.027009, 36.813829], [-81.027409, 36.813929], [-81.027909, 36.814129], [-81.028309, 36.814429], [-81.028509, 36.814429], [-81.028909, 36.814529], [-81.029509, 36.814629], [-81.030309, 36.814529], [-81.030909, 36.814229], [-81.03121, 36.813829], [-81.03181, 36.813329], [-81.03261, 36.812829], [-81.03311, 36.812429], [-81.03371, 36.812029], [-81.034059, 36.81161], [-81.03421, 36.811429], [-81.03441, 36.811129], [-81.03461, 36.811029], [-81.03491, 36.810929], [-81.034992, 36.81088], [-81.03541, 36.810629], [-81.035648, 36.81045], [-81.03581, 36.810329], [-81.03621, 36.810329], [-81.036233, 36.810325], [-81.03681, 36.810229], [-81.03741, 36.809929], [-81.03771, 36.809829], [-81.03821, 36.809629], [-81.03881, 36.809229], [-81.03921, 36.808929], [-81.03961, 36.808429], [-81.03981, 36.808129], [-81.039879, 36.808043], [-81.04021, 36.807629], [-81.04041, 36.807529], [-81.04081, 36.807129], [-81.04101, 36.807029], [-81.04131, 36.806829], [-81.04161, 36.806729], [-81.04171, 36.806729], [-81.04201, 36.806629], [-81.04211, 36.806529], [-81.042409, 36.806429], [-81.04271, 36.806329], [-81.04321, 36.806229], [-81.04383, 36.805875], [-81.04391, 36.805829], [-81.043948, 36.805807], [-81.04461, 36.805429], [-81.04531, 36.805029], [-81.045633, 36.804867], [-81.04591, 36.804729], [-81.04671, 36.804729], [-81.047511, 36.804929], [-81.048211, 36.805329], [-81.048911, 36.805529], [-81.049411, 36.805429], [-81.049711, 36.805229], [-81.050311, 36.805029], [-81.052711, 36.803729], [-81.053011, 36.803629], [-81.053511, 36.803429], [-81.054411, 36.803229], [-81.055111, 36.803029], [-81.055611, 36.802829], [-81.056611, 36.802829], [-81.056811, 36.802329], [-81.056811, 36.802129], [-81.056411, 36.801529], [-81.056211, 36.801129], [-81.056211, 36.800629], [-81.057411, 36.799429], [-81.057711, 36.799029], [-81.057911, 36.798629], [-81.058111, 36.798129], [-81.058311, 36.797829], [-81.058511, 36.797629], [-81.059111, 36.797529], [-81.060311, 36.797429], [-81.061311, 36.797329], [-81.061711, 36.797329], [-81.062711, 36.797229], [-81.062858, 36.797174], [-81.063512, 36.796929], [-81.064112, 36.796729], [-81.064912, 36.796529], [-81.065512, 36.796429], [-81.066412, 36.796329], [-81.067412, 36.795729], [-81.067712, 36.795529], [-81.068112, 36.795229], [-81.068812, 36.795029], [-81.068853, 36.795013], [-81.069312, 36.794829], [-81.069712, 36.794429], [-81.069912, 36.794129], [-81.070312, 36.793329], [-81.070412, 36.793029], [-81.070712, 36.792629], [-81.071512, 36.791829], [-81.072112, 36.791029], [-81.072312, 36.790829], [-81.072812, 36.790629], [-81.073144, 36.790582], [-81.073512, 36.790529], [-81.073812, 36.790529], [-81.07444, 36.790617], [-81.074512, 36.790629], [-81.075212, 36.790529], [-81.076712, 36.790029], [-81.077512, 36.789729], [-81.078212, 36.789729], [-81.078913, 36.789829], [-81.079513, 36.790029], [-81.080013, 36.790129], [-81.080613, 36.790229], [-81.080913, 36.790129], [-81.081413, 36.789929], [-81.081913, 36.789529], [-81.083313, 36.788729], [-81.083413, 36.788629], [-81.083513, 36.788429], [-81.083813, 36.788229], [-81.08418, 36.788082], [-81.084313, 36.788029], [-81.084637, 36.787936], [-81.085013, 36.787829], [-81.085547, 36.787753], [-81.085713, 36.787729], [-81.086035, 36.787665], [-81.086213, 36.787629], [-81.086513, 36.787529], [-81.086613, 36.787229], [-81.086413, 36.786729], [-81.085913, 36.786529], [-81.085513, 36.786329], [-81.084813, 36.786229], [-81.084413, 36.786029], [-81.084113, 36.785629], [-81.084013, 36.785229], [-81.084113, 36.785029], [-81.084613, 36.784729], [-81.085113, 36.784629], [-81.086013, 36.784529], [-81.086713, 36.784429], [-81.087013, 36.784329], [-81.087313, 36.784029], [-81.087513, 36.783729], [-81.087813, 36.783029], [-81.087813, 36.782629], [-81.087713, 36.782129], [-81.087613, 36.781429], [-81.087313, 36.781029], [-81.086913, 36.780429], [-81.086413, 36.779929], [-81.085513, 36.779529], [-81.085113, 36.779129], [-81.084913, 36.778629], [-81.084813, 36.778229], [-81.085013, 36.777829], [-81.085213, 36.777529], [-81.085713, 36.776929], [-81.085793, 36.776595], [-81.085813, 36.77653], [-81.086013, 36.77593], [-81.086413, 36.77533], [-81.086613, 36.77473], [-81.086513, 36.77443], [-81.086513, 36.77393], [-81.086613, 36.77363], [-81.086813, 36.77313], [-81.087213, 36.77263], [-81.088213, 36.77163], [-81.088513, 36.77113], [-81.088613, 36.77073], [-81.088413, 36.76993], [-81.088313, 36.76933], [-81.088113, 36.76873], [-81.088113, 36.76813], [-81.088513, 36.767429], [-81.088814, 36.76733], [-81.089179, 36.767237], [-81.089213, 36.767229], [-81.090013, 36.767229], [-81.090713, 36.767329], [-81.091413, 36.767629], [-81.092013, 36.767729], [-81.093913, 36.767529], [-81.094103, 36.767532], [-81.094413, 36.767529], [-81.094913, 36.767529], [-81.095414, 36.767629], [-81.095714, 36.767829], [-81.095814, 36.768029], [-81.096014, 36.768329], [-81.096314, 36.768529], [-81.096714, 36.768729], [-81.097414, 36.768929], [-81.098114, 36.768929], [-81.098514, 36.769029], [-81.099014, 36.768929], [-81.099503, 36.768685], [-81.099614, 36.768629], [-81.100814, 36.768029], [-81.101514, 36.767829], [-81.102414, 36.767629], [-81.103314, 36.767529], [-81.104014, 36.767429], [-81.104614, 36.767229], [-81.105114, 36.767429], [-81.105814, 36.767529], [-81.107614, 36.767529], [-81.108314, 36.767429], [-81.109214, 36.767629], [-81.109814, 36.767729], [-81.110214, 36.767829], [-81.111515, 36.767829], [-81.112115, 36.767729], [-81.112615, 36.767729], [-81.113115, 36.767829], [-81.113815, 36.767929], [-81.114715, 36.768029], [-81.115215, 36.768029], [-81.115515, 36.767929], [-81.116015, 36.767729], [-81.116415, 36.767429], [-81.117015, 36.767129], [-81.117615, 36.766929], [-81.118015, 36.766829], [-81.118415, 36.766829], [-81.118415, 36.766729], [-81.118815, 36.766729], [-81.119315, 36.766629], [-81.119915, 36.766429], [-81.120315, 36.766429], [-81.120615, 36.766329], [-81.122315, 36.766329], [-81.122615, 36.766229], [-81.123215, 36.766229], [-81.123615, 36.766329], [-81.123715, 36.766429], [-81.124815, 36.766429], [-81.124915, 36.766529], [-81.125015, 36.766529], [-81.125115, 36.766629], [-81.125215, 36.766629], [-81.125515, 36.766729], [-81.126116, 36.766729], [-81.126316, 36.766629], [-81.126716, 36.766529], [-81.127016, 36.766429], [-81.127216, 36.766329], [-81.127816, 36.766329], [-81.127916, 36.766429], [-81.128316, 36.766529], [-81.129016, 36.766829], [-81.129567, 36.767036], [-81.129816, 36.767129], [-81.130052, 36.76723], [-81.130222, 36.767303], [-81.130297, 36.767335], [-81.13042, 36.767388], [-81.130516, 36.767429], [-81.131016, 36.767429], [-81.131516, 36.767329], [-81.131616, 36.767229], [-81.131816, 36.766929], [-81.132116, 36.766429], [-81.132216, 36.766029], [-81.132216, 36.764729], [-81.132383, 36.764506], [-81.132516, 36.764329], [-81.132816, 36.764029], [-81.1329, 36.763946], [-81.133116, 36.763729], [-81.133316, 36.763629], [-81.133816, 36.763429], [-81.134616, 36.763129], [-81.135016, 36.763129], [-81.135616, 36.763029], [-81.136716, 36.763029], [-81.137216, 36.763129], [-81.137716, 36.763129], [-81.138216, 36.763329], [-81.138616, 36.763429], [-81.138916, 36.763629], [-81.139516, 36.763929], [-81.139774, 36.764121], [-81.139916, 36.764228], [-81.140316, 36.764428], [-81.140716, 36.764828], [-81.141017, 36.765028], [-81.141417, 36.765228], [-81.141817, 36.765328], [-81.142217, 36.765328], [-81.142617, 36.765228], [-81.143617, 36.765228], [-81.143917, 36.765328], [-81.145517, 36.765328], [-81.145717, 36.765428], [-81.145817, 36.765428], [-81.146117, 36.765528], [-81.146317, 36.765528], [-81.147017, 36.765328], [-81.147217, 36.765328], [-81.147817, 36.765228], [-81.148217, 36.765328], [-81.148317, 36.765428], [-81.148517, 36.765528], [-81.149017, 36.765528], [-81.149217, 36.765728], [-81.149617, 36.765928], [-81.149817, 36.766128], [-81.150117, 36.766528], [-81.150217, 36.766628], [-81.150239, 36.766657], [-81.150517, 36.767028], [-81.150817, 36.767328], [-81.151017, 36.767428], [-81.151117, 36.767528], [-81.151417, 36.767628], [-81.151617, 36.767728], [-81.152117, 36.767928], [-81.152217, 36.768028], [-81.152617, 36.768128], [-81.153217, 36.768428], [-81.153317, 36.768528], [-81.153917, 36.768828], [-81.154117, 36.769028], [-81.154917, 36.769028], [-81.155317, 36.768928], [-81.155817, 36.768828], [-81.156039, 36.768717], [-81.156282, 36.768596], [-81.156818, 36.768328], [-81.157118, 36.768228], [-81.157218, 36.768128], [-81.157618, 36.767928], [-81.158118, 36.767928], [-81.158618, 36.767828], [-81.158718, 36.767628], [-81.159718, 36.767628], [-81.160318, 36.767428], [-81.160918, 36.767128], [-81.160918, 36.767028], [-81.161118, 36.766928], [-81.161318, 36.766728], [-81.161618, 36.766528], [-81.162018, 36.766228], [-81.162518, 36.765928], [-81.162718, 36.765928], [-81.163118, 36.765728], [-81.163318, 36.765528], [-81.163518, 36.765528], [-81.163718, 36.765428], [-81.163718, 36.765328], [-81.163818, 36.765228], [-81.163818, 36.765028], [-81.163718, 36.764828], [-81.163718, 36.764628], [-81.163618, 36.764428], [-81.163618, 36.763928], [-81.163518, 36.763728], [-81.163518, 36.763628], [-81.163418, 36.763328], [-81.163418, 36.763228], [-81.163818, 36.762928], [-81.164018, 36.762828], [-81.164518, 36.762628], [-81.165118, 36.762528], [-81.168318, 36.762528], [-81.168918, 36.762628], [-81.169418, 36.762628], [-81.169718, 36.762728], [-81.169818, 36.762728], [-81.170418, 36.762828], [-81.171018, 36.762828], [-81.171619, 36.762928], [-81.172051, 36.76305], [-81.172315, 36.763128], [-81.172827, 36.763297], [-81.172919, 36.763328], [-81.173119, 36.763328], [-81.173519, 36.763428], [-81.173819, 36.763528], [-81.174119, 36.763728], [-81.174519, 36.763928], [-81.174619, 36.763928], [-81.174819, 36.764128], [-81.175119, 36.764228], [-81.175219, 36.764328], [-81.175319, 36.764328], [-81.175419, 36.764428], [-81.176219, 36.764428], [-81.176819, 36.764328], [-81.177019, 36.764228], [-81.177619, 36.764128], [-81.179419, 36.764128], [-81.180019, 36.764228], [-81.180419, 36.764328], [-81.181019, 36.764328], [-81.181419, 36.764428], [-81.181919, 36.764428], [-81.182219, 36.764528], [-81.182619, 36.764528], [-81.183219, 36.764628], [-81.183519, 36.764728], [-81.183819, 36.764628], [-81.184319, 36.764628], [-81.185519, 36.764028], [-81.186119, 36.763428], [-81.186384, 36.763082], [-81.186419, 36.763028], [-81.186519, 36.762828], [-81.186619, 36.762728], [-81.18682, 36.762528], [-81.18682, 36.762028], [-81.186619, 36.761728], [-81.186519, 36.761428], [-81.186319, 36.761128], [-81.186119, 36.760728], [-81.185919, 36.760228], [-81.185819, 36.759928], [-81.185819, 36.759228], [-81.185919, 36.758828], [-81.185919, 36.758728], [-81.186019, 36.758428], [-81.18782, 36.758428], [-81.18842, 36.758328], [-81.18962, 36.758228], [-81.18982, 36.758328], [-81.190219, 36.758327], [-81.19038, 36.758408], [-81.190419, 36.758428], [-81.19052, 36.758428], [-81.190559, 36.758401], [-81.19082, 36.758228], [-81.19102, 36.758028], [-81.19112, 36.758028], [-81.191365, 36.757945], [-81.19202, 36.757728], [-81.19222, 36.757728], [-81.19302, 36.757628], [-81.19372, 36.757728], [-81.19412, 36.757828], [-81.19422, 36.757928], [-81.19482, 36.758228], [-81.19502, 36.758428], [-81.19522, 36.758428], [-81.19542, 36.758528], [-81.19592, 36.758528], [-81.19632, 36.758628], [-81.19662, 36.758828], [-81.19722, 36.759028], [-81.19762, 36.759128], [-81.19812, 36.759328], [-81.19852, 36.759328], [-81.19892, 36.759428], [-81.19952, 36.759528], [-81.19962, 36.759628], [-81.20002, 36.759628], [-81.20012, 36.759528], [-81.20042, 36.759528], [-81.20062, 36.759428], [-81.20112, 36.759428], [-81.20162, 36.759528], [-81.20182, 36.759628], [-81.20192, 36.759528], [-81.202321, 36.759528], [-81.202726, 36.759416], [-81.202876, 36.75948], [-81.203016, 36.75954], [-81.203399, 36.759703], [-81.203619, 36.75974], [-81.203634, 36.759743], [-81.204082, 36.759818], [-81.204566, 36.759726], [-81.206418, 36.759132], [-81.206435, 36.759127], [-81.206921, 36.759127], [-81.207292, 36.759074], [-81.207473, 36.759048], [-81.20779, 36.759053], [-81.210279, 36.7591], [-81.211448, 36.759102], [-81.212075, 36.759263], [-81.213015, 36.759836], [-81.213957, 36.76009], [-81.214469, 36.760181], [-81.214492, 36.760177], [-81.215238, 36.760127], [-81.215621, 36.760127], [-81.215634, 36.760124], [-81.216421, 36.759927], [-81.218722, 36.759927], [-81.219322, 36.760027], [-81.219622, 36.760127], [-81.220022, 36.760227], [-81.221022, 36.760627], [-81.221365, 36.760764], [-81.221525, 36.760828], [-81.221826, 36.760911], [-81.222422, 36.761227], [-81.223322, 36.761527], [-81.223522, 36.761727], [-81.223622, 36.761927], [-81.223622, 36.762327], [-81.223718, 36.762713], [-81.223722, 36.763027], [-81.223722, 36.763727], [-81.223728, 36.763844], [-81.224022, 36.764327], [-81.224622, 36.764527], [-81.224822, 36.764627], [-81.225235, 36.76473], [-81.225228, 36.764758], [-81.225399, 36.764941], [-81.226345, 36.76491], [-81.22685, 36.764895], [-81.227109, 36.76483], [-81.227461, 36.764742], [-81.22777, 36.764664], [-81.228328, 36.764554], [-81.229138, 36.764458], [-81.230424, 36.764156], [-81.231109, 36.763787], [-81.231511, 36.763147], [-81.231623, 36.762613], [-81.231798, 36.762241], [-81.232104, 36.76194], [-81.232701, 36.761604], [-81.233059, 36.761448], [-81.233256, 36.761394], [-81.233544, 36.761419], [-81.23479, 36.761526], [-81.235241, 36.761501], [-81.235387, 36.761446], [-81.235699, 36.761327], [-81.235923, 36.761327], [-81.236523, 36.761427], [-81.236923, 36.761427], [-81.237305, 36.761488], [-81.23737, 36.761482], [-81.237526, 36.761627], [-81.238925, 36.761627], [-81.239424, 36.761427], [-81.239724, 36.761427], [-81.239824, 36.761327], [-81.240223, 36.761027], [-81.240423, 36.760927], [-81.240723, 36.760627], [-81.240777, 36.760467], [-81.240823, 36.760327], [-81.240923, 36.760227], [-81.241023, 36.760027], [-81.241123, 36.759927], [-81.241223, 36.759927], [-81.241423, 36.759827], [-81.242623, 36.759827], [-81.242923, 36.759927], [-81.243023, 36.759927], [-81.243623, 36.760527], [-81.243782, 36.760606], [-81.24417, 36.760766], [-81.244323, 36.760827], [-81.244624, 36.760927], [-81.244821, 36.761026], [-81.245323, 36.761227], [-81.245523, 36.761327], [-81.245823, 36.761427], [-81.246423, 36.761827], [-81.246523, 36.762027], [-81.246574, 36.762078], [-81.246722, 36.762227], [-81.246809, 36.762357], [-81.246899, 36.762491], [-81.246923, 36.762527], [-81.247223, 36.762827], [-81.247624, 36.763027], [-81.247624, 36.763127], [-81.247824, 36.763427], [-81.248324, 36.763827], [-81.248624, 36.764027], [-81.248817, 36.764021], [-81.248927, 36.764012], [-81.249206, 36.763929], [-81.249386, 36.763879], [-81.249824, 36.763627], [-81.250324, 36.763627], [-81.250624, 36.763827], [-81.251424, 36.764227], [-81.251624, 36.764227], [-81.251824, 36.764327], [-81.252824, 36.764327], [-81.253324, 36.764127], [-81.253524, 36.764027], [-81.254024, 36.763927], [-81.254624, 36.763927], [-81.255124, 36.763827], [-81.255824, 36.763727], [-81.256224, 36.763627], [-81.256624, 36.763427], [-81.257424, 36.763227], [-81.257624, 36.763127], [-81.258524, 36.763127], [-81.259024, 36.763227], [-81.259524, 36.763227], [-81.260124, 36.763427], [-81.260524, 36.763427], [-81.260624, 36.763327], [-81.260824, 36.763327], [-81.260924, 36.763227], [-81.261524, 36.763227], [-81.261623, 36.763127], [-81.263274, 36.767656], [-81.266408, 36.77626], [-81.271011, 36.788893], [-81.272225, 36.792226], [-81.273354, 36.794484], [-81.27346, 36.794697], [-81.274854, 36.797485], [-81.279949, 36.807674], [-81.281671, 36.811117], [-81.281803, 36.811382], [-81.281819, 36.811414], [-81.283127, 36.814029], [-81.284355, 36.816484], [-81.284726, 36.817224], [-81.285607, 36.818985], [-81.285633, 36.819038], [-81.286282, 36.820337], [-81.286413, 36.820599], [-81.287999, 36.823772], [-81.288778, 36.82533], [-81.288882, 36.825537], [-81.289397, 36.826566], [-81.289966, 36.827716], [-81.290008, 36.827748], [-81.290156, 36.82782], [-81.290166, 36.827825], [-81.2902, 36.827858], [-81.2902, 36.827984], [-81.290159, 36.828089], [-81.290158, 36.828096], [-81.290353, 36.828475], [-81.290405, 36.82857], [-81.290835, 36.829353], [-81.292198, 36.831855], [-81.292212, 36.83188], [-81.292245, 36.831941], [-81.292269, 36.831985], [-81.292411, 36.832245], [-81.298349, 36.843117], [-81.298947, 36.844212], [-81.298997, 36.844303], [-81.299067, 36.844432], [-81.299409, 36.845057], [-81.301862, 36.849549], [-81.307262, 36.859439], [-81.308269, 36.861282], [-81.310039, 36.864524], [-81.311032, 36.866342], [-81.311408, 36.86703], [-81.312406, 36.868858], [-81.313017, 36.869977], [-81.313214, 36.870337], [-81.313394, 36.870666], [-81.313639, 36.871115], [-81.315828, 36.875125], [-81.316463, 36.876546], [-81.320757, 36.886159], [-81.322607, 36.890299], [-81.322993, 36.891163], [-81.32303, 36.891247], [-81.323087, 36.891374], [-81.32319, 36.891605], [-81.326594, 36.899223], [-81.326708, 36.89948], [-81.326732, 36.899534], [-81.327494, 36.900299], [-81.327646, 36.900452], [-81.327879, 36.900687], [-81.334918, 36.907776], [-81.337836, 36.910715], [-81.338566, 36.91145], [-81.338596, 36.91148], [-81.339272, 36.912161], [-81.343131, 36.916048], [-81.343819, 36.91649], [-81.344054, 36.916641], [-81.344203, 36.916792], [-81.344346, 36.916915], [-81.344488, 36.91703], [-81.344676, 36.917232], [-81.344733, 36.917328], [-81.345804, 36.918429], [-81.345949, 36.918577], [-81.346853, 36.919489], [-81.36129, 36.934179], [-81.36226, 36.935174], [-81.364169, 36.937135], [-81.364242, 36.93721], [-81.369286, 36.94239], [-81.371491, 36.944611], [-81.371667, 36.944788], [-81.374831, 36.947974], [-81.377243, 36.950309], [-81.378825, 36.951839], [-81.37943, 36.952424] ], [ [-78.386685, 38.83016], [-78.386457, 38.830335], [-78.385811, 38.830956], [-78.385238, 38.831738], [-78.384715, 38.832205], [-78.384131, 38.832512], [-78.383865, 38.833019], [-78.383415, 38.83368], [-78.382933, 38.834196], [-78.382369, 38.834663], [-78.381806, 38.835389], [-78.381224, 38.836445], [-78.380506, 38.836993], [-78.379912, 38.83759], [-78.37903, 38.838324], [-78.378498, 38.838969], [-78.37773, 38.840089], [-78.377238, 38.840702], [-78.376695, 38.841065], [-78.376182, 38.841387], [-78.375434, 38.842202], [-78.375097, 38.842806], [-78.37473, 38.843145], [-78.37401, 38.84458], [-78.373088, 38.84516], [-78.372187, 38.84574], [-78.370447, 38.847358], [-78.369537, 38.848494], [-78.368924, 38.84938], [-78.368863, 38.849613], [-78.367172, 38.850628], [-78.366774, 38.851337], [-78.366089, 38.852198], [-78.364984, 38.85335], [-78.364114, 38.854373], [-78.363387, 38.854791], [-78.362332, 38.855661], [-78.362087, 38.856321], [-78.36178, 38.856668], [-78.361463, 38.857022], [-78.361033, 38.857288], [-78.3605, 38.857594], [-78.360039, 38.857779], [-78.359483, 38.857978], [-78.359311, 38.858222], [-78.358984, 38.858681], [-78.358585, 38.859374], [-78.357366, 38.860445], [-78.355847, 38.861584], [-78.353654, 38.863369], [-78.352776, 38.863941], [-78.351255, 38.864765], [-78.35107, 38.864923], [-78.350492, 38.865526], [-78.349796, 38.866259], [-78.349478, 38.8665], [-78.347509, 38.867193], [-78.346617, 38.86758], [-78.34552, 38.868272], [-78.345193, 38.868762], [-78.344938, 38.869471], [-78.34416, 38.870139], [-78.343453, 38.870831], [-78.342644, 38.871612], [-78.34204, 38.872192], [-78.341045, 38.872691], [-78.340831, 38.873142], [-78.340432, 38.873867], [-78.339798, 38.874712], [-78.339274, 38.87512], [-78.339039, 38.875393], [-78.338732, 38.875572], [-78.338569, 38.875726], [-78.338468, 38.875888], [-78.33842, 38.876259], [-78.338349, 38.87642], [-78.337222, 38.878015], [-78.336713, 38.878517], [-78.336355, 38.878785], [-78.336048, 38.878956], [-78.335885, 38.879167], [-78.33543, 38.880032], [-78.335116, 38.880557], [-78.334637, 38.881076], [-78.334373, 38.881448], [-78.334252, 38.881683], [-78.334144, 38.882167], [-78.334063, 38.882329], [-78.333941, 38.882466], [-78.333725, 38.882564], [-78.333627, 38.883032], [-78.333497, 38.88346], [-78.333135, 38.884373], [-78.332851, 38.884737], [-78.332596, 38.88498], [-78.332505, 38.885158], [-78.332438, 38.885691], [-78.332218, 38.886417], [-78.331894, 38.886991], [-78.331815, 38.88729], [-78.331776, 38.887548], [-78.332051, 38.88836], [-78.332313, 38.888794], [-78.332396, 38.888898], [-78.33362, 38.888803], [-78.33397, 38.888712], [-78.334885, 38.888691], [-78.335286, 38.88864], [-78.335851, 38.888475], [-78.338622, 38.888653], [-78.338424, 38.890596], [-78.338041, 38.891445], [-78.337971, 38.89163], [-78.337471, 38.892052], [-78.336738, 38.892992], [-78.336444, 38.893445], [-78.336262, 38.8938], [-78.33613, 38.893962], [-78.335874, 38.894085], [-78.335413, 38.894305], [-78.334872, 38.894759], [-78.334076, 38.89557], [-78.333904, 38.895804], [-78.333713, 38.896289], [-78.333509, 38.896564], [-78.333204, 38.896897], [-78.332642, 38.897416], [-78.332521, 38.897618], [-78.332487, 38.898351], [-78.332386, 38.898553], [-78.332233, 38.898724], [-78.331486, 38.899251], [-78.331007, 38.899713], [-78.330916, 38.899875], [-78.330848, 38.90031], [-78.330737, 38.900553], [-78.33039, 38.900941], [-78.330144, 38.901064], [-78.329899, 38.901186], [-78.329512, 38.901648], [-78.329266, 38.901794], [-78.328804, 38.901982], [-78.328654, 38.902442], [-78.327996, 38.903607], [-78.327803, 38.903898], [-78.327609, 38.904068], [-78.327385, 38.904287], [-78.327284, 38.904489], [-78.327056, 38.905482], [-78.326856, 38.906031], [-78.326562, 38.90654], [-78.326226, 38.906937], [-78.326174, 38.907058], [-78.326156, 38.907332], [-78.325989, 38.908123], [-78.32592, 38.908502], [-78.325851, 38.908769], [-78.324731, 38.911185], [-78.324376, 38.911775], [-78.324144, 38.912341], [-78.324116, 38.912591], [-78.324058, 38.913026], [-78.324009, 38.913252], [-78.323696, 38.91389], [-78.323626, 38.914181], [-78.323293, 38.914836], [-78.323039, 38.915296], [-78.321812, 38.917326], [-78.321672, 38.917714], [-78.321523, 38.918303], [-78.321319, 38.91853], [-78.320972, 38.91883], [-78.320419, 38.91922], [-78.319804, 38.919538], [-78.318881, 38.919873], [-78.318253, 38.920083], [-78.317186, 38.920383], [-78.316776, 38.92057], [-78.316336, 38.920847], [-78.315895, 38.921107], [-78.315198, 38.921417], [-78.31486, 38.92158], [-78.314215, 38.922035], [-78.313776, 38.922392], [-78.31348, 38.922724], [-78.313318, 38.923024], [-78.313144, 38.923178], [-78.312816, 38.923333], [-78.311883, 38.923757], [-78.311187, 38.924188], [-78.310849, 38.924423], [-78.310278, 38.925007], [-78.310125, 38.925233], [-78.309963, 38.925573], [-78.309729, 38.925848], [-78.309392, 38.926148], [-78.309085, 38.926384], [-78.308788, 38.926514], [-78.308625, 38.926725], [-78.308505, 38.92708], [-78.308476, 38.92737], [-78.308567, 38.928272], [-78.30856, 38.928651], [-78.308481, 38.928958], [-78.308391, 38.929256], [-78.307963, 38.929838], [-78.307842, 38.930081], [-78.307743, 38.930468], [-78.307734, 38.930613], [-78.307318, 38.931308], [-78.307177, 38.931648], [-78.307148, 38.931857], [-78.307212, 38.932179], [-78.307214, 38.932365], [-78.307144, 38.932599], [-78.306757, 38.933036], [-78.306413, 38.933699], [-78.306312, 38.933941], [-78.306037, 38.934297], [-78.305823, 38.934605], [-78.305774, 38.934823], [-78.305721, 38.935774], [-78.305661, 38.935968], [-78.305591, 38.936161], [-78.305286, 38.936679], [-78.305249, 38.936728], [-78.305062, 38.936986], [-78.30491, 38.937261], [-78.304374, 38.938336], [-78.304303, 38.938457], [-78.303935, 38.938774], [-78.303304, 38.939535], [-78.302255, 38.940878], [-78.30195, 38.941347], [-78.301412, 38.942269], [-78.301179, 38.942673], [-78.300547, 38.943538], [-78.303295, 38.945982], [-78.303362, 38.946041], [-78.303426, 38.946098], [-78.303559, 38.946216], [-78.303766, 38.9464], [-78.30454, 38.947089], [-78.309274, 38.953051], [-78.310647, 38.952522], [-78.311268, 38.952273], [-78.311987, 38.951851], [-78.312436, 38.951805], [-78.312745, 38.951681], [-78.312852, 38.951639], [-78.313155, 38.951517], [-78.313402, 38.95168], [-78.313758, 38.951774], [-78.314092, 38.951979], [-78.3144, 38.952236], [-78.314759, 38.952467], [-78.315093, 38.95275], [-78.315401, 38.952955], [-78.315786, 38.953109], [-78.316197, 38.953314], [-78.316428, 38.953289], [-78.316633, 38.953289], [-78.316916, 38.953314], [-78.317173, 38.953314], [-78.317327, 38.953391], [-78.317506, 38.953494], [-78.317814, 38.953751], [-78.318071, 38.954033], [-78.318377, 38.954358], [-78.318687, 38.95456], [-78.319138, 38.954839], [-78.319674, 38.955161], [-78.320097, 38.955309], [-78.320383, 38.955294], [-78.320482, 38.955258], [-78.320848, 38.955305], [-78.321276, 38.95548], [-78.321871, 38.955734], [-78.323121, 38.956269], [-78.323563, 38.956432], [-78.326594, 38.955651], [-78.326839, 38.95742], [-78.327929, 38.96325], [-78.328492, 38.964281], [-78.328598, 38.96449], [-78.332855, 38.97089], [-78.33466, 38.973951], [-78.334943, 38.974204], [-78.335099, 38.974344], [-78.335297, 38.974518], [-78.335314, 38.974675], [-78.335686, 38.975091], [-78.335791, 38.975433], [-78.336079, 38.975983], [-78.336469, 38.976729], [-78.336666, 38.97693], [-78.336924, 38.977194], [-78.337015, 38.977207], [-78.337608, 38.977692], [-78.338872, 38.979109], [-78.338998, 38.979563], [-78.338745, 38.980398], [-78.338313, 38.980808], [-78.336898, 38.981548], [-78.336371, 38.981763], [-78.336216, 38.981813], [-78.335987, 38.98178], [-78.334882, 38.981839], [-78.334049, 38.981755], [-78.333737, 38.981674], [-78.333047, 38.981393], [-78.331387, 38.980428], [-78.331084, 38.980311], [-78.330861, 38.980061], [-78.330632, 38.980028], [-78.330346, 38.979842], [-78.329742, 38.97921], [-78.328649, 38.978254], [-78.327957, 38.977791], [-78.327771, 38.977583], [-78.32755, 38.977515], [-78.327142, 38.977114], [-78.326901, 38.976876], [-78.326764, 38.976857], [-78.326169, 38.97619], [-78.325948, 38.976122], [-78.32491, 38.975137], [-78.324772, 38.975117], [-78.323863, 38.974187], [-78.323789, 38.974104], [-78.323082, 38.973893], [-78.322002, 38.973846], [-78.321911, 38.973833], [-78.321421, 38.97409], [-78.320997, 38.974464], [-78.32071, 38.97544], [-78.320626, 38.975972], [-78.320366, 38.976262], [-78.31985, 38.976623], [-78.319237, 38.977188], [-78.318947, 38.977982], [-78.318984, 38.978604], [-78.318906, 38.97892], [-78.31898, 38.979003], [-78.318974, 38.97922], [-78.319598, 38.979964], [-78.319675, 38.980229], [-78.319574, 38.980832], [-78.319468, 38.981071], [-78.319196, 38.981213], [-78.31899, 38.981474], [-78.318448, 38.981941], [-78.317614, 38.982438], [-78.317018, 38.982933], [-78.316357, 38.98331], [-78.316614, 38.98342], [-78.316641, 38.983441], [-78.316892, 38.983641], [-78.318099, 38.984905], [-78.318422, 38.985133], [-78.318728, 38.985431], [-78.318969, 38.985611], [-78.319106, 38.985631], [-78.319218, 38.985756], [-78.319355, 38.985776], [-78.319678, 38.986004], [-78.320663, 38.986436], [-78.320737, 38.986519], [-78.321012, 38.986559], [-78.321252, 38.986739], [-78.321564, 38.98682], [-78.321676, 38.986945], [-78.32222, 38.987242], [-78.323281, 38.98852], [-78.324131, 38.989115], [-78.324317, 38.989323], [-78.324454, 38.989343], [-78.324806, 38.989648], [-78.325433, 38.989992], [-78.326286, 38.990188], [-78.326484, 38.990369], [-78.326589, 38.990304], [-78.326976, 38.990469], [-78.327526, 38.990548], [-78.328109, 38.990769], [-78.32823, 38.990901], [-78.328238, 38.99091], [-78.328579, 38.991281], [-78.32908, 38.991752], [-78.329104, 38.991787], [-78.32917, 38.991882], [-78.329264, 38.992017], [-78.329642, 38.992561], [-78.329861, 38.992877], [-78.32992, 38.992963], [-78.330026, 38.993305], [-78.329877, 38.993719], [-78.329605, 38.993861], [-78.328903, 38.994015], [-78.328513, 38.994249], [-78.32843, 38.994782], [-78.328895, 38.995303], [-78.330791, 38.996756], [-78.331681, 38.997574], [-78.332156, 38.998151], [-78.332331, 38.998212], [-78.332665, 38.998587], [-78.332794, 38.998642], [-78.333389, 38.999309], [-78.333495, 38.999651], [-78.333443, 39.000022], [-78.333404, 39.000255], [-78.333207, 39.000481], [-78.332145, 39.00108], [-78.33172, 39.00132], [-78.331419, 39.001385], [-78.330311, 39.001262], [-78.328933, 39.000882], [-78.327884, 39.000227], [-78.327827, 39.000192], [-78.327806, 39.000179], [-78.327797, 39.000173], [-78.327789, 39.000168], [-78.327703, 39.000115], [-78.327696, 39.00011], [-78.327556, 39.000023], [-78.327538, 38.999955], [-78.327272, 38.99988], [-78.326356, 38.999748], [-78.325488, 38.999805], [-78.324987, 38.999914], [-78.324882, 39.000023], [-78.324862, 39.000078], [-78.324786, 39.000127], [-78.324511, 39.000305], [-78.32447, 39.000331], [-78.324128, 39.000553], [-78.323257, 39.00159], [-78.32303, 39.00168], [-78.322987, 39.001914], [-78.322474, 39.002458], [-78.322242, 39.002824], [-78.32193, 39.00373], [-78.321927, 39.00374], [-78.321909, 39.003793], [-78.321696, 39.004117], [-78.321689, 39.004128], [-78.321605, 39.004257], [-78.321415, 39.00443], [-78.321373, 39.004469], [-78.320197, 39.005543], [-78.319309, 39.006069], [-78.318945, 39.006198], [-78.318883, 39.006202], [-78.31887, 39.006203], [-78.318269, 39.006246], [-78.317759, 39.00639], [-78.317477, 39.00642], [-78.317321, 39.006436], [-78.316803, 39.006616], [-78.316678, 39.006675], [-78.316669, 39.006684], [-78.31666, 39.006694], [-78.316629, 39.006698], [-78.315622, 39.007172], [-78.314943, 39.007619], [-78.314676, 39.00779], [-78.314415, 39.007958], [-78.314219, 39.007983], [-78.314199, 39.007985], [-78.314055, 39.007976], [-78.314032, 39.007975], [-78.313911, 39.007968], [-78.312583, 39.007892], [-78.312449, 39.007901], [-78.311731, 39.007949], [-78.311657, 39.007954], [-78.311419, 39.007969], [-78.310699, 39.008018], [-78.310126, 39.008055], [-78.308876, 39.008139], [-78.308092, 39.008192], [-78.302349, 39.008578], [-78.302259, 39.008584], [-78.302233, 39.008586], [-78.302113, 39.008594], [-78.299427, 39.008729], [-78.299354, 39.008733], [-78.298774, 39.008764], [-78.297005, 39.008888], [-78.295451, 39.008997], [-78.294959, 39.009032], [-78.294531, 39.009062], [-78.294328, 39.009077], [-78.289655, 39.009426], [-78.289411, 39.009443], [-78.286501, 39.009641], [-78.286175, 39.009663], [-78.281665, 39.009973], [-78.278663, 39.010132], [-78.278537, 39.01014], [-78.275254, 39.010366], [-78.273244, 39.010504], [-78.273083, 39.010515], [-78.270345, 39.010703], [-78.267525, 39.010896], [-78.267318, 39.01091], [-78.262702, 39.011227], [-78.255554, 39.011718], [-78.251994, 39.011964], [-78.251912, 39.01197], [-78.25183, 39.011975], [-78.251663, 39.011985], [-78.251655, 39.011985], [-78.251526, 39.011996], [-78.251449, 39.012002], [-78.251371, 39.012007], [-78.249726, 39.01212], [-78.24741, 39.012283], [-78.243816, 39.012535], [-78.241807, 39.012676], [-78.239415, 39.012842], [-78.23096, 39.013429], [-78.228561, 39.013597], [-78.228557, 39.013597], [-78.228524, 39.0136], [-78.228468, 39.013606], [-78.222743, 39.014002], [-78.222411, 39.014026], [-78.220957, 39.014127], [-78.220295, 39.014173], [-78.220152, 39.014183], [-78.219513, 39.014228], [-78.218992, 39.014264], [-78.217147, 39.014393], [-78.217072, 39.014398], [-78.217038, 39.014401], [-78.216903, 39.01441], [-78.213514, 39.014646], [-78.213392, 39.014654], [-78.21327, 39.014663], [-78.209401, 39.014933], [-78.209298, 39.01494], [-78.208951, 39.014965], [-78.208837, 39.014973], [-78.204241, 39.015322], [-78.204171, 39.015327], [-78.204112, 39.015332], [-78.200463, 39.015592], [-78.191993, 39.016196], [-78.191522, 39.016229], [-78.191261, 39.016248], [-78.186462, 39.016587], [-78.18621, 39.01659], [-78.185888, 39.016596], [-78.182323, 39.016845], [-78.18136, 39.016904], [-78.170649, 39.017556], [-78.169353, 39.017631], [-78.168815, 39.017664], [-78.168711, 39.017667], [-78.167852, 39.017691], [-78.167755, 39.017694], [-78.167659, 39.017696], [-78.167285, 39.017707], [-78.167208, 39.017711], [-78.165143, 39.01783], [-78.164475, 39.017869], [-78.16425, 39.017878], [-78.16417, 39.017881], [-78.163978, 39.017888], [-78.163113, 39.019492], [-78.163043, 39.019822], [-78.163017, 39.019945], [-78.162945, 39.020308], [-78.162653, 39.021376], [-78.162467, 39.021708], [-78.162378, 39.021868], [-78.161897, 39.022472], [-78.161835, 39.022554], [-78.16175, 39.022657], [-78.161712, 39.022704], [-78.15838, 39.026906], [-78.157764, 39.027673], [-78.157636, 39.027833], [-78.157521, 39.027978], [-78.157044, 39.028579], [-78.156865, 39.028736], [-78.15657, 39.028995], [-78.156553, 39.029011], [-78.156426, 39.029126], [-78.156302, 39.029234], [-78.156019, 39.02948], [-78.155572, 39.029873], [-78.155489, 39.029946], [-78.154717, 39.030626], [-78.153611, 39.031669], [-78.153186, 39.032725], [-78.153234, 39.033216], [-78.15327, 39.03359], [-78.153274, 39.033636], [-78.153297, 39.033866], [-78.153254, 39.034078], [-78.153218, 39.034252], [-78.152883, 39.034802], [-78.152797, 39.034942], [-78.15231, 39.035747], [-78.151984, 39.036285], [-78.151773, 39.036195], [-78.151497, 39.036078], [-78.14541, 39.033492], [-78.144689, 39.033185], [-78.134739, 39.028951], [-78.126122, 39.025298], [-78.124808, 39.024741], [-78.117764, 39.021667], [-78.11739, 39.021504], [-78.11731, 39.021469], [-78.116979, 39.02131], [-78.116896, 39.021275], [-78.114843, 39.020401], [-78.114713, 39.020346], [-78.114408, 39.020216], [-78.114337, 39.020186], [-78.114201, 39.020128], [-78.114149, 39.020106], [-78.114133, 39.020099], [-78.114115, 39.020091], [-78.114082, 39.020077], [-78.113923, 39.020009], [-78.11276, 39.019515], [-78.112726, 39.0195], [-78.112692, 39.019486], [-78.11267, 39.019476], [-78.112647, 39.019466], [-78.112628, 39.019458], [-78.112621, 39.019455], [-78.112596, 39.019445], [-78.111387, 39.01893], [-78.111315, 39.018899], [-78.109113, 39.017962], [-78.107364, 39.017217], [-78.106518, 39.016857], [-78.104426, 39.015952], [-78.102365, 39.01506], [-78.100377, 39.0142], [-78.100197, 39.014122], [-78.100093, 39.014077], [-78.10006, 39.014063], [-78.100053, 39.01406], [-78.100043, 39.014056], [-78.099994, 39.014035], [-78.099569, 39.013851], [-78.099066, 39.013633], [-78.097557, 39.01298], [-78.09711, 39.012777], [-78.097009, 39.012731], [-78.096886, 39.012676], [-78.094555, 39.013017], [-78.093691, 39.013143], [-78.093675, 39.013145], [-78.09314, 39.013223], [-78.093054, 39.013236], [-78.090657, 39.013587], [-78.087961, 39.013981], [-78.087231, 39.014088], [-78.084686, 39.0147], [-78.08411, 39.014839], [-78.083811, 39.014911], [-78.083712, 39.014935], [-78.083701, 39.014938], [-78.08349, 39.014989], [-78.083006, 39.015105], [-78.082994, 39.015108], [-78.0829, 39.01513], [-78.082672, 39.015185], [-78.082627, 39.015196], [-78.082472, 39.015233], [-78.082008, 39.015346], [-78.081678, 39.015426], [-78.081492, 39.015471], [-78.08129, 39.015503], [-78.080484, 39.015632], [-78.080449, 39.015638], [-78.080413, 39.015644], [-78.080363, 39.015652], [-78.080343, 39.015655], [-78.080299, 39.015662], [-78.079232, 39.015833], [-78.077322, 39.016139], [-78.075354, 39.016454], [-78.073565, 39.016741], [-78.071064, 39.017141], [-78.070279, 39.017267], [-78.070006, 39.017311], [-78.069955, 39.017319], [-78.069947, 39.01732], [-78.069353, 39.017415], [-78.068225, 39.017597], [-78.065528, 39.01801], [-78.065493, 39.018015], [-78.062968, 39.018401], [-78.060577, 39.018767], [-78.060231, 39.01882], [-78.059671, 39.018905], [-78.05954, 39.018926], [-78.05891, 39.019023], [-78.058815, 39.018958], [-78.058795, 39.018944], [-78.058763, 39.018922], [-78.058743, 39.018908], [-78.058721, 39.018893], [-78.058715, 39.018889], [-78.058677, 39.018864], [-78.058422, 39.018688], [-78.05837, 39.018653], [-78.058324, 39.018621], [-78.058281, 39.018592], [-78.058245, 39.018568], [-78.058059, 39.01844], [-78.057987, 39.018389], [-78.056873, 39.017596], [-78.056653, 39.017439], [-78.056389, 39.01726], [-78.056342, 39.017228], [-78.056138, 39.017089], [-78.052136, 39.01437], [-78.051994, 39.014274], [-78.051836, 39.014167], [-78.051824, 39.014159], [-78.051771, 39.014123], [-78.051701, 39.014075], [-78.051696, 39.014072], [-78.051684, 39.014064], [-78.051228, 39.013754], [-78.051072, 39.013648], [-78.051064, 39.013643], [-78.051034, 39.013623], [-78.051002, 39.013601], [-78.050952, 39.013567], [-78.050741, 39.013424], [-78.050506, 39.013264], [-78.049995, 39.012917], [-78.049189, 39.012331], [-78.049047, 39.012228], [-78.048738, 39.012003], [-78.04865, 39.011939], [-78.048119, 39.011553], [-78.047919, 39.011408], [-78.047889, 39.011386], [-78.047867, 39.01137], [-78.047859, 39.011364], [-78.047853, 39.01136], [-78.047471, 39.011082], [-78.047233, 39.01091], [-78.047216, 39.010898], [-78.046908, 39.010674], [-78.046577, 39.010433], [-78.045459, 39.00962], [-78.043448, 39.008157], [-78.043443, 39.008153], [-78.041069, 39.006428], [-78.041025, 39.006396], [-78.040996, 39.006375], [-78.040937, 39.006332], [-78.040827, 39.006252], [-78.038991, 39.004917], [-78.03734, 39.003717], [-78.036647, 39.003213], [-78.036467, 39.003082], [-78.036382, 39.00302], [-78.036305, 39.002964], [-78.036265, 39.002935], [-78.036259, 39.002931], [-78.035946, 39.002704], [-78.033444, 39.000885], [-78.032461, 39.00017], [-78.032453, 39.000165], [-78.032164, 38.999966], [-78.032156, 38.999961], [-78.03215, 38.999956], [-78.032141, 38.99995], [-78.032119, 38.999935], [-78.032108, 38.999928], [-78.032048, 38.999887], [-78.029323, 38.998043], [-78.029304, 38.99803], [-78.028798, 38.997688], [-78.028566, 38.997531], [-78.027982, 38.997137], [-78.02788, 38.997068], [-78.027844, 38.997044], [-78.027821, 38.997028], [-78.027789, 38.997006], [-78.027383, 38.996705], [-78.022158, 38.992828], [-78.013605, 38.986485], [-78.009203, 38.98322], [-78.005343, 38.980356], [-78.005315, 38.980335], [-78.005219, 38.980265], [-78.004673, 38.979913], [-78.004538, 38.979799], [-78.0045, 38.979767], [-78.004443, 38.979718], [-78.004169, 38.979487], [-78.00441, 38.979305], [-78.004798, 38.979005], [-78.005057, 38.978556], [-78.005188, 38.9783], [-78.005208, 38.978261], [-78.005271, 38.97824], [-78.005717, 38.978092], [-78.005978, 38.977926], [-78.006497, 38.977338], [-78.00686, 38.976811], [-78.007728, 38.976269], [-78.007991, 38.976031], [-78.008145, 38.976017], [-78.008183, 38.975995], [-78.008397, 38.975868], [-78.009185, 38.975638], [-78.009557, 38.975168], [-78.009691, 38.974735], [-78.010038, 38.974442], [-78.011311, 38.973719], [-78.012073, 38.973303], [-78.012253, 38.973088], [-78.012613, 38.972699], [-78.013211, 38.972256], [-78.014696, 38.971287], [-78.015029, 38.971139], [-78.015515, 38.971041], [-78.016164, 38.97105], [-78.016737, 38.970817], [-78.017327, 38.970254], [-78.01773, 38.96976], [-78.01782, 38.969463], [-78.01782, 38.969044], [-78.017732, 38.968012], [-78.017707, 38.967762], [-78.017549, 38.967485], [-78.017346, 38.966532], [-78.017294, 38.966112], [-78.017373, 38.965839], [-78.017941, 38.96534], [-78.018663, 38.964883], [-78.019201, 38.964609], [-78.020244, 38.964143], [-78.020363, 38.963934], [-78.020461, 38.963742], [-78.020409, 38.96345], [-78.02045, 38.963207], [-78.020469, 38.963096], [-78.020511, 38.962845], [-78.020931, 38.961771], [-78.021464, 38.960696], [-78.021895, 38.959792], [-78.022193, 38.959315], [-78.022383, 38.959109], [-78.023222, 38.958207], [-78.02342, 38.957636], [-78.023505, 38.957541], [-78.02371, 38.957149], [-78.023902, 38.956854], [-78.02427, 38.956521], [-78.024615, 38.956324], [-78.024764, 38.956117], [-78.024964, 38.955508], [-78.025033, 38.955202], [-78.025339, 38.954925], [-78.026198, 38.954269], [-78.026783, 38.953668], [-78.027026, 38.953233], [-78.027131, 38.952735], [-78.027137, 38.952494], [-78.027198, 38.952116], [-78.027453, 38.951773], [-78.027643, 38.951582], [-78.027966, 38.951402], [-78.028354, 38.951101], [-78.028589, 38.950766], [-78.028706, 38.950591], [-78.028836, 38.950327], [-78.029057, 38.950153], [-78.029284, 38.950132], [-78.029651, 38.95025], [-78.030184, 38.950346], [-78.030636, 38.950377], [-78.030952, 38.950381], [-78.031182, 38.950436], [-78.031518, 38.950518], [-78.031866, 38.950572], [-78.032433, 38.950556], [-78.032725, 38.950383], [-78.032902, 38.950297], [-78.033401, 38.950086], [-78.034155, 38.949889], [-78.034534, 38.949532], [-78.034765, 38.94914], [-78.035061, 38.948637], [-78.035645, 38.947848], [-78.036365, 38.947223], [-78.036481, 38.947123], [-78.03671, 38.946926], [-78.037508, 38.946176], [-78.037783, 38.945363], [-78.038142, 38.944282], [-78.038693, 38.943265], [-78.038768, 38.942987], [-78.038887, 38.942578], [-78.03895, 38.942342], [-78.038953, 38.941915], [-78.038954, 38.94181], [-78.038963, 38.94133], [-78.039226, 38.940598], [-78.039487, 38.939656], [-78.039521, 38.939535], [-78.039755, 38.939199], [-78.04026, 38.938775], [-78.041252, 38.938203], [-78.041977, 38.938012], [-78.042368, 38.938018], [-78.042626, 38.93815], [-78.042886, 38.938283], [-78.043276, 38.938313], [-78.043556, 38.938252], [-78.044313, 38.937989], [-78.045061, 38.937702], [-78.046341, 38.937076], [-78.046849, 38.936954], [-78.047271, 38.936928], [-78.048269, 38.936926], [-78.04861, 38.936906], [-78.048662, 38.936903], [-78.048826, 38.936894], [-78.049271, 38.936779], [-78.049453, 38.936674], [-78.049539, 38.936624], [-78.049584, 38.936598], [-78.050407, 38.936181], [-78.051065, 38.935766], [-78.052526, 38.934898], [-78.053028, 38.934575], [-78.053614, 38.934156], [-78.053994, 38.933767], [-78.054332, 38.933385], [-78.054791, 38.933142], [-78.055755, 38.932834], [-78.056922, 38.932649], [-78.057517, 38.93273], [-78.057826, 38.932711], [-78.058149, 38.932547], [-78.058492, 38.93239], [-78.059, 38.932374], [-78.059124, 38.932389], [-78.059249, 38.932404], [-78.060084, 38.932501], [-78.060649, 38.932549], [-78.060999, 38.932521], [-78.061588, 38.932369], [-78.061728, 38.932145], [-78.061758, 38.931718], [-78.061787, 38.931388], [-78.061763, 38.931105], [-78.061815, 38.930966], [-78.061872, 38.930817], [-78.06195, 38.930576], [-78.061956, 38.930487], [-78.061959, 38.930434], [-78.06212, 38.929918], [-78.062366, 38.929526], [-78.062889, 38.929179], [-78.063162, 38.928933], [-78.063278, 38.928806], [-78.063561, 38.928617], [-78.063989, 38.928317], [-78.064372, 38.927799], [-78.064661, 38.927336], [-78.064776, 38.92683], [-78.064615, 38.926155], [-78.064598, 38.926086], [-78.064239, 38.925179], [-78.063955, 38.924619], [-78.063836, 38.924408], [-78.063809, 38.924246], [-78.063878, 38.923949], [-78.064335, 38.923327], [-78.065, 38.922636], [-78.065905, 38.921756], [-78.066409, 38.921336], [-78.066692, 38.921131], [-78.066959, 38.920691], [-78.067479, 38.92003], [-78.067871, 38.919544], [-78.068188, 38.919218], [-78.068678, 38.918516], [-78.068952, 38.918238], [-78.069228, 38.917855], [-78.069403, 38.917398], [-78.06952, 38.917255], [-78.069751, 38.917155], [-78.070204, 38.917031], [-78.07071, 38.916941], [-78.071246, 38.916506], [-78.071761, 38.916054], [-78.072316, 38.915224], [-78.072558, 38.91482], [-78.072699, 38.914585], [-78.074587, 38.913508], [-78.074703, 38.912828], [-78.074826, 38.912141], [-78.074984, 38.911981], [-78.074995, 38.911886], [-78.07503, 38.911578], [-78.075031, 38.91157], [-78.075076, 38.911155], [-78.075081, 38.911052], [-78.075069, 38.910143], [-78.075157, 38.909674], [-78.075197, 38.909476], [-78.075213, 38.909445], [-78.075383, 38.90911], [-78.075668, 38.908783], [-78.075816, 38.908561], [-78.075825, 38.908528], [-78.075883, 38.908345], [-78.075753, 38.908019], [-78.075604, 38.907724], [-78.07551, 38.90759], [-78.075156, 38.907335], [-78.074589, 38.90717], [-78.074287, 38.907081], [-78.074216, 38.907048], [-78.073791, 38.906768], [-78.073166, 38.906228], [-78.07214, 38.905238], [-78.071959, 38.905059], [-78.071896, 38.904695], [-78.072051, 38.903763], [-78.07205, 38.903678], [-78.063699, 38.901635], [-78.063699, 38.900483], [-78.062529, 38.90039], [-78.062194, 38.900022], [-78.061192, 38.899745], [-78.061532, 38.897845], [-78.061629, 38.896709], [-78.061362, 38.89647], [-78.061708, 38.895785], [-78.06174, 38.895294], [-78.06157, 38.895099], [-78.061396, 38.895019], [-78.061316, 38.894982], [-78.061188, 38.891381], [-78.062272, 38.891156], [-78.062978, 38.891094], [-78.063725, 38.891094], [-78.064492, 38.891105], [-78.065149, 38.891014], [-78.066551, 38.890544], [-78.066933, 38.890921], [-78.067231, 38.891125], [-78.067143, 38.891186], [-78.067072, 38.891258], [-78.067036, 38.891313], [-78.066979, 38.891433], [-78.066878, 38.891747], [-78.066822, 38.891888], [-78.068103, 38.892486], [-78.068011, 38.891727], [-78.068089, 38.891677], [-78.068695, 38.891577], [-78.072243, 38.890772], [-78.07267, 38.890719], [-78.073305, 38.886112], [-78.075384, 38.885592], [-78.077122, 38.887239], [-78.077473, 38.887285], [-78.077513, 38.887321], [-78.079242, 38.885949], [-78.080518, 38.88598], [-78.081451, 38.885957], [-78.081547, 38.885955], [-78.084158, 38.885938], [-78.084654, 38.885824], [-78.085673, 38.885592], [-78.08667, 38.885434], [-78.087323, 38.885368], [-78.088125, 38.885377], [-78.08892, 38.88546], [-78.089831, 38.885742], [-78.090664, 38.885903], [-78.090898, 38.885816], [-78.091092, 38.885708], [-78.091873, 38.88543], [-78.092099, 38.885353], [-78.092474, 38.88481], [-78.093012, 38.883611], [-78.0931, 38.882973], [-78.093147, 38.882343], [-78.093407, 38.881484], [-78.093822, 38.880537], [-78.094533, 38.879476], [-78.096804, 38.879413], [-78.09987, 38.878984], [-78.101641, 38.878846], [-78.10234, 38.878953], [-78.102697, 38.879042], [-78.103467, 38.879203], [-78.106172, 38.879398], [-78.107693, 38.879631], [-78.111434, 38.880268], [-78.1115, 38.880059], [-78.111562, 38.879868], [-78.111657, 38.879572], [-78.111819, 38.879179], [-78.112011, 38.878602], [-78.11266, 38.877676], [-78.113741, 38.876531], [-78.114518, 38.876477], [-78.116499, 38.876284], [-78.122242, 38.874077], [-78.122363, 38.874075], [-78.122482, 38.874057], [-78.122582, 38.874028], [-78.122722, 38.873995], [-78.124376, 38.873327], [-78.125633, 38.872854], [-78.126149, 38.872537], [-78.126571, 38.872166], [-78.127217, 38.87132], [-78.127569, 38.870733], [-78.128949, 38.870791], [-78.129297, 38.870557], [-78.130438, 38.86979], [-78.130851, 38.867419], [-78.130512, 38.866395], [-78.130592, 38.865596], [-78.13061, 38.865411], [-78.130646, 38.865049], [-78.130576, 38.864873], [-78.13055, 38.864808], [-78.130081, 38.863622], [-78.130011, 38.863349], [-78.129876, 38.862815], [-78.130197, 38.862155], [-78.130211, 38.862126], [-78.130268, 38.862009], [-78.130339, 38.861864], [-78.13076, 38.861637], [-78.131177, 38.861705], [-78.131596, 38.861773], [-78.131835, 38.861812], [-78.132188, 38.861869], [-78.132348, 38.861895], [-78.132768, 38.861963], [-78.13299, 38.861999], [-78.134373, 38.861282], [-78.134901, 38.861008], [-78.135005, 38.860954], [-78.135139, 38.860885], [-78.135453, 38.860761], [-78.136514, 38.860342], [-78.137807, 38.859833], [-78.138294, 38.859641], [-78.140411, 38.859405], [-78.141426, 38.859652], [-78.14223, 38.859847], [-78.14295, 38.859274], [-78.142944, 38.859157], [-78.142889, 38.858038], [-78.142827, 38.856775], [-78.143433, 38.855596], [-78.143532, 38.855403], [-78.144092, 38.854314], [-78.144574, 38.85322], [-78.144912, 38.852454], [-78.144948, 38.852371], [-78.145004, 38.852245], [-78.145212, 38.851773], [-78.145251, 38.85168], [-78.145501, 38.851078], [-78.145716, 38.850563], [-78.14582, 38.850555], [-78.148336, 38.850368], [-78.149068, 38.84961], [-78.149477, 38.849189], [-78.149857, 38.849102], [-78.150801, 38.848887], [-78.151143, 38.848809], [-78.151426, 38.84849], [-78.153177, 38.846525], [-78.154976, 38.845855], [-78.157236, 38.844918], [-78.158654, 38.84311], [-78.159106, 38.841981], [-78.158767, 38.840836], [-78.161069, 38.838947], [-78.159671, 38.837005], [-78.160267, 38.836214], [-78.162175, 38.836387], [-78.162571, 38.836423], [-78.162625, 38.836423], [-78.162856, 38.836422], [-78.164377, 38.83588], [-78.166174, 38.834378], [-78.168291, 38.833957], [-78.168878, 38.831933], [-78.168896, 38.831871], [-78.169074, 38.83126], [-78.169316, 38.830742], [-78.169693, 38.830313], [-78.170163, 38.829907], [-78.170541, 38.829622], [-78.170797, 38.829492], [-78.170806, 38.829435], [-78.170764, 38.82925], [-78.170398, 38.828622], [-78.170282, 38.828251], [-78.170093, 38.827752], [-78.169904, 38.827317], [-78.169701, 38.826929], [-78.16958, 38.826697], [-78.169536, 38.826455], [-78.169667, 38.826051], [-78.170514, 38.824453], [-78.170935, 38.823845], [-78.170968, 38.823799], [-78.171055, 38.823695], [-78.171023, 38.823542], [-78.170939, 38.823405], [-78.170825, 38.823244], [-78.17068, 38.823091], [-78.170697, 38.822784], [-78.170664, 38.82247], [-78.170518, 38.822196], [-78.170422, 38.82189], [-78.17042, 38.821615], [-78.170397, 38.821293], [-78.170458, 38.821008], [-78.170548, 38.819296], [-78.17252, 38.818882], [-78.174976, 38.819227], [-78.177934, 38.818998], [-78.180029, 38.818003], [-78.179505, 38.817101], [-78.178508, 38.815917], [-78.178847, 38.81436], [-78.179318, 38.811223], [-78.18019, 38.809157], [-78.180775, 38.807108], [-78.180854, 38.806907], [-78.181565, 38.805116], [-78.182068, 38.80447], [-78.182098, 38.803744], [-78.181995, 38.802527], [-78.182365, 38.801744], [-78.182303, 38.801051], [-78.18146, 38.800181], [-78.18183, 38.799358], [-78.182569, 38.799123], [-78.183606, 38.7978], [-78.184149, 38.795985], [-78.184333, 38.793857], [-78.184476, 38.792986], [-78.185862, 38.792339], [-78.187258, 38.7912], [-78.188665, 38.790602], [-78.188694, 38.790579], [-78.188706, 38.790569], [-78.188692, 38.790097], [-78.188686, 38.78985], [-78.188682, 38.789713], [-78.188664, 38.789037], [-78.188664, 38.789021], [-78.190378, 38.788277], [-78.193057, 38.787644], [-78.193088, 38.787637], [-78.193344, 38.786701], [-78.194021, 38.785587], [-78.194923, 38.782691], [-78.195569, 38.780618], [-78.198186, 38.779042], [-78.200012, 38.77704], [-78.200767, 38.776673], [-78.202197, 38.775981], [-78.204681, 38.775018], [-78.206723, 38.774088], [-78.207883, 38.774376], [-78.210358, 38.774833], [-78.21218, 38.77477], [-78.212472, 38.77476], [-78.212678, 38.774716], [-78.21551, 38.774075], [-78.218373, 38.773016], [-78.220117, 38.771949], [-78.221534, 38.770608], [-78.222569, 38.769461], [-78.224241, 38.768072], [-78.226663, 38.76802], [-78.228091, 38.768558], [-78.229161, 38.768937], [-78.229821, 38.7692], [-78.230118, 38.769134], [-78.230404, 38.768971], [-78.231386, 38.768498], [-78.232113, 38.768187], [-78.232544, 38.768096], [-78.232945, 38.767925], [-78.233448, 38.76771], [-78.233884, 38.767499], [-78.234242, 38.767392], [-78.234519, 38.767278], [-78.234774, 38.767123], [-78.234977, 38.766864], [-78.235077, 38.766589], [-78.235147, 38.766314], [-78.235145, 38.766128], [-78.235163, 38.765918], [-78.235254, 38.765724], [-78.235488, 38.765529], [-78.235959, 38.765325], [-78.236215, 38.765259], [-78.236377, 38.765016], [-78.236447, 38.764765], [-78.236752, 38.764384], [-78.236976, 38.764205], [-78.23718, 38.764043], [-78.237435, 38.763831], [-78.237524, 38.763508], [-78.237653, 38.763023], [-78.237762, 38.762635], [-78.237934, 38.762327], [-78.238117, 38.762108], [-78.238331, 38.761954], [-78.238607, 38.761855], [-78.239153, 38.761973], [-78.239678, 38.762067], [-78.240192, 38.762097], [-78.240634, 38.762151], [-78.241066, 38.762132], [-78.241384, 38.762155], [-78.241848, 38.76229], [-78.241965, 38.76237], [-78.241988, 38.762385], [-78.242272, 38.762578], [-78.242686, 38.762858], [-78.243088, 38.76305], [-78.243316, 38.763202], [-78.243583, 38.763176], [-78.243801, 38.763057], [-78.244043, 38.762923], [-78.244166, 38.762856], [-78.244338, 38.762655], [-78.244675, 38.762427], [-78.245135, 38.762199], [-78.24586, 38.761694], [-78.246237, 38.761369], [-78.246469, 38.76094], [-78.246649, 38.760455], [-78.247085, 38.759928], [-78.247433, 38.759724], [-78.248843, 38.759088], [-78.249059, 38.759061], [-78.249724, 38.758899], [-78.250346, 38.758833], [-78.250582, 38.75876], [-78.250911, 38.758621], [-78.2511, 38.758498], [-78.251268, 38.758388], [-78.251555, 38.758202], [-78.251879, 38.757869], [-78.252002, 38.75775], [-78.252339, 38.757477], [-78.252616, 38.757235], [-78.252872, 38.75705], [-78.253271, 38.756994], [-78.253712, 38.757059], [-78.254214, 38.757172], [-78.254522, 38.757365], [-78.255035, 38.757591], [-78.255373, 38.757768], [-78.25565, 38.75801], [-78.255713, 38.758085], [-78.255809, 38.758198], [-78.255865, 38.758265], [-78.256071, 38.758509], [-78.256492, 38.758992], [-78.256943, 38.759282], [-78.257722, 38.759403], [-78.258347, 38.759404], [-78.25928, 38.759307], [-78.260458, 38.759083], [-78.261308, 38.758842], [-78.262098, 38.758617], [-78.262369, 38.758558], [-78.26278, 38.758468], [-78.263543, 38.758392], [-78.264219, 38.75844], [-78.264895, 38.758529], [-78.265449, 38.758602], [-78.26551, 38.758626], [-78.265818, 38.758747], [-78.266126, 38.758948], [-78.266454, 38.759295], [-78.266752, 38.759641], [-78.267131, 38.759955], [-78.267706, 38.760398], [-78.268055, 38.760583], [-78.268465, 38.76068], [-78.268998, 38.760769], [-78.269387, 38.760874], [-78.269859, 38.760978], [-78.270382, 38.761301], [-78.271049, 38.761567], [-78.271346, 38.761671], [-78.272043, 38.76176], [-78.273222, 38.761938], [-78.274391, 38.761938], [-78.274455, 38.761937], [-78.274995, 38.76193], [-78.276215, 38.762237], [-78.27744, 38.76201], [-78.277455, 38.762008], [-78.277919, 38.761968], [-78.278659, 38.761997], [-78.278967, 38.76199], [-78.27947, 38.761932], [-78.27987, 38.761803], [-78.280597, 38.761503], [-78.28157, 38.761105], [-78.281877, 38.76096], [-78.282075, 38.760869], [-78.283048, 38.760436], [-78.283447, 38.760194], [-78.283693, 38.760041], [-78.283949, 38.759921], [-78.284441, 38.759832], [-78.284768, 38.759494], [-78.28488, 38.759237], [-78.286226, 38.761153], [-78.288383, 38.764188], [-78.290253, 38.766957], [-78.290922, 38.768228], [-78.29123, 38.768928], [-78.29116, 38.769605], [-78.291216, 38.769708], [-78.291235, 38.769744], [-78.291448, 38.770356], [-78.29148, 38.770417], [-78.291585, 38.77068], [-78.29162, 38.770806], [-78.291634, 38.771009], [-78.291627, 38.771108], [-78.291585, 38.771388], [-78.291627, 38.771734], [-78.291613, 38.771888], [-78.291585, 38.771998], [-78.29155, 38.772102], [-78.291501, 38.772217], [-78.291339, 38.772481], [-78.290855, 38.773046], [-78.290722, 38.773216], [-78.290645, 38.773326], [-78.290322, 38.77382], [-78.290301, 38.773842], [-78.290154, 38.774062], [-78.290091, 38.774177], [-78.29002, 38.77433], [-78.289929, 38.774627], [-78.289852, 38.774814], [-78.28974, 38.775066], [-78.289655, 38.775225], [-78.289564, 38.775379], [-78.289501, 38.775467], [-78.289333, 38.775824], [-78.289319, 38.775878], [-78.289312, 38.775955], [-78.28939, 38.776542], [-78.289568, 38.77704], [-78.289569, 38.777368], [-78.28964, 38.778058], [-78.289638, 38.778339], [-78.289755, 38.778905], [-78.289871, 38.779142], [-78.289944, 38.779292], [-78.290185, 38.779981], [-78.290747, 38.780569], [-78.291118, 38.780824], [-78.291782, 38.78128], [-78.292253, 38.781545], [-78.292726, 38.781769], [-78.29309, 38.781941], [-78.293412, 38.782132], [-78.293532, 38.782209], [-78.293812, 38.782452], [-78.29404, 38.782747], [-78.294044, 38.782752], [-78.294304, 38.783019], [-78.294495, 38.783385], [-78.294881, 38.784006], [-78.295235, 38.784224], [-78.295446, 38.784169], [-78.295746, 38.783886], [-78.296005, 38.783814], [-78.296772, 38.783829], [-78.296954, 38.783862], [-78.297192, 38.783917], [-78.299442, 38.784602], [-78.299744, 38.784839], [-78.299952, 38.784736], [-78.300617, 38.784278], [-78.300993, 38.784166], [-78.301401, 38.783906], [-78.301721, 38.783866], [-78.301917, 38.783899], [-78.30244, 38.783966], [-78.302703, 38.784097], [-78.302894, 38.784182], [-78.303139, 38.78425], [-78.303366, 38.78417], [-78.303508, 38.784244], [-78.303606, 38.784452], [-78.30367, 38.784555], [-78.303715, 38.784582], [-78.304815, 38.78504], [-78.30521, 38.785374], [-78.30555, 38.785605], [-78.30711, 38.785724], [-78.307468, 38.785768], [-78.307685, 38.785801], [-78.308057, 38.785888], [-78.308668, 38.78585], [-78.309109, 38.786114], [-78.309195, 38.786161], [-78.309363, 38.786444], [-78.309544, 38.786652], [-78.309666, 38.786781], [-78.309825, 38.786806], [-78.310207, 38.786713], [-78.310413, 38.786701], [-78.31054, 38.786707], [-78.310764, 38.786745], [-78.310883, 38.786794], [-78.310947, 38.786816], [-78.311136, 38.786904], [-78.311402, 38.787107], [-78.311515, 38.787184], [-78.311599, 38.787217], [-78.31176, 38.787261], [-78.311936, 38.787288], [-78.312097, 38.787305], [-78.312216, 38.787332], [-78.312721, 38.787497], [-78.312882, 38.78753], [-78.313044, 38.787557], [-78.313612, 38.787684], [-78.313794, 38.787777], [-78.313921, 38.787826], [-78.314089, 38.787876], [-78.314215, 38.787903], [-78.314454, 38.787931], [-78.314622, 38.787942], [-78.314699, 38.787958], [-78.314748, 38.78798], [-78.314854, 38.788046], [-78.314945, 38.788117], [-78.315001, 38.788167], [-78.315113, 38.788249], [-78.315352, 38.788359], [-78.315562, 38.788425], [-78.31585, 38.788491], [-78.316116, 38.788584], [-78.316193, 38.788628], [-78.316404, 38.788776], [-78.31646, 38.788831], [-78.316482, 38.788838], [-78.316558, 38.788919], [-78.316663, 38.789007], [-78.316783, 38.789095], [-78.317084, 38.789259], [-78.317442, 38.789408], [-78.317765, 38.78949], [-78.318171, 38.789517], [-78.318726, 38.789528], [-78.319048, 38.789501], [-78.319203, 38.789462], [-78.319259, 38.78944], [-78.319385, 38.78938], [-78.319403, 38.789367], [-78.319532, 38.789314], [-78.319588, 38.789303], [-78.31968, 38.789292], [-78.319771, 38.789298], [-78.320023, 38.789352], [-78.320185, 38.789374], [-78.320676, 38.789396], [-78.320956, 38.789418], [-78.321146, 38.789457], [-78.321342, 38.789534], [-78.321447, 38.789594], [-78.32156, 38.789671], [-78.321714, 38.789824], [-78.321777, 38.789879], [-78.321945, 38.790066], [-78.32217, 38.790286], [-78.322471, 38.790511], [-78.322626, 38.790598], [-78.322892, 38.790736], [-78.322998, 38.790807], [-78.32311, 38.790895], [-78.323306, 38.791087], [-78.323419, 38.791252], [-78.323517, 38.791367], [-78.323538, 38.791378], [-78.323601, 38.791427], [-78.323692, 38.791471], [-78.323853, 38.791532], [-78.324155, 38.791614], [-78.324345, 38.791652], [-78.324492, 38.791674], [-78.324597, 38.79168], [-78.325228, 38.791691], [-78.325895, 38.791669], [-78.325965, 38.791674], [-78.326042, 38.791691], [-78.326126, 38.791724], [-78.326168, 38.791745], [-78.326239, 38.791767], [-78.326309, 38.791773], [-78.326372, 38.791767], [-78.326498, 38.791729], [-78.326709, 38.791614], [-78.326786, 38.791592], [-78.326891, 38.791586], [-78.326982, 38.791592], [-78.32708, 38.791619], [-78.327129, 38.791641], [-78.327384, 38.791778], [-78.327634, 38.792194], [-78.32802, 38.792399], [-78.328049, 38.792404], [-78.328092, 38.792405], [-78.328544, 38.792417], [-78.328843, 38.792605], [-78.329012, 38.79262], [-78.329255, 38.792731], [-78.329851, 38.792975], [-78.329969, 38.793015], [-78.330155, 38.793256], [-78.330844, 38.793462], [-78.331627, 38.794528], [-78.331725, 38.794643], [-78.331788, 38.794731], [-78.331886, 38.794918], [-78.331935, 38.795], [-78.331942, 38.795028], [-78.331963, 38.795061], [-78.332013, 38.795121], [-78.33209, 38.795198], [-78.332153, 38.795242], [-78.332244, 38.795291], [-78.332405, 38.79534], [-78.332588, 38.795384], [-78.332889, 38.795439], [-78.333009, 38.795467], [-78.33311, 38.795499], [-78.333198, 38.795527], [-78.333745, 38.795757], [-78.333893, 38.795829], [-78.333928, 38.79584], [-78.334054, 38.795911], [-78.334293, 38.796076], [-78.334454, 38.796208], [-78.334637, 38.796416], [-78.334763, 38.796581], [-78.334903, 38.796718], [-78.335058, 38.796861], [-78.33517, 38.796932], [-78.33538, 38.797086], [-78.335822, 38.797333], [-78.335871, 38.797355], [-78.335977, 38.797421], [-78.336222, 38.797552], [-78.336328, 38.797624], [-78.336447, 38.797717], [-78.336467, 38.797728], [-78.336601, 38.79786], [-78.336671, 38.797958], [-78.336689, 38.797996], [-78.336707, 38.798035], [-78.336716, 38.79808], [-78.336735, 38.798178], [-78.336721, 38.798277], [-78.3367, 38.798376], [-78.33658, 38.798721], [-78.336538, 38.798958], [-78.336553, 38.799029], [-78.336595, 38.799166], [-78.33663, 38.799232], [-78.336665, 38.799276], [-78.336707, 38.799314], [-78.336917, 38.799419], [-78.336932, 38.799424], [-78.337198, 38.799517], [-78.337352, 38.799616], [-78.337423, 38.799666], [-78.337436, 38.799682], [-78.337528, 38.799759], [-78.337626, 38.799874], [-78.33764, 38.799902], [-78.337682, 38.799956], [-78.337753, 38.800072], [-78.337991, 38.8005], [-78.338132, 38.80072], [-78.338251, 38.800934], [-78.338349, 38.801246], [-78.338462, 38.801526], [-78.338514, 38.801611], [-78.338567, 38.801697], [-78.338623, 38.801757], [-78.338679, 38.80179], [-78.338777, 38.801834], [-78.339065, 38.801916], [-78.339304, 38.802037], [-78.339395, 38.802108], [-78.339458, 38.802169], [-78.339563, 38.802284], [-78.339612, 38.802366], [-78.339732, 38.802613], [-78.33983, 38.802893], [-78.3399, 38.803069], [-78.339935, 38.80314], [-78.339966, 38.803191], [-78.340078, 38.803378], [-78.340083, 38.803387], [-78.340223, 38.803552], [-78.3403, 38.803629], [-78.340364, 38.803684], [-78.340785, 38.803963], [-78.340846, 38.803993], [-78.340876, 38.804007], [-78.340995, 38.804057], [-78.341157, 38.804139], [-78.341718, 38.804463], [-78.341907, 38.804589], [-78.342167, 38.804803], [-78.342181, 38.804819], [-78.342399, 38.80499], [-78.342427, 38.805006], [-78.342602, 38.805149], [-78.342609, 38.805154], [-78.342623, 38.805171], [-78.342647, 38.805191], [-78.342691, 38.805226], [-78.342719, 38.805248], [-78.342785, 38.805302], [-78.343065, 38.805467], [-78.343311, 38.805626], [-78.343529, 38.805752], [-78.343655, 38.805813], [-78.343732, 38.80584], [-78.343809, 38.805862], [-78.343865, 38.805884], [-78.344027, 38.805912], [-78.344146, 38.805928], [-78.344427, 38.805939], [-78.3451, 38.805944], [-78.345549, 38.805933], [-78.34583, 38.805895], [-78.34589, 38.805856], [-78.345949, 38.805818], [-78.346091, 38.805856], [-78.346197, 38.805829], [-78.346391, 38.805779], [-78.346566, 38.805753], [-78.346625, 38.805745], [-78.34687, 38.805733], [-78.3473, 38.805722], [-78.347404, 38.805719], [-78.34764, 38.805713], [-78.347698, 38.805715], [-78.347801, 38.805718], [-78.3479, 38.805729], [-78.348019, 38.805757], [-78.348159, 38.805817], [-78.348265, 38.805877], [-78.34837, 38.805976], [-78.348419, 38.806015], [-78.348451, 38.80603], [-78.348489, 38.806048], [-78.348776, 38.806149], [-78.348829, 38.806224], [-78.348872, 38.806254], [-78.348956, 38.806311], [-78.349203, 38.806478], [-78.349381, 38.806598], [-78.349451, 38.806645], [-78.349619, 38.806758], [-78.349788, 38.806871], [-78.349822, 38.806894], [-78.350136, 38.807106], [-78.350264, 38.807189], [-78.350387, 38.807249], [-78.350409, 38.807259], [-78.351779, 38.808134], [-78.359974, 38.813364], [-78.360056, 38.813417], [-78.366264, 38.817321], [-78.366709, 38.817601], [-78.367139, 38.817871], [-78.378581, 38.825067], [-78.378644, 38.825107], [-78.386685, 38.83016] ], [ [-77.619031, 36.877851], [-77.616206, 36.879209], [-77.606771, 36.884094], [-77.600964, 36.887124], [-77.594965, 36.890254], [-77.594081, 36.890715], [-77.587133, 36.894342], [-77.586292, 36.894781], [-77.582882, 36.896562], [-77.574928, 36.900726], [-77.57453, 36.900948], [-77.569216, 36.903554], [-77.566874, 36.904885], [-77.560868, 36.908014], [-77.557926, 36.909547], [-77.555821, 36.910641], [-77.555534, 36.91079], [-77.553021, 36.912101], [-77.543031, 36.917313], [-77.542486, 36.917512], [-77.536064, 36.920892], [-77.535396, 36.921243], [-77.534265, 36.921836], [-77.534221, 36.92186], [-77.525674, 36.926362], [-77.521866, 36.928312], [-77.518309, 36.930185], [-77.517858, 36.930441], [-77.51122, 36.933852], [-77.508593, 36.935204], [-77.502305, 36.938517], [-77.500973, 36.939207], [-77.499706, 36.939885], [-77.496345, 36.941541], [-77.491098, 36.944307], [-77.490856, 36.944433], [-77.49012, 36.944822], [-77.486225, 36.946767], [-77.481076, 36.949441], [-77.476035, 36.952062], [-77.473468, 36.953398], [-77.472943, 36.953672], [-77.472869, 36.95371], [-77.463354, 36.958666], [-77.461117, 36.959833], [-77.456419, 36.96232], [-77.452137, 36.964587], [-77.452131, 36.96459], [-77.449411, 36.966029], [-77.44549, 36.968106], [-77.441989, 36.96996], [-77.440146, 36.970939], [-77.437683, 36.972247], [-77.434507, 36.973935], [-77.427773, 36.977513], [-77.42774, 36.97753], [-77.427039, 36.977902], [-77.423376, 36.979848], [-77.422005, 36.980577], [-77.416777, 36.983376], [-77.41527, 36.984287], [-77.414755, 36.984482], [-77.414546, 36.984652], [-77.412944, 36.98537], [-77.411721, 36.986102], [-77.411629, 36.986147], [-77.411504, 36.986209], [-77.411367, 36.986325], [-77.410179, 36.986863], [-77.409458, 36.987239], [-77.403108, 36.990588], [-77.400343, 36.992021], [-77.399497, 36.992466], [-77.399351, 36.992541], [-77.399083, 36.992684], [-77.3985, 36.992992], [-77.395134, 36.99446], [-77.392723, 36.995561], [-77.392537, 36.995646], [-77.392501, 36.995663], [-77.392465, 36.995679], [-77.392362, 36.995726], [-77.392316, 36.995747], [-77.391816, 36.995975], [-77.382386, 37.000157], [-77.372911, 37.005315], [-77.371767, 37.00594], [-77.37141, 37.006134], [-77.371221, 37.006237], [-77.370946, 37.006373], [-77.36985, 37.006916], [-77.362233, 37.010688], [-77.361001, 37.011295], [-77.359163, 37.012264], [-77.35802, 37.012861], [-77.357939, 37.012899], [-77.356673, 37.013501], [-77.355092, 37.014253], [-77.354864, 37.014372], [-77.353314, 37.015152], [-77.352432, 37.015597], [-77.342959, 37.02028], [-77.342787, 37.020365], [-77.340378, 37.021556], [-77.340278, 37.021606], [-77.337297, 37.023072], [-77.337175, 37.023144], [-77.335699, 37.023866], [-77.335529, 37.023947], [-77.335299, 37.024061], [-77.331643, 37.025846], [-77.329174, 37.027075], [-77.323521, 37.029902], [-77.322563, 37.030381], [-77.320096, 37.031634], [-77.319424, 37.031972], [-77.318863, 37.03225], [-77.318479, 37.032441], [-77.317925, 37.032714], [-77.317829, 37.032763], [-77.313955, 37.034685], [-77.313916, 37.034704], [-77.313868, 37.034728], [-77.309451, 37.036892], [-77.308291, 37.037458], [-77.305738, 37.038764], [-77.302328, 37.040512], [-77.299634, 37.041885], [-77.296315, 37.043506], [-77.295872, 37.043722], [-77.290691, 37.046252], [-77.283806, 37.049678], [-77.275921, 37.053596], [-77.269133, 37.056861], [-77.26593, 37.058415], [-77.258545, 37.061884], [-77.254925, 37.06363], [-77.251565, 37.06525], [-77.249696, 37.066151], [-77.246553, 37.06777], [-77.246484, 37.067781], [-77.246391, 37.067854], [-77.246084, 37.068011], [-77.244518, 37.068753], [-77.239063, 37.071523], [-77.237985, 37.07207], [-77.228735, 37.076768], [-77.226532, 37.077893], [-77.226488, 37.077915], [-77.221378, 37.080511], [-77.221082, 37.080661], [-77.220854, 37.080777], [-77.219873, 37.081276], [-77.209826, 37.086319], [-77.205309, 37.088602], [-77.205088, 37.088714], [-77.20291, 37.089823], [-77.196691, 37.092965], [-77.194241, 37.094568], [-77.191776, 37.096205], [-77.19002, 37.097359], [-77.189071, 37.097993], [-77.18704, 37.09894], [-77.173442, 37.105245], [-77.173167, 37.105373], [-77.173097, 37.105398], [-77.170539, 37.106356], [-77.156951, 37.111467], [-77.155417, 37.112041], [-77.155768, 37.112317], [-77.155978, 37.112667], [-77.156092, 37.113186], [-77.155969, 37.113954], [-77.155941, 37.113975], [-77.15509, 37.114617], [-77.15111, 37.117619], [-77.15101, 37.117695], [-77.148833, 37.119362], [-77.148671, 37.119463], [-77.146263, 37.121292], [-77.144922, 37.122297], [-77.140975, 37.125265], [-77.139394, 37.126456], [-77.130596, 37.133076], [-77.127136, 37.135638], [-77.124772, 37.137371], [-77.123849, 37.13799], [-77.123736, 37.138115], [-77.123714, 37.138139], [-77.123361, 37.138438], [-77.123354, 37.138444], [-77.123344, 37.138452], [-77.121639, 37.139895], [-77.121618, 37.139913], [-77.121589, 37.139938], [-77.121086, 37.140363], [-77.121026, 37.140415], [-77.118553, 37.14256], [-77.118524, 37.142585], [-77.115242, 37.145432], [-77.108808, 37.150959], [-77.101161, 37.157553], [-77.10078, 37.157881], [-77.100422, 37.158194], [-77.095681, 37.162245], [-77.093904, 37.163767], [-77.093612, 37.164013], [-77.092981, 37.164566], [-77.092259, 37.1652], [-77.09225, 37.165208], [-77.092236, 37.16522], [-77.090988, 37.166314], [-77.090024, 37.16716], [-77.087778, 37.169078], [-77.087128, 37.169085], [-77.086528, 37.169314], [-77.084841, 37.170848], [-77.083897, 37.171077], [-77.083297, 37.171077], [-77.082239, 37.171306], [-77.081123, 37.171696], [-77.079007, 37.172611], [-77.07815, 37.173161], [-77.077063, 37.174031], [-77.075547, 37.175564], [-77.0751, 37.176278], [-77.074661, 37.176983], [-77.074204, 37.177922], [-77.074119, 37.178693], [-77.074118, 37.1787], [-77.073321, 37.18276], [-77.073318, 37.182774], [-77.073147, 37.184079], [-77.072975, 37.184422], [-77.072746, 37.184605], [-77.072722, 37.184612], [-77.072715, 37.184614], [-77.072589, 37.184648], [-77.072174, 37.18472], [-77.071701, 37.184742], [-77.071651, 37.184744], [-77.071202, 37.184765], [-77.071097, 37.184804], [-77.070949, 37.184859], [-77.070086, 37.185178], [-77.068027, 37.186345], [-77.06607, 37.187748], [-77.066058, 37.187756], [-77.065878, 37.187885], [-77.065281, 37.188313], [-77.064022, 37.189023], [-77.063279, 37.189298], [-77.062788, 37.189411], [-77.062755, 37.189419], [-77.062432, 37.189493], [-77.061982, 37.189596], [-77.059589, 37.190145], [-77.059125, 37.19049], [-77.058929, 37.190636], [-77.058792, 37.190738], [-77.058657, 37.19081], [-77.058444, 37.190923], [-77.058361, 37.190906], [-77.058267, 37.190887], [-77.058237, 37.190881], [-77.05823, 37.190879], [-77.058214, 37.190876], [-77.057214, 37.190671], [-77.055956, 37.190648], [-77.052379, 37.191106], [-77.051796, 37.191267], [-77.051756, 37.191278], [-77.051738, 37.191283], [-77.051703, 37.191293], [-77.051622, 37.191315], [-77.050805, 37.19154], [-77.048774, 37.192295], [-77.048088, 37.192273], [-77.047487, 37.192021], [-77.0466, 37.191403], [-77.046057, 37.191448], [-77.045313, 37.192181], [-77.044712, 37.192387], [-77.043997, 37.192432], [-77.043367, 37.192798], [-77.042795, 37.193508], [-77.042765, 37.193566], [-77.042652, 37.193782], [-77.042758, 37.194764], [-77.042907, 37.195278], [-77.042909, 37.195285], [-77.042912, 37.195294], [-77.043013, 37.195549], [-77.043015, 37.195554], [-77.04316, 37.195919], [-77.043749, 37.19656], [-77.04391, 37.196735], [-77.044711, 37.197353], [-77.045912, 37.198086], [-77.046313, 37.198521], [-77.046284, 37.19907], [-77.04554, 37.200214], [-77.045483, 37.200443], [-77.04469, 37.20155], [-77.04467, 37.201577], [-77.044342, 37.202013], [-77.043942, 37.202221], [-77.043935, 37.202224], [-77.043817, 37.202285], [-77.043413, 37.202285], [-77.043402, 37.202276], [-77.042564, 37.201593], [-77.042026, 37.201505], [-77.04158, 37.201497], [-77.041523, 37.201497], [-77.04116, 37.201492], [-77.040384, 37.20169], [-77.040377, 37.201692], [-77.040369, 37.201694], [-77.039503, 37.201915], [-77.038739, 37.201933], [-77.038731, 37.201933], [-77.038136, 37.201947], [-77.037645, 37.201882], [-77.037472, 37.201792], [-77.037071, 37.201838], [-77.036842, 37.201975], [-77.036642, 37.202273], [-77.036384, 37.203051], [-77.036098, 37.203257], [-77.035612, 37.203348], [-77.035011, 37.203234], [-77.034124, 37.202959], [-77.033809, 37.202707], [-77.033781, 37.201631], [-77.033467, 37.200166], [-77.033267, 37.199823], [-77.032437, 37.198953], [-77.031493, 37.198678], [-77.031121, 37.198793], [-77.030663, 37.199456], [-77.030635, 37.199891], [-77.030262, 37.200875], [-77.029947, 37.201287], [-77.029604, 37.201584], [-77.029089, 37.201813], [-77.028459, 37.201905], [-77.028145, 37.201744], [-77.027687, 37.201355], [-77.027601, 37.201103], [-77.027463, 37.200463], [-77.027299, 37.2001], [-77.026825, 37.20003], [-77.026291, 37.200097], [-77.025568, 37.200415], [-77.024907, 37.200734], [-77.024795, 37.200789], [-77.024071, 37.201035], [-77.023852, 37.201351], [-77.023787, 37.202062], [-77.023838, 37.20341], [-77.023968, 37.204662], [-77.024164, 37.205637], [-77.024178, 37.205703], [-77.024266, 37.206607], [-77.023947, 37.207117], [-77.023445, 37.207386], [-77.022841, 37.207445], [-77.021783, 37.207385], [-77.020331, 37.20731], [-77.01927, 37.207016], [-77.018442, 37.206858], [-77.017879, 37.206965], [-77.017619, 37.207265], [-77.016951, 37.208229], [-77.01656, 37.208505], [-77.015664, 37.208687], [-77.014941, 37.209085], [-77.014462, 37.209652], [-77.014312, 37.20982], [-77.014236, 37.209905], [-77.013672, 37.210543], [-77.01218, 37.211737], [-77.011782, 37.212417], [-77.011775, 37.212789], [-77.011842, 37.213003], [-77.012002, 37.213515], [-77.012745, 37.214311], [-77.013823, 37.215615], [-77.014521, 37.215968], [-77.015461, 37.216303], [-77.016845, 37.216677], [-77.018061, 37.217415], [-77.018703, 37.218349], [-77.018813, 37.2196], [-77.017842, 37.221696], [-77.016765, 37.223244], [-77.015751, 37.223846], [-77.014303, 37.224312], [-77.01346, 37.224768], [-77.013141, 37.225181], [-77.013124, 37.225585], [-77.013319, 37.226093], [-77.013666, 37.226633], [-77.014158, 37.227656], [-77.014241, 37.228019], [-77.014206, 37.228674], [-77.013655, 37.230405], [-77.012732, 37.232379], [-77.012303, 37.23289], [-77.01163, 37.23324], [-77.010763, 37.233308], [-77.009188, 37.232983], [-77.008196, 37.232446], [-77.006385, 37.23167], [-77.004853, 37.231677], [-77.003818, 37.232069], [-77.003429, 37.232676], [-77.003185, 37.233743], [-77.002542, 37.236702], [-77.002177, 37.23785], [-77.00173, 37.2387], [-77.000665, 37.239237], [-76.999691, 37.239257], [-76.999219, 37.239097], [-76.998897, 37.238985], [-76.998736, 37.238768], [-76.998453, 37.238043], [-76.99797, 37.237302], [-76.996059, 37.23641], [-76.994913, 37.236315], [-76.993487, 37.236527], [-76.991912, 37.237109], [-76.990307, 37.238175], [-76.983226, 37.24235], [-76.981417, 37.243418], [-76.972441, 37.248508], [-76.969591, 37.246228], [-76.965636, 37.244052], [-76.964384, 37.243736], [-76.960116, 37.242068], [-76.956177, 37.2404], [-76.952239, 37.23901], [-76.948628, 37.237342], [-76.946001, 37.235952], [-76.943703, 37.234562], [-76.941404, 37.233172], [-76.939726, 37.232134], [-76.938035, 37.231088], [-76.936283, 37.229977], [-76.933666, 37.229017], [-76.929461, 37.227475], [-76.921571, 37.225347], [-76.917083, 37.224372], [-76.910176, 37.223416], [-76.904764, 37.223117], [-76.900139, 37.222946], [-76.895928, 37.222959], [-76.889713, 37.223079], [-76.884231, 37.222996], [-76.883158, 37.223064], [-76.878864, 37.22334], [-76.874686, 37.223631], [-76.861852, 37.223989], [-76.851482, 37.22435], [-76.844391, 37.224552], [-76.835038, 37.224896], [-76.831085, 37.224915], [-76.827223, 37.22495], [-76.823442, 37.224945], [-76.818513, 37.224625], [-76.815527, 37.22408], [-76.812491, 37.223456], [-76.808932, 37.222354], [-76.804873, 37.220196], [-76.801679, 37.217853], [-76.798837, 37.215205], [-76.797742, 37.214094], [-76.795725, 37.212048], [-76.791557, 37.207571], [-76.791178, 37.207163], [-76.785478, 37.201051], [-76.781731, 37.19715], [-76.781244, 37.196642], [-76.781166, 37.196563], [-76.77727, 37.192653], [-76.773528, 37.188857], [-76.769706, 37.185287], [-76.765954, 37.181821], [-76.760316, 37.176806], [-76.75632, 37.174259], [-76.753128, 37.172687], [-76.749682, 37.171597], [-76.74797, 37.171482], [-76.745474, 37.171306], [-76.743554, 37.171178], [-76.741346, 37.171258], [-76.739506, 37.171322], [-76.737858, 37.17145], [-76.736066, 37.171706], [-76.734946, 37.171962], [-76.733234, 37.172378], [-76.732657, 37.172549], [-76.731938, 37.172762], [-76.73053, 37.173498], [-76.728514, 37.17481], [-76.726882, 37.176266], [-76.726257, 37.177031], [-76.725745, 37.177658], [-76.724753, 37.17929], [-76.723937, 37.181258], [-76.723936, 37.181258], [-76.723029, 37.183382], [-76.722993, 37.183466], [-76.721937, 37.186074], [-76.721217, 37.187674], [-76.721505, 37.189114], [-76.721153, 37.189994], [-76.720353, 37.191194], [-76.718497, 37.194298], [-76.718466, 37.194354], [-76.717265, 37.196554], [-76.715057, 37.199146], [-76.712849, 37.201594], [-76.710961, 37.202986], [-76.708833, 37.204682], [-76.705633, 37.206442], [-76.701665, 37.208154], [-76.697312, 37.209706], [-76.691808, 37.210874], [-76.689888, 37.210969], [-76.686784, 37.210953], [-76.683088, 37.210969], [-76.679744, 37.210937], [-76.677661, 37.210701], [-76.676352, 37.210553], [-76.673088, 37.209689], [-76.6708, 37.208953], [-76.668768, 37.208121], [-76.666793, 37.207283], [-76.666016, 37.206953], [-76.663503, 37.205833], [-76.660447, 37.204153], [-76.658829, 37.203052], [-76.658143, 37.202585], [-76.655663, 37.200969], [-76.652447, 37.198825], [-76.650175, 37.196985], [-76.649497, 37.196409], [-76.648031, 37.195161], [-76.646175, 37.193737], [-76.644879, 37.192169], [-76.643679, 37.190345], [-76.642847, 37.188793], [-76.642927, 37.187545], [-76.642655, 37.185881], [-76.642303, 37.178777], [-76.642047, 37.169529], [-76.641615, 37.155194], [-76.641583, 37.153834], [-76.67159, 37.142067], [-76.671776, 37.141994], [-76.671929, 37.141928], [-76.672264, 37.141783], [-76.672736, 37.141578], [-76.673328, 37.141274], [-76.673792, 37.140986], [-76.674144, 37.140698], [-76.674704, 37.140154], [-76.675424, 37.13905], [-76.675712, 37.138346], [-76.67584, 37.137658], [-76.675824, 37.136986], [-76.675744, 37.136506], [-76.675504, 37.13601], [-76.675136, 37.13553], [-76.674656, 37.13505], [-76.673056, 37.134154], [-76.672608, 37.133882], [-76.672432, 37.133674], [-76.672416, 37.133498], [-76.672528, 37.132986], [-76.672656, 37.132778], [-76.673056, 37.13265], [-76.673952, 37.132538], [-76.674944, 37.132378], [-76.675824, 37.132154], [-76.676416, 37.131866], [-76.67712, 37.131466], [-76.67768, 37.131034], [-76.678224, 37.13041], [-76.679008, 37.129114], [-76.679116, 37.128953], [-76.679808, 37.12793], [-76.680128, 37.127226], [-76.680256, 37.126762], [-76.680288, 37.126298], [-76.680176, 37.125722], [-76.680032, 37.125146], [-76.68016, 37.12409], [-76.680192, 37.12353], [-76.680096, 37.122794], [-76.679872, 37.121722], [-76.679792, 37.12113], [-76.679792, 37.121082], [-76.679808, 37.120634], [-76.679856, 37.119882], [-76.679968, 37.119194], [-76.680016, 37.118554], [-76.680048, 37.118106], [-76.679968, 37.11769], [-76.679904, 37.117578], [-76.679472, 37.116938], [-76.6792, 37.116442], [-76.679008, 37.115898], [-76.678608, 37.115434], [-76.678304, 37.115226], [-76.678048, 37.115082], [-76.677936, 37.11505], [-76.677712, 37.114938], [-76.67744, 37.114794], [-76.677168, 37.114554], [-76.677088, 37.114458], [-76.67704, 37.114298], [-76.677136, 37.11393], [-76.677408, 37.113642], [-76.677952, 37.113226], [-76.678656, 37.112874], [-76.679104, 37.112634], [-76.67936, 37.112218], [-76.679392, 37.111882], [-76.67938, 37.111726], [-76.67936, 37.111434], [-76.6792, 37.111226], [-76.678848, 37.111002], [-76.678496, 37.110458], [-76.678176, 37.110154], [-76.678016, 37.11001], [-76.677792, 37.109818], [-76.677472, 37.109674], [-76.676896, 37.109434], [-76.676496, 37.109306], [-76.676128, 37.109242], [-76.675936, 37.10921], [-76.675728, 37.109194], [-76.675504, 37.10913], [-76.675408, 37.109066], [-76.675328, 37.108954], [-76.675168, 37.10865], [-76.675184, 37.108378], [-76.675296, 37.108106], [-76.675504, 37.107914], [-76.675872, 37.107578], [-76.6764, 37.106842], [-76.676464, 37.106458], [-76.677056, 37.105274], [-76.677392, 37.104714], [-76.67768, 37.104474], [-76.677968, 37.104186], [-76.678432, 37.104058], [-76.679008, 37.10441], [-76.679232, 37.105274], [-76.679456, 37.105914], [-76.679872, 37.106266], [-76.680096, 37.10649], [-76.680672, 37.10681], [-76.68112, 37.10689], [-76.681408, 37.106746], [-76.681744, 37.106426], [-76.682128, 37.105818], [-76.682624, 37.105034], [-76.683424, 37.104378], [-76.684032, 37.104058], [-76.684192, 37.103898], [-76.684256, 37.103466], [-76.684192, 37.103178], [-76.68384, 37.10281], [-76.683456, 37.102426], [-76.683152, 37.102234], [-76.682976, 37.101978], [-76.682784, 37.101306], [-76.682528, 37.100666], [-76.682272, 37.099898], [-76.682144, 37.099322], [-76.68208, 37.098666], [-76.68232, 37.098458], [-76.68312, 37.098042], [-76.683664, 37.097818], [-76.684064, 37.097434], [-76.684144, 37.097018], [-76.684016, 37.096858], [-76.683776, 37.096426], [-76.683616, 37.09593], [-76.683232, 37.095514], [-76.68256, 37.095034], [-76.681936, 37.094522], [-76.681792, 37.094234], [-76.681696, 37.093786], [-76.682144, 37.093403], [-76.683232, 37.093003], [-76.68384, 37.092635], [-76.684048, 37.092443], [-76.684272, 37.092155], [-76.68432, 37.091803], [-76.684, 37.091291], [-76.683824, 37.090843], [-76.683904, 37.090427], [-76.684128, 37.090075], [-76.684224, 37.089499], [-76.68432, 37.089003], [-76.684352, 37.088475], [-76.68448, 37.088171], [-76.684928, 37.087979], [-76.685777, 37.087963], [-76.686433, 37.087851], [-76.687041, 37.087675], [-76.687681, 37.087419], [-76.687873, 37.087323], [-76.687969, 37.087083], [-76.687809, 37.086555], [-76.687777, 37.086027], [-76.687855, 37.085966], [-76.687921, 37.085915], [-76.688385, 37.085563], [-76.689025, 37.085339], [-76.689777, 37.085131], [-76.690513, 37.085403], [-76.691089, 37.085467], [-76.691585, 37.085339], [-76.692593, 37.085067], [-76.693249, 37.084763], [-76.693378, 37.084729], [-76.69342, 37.084719], [-76.693729, 37.084635], [-76.694433, 37.084171], [-76.694977, 37.083739], [-76.695233, 37.083547], [-76.695649, 37.083291], [-76.695457, 37.082875], [-76.695073, 37.082475], [-76.694305, 37.082267], [-76.693761, 37.082171], [-76.693409, 37.081883], [-76.693297, 37.081419], [-76.693409, 37.080459], [-76.693729, 37.079755], [-76.694129, 37.079067], [-76.694401, 37.078331], [-76.694753, 37.077531], [-76.695009, 37.076667], [-76.694641, 37.076139], [-76.694225, 37.075835], [-76.693569, 37.075307], [-76.693457, 37.075147], [-76.693324, 37.074845], [-76.693233, 37.074347], [-76.693169, 37.074059], [-76.693393, 37.073563], [-76.694017, 37.073195], [-76.694465, 37.072891], [-76.695153, 37.072667], [-76.695809, 37.072651], [-76.696161, 37.072571], [-76.696817, 37.071851], [-76.697185, 37.071003], [-76.697777, 37.070299], [-76.698433, 37.069579], [-76.698929, 37.068955], [-76.699153, 37.068747], [-76.699841, 37.067867], [-76.700753, 37.066939], [-76.701185, 37.066203], [-76.701153, 37.065291], [-76.700993, 37.064331], [-76.700657, 37.063579], [-76.699969, 37.062859], [-76.698881, 37.062171], [-76.697969, 37.061275], [-76.697617, 37.060491], [-76.697633, 37.059803], [-76.698257, 37.059147], [-76.699313, 37.058427], [-76.701681, 37.057211], [-76.702881, 37.056779], [-76.704129, 37.056891], [-76.705089, 37.056347], [-76.705601, 37.055931], [-76.706209, 37.055755], [-76.706229, 37.055759], [-76.706945, 37.055931], [-76.707633, 37.056331], [-76.708129, 37.056507], [-76.708929, 37.056475], [-76.709537, 37.056459], [-76.709857, 37.056331], [-76.710177, 37.055931], [-76.710401, 37.055483], [-76.710721, 37.055259], [-76.710902, 37.055298], [-76.711457, 37.055419], [-76.711777, 37.055387], [-76.712401, 37.054971], [-76.712978, 37.054843], [-76.713586, 37.054715], [-76.714306, 37.054395], [-76.71527, 37.053994], [-76.722162, 37.051138], [-76.729755, 37.04813], [-76.733682, 37.046521], [-76.738791, 37.044436], [-76.741602, 37.043291], [-76.748194, 37.040583], [-76.748321, 37.040531], [-76.748351, 37.040519], [-76.748419, 37.040491], [-76.749683, 37.039966], [-76.749764, 37.03992], [-76.763179, 37.034373], [-76.763405, 37.03428], [-76.767661, 37.032525], [-76.771011, 37.03114], [-76.771097, 37.031106], [-76.771588, 37.030914], [-76.774167, 37.02984], [-76.774556, 37.029679], [-76.77547, 37.029301], [-76.779229, 37.027676], [-76.779841, 37.027411], [-76.790927, 37.022569], [-76.791088, 37.022499], [-76.796429, 37.020169], [-76.796638, 37.020078], [-76.796846, 37.019987], [-76.79752, 37.019693], [-76.801042, 37.01815], [-76.807334, 37.01541], [-76.809572, 37.014435], [-76.818955, 37.010345], [-76.819074, 37.010293], [-76.822799, 37.00871], [-76.825669, 37.00749], [-76.825901, 37.007388], [-76.831641, 37.004855], [-76.835664, 37.00308], [-76.837583, 37.002244], [-76.841602, 37.000163], [-76.842866, 36.999547], [-76.845246, 36.998386], [-76.847668, 36.997204], [-76.849142, 36.996484], [-76.849686, 36.996218], [-76.850553, 36.995779], [-76.850631, 36.99574], [-76.850697, 36.995706], [-76.851851, 36.995122], [-76.854982, 36.993525], [-76.856242, 36.992911], [-76.86384, 36.989206], [-76.870707, 36.985673], [-76.871841, 36.98508], [-76.874623, 36.983644], [-76.875895, 36.983009], [-76.875985, 36.982965], [-76.885132, 36.978464], [-76.887442, 36.977328], [-76.890302, 36.975818], [-76.892956, 36.974486], [-76.89314, 36.974395], [-76.896906, 36.972526], [-76.904399, 36.968796], [-76.90686, 36.967546], [-76.910512, 36.96573], [-76.916094, 36.962943], [-76.918647, 36.961669], [-76.920678, 36.960662], [-76.920823, 36.96059], [-76.921045, 36.960479], [-76.944177, 36.94894], [-76.944393, 36.948832], [-76.952272, 36.94509], [-76.95301, 36.944745], [-76.953321, 36.944572], [-76.953403, 36.944531], [-76.953423, 36.94452], [-76.953482, 36.94449], [-76.953548, 36.944457], [-76.953785, 36.94434], [-76.957481, 36.942506], [-76.961191, 36.940663], [-76.964197, 36.938919], [-76.96481, 36.938567], [-76.966432, 36.937766], [-76.966739, 36.937614], [-76.966967, 36.937501], [-76.967236, 36.937368], [-76.968388, 36.936797], [-76.968897, 36.936545], [-76.969029, 36.936479], [-76.969106, 36.93644], [-76.971436, 36.93526], [-76.975496, 36.933205], [-76.982592, 36.929616], [-76.989131, 36.926581], [-76.994368, 36.92415], [-76.998429, 36.922265], [-76.999606, 36.921719], [-76.999685, 36.921681], [-77.002105, 36.920754], [-77.002148, 36.920733], [-77.008169, 36.917547], [-77.008275, 36.917491], [-77.018385, 36.912204], [-77.020667, 36.911026], [-77.021719, 36.910482], [-77.025736, 36.908358], [-77.027017, 36.907684], [-77.027133, 36.907623], [-77.028458, 36.907007], [-77.029517, 36.906418], [-77.031251, 36.905529], [-77.031356, 36.905475], [-77.031462, 36.905421], [-77.031762, 36.905251], [-77.038869, 36.901239], [-77.043628, 36.898711], [-77.043689, 36.898679], [-77.051531, 36.894532], [-77.051539, 36.894528], [-77.056871, 36.89154], [-77.06992, 36.884573], [-77.071151, 36.883914], [-77.073702, 36.88255], [-77.085927, 36.87619], [-77.087917, 36.87516], [-77.090621, 36.873661], [-77.090724, 36.873603], [-77.091565, 36.873174], [-77.094212, 36.871826], [-77.097826, 36.869986], [-77.099534, 36.869114], [-77.113839, 36.861826], [-77.11981, 36.858766], [-77.121795, 36.857748], [-77.123608, 36.856842], [-77.124691, 36.856292], [-77.128303, 36.854533], [-77.133015, 36.85224], [-77.134095, 36.851726], [-77.138719, 36.849471], [-77.142286, 36.847731], [-77.148457, 36.844728], [-77.163735, 36.837345], [-77.167277, 36.835634], [-77.179084, 36.829867], [-77.179244, 36.829788], [-77.17991, 36.829464], [-77.189565, 36.824762], [-77.195471, 36.82188], [-77.197924, 36.820693], [-77.207273, 36.816138], [-77.210626, 36.814507], [-77.218701, 36.810611], [-77.221044, 36.809481], [-77.224443, 36.80782], [-77.226045, 36.80705], [-77.239096, 36.800663], [-77.249705, 36.795556], [-77.252459, 36.794301], [-77.25663, 36.792402], [-77.256977, 36.792244], [-77.258176, 36.791698], [-77.258762, 36.791494], [-77.260767, 36.790618], [-77.267344, 36.787611], [-77.274377, 36.784429], [-77.279113, 36.782287], [-77.279514, 36.782107], [-77.279847, 36.781957], [-77.286906, 36.778764], [-77.288974, 36.777831], [-77.31145, 36.767665], [-77.312307, 36.767279], [-77.312845, 36.767035], [-77.313139, 36.766902], [-77.314078, 36.766478], [-77.316186, 36.765525], [-77.318078, 36.76467], [-77.323858, 36.762058], [-77.324235, 36.761888], [-77.324914, 36.761579], [-77.325192, 36.761456], [-77.325212, 36.76143], [-77.32525, 36.761429], [-77.325325, 36.761395], [-77.330089, 36.759242], [-77.330349, 36.759124], [-77.334703, 36.757156], [-77.339672, 36.75491], [-77.3448, 36.752593], [-77.345117, 36.752422], [-77.349324, 36.75016], [-77.350933, 36.749434], [-77.359581, 36.74493], [-77.363185, 36.743053], [-77.369254, 36.739919], [-77.374698, 36.737124], [-77.377705, 36.735539], [-77.377994, 36.735399], [-77.382868, 36.732819], [-77.387736, 36.730254], [-77.397049, 36.725349], [-77.405107, 36.721082], [-77.406009, 36.7206], [-77.406831, 36.720169], [-77.407147, 36.720001], [-77.411931, 36.717444], [-77.413202, 36.71684], [-77.414837, 36.715953], [-77.414895, 36.715923], [-77.418481, 36.714055], [-77.418488, 36.714051], [-77.418594, 36.713996], [-77.418782, 36.713898], [-77.419022, 36.713751], [-77.419266, 36.713601], [-77.419692, 36.713368], [-77.430129, 36.707665], [-77.430379, 36.708178], [-77.430692, 36.708635], [-77.431516, 36.709688], [-77.432255, 36.710626], [-77.433422, 36.711427], [-77.43399, 36.71161], [-77.434814, 36.711633], [-77.435724, 36.711473], [-77.436974, 36.710992], [-77.438083, 36.710741], [-77.439532, 36.709985], [-77.439873, 36.710031], [-77.439987, 36.710123], [-77.439959, 36.710535], [-77.439675, 36.710878], [-77.439078, 36.71129], [-77.439049, 36.711656], [-77.439504, 36.711953], [-77.439981, 36.711981], [-77.440744, 36.711768], [-77.441067, 36.711679], [-77.441124, 36.71161], [-77.442119, 36.711381], [-77.442773, 36.711381], [-77.447121, 36.71193], [-77.447917, 36.71225], [-77.448912, 36.712822], [-77.449395, 36.713005], [-77.449735, 36.713028], [-77.449822, 36.71312], [-77.450959, 36.713302], [-77.451226, 36.713407], [-77.45184, 36.713646], [-77.452352, 36.713829], [-77.452977, 36.713714], [-77.453687, 36.713348], [-77.454341, 36.713187], [-77.454995, 36.713164], [-77.455536, 36.71337], [-77.455991, 36.713805], [-77.456417, 36.714606], [-77.456759, 36.71488], [-77.457213, 36.714995], [-77.458976, 36.715177], [-77.460113, 36.715406], [-77.463296, 36.715291], [-77.46466, 36.715085], [-77.467304, 36.715221], [-77.46773, 36.715381], [-77.468811, 36.716113], [-77.469465, 36.716822], [-77.469892, 36.717692], [-77.470375, 36.718332], [-77.471313, 36.718996], [-77.472508, 36.719384], [-77.473303, 36.71927], [-77.474014, 36.719041], [-77.474582, 36.719086], [-77.47572, 36.719749], [-77.476289, 36.719726], [-77.477369, 36.719566], [-77.478705, 36.719634], [-77.479359, 36.719862], [-77.481037, 36.720869], [-77.481862, 36.721669], [-77.482402, 36.721875], [-77.483596, 36.722058], [-77.48425, 36.72192], [-77.485188, 36.721462], [-77.486495, 36.72153], [-77.487177, 36.721484], [-77.48749, 36.721392], [-77.488257, 36.720843], [-77.48874, 36.720659], [-77.489422, 36.72075], [-77.490001, 36.721016], [-77.489028, 36.725533], [-77.487739, 36.731198], [-77.487015, 36.734446], [-77.486165, 36.73823], [-77.48472, 36.744758], [-77.483566, 36.750156], [-77.483211, 36.751719], [-77.483031, 36.752536], [-77.482227, 36.756078], [-77.482142, 36.756453], [-77.482041, 36.756901], [-77.481163, 36.760811], [-77.480894, 36.76206], [-77.480263, 36.765029], [-77.480213, 36.765274], [-77.480206, 36.765305], [-77.480112, 36.765743], [-77.480036, 36.766103], [-77.47998, 36.766316], [-77.479925, 36.766553], [-77.479468, 36.768562], [-77.478587, 36.772433], [-77.478191, 36.774173], [-77.476565, 36.781371], [-77.476532, 36.781519], [-77.476454, 36.781885], [-77.476289, 36.782625], [-77.47586, 36.784582], [-77.47556, 36.785954], [-77.475395, 36.786706], [-77.475386, 36.786745], [-77.475384, 36.786755], [-77.474134, 36.792467], [-77.474127, 36.7925], [-77.473521, 36.795265], [-77.472834, 36.798399], [-77.472751, 36.798777], [-77.472432, 36.800229], [-77.472287, 36.800847], [-77.471821, 36.802859], [-77.471806, 36.802921], [-77.471449, 36.804472], [-77.471213, 36.805486], [-77.471004, 36.806372], [-77.470981, 36.806488], [-77.470909, 36.806804], [-77.470439, 36.808897], [-77.470277, 36.809592], [-77.470139, 36.810186], [-77.470127, 36.810239], [-77.469982, 36.810863], [-77.469501, 36.812945], [-77.469078, 36.814792], [-77.468758, 36.816206], [-77.467469, 36.821791], [-77.467429, 36.821971], [-77.466857, 36.82466], [-77.466578, 36.825964], [-77.465968, 36.828811], [-77.462429, 36.845386], [-77.461473, 36.849877], [-77.461469, 36.849894], [-77.461455, 36.84996], [-77.459501, 36.85911], [-77.458938, 36.861765], [-77.458915, 36.861872], [-77.45868, 36.86297], [-77.45905, 36.862878], [-77.459516, 36.862669], [-77.466254, 36.861366], [-77.46782, 36.861228], [-77.471263, 36.861651], [-77.472462, 36.861799], [-77.473146, 36.861684], [-77.475196, 36.861134], [-77.475632, 36.86091], [-77.475822, 36.860813], [-77.476505, 36.860241], [-77.477445, 36.859943], [-77.477758, 36.859714], [-77.478071, 36.859142], [-77.478583, 36.858684], [-77.479494, 36.858272], [-77.482199, 36.85644], [-77.484533, 36.854425], [-77.486184, 36.853349], [-77.486211, 36.853142], [-77.487847, 36.851003], [-77.489629, 36.849505], [-77.491245, 36.848481], [-77.493142, 36.847736], [-77.493169, 36.847726], [-77.493728, 36.847508], [-77.497, 36.846613], [-77.499706, 36.845574], [-77.501222, 36.845084], [-77.503272, 36.84504], [-77.503841, 36.845109], [-77.504781, 36.845224], [-77.505977, 36.845248], [-77.508768, 36.84502], [-77.509053, 36.844997], [-77.509878, 36.844997], [-77.510362, 36.845089], [-77.511102, 36.845547], [-77.512184, 36.846783], [-77.513208, 36.847402], [-77.514489, 36.847951], [-77.518503, 36.849188], [-77.519917, 36.849418], [-77.520221, 36.849468], [-77.520453, 36.849506], [-77.52061, 36.849532], [-77.523684, 36.850426], [-77.525934, 36.850884], [-77.526702, 36.85125], [-77.528639, 36.852372], [-77.529778, 36.852853], [-77.531031, 36.852944], [-77.53365, 36.852716], [-77.536583, 36.852785], [-77.539003, 36.853037], [-77.54037, 36.8529], [-77.541224, 36.852763], [-77.541765, 36.852763], [-77.543075, 36.853107], [-77.543417, 36.853084], [-77.544698, 36.852924], [-77.544801, 36.852893], [-77.545723, 36.852626], [-77.546321, 36.852329], [-77.548141, 36.850935], [-77.549401, 36.850216], [-77.549896, 36.849933], [-77.551475, 36.849034], [-77.552187, 36.848348], [-77.552813, 36.847181], [-77.553725, 36.846242], [-77.55532, 36.845579], [-77.5568, 36.845464], [-77.55754, 36.845579], [-77.560729, 36.847043], [-77.560997, 36.847202], [-77.562155, 36.847887], [-77.562442, 36.848057], [-77.56277, 36.848252], [-77.564149, 36.848899], [-77.564247, 36.848977], [-77.565854, 36.850407], [-77.566224, 36.850864], [-77.566338, 36.851276], [-77.566367, 36.852329], [-77.56668, 36.852809], [-77.567278, 36.853107], [-77.568019, 36.85329], [-77.568466, 36.853172], [-77.571521, 36.852077], [-77.57246, 36.851573], [-77.572916, 36.851459], [-77.573029, 36.851275], [-77.573627, 36.851024], [-77.574616, 36.850994], [-77.576279, 36.851518], [-77.576447, 36.851572], [-77.577323, 36.852412], [-77.577359, 36.852739], [-77.577827, 36.852977], [-77.578897, 36.854206], [-77.579096, 36.854432], [-77.579239, 36.855302], [-77.579537, 36.855681], [-77.57978, 36.855988], [-77.58015, 36.856308], [-77.580336, 36.856358], [-77.58337, 36.857183], [-77.5842, 36.85752], [-77.584883, 36.85811], [-77.585401, 36.858455], [-77.586501, 36.85919], [-77.586615, 36.85919], [-77.586643, 36.859373], [-77.586926, 36.85967], [-77.587755, 36.861135], [-77.588032, 36.862231], [-77.588097, 36.862485], [-77.588126, 36.863309], [-77.588753, 36.864384], [-77.588724, 36.864498], [-77.588924, 36.864681], [-77.589095, 36.865048], [-77.590348, 36.866329], [-77.590861, 36.866717], [-77.591374, 36.867381], [-77.591517, 36.867747], [-77.592144, 36.868456], [-77.592942, 36.868936], [-77.594053, 36.869966], [-77.594339, 36.870675], [-77.594737, 36.871087], [-77.595991, 36.871681], [-77.5977, 36.872115], [-77.599437, 36.872], [-77.600387, 36.871841], [-77.601625, 36.871624], [-77.603338, 36.871152], [-77.603708, 36.870878], [-77.604306, 36.870603], [-77.604733, 36.870648], [-77.605275, 36.870946], [-77.605319, 36.871029], [-77.60554, 36.871438], [-77.605476, 36.872354], [-77.605475, 36.872364], [-77.605361, 36.872845], [-77.604365, 36.874104], [-77.604053, 36.874666], [-77.604107, 36.875156], [-77.604189, 36.875517], [-77.606156, 36.877276], [-77.606668, 36.877414], [-77.609146, 36.877069], [-77.610712, 36.87668], [-77.61282, 36.875878], [-77.613739, 36.875844], [-77.614757, 36.876037], [-77.615343, 36.876272], [-77.615954, 36.876517], [-77.616951, 36.877066], [-77.61809, 36.877477], [-77.618489, 36.877523], [-77.618602, 36.877684], [-77.619031, 36.877851] ], [ [-76.755513, 37.354227], [-76.755479, 37.354332], [-76.755403, 37.354392], [-76.755183, 37.354518], [-76.755049, 37.354602], [-76.755041, 37.354607], [-76.754832, 37.354738], [-76.754749, 37.354809], [-76.754652, 37.354974], [-76.754501, 37.355155], [-76.754439, 37.355331], [-76.754404, 37.355737], [-76.754335, 37.355869], [-76.754191, 37.356012], [-76.753681, 37.356308], [-76.753206, 37.356506], [-76.752628, 37.356698], [-76.752243, 37.356846], [-76.752064, 37.356939], [-76.751671, 37.357225], [-76.751465, 37.357389], [-76.751258, 37.357626], [-76.750934, 37.358686], [-76.750789, 37.359103], [-76.750665, 37.3594], [-76.750513, 37.35968], [-76.750238, 37.36007], [-76.749685, 37.360599], [-76.748743, 37.360989], [-76.748165, 37.361187], [-76.747876, 37.361303], [-76.747635, 37.361429], [-76.747071, 37.361776], [-76.746893, 37.361875], [-76.746714, 37.361957], [-76.746177, 37.362282], [-76.745943, 37.362474], [-76.745826, 37.362633], [-76.745703, 37.362881], [-76.745627, 37.363183], [-76.745579, 37.363458], [-76.745552, 37.363705], [-76.745463, 37.36415], [-76.745412, 37.364352], [-76.745312, 37.364751], [-76.74531, 37.364758], [-76.745257, 37.364968], [-76.745184, 37.36514], [-76.745168, 37.365177], [-76.745065, 37.365293], [-76.744975, 37.365413], [-76.744927, 37.365622], [-76.744907, 37.365639], [-76.744865, 37.365705], [-76.744769, 37.365765], [-76.744563, 37.365831], [-76.744301, 37.365936], [-76.744074, 37.366101], [-76.743889, 37.366298], [-76.743448, 37.367281], [-76.743445, 37.367287], [-76.743264, 37.367662], [-76.743043, 37.368125], [-76.743044, 37.368201], [-76.743046, 37.368276], [-76.743046, 37.368279], [-76.743049, 37.368431], [-76.743049, 37.368436], [-76.743057, 37.368863], [-76.742835, 37.369153], [-76.742796, 37.369204], [-76.74278, 37.369225], [-76.742785, 37.369287], [-76.742804, 37.369507], [-76.742529, 37.369666], [-76.742485, 37.369716], [-76.742384, 37.369831], [-76.742247, 37.370117], [-76.742082, 37.370265], [-76.741813, 37.370403], [-76.741669, 37.370447], [-76.74138, 37.370453], [-76.741139, 37.370557], [-76.741029, 37.370574], [-76.740974, 37.370568], [-76.74076, 37.370508], [-76.740698, 37.370508], [-76.740581, 37.37053], [-76.740403, 37.370607], [-76.740258, 37.37064], [-76.739907, 37.370624], [-76.739721, 37.37064], [-76.739556, 37.370684], [-76.739033, 37.370932], [-76.738827, 37.370992], [-76.737829, 37.371092], [-76.737457, 37.371191], [-76.737285, 37.371218], [-76.737023, 37.371229], [-76.736397, 37.371213], [-76.736067, 37.371235], [-76.735909, 37.371263], [-76.735792, 37.371301], [-76.735042, 37.371604], [-76.73478, 37.371648], [-76.734473, 37.37165], [-76.734023, 37.371653], [-76.733851, 37.371648], [-76.733686, 37.371665], [-76.733562, 37.371654], [-76.73328, 37.371665], [-76.732639, 37.37166], [-76.731972, 37.371632], [-76.731566, 37.371605], [-76.730313, 37.371567], [-76.729962, 37.371523], [-76.729535, 37.371386], [-76.72926, 37.371375], [-76.729087, 37.371326], [-76.728791, 37.371178], [-76.728688, 37.371145], [-76.728468, 37.371112], [-76.728014, 37.371128], [-76.727787, 37.371167], [-76.727408, 37.371233], [-76.727105, 37.371255], [-76.726899, 37.371233], [-76.726733, 37.371184], [-76.726713, 37.371162], [-76.726665, 37.371145], [-76.726417, 37.370997], [-76.726307, 37.370964], [-76.726217, 37.370953], [-76.725871, 37.370614], [-76.725513, 37.369477], [-76.725211, 37.369078], [-76.724199, 37.369023], [-76.724012, 37.369034], [-76.722022, 37.36915], [-76.721298, 37.369192], [-76.719825, 37.36921], [-76.719644, 37.369131], [-76.719543, 37.369087], [-76.719443, 37.369043], [-76.718933, 37.368818], [-76.718465, 37.367924], [-76.718409, 37.367817], [-76.718085, 37.36749], [-76.717779, 37.36718], [-76.717294, 37.366689], [-76.716657, 37.366428], [-76.716491, 37.366462], [-76.715975, 37.366569], [-76.715849, 37.366584], [-76.715625, 37.366578], [-76.715423, 37.366573], [-76.715336, 37.366555], [-76.715264, 37.36654], [-76.71514, 37.366485], [-76.715092, 37.366448], [-76.71501, 37.366386], [-76.714858, 37.366188], [-76.714762, 37.366128], [-76.714631, 37.366095], [-76.714473, 37.366084], [-76.714177, 37.366117], [-76.713805, 37.366057], [-76.713027, 37.366024], [-76.712387, 37.366013], [-76.712208, 37.36598], [-76.71205, 37.365898], [-76.711926, 37.365783], [-76.711898, 37.365766], [-76.711713, 37.365717], [-76.711615, 37.36571], [-76.71154, 37.365706], [-76.711437, 37.365678], [-76.711162, 37.365673], [-76.710701, 37.365756], [-76.710584, 37.365745], [-76.710391, 37.365679], [-76.710212, 37.365558], [-76.709964, 37.365305], [-76.709833, 37.365201], [-76.709703, 37.365173], [-76.709558, 37.365168], [-76.709131, 37.365245], [-76.708719, 37.36525], [-76.708588, 37.365322], [-76.708471, 37.365349], [-76.70834, 37.365333], [-76.708264, 37.365338], [-76.708079, 37.365421], [-76.707975, 37.365415], [-76.707803, 37.365366], [-76.707693, 37.365355], [-76.707617, 37.365388], [-76.707583, 37.365421], [-76.707473, 37.365586], [-76.707432, 37.365613], [-76.707356, 37.365641], [-76.707308, 37.365619], [-76.707081, 37.365564], [-76.706785, 37.365454], [-76.706613, 37.365465], [-76.706351, 37.365592], [-76.706241, 37.365624], [-76.706151, 37.365608], [-76.706034, 37.365531], [-76.70589, 37.365377], [-76.705731, 37.365262], [-76.705663, 37.365224], [-76.705546, 37.365196], [-76.70536, 37.365207], [-76.70514, 37.365301], [-76.705002, 37.365389], [-76.704946, 37.365487], [-76.705025, 37.365786], [-76.704981, 37.365892], [-76.704814, 37.365945], [-76.704516, 37.365948], [-76.704076, 37.365867], [-76.703806, 37.365958], [-76.703523, 37.366046], [-76.703282, 37.366041], [-76.703076, 37.365944], [-76.702929, 37.3659], [-76.702629, 37.365982], [-76.701961, 37.366225], [-76.701644, 37.366293], [-76.701451, 37.366395], [-76.701302, 37.366454], [-76.701142, 37.366463], [-76.700928, 37.366374], [-76.700801, 37.36627], [-76.700426, 37.366148], [-76.700211, 37.366038], [-76.700102, 37.365926], [-76.700117, 37.36582], [-76.70021, 37.365585], [-76.700216, 37.365479], [-76.700091, 37.365452], [-76.699907, 37.36554], [-76.699683, 37.365826], [-76.699428, 37.366311], [-76.699383, 37.366637], [-76.69944, 37.366827], [-76.699764, 37.367049], [-76.700003, 37.367427], [-76.699921, 37.367704], [-76.698751, 37.368089], [-76.698336, 37.368166], [-76.697938, 37.3682], [-76.697732, 37.368118], [-76.697815, 37.367869], [-76.69815, 37.36739], [-76.69842, 37.36716], [-76.698638, 37.367008], [-76.698794, 37.366872], [-76.698783, 37.366759], [-76.698603, 37.366641], [-76.698196, 37.366307], [-76.697887, 37.365937], [-76.697416, 37.365894], [-76.697116, 37.365934], [-76.695965, 37.366007], [-76.695613, 37.365949], [-76.695394, 37.365592], [-76.695128, 37.365282], [-76.694799, 37.365141], [-76.694502, 37.365169], [-76.694323, 37.365332], [-76.694281, 37.365578], [-76.694385, 37.365959], [-76.69439, 37.366158], [-76.69421, 37.36626], [-76.693807, 37.366243], [-76.693557, 37.366208], [-76.693148, 37.366382], [-76.69281, 37.366693], [-76.692652, 37.366902], [-76.692586, 37.366979], [-76.692519, 37.367057], [-76.692584, 37.367214], [-76.692749, 37.367249], [-76.693007, 37.367208], [-76.693249, 37.367152], [-76.69331, 37.367132], [-76.693609, 37.367045], [-76.693865, 37.366952], [-76.69413, 37.366839], [-76.694426, 37.36682], [-76.694475, 37.366932], [-76.694447, 37.367009], [-76.694413, 37.367101], [-76.694276, 37.367272], [-76.69405, 37.367466], [-76.694004, 37.367517], [-76.693959, 37.367569], [-76.693807, 37.367725], [-76.693673, 37.367813], [-76.693522, 37.367973], [-76.693326, 37.368054], [-76.693138, 37.368042], [-76.692962, 37.367928], [-76.692812, 37.367732], [-76.692744, 37.367667], [-76.692677, 37.367602], [-76.692586, 37.367545], [-76.692496, 37.367489], [-76.692407, 37.367475], [-76.692337, 37.367465], [-76.692318, 37.367462], [-76.692267, 37.367454], [-76.69187, 37.367419], [-76.691513, 37.367405], [-76.691119, 37.367422], [-76.690958, 37.367383], [-76.690774, 37.367367], [-76.690656, 37.367339], [-76.690612, 37.367249], [-76.690619, 37.367148], [-76.690696, 37.367035], [-76.690836, 37.366973], [-76.691191, 37.366889], [-76.691556, 37.366827], [-76.691813, 37.366764], [-76.691975, 37.366671], [-76.69208, 37.366516], [-76.692346, 37.366021], [-76.692441, 37.365769], [-76.692376, 37.365604], [-76.692118, 37.365598], [-76.691939, 37.365776], [-76.691758, 37.365876], [-76.691539, 37.365997], [-76.691202, 37.365949], [-76.690974, 37.365917], [-76.69075, 37.365858], [-76.690728, 37.365852], [-76.690544, 37.365865], [-76.690435, 37.365915], [-76.690404, 37.366179], [-76.690428, 37.366697], [-76.690249, 37.366895], [-76.69008, 37.367035], [-76.689643, 37.367217], [-76.689377, 37.367367], [-76.689271, 37.367525], [-76.689386, 37.367748], [-76.689601, 37.368039], [-76.689891, 37.368416], [-76.690032, 37.368678], [-76.689974, 37.368845], [-76.68977, 37.369043], [-76.689441, 37.369097], [-76.689283, 37.369177], [-76.68914, 37.369336], [-76.689046, 37.369533], [-76.688858, 37.369526], [-76.688344, 37.369357], [-76.687335, 37.369137], [-76.687076, 37.369092], [-76.686806, 37.369056], [-76.686475, 37.369032], [-76.686183, 37.369114], [-76.685956, 37.369371], [-76.685887, 37.369588], [-76.685657, 37.369718], [-76.684643, 37.36982], [-76.68358, 37.369972], [-76.683361, 37.370015], [-76.683091, 37.369989], [-76.682904, 37.369845], [-76.682895, 37.369811], [-76.682864, 37.369689], [-76.682856, 37.369337], [-76.683044, 37.368425], [-76.683089, 37.368259], [-76.68316, 37.368179], [-76.683376, 37.367961], [-76.683435, 37.367843], [-76.683419, 37.367667], [-76.683218, 37.367465], [-76.682958, 37.367332], [-76.682242, 37.367097], [-76.681494, 37.367049], [-76.681048, 37.36685], [-76.680591, 37.366681], [-76.680297, 37.366656], [-76.680015, 37.366669], [-76.679848, 37.366867], [-76.679848, 37.367405], [-76.679662, 37.367848], [-76.67929, 37.368195], [-76.678711, 37.368585], [-76.678385, 37.368814], [-76.677982, 37.368888], [-76.676938, 37.368971], [-76.676491, 37.369007], [-76.676053, 37.369034], [-76.675684, 37.369003], [-76.675622, 37.368963], [-76.675437, 37.368842], [-76.675258, 37.36858], [-76.675112, 37.368365], [-76.675055, 37.368219], [-76.674966, 37.367992], [-76.674794, 37.367792], [-76.674243, 37.367597], [-76.674153, 37.367603], [-76.67399, 37.367613], [-76.673937, 37.367617], [-76.673828, 37.367624], [-76.673637, 37.367636], [-76.673613, 37.367638], [-76.673188, 37.367863], [-76.673182, 37.367866], [-76.67311, 37.367904], [-76.673099, 37.36791], [-76.67309, 37.367915], [-76.673049, 37.367936], [-76.673029, 37.367947], [-76.672971, 37.368017], [-76.67289, 37.368116], [-76.672754, 37.36828], [-76.672538, 37.368543], [-76.672533, 37.368549], [-76.672479, 37.368614], [-76.672164, 37.368997], [-76.671714, 37.369376], [-76.671707, 37.369382], [-76.671661, 37.369421], [-76.671608, 37.369465], [-76.670826, 37.370135], [-76.670765, 37.370187], [-76.670704, 37.37024], [-76.664973, 37.375151], [-76.658653, 37.380146], [-76.654401, 37.377462], [-76.650738, 37.375151], [-76.650509, 37.374989], [-76.650093, 37.374693], [-76.649675, 37.374397], [-76.649522, 37.374289], [-76.648128, 37.372426], [-76.648057, 37.372331], [-76.647455, 37.371529], [-76.646972, 37.370779], [-76.646707, 37.370367], [-76.64516, 37.367964], [-76.644846, 37.367457], [-76.644385, 37.366714], [-76.642949, 37.364398], [-76.642778, 37.36411], [-76.641746, 37.362379], [-76.641277, 37.361592], [-76.640802, 37.360794], [-76.640264, 37.359891], [-76.639652, 37.358864], [-76.639307, 37.35839], [-76.637279, 37.355602], [-76.63533, 37.353598], [-76.63354, 37.351758], [-76.632435, 37.350623], [-76.632129, 37.350259], [-76.629382, 37.346998], [-76.628518, 37.345791], [-76.626664, 37.343202], [-76.624678, 37.340321], [-76.623519, 37.339175], [-76.623486, 37.339145], [-76.621491, 37.337314], [-76.619921, 37.336067], [-76.619625, 37.335832], [-76.618092, 37.334632], [-76.616327, 37.333094], [-76.615066, 37.331595], [-76.613481, 37.329686], [-76.612249, 37.327914], [-76.611683, 37.32669], [-76.611061, 37.325663], [-76.610531, 37.324789], [-76.608974, 37.322862], [-76.607252, 37.32093], [-76.606196, 37.31981], [-76.604942, 37.318481], [-76.602852, 37.316239], [-76.602621, 37.315992], [-76.600756, 37.314083], [-76.600715, 37.314045], [-76.599386, 37.312798], [-76.599229, 37.312651], [-76.598497, 37.312071], [-76.597765, 37.31149], [-76.59745, 37.311239], [-76.597134, 37.310989], [-76.59682, 37.310741], [-76.596506, 37.310492], [-76.596011, 37.310099], [-76.595516, 37.309707], [-76.595416, 37.309628], [-76.59537, 37.309591], [-76.595225, 37.309476], [-76.59075, 37.305929], [-76.588957, 37.304599], [-76.586199, 37.302686], [-76.585981, 37.302535], [-76.583411, 37.301031], [-76.580109, 37.299255], [-76.576733, 37.296903], [-76.575783, 37.295977], [-76.5735, 37.293751], [-76.571401, 37.290887], [-76.57126, 37.290695], [-76.56998, 37.289111], [-76.568812, 37.287991], [-76.566604, 37.286359], [-76.564805, 37.285352], [-76.563916, 37.284855], [-76.56126, 37.283543], [-76.557212, 37.282359], [-76.555053, 37.281595], [-76.554917, 37.281547], [-76.554851, 37.281523], [-76.554646, 37.281451], [-76.553324, 37.280983], [-76.551156, 37.279918], [-76.549612, 37.279159], [-76.546653, 37.277524], [-76.546308, 37.277333], [-76.545964, 37.277143], [-76.545791, 37.277061], [-76.544684, 37.276535], [-76.542351, 37.2751], [-76.542108, 37.274951], [-76.539691, 37.273335], [-76.536412, 37.271126], [-76.533468, 37.268234], [-76.53317, 37.267941], [-76.533081, 37.267854], [-76.533072, 37.267845], [-76.532694, 37.267473], [-76.532635, 37.267415], [-76.530091, 37.264599], [-76.529505, 37.263768], [-76.529267, 37.263431], [-76.529029, 37.263093], [-76.528523, 37.262375], [-76.526894, 37.260541], [-76.525693, 37.259425], [-76.524492, 37.25831], [-76.524459, 37.258279], [-76.522911, 37.256933], [-76.521755, 37.255927], [-76.520283, 37.254583], [-76.518811, 37.252663], [-76.517131, 37.250183], [-76.516884, 37.249862], [-76.516491, 37.249351], [-76.516059, 37.248759], [-76.515925, 37.248657], [-76.515791, 37.248554], [-76.514717, 37.247736], [-76.512591, 37.246377], [-76.510129, 37.245082], [-76.50698, 37.243596], [-76.506423, 37.243434], [-76.506314, 37.243399], [-76.501941, 37.241763], [-76.499252, 37.241111], [-76.498874, 37.241015], [-76.497753, 37.240738], [-76.49577, 37.240247], [-76.491034, 37.239223], [-76.488138, 37.238455], [-76.486553, 37.23808], [-76.484959, 37.237721], [-76.483948, 37.237488], [-76.482938, 37.237255], [-76.480804, 37.236711], [-76.48017, 37.236549], [-76.479525, 37.236384], [-76.478361, 37.236086], [-76.473782, 37.234936], [-76.471946, 37.234464], [-76.468921, 37.233878], [-76.465359, 37.233552], [-76.464073, 37.233542], [-76.460339, 37.233368], [-76.459385, 37.233323], [-76.455192, 37.233623], [-76.452568, 37.233814], [-76.446872, 37.234598], [-76.441523, 37.235645], [-76.436268, 37.236679], [-76.430428, 37.237835], [-76.425139, 37.238894], [-76.413543, 37.241173], [-76.410866, 37.241443], [-76.409094, 37.241621], [-76.405345, 37.241716], [-76.404068, 37.241761], [-76.383023, 37.247762], [-76.377819, 37.249247], [-76.374669, 37.250148], [-76.372532, 37.251007], [-76.371772, 37.251313], [-76.357837, 37.256918], [-76.304502, 37.278368], [-76.249663, 37.278995], [-76.136303, 37.282144], [-76.136141, 37.26405], [-76.136016, 37.250145], [-76.135862, 37.232025], [-76.135859, 37.231628], [-76.13555, 37.195344], [-76.135522, 37.191977], [-76.249663, 37.191023], [-76.330437, 37.190991], [-76.330419, 37.197845], [-76.344302, 37.191063], [-76.354451, 37.186106], [-76.355448, 37.185619], [-76.355491, 37.185598], [-76.355537, 37.185576], [-76.355768, 37.185463], [-76.355823, 37.185436], [-76.355855, 37.18542], [-76.355986, 37.185356], [-76.356444, 37.185132], [-76.357534, 37.1846], [-76.357859, 37.184441], [-76.358303, 37.184224], [-76.358492, 37.184132], [-76.358513, 37.184122], [-76.358624, 37.184068], [-76.359509, 37.183636], [-76.360393, 37.183204], [-76.362145, 37.182348], [-76.362168, 37.182337], [-76.362246, 37.182299], [-76.362253, 37.182295], [-76.362277, 37.182283], [-76.36229, 37.182277], [-76.363551, 37.181661], [-76.364532, 37.181182], [-76.368672, 37.17916], [-76.3776, 37.174799], [-76.386529, 37.170437], [-76.387286, 37.170067], [-76.389185, 37.169139], [-76.391675, 37.167923], [-76.39239, 37.167574], [-76.392892, 37.167286], [-76.3944, 37.166421], [-76.396656, 37.165128], [-76.397891, 37.164419], [-76.399214, 37.163659], [-76.399799, 37.163322], [-76.40044, 37.162954], [-76.400528, 37.162905], [-76.400536, 37.1629], [-76.400709, 37.162801], [-76.40074, 37.162783], [-76.403161, 37.161394], [-76.403222, 37.161359], [-76.403242, 37.161347], [-76.403612, 37.161135], [-76.403631, 37.161124], [-76.403637, 37.161121], [-76.403651, 37.161113], [-76.403684, 37.161094], [-76.403794, 37.161031], [-76.403961, 37.160935], [-76.404407, 37.160681], [-76.404853, 37.160424], [-76.404882, 37.160407], [-76.405064, 37.160302], [-76.405147, 37.160255], [-76.405156, 37.16025], [-76.405223, 37.160212], [-76.405245, 37.160199], [-76.405416, 37.160102], [-76.405586, 37.160005], [-76.40589, 37.159829], [-76.405997, 37.159768], [-76.4061, 37.159708], [-76.406106, 37.159705], [-76.406113, 37.159701], [-76.406165, 37.159671], [-76.406174, 37.159666], [-76.406176, 37.159665], [-76.406236, 37.159631], [-76.406528, 37.159463], [-76.409236, 37.157909], [-76.412887, 37.155815], [-76.412599, 37.151559], [-76.412053, 37.149417], [-76.411889, 37.148773], [-76.411735, 37.148167], [-76.411914, 37.147644], [-76.412295, 37.146535], [-76.412266, 37.146142], [-76.41225, 37.145916], [-76.412215, 37.145431], [-76.412439, 37.144519], [-76.412486, 37.144369], [-76.412653, 37.143828], [-76.412727, 37.143591], [-76.412835, 37.143072], [-76.412864, 37.142931], [-76.412887, 37.142823], [-76.413031, 37.142167], [-76.413052, 37.141958], [-76.413084, 37.14166], [-76.413115, 37.141362], [-76.413128, 37.141233], [-76.41314, 37.141105], [-76.413176, 37.140753], [-76.413192, 37.140599], [-76.413181, 37.140081], [-76.413176, 37.139831], [-76.41338, 37.139337], [-76.413672, 37.138631], [-76.413661, 37.138377], [-76.413654, 37.138258], [-76.413648, 37.138139], [-76.41364, 37.137975], [-76.413624, 37.137951], [-76.413541, 37.137822], [-76.413262, 37.137385], [-76.413258, 37.13738], [-76.412824, 37.136826], [-76.412515, 37.136441], [-76.412337, 37.136226], [-76.412103, 37.135956], [-76.411686, 37.13578], [-76.411399, 37.135645], [-76.411196, 37.135442], [-76.410974, 37.135219], [-76.410574, 37.13481], [-76.41047, 37.134609], [-76.410408, 37.134109], [-76.410393, 37.134082], [-76.410375, 37.13405], [-76.41037, 37.134041], [-76.410367, 37.134036], [-76.410338, 37.133985], [-76.410268, 37.13386], [-76.410216, 37.133767], [-76.410184, 37.133709], [-76.410119, 37.133591], [-76.410436, 37.132781], [-76.410488, 37.132647], [-76.410613, 37.132513], [-76.410618, 37.132508], [-76.410651, 37.132472], [-76.410792, 37.132321], [-76.410844, 37.132267], [-76.41085, 37.132261], [-76.410872, 37.132238], [-76.410884, 37.132225], [-76.41089, 37.132218], [-76.410905, 37.132202], [-76.410946, 37.132158], [-76.411063, 37.132034], [-76.411095, 37.132], [-76.411105, 37.131989], [-76.411114, 37.13198], [-76.41124, 37.131847], [-76.412024, 37.130775], [-76.413239, 37.128952], [-76.410311, 37.1254], [-76.410115, 37.125165], [-76.410121, 37.125279], [-76.410107, 37.125515], [-76.410074, 37.12575], [-76.41002, 37.126009], [-76.409857, 37.12665], [-76.40977, 37.126935], [-76.409691, 37.127134], [-76.409627, 37.127256], [-76.409543, 37.127383], [-76.409443, 37.127502], [-76.4094, 37.127543], [-76.409193, 37.127744], [-76.409189, 37.127748], [-76.409179, 37.127757], [-76.409163, 37.127773], [-76.409036, 37.127896], [-76.408373, 37.12854], [-76.408089, 37.128811], [-76.408074, 37.128825], [-76.407907, 37.128981], [-76.407798, 37.129087], [-76.407218, 37.12965], [-76.407129, 37.129743], [-76.407063, 37.129621], [-76.406694, 37.128932], [-76.406273, 37.128146], [-76.404957, 37.125691], [-76.403356, 37.122666], [-76.402047, 37.120196], [-76.401557, 37.119272], [-76.399684, 37.115812], [-76.399172, 37.114866], [-76.399149, 37.114823], [-76.399129, 37.114786], [-76.399121, 37.114772], [-76.399118, 37.114767], [-76.399027, 37.114599], [-76.398752, 37.114091], [-76.397978, 37.112661], [-76.397843, 37.112411], [-76.396118, 37.109224], [-76.395938, 37.108899], [-76.394531, 37.106362], [-76.394502, 37.106309], [-76.394472, 37.106255], [-76.394527, 37.106207], [-76.394642, 37.106155], [-76.394731, 37.106142], [-76.394776, 37.106144], [-76.394818, 37.106156], [-76.394856, 37.106175], [-76.394993, 37.106268], [-76.395037, 37.10633], [-76.395131, 37.10649], [-76.395328, 37.106728], [-76.39544, 37.106843], [-76.395521, 37.106925], [-76.395537, 37.106939], [-76.395755, 37.107139], [-76.395782, 37.107168], [-76.395872, 37.107248], [-76.396011, 37.107338], [-76.396077, 37.107386], [-76.396294, 37.107515], [-76.3965, 37.107586], [-76.39663, 37.107617], [-76.396752, 37.107641], [-76.396777, 37.107646], [-76.396825, 37.107655], [-76.397051, 37.107667], [-76.397263, 37.10766], [-76.397367, 37.107658], [-76.3975, 37.107636], [-76.39754, 37.107619], [-76.397574, 37.107608], [-76.397623, 37.107592], [-76.397703, 37.107558], [-76.397737, 37.107534], [-76.397795, 37.107479], [-76.397819, 37.107449], [-76.397844, 37.107381], [-76.39785, 37.107346], [-76.397851, 37.107168], [-76.397864, 37.106991], [-76.397875, 37.106921], [-76.397874, 37.106885], [-76.397895, 37.106816], [-76.397914, 37.106784], [-76.39799, 37.106695], [-76.398134, 37.10661], [-76.398175, 37.106595], [-76.39835, 37.106558], [-76.398572, 37.106526], [-76.398886, 37.106501], [-76.399151, 37.106455], [-76.399454, 37.106382], [-76.399645, 37.106287], [-76.399861, 37.106157], [-76.400138, 37.105976], [-76.400318, 37.105867], [-76.400394, 37.105829], [-76.400515, 37.105782], [-76.400813, 37.105696], [-76.400986, 37.105654], [-76.401067, 37.105623], [-76.401178, 37.105562], [-76.401207, 37.105536], [-76.401223, 37.105502], [-76.401235, 37.105432], [-76.401234, 37.105255], [-76.401226, 37.10522], [-76.401133, 37.105019], [-76.401096, 37.104954], [-76.401025, 37.104864], [-76.400916, 37.10475], [-76.400899, 37.104718], [-76.400893, 37.104682], [-76.400901, 37.104576], [-76.400928, 37.104508], [-76.401006, 37.10442], [-76.401074, 37.104373], [-76.401113, 37.104355], [-76.401335, 37.104319], [-76.401514, 37.104299], [-76.401819, 37.104231], [-76.401902, 37.104202], [-76.401981, 37.104169], [-76.402016, 37.104066], [-76.402016, 37.104061], [-76.402013, 37.10403], [-76.402004, 37.103995], [-76.401959, 37.103894], [-76.401921, 37.10383], [-76.401872, 37.10377], [-76.40184, 37.103704], [-76.401608, 37.103358], [-76.401551, 37.103261], [-76.40147, 37.103098], [-76.401447, 37.103067], [-76.401368, 37.10298], [-76.401338, 37.102954], [-76.40127, 37.102907], [-76.401193, 37.102872], [-76.401151, 37.102858], [-76.401056, 37.102846], [-76.400922, 37.10286], [-76.400883, 37.102876], [-76.400782, 37.102946], [-76.400755, 37.102975], [-76.400669, 37.1031], [-76.400537, 37.103243], [-76.400462, 37.103283], [-76.400419, 37.103294], [-76.400285, 37.10331], [-76.40015, 37.103312], [-76.400105, 37.103307], [-76.400015, 37.103308], [-76.399884, 37.103283], [-76.399755, 37.103253], [-76.399634, 37.103204], [-76.399549, 37.10318], [-76.399326, 37.103157], [-76.39928, 37.103156], [-76.399147, 37.103172], [-76.399108, 37.103189], [-76.398981, 37.103291], [-76.398958, 37.103322], [-76.398923, 37.103589], [-76.398907, 37.103711], [-76.39885, 37.103883], [-76.39879, 37.104017], [-76.398749, 37.10408], [-76.398681, 37.104171], [-76.398623, 37.104226], [-76.398587, 37.104248], [-76.398509, 37.104283], [-76.398383, 37.104323], [-76.398339, 37.10433], [-76.398293, 37.104328], [-76.398208, 37.104304], [-76.398169, 37.104286], [-76.398136, 37.104262], [-76.398049, 37.10418], [-76.397924, 37.104033], [-76.397869, 37.103977], [-76.397825, 37.103877], [-76.39781, 37.103807], [-76.397801, 37.103736], [-76.397802, 37.103701], [-76.397822, 37.103595], [-76.39789, 37.1035], [-76.397965, 37.103414], [-76.398027, 37.103362], [-76.398421, 37.103071], [-76.398441, 37.103039], [-76.39848, 37.102937], [-76.398486, 37.102902], [-76.398551, 37.102659], [-76.398624, 37.102529], [-76.398728, 37.102373], [-76.398773, 37.102272], [-76.398787, 37.102166], [-76.398781, 37.102095], [-76.398768, 37.102061], [-76.398743, 37.102032], [-76.398535, 37.101845], [-76.398285, 37.101691], [-76.398074, 37.101506], [-76.397965, 37.101392], [-76.397733, 37.10113], [-76.397685, 37.10107], [-76.39765, 37.101004], [-76.397589, 37.100909], [-76.397403, 37.100708], [-76.396936, 37.100374], [-76.396885, 37.100331], [-76.396721, 37.100193], [-76.39667, 37.100134], [-76.396656, 37.1001], [-76.396661, 37.099959], [-76.396666, 37.099923], [-76.396684, 37.09989], [-76.396712, 37.099863], [-76.396733, 37.099851], [-76.396749, 37.099842], [-76.396839, 37.099832], [-76.397064, 37.099841], [-76.397193, 37.099875], [-76.397319, 37.099913], [-76.397536, 37.099965], [-76.397712, 37.099995], [-76.397892, 37.100008], [-76.398481, 37.10003], [-76.398614, 37.100045], [-76.398657, 37.100057], [-76.398745, 37.100072], [-76.398875, 37.100101], [-76.398916, 37.100116], [-76.398991, 37.100155], [-76.39911, 37.100206], [-76.399196, 37.100229], [-76.399284, 37.100242], [-76.399329, 37.100242], [-76.399373, 37.100234], [-76.399442, 37.100188], [-76.399469, 37.100159], [-76.399485, 37.100126], [-76.399492, 37.100091], [-76.399493, 37.100056], [-76.399508, 37.099996], [-76.399475, 37.099714], [-76.399419, 37.0994], [-76.399398, 37.099368], [-76.399298, 37.099296], [-76.39926, 37.099278], [-76.399215, 37.099272], [-76.399126, 37.099268], [-76.398414, 37.099206], [-76.398341, 37.099193], [-76.39806, 37.099145], [-76.398023, 37.099125], [-76.397922, 37.099053], [-76.397897, 37.099024], [-76.397896, 37.098991], [-76.397916, 37.098959], [-76.397944, 37.098931], [-76.398031, 37.098868], [-76.398044, 37.098858], [-76.398081, 37.098838], [-76.398295, 37.098785], [-76.398474, 37.098764], [-76.398518, 37.098756], [-76.39869, 37.098711], [-76.398813, 37.098666], [-76.398886, 37.098625], [-76.39949, 37.098195], [-76.39952, 37.098168], [-76.3996, 37.098082], [-76.399701, 37.097964], [-76.399716, 37.097931], [-76.399724, 37.097825], [-76.39972, 37.09779], [-76.399709, 37.097755], [-76.399659, 37.097697], [-76.399594, 37.097647], [-76.399554, 37.097631], [-76.399511, 37.09762], [-76.399423, 37.097605], [-76.399381, 37.097592], [-76.399293, 37.097579], [-76.399248, 37.097583], [-76.399068, 37.097586], [-76.398983, 37.097608], [-76.398944, 37.097625], [-76.39886, 37.097652], [-76.398703, 37.097722], [-76.398598, 37.097788], [-76.398429, 37.097904], [-76.398184, 37.09806], [-76.398061, 37.098104], [-76.397889, 37.098149], [-76.397845, 37.098156], [-76.397665, 37.098172], [-76.397484, 37.098168], [-76.397395, 37.098157], [-76.397352, 37.098145], [-76.397328, 37.098132], [-76.397315, 37.098125], [-76.397282, 37.0981], [-76.397255, 37.098072], [-76.397244, 37.098044], [-76.397242, 37.098038], [-76.39721, 37.097898], [-76.397208, 37.097862], [-76.397218, 37.097828], [-76.397321, 37.097592], [-76.397364, 37.09753], [-76.397416, 37.097472], [-76.397508, 37.097394], [-76.397617, 37.09733], [-76.397702, 37.097305], [-76.397968, 37.097269], [-76.398057, 37.09726], [-76.398233, 37.097224], [-76.39836, 37.097188], [-76.398398, 37.097169], [-76.398461, 37.097118], [-76.398483, 37.097087], [-76.398532, 37.096951], [-76.398501, 37.096811], [-76.398483, 37.096779], [-76.398355, 37.096679], [-76.398244, 37.096619], [-76.398084, 37.096553], [-76.398046, 37.096544], [-76.397998, 37.096533], [-76.397679, 37.096401], [-76.397522, 37.096331], [-76.397491, 37.096305], [-76.39744, 37.096247], [-76.39742, 37.096215], [-76.397401, 37.096166], [-76.397412, 37.096132], [-76.397431, 37.096099], [-76.397484, 37.096042], [-76.397543, 37.095989], [-76.397598, 37.095932], [-76.397632, 37.095908], [-76.397696, 37.095883], [-76.397876, 37.095871], [-76.397965, 37.095881], [-76.398005, 37.095898], [-76.398346, 37.096071], [-76.398424, 37.096106], [-76.398535, 37.096167], [-76.398606, 37.096212], [-76.398636, 37.096239], [-76.398704, 37.096285], [-76.398952, 37.096491], [-76.399179, 37.096713], [-76.399242, 37.096763], [-76.39927, 37.096792], [-76.399405, 37.096884], [-76.399572, 37.096938], [-76.399661, 37.096945], [-76.399978, 37.09693], [-76.400067, 37.096918], [-76.400108, 37.096903], [-76.400144, 37.096882], [-76.400176, 37.096857], [-76.4002, 37.096827], [-76.400218, 37.096794], [-76.400222, 37.096759], [-76.400217, 37.096723], [-76.400155, 37.09659], [-76.40009, 37.096498], [-76.399986, 37.096382], [-76.399969, 37.096349], [-76.399955, 37.096279], [-76.399956, 37.096243], [-76.399965, 37.096208], [-76.399981, 37.096175], [-76.40003, 37.096115], [-76.40013, 37.096017], [-76.400136, 37.096011], [-76.40019, 37.095958], [-76.400226, 37.095922], [-76.400284, 37.095865], [-76.400292, 37.095858], [-76.400313, 37.09584], [-76.400377, 37.095787], [-76.400438, 37.095736], [-76.400448, 37.09573], [-76.400508, 37.095692], [-76.40054, 37.095666], [-76.400575, 37.095644], [-76.400615, 37.095627], [-76.400658, 37.095616], [-76.400717, 37.095613], [-76.400747, 37.095611], [-76.400877, 37.095642], [-76.400954, 37.095679], [-76.401035, 37.09571], [-76.401228, 37.095798], [-76.401301, 37.095839], [-76.401423, 37.095884], [-76.401557, 37.095894], [-76.401647, 37.095887], [-76.40169, 37.095875], [-76.40173, 37.095858], [-76.401764, 37.095835], [-76.401987, 37.095614], [-76.402112, 37.095513], [-76.402153, 37.095496], [-76.402377, 37.095488], [-76.402512, 37.095498], [-76.402554, 37.095512], [-76.402709, 37.095585], [-76.402752, 37.095596], [-76.402797, 37.0956], [-76.402955, 37.095593], [-76.402983, 37.095553], [-76.402971, 37.095519], [-76.402953, 37.095486], [-76.402881, 37.095396], [-76.402863, 37.095363], [-76.402861, 37.095328], [-76.402901, 37.095264], [-76.402932, 37.095238], [-76.403046, 37.09518], [-76.403167, 37.095133], [-76.403292, 37.095092], [-76.403465, 37.095055], [-76.403549, 37.095028], [-76.403593, 37.095019], [-76.403755, 37.094957], [-76.403828, 37.094916], [-76.403863, 37.094852], [-76.403867, 37.094817], [-76.403847, 37.094748], [-76.403832, 37.094714], [-76.403787, 37.094652], [-76.403607, 37.094449], [-76.40359, 37.094416], [-76.403581, 37.094359], [-76.403578, 37.094341], [-76.403629, 37.094206], [-76.403678, 37.094155], [-76.403888, 37.09402], [-76.403925, 37.094001], [-76.40395, 37.093991], [-76.404084, 37.093936], [-76.404129, 37.093932], [-76.404237, 37.093997], [-76.404295, 37.094046], [-76.40445, 37.094178], [-76.404514, 37.094228], [-76.404558, 37.094236], [-76.404646, 37.094224], [-76.404679, 37.094199], [-76.404694, 37.094165], [-76.404701, 37.09413], [-76.4047, 37.09406], [-76.404684, 37.093876], [-76.404682, 37.093849], [-76.404672, 37.093778], [-76.404679, 37.093708], [-76.404708, 37.093681], [-76.404811, 37.093613], [-76.404926, 37.093559], [-76.405044, 37.093509], [-76.405132, 37.093495], [-76.405223, 37.093493], [-76.405266, 37.093503], [-76.4053, 37.093524], [-76.405332, 37.09355], [-76.405355, 37.093583], [-76.405397, 37.093643], [-76.405447, 37.093742], [-76.405492, 37.093804], [-76.405528, 37.093869], [-76.405554, 37.093936], [-76.405574, 37.093968], [-76.405586, 37.094002], [-76.405596, 37.094108], [-76.405586, 37.094248], [-76.405588, 37.094319], [-76.405582, 37.094354], [-76.40559, 37.094389], [-76.405628, 37.094419], [-76.405674, 37.094422], [-76.405808, 37.094419], [-76.405851, 37.094408], [-76.40593, 37.094375], [-76.406005, 37.094337], [-76.406047, 37.094324], [-76.40622, 37.09429], [-76.406489, 37.09426], [-76.406528, 37.094244], [-76.406558, 37.094217], [-76.406571, 37.094184], [-76.406577, 37.094149], [-76.406571, 37.094114], [-76.406541, 37.094048], [-76.406517, 37.09398], [-76.406498, 37.093875], [-76.406465, 37.093593], [-76.406468, 37.093522], [-76.406465, 37.093486], [-76.406469, 37.093416], [-76.406454, 37.093345], [-76.40643, 37.093315], [-76.406356, 37.093275], [-76.406312, 37.093268], [-76.4061, 37.093257], [-76.406086, 37.093256], [-76.405997, 37.093245], [-76.40591, 37.093228], [-76.405869, 37.093213], [-76.405797, 37.093171], [-76.405765, 37.093146], [-76.405693, 37.093104], [-76.405611, 37.093019], [-76.405609, 37.092913], [-76.405627, 37.09288], [-76.405652, 37.092851], [-76.405685, 37.092827], [-76.405728, 37.092815], [-76.405997, 37.092827], [-76.406086, 37.09282], [-76.406173, 37.0928], [-76.406245, 37.092765], [-76.406364, 37.092708], [-76.406405, 37.092692], [-76.406578, 37.092655], [-76.406622, 37.09265], [-76.406668, 37.09265], [-76.406702, 37.09267], [-76.406718, 37.092704], [-76.406723, 37.092739], [-76.40668, 37.092911], [-76.406674, 37.092982], [-76.406677, 37.093005], [-76.406689, 37.093088], [-76.406712, 37.093118], [-76.406743, 37.093144], [-76.406786, 37.093155], [-76.406964, 37.093172], [-76.407099, 37.09316], [-76.407365, 37.093128], [-76.407496, 37.093104], [-76.407667, 37.093063], [-76.407755, 37.093049], [-76.407792, 37.093029], [-76.40789, 37.092955], [-76.407908, 37.092923], [-76.40791, 37.092887], [-76.407893, 37.092818], [-76.407837, 37.092763], [-76.407803, 37.092739], [-76.407764, 37.092722], [-76.407677, 37.092704], [-76.407638, 37.092687], [-76.407539, 37.092628], [-76.407494, 37.092601], [-76.407307, 37.092449], [-76.407303, 37.092377], [-76.407308, 37.092342], [-76.40732, 37.092308], [-76.40734, 37.092276], [-76.407427, 37.092195], [-76.407495, 37.092148], [-76.407699, 37.092076], [-76.407833, 37.092061], [-76.407909, 37.092067], [-76.407955, 37.092101], [-76.407979, 37.092131], [-76.408072, 37.092395], [-76.408088, 37.092439], [-76.408108, 37.092471], [-76.408199, 37.092549], [-76.408272, 37.09259], [-76.408397, 37.092632], [-76.408594, 37.092715], [-76.408727, 37.092736], [-76.408772, 37.092739], [-76.408859, 37.092754], [-76.408939, 37.092785], [-76.408979, 37.092786], [-76.40904, 37.092786], [-76.409115, 37.092599], [-76.409527, 37.092231], [-76.409527, 37.092126], [-76.409451, 37.092044], [-76.409479, 37.091923], [-76.409541, 37.091901], [-76.409616, 37.091912], [-76.410432, 37.092335], [-76.410508, 37.092434], [-76.410459, 37.092654], [-76.41048, 37.092704], [-76.410665, 37.092726], [-76.410789, 37.092704], [-76.410905, 37.092621], [-76.410988, 37.092599], [-76.411049, 37.092621], [-76.411097, 37.092868], [-76.411255, 37.09289], [-76.411475, 37.092819], [-76.411797, 37.092808], [-76.411975, 37.092852], [-76.412176, 37.092961], [-76.412311, 37.093034], [-76.412544, 37.093149], [-76.41258, 37.09322], [-76.412648, 37.093353], [-76.412675, 37.093407], [-76.412853, 37.09355], [-76.413017, 37.093539], [-76.413237, 37.093429], [-76.413559, 37.093407], [-76.413676, 37.09355], [-76.413744, 37.093583], [-76.41382, 37.093594], [-76.414087, 37.09355], [-76.414156, 37.093561], [-76.414286, 37.093622], [-76.414526, 37.093633], [-76.414979, 37.093594], [-76.415015, 37.093589], [-76.415834, 37.093485], [-76.4166, 37.093388], [-76.420967, 37.092827], [-76.425253, 37.092277], [-76.425384, 37.092261], [-76.425419, 37.092285], [-76.425453, 37.092308], [-76.425498, 37.092339], [-76.425507, 37.092345], [-76.425512, 37.092348], [-76.425521, 37.092354], [-76.425652, 37.092441], [-76.427248, 37.093527], [-76.42881, 37.094589], [-76.430371, 37.095652], [-76.4308, 37.095588], [-76.431228, 37.095525], [-76.432939, 37.095271], [-76.43465, 37.095018], [-76.434826, 37.094992], [-76.435003, 37.094966], [-76.435117, 37.094949], [-76.435158, 37.094943], [-76.435262, 37.094927], [-76.435521, 37.094889], [-76.43853, 37.094443], [-76.440426, 37.094162], [-76.440683, 37.094124], [-76.441688, 37.093976], [-76.450504, 37.096648], [-76.451472, 37.098152], [-76.45434, 37.098694], [-76.455172, 37.098852], [-76.45836, 37.100582], [-76.458518, 37.100668], [-76.458673, 37.100752], [-76.463385, 37.103608], [-76.464073, 37.104852], [-76.466673, 37.107152], [-76.467388, 37.10799], [-76.467772, 37.10844], [-76.468326, 37.10909], [-76.468518, 37.109315], [-76.469156, 37.110063], [-76.469528, 37.110499], [-76.46977, 37.110782], [-76.469846, 37.110871], [-76.470068, 37.111132], [-76.47095, 37.112165], [-76.47096, 37.112177], [-76.470972, 37.112192], [-76.471046, 37.112279], [-76.47112, 37.112365], [-76.47125, 37.112517], [-76.471562, 37.112883], [-76.471638, 37.112972], [-76.471695, 37.113039], [-76.472028, 37.113429], [-76.472116, 37.113532], [-76.472172, 37.113598], [-76.473075, 37.114657], [-76.47319, 37.114858], [-76.473307, 37.115016], [-76.473337, 37.115056], [-76.473352, 37.115071], [-76.473505, 37.115231], [-76.473832, 37.115544], [-76.473871, 37.11559], [-76.47398, 37.115725], [-76.474036, 37.115836], [-76.474282, 37.116327], [-76.474308, 37.116361], [-76.481239, 37.125448], [-76.482347, 37.125689], [-76.482507, 37.125726], [-76.482531, 37.12574], [-76.482165, 37.125932], [-76.481742, 37.126154], [-76.482575, 37.127153], [-76.482627, 37.127216], [-76.484621, 37.128723], [-76.48577, 37.129592], [-76.486124, 37.130046], [-76.486245, 37.130202], [-76.48625, 37.130208], [-76.486674, 37.130752], [-76.486915, 37.131048], [-76.487541, 37.131818], [-76.491834, 37.137097], [-76.492818, 37.138307], [-76.496584, 37.142939], [-76.496709, 37.143092], [-76.49673, 37.143118], [-76.498392, 37.145161], [-76.500056, 37.147207], [-76.500264, 37.147453], [-76.50027, 37.14746], [-76.500313, 37.147511], [-76.50357, 37.151237], [-76.50456, 37.15237], [-76.506012, 37.154032], [-76.506103, 37.154136], [-76.506243, 37.154295], [-76.505179, 37.155456], [-76.504879, 37.155788], [-76.504465, 37.156249], [-76.505583, 37.157265], [-76.504903, 37.158017], [-76.504455, 37.158513], [-76.507202, 37.162215], [-76.5079, 37.163155], [-76.508001, 37.163297], [-76.510615, 37.167012], [-76.511593, 37.168402], [-76.514169, 37.172082], [-76.514872, 37.17308], [-76.514987, 37.173231], [-76.515104, 37.173192], [-76.515069, 37.173347], [-76.515058, 37.173402], [-76.51501, 37.173707], [-76.514944, 37.174415], [-76.514882, 37.174752], [-76.514804, 37.175241], [-76.514779, 37.17541], [-76.514768, 37.175568], [-76.514775, 37.175726], [-76.514806, 37.175914], [-76.514852, 37.176067], [-76.5149, 37.176188], [-76.514963, 37.176312], [-76.515057, 37.176462], [-76.515166, 37.176605], [-76.515264, 37.176714], [-76.515773, 37.17737], [-76.516157, 37.177955], [-76.516232, 37.178049], [-76.516339, 37.17816], [-76.517072, 37.17867], [-76.51716, 37.178737], [-76.517437, 37.178643], [-76.521739, 37.177243], [-76.521786, 37.177228], [-76.521988, 37.177168], [-76.522192, 37.177114], [-76.522398, 37.177068], [-76.522605, 37.177028], [-76.522814, 37.176996], [-76.523023, 37.176971], [-76.523233, 37.176953], [-76.523277, 37.17695], [-76.524108, 37.176898], [-76.524327, 37.176885], [-76.524408, 37.17688], [-76.52445, 37.176877], [-76.524734, 37.176863], [-76.524688, 37.176593], [-76.524661, 37.176433], [-76.52471, 37.176428], [-76.524914, 37.176405], [-76.524993, 37.176396], [-76.525166, 37.176628], [-76.525351, 37.176627], [-76.525626, 37.176635], [-76.525668, 37.176707], [-76.525875, 37.177052], [-76.529914, 37.181402], [-76.530351, 37.181844], [-76.530438, 37.181932], [-76.530699, 37.182198], [-76.530811, 37.182312], [-76.53246, 37.184162], [-76.532545, 37.184257], [-76.532651, 37.184376], [-76.532975, 37.184852], [-76.533707, 37.185496], [-76.534075, 37.186152], [-76.534891, 37.187032], [-76.538572, 37.191016], [-76.539194, 37.19169], [-76.53934, 37.191848], [-76.539676, 37.192252], [-76.54518, 37.19828], [-76.546376, 37.199652], [-76.553476, 37.207852], [-76.555676, 37.210254], [-76.555864, 37.210469], [-76.555952, 37.210569], [-76.556481, 37.211172], [-76.557012, 37.211779], [-76.56028, 37.215514], [-76.560394, 37.215644], [-76.560615, 37.215896], [-76.562443, 37.217986], [-76.562676, 37.218252], [-76.562895, 37.218515], [-76.563224, 37.218909], [-76.563676, 37.219452], [-76.564447, 37.220104], [-76.565094, 37.220652], [-76.56539, 37.220329], [-76.565719, 37.219969], [-76.565768, 37.219915], [-76.565838, 37.219838], [-76.566541, 37.21907], [-76.56726, 37.218161], [-76.56777, 37.21752], [-76.568002, 37.217228], [-76.568196, 37.217192], [-76.56838, 37.217153], [-76.568501, 37.217128], [-76.568694, 37.217083], [-76.568702, 37.217081], [-76.568797, 37.217059], [-76.569873, 37.21682], [-76.570074, 37.216775], [-76.570177, 37.216752], [-76.57029, 37.216525], [-76.570677, 37.215752], [-76.573977, 37.215752], [-76.574375, 37.213961], [-76.574553, 37.213162], [-76.574577, 37.213052], [-76.575076, 37.212979], [-76.57537, 37.213021], [-76.576473, 37.213087], [-76.57724, 37.213006], [-76.577506, 37.212958], [-76.579608, 37.212926], [-76.580781, 37.212905], [-76.581577, 37.212852], [-76.581581, 37.212822], [-76.581715, 37.212798], [-76.581883, 37.21276], [-76.582077, 37.212713], [-76.582317, 37.212652], [-76.58237, 37.212638], [-76.582448, 37.212607], [-76.582489, 37.212621], [-76.583125, 37.212681], [-76.584092, 37.212762], [-76.586322, 37.212972], [-76.58753, 37.213093], [-76.587651, 37.213166], [-76.588041, 37.21339], [-76.588259, 37.213515], [-76.588878, 37.213853], [-76.589381, 37.214114], [-76.589748, 37.214296], [-76.590017, 37.214429], [-76.590663, 37.214732], [-76.591485, 37.21509], [-76.591477, 37.215032], [-76.591453, 37.214861], [-76.591437, 37.214746], [-76.591434, 37.214728], [-76.591482, 37.21472], [-76.591475, 37.214682], [-76.591523, 37.214355], [-76.591638, 37.21426], [-76.591677, 37.214232], [-76.591837, 37.214424], [-76.591879, 37.214507], [-76.591919, 37.214588], [-76.592029, 37.214808], [-76.592213, 37.215049], [-76.592412, 37.215311], [-76.59254, 37.215479], [-76.592545, 37.215485], [-76.592568, 37.215516], [-76.592583, 37.215535], [-76.592603, 37.215561], [-76.592645, 37.215616], [-76.5927, 37.215688], [-76.592742, 37.215756], [-76.592866, 37.215955], [-76.592972, 37.216127], [-76.593533, 37.217032], [-76.593741, 37.217864], [-76.594237, 37.218744], [-76.594493, 37.2194], [-76.594893, 37.220008], [-76.595065, 37.221128], [-76.595101, 37.222232], [-76.594669, 37.22316], [-76.594365, 37.223992], [-76.594633, 37.225395], [-76.594726, 37.225913], [-76.594813, 37.226296], [-76.594799, 37.226611], [-76.594781, 37.227], [-76.594653, 37.227864], [-76.594717, 37.228142], [-76.594835, 37.228659], [-76.594914, 37.229473], [-76.594935, 37.22951], [-76.595021, 37.230456], [-76.595358, 37.231061], [-76.595362, 37.231069], [-76.595645, 37.231576], [-76.596349, 37.232376], [-76.597309, 37.233256], [-76.598141, 37.23356], [-76.598957, 37.23404], [-76.599261, 37.234696], [-76.599821, 37.235096], [-76.600285, 37.235672], [-76.60032, 37.235755], [-76.600442, 37.236039], [-76.600493, 37.236158], [-76.600525, 37.236232], [-76.600749, 37.23692], [-76.600813, 37.237624], [-76.601117, 37.2382], [-76.603197, 37.237832], [-76.603457, 37.237803], [-76.604667, 37.237667], [-76.604682, 37.237665], [-76.606336, 37.23748], [-76.606495, 37.237458], [-76.60947, 37.237048], [-76.613636, 37.236512], [-76.614015, 37.236463], [-76.614482, 37.236403], [-76.614579, 37.23639], [-76.614862, 37.236364], [-76.61491, 37.23636], [-76.615496, 37.236308], [-76.615663, 37.236293], [-76.616288, 37.236237], [-76.616346, 37.236232], [-76.617196, 37.236155], [-76.617224, 37.236152], [-76.617582, 37.23612], [-76.61804, 37.236033], [-76.621118, 37.235448], [-76.623004, 37.2351], [-76.623198, 37.235064], [-76.624518, 37.234338], [-76.624757, 37.234206], [-76.625763, 37.233647], [-76.625918, 37.23356], [-76.626093, 37.233465], [-76.626334, 37.233336], [-76.626379, 37.233305], [-76.626386, 37.2333], [-76.626583, 37.233166], [-76.62673, 37.233066], [-76.626941, 37.232921], [-76.627182, 37.232649], [-76.627427, 37.232473], [-76.627603, 37.232347], [-76.627624, 37.232332], [-76.627689, 37.232285], [-76.627838, 37.232543], [-76.628003, 37.232796], [-76.628123, 37.23296], [-76.628316, 37.233199], [-76.628453, 37.233355], [-76.628597, 37.233506], [-76.628825, 37.233724], [-76.628914, 37.233801], [-76.629068, 37.233934], [-76.629229, 37.23406], [-76.629932, 37.234639], [-76.63014, 37.23481], [-76.63018, 37.234843], [-76.630197, 37.234857], [-76.630207, 37.234865], [-76.630241, 37.234893], [-76.63028, 37.234925], [-76.630364, 37.234994], [-76.630503, 37.235108], [-76.630566, 37.23516], [-76.63058, 37.235171], [-76.630721, 37.235287], [-76.630752, 37.235313], [-76.630768, 37.235326], [-76.630984, 37.235481], [-76.631021, 37.235508], [-76.631288, 37.235683], [-76.63143, 37.235766], [-76.631471, 37.23579], [-76.631756, 37.235946], [-76.631825, 37.23598], [-76.631953, 37.236042], [-76.632088, 37.236102], [-76.632252, 37.236176], [-76.632384, 37.236228], [-76.632558, 37.236296], [-76.632724, 37.236352], [-76.632848, 37.236394], [-76.632972, 37.236431], [-76.633001, 37.23644], [-76.633132, 37.23648], [-76.633202, 37.236501], [-76.633243, 37.236513], [-76.633346, 37.23654], [-76.633568, 37.23659], [-76.633681, 37.236613], [-76.633729, 37.236623], [-76.633805, 37.236638], [-76.633868, 37.23665], [-76.634636, 37.236804], [-76.634666, 37.23681], [-76.634788, 37.236835], [-76.636625, 37.237205], [-76.636787, 37.23724], [-76.638594, 37.237631], [-76.639827, 37.237897], [-76.640159, 37.237971], [-76.641098, 37.23818], [-76.642024, 37.238387], [-76.644028, 37.238823], [-76.644712, 37.238979], [-76.645052, 37.23905], [-76.646074, 37.239282], [-76.646318, 37.239337], [-76.646405, 37.239356], [-76.647472, 37.239594], [-76.647846, 37.239498], [-76.647903, 37.239483], [-76.648574, 37.239305], [-76.648648, 37.239301], [-76.648739, 37.239296], [-76.649045, 37.23928], [-76.649207, 37.239271], [-76.651279, 37.239161], [-76.65279, 37.240181], [-76.653151, 37.240425], [-76.65322, 37.240467], [-76.653477, 37.240621], [-76.653791, 37.240809], [-76.654204, 37.241001], [-76.654687, 37.241225], [-76.65505, 37.241541], [-76.655183, 37.241657], [-76.655727, 37.242089], [-76.656618, 37.242966], [-76.656733, 37.243079], [-76.657663, 37.244121], [-76.658686, 37.245144], [-76.659182, 37.24565], [-76.659266, 37.245736], [-76.659967, 37.246457], [-76.660303, 37.246921], [-76.660396, 37.247139], [-76.660418, 37.247191], [-76.660527, 37.247449], [-76.660555, 37.247648], [-76.660623, 37.248136], [-76.660735, 37.248569], [-76.660679, 37.249134], [-76.660661, 37.249313], [-76.660635, 37.249579], [-76.660795, 37.249761], [-76.661218, 37.250254], [-76.661389, 37.250454], [-76.661427, 37.250499], [-76.66144, 37.250514], [-76.661517, 37.250604], [-76.661555, 37.250649], [-76.661601, 37.250702], [-76.661656, 37.250767], [-76.661781, 37.250916], [-76.661813, 37.250954], [-76.661879, 37.251032], [-76.661888, 37.251042], [-76.66195, 37.25111], [-76.662052, 37.251221], [-76.662262, 37.251424], [-76.662317, 37.251478], [-76.662373, 37.251528], [-76.662445, 37.251594], [-76.662468, 37.251616], [-76.662311, 37.251707], [-76.6625, 37.25195], [-76.662889, 37.252452], [-76.662971, 37.252515], [-76.663136, 37.252643], [-76.663183, 37.25268], [-76.66326, 37.252815], [-76.663297, 37.252933], [-76.663606, 37.253911], [-76.663588, 37.253949], [-76.663553, 37.254028], [-76.663524, 37.254132], [-76.66351, 37.254229], [-76.663504, 37.254273], [-76.663505, 37.254497], [-76.663505, 37.254555], [-76.663509, 37.254608], [-76.663544, 37.255093], [-76.663545, 37.25511], [-76.663593, 37.255768], [-76.663639, 37.256409], [-76.663636, 37.25666], [-76.663604, 37.256858], [-76.663602, 37.25687], [-76.663569, 37.257025], [-76.663548, 37.2571], [-76.663542, 37.257123], [-76.663531, 37.257163], [-76.663443, 37.257392], [-76.663497, 37.257442], [-76.663554, 37.257514], [-76.663593, 37.257592], [-76.663643, 37.257777], [-76.663683, 37.25799], [-76.6637, 37.258115], [-76.663752, 37.258405], [-76.663754, 37.258415], [-76.663794, 37.258637], [-76.663881, 37.259022], [-76.663885, 37.259037], [-76.663968, 37.259355], [-76.66401, 37.259516], [-76.664027, 37.259585], [-76.664049, 37.25967], [-76.664062, 37.259722], [-76.664069, 37.259748], [-76.664079, 37.259788], [-76.664084, 37.259804], [-76.664131, 37.259967], [-76.664237, 37.260334], [-76.664233, 37.260382], [-76.664212, 37.260428], [-76.664136, 37.260513], [-76.664174, 37.260554], [-76.664261, 37.260662], [-76.664291, 37.260705], [-76.664338, 37.260773], [-76.66442, 37.260919], [-76.664464, 37.261023], [-76.664468, 37.261034], [-76.664575, 37.261347], [-76.664676, 37.261679], [-76.664731, 37.261861], [-76.664763, 37.26195], [-76.664875, 37.262265], [-76.664938, 37.262426], [-76.66527, 37.26316], [-76.665276, 37.263174], [-76.665463, 37.263585], [-76.665555, 37.263744], [-76.665663, 37.263897], [-76.665794, 37.264041], [-76.665826, 37.26407], [-76.66597, 37.264204], [-76.666895, 37.26493], [-76.667115, 37.265081], [-76.667167, 37.265112], [-76.667341, 37.265217], [-76.667394, 37.265249], [-76.667589, 37.265351], [-76.667953, 37.265513], [-76.668001, 37.265534], [-76.668511, 37.265759], [-76.668654, 37.265819], [-76.668802, 37.26588], [-76.669101, 37.265987], [-76.669268, 37.266037], [-76.669274, 37.266039], [-76.669568, 37.266105], [-76.669799, 37.26614], [-76.66987, 37.266147], [-76.669939, 37.266153], [-76.669987, 37.266158], [-76.670167, 37.266166], [-76.670435, 37.266167], [-76.670543, 37.26616], [-76.670656, 37.266152], [-76.670695, 37.266149], [-76.670949, 37.266122], [-76.67205, 37.266006], [-76.672253, 37.265986], [-76.672464, 37.265968], [-76.673018, 37.265937], [-76.674612, 37.265893], [-76.675043, 37.265875], [-76.675126, 37.265871], [-76.675151, 37.265869], [-76.675179, 37.265867], [-76.675254, 37.265862], [-76.675698, 37.265822], [-76.676077, 37.265772], [-76.6761, 37.265769], [-76.67613, 37.265766], [-76.67664, 37.265707], [-76.677213, 37.265631], [-76.677227, 37.265629], [-76.677608, 37.265585], [-76.677909, 37.265563], [-76.678112, 37.265558], [-76.678367, 37.26556], [-76.678387, 37.26556], [-76.678421, 37.265562], [-76.678877, 37.265585], [-76.679259, 37.265615], [-76.679406, 37.265641], [-76.67947, 37.265659], [-76.679549, 37.265681], [-76.679693, 37.265738], [-76.679833, 37.265802], [-76.679999, 37.265892], [-76.680114, 37.265974], [-76.680466, 37.266245], [-76.681811, 37.267308], [-76.681971, 37.267437], [-76.682452, 37.267804], [-76.682911, 37.268173], [-76.68343, 37.268575], [-76.684035, 37.269058], [-76.684155, 37.269169], [-76.684293, 37.269314], [-76.684417, 37.269468], [-76.684535, 37.269662], [-76.684612, 37.269814], [-76.684653, 37.269911], [-76.684707, 37.270075], [-76.68475, 37.270284], [-76.684784, 37.270488], [-76.684798, 37.270673], [-76.684788, 37.270776], [-76.684515, 37.271184], [-76.684048, 37.271257], [-76.683856, 37.272025], [-76.683648, 37.272649], [-76.683417, 37.273035], [-76.683358, 37.273132], [-76.683168, 37.273406], [-76.68312, 37.273475], [-76.683105, 37.273497], [-76.683072, 37.273545], [-76.683059, 37.273556], [-76.682672, 37.273881], [-76.682048, 37.274185], [-76.681249, 37.274441], [-76.680337, 37.274681], [-76.680284, 37.274688], [-76.680112, 37.274713], [-76.678817, 37.275081], [-76.678112, 37.275465], [-76.677896, 37.27563], [-76.677568, 37.275881], [-76.677463, 37.276004], [-76.67728, 37.276217], [-76.677152, 37.276489], [-76.677104, 37.27683], [-76.677056, 37.277177], [-76.6772, 37.277673], [-76.677392, 37.278313], [-76.677504, 37.278505], [-76.677535, 37.278566], [-76.677664, 37.278825], [-76.67776, 37.279017], [-76.67816, 37.280121], [-76.678192, 37.280173], [-76.678321, 37.280386], [-76.67842, 37.280548], [-76.678455, 37.280605], [-76.679332, 37.281027], [-76.679376, 37.281049], [-76.679713, 37.281211], [-76.680657, 37.281824], [-76.680496, 37.283161], [-76.680496, 37.284561], [-76.680172, 37.285924], [-76.680235, 37.286719], [-76.680304, 37.287577], [-76.680576, 37.289144], [-76.680959, 37.290808], [-76.681136, 37.292072], [-76.681184, 37.292728], [-76.681291, 37.293155], [-76.681528, 37.293003], [-76.68172, 37.292811], [-76.68183, 37.292717], [-76.681885, 37.292629], [-76.681927, 37.292531], [-76.68192, 37.292179], [-76.681885, 37.292108], [-76.681659, 37.29202], [-76.6817, 37.291976], [-76.681837, 37.291954], [-76.68192, 37.29197], [-76.681968, 37.291981], [-76.68203, 37.292053], [-76.682023, 37.292179], [-76.681982, 37.292333], [-76.682002, 37.292476], [-76.682037, 37.292547], [-76.682099, 37.292624], [-76.682257, 37.292679], [-76.682539, 37.292717], [-76.682869, 37.292811], [-76.683426, 37.293003], [-76.683776, 37.293162], [-76.684168, 37.293311], [-76.68489, 37.293497], [-76.685055, 37.293569], [-76.685179, 37.293646], [-76.685234, 37.293734], [-76.68533, 37.293789], [-76.68544, 37.293794], [-76.685667, 37.293717], [-76.685853, 37.293547], [-76.685997, 37.293437], [-76.686451, 37.293124], [-76.686857, 37.292965], [-76.686874, 37.292961], [-76.68698, 37.292938], [-76.686975, 37.292966], [-76.6871, 37.292936], [-76.687815, 37.292954], [-76.68821, 37.292931], [-76.688709, 37.292729], [-76.688838, 37.2927], [-76.688999, 37.292665], [-76.689141, 37.292678], [-76.689263, 37.29269], [-76.689745, 37.292805], [-76.690219, 37.292663], [-76.690391, 37.292272], [-76.690906, 37.29147], [-76.691154, 37.291069], [-76.691285, 37.290855], [-76.691257, 37.290125], [-76.690824, 37.289707], [-76.690707, 37.28907], [-76.690913, 37.288724], [-76.691656, 37.288081], [-76.691656, 37.288053], [-76.691738, 37.287466], [-76.692398, 37.286988], [-76.692914, 37.286828], [-76.693113, 37.286691], [-76.693368, 37.286642], [-76.693856, 37.286762], [-76.693945, 37.286642], [-76.694516, 37.286438], [-76.694703, 37.286116], [-76.69471, 37.286103], [-76.694832, 37.285894], [-76.6951, 37.285708], [-76.696214, 37.285685], [-76.696874, 37.285383], [-76.697988, 37.285295], [-76.698503, 37.285136], [-76.699101, 37.284768], [-76.699672, 37.28413], [-76.699729, 37.284086], [-76.699742, 37.284076], [-76.699752, 37.284069], [-76.699767, 37.284058], [-76.699789, 37.284041], [-76.700467, 37.283522], [-76.700992, 37.28312], [-76.701123, 37.28288], [-76.701529, 37.282969], [-76.701632, 37.282992], [-76.701761, 37.28302], [-76.701837, 37.283037], [-76.70214, 37.283158], [-76.702346, 37.283141], [-76.702772, 37.283075], [-76.702903, 37.283075], [-76.70324, 37.283134], [-76.703925, 37.282945], [-76.705074, 37.282601], [-76.70605, 37.282361], [-76.706849, 37.282265], [-76.708513, 37.282297], [-76.709777, 37.282297], [-76.709746, 37.281634], [-76.709745, 37.281619], [-76.709745, 37.281609], [-76.709729, 37.281161], [-76.70973, 37.281149], [-76.709848, 37.280194], [-76.709857, 37.280121], [-76.71001, 37.279147], [-76.710033, 37.279001], [-76.710049, 37.277657], [-76.710369, 37.277657], [-76.711009, 37.277865], [-76.711561, 37.278223], [-76.71187, 37.278306], [-76.711965, 37.278344], [-76.712385, 37.278554], [-76.712714, 37.278741], [-76.712783, 37.278779], [-76.713217, 37.279049], [-76.713825, 37.279488], [-76.713866, 37.279518], [-76.714166, 37.279699], [-76.714341, 37.279822], [-76.714462, 37.279916], [-76.714764, 37.280153], [-76.714847, 37.280218], [-76.715316, 37.280569], [-76.71566, 37.280903], [-76.716642, 37.281873], [-76.717121, 37.282345], [-76.717905, 37.283257], [-76.718385, 37.284073], [-76.718604, 37.284372], [-76.718617, 37.28439], [-76.719089, 37.285033], [-76.719221, 37.285248], [-76.719345, 37.285449], [-76.719569, 37.285897], [-76.719574, 37.285921], [-76.719662, 37.286096], [-76.719715, 37.2862], [-76.719752, 37.286273], [-76.720064, 37.286732], [-76.720247, 37.287088], [-76.720498, 37.287576], [-76.720809, 37.288369], [-76.720959, 37.288695], [-76.721106, 37.289045], [-76.721534, 37.290007], [-76.721731, 37.290466], [-76.722583, 37.292415], [-76.723093, 37.293581], [-76.723167, 37.293751], [-76.723514, 37.293863], [-76.72377, 37.294418], [-76.723956, 37.294846], [-76.724181, 37.295363], [-76.724298, 37.295633], [-76.725491, 37.295199], [-76.725611, 37.295441], [-76.725714, 37.29565], [-76.725782, 37.295789], [-76.725961, 37.296152], [-76.72606, 37.296345], [-76.726253, 37.296736], [-76.726564, 37.297373], [-76.726842, 37.297929], [-76.727036, 37.29832], [-76.727266, 37.29879], [-76.727316, 37.298917], [-76.727375, 37.299099], [-76.727397, 37.299175], [-76.727437, 37.29935], [-76.727469, 37.299553], [-76.727563, 37.300334], [-76.727628, 37.300834], [-76.727548, 37.300955], [-76.72747, 37.301096], [-76.727441, 37.3011], [-76.726985, 37.301168], [-76.727201, 37.301824], [-76.72715, 37.302152], [-76.727138, 37.302232], [-76.727129, 37.302323], [-76.727089, 37.302737], [-76.727116, 37.302799], [-76.727211, 37.303061], [-76.727282, 37.303328], [-76.727321, 37.303554], [-76.727347, 37.303806], [-76.727368, 37.304001], [-76.727409, 37.304221], [-76.72756, 37.304816], [-76.72759, 37.304928], [-76.727894, 37.306057], [-76.728026, 37.306482], [-76.728125, 37.306733], [-76.728307, 37.30711], [-76.728432, 37.307349], [-76.728436, 37.307356], [-76.728536, 37.307546], [-76.728742, 37.307974], [-76.728764, 37.308023], [-76.728822, 37.308185], [-76.728905, 37.308458], [-76.728951, 37.308677], [-76.728975, 37.308884], [-76.728984, 37.309145], [-76.728975, 37.309381], [-76.728935, 37.309798], [-76.728932, 37.310107], [-76.728946, 37.310315], [-76.72897, 37.31048], [-76.729019, 37.310703], [-76.729046, 37.310821], [-76.729075, 37.310933], [-76.729201, 37.311427], [-76.729362, 37.312057], [-76.729528, 37.312681], [-76.729603, 37.312986], [-76.729719, 37.313463], [-76.729774, 37.313648], [-76.72984, 37.313822], [-76.729911, 37.313963], [-76.729919, 37.313978], [-76.729934, 37.314008], [-76.730045, 37.314188], [-76.730174, 37.314365], [-76.730277, 37.314515], [-76.730283, 37.314524], [-76.730374, 37.314674], [-76.73039, 37.314704], [-76.730479, 37.314875], [-76.730618, 37.315202], [-76.730771, 37.315528], [-76.730887, 37.315732], [-76.730992, 37.315892], [-76.731051, 37.315971], [-76.731138, 37.316086], [-76.731149, 37.3161], [-76.731395, 37.316413], [-76.731448, 37.31648], [-76.731535, 37.316586], [-76.73165, 37.316707], [-76.731778, 37.316818], [-76.731893, 37.316902], [-76.731999, 37.316967], [-76.732044, 37.316994], [-76.732746, 37.317342], [-76.733253, 37.317594], [-76.733491, 37.317731], [-76.733567, 37.317786], [-76.733685, 37.317887], [-76.733789, 37.317997], [-76.733879, 37.318115], [-76.733937, 37.318211], [-76.733978, 37.318299], [-76.734029, 37.318441], [-76.734061, 37.318586], [-76.734106, 37.319023], [-76.734124, 37.319238], [-76.734131, 37.319303], [-76.734174, 37.319721], [-76.734194, 37.319831], [-76.734227, 37.31997], [-76.734287, 37.320172], [-76.734366, 37.320366], [-76.73442, 37.320465], [-76.734451, 37.320521], [-76.734548, 37.320691], [-76.734717, 37.32096], [-76.734772, 37.321046], [-76.734777, 37.321054], [-76.73561, 37.322389], [-76.735675, 37.322502], [-76.735698, 37.322548], [-76.735712, 37.322577], [-76.73577, 37.322694], [-76.735847, 37.322891], [-76.735893, 37.323049], [-76.73593, 37.323247], [-76.73595, 37.323447], [-76.735949, 37.323645], [-76.735908, 37.324417], [-76.735877, 37.3247], [-76.735863, 37.324788], [-76.735823, 37.32497], [-76.735752, 37.325184], [-76.735557, 37.325814], [-76.735526, 37.325954], [-76.735511, 37.326068], [-76.735505, 37.326119], [-76.735504, 37.326172], [-76.735502, 37.326227], [-76.7355, 37.326319], [-76.735515, 37.326545], [-76.735556, 37.326815], [-76.735568, 37.326947], [-76.735565, 37.327053], [-76.735544, 37.327185], [-76.73546, 37.327467], [-76.735309, 37.327877], [-76.735257, 37.328018], [-76.735144, 37.328327], [-76.735002, 37.328688], [-76.734788, 37.329183], [-76.734766, 37.329248], [-76.73473, 37.329351], [-76.734668, 37.329436], [-76.734621, 37.329527], [-76.734596, 37.329604], [-76.734562, 37.329763], [-76.734543, 37.329939], [-76.734528, 37.330189], [-76.734526, 37.330227], [-76.734519, 37.330363], [-76.734496, 37.330806], [-76.734509, 37.331036], [-76.73454, 37.331264], [-76.734555, 37.331333], [-76.734578, 37.331434], [-76.734643, 37.331637], [-76.734667, 37.331692], [-76.734839, 37.33181], [-76.734886, 37.331843], [-76.734958, 37.331892], [-76.73539, 37.332114], [-76.735498, 37.33219], [-76.73565, 37.332285], [-76.736001, 37.332456], [-76.736282, 37.332576], [-76.736303, 37.332585], [-76.736323, 37.332593], [-76.736426, 37.332633], [-76.736633, 37.332721], [-76.736914, 37.332831], [-76.73709, 37.332891], [-76.737116, 37.3329], [-76.737172, 37.332917], [-76.737206, 37.332925], [-76.737364, 37.332962], [-76.737719, 37.333022], [-76.737962, 37.333076], [-76.738189, 37.33315], [-76.73845, 37.333257], [-76.738701, 37.333382], [-76.738725, 37.333394], [-76.738953, 37.333511], [-76.739116, 37.333589], [-76.739185, 37.333622], [-76.739428, 37.333737], [-76.73963, 37.333827], [-76.739973, 37.333967], [-76.740223, 37.334058], [-76.740384, 37.334116], [-76.740576, 37.334185], [-76.741006, 37.334335], [-76.741164, 37.33439], [-76.741995, 37.33468], [-76.742287, 37.33478], [-76.74308, 37.335053], [-76.743258, 37.335114], [-76.743268, 37.335117], [-76.743877, 37.335329], [-76.744187, 37.335447], [-76.744418, 37.33555], [-76.744693, 37.33569], [-76.745223, 37.336], [-76.745495, 37.336153], [-76.745825, 37.33633], [-76.745861, 37.336349], [-76.746091, 37.336459], [-76.746421, 37.336603], [-76.746644, 37.336687], [-76.746778, 37.336731], [-76.747184, 37.336855], [-76.747366, 37.336907], [-76.747721, 37.336999], [-76.747978, 37.33708], [-76.748336, 37.337213], [-76.748674, 37.337354], [-76.749038, 37.337523], [-76.749205, 37.33761], [-76.749393, 37.337607], [-76.749528, 37.337604], [-76.749578, 37.337603], [-76.74965, 37.337603], [-76.749711, 37.337602], [-76.749732, 37.337601], [-76.749855, 37.3376], [-76.749918, 37.337599], [-76.750071, 37.337597], [-76.750132, 37.337643], [-76.75028, 37.337754], [-76.75065, 37.337985], [-76.750756, 37.338035], [-76.75087, 37.338072], [-76.751116, 37.338113], [-76.751442, 37.338146], [-76.751717, 37.338182], [-76.751754, 37.33818], [-76.751767, 37.33818], [-76.751779, 37.338179], [-76.751785, 37.338179], [-76.751796, 37.338176], [-76.751806, 37.338173], [-76.751814, 37.33817], [-76.751821, 37.338168], [-76.751831, 37.338165], [-76.751848, 37.33816], [-76.751967, 37.338092], [-76.752038, 37.338052], [-76.752237, 37.33793], [-76.75233, 37.338014], [-76.752782, 37.33842], [-76.753074, 37.338682], [-76.754544, 37.340161], [-76.754848, 37.340521], [-76.754728, 37.340744], [-76.75472, 37.34076], [-76.754252, 37.342537], [-76.754236, 37.342596], [-76.753699, 37.344642], [-76.753394, 37.345443], [-76.753013, 37.345778], [-76.753008, 37.34592], [-76.753136, 37.346365], [-76.753487, 37.34678], [-76.753553, 37.347054], [-76.7535, 37.347402], [-76.753489, 37.347468], [-76.753433, 37.347808], [-76.753426, 37.347931], [-76.753274, 37.348403], [-76.753274, 37.348585], [-76.753322, 37.34876], [-76.753515, 37.348925], [-76.753686, 37.34903], [-76.75401, 37.349162], [-76.754478, 37.349299], [-76.754636, 37.349371], [-76.754766, 37.349464], [-76.754821, 37.349596], [-76.75478, 37.34975], [-76.75478, 37.349794], [-76.75476, 37.349836], [-76.754725, 37.349909], [-76.754656, 37.35014], [-76.754621, 37.350365], [-76.754656, 37.35059], [-76.754937, 37.351189], [-76.75496, 37.351317], [-76.754972, 37.351387], [-76.75493, 37.351799], [-76.754833, 37.352255], [-76.754826, 37.35242], [-76.754854, 37.352612], [-76.754922, 37.352843], [-76.754946, 37.352889], [-76.754991, 37.352975], [-76.754991, 37.353018], [-76.755211, 37.353485], [-76.755266, 37.353508], [-76.755403, 37.353793], [-76.755513, 37.354227] ] ], [ [ [-82.662938, 36.921225], [-82.661772, 36.918901], [-82.661686, 36.918731], [-82.661606, 36.918571], [-82.661268, 36.91863], [-82.660588, 36.918749], [-82.660295, 36.918811], [-82.660191, 36.918833], [-82.658902, 36.919109], [-82.658132, 36.918783], [-82.656159, 36.917985], [-82.655907, 36.917883], [-82.655406, 36.917678], [-82.655377, 36.917666], [-82.655367, 36.917662], [-82.655343, 36.917652], [-82.655203, 36.917595], [-82.655161, 36.917578], [-82.655142, 36.91757], [-82.655142, 36.917245], [-82.653515, 36.917222], [-82.651847, 36.917136], [-82.651684, 36.917128], [-82.651263, 36.917106], [-82.650266, 36.9165], [-82.650412, 36.912724], [-82.646916, 36.914524], [-82.646508, 36.914734], [-82.646976, 36.913551], [-82.647046, 36.913375], [-82.648757, 36.90952], [-82.647921, 36.907715], [-82.646794, 36.904551], [-82.643685, 36.900484], [-82.640351, 36.902461], [-82.637077, 36.904428], [-82.636921, 36.904523], [-82.637298, 36.906573], [-82.633994, 36.906548], [-82.633992, 36.906534], [-82.63398, 36.906451], [-82.633965, 36.906404], [-82.633904, 36.906407], [-82.629622, 36.906585], [-82.629491, 36.906584], [-82.624881, 36.906522], [-82.624803, 36.906521], [-82.618509, 36.906848], [-82.617587, 36.906418], [-82.616748, 36.90602], [-82.615141, 36.905258], [-82.613417, 36.910209], [-82.613347, 36.910409], [-82.613162, 36.910941], [-82.612771, 36.912066], [-82.612609, 36.91255], [-82.615813, 36.912644], [-82.61781, 36.912656], [-82.613955, 36.913772], [-82.618033, 36.915512], [-82.620035, 36.914889], [-82.620284, 36.914817], [-82.61954, 36.915789], [-82.619361, 36.916209], [-82.619355, 36.916901], [-82.619382, 36.917396], [-82.61941, 36.917649], [-82.619413, 36.917679], [-82.619458, 36.918099], [-82.619605, 36.918733], [-82.61963, 36.918841], [-82.619781, 36.919187], [-82.619945, 36.91939], [-82.620185, 36.919774], [-82.620288, 36.92012], [-82.620726, 36.920944], [-82.620932, 36.921235], [-82.621261, 36.921631], [-82.621562, 36.922098], [-82.621651, 36.9224], [-82.621822, 36.922707], [-82.621973, 36.923158], [-82.622076, 36.923372], [-82.622207, 36.923905], [-82.622385, 36.924394], [-82.622412, 36.924635], [-82.622358, 36.924916], [-82.622406, 36.925113], [-82.622502, 36.925267], [-82.622516, 36.925454], [-82.622496, 36.925734], [-82.622304, 36.926256], [-82.622291, 36.926393], [-82.622359, 36.926525], [-82.622366, 36.926641], [-82.622202, 36.927003], [-82.622134, 36.927239], [-82.622186, 36.927766], [-82.621908, 36.928061], [-82.620588, 36.929461], [-82.618253, 36.930025], [-82.618906, 36.931299], [-82.617597, 36.932579], [-82.616951, 36.932794], [-82.614597, 36.933492], [-82.612093, 36.934236], [-82.609782, 36.934404], [-82.605369, 36.934922], [-82.6051, 36.934906], [-82.6049, 36.93501], [-82.598377, 36.935618], [-82.598399, 36.935796], [-82.598434, 36.935972], [-82.598451, 36.936059], [-82.598391, 36.936052], [-82.598187, 36.936064], [-82.598153, 36.936098], [-82.598001, 36.936084], [-82.597997, 36.936084], [-82.597023, 36.935994], [-82.595853, 36.935889], [-82.590927, 36.934886], [-82.59027, 36.935627], [-82.590898, 36.937162], [-82.590955, 36.937296], [-82.590991, 36.937381], [-82.591241, 36.937969], [-82.591385, 36.938373], [-82.592055, 36.94025], [-82.592129, 36.940458], [-82.592176, 36.940592], [-82.592194, 36.940647], [-82.591791, 36.94091], [-82.591525, 36.941088], [-82.590943, 36.941478], [-82.590792, 36.941579], [-82.590714, 36.941631], [-82.590647, 36.941676], [-82.590593, 36.941713], [-82.590547, 36.941744], [-82.590539, 36.941749], [-82.589991, 36.942119], [-82.589961, 36.942139], [-82.589954, 36.942144], [-82.589931, 36.94216], [-82.589841, 36.94222], [-82.589794, 36.942252], [-82.589725, 36.942299], [-82.589626, 36.942366], [-82.589579, 36.942398], [-82.589378, 36.942534], [-82.589484, 36.943357], [-82.589865, 36.943292], [-82.590844, 36.943127], [-82.591737, 36.94295], [-82.591801, 36.942939], [-82.591846, 36.94293], [-82.594386, 36.942515], [-82.595479, 36.942507], [-82.597399, 36.94259], [-82.597663, 36.94248], [-82.597839, 36.942337], [-82.597863, 36.942318], [-82.598041, 36.942172], [-82.598317, 36.941919], [-82.598362, 36.941962], [-82.598657, 36.94219], [-82.598674, 36.942203], [-82.597466, 36.943335], [-82.597232, 36.943506], [-82.596779, 36.943837], [-82.595616, 36.944451], [-82.595377, 36.944577], [-82.594355, 36.945265], [-82.594009, 36.945419], [-82.593266, 36.945751], [-82.593018, 36.945862], [-82.592966, 36.945885], [-82.592937, 36.945898], [-82.592931, 36.945901], [-82.59292, 36.945906], [-82.592889, 36.94592], [-82.592808, 36.945956], [-82.592734, 36.945989], [-82.592391, 36.946142], [-82.592377, 36.946148], [-82.592312, 36.946177], [-82.591864, 36.946378], [-82.591848, 36.946385], [-82.591813, 36.946401], [-82.591764, 36.946423], [-82.591748, 36.94643], [-82.591586, 36.946502], [-82.591547, 36.946542], [-82.591477, 36.946612], [-82.591398, 36.946693], [-82.591342, 36.946748], [-82.591276, 36.946816], [-82.591254, 36.946838], [-82.591044, 36.947051], [-82.590645, 36.947669], [-82.590511, 36.947938], [-82.590424, 36.948114], [-82.590303, 36.948356], [-82.588894, 36.951189], [-82.589505, 36.951373], [-82.589592, 36.951482], [-82.593212, 36.956017], [-82.59333, 36.956077], [-82.593432, 36.956131], [-82.597533, 36.958321], [-82.597724, 36.958058], [-82.597789, 36.957968], [-82.597913, 36.957797], [-82.597465, 36.957467], [-82.597109, 36.956933], [-82.597083, 36.956895], [-82.597016, 36.956775], [-82.596812, 36.956407], [-82.595542, 36.956388], [-82.595603, 36.956212], [-82.596446, 36.955393], [-82.596812, 36.955129], [-82.596824, 36.954973], [-82.599003, 36.956048], [-82.598915, 36.956165], [-82.598826, 36.956376], [-82.598509, 36.956499], [-82.599056, 36.956631], [-82.598979, 36.956829], [-82.598947, 36.95691], [-82.59892, 36.95698], [-82.599072, 36.957102], [-82.599302, 36.957286], [-82.600177, 36.957417], [-82.601216, 36.957439], [-82.601322, 36.957567], [-82.601954, 36.958334], [-82.601845, 36.958574], [-82.602152, 36.958686], [-82.602123, 36.958737], [-82.60223, 36.958787], [-82.60208, 36.959052], [-82.602043, 36.959118], [-82.601985, 36.959222], [-82.601944, 36.959294], [-82.601872, 36.959422], [-82.601845, 36.959469], [-82.602337, 36.959731], [-82.60235, 36.959763], [-82.602419, 36.959928], [-82.6033, 36.959644], [-82.60337, 36.959621], [-82.603531, 36.959569], [-82.603619, 36.959599], [-82.604946, 36.959157], [-82.605073, 36.959115], [-82.605275, 36.95852], [-82.605365, 36.958253], [-82.605325, 36.958088], [-82.605403, 36.958017], [-82.605416, 36.957909], [-82.605554, 36.95716], [-82.605775, 36.957052], [-82.605903, 36.95699], [-82.606226, 36.955872], [-82.606091, 36.955866], [-82.606283, 36.955566], [-82.606283, 36.954966], [-82.606447, 36.954584], [-82.606477, 36.954379], [-82.60654, 36.953937], [-82.606657, 36.953431], [-82.606775, 36.953082], [-82.606801, 36.953014], [-82.606963, 36.952599], [-82.607805, 36.95103], [-82.608405, 36.950469], [-82.609593, 36.949709], [-82.610282, 36.949192], [-82.61085, 36.948719], [-82.611053, 36.948466], [-82.611159, 36.948536], [-82.611323, 36.948646], [-82.611452, 36.948717], [-82.611497, 36.948741], [-82.611635, 36.948817], [-82.612069, 36.949056], [-82.614604, 36.950527], [-82.61476, 36.950617], [-82.614764, 36.950635], [-82.614808, 36.950823], [-82.614932, 36.951114], [-82.615062, 36.951328], [-82.615028, 36.951454], [-82.614935, 36.951522], [-82.614795, 36.951625], [-82.614487, 36.951669], [-82.614328, 36.951635], [-82.614282, 36.951625], [-82.614206, 36.951609], [-82.614148, 36.951569], [-82.613885, 36.951389], [-82.613684, 36.951196], [-82.613667, 36.951179], [-82.613405, 36.950928], [-82.613076, 36.95078], [-82.612809, 36.950785], [-82.612679, 36.950879], [-82.61252, 36.951115], [-82.612461, 36.951203], [-82.612201, 36.951615], [-82.612165, 36.951837], [-82.612139, 36.951994], [-82.612111, 36.952046], [-82.611982, 36.952285], [-82.611789, 36.9526], [-82.61149, 36.953088], [-82.611196, 36.953632], [-82.611135, 36.953983], [-82.610964, 36.954555], [-82.611073, 36.954818], [-82.611265, 36.955137], [-82.6113, 36.955163], [-82.611532, 36.955335], [-82.611882, 36.955532], [-82.612115, 36.955598], [-82.612317, 36.955638], [-82.61297, 36.955768], [-82.613525, 36.95583], [-82.613533, 36.955831], [-82.613662, 36.955845], [-82.614144, 36.95588], [-82.614279, 36.95589], [-82.614467, 36.955904], [-82.614623, 36.955969], [-82.614737, 36.956017], [-82.614854, 36.956066], [-82.614926, 36.956096], [-82.614942, 36.956103], [-82.61495, 36.956106], [-82.614999, 36.956127], [-82.615036, 36.956142], [-82.615068, 36.956155], [-82.615209, 36.956322], [-82.615193, 36.956746], [-82.615768, 36.956723], [-82.616379, 36.956701], [-82.616937, 36.956378], [-82.617405, 36.956014], [-82.617851, 36.955778], [-82.617998, 36.955594], [-82.618366, 36.955134], [-82.618608, 36.955149], [-82.619667, 36.955156], [-82.619791, 36.955459], [-82.620242, 36.954922], [-82.622981, 36.955189], [-82.623053, 36.955196], [-82.623811, 36.955267], [-82.622706, 36.953859], [-82.622638, 36.953791], [-82.622478, 36.95363], [-82.622421, 36.953403], [-82.625356, 36.952693], [-82.626024, 36.95236], [-82.626091, 36.952326], [-82.626435, 36.952149], [-82.626469, 36.952131], [-82.628073, 36.951295], [-82.628781, 36.951295], [-82.630761, 36.951649], [-82.633385, 36.952475], [-82.633866, 36.952626], [-82.633893, 36.952634], [-82.633897, 36.952636], [-82.634, 36.952446], [-82.634047, 36.952358], [-82.634094, 36.952275], [-82.634105, 36.952255], [-82.634144, 36.952195], [-82.634255, 36.952052], [-82.634382, 36.951917], [-82.634516, 36.951798], [-82.634522, 36.951793], [-82.634997, 36.951373], [-82.635154, 36.951211], [-82.635282, 36.951049], [-82.635532, 36.95071], [-82.635625, 36.950569], [-82.635636, 36.950549], [-82.635672, 36.950484], [-82.635725, 36.950387], [-82.636005, 36.949671], [-82.636008, 36.949664], [-82.636033, 36.949594], [-82.63606, 36.949512], [-82.636108, 36.949336], [-82.636165, 36.949047], [-82.636213, 36.948864], [-82.636257, 36.94875], [-82.636331, 36.948597], [-82.636589, 36.948149], [-82.636695, 36.947889], [-82.636768, 36.947636], [-82.636822, 36.947503], [-82.636894, 36.947376], [-82.637191, 36.946961], [-82.637339, 36.946776], [-82.637346, 36.946768], [-82.637426, 36.946669], [-82.637661, 36.946413], [-82.637802, 36.946252], [-82.638345, 36.945576], [-82.638518, 36.945388], [-82.638704, 36.945208], [-82.638973, 36.944988], [-82.639366, 36.944697], [-82.640005, 36.944251], [-82.640132, 36.944173], [-82.640301, 36.944087], [-82.640443, 36.944028], [-82.640902, 36.943903], [-82.641071, 36.943847], [-82.641164, 36.94381], [-82.641341, 36.943727], [-82.641523, 36.943621], [-82.64167, 36.943522], [-82.641842, 36.943388], [-82.642, 36.943244], [-82.642157, 36.943078], [-82.64266, 36.942534], [-82.643044, 36.942152], [-82.643062, 36.94213], [-82.643097, 36.94207], [-82.643116, 36.941993], [-82.643112, 36.941932], [-82.643112, 36.941927], [-82.643054, 36.941738], [-82.642995, 36.941546], [-82.642983, 36.941488], [-82.642983, 36.941414], [-82.643002, 36.941341], [-82.643037, 36.941273], [-82.643284, 36.940982], [-82.644281, 36.939926], [-82.644509, 36.93969], [-82.644874, 36.939311], [-82.645034, 36.939132], [-82.645178, 36.938944], [-82.645235, 36.938847], [-82.645352, 36.938613], [-82.645467, 36.938451], [-82.645579, 36.938319], [-82.645597, 36.938297], [-82.645735, 36.93817], [-82.645842, 36.938072], [-82.64585, 36.938065], [-82.645869, 36.938046], [-82.645877, 36.938037], [-82.645914, 36.937993], [-82.645936, 36.937963], [-82.64596, 36.937921], [-82.645966, 36.937907], [-82.645986, 36.937865], [-82.646003, 36.937796], [-82.646009, 36.937772], [-82.646011, 36.93776], [-82.646024, 36.937652], [-82.64603, 36.937543], [-82.646029, 36.937536], [-82.646023, 36.937445], [-82.646008, 36.937308], [-82.645969, 36.937086], [-82.645891, 36.936792], [-82.645845, 36.936676], [-82.645773, 36.936536], [-82.6457, 36.936425], [-82.645581, 36.936278], [-82.645447, 36.936141], [-82.645182, 36.935908], [-82.645128, 36.935861], [-82.645117, 36.935851], [-82.645029, 36.935754], [-82.645006, 36.935715], [-82.644989, 36.935655], [-82.644983, 36.935574], [-82.644996, 36.935495], [-82.645026, 36.935418], [-82.645187, 36.935158], [-82.645338, 36.934934], [-82.645382, 36.934878], [-82.645455, 36.934801], [-82.645588, 36.934682], [-82.645883, 36.934463], [-82.646325, 36.934113], [-82.646345, 36.934097], [-82.646671, 36.93384], [-82.646725, 36.933805], [-82.64704, 36.933601], [-82.647172, 36.933509], [-82.647292, 36.933406], [-82.647432, 36.933261], [-82.647444, 36.933248], [-82.64746, 36.933231], [-82.647505, 36.933182], [-82.64769, 36.932968], [-82.647725, 36.932938], [-82.647786, 36.932886], [-82.647937, 36.932785], [-82.648074, 36.932713], [-82.648217, 36.932658], [-82.648366, 36.932617], [-82.648519, 36.932589], [-82.649095, 36.932534], [-82.649248, 36.932514], [-82.649302, 36.932504], [-82.64931, 36.932502], [-82.649437, 36.932476], [-82.649589, 36.932433], [-82.649599, 36.93243], [-82.650108, 36.932285], [-82.650241, 36.932244], [-82.650287, 36.93223], [-82.650419, 36.93219], [-82.650604, 36.932133], [-82.65067, 36.932113], [-82.650757, 36.932081], [-82.651156, 36.931935], [-82.651301, 36.931873], [-82.651627, 36.931735], [-82.651742, 36.931721], [-82.65175, 36.93172], [-82.65234, 36.931644], [-82.652739, 36.931644], [-82.652683, 36.930728], [-82.652684, 36.930712], [-82.652691, 36.930524], [-82.652692, 36.930507], [-82.652695, 36.930449], [-82.652701, 36.930266], [-82.652726, 36.929661], [-82.654557, 36.929929], [-82.654621, 36.929652], [-82.654887, 36.929175], [-82.655086, 36.928822], [-82.655126, 36.928751], [-82.65523, 36.928566], [-82.655333, 36.928385], [-82.655392, 36.928279], [-82.655535, 36.927928], [-82.655522, 36.927559], [-82.655473, 36.926086], [-82.655469, 36.925957], [-82.655464, 36.925758], [-82.655419, 36.925365], [-82.654928, 36.925399], [-82.654892, 36.92502], [-82.655678, 36.924684], [-82.655459, 36.923603], [-82.657558, 36.922901], [-82.662938, 36.921225] ] ], [ [ [-82.243386, 36.595658], [-82.242908, 36.59566], [-82.242067, 36.595666], [-82.241922, 36.595665], [-82.237078, 36.595673], [-82.235868, 36.595676], [-82.235568, 36.595676], [-82.235494, 36.595677], [-82.235153, 36.595677], [-82.235069, 36.595678], [-82.234943, 36.595678], [-82.234566, 36.595679], [-82.234441, 36.59568], [-82.234174, 36.595679], [-82.234123, 36.595679], [-82.233169, 36.595681], [-82.232852, 36.595682], [-82.232235, 36.595683], [-82.230387, 36.595686], [-82.229771, 36.595688], [-82.22943, 36.595688], [-82.229346, 36.595689], [-82.228935, 36.595681], [-82.228928, 36.595681], [-82.227702, 36.595718], [-82.227292, 36.595731], [-82.227227, 36.595732], [-82.227036, 36.595738], [-82.226972, 36.59574], [-82.226951, 36.595753], [-82.226889, 36.595795], [-82.226869, 36.595809], [-82.226751, 36.595862], [-82.226671, 36.595874], [-82.226566, 36.595891], [-82.226259, 36.595903], [-82.226104, 36.59589], [-82.226049, 36.595868], [-82.22599, 36.595846], [-82.225879, 36.595751], [-82.225514, 36.595747], [-82.224419, 36.595737], [-82.224054, 36.595734], [-82.224036, 36.595751], [-82.223935, 36.595833], [-82.223841, 36.59591], [-82.223736, 36.595959], [-82.223523, 36.59599], [-82.22351, 36.59599], [-82.223356, 36.595999], [-82.223034, 36.596015], [-82.222619, 36.596037], [-82.222293, 36.596019], [-82.222071, 36.595977], [-82.222031, 36.59597], [-82.221942, 36.595932], [-82.22185, 36.59587], [-82.221801, 36.595816], [-82.221717, 36.595821], [-82.221571, 36.595821], [-82.220883, 36.595823], [-82.220654, 36.595825], [-82.220195, 36.595826], [-82.218821, 36.595832], [-82.218363, 36.595835], [-82.217541, 36.595835], [-82.215718, 36.595845], [-82.215074, 36.595848], [-82.214619, 36.59585], [-82.214501, 36.59585], [-82.214335, 36.595852], [-82.21428, 36.595853], [-82.213683, 36.595853], [-82.213055, 36.595855], [-82.212846, 36.595857], [-82.212678, 36.595857], [-82.212173, 36.59586], [-82.212006, 36.595861], [-82.211389, 36.595865], [-82.210796, 36.595868], [-82.210711, 36.595785], [-82.210445, 36.595769], [-82.210349, 36.595766], [-82.210226, 36.595764], [-82.210063, 36.595755], [-82.209968, 36.595751], [-82.209855, 36.595745], [-82.209516, 36.595729], [-82.209404, 36.595724], [-82.209342, 36.59572], [-82.209158, 36.59571], [-82.209097, 36.595707], [-82.209077, 36.595706], [-82.209019, 36.595703], [-82.209, 36.595702], [-82.208804, 36.595696], [-82.208217, 36.59568], [-82.208022, 36.595675], [-82.207988, 36.595674], [-82.207887, 36.595671], [-82.207854, 36.59567], [-82.20778, 36.595667], [-82.207558, 36.595661], [-82.207485, 36.595659], [-82.207413, 36.595657], [-82.207198, 36.595653], [-82.207127, 36.595652], [-82.207073, 36.59565], [-82.206914, 36.595646], [-82.206861, 36.595645], [-82.206753, 36.595641], [-82.206727, 36.595641], [-82.20645, 36.595634], [-82.205621, 36.595613], [-82.205345, 36.595607], [-82.205287, 36.595605], [-82.205115, 36.595601], [-82.205058, 36.5956], [-82.204767, 36.595592], [-82.203893, 36.595569], [-82.203857, 36.595569], [-82.203603, 36.595562], [-82.203458, 36.595557], [-82.203023, 36.595545], [-82.202944, 36.595543], [-82.202848, 36.595543], [-82.202666, 36.595537], [-82.20203, 36.59552], [-82.201818, 36.595515], [-82.201604, 36.595509], [-82.200962, 36.595492], [-82.200749, 36.595487], [-82.200557, 36.595481], [-82.199793, 36.595461], [-82.199778, 36.59546], [-82.199733, 36.595459], [-82.199719, 36.595459], [-82.1996, 36.595454], [-82.199128, 36.595438], [-82.198951, 36.595433], [-82.198421, 36.595418], [-82.198245, 36.595413], [-82.198219, 36.595412], [-82.198144, 36.595409], [-82.198119, 36.595409], [-82.197997, 36.595406], [-82.197631, 36.5954], [-82.19751, 36.595398], [-82.197459, 36.595396], [-82.197309, 36.595391], [-82.197259, 36.59539], [-82.197231, 36.595388], [-82.197149, 36.595385], [-82.197122, 36.595385], [-82.197012, 36.595381], [-82.19701, 36.59538], [-82.196676, 36.595371], [-82.196565, 36.595369], [-82.196398, 36.595364], [-82.195897, 36.59535], [-82.195731, 36.595346], [-82.195664, 36.595344], [-82.195465, 36.595338], [-82.195399, 36.595337], [-82.194814, 36.595322], [-82.194706, 36.595318], [-82.19468, 36.595318], [-82.1946, 36.595315], [-82.19436, 36.595309], [-82.194281, 36.595307], [-82.194054, 36.5953], [-82.193936, 36.595297], [-82.193374, 36.595278], [-82.193148, 36.595271], [-82.193067, 36.595269], [-82.192824, 36.595265], [-82.192744, 36.595264], [-82.192711, 36.595263], [-82.192642, 36.595262], [-82.192615, 36.595261], [-82.192584, 36.59526], [-82.192416, 36.595254], [-82.191912, 36.595238], [-82.191744, 36.595233], [-82.191711, 36.595232], [-82.191615, 36.595229], [-82.191584, 36.595228], [-82.191468, 36.595225], [-82.191121, 36.595216], [-82.191006, 36.595214], [-82.190924, 36.595211], [-82.190596, 36.595203], [-82.190513, 36.595201], [-82.190265, 36.595195], [-82.190183, 36.595193], [-82.190099, 36.595191], [-82.190036, 36.595189], [-82.190005, 36.595187], [-82.18989, 36.595184], [-82.189834, 36.595182], [-82.189744, 36.59518], [-82.189327, 36.595168], [-82.189239, 36.595165], [-82.188976, 36.595158], [-82.188889, 36.595156], [-82.188875, 36.595155], [-82.188836, 36.595154], [-82.188823, 36.595154], [-82.188733, 36.595152], [-82.188694, 36.59515], [-82.188678, 36.59515], [-82.188308, 36.595137], [-82.18818, 36.595133], [-82.188084, 36.595129], [-82.187799, 36.595119], [-82.187704, 36.595116], [-82.187252, 36.595108], [-82.18714, 36.595107], [-82.186428, 36.595096], [-82.185384, 36.595083], [-82.185251, 36.595039], [-82.185143, 36.595069], [-82.183415, 36.595014], [-82.183352, 36.595012], [-82.183139, 36.595006], [-82.1825, 36.59499], [-82.182406, 36.594988], [-82.182288, 36.594985], [-82.18196, 36.594977], [-82.181879, 36.594975], [-82.181695, 36.594967], [-82.181144, 36.594946], [-82.180961, 36.594939], [-82.180933, 36.594937], [-82.180888, 36.594936], [-82.180851, 36.594934], [-82.180824, 36.594934], [-82.180711, 36.59493], [-82.180371, 36.59492], [-82.180313, 36.594919], [-82.180259, 36.594917], [-82.180224, 36.594915], [-82.180121, 36.594912], [-82.180087, 36.594912], [-82.180067, 36.594911], [-82.18001, 36.594909], [-82.179991, 36.594909], [-82.179879, 36.594906], [-82.179856, 36.594906], [-82.179628, 36.594899], [-82.179547, 36.594896], [-82.179436, 36.594894], [-82.179379, 36.594892], [-82.17921, 36.594887], [-82.179154, 36.594886], [-82.179071, 36.594883], [-82.178823, 36.594876], [-82.178741, 36.594874], [-82.178672, 36.594871], [-82.178465, 36.594865], [-82.178396, 36.594864], [-82.178198, 36.594858], [-82.177605, 36.59484], [-82.177408, 36.594835], [-82.177188, 36.594828], [-82.17669, 36.594815], [-82.176531, 36.594809], [-82.176312, 36.594803], [-82.176269, 36.594801], [-82.176143, 36.594797], [-82.176101, 36.594796], [-82.175737, 36.594787], [-82.175163, 36.594775], [-82.174773, 36.594766], [-82.174647, 36.594761], [-82.174541, 36.594758], [-82.174323, 36.59474], [-82.174285, 36.594733], [-82.174253, 36.594728], [-82.174233, 36.594723], [-82.17408, 36.594684], [-82.174029, 36.594672], [-82.173994, 36.594663], [-82.173976, 36.594659], [-82.173891, 36.59463], [-82.173858, 36.594619], [-82.173841, 36.594617], [-82.173794, 36.594614], [-82.173775, 36.594614], [-82.173471, 36.594613], [-82.172559, 36.594611], [-82.172256, 36.594611], [-82.172048, 36.59461], [-82.171424, 36.594608], [-82.171217, 36.594608], [-82.170956, 36.594607], [-82.169916, 36.594603], [-82.169895, 36.594602], [-82.169823, 36.594601], [-82.169545, 36.5946], [-82.169453, 36.5946], [-82.167953, 36.594595], [-82.167331, 36.594592], [-82.167218, 36.594592], [-82.16212, 36.594615], [-82.161318, 36.594625], [-82.161152, 36.594626], [-82.160657, 36.594633], [-82.160492, 36.594636], [-82.160286, 36.594639], [-82.160241, 36.59464], [-82.159671, 36.59465], [-82.159466, 36.594654], [-82.159409, 36.594654], [-82.159217, 36.594656], [-82.158644, 36.594666], [-82.158454, 36.594669], [-82.158243, 36.594672], [-82.15761, 36.594684], [-82.157431, 36.594688], [-82.1574, 36.594688], [-82.157239, 36.59469], [-82.156757, 36.594699], [-82.156597, 36.594702], [-82.156005, 36.594711], [-82.154229, 36.594739], [-82.153638, 36.594749], [-82.153618, 36.594751], [-82.153568, 36.594765], [-82.15335, 36.594758], [-82.152483, 36.594732], [-82.152194, 36.594724], [-82.15193, 36.594716], [-82.151865, 36.594714], [-82.151215, 36.594697], [-82.151002, 36.594722], [-82.150977, 36.594723], [-82.150574, 36.594716], [-82.15051, 36.594717], [-82.150106, 36.594735], [-82.149758, 36.594761], [-82.149317, 36.594761], [-82.14889, 36.594731], [-82.148574, 36.594725], [-82.147379, 36.594728], [-82.146283, 36.594731], [-82.146074, 36.594731], [-82.145001, 36.595859], [-82.14481, 36.596059], [-82.143953, 36.596961], [-82.141397, 36.599651], [-82.133053, 36.608429], [-82.132977, 36.608509], [-82.129234, 36.612448], [-82.128537, 36.612951], [-82.127946, 36.613378], [-82.127918, 36.6134], [-82.126469, 36.614532], [-82.125589, 36.615219], [-82.125459, 36.615321], [-82.125008, 36.615673], [-82.123614, 36.616739], [-82.123047, 36.617172], [-82.122551, 36.61755], [-82.121803, 36.618121], [-82.121149, 36.61862], [-82.121051, 36.618695], [-82.120921, 36.618795], [-82.115303, 36.623108], [-82.115294, 36.623115], [-82.11269, 36.625115], [-82.111814, 36.625843], [-82.110643, 36.626819], [-82.10738, 36.628117], [-82.105746, 36.628767], [-82.108317, 36.631894], [-82.108486, 36.632099], [-82.109569, 36.633415], [-82.110051, 36.634], [-82.110654, 36.634715], [-82.110732, 36.634809], [-82.113189, 36.637724], [-82.112756, 36.637859], [-82.111201, 36.638343], [-82.110999, 36.638406], [-82.11098, 36.638412], [-82.110921, 36.638431], [-82.110736, 36.638853], [-82.110246, 36.639579], [-82.110232, 36.639649], [-82.110126, 36.640092], [-82.110095, 36.640251], [-82.110031, 36.640574], [-82.108758, 36.641652], [-82.10777, 36.642223], [-82.107739, 36.642522], [-82.107728, 36.642578], [-82.107678, 36.642825], [-82.107675, 36.642957], [-82.107376, 36.643173], [-82.107134, 36.64337], [-82.107193, 36.643467], [-82.107318, 36.643675], [-82.107361, 36.643759], [-82.107156, 36.643856], [-82.107084, 36.643866], [-82.106928, 36.643888], [-82.106096, 36.644004], [-82.106223, 36.644185], [-82.106652, 36.644783], [-82.105993, 36.645134], [-82.105417, 36.645575], [-82.10514, 36.645787], [-82.104849, 36.645912], [-82.103076, 36.646674], [-82.103095, 36.646704], [-82.103156, 36.646783], [-82.103344, 36.647036], [-82.10364, 36.647443], [-82.103943, 36.647847], [-82.104052, 36.647973], [-82.104098, 36.648115], [-82.104117, 36.648964], [-82.104125, 36.649393], [-82.10417, 36.65102], [-82.10657, 36.651057], [-82.106977, 36.651114], [-82.107435, 36.651178], [-82.107771, 36.650975], [-82.107943, 36.650871], [-82.108115, 36.650768], [-82.10824, 36.650691], [-82.108366, 36.650615], [-82.108766, 36.650371], [-82.109166, 36.650128], [-82.109448, 36.649956], [-82.109736, 36.649776], [-82.109792, 36.649747], [-82.109852, 36.64971], [-82.110147, 36.649509], [-82.110271, 36.649602], [-82.110408, 36.649757], [-82.110546, 36.649912], [-82.110802, 36.6502], [-82.111007, 36.650422], [-82.111077, 36.650498], [-82.111274, 36.650697], [-82.116673, 36.65613], [-82.117513, 36.655693], [-82.119436, 36.657769], [-82.119413, 36.657929], [-82.119295, 36.658119], [-82.119076, 36.658312], [-82.119101, 36.658437], [-82.119401, 36.658861], [-82.119415, 36.658875], [-82.11944, 36.658902], [-82.119578, 36.658784], [-82.119853, 36.65851], [-82.120662, 36.657763], [-82.1208, 36.65799], [-82.120866, 36.65807], [-82.121002, 36.658285], [-82.119813, 36.659089], [-82.118245, 36.65981], [-82.117446, 36.66011], [-82.1172, 36.660154], [-82.117069, 36.66013], [-82.116485, 36.660816], [-82.116448, 36.660855], [-82.116089, 36.661203], [-82.115529, 36.661473], [-82.114542, 36.661962], [-82.114525, 36.662107], [-82.114198, 36.664699], [-82.116699, 36.667793], [-82.116872, 36.667917], [-82.119578, 36.669757], [-82.121324, 36.671077], [-82.121793, 36.671431], [-82.122062, 36.671304], [-82.122347, 36.671081], [-82.122618, 36.670821], [-82.123566, 36.672031], [-82.124059, 36.672672], [-82.124203, 36.672812], [-82.124347, 36.672946], [-82.124655, 36.673086], [-82.124837, 36.673064], [-82.124984, 36.673046], [-82.125214, 36.672886], [-82.125482, 36.67249], [-82.127389, 36.672759], [-82.127929, 36.673332], [-82.127602, 36.673709], [-82.12774, 36.673907], [-82.128071, 36.67397], [-82.128317, 36.673838], [-82.128452, 36.674321], [-82.128899, 36.675013], [-82.129141, 36.675254], [-82.12867, 36.67574], [-82.128493, 36.676055], [-82.128401, 36.676245], [-82.128559, 36.676277], [-82.128755, 36.676158], [-82.128799, 36.676062], [-82.128857, 36.675922], [-82.128998, 36.675785], [-82.129201, 36.675643], [-82.129588, 36.67563], [-82.129807, 36.675559], [-82.130027, 36.675451], [-82.130117, 36.675438], [-82.130184, 36.67543], [-82.130241, 36.675453], [-82.13035, 36.675497], [-82.130419, 36.67568], [-82.130428, 36.675704], [-82.130431, 36.675724], [-82.130461, 36.675961], [-82.130494, 36.676051], [-82.130521, 36.676082], [-82.130555, 36.67612], [-82.130592, 36.67614], [-82.130617, 36.676155], [-82.130621, 36.676156], [-82.130677, 36.676175], [-82.130784, 36.676212], [-82.130824, 36.67623], [-82.130863, 36.676247], [-82.130925, 36.676318], [-82.130946, 36.676368], [-82.130981, 36.676452], [-82.13102, 36.676518], [-82.131047, 36.676539], [-82.131079, 36.676565], [-82.131233, 36.676613], [-82.131341, 36.676623], [-82.131489, 36.676681], [-82.131589, 36.676707], [-82.131672, 36.676729], [-82.131727, 36.676791], [-82.13178, 36.676923], [-82.131937, 36.676936], [-82.132184, 36.676911], [-82.132323, 36.67678], [-82.132319, 36.676727], [-82.132295, 36.676431], [-82.132143, 36.67617], [-82.131866, 36.675918], [-82.131797, 36.675856], [-82.131751, 36.675783], [-82.131748, 36.67575], [-82.131747, 36.675738], [-82.131738, 36.67564], [-82.131807, 36.675603], [-82.131938, 36.675588], [-82.132626, 36.675493], [-82.132016, 36.675337], [-82.131619, 36.675292], [-82.131469, 36.675276], [-82.131276, 36.675205], [-82.131247, 36.675122], [-82.131242, 36.675099], [-82.131203, 36.674923], [-82.131138, 36.674871], [-82.131083, 36.674845], [-82.130767, 36.674807], [-82.130279, 36.672975], [-82.130274, 36.672955], [-82.130072, 36.672191], [-82.13004, 36.67207], [-82.130027, 36.672021], [-82.129965, 36.671785], [-82.129552, 36.671365], [-82.129548, 36.671361], [-82.129411, 36.671037], [-82.129718, 36.670858], [-82.13002, 36.670704], [-82.130102, 36.670485], [-82.129968, 36.670042], [-82.130604, 36.670135], [-82.132077, 36.670351], [-82.132122, 36.670447], [-82.132168, 36.670545], [-82.132327, 36.670571], [-82.13256, 36.670488], [-82.132631, 36.670463], [-82.132818, 36.670289], [-82.133068, 36.670132], [-82.133072, 36.670131], [-82.133486, 36.670022], [-82.133592, 36.670148], [-82.133592, 36.670165], [-82.133593, 36.670214], [-82.133593, 36.670254], [-82.133594, 36.670309], [-82.134033, 36.670351], [-82.134201, 36.670243], [-82.135287, 36.670309], [-82.135492, 36.670374], [-82.135495, 36.670375], [-82.135777, 36.670598], [-82.135852, 36.670657], [-82.135929, 36.670757], [-82.135948, 36.670846], [-82.135959, 36.670898], [-82.136209, 36.670441], [-82.136856, 36.670439], [-82.137682, 36.670364], [-82.139182, 36.670217], [-82.139522, 36.67044], [-82.139937, 36.67062], [-82.14029, 36.670683], [-82.141243, 36.670657], [-82.141605, 36.670641], [-82.142781, 36.671042], [-82.144593, 36.67166], [-82.144579, 36.671225], [-82.144578, 36.671039], [-82.144578, 36.670859], [-82.144576, 36.670713], [-82.144574, 36.670632], [-82.144574, 36.670614], [-82.144573, 36.670515], [-82.144572, 36.670465], [-82.144549, 36.670033], [-82.144548, 36.669987], [-82.14385, 36.669886], [-82.143692, 36.669931], [-82.14363, 36.669949], [-82.143493, 36.670059], [-82.143328, 36.67019], [-82.143138, 36.669917], [-82.142807, 36.669844], [-82.142512, 36.669915], [-82.142306, 36.669997], [-82.141099, 36.669757], [-82.139067, 36.669556], [-82.138844, 36.669469], [-82.138769, 36.669316], [-82.138441, 36.669488], [-82.138244, 36.669533], [-82.135959, 36.669537], [-82.135767, 36.669466], [-82.135635, 36.669358], [-82.135493, 36.669311], [-82.135356, 36.669422], [-82.134859, 36.669446], [-82.134165, 36.66938], [-82.133639, 36.669358], [-82.133084, 36.669248], [-82.132502, 36.669137], [-82.132003, 36.668916], [-82.131918, 36.668696], [-82.131855, 36.668681], [-82.13178, 36.668475], [-82.131615, 36.668254], [-82.13134, 36.668254], [-82.13101, 36.668232], [-82.130542, 36.668254], [-82.13046, 36.667746], [-82.130377, 36.667282], [-82.130295, 36.667061], [-82.12914, 36.666046], [-82.128948, 36.665869], [-82.12881, 36.665648], [-82.127958, 36.662844], [-82.127793, 36.662689], [-82.12738, 36.662645], [-82.127215, 36.662601], [-82.126968, 36.662446], [-82.124396, 36.659063], [-82.124108, 36.658737], [-82.123806, 36.658516], [-82.123393, 36.658383], [-82.121274, 36.658105], [-82.121129, 36.657884], [-82.121052, 36.657762], [-82.120989, 36.657663], [-82.121102, 36.657575], [-82.121185, 36.657523], [-82.121221, 36.657505], [-82.12171, 36.657161], [-82.121992, 36.65695], [-82.122166, 36.656811], [-82.122406, 36.656575], [-82.122474, 36.65652], [-82.122644, 36.656395], [-82.122817, 36.656256], [-82.123016, 36.656082], [-82.123126, 36.655999], [-82.123198, 36.655937], [-82.123274, 36.655886], [-82.123282, 36.655881], [-82.123294, 36.655873], [-82.122877, 36.655742], [-82.122874, 36.655741], [-82.122844, 36.6557], [-82.122591, 36.655363], [-82.123862, 36.65458], [-82.123973, 36.65451], [-82.123655, 36.654179], [-82.123887, 36.653985], [-82.124086, 36.653818], [-82.124642, 36.654418], [-82.124704, 36.654485], [-82.124722, 36.654504], [-82.124828, 36.654617], [-82.125025, 36.654611], [-82.126554, 36.653297], [-82.126571, 36.653197], [-82.126538, 36.653076], [-82.126365, 36.652844], [-82.126343, 36.652814], [-82.125365, 36.651604], [-82.124448, 36.650471], [-82.124071, 36.650482], [-82.118896, 36.650597], [-82.117196, 36.648942], [-82.121917, 36.646112], [-82.11547, 36.639535], [-82.114501, 36.638549], [-82.114887, 36.638357], [-82.115073, 36.638265], [-82.116564, 36.637526], [-82.116582, 36.637517], [-82.116591, 36.637513], [-82.116615, 36.637501], [-82.117994, 36.636817], [-82.118163, 36.636735], [-82.118764, 36.636435], [-82.119719, 36.635962], [-82.121681, 36.63499], [-82.121944, 36.63479], [-82.122311, 36.634516], [-82.122343, 36.63449], [-82.122847, 36.634494], [-82.124985, 36.634513], [-82.127123, 36.634542], [-82.127209, 36.634543], [-82.13199, 36.634601], [-82.132894, 36.634615], [-82.133669, 36.634627], [-82.134812, 36.63464], [-82.135091, 36.634643], [-82.135188, 36.63457], [-82.137162, 36.632939], [-82.137549, 36.633558], [-82.138393, 36.634893], [-82.139904, 36.637296], [-82.140215, 36.637789], [-82.140415, 36.638107], [-82.140502, 36.638071], [-82.141941, 36.637473], [-82.142062, 36.637424], [-82.142068, 36.637421], [-82.142203, 36.637367], [-82.142227, 36.637357], [-82.142879, 36.637089], [-82.143985, 36.636644], [-82.144553, 36.636415], [-82.144979, 36.636242], [-82.149027, 36.634603], [-82.15191, 36.633436], [-82.15203, 36.633385], [-82.152167, 36.633333], [-82.152404, 36.633216], [-82.155157, 36.631899], [-82.156246, 36.631502], [-82.156404, 36.63144], [-82.156474, 36.631412], [-82.15787, 36.630898], [-82.158567, 36.630641], [-82.158107, 36.626752], [-82.158164, 36.626752], [-82.159523, 36.626755], [-82.160191, 36.626757], [-82.161172, 36.626758], [-82.161607, 36.62676], [-82.162078, 36.626771], [-82.16268, 36.626794], [-82.163453, 36.626837], [-82.164125, 36.626895], [-82.165025, 36.626987], [-82.166299, 36.627128], [-82.166525, 36.627153], [-82.166559, 36.627156], [-82.166777, 36.627179], [-82.166795, 36.627181], [-82.166947, 36.627196], [-82.167348, 36.627239], [-82.167682, 36.62727], [-82.168103, 36.62731], [-82.168466, 36.627335], [-82.168592, 36.62734], [-82.168966, 36.627354], [-82.169639, 36.627372], [-82.169772, 36.627372], [-82.1702, 36.627374], [-82.170861, 36.627363], [-82.171423, 36.627345], [-82.17227, 36.62732], [-82.172628, 36.627305], [-82.175581, 36.627221], [-82.17572, 36.627214], [-82.176104, 36.627205], [-82.177239, 36.627173], [-82.177331, 36.62717], [-82.177367, 36.627169], [-82.177451, 36.627165], [-82.177888, 36.627142], [-82.177895, 36.627142], [-82.17829, 36.627104], [-82.178506, 36.627073], [-82.178697, 36.627037], [-82.179007, 36.626972], [-82.179641, 36.62684], [-82.179846, 36.626744], [-82.180584, 36.626398], [-82.180712, 36.626338], [-82.181457, 36.625875], [-82.18246, 36.625262], [-82.183098, 36.624873], [-82.183279, 36.624764], [-82.184292, 36.624151], [-82.185427, 36.623642], [-82.185786, 36.623481], [-82.186326, 36.623238], [-82.186382, 36.623213], [-82.186862, 36.622998], [-82.186884, 36.622988], [-82.186904, 36.622979], [-82.187112, 36.622886], [-82.187278, 36.622767], [-82.18754, 36.62258], [-82.187753, 36.622428], [-82.187919, 36.622309], [-82.188089, 36.622188], [-82.188311, 36.622103], [-82.188931, 36.621868], [-82.188951, 36.62186], [-82.189115, 36.621805], [-82.189186, 36.621782], [-82.189299, 36.621744], [-82.190361, 36.621391], [-82.190837, 36.621231], [-82.191612, 36.62095], [-82.191969, 36.620823], [-82.192417, 36.62066], [-82.192431, 36.620654], [-82.192457, 36.620642], [-82.194112, 36.619828], [-82.195022, 36.61938], [-82.196673, 36.618518], [-82.203207, 36.615106], [-82.204706, 36.614323], [-82.207338, 36.612904], [-82.20885, 36.612305], [-82.208991, 36.612248], [-82.209488, 36.612167], [-82.209585, 36.612152], [-82.209692, 36.612136], [-82.209763, 36.612078], [-82.210537, 36.61146], [-82.210805, 36.611245], [-82.210977, 36.611171], [-82.211316, 36.611026], [-82.213937, 36.609888], [-82.214647, 36.609582], [-82.214783, 36.609512], [-82.214896, 36.609459], [-82.216841, 36.608485], [-82.218854, 36.607484], [-82.219017, 36.607441], [-82.219631, 36.607276], [-82.220666, 36.606747], [-82.221602, 36.60633], [-82.222971, 36.605646], [-82.224, 36.605426], [-82.224058, 36.605414], [-82.224321, 36.605064], [-82.224412, 36.60494], [-82.224449, 36.60489], [-82.225122, 36.6046], [-82.227099, 36.603863], [-82.228252, 36.603501], [-82.229264, 36.603453], [-82.23035, 36.603643], [-82.231201, 36.603742], [-82.23214, 36.604185], [-82.232473, 36.604326], [-82.232619, 36.604477], [-82.232865, 36.604731], [-82.232955, 36.604827], [-82.233202, 36.604656], [-82.233321, 36.6046], [-82.23373, 36.604402], [-82.232939, 36.602594], [-82.232912, 36.60183], [-82.233009, 36.601616], [-82.233122, 36.601366], [-82.233238, 36.601299], [-82.233374, 36.601219], [-82.233435, 36.601184], [-82.233535, 36.600967], [-82.23367, 36.600894], [-82.233583, 36.600559], [-82.233527, 36.600341], [-82.233443, 36.600074], [-82.233776, 36.599924], [-82.234822, 36.599465], [-82.235144, 36.599322], [-82.235372, 36.59922], [-82.236695, 36.59863], [-82.23698, 36.598503], [-82.237123, 36.59844], [-82.237573, 36.59824], [-82.237605, 36.598133], [-82.237679, 36.598048], [-82.23805, 36.597618], [-82.238151, 36.597501], [-82.239314, 36.596927], [-82.239665, 36.596757], [-82.240311, 36.596448], [-82.241151, 36.59644], [-82.241711, 36.596402], [-82.242917, 36.595867], [-82.243238, 36.595724], [-82.243386, 36.595658] ] ], [ [ [-82.128527, 36.649083], [-82.12839, 36.64861], [-82.128329, 36.648412], [-82.12787, 36.646923], [-82.125808, 36.646978], [-82.1254, 36.646723], [-82.12506, 36.646414], [-82.124901, 36.645996], [-82.124615, 36.645298], [-82.124357, 36.644668], [-82.12289, 36.645544], [-82.121917, 36.646112], [-82.122459, 36.646648], [-82.125785, 36.650034], [-82.125988, 36.649852], [-82.126349, 36.649523], [-82.12662, 36.64934], [-82.126846, 36.649159], [-82.127026, 36.648957], [-82.127208, 36.649067], [-82.127184, 36.649267], [-82.127387, 36.649442], [-82.127537, 36.64951], [-82.128011, 36.649704], [-82.128251, 36.649667], [-82.128468, 36.649334], [-82.128527, 36.649083] ] ], [ [ [-77.532688, 38.308475], [-77.532315, 38.308506], [-77.53102, 38.308439], [-77.530585, 38.308475], [-77.52962, 38.308388], [-77.529195, 38.308295], [-77.528813, 38.308193], [-77.528682, 38.308142], [-77.528526, 38.308058], [-77.527558, 38.30765], [-77.527106, 38.307477], [-77.526538, 38.30726], [-77.526378, 38.307202], [-77.52623, 38.307159], [-77.526041, 38.30712], [-77.525617, 38.307072], [-77.525003, 38.307025], [-77.524811, 38.30701], [-77.52404, 38.306963], [-77.523798, 38.306937], [-77.523656, 38.306915], [-77.523607, 38.306907], [-77.523424, 38.306869], [-77.523372, 38.306856], [-77.523209, 38.306812], [-77.523164, 38.306799], [-77.522853, 38.306697], [-77.522664, 38.30665], [-77.522435, 38.306612], [-77.522274, 38.306597], [-77.522076, 38.306593], [-77.521918, 38.3066], [-77.520908, 38.30668], [-77.520579, 38.306698], [-77.520167, 38.306707], [-77.520051, 38.306706], [-77.519698, 38.306698], [-77.51949, 38.306683], [-77.519331, 38.306672], [-77.518534, 38.306595], [-77.518292, 38.30657], [-77.518257, 38.306566], [-77.517672, 38.306513], [-77.517565, 38.306502], [-77.517066, 38.306464], [-77.516346, 38.30641], [-77.516353, 38.306337], [-77.516423, 38.305622], [-77.514885, 38.305507], [-77.515288, 38.302539], [-77.51613, 38.300022], [-77.517085, 38.298471], [-77.517835, 38.297697], [-77.51785, 38.297682], [-77.517994, 38.297533], [-77.517713, 38.297315], [-77.517895, 38.296922], [-77.517134, 38.295438], [-77.51695, 38.295463], [-77.516834, 38.295197], [-77.516807, 38.295136], [-77.516693, 38.295174], [-77.51572, 38.295496], [-77.515485, 38.295574], [-77.514601, 38.295867], [-77.514314, 38.29603], [-77.514117, 38.296148], [-77.514052, 38.296184], [-77.514045, 38.296186], [-77.513602, 38.296312], [-77.513571, 38.296276], [-77.513351, 38.29602], [-77.513274, 38.295845], [-77.513252, 38.295796], [-77.51311, 38.295475], [-77.513038, 38.295392], [-77.513, 38.295347], [-77.512886, 38.295048], [-77.51279, 38.294797], [-77.512798, 38.294737], [-77.51277, 38.294705], [-77.512756, 38.294688], [-77.512679, 38.294699], [-77.512596, 38.294693], [-77.512517, 38.294666], [-77.51245, 38.294644], [-77.512352, 38.2946], [-77.512269, 38.294528], [-77.512195, 38.294452], [-77.512178, 38.294435], [-77.51213, 38.294379], [-77.512067, 38.294303], [-77.511948, 38.294221], [-77.511816, 38.294111], [-77.511649, 38.294012], [-77.511537, 38.29394], [-77.511294, 38.293814], [-77.511184, 38.293772], [-77.511036, 38.293715], [-77.510876, 38.293638], [-77.510722, 38.293611], [-77.510297, 38.293517], [-77.510143, 38.293467], [-77.510012, 38.293424], [-77.509803, 38.293363], [-77.509724, 38.293325], [-77.509678, 38.293303], [-77.509603, 38.293272], [-77.509517, 38.293237], [-77.509253, 38.293198], [-77.509197, 38.29316], [-77.509141, 38.29311], [-77.509072, 38.293072], [-77.508898, 38.293017], [-77.508807, 38.292962], [-77.508584, 38.292753], [-77.508438, 38.292654], [-77.508236, 38.292528], [-77.508104, 38.29244], [-77.507936, 38.292347], [-77.50779, 38.292259], [-77.507623, 38.292182], [-77.507565, 38.292151], [-77.508165, 38.290399], [-77.50935, 38.286936], [-77.509406, 38.286778], [-77.511828, 38.279961], [-77.511751, 38.279976], [-77.511661, 38.279993], [-77.511366, 38.280049], [-77.511101, 38.280093], [-77.510875, 38.280144], [-77.510787, 38.280164], [-77.510516, 38.280213], [-77.510244, 38.28029], [-77.509875, 38.280356], [-77.509547, 38.280427], [-77.509324, 38.280487], [-77.508969, 38.280531], [-77.508321, 38.28058], [-77.508043, 38.280569], [-77.5079, 38.280541], [-77.507736, 38.280508], [-77.507464, 38.280481], [-77.507158, 38.280459], [-77.507012, 38.280426], [-77.506893, 38.280404], [-77.506629, 38.280365], [-77.506576, 38.280357], [-77.506371, 38.280327], [-77.506232, 38.280321], [-77.506009, 38.280304], [-77.505855, 38.28026], [-77.505591, 38.280178], [-77.505382, 38.280139], [-77.504978, 38.280112], [-77.504769, 38.280112], [-77.504532, 38.280101], [-77.504323, 38.280117], [-77.503982, 38.280155], [-77.503856, 38.280155], [-77.503731, 38.280111], [-77.503571, 38.280067], [-77.503341, 38.280067], [-77.50325, 38.280034], [-77.503188, 38.279963], [-77.503146, 38.279869], [-77.503084, 38.27977], [-77.503014, 38.279748], [-77.502916, 38.279726], [-77.502763, 38.27971], [-77.50268, 38.279677], [-77.502589, 38.279633], [-77.502429, 38.279501], [-77.502331, 38.279484], [-77.502255, 38.279457], [-77.50215, 38.279336], [-77.501976, 38.279188], [-77.501775, 38.279089], [-77.501607, 38.279045], [-77.501412, 38.279072], [-77.50121, 38.279116], [-77.500952, 38.279204], [-77.500785, 38.279231], [-77.500597, 38.279308], [-77.500472, 38.279374], [-77.500325, 38.279478], [-77.500186, 38.279588], [-77.500081, 38.279665], [-77.500005, 38.279677], [-77.499747, 38.279606], [-77.499608, 38.279606], [-77.499468, 38.279612], [-77.499451, 38.279624], [-77.499349, 38.279669], [-77.499218, 38.279727], [-77.499023, 38.279854], [-77.498647, 38.280084], [-77.498563, 38.280408], [-77.498522, 38.28048], [-77.498515, 38.280655], [-77.498515, 38.280842], [-77.498522, 38.281001], [-77.498453, 38.281205], [-77.498231, 38.281412], [-77.498195, 38.281446], [-77.498, 38.281759], [-77.498008, 38.282072], [-77.498064, 38.28227], [-77.497911, 38.282918], [-77.497667, 38.283061], [-77.497507, 38.283099], [-77.497186, 38.283006], [-77.496922, 38.282962], [-77.496789, 38.282869], [-77.49674, 38.28277], [-77.496594, 38.282622], [-77.496266, 38.28226], [-77.496057, 38.282189], [-77.495709, 38.282172], [-77.495221, 38.282206], [-77.494567, 38.282371], [-77.494531, 38.281349], [-77.494489, 38.281091], [-77.494433, 38.28068], [-77.494402, 38.280544], [-77.494377, 38.280432], [-77.494147, 38.279823], [-77.493931, 38.279516], [-77.492955, 38.278951], [-77.492815, 38.278812], [-77.49471, 38.273842], [-77.492047, 38.273645], [-77.491954, 38.273638], [-77.491894, 38.273634], [-77.489498, 38.273482], [-77.488694, 38.273431], [-77.487462, 38.273349], [-77.48718, 38.27333], [-77.485136, 38.273192], [-77.484626, 38.273157], [-77.483211, 38.273063], [-77.482809, 38.273036], [-77.482583, 38.272996], [-77.482347, 38.272964], [-77.482603, 38.272747], [-77.482564, 38.272736], [-77.479772, 38.27198], [-77.479687, 38.271957], [-77.478713, 38.271693], [-77.477466, 38.271356], [-77.47738, 38.271333], [-77.475452, 38.270811], [-77.47339, 38.270253], [-77.472442, 38.271419], [-77.471033, 38.27328], [-77.471001, 38.273322], [-77.470068, 38.274884], [-77.46947, 38.275901], [-77.46884, 38.276951], [-77.468808, 38.277001], [-77.468572, 38.277374], [-77.467194, 38.27955], [-77.46715, 38.279618], [-77.467151, 38.27967], [-77.467153, 38.279788], [-77.465923, 38.2798], [-77.465359, 38.279807], [-77.465312, 38.279671], [-77.465313, 38.279308], [-77.465315, 38.279049], [-77.465029, 38.278977], [-77.463991, 38.278588], [-77.463092, 38.278209], [-77.462187, 38.277896], [-77.461741, 38.277814], [-77.461365, 38.277787], [-77.461056, 38.277812], [-77.461035, 38.277618], [-77.460877, 38.276769], [-77.460652, 38.275942], [-77.460425, 38.275516], [-77.460196, 38.275085], [-77.459198, 38.273406], [-77.458867, 38.272848], [-77.457839, 38.271116], [-77.45747, 38.2713], [-77.457173, 38.271445], [-77.456865, 38.271597], [-77.454064, 38.272965], [-77.454052, 38.272971], [-77.452775, 38.273595], [-77.45216, 38.273895], [-77.450572, 38.274857], [-77.450839, 38.275128], [-77.451397, 38.275694], [-77.451893, 38.276195], [-77.452549, 38.277147], [-77.452634, 38.277384], [-77.45276, 38.277702], [-77.453185, 38.278783], [-77.453214, 38.279249], [-77.453279, 38.279489], [-77.453626, 38.280766], [-77.453716, 38.281078], [-77.453955, 38.281873], [-77.454608, 38.283636], [-77.45464, 38.283707], [-77.454511, 38.283737], [-77.453247, 38.284037], [-77.451741, 38.28451], [-77.45169, 38.284464], [-77.45155, 38.284397], [-77.451464, 38.284356], [-77.450587, 38.283938], [-77.450212, 38.283674], [-77.450116, 38.283546], [-77.449797, 38.283118], [-77.448285, 38.283431], [-77.448595, 38.284147], [-77.447151, 38.284615], [-77.447128, 38.284622], [-77.447192, 38.284683], [-77.447713, 38.285553], [-77.448271, 38.286421], [-77.448602, 38.286847], [-77.44871, 38.286986], [-77.449189, 38.287785], [-77.449574, 38.288425], [-77.449649, 38.288679], [-77.449706, 38.288869], [-77.449818, 38.289138], [-77.450106, 38.289676], [-77.450114, 38.289691], [-77.450154, 38.289762], [-77.450168, 38.289786], [-77.450187, 38.289819], [-77.45022, 38.289894], [-77.450234, 38.289927], [-77.450536, 38.290626], [-77.451031, 38.291554], [-77.451236, 38.291978], [-77.451512, 38.292548], [-77.452, 38.294365], [-77.452174, 38.294744], [-77.452702, 38.29583], [-77.45278, 38.295991], [-77.453317, 38.296984], [-77.453464, 38.297127], [-77.453631, 38.297264], [-77.453777, 38.297391], [-77.454203, 38.298467], [-77.45461, 38.299217], [-77.454656, 38.299301], [-77.454947, 38.299826], [-77.455276, 38.300416], [-77.455598, 38.301135], [-77.455694, 38.301349], [-77.455833, 38.301547], [-77.45584, 38.301556], [-77.456036, 38.301832], [-77.456161, 38.301986], [-77.456559, 38.302475], [-77.456973, 38.302874], [-77.457315, 38.303173], [-77.457672, 38.303633], [-77.457699, 38.303668], [-77.457866, 38.303884], [-77.457979, 38.304077], [-77.458108, 38.304298], [-77.458154, 38.304384], [-77.458159, 38.304393], [-77.458163, 38.304399], [-77.458172, 38.304416], [-77.458189, 38.304447], [-77.458365, 38.304768], [-77.458678, 38.305394], [-77.459136, 38.306465], [-77.459164, 38.306513], [-77.459714, 38.307449], [-77.459961, 38.307811], [-77.460128, 38.30802], [-77.460358, 38.308289], [-77.460533, 38.308459], [-77.461069, 38.308871], [-77.461627, 38.309343], [-77.462018, 38.30982], [-77.462492, 38.310205], [-77.463098, 38.310913], [-77.463293, 38.311083], [-77.463691, 38.311226], [-77.463886, 38.311319], [-77.463948, 38.311396], [-77.463969, 38.311418], [-77.463907, 38.311467], [-77.463795, 38.311522], [-77.46351, 38.311478], [-77.4633, 38.311407], [-77.463203, 38.311428], [-77.463175, 38.311434], [-77.463147, 38.311533], [-77.463283, 38.311966], [-77.463289, 38.311984], [-77.463419, 38.312401], [-77.463468, 38.312966], [-77.463698, 38.313419], [-77.463703, 38.313429], [-77.463838, 38.313696], [-77.463998, 38.314212], [-77.46395, 38.314278], [-77.463873, 38.3143], [-77.46381, 38.314355], [-77.464075, 38.315014], [-77.464096, 38.315223], [-77.464152, 38.315437], [-77.4642, 38.315545], [-77.46445, 38.315808], [-77.46488, 38.316262], [-77.464904, 38.316288], [-77.464922, 38.316307], [-77.466381, 38.317848], [-77.466943, 38.318533], [-77.467048, 38.318662], [-77.467055, 38.318668], [-77.467652, 38.318939], [-77.468468, 38.31912], [-77.469869, 38.31912], [-77.469978, 38.319129], [-77.470294, 38.319158], [-77.470322, 38.319163], [-77.470503, 38.319229], [-77.470921, 38.319493], [-77.471305, 38.319536], [-77.47136, 38.319536], [-77.47203, 38.319542], [-77.473033, 38.319783], [-77.473319, 38.319915], [-77.47334, 38.320085], [-77.473438, 38.320596], [-77.473682, 38.320936], [-77.473891, 38.320974], [-77.473915, 38.320978], [-77.474254, 38.32104], [-77.474728, 38.321029], [-77.475139, 38.320968], [-77.475557, 38.320759], [-77.475815, 38.320518], [-77.47594, 38.320133], [-77.476052, 38.320106], [-77.476484, 38.319958], [-77.476567, 38.319897], [-77.47695, 38.319589], [-77.477403, 38.319046], [-77.477821, 38.318343], [-77.47789, 38.31803], [-77.478026, 38.317611], [-77.478029, 38.317601], [-77.478036, 38.317596], [-77.47821, 38.317299], [-77.478754, 38.316882], [-77.478998, 38.316701], [-77.479792, 38.316508], [-77.48012, 38.316491], [-77.480531, 38.316469], [-77.481388, 38.316485], [-77.482461, 38.316677], [-77.483103, 38.316913], [-77.483527, 38.317157], [-77.483832, 38.317333], [-77.485083, 38.318356], [-77.485766, 38.318916], [-77.485973, 38.319078], [-77.486087, 38.319168], [-77.487084, 38.319959], [-77.487747, 38.320403], [-77.48873, 38.321116], [-77.489567, 38.321984], [-77.489992, 38.321654], [-77.490007, 38.321642], [-77.490038, 38.32162], [-77.490073, 38.321594], [-77.490117, 38.321561], [-77.490201, 38.32167], [-77.490375, 38.32178], [-77.490598, 38.321813], [-77.490743, 38.321873], [-77.490822, 38.321906], [-77.491372, 38.322241], [-77.492279, 38.32257], [-77.493053, 38.323053], [-77.493806, 38.323332], [-77.496407, 38.324458], [-77.497125, 38.324769], [-77.497466, 38.324906], [-77.497532, 38.324933], [-77.498756, 38.325438], [-77.498959, 38.325443], [-77.499037, 38.325446], [-77.499115, 38.325448], [-77.499544, 38.32546], [-77.499879, 38.325635], [-77.500004, 38.325602], [-77.500107, 38.325622], [-77.500204, 38.325655], [-77.50035, 38.325716], [-77.500504, 38.325738], [-77.500664, 38.325732], [-77.50088, 38.325738], [-77.500999, 38.325749], [-77.501208, 38.325804], [-77.501396, 38.325815], [-77.501449, 38.325828], [-77.501556, 38.325854], [-77.501574, 38.325858], [-77.501648, 38.325876], [-77.501863, 38.325881], [-77.501926, 38.325832], [-77.502079, 38.325793], [-77.502225, 38.325837], [-77.502256, 38.325863], [-77.502406, 38.325997], [-77.502713, 38.326068], [-77.502908, 38.326118], [-77.502992, 38.326162], [-77.503131, 38.326211], [-77.50318, 38.326206], [-77.503333, 38.326145], [-77.503494, 38.326151], [-77.503605, 38.3262], [-77.503654, 38.326343], [-77.503737, 38.326448], [-77.503877, 38.326453], [-77.504114, 38.326426], [-77.504351, 38.326376], [-77.504595, 38.326316], [-77.504874, 38.3263], [-77.505452, 38.326234], [-77.505682, 38.326262], [-77.505738, 38.326289], [-77.505884, 38.326273], [-77.506045, 38.32618], [-77.506212, 38.326152], [-77.506393, 38.326147], [-77.506554, 38.326092], [-77.506784, 38.325933], [-77.506937, 38.325801], [-77.507104, 38.32568], [-77.507195, 38.325631], [-77.507279, 38.325593], [-77.507418, 38.325461], [-77.507607, 38.325395], [-77.507844, 38.325379], [-77.508589, 38.325313], [-77.50944, 38.325292], [-77.509969, 38.325325], [-77.510513, 38.325391], [-77.511022, 38.325473], [-77.511273, 38.325495], [-77.511677, 38.325479], [-77.512165, 38.325441], [-77.51252, 38.325364], [-77.512737, 38.325194], [-77.512904, 38.32509], [-77.513239, 38.325002], [-77.513434, 38.324925], [-77.513713, 38.324766], [-77.513936, 38.324492], [-77.514048, 38.324371], [-77.514208, 38.324272], [-77.514459, 38.324151], [-77.514891, 38.323987], [-77.515574, 38.323696], [-77.516341, 38.323356], [-77.517017, 38.323126], [-77.517471, 38.323011], [-77.517958, 38.322917], [-77.51837, 38.322868], [-77.518725, 38.322846], [-77.51975, 38.322863], [-77.519754, 38.322863], [-77.520489, 38.322869], [-77.521339, 38.322885], [-77.522043, 38.322875], [-77.522865, 38.32282], [-77.523304, 38.32271], [-77.523562, 38.322617], [-77.523904, 38.322431], [-77.524141, 38.322293], [-77.524357, 38.322233], [-77.52451, 38.322173], [-77.524727, 38.322057], [-77.524894, 38.321931], [-77.52511, 38.321843], [-77.525493, 38.321607], [-77.525779, 38.32141], [-77.526023, 38.321267], [-77.526393, 38.321119], [-77.526832, 38.320872], [-77.527187, 38.320663], [-77.527404, 38.320455], [-77.527641, 38.320241], [-77.527954, 38.319802], [-77.528094, 38.319571], [-77.528178, 38.319379], [-77.528303, 38.319132], [-77.528352, 38.318918], [-77.528387, 38.318709], [-77.528387, 38.31855], [-77.528338, 38.318358], [-77.528269, 38.318149], [-77.528157, 38.317913], [-77.528025, 38.317688], [-77.527865, 38.317479], [-77.527712, 38.317303], [-77.527565, 38.31715], [-77.527419, 38.317018], [-77.527238, 38.316864], [-77.527085, 38.316771], [-77.526945, 38.316721], [-77.526785, 38.316611], [-77.526687, 38.316534], [-77.526354, 38.316213], [-77.526314, 38.316175], [-77.526151, 38.315958], [-77.526081, 38.315809], [-77.526082, 38.31565], [-77.52595, 38.314673], [-77.525839, 38.313196], [-77.525804, 38.312674], [-77.525902, 38.312136], [-77.525819, 38.311664], [-77.525826, 38.311406], [-77.525854, 38.310928], [-77.525923, 38.310632], [-77.525958, 38.310385], [-77.525973, 38.310187], [-77.526099, 38.309798], [-77.526107, 38.309773], [-77.526126, 38.309715], [-77.526245, 38.309539], [-77.526433, 38.309429], [-77.526726, 38.309325], [-77.52706, 38.309106], [-77.527276, 38.308979], [-77.527506, 38.30887], [-77.527807, 38.308782], [-77.527959, 38.308738], [-77.528217, 38.308689], [-77.52837, 38.308656], [-77.528684, 38.308634], [-77.52906, 38.308639], [-77.529283, 38.3087], [-77.529464, 38.308804], [-77.529597, 38.308903], [-77.52982, 38.308996], [-77.530022, 38.309057], [-77.530233, 38.309144], [-77.530291, 38.30918], [-77.530297, 38.309176], [-77.530298, 38.30917], [-77.530366, 38.309057], [-77.530394, 38.309011], [-77.530547, 38.308923], [-77.530687, 38.308852], [-77.530861, 38.308797], [-77.531077, 38.308786], [-77.531537, 38.308814], [-77.532053, 38.308836], [-77.532234, 38.30883], [-77.532387, 38.308814], [-77.532547, 38.308765], [-77.532617, 38.308666], [-77.532673, 38.308539], [-77.532681, 38.308511], [-77.532688, 38.308475] ] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-77.782516, 38.067545], [-77.782616, 38.067145], [-77.783116, 38.066345], [-77.783405, 38.06623], [-77.784116, 38.065945], [-77.784616, 38.065645], [-77.784916, 38.065145], [-77.784616, 38.064245], [-77.784516, 38.063345], [-77.784216, 38.063145], [-77.783016, 38.063245], [-77.782616, 38.063245], [-77.781716, 38.062645], [-77.781116, 38.061545], [-77.780216, 38.060345], [-77.779216, 38.059445], [-77.778516, 38.058745], [-77.777816, 38.058445], [-77.776916, 38.058445], [-77.775816, 38.058245], [-77.774216, 38.057845], [-77.773416, 38.057845], [-77.77196, 38.057457], [-77.771916, 38.057445], [-77.771687, 38.057267], [-77.771016, 38.056745], [-77.770916, 38.056345], [-77.771116, 38.055745], [-77.771405, 38.055263], [-77.771416, 38.055245], [-77.771716, 38.054745], [-77.771716, 38.054245], [-77.771416, 38.053745], [-77.770716, 38.053145], [-77.769816, 38.052545], [-77.769016, 38.052045], [-77.768516, 38.051745], [-77.768116, 38.051745], [-77.767816, 38.051945], [-77.767316, 38.052645], [-77.766516, 38.053045], [-77.766493, 38.053062], [-77.766116, 38.053345], [-77.765116, 38.053445], [-77.764116, 38.053145], [-77.764026, 38.053145], [-77.763916, 38.053145], [-77.763816, 38.053045], [-77.763516, 38.052845], [-77.763442, 38.052771], [-77.763316, 38.052645], [-77.763316, 38.052345], [-77.763316, 38.051745], [-77.763316, 38.051245], [-77.7633, 38.051229], [-77.762916, 38.050845], [-77.762516, 38.050545], [-77.759716, 38.049545], [-77.759616, 38.049445], [-77.759316, 38.049345], [-77.759116, 38.049145], [-77.759016, 38.049145], [-77.758816, 38.049045], [-77.758515, 38.048945], [-77.758215, 38.048945], [-77.757615, 38.048845], [-77.757015, 38.048645], [-77.756515, 38.048445], [-77.756115, 38.048245], [-77.755915, 38.048345], [-77.755715, 38.048645], [-77.755415, 38.048845], [-77.754915, 38.049445], [-77.754115, 38.049945], [-77.753615, 38.050345], [-77.752815, 38.050645], [-77.752315, 38.050945], [-77.751615, 38.051345], [-77.751515, 38.051745], [-77.751415, 38.051945], [-77.751333, 38.052], [-77.751115, 38.052145], [-77.750715, 38.052345], [-77.750615, 38.052445], [-77.750515, 38.052445], [-77.750415, 38.052445], [-77.750215, 38.052545], [-77.750115, 38.052545], [-77.749815, 38.052545], [-77.749715, 38.052695], [-77.749515, 38.052845], [-77.749315, 38.052845], [-77.748615, 38.052845], [-77.747815, 38.052545], [-77.747315, 38.052245], [-77.746615, 38.051845], [-77.746415, 38.051645], [-77.746215, 38.051445], [-77.745515, 38.051345], [-77.745215, 38.051145], [-77.745215, 38.050845], [-77.745915, 38.050045], [-77.746615, 38.049545], [-77.747215, 38.049145], [-77.747415, 38.048945], [-77.747615, 38.048645], [-77.747715, 38.048345], [-77.747815, 38.047945], [-77.747715, 38.047645], [-77.747615, 38.047045], [-77.747515, 38.045845], [-77.747515, 38.045545], [-77.747815, 38.044945], [-77.748115, 38.044445], [-77.748415, 38.043445], [-77.748415, 38.043386], [-77.748415, 38.043145], [-77.748215, 38.042145], [-77.748015, 38.042045], [-77.747415, 38.041645], [-77.746715, 38.041445], [-77.745715, 38.040945], [-77.745215, 38.040845], [-77.745074, 38.040845], [-77.744515, 38.040845], [-77.743815, 38.040945], [-77.742915, 38.040745], [-77.742215, 38.040245], [-77.741615, 38.039645], [-77.741315, 38.039045], [-77.741115, 38.038545], [-77.740915, 38.038245], [-77.740915, 38.037745], [-77.741315, 38.037245], [-77.741816, 38.037078], [-77.741915, 38.037045], [-77.742315, 38.037145], [-77.742715, 38.037445], [-77.742915, 38.037945], [-77.742915, 38.038545], [-77.742915, 38.038845], [-77.742975, 38.038965], [-77.743115, 38.039245], [-77.743329, 38.039245], [-77.743415, 38.039245], [-77.744015, 38.039045], [-77.744815, 38.038745], [-77.745515, 38.038445], [-77.746615, 38.038245], [-77.747915, 38.037645], [-77.748315, 38.037345], [-77.748615, 38.037145], [-77.748715, 38.036945], [-77.748815, 38.036745], [-77.748815, 38.035346], [-77.748815, 38.035246], [-77.748815, 38.035146], [-77.748715, 38.034946], [-77.748615, 38.034746], [-77.748515, 38.034546], [-77.748315, 38.034246], [-77.748015, 38.033846], [-77.747715, 38.033346], [-77.747615, 38.032946], [-77.747815, 38.031746], [-77.748115, 38.031046], [-77.748415, 38.030146], [-77.748515, 38.029546], [-77.748515, 38.029346], [-77.748515, 38.028746], [-77.748315, 38.028446], [-77.747815, 38.027246], [-77.747715, 38.026746], [-77.747615, 38.026346], [-77.747715, 38.025746], [-77.747715, 38.025346], [-77.747715, 38.024546], [-77.747715, 38.024346], [-77.747672, 38.024303], [-77.747315, 38.023946], [-77.746915, 38.023646], [-77.746215, 38.023546], [-77.745415, 38.023646], [-77.744915, 38.023746], [-77.744615, 38.023946], [-77.744415, 38.024346], [-77.744515, 38.024646], [-77.744515, 38.025146], [-77.744215, 38.025546], [-77.743915, 38.025846], [-77.743515, 38.026346], [-77.743015, 38.026746], [-77.742315, 38.027446], [-77.741515, 38.028446], [-77.740915, 38.029246], [-77.740715, 38.029646], [-77.740715, 38.030361], [-77.740715, 38.031246], [-77.740515, 38.032046], [-77.740215, 38.032646], [-77.739815, 38.032946], [-77.739515, 38.033046], [-77.738915, 38.032945], [-77.738215, 38.032645], [-77.737615, 38.032445], [-77.736315, 38.032045], [-77.734815, 38.031845], [-77.733815, 38.031845], [-77.733415, 38.031745], [-77.732315, 38.031645], [-77.731815, 38.031445], [-77.731015, 38.031045], [-77.730615, 38.030445], [-77.730515, 38.030145], [-77.73032, 38.029564], [-77.730214, 38.029246], [-77.729814, 38.028746], [-77.72953, 38.028557], [-77.728314, 38.027746], [-77.728214, 38.027546], [-77.728114, 38.027146], [-77.728114, 38.026746], [-77.728114, 38.026446], [-77.728314, 38.026046], [-77.728514, 38.025946], [-77.728914, 38.025846], [-77.729514, 38.025746], [-77.729814, 38.025646], [-77.730114, 38.025346], [-77.730314, 38.025246], [-77.730514, 38.025246], [-77.730814, 38.025046], [-77.731014, 38.024846], [-77.731095, 38.024034], [-77.731114, 38.023846], [-77.731314, 38.022546], [-77.731515, 38.021846], [-77.731515, 38.021546], [-77.731314, 38.021246], [-77.730614, 38.020846], [-77.729714, 38.021046], [-77.729214, 38.021346], [-77.728541, 38.02175], [-77.728214, 38.021946], [-77.727514, 38.022346], [-77.727114, 38.022646], [-77.726314, 38.022946], [-77.725614, 38.023146], [-77.724314, 38.023346], [-77.723414, 38.023446], [-77.722214, 38.023246], [-77.721714, 38.022946], [-77.721514, 38.022746], [-77.721214, 38.022446], [-77.720914, 38.021946], [-77.720414, 38.021246], [-77.719814, 38.020846], [-77.719314, 38.020646], [-77.719114, 38.020246], [-77.719214, 38.019746], [-77.719714, 38.018746], [-77.719814, 38.018646], [-77.720014, 38.018146], [-77.720014, 38.017346], [-77.719814, 38.017046], [-77.719314, 38.016646], [-77.718614, 38.016446], [-77.717914, 38.016546], [-77.717014, 38.016446], [-77.716575, 38.016277], [-77.715714, 38.015946], [-77.714714, 38.015446], [-77.713954, 38.015245], [-77.713259, 38.014849], [-77.712866, 38.014602], [-77.71286, 38.014588], [-77.712854, 38.014574], [-77.712849, 38.014564], [-77.712732, 38.014306], [-77.712575, 38.014015], [-77.71247, 38.013835], [-77.712028, 38.013019], [-77.711882, 38.012977], [-77.711892, 38.012729], [-77.7117, 38.012755], [-77.711527, 38.012779], [-77.711023, 38.012606], [-77.710578, 38.012585], [-77.710521, 38.012583], [-77.710294, 38.012609], [-77.70987, 38.012744], [-77.709066, 38.013213], [-77.708606, 38.01337], [-77.708152, 38.013415], [-77.706686, 38.013424], [-77.705608, 38.013582], [-77.7053, 38.013519], [-77.704229, 38.01297], [-77.703882, 38.012826], [-77.703873, 38.012822], [-77.703664, 38.012735], [-77.703303, 38.012701], [-77.702636, 38.01275], [-77.70217, 38.012765], [-77.701583, 38.012783], [-77.701359, 38.012754], [-77.701341, 38.012752], [-77.700861, 38.012691], [-77.700405, 38.012703], [-77.700244, 38.01264], [-77.7, 38.012556], [-77.699668, 38.012312], [-77.699364, 38.012003], [-77.699323, 38.011831], [-77.698854, 38.011166], [-77.698206, 38.009955], [-77.697344, 38.008905], [-77.696981, 38.008475], [-77.696027, 38.007521], [-77.695551, 38.007308], [-77.694572, 38.007125], [-77.694548, 38.007126], [-77.694161, 38.007135], [-77.693895, 38.007188], [-77.69323, 38.007566], [-77.692618, 38.00771], [-77.692357, 38.007855], [-77.692062, 38.007951], [-77.688643, 38.008137], [-77.687667, 38.008057], [-77.68746, 38.00804], [-77.687296, 38.008019], [-77.687184, 38.008005], [-77.687118, 38.007997], [-77.687089, 38.007993], [-77.686418, 38.007908], [-77.685548, 38.007873], [-77.685193, 38.007936], [-77.684635, 38.008172], [-77.684067, 38.008291], [-77.682387, 38.007879], [-77.680594, 38.007595], [-77.677863, 38.00687], [-77.676959, 38.006541], [-77.676938, 38.006533], [-77.67662, 38.006417], [-77.674818, 38.005569], [-77.672847, 38.004731], [-77.671557, 38.004163], [-77.6709, 38.003777], [-77.668794, 38.001628], [-77.668376, 38.001119], [-77.668203, 38.000829], [-77.667923, 38.000128], [-77.66798, 37.998585], [-77.667987, 37.998387], [-77.667904, 37.997921], [-77.667813, 37.997721], [-77.667456, 37.997311], [-77.667162, 37.997087], [-77.666843, 37.996948], [-77.666365, 37.996827], [-77.665362, 37.996848], [-77.664781, 37.99691], [-77.66379, 37.99735], [-77.66234, 37.997772], [-77.661751, 37.997807], [-77.661263, 37.997717], [-77.660935, 37.997592], [-77.66075, 37.997449], [-77.660604, 37.997153], [-77.660646, 37.996124], [-77.660412, 37.994831], [-77.660471, 37.993734], [-77.660278, 37.993012], [-77.6597, 37.99209], [-77.659556, 37.992002], [-77.6593, 37.991931], [-77.658219, 37.9918], [-77.657918, 37.991872], [-77.656938, 37.992513], [-77.655833, 37.993017], [-77.65503, 37.993275], [-77.653672, 37.993603], [-77.652786, 37.993776], [-77.652338, 37.993837], [-77.651705, 37.993925], [-77.649478, 37.994161], [-77.649203, 37.994176], [-77.648298, 37.994112], [-77.648107, 37.994099], [-77.647529, 37.994011], [-77.647165, 37.993956], [-77.645028, 37.993326], [-77.64368, 37.992983], [-77.643366, 37.992862], [-77.6429, 37.992684], [-77.642528, 37.992478], [-77.64232, 37.992292], [-77.642148, 37.991816], [-77.642137, 37.991248], [-77.642154, 37.991165], [-77.642202, 37.990936], [-77.642038, 37.991055], [-77.639932, 37.992591], [-77.635521, 37.996137], [-77.629875, 38.000801], [-77.626221, 38.003437], [-77.62496, 38.004707], [-77.622844, 38.006841], [-77.620189, 38.009518], [-77.617635, 38.011751], [-77.612655, 38.016109], [-77.61222, 38.016511], [-77.610903, 38.017765], [-77.606126, 38.022229], [-77.603937, 38.024276], [-77.600198, 38.027771], [-77.597954, 38.02997], [-77.596181, 38.031709], [-77.596133, 38.031748], [-77.595682, 38.032105], [-77.595626, 38.032127], [-77.595362, 38.032319], [-77.59521, 38.032462], [-77.595106, 38.032577], [-77.59394, 38.03361], [-77.593121, 38.034455], [-77.59279, 38.034791], [-77.591822, 38.035796], [-77.591434, 38.036197], [-77.590779, 38.036874], [-77.588322, 38.039036], [-77.586015, 38.041068], [-77.579828, 38.046772], [-77.574496, 38.051688], [-77.572659, 38.053534], [-77.570661, 38.055449], [-77.567535, 38.058446], [-77.567383, 38.058592], [-77.563062, 38.062734], [-77.56033, 38.065355], [-77.554772, 38.070623], [-77.551613, 38.073617], [-77.550603, 38.074574], [-77.548738, 38.076343], [-77.547345, 38.077606], [-77.546339, 38.07851], [-77.541087, 38.083255], [-77.540585, 38.083728], [-77.539296, 38.084948], [-77.537913, 38.086257], [-77.536646, 38.087454], [-77.531372, 38.092442], [-77.530112, 38.093636], [-77.527605, 38.096004], [-77.523833, 38.09957], [-77.52142, 38.101852], [-77.518181, 38.104898], [-77.517618, 38.105428], [-77.512155, 38.110564], [-77.51079, 38.111851], [-77.510156, 38.112445], [-77.510114, 38.112484], [-77.510051, 38.112543], [-77.506042, 38.116303], [-77.504161, 38.118067], [-77.496621, 38.125136], [-77.494678, 38.126958], [-77.492605, 38.129045], [-77.492556, 38.129082], [-77.485041, 38.136273], [-77.480084, 38.141019], [-77.480016, 38.141085], [-77.479917, 38.14118], [-77.473063, 38.147742], [-77.471163, 38.149477], [-77.469415, 38.151073], [-77.468975, 38.151475], [-77.468587, 38.151817], [-77.468129, 38.152248], [-77.467404, 38.152911], [-77.467169, 38.153135], [-77.467126, 38.153162], [-77.467055, 38.153226], [-77.466935, 38.153334], [-77.466537, 38.153695], [-77.466484, 38.153791], [-77.466417, 38.153873], [-77.465972, 38.154212], [-77.465731, 38.154416], [-77.465581, 38.154554], [-77.46266, 38.157293], [-77.459003, 38.160725], [-77.457354, 38.162183], [-77.457031, 38.162468], [-77.456492, 38.162946], [-77.455772, 38.163582], [-77.455476, 38.163844], [-77.45275, 38.166256], [-77.445682, 38.172506], [-77.444516, 38.173537], [-77.442338, 38.175463], [-77.441131, 38.176529], [-77.440231, 38.177326], [-77.437543, 38.180042], [-77.437347, 38.18024], [-77.433499, 38.18413], [-77.433478, 38.18415], [-77.428491, 38.189191], [-77.424336, 38.19358], [-77.419067, 38.199146], [-77.418605, 38.199635], [-77.416743, 38.20144], [-77.408548, 38.209343], [-77.40632, 38.211492], [-77.403134, 38.214564], [-77.402354, 38.215317], [-77.40031, 38.21742], [-77.384868, 38.233307], [-77.384405, 38.233785], [-77.379696, 38.238421], [-77.379684, 38.238432], [-77.379475, 38.238631], [-77.379381, 38.238731], [-77.379376, 38.238736], [-77.379359, 38.238755], [-77.37933, 38.238782], [-77.377784, 38.240195], [-77.37708, 38.240838], [-77.375455, 38.242345], [-77.375316, 38.242474], [-77.374892, 38.242891], [-77.37488, 38.242903], [-77.374687, 38.243092], [-77.374672, 38.243107], [-77.371342, 38.245753], [-77.371337, 38.245757], [-77.370425, 38.246481], [-77.370367, 38.24653], [-77.37031, 38.246578], [-77.370303, 38.246584], [-77.370356, 38.246624], [-77.37041, 38.246664], [-77.370696, 38.246877], [-77.370724, 38.246898], [-77.370977, 38.247084], [-77.370983, 38.247089], [-77.371432, 38.247422], [-77.371553, 38.247493], [-77.373513, 38.248646], [-77.374044, 38.24892], [-77.374628, 38.249221], [-77.375654, 38.249647], [-77.375694, 38.249664], [-77.376894, 38.249958], [-77.377456, 38.249993], [-77.377966, 38.24997], [-77.379031, 38.249819], [-77.379933, 38.249635], [-77.380386, 38.249422], [-77.380724, 38.249243], [-77.380734, 38.249238], [-77.38074, 38.249235], [-77.380816, 38.249196], [-77.380824, 38.249192], [-77.380925, 38.24914], [-77.380971, 38.249107], [-77.38098, 38.249101], [-77.38099, 38.249093], [-77.381351, 38.248848], [-77.381357, 38.248844], [-77.381743, 38.248372], [-77.382221, 38.24791], [-77.38261, 38.247278], [-77.382775, 38.247032], [-77.382787, 38.247015], [-77.383061, 38.246606], [-77.383531, 38.24603], [-77.383908, 38.245693], [-77.384027, 38.245587], [-77.384039, 38.245576], [-77.384223, 38.245482], [-77.384237, 38.245475], [-77.38425, 38.245468], [-77.384265, 38.24546], [-77.384278, 38.245453], [-77.384293, 38.245445], [-77.384544, 38.245315], [-77.384964, 38.245239], [-77.385002, 38.245231], [-77.385017, 38.245228], [-77.385025, 38.245226], [-77.38561, 38.2451], [-77.386493, 38.244982], [-77.386501, 38.244981], [-77.387222, 38.244981], [-77.387348, 38.244981], [-77.387705, 38.245014], [-77.387725, 38.245016], [-77.387733, 38.245017], [-77.387826, 38.245026], [-77.38785, 38.245029], [-77.387917, 38.245039], [-77.387975, 38.245048], [-77.388897, 38.245191], [-77.390404, 38.245504], [-77.390415, 38.245506], [-77.390852, 38.245597], [-77.391047, 38.24567], [-77.391391, 38.245799], [-77.391495, 38.245838], [-77.39284, 38.246343], [-77.393781, 38.246869], [-77.393848, 38.246905], [-77.395734, 38.247904], [-77.397375, 38.249015], [-77.3974, 38.249032], [-77.397419, 38.249045], [-77.397434, 38.249055], [-77.397632, 38.249189], [-77.397644, 38.249197], [-77.398942, 38.250044], [-77.399085, 38.250137], [-77.400969, 38.251425], [-77.400978, 38.251431], [-77.401314, 38.251696], [-77.40204, 38.252268], [-77.404028, 38.253336], [-77.405529, 38.25411], [-77.407994, 38.254603], [-77.408564, 38.254717], [-77.412586, 38.255499], [-77.413954, 38.255724], [-77.414689, 38.255846], [-77.414731, 38.255853], [-77.41475, 38.255856], [-77.414769, 38.255859], [-77.41501, 38.255898], [-77.415923, 38.256049], [-77.416091, 38.256077], [-77.41677, 38.256211], [-77.41711, 38.256279], [-77.417162, 38.25629], [-77.417214, 38.2563], [-77.417362, 38.256329], [-77.417435, 38.256343], [-77.41746, 38.256355], [-77.417468, 38.256359], [-77.417475, 38.256362], [-77.417488, 38.256368], [-77.41845, 38.256832], [-77.41986, 38.257796], [-77.419865, 38.2578], [-77.419873, 38.257805], [-77.419911, 38.257831], [-77.42015, 38.257994], [-77.420248, 38.258177], [-77.420986, 38.259562], [-77.421211, 38.259983], [-77.421982, 38.261343], [-77.421988, 38.261353], [-77.422261, 38.261835], [-77.422339, 38.262071], [-77.422387, 38.262218], [-77.42313, 38.264475], [-77.423322, 38.265024], [-77.423324, 38.265031], [-77.423326, 38.265036], [-77.423337, 38.265067], [-77.423343, 38.265083], [-77.423535, 38.26563], [-77.423551, 38.265657], [-77.423702, 38.265912], [-77.423722, 38.265945], [-77.423737, 38.26597], [-77.423743, 38.26598], [-77.423747, 38.265988], [-77.424156, 38.266681], [-77.42417, 38.26669], [-77.425149, 38.267319], [-77.425157, 38.267324], [-77.42517, 38.267333], [-77.425192, 38.267347], [-77.425211, 38.267359], [-77.426446, 38.268153], [-77.427428, 38.268667], [-77.427437, 38.268672], [-77.427447, 38.268677], [-77.427455, 38.268681], [-77.427474, 38.268691], [-77.427795, 38.268859], [-77.428622, 38.269292], [-77.428689, 38.269327], [-77.430362, 38.269555], [-77.432835, 38.270174], [-77.433833, 38.270925], [-77.433838, 38.270929], [-77.433858, 38.270944], [-77.434313, 38.271286], [-77.43573, 38.27309], [-77.435833, 38.273221], [-77.436593, 38.274418], [-77.436613, 38.27445], [-77.436629, 38.274475], [-77.436632, 38.27448], [-77.436638, 38.274489], [-77.436907, 38.274912], [-77.437308, 38.277372], [-77.437494, 38.278319], [-77.437609, 38.278904], [-77.437979, 38.280325], [-77.438419, 38.280991], [-77.438828, 38.281515], [-77.438884, 38.281587], [-77.439615, 38.282067], [-77.440742, 38.282516], [-77.442022, 38.282587], [-77.442048, 38.282589], [-77.443877, 38.282502], [-77.443891, 38.282506], [-77.445734, 38.283057], [-77.445749, 38.283061], [-77.445787, 38.283108], [-77.446016, 38.283345], [-77.446147, 38.283484], [-77.446667, 38.284025], [-77.44709, 38.284512], [-77.447128, 38.284622], [-77.447151, 38.284615], [-77.448595, 38.284147], [-77.448285, 38.283431], [-77.449797, 38.283118], [-77.450116, 38.283546], [-77.450212, 38.283674], [-77.450587, 38.283938], [-77.451464, 38.284356], [-77.45155, 38.284397], [-77.45169, 38.284464], [-77.451741, 38.28451], [-77.453247, 38.284037], [-77.454511, 38.283737], [-77.45464, 38.283707], [-77.454608, 38.283636], [-77.453955, 38.281873], [-77.453716, 38.281078], [-77.453626, 38.280766], [-77.453279, 38.279489], [-77.453214, 38.279249], [-77.453185, 38.278783], [-77.45276, 38.277702], [-77.452634, 38.277384], [-77.452549, 38.277147], [-77.451893, 38.276195], [-77.451397, 38.275694], [-77.450839, 38.275128], [-77.450572, 38.274857], [-77.45216, 38.273895], [-77.452775, 38.273595], [-77.454052, 38.272971], [-77.454064, 38.272965], [-77.456865, 38.271597], [-77.457173, 38.271445], [-77.45747, 38.2713], [-77.457839, 38.271116], [-77.458867, 38.272848], [-77.459198, 38.273406], [-77.460196, 38.275085], [-77.460425, 38.275516], [-77.460652, 38.275942], [-77.460877, 38.276769], [-77.461035, 38.277618], [-77.461056, 38.277812], [-77.461365, 38.277787], [-77.461741, 38.277814], [-77.462187, 38.277896], [-77.463092, 38.278209], [-77.463991, 38.278588], [-77.465029, 38.278977], [-77.465315, 38.279049], [-77.465313, 38.279308], [-77.465312, 38.279671], [-77.465359, 38.279807], [-77.465923, 38.2798], [-77.467153, 38.279788], [-77.467151, 38.27967], [-77.46715, 38.279618], [-77.467194, 38.27955], [-77.468572, 38.277374], [-77.468808, 38.277001], [-77.46884, 38.276951], [-77.46947, 38.275901], [-77.470068, 38.274884], [-77.471001, 38.273322], [-77.471033, 38.27328], [-77.472442, 38.271419], [-77.47339, 38.270253], [-77.475452, 38.270811], [-77.47738, 38.271333], [-77.477466, 38.271356], [-77.478713, 38.271693], [-77.479687, 38.271957], [-77.479772, 38.27198], [-77.482564, 38.272736], [-77.482603, 38.272747], [-77.482347, 38.272964], [-77.482583, 38.272996], [-77.482809, 38.273036], [-77.483211, 38.273063], [-77.484626, 38.273157], [-77.485136, 38.273192], [-77.48718, 38.27333], [-77.487462, 38.273349], [-77.488694, 38.273431], [-77.489498, 38.273482], [-77.491894, 38.273634], [-77.491954, 38.273638], [-77.492047, 38.273645], [-77.49471, 38.273842], [-77.492815, 38.278812], [-77.492955, 38.278951], [-77.493931, 38.279516], [-77.494147, 38.279823], [-77.494377, 38.280432], [-77.494402, 38.280544], [-77.494433, 38.28068], [-77.494489, 38.281091], [-77.494531, 38.281349], [-77.494567, 38.282371], [-77.495221, 38.282206], [-77.495709, 38.282172], [-77.496057, 38.282189], [-77.496266, 38.28226], [-77.496594, 38.282622], [-77.49674, 38.28277], [-77.496789, 38.282869], [-77.496922, 38.282962], [-77.497186, 38.283006], [-77.497507, 38.283099], [-77.497667, 38.283061], [-77.497911, 38.282918], [-77.498064, 38.28227], [-77.498008, 38.282072], [-77.498, 38.281759], [-77.498195, 38.281446], [-77.498231, 38.281412], [-77.498453, 38.281205], [-77.498522, 38.281001], [-77.498515, 38.280842], [-77.498515, 38.280655], [-77.498522, 38.28048], [-77.498563, 38.280408], [-77.498647, 38.280084], [-77.499023, 38.279854], [-77.499218, 38.279727], [-77.499349, 38.279669], [-77.499451, 38.279624], [-77.499468, 38.279612], [-77.499608, 38.279606], [-77.499747, 38.279606], [-77.500005, 38.279677], [-77.500081, 38.279665], [-77.500186, 38.279588], [-77.500325, 38.279478], [-77.500472, 38.279374], [-77.500597, 38.279308], [-77.500785, 38.279231], [-77.500952, 38.279204], [-77.50121, 38.279116], [-77.501412, 38.279072], [-77.501607, 38.279045], [-77.501775, 38.279089], [-77.501976, 38.279188], [-77.50215, 38.279336], [-77.502255, 38.279457], [-77.502331, 38.279484], [-77.502429, 38.279501], [-77.502589, 38.279633], [-77.50268, 38.279677], [-77.502763, 38.27971], [-77.502916, 38.279726], [-77.503014, 38.279748], [-77.503084, 38.27977], [-77.503146, 38.279869], [-77.503188, 38.279963], [-77.50325, 38.280034], [-77.503341, 38.280067], [-77.503571, 38.280067], [-77.503731, 38.280111], [-77.503856, 38.280155], [-77.503982, 38.280155], [-77.504323, 38.280117], [-77.504532, 38.280101], [-77.504769, 38.280112], [-77.504978, 38.280112], [-77.505382, 38.280139], [-77.505591, 38.280178], [-77.505855, 38.28026], [-77.506009, 38.280304], [-77.506232, 38.280321], [-77.506371, 38.280327], [-77.506576, 38.280357], [-77.506629, 38.280365], [-77.506893, 38.280404], [-77.507012, 38.280426], [-77.507158, 38.280459], [-77.507464, 38.280481], [-77.507736, 38.280508], [-77.5079, 38.280541], [-77.508043, 38.280569], [-77.508321, 38.28058], [-77.508969, 38.280531], [-77.509324, 38.280487], [-77.509547, 38.280427], [-77.509875, 38.280356], [-77.510244, 38.28029], [-77.510516, 38.280213], [-77.510787, 38.280164], [-77.510875, 38.280144], [-77.511101, 38.280093], [-77.511366, 38.280049], [-77.511661, 38.279993], [-77.511751, 38.279976], [-77.511828, 38.279961], [-77.509406, 38.286778], [-77.50935, 38.286936], [-77.508165, 38.290399], [-77.507565, 38.292151], [-77.507623, 38.292182], [-77.50779, 38.292259], [-77.507936, 38.292347], [-77.508104, 38.29244], [-77.508236, 38.292528], [-77.508438, 38.292654], [-77.508584, 38.292753], [-77.508807, 38.292962], [-77.508898, 38.293017], [-77.509072, 38.293072], [-77.509141, 38.29311], [-77.509197, 38.29316], [-77.509253, 38.293198], [-77.509517, 38.293237], [-77.509603, 38.293272], [-77.509678, 38.293303], [-77.509724, 38.293325], [-77.509803, 38.293363], [-77.510012, 38.293424], [-77.510143, 38.293467], [-77.510297, 38.293517], [-77.510722, 38.293611], [-77.510876, 38.293638], [-77.511036, 38.293715], [-77.511184, 38.293772], [-77.511294, 38.293814], [-77.511537, 38.29394], [-77.511649, 38.294012], [-77.511816, 38.294111], [-77.511948, 38.294221], [-77.512067, 38.294303], [-77.51213, 38.294379], [-77.512178, 38.294435], [-77.512195, 38.294452], [-77.512269, 38.294528], [-77.512352, 38.2946], [-77.51245, 38.294644], [-77.512517, 38.294666], [-77.512596, 38.294693], [-77.512679, 38.294699], [-77.512756, 38.294688], [-77.51277, 38.294705], [-77.512798, 38.294737], [-77.51279, 38.294797], [-77.512886, 38.295048], [-77.513, 38.295347], [-77.513038, 38.295392], [-77.51311, 38.295475], [-77.513252, 38.295796], [-77.513274, 38.295845], [-77.513351, 38.29602], [-77.513571, 38.296276], [-77.513602, 38.296312], [-77.514045, 38.296186], [-77.514052, 38.296184], [-77.514117, 38.296148], [-77.514314, 38.29603], [-77.514601, 38.295867], [-77.515485, 38.295574], [-77.51572, 38.295496], [-77.516693, 38.295174], [-77.516807, 38.295136], [-77.516834, 38.295197], [-77.51695, 38.295463], [-77.517134, 38.295438], [-77.517895, 38.296922], [-77.517713, 38.297315], [-77.517994, 38.297533], [-77.51785, 38.297682], [-77.517835, 38.297697], [-77.517085, 38.298471], [-77.51613, 38.300022], [-77.515288, 38.302539], [-77.514885, 38.305507], [-77.516423, 38.305622], [-77.516353, 38.306337], [-77.516346, 38.30641], [-77.517066, 38.306464], [-77.517565, 38.306502], [-77.517672, 38.306513], [-77.518257, 38.306566], [-77.518292, 38.30657], [-77.518534, 38.306595], [-77.519331, 38.306672], [-77.51949, 38.306683], [-77.519698, 38.306698], [-77.520051, 38.306706], [-77.520167, 38.306707], [-77.520579, 38.306698], [-77.520908, 38.30668], [-77.521918, 38.3066], [-77.522076, 38.306593], [-77.522274, 38.306597], [-77.522435, 38.306612], [-77.522664, 38.30665], [-77.522853, 38.306697], [-77.523164, 38.306799], [-77.523209, 38.306812], [-77.523372, 38.306856], [-77.523424, 38.306869], [-77.523607, 38.306907], [-77.523656, 38.306915], [-77.523798, 38.306937], [-77.52404, 38.306963], [-77.524811, 38.30701], [-77.525003, 38.307025], [-77.525617, 38.307072], [-77.526041, 38.30712], [-77.52623, 38.307159], [-77.526378, 38.307202], [-77.526538, 38.30726], [-77.527106, 38.307477], [-77.527558, 38.30765], [-77.528526, 38.308058], [-77.528682, 38.308142], [-77.528813, 38.308193], [-77.529195, 38.308295], [-77.52962, 38.308388], [-77.530585, 38.308475], [-77.53102, 38.308439], [-77.532315, 38.308506], [-77.532688, 38.308475], [-77.532681, 38.308511], [-77.532673, 38.308539], [-77.532617, 38.308666], [-77.532547, 38.308765], [-77.532387, 38.308814], [-77.532234, 38.30883], [-77.532053, 38.308836], [-77.531537, 38.308814], [-77.531077, 38.308786], [-77.530861, 38.308797], [-77.530687, 38.308852], [-77.530547, 38.308923], [-77.530394, 38.309011], [-77.530366, 38.309057], [-77.530298, 38.30917], [-77.530297, 38.309176], [-77.530291, 38.30918], [-77.530549, 38.309311], [-77.530393, 38.309415], [-77.530461, 38.30946], [-77.530487, 38.309477], [-77.530497, 38.309484], [-77.530549, 38.309518], [-77.530822, 38.309698], [-77.531721, 38.309955], [-77.531919, 38.310012], [-77.531982, 38.31003], [-77.53202, 38.310041], [-77.532076, 38.310057], [-77.532083, 38.310059], [-77.532405, 38.310151], [-77.532426, 38.310154], [-77.532434, 38.310155], [-77.532444, 38.310156], [-77.532477, 38.31016], [-77.532529, 38.310166], [-77.532674, 38.310183], [-77.5349, 38.310444], [-77.535791, 38.310744], [-77.535797, 38.310746], [-77.535805, 38.310749], [-77.536345, 38.310931], [-77.53642, 38.310974], [-77.53643, 38.31098], [-77.537696, 38.311707], [-77.537712, 38.311716], [-77.537793, 38.311776], [-77.537802, 38.311783], [-77.537807, 38.311787], [-77.539076, 38.312729], [-77.540226, 38.313637], [-77.540426, 38.313795], [-77.540431, 38.313799], [-77.540462, 38.313824], [-77.540598, 38.313985], [-77.540732, 38.314143], [-77.541154, 38.314698], [-77.542956, 38.317066], [-77.543082, 38.317402], [-77.54326, 38.317876], [-77.543264, 38.317887], [-77.54327, 38.317903], [-77.543273, 38.31791], [-77.543366, 38.318151], [-77.543439, 38.318817], [-77.54344, 38.318828], [-77.543451, 38.318931], [-77.543638, 38.320261], [-77.543639, 38.32027], [-77.54364, 38.320278], [-77.543681, 38.320573], [-77.543782, 38.320894], [-77.543819, 38.321011], [-77.544266, 38.322279], [-77.54436, 38.322546], [-77.544426, 38.32296], [-77.544427, 38.322969], [-77.544429, 38.32298], [-77.544432, 38.322997], [-77.544435, 38.323013], [-77.544437, 38.323023], [-77.544488, 38.323336], [-77.544489, 38.323342], [-77.54453, 38.323596], [-77.544849, 38.324289], [-77.544851, 38.324294], [-77.544886, 38.32437], [-77.544957, 38.324463], [-77.544961, 38.324468], [-77.544973, 38.324484], [-77.545268, 38.324874], [-77.54533, 38.324942], [-77.545337, 38.324949], [-77.545342, 38.324954], [-77.545462, 38.325089], [-77.545692, 38.325286], [-77.545696, 38.32529], [-77.545805, 38.325383], [-77.546099, 38.325609], [-77.546397, 38.325871], [-77.546927, 38.326209], [-77.547408, 38.326468], [-77.54817, 38.326939], [-77.548901, 38.327524], [-77.549607, 38.328128], [-77.549939, 38.328446], [-77.550544, 38.329038], [-77.550603, 38.329095], [-77.550821, 38.329215], [-77.550828, 38.329219], [-77.551956, 38.329838], [-77.55204, 38.329884], [-77.55208, 38.3299], [-77.553174, 38.330346], [-77.553181, 38.330349], [-77.553916, 38.330648], [-77.554078, 38.330714], [-77.554323, 38.330885], [-77.555876, 38.332159], [-77.555882, 38.332164], [-77.556012, 38.332271], [-77.557484, 38.333334], [-77.558224, 38.333781], [-77.558257, 38.333801], [-77.558298, 38.333817], [-77.558844, 38.334035], [-77.559718, 38.334348], [-77.55973, 38.334352], [-77.560657, 38.334517], [-77.560797, 38.334542], [-77.56087, 38.334555], [-77.560889, 38.334558], [-77.560899, 38.33456], [-77.561234, 38.334619], [-77.561467, 38.334642], [-77.56289, 38.334784], [-77.563005, 38.334796], [-77.563157, 38.334755], [-77.563713, 38.334606], [-77.564555, 38.334606], [-77.564577, 38.334606], [-77.564774, 38.334634], [-77.564801, 38.334638], [-77.564809, 38.334639], [-77.564817, 38.33464], [-77.565009, 38.334667], [-77.565542, 38.335068], [-77.565553, 38.33507], [-77.56583, 38.335108], [-77.566835, 38.335246], [-77.566843, 38.335248], [-77.567121, 38.335287], [-77.567229, 38.335346], [-77.567731, 38.335626], [-77.567831, 38.335711], [-77.568146, 38.335978], [-77.568478, 38.336259], [-77.569125, 38.33733], [-77.569495, 38.338629], [-77.569498, 38.338638], [-77.569581, 38.338883], [-77.569712, 38.339152], [-77.569764, 38.339259], [-77.569774, 38.339353], [-77.569775, 38.339358], [-77.569825, 38.33983], [-77.569534, 38.340715], [-77.569356, 38.341235], [-77.569293, 38.341302], [-77.568847, 38.341778], [-77.568778, 38.341852], [-77.568727, 38.341918], [-77.568278, 38.342499], [-77.568058, 38.342744], [-77.568053, 38.342749], [-77.567022, 38.343897], [-77.566975, 38.343949], [-77.566888, 38.344103], [-77.566834, 38.344198], [-77.566771, 38.34431], [-77.566788, 38.344481], [-77.566827, 38.344861], [-77.566854, 38.345127], [-77.566987, 38.345355], [-77.567463, 38.346028], [-77.567475, 38.346038], [-77.567481, 38.346044], [-77.567486, 38.346048], [-77.567525, 38.346081], [-77.567547, 38.346099], [-77.567655, 38.34619], [-77.567671, 38.346203], [-77.568458, 38.346865], [-77.569614, 38.347581], [-77.570602, 38.347959], [-77.571092, 38.348002], [-77.571371, 38.348026], [-77.571529, 38.34804], [-77.57165, 38.348051], [-77.571682, 38.348054], [-77.57185, 38.348069], [-77.572031, 38.34802], [-77.572065, 38.348021], [-77.572078, 38.348022], [-77.572086, 38.348022], [-77.572119, 38.348023], [-77.572127, 38.348023], [-77.57261, 38.348038], [-77.573054, 38.348012], [-77.573925, 38.347961], [-77.575424, 38.347752], [-77.575434, 38.347751], [-77.575441, 38.34775], [-77.575793, 38.347701], [-77.576248, 38.347572], [-77.576256, 38.34757], [-77.576262, 38.347568], [-77.576477, 38.347507], [-77.576879, 38.347334], [-77.576915, 38.347352], [-77.576946, 38.34737], [-77.577781, 38.347025], [-77.578599, 38.346865], [-77.57891, 38.346854], [-77.578947, 38.346853], [-77.578955, 38.346852], [-77.578969, 38.346852], [-77.579207, 38.346843], [-77.579596, 38.346886], [-77.579837, 38.346912], [-77.579897, 38.346918], [-77.581106, 38.347086], [-77.581259, 38.347107], [-77.581302, 38.347113], [-77.581948, 38.34723], [-77.582377, 38.347215], [-77.582465, 38.347212], [-77.582477, 38.347211], [-77.582484, 38.347211], [-77.582513, 38.34721], [-77.583187, 38.347185], [-77.583195, 38.347184], [-77.583941, 38.347075], [-77.58397, 38.347065], [-77.584675, 38.346814], [-77.584794, 38.346736], [-77.584982, 38.346613], [-77.584989, 38.346608], [-77.585223, 38.346456], [-77.585308, 38.346365], [-77.585484, 38.346175], [-77.5859, 38.345814], [-77.586298, 38.345472], [-77.586306, 38.345465], [-77.586403, 38.345381], [-77.586517, 38.345282], [-77.586631, 38.345182], [-77.587057, 38.344813], [-77.587528, 38.343809], [-77.588308, 38.342472], [-77.588866, 38.341895], [-77.589277, 38.341473], [-77.589933, 38.340797], [-77.59058, 38.340017], [-77.591071, 38.339573], [-77.591587, 38.338952], [-77.592777, 38.337794], [-77.593355, 38.337233], [-77.594223, 38.336497], [-77.594481, 38.336288], [-77.594492, 38.336278], [-77.594798, 38.33603], [-77.595418, 38.335724], [-77.595596, 38.335636], [-77.595887, 38.335379], [-77.596298, 38.335015], [-77.59674, 38.334702], [-77.597287, 38.334317], [-77.59763, 38.334075], [-77.598542, 38.333398], [-77.599738, 38.332782], [-77.600646, 38.332573], [-77.601679, 38.332555], [-77.60239, 38.332726], [-77.603196, 38.333065], [-77.603729, 38.333472], [-77.603867, 38.333586], [-77.604478, 38.334089], [-77.605089, 38.334592], [-77.605261, 38.334735], [-77.60543, 38.334962], [-77.605434, 38.334967], [-77.605442, 38.334978], [-77.605568, 38.335148], [-77.605893, 38.335576], [-77.606157, 38.335924], [-77.60657, 38.336464], [-77.606576, 38.336472], [-77.606609, 38.336515], [-77.606618, 38.336526], [-77.606635, 38.336548], [-77.606646, 38.336562], [-77.60665, 38.336567], [-77.606716, 38.336653], [-77.606851, 38.336719], [-77.606879, 38.336732], [-77.606888, 38.336807], [-77.606888, 38.336813], [-77.606889, 38.336821], [-77.606891, 38.336836], [-77.606926, 38.337127], [-77.60693, 38.337137], [-77.607147, 38.337665], [-77.607123, 38.337806], [-77.607091, 38.337996], [-77.607009, 38.338577], [-77.606696, 38.339265], [-77.60614, 38.340051], [-77.605842, 38.340418], [-77.60535, 38.341333], [-77.604699, 38.342468], [-77.604516, 38.342869], [-77.604072, 38.343844], [-77.603469, 38.345406], [-77.603031, 38.346555], [-77.60273, 38.347448], [-77.602625, 38.34784], [-77.602616, 38.347882], [-77.602603, 38.347945], [-77.60258, 38.34849], [-77.602579, 38.348497], [-77.602579, 38.348503], [-77.602567, 38.348671], [-77.60257, 38.348679], [-77.602799, 38.349241], [-77.603217, 38.35006], [-77.6038, 38.351078], [-77.603812, 38.351093], [-77.604502, 38.351951], [-77.60516, 38.352517], [-77.605897, 38.35301], [-77.606577, 38.353737], [-77.607013, 38.354251], [-77.607433, 38.354745], [-77.608319, 38.355632], [-77.608958, 38.356368], [-77.609464, 38.356984], [-77.609777, 38.357545], [-77.60987, 38.357897], [-77.609879, 38.357931], [-77.609883, 38.357945], [-77.609887, 38.357961], [-77.609888, 38.357966], [-77.60989, 38.357974], [-77.609907, 38.358037], [-77.609939, 38.358157], [-77.609941, 38.358162], [-77.610215, 38.35896], [-77.610261, 38.359068], [-77.610263, 38.359073], [-77.610267, 38.359083], [-77.610277, 38.359106], [-77.610385, 38.359359], [-77.610614, 38.359899], [-77.610888, 38.360533], [-77.611049, 38.360851], [-77.611051, 38.360856], [-77.611156, 38.361064], [-77.611233, 38.361215], [-77.611288, 38.361437], [-77.611292, 38.361454], [-77.611293, 38.361459], [-77.611295, 38.361466], [-77.611374, 38.361786], [-77.611587, 38.362336], [-77.611898, 38.362918], [-77.612143, 38.363446], [-77.612145, 38.363451], [-77.61221, 38.36359], [-77.612215, 38.363602], [-77.612219, 38.363611], [-77.61223, 38.363635], [-77.612246, 38.363669], [-77.612298, 38.36378], [-77.612649, 38.364306], [-77.613101, 38.364689], [-77.613938, 38.3651], [-77.614562, 38.365264], [-77.614571, 38.365267], [-77.614763, 38.365318], [-77.615243, 38.365548], [-77.616, 38.365872], [-77.616012, 38.365877], [-77.616034, 38.365886], [-77.61614, 38.365931], [-77.61715, 38.366312], [-77.617238, 38.366339], [-77.617326, 38.366366], [-77.618076, 38.366618], [-77.618362, 38.366704], [-77.618379, 38.366762], [-77.61849, 38.367138], [-77.618681, 38.36766], [-77.618729, 38.367843], [-77.618811, 38.367861], [-77.618918, 38.367885], [-77.619197, 38.367948], [-77.619477, 38.36801], [-77.619973, 38.368031], [-77.620165, 38.368038], [-77.620704, 38.368061], [-77.621634, 38.368158], [-77.621884, 38.368213], [-77.621907, 38.368218], [-77.62192, 38.368221], [-77.622107, 38.368269], [-77.622779, 38.36844], [-77.622859, 38.36846], [-77.623079, 38.368473], [-77.623197, 38.368436], [-77.624233, 38.368433], [-77.624406, 38.368396], [-77.624518, 38.368372], [-77.624605, 38.368385], [-77.624695, 38.368399], [-77.624723, 38.368403], [-77.624731, 38.368404], [-77.624881, 38.368427], [-77.624989, 38.368371], [-77.625002, 38.368373], [-77.625236, 38.368409], [-77.625397, 38.368433], [-77.625634, 38.368558], [-77.625795, 38.368642], [-77.625979, 38.368739], [-77.62656, 38.368863], [-77.626795, 38.368862], [-77.627248, 38.368749], [-77.628359, 38.36808], [-77.628575, 38.367786], [-77.628655, 38.367471], [-77.628814, 38.36727], [-77.62887, 38.367199], [-77.62892, 38.367135], [-77.628947, 38.367101], [-77.628974, 38.367066], [-77.629142, 38.366853], [-77.62943, 38.366642], [-77.629646, 38.366348], [-77.629825, 38.365829], [-77.630023, 38.365605], [-77.63024, 38.365492], [-77.630349, 38.36535], [-77.630383, 38.365305], [-77.630663, 38.364938], [-77.630887, 38.364426], [-77.630995, 38.36437], [-77.631137, 38.363627], [-77.631424, 38.363053], [-77.632152, 38.362035], [-77.632448, 38.361426], [-77.632817, 38.3609], [-77.632925, 38.360843], [-77.633096, 38.360542], [-77.63342, 38.360191], [-77.634089, 38.359783], [-77.634966, 38.359479], [-77.635193, 38.359513], [-77.635573, 38.359316], [-77.63608, 38.359356], [-77.636297, 38.359244], [-77.636696, 38.359158], [-77.637104, 38.35922], [-77.637321, 38.359107], [-77.637719, 38.359022], [-77.637991, 38.359063], [-77.6381, 38.359007], [-77.638262, 38.358922], [-77.638552, 38.358893], [-77.639504, 38.359037], [-77.63985, 38.359162], [-77.640086, 38.359343], [-77.640358, 38.359385], [-77.640541, 38.359594], [-77.641177, 38.359872], [-77.641532, 38.360144], [-77.641849, 38.360192], [-77.641995, 38.360359], [-77.642849, 38.360706], [-77.643158, 38.360971], [-77.643476, 38.361019], [-77.643731, 38.361312], [-77.643858, 38.361368], [-77.644169, 38.361815], [-77.644413, 38.362453], [-77.644509, 38.362702], [-77.644503, 38.363283], [-77.644586, 38.363514], [-77.644524, 38.363759], [-77.644588, 38.363878], [-77.644482, 38.364298], [-77.644522, 38.365068], [-77.644505, 38.365138], [-77.644214, 38.366658], [-77.644, 38.367316], [-77.643614, 38.368094], [-77.643571, 38.368144], [-77.642741, 38.369126], [-77.642443, 38.369372], [-77.641196, 38.37002], [-77.640119, 38.370366], [-77.639794, 38.370535], [-77.63906, 38.370643], [-77.638697, 38.370588], [-77.638253, 38.370666], [-77.637494, 38.371061], [-77.637196, 38.371307], [-77.637107, 38.371657], [-77.637145, 38.371881], [-77.638112, 38.373081], [-77.638086, 38.373187], [-77.638516, 38.373906], [-77.638517, 38.374088], [-77.639083, 38.374828], [-77.639092, 38.375009], [-77.639075, 38.375072], [-77.639185, 38.375197], [-77.639312, 38.375253], [-77.64005, 38.376055], [-77.64015, 38.376034], [-77.641084, 38.377065], [-77.641181, 38.377171], [-77.641364, 38.377199], [-77.641407, 38.377206], [-77.641667, 38.377378], [-77.641689, 38.377394], [-77.641998, 38.377477], [-77.642097, 38.377481], [-77.642325, 38.37749], [-77.642487, 38.377405], [-77.64285, 38.37746], [-77.642969, 38.377551], [-77.644275, 38.377784], [-77.644514, 38.377875], [-77.644748, 38.377965], [-77.645097, 38.378017], [-77.645746, 38.378115], [-77.646071, 38.377946], [-77.646687, 38.37793], [-77.646959, 38.377789], [-77.647257, 38.377725], [-77.647666, 38.377787], [-77.647948, 38.377641], [-77.6481, 38.377562], [-77.648236, 38.377582], [-77.649194, 38.377145], [-77.64933, 38.377166], [-77.650234, 38.376757], [-77.65159, 38.376004], [-77.651933, 38.375813], [-77.652013, 38.375781], [-77.652774, 38.375467], [-77.653028, 38.375397], [-77.653391, 38.375451], [-77.653608, 38.375339], [-77.654569, 38.375447], [-77.65485, 38.375453], [-77.654959, 38.375397], [-77.655229, 38.375434], [-77.655572, 38.37548], [-77.655587, 38.375482], [-77.655594, 38.375483], [-77.655601, 38.375484], [-77.65561, 38.375485], [-77.655655, 38.375491], [-77.65612, 38.375554], [-77.656572, 38.37535], [-77.656935, 38.375404], [-77.657622, 38.375108], [-77.657633, 38.375008], [-77.657657, 38.374942], [-77.658633, 38.374434], [-77.658778, 38.37442], [-77.659113, 38.374228], [-77.65933, 38.374103], [-77.659482, 38.373871], [-77.659862, 38.373674], [-77.660006, 38.373478], [-77.660331, 38.373309], [-77.660513, 38.373336], [-77.661055, 38.373054], [-77.661245, 38.373047], [-77.66167, 38.372856], [-77.661906, 38.372855], [-77.663271, 38.372207], [-77.664716, 38.371243], [-77.665583, 38.370792], [-77.665719, 38.370813], [-77.66619, 38.370629], [-77.666507, 38.370677], [-77.667077, 38.370472], [-77.667713, 38.370659], [-77.667794, 38.370616], [-77.668066, 38.370658], [-77.668346, 38.370482], [-77.66988, 38.370749], [-77.670169, 38.37072], [-77.670332, 38.370636], [-77.670514, 38.370663], [-77.67093, 38.370508], [-77.671364, 38.370464], [-77.671446, 38.370513], [-77.671609, 38.370428], [-77.671799, 38.37033], [-77.67244, 38.369935], [-77.673088, 38.369233], [-77.673466, 38.368672], [-77.673688, 38.367978], [-77.673769, 38.367845], [-77.673796, 38.367827], [-77.673995, 38.367697], [-77.674192, 38.367291], [-77.67449, 38.367045], [-77.675863, 38.36627], [-77.676657, 38.365735], [-77.677144, 38.3653], [-77.677467, 38.364767], [-77.677647, 38.364612], [-77.67762, 38.364535], [-77.677764, 38.364339], [-77.678075, 38.363295], [-77.678037, 38.363071], [-77.678213, 38.362188], [-77.678288, 38.361145], [-77.678629, 38.360542], [-77.679107, 38.360141], [-77.679338, 38.360021], [-77.679541, 38.359916], [-77.679885, 38.359859], [-77.680293, 38.35992], [-77.680555, 38.359814], [-77.681018, 38.359848], [-77.681362, 38.359791], [-77.68177, 38.359852], [-77.681987, 38.359739], [-77.682282, 38.359744], [-77.683065, 38.359756], [-77.68341, 38.359699], [-77.684643, 38.359849], [-77.685168, 38.359819], [-77.685548, 38.359621], [-77.685681, 38.359651], [-77.685793, 38.359677], [-77.685899, 38.359622], [-77.685983, 38.359578], [-77.686444, 38.359429], [-77.687224, 38.35951], [-77.687495, 38.359369], [-77.688111, 38.359353], [-77.688274, 38.359269], [-77.688953, 38.359189], [-77.690672, 38.358721], [-77.690704, 38.35873], [-77.691846, 38.35816], [-77.692963, 38.357351], [-77.693231, 38.357125], [-77.694116, 38.356629], [-77.694619, 38.356501], [-77.695473, 38.356429], [-77.695785, 38.356473], [-77.696786, 38.356655], [-77.697111, 38.356731], [-77.697592, 38.357077], [-77.700328, 38.359586], [-77.701038, 38.36007], [-77.701244, 38.360137], [-77.701301, 38.360155], [-77.701894, 38.360347], [-77.702, 38.360368], [-77.703191, 38.360606], [-77.703197, 38.36058], [-77.703209, 38.360536], [-77.703451, 38.360367], [-77.703458, 38.360362], [-77.703466, 38.360357], [-77.704066, 38.359938], [-77.704154, 38.359588], [-77.703542, 38.358841], [-77.703578, 38.358701], [-77.70374, 38.358617], [-77.704529, 38.358663], [-77.704737, 38.358585], [-77.705271, 38.35852], [-77.705533, 38.358414], [-77.705987, 38.358482], [-77.706669, 38.358766], [-77.707077, 38.358828], [-77.707548, 38.358826], [-77.707765, 38.358713], [-77.7078, 38.358573], [-77.707016, 38.357764], [-77.706941, 38.357499], [-77.706686, 38.357206], [-77.70615, 38.357089], [-77.705661, 38.357161], [-77.705299, 38.357106], [-77.705324, 38.356819], [-77.705522, 38.356594], [-77.705584, 38.356349], [-77.705146, 38.355847], [-77.705064, 38.355624], [-77.704955, 38.355548], [-77.705082, 38.355531], [-77.705109, 38.355466], [-77.705134, 38.355366], [-77.705151, 38.355258], [-77.705213, 38.355021], [-77.705493, 38.354845], [-77.706536, 38.355002], [-77.70758, 38.355341], [-77.709086, 38.355531], [-77.709465, 38.355333], [-77.709591, 38.355116], [-77.709162, 38.35467], [-77.708689, 38.35449], [-77.708478, 38.354364], [-77.70828, 38.354246], [-77.70796, 38.353834], [-77.70783, 38.353233], [-77.707637, 38.352877], [-77.707708, 38.352597], [-77.70796, 38.352344], [-77.708267, 38.352245], [-77.708997, 38.352395], [-77.709325, 38.35245], [-77.710071, 38.352499], [-77.710949, 38.352642], [-77.711005, 38.352603], [-77.710999, 38.352449], [-77.710998, 38.352428], [-77.710726, 38.351895], [-77.710705, 38.351786], [-77.710768, 38.351549], [-77.710782, 38.351077], [-77.710851, 38.350951], [-77.711018, 38.350836], [-77.711199, 38.350873], [-77.7115, 38.350934], [-77.711723, 38.351028], [-77.711981, 38.351165], [-77.712357, 38.351242], [-77.712657, 38.351379], [-77.713034, 38.351439], [-77.713089, 38.351395], [-77.71311, 38.351335], [-77.713043, 38.351172], [-77.713006, 38.351082], [-77.713033, 38.350907], [-77.713189, 38.350725], [-77.713249, 38.350654], [-77.713256, 38.350588], [-77.713192, 38.350455], [-77.71311, 38.350286], [-77.713096, 38.350204], [-77.713264, 38.350084], [-77.713312, 38.35005], [-77.713786, 38.349836], [-77.714037, 38.349742], [-77.714253, 38.349567], [-77.714601, 38.349166], [-77.714664, 38.348985], [-77.714667, 38.348959], [-77.714706, 38.348611], [-77.714671, 38.348441], [-77.714531, 38.348249], [-77.714492, 38.348189], [-77.714399, 38.348046], [-77.714329, 38.347974], [-77.714085, 38.347898], [-77.713562, 38.347673], [-77.713422, 38.347596], [-77.713262, 38.347475], [-77.713171, 38.347371], [-77.713039, 38.347173], [-77.712948, 38.347085], [-77.71269, 38.346525], [-77.712453, 38.346152], [-77.712397, 38.346026], [-77.712383, 38.345801], [-77.712418, 38.345697], [-77.712452, 38.345455], [-77.712641, 38.345241], [-77.712884, 38.344906], [-77.713087, 38.34473], [-77.713219, 38.344686], [-77.713379, 38.344587], [-77.713546, 38.344274], [-77.713797, 38.344055], [-77.714097, 38.344038], [-77.714116, 38.344027], [-77.714123, 38.344027], [-77.714257, 38.343972], [-77.714376, 38.343972], [-77.714564, 38.344029], [-77.71492, 38.344137], [-77.715059, 38.344164], [-77.715303, 38.344175], [-77.715512, 38.344147], [-77.715756, 38.344016], [-77.715833, 38.343933], [-77.715903, 38.343645], [-77.715923, 38.343565], [-77.715979, 38.343494], [-77.71646, 38.343411], [-77.716691, 38.343337], [-77.716697, 38.343335], [-77.716767, 38.343269], [-77.71685, 38.343071], [-77.716982, 38.342884], [-77.717247, 38.342308], [-77.717428, 38.342198], [-77.717958, 38.342071], [-77.718091, 38.342022], [-77.718411, 38.341846], [-77.718648, 38.34161], [-77.718745, 38.341292], [-77.718815, 38.340572], [-77.718752, 38.340441], [-77.718675, 38.340122], [-77.718591, 38.339947], [-77.718208, 38.339656], [-77.718068, 38.339464], [-77.717803, 38.339217], [-77.717476, 38.33903], [-77.717057, 38.338728], [-77.71653, 38.338397], [-77.716367, 38.338295], [-77.716151, 38.338119], [-77.716111, 38.338072], [-77.716043, 38.33799], [-77.715921, 38.337845], [-77.715544, 38.337466], [-77.715425, 38.337378], [-77.71523, 38.337296], [-77.715121, 38.33721], [-77.715035, 38.337142], [-77.714861, 38.337005], [-77.7147, 38.336698], [-77.714679, 38.336582], [-77.714714, 38.33639], [-77.714818, 38.336077], [-77.715139, 38.335825], [-77.715278, 38.335748], [-77.715383, 38.33572], [-77.715655, 38.335605], [-77.71594, 38.335517], [-77.71608, 38.335495], [-77.716303, 38.335506], [-77.716561, 38.335594], [-77.716735, 38.335632], [-77.716993, 38.335615], [-77.717113, 38.335587], [-77.717279, 38.335549], [-77.717836, 38.335489], [-77.717949, 38.335487], [-77.717972, 38.335487], [-77.717991, 38.335487], [-77.717999, 38.335487], [-77.718007, 38.335486], [-77.71802, 38.335486], [-77.718248, 38.335483], [-77.718259, 38.335484], [-77.719286, 38.335582], [-77.7196, 38.335565], [-77.719739, 38.335516], [-77.719837, 38.335411], [-77.71984, 38.335404], [-77.719885, 38.335302], [-77.719892, 38.335148], [-77.71939, 38.334659], [-77.719439, 38.334522], [-77.719808, 38.334248], [-77.720108, 38.33428], [-77.720213, 38.334264], [-77.720533, 38.334126], [-77.720728, 38.33411], [-77.720944, 38.334137], [-77.721105, 38.334055], [-77.721195, 38.333934], [-77.721265, 38.333566], [-77.721341, 38.333434], [-77.721377, 38.33338], [-77.721488, 38.333215], [-77.721585, 38.333023], [-77.721648, 38.33283], [-77.721696, 38.332529], [-77.721877, 38.332089], [-77.721989, 38.331963], [-77.722128, 38.331743], [-77.722532, 38.331298], [-77.722678, 38.331062], [-77.722915, 38.330848], [-77.722977, 38.330756], [-77.723082, 38.330601], [-77.723284, 38.330233], [-77.723792, 38.329481], [-77.723883, 38.329305], [-77.724315, 38.328761], [-77.724475, 38.328531], [-77.724684, 38.328174], [-77.724865, 38.327971], [-77.725025, 38.327751], [-77.725227, 38.327257], [-77.72529, 38.327048], [-77.725401, 38.326905], [-77.72554, 38.326658], [-77.725693, 38.326434], [-77.725909, 38.32612], [-77.725932, 38.325962], [-77.725937, 38.325928], [-77.725993, 38.325736], [-77.726133, 38.325567], [-77.726188, 38.3255], [-77.726225, 38.325309], [-77.726243, 38.325215], [-77.726264, 38.32511], [-77.726344, 38.324804], [-77.726424, 38.3245], [-77.726689, 38.323973], [-77.72669, 38.323942], [-77.726691, 38.323913], [-77.727475, 38.323214], [-77.727481, 38.323209], [-77.727486, 38.323205], [-77.72749, 38.323201], [-77.729086, 38.321779], [-77.729172, 38.321703], [-77.729199, 38.321625], [-77.729265, 38.32157], [-77.730211, 38.320743], [-77.731793, 38.319358], [-77.736611, 38.315151], [-77.738362, 38.313621], [-77.739019, 38.313051], [-77.740035, 38.312164], [-77.740558, 38.311707], [-77.742, 38.310445], [-77.742004, 38.310441], [-77.744454, 38.308302], [-77.744524, 38.308241], [-77.744534, 38.308232], [-77.744695, 38.308092], [-77.746672, 38.306366], [-77.748167, 38.305044], [-77.748307, 38.304918], [-77.748419, 38.304817], [-77.749583, 38.303731], [-77.74972, 38.30361], [-77.751229, 38.302191], [-77.751336, 38.302092], [-77.757204, 38.296574], [-77.758601, 38.295265], [-77.761298, 38.292741], [-77.766253, 38.288078], [-77.769463, 38.285061], [-77.772244, 38.282446], [-77.773299, 38.281455], [-77.777867, 38.27717], [-77.780507, 38.274689], [-77.783264, 38.272098], [-77.7835, 38.271896], [-77.783527, 38.271873], [-77.785812, 38.269936], [-77.786394, 38.269445], [-77.789503, 38.266911], [-77.793984, 38.263186], [-77.7983, 38.259448], [-77.798321, 38.25943], [-77.798533, 38.259245], [-77.798571, 38.259213], [-77.801566, 38.256698], [-77.80602, 38.252954], [-77.807464, 38.25174], [-77.809368, 38.250137], [-77.812299, 38.247637], [-77.814042, 38.246244], [-77.815901, 38.244694], [-77.817417, 38.243429], [-77.817855, 38.243063], [-77.818526, 38.242504], [-77.819149, 38.241985], [-77.820078, 38.24121], [-77.826772, 38.235628], [-77.826809, 38.235597], [-77.827629, 38.234913], [-77.82987, 38.233045], [-77.834097, 38.229498], [-77.835743, 38.227854], [-77.836435, 38.227166], [-77.837005, 38.226593], [-77.840033, 38.223571], [-77.84173, 38.221874], [-77.845562, 38.218045], [-77.845973, 38.217633], [-77.846902, 38.216706], [-77.852286, 38.211323], [-77.853574, 38.210035], [-77.856035, 38.207575], [-77.858041, 38.205571], [-77.865098, 38.198517], [-77.866582, 38.19706], [-77.869763, 38.193937], [-77.872123, 38.19162], [-77.872181, 38.191563], [-77.874778, 38.189039], [-77.875736, 38.188181], [-77.876205, 38.187761], [-77.881313, 38.183198], [-77.884938, 38.179961], [-77.889071, 38.176269], [-77.889422, 38.175957], [-77.889731, 38.175683], [-77.89319, 38.17259], [-77.896021, 38.170045], [-77.899196, 38.167186], [-77.902363, 38.164333], [-77.902894, 38.163858], [-77.904562, 38.162356], [-77.904953, 38.162006], [-77.90698, 38.160181], [-77.908399, 38.158908], [-77.915042, 38.152928], [-77.916843, 38.151308], [-77.917833, 38.150414], [-77.921958, 38.146772], [-77.924242, 38.144759], [-77.924472, 38.144556], [-77.924702, 38.144353], [-77.925407, 38.143718], [-77.925967, 38.143216], [-77.926587, 38.142662], [-77.926596, 38.142654], [-77.9266, 38.14265], [-77.926609, 38.142642], [-77.92689, 38.142391], [-77.928886, 38.140626], [-77.929208, 38.140341], [-77.929416, 38.140157], [-77.929436, 38.140139], [-77.929469, 38.14011], [-77.929483, 38.140098], [-77.929489, 38.140093], [-77.929499, 38.140084], [-77.930881, 38.138862], [-77.932596, 38.137347], [-77.93439, 38.135753], [-77.935031, 38.135185], [-77.938702, 38.131933], [-77.938751, 38.13189], [-77.944577, 38.126731], [-77.946398, 38.125119], [-77.946627, 38.124908], [-77.947546, 38.124067], [-77.952372, 38.119648], [-77.953573, 38.118567], [-77.954821, 38.117445], [-77.954378, 38.117753], [-77.953524, 38.118137], [-77.953426, 38.11822], [-77.953426, 38.118412], [-77.953362, 38.118477], [-77.953327, 38.118513], [-77.953028, 38.118614], [-77.95273, 38.118716], [-77.95263, 38.118616], [-77.952232, 38.118618], [-77.952232, 38.118519], [-77.952232, 38.118419], [-77.952232, 38.118319], [-77.951899, 38.118153], [-77.951834, 38.118121], [-77.951735, 38.118021], [-77.951436, 38.118023], [-77.951337, 38.118023], [-77.951138, 38.118025], [-77.951038, 38.118025], [-77.95074, 38.117827], [-77.95064, 38.117827], [-77.950342, 38.117729], [-77.950143, 38.11763], [-77.949679, 38.117709], [-77.949546, 38.117733], [-77.949148, 38.117835], [-77.94875, 38.117837], [-77.948451, 38.118038], [-77.948252, 38.118239], [-77.948152, 38.118439], [-77.948251, 38.118739], [-77.948251, 38.119018], [-77.948251, 38.119038], [-77.948251, 38.119438], [-77.948093, 38.119597], [-77.947952, 38.119739], [-77.947554, 38.119941], [-77.94715, 38.120024], [-77.947056, 38.120043], [-77.946757, 38.119845], [-77.946657, 38.119746], [-77.946458, 38.119547], [-77.946271, 38.119357], [-77.946263, 38.119352], [-77.946245, 38.119341], [-77.94606, 38.119249], [-77.945861, 38.11915], [-77.945463, 38.119252], [-77.945165, 38.119354], [-77.944866, 38.119355], [-77.944767, 38.119356], [-77.944567, 38.119457], [-77.944368, 38.119558], [-77.944169, 38.119459], [-77.943771, 38.119161], [-77.943672, 38.119062], [-77.943473, 38.118963], [-77.943453, 38.118963], [-77.943175, 38.118964], [-77.943075, 38.118965], [-77.942777, 38.118866], [-77.942578, 38.118767], [-77.942279, 38.118669], [-77.94218, 38.11867], [-77.941981, 38.118671], [-77.941682, 38.118672], [-77.941401, 38.118767], [-77.941383, 38.118773], [-77.941365, 38.118779], [-77.940985, 38.118875], [-77.940886, 38.118876], [-77.940587, 38.118877], [-77.940488, 38.118778], [-77.940189, 38.11858], [-77.93999, 38.118381], [-77.939891, 38.118182], [-77.939891, 38.117982], [-77.939792, 38.117683], [-77.939593, 38.117584], [-77.939494, 38.117485], [-77.93912, 38.117487], [-77.939055, 38.117488], [-77.938996, 38.117488], [-77.938897, 38.117488], [-77.938499, 38.117291], [-77.938001, 38.116894], [-77.937902, 38.116794], [-77.937603, 38.116796], [-77.937305, 38.116697], [-77.937206, 38.116598], [-77.936939, 38.116511], [-77.936907, 38.1165], [-77.936708, 38.116201], [-77.936656, 38.116149], [-77.936509, 38.116002], [-77.936509, 38.115902], [-77.93631, 38.115903], [-77.936111, 38.115904], [-77.936012, 38.115905], [-77.936012, 38.115205], [-77.935913, 38.115105], [-77.935614, 38.114907], [-77.935216, 38.114609], [-77.934868, 38.114331], [-77.934719, 38.114212], [-77.93452, 38.114113], [-77.93432, 38.114014], [-77.934221, 38.114114], [-77.934022, 38.114115], [-77.933524, 38.114118], [-77.933126, 38.11402], [-77.932728, 38.113922], [-77.93243, 38.113923], [-77.932131, 38.114025], [-77.931932, 38.114026], [-77.931733, 38.113927], [-77.931634, 38.113927], [-77.930937, 38.114031], [-77.930439, 38.113934], [-77.930141, 38.113835], [-77.929743, 38.113737], [-77.929345, 38.113739], [-77.929146, 38.11384], [-77.928947, 38.113941], [-77.928847, 38.114142], [-77.928748, 38.114242], [-77.928648, 38.114343], [-77.928449, 38.114444], [-77.928051, 38.114446], [-77.927554, 38.114549], [-77.927355, 38.11465], [-77.927079, 38.11479], [-77.926963, 38.114849], [-77.926942, 38.114861], [-77.926459, 38.114954], [-77.926441, 38.114958], [-77.926395, 38.114971], [-77.926061, 38.115056], [-77.925364, 38.11496], [-77.925165, 38.114961], [-77.924866, 38.115062], [-77.924668, 38.114863], [-77.924668, 38.114763], [-77.924568, 38.114664], [-77.924469, 38.114465], [-77.92427, 38.114466], [-77.923971, 38.114566], [-77.923903, 38.11456], [-77.923812, 38.114552], [-77.92372, 38.114544], [-77.92342, 38.114744], [-77.92332, 38.114744], [-77.92312, 38.114744], [-77.92272, 38.114844], [-77.92272, 38.114944], [-77.92262, 38.115144], [-77.92242, 38.115144], [-77.92232, 38.115144], [-77.92202, 38.115244], [-77.92192, 38.115244], [-77.92182, 38.115444], [-77.92172, 38.115544], [-77.92152, 38.115844], [-77.92122, 38.115944], [-77.92092, 38.116144], [-77.92042, 38.116344], [-77.92032, 38.116544], [-77.92032, 38.116696], [-77.92032, 38.116744], [-77.92032, 38.116944], [-77.92022, 38.117044], [-77.920146, 38.117069], [-77.91992, 38.117144], [-77.91962, 38.117244], [-77.91942, 38.117344], [-77.91922, 38.117444], [-77.91902, 38.117344], [-77.91862, 38.117344], [-77.91822, 38.117444], [-77.91802, 38.117644], [-77.91792, 38.117844], [-77.91762, 38.118044], [-77.91742, 38.118144], [-77.91712, 38.118244], [-77.91692, 38.118344], [-77.91672, 38.118344], [-77.91592, 38.118144], [-77.91562, 38.117944], [-77.91532, 38.117744], [-77.91502, 38.117544], [-77.91492, 38.117544], [-77.914868, 38.117518], [-77.91452, 38.117344], [-77.914333, 38.11725], [-77.91412, 38.117144], [-77.91402, 38.117044], [-77.91402, 38.116944], [-77.91392, 38.116644], [-77.91372, 38.116444], [-77.91372, 38.116244], [-77.91362, 38.116044], [-77.913702, 38.115881], [-77.91372, 38.115844], [-77.91372, 38.115805], [-77.91372, 38.115799], [-77.91372, 38.115644], [-77.91362, 38.115344], [-77.91342, 38.115044], [-77.913346, 38.114933], [-77.91322, 38.114744], [-77.91312, 38.114544], [-77.91322, 38.114344], [-77.913267, 38.114204], [-77.91332, 38.114044], [-77.91332, 38.113944], [-77.91322, 38.113544], [-77.91312, 38.113044], [-77.91302, 38.112644], [-77.91302, 38.112144], [-77.91272, 38.111744], [-77.91252, 38.111544], [-77.91202, 38.111644], [-77.91182, 38.111644], [-77.911659, 38.11174], [-77.91132, 38.111944], [-77.911094, 38.112095], [-77.91102, 38.112144], [-77.91072, 38.112244], [-77.91032, 38.112244], [-77.910062, 38.112179], [-77.90992, 38.112144], [-77.90942, 38.112044], [-77.90922, 38.111944], [-77.90872, 38.112044], [-77.90862, 38.111944], [-77.90802, 38.111944], [-77.907719, 38.111844], [-77.907519, 38.111644], [-77.907419, 38.111444], [-77.907146, 38.111171], [-77.907119, 38.111144], [-77.906619, 38.111044], [-77.906119, 38.110944], [-77.905919, 38.110844], [-77.905859, 38.110829], [-77.905519, 38.110744], [-77.905019, 38.110644], [-77.904619, 38.110444], [-77.904119, 38.110144], [-77.903819, 38.109944], [-77.903519, 38.109744], [-77.903316, 38.109436], [-77.903219, 38.109144], [-77.903219, 38.108844], [-77.903119, 38.108644], [-77.903019, 38.108444], [-77.902719, 38.108344], [-77.902419, 38.108144], [-77.902219, 38.108144], [-77.901819, 38.108144], [-77.901519, 38.108244], [-77.901119, 38.108344], [-77.900819, 38.108544], [-77.900619, 38.108844], [-77.900594, 38.108918], [-77.900519, 38.109144], [-77.900219, 38.109444], [-77.899919, 38.109444], [-77.899618, 38.109344], [-77.899518, 38.109344], [-77.899148, 38.109344], [-77.898918, 38.109344], [-77.898718, 38.109444], [-77.898488, 38.109674], [-77.898418, 38.109744], [-77.898318, 38.110044], [-77.898318, 38.110244], [-77.898418, 38.110544], [-77.898318, 38.110744], [-77.898318, 38.111244], [-77.898018, 38.111444], [-77.897418, 38.111644], [-77.897218, 38.111644], [-77.896918, 38.111544], [-77.896818, 38.111444], [-77.896818, 38.111244], [-77.896918, 38.111044], [-77.896918, 38.110644], [-77.896818, 38.110444], [-77.89673, 38.110356], [-77.896518, 38.110144], [-77.896118, 38.110044], [-77.895618, 38.110044], [-77.895318, 38.110144], [-77.895218, 38.110244], [-77.895018, 38.110544], [-77.894818, 38.110744], [-77.894218, 38.110944], [-77.893818, 38.111044], [-77.893418, 38.111044], [-77.893218, 38.111244], [-77.893018, 38.111344], [-77.89277, 38.111406], [-77.892618, 38.111444], [-77.891918, 38.111544], [-77.891418, 38.111444], [-77.890815, 38.111444], [-77.890777, 38.111444], [-77.890718, 38.111444], [-77.890518, 38.111444], [-77.890518, 38.111544], [-77.890518, 38.111585], [-77.890518, 38.111744], [-77.890518, 38.112044], [-77.890418, 38.112244], [-77.890118, 38.112444], [-77.889718, 38.112744], [-77.889318, 38.113044], [-77.889018, 38.113144], [-77.888418, 38.113144], [-77.888118, 38.112944], [-77.88787, 38.112696], [-77.887818, 38.112644], [-77.887718, 38.112544], [-77.887418, 38.112444], [-77.886918, 38.112344], [-77.886895, 38.112338], [-77.886531, 38.112243], [-77.886496, 38.112244], [-77.886318, 38.112244], [-77.886118, 38.111944], [-77.886118, 38.11172], [-77.886118, 38.111544], [-77.88609, 38.111501], [-77.885918, 38.111244], [-77.885818, 38.111044], [-77.885618, 38.110844], [-77.885518, 38.110744], [-77.885452, 38.110711], [-77.885441, 38.110705], [-77.885434, 38.110702], [-77.885319, 38.110644], [-77.885019, 38.110444], [-77.884819, 38.110444], [-77.884619, 38.110444], [-77.884319, 38.110544], [-77.884119, 38.110544], [-77.883919, 38.110444], [-77.883767, 38.110383], [-77.883419, 38.110244], [-77.883119, 38.110144], [-77.882919, 38.109944], [-77.882719, 38.109644], [-77.882719, 38.109444], [-77.882719, 38.109404], [-77.882719, 38.109244], [-77.882619, 38.109144], [-77.882457, 38.109036], [-77.882319, 38.108944], [-77.882119, 38.108844], [-77.881719, 38.108744], [-77.881319, 38.108744], [-77.880819, 38.108644], [-77.880419, 38.108544], [-77.879719, 38.108444], [-77.879319, 38.108444], [-77.879019, 38.108444], [-77.878619, 38.108344], [-77.878119, 38.108244], [-77.877619, 38.108044], [-77.877319, 38.107944], [-77.877019, 38.107844], [-77.876619, 38.107644], [-77.876319, 38.107444], [-77.876119, 38.107444], [-77.876008, 38.107481], [-77.876003, 38.107483], [-77.875819, 38.107544], [-77.875619, 38.107544], [-77.875319, 38.107444], [-77.875119, 38.107444], [-77.874783, 38.107234], [-77.874719, 38.107194], [-77.874319, 38.106744], [-77.874219, 38.106444], [-77.873919, 38.106344], [-77.873836, 38.106344], [-77.873119, 38.106344], [-77.872419, 38.106445], [-77.871913, 38.106517], [-77.871719, 38.106545], [-77.871538, 38.106467], [-77.871019, 38.106245], [-77.870119, 38.105945], [-77.869419, 38.105745], [-77.869119, 38.105645], [-77.867918, 38.105945], [-77.866618, 38.106245], [-77.866265, 38.106245], [-77.865718, 38.106245], [-77.865111, 38.106194], [-77.864518, 38.106145], [-77.864408, 38.106104], [-77.863718, 38.105845], [-77.862318, 38.105545], [-77.861218, 38.105545], [-77.860718, 38.105545], [-77.860618, 38.105545], [-77.860035, 38.105326], [-77.859818, 38.105245], [-77.859418, 38.104745], [-77.859318, 38.104445], [-77.859118, 38.103945], [-77.858912, 38.103739], [-77.858419, 38.103245], [-77.858219, 38.103045], [-77.858519, 38.102545], [-77.858719, 38.101745], [-77.858819, 38.101345], [-77.858776, 38.101136], [-77.858718, 38.100844], [-77.858119, 38.100345], [-77.857219, 38.100045], [-77.857115, 38.100032], [-77.856419, 38.099945], [-77.856119, 38.099845], [-77.855919, 38.099945], [-77.855119, 38.100745], [-77.854719, 38.100945], [-77.854419, 38.100945], [-77.854219, 38.101745], [-77.854419, 38.102445], [-77.854694, 38.102582], [-77.854819, 38.102645], [-77.854819, 38.103245], [-77.854756, 38.103392], [-77.854519, 38.103945], [-77.854119, 38.104245], [-77.853135, 38.104442], [-77.852619, 38.104546], [-77.851519, 38.104446], [-77.85122, 38.104345], [-77.851419, 38.104046], [-77.851518, 38.103445], [-77.851019, 38.102946], [-77.850619, 38.102746], [-77.849719, 38.102146], [-77.849219, 38.102046], [-77.849009, 38.101993], [-77.848418, 38.101844], [-77.848119, 38.101345], [-77.8479, 38.100689], [-77.847819, 38.100446], [-77.847819, 38.099946], [-77.847819, 38.099793], [-77.847818, 38.099444], [-77.847419, 38.098746], [-77.847019, 38.098446], [-77.846219, 38.098346], [-77.845419, 38.098546], [-77.844819, 38.099046], [-77.844019, 38.099746], [-77.843919, 38.099846], [-77.843819, 38.099946], [-77.843719, 38.099946], [-77.843619, 38.100046], [-77.843519, 38.100146], [-77.843419, 38.100246], [-77.843319, 38.100346], [-77.843219, 38.100546], [-77.843019, 38.101046], [-77.842919, 38.101446], [-77.843219, 38.101946], [-77.843915, 38.102642], [-77.844119, 38.102846], [-77.844919, 38.103346], [-77.845319, 38.103846], [-77.845519, 38.104346], [-77.844919, 38.104746], [-77.844419, 38.104846], [-77.843419, 38.105046], [-77.842719, 38.105046], [-77.842119, 38.105146], [-77.840919, 38.105746], [-77.839719, 38.106046], [-77.839218, 38.105844], [-77.838568, 38.105925], [-77.838538, 38.105927], [-77.838219, 38.106247], [-77.837719, 38.106047], [-77.837418, 38.105744], [-77.837319, 38.105347], [-77.837418, 38.105045], [-77.837219, 38.104746], [-77.837218, 38.104647], [-77.837019, 38.104647], [-77.836319, 38.104447], [-77.836318, 38.104345], [-77.836119, 38.103847], [-77.836419, 38.103647], [-77.836238, 38.103194], [-77.836219, 38.103146], [-77.836214, 38.103114], [-77.836119, 38.102447], [-77.836282, 38.102162], [-77.836518, 38.101744], [-77.836219, 38.101147], [-77.835319, 38.100847], [-77.834986, 38.100799], [-77.833919, 38.100647], [-77.833219, 38.100447], [-77.832019, 38.099847], [-77.831033, 38.099309], [-77.830919, 38.099247], [-77.830618, 38.098944], [-77.830419, 38.098047], [-77.830318, 38.097746], [-77.830045, 38.097564], [-77.830019, 38.097547], [-77.828919, 38.097247], [-77.827919, 38.097247], [-77.827119, 38.097247], [-77.826519, 38.097147], [-77.825019, 38.096547], [-77.824388, 38.096006], [-77.824384, 38.096002], [-77.824318, 38.095945], [-77.824248, 38.095815], [-77.824241, 38.095802], [-77.824238, 38.095797], [-77.824235, 38.095791], [-77.824198, 38.095722], [-77.823988, 38.095333], [-77.823742, 38.094875], [-77.823619, 38.094647], [-77.823462, 38.093791], [-77.823418, 38.093547], [-77.823219, 38.093547], [-77.823019, 38.093547], [-77.822054, 38.093354], [-77.822019, 38.093347], [-77.821219, 38.093047], [-77.820619, 38.092847], [-77.819718, 38.092444], [-77.819519, 38.091848], [-77.819919, 38.091348], [-77.820119, 38.090748], [-77.820219, 38.090248], [-77.820219, 38.090068], [-77.820219, 38.089748], [-77.820225, 38.089716], [-77.820319, 38.089248], [-77.820315, 38.08924], [-77.820299, 38.089201], [-77.820019, 38.088548], [-77.819719, 38.087848], [-77.819119, 38.087248], [-77.818219, 38.086348], [-77.817819, 38.085848], [-77.817619, 38.085648], [-77.816919, 38.085448], [-77.816519, 38.085548], [-77.816119, 38.085948], [-77.815919, 38.086248], [-77.815819, 38.086548], [-77.815319, 38.086848], [-77.815219, 38.086848], [-77.815019, 38.086748], [-77.814437, 38.086385], [-77.814219, 38.086248], [-77.813519, 38.085848], [-77.812919, 38.085326], [-77.812895, 38.085304], [-77.812718, 38.085145], [-77.812419, 38.084347], [-77.812618, 38.083647], [-77.812684, 38.083117], [-77.812718, 38.082846], [-77.812718, 38.081947], [-77.812618, 38.081246], [-77.812418, 38.080946], [-77.812351, 38.080846], [-77.812284, 38.080746], [-77.812017, 38.080346], [-77.81144, 38.079933], [-77.811317, 38.079845], [-77.811123, 38.0797], [-77.810917, 38.079545], [-77.810617, 38.079445], [-77.809317, 38.079245], [-77.808609, 38.079156], [-77.808517, 38.079145], [-77.807617, 38.078945], [-77.806517, 38.078545], [-77.806017, 38.078445], [-77.805517, 38.078445], [-77.804817, 38.078545], [-77.803817, 38.078545], [-77.802717, 38.078345], [-77.801317, 38.078245], [-77.800117, 38.078245], [-77.799517, 38.078545], [-77.798817, 38.078745], [-77.798711, 38.078745], [-77.798252, 38.078745], [-77.798192, 38.078745], [-77.797617, 38.078695], [-77.797059, 38.078602], [-77.796717, 38.078545], [-77.796417, 38.078545], [-77.795417, 38.078745], [-77.794362, 38.078621], [-77.79404, 38.078583], [-77.793717, 38.078545], [-77.791616, 38.077445], [-77.790716, 38.076945], [-77.790016, 38.076145], [-77.789316, 38.075945], [-77.78925, 38.075952], [-77.788416, 38.076045], [-77.787916, 38.076145], [-77.787416, 38.076345], [-77.786616, 38.076345], [-77.786616, 38.076245], [-77.786616, 38.076045], [-77.786316, 38.075445], [-77.785816, 38.074845], [-77.785816, 38.074545], [-77.785616, 38.073845], [-77.785116, 38.073245], [-77.784716, 38.072445], [-77.784516, 38.071845], [-77.784616, 38.071545], [-77.784516, 38.070945], [-77.784175, 38.070661], [-77.783916, 38.070445], [-77.782916, 38.069445], [-77.782616, 38.068545], [-77.782516, 38.067545] ] ] ] } } ] } ================================================ FILE: packages/turf-union/test/in/not-overlapping.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.88571166992188, 32.887659962078956], [-80.09788513183594, 32.927436533285565], [-80.15350341796875, 32.82825010814964], [-80.00312805175781, 32.69428812316933], [-79.89395141601562, 32.75551989829049], [-79.88571166992188, 32.887659962078956] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.85618591308594, 32.85997876713845], [-79.78958129882812, 32.913603231028915], [-79.64881896972656, 32.915908931564864], [-79.63233947753906, 32.804590457442565], [-79.79232788085938, 32.679840539897484], [-79.88433837890625, 32.687931474529464], [-79.85618591308594, 32.85997876713845] ] ] } } ] } ================================================ FILE: packages/turf-union/test/in/unable-to-complete-output-ring-1983-1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-138.73721748279914, 2.0783782250758946], [-141.54971748279917, 6.2849421612509815], [-134.07528251720086, 11.208361735012105], [-131.26278251720083, 7.043979226170151], [-138.73721748279914, 2.0783782250758946] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-160.6896965377851, 40.88860081193033], [-160.6583451950261, 40.510672000926164], [-160.66190372037752, 40.51037133348589], [-160.55753360319002, 39.79663191716156], [-160.55397491337683, 39.796935800275115], [-160.5499089989524, 39.74740308604976], [-160.44421528791327, 39.320082232246875], [-160.2699121404418, 38.90384497183405], [-160.10443662874945, 38.629423306699906], [-160.11113808103656, 38.62686332599969], [-158.70488808103653, 36.396208817797614], [-158.69818219705635, 36.398850979301976], [-158.62349842129717, 36.2712317120243], [-158.32126165579726, 35.88632497556583], [-157.9617182982814, 35.53342756235644], [-157.85881540923663, 35.454636702811], [-157.86352414522221, 35.45092643468119], [-156.4572741452222, 34.29726262080686], [-156.4572741452222, 34.29726262080683], [-153.6447741452222, 31.94201233811576], [-153.64006527501178, 31.945887812934107], [-153.64006527501172, 31.94588781293406], [-153.64477414522213, 31.942012338115703], [-152.7580924416708, 31.184737367454044], [-151.6736380810366, 29.316714166213814], [-151.66691734698864, 29.319592686835602], [-151.5922484212972, 29.18135443047673], [-151.2900116557973, 28.764710578780907], [-150.93046829828143, 28.383033827238847], [-150.82756518327554, 28.297881796676013], [-150.83227414522221, 28.293848637631797], [-148.54231573224416, 26.254481087538338], [-146.04863808103656, 21.710149065891883], [-146.04190027704684, 21.71323661891839], [-145.9672484212972, 21.565942101783975], [-145.66501165579726, 21.12236003249639], [-145.3054682982814, 20.716395937851374], [-145.20256517950813, 20.62590423782137], [-145.20727414522216, 20.62158943658075], [-141.64443015181178, 17.246138281182418], [-139.77228869117522, 12.721283006524027], [-140.21920699785207, 12.48151816830945], [-140.6755385622785, 12.157608896072702], [-141.08671829828143, 11.779880155476036], [-141.44626165579726, 11.354094542168014], [-141.74849842129723, 10.886789091976254], [-141.9886621404418, 10.385185343533806], [-142.16296528791327, 9.85708541123391], [-142.2686589989524, 9.310754969389762], [-142.30407642059762, 8.754794702435646], [-142.2686589989524, 8.198002417459364], [-142.16296528791327, 7.649228576493812], [-141.9886621404418, 7.117228426861487], [-141.74849842129723, 6.610514144945441], [-141.44626165579726, 6.137210441272217], [-141.08671829828143, 5.704916907523355], [-140.6755385622785, 5.320580048136904], [-140.21920699785207, 4.990377478814594], [-139.72492022637246, 4.719616250957969], [-139.4877534841437, 4.626019936874601], [-139.4915764205976, 4.565473550710294], [-139.45615899895233, 4.004105450791968], [-139.35046528791327, 3.451213987601406], [-139.17616214044176, 2.9155938231043734], [-138.93599842129717, 2.4057718307890354], [-138.7307903740528, 2.0826480404896484], [-138.73721748279917, 2.078378225075909], [-135.92471748279917, -2.139418494751368], [-135.91828230639197, -2.1351298091717252], [-135.82126165579726, -2.287911612394268], [-135.46171829828143, -2.722108514777048], [-135.35881716745445, -2.818613899829967], [-135.36352414522216, -2.8233183805339905], [-131.66025962391583, -6.512074033718909], [-130.57988808103653, -8.655273541009365], [-130.57307698563218, -8.65189168023775], [-130.49849842129717, -8.808614737044621], [-130.19626165579723, -9.278941809131354], [-129.8367182982814, -9.707601974613453], [-129.42553856227846, -10.087977628647835], [-128.96920699785207, -10.414229095773521], [-128.4749202263724, -10.681373630031246], [-127.95047344549843, -10.885350042822523], [-127.4041374942538, -11.023069333499564], [-126.84452841695492, -11.09245189439632], [-126.56249999999999, -11.09245189439632], [-126.56249999999999, -11.10114928472835], [-125.15624999999999, -11.10114928472835], [-125.15624999999999, -11.09245189439632], [-124.87422158304506, -11.09245189439632], [-124.31461250574617, -11.023069333499564], [-123.76827655450154, -10.885350042822523], [-123.24382977362757, -10.681373630031246], [-122.74954300214795, -10.414229095773521], [-122.29321143772151, -10.087977628647835], [-121.88203170171857, -9.707601974613468], [-121.52248834420274, -9.278941809131354], [-121.22025157870283, -8.808614737044621], [-120.98008785955822, -8.303922905899086], [-120.80578471208672, -7.772745720890754], [-120.70009100104764, -7.223419751437234], [-120.66467357940238, -6.6646075621725345], [-120.66467357940238, -5.266007882805482], [-120.70009100104764, -4.705196218483266], [-120.80578471208672, -4.152787095858088], [-120.98008785955822, -3.6175719807714444], [-121.2202515787028, -3.108078602871174], [-121.52248834420274, -2.63242849864686], [-121.88203170171857, -2.198202391381244], [-121.9849335215584, -2.1016305086610645], [-121.98022585477779, -2.096945069926207], [-123.3864758547778, -0.691146592624932], [-123.39118333960779, -0.6958409934070753], [-123.39118333960789, -0.6958409934069764], [-123.38647585477788, -0.6911465926248184], [-123.50766945008958, -0.5699560417625025], [-123.51259100104767, -0.49173766653407824], [-123.61828471208676, 0.06232212094137424], [-123.71595348826418, 0.36290960538168665], [-123.70766646786156, 0.3656711949315081], [-125.11391646786154, 4.579539815662798], [-125.12221533513642, 4.576778020412499], [-125.19883785955825, 4.81185565150021], [-125.36441457809373, 5.162348372750518], [-125.35761191896344, 5.165743831278121], [-126.76386191896341, 7.959530796303497], [-126.7706713392258, 7.95614520389963], [-126.84525157870281, 8.113146620363906], [-127.05047956609502, 8.433106178826797], [-127.04403251720086, 8.437379616632285], [-129.70078671927314, 12.354727326722355], [-130.90361628448954, 14.693864989481934], [-133.6359250839431, 21.19092402842235], [-133.63633785955824, 21.19211050070126], [-133.63685064122322, 21.193124877862967], [-133.6421759881453, 21.205787829196495], [-133.64307983026706, 21.205447368180977], [-133.8765015787028, 21.667198844155763], [-134.17873834420274, 22.109115131915928], [-134.5382817017186, 22.51119320766078], [-134.64117871395456, 22.600341802546218], [-134.63647585477784, 22.604769237348435], [-138.3458118725443, 25.97860069463627], [-140.8263619189634, 30.36183966418845], [-140.83322212303318, 30.35882881270289], [-140.9077515787028, 30.495610093036802], [-141.20998834420274, 30.905110807080362], [-141.56953170171857, 31.277289181267648], [-141.67242637169784, 31.35972599692654], [-141.6677258547778, 31.36385129809915], [-143.96601717531868, 33.30090148459311], [-145.0451119189634, 35.091469225371696], [-145.05198163997304, 35.08860290822834], [-145.12650157870283, 35.218310913523766], [-145.42873834420274, 35.60645353663534], [-145.78828170171857, 35.959028058764005], [-145.89117505429087, 36.03708360338239], [-145.88647585477787, 36.041004510381356], [-147.29272585477787, 37.169848760576585], [-147.29272585477787, 37.16984876057657], [-150.1052258547778, 39.37752590372085], [-150.1052258547778, 39.37752590372084], [-151.00153308598706, 40.06494873317625], [-151.71763492940048, 41.15175148455148], [-151.73433651399748, 41.264680637113344], [-151.7379176861147, 41.26437805619925], [-151.74196111823514, 41.312807656725454], [-151.84765482927423, 41.7276464729546], [-152.02195797674574, 42.12676009771624], [-152.26212169589033, 42.504153999354656], [-152.56435846139027, 42.854271974661685], [-152.9239018189061, 43.172058758712296], [-153.33508155490907, 43.45301018304946], [-153.79141311933543, 43.69321200722706], [-154.28569989081507, 43.889368886946215], [-154.81014667168907, 44.0388251177572], [-155.3564826229337, 44.139578807949164], [-155.91609170023258, 44.19029100023394], [-156.48014853414242, 44.19029100023394], [-157.0397576114413, 44.139578807949164], [-157.58609356268596, 44.0388251177572], [-158.11054034355993, 43.889368886946215], [-158.60482711503957, 43.69321200722706], [-159.06115867946593, 43.45301018304946], [-159.47233841546893, 43.172058758712296], [-159.83188177298476, 42.854271974661685], [-160.13411853848467, 42.504153999354656], [-160.37428225762926, 42.12676009771624], [-160.54858540510077, 41.7276464729546], [-160.65427911613986, 41.312807656725454], [-160.6896965377851, 40.88860081193033] ] ] } } ] } ================================================ FILE: packages/turf-union/test/in/unable-to-complete-output-ring-1983-2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [119.26792227000003, 26.09133855399999], [119.26827343900003, 26.091289528000004], [119.268373409, 26.091262625999995], [119.268373463, 26.091262593999986], [119.26851724000005, 26.091171713999987], [119.26918610999996, 26.090842504], [119.26919957700002, 26.090865310999995], [119.26943968, 26.091271921999976], [119.26962150899998, 26.091529384000022], [119.26966249500005, 26.091587418000014], [119.27003378300003, 26.09192920999999], [119.27041757200007, 26.092110158000033], [119.27091753499998, 26.09231781900001], [119.270981785, 26.09234426599999], [119.27113544199995, 26.092407525999985], [119.27139502100002, 26.092449202], [119.271933239, 26.092572995000015], [119.27294777500005, 26.092688886], [119.27359170800003, 26.092905836], [119.27366611599997, 26.092919462999983], [119.27370475199997, 26.092896025000012], [119.27370482000008, 26.092895977999987], [119.27388310000008, 26.092771592000016], [119.27398498100004, 26.09271955899999], [119.27410025500002, 26.09270411799997], [119.27443945799996, 26.092623322000012], [119.27446330299995, 26.09248727800002], [119.27457582199996, 26.09250312], [119.27467098600005, 26.092153184999976], [119.27470517500001, 26.092093467999966], [119.27473463099999, 26.09204201699998], [119.27485925799999, 26.091922878999984], [119.27489255600005, 26.091891044999993], [119.27528952800004, 26.09167620099998], [119.27565197900006, 26.09208567399996], [119.27590847199998, 26.09214010999999], [119.27646200599996, 26.092176559999988], [119.27667630999998, 26.09216992299997], [119.27702867400001, 26.092095195999985], [119.27734837000004, 26.09204297000003], [119.27733686700003, 26.091840850999972], [119.27740100999996, 26.090045427999996], [119.27740185600003, 26.09002172800001], [119.27740308300001, 26.089987430000008], [119.27740528000004, 26.089925934000004], [119.27743051499999, 26.08921948400001], [119.27749059500002, 26.088078816999996], [119.27753907600004, 26.08750046199999], [119.27756799600004, 26.08715545299998], [119.277579687, 26.087015983999997], [119.27774168200007, 26.085083374999986], [119.279599867, 26.085852784999986], [119.27964342400003, 26.08587082000002], [119.27966465500003, 26.085879610999992], [119.27985183500009, 26.085957113000003], [119.28082740200003, 26.086361044999983], [119.28120701700007, 26.086518220999988], [119.28280495700005, 26.087179541999998], [119.283082874, 26.087294557], [119.28359686099998, 26.087507265], [119.28390780700002, 26.087590218], [119.283996207, 26.087613800999964], [119.28400513400004, 26.087616181999977], [119.28447277299996, 26.087740930999985], [119.285337701, 26.087874160000005], [119.28569185100004, 26.087928712000014], [119.28636738499996, 26.088032763999976], [119.28686264700004, 26.08810904500001], [119.28688445399996, 26.088112405000007], [119.28740812299998, 26.088193061000027], [119.28744890300008, 26.088200452999995], [119.28747632199997, 26.088205424000016], [119.288289687, 26.088352864999987], [119.28857068200003, 26.088403801000027], [119.28939130000003, 26.08855254899998], [119.28940446399997, 26.08855493499999], [119.28953208300005, 26.088578068999993], [119.29001057200006, 26.088664795999996], [119.29004381799999, 26.088671143999992], [119.29010271699998, 26.08868238799999], [119.29028644799995, 26.08871746199997], [119.29029319700001, 26.088718749000012], [119.29032127800001, 26.088724108999997], [119.29106401700005, 26.088865881000004], [119.29144868799996, 26.088890004000007], [119.29145798699996, 26.08889058800003], [119.29147025600001, 26.088891262999994], [119.29448168600004, 26.089056912999975], [119.29475537500002, 26.087851934000014], [119.29476505900004, 26.087809299000014], [119.29477158500005, 26.087780598], [119.29480424400005, 26.087636948000018], [119.29480721000007, 26.087623896000018], [119.29480912400007, 26.087615481999975], [119.29481181300002, 26.087603648000023], [119.29498015099999, 26.086862591], [119.29498124700001, 26.08685776499998], [119.29501659100004, 26.086702160999987], [119.29503741600001, 26.08661048699997], [119.295190372, 26.086087195999994], [119.29519121400008, 26.086084304999975], [119.29520515599995, 26.08603660500001], [119.295400463, 26.085368404999983], [119.29540177700007, 26.085363916], [119.29540819700004, 26.085341946000025], [119.29552614299996, 26.08493841500001], [119.29576637400001, 26.084116497000025], [119.29576696599999, 26.084114479999965], [119.29584204900004, 26.083873901999993], [119.298732505, 26.084446225000008], [119.29886870400004, 26.084473193000004], [119.29899598099999, 26.08449839500003], [119.30148191, 26.084990560999987], [119.30167684900003, 26.08408462599998], [119.30193896900005, 26.084062775999996], [119.302088432, 26.084015709000028], [119.30211186099996, 26.084008331000007], [119.30245265600003, 26.083700234999988], [119.30259336600002, 26.083699799999973], [119.30360708600006, 26.083679443999984], [119.30428010499998, 26.083462051000026], [119.304297636, 26.083456387000002], [119.30451040100002, 26.083418869000013], [119.30516094200004, 26.08352380399998], [119.30527010900006, 26.083087960999986], [119.30609187799995, 26.08324918400001], [119.30614589200005, 26.08325978099997], [119.30617918600005, 26.08326631199997], [119.30747144700003, 26.083519831999972], [119.30814750900002, 26.083559037999976], [119.30817862900005, 26.083560843999958], [119.30894618500001, 26.083605346999995], [119.30897813000001, 26.083607201999996], [119.30899601800002, 26.083608237999997], [119.31036787799997, 26.08370109600003], [119.31049752900002, 26.08370987699999], [119.31186102799998, 26.083802155000004], [119.31284842800007, 26.083861716999998], [119.31293800399999, 26.08386712200001], [119.31416202800006, 26.083940944000005], [119.31417288700005, 26.083941600000006], [119.31517620000001, 26.084002102999982], [119.31514259899996, 26.08407781199997], [119.31484726999997, 26.08474323799997], [119.31353783300007, 26.086738449], [119.31313363499999, 26.087354318999978], [119.31305608599999, 26.087472479999974], [119.31273692800005, 26.087958765999986], [119.31256064800006, 26.088556896], [119.31256063100001, 26.088556949999987], [119.31253415100002, 26.088702188000013], [119.31212274699999, 26.090958447000002], [119.31212269599997, 26.090958619999977], [119.312085575, 26.091084587000008], [119.31201279300001, 26.091495786999975], [119.311894876, 26.09216196699998], [119.31177712900002, 26.092827178999983], [119.31164283299995, 26.093585881000024], [119.31153050800003, 26.094220441000008], [119.31151263100004, 26.094317014999994], [119.31151012199997, 26.09433057299998], [119.31129391399998, 26.095498737000014], [119.311246248, 26.095756271000035], [119.31111729500003, 26.09645296500002], [119.31108367300001, 26.096634611999995], [119.31092776000004, 26.097476958000016], [119.31074179500001, 26.098481644000003], [119.31070430499997, 26.098684192999983], [119.310701948, 26.098696933999967], [119.31063682000006, 26.099048783], [119.31063240100002, 26.099074847999987], [119.31055972099999, 26.099503630999997], [119.31052681300005, 26.09969775399998], [119.31035327400006, 26.100327902999986], [119.310237271, 26.100589915999986], [119.31001505999996, 26.101091823999976], [119.30963210899998, 26.10195676699998], [119.30962586099997, 26.101970891999983], [119.309610776, 26.10200495800001], [119.30940705600008, 26.102465086], [119.30924338, 26.102834764000026], [119.30923976300008, 26.102842939000027], [119.30857120899998, 26.104352902000016], [119.30847835899999, 26.104562610000016], [119.30841339999996, 26.104709318999987], [119.308368417, 26.104810914999963], [119.30833914300001, 26.10487702699999], [119.30750594999995, 26.10675876200003], [119.30749660100004, 26.106779883999987], [119.30597177300001, 26.106411965999996], [119.305952973, 26.106407429], [119.305903341, 26.106395453], [119.30510922900002, 26.106204389000016], [119.30434964899997, 26.106021624999997], [119.304202092, 26.10598612400002], [119.304163951, 26.105976946999984], [119.304147589, 26.105973011], [119.30396597699998, 26.10592931100001], [119.30311475500002, 26.105724494000018], [119.30305377900007, 26.10570982100001], [119.30269559299997, 26.105623632000004], [119.30134310999996, 26.105348354000004], [119.30140594600006, 26.10424925], [119.30141243100002, 26.10413581599999], [119.30144344200005, 26.103593376], [119.301477438, 26.10299870799997], [119.30147935599997, 26.102965155999975], [119.301498788, 26.102625284000005], [119.30149879400007, 26.10262514999998], [119.30155428700007, 26.101654460000024], [119.30158182499999, 26.101172729999973], [119.30164042300001, 26.100062831999978], [119.30164396600001, 26.09999582400002], [119.30164591300003, 26.09995891599999], [119.30167080599998, 26.099487694], [119.30168516249151, 26.09921588003469], [119.30157350999384, 26.10116897056351], [119.30148804155813, 26.102651681148387], [119.30133489504965, 26.105344191491753], [119.2995770252021, 26.10498130378754], [119.29917638368264, 26.104898690308694], [119.29766313833464, 26.1045860742631], [119.2957679372748, 26.10419363718654], [119.29569109087862, 26.103727349157232], [119.29574826294841, 26.102924937871634], [119.29571437469058, 26.102133471638474], [119.29571168336672, 26.102073236312435], [119.29665560939513, 26.100835883817965], [119.29479793505608, 26.100042483347874], [119.29436350685195, 26.099857009381875], [119.29370790546564, 26.099658147687336], [119.29222800371282, 26.099405729816166], [119.29224878147363, 26.099299730556208], [119.29296858645722, 26.09563821197875], [119.29172982499996, 26.09542004299999], [119.291548166, 26.09538804699997], [119.29147919100002, 26.09537589799999], [119.29092879400005, 26.09527896299999], [119.290861736, 26.095267149999984], [119.29083662400001, 26.09526272800002], [119.289772184, 26.09507523899998], [119.28976558500005, 26.095074079000018], [119.28976121500001, 26.095073307999996], [119.28883611400002, 26.094874480999977], [119.28879492500006, 26.094865389999992], [119.28865346900001, 26.094801206000003], [119.28821295099999, 26.095722943999988], [119.288176617, 26.09579861399998], [119.28795602599996, 26.096258008999996], [119.28762952600006, 26.09708954600001], [119.28719542900002, 26.097248298999986], [119.286943029, 26.09746719399998], [119.286784678, 26.09774015900002], [119.28666949000001, 26.097938716999963], [119.28627131300006, 26.098625089999974], [119.285836732, 26.09920938699998], [119.28542934799998, 26.099757109999977], [119.28526723699997, 26.099975060000013], [119.28517774600006, 26.100134378000007], [119.28513023300002, 26.100344265999972], [119.28510031300004, 26.100605428999984], [119.28509363700003, 26.100841851999974], [119.28509584799998, 26.101470849999984], [119.28518487300005, 26.101774998999982], [119.28541082200003, 26.102118226000023], [119.28497389899997, 26.10275779300002], [119.28460118500006, 26.102778033000007], [119.28457926900002, 26.103068271999966], [119.28429292199999, 26.103701686999997], [119.28420452399999, 26.103923237999993], [119.28418653200004, 26.10394198199998], [119.28417865100005, 26.104082022], [119.28413037600001, 26.104080791999994], [119.28412894300006, 26.104136270000023], [119.28409585300005, 26.10413805799999], [119.28403167199998, 26.104137579999986], [119.28396366100003, 26.104137460999993], [119.28394906200003, 26.103910285999962], [119.28437865599996, 26.10338549300002], [119.28449004000004, 26.103015801000026], [119.28383831400002, 26.102447643999987], [119.28334218600003, 26.102179993999982], [119.28330546999996, 26.102062236999977], [119.28343273500002, 26.101705144], [119.28329874799999, 26.10102850099996], [119.28335355599995, 26.10027773600001], [119.28396047900003, 26.09910991699999], [119.28400039300007, 26.098942828000016], [119.28400837599996, 26.098856662999996], [119.28401123000002, 26.098631735000026], [119.28400563100001, 26.098559797999993], [119.28252444800002, 26.09799482499999], [119.28103801000002, 26.09726104999997], [119.280739339, 26.09652067899998], [119.27997057699999, 26.096583657999975], [119.27985074200001, 26.096896754], [119.27910538599996, 26.09783521399997], [119.27793710799995, 26.09854491200002], [119.27693595100007, 26.098456449999986], [119.27693682600001, 26.098453353000025], [119.27717338699998, 26.097615093999995], [119.27746324500004, 26.096757853999964], [119.27758203400005, 26.096399650000023], [119.27761161800005, 26.096098638], [119.27725976800002, 26.096006373000026], [119.27724631000002, 26.096040566999985], [119.27713601400002, 26.096013003999982], [119.27714704100005, 26.095976813999982], [119.27651605799998, 26.095811351999988], [119.275653337, 26.095736605000003], [119.27495428400006, 26.095676043000008], [119.273803544, 26.095374116000013], [119.273463622, 26.095328902000002], [119.272790181, 26.095132858], [119.27186121900002, 26.09489626499998], [119.27154874800003, 26.094802835], [119.27133072599997, 26.09467379900002], [119.27066023900004, 26.094224418000017], [119.27035268700001, 26.09403649699999], [119.27035264500003, 26.094036472000006], [119.26863135300003, 26.092673284999993], [119.26839284799996, 26.09253755999999], [119.26810974900006, 26.092259415999976], [119.26810976700007, 26.09225939800001], [119.26825405200002, 26.09210043399997], [119.26825405000002, 26.09210040300002], [119.268231282, 26.091870476999983], [119.26792227000003, 26.09133855399999] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [119.28447277299996, 26.087740930999985], [119.285337701, 26.08787416000001], [119.28569185100004, 26.087928712000007], [119.28636738499996, 26.088032763999983], [119.28686264700004, 26.08810904500001], [119.28688445399996, 26.088112405000007], [119.28740812299998, 26.088193061000027], [119.28744890300005, 26.088200453000006], [119.28747632199997, 26.088205424000016], [119.288289687, 26.088352864999994], [119.28857068200001, 26.088403801000023], [119.28939130000003, 26.08855254899998], [119.28940446399997, 26.08855493499999], [119.28953208300005, 26.088578068999993], [119.29001057200006, 26.088664795999993], [119.29004381799999, 26.088671143999992], [119.29010271699998, 26.08868238799999], [119.29028644799995, 26.088717461999973], [119.29029319700001, 26.088718749000012], [119.29032127800001, 26.088724108999997], [119.29106401700005, 26.088865881000004], [119.29144868799996, 26.088890004000007], [119.29145798699996, 26.08889058800003], [119.29147025600001, 26.088891262999994], [119.29448168600004, 26.089056912999975], [119.29475537500002, 26.087851934000014], [119.29476505900004, 26.087809299000014], [119.29477158500005, 26.087780598], [119.29480424400005, 26.087636948000018], [119.29480721000004, 26.087623896000018], [119.29480912400007, 26.08761548199998], [119.29481181300002, 26.087603648000023], [119.29498015099999, 26.086862591], [119.29498124700001, 26.086857764999987], [119.29501659100004, 26.086702160999998], [119.29503741600001, 26.08661048699997], [119.295190372, 26.086087195999994], [119.29519121400008, 26.08608430499998], [119.29520515599995, 26.086036605000007], [119.295400463, 26.085368404999986], [119.29540177700007, 26.085363916000002], [119.29540819700004, 26.085341946000025], [119.29552614299996, 26.08493841500001], [119.29576637400001, 26.08411649700002], [119.29576696599999, 26.084114479999975], [119.29584204900004, 26.083873901999993], [119.295167775, 26.08366118399999], [119.29455955699996, 26.083469300999983], [119.29388822199998, 26.083264799999988], [119.29356201300007, 26.083165427999976], [119.29352399300004, 26.08315390600001], [119.29266532800001, 26.08289364900003], [119.29314036800001, 26.081207388], [119.29302534900002, 26.08115973100001], [119.29249488000004, 26.08106307499996], [119.29199401000008, 26.080972540000005], [119.29136559200003, 26.080871537000007], [119.29113559600002, 26.080841222000004], [119.29113210000003, 26.080840760999983], [119.29097417000003, 26.080726428], [119.290930272, 26.08069553799998], [119.29085149199999, 26.080540573000007], [119.290518517, 26.08003612300001], [119.29047453299995, 26.07996948499999], [119.29034672200001, 26.079949881999998], [119.29029318100005, 26.07994166999998], [119.28949736100006, 26.079819612999977], [119.28943621400003, 26.079810232000007], [119.28903911400003, 26.079768845999975], [119.28900435900003, 26.079765220000013], [119.28885292999996, 26.079749439000004], [119.28885289100003, 26.07974940100001], [119.28809546699996, 26.07952285499999], [119.28713699000004, 26.079334507999988], [119.287066762, 26.07930869900002], [119.28701893100003, 26.079291119], [119.28610159899996, 26.079238470000014], [119.28611796200006, 26.079101594000004], [119.28615825199996, 26.078927819000004], [119.28616068400005, 26.078917363000016], [119.28616069099998, 26.07891733000002], [119.28547518799999, 26.078877547999983], [119.28508176200002, 26.078836285000026], [119.28482341200004, 26.078777521000003], [119.28439674000003, 26.078680471999974], [119.28445328600004, 26.07811491400002], [119.28446478599994, 26.078032192000023], [119.28335089400002, 26.077821433999986], [119.28341639799999, 26.077392630000023], [119.28324177499996, 26.077382264999983], [119.28297829999997, 26.077326976000002], [119.283034348, 26.076808007000004], [119.282957982, 26.076717181999978], [119.28282427000002, 26.076753122000014], [119.282704135, 26.07664956500003], [119.28275328300003, 26.076519449999978], [119.282530598, 26.07630241700001], [119.28230909499997, 26.076278419999998], [119.28187985800002, 26.076394515000004], [119.28187259900005, 26.07648242300002], [119.28186935400005, 26.076538104000008], [119.28187371700007, 26.076620633999998], [119.28191131400001, 26.076718883000012], [119.28190801599999, 26.076784131000004], [119.28189076700005, 26.07678172599998], [119.28186454900002, 26.076924373], [119.28184189499996, 26.076971404000002], [119.281795494, 26.076998112000012], [119.28124538400004, 26.07695633100002], [119.28073570900008, 26.07688780799998], [119.28072823699996, 26.076951188000006], [119.28070882300008, 26.077097228000014], [119.28019503300006, 26.07701174200001], [119.279794294, 26.076934321999996], [119.27969403500005, 26.076929843000013], [119.279597611, 26.077295248999974], [119.27951207399997, 26.077657567000017], [119.279245135, 26.078788229000008], [119.27922207999994, 26.07889336800003], [119.27921921599999, 26.07890642199998], [119.279218714, 26.078908712999972], [119.27896359200001, 26.08007220399998], [119.27895592499998, 26.080107171000005], [119.27880070500002, 26.080815044000012], [119.27878032000001, 26.080897214000004], [119.27873174800003, 26.081092991999977], [119.278598356, 26.081630636000007], [119.27859539200008, 26.081642573999996], [119.278473641, 26.08213329], [119.278421053, 26.082345246999967], [119.27840012399997, 26.082429605000012], [119.278111814, 26.083591618999996], [119.27810495300002, 26.083619285999987], [119.27809264899997, 26.083668857000017], [119.27805475900004, 26.08382156900001], [119.27774168200007, 26.085083375000007], [119.279599867, 26.085852784999986], [119.27964342400003, 26.08587082000002], [119.27966465500003, 26.085879610999992], [119.27985183500009, 26.085957113000006], [119.280827402, 26.086361044999993], [119.28120701700007, 26.086518221], [119.28280495700005, 26.087179541999998], [119.283082874, 26.087294557], [119.28359686099998, 26.087507265], [119.28390780700002, 26.087590218], [119.283996207, 26.087613800999968], [119.28400513400004, 26.087616181999977], [119.28447277299996, 26.087740930999985] ] ] } } ] } ================================================ FILE: packages/turf-union/test/in/unable-to-find-segment-2258-1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-73.06244448903232, 18.596801939748655], [-73.05407828100999, 18.559574884443432], [-73.02449897675693, 18.427747962201135], [-73.00856378482453, 18.50884874486772], [-72.99260735779502, 18.590014564484544], [-73.06244448903232, 18.596801939748655] ] ], [ [ [-73.04849828566886, 19.74713670181383], [-73.01761830156346, 19.69103613572505], [-73.03138982758604, 19.750747500261227], [-73.04849828566886, 19.74713670181383] ] ], [ [ [-72.65364940830283, 20.124248055459326], [-72.65319619909113, 20.122267081451863], [-72.6476195782836, 20.123415333285244], [-72.65364940830283, 20.124248055459326] ] ], [ [ [-72.55108447575863, 17.974866348840024], [-72.45710334056436, 17.97227551144358], [-72.46320521992928, 17.999399006529142], [-72.50754265521213, 18.195904425399238], [-72.51657860925029, 18.150057440187584], [-72.54370663234872, 18.012340247890656], [-72.55108447575863, 17.974866348840024] ] ], [ [ [-71.8267836792031, 20.010057535093836], [-71.80745153630141, 19.91312439376248], [-71.78921192211703, 20.004868858937943], [-71.8267836792031, 20.010057535093836] ] ], [ [ [-71.66191017921575, 19.182076213197288], [-71.6562049006765, 19.153360535270046], [-71.65740874033601, 19.20458800272359], [-71.66191017921575, 19.182076213197288] ] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-73.06244448903232, 18.596801939748655], [-73.05407828100999, 18.559574884443432], [-73.02449897675693, 18.427747962201135], [-73.00856378482453, 18.50884874486772], [-72.99260735779502, 18.590014564484544], [-73.06244448903232, 18.596801939748655] ] ], [ [ [-73.04849828566886, 19.74713670181383], [-73.01761830156346, 19.691036135725053], [-73.03138982758604, 19.750747500261227], [-73.04849828566886, 19.74713670181383] ] ], [ [ [-72.65364940830283, 20.12424805545933], [-72.65319619909113, 20.122267081451863], [-72.6476195782836, 20.123415333285244], [-72.65364940830283, 20.12424805545933] ] ], [ [ [-72.55108447575863, 17.974866348840024], [-72.45710334056436, 17.97227551144358], [-72.46320521992928, 17.999399006529142], [-72.50754265521213, 18.195904425399238], [-72.51657860925029, 18.150057440187584], [-72.54370663234872, 18.012340247890656], [-72.55108447575863, 17.974866348840024] ] ], [ [ [-71.8267836792031, 20.010057535093836], [-71.80745153630141, 19.913124393762487], [-71.78921192211703, 20.004868858937943], [-71.8267836792031, 20.010057535093836] ] ], [ [ [-71.66191017921577, 19.182076213197277], [-71.6562049006765, 19.15336053527002], [-71.65740874033601, 19.204588002723632], [-71.66191017921577, 19.182076213197277] ] ] ] } } ] } ================================================ FILE: packages/turf-union/test/in/unable-to-find-segment-2258-2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "id": "4343a1bb-c298-49be-a44f-3bc81a0e79da", "properties": { "id": "4343a1bb-c298-49be-a44f-3bc81a0e79da" }, "type": "Feature", "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [17.650443, 59.85602], [17.650443, 59.85602], [17.650443, 59.85602], [17.650441, 59.856021], [17.650439, 59.856023], [17.650438, 59.856023], [17.650438, 59.856023], [17.650436, 59.856024], [17.650433, 59.856025], [17.650431, 59.856027], [17.650429, 59.856028], [17.650426, 59.856029], [17.650424, 59.856031], [17.650421, 59.856032], [17.650419, 59.856033], [17.650417, 59.856035], [17.650416, 59.856035], [17.650414, 59.856036], [17.650414, 59.856036], [17.650412, 59.856037], [17.65041, 59.856038], [17.650409, 59.856039], [17.650409, 59.856039], [17.650406, 59.85604], [17.650404, 59.856042], [17.650402, 59.856043], [17.650399, 59.856044], [17.650397, 59.856046], [17.650397, 59.856046], [17.650396, 59.856046], [17.650394, 59.856047], [17.650392, 59.856048], [17.65039, 59.85605], [17.650387, 59.856051], [17.650385, 59.856052], [17.650411, 59.856064], [17.650377, 59.856083], [17.650379, 59.856083], [17.650379, 59.856083], [17.650518, 59.856146], [17.650519, 59.856146], [17.650519, 59.856146], [17.650583, 59.856175], [17.650658, 59.856133], [17.650659, 59.856133], [17.651039, 59.855921], [17.65104, 59.855921], [17.65104, 59.855921], [17.65105, 59.855915], [17.65105, 59.855915], [17.651044, 59.855912], [17.651044, 59.855912], [17.651043, 59.855913], [17.651015, 59.8559], [17.651015, 59.8559], [17.651014, 59.8559], [17.651014, 59.8559], [17.650968, 59.855879], [17.650968, 59.855879], [17.650968, 59.855878], [17.650967, 59.855879], [17.650935, 59.855864], [17.650935, 59.855864], [17.650934, 59.855863], [17.650918, 59.855872], [17.650901, 59.855882], [17.650885, 59.855891], [17.650885, 59.855891], [17.650884, 59.855891], [17.650844, 59.855873], [17.650844, 59.855874], [17.650827, 59.855866], [17.650794, 59.855884], [17.650763, 59.85587], [17.650665, 59.855924], [17.650665, 59.855924], [17.650682, 59.855914], [17.65068, 59.855914], [17.650663, 59.855923], [17.650637, 59.855912], [17.65061, 59.855927], [17.650609, 59.855927], [17.650606, 59.855929], [17.650606, 59.855929], [17.65059, 59.855938], [17.650573, 59.855947], [17.650557, 59.855956], [17.65054, 59.855965], [17.650525, 59.855974], [17.650508, 59.855983], [17.650492, 59.855992], [17.650476, 59.856001], [17.650475, 59.856002], [17.65046, 59.85601], [17.650459, 59.856011], [17.650443, 59.85602], [17.650443, 59.85602] ] ], [ [ [17.650637, 59.855906], [17.650664, 59.855918], [17.650727, 59.855883], [17.6507, 59.855871], [17.650637, 59.855906] ] ], [ [ [17.650796, 59.855849], [17.650797, 59.855849], [17.650795, 59.855849], [17.650795, 59.855849], [17.650795, 59.855849], [17.650795, 59.855849], [17.650794, 59.855848], [17.650794, 59.855848], [17.650795, 59.855849], [17.650796, 59.855849], [17.650798, 59.85585], [17.650798, 59.85585], [17.650798, 59.85585], [17.650797, 59.855849], [17.650796, 59.855849], [17.650796, 59.855849] ] ], [ [ [17.6508, 59.855851], [17.6508, 59.855851], [17.650798, 59.85585], [17.650798, 59.85585], [17.650798, 59.85585], [17.6508, 59.855851], [17.6508, 59.855851] ] ], [ [ [17.650826, 59.855863], [17.650827, 59.855863], [17.650827, 59.855863], [17.650827, 59.855863], [17.650827, 59.855863], [17.650827, 59.855863], [17.650826, 59.855863], [17.650826, 59.855863], [17.650826, 59.855863], [17.650826, 59.855863] ] ], [ [ [17.650829, 59.855864], [17.650827, 59.855863], [17.650827, 59.855863], [17.650828, 59.855864], [17.650828, 59.855864], [17.650829, 59.855864] ] ] ] } }, { "id": "4ea314e7-c8d4-4325-b4ba-91b1ac4a4b67", "properties": { "id": "4ea314e7-c8d4-4325-b4ba-91b1ac4a4b67" }, "type": "Feature", "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [17.65042, 59.856055], [17.650421, 59.856056], [17.650421, 59.856056], [17.650421, 59.856056], [17.65042, 59.856055], [17.65042, 59.856055], [17.65042, 59.856055], [17.650406, 59.856063], [17.650407, 59.856063], [17.650408, 59.856063], [17.650408, 59.856064], [17.650406, 59.856063], [17.650406, 59.856063], [17.650406, 59.856063], [17.65039, 59.856072], [17.65039, 59.856072], [17.650391, 59.856072], [17.650391, 59.856073], [17.650391, 59.856073], [17.650391, 59.856072], [17.650391, 59.856072], [17.650391, 59.856072], [17.65039, 59.856072], [17.65039, 59.856072], [17.650369, 59.856083], [17.650369, 59.856083], [17.650372, 59.856083], [17.650372, 59.856083], [17.650372, 59.856083], [17.650369, 59.856083], [17.650369, 59.856083], [17.650386, 59.856091], [17.650386, 59.856091], [17.650387, 59.85609], [17.650387, 59.85609], [17.650387, 59.85609], [17.650386, 59.856091], [17.650386, 59.856091], [17.650404, 59.856099], [17.650405, 59.856099], [17.650405, 59.856098], [17.650405, 59.856098], [17.650404, 59.856099], [17.650404, 59.856099], [17.650422, 59.856107], [17.650423, 59.856107], [17.650423, 59.856106], [17.650423, 59.856106], [17.650422, 59.856107], [17.650422, 59.856107], [17.65044, 59.856115], [17.650441, 59.856115], [17.650441, 59.856115], [17.650441, 59.856115], [17.65044, 59.856115], [17.65044, 59.856115], [17.650453, 59.856121], [17.650453, 59.856121], [17.650453, 59.856121], [17.650453, 59.856121], [17.650452, 59.856121], [17.650452, 59.856121], [17.650452, 59.856122], [17.650452, 59.856122], [17.650452, 59.856122], [17.650452, 59.856122], [17.650452, 59.856122], [17.650452, 59.856122], [17.650452, 59.856122], [17.650452, 59.856122], [17.650452, 59.856122], [17.650452, 59.856122], [17.650452, 59.856122], [17.650452, 59.856122], [17.650452, 59.856122], [17.650452, 59.856122], [17.650452, 59.856122], [17.650452, 59.856122], [17.650454, 59.856122], [17.650458, 59.856123], [17.650459, 59.856123], [17.65046, 59.856123], [17.65046, 59.856123], [17.650458, 59.856123], [17.650458, 59.856123], [17.650467, 59.856128], [17.650467, 59.856129], [17.650467, 59.856129], [17.650467, 59.856129], [17.650467, 59.856129], [17.650467, 59.856129], [17.650467, 59.856129], [17.650467, 59.856129], [17.650467, 59.856129], [17.650467, 59.856129], [17.650467, 59.856129], [17.650468, 59.856129], [17.650468, 59.856129], [17.650468, 59.856129], [17.650468, 59.856129], [17.650468, 59.856129], [17.650468, 59.856129], [17.650468, 59.856129], [17.650468, 59.856128], [17.650468, 59.856128], [17.650468, 59.856128], [17.650468, 59.856128], [17.650468, 59.856128], [17.650468, 59.856128], [17.650468, 59.856128], [17.650468, 59.856128], [17.650468, 59.856128], [17.650476, 59.856132], [17.650477, 59.856131], [17.650477, 59.856131], [17.650477, 59.856131], [17.650477, 59.856131], [17.650477, 59.856131], [17.650477, 59.856131], [17.650477, 59.856131], [17.650476, 59.856131], [17.650476, 59.856132], [17.650494, 59.85614], [17.650494, 59.85614], [17.650495, 59.856139], [17.650494, 59.856139], [17.650494, 59.856138], [17.650494, 59.856138], [17.650494, 59.856138], [17.650494, 59.856138], [17.650494, 59.856138], [17.650494, 59.856139], [17.650496, 59.85614], [17.650496, 59.85614], [17.650495, 59.856139], [17.650495, 59.856139], [17.650494, 59.85614], [17.65051, 59.856147], [17.650511, 59.856147], [17.650511, 59.856147], [17.650511, 59.856147], [17.65051, 59.856147], [17.65051, 59.856147], [17.650526, 59.856154], [17.650527, 59.856154], [17.650527, 59.856154], [17.650527, 59.856154], [17.650526, 59.856154], [17.650526, 59.856154], [17.650542, 59.856161], [17.650543, 59.856161], [17.650543, 59.856161], [17.650542, 59.85616], [17.650542, 59.85616], [17.650542, 59.85616], [17.650542, 59.85616], [17.650544, 59.856162], [17.650544, 59.856162], [17.650545, 59.856162], [17.650545, 59.856162], [17.650545, 59.856162], [17.650545, 59.856162], [17.650544, 59.856162], [17.650543, 59.856161], [17.650542, 59.856161], [17.650542, 59.856162], [17.65056, 59.85617], [17.650561, 59.856169], [17.650561, 59.856169], [17.650561, 59.856169], [17.650561, 59.856169], [17.65056, 59.85617], [17.65056, 59.85617], [17.65056, 59.85617], [17.650583, 59.85618], [17.650583, 59.85618], [17.650583, 59.856179], [17.650578, 59.856177], [17.650578, 59.856177], [17.650579, 59.856177], [17.650579, 59.856177], [17.650579, 59.856177], [17.650579, 59.856177], [17.650583, 59.856179], [17.650587, 59.856177], [17.650586, 59.856177], [17.650586, 59.856177], [17.650587, 59.856177], [17.650587, 59.856177], [17.650587, 59.856177], [17.650588, 59.856177], [17.650588, 59.856177], [17.650583, 59.856179], [17.650583, 59.85618], [17.650583, 59.85618], [17.650604, 59.856169], [17.650603, 59.856168], [17.650603, 59.856168], [17.650603, 59.856168], [17.650604, 59.856169], [17.65062, 59.856159], [17.650619, 59.856159], [17.650618, 59.85616], [17.650618, 59.85616], [17.650619, 59.856159], [17.650619, 59.856159], [17.650619, 59.856159], [17.650619, 59.856159], [17.65062, 59.856158], [17.65062, 59.856158], [17.650619, 59.856159], [17.650619, 59.856159], [17.65062, 59.856159], [17.650633, 59.856152], [17.650633, 59.856152], [17.650633, 59.856152], [17.650633, 59.856152], [17.650633, 59.856152], [17.650633, 59.856152], [17.650647, 59.856144], [17.650646, 59.856144], [17.650645, 59.856145], [17.650645, 59.856145], [17.650646, 59.856144], [17.650646, 59.856144], [17.650646, 59.856144], [17.650646, 59.856144], [17.650647, 59.856143], [17.650647, 59.856143], [17.650646, 59.856144], [17.650646, 59.856144], [17.650647, 59.856144], [17.650647, 59.856144], [17.650663, 59.856135], [17.650663, 59.856135], [17.650662, 59.856135], [17.650662, 59.856135], [17.650663, 59.856135], [17.650663, 59.856135], [17.650679, 59.856126], [17.650679, 59.856126], [17.650677, 59.856127], [17.650677, 59.856127], [17.650678, 59.856126], [17.650678, 59.856126], [17.650679, 59.856126], [17.650679, 59.856126], [17.65068, 59.856125], [17.65068, 59.856125], [17.650679, 59.856126], [17.650679, 59.856126], [17.650679, 59.856126], [17.650679, 59.856126], [17.650695, 59.856117], [17.650695, 59.856117], [17.650695, 59.856117], [17.650695, 59.856117], [17.650695, 59.856117], [17.650696, 59.856117], [17.650696, 59.856117], [17.650712, 59.856108], [17.650711, 59.856108], [17.65071, 59.856109], [17.65071, 59.856109], [17.650711, 59.856108], [17.650711, 59.856108], [17.650711, 59.856108], [17.650711, 59.856108], [17.650712, 59.856107], [17.650712, 59.856107], [17.650711, 59.856108], [17.650711, 59.856108], [17.650712, 59.856108], [17.650712, 59.856108], [17.650728, 59.856099], [17.650728, 59.856099], [17.650727, 59.856099], [17.650727, 59.856099], [17.650728, 59.856099], [17.650728, 59.856099], [17.650744, 59.85609], [17.650743, 59.85609], [17.650742, 59.85609], [17.650742, 59.85609], [17.650743, 59.85609], [17.650743, 59.85609], [17.650743, 59.85609], [17.650743, 59.85609], [17.650745, 59.856089], [17.650745, 59.856089], [17.650743, 59.85609], [17.650743, 59.85609], [17.650744, 59.85609], [17.650744, 59.85609], [17.65076, 59.856081], [17.65076, 59.856081], [17.65076, 59.856081], [17.65076, 59.856081], [17.65076, 59.856081], [17.65076, 59.856081], [17.65076, 59.856081], [17.650777, 59.856072], [17.650776, 59.856072], [17.650775, 59.856072], [17.650775, 59.856072], [17.650776, 59.856072], [17.650776, 59.856072], [17.650776, 59.856072], [17.650776, 59.856072], [17.650777, 59.856071], [17.650777, 59.856071], [17.650776, 59.856072], [17.650776, 59.856072], [17.650777, 59.856072], [17.650777, 59.856072], [17.650793, 59.856063], [17.650793, 59.856063], [17.650793, 59.856063], [17.650792, 59.856063], [17.650792, 59.856063], [17.650792, 59.856063], [17.650793, 59.856063], [17.650793, 59.856063], [17.650809, 59.856054], [17.650808, 59.856054], [17.650807, 59.856054], [17.650807, 59.856054], [17.650808, 59.856054], [17.650808, 59.856054], [17.650808, 59.856053], [17.650808, 59.856053], [17.65081, 59.856053], [17.65081, 59.856053], [17.650808, 59.856054], [17.650808, 59.856054], [17.650809, 59.856054], [17.650809, 59.856054], [17.650825, 59.856045], [17.650825, 59.856045], [17.650825, 59.856044], [17.650825, 59.856044], [17.650825, 59.856044], [17.650825, 59.856045], [17.650825, 59.856045], [17.650842, 59.856036], [17.650841, 59.856035], [17.65084, 59.856036], [17.65084, 59.856036], [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035], [17.650841, 59.856035], [17.650841, 59.856035], [17.650842, 59.856036], [17.650842, 59.856036], [17.650858, 59.856027], [17.650858, 59.856027], [17.650857, 59.856026], [17.650857, 59.856026], [17.650857, 59.856026], [17.650858, 59.856027], [17.650858, 59.856027], [17.650874, 59.856018], [17.650873, 59.856017], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650874, 59.856017], [17.650874, 59.856017], [17.650873, 59.856017], [17.650873, 59.856017], [17.650874, 59.856018], [17.650874, 59.856018], [17.650874, 59.856018], [17.65089, 59.856009], [17.650889, 59.856008], [17.650889, 59.856008], [17.65089, 59.856009], [17.65089, 59.856009], [17.65089, 59.856009], [17.650906, 59.856], [17.650906, 59.855999], [17.650905, 59.856], [17.650905, 59.856], [17.650906, 59.855999], [17.650906, 59.855999], [17.650906, 59.855999], [17.650906, 59.855999], [17.650907, 59.855999], [17.650907, 59.855999], [17.650906, 59.855999], [17.650906, 59.855999], [17.650906, 59.856], [17.650906, 59.856], [17.650906, 59.856], [17.650923, 59.855991], [17.650922, 59.85599], [17.650922, 59.85599], [17.650923, 59.85599], [17.650923, 59.85599], [17.650923, 59.85599], [17.650939, 59.855981], [17.650938, 59.855981], [17.650937, 59.855982], [17.650937, 59.855982], [17.650938, 59.855981], [17.650938, 59.855981], [17.650938, 59.855981], [17.650938, 59.855981], [17.650939, 59.85598], [17.650939, 59.85598], [17.650938, 59.855981], [17.650938, 59.855981], [17.650939, 59.855981], [17.650939, 59.855981], [17.650939, 59.855981], [17.650955, 59.855972], [17.650954, 59.855972], [17.650954, 59.855972], [17.650955, 59.855972], [17.650955, 59.855972], [17.650955, 59.855972], [17.650971, 59.855963], [17.650971, 59.855963], [17.650969, 59.855964], [17.650969, 59.855964], [17.650971, 59.855963], [17.650971, 59.855963], [17.650971, 59.855963], [17.650971, 59.855963], [17.650972, 59.855962], [17.650972, 59.855962], [17.650971, 59.855963], [17.650971, 59.855963], [17.650971, 59.855963], [17.650971, 59.855963], [17.650971, 59.855963], [17.650988, 59.855954], [17.650987, 59.855954], [17.650987, 59.855954], [17.650987, 59.855954], [17.650988, 59.855954], [17.650988, 59.855954], [17.650988, 59.855954], [17.651008, 59.855943], [17.651008, 59.855943], [17.651007, 59.855943], [17.651002, 59.855946], [17.651002, 59.855946], [17.651003, 59.855945], [17.651003, 59.855945], [17.651003, 59.855945], [17.651003, 59.855945], [17.651007, 59.855943], [17.651003, 59.855941], [17.651003, 59.855941], [17.651003, 59.855941], [17.651003, 59.855941], [17.651001, 59.855941], [17.651001, 59.855941], [17.651003, 59.855942], [17.651003, 59.855942], [17.651007, 59.855943], [17.651008, 59.855943], [17.651008, 59.855943], [17.651004, 59.855941], [17.651051, 59.855915], [17.650934, 59.855862], [17.650888, 59.855888], [17.650888, 59.855888], [17.650887, 59.855888], [17.650887, 59.855888], [17.650887, 59.855888], [17.650883, 59.855886], [17.650883, 59.855887], [17.650883, 59.855887], [17.650884, 59.855887], [17.650884, 59.855888], [17.650884, 59.855887], [17.650884, 59.855887], [17.650881, 59.855886], [17.650881, 59.855886], [17.650881, 59.855886], [17.650881, 59.855886], [17.650882, 59.855887], [17.650883, 59.855886], [17.650883, 59.855886], [17.650865, 59.855878], [17.650864, 59.855879], [17.650864, 59.855879], [17.650865, 59.855878], [17.650865, 59.855878], [17.650847, 59.85587], [17.650846, 59.855871], [17.650848, 59.855871], [17.650848, 59.855871], [17.650848, 59.855871], [17.650848, 59.855871], [17.650842, 59.855869], [17.650841, 59.85587], [17.650841, 59.85587], [17.650841, 59.855869], [17.650842, 59.855869], [17.650846, 59.855871], [17.650846, 59.855871], [17.650847, 59.85587], [17.650847, 59.85587], [17.650829, 59.855862], [17.650829, 59.855862], [17.650829, 59.855862], [17.650829, 59.855862], [17.650829, 59.855862], [17.650829, 59.855862], [17.650829, 59.855862], [17.650829, 59.855862], [17.650829, 59.855862], [17.650829, 59.855862], [17.650829, 59.855862], [17.650829, 59.855862], [17.650829, 59.855862], [17.650829, 59.855862], [17.650829, 59.855862], [17.650829, 59.855862], [17.650829, 59.855862], [17.650829, 59.855862], [17.650829, 59.855862], [17.650829, 59.855862], [17.650829, 59.855862], [17.650829, 59.855861], [17.650829, 59.855861], [17.650829, 59.855861], [17.650829, 59.855861], [17.650829, 59.855861], [17.650829, 59.855861], [17.650829, 59.855861], [17.650828, 59.855862], [17.650811, 59.855854], [17.65081, 59.855854], [17.650809, 59.855855], [17.650809, 59.855855], [17.650811, 59.855854], [17.650811, 59.855854], [17.650794, 59.855846], [17.650794, 59.855846], [17.650794, 59.855848], [17.650794, 59.855848], [17.650794, 59.855846], [17.650794, 59.855846], [17.650774, 59.855858], [17.650774, 59.855858], [17.650774, 59.855858], [17.650775, 59.855858], [17.650775, 59.855858], [17.650774, 59.855858], [17.650774, 59.855858], [17.650774, 59.855858], [17.650758, 59.855867], [17.650758, 59.855867], [17.650759, 59.855867], [17.650759, 59.855867], [17.650758, 59.855867], [17.650758, 59.855867], [17.650741, 59.855876], [17.650742, 59.855876], [17.650743, 59.855876], [17.650743, 59.855876], [17.650741, 59.855876], [17.650741, 59.855876], [17.650725, 59.855885], [17.650725, 59.855885], [17.650727, 59.855885], [17.650727, 59.855886], [17.650725, 59.855885], [17.650725, 59.855885], [17.650709, 59.855894], [17.650709, 59.855894], [17.650711, 59.855895], [17.650711, 59.855895], [17.650709, 59.855894], [17.650709, 59.855894], [17.650709, 59.855894], [17.650693, 59.855903], [17.650693, 59.855903], [17.650694, 59.855904], [17.650694, 59.855904], [17.650693, 59.855903], [17.650693, 59.855903], [17.650681, 59.855909], [17.650681, 59.855909], [17.650682, 59.855909], [17.650682, 59.855909], [17.650682, 59.855909], [17.650681, 59.855909], [17.650681, 59.855909], [17.650681, 59.855909], [17.650681, 59.855909], [17.650681, 59.855909], [17.650681, 59.855909], [17.650681, 59.855909], [17.650681, 59.855909], [17.650681, 59.855909], [17.650681, 59.855909], [17.650681, 59.855909], [17.65068, 59.855909], [17.65068, 59.855909], [17.65068, 59.855909], [17.65068, 59.855909], [17.65068, 59.855909], [17.65068, 59.855909], [17.65068, 59.855909], [17.65068, 59.855909], [17.65068, 59.855909], [17.650681, 59.855909], [17.650681, 59.855909], [17.650681, 59.85591], [17.650677, 59.855912], [17.650677, 59.855912], [17.650678, 59.855913], [17.650678, 59.855913], [17.650677, 59.855912], [17.650677, 59.855912], [17.650673, 59.855914], [17.650671, 59.855914], [17.650671, 59.855914], [17.650671, 59.855914], [17.650671, 59.855914], [17.650671, 59.855914], [17.650671, 59.855914], [17.650671, 59.855914], [17.650671, 59.855914], [17.650671, 59.855914], [17.650671, 59.855914], [17.650671, 59.855914], [17.650671, 59.855914], [17.650671, 59.855914], [17.650671, 59.855914], [17.650671, 59.855914], [17.650671, 59.855914], [17.650671, 59.855914], [17.650671, 59.855914], [17.650671, 59.855915], [17.650671, 59.855915], [17.650671, 59.855915], [17.650671, 59.855915], [17.650672, 59.855915], [17.650672, 59.855915], [17.650672, 59.855915], [17.650672, 59.855914], [17.650672, 59.855915], [17.65066, 59.855921], [17.65066, 59.855921], [17.650662, 59.855922], [17.650662, 59.855922], [17.65066, 59.855921], [17.65066, 59.855921], [17.650644, 59.85593], [17.650644, 59.85593], [17.650646, 59.855931], [17.650646, 59.855931], [17.650645, 59.85593], [17.650644, 59.85593], [17.650644, 59.85593], [17.650628, 59.855939], [17.650628, 59.855939], [17.65063, 59.85594], [17.650629, 59.85594], [17.650628, 59.855939], [17.650628, 59.855939], [17.650612, 59.855948], [17.650613, 59.855949], [17.650613, 59.855949], [17.650613, 59.855949], [17.650612, 59.855948], [17.650612, 59.855948], [17.650612, 59.855948], [17.650595, 59.855957], [17.650595, 59.855957], [17.650597, 59.855958], [17.650597, 59.855958], [17.650595, 59.855957], [17.650595, 59.855957], [17.650595, 59.855957], [17.650579, 59.855966], [17.650581, 59.855967], [17.650581, 59.855967], [17.650579, 59.855966], [17.650579, 59.855966], [17.650579, 59.855966], [17.650563, 59.855975], [17.650565, 59.855976], [17.650565, 59.855976], [17.650563, 59.855975], [17.650563, 59.855975], [17.650563, 59.855975], [17.650547, 59.855984], [17.650548, 59.855985], [17.650548, 59.855985], [17.650547, 59.855984], [17.650547, 59.855984], [17.650547, 59.855984], [17.650546, 59.855985], [17.650546, 59.855985], [17.650546, 59.855984], [17.650546, 59.855984], [17.650546, 59.855984], [17.650546, 59.855984], [17.650546, 59.855984], [17.650546, 59.855984], [17.650546, 59.855984], [17.650546, 59.855984], [17.650545, 59.855984], [17.650545, 59.855984], [17.650545, 59.855984], [17.650545, 59.855984], [17.650545, 59.855984], [17.650545, 59.855984], [17.650545, 59.855984], [17.650545, 59.855984], [17.650545, 59.855984], [17.650545, 59.855984], [17.650545, 59.855984], [17.650545, 59.855984], [17.650545, 59.855984], [17.650545, 59.855984], [17.650545, 59.855984], [17.650545, 59.855984], [17.650545, 59.855984], [17.650545, 59.855984], [17.650545, 59.855984], [17.650545, 59.855984], [17.650545, 59.855984], [17.650545, 59.855985], [17.650531, 59.855993], [17.650532, 59.855994], [17.650532, 59.855994], [17.650531, 59.855994], [17.650531, 59.855993], [17.65053, 59.855993], [17.65053, 59.855993], [17.650514, 59.856002], [17.650514, 59.856002], [17.650516, 59.856003], [17.650516, 59.856003], [17.650514, 59.856003], [17.650514, 59.856003], [17.650514, 59.856002], [17.650498, 59.856012], [17.650499, 59.856012], [17.6505, 59.856012], [17.6505, 59.856012], [17.650498, 59.856012], [17.650498, 59.856012], [17.650498, 59.856012], [17.650482, 59.856021], [17.650482, 59.856021], [17.650483, 59.856021], [17.650483, 59.856021], [17.650482, 59.856021], [17.650482, 59.856021], [17.650482, 59.856021], [17.650466, 59.85603], [17.650466, 59.85603], [17.650467, 59.85603], [17.650467, 59.85603], [17.650466, 59.85603], [17.650466, 59.85603], [17.650466, 59.85603], [17.650449, 59.856039], [17.650449, 59.856039], [17.650451, 59.856039], [17.650451, 59.856039], [17.650449, 59.856039], [17.650449, 59.856039], [17.650449, 59.856039], [17.650433, 59.856048], [17.650433, 59.856048], [17.650435, 59.856049], [17.650435, 59.856049], [17.650433, 59.856048], [17.650433, 59.856048], [17.650433, 59.856048], [17.65042, 59.856055] ], [ [17.650642, 59.856143], [17.650642, 59.856143], [17.650645, 59.856142], [17.650645, 59.856142], [17.650645, 59.856142], [17.650645, 59.856142], [17.650642, 59.856143] ], [ [17.650677, 59.856124], [17.650677, 59.856124], [17.650675, 59.856125], [17.650675, 59.856125], [17.650677, 59.856124] ], [ [17.650707, 59.856107], [17.650707, 59.856107], [17.650707, 59.856107], [17.650707, 59.856107], [17.650707, 59.856107], [17.650707, 59.856107], [17.650707, 59.856107] ], [ [17.650708, 59.856107], [17.650709, 59.856106], [17.650709, 59.856106], [17.650708, 59.856107], [17.650708, 59.856107] ], [ [17.650683, 59.856095], [17.650682, 59.856095], [17.650705, 59.856106], [17.650706, 59.856105], [17.650708, 59.856106], [17.650708, 59.856107], [17.650683, 59.856095] ], [ [17.650681, 59.856095], [17.650675, 59.856099], [17.650675, 59.856099], [17.650675, 59.856099], [17.650673, 59.8561], [17.650673, 59.8561], [17.650654, 59.856111], [17.650649, 59.856113], [17.650649, 59.856113], [17.650641, 59.85611], [17.650641, 59.856109], [17.650639, 59.856109], [17.650639, 59.856109], [17.650649, 59.856113], [17.650683, 59.856095], [17.650683, 59.856095], [17.650682, 59.856095], [17.650681, 59.856095] ], [ [17.650602, 59.856093], [17.650588, 59.856101], [17.650603, 59.856092], [17.650602, 59.856093] ], [ [17.650576, 59.856095], [17.650578, 59.856094], [17.65058, 59.856093], [17.65058, 59.856093], [17.650576, 59.856095], [17.650576, 59.856095] ], [ [17.650588, 59.856088], [17.65059, 59.856087], [17.65059, 59.856087], [17.650588, 59.856088], [17.650587, 59.856088], [17.650592, 59.856085], [17.650577, 59.856078], [17.650588, 59.856072], [17.650578, 59.856068], [17.650597, 59.856057], [17.650597, 59.856057], [17.650588, 59.856053], [17.65059, 59.856051], [17.650588, 59.856051], [17.650603, 59.856042], [17.650617, 59.856034], [17.650618, 59.856035], [17.650604, 59.856042], [17.650605, 59.856043], [17.650604, 59.856043], [17.650604, 59.856042], [17.650604, 59.856043], [17.650604, 59.856043], [17.650593, 59.856049], [17.650593, 59.856049], [17.650593, 59.856049], [17.650592, 59.856049], [17.650609, 59.856057], [17.650605, 59.856059], [17.650606, 59.85606], [17.65061, 59.856057], [17.650612, 59.856058], [17.650618, 59.856061], [17.650614, 59.856063], [17.650615, 59.856064], [17.650619, 59.856061], [17.650628, 59.856065], [17.650628, 59.856065], [17.650623, 59.856068], [17.650624, 59.856068], [17.650629, 59.856066], [17.650636, 59.856062], [17.65064, 59.856059], [17.650655, 59.856051], [17.650655, 59.856051], [17.650588, 59.856088], [17.650588, 59.856088] ], [ [17.650657, 59.85605], [17.650657, 59.85605], [17.650673, 59.856041], [17.650673, 59.856041], [17.650673, 59.856041], [17.650657, 59.85605], [17.650657, 59.85605] ], [ [17.650665, 59.856038], [17.650664, 59.856038], [17.650667, 59.856039], [17.650665, 59.856038] ], [ [17.650656, 59.856034], [17.650653, 59.856032], [17.650652, 59.856032], [17.650657, 59.856034], [17.650656, 59.856034] ], [ [17.650636, 59.856025], [17.650636, 59.856025], [17.65064, 59.856026], [17.650636, 59.856025] ], [ [17.650641, 59.856021], [17.650639, 59.856022], [17.65065, 59.856016], [17.650643, 59.85602], [17.650641, 59.856021] ], [ [17.650628, 59.856022], [17.65062, 59.856019], [17.650619, 59.856018], [17.650634, 59.856025], [17.650628, 59.856022] ], [ [17.650618, 59.856018], [17.650595, 59.856007], [17.650591, 59.856006], [17.650619, 59.856018], [17.650618, 59.856018] ], [ [17.650548, 59.856057], [17.650617, 59.856018], [17.650618, 59.856018], [17.650548, 59.856057] ], [ [17.650566, 59.855996], [17.650594, 59.856008], [17.650617, 59.856018], [17.650566, 59.855996] ], [ [17.65056, 59.855981], [17.65057, 59.855985], [17.650576, 59.855988], [17.65058, 59.85599], [17.650592, 59.855995], [17.650614, 59.856005], [17.650621, 59.856008], [17.650624, 59.85601], [17.65056, 59.855981], [17.65056, 59.855981] ], [ [17.65063, 59.856006], [17.650632, 59.856007], [17.65063, 59.856006], [17.65063, 59.856006] ], [ [17.650675, 59.855983], [17.650659, 59.855993], [17.650659, 59.855993], [17.650658, 59.855993], [17.650654, 59.855992], [17.650653, 59.855991], [17.650639, 59.855985], [17.650656, 59.855976], [17.650696, 59.855953], [17.650713, 59.855944], [17.650732, 59.855953], [17.650726, 59.855956], [17.650719, 59.855959], [17.650714, 59.855961], [17.650709, 59.855965], [17.650707, 59.855964], [17.650707, 59.855964], [17.650697, 59.85596], [17.650689, 59.855964], [17.650699, 59.855969], [17.650699, 59.855969], [17.650699, 59.855969], [17.650699, 59.855969], [17.6507, 59.855969], [17.6507, 59.855969], [17.6507, 59.855969], [17.650689, 59.855975], [17.650688, 59.855975], [17.650688, 59.855975], [17.650678, 59.85597], [17.650678, 59.85597], [17.650678, 59.85597], [17.650674, 59.855973], [17.65067, 59.855975], [17.65067, 59.855975], [17.65067, 59.855975], [17.650681, 59.85598], [17.650681, 59.85598], [17.650675, 59.855983], [17.650675, 59.855983], [17.650675, 59.855983] ], [ [17.650714, 59.855926], [17.650714, 59.855926], [17.650744, 59.855939], [17.650744, 59.855939], [17.650751, 59.855942], [17.650751, 59.855942], [17.650714, 59.855926] ], [ [17.650714, 59.855926], [17.650683, 59.855912], [17.650684, 59.855912], [17.650683, 59.855912], [17.650714, 59.855926], [17.650714, 59.855926] ], [ [17.650545, 59.856161], [17.650545, 59.856161], [17.650545, 59.856161], [17.650545, 59.856161], [17.650545, 59.856161] ], [ [17.65058, 59.856175], [17.650583, 59.856177], [17.650585, 59.856175], [17.650585, 59.856175], [17.650583, 59.856177], [17.65058, 59.856175], [17.65058, 59.856176], [17.65058, 59.856176], [17.65058, 59.856175] ], [ [17.650499, 59.856139], [17.650498, 59.856139], [17.650498, 59.856139], [17.650499, 59.856139], [17.650496, 59.856137], [17.650496, 59.856137], [17.650481, 59.85613], [17.650481, 59.85613], [17.650496, 59.856137], [17.650496, 59.856137], [17.650481, 59.85613], [17.650481, 59.85613], [17.650497, 59.856138], [17.650518, 59.856126], [17.650499, 59.856137], [17.6505, 59.856137], [17.650531, 59.85612], [17.65053, 59.85612], [17.65053, 59.856119], [17.650529, 59.856119], [17.65053, 59.856118], [17.650521, 59.856114], [17.650521, 59.856114], [17.650531, 59.856109], [17.650541, 59.856113], [17.650542, 59.856113], [17.650532, 59.856119], [17.650533, 59.856119], [17.650498, 59.856138], [17.650499, 59.856139], [17.650499, 59.856139], [17.650499, 59.856139] ], [ [17.650531, 59.856108], [17.65053, 59.856109], [17.65052, 59.856114], [17.65052, 59.856114], [17.650531, 59.856108], [17.650542, 59.856113], [17.650531, 59.856108] ], [ [17.650557, 59.856105], [17.650557, 59.856105], [17.650547, 59.85611], [17.650542, 59.856113], [17.650543, 59.856114], [17.650542, 59.856113], [17.650557, 59.856105] ], [ [17.650544, 59.856113], [17.650544, 59.856113], [17.650541, 59.856114], [17.650541, 59.856114], [17.650543, 59.856114], [17.650544, 59.856113] ], [ [17.650575, 59.856094], [17.650559, 59.856103], [17.650559, 59.856103], [17.650575, 59.856094], [17.650575, 59.856094] ], [ [17.650577, 59.856093], [17.650576, 59.856094], [17.650576, 59.856094], [17.650577, 59.856093], [17.650577, 59.856093] ], [ [17.65058, 59.856093], [17.650578, 59.856094], [17.650577, 59.856093], [17.650577, 59.856093], [17.650579, 59.856092], [17.65058, 59.856093] ], [ [17.650597, 59.856057], [17.650578, 59.856068], [17.650578, 59.856068], [17.650597, 59.856057] ], [ [17.650627, 59.856023], [17.650633, 59.856025], [17.650627, 59.856023], [17.650627, 59.856023] ], [ [17.650598, 59.85599], [17.650598, 59.85599], [17.650597, 59.855989], [17.650597, 59.855989], [17.650595, 59.855988], [17.650595, 59.855988], [17.650594, 59.855988], [17.650594, 59.855988], [17.650594, 59.855988], [17.65059, 59.855986], [17.65059, 59.855986], [17.650589, 59.855985], [17.65059, 59.855985], [17.650589, 59.855985], [17.650598, 59.85599], [17.650598, 59.85599], [17.650598, 59.85599], [17.650598, 59.85599], [17.650598, 59.85599] ], [ [17.65059, 59.855985], [17.65059, 59.855985], [17.6506, 59.855989], [17.65059, 59.855985], [17.65059, 59.855985] ], [ [17.650598, 59.855959], [17.650598, 59.855959], [17.650598, 59.855959], [17.650598, 59.855959] ], [ [17.650461, 59.856122], [17.65046, 59.856121], [17.650463, 59.856122], [17.650461, 59.856122] ], [ [17.65046, 59.856121], [17.650457, 59.856119], [17.650455, 59.856119], [17.650455, 59.856119], [17.650449, 59.856116], [17.650449, 59.856116], [17.650447, 59.856115], [17.650435, 59.85611], [17.650429, 59.856107], [17.650427, 59.856106], [17.650427, 59.856106], [17.65046, 59.856121], [17.65046, 59.856121], [17.65046, 59.856121] ], [ [17.650454, 59.856089], [17.650446, 59.856093], [17.650447, 59.856093], [17.650454, 59.856089], [17.650454, 59.856089] ], [ [17.65046, 59.856088], [17.65046, 59.856087], [17.65046, 59.856088], [17.65046, 59.856088] ], [ [17.650456, 59.856087], [17.650457, 59.856086], [17.650412, 59.856066], [17.650413, 59.856065], [17.650458, 59.856086], [17.650458, 59.856086], [17.650456, 59.856087], [17.650456, 59.856087] ], [ [17.650534, 59.855995], [17.650535, 59.855994], [17.650534, 59.855995], [17.650533, 59.855995], [17.650533, 59.855995], [17.650534, 59.855995] ], [ [17.650535, 59.855994], [17.650535, 59.855994], [17.650535, 59.855994], [17.650535, 59.855994] ], [ [17.650532, 59.855994], [17.650532, 59.855994], [17.650532, 59.855994], [17.650532, 59.855994], [17.650532, 59.855994] ], [ [17.6505, 59.856012], [17.6505, 59.856012], [17.6505, 59.856012], [17.6505, 59.856012], [17.6505, 59.856012] ], [ [17.650424, 59.856106], [17.650424, 59.856106], [17.650424, 59.856106], [17.650424, 59.856106], [17.650424, 59.856106] ], [ [17.650408, 59.856065], [17.65041, 59.856064], [17.65041, 59.856064], [17.650408, 59.856065] ], [ [17.650409, 59.856065], [17.650409, 59.856065], [17.650408, 59.856065], [17.650409, 59.856065] ], [ [17.650435, 59.856049], [17.650435, 59.856049], [17.650435, 59.856049], [17.650435, 59.856049], [17.650435, 59.856049] ], [ [17.650376, 59.856083], [17.650378, 59.856082], [17.650376, 59.856083], [17.650376, 59.856083] ], [ [17.650378, 59.856082], [17.650378, 59.856082], [17.650378, 59.856082], [17.650378, 59.856082] ], [ [17.650433, 59.856092], [17.650417, 59.856101], [17.650417, 59.856101], [17.650434, 59.856092], [17.650433, 59.856092] ], [ [17.650379, 59.856084], [17.650379, 59.856084], [17.650379, 59.856084], [17.650379, 59.856084] ], [ [17.65044, 59.856095], [17.650441, 59.856095], [17.650424, 59.856105], [17.650418, 59.856102], [17.650434, 59.856093], [17.65044, 59.856095] ], [ [17.650424, 59.856105], [17.650424, 59.856105], [17.650426, 59.856104], [17.650424, 59.856105] ], [ [17.650453, 59.856121], [17.650453, 59.856121], [17.650454, 59.856121], [17.650453, 59.856121] ], [ [17.650467, 59.856031], [17.650468, 59.856031], [17.650468, 59.856031], [17.650467, 59.856031], [17.650467, 59.856031] ], [ [17.650472, 59.856126], [17.650463, 59.856122], [17.650463, 59.856122], [17.650472, 59.856126], [17.650472, 59.856126], [17.650463, 59.856122], [17.650463, 59.856122], [17.650472, 59.856126], [17.650472, 59.856126] ], [ [17.650525, 59.856117], [17.650519, 59.856115], [17.650519, 59.856115], [17.65052, 59.856115], [17.650525, 59.856117] ], [ [17.650468, 59.856128], [17.650468, 59.856128], [17.650468, 59.856128], [17.650468, 59.856128] ], [ [17.650546, 59.855985], [17.650546, 59.855985], [17.650546, 59.855985], [17.650546, 59.855985] ], [ [17.650548, 59.856058], [17.650609, 59.856024], [17.650479, 59.856096], [17.65054, 59.856062], [17.65054, 59.856062], [17.650548, 59.856058] ], [ [17.650547, 59.85616], [17.650547, 59.85616], [17.650544, 59.856159], [17.650544, 59.856159], [17.650544, 59.856159], [17.650544, 59.856159], [17.650547, 59.85616] ], [ [17.650567, 59.855976], [17.650568, 59.855976], [17.650568, 59.855976], [17.650567, 59.855976] ], [ [17.650566, 59.855978], [17.650566, 59.855978], [17.650565, 59.855977], [17.650566, 59.855978] ], [ [17.650588, 59.855987], [17.650585, 59.855988], [17.650588, 59.855987], [17.650588, 59.855987] ], [ [17.650541, 59.856115], [17.650534, 59.856118], [17.650541, 59.856115], [17.650541, 59.856115] ], [ [17.650547, 59.856111], [17.650546, 59.856112], [17.650546, 59.856112], [17.650548, 59.856111], [17.650558, 59.856105], [17.650558, 59.856105], [17.650548, 59.85611], [17.650548, 59.85611], [17.650547, 59.856111] ], [ [17.65063, 59.855991], [17.650633, 59.855992], [17.650643, 59.855997], [17.65063, 59.855991] ], [ [17.65061, 59.855953], [17.650611, 59.855952], [17.65062, 59.855947], [17.65062, 59.855947], [17.65063, 59.855941], [17.65063, 59.855941], [17.6506, 59.855958], [17.6506, 59.855958], [17.650601, 59.855958], [17.65061, 59.855953] ], [ [17.650653, 59.855929], [17.650653, 59.855929], [17.650663, 59.855923], [17.650663, 59.855923], [17.650633, 59.85594], [17.650633, 59.85594], [17.650636, 59.855939], [17.650638, 59.855937], [17.650653, 59.855929] ], [ [17.650644, 59.855998], [17.650648, 59.855995], [17.650652, 59.855997], [17.65065, 59.855998], [17.650649, 59.855999], [17.650642, 59.856003], [17.650637, 59.856007], [17.650635, 59.856008], [17.650631, 59.856006], [17.650638, 59.856002], [17.650644, 59.855998] ], [ [17.650665, 59.855922], [17.650663, 59.855923], [17.650663, 59.855923], [17.650665, 59.855922], [17.650665, 59.855922] ], [ [17.650672, 59.855914], [17.650672, 59.855914], [17.650672, 59.855914], [17.650672, 59.855914] ], [ [17.650648, 59.856046], [17.650655, 59.856049], [17.650654, 59.85605], [17.65062, 59.856034], [17.650621, 59.856034], [17.650637, 59.856041], [17.650648, 59.856046] ], [ [17.650618, 59.856157], [17.650618, 59.856157], [17.650615, 59.856159], [17.650615, 59.856159], [17.650618, 59.856157] ], [ [17.650841, 59.856034], [17.650841, 59.856034], [17.650841, 59.856034], [17.650841, 59.856034], [17.650841, 59.856034] ], [ [17.650841, 59.856034], [17.650841, 59.856034], [17.650841, 59.856034], [17.650841, 59.856034] ], [ [17.650841, 59.856034], [17.650841, 59.856034], [17.650841, 59.856034], [17.650841, 59.856034] ], [ [17.650841, 59.856034], [17.650841, 59.856034], [17.650841, 59.856034], [17.650841, 59.856034], [17.650841, 59.856034] ], [ [17.650841, 59.856034], [17.650841, 59.856034], [17.650841, 59.856034], [17.650841, 59.856034] ], [ [17.650841, 59.856034], [17.650841, 59.856034], [17.650841, 59.856034], [17.650841, 59.856034] ], [ [17.650841, 59.856034], [17.650841, 59.856034], [17.650841, 59.856034], [17.650841, 59.856034] ], [ [17.650806, 59.856053], [17.650806, 59.856053], [17.650805, 59.856053], [17.650805, 59.856053], [17.650807, 59.856052], [17.650807, 59.856052], [17.650805, 59.856053], [17.650806, 59.856053] ], [ [17.650807, 59.856052], [17.650807, 59.856052], [17.650807, 59.856052], [17.650807, 59.856052] ], [ [17.650827, 59.85603], [17.650835, 59.856033], [17.650836, 59.856033], [17.650839, 59.856034], [17.650837, 59.856035], [17.650837, 59.856035], [17.650838, 59.856034], [17.650827, 59.85603] ], [ [17.650801, 59.856017], [17.650733, 59.855987], [17.650733, 59.855987], [17.650801, 59.856017], [17.650801, 59.856017], [17.650803, 59.856018], [17.650802, 59.856018], [17.6508, 59.856018], [17.650801, 59.856017] ], [ [17.650867, 59.856015], [17.650867, 59.856015], [17.650867, 59.856015], [17.65087, 59.856017], [17.650872, 59.856015], [17.650872, 59.856015], [17.650872, 59.856015], [17.650872, 59.856015], [17.65087, 59.856017], [17.65087, 59.856017], [17.650869, 59.856017], [17.650869, 59.856017], [17.650869, 59.856017], [17.650869, 59.856017], [17.650869, 59.856017], [17.650847, 59.856007], [17.650847, 59.856007], [17.650867, 59.856015] ], [ [17.650809, 59.855965], [17.650815, 59.855968], [17.650809, 59.855965], [17.650809, 59.855965], [17.650809, 59.855965] ], [ [17.650896, 59.855915], [17.650916, 59.855904], [17.650918, 59.855905], [17.650918, 59.855905], [17.650918, 59.855905], [17.650918, 59.855905], [17.650918, 59.855905], [17.650918, 59.855905], [17.650918, 59.855905], [17.650916, 59.855904], [17.650896, 59.855916], [17.650896, 59.855916], [17.650896, 59.855915] ], [ [17.65086, 59.8559], [17.650861, 59.8559], [17.650879, 59.85589], [17.650877, 59.855889], [17.650876, 59.855889], [17.650877, 59.855889], [17.650877, 59.855889], [17.650878, 59.855888], [17.650879, 59.855888], [17.650879, 59.855888], [17.650879, 59.855888], [17.650879, 59.855888], [17.650879, 59.855888], [17.650879, 59.855888], [17.650879, 59.855888], [17.650879, 59.855888], [17.650879, 59.855888], [17.650881, 59.855889], [17.650861, 59.8559], [17.650861, 59.8559], [17.650861, 59.8559], [17.650861, 59.8559], [17.650861, 59.8559], [17.650861, 59.8559], [17.65086, 59.8559], [17.65086, 59.8559] ], [ [17.650848, 59.855906], [17.650848, 59.855907], [17.650857, 59.855902], [17.650857, 59.855902], [17.650848, 59.855907], [17.650848, 59.855906] ], [ [17.650844, 59.855909], [17.650844, 59.855909], [17.650845, 59.855908], [17.650846, 59.855908], [17.650846, 59.855908], [17.650845, 59.855908], [17.65083, 59.855916], [17.650831, 59.855915], [17.650822, 59.855911], [17.650837, 59.855903], [17.650845, 59.855907], [17.650844, 59.855907], [17.650846, 59.855908], [17.650842, 59.85591], [17.650844, 59.855909] ], [ [17.650817, 59.85591], [17.650819, 59.855911], [17.65082, 59.855911], [17.65083, 59.855916], [17.650817, 59.85591] ], [ [17.650811, 59.855891], [17.650811, 59.855891], [17.65081, 59.855892], [17.650813, 59.855891], [17.65081, 59.85589], [17.650812, 59.85589], [17.650812, 59.85589], [17.650813, 59.855891], [17.650812, 59.855891], [17.650846, 59.855906], [17.650845, 59.855907], [17.650811, 59.855891], [17.650811, 59.855891] ], [ [17.650846, 59.855906], [17.650847, 59.855906], [17.650846, 59.855906], [17.650846, 59.855906], [17.650846, 59.855906] ], [ [17.650813, 59.855891], [17.650813, 59.855891], [17.650813, 59.855891], [17.650847, 59.855906], [17.650846, 59.855906], [17.650813, 59.855891] ], [ [17.650845, 59.855873], [17.650845, 59.855873], [17.650843, 59.855874], [17.65084, 59.855873], [17.650842, 59.855871], [17.650842, 59.855871], [17.650844, 59.855871], [17.650843, 59.855871], [17.650845, 59.855872], [17.650845, 59.855872], [17.650845, 59.855873], [17.650845, 59.855873] ], [ [17.65074, 59.856089], [17.65074, 59.856089], [17.65074, 59.856089], [17.65074, 59.856089], [17.65074, 59.856089] ], [ [17.650741, 59.856088], [17.650741, 59.856088], [17.650741, 59.856088], [17.65074, 59.856089], [17.65074, 59.856089], [17.650741, 59.856088], [17.650741, 59.856088] ], [ [17.650739, 59.856087], [17.650741, 59.856088], [17.65074, 59.856088], [17.65074, 59.856088], [17.65074, 59.856089], [17.650738, 59.856088], [17.650739, 59.856087] ], [ [17.650715, 59.856077], [17.650714, 59.856077], [17.650731, 59.856085], [17.650715, 59.856077], [17.650714, 59.856077], [17.650715, 59.856077], [17.650715, 59.856077] ], [ [17.650756, 59.856054], [17.650747, 59.856059], [17.650745, 59.85606], [17.650739, 59.856063], [17.650739, 59.856063], [17.650756, 59.856054], [17.650756, 59.856054], [17.650756, 59.856054] ], [ [17.650774, 59.856044], [17.650774, 59.856044], [17.650779, 59.856041], [17.650779, 59.856041], [17.650774, 59.856044] ], [ [17.65077, 59.856036], [17.650769, 59.856036], [17.65077, 59.856037], [17.65077, 59.856037], [17.650771, 59.856037], [17.650773, 59.856038], [17.650768, 59.856036], [17.650769, 59.856035], [17.65077, 59.856036] ], [ [17.650841, 59.855911], [17.650827, 59.855919], [17.650841, 59.855911], [17.650841, 59.855911] ], [ [17.650814, 59.855909], [17.650806, 59.855905], [17.650814, 59.855909], [17.650814, 59.855909] ], [ [17.650784, 59.855906], [17.650784, 59.855906], [17.650784, 59.855906], [17.650794, 59.85591], [17.650784, 59.855906], [17.650784, 59.855906] ], [ [17.6508, 59.855913], [17.6508, 59.855913], [17.65081, 59.855917], [17.65081, 59.855917], [17.6508, 59.855913] ], [ [17.650783, 59.855943], [17.650784, 59.855943], [17.650808, 59.855929], [17.650773, 59.855949], [17.650779, 59.855946], [17.650781, 59.855944], [17.650781, 59.855944], [17.65078, 59.855945], [17.650784, 59.855942], [17.650768, 59.855935], [17.650791, 59.855923], [17.650791, 59.855923], [17.650799, 59.855919], [17.65079, 59.855915], [17.650759, 59.855932], [17.650757, 59.855931], [17.650756, 59.855932], [17.650746, 59.855928], [17.650748, 59.855927], [17.650748, 59.855927], [17.650762, 59.855919], [17.650772, 59.855923], [17.650773, 59.855923], [17.650789, 59.855914], [17.650777, 59.855909], [17.650784, 59.855905], [17.650786, 59.855905], [17.650793, 59.855901], [17.650792, 59.8559], [17.650785, 59.855904], [17.650794, 59.855899], [17.650794, 59.855899], [17.650794, 59.855899], [17.650794, 59.855899], [17.650808, 59.855891], [17.650807, 59.855891], [17.650792, 59.855884], [17.650809, 59.855892], [17.65081, 59.855892], [17.650809, 59.855892], [17.650796, 59.855899], [17.650795, 59.8559], [17.650795, 59.8559], [17.650784, 59.855906], [17.650784, 59.855906], [17.650784, 59.855906], [17.650784, 59.855906], [17.650784, 59.855906], [17.650784, 59.855906], [17.65078, 59.855908], [17.65078, 59.855908], [17.650784, 59.855906], [17.650798, 59.855913], [17.6508, 59.855913], [17.650809, 59.855918], [17.65081, 59.855918], [17.650819, 59.855922], [17.650814, 59.855924], [17.650815, 59.855925], [17.650816, 59.855925], [17.650813, 59.855926], [17.650813, 59.855926], [17.650783, 59.855943] ], [ [17.650763, 59.855918], [17.650762, 59.855918], [17.650773, 59.855923], [17.650763, 59.855918] ], [ [17.650747, 59.855926], [17.650747, 59.855926], [17.650762, 59.855918], [17.650747, 59.855926] ], [ [17.650796, 59.8559], [17.650796, 59.8559], [17.650796, 59.855899], [17.650796, 59.8559] ], [ [17.650821, 59.855922], [17.650821, 59.855922], [17.650815, 59.855925], [17.650821, 59.855922] ], [ [17.650771, 59.85595], [17.650769, 59.855951], [17.650771, 59.85595], [17.650771, 59.85595] ], [ [17.650771, 59.85595], [17.650771, 59.85595], [17.650771, 59.85595], [17.650769, 59.855951], [17.650769, 59.855951], [17.650771, 59.85595] ], [ [17.650752, 59.855943], [17.650741, 59.855949], [17.650741, 59.855949], [17.650743, 59.855948], [17.650752, 59.855943] ], [ [17.650709, 59.855965], [17.650709, 59.855965], [17.650708, 59.855965], [17.650709, 59.855965] ], [ [17.650724, 59.855982], [17.650733, 59.855986], [17.650733, 59.855986], [17.650724, 59.855982] ], [ [17.650733, 59.855952], [17.650737, 59.85595], [17.650737, 59.85595], [17.650724, 59.855957], [17.650726, 59.855956], [17.650732, 59.855953], [17.650733, 59.855952] ], [ [17.650762, 59.855901], [17.650761, 59.855902], [17.650761, 59.855902], [17.650729, 59.85592], [17.650729, 59.85592], [17.650778, 59.855892], [17.650782, 59.855894], [17.650788, 59.855897], [17.650789, 59.855897], [17.650778, 59.855892], [17.650762, 59.855901], [17.650762, 59.855901] ], [ [17.650795, 59.855852], [17.650824, 59.855865], [17.650821, 59.855866], [17.650819, 59.855868], [17.650819, 59.855868], [17.650814, 59.85587], [17.650793, 59.855882], [17.650777, 59.855891], [17.650729, 59.855918], [17.6507, 59.855905], [17.650795, 59.855852] ], [ [17.650795, 59.855852], [17.650795, 59.855852], [17.650795, 59.855852], [17.650795, 59.855852] ], [ [17.650795, 59.855852], [17.6507, 59.855905], [17.650698, 59.855904], [17.650708, 59.855898], [17.650716, 59.855894], [17.650716, 59.855894], [17.650728, 59.855887], [17.65073, 59.855888], [17.65073, 59.855888], [17.650732, 59.855887], [17.650732, 59.855887], [17.65073, 59.855886], [17.650732, 59.855885], [17.650736, 59.855882], [17.650752, 59.855874], [17.650754, 59.855873], [17.650755, 59.855872], [17.650756, 59.855871], [17.650756, 59.855871], [17.650761, 59.855869], [17.650762, 59.85587], [17.650762, 59.85587], [17.650761, 59.855869], [17.650762, 59.855868], [17.650764, 59.855869], [17.650764, 59.855869], [17.650762, 59.855868], [17.650763, 59.855867], [17.650763, 59.855867], [17.650763, 59.855868], [17.65077, 59.855864], [17.650776, 59.85586], [17.650777, 59.85586], [17.650777, 59.85586], [17.65078, 59.855858], [17.650788, 59.855854], [17.650793, 59.855851], [17.650795, 59.855852], [17.650795, 59.855852], [17.650796, 59.855851], [17.650825, 59.855864], [17.650824, 59.855865], [17.650795, 59.855852], [17.650795, 59.855852] ], [ [17.65073, 59.855888], [17.650728, 59.855887], [17.65073, 59.855886], [17.650732, 59.855887], [17.65073, 59.855888], [17.65073, 59.855888] ], [ [17.650795, 59.855852], [17.650793, 59.855851], [17.650794, 59.85585], [17.650794, 59.85585], [17.650796, 59.855851], [17.650796, 59.855851], [17.650795, 59.855852], [17.650795, 59.855852] ], [ [17.650681, 59.855909], [17.650681, 59.855909], [17.650681, 59.855909], [17.650681, 59.855909] ], [ [17.650726, 59.855919], [17.650727, 59.85592], [17.650704, 59.855909], [17.650726, 59.855919] ], [ [17.650697, 59.855904], [17.650697, 59.855904], [17.650699, 59.855905], [17.650698, 59.855906], [17.650696, 59.855905], [17.650697, 59.855904], [17.650697, 59.855904] ], [ [17.650745, 59.85594], [17.650744, 59.855939], [17.650745, 59.855939], [17.650745, 59.855938], [17.650747, 59.855939], [17.650745, 59.85594] ], [ [17.650714, 59.855925], [17.650744, 59.855939], [17.650745, 59.855939], [17.650714, 59.855925] ], [ [17.650745, 59.855938], [17.650745, 59.855938], [17.650744, 59.855939], [17.650745, 59.855938] ], [ [17.650728, 59.85592], [17.650728, 59.85592], [17.650728, 59.85592], [17.650728, 59.85592], [17.650728, 59.85592] ], [ [17.650755, 59.855933], [17.650756, 59.855932], [17.650757, 59.855933], [17.650755, 59.855934], [17.650754, 59.855934], [17.650753, 59.855934], [17.650755, 59.855933] ], [ [17.650745, 59.855928], [17.650746, 59.855928], [17.650745, 59.855928], [17.650745, 59.855928] ], [ [17.650755, 59.856055], [17.650756, 59.856054], [17.650756, 59.856054], [17.650756, 59.856054], [17.650755, 59.856055] ], [ [17.65078, 59.856041], [17.65078, 59.856041], [17.65078, 59.856041], [17.65078, 59.856041] ], [ [17.65078, 59.856041], [17.65078, 59.856041], [17.650781, 59.856041], [17.65078, 59.856041] ], [ [17.650771, 59.856036], [17.650781, 59.856041], [17.650781, 59.856041], [17.650781, 59.856041], [17.650771, 59.856036] ], [ [17.65074, 59.856064], [17.650743, 59.856062], [17.65074, 59.856064], [17.65074, 59.856064] ], [ [17.650826, 59.855865], [17.650826, 59.855865], [17.650826, 59.855865], [17.650826, 59.855865] ], [ [17.650796, 59.855883], [17.650796, 59.855883], [17.650795, 59.855883], [17.650818, 59.85587], [17.650796, 59.855883] ], [ [17.650795, 59.855883], [17.650794, 59.855883], [17.650795, 59.855883], [17.650795, 59.855883] ], [ [17.650793, 59.855899], [17.650794, 59.855899], [17.650793, 59.855899], [17.650793, 59.855899], [17.650793, 59.855899] ], [ [17.650827, 59.855863], [17.650829, 59.855862], [17.650829, 59.855862], [17.650827, 59.855863], [17.650827, 59.855863] ], [ [17.650812, 59.855907], [17.650825, 59.855899], [17.650824, 59.855899], [17.650813, 59.855894], [17.650825, 59.855899], [17.650812, 59.855907] ], [ [17.650835, 59.855903], [17.650835, 59.855903], [17.650836, 59.855903], [17.650836, 59.855903], [17.650829, 59.855907], [17.650835, 59.855903] ], [ [17.650827, 59.855919], [17.65083, 59.855917], [17.650827, 59.855919], [17.650827, 59.855919] ], [ [17.650897, 59.855963], [17.650897, 59.855963], [17.650896, 59.855963], [17.650896, 59.855963], [17.650897, 59.855963], [17.650897, 59.855963] ], [ [17.650899, 59.855962], [17.650899, 59.855962], [17.650899, 59.855962], [17.650899, 59.855962], [17.650899, 59.855962] ], [ [17.650899, 59.855962], [17.650899, 59.855962], [17.650899, 59.855962], [17.650899, 59.855962] ], [ [17.650899, 59.855962], [17.650899, 59.855962], [17.650899, 59.855962], [17.650899, 59.855962] ], [ [17.650864, 59.855982], [17.650864, 59.855982], [17.650864, 59.855982], [17.650864, 59.855981], [17.650864, 59.855981], [17.650864, 59.855982] ], [ [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018] ], [ [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018] ], [ [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018] ], [ [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018] ], [ [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018] ], [ [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018], [17.650872, 59.856018] ], [ [17.650871, 59.856017], [17.650871, 59.856017], [17.650871, 59.856017], [17.650871, 59.856017] ], [ [17.650871, 59.856017], [17.650871, 59.856017], [17.650871, 59.856017], [17.650871, 59.856017] ], [ [17.650871, 59.856017], [17.650871, 59.856017], [17.650871, 59.856017], [17.650871, 59.856017] ], [ [17.650871, 59.856017], [17.650871, 59.856017], [17.650871, 59.856017], [17.650871, 59.856017] ], [ [17.650871, 59.856017], [17.650871, 59.856017], [17.650871, 59.856017], [17.650871, 59.856017], [17.650871, 59.856017] ], [ [17.65087, 59.856017], [17.65087, 59.856017], [17.65087, 59.856017], [17.65087, 59.856017] ], [ [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035] ], [ [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035] ], [ [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035] ], [ [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035] ], [ [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035] ], [ [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035] ], [ [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035] ], [ [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035] ], [ [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035] ], [ [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035], [17.650842, 59.856035] ], [ [17.650842, 59.856035], [17.650842, 59.856035], [17.650841, 59.856035], [17.650841, 59.856035], [17.650841, 59.856035], [17.650842, 59.856035] ], [ [17.6509, 59.855895], [17.6509, 59.855895], [17.6509, 59.855895], [17.6509, 59.855895], [17.6509, 59.855895] ], [ [17.650917, 59.855903], [17.650917, 59.855902], [17.650917, 59.855902], [17.650917, 59.855903], [17.650917, 59.855903] ], [ [17.650903, 59.855999], [17.650903, 59.855999], [17.650903, 59.855999], [17.650903, 59.855999], [17.650903, 59.855999], [17.650903, 59.855999], [17.650903, 59.855999] ], [ [17.650904, 59.855997], [17.650902, 59.855999], [17.650902, 59.855999], [17.650904, 59.855997], [17.650904, 59.855997], [17.650904, 59.855997] ], [ [17.650873, 59.856016], [17.650873, 59.856016], [17.650873, 59.856016], [17.650873, 59.856016], [17.650873, 59.856016] ], [ [17.650999, 59.855942], [17.651002, 59.855943], [17.651003, 59.855943], [17.651003, 59.855943], [17.650999, 59.855944], [17.650999, 59.855944], [17.650999, 59.855944], [17.650999, 59.855944], [17.651002, 59.855943], [17.650999, 59.855942], [17.650999, 59.855942], [17.650999, 59.855942], [17.651, 59.855941], [17.651, 59.855941], [17.650999, 59.855942] ], [ [17.650966, 59.855927], [17.650963, 59.855926], [17.650963, 59.855926], [17.650963, 59.855926], [17.650963, 59.855926], [17.650966, 59.855927], [17.650966, 59.855927] ], [ [17.650967, 59.855926], [17.650967, 59.855926], [17.650967, 59.855926], [17.650967, 59.855926], [17.650967, 59.855926], [17.650967, 59.855926], [17.650967, 59.855926], [17.650967, 59.855926], [17.650967, 59.855926] ], [ [17.650968, 59.855926], [17.650968, 59.855926], [17.650968, 59.855926], [17.650968, 59.855926], [17.650968, 59.855926], [17.650968, 59.855926], [17.650968, 59.855926], [17.650968, 59.855926] ], [ [17.650907, 59.855958], [17.650929, 59.855945], [17.650906, 59.855958], [17.650907, 59.855958] ], [ [17.650906, 59.855958], [17.650906, 59.855958], [17.650906, 59.855958], [17.650906, 59.855958], [17.650906, 59.855958] ], [ [17.650967, 59.855962], [17.650967, 59.855962], [17.650969, 59.855961], [17.650969, 59.855961], [17.650967, 59.855962] ], [ [17.65097, 59.855962], [17.65097, 59.855962], [17.65097, 59.855962], [17.65097, 59.855962], [17.650971, 59.855962], [17.650971, 59.855962], [17.65097, 59.855962] ], [ [17.651, 59.855945], [17.651, 59.855945], [17.651001, 59.855945], [17.651001, 59.855945], [17.651, 59.855945] ], [ [17.650934, 59.855981], [17.650934, 59.855981], [17.650937, 59.855979], [17.650937, 59.855979], [17.650934, 59.855981] ], [ [17.650938, 59.85598], [17.650938, 59.85598], [17.650938, 59.85598], [17.650938, 59.85598], [17.650938, 59.85598], [17.650938, 59.85598] ], [ [17.650968, 59.855963], [17.650968, 59.855963], [17.650968, 59.855963], [17.650968, 59.855963], [17.650968, 59.855963] ], [ [17.650937, 59.855979], [17.650937, 59.855979], [17.650937, 59.855979], [17.650937, 59.855979] ], [ [17.650936, 59.855981], [17.650936, 59.855981], [17.650936, 59.855981], [17.650935, 59.855981], [17.650936, 59.855981] ], [ [17.650906, 59.855998], [17.650905, 59.855998], [17.650905, 59.855998], [17.650905, 59.855998], [17.650906, 59.855998], [17.650906, 59.855998] ] ], [ [ [17.650458, 59.856086], [17.650413, 59.856065], [17.650412, 59.856066], [17.650457, 59.856086], [17.650458, 59.856086] ] ], [ [ [17.650622, 59.856069], [17.650592, 59.856086], [17.650592, 59.856086], [17.650622, 59.856069], [17.650622, 59.856069] ] ], [ [ [17.650713, 59.855945], [17.650698, 59.855954], [17.650713, 59.855961], [17.650729, 59.855953], [17.650713, 59.855945] ] ], [ [ [17.650764, 59.855869], [17.650764, 59.855869], [17.650762, 59.85587], [17.650763, 59.85587], [17.650764, 59.855869] ] ], [ [ [17.650799, 59.855913], [17.650795, 59.855916], [17.650795, 59.855916], [17.6508, 59.855914], [17.650799, 59.855913] ] ], [ [ [17.650809, 59.855918], [17.650804, 59.85592], [17.650805, 59.85592], [17.65081, 59.855918], [17.650809, 59.855918] ] ], [ [ [17.650867, 59.856022], [17.650867, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022], [17.650867, 59.856022] ], [ [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022], [17.650868, 59.856022] ] ], [ [ [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650863, 59.856025], [17.650863, 59.856025], [17.650863, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650863, 59.856025], [17.650863, 59.856025], [17.650863, 59.856025], [17.650863, 59.856025], [17.650863, 59.856025], [17.650863, 59.856025], [17.650863, 59.856025], [17.650863, 59.856025], [17.650863, 59.856025], [17.650863, 59.856025], [17.650863, 59.856025], [17.650863, 59.856025], [17.650863, 59.856025], [17.650863, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025], [17.650862, 59.856025] ], [ [17.650863, 59.856025], [17.650863, 59.856025], [17.650863, 59.856025], [17.650863, 59.856025], [17.650863, 59.856025], [17.650863, 59.856025], [17.650863, 59.856025], [17.650863, 59.856025], [17.650863, 59.856025], [17.650863, 59.856025] ] ], [ [ [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028] ], [ [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028], [17.650857, 59.856028] ] ], [ [ [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019] ], [ [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019], [17.650873, 59.856019] ] ] ] } } ] } ================================================ FILE: packages/turf-union/test/in/union1.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.88571166992188, 32.887659962078956], [-80.09788513183594, 32.927436533285565], [-80.15350341796875, 32.82825010814964], [-80.00312805175781, 32.69428812316933], [-79.89395141601562, 32.75551989829049], [-79.88571166992188, 32.887659962078956] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.92141723632812, 32.953944317478246], [-79.97428894042969, 32.83690450361482], [-79.97360229492188, 32.76071688548088], [-79.93034362792969, 32.76475877693074], [-79.93789672851562, 32.74108223150125], [-79.80537414550781, 32.7231762754146], [-79.81773376464844, 32.923402043498875], [-79.92141723632812, 32.953944317478246] ] ] } } ] } ================================================ FILE: packages/turf-union/test/in/union2.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.92141723632812, 32.953944317478246], [-79.97428894042969, 32.83690450361482], [-79.97360229492188, 32.76071688548088], [-79.93034362792969, 32.76475877693074], [-79.93789672851562, 32.74108223150125], [-79.80537414550781, 32.7231762754146], [-79.81773376464844, 32.923402043498875], [-79.92141723632812, 32.953944317478246] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80.10543823242188, 32.94760622243483], [-80.14389038085938, 32.8149783969858], [-80.07453918457031, 32.85536439443039], [-79.99351501464844, 32.84440429734253], [-79.98184204101562, 32.90495631913751], [-80.10543823242188, 32.94760622243483] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.9200439453125, 32.9372338139709], [-80.03128051757812, 32.936657533381286], [-79.99008178710938, 32.77226465992344], [-79.90219116210938, 32.8432505241666], [-79.96604919433594, 32.87497382061986], [-79.9200439453125, 32.9372338139709] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.95025634765625, 32.97007559940924], [-80.00175476074217, 32.732418508353746], [-79.84725952148438, 32.753210028851896], [-79.82048034667969, 32.848442385344136], [-79.85481262207031, 32.923402043498875], [-79.95025634765625, 32.97007559940924] ] ] } } ] } ================================================ FILE: packages/turf-union/test/in/union3.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.88571166992188, 32.887659962078956], [-80.09788513183594, 32.927436533285565], [-80.15350341796875, 32.82825010814964], [-80.00312805175781, 32.69428812316933], [-79.89395141601562, 32.75551989829049], [-79.88571166992188, 32.887659962078956] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.92141723632812, 32.953944317478246], [-79.97428894042969, 32.83690450361482], [-79.97360229492188, 32.76071688548088], [-79.93034362792969, 32.76475877693074], [-79.93789672851562, 32.74108223150125], [-79.80537414550781, 32.7231762754146], [-79.81773376464844, 32.923402043498875], [-79.92141723632812, 32.953944317478246] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-79.85618591308594, 32.85997876713845], [-79.78958129882812, 32.913603231028915], [-79.64881896972656, 32.915908931564864], [-79.63233947753906, 32.804590457442565], [-79.79232788085938, 32.679840539897484], [-79.88433837890625, 32.687931474529464], [-79.85618591308594, 32.85997876713845] ] ] } } ] } ================================================ FILE: packages/turf-union/test/in/union4.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.732, 45.337], [-75.728, 45.331], [-75.719, 45.328], [-75.71, 45.331], [-75.70745454545455, 45.33481818181818], [-75.702, 45.333], [-75.693, 45.336], [-75.689, 45.342], [-75.693, 45.349], [-75.69445161290322, 45.34932258064516], [-75.692, 45.353], [-75.696, 45.36], [-75.705, 45.362], [-75.714, 45.36], [-75.717, 45.353], [-75.714, 45.347], [-75.71244, 45.34648], [-75.71342253521127, 45.344760563380284], [-75.719, 45.346], [-75.728, 45.344], [-75.732, 45.337] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.719, 45.346], [-75.71, 45.344], [-75.706, 45.337], [-75.71, 45.331], [-75.719, 45.328], [-75.728, 45.331], [-75.732, 45.337], [-75.728, 45.344], [-75.719, 45.346] ] ] } } ] } ================================================ FILE: packages/turf-union/test/out/jsts/not-overlapping.geojson ================================================ { "type": "Feature", "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-79.88571166992188, 32.887659962078956], [-79.89395141601562, 32.75551989829049], [-80.00312805175781, 32.69428812316933], [-80.15350341796875, 32.82825010814964], [-80.09788513183594, 32.927436533285565], [-79.88571166992188, 32.887659962078956] ] ], [ [ [-79.85618591308594, 32.85997876713845], [-79.78958129882812, 32.913603231028915], [-79.64881896972656, 32.915908931564864], [-79.63233947753906, 32.804590457442565], [-79.79232788085938, 32.679840539897484], [-79.88433837890625, 32.687931474529464], [-79.85618591308594, 32.85997876713845] ] ] ] }, "properties": {} } ================================================ FILE: packages/turf-union/test/out/jsts/union1.geojson ================================================ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [-79.92322780260464, 32.73910022106017], [-80.00312805175781, 32.69428812316933], [-80.15350341796875, 32.82825010814964], [-80.09788513183594, 32.927436533285565], [-79.94623496447946, 32.89900638172028], [-79.92141723632812, 32.953944317478246], [-79.81773376464844, 32.923402043498875], [-79.80537414550781, 32.7231762754146], [-79.92322780260464, 32.73910022106017] ] ] }, "properties": {} } ================================================ FILE: packages/turf-union/test/out/jsts/union2.geojson ================================================ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [-79.91098503795921, 32.95087128128811], [-79.81773376464844, 32.923402043498875], [-79.80537414550781, 32.7231762754146], [-79.93763756501369, 32.741047214297545], [-80.00175476074217, 32.732418508353746], [-79.99171138057724, 32.77876713098757], [-80.00867471875296, 32.846454942587876], [-80.07453918457031, 32.85536439443039], [-80.14389038085938, 32.8149783969858], [-80.10543823242188, 32.94760622243483], [-80.02726389659408, 32.92063024667495], [-80.03128051757812, 32.936657533381286], [-79.95741485597672, 32.93704020740793], [-79.95025634765625, 32.97007559940924], [-79.91098503795921, 32.95087128128811] ] ] }, "properties": {} } ================================================ FILE: packages/turf-union/test/out/jsts/union3.geojson ================================================ { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [-79.92322780260464, 32.73910022106017], [-80.00312805175781, 32.69428812316933], [-80.15350341796875, 32.82825010814964], [-80.09788513183594, 32.927436533285565], [-79.94623496447946, 32.89900638172028], [-79.92141723632812, 32.953944317478246], [-79.81773376464844, 32.923402043498875], [-79.81582464318822, 32.89247428541929], [-79.78958129882812, 32.913603231028915], [-79.64881896972656, 32.915908931564864], [-79.63233947753906, 32.804590457442565], [-79.79232788085938, 32.679840539897484], [-79.88433837890625, 32.687931474529464], [-79.87698786324371, 32.73285245328464], [-79.92322780260464, 32.73910022106017] ] ] }, "properties": {} } ================================================ FILE: packages/turf-union/test/out/not-overlapping.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [-80.15350341796875, 32.82825010814964], [-80.00312805175781, 32.69428812316933], [-79.89395141601562, 32.75551989829049], [-79.88571166992188, 32.887659962078956], [-80.09788513183594, 32.927436533285565], [-80.15350341796875, 32.82825010814964] ] ], [ [ [-79.88433837890625, 32.687931474529464], [-79.79232788085938, 32.679840539897484], [-79.63233947753906, 32.804590457442565], [-79.64881896972656, 32.915908931564864], [-79.78958129882812, 32.913603231028915], [-79.85618591308594, 32.85997876713845], [-79.88433837890625, 32.687931474529464] ] ] ] } } ================================================ FILE: packages/turf-union/test/out/union1.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80.15350341796875, 32.82825010814964], [-80.00312805175781, 32.69428812316933], [-79.92322780260464, 32.73910022106017], [-79.80537414550781, 32.7231762754146], [-79.81773376464844, 32.923402043498875], [-79.92141723632812, 32.953944317478246], [-79.94623496447946, 32.89900638172028], [-80.09788513183594, 32.927436533285565], [-80.15350341796875, 32.82825010814964] ] ] } } ================================================ FILE: packages/turf-union/test/out/union2.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80.14389038085938, 32.8149783969858], [-80.07453918457031, 32.85536439443039], [-80.00867471875296, 32.84645494258788], [-79.99171138057724, 32.77876713098755], [-80.00175476074217, 32.732418508353746], [-79.9376375650137, 32.741047214297545], [-79.80537414550781, 32.7231762754146], [-79.81773376464844, 32.923402043498875], [-79.91098503795921, 32.950871281288116], [-79.95025634765625, 32.97007559940924], [-79.95741485597672, 32.93704020740794], [-80.03128051757812, 32.936657533381286], [-80.02726389659406, 32.92063024667495], [-80.10543823242188, 32.94760622243483], [-80.14389038085938, 32.8149783969858] ] ] } } ================================================ FILE: packages/turf-union/test/out/union3.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-80.15350341796875, 32.82825010814964], [-80.00312805175781, 32.69428812316933], [-79.92322780260464, 32.73910022106017], [-79.87698786324371, 32.73285245328464], [-79.88433837890625, 32.687931474529464], [-79.79232788085938, 32.679840539897484], [-79.63233947753906, 32.804590457442565], [-79.64881896972656, 32.915908931564864], [-79.78958129882812, 32.913603231028915], [-79.81582464318822, 32.89247428541929], [-79.81773376464844, 32.923402043498875], [-79.92141723632812, 32.953944317478246], [-79.94623496447946, 32.89900638172028], [-80.09788513183594, 32.927436533285565], [-80.15350341796875, 32.82825010814964] ] ] } } ================================================ FILE: packages/turf-union/test/out/union4.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-75.732, 45.337], [-75.728, 45.331], [-75.719, 45.328], [-75.71, 45.331], [-75.70745454545455, 45.33481818181818], [-75.702, 45.333], [-75.693, 45.336], [-75.689, 45.342], [-75.693, 45.349], [-75.69445161290322, 45.34932258064516], [-75.692, 45.353], [-75.696, 45.36], [-75.705, 45.362], [-75.714, 45.36], [-75.717, 45.353], [-75.714, 45.347], [-75.71244, 45.34648], [-75.71342253521127, 45.344760563380284], [-75.719, 45.346], [-75.728, 45.344], [-75.732, 45.337] ] ] } } ================================================ FILE: packages/turf-union/test.ts ================================================ import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { type FeatureCollection, type Polygon, type MultiPolygon, } from "geojson"; import { union } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directories.in + filename), }; }); test("union", function (t) { for (const { name, geojson, filename } of fixtures) { // Only test the input fixture this way if there is a corresponding output // fixture to compare. if (fs.existsSync(path.join(directories.out, filename))) { const result = union(geojson); if (result === null) { t.fail("result was null"); } if (process.env.REGEN) writeJsonFileSync(directories.out + filename, result); t.deepEqual(result, loadJsonFileSync(directories.out + filename), name); } } t.end(); }); test("union - unable to complete output ring ex 1 - issue 1983", function (t) { const polys = loadJsonFileSync( directories.in + "unable-to-complete-output-ring-1983-1.geojson" ) as FeatureCollection; // This used to fail with "Unable to complete output ring starting at ..." t.doesNotThrow(() => union(polys), "does not throw"); t.end(); }); test("union - unable to complete output ring ex 2 - issue 1983", function (t) { const polys = loadJsonFileSync( directories.in + "unable-to-complete-output-ring-1983-2.geojson" ) as FeatureCollection; // This used to fail with "Unable to complete output ring starting at ..." t.doesNotThrow(() => union(polys), "does not throw"); t.end(); }); test("union - maximum call stack size exceeded - issue 2317", function (t) { const polys = loadJsonFileSync( directories.in + "maximum-callstack-size-exceeded-2317.geojson" ) as FeatureCollection; // This used to fail with "Maximum call stack size exceeded ..." t.doesNotThrow(() => union(polys), "does not throw"); t.end(); }); test("union - unable to find segment ex 1 - issue 2258", function (t) { // Example from https://github.com/Turfjs/turf/issues/2258#issue-1125017544 const polys = loadJsonFileSync( directories.in + "unable-to-find-segment-2258-1.geojson" ) as FeatureCollection; // This used to fail with "Unable to find segment ..." t.doesNotThrow(() => union(polys), "does not throw"); t.end(); }); test("union - unable to find segment ex 2 - issue 2258", function (t) { // Example from https://github.com/Turfjs/turf/issues/2258#issuecomment-1635573555 const polys = loadJsonFileSync( directories.in + "unable-to-find-segment-2258-2.geojson" ) as FeatureCollection; // This used to fail with "Unable to find segment ..." t.doesNotThrow(() => union(polys), "does not throw"); t.end(); }); ================================================ FILE: packages/turf-union/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-union/types.ts ================================================ import { polygon, featureCollection } from "@turf/helpers"; import { union } from "./index.js"; const poly1 = polygon([ [ [0, 0], [10, 10], [20, 20], [0, 0], ], ]); const poly2 = polygon([ [ [20, 30], [10, 10], [20, 20], [20, 30], ], ]); union(featureCollection([poly1, poly2])); ================================================ FILE: packages/turf-unkink-polygon/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-unkink-polygon/README.md ================================================ # @turf/unkink-polygon ## unkinkPolygon Takes a kinked polygon and returns a feature collection of polygons that have no kinks. Uses [simplepolygon][1] internally. ### Parameters * `geojson` **([FeatureCollection][2]<([Polygon][3] | [MultiPolygon][4])> | [Feature][5]<([Polygon][3] | [MultiPolygon][4])> | [Polygon][3] | [MultiPolygon][4])** polygons to unkink ### Examples ```javascript const poly = turf.polygon([[[0, 0], [2, 0], [0, 2], [2, 2], [0, 0]]]); const result = turf.unkinkPolygon(poly); //addToMap const addToMap = [poly, result] ``` Returns **[FeatureCollection][2]<[Polygon][3]>** Unkinked polygons [1]: https://github.com/mclaeysb/simplepolygon [2]: https://tools.ietf.org/html/rfc7946#section-3.3 [3]: https://tools.ietf.org/html/rfc7946#section-3.1.6 [4]: https://tools.ietf.org/html/rfc7946#section-3.1.7 [5]: https://tools.ietf.org/html/rfc7946#section-3.2 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/unkink-polygon ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-unkink-polygon/bench.ts ================================================ import { Feature, FeatureCollection, Polygon } from "geojson"; import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import Benchmark, { Event } from "benchmark"; import { unkinkPolygon as unkink } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { const geojson: FeatureCollection | Feature = loadJsonFileSync(directories.in + filename); return { filename, geojson }; }); const suite = new Benchmark.Suite("unkink-polygon"); // Add all fixtures to Benchmark for (const fixture of fixtures) { suite.add(fixture.filename, () => unkink(fixture.geojson)); } suite .on("cycle", (event: Event) => { console.log(String(event.target)); }) .run(); ================================================ FILE: packages/turf-unkink-polygon/index.ts ================================================ import { Polygon, MultiPolygon, Feature, FeatureCollection } from "geojson"; import { flattenEach, featureEach } from "@turf/meta"; import { polygon, featureCollection } from "@turf/helpers"; import { simplepolygon } from "./lib/simplepolygon.js"; /** * Takes a kinked polygon and returns a feature collection of polygons that have * no kinks. * * Uses [simplepolygon](https://github.com/mclaeysb/simplepolygon) internally. * * @function * @param {FeatureCollection|Feature|Polygon|MultiPolygon} geojson polygons to unkink * @returns {FeatureCollection} Unkinked polygons * @example * const poly = turf.polygon([[[0, 0], [2, 0], [0, 2], [2, 2], [0, 0]]]); * * const result = turf.unkinkPolygon(poly); * * //addToMap * const addToMap = [poly, result] */ function unkinkPolygon( geojson: Feature | FeatureCollection | T ): FeatureCollection { var features: Feature[] = []; flattenEach(geojson, function (feature) { if (feature.geometry.type !== "Polygon") return; // Safe to treat feature as Feature featureEach(simplepolygon(feature as Feature), function (poly) { features.push(polygon(poly.geometry.coordinates, feature.properties)); }); }); return featureCollection(features); } export { unkinkPolygon }; export default unkinkPolygon; ================================================ FILE: packages/turf-unkink-polygon/lib/geojson-polygon-self-intersections.ts ================================================ // Find self-intersections in geojson polygon (possibly with interior rings) import { Feature, Polygon, Position } from "geojson"; import rbush from "rbush"; export function geojsonPolygonSelfIntersections( feature: Feature, filterFn: ( isect: number[], ring0: number, edge0: number, start0: Position, end0: Position, frac0: number, ring1: number, edge1: number, start1: Position, end1: Position, frac1: number, unique: boolean ) => T ): T[] { if (feature.geometry.type !== "Polygon") throw new Error("The input feature must be a Polygon"); var coord = feature.geometry.coordinates; var output: T[] = []; var seen: Record = {}; var allEdgesAsRbushTreeItems = []; for (var ring0 = 0; ring0 < coord.length; ring0++) { for (var edge0 = 0; edge0 < coord[ring0].length - 1; edge0++) { allEdgesAsRbushTreeItems.push(rbushTreeItem(ring0, edge0)); } } var tree = new rbush<{ minX: number; minY: number; maxX: number; maxY: number; ring: number; edge: number; }>(); tree.load(allEdgesAsRbushTreeItems); for (var ringA = 0; ringA < coord.length; ringA++) { for (var edgeA = 0; edgeA < coord[ringA].length - 1; edgeA++) { var bboxOverlaps = tree.search(rbushTreeItem(ringA, edgeA)); bboxOverlaps.forEach(function (bboxIsect) { var ring1 = bboxIsect.ring; var edge1 = bboxIsect.edge; ifIsectAddToOutput(ringA, edgeA, ring1, edge1); }); } } return output; // Function to check if two edges intersect and add the intersection to the output function ifIsectAddToOutput( ring0: number, edge0: number, ring1: number, edge1: number ) { var start0 = coord[ring0][edge0]; var end0 = coord[ring0][edge0 + 1]; var start1 = coord[ring1][edge1]; var end1 = coord[ring1][edge1 + 1]; var isect = intersect(start0, end0, start1, end1); if (isect === null) return; // discard parallels and coincidence var frac0; var frac1; if (end0[0] !== start0[0]) { frac0 = (isect[0] - start0[0]) / (end0[0] - start0[0]); } else { frac0 = (isect[1] - start0[1]) / (end0[1] - start0[1]); } if (end1[0] !== start1[0]) { frac1 = (isect[0] - start1[0]) / (end1[0] - start1[0]); } else { frac1 = (isect[1] - start1[1]) / (end1[1] - start1[1]); } if (frac0 >= 1 || frac0 <= 0 || frac1 >= 1 || frac1 <= 0) return; // require segment intersection var key = isect; var unique = !seen[key.toString()]; if (unique) { seen[key.toString()] = true; } if (filterFn) { output.push( filterFn( isect, ring0, edge0, start0, end0, frac0, ring1, edge1, start1, end1, frac1, unique ) ); } } // Function to return a rbush tree item given an ring and edge number function rbushTreeItem(ring: number, edge: number) { var start = coord[ring][edge]; var end = coord[ring][edge + 1]; var minX; var maxX; var minY; var maxY; if (start[0] < end[0]) { minX = start[0]; maxX = end[0]; } else { minX = end[0]; maxX = start[0]; } if (start[1] < end[1]) { minY = start[1]; maxY = end[1]; } else { minY = end[1]; maxY = start[1]; } return { minX: minX, minY: minY, maxX: maxX, maxY: maxY, ring: ring, edge: edge, }; } } // Function to compute where two lines (not segments) intersect. From https://en.wikipedia.org/wiki/Line%E2%80%93line_intersection function intersect( start0: number[], end0: number[], start1: number[], end1: number[] ) { if ( equalArrays(start0, start1) || equalArrays(start0, end1) || equalArrays(end0, start1) || equalArrays(end1, start1) ) return null; var x0 = start0[0], y0 = start0[1], x1 = end0[0], y1 = end0[1], x2 = start1[0], y2 = start1[1], x3 = end1[0], y3 = end1[1]; var denom = (x0 - x1) * (y2 - y3) - (y0 - y1) * (x2 - x3); if (denom === 0) return null; var x4 = ((x0 * y1 - y0 * x1) * (x2 - x3) - (x0 - x1) * (x2 * y3 - y2 * x3)) / denom; var y4 = ((x0 * y1 - y0 * x1) * (y2 - y3) - (y0 - y1) * (x2 * y3 - y2 * x3)) / denom; return [x4, y4]; } // Function to compare Arrays of numbers. From http://stackoverflow.com/questions/7837456/how-to-compare-arrays-in-javascript function equalArrays(array1: any[], array2: any[]) { // if the other array is a falsy value, return if (!array1 || !array2) return false; // compare lengths - can save a lot of time if (array1.length !== array2.length) return false; for (var i = 0, l = array1.length; i < l; i++) { // Check if we have nested arrays if (array1[i] instanceof Array && array2[i] instanceof Array) { // recurse into the nested arrays if (!equalArrays(array1[i], array2[i])) return false; } else if (array1[i] !== array2[i]) { // Warning - two different object instances will never be equal: {x:20} !== {x:20} return false; } } return true; } ================================================ FILE: packages/turf-unkink-polygon/lib/simplepolygon.ts ================================================ import { geojsonPolygonSelfIntersections as isects } from "./geojson-polygon-self-intersections.js"; import { area } from "@turf/area"; import { featureCollection, polygon } from "@turf/helpers"; import { booleanPointInPolygon } from "@turf/boolean-point-in-polygon"; import rbush from "rbush"; import { Feature, FeatureCollection, Polygon, Position } from "geojson"; /** * Takes a complex (i.e. self-intersecting) geojson polygon, and breaks it down into its composite simple, non-self-intersecting one-ring polygons. * * @module simplepolygon * @param {Feature} feature Input polygon. This polygon may be unconform the {@link https://en.wikipedia.org/wiki/Simple_Features|Simple Features standard} in the sense that it's inner and outer rings may cross-intersect or self-intersect, that the outer ring must not contain the optional inner rings and that the winding number must not be positive for the outer and negative for the inner rings. * @return {FeatureCollection} Feature collection containing the simple, non-self-intersecting one-ring polygon features that the complex polygon is composed of. These simple polygons have properties such as their parent polygon, winding number and net winding number. * * @example * var poly = { * "type": "Feature", * "geometry": { * "type": "Polygon", * "coordinates": [[[0,0],[2,0],[0,2],[2,2],[0,0]]] * } * }; * * var result = simplepolygon(poly); * * // =result * // which will be a featureCollection of two polygons, one with coordinates [[[0,0],[2,0],[1,1],[0,0]]], parent -1, winding 1 and net winding 1, and one with coordinates [[[1,1],[0,2],[2,2],[1,1]]], parent -1, winding -1 and net winding -1 */ export function simplepolygon( feature: Feature ): FeatureCollection { // Check input if (feature.type != "Feature") throw new Error("The input must a geojson object of type Feature"); if (feature.geometry === undefined || feature.geometry == null) throw new Error( "The input must a geojson object with a non-empty geometry" ); if (feature.geometry.type != "Polygon") throw new Error("The input must be a geojson Polygon"); // Process input var numRings = feature.geometry.coordinates.length; var vertices = []; for (var i = 0; i < numRings; i++) { var ring = feature.geometry.coordinates[i]; if (!equalArrays(ring[0], ring[ring.length - 1])) { ring.push(ring[0]); // Close input ring if it is not } for (var j = 0; j < ring.length - 1; j++) { vertices.push(ring[j]); } } if (!isUnique(vertices)) throw new Error( "The input polygon may not have duplicate vertices (except for the first and last vertex of each ring)" ); var numvertices = vertices.length; // number of input ring vertices, with the last closing vertices not counted // Compute self-intersections var selfIsectsData = isects( feature, function filterFn( isect, ring0, edge0, start0, end0, frac0, ring1, edge1, start1, end1, frac1, unique ) { return [ isect, ring0, edge0, start0, end0, frac0, ring1, edge1, start1, end1, frac1, unique, ] as const; } ); var numSelfIsect = selfIsectsData.length; // If no self-intersections are found, the input rings are the output rings. Hence, we must only compute their winding numbers, net winding numbers and (since ohers rings could lie outside the first ring) parents. if (numSelfIsect == 0) { var outputFeatureArray = []; for (var i = 0; i < numRings; i++) { outputFeatureArray.push( polygon([feature.geometry.coordinates[i]], { parent: -1, winding: windingOfRing(feature.geometry.coordinates[i]), }) ); } let output = featureCollection(outputFeatureArray) as FeatureCollection< Polygon, { index: number; parent: number; winding: number; netWinding: number | undefined; } >; determineParents(output); setNetWinding(output); return output; } // If self-intersections are found, we will compute the output rings with the help of two intermediate variables // First, we build the pseudo vertex list and intersection list // The Pseudo vertex list is an array with for each ring an array with for each edge an array containing the pseudo-vertices (as made by their constructor) that have this ring and edge as ringAndEdgeIn, sorted for each edge by their fractional distance on this edge. It's length hence equals numRings. var pseudoVtxListByRingAndEdge: PseudoVtx[][][] = []; // The intersection list is an array containing intersections (as made by their constructor). First all numvertices ring-vertex-intersections, then all self-intersections (intra- and inter-ring). The order of the latter is not important but is permanent once given. var isectList: Isect[] = []; // Adding ring-pseudo-vertices to pseudoVtxListByRingAndEdge and ring-vertex-intersections to isectList for (var i = 0; i < numRings; i++) { pseudoVtxListByRingAndEdge.push([]); for (var j = 0; j < feature.geometry.coordinates[i].length - 1; j++) { // Each edge will feature one ring-pseudo-vertex in its array, on the last position. i.e. edge j features the ring-pseudo-vertex of the ring vertex j+1, which has ringAndEdgeIn = [i,j], on the last position. pseudoVtxListByRingAndEdge[i].push([ new PseudoVtx( feature.geometry.coordinates[i][ modulo(j + 1, feature.geometry.coordinates[i].length - 1) ], 1, [i, j], [i, modulo(j + 1, feature.geometry.coordinates[i].length - 1)], undefined ), ]); // The first numvertices elements in isectList correspond to the ring-vertex-intersections isectList.push( new Isect( feature.geometry.coordinates[i][j], [i, modulo(j - 1, feature.geometry.coordinates[i].length - 1)], [i, j], undefined, undefined, false, true ) ); } } // Adding intersection-pseudo-vertices to pseudoVtxListByRingAndEdge and self-intersections to isectList for (var i = 0; i < numSelfIsect; i++) { // Adding intersection-pseudo-vertices made using selfIsectsData to pseudoVtxListByRingAndEdge's array corresponding to the incomming ring and edge pseudoVtxListByRingAndEdge[selfIsectsData[i][1]][selfIsectsData[i][2]].push( new PseudoVtx( selfIsectsData[i][0], selfIsectsData[i][5], [selfIsectsData[i][1], selfIsectsData[i][2]], [selfIsectsData[i][6], selfIsectsData[i][7]], undefined ) ); // selfIsectsData contains double mentions of each intersection, but we only want to add them once to isectList if (selfIsectsData[i][11]) isectList.push( new Isect( selfIsectsData[i][0], [selfIsectsData[i][1], selfIsectsData[i][2]], [selfIsectsData[i][6], selfIsectsData[i][7]], undefined, undefined, true, true ) ); } var numIsect = isectList.length; // Sort edge arrays of pseudoVtxListByRingAndEdge by the fractional distance 'param' for (var i = 0; i < pseudoVtxListByRingAndEdge.length; i++) { for (var j = 0; j < pseudoVtxListByRingAndEdge[i].length; j++) { pseudoVtxListByRingAndEdge[i][j].sort(function (a, b) { return a.param < b.param ? -1 : 1; }); } } // Make a spatial index of intersections, in preperation for the following two steps var allIsectsAsIsectRbushTreeItem = []; for (var i = 0; i < numIsect; i++) { allIsectsAsIsectRbushTreeItem.push({ minX: isectList[i].coord[0], minY: isectList[i].coord[1], maxX: isectList[i].coord[0], maxY: isectList[i].coord[1], index: i, }); // could pass isect: isectList[i], but not necessary } var isectRbushTree = new rbush<{ minX: number; minY: number; maxX: number; maxY: number; index: number; }>(); isectRbushTree.load(allIsectsAsIsectRbushTreeItem); // Now we will teach each intersection in isectList which is the next intersection along both it's [ring, edge]'s, in two steps. // First, we find the next intersection for each pseudo-vertex in pseudoVtxListByRingAndEdge: // For each pseudovertex in pseudoVtxListByRingAndEdge (3 loops) look at the next pseudovertex on that edge and find the corresponding intersection by comparing coordinates for (var i = 0; i < pseudoVtxListByRingAndEdge.length; i++) { for (var j = 0; j < pseudoVtxListByRingAndEdge[i].length; j++) { for (var k = 0; k < pseudoVtxListByRingAndEdge[i][j].length; k++) { let coordToFind; if (k == pseudoVtxListByRingAndEdge[i][j].length - 1) { // If it's the last pseudoVertex on that edge, then the next pseudoVertex is the first one on the next edge of that ring. coordToFind = pseudoVtxListByRingAndEdge[i][ modulo(j + 1, feature.geometry.coordinates[i].length - 1) ][0].coord; } else { coordToFind = pseudoVtxListByRingAndEdge[i][j][k + 1].coord; } var IsectRbushTreeItemFound = isectRbushTree.search({ minX: coordToFind[0], minY: coordToFind[1], maxX: coordToFind[0], maxY: coordToFind[1], })[0]; // We can take [0] of the result, because there is only one isect correponding to a pseudo-vertex pseudoVtxListByRingAndEdge[i][j][k].nxtIsectAlongEdgeIn = IsectRbushTreeItemFound.index; } } } // Second, we port this knowledge of the next intersection over to the intersections in isectList, by finding the intersection corresponding to each pseudo-vertex and copying the pseudo-vertex' knownledge of the next-intersection over to the intersection for (var i = 0; i < pseudoVtxListByRingAndEdge.length; i++) { for (var j = 0; j < pseudoVtxListByRingAndEdge[i].length; j++) { for (var k = 0; k < pseudoVtxListByRingAndEdge[i][j].length; k++) { let coordToFind = pseudoVtxListByRingAndEdge[i][j][k].coord; var IsectRbushTreeItemFound = isectRbushTree.search({ minX: coordToFind[0], minY: coordToFind[1], maxX: coordToFind[0], maxY: coordToFind[1], })[0]; // We can take [0] of the result, because there is only one isect correponding to a pseudo-vertex var l = IsectRbushTreeItemFound.index; if (l < numvertices) { // Special treatment at ring-vertices: we correct the misnaming that happened in the previous block, since ringAndEdgeOut = ringAndEdge2 for ring vertices. isectList[l].nxtIsectAlongRingAndEdge2 = pseudoVtxListByRingAndEdge[i][j][k].nxtIsectAlongEdgeIn; } else { // Port the knowledge of the next intersection from the pseudo-vertices to the intersections, depending on how the edges are labeled in the pseudo-vertex and intersection. if ( equalArrays( isectList[l].ringAndEdge1, pseudoVtxListByRingAndEdge[i][j][k].ringAndEdgeIn ) ) { isectList[l].nxtIsectAlongRingAndEdge1 = pseudoVtxListByRingAndEdge[i][j][k].nxtIsectAlongEdgeIn; } else { isectList[l].nxtIsectAlongRingAndEdge2 = pseudoVtxListByRingAndEdge[i][j][k].nxtIsectAlongEdgeIn; } } } } } // This explains why, eventhough when we will walk away from an intersection, we will walk way from the corresponding pseudo-vertex along edgeOut, pseudo-vertices have the property 'nxtIsectAlongEdgeIn' in stead of some propery 'nxtPseudoVtxAlongEdgeOut'. This is because this property (which is easy to find out) is used in the above for nxtIsectAlongRingAndEdge1 and nxtIsectAlongRingAndEdge2! // Before we start walking over the intersections to build the output rings, we prepare a queue that stores information on intersections we still have to deal with, and put at least one intersection in it. // This queue will contain information on intersections where we can start walking from once the current walk is finished, and its parent output ring (the smallest output ring it lies within, -1 if no parent or parent unknown yet) and its winding number (which we can already determine). var queue: { isect: number; parent: number; winding: number }[] = []; // For each output ring, add the ring-vertex-intersection with the smalles x-value (i.e. the left-most) as a start intersection. By choosing such an extremal intersections, we are sure to start at an intersection that is a convex vertex of its output ring. By adding them all to the queue, we are sure that no rings will be forgotten. If due to ring-intersections such an intersection will be encountered while walking, it will be removed from the queue. var i = 0; for (var j = 0; j < numRings; j++) { var leftIsect = i; for (var k = 0; k < feature.geometry.coordinates[j].length - 1; k++) { if (isectList[i].coord[0] < isectList[leftIsect].coord[0]) { leftIsect = i; } i++; } // Compute winding at this left-most ring-vertex-intersection. We thus this by using our knowledge that this extremal vertex must be a convex vertex. // We first find the intersection before and after it, and then use them to determine the winding number of the corresponding output ring, since we know that an extremal vertex of a simple, non-self-intersecting ring is always convex, so the only reason it would not be is because the winding number we use to compute it is wrong var isectAfterLeftIsect = isectList[leftIsect].nxtIsectAlongRingAndEdge2; for (var k = 0; k < isectList.length; k++) { if ( isectList[k].nxtIsectAlongRingAndEdge1 == leftIsect || isectList[k].nxtIsectAlongRingAndEdge2 == leftIsect ) { var isectBeforeLeftIsect = k; break; } } var windingAtIsect = isConvex( [ isectList[isectBeforeLeftIsect!].coord, isectList[leftIsect].coord, isectList[isectAfterLeftIsect!].coord, ], true ) ? 1 : -1; queue.push({ isect: leftIsect, parent: -1, winding: windingAtIsect }); } // Sort the queue by the same criterion used to find the leftIsect: the left-most leftIsect must be last in the queue, such that it will be popped first, such that we will work from out to in regarding input rings. This assumtion is used when predicting the winding number and parent of a new queue member. queue.sort(function (a, b) { return isectList[a.isect].coord > isectList[b.isect].coord ? -1 : 1; }); // Initialise output var outputFeatureArray = []; // While the queue is not empty, take the last object (i.e. its intersection) out and start making an output ring by walking in the direction that has not been walked away over yet. while (queue.length > 0) { // Get the last object out of the queue var popped = queue.pop()!; var startIsect = popped.isect; var currentOutputRingParent = popped.parent; var currentOutputRingWinding = popped.winding; // Make new output ring and add vertex from starting intersection var currentOutputRing: number = outputFeatureArray.length; var currentOutputRingCoords = [isectList[startIsect].coord]; // Set up the variables used while walking over intersections: 'currentIsect', 'nxtIsect' and 'walkingRingAndEdge' var currentIsect = startIsect; if (isectList[startIsect].ringAndEdge1Walkable) { var walkingRingAndEdge = isectList[startIsect].ringAndEdge1; var nxtIsect = isectList[startIsect].nxtIsectAlongRingAndEdge1!; } else { var walkingRingAndEdge = isectList[startIsect].ringAndEdge2; var nxtIsect = isectList[startIsect].nxtIsectAlongRingAndEdge2!; } // While we have not arrived back at the same intersection, keep walking while ( !equalArrays(isectList[startIsect].coord, isectList[nxtIsect].coord) ) { currentOutputRingCoords.push(isectList[nxtIsect].coord); // If the next intersection is queued, we can remove it, because we will go there now. var nxtIsectInQueue = undefined; for (var i = 0; i < queue.length; i++) { if (queue[i].isect == nxtIsect) { nxtIsectInQueue = i; break; } } if (nxtIsectInQueue != undefined) { queue.splice(nxtIsectInQueue, 1); } // Arriving at this new intersection, we know which will be our next walking ring and edge (if we came from 1 we will walk away from 2 and vice versa), // So we can set it as our new walking ring and intersection and remember that we (will) have walked over it // If we have never walked away from this new intersection along the other ring and edge then we will soon do, add the intersection (and the parent wand winding number) to the queue // (We can predict the winding number and parent as follows: if the edge is convex, the other output ring started from there will have the alternate winding and lie outside of the current one, and thus have the same parent ring as the current ring. Otherwise, it will have the same winding number and lie inside of the current ring. We are, however, only sure of this of an output ring started from there does not enclose the current ring. This is why the initial queue's intersections must be sorted such that outer ones come out first.) // We then update the other two walking variables. if (equalArrays(walkingRingAndEdge, isectList[nxtIsect].ringAndEdge1)) { walkingRingAndEdge = isectList[nxtIsect].ringAndEdge2; isectList[nxtIsect].ringAndEdge2Walkable = false; if (isectList[nxtIsect].ringAndEdge1Walkable) { var pushing: { isect: number; parent: number; winding: number } = { isect: nxtIsect, } as any; // as any because parent and winding are filled in below if ( isConvex( [ isectList[currentIsect].coord, isectList[nxtIsect].coord, isectList[isectList[nxtIsect].nxtIsectAlongRingAndEdge2!].coord, ], currentOutputRingWinding == 1 ) ) { pushing.parent = currentOutputRingParent; pushing.winding = -currentOutputRingWinding; } else { pushing.parent = currentOutputRing; pushing.winding = currentOutputRingWinding; } queue.push(pushing); } currentIsect = nxtIsect; nxtIsect = isectList[nxtIsect].nxtIsectAlongRingAndEdge2!; } else { walkingRingAndEdge = isectList[nxtIsect].ringAndEdge1; isectList[nxtIsect].ringAndEdge1Walkable = false; if (isectList[nxtIsect].ringAndEdge2Walkable) { var pushing: { isect: number; parent: number; winding: number } = { isect: nxtIsect, } as any; // another instance of parent/winding being filled in below if ( isConvex( [ isectList[currentIsect].coord, isectList[nxtIsect].coord, isectList[isectList[nxtIsect].nxtIsectAlongRingAndEdge1!].coord, ], currentOutputRingWinding == 1 ) ) { pushing.parent = currentOutputRingParent; pushing.winding = -currentOutputRingWinding; } else { pushing.parent = currentOutputRing; pushing.winding = currentOutputRingWinding; } queue.push(pushing); } currentIsect = nxtIsect; nxtIsect = isectList[nxtIsect].nxtIsectAlongRingAndEdge1!; } } // Close output ring currentOutputRingCoords.push(isectList[nxtIsect].coord); // Push output ring to output outputFeatureArray.push( polygon([currentOutputRingCoords], { index: currentOutputRing, parent: currentOutputRingParent, winding: currentOutputRingWinding, netWinding: undefined as number | undefined, }) ); } let output = featureCollection(outputFeatureArray); determineParents(output); setNetWinding(output); // These functions are also used if no intersections are found function determineParents( output: FeatureCollection< Polygon, { index: number; parent: number; winding: number; netWinding: number | undefined; } > ) { var featuresWithoutParent = []; for (var i = 0; i < output.features.length; i++) { if (output.features[i].properties.parent == -1) featuresWithoutParent.push(i); } if (featuresWithoutParent.length > 1) { for (var i = 0; i < featuresWithoutParent.length; i++) { var parent = -1; var parentArea = Infinity; for (var j = 0; j < output.features.length; j++) { if (featuresWithoutParent[i] == j) continue; if ( booleanPointInPolygon( output.features[featuresWithoutParent[i]].geometry .coordinates[0][0], output.features[j], { ignoreBoundary: true } ) ) { if (area(output.features[j]) < parentArea) { parent = j; } } } output.features[featuresWithoutParent[i]].properties.parent = parent; } } } function setNetWinding( output: FeatureCollection< Polygon, { index: number; parent: number; winding: number; netWinding: number | undefined; } > ) { for (var i = 0; i < output.features.length; i++) { if (output.features[i].properties.parent == -1) { var netWinding = output.features[i].properties.winding; output.features[i].properties.netWinding = netWinding; setNetWindingOfChildren(output, i, netWinding); } } } function setNetWindingOfChildren( output: FeatureCollection< Polygon, { index: number; parent: number; winding: number; netWinding: number | undefined; } >, parent: number, ParentNetWinding: number ) { for (var i = 0; i < output.features.length; i++) { if (output.features[i].properties.parent == parent) { var netWinding = ParentNetWinding + output.features[i].properties.winding; output.features[i].properties.netWinding = netWinding; setNetWindingOfChildren(output, i, netWinding); } } } return output; } class PseudoVtx { coord: number[]; // [x,y] of this pseudo-vertex param: number; // fractional distance of this intersection on incomming edge ringAndEdgeIn: [number, number]; // [ring index, edge index] of incomming edge ringAndEdgeOut: [number, number]; // [ring index, edge index] of outgoing edge nxtIsectAlongEdgeIn: number | undefined; // The next intersection when following the incomming edge (so not when following ringAndEdgeOut!) // Constructor for (ring- or intersection-) pseudo-vertices. constructor( coord: number[], param: number, ringAndEdgeIn: [number, number], ringAndEdgeOut: [number, number], nxtIsectAlongEdgeIn?: number ) { this.coord = coord; this.param = param; this.ringAndEdgeIn = ringAndEdgeIn; this.ringAndEdgeOut = ringAndEdgeOut; this.nxtIsectAlongEdgeIn = nxtIsectAlongEdgeIn; } } class Isect { coord: number[]; ringAndEdge1: [number, number]; ringAndEdge2: [number, number]; nxtIsectAlongRingAndEdge1?: number; nxtIsectAlongRingAndEdge2?: number; ringAndEdge1Walkable: boolean; ringAndEdge2Walkable: boolean; // Constructor for an intersection. There are two intersection-pseudo-vertices per self-intersection and one ring-pseudo-vertex per ring-vertex-intersection. Their labels 1 and 2 are not assigned a particular meaning but are permanent once given. constructor( coord: number[], ringAndEdge1: [number, number], ringAndEdge2: [number, number], nxtIsectAlongRingAndEdge1: number | undefined, nxtIsectAlongRingAndEdge2: number | undefined, ringAndEdge1Walkable: boolean, ringAndEdge2Walkable: boolean ) { this.coord = coord; // [x,y] of this intersection this.ringAndEdge1 = ringAndEdge1; // first edge of this intersection this.ringAndEdge2 = ringAndEdge2; // second edge of this intersection this.nxtIsectAlongRingAndEdge1 = nxtIsectAlongRingAndEdge1; // the next intersection when following ringAndEdge1 this.nxtIsectAlongRingAndEdge2 = nxtIsectAlongRingAndEdge2; // the next intersection when following ringAndEdge2 this.ringAndEdge1Walkable = ringAndEdge1Walkable; // May we (still) walk away from this intersection over ringAndEdge1? this.ringAndEdge2Walkable = ringAndEdge2Walkable; // May we (still) walk away from this intersection over ringAndEdge2? } } // Function to determine if three consecutive points of a simple, non-self-intersecting ring make up a convex vertex, assuming the ring is right- or lefthanded function isConvex(pts: number[][], righthanded?: boolean) { // 'pts' is an [x,y] pair // 'righthanded' is a boolean if (typeof righthanded === "undefined") righthanded = true; if (pts.length != 3) throw new Error("This function requires an array of three points [x,y]"); var d = (pts[1][0] - pts[0][0]) * (pts[2][1] - pts[0][1]) - (pts[1][1] - pts[0][1]) * (pts[2][0] - pts[0][0]); return d >= 0 == righthanded; } // Function to compute winding of simple, non-self-intersecting ring function windingOfRing(ring: number[][]) { // 'ring' is an array of [x,y] pairs with the last equal to the first // Compute the winding number based on the vertex with the smallest x-value, it precessor and successor. An extremal vertex of a simple, non-self-intersecting ring is always convex, so the only reason it is not is because the winding number we use to compute it is wrong var leftVtx = 0; for (var i = 0; i < ring.length - 1; i++) { if (ring[i][0] < ring[leftVtx][0]) leftVtx = i; } if ( isConvex( [ ring[modulo(leftVtx - 1, ring.length - 1)], ring[leftVtx], ring[modulo(leftVtx + 1, ring.length - 1)], ], true ) ) { var winding = 1; } else { var winding = -1; } return winding; } // Function to compare Arrays of numbers. From http://stackoverflow.com/questions/7837456/how-to-compare-arrays-in-javascript function equalArrays(array1: any[], array2: any[]) { // if the other array is a falsy value, return if (!array1 || !array2) return false; // compare lengths - can save a lot of time if (array1.length != array2.length) return false; for (var i = 0, l = array1.length; i < l; i++) { // Check if we have nested arrays if (array1[i] instanceof Array && array2[i] instanceof Array) { // recurse into the nested arrays if (!equalArrays(array1[i], array2[i])) return false; } else if (array1[i] != array2[i]) { // Warning - two different object instances will never be equal: {x:20} != {x:20} return false; } } return true; } // Fix Javascript modulo for negative number. From http://stackoverflow.com/questions/4467539/javascript-modulo-not-behaving function modulo(n: number, m: number) { return ((n % m) + m) % m; } // Function to check if array is unique (i.e. all unique elements, i.e. no duplicate elements) function isUnique(array: Position[]) { var u: Record = {}; var isUnique = 1; for (var i = 0, l = array.length; i < l; ++i) { if (Object.prototype.hasOwnProperty.call(u, array[i].toString())) { isUnique = 0; break; } u[array[i].toString()] = 1; } return isUnique; } ================================================ FILE: packages/turf-unkink-polygon/package.json ================================================ { "name": "@turf/unkink-polygon", "version": "7.3.4", "description": "Takes a kinked polygon and returns a feature collection of polygons that have no kinks.", "author": "Turf Authors", "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "kinks", "unkink", "polygon", "self-intersection" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" }, "devDependencies": { "@turf/kinks": "workspace:*", "@types/benchmark": "^2.1.5", "@types/rbush": "^3.0.4", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/area": "workspace:*", "@turf/boolean-point-in-polygon": "workspace:*", "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "^7946.0.10", "rbush": "^3.0.1", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-unkink-polygon/test/in/complex.geojson ================================================ { "type": "Feature", "properties": { "foo": "bar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [113.291015625, -18.062312304546715], [141.15234374999997, -37.090239803072066], [129.55078125, -13.752724664396975], [114.2578125, -35.81781315869662], [122.34374999999999, -34.95799531086791], [133.59375, -18.895892559415024], [119.17968749999999, -20.879342971957897], [121.55273437499999, -25.324166525738384], [127.705078125, -29.382175075145277], [142.03125, -31.802892586706747], [122.51953124999999, -20.550508894195637], [122.51953124999999, -31.278550858946517], [113.291015625, -18.062312304546715] ] ] } } ================================================ FILE: packages/turf-unkink-polygon/test/in/hourglass.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#ff0000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [2, 0], [0, 2], [2, 2], [0, 0] ] ] } } ================================================ FILE: packages/turf-unkink-polygon/test/in/hourglassFeatureCollection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#ff0000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [2, 2], [0, 2], [2, 0], [0, 0] ] ] } }, { "type": "Feature", "properties": { "stroke": "#0000ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2, 2], [4, 0], [2, 0], [4, 2], [2, 2] ] ] } } ] } ================================================ FILE: packages/turf-unkink-polygon/test/in/hourglassFeatureCollectionMultiPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#ff0000" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [0, 0], [2, 0], [0, 2], [2, 2], [0, 0] ] ], [ [ [2, 2], [4, 2], [2, 0], [4, 0], [2, 2] ] ] ] } }, { "type": "Feature", "properties": { "stroke": "#0000ff" }, "geometry": { "type": "Polygon", "coordinates": [ [ [2, 2], [4, 4], [2, 4], [4, 2], [2, 2] ] ] } } ] } ================================================ FILE: packages/turf-unkink-polygon/test/in/hourglassMultiPolygon.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#ff0000" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [0, 0], [2, 2], [0, 2], [2, 0], [0, 0] ] ], [ [ [2, 2], [4, 0], [2, 0], [4, 2], [2, 2] ] ] ] } } ================================================ FILE: packages/turf-unkink-polygon/test/in/issue-#1094.geojson ================================================ { "type": "Polygon", "coordinates": [ [ [-91.92218713423073, 42.750854798206724], [-91.9139393415105, 42.75096509455043], [-91.91403053661699, 42.74800278177934], [-91.91407345196123, 42.74679733206786], [-91.91410563846941, 42.74537912592471], [-91.91653571983723, 42.745359428388724], [-91.9165088977471, 42.74624187186039], [-91.91667519470603, 42.746249750763376], [-91.91669128796013, 42.74536730740387], [-91.91752277275486, 42.745359428388724], [-91.91750131508273, 42.74636399474419], [-91.91750667950076, 42.74737248420069], [-91.91857047641793, 42.74735355619808], [-91.91856615206176, 42.74748869579865], [-91.91859029194288, 42.746734301373], [-91.918995305504, 42.7463029333329], [-91.91905967852034, 42.7461453552181], [-91.9191481914178, 42.74588535045296], [-91.91914282699976, 42.74558594967556], [-91.91900871654907, 42.74558004043513], [-91.91898457666794, 42.745357458635716], [-91.92070119043696, 42.74535154937352], [-91.92096672912932, 42.745483522761845], [-91.92110352178906, 42.74550912950613], [-91.92127786537496, 42.745485492511776], [-91.92160241266565, 42.74565292102763], [-91.9217257942803, 42.745786863514724], [-91.92172311207129, 42.74599959510529], [-91.92183040043186, 42.746527481454386], [-91.92210935016931, 42.74716369671481], [-91.92166678568198, 42.747210969414716], [-91.92159704824762, 42.7472739996252], [-91.92226760050114, 42.74730157532212], [-91.92218713423073, 42.750854798206724] ] ] } ================================================ FILE: packages/turf-unkink-polygon/test/in/polygon-with-holes.geojson ================================================ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [119.88281249999999, -36.244273184939075], [141.4599609375, -36.244273184939075], [141.4599609375, -16.383391123608387], [119.88281249999999, -16.383391123608387], [119.88281249999999, -36.244273184939075] ], [ [124.1455078125, -32.69486597787506], [124.1455078125, -21.002471054356715], [137.373046875, -21.002471054356715], [137.373046875, -32.69486597787506], [124.1455078125, -32.69486597787506] ], [ [137.197265625, -19.601194161263145], [137.197265625, -17.35063837604883], [139.70214843749997, -17.35063837604883], [139.70214843749997, -19.601194161263145], [137.197265625, -19.601194161263145] ], [ [128.232421875, -29.343875399418], [128.232421875, -24.607069137709694], [133.330078125, -24.607069137709694], [133.330078125, -29.343875399418], [128.232421875, -29.343875399418] ], [ [129.8583984375, -27.761329874505233], [132.01171875, -27.761329874505233], [132.01171875, -25.878994400196202], [129.8583984375, -25.878994400196202], [129.8583984375, -27.761329874505233] ] ] } } ================================================ FILE: packages/turf-unkink-polygon/test/in/polygon.geojson ================================================ { "type": "Feature", "properties": { "stroke": "#ff0000" }, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [2, 0], [1, 1], [0, 0] ] ] } } ================================================ FILE: packages/turf-unkink-polygon/test/out/complex.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "stroke-width": 6, "fill-opacity": 0.5, "foo": "bar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [113.291015625, -18.062312304546715], [120.19191432980932, -22.77528936151462], [121.54318810392384, -25.306285930551976], [119.95218306756827, -27.601828901700827], [113.291015625, -18.062312304546715] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "stroke-width": 6, "fill-opacity": 0.5, "foo": "bar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [119.95218306756827, -27.601828901700827], [114.2578125, -35.81781315869662], [122.34374999999999, -34.95799531086791], [126.70917631831458, -28.72529077054203], [127.705078125, -29.382175075145277], [130.57632387458509, -29.86733432959661], [141.15234374999997, -37.090239803072066], [138.20226137399294, -31.155901897259547], [142.03125, -31.802892586706747], [137.11424234536216, -28.96726044902029], [132.72450925246426, -20.136944488541086], [133.59375, -18.895892559415024], [132.20271250042364, -19.087306597088112], [129.55078125, -13.752724664396975], [125.18408486195614, -20.05310648070893], [119.17968749999999, -20.879342971957897], [120.19191432980932, -22.77528936151462], [122.29968447674261, -24.214793514348397], [121.54318810392384, -25.306285930551976], [121.55273437499999, -25.324166525738384], [122.51953125000001, -25.961853583502375], [122.51953124999999, -31.278550858946517], [119.95218306756827, -27.601828901700827] ] ] } }, { "type": "Feature", "properties": { "stroke": "#0F0", "fill": "#0F0", "stroke-width": 6, "fill-opacity": 0.5, "foo": "bar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [122.51953125000001, -25.961853583502375], [126.70917631831458, -28.72529077054203], [127.41938336121612, -27.71129801517406], [130.57632387458509, -29.86733432959661], [138.20226137399294, -31.155901897259547], [137.11424234536216, -28.96726044902029], [129.58210608948366, -24.623486932121974], [132.72450925246426, -20.136944488541086], [132.20271250042364, -19.087306597088112], [125.18408486195614, -20.05310648070893], [124.17689372322495, -21.50630775052635], [122.51953124999999, -20.550508894195637], [122.51953125, -23.897592937638223], [122.29968447674261, -24.214793514348397], [122.51953124999999, -24.36493813213397], [122.51953125000001, -25.961853583502375] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F0F", "fill": "#F0F", "stroke-width": 6, "fill-opacity": 0.5, "foo": "bar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [122.51953124999999, -24.36493813213397], [127.41938336121612, -27.71129801517406], [129.58210608948366, -24.623486932121974], [124.17689372322495, -21.50630775052635], [122.51953125, -23.897592937638223], [122.51953124999999, -24.36493813213397] ] ] } } ] } ================================================ FILE: packages/turf-unkink-polygon/test/out/hourglass.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#ff0000", "fill": "#F00", "stroke-width": 6, "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [2, 0], [1, 1], [0, 0] ] ] } }, { "type": "Feature", "properties": { "stroke": "#ff0000", "fill": "#00F", "stroke-width": 6, "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [0, 2], [2, 2], [1, 1] ] ] } } ] } ================================================ FILE: packages/turf-unkink-polygon/test/out/hourglassFeatureCollection.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#ff0000", "fill": "#F00", "stroke-width": 6, "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [1, 1], [2, 0], [0, 0] ] ] } }, { "type": "Feature", "properties": { "stroke": "#ff0000", "fill": "#00F", "stroke-width": 6, "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [2, 2], [0, 2], [1, 1] ] ] } }, { "type": "Feature", "properties": { "stroke": "#0000ff", "fill": "#0F0", "stroke-width": 6, "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [2, 2], [3, 1], [4, 2], [2, 2] ] ] } }, { "type": "Feature", "properties": { "stroke": "#0000ff", "fill": "#F0F", "stroke-width": 6, "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [3, 1], [4, 0], [2, 0], [3, 1] ] ] } } ] } ================================================ FILE: packages/turf-unkink-polygon/test/out/hourglassFeatureCollectionMultiPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#ff0000", "fill": "#F00", "stroke-width": 6, "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [2, 0], [1, 1], [0, 0] ] ] } }, { "type": "Feature", "properties": { "stroke": "#ff0000", "fill": "#00F", "stroke-width": 6, "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [0, 2], [2, 2], [1, 1] ] ] } }, { "type": "Feature", "properties": { "stroke": "#ff0000", "fill": "#0F0", "stroke-width": 6, "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [2, 2], [4, 2], [3, 1], [2, 2] ] ] } }, { "type": "Feature", "properties": { "stroke": "#ff0000", "fill": "#F0F", "stroke-width": 6, "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [3, 1], [2, 0], [4, 0], [3, 1] ] ] } }, { "type": "Feature", "properties": { "stroke": "#0000ff", "fill": "#FFF", "stroke-width": 6, "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [2, 2], [3, 3], [4, 2], [2, 2] ] ] } }, { "type": "Feature", "properties": { "stroke": "#0000ff", "fill": "#F00", "stroke-width": 6, "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [3, 3], [4, 4], [2, 4], [3, 3] ] ] } } ] } ================================================ FILE: packages/turf-unkink-polygon/test/out/hourglassMultiPolygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#ff0000", "fill": "#F00", "stroke-width": 6, "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [1, 1], [2, 0], [0, 0] ] ] } }, { "type": "Feature", "properties": { "stroke": "#ff0000", "fill": "#00F", "stroke-width": 6, "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [1, 1], [2, 2], [0, 2], [1, 1] ] ] } }, { "type": "Feature", "properties": { "stroke": "#ff0000", "fill": "#0F0", "stroke-width": 6, "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [2, 2], [3, 1], [4, 2], [2, 2] ] ] } }, { "type": "Feature", "properties": { "stroke": "#ff0000", "fill": "#F0F", "stroke-width": 6, "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [3, 1], [4, 0], [2, 0], [3, 1] ] ] } } ] } ================================================ FILE: packages/turf-unkink-polygon/test/out/issue-#1094.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "stroke-width": 6, "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-91.92218713423073, 42.750854798206724], [-91.9139393415105, 42.75096509455043], [-91.91403053661699, 42.74800278177934], [-91.91407345196123, 42.74679733206786], [-91.91410563846941, 42.74537912592471], [-91.91653571983723, 42.745359428388724], [-91.9165088977471, 42.74624187186039], [-91.91667519470603, 42.746249750763376], [-91.91669128796013, 42.74536730740387], [-91.91752277275486, 42.745359428388724], [-91.91750131508273, 42.74636399474419], [-91.91750667950076, 42.74737248420069], [-91.91857047641793, 42.74735355619808], [-91.91856615206176, 42.74748869579865], [-91.91859029194288, 42.746734301373], [-91.918995305504, 42.7463029333329], [-91.91905967852034, 42.7461453552181], [-91.9191481914178, 42.74588535045296], [-91.91914282699976, 42.74558594967556], [-91.91900871654907, 42.74558004043513], [-91.91898457666794, 42.745357458635716], [-91.92070119043696, 42.74535154937352], [-91.92096672912932, 42.745483522761845], [-91.92110352178906, 42.74550912950613], [-91.92127786537496, 42.745485492511776], [-91.92160241266565, 42.74565292102763], [-91.9217257942803, 42.745786863514724], [-91.92172311207129, 42.74599959510529], [-91.92183040043186, 42.746527481454386], [-91.92210935016931, 42.74716369671481], [-91.92166678568198, 42.747210969414716], [-91.92159704824762, 42.7472739996252], [-91.92226760050114, 42.74730157532212], [-91.92218713423073, 42.750854798206724] ] ] } } ] } ================================================ FILE: packages/turf-unkink-polygon/test/out/polygon-with-holes.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#F00", "fill": "#F00", "stroke-width": 6, "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [119.88281249999999, -36.244273184939075], [141.4599609375, -36.244273184939075], [141.4599609375, -16.383391123608387], [119.88281249999999, -16.383391123608387], [119.88281249999999, -36.244273184939075] ] ] } }, { "type": "Feature", "properties": { "stroke": "#00F", "fill": "#00F", "stroke-width": 6, "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [124.1455078125, -32.69486597787506], [124.1455078125, -21.002471054356715], [137.373046875, -21.002471054356715], [137.373046875, -32.69486597787506], [124.1455078125, -32.69486597787506] ] ] } }, { "type": "Feature", "properties": { "stroke": "#0F0", "fill": "#0F0", "stroke-width": 6, "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [137.197265625, -19.601194161263145], [137.197265625, -17.35063837604883], [139.70214843749997, -17.35063837604883], [139.70214843749997, -19.601194161263145], [137.197265625, -19.601194161263145] ] ] } }, { "type": "Feature", "properties": { "stroke": "#F0F", "fill": "#F0F", "stroke-width": 6, "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [128.232421875, -29.343875399418], [128.232421875, -24.607069137709694], [133.330078125, -24.607069137709694], [133.330078125, -29.343875399418], [128.232421875, -29.343875399418] ] ] } }, { "type": "Feature", "properties": { "stroke": "#FFF", "fill": "#FFF", "stroke-width": 6, "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [129.8583984375, -27.761329874505233], [132.01171875, -27.761329874505233], [132.01171875, -25.878994400196202], [129.8583984375, -25.878994400196202], [129.8583984375, -27.761329874505233] ] ] } } ] } ================================================ FILE: packages/turf-unkink-polygon/test/out/polygon.geojson ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "stroke": "#ff0000", "fill": "#F00", "stroke-width": 6, "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [0, 0], [2, 0], [1, 1], [0, 0] ] ] } } ] } ================================================ FILE: packages/turf-unkink-polygon/test.ts ================================================ import { Feature, FeatureCollection, Polygon } from "geojson"; import fs from "fs"; import path from "path"; import { fileURLToPath } from "url"; import test from "tape"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { featureEach } from "@turf/meta"; import { featureCollection } from "@turf/helpers"; import { kinks } from "@turf/kinks"; import { unkinkPolygon } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directories = { in: path.join(__dirname, "test", "in") + path.sep, out: path.join(__dirname, "test", "out") + path.sep, }; const fixtures = fs.readdirSync(directories.in).map((filename) => { const geojson: FeatureCollection | Feature = loadJsonFileSync(directories.in + filename); return { filename, geojson }; }); test("unkink-polygon", (t) => { for (const { filename, geojson } of fixtures) { const unkinked = unkinkPolygon(geojson); // Detect if kinks exists featureEach(unkinked, (feature) => { // Throw Error when Issue #1094 is fixed if (kinks(feature).features.length) t.skip(filename + " has kinks"); }); colorize(unkinked); if (process.env.REGEN) writeJsonFileSync(directories.out + filename, unkinked); const expected = loadJsonFileSync(directories.out + filename); t.deepEquals(unkinked, expected, path.parse(filename).name); } t.end(); }); test("issue #2504", (t) => { // fill coords with a circle with an arbitrary number of points const coords = []; const points = 1000000; for (let i = 0; i < points; i++) { const theta = (i / points) * (2 * Math.PI); coords.push([Math.sin(theta), Math.cos(theta)]); } coords.push(coords[0]); try { unkinkPolygon({ type: "Polygon", coordinates: [coords] }); t.pass( "large number of coordinates in a single ring should not cause an error" ); } catch (e: any) { t.fail(e); } t.end(); }); test("unkink-polygon -- throws", (t) => { var array = [1, 2, 3, 4, 5]; for (const value in array) { t.true(value !== "isUnique", "isUnique"); t.true(value !== "getUnique", "getUnique"); } // @ts-expect-error intentional non-existent function t.throws(() => Array.isUnique(), "isUnique()"); // @ts-expect-error intentional non-existent function t.throws(() => Array.getUnique(), "getUnique()"); t.end(); }); function colorize( features: FeatureCollection, colors = ["#F00", "#00F", "#0F0", "#F0F", "#FFF"], width = 6 ) { const results: Feature[] = []; featureEach(features, (feature, index) => { const color = colors[index % colors.length]; feature.properties = Object.assign( { stroke: color, fill: color, "stroke-width": width, "fill-opacity": 0.5, }, feature.properties ); results.push(feature); }); return featureCollection(results); } ================================================ FILE: packages/turf-unkink-polygon/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: packages/turf-unkink-polygon/types.ts ================================================ import { polygon, multiPolygon } from "@turf/helpers"; import { unkinkPolygon as unkink } from "./index.js"; const poly = polygon([ [ [20, 30], [10, 10], [20, 20], [20, 30], ], ]); const multiPoly = multiPolygon([ [ [ [20, 30], [10, 10], [20, 20], [20, 30], ], ], [ [ [0, 0], [10, 10], [20, 20], [0, 0], ], ], ]); unkink(poly); unkink(multiPoly); ================================================ FILE: packages/turf-voronoi/LICENSE ================================================ The MIT License (MIT) Copyright (c) 2017 TurfJS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: packages/turf-voronoi/README.md ================================================ # @turf/voronoi ## voronoi Takes a collection of points and a bounding box, and returns a collection of Voronoi polygons. The Voronoi algorithim used comes from the d3-voronoi package. ### Parameters * `points` **[FeatureCollection][1]<[Point][2]>** points around which to calculate the Voronoi polygons * `options` **[Object][3]** Optional parameters (optional, default `{}`) * `options.bbox` **[BBox][4]** clipping rectangle, in \[minX, minY, maxX, MaxY] order (optional, default `[-180,-85,180,-85]`) ### Examples ```javascript const options = { bbox: [-70, 40, -60, 60] }; const points = turf.randomPoint(100, options); const voronoiPolygons = turf.voronoi(points, options); //addToMap const addToMap = [voronoiPolygons, points]; ``` Returns **[FeatureCollection][1]<[Polygon][5]>** a set of polygons, one per input point [1]: https://tools.ietf.org/html/rfc7946#section-3.3 [2]: https://tools.ietf.org/html/rfc7946#section-3.1.2 [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object [4]: https://tools.ietf.org/html/rfc7946#section-5 [5]: https://tools.ietf.org/html/rfc7946#section-3.1.6 --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install @turf/voronoi ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: packages/turf-voronoi/bench.ts ================================================ import Benchmark, { Event } from "benchmark"; import { FeatureCollection, Point } from "geojson"; import path from "path"; import { fileURLToPath } from "url"; import fs from "fs"; import { loadJsonFileSync } from "load-json-file"; import { voronoi } from "./index.js"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const directory = path.join(__dirname, "test", "in") + path.sep; const fixtures = fs.readdirSync(directory).map((filename) => { return { filename, name: path.parse(filename).name, geojson: loadJsonFileSync(directory + filename) as FeatureCollection, }; }); /** * Benchmark Results * ninepoints x 22,169 ops/sec ±1.47% (88 runs sampled) * simple x 142,285 ops/sec ±3.02% (73 runs sampled) */ const suite = new Benchmark.Suite("turf-voronoi"); for (const { name, geojson } of fixtures) { suite.add(name, () => voronoi(geojson, { bbox: geojson.bbox })); } suite.on("cycle", (e: Event) => console.log(String(e.target))).run(); ================================================ FILE: packages/turf-voronoi/index.ts ================================================ import { BBox, Feature, FeatureCollection, Point, Polygon, Position, } from "geojson"; import { polygon, featureCollection, isObject } from "@turf/helpers"; import { collectionOf } from "@turf/invariant"; import { cloneProperties } from "@turf/clone"; import * as d3voronoi from "d3-voronoi"; /** * Creates a polygon from a list of coordinates. Ensures the polygon is closed. * * @private * @param {Position[]} coords representing a polygon * @returns {Feature} polygon */ function coordsToPolygon(coords: Position[]) { coords = coords.slice(); coords.push(coords[0]); return polygon([coords]); } /** * Takes a collection of points and a bounding box, and returns a collection * of Voronoi polygons. * * The Voronoi algorithim used comes from the d3-voronoi package. * * @function * @param {FeatureCollection} points points around which to calculate the Voronoi polygons * @param {Object} [options={}] Optional parameters * @param {BBox} [options.bbox=[-180, -85, 180, -85]] clipping rectangle, in [minX, minY, maxX, MaxY] order * @returns {FeatureCollection} a set of polygons, one per input point * @example * const options = { * bbox: [-70, 40, -60, 60] * }; * const points = turf.randomPoint(100, options); * const voronoiPolygons = turf.voronoi(points, options); * * //addToMap * const addToMap = [voronoiPolygons, points]; */ function voronoi( points: FeatureCollection, options?: { bbox?: BBox } ): FeatureCollection { // Optional params options = options || {}; if (!isObject(options)) throw new Error("options is invalid"); const bbox = options.bbox || [-180, -85, 180, 85]; // Input Validation if (!points) throw new Error("points is required"); if (!Array.isArray(bbox)) throw new Error("bbox is invalid"); collectionOf(points, "Point", "points"); // Main return featureCollection( d3voronoi .voronoi>() .x((feature) => feature.geometry.coordinates[0]) .y((feature) => feature.geometry.coordinates[1]) .extent([ [bbox[0], bbox[1]], [bbox[2], bbox[3]], ]) .polygons(points.features) .map(function (coords, index) { return Object.assign(coordsToPolygon(coords), { properties: cloneProperties(points.features[index].properties), }); }) ); } export { voronoi }; export default voronoi; ================================================ FILE: packages/turf-voronoi/package.json ================================================ { "name": "@turf/voronoi", "version": "7.3.4", "description": "Takes a collection of points and a bounding box, and returns a collection of Voronoi polygons.", "author": "Turf Authors", "contributors": [ "Philippe Riviere <@Fil>", "Mike Bostock <@mbostock>", "Steve Bennett <@stevage1>", "Denis Carriere <@DenisCarriere>" ], "license": "MIT", "bugs": { "url": "https://github.com/Turfjs/turf/issues" }, "homepage": "https://github.com/Turfjs/turf", "repository": { "type": "git", "url": "git://github.com/Turfjs/turf.git" }, "funding": "https://opencollective.com/turf", "publishConfig": { "access": "public" }, "keywords": [ "turf", "geometry", "voronoi", "polygons", "points" ], "type": "module", "main": "dist/cjs/index.cjs", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/esm/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/index.d.cts", "default": "./dist/cjs/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "scripts": { "bench": "tsx bench.ts", "build": "tsup --config ../../tsup.config.ts", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, "devDependencies": { "@types/benchmark": "^2.1.5", "@types/tape": "^5.8.1", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "tape": "^5.9.0", "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/clone": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@types/d3-voronoi": "^1.1.12", "@types/geojson": "^7946.0.10", "d3-voronoi": "1.1.2", "tslib": "^2.8.1" } } ================================================ FILE: packages/turf-voronoi/test/in/ninepoints.json ================================================ { "type": "FeatureCollection", "bbox": [143, -38, 146, -35], "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [144.33837890625, -37.14280344371683] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [144.931640625, -37.35269280367274] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [145.140380859375, -36.456636011596196] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [145.469970703125, -36.77409249464194] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [145.755615234375, -37.090239803072066] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [145.4150390625, -37.52715361723378] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [145.887451171875, -37.483576550426996] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [144.60205078125, -36.57142382346275] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [144.86572265625, -37.596824001083654] } } ] } ================================================ FILE: packages/turf-voronoi/test/in/simple.json ================================================ { "type": "FeatureCollection", "bbox": [140, -40, 160, -30], "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [145, -37] } } ] } ================================================ FILE: packages/turf-voronoi/test/in/with-properties.json ================================================ { "type": "FeatureCollection", "bbox": [143, -38, 146, -35], "features": [ { "type": "Feature", "properties": { "property1": 1, "property2": 2 }, "geometry": { "type": "Point", "coordinates": [144.33837890625, -37.14280344371683] } }, { "type": "Feature", "properties": { "property1": 1 }, "geometry": { "type": "Point", "coordinates": [144.931640625, -37.35269280367274] } }, { "type": "Feature", "properties": { "stringProperty": "string" }, "geometry": { "type": "Point", "coordinates": [145.140380859375, -36.456636011596196] } }, { "type": "Feature", "properties": { "multiLevelProperty": { "property1": 1 } }, "geometry": { "type": "Point", "coordinates": [145.469970703125, -36.77409249464194] } }, { "type": "Feature", "properties": { "floatProperty": 1.1 }, "geometry": { "type": "Point", "coordinates": [145.755615234375, -37.090239803072066] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [145.4150390625, -37.52715361723378] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [145.887451171875, -37.483576550426996] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [144.60205078125, -36.57142382346275] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [144.86572265625, -37.596824001083654] } } ] } ================================================ FILE: packages/turf-voronoi/test/in/world.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-77.6953125, 59.5343180010956] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-78.75, 41.244772343082076] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-1.7578125, 65.80277639340238] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [31.289062500000004, 32.84267363195431] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [72.0703125, 60.06484046010452] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [-29.8828125, 1.0546279422758869] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [81.9140625, 12.554563528593656] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Point", "coordinates": [50.625, -4.214943141390639] } } ] } ================================================ FILE: packages/turf-voronoi/test/out/ninepoints.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [143, -36.17865921750102], [144.7306872649525, -36.97731260260012], [144.58469067823404, -37.38997746052463], [144.05948693381836, -38], [143, -38], [143, -36.17865921750102] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.58469067823404, -37.38997746052463], [144.7306872649525, -36.97731260260012], [144.9502509842771, -36.88468636726737], [145.02826439034735, -36.902859896834244], [145.28197625539775, -37.13891325365974], [145.13749583645568, -37.53924080856172], [144.58469067823404, -37.38997746052463] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [146, -35.89398200640089], [145.02826439034735, -36.902859896834244], [144.9502509842771, -36.88468636726737], [144.54837968093918, -35], [146, -35], [146, -35.89398200640089] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.02826439034735, -36.902859896834244], [146, -35.89398200640089], [146, -36.58231923105632], [145.37634807465002, -37.145797192532186], [145.28197625539775, -37.13891325365974], [145.02826439034735, -36.902859896834244] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.37634807465002, -37.145797192532186], [146, -36.58231923105632], [146, -37.22709115402949], [145.63680507441603, -37.348824340099675], [145.37634807465002, -37.145797192532186] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.13749583645568, -37.53924080856172], [145.28197625539775, -37.13891325365974], [145.37634807465002, -37.145797192532186], [145.63680507441603, -37.348824340099675], [145.69687188417421, -38], [145.1959341358453, -38], [145.13749583645568, -37.53924080856172] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.63680507441603, -37.348824340099675], [146, -37.22709115402949], [146, -38], [145.69687188417421, -38], [145.63680507441603, -37.348824340099675] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.54837968093918, -35], [144.9502509842771, -36.88468636726737], [144.7306872649525, -36.97731260260012], [143, -36.17865921750102], [143, -35], [144.54837968093918, -35] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.05948693381836, -38], [144.58469067823404, -37.38997746052463], [145.13749583645568, -37.53924080856172], [145.1959341358453, -38], [144.05948693381836, -38] ] ] } } ] } ================================================ FILE: packages/turf-voronoi/test/out/simple.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [140, -40], [140, -30], [160, -30], [160, -40], [140, -40] ] ] } } ] } ================================================ FILE: packages/turf-voronoi/test/out/with-properties.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "property1": 1, "property2": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [143, -36.17865921750102], [144.7306872649525, -36.97731260260012], [144.58469067823404, -37.38997746052463], [144.05948693381836, -38], [143, -38], [143, -36.17865921750102] ] ] } }, { "type": "Feature", "properties": { "property1": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [144.58469067823404, -37.38997746052463], [144.7306872649525, -36.97731260260012], [144.9502509842771, -36.88468636726737], [145.02826439034735, -36.902859896834244], [145.28197625539775, -37.13891325365974], [145.13749583645568, -37.53924080856172], [144.58469067823404, -37.38997746052463] ] ] } }, { "type": "Feature", "properties": { "stringProperty": "string" }, "geometry": { "type": "Polygon", "coordinates": [ [ [146, -35.89398200640089], [145.02826439034735, -36.902859896834244], [144.9502509842771, -36.88468636726737], [144.54837968093918, -35], [146, -35], [146, -35.89398200640089] ] ] } }, { "type": "Feature", "properties": { "multiLevelProperty": { "property1": 1 } }, "geometry": { "type": "Polygon", "coordinates": [ [ [145.02826439034735, -36.902859896834244], [146, -35.89398200640089], [146, -36.58231923105632], [145.37634807465002, -37.145797192532186], [145.28197625539775, -37.13891325365974], [145.02826439034735, -36.902859896834244] ] ] } }, { "type": "Feature", "properties": { "floatProperty": 1.1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [145.37634807465002, -37.145797192532186], [146, -36.58231923105632], [146, -37.22709115402949], [145.63680507441603, -37.348824340099675], [145.37634807465002, -37.145797192532186] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.13749583645568, -37.53924080856172], [145.28197625539775, -37.13891325365974], [145.37634807465002, -37.145797192532186], [145.63680507441603, -37.348824340099675], [145.69687188417421, -38], [145.1959341358453, -38], [145.13749583645568, -37.53924080856172] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [145.63680507441603, -37.348824340099675], [146, -37.22709115402949], [146, -38], [145.69687188417421, -38], [145.63680507441603, -37.348824340099675] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.54837968093918, -35], [144.9502509842771, -36.88468636726737], [144.7306872649525, -36.97731260260012], [143, -36.17865921750102], [143, -35], [144.54837968093918, -35] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [144.05948693381836, -38], [144.58469067823404, -37.38997746052463], [145.13749583645568, -37.53924080856172], [145.1959341358453, -38], [144.05948693381836, -38] ] ] } } ] } ================================================ FILE: packages/turf-voronoi/test/out/world.json ================================================ { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-41.56996973938402, 85], [-38.52398617447919, 48.100274906530274], [-180, 56.25865423806812], [-180, 85], [-41.56996973938402, 85] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-180, 56.25865423806812], [-38.52398617447919, 48.100274906530274], [-36.7431204146418, 42.51705440603022], [-141.6177610228591, -85], [-180, -85], [-180, 56.25865423806812] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [36.871239164004564, 85], [35.7322116127175, 70.34450916934847], [-5.540315755817815, 28.96332494600883], [-36.7431204146418, 42.51705440603022], [-38.52398617447919, 48.100274906530274], [-41.56996973938402, 85], [36.871239164004564, 85] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-5.540315755817815, 28.96332494600883], [35.7322116127175, 70.34450916934847], [60.7037698542609, 32.93487176070357], [56.489203502863305, 22.418247908629482], [10.366680994657429, -1.6475788146525692], [-5.540315755817815, 28.96332494600883] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [35.7322116127175, 70.34450916934847], [36.871239164004564, 85], [180, 85], [180, 57.65209852438559], [60.7037698542609, 32.93487176070357], [35.7322116127175, 70.34450916934847] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [-141.6177610228591, -85], [-36.7431204146418, 42.51705440603022], [-5.540315755817815, 28.96332494600883], [10.366680994657429, -1.6475788146525692], [4.910918497247953, -85], [-141.6177610228591, -85] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [56.489203502863305, 22.418247908629482], [60.7037698542609, 32.93487176070357], [180, 57.65209852438559], [180, -85], [114.06047242298075, -85], [56.489203502863305, 22.418247908629482] ] ] } }, { "type": "Feature", "properties": {}, "geometry": { "type": "Polygon", "coordinates": [ [ [4.910918497247953, -85], [10.366680994657429, -1.6475788146525692], [56.489203502863305, 22.418247908629482], [114.06047242298075, -85], [4.910918497247953, -85] ] ] } } ] } ================================================ FILE: packages/turf-voronoi/test.ts ================================================ import test from "tape"; import { glob } from "glob"; import path from "path"; import { fileURLToPath } from "url"; import { loadJsonFileSync } from "load-json-file"; import { writeJsonFileSync } from "write-json-file"; import { voronoi } from "./index.js"; import { FeatureCollection, Point } from "geojson"; const __dirname = path.dirname(fileURLToPath(import.meta.url)); test("turf-voronoi", (t) => { glob .sync(path.join(__dirname, "test", "in", "*.json")) .forEach((filepath) => { const { name } = path.parse(filepath); const geojson = loadJsonFileSync(filepath) as FeatureCollection; const results = voronoi(geojson, { bbox: geojson.bbox }); const out = filepath.replace( path.join("test", "in"), path.join("test", "out") ); if (process.env.REGEN) writeJsonFileSync(out, results); t.deepEqual(results, loadJsonFileSync(out), name); }); t.end(); }); ================================================ FILE: packages/turf-voronoi/tsconfig.json ================================================ { "extends": "../../tsconfig.shared.json" } ================================================ FILE: pnpm-workspace.yaml ================================================ packages: - "packages/*" ================================================ FILE: releases/4.1.0.md ================================================ # New minor Release! Turf 4.1.0 🎉 **Note:** GitHub Milestones are now used to track TurfJS releases ([4.1.0 Milestone](https://github.com/Turfjs/turf/milestone/5?closed=1)) ## New Modules - [`@turf/line-arc`](https://github.com/Turfjs/turf/pull/657) - [`@turf/polygon-to-linestring`](https://github.com/Turfjs/turf/pull/646) - [`@turf/bbox-clip`](https://github.com/Turfjs/turf/pull/652) - [`@turf/line-overlap`](https://github.com/Turfjs/turf/pull/640) ## Enhancements - added centered param to point-grid (PR: https://github.com/Turfjs/turf/pull/650) - Single `module.export` helpers, invariant & meta (Commit: https://github.com/Turfjs/turf/commit/9cebb2100cf545fec49488c80140909ab54358b5) ## Bug Fixes - Turf.invariant fails on string value as coordinate (PR: https://github.com/Turfjs/turf/pull/643) - Handle precision=0 turf-truncate (PR: https://github.com/Turfjs/turf/pull/641) - Added `radiansToDistance`, `distanceToRadians` & `distanceToDegrees` to Turf core library from `@turf/helpers`. (Commit: https://github.com/Turfjs/turf/commit/a88d77a3e7f76860b3c138a716da8b603a407c8e) - Removed process.hrtime in `@turf/polygon-unkink`(issue: https://github.com/mclaeysb/simplepolygon/issues/5) CC: @Turfjs/ownership ================================================ FILE: releases/4.2.0.md ================================================ # New minor Release! Turf 4.2.0 🎉 TurfJS releases are being tracked using [Milestones](https://github.com/Turfjs/turf/milestone/6?closed=1). ## Contributors - @rowanwins - @stebogit - @DenisCarriere ## New Modules - [`@turf/sector`](https://github.com/Turfjs/turf/pull/653) - [`@turf/linestring-to-polygon`](https://github.com/Turfjs/turf/pull/672) ## Enhancements - [Add mutate param to `@turf/flip`](https://github.com/Turfjs/turf/issues/693) - [Add Geometry & GeometryCollection support to `@turf/truncate`](https://github.com/Turfjs/turf/pull/677) - [`@turf/inside` performance increase](https://github.com/Turfjs/turf/pull/675) - [Add properties param to `@turf/circle`](https://github.com/Turfjs/turf/pull/668) - [Added `bearingToAngle` method to turf-helpers](https://github.com/Turfjs/turf/pull/663) ## Bug Fixes - [Fix `@turf/buffer` points in high latitudes](https://github.com/Turfjs/turf/pull/667) - [lineIntersect returns the same point several times](https://github.com/Turfjs/turf/issues/688) - [`@turf/flip` incorrect if z-elevation is present](https://github.com/Turfjs/turf/issues/669) ## Changes - [Change output types `@turf/polygon-to-linestring`](https://github.com/Turfjs/turf/pull/686) ## Documentation - [Update JSDocs examples](https://github.com/Turfjs/turf/pull/670/files) - [Include many more AddToMap to modules](https://github.com/Turfjs/turf/pull/664) CC: @Turfjs/ownership ================================================ FILE: releases/4.3.0.md ================================================ # New minor Release! Turf 4.3.1 🎉 TurfJS releases are being tracked using [Milestones](https://github.com/Turfjs/turf/milestone/6?closed=1). ## Contributors - @chrisveness - @dpmcmlxxvi - @stebogit - @rowanwins - @AbelVM - @morganherlocker - @DenisCarriere - @RaumZeit - @Tgroup ## 🚀 New Modules - [Rhumb Line](https://en.wikipedia.org/wiki/Rhumb_line) Modules (https://github.com/Turfjs/turf/pull/728) - [`@turf/rhumb-bearing`](https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-bearing) - [`@turf/rhumb-distance`](https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-distance) - [`@turf/rhumb-destination`](https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-destination) - [`@turf/polygon-tangents`](https://github.com/Turfjs/turf/tree/master/packages/turf-polygon-tangents) Finds the tangents of a (Multi)Polygon from a Point. (https://github.com/Turfjs/turf/pull/708) - [`@turf/rewind`](https://github.com/Turfjs/turf/tree/master/packages/turf-rewind) Rewind LineString or Polygon outer ring ~clockwise~ counter-clockwise and inner rings ~counterclockwise~ clockwise (https://github.com/Turfjs/turf/pull/700 & https://github.com/Turfjs/turf/issues/66) - [`@turf/isobands`](https://github.com/Turfjs/turf/tree/master/packages/turf-isobands) - Takes a grid FeatureCollection of Point features with z-values and an array of value breaks and generates filled contour isobands. (https://github.com/Turfjs/turf/pull/619) ## 🏅 New Features - New function [convertDistance](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers#convertdistance) to [`@turf/helpers`](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers) (https://github.com/Turfjs/turf/pull/732) - Add ignoreBoundary param [`@turf/inside`](https://github.com/Turfjs/turf/tree/master/packages/turf-inside) (https://github.com/Turfjs/turf/pull/706) - Add [flattenEach](https://github.com/Turfjs/turf/tree/master/packages/turf-meta#flatteneach)/[flattenReduce](https://github.com/Turfjs/turf/tree/master/packages/turf-meta#flattenreduce) to [`@turf/meta`](https://github.com/Turfjs/turf/tree/master/packages/turf-meta). (https://github.com/Turfjs/turf/pull/712 & https://github.com/Turfjs/turf/issues/692) - New Feature [`getGeom`](https://github.com/Turfjs/turf/tree/master/packages/turf-invariant#getgeom) & [`getGeomType`](https://github.com/Turfjs/turf/tree/master/packages/turf-invariant#getgeomtype) in [`@turf/invariant`](https://github.com/Turfjs/turf/tree/master/packages/turf-invariant) (https://github.com/Turfjs/turf/pull/720) - Adds [`round()`](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers#round), [`radians2degrees()`](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers#radians2degrees) and [`degrees2radians()`](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers#degrees2radians) to [`turf-helpers`](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers) (https://github.com/Turfjs/turf/pull/715) - **⭐️ New** Add FeatureCollection & GeometryCollection support to [`@turf/rewind`](https://github.com/Turfjs/turf/tree/master/packages/turf-rewind) (https://github.com/Turfjs/turf/pull/741) ## 🐛 Bug Fixes - Fix [`@turf/circle`](https://github.com/Turfjs/turf/tree/master/packages/turf-circle) translate properties (https://github.com/Turfjs/turf/pull/717) - Apply equidistance [`@turf/buffer`](https://github.com/Turfjs/turf/tree/master/packages/turf-buffer) to polygons (https://github.com/Turfjs/turf/issues/660 & https://github.com/Turfjs/turf/pull/718) - Fix jsts empty (Multi)Polygon error [`@turf/difference`](https://github.com/Turfjs/turf/tree/master/packages/turf-difference) (https://github.com/Turfjs/turf/pull/725) - Support Geometry Objects & Collection (https://github.com/Turfjs/turf/issues/710) - [`@turf/line-intersect`](https://github.com/Turfjs/turf/tree/master/packages/turf-line-intersect) (https://github.com/Turfjs/turf/pull/731) - [`@turf/line-chunk`](https://github.com/Turfjs/turf/tree/master/packages/turf-line-chunk) (https://github.com/Turfjs/turf/pull/726) - [`@turf/line-segment`](https://github.com/Turfjs/turf/tree/master/packages/turf-line-segment) (https://github.com/Turfjs/turf/pull/727 & https://github.com/Turfjs/turf/pull/711) - [`@turf/line-overlap`](https://github.com/Turfjs/turf/tree/master/packages/turf-line-overlap) (https://github.com/Turfjs/turf/pull/711) - **New** Reverse winding - Polygon CCW & Polygon CW [`@turf/rewind`](https://github.com/Turfjs/turf/tree/master/packages/turf-rewind) (https://github.com/Turfjs/turf/pull/741) - **⭐️ New** Fix Feature GeometryCollection to [`@turf/buffer`](https://github.com/Turfjs/turf/tree/master/packages/turf-buffer) (https://github.com/Turfjs/turf/pull/739) - **⭐️ New** Re-enable negative `radius` to [`@turf/buffer`](https://github.com/Turfjs/turf/tree/master/packages/turf-buffer) (https://github.com/Turfjs/turf/pull/736) Twitter: https://twitter.com/DenisCarriere/status/862854876484829185 CC: @Turfjs/ownership ================================================ FILE: releases/4.4.0.md ================================================ # New minor release! Turf 4.4.0 🎉 TurfJS releases are being tracked using [Milestones](https://github.com/Turfjs/turf/milestone/8?closed=1). ## Contributors - @stebogit - @dpmcmlxxvi - @rowanwins - @NickCis - @morganherlocker - @DenisCarriere ## 🚀 New Modules - [`@turf/line-offset`](https://github.com/Turfjs/turf/tree/master/packages/turf-line-offset) Adds a new lineOffset module as per this issue. Basically takes an input line and returns a new line offset by the distance. (PR https://github.com/Turfjs/turf/pull/729 - Author @rowanwins) - [`@turf/polygonize`](https://github.com/Turfjs/turf/tree/master/packages/turf-polygonize) Polygonizes (Multi)LineString(s) into Polygons. Implementation of GEOSPolygonize function (geos::operation::polygonize::Polygonizer). (PR https://github.com/Turfjs/turf/pull/767 - Author @NickCis) - [`@turf/transform-rotate`](https://github.com/Turfjs/turf/tree/master/packages/turf-transform-rotate) Rotates any geojson Feature or Geometry of a specified angle, around its centroid or a given pivot point; all rotations follow the right-hand rule. (Issue https://github.com/Turfjs/turf/issues/747 - Author @stebogit) - [`@turf/transform-translate`](https://github.com/Turfjs/turf/tree/master/packages/turf-transform-translate) Moves any geojson Feature or Geometry of a specified distance along a Rhumb Line on the provided direction angle. (Issue https://github.com/Turfjs/turf/issues/747 - Author @stebogit) - [`@turf/transform-scale`](https://github.com/Turfjs/turf/tree/master/packages/turf-transform-scale) Scale a GeoJSON from a given point by a factor of scaling (ex: factor=2 would make the GeoJSON 200% larger). If a FeatureCollection is provided, the origin point will be calculated based on each individual Feature. (Issue https://github.com/Turfjs/turf/issues/747 - Author @stebogit) ## 🏅 New Features - Support z-coordinate as input for [`@turf/turf-tin`](https://github.com/Turfjs/turf/tree/master/packages/turf-tin) (PR https://github.com/Turfjs/turf/pull/772) - Adds properties parameter to [`@turf/centroid`](https://github.com/Turfjs/turf/tree/master/packages/turf-centroid) and [`@turf/center`](https://github.com/Turfjs/turf/tree/master/packages/turf-center) (PR https://github.com/Turfjs/turf/pull/769) - Include Yarn.lock for all modules & Lerna uses Yarn (Issue https://github.com/Turfjs/turf/issues/704, https://github.com/Turfjs/turf/issues/765, PR https://github.com/Turfjs/turf/pull/766) - Use `Tap` at root which enables code coverage reports (Issue https://github.com/Turfjs/turf/issues/328 & PR https://github.com/Turfjs/turf/pull/762) - Support z-coordinate as input for [`@turf/pointplane`](https://github.com/Turfjs/turf/tree/master/packages/turf-planepoint) (PR https://github.com/Turfjs/turf/pull/754) - Add core tests - file management & package.json rules (PR https://github.com/Turfjs/turf/pull/749 & https://github.com/Turfjs/turf/pull/756) ## 🐛 Bug Fixes - Website http://turfjs.org is back up and running (Issue https://github.com/Turfjs/turf/issues/777) - [`@turf/rhumb-destination`](https://github.com/Turfjs/turf/tree/master/packages/turf-planepoint) issue at 180th meridian (Issue https://github.com/Turfjs/turf/issues/770 & PR https://github.com/Turfjs/turf/pull/771) - Getting too large numbers for Longitude (Issue https://github.com/Turfjs/turf/issues/758 & PR https://github.com/Turfjs/turf/pull/763) - Throw error if FeatureCollection not array #751 (PR https://github.com/Turfjs/turf/pull/760) - Change default param coordinates to 3 @turf/truncate (PR https://github.com/Turfjs/turf/pull/757) - along returns a point that is not found by [`@turf/point-on-line`](https://github.com/Turfjs/turf/tree/master/packages/turf-point-on-line) (Issue https://github.com/Turfjs/turf/issues/691) - Fix location of intersect point for [`@turf/point-on-line`](https://github.com/Turfjs/turf/tree/master/packages/turf-point-on-line). (PR https://github.com/Turfjs/turf/pull/750) - Handle empty geometries as undefined [`@turf/buffer`](https://github.com/Turfjs/turf/tree/master/packages/turf-buffer) (PR https://github.com/Turfjs/turf/pull/746) Twitter: https://twitter.com/DenisCarriere/status/871909188787724288 CC: @Turfjs/ownership ================================================ FILE: releases/4.5.0.md ================================================ # New minor release! Turf 4.5.2 🎉 TurfJS releases are being tracked using [Milestones](https://github.com/Turfjs/turf/milestone/9?closed=1). ## Contributors - @wnordmann - @rowanwins - @stebogit - @mcdeurloo - @NickCis - @dpmcmlxxvi - @morganherlocker - @DenisCarriere ## 🚀 New Modules - [`@turf/clusters`](https://github.com/Turfjs/turf/tree/master/packages/turf-clusters) Takes a set of points and partition them into clusters using the [k-means clustering](https://en.wikipedia.org/wiki/K-means_clustering) algorithm. (PR https://github.com/Turfjs/turf/pull/787 - Author @stebogit ) - [`@turf/boolean-disjoint`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-disjoint) Boolean-disjoint returns (TRUE) if the intersection of the two geometries is an empty set. (PR https://github.com/Turfjs/turf/pull/805 - Author @rowanwins) - [`@turf/boolean-contains`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-contains) Boolean-contains returns True if the second geometry is completely contained by the first geometry. The interiors of both geometries must intersect and, the interior and boundary of the secondary (geometry b) must not intersect the exterior of the primary (geometry a). Boolean-contains returns the exact opposite result of the `@turf/boolean-within`. (PR https://github.com/Turfjs/turf/pull/797 - Author @rowanwins) - [`@turf/boolean-crosses`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-crosses) Boolean-Crosses returns True if the intersection results in a geometry whose dimension is one less than the maximum dimension of the two source geometries and the intersection set is interior to both source geometries. Boolean-Crosses returns t (TRUE) for only multipoint/polygon, multipoint/linestring, linestring/linestring, linestring/polygon, and linestring/multipolygon comparisons. (PR https://github.com/Turfjs/turf/pull/796 - Author @rowanwins) - [`@turf/boolean-clockwise`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-clockwise) Takes a ring and return true or false whether or not the ring is clockwise or counter-clockwise. (PR https://github.com/Turfjs/turf/pull/789 - Authors @morganherlocker @stebogit) - [`@turf/clone`](https://github.com/Turfjs/turf/tree/master/packages/turf-clone) Prevents GeoJSON coordinates from being mutated, similar to `JSON.parse(JSON.stringify(geojson))`. Only cloning the coordinates can be 3x-20x faster than the **parse + stringify** approach. (PR https://github.com/Turfjs/turf/pull/824 - Author @DenisCarriere) ## 🏅 New Features/Enhancements - [`convertArea`](https://github.com/Turfjs/turf/tree/master/packages/turf-helpers#convertarea) Converts a area to the requested unit. (PR https://github.com/Turfjs/turf/pull/821 - Author @wnordmann) - Adds mask option to `@turf/point-grid` (PR https://github.com/Turfjs/turf/pull/791) - New @turf/isolines based on MarchingSquares.js (PR https://github.com/Turfjs/turf/pull/781) - Use ES6 modules / Add module.js to @turf/turf (PR https://github.com/Turfjs/turf/pull/793) - Create-new-module script (PR https://github.com/Turfjs/turf/pull/823) ## 🐛 Bug Fixes - Buffer - Drop circle buffer operation (PR https://github.com/Turfjs/turf/pull/786) - Fixes `@turf/idw` bad property name #774 (PR https://github.com/Turfjs/turf/pull/800) - Fix for @turf/polygon-tangents - Resolves #785 (PR https://github.com/Turfjs/turf/pull/792) Twitter: https://twitter.com/DenisCarriere/status/880839653242408961 CC: @Turfjs/ownership Ref: https://github.com/Turfjs/turf/issues/825 ================================================ FILE: releases/4.6.0.md ================================================ # New minor release! Turf 4.6.0 🎉 TurfJS releases are being tracked using [Milestones](https://github.com/Turfjs/turf/milestone/10?closed=1). ## Contributors - @stebogit - @rowanwins - @DenisCarriere - @grundid - @tcql - @thiagoxvo - @andrewharvey ## 🚀 New Modules - [`@turf/clean-coords`](https://github.com/Turfjs/turf/tree/master/packages/turf-clean-coords) Removes redundant coordinates from any GeoJSON Geometry. (PR https://github.com/Turfjs/turf/pull/875 - Author @stebogit) - [`@turf/interpolate`](https://github.com/Turfjs/turf/tree/master/packages/turf-interpolate) Takes a set of points and estimates their 'property' values on a grid using the [Inverse Distance Weighting (IDW) method.](https://en.wikipedia.org/wiki/Inverse_distance_weighting). (PR https://github.com/Turfjs/turf/pull/832 - Author @stebogit) - [`@turf/clusters-dbscan`](https://github.com/Turfjs/turf/tree/master/packages/turf-clusters-dbscan) Takes a set of Points and partition them into clusters according to [DBSCAN's](https://en.wikipedia.org/wiki/DBSCAN) data clustering algorithm. (PR https://github.com/Turfjs/turf/pull/812 and https://github.com/Turfjs/turf/pull/851 - Author @DenisCarriere) > special mention to [this incredibly instructive and fun interactive map](https://github.com/DenisCarriere/turf-example-clusters-dbscan) by @DenisCarriere 😎👏 - [`@turf/clusters`](https://github.com/Turfjs/turf/tree/master/packages/turf-clusters) Provides `getCluster`, `clusterEach`, and `clusterReduce` functions. (PR https://github.com/Turfjs/turf/pull/847 - Author @DenisCarriere) - [`@turf/boolean-point-on-line`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-point-on-line) Returns true if a point is on a line. Accepts a optional parameter to ignore the start and end vertices of the linestring. (PR https://github.com/Turfjs/turf/pull/858 - Author @rowanwins) - [`@turf/boolean-overlap`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-overlap) Takes two features and returns true or false whether or not they overlap, i.e. whether any pair of edges on the two polygons intersect. If there are any edge intersections, the polygons overlap. (PR https://github.com/Turfjs/turf/pull/856 and https://github.com/Turfjs/turf/pull/868 - Author @stebogit @tcql) - [`@turf/boolean-equal`](https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-equal) Determine whether two geometries of the same type have identical X,Y coordinate values. (PR https://github.com/Turfjs/turf/pull/869 - Author @stebogit @tcql) ## 🏅 New Features/Enhancements - Sets `centered` param default to `true` in [`@turf/point-grid`](https://github.com/Turfjs/turf/tree/master/packages/turf-point-grid) (PR https://github.com/Turfjs/turf/pull/836 - Contributor @stebogit) - Adds `MultiLineString` support for [`@turf/point-on-line`](https://github.com/Turfjs/turf/tree/master/packages/turf-point-on-line) (PR https://github.com/Turfjs/turf/pull/838 - Contributor @stebogit) - Renames `@turf/clusters` => `@turf/clusters-kmeans`, plus adds deprecated warning message to `@turf/clusters@4.5.2` (See Issue https://github.com/Turfjs/turf/issues/845) - Changes output type of `@turf/clusters-kmeans` (See Issue https://github.com/Turfjs/turf/issues/850 - Contributor @DenisCarriere) - Adds `segmentEach` and `segmentReduce` functions to `@turf/meta` (See Issue https://github.com/Turfjs/turf/issues/850 - Contributor @DenisCarriere) - Adds tests and linting on JSDoc in TurfJS core from `turf-www`; see Issue https://github.com/Turfjs/turf/issues/859 (PR https://github.com/Turfjs/turf/issues/857 + https://github.com/Turfjs/turf/issues/864 + https://github.com/Turfjs/turf/issues/870 - Contributor @DenisCarriere @stebogit) - Introduces `null` Geometry support across TurfJS modules (See Issue https://github.com/Turfjs/turf/issues/853) (PR https://github.com/Turfjs/turf/issues/866 - Contributor @DenisCarriere) - Includes feature(Sub)Index in `coordEach`/`coordReduce` (@turf/meta) 🎉 (PR https://github.com/Turfjs/turf/issues/872 - Contributor @DenisCarriere) - Adds `bbox` and `id` params plus `geometry` method to `@turf/helpers` (PR https://github.com/Turfjs/turf/issues/877 - Contributor @DenisCarriere) ## 🐛 Bug Fixes - Applies `@turf/truncate` to [`@turf/line-split`](https://github.com/Turfjs/turf/tree/master/packages/turf-line-split) `splitter` input to avoid approximation errors. Fixed #852 (PR https://github.com/Turfjs/turf/pull/855) - Fixes `@turf-mask` error (See Issue https://github.com/Turfjs/turf/issues/837) (PR https://github.com/Turfjs/turf/pull/865 - Contributor @thiagoxvo) - Fixes `create-new-module` script error on `LICENSE` file creation (See Issue https://github.com/Turfjs/turf/issues/861) (commit [df6986e](https://github.com/Turfjs/turf/commit/df6986ec0a5c353babb60836ec97c21923913e79)) - Fixes `@turf/isobands` error on `commonProperties` (See Issue https://github.com/Turfjs/turf/issues/831) (commit [1663f07](https://github.com/Turfjs/turf/commit/1663f077c075c8902dbeff4acf68b1c8e0151853)) Twitter: CC: @Turfjs/ownership ================================================ FILE: releases/4.7.0.md ================================================ # New minor release! Turf 4.7.0 🎉 TurfJS releases are being tracked using [Milestones](https://github.com/Turfjs/turf/milestone/11?closed=1). ## Contributors - @stebogit - @rowanwins - @DenisCarriere - @tjdett - @vicvolk ## 🚀 New Modules ### [`@turf/projection`][projection] - **toMercator**: Converts a WGS84 GeoJSON object into Mercator (EPSG:900913) projection - **toWgs84**: Converts a Mercator (EPSG:900913) GeoJSON object into WGS84 projection (PR https://github.com/Turfjs/turf/pull/927 - Author @stebogit) ### [`@turf/point-to-line-distance`][point-to-line-distance] Returns the minimum distance between a {@link Point} and a {@link LineString}, being the distance from a line the minimum distance between the point and any segment of the `LineString`. (PR https://github.com/Turfjs/turf/pull/925 - Author @stebogit) ### [`@turf/boolean-within`][boolean-within] Boolean-within returns true if the first geometry is completely within the second geometry. The interiors of both geometries must intersect and, the interior and boundary of the primary (geometry a) must not intersect the exterior of the secondary (geometry b). Boolean-within returns the exact opposite result of the [`@turf/boolean-contains`][boolean-contains]. (PR https://github.com/Turfjs/turf/pull/924 - Author @rowanwins) ## 🏅 New Features/Enhancements - Updates [`@turf/unkink-polygon`][unkink-polygon] testing & added `flattenEach` instead of using `flatten`. (PR https://github.com/Turfjs/turf/pull/889) - [`@turf/concave`][concave] refactoring, replacing [`@turf/union`][union] with `geojson-dissolve` to increase speed and added support to `null` geometries (PR https://github.com/Turfjs/turf/pull/907 - Contributor @stebogit @DenisCarriere) - Adds doc note on [`@turf/polygonize`][polygonize] about "Edges must be correctly noded" (PR https://github.com/Turfjs/turf/pull/898 - Contributor @stebogit @NickCis) - Adds support to foreign Members to [`@turf/clone`][clone] (PR https://github.com/Turfjs/turf/pull/904 - Contributor @DenisCarriere) - Extends support of any `GeoJSON` to [`@turf/simplify`][simplify] (PR https://github.com/Turfjs/turf/pull/903 - Contributor @DenisCarriere @stebogit) - Adds new `isNumber` function and improves type checking for few [`@turf/helpers`][helpers] methods (PR https://github.com/Turfjs/turf/pull/920 - Contributor @DenisCarriere @stebogit) - Adds throw errors to invalid `MultiPolygons` for [`@turf/simplify`][simplify] (PR https://github.com/Turfjs/turf/pull/922 - Contributor @DenisCarriere) ## 🐛 Bug Fixes - Fixes [`@turf/bbox-clip`](bbox-clip) point intersection handling, adding sanity-checks the lineclip output (PR https://github.com/Turfjs/turf/pull/886) - Fixes [`@turf/line-split`][line-split] endpoint case handling applying [`@turf/truncate`][truncate] on `splitter` (PR https://github.com/Turfjs/turf/pull/892 and https://github.com/Turfjs/turf/pull/855 - Contributor @stebogit) - Fixes [`@turf/intersect`][intersect] throwing "uncaught exception", adding [`@turf/truncate`][truncate] to inputs and returning `Feature` if no geometry (PR https://github.com/Turfjs/turf/pull/890 - Contributor @stebogit @vicvolk) - Fixes [`@turf/hex-grid`][hex-grid] not properly cloning the last ring vertex (PR https://github.com/Turfjs/turf/pull/897 - Contributor @stebogit @DenisCarriere) - Fixes [`@turf/boolean-disjoint`][boolean-disjoint] incorrect behaviour where a poly was completely contained within another poly (PR https://github.com/Turfjs/turf/pull/908 - Contributor @rowanwins) - Fixes [`@turf/simplify`][simplify] process pending on particular geometries, applying [`@turf/clean-coords`][clean-coords] to input. (PR https://github.com/Turfjs/turf/pull/903 - Contributor @stebogit @DenisCarriere) - Fixes `boolean` properties not being translated with [`@turf/clone`][clone] (PR https://github.com/Turfjs/turf/pull/909 - Contributor @DenisCarriere) - Fixes [`@turf/boolean-contains`][boolean-contains] incorrect output when checking two polygons (PR https://github.com/Turfjs/turf/pull/923 - Contributor @rowanwins @DenisCarriere) Twitter: CC: @Turfjs/ownership [point-to-line-distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-to-line-distance [projection]: https://github.com/Turfjs/turf/tree/master/packages/turf-projection [boolean-within]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-within [helpers]: https://github.com/Turfjs/turf/tree/master/packages/turf-helpers [invariant]: https://github.com/Turfjs/turf/tree/master/packages/turf-invariant [meta]: https://github.com/Turfjs/turf/tree/master/packages/turf-meta [clusters]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters [isolines]: https://github.com/Turfjs/turf/tree/master/packages/turf-isolines [convex]: https://github.com/Turfjs/turf/tree/master/packages/turf-convex [within]: https://github.com/Turfjs/turf/tree/master/packages/turf-within [concave]: https://github.com/Turfjs/turf/tree/master/packages/turf-concave [difference]: https://github.com/Turfjs/turf/tree/master/packages/turf-difference [dissolve]: https://github.com/Turfjs/turf/tree/master/packages/turf-dissolve [collect]: https://github.com/Turfjs/turf/tree/master/packages/turf-collect [flip]: https://github.com/Turfjs/turf/tree/master/packages/turf-flip [simplify]: https://github.com/Turfjs/turf/tree/master/packages/turf-simplify [bezier]: https://github.com/Turfjs/turf/tree/master/packages/turf-bezier [tag]: https://github.com/Turfjs/turf/tree/master/packages/turf-tag [sample]: https://github.com/Turfjs/turf/tree/master/packages/turf-sample [envelope]: https://github.com/Turfjs/turf/tree/master/packages/turf-envelope [square]: https://github.com/Turfjs/turf/tree/master/packages/turf-square [circle]: https://github.com/Turfjs/turf/tree/master/packages/turf-circle [midpoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-midpoint [buffer]: https://github.com/Turfjs/turf/tree/master/packages/turf-buffer [center]: https://github.com/Turfjs/turf/tree/master/packages/turf-center [center-of-mass]: https://github.com/Turfjs/turf/tree/master/packages/turf-center-of-mass [centroid]: https://github.com/Turfjs/turf/tree/master/packages/turf-centroid [combine]: https://github.com/Turfjs/turf/tree/master/packages/turf-combine [distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-distance [explode]: https://github.com/Turfjs/turf/tree/master/packages/turf-explode [bbox]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox [tesselate]: https://github.com/Turfjs/turf/tree/master/packages/turf-tesselate [bbox-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox-polygon [inside]: https://github.com/Turfjs/turf/tree/master/packages/turf-inside [intersect]: https://github.com/Turfjs/turf/tree/master/packages/turf-intersect [nearest]: https://github.com/Turfjs/turf/tree/master/packages/turf-nearest [planepoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-planepoint [random]: https://github.com/Turfjs/turf/tree/master/packages/turf-random [tin]: https://github.com/Turfjs/turf/tree/master/packages/turf-tin [union]: https://github.com/Turfjs/turf/tree/master/packages/turf-union [bearing]: https://github.com/Turfjs/turf/tree/master/packages/turf-bearing [destination]: https://github.com/Turfjs/turf/tree/master/packages/turf-destination [kinks]: https://github.com/Turfjs/turf/tree/master/packages/turf-kinks [point-on-surface]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-on-surface [area]: https://github.com/Turfjs/turf/tree/master/packages/turf-area [along]: https://github.com/Turfjs/turf/tree/master/packages/turf-along [line-distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-distance [line-slice]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-slice [line-slice-along]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-slice-along [point-on-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-on-line [point-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-grid [square-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-square-grid [triangle-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-triangle-grid [hex-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-hex-grid [idw]: https://github.com/Turfjs/turf/tree/master/packages/turf-idw [truncate]: https://github.com/Turfjs/turf/tree/master/packages/turf-truncate [flatten]: https://github.com/Turfjs/turf/tree/master/packages/turf-flatten [line-intersect]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-intersect [mask]: https://github.com/Turfjs/turf/tree/master/packages/turf-mask [line-chunk]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-chunk [unkink-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-unkink-polygon [great-circle]: https://github.com/Turfjs/turf/tree/master/packages/turf-great-circle [line-segment]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-segment [line-split]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-split [line-arc]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-arc [polygon-to-linestring]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygon-to-linestring [linestring-to-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-linestring-to-polygon [bbox-clip]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox-clip [line-overlap]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-overlap [sector]: https://github.com/Turfjs/turf/tree/master/packages/turf-sector [rhumb-bearing]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-bearing [rhumb-distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-distance [rhumb-destination]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-destination [polygon-tangents]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygon-tangents [rewind]: https://github.com/Turfjs/turf/tree/master/packages/turf-rewind [isobands]: https://github.com/Turfjs/turf/tree/master/packages/turf-isobands [transform-rotate]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-rotate [transform-scale]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-scale [transform-translate]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-translate [line-offset]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-offset [polygonize]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygonize [boolean-disjoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-disjoint [boolean-contains]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-contains [boolean-crosses]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-crosses [boolean-clockwise]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-clockwise [boolean-overlap]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-overlap [boolean-point-on-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-point-on-line [boolean-equal]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-equal [clone]: https://github.com/Turfjs/turf/tree/master/packages/turf-clone [clean-coords]: https://github.com/Turfjs/turf/tree/master/packages/turf-clean-coords [interpolate]: https://github.com/Turfjs/turf/tree/master/packages/turf-interpolate [clusters-dbscan]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters-dbscan [clusters-kmeans]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters-kmeans ================================================ FILE: releases/5.0.0.md ================================================ # New major release! Turf 5.0.0 🎉 TurfJS releases are being tracked using [Milestones](https://github.com/Turfjs/turf/milestone/4?closed=1). ## Contributors - @DenisCarriere - @rowanwins - @stebogit - @stevage - And MORE... ## ⭐️ Major Updates - TurfJS now supports ES Modules ([Related PR's](https://github.com/Turfjs/turf/pulls?q=is%3Apr+modules+is%3Aclosed+label%3Aes-module)) - Optional parameters are now defined as an `Object`. ## 🚀 New Modules ### [`@turf/voronoi`][voronoi] Takes a FeatureCollection of points, and a bounding box, and returns a FeatureCollection of Voronoi polygons. (PR https://github.com/Turfjs/turf/pull/1043 - Author @stevage) ### [`@turf/shortest-path`][shortest-path] Returns the shortest path from start to end without colliding with any feature in obstacles (PR https://github.com/Turfjs/turf/pull/956 - Author @stebogit) ### [`@turf/boolean-parallel`][boolean-parallel] Boolean-Parallel returns True if each segment of `line1` is parallel to the correspondent segment of `line2` (PR https://github.com/Turfjs/turf/pull/941 - Author @stebogit) ### [`@turf/nearest-point-on-line`][nearest-point-on-line] Takes a {@link Point} and a {@link LineString} and calculates the closest Point on the (Multi)LineString. (PR https://github.com/Turfjs/turf/pull/939 - Author @stebogit) ## 🏅 New Features/Enhancements - Updates [`@turf/unkink-polygon`][unkink-polygon] testing & added `flattenEach` instead of using `flatten`. (PR https://github.com/Turfjs/turf/pull/889) - Add multi-geomtry support to [`@turf/line-split`](line-split) (PR https://github.com/Turfjs/turf/pull/1078) - Improve [`@turf/meta`](meta) `lineEach` method to provide properties, id and bbox (PR https://github.com/Turfjs/turf/pull/1010) ## 🐛 Bug Fixes - Fixes [`@turf/helpers`](helpers) earth radius variable (PR https://github.com/Turfjs/turf/pull/1012) - Fixes [`@turf/polygon-tangents`](polygon-tangents) bug (PR https://github.com/Turfjs/turf/pull/1058) - Fixes [`@turf/line-chunk`](line-chunk) bug when the number of segments is integer (PR https://github.com/Turfjs/turf/pull/1046) - Fixes `segmentEach` and `segmentReduce` methods in [`@turf/meta`](meta) to ensure something is returned (PR https://github.com/Turfjs/turf/pull/968) ## ⚠️ Breaking Change - Optional parameters are now defined as an `Object`: **Before** ```js var from = [-75.343, 39.984]; var to = [-75.534, 39.123]; var units = 'miles'; var distance = turf.distance(from, to, units); ``` **After** ```js var from = [-75.343, 39.984]; var to = [-75.534, 39.123]; var options = {units: 'miles'}; var distance = turf.distance(from, to, options); ``` - Reworked `@turf/random` PR https://github.com/Turfjs/turf/issues/994 - Deprecate `@turf/idw` Issue https://github.com/Turfjs/turf/issues/887 - Reworked Grid modules `@turf/point-grid/hex/square/triangle` PR https://github.com/Turfjs/turf/pull/1029 - Renamed Modules/Methods - [x] `@turf/inside` => `@turf/boolean-point-in-polygon` https://github.com/Turfjs/turf/issues/860#issuecomment-317216235 - [x] `@turf/within` => `@turf/points-within-polygon` https://github.com/Turfjs/turf/issues/860#issuecomment-317216235 - [x] [`@turf/bezier`](https://github.com/Turfjs/turf/blob/master/packages/turf-bezier/index.js) => `@turf/bezier-spline` Issue https://github.com/Turfjs/turf/issues/661 - [x] [`@turf/nearest`](https://github.com/Turfjs/turf/blob/master/packages/turf-nearest/index.js) => `@turf/nearest-point` https://github.com/Turfjs/turf/pull/858#issuecomment-317197295 - [x] [`@turf/point-on-line`](https://github.com/Turfjs/turf/blob/master/packages/turf-point-on-line/index.js) => `@turf/nearest-point-on-line` https://github.com/Turfjs/turf/pull/858#issuecomment-317197295 - [x] [`@turf/lineDistance`](https://github.com/Turfjs/turf/blob/master/packages/turf-line-distance/index.js) => `@turf/length` https://github.com/Turfjs/turf/issues/860#issuecomment-317229869 - [x] [`@turf/helpers`](https://github.com/Turfjs/turf/blob/master/packages/turf-helpers/index.js) - [x] `radians2degrees` => `radiansToDegrees` - [x] `degrees2radians` => `degreesToRadians` - [x] `distanceToDegrees` => `lengthToDegrees` - [x] `distanceToRadians` => `lengthToRadians` - [x] `radiansToDistance` => `radiansToLength` - [x] `bearingToAngle` => `bearingToAzimuth` - [x] `convertDistance` => `convertLength` Twitter: CC: @Turfjs/ownership [along]: https://github.com/Turfjs/turf/tree/master/packages/turf-along [area]: https://github.com/Turfjs/turf/tree/master/packages/turf-area [bbox]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox [bbox-clip]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox-clip [bbox-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox-polygon [bearing]: https://github.com/Turfjs/turf/tree/master/packages/turf-bearing [bezier-spline]: https://github.com/Turfjs/turf/tree/master/packages/turf-bezier-spline [boolean-clockwise]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-clockwise [boolean-contains]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-contains [boolean-crosses]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-crosses [boolean-disjoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-disjoint [boolean-equal]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-equal [boolean-overlap]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-overlap [boolean-parallel]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-parallel [boolean-point-in-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-point-in-polygon [boolean-point-on-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-point-on-line [boolean-within]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-within [buffer]: https://github.com/Turfjs/turf/tree/master/packages/turf-buffer [center]: https://github.com/Turfjs/turf/tree/master/packages/turf-center [center-of-mass]: https://github.com/Turfjs/turf/tree/master/packages/turf-center-of-mass [centroid]: https://github.com/Turfjs/turf/tree/master/packages/turf-centroid [circle]: https://github.com/Turfjs/turf/tree/master/packages/turf-circle [clean-coords]: https://github.com/Turfjs/turf/tree/master/packages/turf-clean-coords [clone]: https://github.com/Turfjs/turf/tree/master/packages/turf-clone [clusters]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters [clusters-dbscan]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters-dbscan [clusters-kmeans]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters-kmeans [collect]: https://github.com/Turfjs/turf/tree/master/packages/turf-collect [combine]: https://github.com/Turfjs/turf/tree/master/packages/turf-combine [concave]: https://github.com/Turfjs/turf/tree/master/packages/turf-concave [convex]: https://github.com/Turfjs/turf/tree/master/packages/turf-convex [destination]: https://github.com/Turfjs/turf/tree/master/packages/turf-destination [difference]: https://github.com/Turfjs/turf/tree/master/packages/turf-difference [dissolve]: https://github.com/Turfjs/turf/tree/master/packages/turf-dissolve [distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-distance [envelope]: https://github.com/Turfjs/turf/tree/master/packages/turf-envelope [explode]: https://github.com/Turfjs/turf/tree/master/packages/turf-explode [flatten]: https://github.com/Turfjs/turf/tree/master/packages/turf-flatten [flip]: https://github.com/Turfjs/turf/tree/master/packages/turf-flip [great-circle]: https://github.com/Turfjs/turf/tree/master/packages/turf-great-circle [helpers]: https://github.com/Turfjs/turf/tree/master/packages/turf-helpers [hex-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-hex-grid [interpolate]: https://github.com/Turfjs/turf/tree/master/packages/turf-interpolate [intersect]: https://github.com/Turfjs/turf/tree/master/packages/turf-intersect [invariant]: https://github.com/Turfjs/turf/tree/master/packages/turf-invariant [isobands]: https://github.com/Turfjs/turf/tree/master/packages/turf-isobands [isolines]: https://github.com/Turfjs/turf/tree/master/packages/turf-isolines [kinks]: https://github.com/Turfjs/turf/tree/master/packages/turf-kinks [length]: https://github.com/Turfjs/turf/tree/master/packages/turf-length [line-arc]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-arc [line-chunk]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-chunk [line-intersect]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-intersect [line-offset]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-offset [line-overlap]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-overlap [line-segment]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-segment [line-slice]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-slice [line-slice-along]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-slice-along [line-split]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-split [line-to-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-to-polygon [mask]: https://github.com/Turfjs/turf/tree/master/packages/turf-mask [meta]: https://github.com/Turfjs/turf/tree/master/packages/turf-meta [midpoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-midpoint [nearest-point]: https://github.com/Turfjs/turf/tree/master/packages/turf-nearest-point [nearest-point-on-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-nearest-point-on-line [nearest-point-to-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-nearest-point-to-line [planepoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-planepoint [point-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-grid [point-on-feature]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-on-feature [point-to-line-distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-to-line-distance [points-within-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-points-within-polygon [polygon-tangents]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygon-tangents [polygon-to-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygon-to-line [polygonize]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygonize [projection]: https://github.com/Turfjs/turf/tree/master/packages/turf-projection [random]: https://github.com/Turfjs/turf/tree/master/packages/turf-random [rewind]: https://github.com/Turfjs/turf/tree/master/packages/turf-rewind [rhumb-bearing]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-bearing [rhumb-destination]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-destination [rhumb-distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-distance [sample]: https://github.com/Turfjs/turf/tree/master/packages/turf-sample [sector]: https://github.com/Turfjs/turf/tree/master/packages/turf-sector [shortest-path]: https://github.com/Turfjs/turf/tree/master/packages/turf-shortest-path [simplify]: https://github.com/Turfjs/turf/tree/master/packages/turf-simplify [square]: https://github.com/Turfjs/turf/tree/master/packages/turf-square [square-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-square-grid [tag]: https://github.com/Turfjs/turf/tree/master/packages/turf-tag [tesselate]: https://github.com/Turfjs/turf/tree/master/packages/turf-tesselate [tin]: https://github.com/Turfjs/turf/tree/master/packages/turf-tin [transform-rotate]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-rotate [transform-scale]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-scale [transform-translate]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-translate [triangle-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-triangle-grid [truncate]: https://github.com/Turfjs/turf/tree/master/packages/turf-truncate [union]: https://github.com/Turfjs/turf/tree/master/packages/turf-union [unkink-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-unkink-polygon [voronoi]: https://github.com/Turfjs/turf/tree/master/packages/turf-voronoi ================================================ FILE: releases/5.1.0.md ================================================ # New minor release! Turf 5.1.0 🎉 TurfJS releases are being tracked using [Milestones](https://github.com/Turfjs/turf/milestone/13?closed=1). ## Contributors - @muziejus 🥇 - @rowanwins 🥇 - @DenisCarriere - @tmcw - @stebogit - @woutervh- - @dwaggenspack ### Crowdsourced Funding #### Why we're looking for support TurfJS is a community-driven project maintained by a small group of core contributors who work on the project in their spare time. Time is spent supporting users, improving documentation, fixing bugs as well as creating new modules. Your funding will directly go to development costs, marketing campaigns, promotional events & any other financial costs to operate & maintain TurfJS. In particular, we're looking for corporate sponsors who use TurfJS in revenue-generating ways, either by creating applications for clients, or through use in an app used by customers. Of course individuals are welcome to support us as well if TurfJS has helped you :) ### https://opencollective.com/turf ### Help TurfJS by becoming a **Backer** for only 2$/mo. ## 🚀 New Modules ### [`@turf/center-median`][center-median] Takes a FeatureCollection of points and calculates the median center, algorithimically. The median center is understood as the point that is requires the least total travel from all other points. (PR https://github.com/Turfjs/turf/pull/1122 - Author @muziejus) ### [`@turf/center-mean`][center-mean] Takes a Feature or FeatureCollection and returns the mean center. Can be weighted. (PR https://github.com/Turfjs/turf/pull/1089 - Author @muziejus) ![artboard 1](https://user-images.githubusercontent.com/827683/33585310-9596d15e-d931-11e7-901e-18f40a2b8cd7.png) ### [`@turf/standard-deviational-ellipse`][standard-deviational-ellipse] Takes a FeatureCollection and returns a standard deviational ellipse, also known as a “directional distribution.” The standard deviational ellipse aims to show the direction and the distribution of a dataset by drawing an ellipse that contains about one standard deviation’s worth (~ 70%) of the data. This module mirrors the functionality of Directional Distribution in ArcGIS and the QGIS Standard Deviational Ellipse Plugin (PR https://github.com/Turfjs/turf/pull/1120 - Author @muziejus) screen shot 2017-11-24 at 23 41 13 ### [`@turf/ellipse`][ellipse] Takes a Point and calculates the ellipse polygon given two semi-axes expressed in variable units and steps for precision. (PR https://github.com/Turfjs/turf/pull/1087 - Author @muziejus) ![ellipse](https://user-images.githubusercontent.com/12717225/32702074-d8ea0708-c795-11e7-9d0a-5d8fa3e03987.png) ## 📖 Documentation - TurfJS's website has a fresh new look! 🚀 http://turfjs.org (Author @rowanwins PR https://github.com/Turfjs/turf-www/pull/127) - This uses nuxt to generate the pages as static html which should be better for search engines - The docs are now all on a single page - Built sizes are much better than the current - The map moves to a module when its description comes into view, I think this functions reasonably nicely. ## 🏅 New Features/Enhancements - Add points/lineStrings/polygons to [@turf/helpers][helpers] (https://github.com/Turfjs/turf/pull/1108) - Internalize `@types/geojson` (https://github.com/Turfjs/turf/pull/1138) - Add extra geometry support to [@turf/points-within-polygon][points-within-polygon] (https://github.com/Turfjs/turf/pull/1117) - ES Modules now work in the latest version of Chrome! ```html ``` ## 🐛 Bug Fixes - Prevent Window Freeze when using [@turf/simplify][simplify] (https://github.com/Turfjs/turf/pull/1145) - Take care of zero handling for weight in [@turf/center-mean][center-mean] (https://github.com/Turfjs/turf/pull/1127) - Add input validation to [@turf/bbox-polygon][bbox-polygon] (https://github.com/Turfjs/turf/pull/1121) - Use rhumb lines to calculate [@turf/ellipse][ellipse] axes, except when units are "degrees" (https://github.com/Turfjs/turf/pull/1115) - [coordEach][meta] indexing bug (https://github.com/Turfjs/turf/issues/1092) - Add null handling for property cloning on @turf/clone. Fixes issue #1095 (https://github.com/Turfjs/turf/pull/1096) Twitter: https://twitter.com/DenisCarriere/status/938895355541778432 CC: @Turfjs/ownership [along]: https://github.com/Turfjs/turf/tree/master/packages/turf-along [area]: https://github.com/Turfjs/turf/tree/master/packages/turf-area [bbox]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox [bbox-clip]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox-clip [bbox-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox-polygon [bearing]: https://github.com/Turfjs/turf/tree/master/packages/turf-bearing [bezier-spline]: https://github.com/Turfjs/turf/tree/master/packages/turf-bezier-spline [boolean-clockwise]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-clockwise [boolean-contains]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-contains [boolean-crosses]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-crosses [boolean-disjoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-disjoint [boolean-equal]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-equal [boolean-overlap]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-overlap [boolean-parallel]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-parallel [boolean-point-in-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-point-in-polygon [boolean-point-on-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-point-on-line [boolean-within]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-within [buffer]: https://github.com/Turfjs/turf/tree/master/packages/turf-buffer [center]: https://github.com/Turfjs/turf/tree/master/packages/turf-center [center-mean]: https://github.com/Turfjs/turf/tree/master/packages/turf-center-mean [center-median]: https://github.com/Turfjs/turf/tree/master/packages/turf-center-median [center-of-mass]: https://github.com/Turfjs/turf/tree/master/packages/turf-center-of-mass [centroid]: https://github.com/Turfjs/turf/tree/master/packages/turf-centroid [circle]: https://github.com/Turfjs/turf/tree/master/packages/turf-circle [clean-coords]: https://github.com/Turfjs/turf/tree/master/packages/turf-clean-coords [clone]: https://github.com/Turfjs/turf/tree/master/packages/turf-clone [clusters]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters [clusters-dbscan]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters-dbscan [clusters-kmeans]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters-kmeans [collect]: https://github.com/Turfjs/turf/tree/master/packages/turf-collect [combine]: https://github.com/Turfjs/turf/tree/master/packages/turf-combine [concave]: https://github.com/Turfjs/turf/tree/master/packages/turf-concave [convex]: https://github.com/Turfjs/turf/tree/master/packages/turf-convex [destination]: https://github.com/Turfjs/turf/tree/master/packages/turf-destination [difference]: https://github.com/Turfjs/turf/tree/master/packages/turf-difference [dissolve]: https://github.com/Turfjs/turf/tree/master/packages/turf-dissolve [distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-distance [ellipse]: https://github.com/Turfjs/turf/tree/master/packages/turf-ellipse [envelope]: https://github.com/Turfjs/turf/tree/master/packages/turf-envelope [explode]: https://github.com/Turfjs/turf/tree/master/packages/turf-explode [flatten]: https://github.com/Turfjs/turf/tree/master/packages/turf-flatten [flip]: https://github.com/Turfjs/turf/tree/master/packages/turf-flip [great-circle]: https://github.com/Turfjs/turf/tree/master/packages/turf-great-circle [helpers]: https://github.com/Turfjs/turf/tree/master/packages/turf-helpers [hex-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-hex-grid [interpolate]: https://github.com/Turfjs/turf/tree/master/packages/turf-interpolate [intersect]: https://github.com/Turfjs/turf/tree/master/packages/turf-intersect [invariant]: https://github.com/Turfjs/turf/tree/master/packages/turf-invariant [isobands]: https://github.com/Turfjs/turf/tree/master/packages/turf-isobands [isolines]: https://github.com/Turfjs/turf/tree/master/packages/turf-isolines [kinks]: https://github.com/Turfjs/turf/tree/master/packages/turf-kinks [length]: https://github.com/Turfjs/turf/tree/master/packages/turf-length [line-arc]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-arc [line-chunk]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-chunk [line-intersect]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-intersect [line-offset]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-offset [line-overlap]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-overlap [line-segment]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-segment [line-slice]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-slice [line-slice-along]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-slice-along [line-split]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-split [line-to-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-to-polygon [mask]: https://github.com/Turfjs/turf/tree/master/packages/turf-mask [meta]: https://github.com/Turfjs/turf/tree/master/packages/turf-meta [midpoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-midpoint [nearest-point]: https://github.com/Turfjs/turf/tree/master/packages/turf-nearest-point [nearest-point-on-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-nearest-point-on-line [nearest-point-to-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-nearest-point-to-line [planepoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-planepoint [point-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-grid [point-on-feature]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-on-feature [point-to-line-distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-to-line-distance [points-within-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-points-within-polygon [polygon-tangents]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygon-tangents [polygon-to-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygon-to-line [polygonize]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygonize [projection]: https://github.com/Turfjs/turf/tree/master/packages/turf-projection [random]: https://github.com/Turfjs/turf/tree/master/packages/turf-random [rewind]: https://github.com/Turfjs/turf/tree/master/packages/turf-rewind [rhumb-bearing]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-bearing [rhumb-destination]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-destination [rhumb-distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-distance [sample]: https://github.com/Turfjs/turf/tree/master/packages/turf-sample [sector]: https://github.com/Turfjs/turf/tree/master/packages/turf-sector [shortest-path]: https://github.com/Turfjs/turf/tree/master/packages/turf-shortest-path [simplify]: https://github.com/Turfjs/turf/tree/master/packages/turf-simplify [square]: https://github.com/Turfjs/turf/tree/master/packages/turf-square [square-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-square-grid [standard-deviational-ellipse]: https://github.com/Turfjs/turf/tree/master/packages/turf-standard-deviational-ellipse [tag]: https://github.com/Turfjs/turf/tree/master/packages/turf-tag [tesselate]: https://github.com/Turfjs/turf/tree/master/packages/turf-tesselate [tin]: https://github.com/Turfjs/turf/tree/master/packages/turf-tin [transform-rotate]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-rotate [transform-scale]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-scale [transform-translate]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-translate [triangle-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-triangle-grid [truncate]: https://github.com/Turfjs/turf/tree/master/packages/turf-truncate [union]: https://github.com/Turfjs/turf/tree/master/packages/turf-union [unkink-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-unkink-polygon [voronoi]: https://github.com/Turfjs/turf/tree/master/packages/turf-voronoi ================================================ FILE: releases/5.2.0.md ================================================ # New minor release! Turf 5.2.0 🎉 TurfJS releases are being tracked using [Milestones](https://github.com/Turfjs/turf/milestone/15?closed=1). ## Contributors - @Spown - @DenisCarriere - @rowanwins - @stebogit - @woutervh- - @muziejus - And more... ### Crowdsourced Funding #### Why we're looking for support TurfJS is a community-driven project maintained by a small group of core contributors who work on the project in their spare time. Time is spent supporting users, improving documentation, fixing bugs as well as creating new modules. Your funding will directly go to development costs, marketing campaigns, promotional events & any other financial costs to operate & maintain TurfJS. In particular, we're looking for corporate sponsors who use TurfJS in revenue-generating ways, either by creating applications for clients, or through use in an app used by customers. Of course individuals are welcome to support us as well if TurfJS has helped you :) ### https://opencollective.com/turf ### Help TurfJS by becoming a **Backer** for only 2$/mo. ## 🚀 New Modules ### [`@turf/angle`][angle] Finds the Interior or Explementary angle between 3 points. (PR https://github.com/Turfjs/turf/pull/1192 & https://github.com/Turfjs/turf/pull/1173 - Authors @DenisCarriere & @stebogit) ## Obtuse Angle - **Red**: Interior Angle - **Blue**: Explementary Angle ![image](https://user-images.githubusercontent.com/550895/34275070-a6565d26-e669-11e7-88ee-d6c44c5cc517.png) ## Acute Angle - **Red**: Interior Angle - **Blue**: Explementary Angle ![image](https://user-images.githubusercontent.com/550895/34275145-f30b2930-e669-11e7-97ce-d6cbbacabfed.png) ## 📖 Documentation - ## 🏅 New Features/Enhancements - ## 🐛 Bug Fixes - Twitter: CC: @Turfjs/ownership [along]: https://github.com/Turfjs/turf/tree/master/packages/turf-along [angle]: https://github.com/Turfjs/turf/tree/master/packages/turf-angle [area]: https://github.com/Turfjs/turf/tree/master/packages/turf-area [bbox]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox [bbox-clip]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox-clip [bbox-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-bbox-polygon [bearing]: https://github.com/Turfjs/turf/tree/master/packages/turf-bearing [bezier-spline]: https://github.com/Turfjs/turf/tree/master/packages/turf-bezier-spline [boolean-clockwise]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-clockwise [boolean-contains]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-contains [boolean-crosses]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-crosses [boolean-disjoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-disjoint [boolean-equal]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-equal [boolean-overlap]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-overlap [boolean-parallel]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-parallel [boolean-point-in-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-point-in-polygon [boolean-point-on-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-point-on-line [boolean-within]: https://github.com/Turfjs/turf/tree/master/packages/turf-boolean-within [buffer]: https://github.com/Turfjs/turf/tree/master/packages/turf-buffer [center]: https://github.com/Turfjs/turf/tree/master/packages/turf-center [center-mean]: https://github.com/Turfjs/turf/tree/master/packages/turf-center-mean [center-median]: https://github.com/Turfjs/turf/tree/master/packages/turf-center-median [center-of-mass]: https://github.com/Turfjs/turf/tree/master/packages/turf-center-of-mass [centroid]: https://github.com/Turfjs/turf/tree/master/packages/turf-centroid [circle]: https://github.com/Turfjs/turf/tree/master/packages/turf-circle [clean-coords]: https://github.com/Turfjs/turf/tree/master/packages/turf-clean-coords [clone]: https://github.com/Turfjs/turf/tree/master/packages/turf-clone [clusters]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters [clusters-dbscan]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters-dbscan [clusters-kmeans]: https://github.com/Turfjs/turf/tree/master/packages/turf-clusters-kmeans [collect]: https://github.com/Turfjs/turf/tree/master/packages/turf-collect [combine]: https://github.com/Turfjs/turf/tree/master/packages/turf-combine [concave]: https://github.com/Turfjs/turf/tree/master/packages/turf-concave [convex]: https://github.com/Turfjs/turf/tree/master/packages/turf-convex [destination]: https://github.com/Turfjs/turf/tree/master/packages/turf-destination [difference]: https://github.com/Turfjs/turf/tree/master/packages/turf-difference [dissolve]: https://github.com/Turfjs/turf/tree/master/packages/turf-dissolve [distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-distance [ellipse]: https://github.com/Turfjs/turf/tree/master/packages/turf-ellipse [envelope]: https://github.com/Turfjs/turf/tree/master/packages/turf-envelope [explode]: https://github.com/Turfjs/turf/tree/master/packages/turf-explode [flatten]: https://github.com/Turfjs/turf/tree/master/packages/turf-flatten [flip]: https://github.com/Turfjs/turf/tree/master/packages/turf-flip [great-circle]: https://github.com/Turfjs/turf/tree/master/packages/turf-great-circle [helpers]: https://github.com/Turfjs/turf/tree/master/packages/turf-helpers [hex-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-hex-grid [interpolate]: https://github.com/Turfjs/turf/tree/master/packages/turf-interpolate [intersect]: https://github.com/Turfjs/turf/tree/master/packages/turf-intersect [invariant]: https://github.com/Turfjs/turf/tree/master/packages/turf-invariant [isobands]: https://github.com/Turfjs/turf/tree/master/packages/turf-isobands [isolines]: https://github.com/Turfjs/turf/tree/master/packages/turf-isolines [kinks]: https://github.com/Turfjs/turf/tree/master/packages/turf-kinks [length]: https://github.com/Turfjs/turf/tree/master/packages/turf-length [line-arc]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-arc [line-chunk]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-chunk [line-intersect]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-intersect [line-offset]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-offset [line-overlap]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-overlap [line-segment]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-segment [line-slice]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-slice [line-slice-along]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-slice-along [line-split]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-split [line-to-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-line-to-polygon [mask]: https://github.com/Turfjs/turf/tree/master/packages/turf-mask [meta]: https://github.com/Turfjs/turf/tree/master/packages/turf-meta [midpoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-midpoint [nearest-point]: https://github.com/Turfjs/turf/tree/master/packages/turf-nearest-point [nearest-point-on-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-nearest-point-on-line [nearest-point-to-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-nearest-point-to-line [planepoint]: https://github.com/Turfjs/turf/tree/master/packages/turf-planepoint [point-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-grid [point-on-feature]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-on-feature [point-to-line-distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-point-to-line-distance [points-within-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-points-within-polygon [polygon-tangents]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygon-tangents [polygon-to-line]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygon-to-line [polygonize]: https://github.com/Turfjs/turf/tree/master/packages/turf-polygonize [projection]: https://github.com/Turfjs/turf/tree/master/packages/turf-projection [random]: https://github.com/Turfjs/turf/tree/master/packages/turf-random [rewind]: https://github.com/Turfjs/turf/tree/master/packages/turf-rewind [rhumb-bearing]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-bearing [rhumb-destination]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-destination [rhumb-distance]: https://github.com/Turfjs/turf/tree/master/packages/turf-rhumb-distance [sample]: https://github.com/Turfjs/turf/tree/master/packages/turf-sample [sector]: https://github.com/Turfjs/turf/tree/master/packages/turf-sector [shortest-path]: https://github.com/Turfjs/turf/tree/master/packages/turf-shortest-path [simplify]: https://github.com/Turfjs/turf/tree/master/packages/turf-simplify [square]: https://github.com/Turfjs/turf/tree/master/packages/turf-square [square-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-square-grid [standard-deviational-ellipse]: https://github.com/Turfjs/turf/tree/master/packages/turf-standard-deviational-ellipse [tag]: https://github.com/Turfjs/turf/tree/master/packages/turf-tag [tesselate]: https://github.com/Turfjs/turf/tree/master/packages/turf-tesselate [tin]: https://github.com/Turfjs/turf/tree/master/packages/turf-tin [transform-rotate]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-rotate [transform-scale]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-scale [transform-translate]: https://github.com/Turfjs/turf/tree/master/packages/turf-transform-translate [triangle-grid]: https://github.com/Turfjs/turf/tree/master/packages/turf-triangle-grid [truncate]: https://github.com/Turfjs/turf/tree/master/packages/turf-truncate [union]: https://github.com/Turfjs/turf/tree/master/packages/turf-union [unkink-polygon]: https://github.com/Turfjs/turf/tree/master/packages/turf-unkink-polygon [voronoi]: https://github.com/Turfjs/turf/tree/master/packages/turf-voronoi ================================================ FILE: scripts/check-dependencies.js ================================================ // Check dependencies to figure out which ones would require transpilation to support ES5 // This is used to create the list of packages that require transpilation when using @turf/* packages, // which is documented in the root README.md file var dependencyTree = require("dependency-tree"); var acorn = require("acorn"); var fs = require("fs"); const acornOpts = { ecmaVersion: 5, silent: true, }; // from @turf/turf's cjs root, spider all of the .js dependencies var files = dependencyTree .toList({ filename: "packages/turf/dist/js/index.js", directory: __dirname, }) .filter((file) => { // filter to only include files that are NOT es5 compliant already const source = fs.readFileSync(file, "utf8"); try { acorn.parse(source, acornOpts); return false; } catch (e) { return true; } }); // same as above, but run through the esm files instead, since they can be different acornOpts.sourceType = "module"; var files2 = dependencyTree .toList({ filename: "packages/turf/dist/es/index.js", directory: __dirname, nodeModulesConfig: { entry: "module", }, }) .filter((file) => { // again, only keep the files that aren't already es5 const source = fs.readFileSync(file, "utf8"); try { acorn.parse(source, acornOpts); return false; } catch (e) { return true; } }); // take the files from the steps above and transform them into their package name // filter out the ones that are @turf/* since we're just going to claim all of them // as needing transpilation var needsTranspile = Array.from(new Set([...files, ...files2])) .map((file) => { const match = file.match(/node_modules(.*)$/); const partial = match[1].substring(1); if (partial.startsWith("@")) { return partial.match(/^([^/]+\/[^/]+)/)[1]; } else { return partial.match(/^([^/]+)/)[1]; } }) .filter((package) => !package.startsWith("@turf/")); // get the unique list of modules and then add @turf/* to the front of the list var simpleNeedsTranspile = Array.from(new Set(needsTranspile)); simpleNeedsTranspile.unshift("@turf/*"); // output the list of modules that need to be transpiled console.log(simpleNeedsTranspile); ================================================ FILE: scripts/generate-readmes.mts ================================================ #!/usr/bin/env node import path from "path"; import { readdir, readFile, writeFile } from "fs/promises"; import { parse as yamlParse } from "yaml"; import * as documentation from "documentation"; import { existsSync } from "fs"; // Template for README Markdown const postfix = await readFile( path.join(process.cwd(), "scripts/postfix.md"), "utf8" ); const paths = yamlParse( await readFile(path.join(process.cwd(), "documentation.yml"), "utf8") ).paths; const packagesPath = path.join(process.cwd(), "packages"); for (const dir of await readdir(packagesPath)) { if (dir === "turf") { continue; } const packagePath = path.join(packagesPath, dir, "package.json"); const directory = path.parse(packagePath).dir; let indexPath = path.join(directory, "index.js"); const pckg = JSON.parse(await readFile(packagePath, "utf-8")); const name = pckg.name; const diagramsPath = path.join(directory, "diagrams"); const images = existsSync(diagramsPath) ? (await readdir(diagramsPath)).filter((file) => /\.(jpg|jpeg|png|gif)$/i.test(path.extname(file)) ) : []; // some of the packages are typescript instead if (!existsSync(indexPath)) { indexPath = path.join(directory, "index.ts"); } // Build Documentation let res = await documentation.build(indexPath, { shallow: true, external: [], }); if (res === undefined) { console.warn(`Failed to build docs for ${packagePath}`); continue; } console.log("Building Docs: " + name); // Workaround to exclude @deprecated tags from docs // See https://github.com/documentationjs/documentation/issues/1596 res = res.filter((item: any) => item.tags.every((tag: any) => tag.title !== "deprecated") ); // Format Markdown let markdown = await documentation.formats.md(res, { paths }); markdown = `# ${name}\n\n${markdown}${postfix.replace(/{module}/, name)}`; if (images.length) { markdown += "\n\n### Diagrams\n\n" + images .map((img) => `![${path.parse(img).name}](diagrams/${img})`) .join("\n"); } await writeFile(path.join(directory, "README.md"), markdown); } ================================================ FILE: scripts/postfix.md ================================================ --- This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. ### Installation Install this single module individually: ```sh $ npm install {module} ``` Or install the all-encompassing @turf/turf module that includes all modules as functions: ```sh $ npm install @turf/turf ``` ================================================ FILE: tsconfig.shared.json ================================================ { "compilerOptions": { "target": "es2017", "module": "node16", "declaration": true, "esModuleInterop": true, "strict": true, "moduleResolution": "node16", "importHelpers": true, "skipLibCheck": true, "erasableSyntaxOnly": true } } ================================================ FILE: tsup.config.ts ================================================ import { defineConfig, type Options } from "tsup"; const baseOptions: Options = { clean: true, dts: true, entry: ["index.?s"], // while we have a mix of TS and JS packages minify: false, skipNodeModulesBundle: true, sourcemap: true, target: "es2017", tsconfig: "./tsconfig.json", // treeshake: true, causes "chunk.default" warning, breaks CJS exports? cjsInterop: true, splitting: true, }; export default [ defineConfig({ ...baseOptions, outDir: "dist/cjs", format: "cjs", }), defineConfig({ ...baseOptions, outDir: "dist/esm", format: "esm", }), ];